-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathLMS-Toolkit-API-UML.drawio
5791 lines (5791 loc) · 535 KB
/
LMS-Toolkit-API-UML.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="65bd71144e" pages="5">
<diagram id="WqcEPunu4Ulp6BiF5zl3" name="Proposed UDM">
<mxGraphModel dx="947" dy="2000" grid="1" gridSize="10" guides="0" tooltips="1" connect="1" arrows="1" fold="1" page="0" pageScale="1" pageWidth="850" pageHeight="1100" background="#ffffff" math="0" shadow="0">
<root>
<mxCell id="9NC8B-u2BY7xSfGG9Sle-0"/>
<mxCell id="9NC8B-u2BY7xSfGG9Sle-1" parent="9NC8B-u2BY7xSfGG9Sle-0"/>
<mxCell id="KtQaIt2FlapwIEPt1trk-7" style="edgeStyle=orthogonalEdgeStyle;rounded=1;orthogonalLoop=1;jettySize=auto;html=1;startArrow=none;startFill=0;endArrow=open;endFill=0;" parent="9NC8B-u2BY7xSfGG9Sle-1" source="XIJ6Gh2bg7tghdxINFeE-1" target="U1SaCqyLckN5aU9AswDI-12" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="590" y="-520"/>
<mxPoint x="590" y="-723"/>
</Array>
<mxPoint x="580" y="-880" as="sourcePoint"/>
<mxPoint x="580" y="-723" as="targetPoint"/>
</mxGeometry>
</mxCell>
<mxCell id="0dAQlZua2ihYw1FD70KR-10" value="0..n" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];" parent="KtQaIt2FlapwIEPt1trk-7" vertex="1" connectable="0">
<mxGeometry x="-0.8748" y="-12" relative="1" as="geometry">
<mxPoint x="-6.5" y="-21" as="offset"/>
</mxGeometry>
</mxCell>
<mxCell id="KtQaIt2FlapwIEPt1trk-2" style="edgeStyle=orthogonalEdgeStyle;rounded=1;orthogonalLoop=1;jettySize=auto;html=1;startArrow=none;startFill=0;endArrow=open;endFill=0;" parent="9NC8B-u2BY7xSfGG9Sle-1" source="Qn06xvcXRBKlKmWC_4fY-50" target="GIQdhm5hKpEGqJAe76nB-6" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="270" y="-762"/>
<mxPoint x="270" y="-749"/>
</Array>
<mxPoint x="260" y="-870" as="sourcePoint"/>
<mxPoint x="260" y="-780" as="targetPoint"/>
</mxGeometry>
</mxCell>
<mxCell id="0dAQlZua2ihYw1FD70KR-7" value="0..n" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];" parent="KtQaIt2FlapwIEPt1trk-2" vertex="1" connectable="0">
<mxGeometry x="-0.7143" relative="1" as="geometry">
<mxPoint x="1" y="-9" as="offset"/>
</mxGeometry>
</mxCell>
<mxCell id="KtQaIt2FlapwIEPt1trk-0" value="" style="endArrow=open;html=1;endFill=0;edgeStyle=orthogonalEdgeStyle;" parent="9NC8B-u2BY7xSfGG9Sle-1" source="jTFOX-c9rFHi48wuBm5z-0" target="XIJ6Gh2bg7tghdxINFeE-1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="280" y="-360" as="sourcePoint"/>
<mxPoint x="280" y="-460" as="targetPoint"/>
<Array as="points">
<mxPoint x="140" y="-600"/>
<mxPoint x="280" y="-600"/>
<mxPoint x="280" y="-443"/>
</Array>
</mxGeometry>
</mxCell>
<mxCell id="0dAQlZua2ihYw1FD70KR-4" value="0..n" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];" parent="KtQaIt2FlapwIEPt1trk-0" vertex="1" connectable="0">
<mxGeometry x="-0.7619" relative="1" as="geometry">
<mxPoint x="-17" y="31" as="offset"/>
</mxGeometry>
</mxCell>
<mxCell id="KtQaIt2FlapwIEPt1trk-4" style="edgeStyle=orthogonalEdgeStyle;rounded=1;orthogonalLoop=1;jettySize=auto;html=1;startArrow=none;startFill=0;endArrow=open;endFill=0;" parent="9NC8B-u2BY7xSfGG9Sle-1" source="jTFOX-c9rFHi48wuBm5z-2" target="jTFOX-c9rFHi48wuBm5z-0" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="140" y="-120"/>
</Array>
<mxPoint x="300" y="-200" as="sourcePoint"/>
<mxPoint x="100" y="-200" as="targetPoint"/>
</mxGeometry>
</mxCell>
<mxCell id="0dAQlZua2ihYw1FD70KR-9" value="0..1" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];" parent="KtQaIt2FlapwIEPt1trk-4" vertex="1" connectable="0">
<mxGeometry x="-0.8699" relative="1" as="geometry">
<mxPoint x="3.5" y="-10" as="offset"/>
</mxGeometry>
</mxCell>
<mxCell id="KtQaIt2FlapwIEPt1trk-8" style="edgeStyle=orthogonalEdgeStyle;rounded=1;orthogonalLoop=1;jettySize=auto;html=1;startArrow=none;startFill=0;endArrow=open;endFill=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;" parent="9NC8B-u2BY7xSfGG9Sle-1" source="DKxO-rwiC6Zfs1i4Nce0-0" target="D4I5lUEJHywb-K6fwlnH-1" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="970" y="-815"/>
</Array>
</mxGeometry>
</mxCell>
<mxCell id="0dAQlZua2ihYw1FD70KR-14" value="0..n" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];" parent="KtQaIt2FlapwIEPt1trk-8" vertex="1" connectable="0">
<mxGeometry x="-0.6691" relative="1" as="geometry">
<mxPoint x="12" y="41" as="offset"/>
</mxGeometry>
</mxCell>
<mxCell id="-lvL8Tr-3X_eKz7fJi9n-0" style="edgeStyle=orthogonalEdgeStyle;rounded=1;orthogonalLoop=1;jettySize=auto;html=1;startArrow=open;startFill=0;endArrow=none;endFill=0;" parent="9NC8B-u2BY7xSfGG9Sle-1" source="GIQdhm5hKpEGqJAe76nB-6" target="EC5RP9vzPZzwMYMpoVyZ-0" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="396.5" y="-898" as="sourcePoint"/>
<mxPoint x="466.5" y="-898" as="targetPoint"/>
</mxGeometry>
</mxCell>
<mxCell id="PKSyzAsPtI1OM_Ck-sdW-10" value="0..n" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];" parent="-lvL8Tr-3X_eKz7fJi9n-0" vertex="1" connectable="0">
<mxGeometry x="0.7381" y="1" relative="1" as="geometry">
<mxPoint x="-14.5" y="3" as="offset"/>
</mxGeometry>
</mxCell>
<mxCell id="52raiuKpcVJrc2On9F-d-0" value="0..1" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];" parent="-lvL8Tr-3X_eKz7fJi9n-0" vertex="1" connectable="0">
<mxGeometry x="-0.22" relative="1" as="geometry">
<mxPoint x="-15.25" y="7" as="offset"/>
</mxGeometry>
</mxCell>
<mxCell id="-lvL8Tr-3X_eKz7fJi9n-2" style="edgeStyle=orthogonalEdgeStyle;rounded=1;orthogonalLoop=1;jettySize=auto;html=1;startArrow=none;startFill=0;endArrow=open;endFill=0;" parent="9NC8B-u2BY7xSfGG9Sle-1" source="EC5RP9vzPZzwMYMpoVyZ-0" target="U1SaCqyLckN5aU9AswDI-12" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="700" y="-1002"/>
</Array>
<mxPoint x="610" y="-1000" as="sourcePoint"/>
<mxPoint x="710" y="-950" as="targetPoint"/>
</mxGeometry>
</mxCell>
<mxCell id="PKSyzAsPtI1OM_Ck-sdW-11" value="0..n" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];" parent="-lvL8Tr-3X_eKz7fJi9n-2" vertex="1" connectable="0">
<mxGeometry x="-0.6921" y="2" relative="1" as="geometry">
<mxPoint x="-22.5" y="-8" as="offset"/>
</mxGeometry>
</mxCell>
<mxCell id="KtQaIt2FlapwIEPt1trk-6" style="edgeStyle=orthogonalEdgeStyle;rounded=1;orthogonalLoop=1;jettySize=auto;html=1;startArrow=none;startFill=0;endArrow=open;endFill=0;" parent="9NC8B-u2BY7xSfGG9Sle-1" source="jTFOX-c9rFHi48wuBm5z-2" target="U1SaCqyLckN5aU9AswDI-12" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="840" y="-136"/>
<mxPoint x="840" y="-723"/>
</Array>
<mxPoint x="560" y="-210" as="sourcePoint"/>
<mxPoint x="560" y="-690" as="targetPoint"/>
</mxGeometry>
</mxCell>
<mxCell id="-lvL8Tr-3X_eKz7fJi9n-6" value="0..n" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];" parent="KtQaIt2FlapwIEPt1trk-6" vertex="1" connectable="0">
<mxGeometry x="-0.8709" y="11" relative="1" as="geometry">
<mxPoint x="-48.33" as="offset"/>
</mxGeometry>
</mxCell>
<mxCell id="jTFOX-c9rFHi48wuBm5z-0" value="Assignment" style="swimlane;fontStyle=1;childLayout=stackLayout;horizontal=1;startSize=26;horizontalStack=0;resizeParent=1;resizeParentMax=0;resizeLast=0;collapsible=1;marginBottom=0;fillColor=#f0a30a;strokeColor=#BD7000;fontColor=#ffffff;" parent="9NC8B-u2BY7xSfGG9Sle-1" vertex="1">
<mxGeometry x="40" y="-559" width="200" height="390" as="geometry"/>
</mxCell>
<mxCell id="fZ8LiTKC59IkHgctVE7z-12" value="-PK AssignmentIdentifier" style="text;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="jTFOX-c9rFHi48wuBm5z-0" vertex="1">
<mxGeometry y="26" width="200" height="26" as="geometry"/>
</mxCell>
<mxCell id="jTFOX-c9rFHi48wuBm5z-1" value="-SourceSystemIdentifier" style="text;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="jTFOX-c9rFHi48wuBm5z-0" vertex="1">
<mxGeometry y="52" width="200" height="26" as="geometry"/>
</mxCell>
<mxCell id="D4I5lUEJHywb-K6fwlnH-7" value="-SourceSystem" style="text;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="jTFOX-c9rFHi48wuBm5z-0" vertex="1">
<mxGeometry y="78" width="200" height="26" as="geometry"/>
</mxCell>
<mxCell id="J64h9A5JV70sFJFhVtal-23" value="-Title" style="text;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="jTFOX-c9rFHi48wuBm5z-0" vertex="1">
<mxGeometry y="104" width="200" height="26" as="geometry"/>
</mxCell>
<mxCell id="kundiFT2q6ECx-n-B1b5-70" value="-AssignmentCategory" style="text;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="jTFOX-c9rFHi48wuBm5z-0" vertex="1">
<mxGeometry y="130" width="200" height="26" as="geometry"/>
</mxCell>
<mxCell id="J64h9A5JV70sFJFhVtal-24" value="-AssignmentDescription [0..1]" style="text;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="jTFOX-c9rFHi48wuBm5z-0" vertex="1">
<mxGeometry y="156" width="200" height="26" as="geometry"/>
</mxCell>
<mxCell id="J64h9A5JV70sFJFhVtal-25" value="-StartDateTime [0..1]" style="text;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="jTFOX-c9rFHi48wuBm5z-0" vertex="1">
<mxGeometry y="182" width="200" height="26" as="geometry"/>
</mxCell>
<mxCell id="kundiFT2q6ECx-n-B1b5-68" value="-EndDateTime [0..1]" style="text;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="jTFOX-c9rFHi48wuBm5z-0" vertex="1">
<mxGeometry y="208" width="200" height="26" as="geometry"/>
</mxCell>
<mxCell id="J64h9A5JV70sFJFhVtal-26" value="-DueDateTime [0..1]" style="text;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="jTFOX-c9rFHi48wuBm5z-0" vertex="1">
<mxGeometry y="234" width="200" height="26" as="geometry"/>
</mxCell>
<mxCell id="kundiFT2q6ECx-n-B1b5-69" value="-SubmissionType [0..n]" style="text;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="jTFOX-c9rFHi48wuBm5z-0" vertex="1">
<mxGeometry y="260" width="200" height="26" as="geometry"/>
</mxCell>
<mxCell id="J64h9A5JV70sFJFhVtal-27" value="-MaxPoints [0..1]" style="text;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="jTFOX-c9rFHi48wuBm5z-0" vertex="1">
<mxGeometry y="286" width="200" height="26" as="geometry"/>
</mxCell>
<mxCell id="fZ8LiTKC59IkHgctVE7z-6" value="-SourceCreateDate [0..1]" style="text;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="jTFOX-c9rFHi48wuBm5z-0" vertex="1">
<mxGeometry y="312" width="200" height="26" as="geometry"/>
</mxCell>
<mxCell id="4" value="-DeletedAt [0..1]" style="text;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="jTFOX-c9rFHi48wuBm5z-0" vertex="1">
<mxGeometry y="338" width="200" height="26" as="geometry"/>
</mxCell>
<mxCell id="lYoFu4TeXJHGLFrytR4g-5" value="-SourceLastModifiedDate [0..1]" style="text;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="jTFOX-c9rFHi48wuBm5z-0" vertex="1">
<mxGeometry y="364" width="200" height="26" as="geometry"/>
</mxCell>
<mxCell id="XIJ6Gh2bg7tghdxINFeE-1" value="LMSSection" style="swimlane;fontStyle=1;childLayout=stackLayout;horizontal=1;startSize=26;horizontalStack=0;resizeParent=1;resizeParentMax=0;resizeLast=0;collapsible=1;marginBottom=0;fillColor=#f0a30a;strokeColor=#BD7000;fontColor=#ffffff;" parent="9NC8B-u2BY7xSfGG9Sle-1" vertex="1">
<mxGeometry x="320.5" y="-580" width="200" height="312" as="geometry"/>
</mxCell>
<mxCell id="fZ8LiTKC59IkHgctVE7z-13" value="-PK LMSSectionIdentifier" style="text;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="XIJ6Gh2bg7tghdxINFeE-1" vertex="1">
<mxGeometry y="26" width="200" height="26" as="geometry"/>
</mxCell>
<mxCell id="XIJ6Gh2bg7tghdxINFeE-2" value="-SourceSystemIdentifier" style="text;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="XIJ6Gh2bg7tghdxINFeE-1" vertex="1">
<mxGeometry y="52" width="200" height="26" as="geometry"/>
</mxCell>
<mxCell id="D4I5lUEJHywb-K6fwlnH-4" value="-SourceSystem" style="text;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="XIJ6Gh2bg7tghdxINFeE-1" vertex="1">
<mxGeometry y="78" width="200" height="26" as="geometry"/>
</mxCell>
<mxCell id="1wbdDOrfKHGCZYme_Ntv-1" value="-SISSectionIdentifier [0..1]" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="XIJ6Gh2bg7tghdxINFeE-1" vertex="1">
<mxGeometry y="104" width="200" height="26" as="geometry"/>
</mxCell>
<mxCell id="6jwsLkMR-__H-NcNkvp7-0" value="-Title" style="text;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="XIJ6Gh2bg7tghdxINFeE-1" vertex="1">
<mxGeometry y="130" width="200" height="26" as="geometry"/>
</mxCell>
<mxCell id="1wbdDOrfKHGCZYme_Ntv-0" value="-SectionDescription [0..1]" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="XIJ6Gh2bg7tghdxINFeE-1" vertex="1">
<mxGeometry y="156" width="200" height="26" as="geometry"/>
</mxCell>
<mxCell id="GIQdhm5hKpEGqJAe76nB-3" value="-Term [0..1]" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="XIJ6Gh2bg7tghdxINFeE-1" vertex="1">
<mxGeometry y="182" width="200" height="26" as="geometry"/>
</mxCell>
<mxCell id="GIQdhm5hKpEGqJAe76nB-2" value="-LMSSectionStatus [0..1]" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="XIJ6Gh2bg7tghdxINFeE-1" vertex="1">
<mxGeometry y="208" width="200" height="26" as="geometry"/>
</mxCell>
<mxCell id="fZ8LiTKC59IkHgctVE7z-5" value="-SourceCreateDate [0..1]" style="text;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="XIJ6Gh2bg7tghdxINFeE-1" vertex="1">
<mxGeometry y="234" width="200" height="26" as="geometry"/>
</mxCell>
<mxCell id="lYoFu4TeXJHGLFrytR4g-2" value="-SourceLastModifiedDate [0..1]" style="text;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="XIJ6Gh2bg7tghdxINFeE-1" vertex="1">
<mxGeometry y="260" width="200" height="26" as="geometry"/>
</mxCell>
<mxCell id="5" value="-DeletedAt [0..1]" style="text;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="XIJ6Gh2bg7tghdxINFeE-1" vertex="1">
<mxGeometry y="286" width="200" height="26" as="geometry"/>
</mxCell>
<mxCell id="OnoDtYTuuQHqrIBgiB_k-0" value="" style="endArrow=none;dashed=1;html=1;dashPattern=1 3;strokeWidth=2;exitX=1.006;exitY=1.115;exitDx=0;exitDy=0;exitPerimeter=0;" parent="9NC8B-u2BY7xSfGG9Sle-1" source="lYoFu4TeXJHGLFrytR4g-3" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="400" y="-560" as="sourcePoint"/>
<mxPoint x="590" y="-600" as="targetPoint"/>
</mxGeometry>
</mxCell>
<mxCell id="xbCwC_juN7FfW0dLAZeh-12" style="edgeStyle=orthogonalEdgeStyle;rounded=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=0;exitDx=0;exitDy=0;" parent="9NC8B-u2BY7xSfGG9Sle-1" source="xbCwC_juN7FfW0dLAZeh-0" target="U1SaCqyLckN5aU9AswDI-12" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="670" y="-610" as="targetPoint"/>
</mxGeometry>
</mxCell>
<mxCell id="xbCwC_juN7FfW0dLAZeh-0" value="LMSSectionActivity" style="swimlane;fontStyle=1;childLayout=stackLayout;horizontal=1;startSize=26;horizontalStack=0;resizeParent=1;resizeParentMax=0;resizeLast=0;collapsible=1;marginBottom=0;fillColor=#f0a30a;strokeColor=#BD7000;fontColor=#ffffff;" parent="9NC8B-u2BY7xSfGG9Sle-1" vertex="1">
<mxGeometry x="620" y="-590" width="200" height="312" as="geometry"/>
</mxCell>
<mxCell id="xbCwC_juN7FfW0dLAZeh-1" value="-PK LMSSectionActivityIdentifier" style="text;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="xbCwC_juN7FfW0dLAZeh-0" vertex="1">
<mxGeometry y="26" width="200" height="26" as="geometry"/>
</mxCell>
<mxCell id="xbCwC_juN7FfW0dLAZeh-2" value="-SourceSystemIdentifier" style="text;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="xbCwC_juN7FfW0dLAZeh-0" vertex="1">
<mxGeometry y="52" width="200" height="26" as="geometry"/>
</mxCell>
<mxCell id="xbCwC_juN7FfW0dLAZeh-3" value="-SourceSystem" style="text;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="xbCwC_juN7FfW0dLAZeh-0" vertex="1">
<mxGeometry y="78" width="200" height="26" as="geometry"/>
</mxCell>
<mxCell id="xbCwC_juN7FfW0dLAZeh-4" value="-ActivityType" style="text;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="xbCwC_juN7FfW0dLAZeh-0" vertex="1">
<mxGeometry y="104" width="200" height="26" as="geometry"/>
</mxCell>
<mxCell id="xbCwC_juN7FfW0dLAZeh-5" value="-ActivityDateTime" style="text;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="xbCwC_juN7FfW0dLAZeh-0" vertex="1">
<mxGeometry y="130" width="200" height="26" as="geometry"/>
</mxCell>
<mxCell id="xbCwC_juN7FfW0dLAZeh-6" value="-ActivityStatus" style="text;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="xbCwC_juN7FfW0dLAZeh-0" vertex="1">
<mxGeometry y="156" width="200" height="26" as="geometry"/>
</mxCell>
<mxCell id="xbCwC_juN7FfW0dLAZeh-7" value="-ParentSourceSystemIdentifier" style="text;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="xbCwC_juN7FfW0dLAZeh-0" vertex="1">
<mxGeometry y="182" width="200" height="26" as="geometry"/>
</mxCell>
<mxCell id="xbCwC_juN7FfW0dLAZeh-8" value="-ActivityTimeInMinutes [0..1]" style="text;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="xbCwC_juN7FfW0dLAZeh-0" vertex="1">
<mxGeometry y="208" width="200" height="26" as="geometry"/>
</mxCell>
<mxCell id="xbCwC_juN7FfW0dLAZeh-10" value="-SourceCreateDate [0..1]" style="text;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="xbCwC_juN7FfW0dLAZeh-0" vertex="1">
<mxGeometry y="234" width="200" height="26" as="geometry"/>
</mxCell>
<mxCell id="lYoFu4TeXJHGLFrytR4g-6" value="-SourceLastModifiedDate [0..1]" style="text;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="xbCwC_juN7FfW0dLAZeh-0" vertex="1">
<mxGeometry y="260" width="200" height="26" as="geometry"/>
</mxCell>
<mxCell id="6" value="-DeletedAt [0..1]" style="text;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="xbCwC_juN7FfW0dLAZeh-0" vertex="1">
<mxGeometry y="286" width="200" height="26" as="geometry"/>
</mxCell>
<mxCell id="DKxO-rwiC6Zfs1i4Nce0-0" value="LMSSystemActivity" style="swimlane;fontStyle=1;childLayout=stackLayout;horizontal=1;startSize=26;horizontalStack=0;resizeParent=1;resizeParentMax=0;resizeLast=0;collapsible=1;marginBottom=0;fillColor=#f0a30a;strokeColor=#BD7000;fontColor=#ffffff;" parent="9NC8B-u2BY7xSfGG9Sle-1" vertex="1">
<mxGeometry x="870" y="-590" width="200" height="312" as="geometry"/>
</mxCell>
<mxCell id="DKxO-rwiC6Zfs1i4Nce0-1" value="-PK LSMSystemActivityIdentifier" style="text;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="DKxO-rwiC6Zfs1i4Nce0-0" vertex="1">
<mxGeometry y="26" width="200" height="26" as="geometry"/>
</mxCell>
<mxCell id="fZ8LiTKC59IkHgctVE7z-14" value="-SourceSystemIdentifier" style="text;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="DKxO-rwiC6Zfs1i4Nce0-0" vertex="1">
<mxGeometry y="52" width="200" height="26" as="geometry"/>
</mxCell>
<mxCell id="D4I5lUEJHywb-K6fwlnH-6" value="-SourceSystem" style="text;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="DKxO-rwiC6Zfs1i4Nce0-0" vertex="1">
<mxGeometry y="78" width="200" height="26" as="geometry"/>
</mxCell>
<mxCell id="GIQdhm5hKpEGqJAe76nB-11" value="-ActivityType" style="text;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="DKxO-rwiC6Zfs1i4Nce0-0" vertex="1">
<mxGeometry y="104" width="200" height="26" as="geometry"/>
</mxCell>
<mxCell id="Qn06xvcXRBKlKmWC_4fY-48" value="-ActivityDateTime" style="text;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="DKxO-rwiC6Zfs1i4Nce0-0" vertex="1">
<mxGeometry y="130" width="200" height="26" as="geometry"/>
</mxCell>
<mxCell id="Qn06xvcXRBKlKmWC_4fY-49" value="-ActivityStatus" style="text;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="DKxO-rwiC6Zfs1i4Nce0-0" vertex="1">
<mxGeometry y="156" width="200" height="26" as="geometry"/>
</mxCell>
<mxCell id="kxjMfeje0bLtgA2fX7H2-0" value="-ParentSourceSystemIdentifier" style="text;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="DKxO-rwiC6Zfs1i4Nce0-0" vertex="1">
<mxGeometry y="182" width="200" height="26" as="geometry"/>
</mxCell>
<mxCell id="qt4BYJWhCXR7Bg-ZuwQF-0" value="-ActivityTimeInMinutes [0..1]" style="text;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="DKxO-rwiC6Zfs1i4Nce0-0" vertex="1">
<mxGeometry y="208" width="200" height="26" as="geometry"/>
</mxCell>
<mxCell id="fZ8LiTKC59IkHgctVE7z-4" value="-SourceCreateDate [0..1]" style="text;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="DKxO-rwiC6Zfs1i4Nce0-0" vertex="1">
<mxGeometry y="234" width="200" height="26" as="geometry"/>
</mxCell>
<mxCell id="lYoFu4TeXJHGLFrytR4g-10" value="-SourceLastModifiedDate [0..1]" style="text;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="DKxO-rwiC6Zfs1i4Nce0-0" vertex="1">
<mxGeometry y="260" width="200" height="26" as="geometry"/>
</mxCell>
<mxCell id="7" value="-DeletedAt [0..1]" style="text;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="DKxO-rwiC6Zfs1i4Nce0-0" vertex="1">
<mxGeometry y="286" width="200" height="26" as="geometry"/>
</mxCell>
<mxCell id="xbCwC_juN7FfW0dLAZeh-11" style="edgeStyle=orthogonalEdgeStyle;rounded=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;" parent="9NC8B-u2BY7xSfGG9Sle-1" source="xbCwC_juN7FfW0dLAZeh-5" target="6jwsLkMR-__H-NcNkvp7-0" edge="1">
<mxGeometry relative="1" as="geometry"/>
</mxCell>
<mxCell id="xbCwC_juN7FfW0dLAZeh-13" value="0..n" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];" parent="9NC8B-u2BY7xSfGG9Sle-1" vertex="1" connectable="0">
<mxGeometry x="992" y="-596" as="geometry">
<mxPoint x="-258" y="-6" as="offset"/>
</mxGeometry>
</mxCell>
<mxCell id="xbCwC_juN7FfW0dLAZeh-14" value="0..n" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];" parent="9NC8B-u2BY7xSfGG9Sle-1" vertex="1" connectable="0">
<mxGeometry x="1002" y="-586" as="geometry">
<mxPoint x="-398" y="154" as="offset"/>
</mxGeometry>
</mxCell>
<mxCell id="U1SaCqyLckN5aU9AswDI-12" value="LMSUser" style="swimlane;fontStyle=1;childLayout=stackLayout;horizontal=1;startSize=26;horizontalStack=0;resizeParent=1;resizeParentMax=0;resizeLast=0;collapsible=1;marginBottom=0;align=center;fillColor=#f0a30a;strokeColor=#BD7000;fontColor=#ffffff;" parent="9NC8B-u2BY7xSfGG9Sle-1" vertex="1">
<mxGeometry x="619" y="-958" width="200" height="312" as="geometry"/>
</mxCell>
<mxCell id="fZ8LiTKC59IkHgctVE7z-11" value="-PK LMSUserIdentifier" style="text;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="U1SaCqyLckN5aU9AswDI-12" vertex="1">
<mxGeometry y="26" width="200" height="26" as="geometry"/>
</mxCell>
<mxCell id="U1SaCqyLckN5aU9AswDI-14" value="-SourceSystemIdentifier" style="text;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="U1SaCqyLckN5aU9AswDI-12" vertex="1">
<mxGeometry y="52" width="200" height="26" as="geometry"/>
</mxCell>
<mxCell id="D4I5lUEJHywb-K6fwlnH-0" value="-SourceSystem" style="text;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="U1SaCqyLckN5aU9AswDI-12" vertex="1">
<mxGeometry y="78" width="200" height="26" as="geometry"/>
</mxCell>
<mxCell id="I3brSnTLU8Chs7t53V4h-0" value="-UserRole" style="text;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="U1SaCqyLckN5aU9AswDI-12" vertex="1">
<mxGeometry y="104" width="200" height="26" as="geometry"/>
</mxCell>
<mxCell id="D4I5lUEJHywb-K6fwlnH-1" value="-LocalUserIdentifier [0..1]" style="text;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="U1SaCqyLckN5aU9AswDI-12" vertex="1">
<mxGeometry y="130" width="200" height="26" as="geometry"/>
</mxCell>
<mxCell id="PKSyzAsPtI1OM_Ck-sdW-1" value="-SISUserIdentifier [0..1]" style="text;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="U1SaCqyLckN5aU9AswDI-12" vertex="1">
<mxGeometry y="156" width="200" height="26" as="geometry"/>
</mxCell>
<mxCell id="U1SaCqyLckN5aU9AswDI-17" value="-Name" style="text;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="U1SaCqyLckN5aU9AswDI-12" vertex="1">
<mxGeometry y="182" width="200" height="26" as="geometry"/>
</mxCell>
<mxCell id="U1SaCqyLckN5aU9AswDI-21" value="-EmailAddress" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="U1SaCqyLckN5aU9AswDI-12" vertex="1">
<mxGeometry y="208" width="200" height="26" as="geometry"/>
</mxCell>
<mxCell id="lYoFu4TeXJHGLFrytR4g-0" value="-SourceCreateDate [0..1]" style="text;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="U1SaCqyLckN5aU9AswDI-12" vertex="1">
<mxGeometry y="234" width="200" height="26" as="geometry"/>
</mxCell>
<mxCell id="lYoFu4TeXJHGLFrytR4g-1" value="-SourceLastModifiedDate [0..1]" style="text;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="U1SaCqyLckN5aU9AswDI-12" vertex="1">
<mxGeometry y="260" width="200" height="26" as="geometry"/>
</mxCell>
<mxCell id="3" value="-DeletedAt [0..1]" style="text;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="U1SaCqyLckN5aU9AswDI-12" vertex="1">
<mxGeometry y="286" width="200" height="26" as="geometry"/>
</mxCell>
<mxCell id="jTFOX-c9rFHi48wuBm5z-2" value="AssignmentSubmission" style="swimlane;fontStyle=1;childLayout=stackLayout;horizontal=1;startSize=26;horizontalStack=0;resizeParent=1;resizeParentMax=0;resizeLast=0;collapsible=1;marginBottom=0;fillColor=#f0a30a;strokeColor=#BD7000;fontColor=#ffffff;" parent="9NC8B-u2BY7xSfGG9Sle-1" vertex="1">
<mxGeometry x="300" y="-239" width="239.5" height="286" as="geometry"/>
</mxCell>
<mxCell id="jTFOX-c9rFHi48wuBm5z-3" value="-PK AssignmentSubmissionIdentifier" style="text;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="jTFOX-c9rFHi48wuBm5z-2" vertex="1">
<mxGeometry y="26" width="239.5" height="26" as="geometry"/>
</mxCell>
<mxCell id="fZ8LiTKC59IkHgctVE7z-15" value="-SourceSystemIdentifier" style="text;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="jTFOX-c9rFHi48wuBm5z-2" vertex="1">
<mxGeometry y="52" width="239.5" height="26" as="geometry"/>
</mxCell>
<mxCell id="D4I5lUEJHywb-K6fwlnH-8" value="-SourceSystem" style="text;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="jTFOX-c9rFHi48wuBm5z-2" vertex="1">
<mxGeometry y="78" width="239.5" height="26" as="geometry"/>
</mxCell>
<mxCell id="GIQdhm5hKpEGqJAe76nB-13" value="-SubmissionStatus" style="text;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="jTFOX-c9rFHi48wuBm5z-2" vertex="1">
<mxGeometry y="104" width="239.5" height="26" as="geometry"/>
</mxCell>
<mxCell id="jXmlu-ZBSUDQ22xxJdR_-0" value="-SubmissionDateTime" style="text;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="jTFOX-c9rFHi48wuBm5z-2" vertex="1">
<mxGeometry y="130" width="239.5" height="26" as="geometry"/>
</mxCell>
<mxCell id="qt4BYJWhCXR7Bg-ZuwQF-2" value="-EarnedPoints [0..1]" style="text;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="jTFOX-c9rFHi48wuBm5z-2" vertex="1">
<mxGeometry y="156" width="239.5" height="26" as="geometry"/>
</mxCell>
<mxCell id="qt4BYJWhCXR7Bg-ZuwQF-1" value="-Grade [0..1]" style="text;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="jTFOX-c9rFHi48wuBm5z-2" vertex="1">
<mxGeometry y="182" width="239.5" height="26" as="geometry"/>
</mxCell>
<mxCell id="fZ8LiTKC59IkHgctVE7z-7" value="-SourceCreateDate [0..1]" style="text;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="jTFOX-c9rFHi48wuBm5z-2" vertex="1">
<mxGeometry y="208" width="239.5" height="26" as="geometry"/>
</mxCell>
<mxCell id="lYoFu4TeXJHGLFrytR4g-8" value="-SourceLastModifiedDate [0..1]" style="text;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="jTFOX-c9rFHi48wuBm5z-2" vertex="1">
<mxGeometry y="234" width="239.5" height="26" as="geometry"/>
</mxCell>
<mxCell id="8" value="-DeletedAt [0..1]" style="text;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="jTFOX-c9rFHi48wuBm5z-2" vertex="1">
<mxGeometry y="260" width="239.5" height="26" as="geometry"/>
</mxCell>
<mxCell id="GIQdhm5hKpEGqJAe76nB-6" value="LMSUserLMSSectionAssociation" style="swimlane;fontStyle=1;childLayout=stackLayout;horizontal=1;startSize=26;horizontalStack=0;resizeParent=1;resizeParentMax=0;resizeLast=0;collapsible=1;marginBottom=0;fillColor=#f0a30a;strokeColor=#BD7000;fontColor=#ffffff;" parent="9NC8B-u2BY7xSfGG9Sle-1" vertex="1">
<mxGeometry x="310" y="-880" width="259.5" height="208" as="geometry"/>
</mxCell>
<mxCell id="GIQdhm5hKpEGqJAe76nB-7" value="-PK LMSUserLMSSectionAssociationIdentifier" style="text;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="GIQdhm5hKpEGqJAe76nB-6" vertex="1">
<mxGeometry y="26" width="259.5" height="26" as="geometry"/>
</mxCell>
<mxCell id="fZ8LiTKC59IkHgctVE7z-10" value="-SourceSystemIdentifier" style="text;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="GIQdhm5hKpEGqJAe76nB-6" vertex="1">
<mxGeometry y="52" width="259.5" height="26" as="geometry"/>
</mxCell>
<mxCell id="D4I5lUEJHywb-K6fwlnH-2" value="-SourceSystem" style="text;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="GIQdhm5hKpEGqJAe76nB-6" vertex="1">
<mxGeometry y="78" width="259.5" height="26" as="geometry"/>
</mxCell>
<mxCell id="Qn06xvcXRBKlKmWC_4fY-54" value="-EnrollmentStatus" style="text;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="GIQdhm5hKpEGqJAe76nB-6" vertex="1">
<mxGeometry y="104" width="259.5" height="26" as="geometry"/>
</mxCell>
<mxCell id="fZ8LiTKC59IkHgctVE7z-2" value="-SourceCreateDate [0..1]" style="text;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="GIQdhm5hKpEGqJAe76nB-6" vertex="1">
<mxGeometry y="130" width="259.5" height="26" as="geometry"/>
</mxCell>
<mxCell id="lYoFu4TeXJHGLFrytR4g-3" value="-SourceLastModifiedDate [0..1]" style="text;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="GIQdhm5hKpEGqJAe76nB-6" vertex="1">
<mxGeometry y="156" width="259.5" height="26" as="geometry"/>
</mxCell>
<mxCell id="2" value="-DeletedAt [0..1]" style="text;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="GIQdhm5hKpEGqJAe76nB-6" vertex="1">
<mxGeometry y="182" width="259.5" height="26" as="geometry"/>
</mxCell>
<mxCell id="EC5RP9vzPZzwMYMpoVyZ-0" value="LMSUserAttendanceEvent" style="swimlane;fontStyle=1;childLayout=stackLayout;horizontal=1;startSize=26;horizontalStack=0;resizeParent=1;resizeParentMax=0;resizeLast=0;collapsible=1;marginBottom=0;align=center;fillColor=#f0a30a;strokeColor=#BD7000;fontColor=#ffffff;" parent="9NC8B-u2BY7xSfGG9Sle-1" vertex="1">
<mxGeometry x="300" y="-1160" width="279.5" height="234" as="geometry"/>
</mxCell>
<mxCell id="EC5RP9vzPZzwMYMpoVyZ-1" value="-PK LMSUserAttendanceEventIdentifier" style="text;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="EC5RP9vzPZzwMYMpoVyZ-0" vertex="1">
<mxGeometry y="26" width="279.5" height="26" as="geometry"/>
</mxCell>
<mxCell id="fZ8LiTKC59IkHgctVE7z-8" value="-SourceSystemIdentifier" style="text;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="EC5RP9vzPZzwMYMpoVyZ-0" vertex="1">
<mxGeometry y="52" width="279.5" height="26" as="geometry"/>
</mxCell>
<mxCell id="D4I5lUEJHywb-K6fwlnH-3" value="-SourceSystem" style="text;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="EC5RP9vzPZzwMYMpoVyZ-0" vertex="1">
<mxGeometry y="78" width="279.5" height="26" as="geometry"/>
</mxCell>
<mxCell id="EC5RP9vzPZzwMYMpoVyZ-3" value="-EventDate" style="text;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="EC5RP9vzPZzwMYMpoVyZ-0" vertex="1">
<mxGeometry y="104" width="279.5" height="26" as="geometry"/>
</mxCell>
<mxCell id="EC5RP9vzPZzwMYMpoVyZ-4" value="-AttendanceStatus" style="text;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="EC5RP9vzPZzwMYMpoVyZ-0" vertex="1">
<mxGeometry y="130" width="279.5" height="26" as="geometry"/>
</mxCell>
<mxCell id="fZ8LiTKC59IkHgctVE7z-0" value="-SourceCreateDate [0..1]" style="text;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="EC5RP9vzPZzwMYMpoVyZ-0" vertex="1">
<mxGeometry y="156" width="279.5" height="26" as="geometry"/>
</mxCell>
<mxCell id="lYoFu4TeXJHGLFrytR4g-7" value="-SourceLastModifiedDate [0..1]" style="text;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="EC5RP9vzPZzwMYMpoVyZ-0" vertex="1">
<mxGeometry y="182" width="279.5" height="26" as="geometry"/>
</mxCell>
<mxCell id="0" value="-DeletedAt [0..1]" style="text;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="EC5RP9vzPZzwMYMpoVyZ-0" vertex="1">
<mxGeometry y="208" width="279.5" height="26" as="geometry"/>
</mxCell>
<mxCell id="Qn06xvcXRBKlKmWC_4fY-50" value="LMSGrade" style="swimlane;fontStyle=1;childLayout=stackLayout;horizontal=1;startSize=26;horizontalStack=0;resizeParent=1;resizeParentMax=0;resizeLast=0;collapsible=1;marginBottom=0;fillColor=#f0a30a;strokeColor=#BD7000;fontColor=#ffffff;" parent="9NC8B-u2BY7xSfGG9Sle-1" vertex="1">
<mxGeometry x="40" y="-880" width="200" height="234" as="geometry"/>
</mxCell>
<mxCell id="fZ8LiTKC59IkHgctVE7z-9" value="-PK LMSGradeIdentifier" style="text;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="Qn06xvcXRBKlKmWC_4fY-50" vertex="1">
<mxGeometry y="26" width="200" height="26" as="geometry"/>
</mxCell>
<mxCell id="Qn06xvcXRBKlKmWC_4fY-51" value="-SourceSystemIdentifier" style="text;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="Qn06xvcXRBKlKmWC_4fY-50" vertex="1">
<mxGeometry y="52" width="200" height="26" as="geometry"/>
</mxCell>
<mxCell id="D4I5lUEJHywb-K6fwlnH-5" value="-SourceSystem" style="text;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="Qn06xvcXRBKlKmWC_4fY-50" vertex="1">
<mxGeometry y="78" width="200" height="26" as="geometry"/>
</mxCell>
<mxCell id="thPxLqP6FvhgXQ5cQZSr-0" value="-Grade" style="text;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="Qn06xvcXRBKlKmWC_4fY-50" vertex="1">
<mxGeometry y="104" width="200" height="26" as="geometry"/>
</mxCell>
<mxCell id="qe7d8hWhhAVrpXC9OZsN-0" value="-GradeType [0..1]" style="text;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="Qn06xvcXRBKlKmWC_4fY-50" vertex="1">
<mxGeometry y="130" width="200" height="26" as="geometry"/>
</mxCell>
<mxCell id="fZ8LiTKC59IkHgctVE7z-1" value="-SourceCreateDate [0..1]" style="text;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="Qn06xvcXRBKlKmWC_4fY-50" vertex="1">
<mxGeometry y="156" width="200" height="26" as="geometry"/>
</mxCell>
<mxCell id="lYoFu4TeXJHGLFrytR4g-9" value="-SourceLastModifiedDate [0..1]" style="text;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="Qn06xvcXRBKlKmWC_4fY-50" vertex="1">
<mxGeometry y="182" width="200" height="26" as="geometry"/>
</mxCell>
<mxCell id="1" value="-DeletedAt [0..1]" style="text;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="Qn06xvcXRBKlKmWC_4fY-50" vertex="1">
<mxGeometry y="208" width="200" height="26" as="geometry"/>
</mxCell>
</root>
</mxGraphModel>
</diagram>
<diagram id="0ZSwjXeXHecuoDOrslTL" name="Google Classroom API UML">

 


