-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRailWayReservationSystem.drawio
1166 lines (1166 loc) · 127 KB
/
RailWayReservationSystem.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="Electron" modified="2023-06-09T17:54:21.795Z" agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) draw.io/21.3.7 Chrome/112.0.5615.204 Electron/24.5.0 Safari/537.36" etag="Wd-bfwfNHllCxja52yCr" version="21.3.7" type="device" pages="4">
<diagram name="Class Diagram" id="14f2g58O5Oop5vKrMCQa">
<mxGraphModel dx="1118" dy="697" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="850" pageHeight="1100" math="0" shadow="0">
<root>
<mxCell id="0" />
<mxCell id="1" parent="0" />
<mxCell id="m9pvQrsUp6wp5olcLXfu-5" value="Station" style="swimlane;fontStyle=1;align=center;verticalAlign=top;childLayout=stackLayout;horizontal=1;startSize=26;horizontalStack=0;resizeParent=1;resizeParentMax=0;resizeLast=0;collapsible=1;marginBottom=0;whiteSpace=wrap;html=1;labelBackgroundColor=none;fillColor=#F2CC8F;strokeColor=#E07A5F;fontColor=#393C56;fontSize=14;" vertex="1" parent="1">
<mxGeometry x="40" y="40" width="160" height="190" as="geometry" />
</mxCell>
<mxCell id="m9pvQrsUp6wp5olcLXfu-6" value="station_id<br style="font-size: 14px;">name<br style="font-size: 14px;">stops" 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;whiteSpace=wrap;html=1;labelBackgroundColor=none;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="m9pvQrsUp6wp5olcLXfu-5">
<mxGeometry y="26" width="160" height="94" as="geometry" />
</mxCell>
<mxCell id="m9pvQrsUp6wp5olcLXfu-7" value="" style="line;strokeWidth=1;fillColor=none;align=left;verticalAlign=middle;spacingTop=-1;spacingLeft=3;spacingRight=3;rotatable=0;labelPosition=right;points=[];portConstraint=eastwest;strokeColor=#E07A5F;labelBackgroundColor=none;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="m9pvQrsUp6wp5olcLXfu-5">
<mxGeometry y="120" width="160" height="8" as="geometry" />
</mxCell>
<mxCell id="m9pvQrsUp6wp5olcLXfu-8" value="new station<br style="font-size: 14px;">edit station<br style="font-size: 14px;">delete station" 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;whiteSpace=wrap;html=1;labelBackgroundColor=none;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="m9pvQrsUp6wp5olcLXfu-5">
<mxGeometry y="128" width="160" height="62" as="geometry" />
</mxCell>
<mxCell id="m9pvQrsUp6wp5olcLXfu-9" value="Train" style="swimlane;fontStyle=1;align=center;verticalAlign=top;childLayout=stackLayout;horizontal=1;startSize=26;horizontalStack=0;resizeParent=1;resizeParentMax=0;resizeLast=0;collapsible=1;marginBottom=0;whiteSpace=wrap;html=1;labelBackgroundColor=none;fillColor=#F2CC8F;strokeColor=#E07A5F;fontColor=#393C56;fontSize=14;" vertex="1" parent="1">
<mxGeometry x="40" y="360" width="160" height="230" as="geometry" />
</mxCell>
<mxCell id="m9pvQrsUp6wp5olcLXfu-10" value="train_id<br style="font-size: 14px;">name<br style="font-size: 14px;">source<br style="border-color: var(--border-color); font-size: 14px;">start_time<br style="border-color: var(--border-color); font-size: 14px;">end_time<br style="font-size: 14px;">distance" 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;whiteSpace=wrap;html=1;labelBackgroundColor=none;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="m9pvQrsUp6wp5olcLXfu-9">
<mxGeometry y="26" width="160" height="134" as="geometry" />
</mxCell>
<mxCell id="m9pvQrsUp6wp5olcLXfu-11" value="" style="line;strokeWidth=1;fillColor=none;align=left;verticalAlign=middle;spacingTop=-1;spacingLeft=3;spacingRight=3;rotatable=0;labelPosition=right;points=[];portConstraint=eastwest;strokeColor=#E07A5F;labelBackgroundColor=none;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="m9pvQrsUp6wp5olcLXfu-9">
<mxGeometry y="160" width="160" height="8" as="geometry" />
</mxCell>
<mxCell id="m9pvQrsUp6wp5olcLXfu-12" value="new train<br style="font-size: 14px;">edit train<br style="font-size: 14px;">delete train" 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;whiteSpace=wrap;html=1;labelBackgroundColor=none;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="m9pvQrsUp6wp5olcLXfu-9">
<mxGeometry y="168" width="160" height="62" as="geometry" />
</mxCell>
<mxCell id="m9pvQrsUp6wp5olcLXfu-17" value="Seat" style="swimlane;fontStyle=1;align=center;verticalAlign=top;childLayout=stackLayout;horizontal=1;startSize=26;horizontalStack=0;resizeParent=1;resizeParentMax=0;resizeLast=0;collapsible=1;marginBottom=0;whiteSpace=wrap;html=1;labelBackgroundColor=none;fillColor=#F2CC8F;strokeColor=#E07A5F;fontColor=#393C56;fontSize=14;" vertex="1" parent="1">
<mxGeometry x="50" y="830" width="160" height="190" as="geometry" />
</mxCell>
<mxCell id="m9pvQrsUp6wp5olcLXfu-18" value="seat_id<br style="font-size: 14px;">train_id<br style="font-size: 14px;">zone<br style="font-size: 14px;">degree" 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;whiteSpace=wrap;html=1;labelBackgroundColor=none;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="m9pvQrsUp6wp5olcLXfu-17">
<mxGeometry y="26" width="160" height="94" as="geometry" />
</mxCell>
<mxCell id="m9pvQrsUp6wp5olcLXfu-19" value="" style="line;strokeWidth=1;fillColor=none;align=left;verticalAlign=middle;spacingTop=-1;spacingLeft=3;spacingRight=3;rotatable=0;labelPosition=right;points=[];portConstraint=eastwest;strokeColor=#E07A5F;labelBackgroundColor=none;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="m9pvQrsUp6wp5olcLXfu-17">
<mxGeometry y="120" width="160" height="8" as="geometry" />
</mxCell>
<mxCell id="m9pvQrsUp6wp5olcLXfu-20" value="new Schedule<br style="font-size: 14px;">edit Schedule<br style="font-size: 14px;">delete Schedule" 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;whiteSpace=wrap;html=1;labelBackgroundColor=none;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="m9pvQrsUp6wp5olcLXfu-17">
<mxGeometry y="128" width="160" height="62" as="geometry" />
</mxCell>
<mxCell id="m9pvQrsUp6wp5olcLXfu-22" value="Payment" style="swimlane;fontStyle=1;align=center;verticalAlign=top;childLayout=stackLayout;horizontal=1;startSize=26;horizontalStack=0;resizeParent=1;resizeParentMax=0;resizeLast=0;collapsible=1;marginBottom=0;whiteSpace=wrap;html=1;labelBackgroundColor=none;fillColor=#F2CC8F;strokeColor=#E07A5F;fontColor=#393C56;fontSize=14;" vertex="1" parent="1">
<mxGeometry x="600" y="50" width="160" height="160" as="geometry" />
</mxCell>
<mxCell id="m9pvQrsUp6wp5olcLXfu-23" value="payment_id<br style="font-size: 14px;">passenger_id<br style="font-size: 14px;">amount" 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;whiteSpace=wrap;html=1;labelBackgroundColor=none;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="m9pvQrsUp6wp5olcLXfu-22">
<mxGeometry y="26" width="160" height="64" as="geometry" />
</mxCell>
<mxCell id="m9pvQrsUp6wp5olcLXfu-24" value="" style="line;strokeWidth=1;fillColor=none;align=left;verticalAlign=middle;spacingTop=-1;spacingLeft=3;spacingRight=3;rotatable=0;labelPosition=right;points=[];portConstraint=eastwest;strokeColor=#E07A5F;labelBackgroundColor=none;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="m9pvQrsUp6wp5olcLXfu-22">
<mxGeometry y="90" width="160" height="8" as="geometry" />
</mxCell>
<mxCell id="m9pvQrsUp6wp5olcLXfu-25" value="new payment<br style="font-size: 14px;">edit payment<br style="font-size: 14px;">delete payment" 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;whiteSpace=wrap;html=1;labelBackgroundColor=none;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="m9pvQrsUp6wp5olcLXfu-22">
<mxGeometry y="98" width="160" height="62" as="geometry" />
</mxCell>
<mxCell id="m9pvQrsUp6wp5olcLXfu-26" value="Passenger" style="swimlane;fontStyle=1;align=center;verticalAlign=top;childLayout=stackLayout;horizontal=1;startSize=26;horizontalStack=0;resizeParent=1;resizeParentMax=0;resizeLast=0;collapsible=1;marginBottom=0;whiteSpace=wrap;html=1;labelBackgroundColor=none;fillColor=#F2CC8F;strokeColor=#E07A5F;fontColor=#393C56;fontSize=14;" vertex="1" parent="1">
<mxGeometry x="590" y="360" width="160" height="230" as="geometry" />
</mxCell>
<mxCell id="m9pvQrsUp6wp5olcLXfu-27" value="passenger_id<br style="font-size: 14px;">email<br style="font-size: 14px;">age<br style="font-size: 14px;">name<br style="font-size: 14px;">telephone<br style="font-size: 14px;">fax" 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;whiteSpace=wrap;html=1;labelBackgroundColor=none;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="m9pvQrsUp6wp5olcLXfu-26">
<mxGeometry y="26" width="160" height="124" as="geometry" />
</mxCell>
<mxCell id="m9pvQrsUp6wp5olcLXfu-28" value="" style="line;strokeWidth=1;fillColor=none;align=left;verticalAlign=middle;spacingTop=-1;spacingLeft=3;spacingRight=3;rotatable=0;labelPosition=right;points=[];portConstraint=eastwest;strokeColor=#E07A5F;labelBackgroundColor=none;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="m9pvQrsUp6wp5olcLXfu-26">
<mxGeometry y="150" width="160" height="8" as="geometry" />
</mxCell>
<mxCell id="m9pvQrsUp6wp5olcLXfu-29" value="new passenger<br style="font-size: 14px;">edit passenger<br style="font-size: 14px;">delete passenger<br style="font-size: 14px;">login" 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;whiteSpace=wrap;html=1;labelBackgroundColor=none;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="m9pvQrsUp6wp5olcLXfu-26">
<mxGeometry y="158" width="160" height="72" as="geometry" />
</mxCell>
<mxCell id="m9pvQrsUp6wp5olcLXfu-30" value="Ticket" style="swimlane;fontStyle=1;align=center;verticalAlign=top;childLayout=stackLayout;horizontal=1;startSize=26;horizontalStack=0;resizeParent=1;resizeParentMax=0;resizeLast=0;collapsible=1;marginBottom=0;whiteSpace=wrap;html=1;labelBackgroundColor=none;fillColor=#F2CC8F;strokeColor=#E07A5F;fontColor=#393C56;fontSize=14;" vertex="1" parent="1">
<mxGeometry x="560" y="770" width="160" height="230" as="geometry" />
</mxCell>
<mxCell id="m9pvQrsUp6wp5olcLXfu-31" value="ticket_id<br style="font-size: 14px;">from_station<br style="font-size: 14px;">to_station<br style="font-size: 14px;">payment_id<br style="font-size: 14px;">time<br style="font-size: 14px;">date" 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;whiteSpace=wrap;html=1;labelBackgroundColor=none;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="m9pvQrsUp6wp5olcLXfu-30">
<mxGeometry y="26" width="160" height="134" as="geometry" />
</mxCell>
<mxCell id="m9pvQrsUp6wp5olcLXfu-32" value="" style="line;strokeWidth=1;fillColor=none;align=left;verticalAlign=middle;spacingTop=-1;spacingLeft=3;spacingRight=3;rotatable=0;labelPosition=right;points=[];portConstraint=eastwest;strokeColor=#E07A5F;labelBackgroundColor=none;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="m9pvQrsUp6wp5olcLXfu-30">
<mxGeometry y="160" width="160" height="8" as="geometry" />
</mxCell>
<mxCell id="m9pvQrsUp6wp5olcLXfu-33" value="new ticket<br style="font-size: 14px;">edit ticket<br style="font-size: 14px;">delete ticket" 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;whiteSpace=wrap;html=1;labelBackgroundColor=none;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="m9pvQrsUp6wp5olcLXfu-30">
<mxGeometry y="168" width="160" height="62" as="geometry" />
</mxCell>
<mxCell id="m9pvQrsUp6wp5olcLXfu-36" value="" style="endArrow=none;html=1;rounded=0;entryX=0.475;entryY=0.972;entryDx=0;entryDy=0;entryPerimeter=0;exitX=0.5;exitY=0;exitDx=0;exitDy=0;labelBackgroundColor=none;strokeColor=#E07A5F;fontColor=default;fontStyle=1;fontSize=14;" edge="1" parent="1" source="m9pvQrsUp6wp5olcLXfu-30" target="m9pvQrsUp6wp5olcLXfu-29">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="550" y="750" as="sourcePoint" />
<mxPoint x="600" y="700" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="m9pvQrsUp6wp5olcLXfu-37" value="Book" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;labelBackgroundColor=none;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="1">
<mxGeometry x="640" y="648" width="60" height="30" as="geometry" />
</mxCell>
<mxCell id="m9pvQrsUp6wp5olcLXfu-38" value="1" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;labelBackgroundColor=none;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="1">
<mxGeometry x="665" y="558" width="30" height="30" as="geometry" />
</mxCell>
<mxCell id="m9pvQrsUp6wp5olcLXfu-39" value="1...*" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;labelBackgroundColor=none;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="1">
<mxGeometry x="635" y="748" width="50" height="30" as="geometry" />
</mxCell>
<mxCell id="m9pvQrsUp6wp5olcLXfu-40" value="" style="endArrow=none;html=1;rounded=0;entryX=0.425;entryY=1.065;entryDx=0;entryDy=0;entryPerimeter=0;exitX=0.544;exitY=-0.01;exitDx=0;exitDy=0;exitPerimeter=0;labelBackgroundColor=none;strokeColor=#E07A5F;fontColor=default;fontStyle=1;fontSize=14;" edge="1" parent="1" source="m9pvQrsUp6wp5olcLXfu-26" target="m9pvQrsUp6wp5olcLXfu-25">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="650" y="780" as="sourcePoint" />
<mxPoint x="676" y="568" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="m9pvQrsUp6wp5olcLXfu-41" value="Make" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;labelBackgroundColor=none;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="1">
<mxGeometry x="665" y="268" width="60" height="30" as="geometry" />
</mxCell>
<mxCell id="m9pvQrsUp6wp5olcLXfu-42" value="1" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;labelBackgroundColor=none;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="1">
<mxGeometry x="665" y="208" width="30" height="30" as="geometry" />
</mxCell>
<mxCell id="m9pvQrsUp6wp5olcLXfu-43" value="1" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;labelBackgroundColor=none;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="1">
<mxGeometry x="675" y="338" width="30" height="30" as="geometry" />
</mxCell>
<mxCell id="m9pvQrsUp6wp5olcLXfu-44" value="" style="endArrow=none;html=1;rounded=0;entryX=1.006;entryY=0.609;entryDx=0;entryDy=0;entryPerimeter=0;exitX=1;exitY=0.5;exitDx=0;exitDy=0;labelBackgroundColor=none;strokeColor=#E07A5F;fontColor=default;fontStyle=1;fontSize=14;" edge="1" parent="1" source="m9pvQrsUp6wp5olcLXfu-31" target="m9pvQrsUp6wp5olcLXfu-23">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="687" y="368" as="sourcePoint" />
<mxPoint x="678" y="224" as="targetPoint" />
<Array as="points">
<mxPoint x="810" y="840" />
<mxPoint x="800" y="115" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="m9pvQrsUp6wp5olcLXfu-45" value="" style="endArrow=none;html=1;rounded=0;exitX=-0.012;exitY=0.787;exitDx=0;exitDy=0;exitPerimeter=0;entryX=1.019;entryY=0.723;entryDx=0;entryDy=0;entryPerimeter=0;labelBackgroundColor=none;strokeColor=#E07A5F;fontColor=default;fontStyle=1;fontSize=14;" edge="1" parent="1" source="m9pvQrsUp6wp5olcLXfu-31" target="m9pvQrsUp6wp5olcLXfu-18">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="650" y="780" as="sourcePoint" />
<mxPoint x="330" y="710" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="m9pvQrsUp6wp5olcLXfu-46" value="1" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;labelBackgroundColor=none;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="1">
<mxGeometry x="205" y="888" width="30" height="30" as="geometry" />
</mxCell>
<mxCell id="m9pvQrsUp6wp5olcLXfu-47" value="1" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;labelBackgroundColor=none;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="1">
<mxGeometry x="525" y="838" width="30" height="30" as="geometry" />
</mxCell>
<mxCell id="m9pvQrsUp6wp5olcLXfu-48" value="have" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;labelBackgroundColor=none;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="1">
<mxGeometry x="370" y="868" width="60" height="30" as="geometry" />
</mxCell>
<mxCell id="m9pvQrsUp6wp5olcLXfu-49" value="" style="endArrow=none;html=1;rounded=0;exitX=0.5;exitY=0;exitDx=0;exitDy=0;entryX=0.388;entryY=1.032;entryDx=0;entryDy=0;entryPerimeter=0;labelBackgroundColor=none;strokeColor=#E07A5F;fontColor=default;fontStyle=1;fontSize=14;" edge="1" parent="1" source="m9pvQrsUp6wp5olcLXfu-17" target="m9pvQrsUp6wp5olcLXfu-12">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="568" y="880" as="sourcePoint" />
<mxPoint x="223" y="934" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="m9pvQrsUp6wp5olcLXfu-50" value="have" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;labelBackgroundColor=none;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="1">
<mxGeometry x="110" y="648" width="60" height="30" as="geometry" />
</mxCell>
<mxCell id="m9pvQrsUp6wp5olcLXfu-51" value="1" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;labelBackgroundColor=none;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="1">
<mxGeometry x="115" y="560" width="30" height="30" as="geometry" />
</mxCell>
<mxCell id="m9pvQrsUp6wp5olcLXfu-53" value="1...*" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;labelBackgroundColor=none;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="1">
<mxGeometry x="125" y="800" width="50" height="30" as="geometry" />
</mxCell>
<mxCell id="m9pvQrsUp6wp5olcLXfu-54" value="" style="endArrow=none;html=1;rounded=0;entryX=1.019;entryY=0.161;entryDx=0;entryDy=0;entryPerimeter=0;exitX=-0.012;exitY=0.053;exitDx=0;exitDy=0;exitPerimeter=0;labelBackgroundColor=none;strokeColor=#E07A5F;fontColor=default;fontStyle=1;fontSize=14;" edge="1" parent="1" source="m9pvQrsUp6wp5olcLXfu-31" target="m9pvQrsUp6wp5olcLXfu-8">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="650" y="780" as="sourcePoint" />
<mxPoint x="676" y="568" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="m9pvQrsUp6wp5olcLXfu-55" value="from/to" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;labelBackgroundColor=none;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="1">
<mxGeometry x="370" y="478" width="70" height="30" as="geometry" />
</mxCell>
<mxCell id="m9pvQrsUp6wp5olcLXfu-57" value="1....*" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;labelBackgroundColor=none;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="1">
<mxGeometry x="525" y="738" width="50" height="30" as="geometry" />
</mxCell>
<mxCell id="m9pvQrsUp6wp5olcLXfu-58" value="1" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;labelBackgroundColor=none;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="1">
<mxGeometry x="210" y="160" width="30" height="30" as="geometry" />
</mxCell>
<mxCell id="m9pvQrsUp6wp5olcLXfu-59" value="buy" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;labelBackgroundColor=none;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="1">
<mxGeometry x="755" y="508" width="50" height="30" as="geometry" />
</mxCell>
<mxCell id="m9pvQrsUp6wp5olcLXfu-60" value="1" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;labelBackgroundColor=none;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="1">
<mxGeometry x="765" y="108" width="30" height="30" as="geometry" />
</mxCell>
<mxCell id="m9pvQrsUp6wp5olcLXfu-61" value="1...*" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;labelBackgroundColor=none;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="1">
<mxGeometry x="755" y="798" width="50" height="30" as="geometry" />
</mxCell>
<mxCell id="m9pvQrsUp6wp5olcLXfu-62" value="" style="endArrow=none;html=1;rounded=0;exitX=0.463;exitY=-0.011;exitDx=0;exitDy=0;entryX=0.481;entryY=1.048;entryDx=0;entryDy=0;entryPerimeter=0;exitPerimeter=0;labelBackgroundColor=none;strokeColor=#E07A5F;fontColor=default;fontStyle=1;fontSize=14;" edge="1" parent="1" source="m9pvQrsUp6wp5olcLXfu-9" target="m9pvQrsUp6wp5olcLXfu-8">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="140" y="840" as="sourcePoint" />
<mxPoint x="112" y="562" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="m9pvQrsUp6wp5olcLXfu-63" value="Source" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;labelBackgroundColor=none;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="1">
<mxGeometry x="110" y="278" width="70" height="30" as="geometry" />
</mxCell>
<mxCell id="m9pvQrsUp6wp5olcLXfu-64" value="1....*" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;labelBackgroundColor=none;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="1">
<mxGeometry x="115" y="230" width="50" height="30" as="geometry" />
</mxCell>
<mxCell id="m9pvQrsUp6wp5olcLXfu-65" value="1....*" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;labelBackgroundColor=none;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="1">
<mxGeometry x="120" y="330" width="50" height="30" as="geometry" />
</mxCell>
</root>
</mxGraphModel>
</diagram>
<diagram id="6yg2dIHdZ1nwYVDKU0JG" name="Sequence diagram">
<mxGraphModel dx="2263" dy="880" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="850" pageHeight="1100" math="0" shadow="0">
<root>
<mxCell id="0" />
<mxCell id="1" parent="0" />
<mxCell id="UVB9V13-9o3WzfM_zq6G-25" value="Passenger" style="shape=umlLifeline;perimeter=lifelinePerimeter;whiteSpace=wrap;html=1;container=1;dropTarget=0;collapsible=0;recursiveResize=0;outlineConnect=0;portConstraint=eastwest;newEdgeStyle={"edgeStyle":"elbowEdgeStyle","elbow":"vertical","curved":0,"rounded":0};labelBackgroundColor=none;fillColor=#F2CC8F;strokeColor=#E07A5F;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="1">
<mxGeometry x="-830" y="50" width="100" height="1460" as="geometry" />
</mxCell>
<mxCell id="UVB9V13-9o3WzfM_zq6G-29" value="" style="html=1;points=[];perimeter=orthogonalPerimeter;outlineConnect=0;targetShapes=umlLifeline;portConstraint=eastwest;newEdgeStyle={"edgeStyle":"elbowEdgeStyle","elbow":"vertical","curved":0,"rounded":0};labelBackgroundColor=none;fillColor=#F2CC8F;strokeColor=#E07A5F;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="UVB9V13-9o3WzfM_zq6G-25">
<mxGeometry x="45" y="70" width="10" height="170" as="geometry" />
</mxCell>
<mxCell id="NCziRpMPAXeyxiaALWxQ-2" value="" style="html=1;points=[];perimeter=orthogonalPerimeter;outlineConnect=0;targetShapes=umlLifeline;portConstraint=eastwest;newEdgeStyle={"edgeStyle":"elbowEdgeStyle","elbow":"vertical","curved":0,"rounded":0};labelBackgroundColor=none;fillColor=#F2CC8F;strokeColor=#E07A5F;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="UVB9V13-9o3WzfM_zq6G-25">
<mxGeometry x="45" y="340" width="10" height="280" as="geometry" />
</mxCell>
<mxCell id="NCziRpMPAXeyxiaALWxQ-15" value="" style="html=1;points=[];perimeter=orthogonalPerimeter;outlineConnect=0;targetShapes=umlLifeline;portConstraint=eastwest;newEdgeStyle={"edgeStyle":"elbowEdgeStyle","elbow":"vertical","curved":0,"rounded":0};labelBackgroundColor=none;fillColor=#F2CC8F;strokeColor=#E07A5F;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="UVB9V13-9o3WzfM_zq6G-25">
<mxGeometry x="45" y="670" width="10" height="500" as="geometry" />
</mxCell>
<mxCell id="NCziRpMPAXeyxiaALWxQ-23" value="" style="html=1;points=[];perimeter=orthogonalPerimeter;outlineConnect=0;targetShapes=umlLifeline;portConstraint=eastwest;newEdgeStyle={"edgeStyle":"elbowEdgeStyle","elbow":"vertical","curved":0,"rounded":0};labelBackgroundColor=none;fillColor=#F2CC8F;strokeColor=#E07A5F;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="UVB9V13-9o3WzfM_zq6G-25">
<mxGeometry x="45" y="1250" width="10" height="150" as="geometry" />
</mxCell>
<mxCell id="UVB9V13-9o3WzfM_zq6G-26" value="Railway reservation Systen" style="shape=umlLifeline;perimeter=lifelinePerimeter;whiteSpace=wrap;html=1;container=1;dropTarget=0;collapsible=0;recursiveResize=0;outlineConnect=0;portConstraint=eastwest;newEdgeStyle={"edgeStyle":"elbowEdgeStyle","elbow":"vertical","curved":0,"rounded":0};labelBackgroundColor=none;fillColor=#F2CC8F;strokeColor=#E07A5F;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="1">
<mxGeometry x="-600" y="50" width="160" height="1460" as="geometry" />
</mxCell>
<mxCell id="UVB9V13-9o3WzfM_zq6G-30" value="" style="html=1;points=[];perimeter=orthogonalPerimeter;outlineConnect=0;targetShapes=umlLifeline;portConstraint=eastwest;newEdgeStyle={"edgeStyle":"elbowEdgeStyle","elbow":"vertical","curved":0,"rounded":0};labelBackgroundColor=none;fillColor=#F2CC8F;strokeColor=#E07A5F;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="UVB9V13-9o3WzfM_zq6G-26">
<mxGeometry x="75" y="60" width="10" height="200" as="geometry" />
</mxCell>
<mxCell id="UVB9V13-9o3WzfM_zq6G-59" value="" style="html=1;points=[];perimeter=orthogonalPerimeter;outlineConnect=0;targetShapes=umlLifeline;portConstraint=eastwest;newEdgeStyle={"edgeStyle":"elbowEdgeStyle","elbow":"vertical","curved":0,"rounded":0};labelBackgroundColor=none;fillColor=#F2CC8F;strokeColor=#E07A5F;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="UVB9V13-9o3WzfM_zq6G-26">
<mxGeometry x="75" y="360" width="10" height="260" as="geometry" />
</mxCell>
<mxCell id="UVB9V13-9o3WzfM_zq6G-77" value="" style="html=1;points=[];perimeter=orthogonalPerimeter;outlineConnect=0;targetShapes=umlLifeline;portConstraint=eastwest;newEdgeStyle={"edgeStyle":"elbowEdgeStyle","elbow":"vertical","curved":0,"rounded":0};labelBackgroundColor=none;fillColor=#F2CC8F;strokeColor=#E07A5F;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="UVB9V13-9o3WzfM_zq6G-26">
<mxGeometry x="75" y="660" width="10" height="520" as="geometry" />
</mxCell>
<mxCell id="UVB9V13-9o3WzfM_zq6G-145" value="" style="html=1;points=[];perimeter=orthogonalPerimeter;outlineConnect=0;targetShapes=umlLifeline;portConstraint=eastwest;newEdgeStyle={"edgeStyle":"elbowEdgeStyle","elbow":"vertical","curved":0,"rounded":0};labelBackgroundColor=none;fillColor=#F2CC8F;strokeColor=#E07A5F;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="UVB9V13-9o3WzfM_zq6G-26">
<mxGeometry x="75" y="1286" width="10" height="114" as="geometry" />
</mxCell>
<mxCell id="NTAL5VPCTlulTYypjxPr-1" style="edgeStyle=elbowEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;elbow=vertical;curved=0;entryX=1.426;entryY=0.148;entryDx=0;entryDy=0;entryPerimeter=0;labelBackgroundColor=none;strokeColor=#E07A5F;fontColor=default;fontStyle=1;fontSize=14;" edge="1" parent="UVB9V13-9o3WzfM_zq6G-26" source="UVB9V13-9o3WzfM_zq6G-77" target="UVB9V13-9o3WzfM_zq6G-77">
<mxGeometry relative="1" as="geometry">
<mxPoint x="200" y="740" as="targetPoint" />
<Array as="points">
<mxPoint x="230" y="720" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="UVB9V13-9o3WzfM_zq6G-27" value="Admin" style="shape=umlLifeline;perimeter=lifelinePerimeter;whiteSpace=wrap;html=1;container=1;dropTarget=0;collapsible=0;recursiveResize=0;outlineConnect=0;portConstraint=eastwest;newEdgeStyle={"edgeStyle":"elbowEdgeStyle","elbow":"vertical","curved":0,"rounded":0};labelBackgroundColor=none;fillColor=#F2CC8F;strokeColor=#E07A5F;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="1">
<mxGeometry x="-310" y="50" width="100" height="1460" as="geometry" />
</mxCell>
<mxCell id="UVB9V13-9o3WzfM_zq6G-54" value="" style="html=1;points=[];perimeter=orthogonalPerimeter;outlineConnect=0;targetShapes=umlLifeline;portConstraint=eastwest;newEdgeStyle={"edgeStyle":"elbowEdgeStyle","elbow":"vertical","curved":0,"rounded":0};labelBackgroundColor=none;fillColor=#F2CC8F;strokeColor=#E07A5F;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="UVB9V13-9o3WzfM_zq6G-27">
<mxGeometry x="45" y="360" width="10" height="250" as="geometry" />
</mxCell>
<mxCell id="UVB9V13-9o3WzfM_zq6G-106" value="" style="html=1;points=[];perimeter=orthogonalPerimeter;outlineConnect=0;targetShapes=umlLifeline;portConstraint=eastwest;newEdgeStyle={"edgeStyle":"elbowEdgeStyle","elbow":"vertical","curved":0,"rounded":0};labelBackgroundColor=none;fillColor=#F2CC8F;strokeColor=#E07A5F;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="UVB9V13-9o3WzfM_zq6G-27">
<mxGeometry x="45" y="1086" width="10" height="85" as="geometry" />
</mxCell>
<mxCell id="UVB9V13-9o3WzfM_zq6G-28" value="Database" style="shape=umlLifeline;perimeter=lifelinePerimeter;whiteSpace=wrap;html=1;container=1;dropTarget=0;collapsible=0;recursiveResize=0;outlineConnect=0;portConstraint=eastwest;newEdgeStyle={"edgeStyle":"elbowEdgeStyle","elbow":"vertical","curved":0,"rounded":0};labelBackgroundColor=none;fillColor=#F2CC8F;strokeColor=#E07A5F;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="1">
<mxGeometry x="-100" y="45" width="100" height="1465" as="geometry" />
</mxCell>
<mxCell id="UVB9V13-9o3WzfM_zq6G-37" value="" style="html=1;points=[];perimeter=orthogonalPerimeter;outlineConnect=0;targetShapes=umlLifeline;portConstraint=eastwest;newEdgeStyle={"edgeStyle":"elbowEdgeStyle","elbow":"vertical","curved":0,"rounded":0};labelBackgroundColor=none;fillColor=#F2CC8F;strokeColor=#E07A5F;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="UVB9V13-9o3WzfM_zq6G-28">
<mxGeometry x="45" y="145" width="10" height="150" as="geometry" />
</mxCell>
<mxCell id="UVB9V13-9o3WzfM_zq6G-69" value="" style="html=1;points=[];perimeter=orthogonalPerimeter;outlineConnect=0;targetShapes=umlLifeline;portConstraint=eastwest;newEdgeStyle={"edgeStyle":"elbowEdgeStyle","elbow":"vertical","curved":0,"rounded":0};labelBackgroundColor=none;fillColor=#F2CC8F;strokeColor=#E07A5F;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="UVB9V13-9o3WzfM_zq6G-28">
<mxGeometry x="45" y="500" width="10" height="100" as="geometry" />
</mxCell>
<mxCell id="UVB9V13-9o3WzfM_zq6G-102" value="" style="html=1;points=[];perimeter=orthogonalPerimeter;outlineConnect=0;targetShapes=umlLifeline;portConstraint=eastwest;newEdgeStyle={"edgeStyle":"elbowEdgeStyle","elbow":"vertical","curved":0,"rounded":0};labelBackgroundColor=none;fillColor=#F2CC8F;strokeColor=#E07A5F;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="UVB9V13-9o3WzfM_zq6G-28">
<mxGeometry x="45" y="961" width="10" height="115" as="geometry" />
</mxCell>
<mxCell id="UVB9V13-9o3WzfM_zq6G-148" value="" style="html=1;points=[];perimeter=orthogonalPerimeter;outlineConnect=0;targetShapes=umlLifeline;portConstraint=eastwest;newEdgeStyle={"edgeStyle":"elbowEdgeStyle","elbow":"vertical","curved":0,"rounded":0};labelBackgroundColor=none;fillColor=#F2CC8F;strokeColor=#E07A5F;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="UVB9V13-9o3WzfM_zq6G-28">
<mxGeometry x="45" y="1291" width="10" height="119" as="geometry" />
</mxCell>
<mxCell id="UVB9V13-9o3WzfM_zq6G-31" value="Login" style="html=1;verticalAlign=bottom;endArrow=block;edgeStyle=elbowEdgeStyle;elbow=vertical;curved=0;rounded=0;exitX=1.3;exitY=0.114;exitDx=0;exitDy=0;exitPerimeter=0;labelBackgroundColor=none;strokeColor=#E07A5F;fontColor=default;fontStyle=1;fontSize=14;" edge="1" parent="1" source="UVB9V13-9o3WzfM_zq6G-29" target="UVB9V13-9o3WzfM_zq6G-26">
<mxGeometry width="80" relative="1" as="geometry">
<mxPoint x="-720" y="130" as="sourcePoint" />
<mxPoint x="-670" y="130" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="UVB9V13-9o3WzfM_zq6G-33" value="" style="strokeWidth=2;html=1;shape=mxgraph.flowchart.decision;whiteSpace=wrap;labelBackgroundColor=none;fillColor=#F2CC8F;strokeColor=#E07A5F;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="1">
<mxGeometry x="-460" y="190" width="70" height="60" as="geometry" />
</mxCell>
<mxCell id="UVB9V13-9o3WzfM_zq6G-32" value="Validate" style="html=1;verticalAlign=bottom;endArrow=block;edgeStyle=elbowEdgeStyle;elbow=vertical;curved=0;rounded=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;entryPerimeter=0;labelBackgroundColor=none;strokeColor=#E07A5F;fontColor=default;fontStyle=1;fontSize=14;" edge="1" parent="1" source="UVB9V13-9o3WzfM_zq6G-30" target="UVB9V13-9o3WzfM_zq6G-33">
<mxGeometry width="80" relative="1" as="geometry">
<mxPoint x="-762" y="139" as="sourcePoint" />
<mxPoint x="-420" y="130" as="targetPoint" />
<Array as="points">
<mxPoint x="-460" y="150" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="UVB9V13-9o3WzfM_zq6G-34" value="Error" style="html=1;verticalAlign=bottom;endArrow=open;dashed=1;endSize=8;edgeStyle=elbowEdgeStyle;elbow=vertical;curved=0;rounded=0;labelBackgroundColor=none;strokeColor=#E07A5F;fontColor=default;fontStyle=1;fontSize=14;" edge="1" parent="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="-450" y="230" as="sourcePoint" />
<mxPoint x="-510" y="230" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="UVB9V13-9o3WzfM_zq6G-35" value="Validation Error" style="html=1;verticalAlign=bottom;endArrow=open;dashed=1;endSize=8;edgeStyle=elbowEdgeStyle;elbow=vertical;curved=0;rounded=0;entryX=1.395;entryY=0.786;entryDx=0;entryDy=0;entryPerimeter=0;labelBackgroundColor=none;strokeColor=#E07A5F;fontColor=default;fontStyle=1;fontSize=14;" edge="1" parent="1">
<mxGeometry x="0.0158" y="-10" relative="1" as="geometry">
<mxPoint x="-525" y="238.90476190476193" as="sourcePoint" />
<mxPoint x="-771.05" y="238.6199999999999" as="targetPoint" />
<mxPoint as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="UVB9V13-9o3WzfM_zq6G-36" value="Check login" style="html=1;verticalAlign=bottom;endArrow=block;edgeStyle=elbowEdgeStyle;elbow=vertical;curved=0;rounded=0;exitX=1;exitY=0.5;exitDx=0;exitDy=0;exitPerimeter=0;labelBackgroundColor=none;strokeColor=#E07A5F;fontColor=default;fontStyle=1;fontSize=14;" edge="1" parent="1" source="UVB9V13-9o3WzfM_zq6G-33" target="UVB9V13-9o3WzfM_zq6G-37">
<mxGeometry width="80" relative="1" as="geometry">
<mxPoint x="-390" y="300" as="sourcePoint" />
<mxPoint x="-128.0952380952381" y="230" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="UVB9V13-9o3WzfM_zq6G-38" value="Done" style="html=1;verticalAlign=bottom;endArrow=open;dashed=1;endSize=8;edgeStyle=elbowEdgeStyle;elbow=vertical;curved=0;rounded=0;exitX=-0.024;exitY=0.591;exitDx=0;exitDy=0;exitPerimeter=0;labelBackgroundColor=none;strokeColor=#E07A5F;fontColor=default;fontStyle=1;fontSize=14;" edge="1" parent="1" source="UVB9V13-9o3WzfM_zq6G-37" target="UVB9V13-9o3WzfM_zq6G-26">
<mxGeometry relative="1" as="geometry">
<mxPoint x="-110" y="320" as="sourcePoint" />
<mxPoint x="-190" y="320" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="UVB9V13-9o3WzfM_zq6G-45" style="edgeStyle=elbowEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;elbow=vertical;curved=0;labelBackgroundColor=none;strokeColor=#E07A5F;fontColor=default;fontStyle=1;fontSize=14;" edge="1" parent="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="-525" y="285.75" as="sourcePoint" />
<mxPoint x="-780.7500000000001" y="285.75" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="UVB9V13-9o3WzfM_zq6G-60" style="edgeStyle=elbowEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;elbow=vertical;curved=0;labelBackgroundColor=none;strokeColor=#E07A5F;fontColor=default;fontStyle=1;fontSize=14;" edge="1" parent="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="-265" y="533.0952380952381" as="sourcePoint" />
<mxPoint x="-515" y="533.0952380952381" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="UVB9V13-9o3WzfM_zq6G-62" value="ticket details" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;labelBackgroundColor=none;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="1">
<mxGeometry x="-465" y="508" width="110" height="30" as="geometry" />
</mxCell>
<mxCell id="UVB9V13-9o3WzfM_zq6G-63" value="ticket details" style="html=1;verticalAlign=bottom;endArrow=open;dashed=1;endSize=8;edgeStyle=elbowEdgeStyle;elbow=vertical;curved=0;rounded=0;exitX=1.167;exitY=0.397;exitDx=0;exitDy=0;exitPerimeter=0;labelBackgroundColor=none;strokeColor=#E07A5F;fontColor=default;fontStyle=1;fontSize=14;" edge="1" parent="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="-513.33" y="620.6700000000001" as="sourcePoint" />
<mxPoint x="-265" y="620.4285714285713" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="UVB9V13-9o3WzfM_zq6G-65" style="edgeStyle=elbowEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;elbow=vertical;curved=0;labelBackgroundColor=none;strokeColor=#E07A5F;fontColor=default;fontStyle=1;fontSize=14;" edge="1" parent="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="-255" y="624.4761904761904" as="sourcePoint" />
<mxPoint x="-55" y="624.4761904761904" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="UVB9V13-9o3WzfM_zq6G-70" value="cancel" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;labelBackgroundColor=none;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="1">
<mxGeometry x="-195" y="599" width="70" height="30" as="geometry" />
</mxCell>
<mxCell id="UVB9V13-9o3WzfM_zq6G-71" value="Done" style="html=1;verticalAlign=bottom;endArrow=open;dashed=1;endSize=8;edgeStyle=elbowEdgeStyle;elbow=vertical;curved=0;rounded=0;entryX=1.167;entryY=0.892;entryDx=0;entryDy=0;entryPerimeter=0;labelBackgroundColor=none;strokeColor=#E07A5F;fontColor=default;fontStyle=1;fontSize=14;" edge="1" parent="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="-50.5" y="644" as="sourcePoint" />
<mxPoint x="-253.33000000000004" y="644" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="UVB9V13-9o3WzfM_zq6G-73" value="Canceled" style="html=1;verticalAlign=bottom;endArrow=open;dashed=1;endSize=8;edgeStyle=elbowEdgeStyle;elbow=vertical;curved=0;rounded=0;labelBackgroundColor=none;strokeColor=#E07A5F;fontColor=default;fontStyle=1;fontSize=14;" edge="1" parent="1" target="UVB9V13-9o3WzfM_zq6G-59">
<mxGeometry relative="1" as="geometry">
<mxPoint x="-268" y="654" as="sourcePoint" />
<mxPoint x="-390" y="654" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="UVB9V13-9o3WzfM_zq6G-81" value="Validate" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;labelBackgroundColor=none;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="1">
<mxGeometry x="-515" y="800" width="80" height="30" as="geometry" />
</mxCell>
<mxCell id="UVB9V13-9o3WzfM_zq6G-90" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;labelBackgroundColor=none;strokeColor=#E07A5F;fontColor=default;fontStyle=1;fontSize=14;" edge="1" parent="1" source="UVB9V13-9o3WzfM_zq6G-84">
<mxGeometry relative="1" as="geometry">
<mxPoint x="-515" y="916" as="targetPoint" />
<Array as="points">
<mxPoint x="-414" y="916" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="UVB9V13-9o3WzfM_zq6G-84" value="" style="strokeWidth=2;html=1;shape=mxgraph.flowchart.decision;whiteSpace=wrap;labelBackgroundColor=none;fillColor=#F2CC8F;strokeColor=#E07A5F;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="1">
<mxGeometry x="-449" y="846" width="70" height="60" as="geometry" />
</mxCell>
<mxCell id="UVB9V13-9o3WzfM_zq6G-79" style="edgeStyle=elbowEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;elbow=vertical;curved=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;entryPerimeter=0;labelBackgroundColor=none;strokeColor=#E07A5F;fontColor=default;fontStyle=1;fontSize=14;" edge="1" parent="1" source="UVB9V13-9o3WzfM_zq6G-77" target="UVB9V13-9o3WzfM_zq6G-84">
<mxGeometry relative="1" as="geometry">
<mxPoint x="-515" y="776" as="sourcePoint" />
<Array as="points">
<mxPoint x="-440" y="830" />
<mxPoint x="-460" y="776" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="UVB9V13-9o3WzfM_zq6G-88" value="Error" style="html=1;verticalAlign=bottom;endArrow=open;dashed=1;endSize=8;edgeStyle=elbowEdgeStyle;elbow=vertical;curved=0;rounded=0;exitX=0;exitY=0.5;exitDx=0;exitDy=0;exitPerimeter=0;labelBackgroundColor=none;strokeColor=#E07A5F;fontColor=default;fontStyle=1;fontSize=14;" edge="1" parent="1" source="UVB9V13-9o3WzfM_zq6G-84">
<mxGeometry relative="1" as="geometry">
<mxPoint x="-550" y="916" as="sourcePoint" />
<mxPoint x="-515" y="876" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="UVB9V13-9o3WzfM_zq6G-91" value="Get payment" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;labelBackgroundColor=none;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="1">
<mxGeometry x="-525" y="894" width="110" height="30" as="geometry" />
</mxCell>
<mxCell id="UVB9V13-9o3WzfM_zq6G-97" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;labelBackgroundColor=none;strokeColor=#E07A5F;fontColor=default;fontStyle=1;fontSize=14;" edge="1" parent="1" source="UVB9V13-9o3WzfM_zq6G-93">
<mxGeometry relative="1" as="geometry">
<mxPoint x="-60" y="1033" as="targetPoint" />
<Array as="points">
<mxPoint x="-222" y="1026" />
<mxPoint x="-222" y="1033" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="UVB9V13-9o3WzfM_zq6G-93" value="" style="strokeWidth=2;html=1;shape=mxgraph.flowchart.decision;whiteSpace=wrap;labelBackgroundColor=none;fillColor=#F2CC8F;strokeColor=#E07A5F;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="1">
<mxGeometry x="-460" y="996" width="70" height="60" as="geometry" />
</mxCell>
<mxCell id="UVB9V13-9o3WzfM_zq6G-92" style="edgeStyle=elbowEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;elbow=vertical;curved=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;entryPerimeter=0;labelBackgroundColor=none;strokeColor=#E07A5F;fontColor=default;fontStyle=1;fontSize=14;" edge="1" parent="1" target="UVB9V13-9o3WzfM_zq6G-93">
<mxGeometry relative="1" as="geometry">
<mxPoint x="-515" y="970" as="sourcePoint" />
<Array as="points">
<mxPoint x="-460" y="970" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="UVB9V13-9o3WzfM_zq6G-94" value="Validate" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;labelBackgroundColor=none;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="1">
<mxGeometry x="-520" y="944" width="80" height="30" as="geometry" />
</mxCell>
<mxCell id="UVB9V13-9o3WzfM_zq6G-95" value="Error" style="html=1;verticalAlign=bottom;endArrow=open;dashed=1;endSize=8;edgeStyle=elbowEdgeStyle;elbow=vertical;curved=0;rounded=0;exitX=0;exitY=0.5;exitDx=0;exitDy=0;exitPerimeter=0;labelBackgroundColor=none;strokeColor=#E07A5F;fontColor=default;fontStyle=1;fontSize=14;" edge="1" parent="1" source="UVB9V13-9o3WzfM_zq6G-93">
<mxGeometry relative="1" as="geometry">
<mxPoint x="-540" y="1066" as="sourcePoint" />
<mxPoint x="-520" y="1026" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="UVB9V13-9o3WzfM_zq6G-98" value="Save" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;labelBackgroundColor=none;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="1">
<mxGeometry x="-355" y="996" width="60" height="30" as="geometry" />
</mxCell>
<mxCell id="UVB9V13-9o3WzfM_zq6G-105" value="Ticked booked" style="html=1;verticalAlign=bottom;endArrow=open;dashed=1;endSize=8;edgeStyle=elbowEdgeStyle;elbow=vertical;curved=0;rounded=0;labelBackgroundColor=none;strokeColor=#E07A5F;fontColor=default;fontStyle=1;fontSize=14;" edge="1" parent="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="-53.5" y="1107.26" as="sourcePoint" />
<mxPoint x="-520" y="1107.5" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="UVB9V13-9o3WzfM_zq6G-110" value="Error" style="html=1;verticalAlign=bottom;endArrow=open;dashed=1;endSize=8;edgeStyle=elbowEdgeStyle;elbow=vertical;curved=0;rounded=0;exitX=0;exitY=0.5;exitDx=0;exitDy=0;exitPerimeter=0;labelBackgroundColor=none;strokeColor=#E07A5F;fontColor=default;fontStyle=1;fontSize=14;" edge="1" parent="1" target="UVB9V13-9o3WzfM_zq6G-25">
<mxGeometry relative="1" as="geometry">
<mxPoint x="-524" y="870.66" as="sourcePoint" />
<mxPoint x="-599" y="870.7272727272725" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="UVB9V13-9o3WzfM_zq6G-111" style="edgeStyle=elbowEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;elbow=vertical;curved=0;labelBackgroundColor=none;strokeColor=#E07A5F;fontColor=default;fontStyle=1;fontSize=14;" edge="1" parent="1" target="NCziRpMPAXeyxiaALWxQ-15">
<mxGeometry relative="1" as="geometry">
<mxPoint x="-525" y="912.0000000000002" as="sourcePoint" />
<mxPoint x="-599" y="912.0000000000002" as="targetPoint" />
<Array as="points">
<mxPoint x="-590" y="912" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="UVB9V13-9o3WzfM_zq6G-112" value="request pay" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;labelBackgroundColor=none;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="1">
<mxGeometry x="-665" y="890" width="100" height="30" as="geometry" />
</mxCell>
<mxCell id="UVB9V13-9o3WzfM_zq6G-114" value="Error" style="html=1;verticalAlign=bottom;endArrow=open;dashed=1;endSize=8;edgeStyle=elbowEdgeStyle;elbow=vertical;curved=0;rounded=0;exitX=0;exitY=0.5;exitDx=0;exitDy=0;exitPerimeter=0;labelBackgroundColor=none;strokeColor=#E07A5F;fontColor=default;fontStyle=1;fontSize=14;" edge="1" parent="1" target="NCziRpMPAXeyxiaALWxQ-15">
<mxGeometry relative="1" as="geometry">
<mxPoint x="-524" y="1018" as="sourcePoint" />
<mxPoint x="-609" y="1017.787878787879" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="UVB9V13-9o3WzfM_zq6G-117" value="Ticket booked" style="html=1;verticalAlign=bottom;endArrow=open;dashed=1;endSize=8;edgeStyle=elbowEdgeStyle;elbow=vertical;curved=0;rounded=0;labelBackgroundColor=none;strokeColor=#E07A5F;fontColor=default;fontStyle=1;fontSize=14;" edge="1" parent="1" target="NCziRpMPAXeyxiaALWxQ-15">
<mxGeometry x="-0.3133" y="-20" relative="1" as="geometry">
<mxPoint x="-520.5" y="1116" as="sourcePoint" />
<mxPoint x="-614" y="1066" as="targetPoint" />
<Array as="points">
<mxPoint x="-550" y="1116" />
</Array>
<mxPoint as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="UVB9V13-9o3WzfM_zq6G-120" value="New ticket was booked" style="html=1;verticalAlign=bottom;endArrow=block;edgeStyle=elbowEdgeStyle;elbow=vertical;curved=0;rounded=0;entryX=-0.1;entryY=0.353;entryDx=0;entryDy=0;entryPerimeter=0;labelBackgroundColor=none;strokeColor=#E07A5F;fontColor=default;fontStyle=1;fontSize=14;" edge="1" parent="1" target="UVB9V13-9o3WzfM_zq6G-106">
<mxGeometry width="80" relative="1" as="geometry">
<mxPoint x="-515" y="1166" as="sourcePoint" />
<mxPoint x="-360" y="1166" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="UVB9V13-9o3WzfM_zq6G-125" value="Payment info" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;labelBackgroundColor=none;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="1">
<mxGeometry x="-629" y="936" width="110" height="30" as="geometry" />
</mxCell>
<mxCell id="UVB9V13-9o3WzfM_zq6G-139" value="Ticket printed" style="html=1;verticalAlign=bottom;endArrow=open;dashed=1;endSize=8;edgeStyle=elbowEdgeStyle;elbow=vertical;curved=0;rounded=0;labelBackgroundColor=none;strokeColor=#E07A5F;fontColor=default;fontStyle=1;fontSize=14;" edge="1" parent="1" target="NCziRpMPAXeyxiaALWxQ-15">
<mxGeometry relative="1" as="geometry">
<mxPoint x="-524" y="1180" as="sourcePoint" />
<mxPoint x="-639.9999999999999" y="1261" as="targetPoint" />
<Array as="points">
<mxPoint x="-640" y="1180" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="UVB9V13-9o3WzfM_zq6G-146" value="search" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;labelBackgroundColor=none;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="1">
<mxGeometry x="-665" y="1336" width="70" height="30" as="geometry" />
</mxCell>
<mxCell id="UVB9V13-9o3WzfM_zq6G-149" style="edgeStyle=elbowEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;elbow=vertical;curved=0;labelBackgroundColor=none;strokeColor=#E07A5F;fontColor=default;fontStyle=1;fontSize=14;" edge="1" parent="1" source="UVB9V13-9o3WzfM_zq6G-145">
<mxGeometry relative="1" as="geometry">
<mxPoint x="-50.5" y="1378.5" as="targetPoint" />
<Array as="points">
<mxPoint x="-60" y="1379" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="UVB9V13-9o3WzfM_zq6G-150" value="search" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;labelBackgroundColor=none;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="1">
<mxGeometry x="-355" y="1354" width="70" height="30" as="geometry" />
</mxCell>
<mxCell id="UVB9V13-9o3WzfM_zq6G-151" value="return Not founds" style="html=1;verticalAlign=bottom;endArrow=open;dashed=1;endSize=8;edgeStyle=elbowEdgeStyle;elbow=vertical;curved=0;rounded=0;labelBackgroundColor=none;strokeColor=#E07A5F;fontColor=default;fontStyle=1;fontSize=14;" edge="1" parent="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="-55" y="1403.5348837209303" as="sourcePoint" />
<mxPoint x="-519.7325581395348" y="1403.5348837209303" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="NCziRpMPAXeyxiaALWxQ-1" value="Welcome" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;labelBackgroundColor=none;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="1">
<mxGeometry x="-740" y="264" width="80" height="30" as="geometry" />
</mxCell>
<mxCell id="NCziRpMPAXeyxiaALWxQ-3" style="edgeStyle=elbowEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;elbow=vertical;curved=0;labelBackgroundColor=none;strokeColor=#E07A5F;fontColor=default;fontStyle=1;fontSize=14;" edge="1" parent="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="-775" y="444" as="sourcePoint" />
<mxPoint x="-520.5" y="444" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="NCziRpMPAXeyxiaALWxQ-4" value="Cancel ticket" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;labelBackgroundColor=none;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="1">
<mxGeometry x="-725" y="418" width="110" height="30" as="geometry" />
</mxCell>
<mxCell id="NCziRpMPAXeyxiaALWxQ-5" style="edgeStyle=elbowEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;elbow=vertical;curved=0;labelBackgroundColor=none;strokeColor=#E07A5F;fontColor=default;fontStyle=1;fontSize=14;" edge="1" parent="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="-515" y="456.0512820512821" as="sourcePoint" />
<mxPoint x="-260.5" y="456.0512820512821" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="NCziRpMPAXeyxiaALWxQ-6" value="Cancel ticket" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;labelBackgroundColor=none;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="1">
<mxGeometry x="-440" y="430" width="110" height="30" as="geometry" />
</mxCell>
<mxCell id="NCziRpMPAXeyxiaALWxQ-7" style="edgeStyle=elbowEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;elbow=vertical;curved=0;labelBackgroundColor=none;strokeColor=#E07A5F;fontColor=default;fontStyle=1;fontSize=14;" edge="1" parent="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="-515" y="556.1764705882354" as="sourcePoint" />
<mxPoint x="-55" y="556.1764705882354" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="NCziRpMPAXeyxiaALWxQ-8" value="get tecket details" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;labelBackgroundColor=none;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="1">
<mxGeometry x="-490" y="534" width="140" height="30" as="geometry" />
</mxCell>
<mxCell id="NCziRpMPAXeyxiaALWxQ-10" value="Return teckit deails" style="html=1;verticalAlign=bottom;endArrow=open;dashed=1;endSize=8;edgeStyle=elbowEdgeStyle;elbow=vertical;curved=0;rounded=0;entryX=1.167;entryY=0.892;entryDx=0;entryDy=0;entryPerimeter=0;labelBackgroundColor=none;strokeColor=#E07A5F;fontColor=default;fontStyle=1;fontSize=14;" edge="1" parent="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="-58.5" y="580.18" as="sourcePoint" />
<mxPoint x="-261.5" y="580.18" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="NCziRpMPAXeyxiaALWxQ-11" value="Return teckit deails" style="html=1;verticalAlign=bottom;endArrow=open;dashed=1;endSize=8;edgeStyle=elbowEdgeStyle;elbow=vertical;curved=0;rounded=0;labelBackgroundColor=none;strokeColor=#E07A5F;fontColor=default;fontStyle=1;fontSize=14;" edge="1" parent="1" target="UVB9V13-9o3WzfM_zq6G-59">
<mxGeometry relative="1" as="geometry">
<mxPoint x="-267" y="580.18" as="sourcePoint" />
<mxPoint x="-470" y="580.18" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="NCziRpMPAXeyxiaALWxQ-12" style="edgeStyle=elbowEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;elbow=vertical;curved=0;labelBackgroundColor=none;strokeColor=#E07A5F;fontColor=default;fontStyle=1;fontSize=14;" edge="1" parent="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="-515" y="600" as="sourcePoint" />
<mxPoint x="-265" y="600" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="NCziRpMPAXeyxiaALWxQ-13" value="display ticket details" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;labelBackgroundColor=none;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="1">
<mxGeometry x="-500" y="578" width="160" height="30" as="geometry" />
</mxCell>
<mxCell id="NCziRpMPAXeyxiaALWxQ-14" value="Canceled" style="html=1;verticalAlign=bottom;endArrow=open;dashed=1;endSize=8;edgeStyle=elbowEdgeStyle;elbow=vertical;curved=0;rounded=0;labelBackgroundColor=none;strokeColor=#E07A5F;fontColor=default;fontStyle=1;fontSize=14;" edge="1" parent="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="-524.5" y="660" as="sourcePoint" />
<mxPoint x="-771.5" y="660" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="NCziRpMPAXeyxiaALWxQ-16" style="edgeStyle=elbowEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;elbow=vertical;curved=0;labelBackgroundColor=none;strokeColor=#E07A5F;fontColor=default;fontStyle=1;fontSize=14;" edge="1" parent="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="-775" y="757.7272727272725" as="sourcePoint" />
<mxPoint x="-530" y="758" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="NCziRpMPAXeyxiaALWxQ-17" value="Buy new Ticket" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;labelBackgroundColor=none;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="1">
<mxGeometry x="-724" y="728" width="130" height="30" as="geometry" />
</mxCell>
<mxCell id="NCziRpMPAXeyxiaALWxQ-18" style="edgeStyle=elbowEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;elbow=vertical;curved=0;entryX=1.066;entryY=0.915;entryDx=0;entryDy=0;entryPerimeter=0;labelBackgroundColor=none;strokeColor=#E07A5F;fontColor=default;fontStyle=1;fontSize=14;" edge="1" parent="1" source="NCziRpMPAXeyxiaALWxQ-15" target="UVB9V13-9o3WzfM_zq6G-125">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="NCziRpMPAXeyxiaALWxQ-19" style="edgeStyle=elbowEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;elbow=vertical;curved=0;labelBackgroundColor=none;strokeColor=#E07A5F;fontColor=default;fontStyle=1;fontSize=14;" edge="1" parent="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="-525" y="790.8181818181818" as="sourcePoint" />
<mxPoint x="-775" y="790.8181818181818" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="NCziRpMPAXeyxiaALWxQ-20" value="Your details" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;labelBackgroundColor=none;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="1">
<mxGeometry x="-720" y="768" width="100" height="30" as="geometry" />
</mxCell>
<mxCell id="NCziRpMPAXeyxiaALWxQ-21" style="edgeStyle=elbowEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;elbow=vertical;curved=0;labelBackgroundColor=none;strokeColor=#E07A5F;fontColor=default;fontStyle=1;fontSize=14;" edge="1" parent="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="-772" y="820.7272727272725" as="sourcePoint" />
<mxPoint x="-527" y="821" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="NCziRpMPAXeyxiaALWxQ-22" value="Passenger details" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;labelBackgroundColor=none;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="1">
<mxGeometry x="-739" y="798" width="140" height="30" as="geometry" />
</mxCell>
<mxCell id="NCziRpMPAXeyxiaALWxQ-24" style="edgeStyle=elbowEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;elbow=vertical;curved=0;labelBackgroundColor=none;strokeColor=#E07A5F;fontColor=default;fontStyle=1;fontSize=14;" edge="1" parent="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="-775" y="1360.3939393939395" as="sourcePoint" />
<mxPoint x="-525" y="1360.3939393939395" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="NCziRpMPAXeyxiaALWxQ-25" value="return Not founds" style="html=1;verticalAlign=bottom;endArrow=open;dashed=1;endSize=8;edgeStyle=elbowEdgeStyle;elbow=vertical;curved=0;rounded=0;labelBackgroundColor=none;strokeColor=#E07A5F;fontColor=default;fontStyle=1;fontSize=14;" edge="1" parent="1">
<mxGeometry x="0.0039" relative="1" as="geometry">
<mxPoint x="-525" y="1407.3939393939395" as="sourcePoint" />
<mxPoint x="-775" y="1407.3939393939395" as="targetPoint" />
<mxPoint as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="6QhaNlByGPTRDQWA0ZCC-1" value="return search result" style="html=1;verticalAlign=bottom;endArrow=open;dashed=1;endSize=8;edgeStyle=elbowEdgeStyle;elbow=vertical;curved=0;rounded=0;labelBackgroundColor=none;strokeColor=#E07A5F;fontColor=default;fontStyle=1;fontSize=14;" edge="1" parent="1" target="UVB9V13-9o3WzfM_zq6G-145">
<mxGeometry relative="1" as="geometry">
<mxPoint x="-60" y="1436" as="sourcePoint" />
<mxPoint x="-509.73255813953483" y="1435.5348837209303" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="6QhaNlByGPTRDQWA0ZCC-2" value="return search result" style="html=1;verticalAlign=bottom;endArrow=open;dashed=1;endSize=8;edgeStyle=elbowEdgeStyle;elbow=vertical;curved=0;rounded=0;labelBackgroundColor=none;strokeColor=#E07A5F;fontColor=default;fontStyle=1;fontSize=14;" edge="1" parent="1">
<mxGeometry x="0.0039" relative="1" as="geometry">
<mxPoint x="-527" y="1440.0039393939394" as="sourcePoint" />
<mxPoint x="-777" y="1440.0039393939394" as="targetPoint" />
<mxPoint as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="NTAL5VPCTlulTYypjxPr-2" value="passenger detials" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;labelBackgroundColor=none;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="1">
<mxGeometry x="-515" y="738" width="140" height="30" as="geometry" />
</mxCell>
</root>
</mxGraphModel>
</diagram>
<diagram id="AJWzo3qSLcxLRiQhgaQ6" name="Activity diagram">
<mxGraphModel dx="1917" dy="1194" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="850" pageHeight="1100" math="0" shadow="0">
<root>
<mxCell id="0" />
<mxCell id="1" parent="0" />
<mxCell id="g4gnko-Co4FaPa45WDqg-23" value="Passenger" style="swimlane;startSize=20;html=1;labelBackgroundColor=none;fillColor=#F2CC8F;strokeColor=#E07A5F;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="1">
<mxGeometry x="320" y="90" width="140" height="1750" as="geometry" />
</mxCell>
<mxCell id="W4y2mxaMIUWNWa6gjKBX-1" value="" style="ellipse;html=1;shape=startState;fillColor=#F2CC8F;strokeColor=#E07A5F;labelBackgroundColor=none;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="g4gnko-Co4FaPa45WDqg-23">
<mxGeometry x="60" y="40" width="30" height="30" as="geometry" />
</mxCell>
<mxCell id="W4y2mxaMIUWNWa6gjKBX-2" value="" style="edgeStyle=orthogonalEdgeStyle;html=1;verticalAlign=bottom;endArrow=open;endSize=8;strokeColor=#E07A5F;rounded=0;labelBackgroundColor=none;fontColor=default;fontStyle=1;fontSize=14;" edge="1" source="W4y2mxaMIUWNWa6gjKBX-1" parent="g4gnko-Co4FaPa45WDqg-23">
<mxGeometry relative="1" as="geometry">
<mxPoint x="75" y="130" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="W4y2mxaMIUWNWa6gjKBX-3" value="Login" style="html=1;align=center;verticalAlign=top;rounded=1;absoluteArcSize=1;arcSize=10;dashed=0;whiteSpace=wrap;labelBackgroundColor=none;fillColor=#F2CC8F;strokeColor=#E07A5F;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="g4gnko-Co4FaPa45WDqg-23">
<mxGeometry x="10" y="130" width="140" height="40" as="geometry" />
</mxCell>
<mxCell id="L_fRRzGcvzCI_XBhDxTG-21" value="" style="shape=line;html=1;strokeWidth=6;strokeColor=#E07A5F;labelBackgroundColor=none;fillColor=#F2CC8F;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="g4gnko-Co4FaPa45WDqg-23">
<mxGeometry x="20" y="1630" width="110" height="10" as="geometry" />
</mxCell>
<mxCell id="L_fRRzGcvzCI_XBhDxTG-22" value="" style="edgeStyle=orthogonalEdgeStyle;html=1;verticalAlign=bottom;endArrow=open;endSize=8;strokeColor=#E07A5F;rounded=0;labelBackgroundColor=none;fontColor=default;fontStyle=1;fontSize=14;" edge="1" source="L_fRRzGcvzCI_XBhDxTG-21" parent="g4gnko-Co4FaPa45WDqg-23">
<mxGeometry relative="1" as="geometry">
<mxPoint x="90" y="1700" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="L_fRRzGcvzCI_XBhDxTG-23" value="" style="ellipse;html=1;shape=endState;fillColor=#F2CC8F;strokeColor=#E07A5F;labelBackgroundColor=none;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="g4gnko-Co4FaPa45WDqg-23">
<mxGeometry x="75" y="1701" width="30" height="30" as="geometry" />
</mxCell>
<mxCell id="m1bzzE6M31Jxh4CbgZfY-18" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;labelBackgroundColor=none;strokeColor=#E07A5F;fontColor=default;fontStyle=1;fontSize=14;" edge="1" parent="g4gnko-Co4FaPa45WDqg-23" source="m1bzzE6M31Jxh4CbgZfY-17" target="L_fRRzGcvzCI_XBhDxTG-21">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="m1bzzE6M31Jxh4CbgZfY-17" value="E" style="ellipse;html=1;labelBackgroundColor=none;fillColor=#F2CC8F;strokeColor=#E07A5F;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="g4gnko-Co4FaPa45WDqg-23">
<mxGeometry x="60" y="1560" width="30" height="30" as="geometry" />
</mxCell>
<mxCell id="g4gnko-Co4FaPa45WDqg-24" value="TrainWay Reservation System" style="swimlane;startSize=20;html=1;labelBackgroundColor=none;fillColor=#F2CC8F;strokeColor=#E07A5F;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="1">
<mxGeometry x="460" y="90" width="610" height="1750" as="geometry" />
</mxCell>
<mxCell id="L_fRRzGcvzCI_XBhDxTG-10" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;labelBackgroundColor=none;strokeColor=#E07A5F;fontColor=default;fontStyle=1;fontSize=14;" edge="1" parent="g4gnko-Co4FaPa45WDqg-24" source="L_fRRzGcvzCI_XBhDxTG-1" target="L_fRRzGcvzCI_XBhDxTG-9">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="L_fRRzGcvzCI_XBhDxTG-1" value="Validate login data" style="whiteSpace=wrap;html=1;verticalAlign=top;rounded=1;arcSize=10;dashed=0;labelBackgroundColor=none;fillColor=#F2CC8F;strokeColor=#E07A5F;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="g4gnko-Co4FaPa45WDqg-24">
<mxGeometry x="203" y="120" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="L_fRRzGcvzCI_XBhDxTG-9" value="" style="rhombus;whiteSpace=wrap;html=1;verticalAlign=top;rounded=1;arcSize=10;dashed=0;labelBackgroundColor=none;fillColor=#F2CC8F;strokeColor=#E07A5F;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="g4gnko-Co4FaPa45WDqg-24">
<mxGeometry x="223" y="250" width="80" height="80" as="geometry" />
</mxCell>
<mxCell id="L_fRRzGcvzCI_XBhDxTG-30" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.5;entryY=0;entryDx=0;entryDy=0;labelBackgroundColor=none;strokeColor=#E07A5F;fontColor=default;fontStyle=1;fontSize=14;" edge="1" parent="g4gnko-Co4FaPa45WDqg-24" source="L_fRRzGcvzCI_XBhDxTG-28" target="L_fRRzGcvzCI_XBhDxTG-29">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="L_fRRzGcvzCI_XBhDxTG-28" value="Check login details" style="whiteSpace=wrap;html=1;verticalAlign=top;rounded=1;arcSize=10;dashed=0;labelBackgroundColor=none;fillColor=#F2CC8F;strokeColor=#E07A5F;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="g4gnko-Co4FaPa45WDqg-24">
<mxGeometry x="203" y="380" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="L_fRRzGcvzCI_XBhDxTG-35" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.433;entryY=0.225;entryDx=0;entryDy=0;entryPerimeter=0;labelBackgroundColor=none;strokeColor=#E07A5F;fontColor=default;fontStyle=1;fontSize=14;" edge="1" parent="g4gnko-Co4FaPa45WDqg-24" source="L_fRRzGcvzCI_XBhDxTG-29" target="L_fRRzGcvzCI_XBhDxTG-33">
<mxGeometry relative="1" as="geometry">
<mxPoint x="263" y="650" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="L_fRRzGcvzCI_XBhDxTG-29" value="" style="rhombus;whiteSpace=wrap;html=1;verticalAlign=top;rounded=1;arcSize=10;dashed=0;labelBackgroundColor=none;fillColor=#F2CC8F;strokeColor=#E07A5F;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="g4gnko-Co4FaPa45WDqg-24">
<mxGeometry x="223" y="510" width="80" height="80" as="geometry" />
</mxCell>
<mxCell id="m1bzzE6M31Jxh4CbgZfY-4" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.59;entryY=-0.05;entryDx=0;entryDy=0;entryPerimeter=0;labelBackgroundColor=none;strokeColor=#E07A5F;fontColor=default;fontStyle=1;fontSize=14;" edge="1" parent="g4gnko-Co4FaPa45WDqg-24" source="L_fRRzGcvzCI_XBhDxTG-33" target="L_fRRzGcvzCI_XBhDxTG-38">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="294" y="690" />
<mxPoint x="294" y="690" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="m1bzzE6M31Jxh4CbgZfY-5" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.5;entryY=0;entryDx=0;entryDy=0;labelBackgroundColor=none;strokeColor=#E07A5F;fontColor=default;fontStyle=1;fontSize=14;" edge="1" parent="g4gnko-Co4FaPa45WDqg-24" source="L_fRRzGcvzCI_XBhDxTG-33" target="L_fRRzGcvzCI_XBhDxTG-37">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="80" y="680" />
<mxPoint x="80" y="680" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="m1bzzE6M31Jxh4CbgZfY-6" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.583;entryY=-0.05;entryDx=0;entryDy=0;entryPerimeter=0;labelBackgroundColor=none;strokeColor=#E07A5F;fontColor=default;fontStyle=1;fontSize=14;" edge="1" parent="g4gnko-Co4FaPa45WDqg-24" source="L_fRRzGcvzCI_XBhDxTG-33" target="m1bzzE6M31Jxh4CbgZfY-1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="530" y="680" />
<mxPoint x="530" y="680" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="L_fRRzGcvzCI_XBhDxTG-33" value="" style="shape=line;html=1;strokeWidth=6;strokeColor=#E07A5F;labelBackgroundColor=none;fillColor=#F2CC8F;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="g4gnko-Co4FaPa45WDqg-24">
<mxGeometry x="12" y="660" width="580" height="10" as="geometry" />
</mxCell>
<mxCell id="L_fRRzGcvzCI_XBhDxTG-32" value="No" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;labelBackgroundColor=none;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="g4gnko-Co4FaPa45WDqg-24">
<mxGeometry x="183" y="520" width="40" height="30" as="geometry" />
</mxCell>
<mxCell id="L_fRRzGcvzCI_XBhDxTG-36" value="Yes" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;labelBackgroundColor=none;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="g4gnko-Co4FaPa45WDqg-24">
<mxGeometry x="268" y="580" width="50" height="30" as="geometry" />
</mxCell>
<mxCell id="euI5j8xtJJFKn1b4D04u-5" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.5;entryY=0;entryDx=0;entryDy=0;labelBackgroundColor=none;strokeColor=#E07A5F;fontColor=default;fontStyle=1;fontSize=14;" edge="1" parent="g4gnko-Co4FaPa45WDqg-24" source="L_fRRzGcvzCI_XBhDxTG-37" target="euI5j8xtJJFKn1b4D04u-4">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="L_fRRzGcvzCI_XBhDxTG-37" value="Search" style="whiteSpace=wrap;html=1;verticalAlign=top;rounded=1;arcSize=10;dashed=0;labelBackgroundColor=none;fillColor=#F2CC8F;strokeColor=#E07A5F;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="g4gnko-Co4FaPa45WDqg-24">
<mxGeometry x="20" y="720" width="120" height="40" as="geometry" />
</mxCell>
<mxCell id="L_fRRzGcvzCI_XBhDxTG-25" value="No" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;labelBackgroundColor=none;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="g4gnko-Co4FaPa45WDqg-24">
<mxGeometry x="183" y="258" width="40" height="30" as="geometry" />
</mxCell>
<mxCell id="L_fRRzGcvzCI_XBhDxTG-18" value="Yes" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;labelBackgroundColor=none;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="g4gnko-Co4FaPa45WDqg-24">
<mxGeometry x="298" y="258" width="50" height="30" as="geometry" />
</mxCell>
<mxCell id="GlZY_iN5eetYaZrNtz0a-2" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;labelBackgroundColor=none;strokeColor=#E07A5F;fontColor=default;fontStyle=1;fontSize=14;" edge="1" parent="g4gnko-Co4FaPa45WDqg-24" source="L_fRRzGcvzCI_XBhDxTG-38" target="GlZY_iN5eetYaZrNtz0a-1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="L_fRRzGcvzCI_XBhDxTG-38" value="Buy ticket" style="whiteSpace=wrap;html=1;verticalAlign=top;rounded=1;arcSize=10;dashed=0;labelBackgroundColor=none;fillColor=#F2CC8F;strokeColor=#E07A5F;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="g4gnko-Co4FaPa45WDqg-24">
<mxGeometry x="223" y="725" width="120" height="30" as="geometry" />
</mxCell>
<mxCell id="m1bzzE6M31Jxh4CbgZfY-7" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;labelBackgroundColor=none;strokeColor=#E07A5F;fontColor=default;fontStyle=1;fontSize=14;" edge="1" parent="g4gnko-Co4FaPa45WDqg-24" source="m1bzzE6M31Jxh4CbgZfY-1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="710" y="780" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="m1bzzE6M31Jxh4CbgZfY-1" value="Cancel ticket" style="whiteSpace=wrap;html=1;verticalAlign=top;rounded=1;arcSize=10;dashed=0;labelBackgroundColor=none;fillColor=#F2CC8F;strokeColor=#E07A5F;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="g4gnko-Co4FaPa45WDqg-24">
<mxGeometry x="460" y="730" width="120" height="30" as="geometry" />
</mxCell>
<mxCell id="GlZY_iN5eetYaZrNtz0a-4" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;labelBackgroundColor=none;strokeColor=#E07A5F;fontColor=default;fontStyle=1;fontSize=14;" edge="1" parent="g4gnko-Co4FaPa45WDqg-24" source="GlZY_iN5eetYaZrNtz0a-1" target="GlZY_iN5eetYaZrNtz0a-3">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="GlZY_iN5eetYaZrNtz0a-1" value="Passenger <br style="font-size: 14px;">details" style="whiteSpace=wrap;html=1;verticalAlign=top;rounded=1;arcSize=10;dashed=0;labelBackgroundColor=none;fillColor=#F2CC8F;strokeColor=#E07A5F;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="g4gnko-Co4FaPa45WDqg-24">
<mxGeometry x="223" y="820" width="120" height="40" as="geometry" />
</mxCell>
<mxCell id="JOegsHltFuqWPLRJ35Om-3" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;labelBackgroundColor=none;strokeColor=#E07A5F;fontColor=default;fontStyle=1;fontSize=14;" edge="1" parent="g4gnko-Co4FaPa45WDqg-24" source="GlZY_iN5eetYaZrNtz0a-3">
<mxGeometry relative="1" as="geometry">
<mxPoint x="331.0000000000001" y="950" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="GlZY_iN5eetYaZrNtz0a-3" value="<br style="font-size: 14px;"><br style="font-size: 14px;">Validate" style="rhombus;whiteSpace=wrap;html=1;verticalAlign=top;rounded=1;arcSize=10;dashed=0;labelBackgroundColor=none;fillColor=#F2CC8F;strokeColor=#E07A5F;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="g4gnko-Co4FaPa45WDqg-24">
<mxGeometry x="384" y="910" width="80" height="80" as="geometry" />
</mxCell>
<mxCell id="JOegsHltFuqWPLRJ35Om-4" value="E" style="ellipse;html=1;labelBackgroundColor=none;fillColor=#F2CC8F;strokeColor=#E07A5F;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="g4gnko-Co4FaPa45WDqg-24">
<mxGeometry x="300" y="935" width="30" height="30" as="geometry" />
</mxCell>
<mxCell id="Ex9vSrnE6W1h8O5Pbpo7-1" value="<br style="font-size: 14px;"><br style="font-size: 14px;">Validate" style="rhombus;whiteSpace=wrap;html=1;verticalAlign=top;rounded=1;arcSize=10;dashed=0;labelBackgroundColor=none;fillColor=#F2CC8F;strokeColor=#E07A5F;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="g4gnko-Co4FaPa45WDqg-24">
<mxGeometry x="386" y="1190" width="80" height="80" as="geometry" />
</mxCell>
<mxCell id="Ex9vSrnE6W1h8O5Pbpo7-3" value="E" style="ellipse;html=1;labelBackgroundColor=none;fillColor=#F2CC8F;strokeColor=#E07A5F;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="g4gnko-Co4FaPa45WDqg-24">
<mxGeometry x="312" y="1215" width="30" height="30" as="geometry" />
</mxCell>
<mxCell id="Ex9vSrnE6W1h8O5Pbpo7-4" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=1;entryY=0.5;entryDx=0;entryDy=0;exitX=0;exitY=0.5;exitDx=0;exitDy=0;labelBackgroundColor=none;strokeColor=#E07A5F;fontColor=default;fontStyle=1;fontSize=14;" edge="1" parent="g4gnko-Co4FaPa45WDqg-24" source="Ex9vSrnE6W1h8O5Pbpo7-1" target="Ex9vSrnE6W1h8O5Pbpo7-3">
<mxGeometry relative="1" as="geometry">
<mxPoint x="343.0000000000001" y="1020" as="targetPoint" />
<mxPoint x="396" y="1020" as="sourcePoint" />
</mxGeometry>
</mxCell>
<mxCell id="Ex9vSrnE6W1h8O5Pbpo7-5" value="No" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;labelBackgroundColor=none;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="g4gnko-Co4FaPa45WDqg-24">
<mxGeometry x="346" y="1200" width="40" height="30" as="geometry" />
</mxCell>
<mxCell id="Ex9vSrnE6W1h8O5Pbpo7-6" value="Yes" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;labelBackgroundColor=none;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="g4gnko-Co4FaPa45WDqg-24">
<mxGeometry x="461" y="1200" width="50" height="30" as="geometry" />
</mxCell>
<mxCell id="JOegsHltFuqWPLRJ35Om-9" value="Yes" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;labelBackgroundColor=none;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="g4gnko-Co4FaPa45WDqg-24">
<mxGeometry x="425" y="980" width="50" height="30" as="geometry" />
</mxCell>
<mxCell id="QAlDRFQqdF8g3paT3rgb-6" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.5;entryY=0;entryDx=0;entryDy=0;labelBackgroundColor=none;strokeColor=#E07A5F;fontColor=default;fontStyle=1;fontSize=14;" edge="1" parent="g4gnko-Co4FaPa45WDqg-24" source="QAlDRFQqdF8g3paT3rgb-5" target="Ex9vSrnE6W1h8O5Pbpo7-1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="QAlDRFQqdF8g3paT3rgb-5" value="Payment&nbsp;<br style="font-size: 14px;">details" style="whiteSpace=wrap;html=1;verticalAlign=top;rounded=1;arcSize=10;dashed=0;labelBackgroundColor=none;fillColor=#F2CC8F;strokeColor=#E07A5F;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="g4gnko-Co4FaPa45WDqg-24">
<mxGeometry x="364" y="1100" width="120" height="40" as="geometry" />
</mxCell>
<mxCell id="euI5j8xtJJFKn1b4D04u-1" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;labelBackgroundColor=none;strokeColor=#E07A5F;fontColor=default;fontStyle=1;fontSize=14;" edge="1" parent="g4gnko-Co4FaPa45WDqg-24" source="QAlDRFQqdF8g3paT3rgb-8">
<mxGeometry relative="1" as="geometry">
<mxPoint x="434" y="1400" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="QAlDRFQqdF8g3paT3rgb-8" value="Ticket booked" style="whiteSpace=wrap;html=1;verticalAlign=top;rounded=1;arcSize=10;dashed=0;labelBackgroundColor=none;fillColor=#F2CC8F;strokeColor=#E07A5F;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="g4gnko-Co4FaPa45WDqg-24">
<mxGeometry x="374" y="1340" width="120" height="30" as="geometry" />
</mxCell>
<mxCell id="euI5j8xtJJFKn1b4D04u-2" value="E" style="ellipse;html=1;labelBackgroundColor=none;fillColor=#F2CC8F;strokeColor=#E07A5F;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="g4gnko-Co4FaPa45WDqg-24">
<mxGeometry x="419" y="1400" width="30" height="30" as="geometry" />
</mxCell>
<mxCell id="euI5j8xtJJFKn1b4D04u-7" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;labelBackgroundColor=none;strokeColor=#E07A5F;fontColor=default;fontStyle=1;fontSize=14;" edge="1" parent="g4gnko-Co4FaPa45WDqg-24" source="euI5j8xtJJFKn1b4D04u-4" target="euI5j8xtJJFKn1b4D04u-6">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="euI5j8xtJJFKn1b4D04u-4" value="Search data" style="whiteSpace=wrap;html=1;verticalAlign=top;rounded=1;arcSize=10;dashed=0;labelBackgroundColor=none;fillColor=#F2CC8F;strokeColor=#E07A5F;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="g4gnko-Co4FaPa45WDqg-24">
<mxGeometry x="20" y="810" width="120" height="40" as="geometry" />
</mxCell>
<mxCell id="euI5j8xtJJFKn1b4D04u-6" value="<br style="font-size: 14px;"><br style="font-size: 14px;">Validate" style="rhombus;whiteSpace=wrap;html=1;verticalAlign=top;rounded=1;arcSize=10;dashed=0;labelBackgroundColor=none;fillColor=#F2CC8F;strokeColor=#E07A5F;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="g4gnko-Co4FaPa45WDqg-24">
<mxGeometry x="40" y="910" width="80" height="80" as="geometry" />
</mxCell>
<mxCell id="ALbY-0xQJfPk0j1Rk5Ds-11" value="Yes" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;labelBackgroundColor=none;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="g4gnko-Co4FaPa45WDqg-24">
<mxGeometry x="75" y="980" width="50" height="30" as="geometry" />
</mxCell>
<mxCell id="ALbY-0xQJfPk0j1Rk5Ds-15" value="Display searched data" style="whiteSpace=wrap;html=1;verticalAlign=top;rounded=1;arcSize=10;dashed=0;labelBackgroundColor=none;fillColor=#F2CC8F;strokeColor=#E07A5F;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="g4gnko-Co4FaPa45WDqg-24">
<mxGeometry x="100" y="1600" width="120" height="40" as="geometry" />
</mxCell>
<mxCell id="g4gnko-Co4FaPa45WDqg-25" value="Admin" style="swimlane;startSize=20;html=1;labelBackgroundColor=none;fillColor=#F2CC8F;strokeColor=#E07A5F;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="1">
<mxGeometry x="1070" y="90" width="180" height="1750" as="geometry" />
</mxCell>
<mxCell id="m1bzzE6M31Jxh4CbgZfY-8" value="Cancel ticket" style="whiteSpace=wrap;html=1;verticalAlign=top;rounded=1;arcSize=10;dashed=0;labelBackgroundColor=none;fillColor=#F2CC8F;strokeColor=#E07A5F;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="g4gnko-Co4FaPa45WDqg-25">
<mxGeometry x="40" y="780" width="120" height="30" as="geometry" />
</mxCell>
<mxCell id="m1bzzE6M31Jxh4CbgZfY-14" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.5;entryY=0;entryDx=0;entryDy=0;labelBackgroundColor=none;strokeColor=#E07A5F;fontColor=default;fontStyle=1;fontSize=14;" edge="1" parent="g4gnko-Co4FaPa45WDqg-25" source="m1bzzE6M31Jxh4CbgZfY-12" target="m1bzzE6M31Jxh4CbgZfY-16">
<mxGeometry relative="1" as="geometry">
<mxPoint x="90" y="950" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="m1bzzE6M31Jxh4CbgZfY-12" value="Cancel ticket" style="whiteSpace=wrap;html=1;verticalAlign=top;rounded=1;arcSize=10;dashed=0;labelBackgroundColor=none;fillColor=#F2CC8F;strokeColor=#E07A5F;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="g4gnko-Co4FaPa45WDqg-25">
<mxGeometry x="30" y="870" width="120" height="30" as="geometry" />
</mxCell>
<mxCell id="m1bzzE6M31Jxh4CbgZfY-16" value="E" style="ellipse;html=1;labelBackgroundColor=none;fillColor=#F2CC8F;strokeColor=#E07A5F;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="g4gnko-Co4FaPa45WDqg-25">
<mxGeometry x="75" y="960" width="30" height="30" as="geometry" />
</mxCell>
<mxCell id="g4gnko-Co4FaPa45WDqg-26" value="Database" style="swimlane;startSize=20;html=1;labelBackgroundColor=none;fillColor=#F2CC8F;strokeColor=#E07A5F;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="1">
<mxGeometry x="1250" y="90" width="190" height="1750" as="geometry" />
</mxCell>
<mxCell id="L_fRRzGcvzCI_XBhDxTG-16" value="Login details" style="whiteSpace=wrap;html=1;verticalAlign=top;rounded=1;arcSize=10;dashed=0;labelBackgroundColor=none;fillColor=#F2CC8F;strokeColor=#E07A5F;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="g4gnko-Co4FaPa45WDqg-26">
<mxGeometry x="15" y="258" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="m1bzzE6M31Jxh4CbgZfY-11" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;labelBackgroundColor=none;strokeColor=#E07A5F;fontColor=default;fontStyle=1;fontSize=14;" edge="1" parent="g4gnko-Co4FaPa45WDqg-26" source="m1bzzE6M31Jxh4CbgZfY-9">
<mxGeometry relative="1" as="geometry">
<mxPoint x="-90" y="870" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="m1bzzE6M31Jxh4CbgZfY-9" value="Ticket details" style="whiteSpace=wrap;html=1;verticalAlign=top;rounded=1;arcSize=10;dashed=0;labelBackgroundColor=none;fillColor=#F2CC8F;strokeColor=#E07A5F;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="g4gnko-Co4FaPa45WDqg-26">
<mxGeometry x="50" y="820" width="120" height="30" as="geometry" />
</mxCell>
<mxCell id="QAlDRFQqdF8g3paT3rgb-3" value="Save Passenger<br style="border-color: var(--border-color); font-size: 14px;">details" style="whiteSpace=wrap;html=1;verticalAlign=top;rounded=1;arcSize=10;dashed=0;labelBackgroundColor=none;fillColor=#F2CC8F;strokeColor=#E07A5F;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="g4gnko-Co4FaPa45WDqg-26">
<mxGeometry x="40" y="1060" width="120" height="40" as="geometry" />
</mxCell>
<mxCell id="QAlDRFQqdF8g3paT3rgb-7" value="Save Payment&nbsp;<br style="font-size: 14px;">details" style="whiteSpace=wrap;html=1;verticalAlign=top;rounded=1;arcSize=10;dashed=0;labelBackgroundColor=none;fillColor=#F2CC8F;strokeColor=#E07A5F;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="g4gnko-Co4FaPa45WDqg-26">
<mxGeometry x="50" y="1280" width="120" height="40" as="geometry" />
</mxCell>
<mxCell id="ALbY-0xQJfPk0j1Rk5Ds-8" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.5;entryY=0;entryDx=0;entryDy=0;labelBackgroundColor=none;strokeColor=#E07A5F;fontColor=default;fontStyle=1;fontSize=14;" edge="1" parent="g4gnko-Co4FaPa45WDqg-26" source="ALbY-0xQJfPk0j1Rk5Ds-5" target="ALbY-0xQJfPk0j1Rk5Ds-7">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ALbY-0xQJfPk0j1Rk5Ds-5" value="Searched data details" style="whiteSpace=wrap;html=1;verticalAlign=top;rounded=1;arcSize=10;dashed=0;labelBackgroundColor=none;fillColor=#F2CC8F;strokeColor=#E07A5F;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="g4gnko-Co4FaPa45WDqg-26">
<mxGeometry x="35" y="1481" width="120" height="40" as="geometry" />
</mxCell>
<mxCell id="ALbY-0xQJfPk0j1Rk5Ds-9" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;labelBackgroundColor=none;strokeColor=#E07A5F;fontColor=default;fontStyle=1;fontSize=14;" edge="1" parent="g4gnko-Co4FaPa45WDqg-26" source="ALbY-0xQJfPk0j1Rk5Ds-7">
<mxGeometry relative="1" as="geometry">
<mxPoint x="-570" y="1610" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="ALbY-0xQJfPk0j1Rk5Ds-12" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;labelBackgroundColor=none;strokeColor=#E07A5F;fontColor=default;fontStyle=1;fontSize=14;" edge="1" parent="g4gnko-Co4FaPa45WDqg-26" source="ALbY-0xQJfPk0j1Rk5Ds-7">
<mxGeometry relative="1" as="geometry">
<mxPoint x="90" y="1690" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="ALbY-0xQJfPk0j1Rk5Ds-7" value="<br style="font-size: 14px;">Founds" style="rhombus;whiteSpace=wrap;html=1;verticalAlign=top;rounded=1;arcSize=10;dashed=0;labelBackgroundColor=none;fillColor=#F2CC8F;strokeColor=#E07A5F;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="g4gnko-Co4FaPa45WDqg-26">
<mxGeometry x="50" y="1560" width="80" height="80" as="geometry" />
</mxCell>
<mxCell id="ALbY-0xQJfPk0j1Rk5Ds-13" value="E" style="ellipse;html=1;labelBackgroundColor=none;fillColor=#F2CC8F;strokeColor=#E07A5F;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="g4gnko-Co4FaPa45WDqg-26">
<mxGeometry x="75" y="1690" width="30" height="30" as="geometry" />
</mxCell>
<mxCell id="ALbY-0xQJfPk0j1Rk5Ds-14" value="No" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;labelBackgroundColor=none;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="g4gnko-Co4FaPa45WDqg-26">
<mxGeometry x="80" y="1640" width="40" height="30" as="geometry" />
</mxCell>
<mxCell id="L_fRRzGcvzCI_XBhDxTG-2" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;labelBackgroundColor=none;strokeColor=#E07A5F;fontColor=default;fontStyle=1;fontSize=14;" edge="1" parent="1" source="W4y2mxaMIUWNWa6gjKBX-3" target="L_fRRzGcvzCI_XBhDxTG-1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="L_fRRzGcvzCI_XBhDxTG-17" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0;entryY=0.5;entryDx=0;entryDy=0;labelBackgroundColor=none;strokeColor=#E07A5F;fontColor=default;fontStyle=1;fontSize=14;" edge="1" parent="1" source="L_fRRzGcvzCI_XBhDxTG-9" target="L_fRRzGcvzCI_XBhDxTG-16">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="L_fRRzGcvzCI_XBhDxTG-24" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.092;entryY=0.486;entryDx=0;entryDy=0;entryPerimeter=0;labelBackgroundColor=none;strokeColor=#E07A5F;fontColor=default;fontStyle=1;fontSize=14;" edge="1" parent="1" source="L_fRRzGcvzCI_XBhDxTG-9" target="L_fRRzGcvzCI_XBhDxTG-21">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="L_fRRzGcvzCI_XBhDxTG-27" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;labelBackgroundColor=none;strokeColor=#E07A5F;fontColor=default;fontStyle=1;fontSize=14;" edge="1" parent="1" source="L_fRRzGcvzCI_XBhDxTG-16" target="L_fRRzGcvzCI_XBhDxTG-28">
<mxGeometry relative="1" as="geometry">
<mxPoint x="690" y="520" as="targetPoint" />
<Array as="points">
<mxPoint x="1040" y="440" />
<mxPoint x="620" y="440" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="L_fRRzGcvzCI_XBhDxTG-31" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.25;entryY=0.5;entryDx=0;entryDy=0;entryPerimeter=0;labelBackgroundColor=none;strokeColor=#E07A5F;fontColor=default;fontStyle=1;fontSize=14;" edge="1" parent="1" source="L_fRRzGcvzCI_XBhDxTG-29" target="L_fRRzGcvzCI_XBhDxTG-21">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="m1bzzE6M31Jxh4CbgZfY-10" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.5;entryY=0;entryDx=0;entryDy=0;labelBackgroundColor=none;strokeColor=#E07A5F;fontColor=default;fontStyle=1;fontSize=14;" edge="1" parent="1" source="m1bzzE6M31Jxh4CbgZfY-8" target="m1bzzE6M31Jxh4CbgZfY-9">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="JOegsHltFuqWPLRJ35Om-5" value="No" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;labelBackgroundColor=none;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="1">
<mxGeometry x="801" y="1008" width="40" height="30" as="geometry" />
</mxCell>
<mxCell id="JOegsHltFuqWPLRJ35Om-8" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.5;entryY=0;entryDx=0;entryDy=0;labelBackgroundColor=none;strokeColor=#E07A5F;fontColor=default;fontStyle=1;fontSize=14;" edge="1" parent="1" source="GlZY_iN5eetYaZrNtz0a-3" target="QAlDRFQqdF8g3paT3rgb-3">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="884" y="1100" />
<mxPoint x="1350" y="1100" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="QAlDRFQqdF8g3paT3rgb-4" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.5;entryY=0;entryDx=0;entryDy=0;labelBackgroundColor=none;strokeColor=#E07A5F;fontColor=default;fontStyle=1;fontSize=14;" edge="1" parent="1" source="QAlDRFQqdF8g3paT3rgb-3" target="QAlDRFQqdF8g3paT3rgb-5">
<mxGeometry relative="1" as="geometry">
<mxPoint x="736.1538461538462" y="1210" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="Ex9vSrnE6W1h8O5Pbpo7-8" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.5;entryY=0;entryDx=0;entryDy=0;labelBackgroundColor=none;strokeColor=#E07A5F;fontColor=default;fontStyle=1;fontSize=14;" edge="1" parent="1" source="Ex9vSrnE6W1h8O5Pbpo7-1" target="QAlDRFQqdF8g3paT3rgb-7">
<mxGeometry relative="1" as="geometry">
<mxPoint x="1362" y="1360" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="QAlDRFQqdF8g3paT3rgb-9" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.5;entryY=0;entryDx=0;entryDy=0;labelBackgroundColor=none;strokeColor=#E07A5F;fontColor=default;fontStyle=1;fontSize=14;" edge="1" parent="1" source="QAlDRFQqdF8g3paT3rgb-7" target="QAlDRFQqdF8g3paT3rgb-8">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ALbY-0xQJfPk0j1Rk5Ds-2" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.797;entryY=0.246;entryDx=0;entryDy=0;entryPerimeter=0;labelBackgroundColor=none;strokeColor=#E07A5F;fontColor=default;fontStyle=1;fontSize=14;" edge="1" parent="1" source="euI5j8xtJJFKn1b4D04u-6" target="L_fRRzGcvzCI_XBhDxTG-21">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ALbY-0xQJfPk0j1Rk5Ds-3" value="No" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;labelBackgroundColor=none;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="1">
<mxGeometry x="460" y="1018" width="40" height="30" as="geometry" />
</mxCell>
<mxCell id="ALbY-0xQJfPk0j1Rk5Ds-4" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0;entryY=0.75;entryDx=0;entryDy=0;labelBackgroundColor=none;strokeColor=#E07A5F;fontColor=default;fontStyle=1;fontSize=14;" edge="1" parent="1" source="euI5j8xtJJFKn1b4D04u-6" target="ALbY-0xQJfPk0j1Rk5Ds-5">
<mxGeometry relative="1" as="geometry">
<mxPoint x="800" y="1600" as="targetPoint" />
<Array as="points">
<mxPoint x="540" y="1340" />
<mxPoint x="541" y="1340" />
<mxPoint x="541" y="1600" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="ALbY-0xQJfPk0j1Rk5Ds-10" value="Yes" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;labelBackgroundColor=none;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="1">
<mxGeometry x="1255" y="1658" width="50" height="30" as="geometry" />
</mxCell>
<mxCell id="ALbY-0xQJfPk0j1Rk5Ds-16" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=1;entryY=0.5;entryDx=0;entryDy=0;entryPerimeter=0;labelBackgroundColor=none;strokeColor=#E07A5F;fontColor=default;fontStyle=1;fontSize=14;" edge="1" parent="1" source="ALbY-0xQJfPk0j1Rk5Ds-15" target="L_fRRzGcvzCI_XBhDxTG-21">
<mxGeometry relative="1" as="geometry" />
</mxCell>
</root>
</mxGraphModel>
</diagram>
<diagram id="t4cq32wE-b34GxgyzWJ0" name="Use case">
<mxGraphModel dx="1678" dy="1045" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="850" pageHeight="1100" math="0" shadow="0">
<root>
<mxCell id="0" />
<mxCell id="1" parent="0" />
<mxCell id="_leYNJzgnAEkglVIwavl-13" value="" style="html=1;whiteSpace=wrap;labelBackgroundColor=none;fontStyle=1;fontSize=14;" vertex="1" parent="1">
<mxGeometry x="120" y="40" width="970" height="1000" as="geometry" />
</mxCell>
<mxCell id="_leYNJzgnAEkglVIwavl-3" value="Admin" style="shape=umlActor;verticalLabelPosition=bottom;verticalAlign=top;html=1;labelBackgroundColor=none;fillColor=#F2CC8F;strokeColor=#E07A5F;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="1">
<mxGeometry x="1150" y="420" width="30" height="60" as="geometry" />
</mxCell>
<mxCell id="_leYNJzgnAEkglVIwavl-14" value="Login" style="ellipse;whiteSpace=wrap;html=1;labelBackgroundColor=none;fillColor=#F2CC8F;strokeColor=#E07A5F;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="1">
<mxGeometry x="190" y="120" width="140" height="70" as="geometry" />
</mxCell>
<mxCell id="_leYNJzgnAEkglVIwavl-16" value="Display Trains" style="ellipse;whiteSpace=wrap;html=1;labelBackgroundColor=none;fillColor=#F2CC8F;strokeColor=#E07A5F;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="1">
<mxGeometry x="180" y="530" width="140" height="70" as="geometry" />
</mxCell>
<mxCell id="_leYNJzgnAEkglVIwavl-1" value="Actor" style="shape=umlActor;verticalLabelPosition=bottom;verticalAlign=top;html=1;labelBackgroundColor=none;fillColor=#F2CC8F;strokeColor=#E07A5F;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="1">
<mxGeometry x="60" y="490" width="30" height="60" as="geometry" />
</mxCell>
<mxCell id="_leYNJzgnAEkglVIwavl-18" value="Register" style="ellipse;whiteSpace=wrap;html=1;labelBackgroundColor=none;fillColor=#F2CC8F;strokeColor=#E07A5F;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="1">
<mxGeometry x="190" y="740" width="140" height="70" as="geometry" />
</mxCell>
<mxCell id="_leYNJzgnAEkglVIwavl-19" value="Display Available&nbsp;<br style="font-size: 14px;">Seats" style="ellipse;whiteSpace=wrap;html=1;labelBackgroundColor=none;fillColor=#F2CC8F;strokeColor=#E07A5F;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="1">
<mxGeometry x="190" y="630" width="140" height="70" as="geometry" />
</mxCell>
<mxCell id="_leYNJzgnAEkglVIwavl-20" value="Display Stations" style="ellipse;whiteSpace=wrap;html=1;labelBackgroundColor=none;fillColor=#F2CC8F;strokeColor=#E07A5F;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="1">
<mxGeometry x="190" y="440" width="140" height="70" as="geometry" />
</mxCell>
<mxCell id="_leYNJzgnAEkglVIwavl-21" value="Extends" style="endArrow=block;endSize=16;endFill=0;html=1;rounded=0;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryX=0.571;entryY=1;entryDx=0;entryDy=0;entryPerimeter=0;labelBackgroundColor=none;strokeColor=#E07A5F;fontColor=default;fontStyle=1;fontSize=14;" edge="1" parent="1" source="_leYNJzgnAEkglVIwavl-22" target="_leYNJzgnAEkglVIwavl-14">
<mxGeometry width="160" relative="1" as="geometry">
<mxPoint x="360" y="280" as="sourcePoint" />
<mxPoint x="520" y="280" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="_leYNJzgnAEkglVIwavl-22" value="Faild" style="ellipse;whiteSpace=wrap;html=1;labelBackgroundColor=none;fillColor=#F2CC8F;strokeColor=#E07A5F;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="1">
<mxGeometry x="425" y="150" width="140" height="70" as="geometry" />
</mxCell>
<mxCell id="_leYNJzgnAEkglVIwavl-23" value="Include" style="endArrow=block;endSize=16;endFill=0;html=1;rounded=0;exitX=0.994;exitY=0.234;exitDx=0;exitDy=0;exitPerimeter=0;labelBackgroundColor=none;strokeColor=#E07A5F;fontColor=default;fontStyle=1;fontSize=14;" edge="1" parent="1" source="_leYNJzgnAEkglVIwavl-14">
<mxGeometry width="160" relative="1" as="geometry">
<mxPoint x="290" y="110" as="sourcePoint" />
<mxPoint x="450" y="110" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="_leYNJzgnAEkglVIwavl-25" value="Check login" style="ellipse;whiteSpace=wrap;html=1;labelBackgroundColor=none;fillColor=#F2CC8F;strokeColor=#E07A5F;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="1">
<mxGeometry x="450" y="60" width="140" height="70" as="geometry" />
</mxCell>
<mxCell id="_leYNJzgnAEkglVIwavl-26" value="Buy Ticket" style="ellipse;whiteSpace=wrap;html=1;labelBackgroundColor=none;fillColor=#F2CC8F;strokeColor=#E07A5F;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="1">
<mxGeometry x="190" y="300" width="140" height="70" as="geometry" />
</mxCell>
<mxCell id="_leYNJzgnAEkglVIwavl-27" value="Extends" style="endArrow=block;endSize=16;endFill=0;html=1;rounded=0;exitX=0.277;exitY=0.07;exitDx=0;exitDy=0;entryX=0.768;entryY=0.958;entryDx=0;entryDy=0;entryPerimeter=0;exitPerimeter=0;labelBackgroundColor=none;strokeColor=#E07A5F;fontColor=default;fontStyle=1;fontSize=14;" edge="1" parent="1" source="_leYNJzgnAEkglVIwavl-28" target="_leYNJzgnAEkglVIwavl-26">
<mxGeometry width="160" relative="1" as="geometry">
<mxPoint x="400" y="470" as="sourcePoint" />
<mxPoint x="310" y="380" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="_leYNJzgnAEkglVIwavl-28" value="Cancel ticket" style="ellipse;whiteSpace=wrap;html=1;labelBackgroundColor=none;fillColor=#F2CC8F;strokeColor=#E07A5F;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="1">
<mxGeometry x="350" y="400" width="140" height="70" as="geometry" />
</mxCell>
<mxCell id="_leYNJzgnAEkglVIwavl-30" value="Approved cancel ticket" style="ellipse;whiteSpace=wrap;html=1;labelBackgroundColor=none;fillColor=#F2CC8F;strokeColor=#E07A5F;fontColor=#393C56;fontStyle=1;fontSize=14;" vertex="1" parent="1">
<mxGeometry x="720" y="410" width="140" height="70" as="geometry" />
</mxCell>
<mxCell id="_leYNJzgnAEkglVIwavl-31" value="Include" style="endArrow=block;endSize=16;endFill=0;html=1;rounded=0;exitX=0.714;exitY=1;exitDx=0;exitDy=0;exitPerimeter=0;entryX=-0.002;entryY=0.399;entryDx=0;entryDy=0;entryPerimeter=0;labelBackgroundColor=none;strokeColor=#E07A5F;fontColor=default;fontStyle=1;fontSize=14;" edge="1" parent="1" source="_leYNJzgnAEkglVIwavl-28" target="_leYNJzgnAEkglVIwavl-30">
<mxGeometry width="160" relative="1" as="geometry">
<mxPoint x="339" y="146" as="sourcePoint" />
<mxPoint x="460" y="120" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="_leYNJzgnAEkglVIwavl-32" value="Include" style="endArrow=block;endSize=16;endFill=0;html=1;rounded=0;exitX=0.929;exitY=0.286;exitDx=0;exitDy=0;exitPerimeter=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;labelBackgroundColor=none;strokeColor=#E07A5F;fontColor=default;fontStyle=1;fontSize=14;" edge="1" parent="1" source="_leYNJzgnAEkglVIwavl-26" target="_leYNJzgnAEkglVIwavl-33">
<mxGeometry width="160" relative="1" as="geometry">
<mxPoint x="390" y="356" as="sourcePoint" />