-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAdministrator.drawio
1603 lines (1603 loc) · 189 KB
/
Administrator.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/129.0.0.0 Safari/537.36" version="24.7.16" pages="2">
<diagram name="Checkliste" id="Zr_G_hcXwSWRQ9lRJL4E">
<mxGraphModel dx="2175" dy="771" 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="Checkliste" style="locked=1;" parent="0" />
<mxCell id="95HuahfwG-BCZ0HRhhbP-1" value="<font style="font-size: 24px;" color="#ffffff"><b>Mockup Checkliste: Administrator</b></font>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#7EA6E0;strokeColor=#7EA6E0;" parent="1" vertex="1">
<mxGeometry y="20" width="827" height="70" as="geometry" />
</mxCell>
<mxCell id="M1PSyhu-Lv1iWgx_K_dI-1" value="" style="whiteSpace=wrap;html=1;fillColor=#ffe6cc;strokeColor=#d79b00;" parent="1" vertex="1">
<mxGeometry x="15" y="120" width="812" height="740" as="geometry" />
</mxCell>
<mxCell id="M1PSyhu-Lv1iWgx_K_dI-14" value="ToDos Buchende" style="shape=table;startSize=30;container=1;collapsible=0;childLayout=tableLayout;fontStyle=1;fontSize=16;" parent="1" vertex="1">
<mxGeometry x="30" y="240" width="790.5" height="529" as="geometry" />
</mxCell>
<mxCell id="M1PSyhu-Lv1iWgx_K_dI-15" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="M1PSyhu-Lv1iWgx_K_dI-14" vertex="1">
<mxGeometry y="30" width="790.5" height="36" as="geometry" />
</mxCell>
<mxCell id="M1PSyhu-Lv1iWgx_K_dI-17" value="Beschreibung" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=#666666;overflow=hidden;fillColor=#FFB570;top=1;left=1;bottom=1;right=1;pointerEvents=1;fontColor=#333333;dashed=1;dashPattern=1 4;fontSize=14;fontStyle=1" parent="M1PSyhu-Lv1iWgx_K_dI-15" vertex="1">
<mxGeometry width="651" height="36" as="geometry">
<mxRectangle width="651" height="36" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-9" value="Edit" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=#666666;overflow=hidden;fillColor=#FFB570;top=1;left=1;bottom=1;right=1;pointerEvents=1;fontColor=#333333;dashed=1;dashPattern=1 4;fontSize=14;fontStyle=1" parent="M1PSyhu-Lv1iWgx_K_dI-15" vertex="1">
<mxGeometry x="651" width="50" height="36" as="geometry">
<mxRectangle width="50" height="36" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-66" value="Sortieren" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=#666666;overflow=hidden;fillColor=#FFB570;top=1;left=1;bottom=1;right=1;pointerEvents=1;fontColor=#333333;dashed=1;dashPattern=1 4;fontSize=14;fontStyle=1" parent="M1PSyhu-Lv1iWgx_K_dI-15" vertex="1">
<mxGeometry x="701" width="90" height="36" as="geometry">
<mxRectangle width="90" height="36" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-37" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="M1PSyhu-Lv1iWgx_K_dI-14" vertex="1">
<mxGeometry y="66" width="790.5" height="34" as="geometry" />
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-38" value="<font style="font-size: 15px;"><b>Checklisten-Kategorie Registrierung / Bestätigung / Prüfungskurs</b></font>" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=#666666;overflow=hidden;fillColor=#E6E6E6;top=1;left=1;bottom=1;right=1;pointerEvents=1;fontColor=#333333;dashed=1;dashPattern=1 4;align=left;fontSize=13;" parent="SF6q-6VZULmL_obWjuGS-37" vertex="1">
<mxGeometry width="651" height="34" as="geometry">
<mxRectangle width="651" height="34" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-39" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=#666666;overflow=hidden;fillColor=#E6E6E6;top=1;left=1;bottom=1;right=1;pointerEvents=1;fontColor=#333333;dashed=1;dashPattern=1 4;align=left;fontSize=13;" parent="SF6q-6VZULmL_obWjuGS-37" vertex="1">
<mxGeometry x="651" width="50" height="34" as="geometry">
<mxRectangle width="50" height="34" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-67" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=#666666;overflow=hidden;fillColor=#E6E6E6;top=1;left=1;bottom=1;right=1;pointerEvents=1;fontColor=#333333;dashed=1;dashPattern=1 4;align=left;fontSize=13;" parent="SF6q-6VZULmL_obWjuGS-37" vertex="1">
<mxGeometry x="701" width="90" height="34" as="geometry">
<mxRectangle width="90" height="34" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="M1PSyhu-Lv1iWgx_K_dI-18" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="M1PSyhu-Lv1iWgx_K_dI-14" vertex="1">
<mxGeometry y="100" width="790.5" height="36" as="geometry" />
</mxCell>
<mxCell id="M1PSyhu-Lv1iWgx_K_dI-20" value="Prüfungskurs angelegt" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=#666666;overflow=hidden;fillColor=#f5f5f5;top=1;left=1;bottom=1;right=1;pointerEvents=1;fontColor=#333333;dashed=1;dashPattern=1 4;align=left;fontSize=13;" parent="M1PSyhu-Lv1iWgx_K_dI-18" vertex="1">
<mxGeometry width="651" height="36" as="geometry">
<mxRectangle width="651" height="36" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-10" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=#666666;overflow=hidden;fillColor=#f5f5f5;top=1;left=1;bottom=1;right=1;pointerEvents=1;fontColor=#333333;dashed=1;dashPattern=1 4;align=left;fontSize=13;" parent="M1PSyhu-Lv1iWgx_K_dI-18" vertex="1">
<mxGeometry x="651" width="50" height="36" as="geometry">
<mxRectangle width="50" height="36" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-68" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=#666666;overflow=hidden;fillColor=#f5f5f5;top=1;left=1;bottom=1;right=1;pointerEvents=1;fontColor=#333333;dashed=1;dashPattern=1 4;align=left;fontSize=13;" parent="M1PSyhu-Lv1iWgx_K_dI-18" vertex="1">
<mxGeometry x="701" width="90" height="36" as="geometry">
<mxRectangle width="90" height="36" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="M1PSyhu-Lv1iWgx_K_dI-21" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="M1PSyhu-Lv1iWgx_K_dI-14" vertex="1">
<mxGeometry y="136" width="790.5" height="35" as="geometry" />
</mxCell>
<mxCell id="M1PSyhu-Lv1iWgx_K_dI-23" value="Prüfung erstellt" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=#666666;overflow=hidden;fillColor=#f5f5f5;top=1;left=1;bottom=1;right=1;pointerEvents=1;fontColor=#333333;dashed=1;dashPattern=1 4;align=left;fontSize=13;" parent="M1PSyhu-Lv1iWgx_K_dI-21" vertex="1">
<mxGeometry width="651" height="35" as="geometry">
<mxRectangle width="651" height="35" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-11" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=#666666;overflow=hidden;fillColor=#f5f5f5;top=1;left=1;bottom=1;right=1;pointerEvents=1;fontColor=#333333;dashed=1;dashPattern=1 4;align=left;fontSize=13;" parent="M1PSyhu-Lv1iWgx_K_dI-21" vertex="1">
<mxGeometry x="651" width="50" height="35" as="geometry">
<mxRectangle width="50" height="35" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-69" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=#666666;overflow=hidden;fillColor=#f5f5f5;top=1;left=1;bottom=1;right=1;pointerEvents=1;fontColor=#333333;dashed=1;dashPattern=1 4;align=left;fontSize=13;" parent="M1PSyhu-Lv1iWgx_K_dI-21" vertex="1">
<mxGeometry x="701" width="90" height="35" as="geometry">
<mxRectangle width="90" height="35" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="M1PSyhu-Lv1iWgx_K_dI-24" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="M1PSyhu-Lv1iWgx_K_dI-14" vertex="1">
<mxGeometry y="171" width="790.5" height="36" as="geometry" />
</mxCell>
<mxCell id="M1PSyhu-Lv1iWgx_K_dI-26" value="Aufsichtspersonen zugewiesen" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=#666666;overflow=hidden;fillColor=#f5f5f5;top=1;left=1;bottom=1;right=1;pointerEvents=1;fontColor=#333333;dashed=1;dashPattern=1 4;align=left;fontSize=13;" parent="M1PSyhu-Lv1iWgx_K_dI-24" vertex="1">
<mxGeometry width="651" height="36" as="geometry">
<mxRectangle width="651" height="36" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-12" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=#666666;overflow=hidden;fillColor=#f5f5f5;top=1;left=1;bottom=1;right=1;pointerEvents=1;fontColor=#333333;dashed=1;dashPattern=1 4;align=left;fontSize=13;" parent="M1PSyhu-Lv1iWgx_K_dI-24" vertex="1">
<mxGeometry x="651" width="50" height="36" as="geometry">
<mxRectangle width="50" height="36" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-70" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=#666666;overflow=hidden;fillColor=#f5f5f5;top=1;left=1;bottom=1;right=1;pointerEvents=1;fontColor=#333333;dashed=1;dashPattern=1 4;align=left;fontSize=13;" parent="M1PSyhu-Lv1iWgx_K_dI-24" vertex="1">
<mxGeometry x="701" width="90" height="36" as="geometry">
<mxRectangle width="90" height="36" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="M1PSyhu-Lv1iWgx_K_dI-27" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="M1PSyhu-Lv1iWgx_K_dI-14" vertex="1">
<mxGeometry y="207" width="790.5" height="35" as="geometry" />
</mxCell>
<mxCell id="M1PSyhu-Lv1iWgx_K_dI-29" value="Studierende eingetragen oder Einschreibeverfahren bekannt gegeben" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=#666666;overflow=hidden;fillColor=#f5f5f5;top=1;left=1;bottom=1;right=1;pointerEvents=1;fontColor=#333333;dashed=1;dashPattern=1 4;align=left;fontSize=13;" parent="M1PSyhu-Lv1iWgx_K_dI-27" vertex="1">
<mxGeometry width="651" height="35" as="geometry">
<mxRectangle width="651" height="35" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-13" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=#666666;overflow=hidden;fillColor=#f5f5f5;top=1;left=1;bottom=1;right=1;pointerEvents=1;fontColor=#333333;dashed=1;dashPattern=1 4;align=left;fontSize=13;" parent="M1PSyhu-Lv1iWgx_K_dI-27" vertex="1">
<mxGeometry x="651" width="50" height="35" as="geometry">
<mxRectangle width="50" height="35" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-71" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=#666666;overflow=hidden;fillColor=#f5f5f5;top=1;left=1;bottom=1;right=1;pointerEvents=1;fontColor=#333333;dashed=1;dashPattern=1 4;align=left;fontSize=13;" parent="M1PSyhu-Lv1iWgx_K_dI-27" vertex="1">
<mxGeometry x="701" width="90" height="35" as="geometry">
<mxRectangle width="90" height="35" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-6" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="M1PSyhu-Lv1iWgx_K_dI-14" vertex="1">
<mxGeometry y="242" width="790.5" height="36" as="geometry" />
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-8" value="Alle Angaben der Prüfungsbuchung geprüft? (Eine Woche vor der Prüfung automatisiert nachfragen!)" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=#666666;overflow=hidden;fillColor=#f5f5f5;top=1;left=1;bottom=1;right=1;pointerEvents=1;fontColor=#333333;dashed=1;dashPattern=1 4;align=left;fontSize=13;" parent="SF6q-6VZULmL_obWjuGS-6" vertex="1">
<mxGeometry width="651" height="36" as="geometry">
<mxRectangle width="651" height="36" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-14" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=#666666;overflow=hidden;fillColor=#f5f5f5;top=1;left=1;bottom=1;right=1;pointerEvents=1;fontColor=#333333;dashed=1;dashPattern=1 4;align=left;fontSize=13;" parent="SF6q-6VZULmL_obWjuGS-6" vertex="1">
<mxGeometry x="651" width="50" height="36" as="geometry">
<mxRectangle width="50" height="36" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-72" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=#666666;overflow=hidden;fillColor=#f5f5f5;top=1;left=1;bottom=1;right=1;pointerEvents=1;fontColor=#333333;dashed=1;dashPattern=1 4;align=left;fontSize=13;" parent="SF6q-6VZULmL_obWjuGS-6" vertex="1">
<mxGeometry x="701" width="90" height="36" as="geometry">
<mxRectangle width="90" height="36" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-21" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="M1PSyhu-Lv1iWgx_K_dI-14" vertex="1">
<mxGeometry y="278" width="790.5" height="35" as="geometry" />
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-23" value="<b style="font-size: 15px;">Checklisten-Kategorie Technische Ausstattung</b>" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=#666666;overflow=hidden;fillColor=#E6E6E6;top=1;left=1;bottom=1;right=1;pointerEvents=1;fontColor=#333333;dashed=1;dashPattern=1 4;align=left;fontSize=13;" parent="SF6q-6VZULmL_obWjuGS-21" vertex="1">
<mxGeometry width="651" height="35" as="geometry">
<mxRectangle width="651" height="35" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-24" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=#666666;overflow=hidden;fillColor=#E6E6E6;top=1;left=1;bottom=1;right=1;pointerEvents=1;fontColor=#333333;dashed=1;dashPattern=1 4;align=left;fontSize=13;" parent="SF6q-6VZULmL_obWjuGS-21" vertex="1">
<mxGeometry x="651" width="50" height="35" as="geometry">
<mxRectangle width="50" height="35" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-73" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=#666666;overflow=hidden;fillColor=#E6E6E6;top=1;left=1;bottom=1;right=1;pointerEvents=1;fontColor=#333333;dashed=1;dashPattern=1 4;align=left;fontSize=13;" parent="SF6q-6VZULmL_obWjuGS-21" vertex="1">
<mxGeometry x="701" width="90" height="35" as="geometry">
<mxRectangle width="90" height="35" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-25" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="M1PSyhu-Lv1iWgx_K_dI-14" vertex="1">
<mxGeometry y="313" width="790.5" height="36" as="geometry" />
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-27" value="Benötigte Ressourcen" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=#666666;overflow=hidden;fillColor=#f5f5f5;top=1;left=1;bottom=1;right=1;pointerEvents=1;fontColor=#333333;dashed=1;dashPattern=1 4;align=left;fontSize=13;" parent="SF6q-6VZULmL_obWjuGS-25" vertex="1">
<mxGeometry width="651" height="36" as="geometry">
<mxRectangle width="651" height="36" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-28" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=#666666;overflow=hidden;fillColor=#f5f5f5;top=1;left=1;bottom=1;right=1;pointerEvents=1;fontColor=#333333;dashed=1;dashPattern=1 4;align=left;fontSize=13;" parent="SF6q-6VZULmL_obWjuGS-25" vertex="1">
<mxGeometry x="651" width="50" height="36" as="geometry">
<mxRectangle width="50" height="36" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-74" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=#666666;overflow=hidden;fillColor=#f5f5f5;top=1;left=1;bottom=1;right=1;pointerEvents=1;fontColor=#333333;dashed=1;dashPattern=1 4;align=left;fontSize=13;" parent="SF6q-6VZULmL_obWjuGS-25" vertex="1">
<mxGeometry x="701" width="90" height="36" as="geometry">
<mxRectangle width="90" height="36" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-96" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="M1PSyhu-Lv1iWgx_K_dI-14" vertex="1">
<mxGeometry y="349" width="790.5" height="36" as="geometry" />
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-97" value="Barrierefreier Arbeitsplatz" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=#666666;overflow=hidden;fillColor=#f5f5f5;top=1;left=1;bottom=1;right=1;pointerEvents=1;fontColor=#333333;dashed=1;dashPattern=1 4;align=left;fontSize=13;" parent="SF6q-6VZULmL_obWjuGS-96" vertex="1">
<mxGeometry width="651" height="36" as="geometry">
<mxRectangle width="651" height="36" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-98" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=#666666;overflow=hidden;fillColor=#f5f5f5;top=1;left=1;bottom=1;right=1;pointerEvents=1;fontColor=#333333;dashed=1;dashPattern=1 4;align=left;fontSize=13;" parent="SF6q-6VZULmL_obWjuGS-96" vertex="1">
<mxGeometry x="651" width="50" height="36" as="geometry">
<mxRectangle width="50" height="36" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-99" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=#666666;overflow=hidden;fillColor=#f5f5f5;top=1;left=1;bottom=1;right=1;pointerEvents=1;fontColor=#333333;dashed=1;dashPattern=1 4;align=left;fontSize=13;" parent="SF6q-6VZULmL_obWjuGS-96" vertex="1">
<mxGeometry x="701" width="90" height="36" as="geometry">
<mxRectangle width="90" height="36" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-92" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="M1PSyhu-Lv1iWgx_K_dI-14" vertex="1">
<mxGeometry y="385" width="790.5" height="36" as="geometry" />
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-93" value="<font style="font-size: 15px;"><b>Checklisten-Kategorie Kontrolle Prüfungskurs</b></font>" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=#666666;overflow=hidden;fillColor=#E6E6E6;top=1;left=1;bottom=1;right=1;pointerEvents=1;fontColor=#333333;dashed=1;dashPattern=1 4;align=left;fontSize=13;" parent="SF6q-6VZULmL_obWjuGS-92" vertex="1">
<mxGeometry width="651" height="36" as="geometry">
<mxRectangle width="651" height="36" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-94" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=#666666;overflow=hidden;fillColor=#E6E6E6;top=1;left=1;bottom=1;right=1;pointerEvents=1;fontColor=#333333;dashed=1;dashPattern=1 4;align=left;fontSize=13;" parent="SF6q-6VZULmL_obWjuGS-92" vertex="1">
<mxGeometry x="651" width="50" height="36" as="geometry">
<mxRectangle width="50" height="36" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-95" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=#666666;overflow=hidden;fillColor=#E6E6E6;top=1;left=1;bottom=1;right=1;pointerEvents=1;fontColor=#333333;dashed=1;dashPattern=1 4;align=left;fontSize=13;" parent="SF6q-6VZULmL_obWjuGS-92" vertex="1">
<mxGeometry x="701" width="90" height="36" as="geometry">
<mxRectangle width="90" height="36" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-88" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="M1PSyhu-Lv1iWgx_K_dI-14" vertex="1">
<mxGeometry y="421" width="790.5" height="36" as="geometry" />
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-89" value="Datumseinstellungen" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=#666666;overflow=hidden;fillColor=#f5f5f5;top=1;left=1;bottom=1;right=1;pointerEvents=1;fontColor=#333333;dashed=1;dashPattern=1 4;align=left;fontSize=13;" parent="SF6q-6VZULmL_obWjuGS-88" vertex="1">
<mxGeometry width="651" height="36" as="geometry">
<mxRectangle width="651" height="36" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-90" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=#666666;overflow=hidden;fillColor=#f5f5f5;top=1;left=1;bottom=1;right=1;pointerEvents=1;fontColor=#333333;dashed=1;dashPattern=1 4;align=left;fontSize=13;" parent="SF6q-6VZULmL_obWjuGS-88" vertex="1">
<mxGeometry x="651" width="50" height="36" as="geometry">
<mxRectangle width="50" height="36" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-91" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=#666666;overflow=hidden;fillColor=#f5f5f5;top=1;left=1;bottom=1;right=1;pointerEvents=1;fontColor=#333333;dashed=1;dashPattern=1 4;align=left;fontSize=13;" parent="SF6q-6VZULmL_obWjuGS-88" vertex="1">
<mxGeometry x="701" width="90" height="36" as="geometry">
<mxRectangle width="90" height="36" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-84" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="M1PSyhu-Lv1iWgx_K_dI-14" vertex="1">
<mxGeometry y="457" width="790.5" height="36" as="geometry" />
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-85" value="Testeinstellungen" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=#666666;overflow=hidden;fillColor=#f5f5f5;top=1;left=1;bottom=1;right=1;pointerEvents=1;fontColor=#333333;dashed=1;dashPattern=1 4;align=left;fontSize=13;" parent="SF6q-6VZULmL_obWjuGS-84" vertex="1">
<mxGeometry width="651" height="36" as="geometry">
<mxRectangle width="651" height="36" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-86" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=#666666;overflow=hidden;fillColor=#f5f5f5;top=1;left=1;bottom=1;right=1;pointerEvents=1;fontColor=#333333;dashed=1;dashPattern=1 4;align=left;fontSize=13;" parent="SF6q-6VZULmL_obWjuGS-84" vertex="1">
<mxGeometry x="651" width="50" height="36" as="geometry">
<mxRectangle width="50" height="36" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-87" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=#666666;overflow=hidden;fillColor=#f5f5f5;top=1;left=1;bottom=1;right=1;pointerEvents=1;fontColor=#333333;dashed=1;dashPattern=1 4;align=left;fontSize=13;" parent="SF6q-6VZULmL_obWjuGS-84" vertex="1">
<mxGeometry x="701" width="90" height="36" as="geometry">
<mxRectangle width="90" height="36" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-80" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="M1PSyhu-Lv1iWgx_K_dI-14" vertex="1">
<mxGeometry y="493" width="790.5" height="36" as="geometry" />
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-81" value="..." style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=#666666;overflow=hidden;fillColor=#f5f5f5;top=1;left=1;bottom=1;right=1;pointerEvents=1;fontColor=#333333;dashed=1;dashPattern=1 4;align=left;fontSize=13;" parent="SF6q-6VZULmL_obWjuGS-80" vertex="1">
<mxGeometry width="651" height="36" as="geometry">
<mxRectangle width="651" height="36" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-82" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=#666666;overflow=hidden;fillColor=#f5f5f5;top=1;left=1;bottom=1;right=1;pointerEvents=1;fontColor=#333333;dashed=1;dashPattern=1 4;align=left;fontSize=13;" parent="SF6q-6VZULmL_obWjuGS-80" vertex="1">
<mxGeometry x="651" width="50" height="36" as="geometry">
<mxRectangle width="50" height="36" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-83" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=#666666;overflow=hidden;fillColor=#f5f5f5;top=1;left=1;bottom=1;right=1;pointerEvents=1;fontColor=#333333;dashed=1;dashPattern=1 4;align=left;fontSize=13;" parent="SF6q-6VZULmL_obWjuGS-80" vertex="1">
<mxGeometry x="701" width="90" height="36" as="geometry">
<mxRectangle width="90" height="36" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="h2HBl5gkmupRguE7wDUX-40" value="" style="strokeColor=#999999;verticalLabelPosition=bottom;shadow=0;dashed=0;verticalAlign=top;strokeWidth=2;html=1;shape=mxgraph.mockup.misc.editIcon;rotation=0;" parent="1" vertex="1">
<mxGeometry x="697" y="457" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="h2HBl5gkmupRguE7wDUX-41" value="" style="strokeColor=#999999;verticalLabelPosition=bottom;shadow=0;dashed=0;verticalAlign=top;strokeWidth=2;html=1;shape=mxgraph.mockup.misc.editIcon;rotation=0;" parent="1" vertex="1">
<mxGeometry x="697" y="422" width="18" height="18" as="geometry" />
</mxCell>
<mxCell id="h2HBl5gkmupRguE7wDUX-42" value="" style="strokeColor=#999999;verticalLabelPosition=bottom;shadow=0;dashed=0;verticalAlign=top;strokeWidth=2;html=1;shape=mxgraph.mockup.misc.editIcon;rotation=0;" parent="1" vertex="1">
<mxGeometry x="697" y="385" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="h2HBl5gkmupRguE7wDUX-43" value="" style="strokeColor=#999999;verticalLabelPosition=bottom;shadow=0;dashed=0;verticalAlign=top;strokeWidth=2;html=1;shape=mxgraph.mockup.misc.editIcon;rotation=0;" parent="1" vertex="1">
<mxGeometry x="697" y="352" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="h2HBl5gkmupRguE7wDUX-44" value="" style="strokeColor=#999999;verticalLabelPosition=bottom;shadow=0;dashed=0;verticalAlign=top;strokeWidth=2;html=1;shape=mxgraph.mockup.misc.editIcon;rotation=0;" parent="1" vertex="1">
<mxGeometry x="696" y="314" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-29" value="<font style="font-size: 13px;">Raum</font>" 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=17;spacingLeft=3;" parent="1" vertex="1">
<mxGeometry x="457.5" y="140" width="344" height="30" as="geometry" />
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-59" value="" style="group" parent="1" vertex="1" connectable="0">
<mxGeometry x="27.5" y="800" width="779" height="50" as="geometry" />
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-40" value="Neue Kategorie" 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=#7EA6E0;whiteSpace=wrap;" parent="SF6q-6VZULmL_obWjuGS-59" vertex="1">
<mxGeometry y="10" width="150" height="40" as="geometry" />
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-41" 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=#CCCCCC;whiteSpace=wrap;" parent="SF6q-6VZULmL_obWjuGS-59" vertex="1">
<mxGeometry x="559" y="10" width="220" height="40" as="geometry" />
</mxCell>
<mxCell id="WMnK-blxrpDh7Fb3QbJE-1" value="Neuer Checklistenpunkt" 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=#7EA6E0;whiteSpace=wrap;" parent="SF6q-6VZULmL_obWjuGS-59" vertex="1">
<mxGeometry x="192.5" y="10" width="220" height="40" as="geometry" />
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-103" value="" style="strokeColor=#999999;verticalLabelPosition=bottom;shadow=0;dashed=0;verticalAlign=top;strokeWidth=2;html=1;shape=mxgraph.mockup.misc.editIcon;rotation=0;" parent="1" vertex="1">
<mxGeometry x="696" y="633" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-104" value="" style="strokeColor=#999999;verticalLabelPosition=bottom;shadow=0;dashed=0;verticalAlign=top;strokeWidth=2;html=1;shape=mxgraph.mockup.misc.editIcon;rotation=0;" parent="1" vertex="1">
<mxGeometry x="696" y="598" width="18" height="18" as="geometry" />
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-105" value="" style="strokeColor=#999999;verticalLabelPosition=bottom;shadow=0;dashed=0;verticalAlign=top;strokeWidth=2;html=1;shape=mxgraph.mockup.misc.editIcon;rotation=0;" parent="1" vertex="1">
<mxGeometry x="696" y="561" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-106" value="" style="strokeColor=#999999;verticalLabelPosition=bottom;shadow=0;dashed=0;verticalAlign=top;strokeWidth=2;html=1;shape=mxgraph.mockup.misc.editIcon;rotation=0;" parent="1" vertex="1">
<mxGeometry x="696" y="528" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-107" value="" style="strokeColor=#999999;verticalLabelPosition=bottom;shadow=0;dashed=0;verticalAlign=top;strokeWidth=2;html=1;shape=mxgraph.mockup.misc.editIcon;rotation=0;" parent="1" vertex="1">
<mxGeometry x="696" y="492" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-108" value="" style="strokeColor=#999999;verticalLabelPosition=bottom;shadow=0;dashed=0;verticalAlign=top;strokeWidth=2;html=1;shape=mxgraph.mockup.misc.editIcon;rotation=0;" parent="1" vertex="1">
<mxGeometry x="694" y="671.28" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-109" value="" style="strokeColor=#999999;verticalLabelPosition=bottom;shadow=0;dashed=0;verticalAlign=top;strokeWidth=2;html=1;shape=mxgraph.mockup.misc.editIcon;rotation=0;" parent="1" vertex="1">
<mxGeometry x="694" y="706" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-110" value="" style="strokeColor=#999999;verticalLabelPosition=bottom;shadow=0;dashed=0;verticalAlign=top;strokeWidth=2;html=1;shape=mxgraph.mockup.misc.editIcon;rotation=0;" parent="1" vertex="1">
<mxGeometry x="694" y="743" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="ga6tANoivgjXZiCyFvkw-3" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0;entryY=0.5;entryDx=0;entryDy=0;" parent="1" source="SF6q-6VZULmL_obWjuGS-111" target="SF6q-6VZULmL_obWjuGS-54" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="-42.499999999999545" y="154.99999999999977" as="targetPoint" />
<Array as="points">
<mxPoint x="-70" y="155" />
<mxPoint x="-70" y="970" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-111" value="<font style="font-size: 13px;">Aufgabenbereich / Rolle</font>" 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=17;spacingLeft=3;" parent="1" vertex="1">
<mxGeometry x="37.5" y="140" width="344" height="30" as="geometry" />
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-208" value="" style="group" parent="1" vertex="1" connectable="0">
<mxGeometry x="760" y="315" width="20" height="446.28" as="geometry" />
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-195" value="" style="html=1;verticalLabelPosition=bottom;align=center;labelBackgroundColor=#ffffff;verticalAlign=top;strokeWidth=2;strokeColor=#666666;shadow=0;dashed=0;shape=mxgraph.ios7.icons.repeat;pointerEvents=1;direction=south;rotation=0;" parent="SF6q-6VZULmL_obWjuGS-208" vertex="1">
<mxGeometry y="426.28" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-196" value="" style="html=1;verticalLabelPosition=bottom;align=center;labelBackgroundColor=#ffffff;verticalAlign=top;strokeWidth=2;strokeColor=#666666;shadow=0;dashed=0;shape=mxgraph.ios7.icons.repeat;pointerEvents=1;direction=south;rotation=0;" parent="SF6q-6VZULmL_obWjuGS-208" vertex="1">
<mxGeometry y="390" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-197" value="" style="html=1;verticalLabelPosition=bottom;align=center;labelBackgroundColor=#ffffff;verticalAlign=top;strokeWidth=2;strokeColor=#666666;shadow=0;dashed=0;shape=mxgraph.ios7.icons.repeat;pointerEvents=1;direction=south;rotation=0;" parent="SF6q-6VZULmL_obWjuGS-208" vertex="1">
<mxGeometry y="354.28" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-198" value="" style="html=1;verticalLabelPosition=bottom;align=center;labelBackgroundColor=#ffffff;verticalAlign=top;strokeWidth=2;strokeColor=#666666;shadow=0;dashed=0;shape=mxgraph.ios7.icons.repeat;pointerEvents=1;direction=south;rotation=0;" parent="SF6q-6VZULmL_obWjuGS-208" vertex="1">
<mxGeometry y="319" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-199" value="" style="html=1;verticalLabelPosition=bottom;align=center;labelBackgroundColor=#ffffff;verticalAlign=top;strokeWidth=2;strokeColor=#666666;shadow=0;dashed=0;shape=mxgraph.ios7.icons.repeat;pointerEvents=1;direction=south;rotation=0;" parent="SF6q-6VZULmL_obWjuGS-208" vertex="1">
<mxGeometry y="283.44000000000005" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-200" value="" style="html=1;verticalLabelPosition=bottom;align=center;labelBackgroundColor=#ffffff;verticalAlign=top;strokeWidth=2;strokeColor=#666666;shadow=0;dashed=0;shape=mxgraph.ios7.icons.repeat;pointerEvents=1;direction=south;rotation=0;" parent="SF6q-6VZULmL_obWjuGS-208" vertex="1">
<mxGeometry y="246.42000000000007" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-201" value="" style="html=1;verticalLabelPosition=bottom;align=center;labelBackgroundColor=#ffffff;verticalAlign=top;strokeWidth=2;strokeColor=#666666;shadow=0;dashed=0;shape=mxgraph.ios7.icons.repeat;pointerEvents=1;direction=south;rotation=0;" parent="SF6q-6VZULmL_obWjuGS-208" vertex="1">
<mxGeometry y="211.84000000000003" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-202" value="" style="html=1;verticalLabelPosition=bottom;align=center;labelBackgroundColor=#ffffff;verticalAlign=top;strokeWidth=2;strokeColor=#666666;shadow=0;dashed=0;shape=mxgraph.ios7.icons.repeat;pointerEvents=1;direction=south;rotation=0;" parent="SF6q-6VZULmL_obWjuGS-208" vertex="1">
<mxGeometry y="175.64" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-203" value="" style="html=1;verticalLabelPosition=bottom;align=center;labelBackgroundColor=#ffffff;verticalAlign=top;strokeWidth=2;strokeColor=#666666;shadow=0;dashed=0;shape=mxgraph.ios7.icons.repeat;pointerEvents=1;direction=south;rotation=0;" parent="SF6q-6VZULmL_obWjuGS-208" vertex="1">
<mxGeometry y="140.27999999999997" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-204" value="" style="html=1;verticalLabelPosition=bottom;align=center;labelBackgroundColor=#ffffff;verticalAlign=top;strokeWidth=2;strokeColor=#666666;shadow=0;dashed=0;shape=mxgraph.ios7.icons.repeat;pointerEvents=1;direction=south;rotation=0;" parent="SF6q-6VZULmL_obWjuGS-208" vertex="1">
<mxGeometry y="105" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-205" value="" style="html=1;verticalLabelPosition=bottom;align=center;labelBackgroundColor=#ffffff;verticalAlign=top;strokeWidth=2;strokeColor=#666666;shadow=0;dashed=0;shape=mxgraph.ios7.icons.repeat;pointerEvents=1;direction=south;rotation=0;" parent="SF6q-6VZULmL_obWjuGS-208" vertex="1">
<mxGeometry y="70.27999999999997" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-206" value="" style="html=1;verticalLabelPosition=bottom;align=center;labelBackgroundColor=#ffffff;verticalAlign=top;strokeWidth=2;strokeColor=#666666;shadow=0;dashed=0;shape=mxgraph.ios7.icons.repeat;pointerEvents=1;direction=south;rotation=0;" parent="SF6q-6VZULmL_obWjuGS-208" vertex="1">
<mxGeometry y="35" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-207" value="" style="html=1;verticalLabelPosition=bottom;align=center;labelBackgroundColor=#ffffff;verticalAlign=top;strokeWidth=2;strokeColor=#666666;shadow=0;dashed=0;shape=mxgraph.ios7.icons.repeat;pointerEvents=1;direction=south;rotation=0;" parent="SF6q-6VZULmL_obWjuGS-208" vertex="1">
<mxGeometry width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-49" value="je Prüfungsraum verschiedene Checklisten" 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="1" vertex="1">
<mxGeometry x="650" y="920" width="150" height="70" as="geometry" />
</mxCell>
<mxCell id="h2HBl5gkmupRguE7wDUX-108" value="Checklisten-Optionen" style="locked=1;" parent="0" />
<mxCell id="h2HBl5gkmupRguE7wDUX-109" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0;entryY=0.5;entryDx=0;entryDy=0;" parent="h2HBl5gkmupRguE7wDUX-108" target="h2HBl5gkmupRguE7wDUX-112" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="710" y="360" as="sourcePoint" />
<Array as="points">
<mxPoint x="920" y="360" />
<mxPoint x="920" y="267" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="h2HBl5gkmupRguE7wDUX-111" value="" style="whiteSpace=wrap;html=1;verticalAlign=top;strokeColor=#36393d;shadow=0;dashed=0;strokeWidth=2;fillColor=#f9f7ed;" parent="h2HBl5gkmupRguE7wDUX-108" vertex="1">
<mxGeometry x="944.77" y="287.28" width="530" height="550" as="geometry" />
</mxCell>
<mxCell id="h2HBl5gkmupRguE7wDUX-112" value="Checklistenelement bearbeiten" style="text;strokeColor=#36393d;align=center;fillColor=#cce5ff;html=1;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontStyle=1;fontSize=14;" parent="h2HBl5gkmupRguE7wDUX-108" vertex="1">
<mxGeometry x="944.77" y="245.998905109489" width="210" height="41.277372262773724" as="geometry" />
</mxCell>
<mxCell id="h2HBl5gkmupRguE7wDUX-114" value="Bezeichnung" style="text;strokeColor=none;align=left;fillColor=none;html=1;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontStyle=1;fontSize=13;" parent="h2HBl5gkmupRguE7wDUX-108" vertex="1">
<mxGeometry x="954.77" y="297.28" width="90" height="41.28" as="geometry" />
</mxCell>
<mxCell id="h2HBl5gkmupRguE7wDUX-115" value="Verantwortlich" style="text;strokeColor=none;align=left;fillColor=none;html=1;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontStyle=1;fontSize=13;" parent="h2HBl5gkmupRguE7wDUX-108" vertex="1">
<mxGeometry x="954.77" y="364.2810218978102" width="90" height="41.277372262773724" as="geometry" />
</mxCell>
<mxCell id="h2HBl5gkmupRguE7wDUX-116" value="Buchende*r / Service-Team / ..." 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=13;spacingLeft=3;" parent="h2HBl5gkmupRguE7wDUX-108" vertex="1">
<mxGeometry x="1084.77" y="364.28" width="350" height="41.28" as="geometry" />
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-60" value="Freitext-Feld" style="html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;strokeColor=#CED4DA;strokeWidth=1;fillColor=#E9ECEF;fontColor=#505050;whiteSpace=wrap;align=left;verticalAlign=middle;spacingLeft=10;fontSize=14;" parent="h2HBl5gkmupRguE7wDUX-108" vertex="1">
<mxGeometry x="1084.77" y="298.55999999999995" width="380" height="40" as="geometry" />
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-116" value="" style="group" parent="h2HBl5gkmupRguE7wDUX-108" vertex="1" connectable="0">
<mxGeometry x="954.77" y="567.2788686131387" width="240" height="41.277372262773724" as="geometry" />
</mxCell>
<mxCell id="LzJ3E76Xs3PUDbBHmzgn-14" value="Automatisch am Termin?" style="text;strokeColor=none;align=left;fillColor=none;html=1;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontStyle=1;fontSize=13;" parent="SF6q-6VZULmL_obWjuGS-116" vertex="1">
<mxGeometry width="160" height="41.277372262773724" as="geometry" />
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-114" value="" style="group" parent="SF6q-6VZULmL_obWjuGS-116" vertex="1" connectable="0">
<mxGeometry x="180" y="13.001131386861289" width="60" height="10" as="geometry" />
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-61" value="ja" style="html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.radioButton2;labelPosition=right;verticalLabelPosition=middle;align=left;verticalAlign=middle;gradientColor=#DEDEDE;fillColor=#EDEDED;checked=0;spacing=5;checkedFill=#0085FC;checkedStroke=#ffffff;fontSize=13;" parent="SF6q-6VZULmL_obWjuGS-114" vertex="1">
<mxGeometry width="10" height="10" as="geometry" />
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-62" value="nein" style="html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.radioButton2;labelPosition=right;verticalLabelPosition=middle;align=left;verticalAlign=middle;gradientColor=#DEDEDE;fillColor=#EDEDED;checked=0;spacing=5;checkedFill=#0085FC;checkedStroke=#ffffff;fontSize=13;" parent="SF6q-6VZULmL_obWjuGS-114" vertex="1">
<mxGeometry x="50" width="10" height="10" as="geometry" />
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-117" value="" style="group" parent="h2HBl5gkmupRguE7wDUX-108" vertex="1" connectable="0">
<mxGeometry x="954.77" y="726.56" width="430" height="41.28" as="geometry" />
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-64" value="Kategorie" style="text;strokeColor=none;align=left;fillColor=none;html=1;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontStyle=1;fontSize=13;" parent="SF6q-6VZULmL_obWjuGS-117" vertex="1">
<mxGeometry width="80" height="41.28" as="geometry" />
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-65" value="Checklisten-Kategorie (muss angelegt sein)" 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=13;spacingLeft=3;" parent="SF6q-6VZULmL_obWjuGS-117" vertex="1">
<mxGeometry x="130" width="300" height="41.28" as="geometry" />
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-211" value="Checklistenkategorie bearbeiten" style="text;strokeColor=#36393d;align=center;fillColor=#cce5ff;html=1;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontStyle=1;fontSize=14;" parent="h2HBl5gkmupRguE7wDUX-108" vertex="1">
<mxGeometry x="930" y="20" width="230" height="41.28" as="geometry" />
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-214" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="h2HBl5gkmupRguE7wDUX-108" target="SF6q-6VZULmL_obWjuGS-210" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="935" y="330" />
<mxPoint x="935" y="130" />
</Array>
<mxPoint x="720" y="330" as="sourcePoint" />
</mxGeometry>
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-218" value="" style="group" parent="h2HBl5gkmupRguE7wDUX-108" vertex="1" connectable="0">
<mxGeometry x="954.77" y="787.28" width="509" height="40" as="geometry" />
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-219" value="Speichern" 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=#7EA6E0;whiteSpace=wrap;" parent="SF6q-6VZULmL_obWjuGS-218" vertex="1">
<mxGeometry width="150" height="40" as="geometry" />
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-220" value="Löschen" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.buttons.button;strokeColor=#b85450;mainText=;buttonStyle=round;fontSize=17;fontStyle=1;fillColor=#f8cecc;whiteSpace=wrap;" parent="SF6q-6VZULmL_obWjuGS-218" vertex="1">
<mxGeometry x="359" width="150" height="40" as="geometry" />
</mxCell>
<mxCell id="N88sC-kDk-tNkNpW3S4a-8" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="h2HBl5gkmupRguE7wDUX-108" source="tKte8elYGVKdBzl8FrZ1-5" target="N88sC-kDk-tNkNpW3S4a-6" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="tKte8elYGVKdBzl8FrZ1-5" value="Benachrichtigungstexte sind per Sprachdatei individuell formulierbar." 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="h2HBl5gkmupRguE7wDUX-108" vertex="1">
<mxGeometry x="1514.77" y="616" width="160" height="90" as="geometry" />
</mxCell>
<mxCell id="LzJ3E76Xs3PUDbBHmzgn-11" value="Benachrichtigung?" style="text;strokeColor=none;align=left;fillColor=none;html=1;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontStyle=1;fontSize=13;" parent="h2HBl5gkmupRguE7wDUX-108" vertex="1">
<mxGeometry x="954.77" y="517.28" width="120" height="41.28" as="geometry" />
</mxCell>
<mxCell id="LzJ3E76Xs3PUDbBHmzgn-13" value="Buchende*r / Service-Team / ... / Keine" 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=13;spacingLeft=3;" parent="h2HBl5gkmupRguE7wDUX-108" vertex="1">
<mxGeometry x="1084.77" y="517.28" width="300" height="41.28" as="geometry" />
</mxCell>
<mxCell id="tKte8elYGVKdBzl8FrZ1-11" value="" style="group" parent="h2HBl5gkmupRguE7wDUX-108" vertex="1" connectable="0">
<mxGeometry x="954.77" y="406" width="700" height="212.28" as="geometry" />
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-172" value="" style="group" parent="tKte8elYGVKdBzl8FrZ1-11" vertex="1" connectable="0">
<mxGeometry y="21.423593826903087" width="470" height="50.07142878832116" as="geometry" />
</mxCell>
<mxCell id="h2HBl5gkmupRguE7wDUX-117" value="Termin relativ" style="text;strokeColor=none;align=left;fillColor=none;html=1;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontStyle=1;fontSize=13;" parent="SF6q-6VZULmL_obWjuGS-172" vertex="1">
<mxGeometry y="0.0007968800834114517" width="90" height="50.07063190823774" as="geometry" />
</mxCell>
<mxCell id="UnJLPp4cT4F1k7DDOegg-1" value="<p style="line-height: 60%; font-size: 13px;">14<br></p>" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.spinner;strokeColor=#999999;spinLayout=right;spinStyle=normal;adjStyle=triangle;fillColor=#aaddff;fontSize=13;fontColor=#666666;mainText=;html=1;overflow=fill;" parent="SF6q-6VZULmL_obWjuGS-172" vertex="1">
<mxGeometry x="130" y="5.69291131595402" width="110" height="38.68348114285714" as="geometry" />
</mxCell>
<mxCell id="UnJLPp4cT4F1k7DDOegg-2" value="Tage vor der Prüfung - <br><font color="#cc0000">leer lassen für "terminunabhängig"</font>" style="text;strokeColor=none;align=left;fillColor=none;html=1;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontSize=13;" parent="SF6q-6VZULmL_obWjuGS-172" vertex="1">
<mxGeometry x="250" width="220" height="50.07" as="geometry" />
</mxCell>
<mxCell id="N88sC-kDk-tNkNpW3S4a-3" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="h2HBl5gkmupRguE7wDUX-108" source="N88sC-kDk-tNkNpW3S4a-1" target="h2HBl5gkmupRguE7wDUX-116" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="N88sC-kDk-tNkNpW3S4a-1" value="Rollenbezeichnungen!" 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="h2HBl5gkmupRguE7wDUX-108" vertex="1">
<mxGeometry x="1484.77" y="370" width="170" height="30" as="geometry" />
</mxCell>
<mxCell id="N88sC-kDk-tNkNpW3S4a-4" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.994;entryY=0.402;entryDx=0;entryDy=0;entryPerimeter=0;" parent="h2HBl5gkmupRguE7wDUX-108" target="LzJ3E76Xs3PUDbBHmzgn-13" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="1494.77" y="395" as="sourcePoint" />
<mxPoint x="1384.17" y="550.0076799999999" as="targetPoint" />
<Array as="points">
<mxPoint x="1494.77" y="396" />
<mxPoint x="1439.77" y="396" />
<mxPoint x="1439.77" y="534" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-210" value="" style="whiteSpace=wrap;html=1;verticalAlign=top;strokeColor=#36393d;shadow=0;dashed=0;strokeWidth=2;fillColor=#f9f7ed;" parent="h2HBl5gkmupRguE7wDUX-108" vertex="1">
<mxGeometry x="944.77" y="76" width="530" height="120" as="geometry" />
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-217" value="" style="group" parent="h2HBl5gkmupRguE7wDUX-108" vertex="1" connectable="0">
<mxGeometry x="955.77" y="146" width="509" height="40" as="geometry" />
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-215" value="Speichern" 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=#7EA6E0;whiteSpace=wrap;" parent="SF6q-6VZULmL_obWjuGS-217" vertex="1">
<mxGeometry width="150" height="40" as="geometry" />
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-216" value="Löschen" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.buttons.button;strokeColor=#b85450;mainText=;buttonStyle=round;fontSize=17;fontStyle=1;fillColor=#f8cecc;whiteSpace=wrap;" parent="SF6q-6VZULmL_obWjuGS-217" vertex="1">
<mxGeometry x="359" width="150" height="40" as="geometry" />
</mxCell>
<mxCell id="N88sC-kDk-tNkNpW3S4a-5" value="Benachrichtigungstext" style="text;strokeColor=none;align=left;fillColor=none;html=1;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontStyle=1;fontSize=13;" parent="h2HBl5gkmupRguE7wDUX-108" vertex="1">
<mxGeometry x="954.77" y="616" width="90" height="41.28" as="geometry" />
</mxCell>
<mxCell id="N88sC-kDk-tNkNpW3S4a-6" value="Freitext-Feld, ggf mit Platzhaltern für Name, Prüfungsbezeichnung, etc." style="html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;strokeWidth=1;whiteSpace=wrap;align=left;verticalAlign=top;spacingLeft=10;fontSize=14;" parent="h2HBl5gkmupRguE7wDUX-108" vertex="1">
<mxGeometry x="1114.77" y="606" width="350" height="110" as="geometry" />
</mxCell>
<mxCell id="N88sC-kDk-tNkNpW3S4a-9" value="" style="group" parent="h2HBl5gkmupRguE7wDUX-108" vertex="1" connectable="0">
<mxGeometry x="954.77" y="86" width="510" height="41.27999999999997" as="geometry" />
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-212" value="Bezeichnung" style="text;strokeColor=none;align=left;fillColor=none;html=1;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontStyle=1;fontSize=13;" parent="N88sC-kDk-tNkNpW3S4a-9" vertex="1">
<mxGeometry width="90" height="41.28" as="geometry" />
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-213" value="Freitext-Feld" style="html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.rrect;rSize=5;strokeColor=#CED4DA;strokeWidth=1;fillColor=#E9ECEF;fontColor=#505050;whiteSpace=wrap;align=left;verticalAlign=middle;spacingLeft=10;fontSize=14;" parent="N88sC-kDk-tNkNpW3S4a-9" vertex="1">
<mxGeometry x="130" y="1.2799999999999727" width="380" height="40" as="geometry" />
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-43" value="Filteroptionen" style="locked=1;" parent="0" />
<mxCell id="SF6q-6VZULmL_obWjuGS-44" 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="SF6q-6VZULmL_obWjuGS-43" vertex="1">
<mxGeometry x="440" y="910" width="150" height="110" as="geometry" />
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-45" 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="SF6q-6VZULmL_obWjuGS-44" vertex="1">
<mxGeometry y="30" width="150" height="20" as="geometry" />
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-46" 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="SF6q-6VZULmL_obWjuGS-44" vertex="1">
<mxGeometry y="50" width="150" height="20" as="geometry" />
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-47" value="PC-Saal MathNat" 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="SF6q-6VZULmL_obWjuGS-44" vertex="1">
<mxGeometry y="70" width="150" height="20" as="geometry" />
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-48" value="Fernprüfung" 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="SF6q-6VZULmL_obWjuGS-44" vertex="1">
<mxGeometry y="90" width="150" height="20" as="geometry" />
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-52" value="Aufgabenbereich" 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="SF6q-6VZULmL_obWjuGS-43" vertex="1">
<mxGeometry x="90" y="910" width="210" height="110" as="geometry" />
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-53" value="Buchende" 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="SF6q-6VZULmL_obWjuGS-52" vertex="1">
<mxGeometry y="30" width="210" height="20" as="geometry" />
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-54" value="Service-Team" 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="SF6q-6VZULmL_obWjuGS-52" vertex="1">
<mxGeometry y="50" width="210" height="20" as="geometry" />
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-55" value="Support vor Ort" 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="SF6q-6VZULmL_obWjuGS-52" vertex="1">
<mxGeometry y="70" width="210" height="20" as="geometry" />
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-56" value="Aufsichtspersonen" 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="SF6q-6VZULmL_obWjuGS-52" vertex="1">
<mxGeometry y="90" width="210" height="20" as="geometry" />
</mxCell>
<mxCell id="SF6q-6VZULmL_obWjuGS-209" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="SF6q-6VZULmL_obWjuGS-43" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="802" y="155" as="sourcePoint" />
<mxPoint x="520" y="900" as="targetPoint" />
<Array as="points">
<mxPoint x="850" y="156" />
<mxPoint x="850" y="890" />
</Array>
</mxGeometry>
</mxCell>
</root>
</mxGraphModel>
</diagram>
<diagram id="U2jb-RSi5WsM652t6KDA" name="Adminoberfläche">
<mxGraphModel dx="3647" dy="1512" 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" />
<object label="Backend Übersicht" id="1">
<mxCell style="locked=1;" parent="0" />
</object>
<mxCell id="hhbZZIXx-p72COfFiIwf-3" value="<font style="font-size: 24px;" color="#ffffff"><b>Mockup ADMIN BACKEND</b></font>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#7EA6E0;strokeColor=#7EA6E0;" parent="1" vertex="1">
<mxGeometry y="20" width="827" height="70" as="geometry" />
</mxCell>
<mxCell id="hhbZZIXx-p72COfFiIwf-4" value="Kalender" style="text;html=1;align=center;verticalAlign=middle;resizable=1;points=[];autosize=0;strokeColor=#d6b656;fillColor=#fff2cc;fontSize=14;fontStyle=1;rotation=0;resizeWidth=0;fixedWidth=1;" parent="1" vertex="1">
<mxGeometry x="20" y="160" width="250" height="30" as="geometry" />
</mxCell>
<mxCell id="73b31XL_ingLZRUsvPe2-34" value="Haupt-Plugin Kalender" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=#d6b656;fillColor=#fff2cc;fontSize=14;fontStyle=1;" parent="1" vertex="1">
<mxGeometry x="109" y="100" width="160" height="30" as="geometry" />
</mxCell>
<mxCell id="73b31XL_ingLZRUsvPe2-35" value="Optionales Plugin Ressourcen" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=#82b366;fillColor=#d5e8d4;fontSize=14;fontStyle=1;" parent="1" vertex="1">
<mxGeometry x="289" y="100" width="210" height="30" as="geometry" />
</mxCell>
<mxCell id="73b31XL_ingLZRUsvPe2-36" value="Optionales Plugin Checkliste" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=#b85450;fillColor=#f8cecc;fontSize=14;fontStyle=1;" parent="1" vertex="1">
<mxGeometry x="519" y="100" width="200" height="30" as="geometry" />
</mxCell>
<mxCell id="73b31XL_ingLZRUsvPe2-37" value="Filteroptionen" style="text;html=1;align=center;verticalAlign=middle;resizable=1;points=[];autosize=0;strokeColor=#d6b656;fillColor=#fff2cc;fontSize=14;fontStyle=1;rotation=0;resizeWidth=0;fixedWidth=1;" parent="1" vertex="1">
<mxGeometry x="289" y="160" width="250" height="30" as="geometry" />
</mxCell>
<mxCell id="73b31XL_ingLZRUsvPe2-38" value="Import / Export" style="text;html=1;align=center;verticalAlign=middle;resizable=1;points=[];autosize=0;strokeColor=#d6b656;fillColor=#fff2cc;fontSize=14;fontStyle=1;rotation=0;resizeWidth=0;fixedWidth=1;" parent="1" vertex="1">
<mxGeometry x="560" y="160" width="250" height="30" as="geometry" />
</mxCell>
<mxCell id="73b31XL_ingLZRUsvPe2-39" value="Benachrichtigungen" style="text;html=1;align=center;verticalAlign=middle;resizable=1;points=[];autosize=0;strokeColor=#d6b656;fillColor=#fff2cc;fontSize=14;fontStyle=1;rotation=0;resizeWidth=0;fixedWidth=1;" parent="1" vertex="1">
<mxGeometry x="20" y="210" width="250" height="30" as="geometry" />
</mxCell>
<mxCell id="73b31XL_ingLZRUsvPe2-40" value="Prüfungsräume" style="text;html=1;align=center;verticalAlign=middle;resizable=1;points=[];autosize=0;strokeColor=#82b366;fillColor=#d5e8d4;fontSize=14;fontStyle=1;rotation=0;resizeWidth=0;fixedWidth=1;" parent="1" vertex="1">
<mxGeometry x="20" y="270" width="250" height="30" as="geometry" />
</mxCell>
<mxCell id="73b31XL_ingLZRUsvPe2-41" value="Ressourcen" style="text;html=1;align=center;verticalAlign=middle;resizable=1;points=[];autosize=0;strokeColor=#82b366;fillColor=#d5e8d4;fontSize=14;fontStyle=1;rotation=0;resizeWidth=0;fixedWidth=1;" parent="1" vertex="1">
<mxGeometry x="289" y="270" width="250" height="30" as="geometry" />
</mxCell>
<mxCell id="73b31XL_ingLZRUsvPe2-42" value="Prüfungskurs" style="text;html=1;align=center;verticalAlign=middle;resizable=1;points=[];autosize=0;strokeColor=#82b366;fillColor=#d5e8d4;fontSize=14;fontStyle=1;rotation=0;resizeWidth=0;fixedWidth=1;" parent="1" vertex="1">
<mxGeometry x="560" y="270" width="250" height="30" as="geometry" />
</mxCell>
<mxCell id="73b31XL_ingLZRUsvPe2-43" value="Checkliste" style="text;html=1;align=center;verticalAlign=middle;resizable=1;points=[];autosize=0;strokeColor=#b85450;fillColor=#f8cecc;fontSize=14;fontStyle=1;rotation=0;resizeWidth=0;fixedWidth=1;" parent="1" vertex="1">
<mxGeometry x="20" y="390" width="250" height="30" as="geometry" />
</mxCell>
<mxCell id="73b31XL_ingLZRUsvPe2-44" value="Rollen" style="text;html=1;align=center;verticalAlign=middle;resizable=1;points=[];autosize=0;strokeColor=#b85450;fillColor=#f8cecc;fontSize=14;fontStyle=1;rotation=0;resizeWidth=0;fixedWidth=1;" parent="1" vertex="1">
<mxGeometry x="289" y="390" width="250" height="30" as="geometry" />
</mxCell>
<mxCell id="JIG27jCXMRdYl5VGxWZt-16" value="Fakultäten / Einrichtungen" style="text;html=1;align=center;verticalAlign=middle;resizable=1;points=[];autosize=0;strokeColor=#82b366;fillColor=#d5e8d4;fontSize=14;fontStyle=1;rotation=0;resizeWidth=0;fixedWidth=1;" parent="1" vertex="1">
<mxGeometry x="19" y="320" width="250" height="30" as="geometry" />
</mxCell>
<mxCell id="7PANxu5txrci8HXPYn8F-40" value="" style="whiteSpace=wrap;html=1;fillColor=none;" parent="1" vertex="1">
<mxGeometry x="10" y="380" width="810" height="50" as="geometry" />
</mxCell>
<mxCell id="7PANxu5txrci8HXPYn8F-42" value="" style="whiteSpace=wrap;html=1;fillColor=none;" parent="1" vertex="1">
<mxGeometry x="8" y="151" width="810" height="100" as="geometry" />
</mxCell>
<mxCell id="7PANxu5txrci8HXPYn8F-43" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.666;entryY=0.003;entryDx=0;entryDy=0;exitX=0.668;exitY=0.97;exitDx=0;exitDy=0;exitPerimeter=0;entryPerimeter=0;" parent="1" source="7PANxu5txrci8HXPYn8F-42" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="549.0799999999999" y="265.20000000000005" as="sourcePoint" />
<mxPoint x="548" y="448" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="7PANxu5txrci8HXPYn8F-44" value="" style="whiteSpace=wrap;html=1;fillColor=none;" parent="1" vertex="1">
<mxGeometry x="8" y="260" width="810" height="110" as="geometry" />
</mxCell>
<mxCell id="73b31XL_ingLZRUsvPe2-2" value="Kalender" style="locked=1;" parent="0" />
<mxCell id="73b31XL_ingLZRUsvPe2-47" value="" style="whiteSpace=wrap;html=1;fillColor=none;flipV=0;flipH=0;fontSize=11;verticalAlign=middle;" parent="73b31XL_ingLZRUsvPe2-2" vertex="1">
<mxGeometry y="440" width="810" height="1690" as="geometry" />
</mxCell>
<mxCell id="73b31XL_ingLZRUsvPe2-49" value="<font style="font-size: 15px;"><b>Kalender</b></font>" style="text;strokeColor=#d6b656;align=left;fillColor=#fff2cc;html=1;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="73b31XL_ingLZRUsvPe2-2" vertex="1">
<mxGeometry x="20" y="454" width="70" height="30" as="geometry" />
</mxCell>
<mxCell id="73b31XL_ingLZRUsvPe2-50" value="<font style="font-size: 15px;"><b>Filteroptionen</b></font>" style="text;strokeColor=#d6b656;align=left;fillColor=#fff2cc;html=1;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="73b31XL_ingLZRUsvPe2-2" vertex="1">
<mxGeometry x="20" y="764" width="110" height="30" as="geometry" />
</mxCell>
<mxCell id="73b31XL_ingLZRUsvPe2-51" value="<font style="font-size: 15px;"><b>Import / Export</b></font>" style="text;strokeColor=#d6b656;align=left;fillColor=#fff2cc;html=1;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="73b31XL_ingLZRUsvPe2-2" vertex="1">
<mxGeometry x="20" y="1120" width="110" height="30" as="geometry" />
</mxCell>
<mxCell id="73b31XL_ingLZRUsvPe2-52" value="<font style="font-size: 15px;"><b>Benachrichtigungen</b></font>" style="text;strokeColor=#d6b656;align=left;fillColor=#fff2cc;html=1;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="73b31XL_ingLZRUsvPe2-2" vertex="1">
<mxGeometry x="19" y="1410" width="160" height="30" as="geometry" />
</mxCell>
<mxCell id="73b31XL_ingLZRUsvPe2-64" value="Automatische Benachrichtigung an "Rolle" soll auch an&nbsp; die Entscheidungskompetenz des Service-Teams weiterleitbar sein." 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="73b31XL_ingLZRUsvPe2-2" vertex="1">
<mxGeometry x="490" y="1560" width="200" height="110" as="geometry" />
</mxCell>
<mxCell id="ewz_xF5JasrlfMMQasoq-3" value="Moodle Standardeinstellungen Kalender:" style="text;strokeColor=none;align=left;fillColor=none;html=1;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontStyle=1;" parent="73b31XL_ingLZRUsvPe2-2" vertex="1">
<mxGeometry x="20" y="484" width="240" height="30" as="geometry" />
</mxCell>
<mxCell id="ewz_xF5JasrlfMMQasoq-4" value="<div style=""><span style="background-color: initial;">your moodle url&nbsp;</span><span style="background-color: initial;">/admin/settings.php?section=calendar</span><span style="background-color: initial;">&nbsp;</span><span style="background-color: initial; text-wrap: nowrap; color: rgba(0, 0, 0, 0); font-family: monospace; font-size: 0px;">%3CmxGraphModel%3E%3Croot%3E%3CmxCell%20id%3D%220%22%2F%3E%3CmxCell%20id%3D%221%22%20parent%3D%220%22%2F%3E%3CmxCell%20id%3D%222%22%20value%3D%22Moodle%20Standardeinstellungen%20Kalender%3A%22%20style%3D%22text%3BstrokeColor%3Dnone%3Balign%3Dcenter%3BfillColor%3Dnone%3Bhtml%3D1%3BverticalAlign%3Dmiddle%3BwhiteSpace%3Dwrap%3Brounded%3D0%3B%22%20vertex%3D%221%22%20parent%3D%221%22%3E%3CmxGeometry%20x%3D%2210%22%20y%3D%22420%22%20width%3D%22230%22%20height%3D%2230%22%20as%3D%22geometry%22%2F%3E%3C%2FmxCell%3E%3C%2Froot%3E%3C%2FmxGraphModel%3E</span><span style="background-color: initial; text-wrap: nowrap; font-size: 0px;"><font color="rgba(0, 0, 0, 0)" face="monospace">/admin/settings.php?section=calendar</font></span><span style="background-color: initial; text-wrap: nowrap; font-size: 0px;"><font color="#ba0000" face="monospace">/admin/settings.php?section=calendar</font></span></div>" style="text;strokeColor=none;align=left;fillColor=none;html=1;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="73b31XL_ingLZRUsvPe2-2" vertex="1">
<mxGeometry x="159" y="504" width="300" height="30" as="geometry" />
</mxCell>
<mxCell id="ewz_xF5JasrlfMMQasoq-13" value="<span style="color: rgb(0, 0, 0); font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; float: none; display: inline !important;">Falls Zusatzplugin "Ressourcen / Prüfungsräume" installiert:<br>Es soll pro Prüfungsraum individuell konfigurierbare Zeitslots geben</span>" 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;labelBackgroundColor=none;" parent="73b31XL_ingLZRUsvPe2-2" vertex="1">
<mxGeometry x="470" y="604" width="210" height="110" as="geometry" />
</mxCell>
<mxCell id="ewz_xF5JasrlfMMQasoq-51" value="" style="group;" parent="73b31XL_ingLZRUsvPe2-2" vertex="1" connectable="0">
<mxGeometry x="19" y="544" width="240" height="30" as="geometry" />
</mxCell>
<mxCell id="ewz_xF5JasrlfMMQasoq-5" value="Zeitslots verwenden?" style="text;strokeColor=none;align=left;fillColor=none;html=1;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontStyle=1;" parent="ewz_xF5JasrlfMMQasoq-51" vertex="1">
<mxGeometry width="240" height="30" as="geometry" />
</mxCell>
<mxCell id="ewz_xF5JasrlfMMQasoq-12" value="" style="group;" parent="ewz_xF5JasrlfMMQasoq-51" vertex="1" connectable="0">
<mxGeometry x="151" y="10" width="60" height="10" as="geometry" />
</mxCell>
<mxCell id="ewz_xF5JasrlfMMQasoq-9" value="ja" style="html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.radioButton2;labelPosition=right;verticalLabelPosition=middle;align=left;verticalAlign=middle;gradientColor=#DEDEDE;fillColor=#EDEDED;checked=0;spacing=5;checkedFill=#0085FC;checkedStroke=#ffffff;" parent="ewz_xF5JasrlfMMQasoq-12" vertex="1">
<mxGeometry width="10" height="10" as="geometry" />
</mxCell>
<mxCell id="ewz_xF5JasrlfMMQasoq-10" value="nein" style="html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.radioButton2;labelPosition=right;verticalLabelPosition=middle;align=left;verticalAlign=middle;gradientColor=#DEDEDE;fillColor=#EDEDED;checked=0;spacing=5;checkedFill=#0085FC;checkedStroke=#ffffff;" parent="ewz_xF5JasrlfMMQasoq-12" vertex="1">
<mxGeometry x="50" width="10" height="10" as="geometry" />
</mxCell>
<mxCell id="ewz_xF5JasrlfMMQasoq-52" value="" style="group;" parent="73b31XL_ingLZRUsvPe2-2" vertex="1" connectable="0">
<mxGeometry x="20" y="604" width="421" height="130" as="geometry" />
</mxCell>
<mxCell id="ewz_xF5JasrlfMMQasoq-14" value="Zeitslots:" style="text;strokeColor=none;align=left;fillColor=none;html=1;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontStyle=1;" parent="ewz_xF5JasrlfMMQasoq-52" vertex="1">
<mxGeometry width="71" height="30" as="geometry" />
</mxCell>
<mxCell id="ewz_xF5JasrlfMMQasoq-48" value="" style="group;" parent="ewz_xF5JasrlfMMQasoq-52" vertex="1" connectable="0">
<mxGeometry x="151" width="270" height="130" as="geometry" />
</mxCell>
<mxCell id="ewz_xF5JasrlfMMQasoq-43" value="" style="group;" parent="ewz_xF5JasrlfMMQasoq-48" vertex="1" connectable="0">
<mxGeometry width="270" height="30" as="geometry" />
</mxCell>
<mxCell id="ewz_xF5JasrlfMMQasoq-16" value="<font face="Helvetica">Beginn</font>" style="rounded=0;arcSize=9;fillColor=#F7F8F9;align=left;spacingLeft=5;strokeColor=#4D4D4D;html=1;strokeWidth=1;fontColor=#596780;fontSize=12;hachureGap=4;pointerEvents=0;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;rotation=0;" parent="ewz_xF5JasrlfMMQasoq-43" vertex="1">
<mxGeometry x="60" y="5" width="100" height="20" as="geometry" />
</mxCell>
<mxCell id="ewz_xF5JasrlfMMQasoq-17" value="" style="shape=mxgraph.gmdl.calendar;fillColor=#5A6881;strokeColor=none;hachureGap=4;pointerEvents=0;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=20;rotation=0;" parent="ewz_xF5JasrlfMMQasoq-16" vertex="1">
<mxGeometry x="1" y="0.5" width="15" height="15" relative="1" as="geometry">
<mxPoint x="-21" y="-8" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="ewz_xF5JasrlfMMQasoq-20" value="<span style="font-weight: normal;">Zeitslot 1</span>" style="text;strokeColor=none;align=left;fillColor=none;html=1;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontStyle=1;" parent="ewz_xF5JasrlfMMQasoq-43" vertex="1">
<mxGeometry width="60" height="30" as="geometry" />
</mxCell>
<mxCell id="ewz_xF5JasrlfMMQasoq-21" value="<font face="Helvetica">Ende</font>" style="rounded=0;arcSize=9;fillColor=#F7F8F9;align=left;spacingLeft=5;strokeColor=#4D4D4D;html=1;strokeWidth=1;fontColor=#596780;fontSize=12;hachureGap=4;pointerEvents=0;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;rotation=0;" parent="ewz_xF5JasrlfMMQasoq-43" vertex="1">
<mxGeometry x="170" y="5" width="100" height="20" as="geometry" />
</mxCell>
<mxCell id="ewz_xF5JasrlfMMQasoq-22" value="" style="shape=mxgraph.gmdl.calendar;fillColor=#5A6881;strokeColor=none;hachureGap=4;pointerEvents=0;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=20;rotation=0;" parent="ewz_xF5JasrlfMMQasoq-21" vertex="1">
<mxGeometry x="1" y="0.5" width="15" height="15" relative="1" as="geometry">
<mxPoint x="-21" y="-8" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="ewz_xF5JasrlfMMQasoq-44" value="" style="group;" parent="ewz_xF5JasrlfMMQasoq-48" vertex="1" connectable="0">
<mxGeometry y="25" width="270" height="30" as="geometry" />
</mxCell>
<mxCell id="ewz_xF5JasrlfMMQasoq-23" value="<font face="Helvetica">Beginn</font>" style="rounded=0;arcSize=9;fillColor=#F7F8F9;align=left;spacingLeft=5;strokeColor=#4D4D4D;html=1;strokeWidth=1;fontColor=#596780;fontSize=12;hachureGap=4;pointerEvents=0;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;rotation=0;" parent="ewz_xF5JasrlfMMQasoq-44" vertex="1">
<mxGeometry x="60" y="5" width="100" height="20" as="geometry" />
</mxCell>
<mxCell id="ewz_xF5JasrlfMMQasoq-24" value="" style="shape=mxgraph.gmdl.calendar;fillColor=#5A6881;strokeColor=none;hachureGap=4;pointerEvents=0;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=20;rotation=0;" parent="ewz_xF5JasrlfMMQasoq-23" vertex="1">
<mxGeometry x="1" y="0.5" width="15" height="15" relative="1" as="geometry">
<mxPoint x="-21" y="-8" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="ewz_xF5JasrlfMMQasoq-25" value="<span style="font-weight: normal;">Zeitslot 2</span>" style="text;strokeColor=none;align=left;fillColor=none;html=1;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontStyle=1;" parent="ewz_xF5JasrlfMMQasoq-44" vertex="1">
<mxGeometry width="60" height="30" as="geometry" />
</mxCell>
<mxCell id="ewz_xF5JasrlfMMQasoq-26" value="<font face="Helvetica">Ende</font>" style="rounded=0;arcSize=9;fillColor=#F7F8F9;align=left;spacingLeft=5;strokeColor=#4D4D4D;html=1;strokeWidth=1;fontColor=#596780;fontSize=12;hachureGap=4;pointerEvents=0;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;rotation=0;" parent="ewz_xF5JasrlfMMQasoq-44" vertex="1">
<mxGeometry x="170" y="5" width="100" height="20" as="geometry" />
</mxCell>
<mxCell id="ewz_xF5JasrlfMMQasoq-27" value="" style="shape=mxgraph.gmdl.calendar;fillColor=#5A6881;strokeColor=none;hachureGap=4;pointerEvents=0;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=20;rotation=0;" parent="ewz_xF5JasrlfMMQasoq-26" vertex="1">
<mxGeometry x="1" y="0.5" width="15" height="15" relative="1" as="geometry">
<mxPoint x="-21" y="-8" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="ewz_xF5JasrlfMMQasoq-45" value="" style="group;" parent="ewz_xF5JasrlfMMQasoq-48" vertex="1" connectable="0">
<mxGeometry y="50" width="270" height="30" as="geometry" />
</mxCell>
<mxCell id="ewz_xF5JasrlfMMQasoq-28" value="<font face="Helvetica">Beginn</font>" style="rounded=0;arcSize=9;fillColor=#F7F8F9;align=left;spacingLeft=5;strokeColor=#4D4D4D;html=1;strokeWidth=1;fontColor=#596780;fontSize=12;hachureGap=4;pointerEvents=0;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;rotation=0;" parent="ewz_xF5JasrlfMMQasoq-45" vertex="1">
<mxGeometry x="60" y="5" width="100" height="20" as="geometry" />
</mxCell>
<mxCell id="ewz_xF5JasrlfMMQasoq-29" value="" style="shape=mxgraph.gmdl.calendar;fillColor=#5A6881;strokeColor=none;hachureGap=4;pointerEvents=0;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=20;rotation=0;" parent="ewz_xF5JasrlfMMQasoq-28" vertex="1">
<mxGeometry x="1" y="0.5" width="15" height="15" relative="1" as="geometry">
<mxPoint x="-21" y="-8" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="ewz_xF5JasrlfMMQasoq-30" value="<span style="font-weight: normal;">Zeitslot 3</span>" style="text;strokeColor=none;align=left;fillColor=none;html=1;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontStyle=1;" parent="ewz_xF5JasrlfMMQasoq-45" vertex="1">
<mxGeometry width="60" height="30" as="geometry" />
</mxCell>
<mxCell id="ewz_xF5JasrlfMMQasoq-31" value="<font face="Helvetica">Ende</font>" style="rounded=0;arcSize=9;fillColor=#F7F8F9;align=left;spacingLeft=5;strokeColor=#4D4D4D;html=1;strokeWidth=1;fontColor=#596780;fontSize=12;hachureGap=4;pointerEvents=0;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;rotation=0;" parent="ewz_xF5JasrlfMMQasoq-45" vertex="1">
<mxGeometry x="170" y="5" width="100" height="20" as="geometry" />
</mxCell>
<mxCell id="ewz_xF5JasrlfMMQasoq-32" value="" style="shape=mxgraph.gmdl.calendar;fillColor=#5A6881;strokeColor=none;hachureGap=4;pointerEvents=0;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=20;rotation=0;" parent="ewz_xF5JasrlfMMQasoq-31" vertex="1">
<mxGeometry x="1" y="0.5" width="15" height="15" relative="1" as="geometry">
<mxPoint x="-21" y="-8" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="ewz_xF5JasrlfMMQasoq-46" value="" style="group;" parent="ewz_xF5JasrlfMMQasoq-48" vertex="1" connectable="0">
<mxGeometry y="75" width="270" height="30" as="geometry" />
</mxCell>
<mxCell id="ewz_xF5JasrlfMMQasoq-33" value="<font face="Helvetica">Beginn</font>" style="rounded=0;arcSize=9;fillColor=#F7F8F9;align=left;spacingLeft=5;strokeColor=#4D4D4D;html=1;strokeWidth=1;fontColor=#596780;fontSize=12;hachureGap=4;pointerEvents=0;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;rotation=0;" parent="ewz_xF5JasrlfMMQasoq-46" vertex="1">
<mxGeometry x="60" y="5" width="100" height="20" as="geometry" />
</mxCell>
<mxCell id="ewz_xF5JasrlfMMQasoq-34" value="" style="shape=mxgraph.gmdl.calendar;fillColor=#5A6881;strokeColor=none;hachureGap=4;pointerEvents=0;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=20;rotation=0;" parent="ewz_xF5JasrlfMMQasoq-33" vertex="1">
<mxGeometry x="1" y="0.5" width="15" height="15" relative="1" as="geometry">
<mxPoint x="-21" y="-8" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="ewz_xF5JasrlfMMQasoq-35" value="<span style="font-weight: normal;">Zeitslot 4</span>" style="text;strokeColor=none;align=left;fillColor=none;html=1;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontStyle=1;" parent="ewz_xF5JasrlfMMQasoq-46" vertex="1">
<mxGeometry width="60" height="30" as="geometry" />
</mxCell>
<mxCell id="ewz_xF5JasrlfMMQasoq-36" value="<font face="Helvetica">Ende</font>" style="rounded=0;arcSize=9;fillColor=#F7F8F9;align=left;spacingLeft=5;strokeColor=#4D4D4D;html=1;strokeWidth=1;fontColor=#596780;fontSize=12;hachureGap=4;pointerEvents=0;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;rotation=0;" parent="ewz_xF5JasrlfMMQasoq-46" vertex="1">
<mxGeometry x="170" y="5" width="100" height="20" as="geometry" />
</mxCell>
<mxCell id="ewz_xF5JasrlfMMQasoq-37" value="" style="shape=mxgraph.gmdl.calendar;fillColor=#5A6881;strokeColor=none;hachureGap=4;pointerEvents=0;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=20;rotation=0;" parent="ewz_xF5JasrlfMMQasoq-36" vertex="1">
<mxGeometry x="1" y="0.5" width="15" height="15" relative="1" as="geometry">
<mxPoint x="-21" y="-8" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="ewz_xF5JasrlfMMQasoq-47" value="" style="group;" parent="ewz_xF5JasrlfMMQasoq-48" vertex="1" connectable="0">
<mxGeometry y="100" width="270" height="30" as="geometry" />
</mxCell>
<mxCell id="ewz_xF5JasrlfMMQasoq-38" value="<font face="Helvetica">Beginn</font>" style="rounded=0;arcSize=9;fillColor=#F7F8F9;align=left;spacingLeft=5;strokeColor=#4D4D4D;html=1;strokeWidth=1;fontColor=#596780;fontSize=12;hachureGap=4;pointerEvents=0;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;rotation=0;" parent="ewz_xF5JasrlfMMQasoq-47" vertex="1">
<mxGeometry x="60" y="5" width="100" height="20" as="geometry" />
</mxCell>
<mxCell id="ewz_xF5JasrlfMMQasoq-39" value="" style="shape=mxgraph.gmdl.calendar;fillColor=#5A6881;strokeColor=none;hachureGap=4;pointerEvents=0;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=20;rotation=0;" parent="ewz_xF5JasrlfMMQasoq-38" vertex="1">
<mxGeometry x="1" y="0.5" width="15" height="15" relative="1" as="geometry">
<mxPoint x="-21" y="-8" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="ewz_xF5JasrlfMMQasoq-40" value="<span style="font-weight: normal;">Zeitslot 5</span>" style="text;strokeColor=none;align=left;fillColor=none;html=1;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontStyle=1;" parent="ewz_xF5JasrlfMMQasoq-47" vertex="1">
<mxGeometry width="60" height="30" as="geometry" />
</mxCell>
<mxCell id="ewz_xF5JasrlfMMQasoq-41" value="<font face="Helvetica">Ende</font>" style="rounded=0;arcSize=9;fillColor=#F7F8F9;align=left;spacingLeft=5;strokeColor=#4D4D4D;html=1;strokeWidth=1;fontColor=#596780;fontSize=12;hachureGap=4;pointerEvents=0;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;rotation=0;" parent="ewz_xF5JasrlfMMQasoq-47" vertex="1">
<mxGeometry x="170" y="5" width="100" height="20" as="geometry" />
</mxCell>
<mxCell id="ewz_xF5JasrlfMMQasoq-42" value="" style="shape=mxgraph.gmdl.calendar;fillColor=#5A6881;strokeColor=none;hachureGap=4;pointerEvents=0;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=20;rotation=0;" parent="ewz_xF5JasrlfMMQasoq-41" vertex="1">
<mxGeometry x="1" y="0.5" width="15" height="15" relative="1" as="geometry">
<mxPoint x="-21" y="-8" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="ewz_xF5JasrlfMMQasoq-59" value="<span style="font-size: 13px;">Freitextsuche</span>" style="text;strokeColor=none;align=left;fillColor=none;html=1;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontStyle=1;fontColor=#000000;" parent="73b31XL_ingLZRUsvPe2-2" vertex="1">
<mxGeometry x="20" y="794" width="90" height="30" as="geometry" />
</mxCell>
<mxCell id="ewz_xF5JasrlfMMQasoq-62" value="<span style="font-size: 13px;">Stati</span>" style="text;strokeColor=none;align=left;fillColor=none;html=1;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontStyle=1;fontColor=#000000;" parent="73b31XL_ingLZRUsvPe2-2" vertex="1">
<mxGeometry x="20" y="914" width="90" height="30" as="geometry" />
</mxCell>
<mxCell id="ewz_xF5JasrlfMMQasoq-64" 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;fontSize=11;" parent="73b31XL_ingLZRUsvPe2-2" vertex="1">
<mxGeometry x="199" y="824" width="150" height="90" as="geometry" />
</mxCell>
<mxCell id="ewz_xF5JasrlfMMQasoq-65" value="Prüfungstitel" 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=13;fixDash=0;" parent="ewz_xF5JasrlfMMQasoq-64" vertex="1">
<mxGeometry width="150" height="30" as="geometry" />
</mxCell>
<mxCell id="ewz_xF5JasrlfMMQasoq-66" value="" style="resizable=0;fillColor=#EEEEEE;strokeColor=#999999;gradientColor=#cccccc;html=1;noLabel=0;" parent="ewz_xF5JasrlfMMQasoq-65" 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="ewz_xF5JasrlfMMQasoq-67" value="Anmerkungen" 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=13;" parent="ewz_xF5JasrlfMMQasoq-64" vertex="1">
<mxGeometry y="30" width="150" height="30" as="geometry" />
</mxCell>
<mxCell id="ewz_xF5JasrlfMMQasoq-68" value="" style="resizable=0;fillColor=#EEEEEE;strokeColor=#999999;gradientColor=#cccccc;html=1;" parent="ewz_xF5JasrlfMMQasoq-67" 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="ewz_xF5JasrlfMMQasoq-71" value="Checklistentitel" 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=13;" parent="ewz_xF5JasrlfMMQasoq-64" vertex="1">
<mxGeometry y="60" width="150" height="30" as="geometry" />
</mxCell>
<mxCell id="ewz_xF5JasrlfMMQasoq-72" value="" style="resizable=0;fillColor=#EEEEEE;strokeColor=#999999;gradientColor=#cccccc;html=1;" parent="ewz_xF5JasrlfMMQasoq-71" 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="ewz_xF5JasrlfMMQasoq-73" value="<span style="font-size: 13px;">In die Suche einbeziehen:</span>" style="text;strokeColor=none;align=left;fillColor=none;html=1;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontStyle=0;fontColor=#000000;" parent="73b31XL_ingLZRUsvPe2-2" vertex="1">
<mxGeometry x="39" y="824" width="170" height="30" as="geometry" />
</mxCell>
<mxCell id="ewz_xF5JasrlfMMQasoq-80" 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;fontSize=11;" parent="73b31XL_ingLZRUsvPe2-2" vertex="1">
<mxGeometry x="199" y="924" width="150" height="150" as="geometry" />
</mxCell>
<mxCell id="ewz_xF5JasrlfMMQasoq-81" value="Offen" style="text;strokeColor=#b85450;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=#f8cecc;fontSize=13;" parent="ewz_xF5JasrlfMMQasoq-80" vertex="1">
<mxGeometry width="150" height="30" as="geometry" />
</mxCell>
<mxCell id="ewz_xF5JasrlfMMQasoq-82" value="" style="resizable=0;fillColor=#EEEEEE;strokeColor=#999999;gradientColor=#cccccc;html=1;noLabel=0;" parent="ewz_xF5JasrlfMMQasoq-81" 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="ewz_xF5JasrlfMMQasoq-98" value="In Bearbeitung" style="text;strokeColor=#d6b656;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=#fff2cc;fontSize=13;" parent="ewz_xF5JasrlfMMQasoq-80" vertex="1">
<mxGeometry y="30" width="150" height="30" as="geometry" />
</mxCell>
<mxCell id="ewz_xF5JasrlfMMQasoq-99" value="" style="resizable=0;fillColor=#EEEEEE;strokeColor=#999999;gradientColor=#cccccc;html=1;noLabel=0;" parent="ewz_xF5JasrlfMMQasoq-98" 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="ewz_xF5JasrlfMMQasoq-93" value="Bestätigt" style="text;strokeColor=#82b366;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=#d5e8d4;fontSize=13;" parent="ewz_xF5JasrlfMMQasoq-80" vertex="1">
<mxGeometry y="60" width="150" height="30" as="geometry" />
</mxCell>
<mxCell id="ewz_xF5JasrlfMMQasoq-94" value="" style="resizable=0;fillColor=#EEEEEE;strokeColor=#999999;gradientColor=#cccccc;html=1;noLabel=0;" parent="ewz_xF5JasrlfMMQasoq-93" 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="ewz_xF5JasrlfMMQasoq-83" value="Storniert" style="text;strokeColor=#36393d;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=#ffcc99;fontSize=13;" parent="ewz_xF5JasrlfMMQasoq-80" vertex="1">
<mxGeometry y="90" width="150" height="30" as="geometry" />
</mxCell>
<mxCell id="ewz_xF5JasrlfMMQasoq-84" value="" style="resizable=0;fillColor=#EEEEEE;strokeColor=#999999;gradientColor=#cccccc;html=1;" parent="ewz_xF5JasrlfMMQasoq-83" 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="ewz_xF5JasrlfMMQasoq-101" value="Abgelehnt" style="text;strokeColor=#36393d;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=#ffcc99;fontSize=13;" parent="ewz_xF5JasrlfMMQasoq-80" vertex="1">
<mxGeometry y="120" width="150" height="30" as="geometry" />
</mxCell>
<mxCell id="ewz_xF5JasrlfMMQasoq-102" value="" style="resizable=0;fillColor=#EEEEEE;strokeColor=#999999;gradientColor=#cccccc;html=1;" parent="ewz_xF5JasrlfMMQasoq-101" 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="ewz_xF5JasrlfMMQasoq-103" 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;fontSize=11;" parent="73b31XL_ingLZRUsvPe2-2" vertex="1">
<mxGeometry x="239" y="1170" width="240" height="210" as="geometry" />
</mxCell>
<mxCell id="ewz_xF5JasrlfMMQasoq-104" value="anonymisierte Angaben" 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=13;fixDash=0;" parent="ewz_xF5JasrlfMMQasoq-103" vertex="1">
<mxGeometry width="240" height="30" as="geometry" />
</mxCell>
<mxCell id="ewz_xF5JasrlfMMQasoq-105" value="" style="resizable=0;fillColor=#EEEEEE;strokeColor=#999999;gradientColor=#cccccc;html=1;noLabel=0;" parent="ewz_xF5JasrlfMMQasoq-104" 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="ewz_xF5JasrlfMMQasoq-112" value="Prüfungstitel" 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=13;fixDash=0;" parent="ewz_xF5JasrlfMMQasoq-103" vertex="1">
<mxGeometry y="30" width="240" height="30" as="geometry" />
</mxCell>
<mxCell id="ewz_xF5JasrlfMMQasoq-113" value="" style="resizable=0;fillColor=#EEEEEE;strokeColor=#999999;gradientColor=#cccccc;html=1;noLabel=0;" parent="ewz_xF5JasrlfMMQasoq-112" 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="ewz_xF5JasrlfMMQasoq-114" value="Einrichtung / Fakultät" 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=13;fixDash=0;" parent="ewz_xF5JasrlfMMQasoq-103" vertex="1">
<mxGeometry y="60" width="240" height="30" as="geometry" />
</mxCell>
<mxCell id="ewz_xF5JasrlfMMQasoq-115" value="" style="resizable=0;fillColor=#EEEEEE;strokeColor=#999999;gradientColor=#cccccc;html=1;noLabel=0;" parent="ewz_xF5JasrlfMMQasoq-114" 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="ewz_xF5JasrlfMMQasoq-106" value="Anmerkungen" 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=13;" parent="ewz_xF5JasrlfMMQasoq-103" vertex="1">
<mxGeometry y="90" width="240" height="30" as="geometry" />
</mxCell>
<mxCell id="ewz_xF5JasrlfMMQasoq-107" value="" style="resizable=0;fillColor=#EEEEEE;strokeColor=#999999;gradientColor=#cccccc;html=1;" parent="ewz_xF5JasrlfMMQasoq-106" 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="ewz_xF5JasrlfMMQasoq-108" value="Raum" 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=13;" parent="ewz_xF5JasrlfMMQasoq-103" vertex="1">
<mxGeometry y="120" width="240" height="30" as="geometry" />
</mxCell>
<mxCell id="ewz_xF5JasrlfMMQasoq-109" value="" style="resizable=0;fillColor=#EEEEEE;strokeColor=#999999;gradientColor=#cccccc;html=1;" parent="ewz_xF5JasrlfMMQasoq-108" 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="ewz_xF5JasrlfMMQasoq-116" value="..." 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=13;" parent="ewz_xF5JasrlfMMQasoq-103" vertex="1">
<mxGeometry y="150" width="240" height="30" as="geometry" />
</mxCell>
<mxCell id="ewz_xF5JasrlfMMQasoq-117" value="" style="resizable=0;fillColor=#EEEEEE;strokeColor=#999999;gradientColor=#cccccc;html=1;" parent="ewz_xF5JasrlfMMQasoq-116" 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="ewz_xF5JasrlfMMQasoq-111" 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=13;" parent="ewz_xF5JasrlfMMQasoq-103" vertex="1">
<mxGeometry y="180" width="240" height="30" as="geometry" />
</mxCell>
<mxCell id="ewz_xF5JasrlfMMQasoq-110" value="<span style="font-size: 13px;">In die ical-Exportdatei einbeziehen</span>" style="text;strokeColor=none;align=left;fillColor=none;html=1;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontStyle=0;fontColor=#000000;" parent="73b31XL_ingLZRUsvPe2-2" vertex="1">
<mxGeometry x="19" y="1169" width="210" height="30" as="geometry" />
</mxCell>
<mxCell id="ewz_xF5JasrlfMMQasoq-118" value="Weiteren Zeitslot einrichten" style="text;strokeColor=none;align=left;fillColor=none;html=1;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="73b31XL_ingLZRUsvPe2-2" vertex="1">
<mxGeometry x="19" y="724" width="160" height="30" as="geometry" />
</mxCell>
<mxCell id="ewz_xF5JasrlfMMQasoq-135" value="" style="group;" parent="73b31XL_ingLZRUsvPe2-2" vertex="1" connectable="0">
<mxGeometry x="19" y="574" width="496" height="190" as="geometry" />
</mxCell>
<mxCell id="ewz_xF5JasrlfMMQasoq-136" value="(erst Slot 1, dann Slot 2 ..." style="text;strokeColor=none;align=left;fillColor=none;html=1;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="ewz_xF5JasrlfMMQasoq-135" vertex="1">
<mxGeometry x="340" width="156" height="30" as="geometry" />
</mxCell>
<mxCell id="ewz_xF5JasrlfMMQasoq-137" value="Zeitslots nur nacheinander buchbar?" style="text;strokeColor=none;align=left;fillColor=none;html=1;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontStyle=1;" parent="ewz_xF5JasrlfMMQasoq-135" vertex="1">
<mxGeometry width="240" height="30" as="geometry" />
</mxCell>
<mxCell id="ewz_xF5JasrlfMMQasoq-138" value="" style="group;" parent="73b31XL_ingLZRUsvPe2-2" vertex="1" connectable="0">
<mxGeometry x="105" y="574" width="240" height="30" as="geometry" />
</mxCell>
<mxCell id="ewz_xF5JasrlfMMQasoq-139" value="" style="group;" parent="ewz_xF5JasrlfMMQasoq-138" vertex="1" connectable="0">
<mxGeometry x="151" y="10" width="60" height="10" as="geometry" />
</mxCell>
<mxCell id="ewz_xF5JasrlfMMQasoq-140" value="ja" style="html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.radioButton2;labelPosition=right;verticalLabelPosition=middle;align=left;verticalAlign=middle;gradientColor=#DEDEDE;fillColor=#EDEDED;checked=0;spacing=5;checkedFill=#0085FC;checkedStroke=#ffffff;" parent="ewz_xF5JasrlfMMQasoq-139" vertex="1">
<mxGeometry width="10" height="10" as="geometry" />
</mxCell>
<mxCell id="ewz_xF5JasrlfMMQasoq-141" value="nein" style="html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.radioButton2;labelPosition=right;verticalLabelPosition=middle;align=left;verticalAlign=middle;gradientColor=#DEDEDE;fillColor=#EDEDED;checked=0;spacing=5;checkedFill=#0085FC;checkedStroke=#ffffff;" parent="ewz_xF5JasrlfMMQasoq-139" vertex="1">
<mxGeometry x="50" width="10" height="10" as="geometry" />
</mxCell>
<mxCell id="PNCADngemcSBItdt-AgZ-68" value="" style="group" vertex="1" connectable="0" parent="73b31XL_ingLZRUsvPe2-2">
<mxGeometry x="20" y="1450" width="770" height="187" as="geometry" />
</mxCell>
<mxCell id="PNCADngemcSBItdt-AgZ-67" value="" style="group" vertex="1" connectable="0" parent="PNCADngemcSBItdt-AgZ-68">
<mxGeometry y="41" width="770" height="146" as="geometry" />
</mxCell>
<mxCell id="PNCADngemcSBItdt-AgZ-39" value="<span style="font-size: 13px;">oder diese Mailadresse:</span>" style="text;strokeColor=none;align=left;fillColor=none;html=1;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontStyle=0;fontColor=#000000;" vertex="1" parent="PNCADngemcSBItdt-AgZ-67">
<mxGeometry x="400" y="19" width="150" height="30" as="geometry" />
</mxCell>
<mxCell id="PNCADngemcSBItdt-AgZ-44" value="" style="group" vertex="1" connectable="0" parent="PNCADngemcSBItdt-AgZ-67">
<mxGeometry width="60" height="10" as="geometry" />
</mxCell>
<mxCell id="PNCADngemcSBItdt-AgZ-36" value="nein" style="html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.radioButton2;labelPosition=right;verticalLabelPosition=middle;align=left;verticalAlign=middle;gradientColor=#DEDEDE;fillColor=#EDEDED;checked=0;spacing=5;checkedFill=#0085FC;checkedStroke=#ffffff;fontSize=14;" vertex="1" parent="PNCADngemcSBItdt-AgZ-44">
<mxGeometry width="10" height="10" as="geometry" />
</mxCell>
<mxCell id="PNCADngemcSBItdt-AgZ-37" value="ja" style="html=1;shadow=0;dashed=0;shape=mxgraph.bootstrap.radioButton2;labelPosition=right;verticalLabelPosition=middle;align=left;verticalAlign=middle;gradientColor=#DEDEDE;fillColor=#EDEDED;checked=0;spacing=5;checkedFill=#0085FC;checkedStroke=#ffffff;fontSize=14;" vertex="1" parent="PNCADngemcSBItdt-AgZ-44">
<mxGeometry x="50" width="10" height="10" as="geometry" />
</mxCell>
<mxCell id="PNCADngemcSBItdt-AgZ-60" value="sevice@prüfungen.de" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.text.textBox;fontColor=#666666;align=left;fontSize=13;spacingLeft=4;spacingTop=-3;whiteSpace=wrap;strokeColor=#666666;mainText=;rotation=0;" vertex="1" parent="PNCADngemcSBItdt-AgZ-67">
<mxGeometry x="550" y="24" width="220" height="25" as="geometry" />
</mxCell>
<mxCell id="PNCADngemcSBItdt-AgZ-63" value="" style="group" vertex="1" connectable="0" parent="PNCADngemcSBItdt-AgZ-67">
<mxGeometry x="20" y="19" width="371" height="127" as="geometry" />
</mxCell>
<mxCell id="PNCADngemcSBItdt-AgZ-38" value="<span style="font-size: 13px;">an diese Rolle:</span>" style="text;strokeColor=none;align=left;fillColor=none;html=1;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontStyle=0;fontColor=#000000;" vertex="1" parent="PNCADngemcSBItdt-AgZ-63">
<mxGeometry width="100" height="30" as="geometry" />
</mxCell>
<mxCell id="PNCADngemcSBItdt-AgZ-62" value="" style="group" vertex="1" connectable="0" parent="PNCADngemcSBItdt-AgZ-63">
<mxGeometry x="101" y="7" width="270" height="120" as="geometry" />
</mxCell>
<mxCell id="PNCADngemcSBItdt-AgZ-47" 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;fontSize=11;" vertex="1" parent="PNCADngemcSBItdt-AgZ-62">
<mxGeometry width="270" height="120" as="geometry" />
</mxCell>
<mxCell id="PNCADngemcSBItdt-AgZ-48" value="Buchende" 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=13;fixDash=0;" vertex="1" parent="PNCADngemcSBItdt-AgZ-47">
<mxGeometry width="270" height="30" as="geometry" />
</mxCell>
<mxCell id="PNCADngemcSBItdt-AgZ-49" value="x" style="resizable=1;fillColor=#EEEEEE;strokeColor=#999999;gradientColor=none;html=1;noLabel=0;imageAspect=1;absoluteArcSize=0;portConstraintRotation=0;metaEdit=0;editable=1;movable=1;rotatable=1;deletable=1;locked=0;connectable=1;overflow=width;fixDash=0;container=0;dropTarget=0;collapsible=0;expand=1;part=0;linecap=round;linejoin=round;rounded=0;glass=0;shadow=0;" vertex="1" parent="PNCADngemcSBItdt-AgZ-48">
<mxGeometry y="0.5" width="15" height="15" relative="1" as="geometry">
<mxPoint x="8" y="-7.5" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="PNCADngemcSBItdt-AgZ-50" value="Service-Team" 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=13;" vertex="1" parent="PNCADngemcSBItdt-AgZ-47">
<mxGeometry y="30" width="270" height="30" as="geometry" />
</mxCell>
<mxCell id="PNCADngemcSBItdt-AgZ-51" value="x" style="resizable=0;fillColor=#EEEEEE;strokeColor=#999999;gradientColor=#cccccc;html=1;" vertex="1" parent="PNCADngemcSBItdt-AgZ-50">
<mxGeometry y="0.5" width="15" height="15" relative="1" as="geometry">
<mxPoint x="8" y="-7.5" as="offset" />
</mxGeometry>