<mxGraphModel dx="967" dy="1928" grid="1" gridSize="10" guides="1" tooltips="1" connect="0" arrows="1" fold="1" page="1" pageScale="1" pageWidth="850" pageHeight="1100" math="0" shadow="0">

 


<root>

 


<mxCell id="cEK6TM7XqRidov9abteU-0"/>

 


<mxCell id="cEK6TM7XqRidov9abteU-1" parent="cEK6TM7XqRidov9abteU-0"/>

 


<mxCell id="W2iocPsAKJ1vNqihJt6C-0" value="" style="rounded=0;whiteSpace=wrap;html=1;fillColor=none;strokeWidth=3;" parent="cEK6TM7XqRidov9abteU-1" vertex="1">

 


<mxGeometry x="40" y="-880" width="850" height="680" as="geometry"/>

 


</mxCell>

 


<mxCell id="TG_wQ2__EgkX5L3ntxry-6" value="" style="rounded=0;whiteSpace=wrap;html=1;fillColor=none;strokeWidth=3;" parent="cEK6TM7XqRidov9abteU-1" vertex="1">

 


<mxGeometry x="920" y="-881" width="540" height="381" as="geometry"/>

 


</mxCell>

 


<mxCell id="u18K9RalteA7PPSZT68i-0" value="" style="rounded=0;whiteSpace=wrap;html=1;strokeWidth=3;fillColor=none;" parent="cEK6TM7XqRidov9abteU-1" vertex="1">

 


<mxGeometry x="60" y="-1080" width="180" height="170" as="geometry"/>

 


</mxCell>

 


<mxCell id="u18K9RalteA7PPSZT68i-1" value="Attendance" style="text;html=1;strokeColor=#82b366;fillColor=#d5e8d4;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="cEK6TM7XqRidov9abteU-1" vertex="1">

 


<mxGeometry x="70" y="-1040" width="160" height="20" as="geometry"/>

 


</mxCell>

 


<mxCell id="u18K9RalteA7PPSZT68i-2" value="Metadata" style="text;html=1;strokeColor=#666666;fillColor=#f5f5f5;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontColor=#333333;" parent="cEK6TM7XqRidov9abteU-1" vertex="1">

 


<mxGeometry x="70" y="-1060" width="160" height="20" as="geometry"/>

 


</mxCell>

 


<mxCell id="u18K9RalteA7PPSZT68i-3" value="Participation" style="text;html=1;strokeColor=#6c8ebf;fillColor=#dae8fc;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="cEK6TM7XqRidov9abteU-1" vertex="1">

 


<mxGeometry x="70" y="-1020" width="160" height="20" as="geometry"/>

 


</mxCell>

 


<mxCell id="u18K9RalteA7PPSZT68i-4" value="Competency" style="text;html=1;strokeColor=#b85450;fillColor=#f8cecc;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="cEK6TM7XqRidov9abteU-1" vertex="1">

 


<mxGeometry x="70" y="-980" width="160" height="20" as="geometry"/>

 


</mxCell>

 


<mxCell id="u18K9RalteA7PPSZT68i-5" value="Key" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontStyle=1" parent="cEK6TM7XqRidov9abteU-1" vertex="1">

 


<mxGeometry x="70" y="-1080" width="160" height="20" as="geometry"/>

 


</mxCell>

 


<mxCell id="u18K9RalteA7PPSZT68i-6" value="Participation / Competency" style="text;html=1;strokeColor=#9673a6;fillColor=#e1d5e7;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="cEK6TM7XqRidov9abteU-1" vertex="1">

 


<mxGeometry x="70" y="-960" width="160" height="20" as="geometry"/>

 


</mxCell>

 


<mxCell id="u18K9RalteA7PPSZT68i-7" value="<b>Google Classroom API Reference:</b>&nbsp;<a href="https://developers.google.com/classroom/reference/rest">https://developers.google.com/classroom/reference/rest</a>" style="text;html=1;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="cEK6TM7XqRidov9abteU-1" vertex="1">

 


<mxGeometry x="280" y="-1010" width="530" height="20" as="geometry"/>

 


</mxCell>

 


<mxCell id="u18K9RalteA7PPSZT68i-8" value="Engagement" style="text;html=1;strokeColor=#d79b00;fillColor=#ffe6cc;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="cEK6TM7XqRidov9abteU-1" vertex="1">

 


<mxGeometry x="70" y="-1000" width="160" height="20" as="geometry"/>

 


</mxCell>

 


<mxCell id="DBiHRigbpUzwL7a83eH6-1" value="" style="endArrow=open;html=1;endSize=12;startArrow=none;startSize=14;startFill=0;edgeStyle=orthogonalEdgeStyle;" parent="cEK6TM7XqRidov9abteU-1" source="u18K9RalteA7PPSZT68i-69" target="u18K9RalteA7PPSZT68i-9" edge="1">

 


<mxGeometry relative="1" as="geometry">

 


<mxPoint x="90" y="-570" as="sourcePoint"/>

 


<mxPoint x="160" y="-593" as="targetPoint"/>

 


<Array as="points">

 


<mxPoint x="240" y="-775"/>

 


<mxPoint x="240" y="-720"/>

 


</Array>

 


</mxGeometry>

 


</mxCell>

 


<mxCell id="DBiHRigbpUzwL7a83eH6-2" value="0..n" style="edgeLabel;resizable=0;html=1;align=left;verticalAlign=top;" parent="DBiHRigbpUzwL7a83eH6-1" connectable="0" vertex="1">

 


<mxGeometry x="-1" relative="1" as="geometry">

 


<mxPoint y="-25" as="offset"/>

 


</mxGeometry>

 


</mxCell>

 


<mxCell id="DBiHRigbpUzwL7a83eH6-3" value="0..n" style="edgeLabel;resizable=0;html=1;align=right;verticalAlign=top;" parent="DBiHRigbpUzwL7a83eH6-1" connectable="0" vertex="1">

 


<mxGeometry x="1" relative="1" as="geometry">

 


<mxPoint x="-2" as="offset"/>

 


</mxGeometry>

 


</mxCell>

 


<mxCell id="DBiHRigbpUzwL7a83eH6-5" value="" style="endArrow=open;html=1;endSize=12;startArrow=none;startSize=14;startFill=0;edgeStyle=orthogonalEdgeStyle;" parent="cEK6TM7XqRidov9abteU-1" source="u18K9RalteA7PPSZT68i-28" target="u18K9RalteA7PPSZT68i-9" edge="1">

 


<mxGeometry relative="1" as="geometry">

 


<mxPoint x="450" y="-730" as="sourcePoint"/>

 


<mxPoint x="450" y="-650" as="targetPoint"/>

 


</mxGeometry>

 


</mxCell>

 


<mxCell id="DBiHRigbpUzwL7a83eH6-6" value="0..n" style="edgeLabel;resizable=0;html=1;align=left;verticalAlign=top;" parent="DBiHRigbpUzwL7a83eH6-5" connectable="0" vertex="1">

 


<mxGeometry x="-1" relative="1" as="geometry">

 


<mxPoint x="-22" as="offset"/>

 


</mxGeometry>

 


</mxCell>

 


<mxCell id="DBiHRigbpUzwL7a83eH6-7" value="0..n" style="edgeLabel;resizable=0;html=1;align=right;verticalAlign=top;" parent="DBiHRigbpUzwL7a83eH6-5" connectable="0" vertex="1">

 


<mxGeometry x="1" relative="1" as="geometry">

 


<mxPoint x="20" as="offset"/>

 


</mxGeometry>

 


</mxCell>

 


<mxCell id="iSx520BdXFOPAGHT7Ity-1" value="" style="endArrow=open;html=1;endSize=12;startArrow=none;startSize=14;startFill=0;edgeStyle=orthogonalEdgeStyle;" parent="cEK6TM7XqRidov9abteU-1" source="u18K9RalteA7PPSZT68i-51" target="u18K9RalteA7PPSZT68i-28" edge="1">

 


<mxGeometry relative="1" as="geometry">

 


<mxPoint x="485" y="-531" as="sourcePoint"/>

 


<mxPoint x="440" y="-583" as="targetPoint"/>

 


</mxGeometry>

 


</mxCell>

 


<mxCell id="iSx520BdXFOPAGHT7Ity-2" value="0..n" style="edgeLabel;resizable=0;html=1;align=left;verticalAlign=top;" parent="iSx520BdXFOPAGHT7Ity-1" connectable="0" vertex="1">

 


<mxGeometry x="-1" relative="1" as="geometry">

 


<mxPoint x="-22" as="offset"/>

 


</mxGeometry>

 


</mxCell>

 


<mxCell id="iSx520BdXFOPAGHT7Ity-3" value="0..n" style="edgeLabel;resizable=0;html=1;align=right;verticalAlign=top;" parent="iSx520BdXFOPAGHT7Ity-1" connectable="0" vertex="1">

 


<mxGeometry x="1" relative="1" as="geometry">

 


<mxPoint x="20" as="offset"/>

 


</mxGeometry>

 


</mxCell>

 


<mxCell id="W2iocPsAKJ1vNqihJt6C-1" value="Classroom API" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontStyle=1" parent="cEK6TM7XqRidov9abteU-1" vertex="1">

 


<mxGeometry x="50" y="-870" width="830" height="20" as="geometry"/>

 


</mxCell>

 


<mxCell id="iSx520BdXFOPAGHT7Ity-4" value="" style="endArrow=open;html=1;endSize=12;startArrow=none;startSize=14;startFill=0;edgeStyle=orthogonalEdgeStyle;" parent="cEK6TM7XqRidov9abteU-1" source="u18K9RalteA7PPSZT68i-51" target="u18K9RalteA7PPSZT68i-9" edge="1">

 


<mxGeometry relative="1" as="geometry">

 


<mxPoint x="495" y="-521" as="sourcePoint"/>

 


<mxPoint x="450" y="-573" as="targetPoint"/>

 


<Array as="points">

 


<mxPoint x="740" y="-240"/>

 


<mxPoint x="350" y="-240"/>

 


</Array>

 


</mxGeometry>

 


</mxCell>

 


<mxCell id="iSx520BdXFOPAGHT7Ity-6" value="0..n" style="edgeLabel;resizable=0;html=1;align=right;verticalAlign=top;" parent="iSx520BdXFOPAGHT7Ity-4" connectable="0" vertex="1">

 


<mxGeometry x="1" relative="1" as="geometry">

 


<mxPoint x="28" y="0.3299999999999983" as="offset"/>

 


</mxGeometry>

 


</mxCell>

 


<mxCell id="ckiKwctFG-cwRkKcAMuP-66" value="" style="endArrow=open;html=1;endSize=12;startArrow=none;startSize=14;startFill=0;edgeStyle=orthogonalEdgeStyle;" parent="cEK6TM7XqRidov9abteU-1" source="ckiKwctFG-cwRkKcAMuP-46" target="u18K9RalteA7PPSZT68i-9" edge="1">

 


<mxGeometry relative="1" as="geometry">

 


<mxPoint x="1295" y="-638.5" as="sourcePoint"/>

 


<mxPoint x="1250" y="-573.5" as="targetPoint"/>

 


<Array as="points">

 


<mxPoint x="1055" y="-900"/>

 


<mxPoint x="350" y="-900"/>

 


</Array>

 


</mxGeometry>

 


</mxCell>

 


<mxCell id="ckiKwctFG-cwRkKcAMuP-68" value="0..n" style="edgeLabel;resizable=0;html=1;align=right;verticalAlign=top;" parent="ckiKwctFG-cwRkKcAMuP-66" connectable="0" vertex="1">

 


<mxGeometry x="1" relative="1" as="geometry">

 


<mxPoint x="30" y="-22" as="offset"/>

 


</mxGeometry>

 


</mxCell>

 


<mxCell id="ckiKwctFG-cwRkKcAMuP-69" value="" style="endArrow=open;html=1;endSize=12;startArrow=none;startSize=14;startFill=0;edgeStyle=orthogonalEdgeStyle;" parent="cEK6TM7XqRidov9abteU-1" source="ckiKwctFG-cwRkKcAMuP-59" target="u18K9RalteA7PPSZT68i-9" edge="1">

 


<mxGeometry relative="1" as="geometry">

 


<mxPoint x="1385" y="-600" as="sourcePoint"/>

 


<mxPoint x="1340" y="-535" as="targetPoint"/>

 


<Array as="points">

 


<mxPoint x="1325" y="-900"/>

 


<mxPoint x="350" y="-900"/>

 


</Array>

 


</mxGeometry>

 


</mxCell>

 


<mxCell id="ckiKwctFG-cwRkKcAMuP-72" value="Participation / Engagement" style="text;html=1;strokeColor=#d6b656;fillColor=#fff2cc;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="cEK6TM7XqRidov9abteU-1" vertex="1">

 


<mxGeometry x="70" y="-940" width="160" height="20" as="geometry"/>

 


</mxCell>

 


<mxCell id="TG_wQ2__EgkX5L3ntxry-0" value="" style="endArrow=open;html=1;endSize=12;startArrow=none;startSize=14;startFill=0;edgeStyle=orthogonalEdgeStyle;" parent="cEK6TM7XqRidov9abteU-1" source="ckiKwctFG-cwRkKcAMuP-59" target="u18K9RalteA7PPSZT68i-69" edge="1">

 


<mxGeometry relative="1" as="geometry">

 


<mxPoint x="1235" y="-490" as="sourcePoint"/>

 


<mxPoint x="1190" y="-425" as="targetPoint"/>

 


<Array as="points">

 


<mxPoint x="1325" y="-900"/>

 


<mxPoint x="140" y="-900"/>

 


</Array>

 


</mxGeometry>

 


</mxCell>

 


<mxCell id="TG_wQ2__EgkX5L3ntxry-3" value="" style="endArrow=open;html=1;endSize=12;startArrow=none;startSize=14;startFill=0;edgeStyle=orthogonalEdgeStyle;" parent="cEK6TM7XqRidov9abteU-1" source="ckiKwctFG-cwRkKcAMuP-46" target="u18K9RalteA7PPSZT68i-69" edge="1">

 


<mxGeometry relative="1" as="geometry">

 


<mxPoint x="1087.5" y="-1010" as="sourcePoint"/>

 


<mxPoint x="1042.5" y="-945" as="targetPoint"/>

 


<Array as="points">

 


<mxPoint x="1055" y="-900"/>

 


<mxPoint x="140" y="-900"/>

 


</Array>

 


</mxGeometry>

 


</mxCell>

 


<mxCell id="TG_wQ2__EgkX5L3ntxry-5" value="0..n" style="edgeLabel;resizable=0;html=1;align=right;verticalAlign=top;" parent="TG_wQ2__EgkX5L3ntxry-3" connectable="0" vertex="1">

 


<mxGeometry x="1" relative="1" as="geometry">

 


<mxPoint x="30" y="-22" as="offset"/>

 


</mxGeometry>

 


</mxCell>

 


<mxCell id="TG_wQ2__EgkX5L3ntxry-7" value="Reports API" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontStyle=1" parent="cEK6TM7XqRidov9abteU-1" vertex="1">

 


<mxGeometry x="930" y="-870" width="520" height="20" as="geometry"/>

 


</mxCell>

 


<mxCell id="TG_wQ2__EgkX5L3ntxry-8" value="<b>Google Reports API Reference:</b>&nbsp;<a href="https://developers.google.com/admin-sdk/reports/v1/reference">https://developers.google.com/admin-sdk/reports/v1/reference</a>" style="text;html=1;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="cEK6TM7XqRidov9abteU-1" vertex="1">

 


<mxGeometry x="280" y="-980" width="530" height="20" as="geometry"/>

 


</mxCell>

 


<mxCell id="u18K9RalteA7PPSZT68i-69" value="student" style="swimlane;fontStyle=1;childLayout=stackLayout;horizontal=1;startSize=26;horizontalStack=0;resizeParent=1;resizeParentMax=0;resizeLast=0;collapsible=1;marginBottom=0;align=center;fillColor=#bac8d3;strokeColor=#23445d;" parent="cEK6TM7XqRidov9abteU-1" vertex="1">

 


<mxGeometry x="60" y="-840" width="160" height="78" as="geometry"/>

 


</mxCell>

 


<mxCell id="u18K9RalteA7PPSZT68i-72" value="-profile" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="u18K9RalteA7PPSZT68i-69" vertex="1">

 


<mxGeometry y="26" width="160" height="26" as="geometry"/>

 


</mxCell>

 


<mxCell id="u18K9RalteA7PPSZT68i-73" value="-studentWorkFolder" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="u18K9RalteA7PPSZT68i-69" vertex="1">

 


<mxGeometry y="52" width="160" height="26" as="geometry"/>

 


</mxCell>

 


<mxCell id="u18K9RalteA7PPSZT68i-9" value="course" style="swimlane;fontStyle=1;childLayout=stackLayout;horizontal=1;startSize=26;horizontalStack=0;resizeParent=1;resizeParentMax=0;resizeLast=0;collapsible=1;marginBottom=0;align=center;fillColor=#bac8d3;strokeColor=#23445d;" parent="cEK6TM7XqRidov9abteU-1" vertex="1">

 


<mxGeometry x="270" y="-840" width="160" height="494" as="geometry"/>

 


</mxCell>

 


<mxCell id="u18K9RalteA7PPSZT68i-10" value="-id" style="text;strokeColor=#666666;fillColor=#f5f5f5;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontColor=#333333;" parent="u18K9RalteA7PPSZT68i-9" vertex="1">

 


<mxGeometry y="26" width="160" height="26" as="geometry"/>

 


</mxCell>

 


<mxCell id="u18K9RalteA7PPSZT68i-11" value="-name" style="text;strokeColor=#666666;fillColor=#f5f5f5;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontColor=#333333;" parent="u18K9RalteA7PPSZT68i-9" vertex="1">

 


<mxGeometry y="52" width="160" height="26" as="geometry"/>

 


</mxCell>

 


<mxCell id="u18K9RalteA7PPSZT68i-12" value="-section" style="text;strokeColor=#666666;fillColor=#f5f5f5;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontColor=#333333;" parent="u18K9RalteA7PPSZT68i-9" vertex="1">

 


<mxGeometry y="78" width="160" height="26" as="geometry"/>

 


</mxCell>

 


<mxCell id="u18K9RalteA7PPSZT68i-13" value="-descriptionHeading" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="u18K9RalteA7PPSZT68i-9" vertex="1">

 


<mxGeometry y="104" width="160" height="26" as="geometry"/>

 


</mxCell>

 


<mxCell id="u18K9RalteA7PPSZT68i-14" value="-description" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="u18K9RalteA7PPSZT68i-9" vertex="1">

 


<mxGeometry y="130" width="160" height="26" as="geometry"/>

 


</mxCell>

 


<mxCell id="u18K9RalteA7PPSZT68i-15" value="-room" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="u18K9RalteA7PPSZT68i-9" vertex="1">

 


<mxGeometry y="156" width="160" height="26" as="geometry"/>

 


</mxCell>

 


<mxCell id="u18K9RalteA7PPSZT68i-16" value="-ownerId" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="u18K9RalteA7PPSZT68i-9" vertex="1">

 


<mxGeometry y="182" width="160" height="26" as="geometry"/>

 


</mxCell>

 


<mxCell id="u18K9RalteA7PPSZT68i-17" value="-creationTime" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="u18K9RalteA7PPSZT68i-9" vertex="1">

 


<mxGeometry y="208" width="160" height="26" as="geometry"/>

 


</mxCell>

 


<mxCell id="u18K9RalteA7PPSZT68i-18" value="-updateTime" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="u18K9RalteA7PPSZT68i-9" vertex="1">

 


<mxGeometry y="234" width="160" height="26" as="geometry"/>

 


</mxCell>

 


<mxCell id="u18K9RalteA7PPSZT68i-19" value="-enrollmentCode" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="u18K9RalteA7PPSZT68i-9" vertex="1">

 


<mxGeometry y="260" width="160" height="26" as="geometry"/>

 


</mxCell>

 


<mxCell id="u18K9RalteA7PPSZT68i-20" value="-courseState" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="u18K9RalteA7PPSZT68i-9" vertex="1">

 


<mxGeometry y="286" width="160" height="26" as="geometry"/>

 


</mxCell>

 


<mxCell id="u18K9RalteA7PPSZT68i-21" value="-alternateLink" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="u18K9RalteA7PPSZT68i-9" vertex="1">

 


<mxGeometry y="312" width="160" height="26" as="geometry"/>

 


</mxCell>

 


<mxCell id="u18K9RalteA7PPSZT68i-22" value="-teacherGroupEmail" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="u18K9RalteA7PPSZT68i-9" vertex="1">

 


<mxGeometry y="338" width="160" height="26" as="geometry"/>

 


</mxCell>

 


<mxCell id="u18K9RalteA7PPSZT68i-23" value="-courseGroupEmail" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="u18K9RalteA7PPSZT68i-9" vertex="1">

 


<mxGeometry y="364" width="160" height="26" as="geometry"/>

 


</mxCell>

 


<mxCell id="u18K9RalteA7PPSZT68i-24" value="-teacherFolder" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="u18K9RalteA7PPSZT68i-9" vertex="1">

 


<mxGeometry y="390" width="160" height="26" as="geometry"/>

 


</mxCell>

 


<mxCell id="u18K9RalteA7PPSZT68i-25" value="-courseMaterialSets" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="u18K9RalteA7PPSZT68i-9" vertex="1">

 


<mxGeometry y="416" width="160" height="26" as="geometry"/>

 


</mxCell>

 


<mxCell id="u18K9RalteA7PPSZT68i-26" value="-guardiansEnabled" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="u18K9RalteA7PPSZT68i-9" vertex="1">

 


<mxGeometry y="442" width="160" height="26" as="geometry"/>

 


</mxCell>

 


<mxCell id="u18K9RalteA7PPSZT68i-27" value="-calendarId" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="u18K9RalteA7PPSZT68i-9" vertex="1">

 


<mxGeometry y="468" width="160" height="26" as="geometry"/>

 


</mxCell>

 


<mxCell id="u18K9RalteA7PPSZT68i-28" value="courseWork" style="swimlane;fontStyle=1;childLayout=stackLayout;horizontal=1;startSize=26;horizontalStack=0;resizeParent=1;resizeParentMax=0;resizeLast=0;collapsible=1;marginBottom=0;align=center;fillColor=#bac8d3;strokeColor=#23445d;" parent="cEK6TM7XqRidov9abteU-1" vertex="1">

 


<mxGeometry x="475" y="-840" width="180" height="572" as="geometry"/>

 


</mxCell>

 


<mxCell id="u18K9RalteA7PPSZT68i-30" value="-id" style="text;strokeColor=#666666;fillColor=#f5f5f5;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontColor=#333333;" parent="u18K9RalteA7PPSZT68i-28" vertex="1">

 


<mxGeometry y="26" width="180" height="26" as="geometry"/>

 


</mxCell>

 


<mxCell id="u18K9RalteA7PPSZT68i-31" value="-title" style="text;strokeColor=#666666;fillColor=#f5f5f5;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontColor=#333333;" parent="u18K9RalteA7PPSZT68i-28" vertex="1">

 


<mxGeometry y="52" width="180" height="26" as="geometry"/>

 


</mxCell>

 


<mxCell id="u18K9RalteA7PPSZT68i-32" value="-description" style="text;strokeColor=#666666;fillColor=#f5f5f5;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontColor=#333333;" parent="u18K9RalteA7PPSZT68i-28" vertex="1">

 


<mxGeometry y="78" width="180" height="26" as="geometry"/>

 


</mxCell>

 


<mxCell id="u18K9RalteA7PPSZT68i-33" value="-materials" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="u18K9RalteA7PPSZT68i-28" vertex="1">

 


<mxGeometry y="104" width="180" height="26" as="geometry"/>

 


</mxCell>

 


<mxCell id="u18K9RalteA7PPSZT68i-34" value="-state" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="u18K9RalteA7PPSZT68i-28" vertex="1">

 


<mxGeometry y="130" width="180" height="26" as="geometry"/>

 


</mxCell>

 


<mxCell id="u18K9RalteA7PPSZT68i-35" value="-alternateLink" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="u18K9RalteA7PPSZT68i-28" vertex="1">

 


<mxGeometry y="156" width="180" height="26" as="geometry"/>

 


</mxCell>

 


<mxCell id="u18K9RalteA7PPSZT68i-36" value="-creationTime" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="u18K9RalteA7PPSZT68i-28" vertex="1">

 


<mxGeometry y="182" width="180" height="26" as="geometry"/>

 


</mxCell>

 


<mxCell id="u18K9RalteA7PPSZT68i-37" value="-updateTime" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="u18K9RalteA7PPSZT68i-28" vertex="1">

 


<mxGeometry y="208" width="180" height="26" as="geometry"/>

 


</mxCell>

 


<mxCell id="u18K9RalteA7PPSZT68i-38" value="-dueDate" style="text;strokeColor=#666666;fillColor=#f5f5f5;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontColor=#333333;" parent="u18K9RalteA7PPSZT68i-28" vertex="1">

 


<mxGeometry y="234" width="180" height="26" as="geometry"/>

 


</mxCell>

 


<mxCell id="u18K9RalteA7PPSZT68i-39" value="-dueTime" style="text;strokeColor=#666666;fillColor=#f5f5f5;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontColor=#333333;" parent="u18K9RalteA7PPSZT68i-28" vertex="1">

 


<mxGeometry y="260" width="180" height="26" as="geometry"/>

 


</mxCell>

 


<mxCell id="u18K9RalteA7PPSZT68i-40" value="-scheduledTime" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="u18K9RalteA7PPSZT68i-28" vertex="1">

 


<mxGeometry y="286" width="180" height="26" as="geometry"/>

 


</mxCell>

 


<mxCell id="u18K9RalteA7PPSZT68i-41" value="-maxPoints" style="text;strokeColor=#666666;fillColor=#f5f5f5;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontColor=#333333;" parent="u18K9RalteA7PPSZT68i-28" vertex="1">

 


<mxGeometry y="312" width="180" height="26" as="geometry"/>

 


</mxCell>

 


<mxCell id="u18K9RalteA7PPSZT68i-42" value="-workType" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="u18K9RalteA7PPSZT68i-28" vertex="1">

 


<mxGeometry y="338" width="180" height="26" as="geometry"/>

 


</mxCell>