-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path21. Group excercise BPMN roulette.bpmn
2208 lines (2208 loc) · 114 KB
/
21. Group excercise BPMN roulette.bpmn
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
<?xml version="1.0" encoding="UTF-8"?>
<bpmn:definitions xmlns:bpmn="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:dc="http://www.omg.org/spec/DD/20100524/DC" xmlns:di="http://www.omg.org/spec/DD/20100524/DI" xmlns:modeler="http://camunda.org/schema/modeler/1.0" id="Definitions_1agrplm" targetNamespace="http://bpmn.io/schema/bpmn" exporter="Camunda Modeler" exporterVersion="5.12.1" modeler:executionPlatform="Camunda Cloud" modeler:executionPlatformVersion="8.2.0">
<bpmn:process id="Process_1rgl9oo" isExecutable="true">
<bpmn:startEvent id="StartEvent_1" name="BPMN roulette has started">
<bpmn:outgoing>Flow_0d5i4nr</bpmn:outgoing>
</bpmn:startEvent>
<bpmn:exclusiveGateway id="Gateway_1ysztso" name="are there any models left?">
<bpmn:incoming>Flow_0d5i4nr</bpmn:incoming>
<bpmn:incoming>Flow_0x94r0e</bpmn:incoming>
<bpmn:outgoing>Flow_0pacag6</bpmn:outgoing>
<bpmn:outgoing>Flow_1t8mw4h</bpmn:outgoing>
</bpmn:exclusiveGateway>
<bpmn:sequenceFlow id="Flow_0d5i4nr" sourceRef="StartEvent_1" targetRef="Gateway_1ysztso" />
<bpmn:task id="Activity_1rb8bon" name="pick a number">
<bpmn:incoming>Flow_0pacag6</bpmn:incoming>
<bpmn:outgoing>Flow_1iapxlo</bpmn:outgoing>
</bpmn:task>
<bpmn:sequenceFlow id="Flow_0pacag6" name="yes" sourceRef="Gateway_1ysztso" targetRef="Activity_1rb8bon" />
<bpmn:intermediateThrowEvent id="Event_1s85gsy" name="Video paused">
<bpmn:incoming>Flow_1iapxlo</bpmn:incoming>
<bpmn:outgoing>Flow_0wtwekd</bpmn:outgoing>
</bpmn:intermediateThrowEvent>
<bpmn:sequenceFlow id="Flow_1iapxlo" sourceRef="Activity_1rb8bon" targetRef="Event_1s85gsy" />
<bpmn:task id="Activity_0msi8i2" name="ask yourself how the token flows through the process">
<bpmn:incoming>Flow_0wtwekd</bpmn:incoming>
<bpmn:outgoing>Flow_0ac8djt</bpmn:outgoing>
</bpmn:task>
<bpmn:sequenceFlow id="Flow_0wtwekd" sourceRef="Event_1s85gsy" targetRef="Activity_0msi8i2" />
<bpmn:task id="Activity_0zq0w5f" name="take notes on any error">
<bpmn:incoming>Flow_0ac8djt</bpmn:incoming>
<bpmn:outgoing>Flow_0j18h1z</bpmn:outgoing>
</bpmn:task>
<bpmn:sequenceFlow id="Flow_0ac8djt" sourceRef="Activity_0msi8i2" targetRef="Activity_0zq0w5f" />
<bpmn:task id="Activity_19i2pd0" name="take notes on any changes you would make">
<bpmn:incoming>Flow_0j18h1z</bpmn:incoming>
<bpmn:outgoing>Flow_0fej0hv</bpmn:outgoing>
</bpmn:task>
<bpmn:sequenceFlow id="Flow_0j18h1z" sourceRef="Activity_0zq0w5f" targetRef="Activity_19i2pd0" />
<bpmn:intermediateThrowEvent id="Event_05pbhr3" name="Video resumed">
<bpmn:incoming>Flow_0fej0hv</bpmn:incoming>
<bpmn:outgoing>Flow_1xll2it</bpmn:outgoing>
</bpmn:intermediateThrowEvent>
<bpmn:sequenceFlow id="Flow_0fej0hv" sourceRef="Activity_19i2pd0" targetRef="Event_05pbhr3" />
<bpmn:task id="Activity_1cni3tg" name="Instructor goes over model">
<bpmn:incoming>Flow_1xll2it</bpmn:incoming>
<bpmn:outgoing>Flow_0x94r0e</bpmn:outgoing>
</bpmn:task>
<bpmn:sequenceFlow id="Flow_1xll2it" sourceRef="Event_05pbhr3" targetRef="Activity_1cni3tg" />
<bpmn:sequenceFlow id="Flow_0x94r0e" sourceRef="Activity_1cni3tg" targetRef="Gateway_1ysztso" />
<bpmn:endEvent id="Event_1z0ize2" name="BPMN roulette has ended">
<bpmn:incoming>Flow_1t8mw4h</bpmn:incoming>
</bpmn:endEvent>
<bpmn:sequenceFlow id="Flow_1t8mw4h" name="no" sourceRef="Gateway_1ysztso" targetRef="Event_1z0ize2" />
<bpmn:startEvent id="Event_1vkd7to">
<bpmn:outgoing>Flow_0g53wnm</bpmn:outgoing>
<bpmn:messageEventDefinition id="MessageEventDefinition_0x5abco" />
</bpmn:startEvent>
<bpmn:exclusiveGateway id="Gateway_1wi09no">
<bpmn:incoming>Flow_0g53wnm</bpmn:incoming>
<bpmn:incoming>Flow_0gcgfm0</bpmn:incoming>
<bpmn:outgoing>Flow_0shohkt</bpmn:outgoing>
</bpmn:exclusiveGateway>
<bpmn:sequenceFlow id="Flow_0g53wnm" sourceRef="Event_1vkd7to" targetRef="Gateway_1wi09no" />
<bpmn:startEvent id="Event_0w4311q">
<bpmn:outgoing>Flow_1d32e0h</bpmn:outgoing>
</bpmn:startEvent>
<bpmn:task id="Activity_1qth76g" name="A">
<bpmn:incoming>Flow_1d32e0h</bpmn:incoming>
<bpmn:outgoing>Flow_0gcgfm0</bpmn:outgoing>
</bpmn:task>
<bpmn:sequenceFlow id="Flow_1d32e0h" sourceRef="Event_0w4311q" targetRef="Activity_1qth76g" />
<bpmn:sequenceFlow id="Flow_0gcgfm0" sourceRef="Activity_1qth76g" targetRef="Gateway_1wi09no" />
<bpmn:task id="Activity_1ad13wc" name="B">
<bpmn:incoming>Flow_0shohkt</bpmn:incoming>
<bpmn:outgoing>Flow_1s7glvw</bpmn:outgoing>
</bpmn:task>
<bpmn:sequenceFlow id="Flow_0shohkt" sourceRef="Gateway_1wi09no" targetRef="Activity_1ad13wc" />
<bpmn:parallelGateway id="Gateway_05z0tag">
<bpmn:incoming>Flow_1s7glvw</bpmn:incoming>
<bpmn:outgoing>Flow_07iu8ws</bpmn:outgoing>
<bpmn:outgoing>Flow_0cm6jwz</bpmn:outgoing>
</bpmn:parallelGateway>
<bpmn:endEvent id="Event_0bas33d">
<bpmn:incoming>Flow_07iu8ws</bpmn:incoming>
<bpmn:signalEventDefinition id="SignalEventDefinition_1k9c1j2" />
</bpmn:endEvent>
<bpmn:endEvent id="Event_1mxxwwd">
<bpmn:incoming>Flow_0cm6jwz</bpmn:incoming>
<bpmn:messageEventDefinition id="MessageEventDefinition_1qmhs8a" />
</bpmn:endEvent>
<bpmn:sequenceFlow id="Flow_07iu8ws" sourceRef="Gateway_05z0tag" targetRef="Event_0bas33d" />
<bpmn:sequenceFlow id="Flow_0cm6jwz" sourceRef="Gateway_05z0tag" targetRef="Event_1mxxwwd" />
<bpmn:sequenceFlow id="Flow_1s7glvw" sourceRef="Activity_1ad13wc" targetRef="Gateway_05z0tag" />
<bpmn:task id="Activity_0knzgv2" name="NOTATKA: model wydaje się być OK" />
<bpmn:task id="Activity_16posy4" name="ODPOWIEDŹ: z modelem jest wszystko ok, common pattern" />
<bpmn:startEvent id="Event_0zz6qws">
<bpmn:outgoing>Flow_1fhasjq</bpmn:outgoing>
</bpmn:startEvent>
<bpmn:subProcess id="Activity_0c9cdfi">
<bpmn:incoming>Flow_1fhasjq</bpmn:incoming>
<bpmn:outgoing>Flow_0l9kc9n</bpmn:outgoing>
<bpmn:startEvent id="Event_0g5e1dx">
<bpmn:outgoing>Flow_0o6h7ko</bpmn:outgoing>
</bpmn:startEvent>
<bpmn:task id="Activity_0jvi9o6" name="X">
<bpmn:incoming>Flow_0o6h7ko</bpmn:incoming>
<bpmn:outgoing>Flow_02mf1ar</bpmn:outgoing>
</bpmn:task>
<bpmn:sequenceFlow id="Flow_0o6h7ko" sourceRef="Event_0g5e1dx" targetRef="Activity_0jvi9o6" />
<bpmn:task id="Activity_1oolzvg" name="Y">
<bpmn:incoming>Flow_02mf1ar</bpmn:incoming>
<bpmn:outgoing>Flow_0bixymj</bpmn:outgoing>
</bpmn:task>
<bpmn:sequenceFlow id="Flow_02mf1ar" sourceRef="Activity_0jvi9o6" targetRef="Activity_1oolzvg" />
<bpmn:endEvent id="Event_03zdbho">
<bpmn:incoming>Flow_0bixymj</bpmn:incoming>
</bpmn:endEvent>
<bpmn:sequenceFlow id="Flow_0bixymj" sourceRef="Activity_1oolzvg" targetRef="Event_03zdbho" />
<bpmn:boundaryEvent id="Event_1cl1g1t" name="Error A" attachedToRef="Activity_0jvi9o6">
<bpmn:outgoing>Flow_1ql32tt</bpmn:outgoing>
<bpmn:errorEventDefinition id="ErrorEventDefinition_0lfhphz" />
</bpmn:boundaryEvent>
<bpmn:boundaryEvent id="Event_1u0wjwo" name="Error B" attachedToRef="Activity_1oolzvg">
<bpmn:outgoing>Flow_1wo7wis</bpmn:outgoing>
<bpmn:errorEventDefinition id="ErrorEventDefinition_04juiub" />
</bpmn:boundaryEvent>
<bpmn:endEvent id="Event_13g0yg3">
<bpmn:incoming>Flow_1wo7wis</bpmn:incoming>
<bpmn:incoming>Flow_1ql32tt</bpmn:incoming>
</bpmn:endEvent>
<bpmn:sequenceFlow id="Flow_1wo7wis" sourceRef="Event_1u0wjwo" targetRef="Event_13g0yg3" />
<bpmn:sequenceFlow id="Flow_1ql32tt" sourceRef="Event_1cl1g1t" targetRef="Event_13g0yg3" />
<bpmn:association id="Association_0wtq2nj" sourceRef="Event_1cl1g1t" targetRef="TextAnnotation_15t4kjl" />
</bpmn:subProcess>
<bpmn:boundaryEvent id="Event_1z07rta" attachedToRef="Activity_0c9cdfi">
<bpmn:outgoing>Flow_0mzi6ru</bpmn:outgoing>
<bpmn:errorEventDefinition id="ErrorEventDefinition_12z0u6b" />
</bpmn:boundaryEvent>
<bpmn:sequenceFlow id="Flow_1fhasjq" sourceRef="Event_0zz6qws" targetRef="Activity_0c9cdfi" />
<bpmn:endEvent id="Event_1rvqs0z">
<bpmn:incoming>Flow_0l9kc9n</bpmn:incoming>
</bpmn:endEvent>
<bpmn:sequenceFlow id="Flow_0l9kc9n" sourceRef="Activity_0c9cdfi" targetRef="Event_1rvqs0z" />
<bpmn:task id="Activity_1xqd6v5" name="Z">
<bpmn:incoming>Flow_0mzi6ru</bpmn:incoming>
<bpmn:outgoing>Flow_0fy0anz</bpmn:outgoing>
</bpmn:task>
<bpmn:sequenceFlow id="Flow_0mzi6ru" sourceRef="Event_1z07rta" targetRef="Activity_1xqd6v5" />
<bpmn:endEvent id="Event_1k03sfu">
<bpmn:incoming>Flow_0fy0anz</bpmn:incoming>
</bpmn:endEvent>
<bpmn:sequenceFlow id="Flow_0fy0anz" sourceRef="Activity_1xqd6v5" targetRef="Event_1k03sfu" />
<bpmn:task id="Activity_0ecbn9l" />
<bpmn:subProcess id="Activity_1izxb9c">
<bpmn:textAnnotation id="TextAnnotation_1lhxt6t">
<bpmn:text>SCOPE, kicks off the embedded process, confusion comes when we start errors and how they get triggered</bpmn:text>
</bpmn:textAnnotation>
<bpmn:textAnnotation id="TextAnnotation_15t4kjl">
<bpmn:text>error A boundary event przechwytuje error</bpmn:text>
</bpmn:textAnnotation>
<bpmn:textAnnotation id="TextAnnotation_027wxc2">
<bpmn:text>all errors łapie te błędy które nie są przechwytywane w Error A i B</bpmn:text>
</bpmn:textAnnotation>
</bpmn:subProcess>
<bpmn:startEvent id="Event_0g49enc">
<bpmn:outgoing>Flow_0o8bxpv</bpmn:outgoing>
</bpmn:startEvent>
<bpmn:task id="Activity_0zy1k8b" name="Task 0">
<bpmn:incoming>Flow_0o8bxpv</bpmn:incoming>
<bpmn:outgoing>Flow_1gwp5la</bpmn:outgoing>
</bpmn:task>
<bpmn:sequenceFlow id="Flow_0o8bxpv" sourceRef="Event_0g49enc" targetRef="Activity_0zy1k8b" />
<bpmn:eventBasedGateway id="Gateway_0x6yw5e">
<bpmn:incoming>Flow_1gwp5la</bpmn:incoming>
<bpmn:outgoing>Flow_0xjy5ob</bpmn:outgoing>
<bpmn:outgoing>Flow_01tjjes</bpmn:outgoing>
<bpmn:outgoing>Flow_01sms6q</bpmn:outgoing>
</bpmn:eventBasedGateway>
<bpmn:sequenceFlow id="Flow_1gwp5la" sourceRef="Activity_0zy1k8b" targetRef="Gateway_0x6yw5e" />
<bpmn:intermediateCatchEvent id="Event_1e8k5dv" name="4 days">
<bpmn:incoming>Flow_0xjy5ob</bpmn:incoming>
<bpmn:outgoing>Flow_188d5r8</bpmn:outgoing>
<bpmn:timerEventDefinition id="TimerEventDefinition_0mzs49p" />
</bpmn:intermediateCatchEvent>
<bpmn:sequenceFlow id="Flow_0xjy5ob" sourceRef="Gateway_0x6yw5e" targetRef="Event_1e8k5dv" />
<bpmn:intermediateCatchEvent id="Event_1hunkq1" name="Message One">
<bpmn:incoming>Flow_01tjjes</bpmn:incoming>
<bpmn:outgoing>Flow_0ag3z8w</bpmn:outgoing>
<bpmn:messageEventDefinition id="MessageEventDefinition_0zm2le6" />
</bpmn:intermediateCatchEvent>
<bpmn:sequenceFlow id="Flow_01tjjes" sourceRef="Gateway_0x6yw5e" targetRef="Event_1hunkq1" />
<bpmn:task id="Activity_0jyv569" name="Task 1">
<bpmn:incoming>Flow_0ag3z8w</bpmn:incoming>
<bpmn:outgoing>Flow_1dlaom6</bpmn:outgoing>
</bpmn:task>
<bpmn:sequenceFlow id="Flow_0ag3z8w" sourceRef="Event_1hunkq1" targetRef="Activity_0jyv569" />
<bpmn:task id="Activity_1srsmus" name="Task 2">
<bpmn:incoming>Flow_188d5r8</bpmn:incoming>
<bpmn:outgoing>Flow_0yvoblw</bpmn:outgoing>
</bpmn:task>
<bpmn:sequenceFlow id="Flow_188d5r8" sourceRef="Event_1e8k5dv" targetRef="Activity_1srsmus" />
<bpmn:intermediateCatchEvent id="Event_0h1rmlf" name="Message One">
<bpmn:incoming>Flow_01sms6q</bpmn:incoming>
<bpmn:outgoing>Flow_1j67yaw</bpmn:outgoing>
<bpmn:messageEventDefinition id="MessageEventDefinition_0icg5y3" />
</bpmn:intermediateCatchEvent>
<bpmn:sequenceFlow id="Flow_01sms6q" sourceRef="Gateway_0x6yw5e" targetRef="Event_0h1rmlf" />
<bpmn:task id="Activity_17fwipj" name="Task 3">
<bpmn:incoming>Flow_1j67yaw</bpmn:incoming>
<bpmn:outgoing>Flow_1lch40o</bpmn:outgoing>
</bpmn:task>
<bpmn:sequenceFlow id="Flow_1j67yaw" sourceRef="Event_0h1rmlf" targetRef="Activity_17fwipj" />
<bpmn:exclusiveGateway id="Gateway_147rjuk">
<bpmn:incoming>Flow_0yvoblw</bpmn:incoming>
<bpmn:incoming>Flow_1dlaom6</bpmn:incoming>
<bpmn:incoming>Flow_1lch40o</bpmn:incoming>
<bpmn:outgoing>Flow_14f6yzs</bpmn:outgoing>
</bpmn:exclusiveGateway>
<bpmn:sequenceFlow id="Flow_0yvoblw" sourceRef="Activity_1srsmus" targetRef="Gateway_147rjuk" />
<bpmn:sequenceFlow id="Flow_1dlaom6" sourceRef="Activity_0jyv569" targetRef="Gateway_147rjuk" />
<bpmn:sequenceFlow id="Flow_1lch40o" sourceRef="Activity_17fwipj" targetRef="Gateway_147rjuk" />
<bpmn:endEvent id="Event_0uwxwoc">
<bpmn:incoming>Flow_14f6yzs</bpmn:incoming>
</bpmn:endEvent>
<bpmn:sequenceFlow id="Flow_14f6yzs" sourceRef="Gateway_147rjuk" targetRef="Event_0uwxwoc" />
<bpmn:task id="Activity_0h2hr9w" />
<bpmn:intermediateThrowEvent id="Event_19o5re2">
<bpmn:signalEventDefinition id="SignalEventDefinition_1faship" />
</bpmn:intermediateThrowEvent>
<bpmn:intermediateCatchEvent id="Event_16yapax">
<bpmn:signalEventDefinition id="SignalEventDefinition_0b25jv2" />
</bpmn:intermediateCatchEvent>
<bpmn:startEvent id="Event_0d5jyjk">
<bpmn:outgoing>Flow_0c6vbvx</bpmn:outgoing>
</bpmn:startEvent>
<bpmn:exclusiveGateway id="Gateway_08279hb">
<bpmn:incoming>Flow_0c6vbvx</bpmn:incoming>
<bpmn:outgoing>Flow_15uny8n</bpmn:outgoing>
<bpmn:outgoing>Flow_0twu62y</bpmn:outgoing>
</bpmn:exclusiveGateway>
<bpmn:sequenceFlow id="Flow_0c6vbvx" sourceRef="Event_0d5jyjk" targetRef="Gateway_08279hb" />
<bpmn:sequenceFlow id="Flow_15uny8n" sourceRef="Gateway_08279hb" targetRef="Activity_1afu59q" />
<bpmn:sequenceFlow id="Flow_0mex53u" sourceRef="Activity_1afu59q" targetRef="Gateway_0mrl62n" />
<bpmn:parallelGateway id="Gateway_0mrl62n">
<bpmn:incoming>Flow_0mex53u</bpmn:incoming>
<bpmn:incoming>Flow_195gtrq</bpmn:incoming>
<bpmn:outgoing>Flow_199gbka</bpmn:outgoing>
</bpmn:parallelGateway>
<bpmn:sequenceFlow id="Flow_199gbka" sourceRef="Gateway_0mrl62n" targetRef="Activity_16cijn6" />
<bpmn:endEvent id="Event_14e8b3z">
<bpmn:incoming>Flow_1io28t2</bpmn:incoming>
</bpmn:endEvent>
<bpmn:sequenceFlow id="Flow_1io28t2" sourceRef="Activity_16cijn6" targetRef="Event_14e8b3z" />
<bpmn:sequenceFlow id="Flow_0twu62y" sourceRef="Gateway_08279hb" targetRef="Activity_1ssikr8" />
<bpmn:exclusiveGateway id="Gateway_16gyb76">
<bpmn:incoming>Flow_0ltk5s7</bpmn:incoming>
<bpmn:outgoing>Flow_195gtrq</bpmn:outgoing>
<bpmn:outgoing>Flow_11o3w4n</bpmn:outgoing>
</bpmn:exclusiveGateway>
<bpmn:sequenceFlow id="Flow_0ltk5s7" sourceRef="Activity_1ssikr8" targetRef="Gateway_16gyb76" />
<bpmn:sequenceFlow id="Flow_195gtrq" sourceRef="Gateway_16gyb76" targetRef="Gateway_0mrl62n" />
<bpmn:sequenceFlow id="Flow_11o3w4n" sourceRef="Gateway_16gyb76" targetRef="Activity_0vfb6tj" />
<bpmn:endEvent id="Event_091ga4g">
<bpmn:incoming>Flow_15q0yf3</bpmn:incoming>
</bpmn:endEvent>
<bpmn:sequenceFlow id="Flow_15q0yf3" sourceRef="Activity_0vfb6tj" targetRef="Event_091ga4g" />
<bpmn:userTask id="Activity_1afu59q" name="A">
<bpmn:incoming>Flow_15uny8n</bpmn:incoming>
<bpmn:outgoing>Flow_0mex53u</bpmn:outgoing>
</bpmn:userTask>
<bpmn:sendTask id="Activity_16cijn6" name="C">
<bpmn:incoming>Flow_199gbka</bpmn:incoming>
<bpmn:outgoing>Flow_1io28t2</bpmn:outgoing>
</bpmn:sendTask>
<bpmn:serviceTask id="Activity_1ssikr8" name="B">
<bpmn:incoming>Flow_0twu62y</bpmn:incoming>
<bpmn:outgoing>Flow_0ltk5s7</bpmn:outgoing>
</bpmn:serviceTask>
<bpmn:serviceTask id="Activity_0vfb6tj" name="D">
<bpmn:incoming>Flow_11o3w4n</bpmn:incoming>
<bpmn:outgoing>Flow_15q0yf3</bpmn:outgoing>
</bpmn:serviceTask>
<bpmn:task id="Activity_1fg9nt7" />
<bpmn:startEvent id="Event_03d6mio">
<bpmn:outgoing>Flow_03k18uc</bpmn:outgoing>
</bpmn:startEvent>
<bpmn:task id="Activity_1g9q9by" name="A">
<bpmn:incoming>Flow_03k18uc</bpmn:incoming>
<bpmn:outgoing>Flow_14t4gn4</bpmn:outgoing>
</bpmn:task>
<bpmn:sequenceFlow id="Flow_03k18uc" sourceRef="Event_03d6mio" targetRef="Activity_1g9q9by" />
<bpmn:sequenceFlow id="Flow_14t4gn4" sourceRef="Activity_1g9q9by" targetRef="Gateway_0ohrjry" />
<bpmn:inclusiveGateway id="Gateway_0ohrjry">
<bpmn:incoming>Flow_14t4gn4</bpmn:incoming>
<bpmn:outgoing>Flow_0xf0xp4</bpmn:outgoing>
<bpmn:outgoing>Flow_1ibf6fu</bpmn:outgoing>
</bpmn:inclusiveGateway>
<bpmn:task id="Activity_19p0r0f" name="B">
<bpmn:incoming>Flow_0xf0xp4</bpmn:incoming>
<bpmn:outgoing>Flow_06azfvh</bpmn:outgoing>
</bpmn:task>
<bpmn:sequenceFlow id="Flow_0xf0xp4" name="Always" sourceRef="Gateway_0ohrjry" targetRef="Activity_19p0r0f" />
<bpmn:sequenceFlow id="Flow_06azfvh" sourceRef="Activity_19p0r0f" targetRef="Gateway_0xdsqq9" />
<bpmn:inclusiveGateway id="Gateway_0xdsqq9">
<bpmn:incoming>Flow_06azfvh</bpmn:incoming>
<bpmn:incoming>Flow_0cya74w</bpmn:incoming>
<bpmn:outgoing>Flow_1xyrqks</bpmn:outgoing>
</bpmn:inclusiveGateway>
<bpmn:task id="Activity_1d99ya5" name="E">
<bpmn:incoming>Flow_1xyrqks</bpmn:incoming>
<bpmn:outgoing>Flow_1ovtpgv</bpmn:outgoing>
</bpmn:task>
<bpmn:sequenceFlow id="Flow_1xyrqks" sourceRef="Gateway_0xdsqq9" targetRef="Activity_1d99ya5" />
<bpmn:endEvent id="Event_03acszx">
<bpmn:incoming>Flow_1ovtpgv</bpmn:incoming>
</bpmn:endEvent>
<bpmn:sequenceFlow id="Flow_1ovtpgv" sourceRef="Activity_1d99ya5" targetRef="Event_03acszx" />
<bpmn:task id="Activity_18d0drl" name="C">
<bpmn:incoming>Flow_1ibf6fu</bpmn:incoming>
<bpmn:outgoing>Flow_0cya74w</bpmn:outgoing>
</bpmn:task>
<bpmn:sequenceFlow id="Flow_1ibf6fu" name="Things are good!" sourceRef="Gateway_0ohrjry" targetRef="Activity_18d0drl" />
<bpmn:boundaryEvent id="Event_1ytbckv" name="4 seconds" attachedToRef="Activity_18d0drl">
<bpmn:outgoing>Flow_0dk29hj</bpmn:outgoing>
<bpmn:timerEventDefinition id="TimerEventDefinition_0bhbecg" />
</bpmn:boundaryEvent>
<bpmn:task id="Activity_0jyxnzj" name="D">
<bpmn:incoming>Flow_0dk29hj</bpmn:incoming>
<bpmn:outgoing>Flow_0gg1p2q</bpmn:outgoing>
</bpmn:task>
<bpmn:sequenceFlow id="Flow_0dk29hj" sourceRef="Event_1ytbckv" targetRef="Activity_0jyxnzj" />
<bpmn:endEvent id="Event_13x921x">
<bpmn:incoming>Flow_0gg1p2q</bpmn:incoming>
</bpmn:endEvent>
<bpmn:sequenceFlow id="Flow_0gg1p2q" sourceRef="Activity_0jyxnzj" targetRef="Event_13x921x" />
<bpmn:sequenceFlow id="Flow_0cya74w" sourceRef="Activity_18d0drl" targetRef="Gateway_0xdsqq9" />
<bpmn:task id="Activity_0ytdzvf" />
<bpmn:startEvent id="Event_1c0hf2e">
<bpmn:outgoing>Flow_1qqgl70</bpmn:outgoing>
</bpmn:startEvent>
<bpmn:task id="Activity_13ftdtw" name="A">
<bpmn:incoming>Flow_1qqgl70</bpmn:incoming>
<bpmn:outgoing>Flow_0znlqpo</bpmn:outgoing>
</bpmn:task>
<bpmn:sequenceFlow id="Flow_1qqgl70" sourceRef="Event_1c0hf2e" targetRef="Activity_13ftdtw" />
<bpmn:subProcess id="Activity_0ck4hz0">
<bpmn:incoming>Flow_0znlqpo</bpmn:incoming>
<bpmn:outgoing>Flow_1fgj3au</bpmn:outgoing>
<bpmn:multiInstanceLoopCharacteristics isSequential="true" />
<bpmn:startEvent id="Event_0jxvzcr">
<bpmn:outgoing>Flow_18iiehh</bpmn:outgoing>
</bpmn:startEvent>
<bpmn:task id="Activity_19yym1n" name="B">
<bpmn:incoming>Flow_18iiehh</bpmn:incoming>
<bpmn:outgoing>Flow_03hrhlp</bpmn:outgoing>
</bpmn:task>
<bpmn:sequenceFlow id="Flow_18iiehh" sourceRef="Event_0jxvzcr" targetRef="Activity_19yym1n" />
<bpmn:endEvent id="Event_0msbofk">
<bpmn:incoming>Flow_03hrhlp</bpmn:incoming>
</bpmn:endEvent>
<bpmn:sequenceFlow id="Flow_03hrhlp" sourceRef="Activity_19yym1n" targetRef="Event_0msbofk" />
</bpmn:subProcess>
<bpmn:sequenceFlow id="Flow_0znlqpo" sourceRef="Activity_13ftdtw" targetRef="Activity_0ck4hz0" />
<bpmn:task id="Activity_15lfdob" name="C">
<bpmn:incoming>Flow_1fgj3au</bpmn:incoming>
<bpmn:outgoing>Flow_07o7h6x</bpmn:outgoing>
</bpmn:task>
<bpmn:sequenceFlow id="Flow_1fgj3au" sourceRef="Activity_0ck4hz0" targetRef="Activity_15lfdob" />
<bpmn:endEvent id="Event_1glwu9b">
<bpmn:incoming>Flow_07o7h6x</bpmn:incoming>
</bpmn:endEvent>
<bpmn:sequenceFlow id="Flow_07o7h6x" sourceRef="Activity_15lfdob" targetRef="Event_1glwu9b" />
<bpmn:boundaryEvent id="Event_0c4xzjc" name="1 minute" attachedToRef="Activity_0ck4hz0">
<bpmn:outgoing>Flow_16tn4h4</bpmn:outgoing>
<bpmn:timerEventDefinition id="TimerEventDefinition_08laqho" />
</bpmn:boundaryEvent>
<bpmn:task id="Activity_0oudv3r" name="D">
<bpmn:incoming>Flow_16tn4h4</bpmn:incoming>
<bpmn:outgoing>Flow_1s1t69j</bpmn:outgoing>
</bpmn:task>
<bpmn:sequenceFlow id="Flow_16tn4h4" sourceRef="Event_0c4xzjc" targetRef="Activity_0oudv3r" />
<bpmn:endEvent id="Event_08scfe4">
<bpmn:incoming>Flow_1s1t69j</bpmn:incoming>
</bpmn:endEvent>
<bpmn:sequenceFlow id="Flow_1s1t69j" sourceRef="Activity_0oudv3r" targetRef="Event_08scfe4" />
<bpmn:task id="Activity_13bedt0" />
<bpmn:task id="Activity_1d73l2q" name="A">
<bpmn:incoming>Flow_1h0s37k</bpmn:incoming>
<bpmn:outgoing>Flow_04pzqit</bpmn:outgoing>
</bpmn:task>
<bpmn:sequenceFlow id="Flow_1h0s37k" sourceRef="Event_1lbs9k9" targetRef="Activity_1d73l2q" />
<bpmn:task id="Activity_1qxvxad" name="B">
<bpmn:incoming>Flow_1pl9m39</bpmn:incoming>
<bpmn:outgoing>Flow_14skpbm</bpmn:outgoing>
</bpmn:task>
<bpmn:sequenceFlow id="Flow_1pl9m39" sourceRef="Event_0yqumxk" targetRef="Activity_1qxvxad" />
<bpmn:task id="Activity_04ibvn7" name="C">
<bpmn:incoming>Flow_1cfbdip</bpmn:incoming>
<bpmn:outgoing>Flow_0sesg9j</bpmn:outgoing>
</bpmn:task>
<bpmn:sequenceFlow id="Flow_1cfbdip" sourceRef="Event_0dj4hqk" targetRef="Activity_04ibvn7" />
<bpmn:endEvent id="Event_1ee3gfz">
<bpmn:incoming>Flow_04pzqit</bpmn:incoming>
</bpmn:endEvent>
<bpmn:sequenceFlow id="Flow_04pzqit" sourceRef="Activity_1d73l2q" targetRef="Event_1ee3gfz" />
<bpmn:endEvent id="Event_15lc9q3">
<bpmn:incoming>Flow_14skpbm</bpmn:incoming>
</bpmn:endEvent>
<bpmn:sequenceFlow id="Flow_14skpbm" sourceRef="Activity_1qxvxad" targetRef="Event_15lc9q3" />
<bpmn:endEvent id="Event_0vl3cn5">
<bpmn:incoming>Flow_0sesg9j</bpmn:incoming>
</bpmn:endEvent>
<bpmn:sequenceFlow id="Flow_0sesg9j" sourceRef="Activity_04ibvn7" targetRef="Event_0vl3cn5" />
<bpmn:startEvent id="Event_1lbs9k9">
<bpmn:outgoing>Flow_1h0s37k</bpmn:outgoing>
<bpmn:messageEventDefinition id="MessageEventDefinition_00i5edx" />
</bpmn:startEvent>
<bpmn:startEvent id="Event_0yqumxk">
<bpmn:outgoing>Flow_1pl9m39</bpmn:outgoing>
<bpmn:messageEventDefinition id="MessageEventDefinition_0cp11ja" />
</bpmn:startEvent>
<bpmn:startEvent id="Event_0dj4hqk">
<bpmn:outgoing>Flow_1cfbdip</bpmn:outgoing>
<bpmn:messageEventDefinition id="MessageEventDefinition_1xm22u0" />
</bpmn:startEvent>
<bpmn:task id="Activity_0exx3ox" />
<bpmn:startEvent id="Event_1fx1s1y">
<bpmn:outgoing>Flow_1aags9g</bpmn:outgoing>
</bpmn:startEvent>
<bpmn:task id="Activity_0ow0cu3" name="A">
<bpmn:incoming>Flow_1aags9g</bpmn:incoming>
<bpmn:outgoing>Flow_0p55o4m</bpmn:outgoing>
</bpmn:task>
<bpmn:sequenceFlow id="Flow_1aags9g" sourceRef="Event_1fx1s1y" targetRef="Activity_0ow0cu3" />
<bpmn:exclusiveGateway id="Gateway_0oonxxb" name="North or south?">
<bpmn:incoming>Flow_0p55o4m</bpmn:incoming>
<bpmn:outgoing>Flow_1qgejx8</bpmn:outgoing>
<bpmn:outgoing>Flow_0wnnhgs</bpmn:outgoing>
</bpmn:exclusiveGateway>
<bpmn:sequenceFlow id="Flow_0p55o4m" sourceRef="Activity_0ow0cu3" targetRef="Gateway_0oonxxb" />
<bpmn:task id="Activity_10w2ggf" name="B">
<bpmn:incoming>Flow_1qgejx8</bpmn:incoming>
<bpmn:outgoing>Flow_1b6nw3m</bpmn:outgoing>
</bpmn:task>
<bpmn:sequenceFlow id="Flow_1qgejx8" name="North" sourceRef="Gateway_0oonxxb" targetRef="Activity_10w2ggf" />
<bpmn:task id="Activity_0l4irej" name="C">
<bpmn:incoming>Flow_0wnnhgs</bpmn:incoming>
<bpmn:outgoing>Flow_02f2jng</bpmn:outgoing>
</bpmn:task>
<bpmn:sequenceFlow id="Flow_0wnnhgs" name="South" sourceRef="Gateway_0oonxxb" targetRef="Activity_0l4irej" />
<bpmn:exclusiveGateway id="Gateway_1tj48u2" name="Up or down?">
<bpmn:incoming>Flow_02f2jng</bpmn:incoming>
<bpmn:incoming>Flow_1b6nw3m</bpmn:incoming>
<bpmn:outgoing>Flow_0xt3evw</bpmn:outgoing>
<bpmn:outgoing>Flow_0m7jpvx</bpmn:outgoing>
</bpmn:exclusiveGateway>
<bpmn:sequenceFlow id="Flow_02f2jng" sourceRef="Activity_0l4irej" targetRef="Gateway_1tj48u2" />
<bpmn:sequenceFlow id="Flow_1b6nw3m" sourceRef="Activity_10w2ggf" targetRef="Gateway_1tj48u2" />
<bpmn:intermediateCatchEvent id="Event_06tjv3c">
<bpmn:incoming>Flow_0xt3evw</bpmn:incoming>
<bpmn:outgoing>Flow_0u56885</bpmn:outgoing>
<bpmn:messageEventDefinition id="MessageEventDefinition_0untqcp" />
</bpmn:intermediateCatchEvent>
<bpmn:intermediateCatchEvent id="Event_1xe1j2a">
<bpmn:incoming>Flow_0m7jpvx</bpmn:incoming>
<bpmn:outgoing>Flow_1sqq0lq</bpmn:outgoing>
<bpmn:messageEventDefinition id="MessageEventDefinition_0se1tc1" />
</bpmn:intermediateCatchEvent>
<bpmn:sequenceFlow id="Flow_0xt3evw" name="Up" sourceRef="Gateway_1tj48u2" targetRef="Event_06tjv3c" />
<bpmn:sequenceFlow id="Flow_0m7jpvx" name="Down" sourceRef="Gateway_1tj48u2" targetRef="Event_1xe1j2a" />
<bpmn:endEvent id="Event_1t170i5">
<bpmn:incoming>Flow_0u56885</bpmn:incoming>
</bpmn:endEvent>
<bpmn:sequenceFlow id="Flow_0u56885" sourceRef="Event_06tjv3c" targetRef="Event_1t170i5" />
<bpmn:endEvent id="Event_125y2vc">
<bpmn:incoming>Flow_1sqq0lq</bpmn:incoming>
</bpmn:endEvent>
<bpmn:sequenceFlow id="Flow_1sqq0lq" sourceRef="Event_1xe1j2a" targetRef="Event_125y2vc" />
<bpmn:task id="Activity_08l8irv" />
<bpmn:startEvent id="Event_1tic5uq">
<bpmn:outgoing>Flow_1bwalu5</bpmn:outgoing>
</bpmn:startEvent>
<bpmn:task id="Activity_0wtlgfg" name="A">
<bpmn:incoming>Flow_1bwalu5</bpmn:incoming>
<bpmn:outgoing>Flow_0ugz88j</bpmn:outgoing>
</bpmn:task>
<bpmn:exclusiveGateway id="Gateway_00ywk1s" name="North or south?">
<bpmn:incoming>Flow_0ugz88j</bpmn:incoming>
<bpmn:outgoing>Flow_0ztuqvb</bpmn:outgoing>
<bpmn:outgoing>Flow_09s3721</bpmn:outgoing>
</bpmn:exclusiveGateway>
<bpmn:task id="Activity_1294s74" name="B">
<bpmn:incoming>Flow_0ztuqvb</bpmn:incoming>
<bpmn:outgoing>Flow_0rmf3um</bpmn:outgoing>
</bpmn:task>
<bpmn:task id="Activity_07l1ibt" name="C">
<bpmn:incoming>Flow_09s3721</bpmn:incoming>
<bpmn:outgoing>Flow_0v9ccjc</bpmn:outgoing>
</bpmn:task>
<bpmn:exclusiveGateway id="Gateway_0xg24ot" name="Up or down?">
<bpmn:incoming>Flow_0l82o6v</bpmn:incoming>
<bpmn:outgoing>Flow_1659jnl</bpmn:outgoing>
<bpmn:outgoing>Flow_0n4dvnd</bpmn:outgoing>
</bpmn:exclusiveGateway>
<bpmn:intermediateCatchEvent id="Event_0b298nv">
<bpmn:incoming>Flow_1659jnl</bpmn:incoming>
<bpmn:outgoing>Flow_0sig4io</bpmn:outgoing>
<bpmn:messageEventDefinition id="MessageEventDefinition_0fl6fvu" />
</bpmn:intermediateCatchEvent>
<bpmn:intermediateCatchEvent id="Event_19merbd">
<bpmn:incoming>Flow_0n4dvnd</bpmn:incoming>
<bpmn:outgoing>Flow_0l7a8gj</bpmn:outgoing>
<bpmn:messageEventDefinition id="MessageEventDefinition_0v3kces" />
</bpmn:intermediateCatchEvent>
<bpmn:endEvent id="Event_0swqal7">
<bpmn:incoming>Flow_0sig4io</bpmn:incoming>
</bpmn:endEvent>
<bpmn:endEvent id="Event_1t352u0">
<bpmn:incoming>Flow_0l7a8gj</bpmn:incoming>
</bpmn:endEvent>
<bpmn:sequenceFlow id="Flow_1bwalu5" sourceRef="Event_1tic5uq" targetRef="Activity_0wtlgfg" />
<bpmn:sequenceFlow id="Flow_0ugz88j" sourceRef="Activity_0wtlgfg" targetRef="Gateway_00ywk1s" />
<bpmn:sequenceFlow id="Flow_0ztuqvb" name="North" sourceRef="Gateway_00ywk1s" targetRef="Activity_1294s74" />
<bpmn:sequenceFlow id="Flow_09s3721" name="South" sourceRef="Gateway_00ywk1s" targetRef="Activity_07l1ibt" />
<bpmn:sequenceFlow id="Flow_1659jnl" name="Up" sourceRef="Gateway_0xg24ot" targetRef="Event_0b298nv" />
<bpmn:sequenceFlow id="Flow_0n4dvnd" name="Down" sourceRef="Gateway_0xg24ot" targetRef="Event_19merbd" />
<bpmn:sequenceFlow id="Flow_0sig4io" sourceRef="Event_0b298nv" targetRef="Event_0swqal7" />
<bpmn:sequenceFlow id="Flow_0l7a8gj" sourceRef="Event_19merbd" targetRef="Event_1t352u0" />
<bpmn:exclusiveGateway id="Gateway_0ycii6u">
<bpmn:incoming>Flow_0rmf3um</bpmn:incoming>
<bpmn:incoming>Flow_0v9ccjc</bpmn:incoming>
<bpmn:outgoing>Flow_0l82o6v</bpmn:outgoing>
</bpmn:exclusiveGateway>
<bpmn:sequenceFlow id="Flow_0rmf3um" sourceRef="Activity_1294s74" targetRef="Gateway_0ycii6u" />
<bpmn:sequenceFlow id="Flow_0l82o6v" sourceRef="Gateway_0ycii6u" targetRef="Gateway_0xg24ot" />
<bpmn:sequenceFlow id="Flow_0v9ccjc" sourceRef="Activity_07l1ibt" targetRef="Gateway_0ycii6u" />
<bpmn:startEvent id="Event_1pse4ry">
<bpmn:outgoing>Flow_0p77kfj</bpmn:outgoing>
</bpmn:startEvent>
<bpmn:task id="Activity_10331kb" name="A">
<bpmn:incoming>Flow_0p77kfj</bpmn:incoming>
<bpmn:outgoing>Flow_0lf7sc0</bpmn:outgoing>
</bpmn:task>
<bpmn:sequenceFlow id="Flow_0p77kfj" sourceRef="Event_1pse4ry" targetRef="Activity_10331kb" />
<bpmn:task id="Activity_1jq5vh3" name="B">
<bpmn:incoming>Flow_0lf7sc0</bpmn:incoming>
<bpmn:outgoing>Flow_1kc0dnk</bpmn:outgoing>
</bpmn:task>
<bpmn:sequenceFlow id="Flow_0lf7sc0" sourceRef="Activity_10331kb" targetRef="Activity_1jq5vh3" />
<bpmn:task id="Activity_12n6qze" name="C">
<bpmn:incoming>Flow_1kc0dnk</bpmn:incoming>
<bpmn:outgoing>Flow_1xfwbwf</bpmn:outgoing>
</bpmn:task>
<bpmn:sequenceFlow id="Flow_1kc0dnk" sourceRef="Activity_1jq5vh3" targetRef="Activity_12n6qze" />
<bpmn:task id="Activity_08kda2y" name="D">
<bpmn:incoming>Flow_1xfwbwf</bpmn:incoming>
<bpmn:outgoing>Flow_01ho74j</bpmn:outgoing>
</bpmn:task>
<bpmn:sequenceFlow id="Flow_1xfwbwf" sourceRef="Activity_12n6qze" targetRef="Activity_08kda2y" />
<bpmn:endEvent id="Event_1mn0naj">
<bpmn:incoming>Flow_01ho74j</bpmn:incoming>
</bpmn:endEvent>
<bpmn:sequenceFlow id="Flow_01ho74j" sourceRef="Activity_08kda2y" targetRef="Event_1mn0naj" />
<bpmn:subProcess id="Activity_133l9mx" triggeredByEvent="true">
<bpmn:startEvent id="Event_059kv0n" name="Keep up the good work" isInterrupting="false">
<bpmn:outgoing>Flow_025ylby</bpmn:outgoing>
<bpmn:messageEventDefinition id="MessageEventDefinition_1pgk4xx" />
</bpmn:startEvent>
<bpmn:task id="Activity_0w93fdd" name="Q">
<bpmn:incoming>Flow_025ylby</bpmn:incoming>
<bpmn:outgoing>Flow_1con3wh</bpmn:outgoing>
</bpmn:task>
<bpmn:sequenceFlow id="Flow_025ylby" sourceRef="Event_059kv0n" targetRef="Activity_0w93fdd" />
<bpmn:sequenceFlow id="Flow_1con3wh" sourceRef="Activity_0w93fdd" targetRef="Event_1d7cb2y" />
<bpmn:endEvent id="Event_1d7cb2y">
<bpmn:incoming>Flow_1con3wh</bpmn:incoming>
<bpmn:terminateEventDefinition id="TerminateEventDefinition_10lejow" />
</bpmn:endEvent>
<bpmn:textAnnotation id="TextAnnotation_144k0a8">
<bpmn:text>terminate end event</bpmn:text>
</bpmn:textAnnotation>
<bpmn:association id="Association_097lhkc" sourceRef="Event_1d7cb2y" targetRef="TextAnnotation_144k0a8" />
</bpmn:subProcess>
<bpmn:task id="Activity_0dx2rr6" />
<bpmn:subProcess id="Activity_1fu2w26" triggeredByEvent="true">
<bpmn:task id="Activity_1mx2vnt" name="Q">
<bpmn:incoming>Flow_0byo0s7</bpmn:incoming>
<bpmn:outgoing>Flow_04po54a</bpmn:outgoing>
</bpmn:task>
<bpmn:sequenceFlow id="Flow_0byo0s7" sourceRef="Event_0yafh6e" targetRef="Activity_1mx2vnt" />
<bpmn:sequenceFlow id="Flow_04po54a" sourceRef="Activity_1mx2vnt" targetRef="Event_1ukmktu" />
<bpmn:endEvent id="Event_1ukmktu">
<bpmn:incoming>Flow_04po54a</bpmn:incoming>
</bpmn:endEvent>
<bpmn:startEvent id="Event_0yafh6e" name="Keep up the good work">
<bpmn:outgoing>Flow_0byo0s7</bpmn:outgoing>
<bpmn:messageEventDefinition id="MessageEventDefinition_1764zex" />
</bpmn:startEvent>
<bpmn:textAnnotation id="TextAnnotation_0qw2eic">
<bpmn:text>terminate end event</bpmn:text>
</bpmn:textAnnotation>
<bpmn:association id="Association_0x6jx0a" sourceRef="Event_1ukmktu" targetRef="TextAnnotation_0qw2eic" />
</bpmn:subProcess>
<bpmn:textAnnotation id="TextAnnotation_0okdi8x">
<bpmn:text>intermediate throw event</bpmn:text>
</bpmn:textAnnotation>
<bpmn:association id="Association_1l5j98h" sourceRef="Event_1s85gsy" targetRef="TextAnnotation_0okdi8x" />
<bpmn:textAnnotation id="TextAnnotation_0eukoij">
<bpmn:text>some models have errors... some do not</bpmn:text>
</bpmn:textAnnotation>
<bpmn:association id="Association_1hxcvij" sourceRef="Activity_19i2pd0" targetRef="TextAnnotation_0eukoij" />
<bpmn:textAnnotation id="TextAnnotation_1fjy2tz">
<bpmn:text>some are easy to follow... some are difficult</bpmn:text>
</bpmn:textAnnotation>
<bpmn:association id="Association_0whpe0o" sourceRef="Activity_19i2pd0" targetRef="TextAnnotation_1fjy2tz" />
<bpmn:textAnnotation id="TextAnnotation_19tfbdc">
<bpmn:text>signal end event</bpmn:text>
</bpmn:textAnnotation>
<bpmn:association id="Association_1d9xtjf" sourceRef="Event_0bas33d" targetRef="TextAnnotation_19tfbdc" />
<bpmn:textAnnotation id="TextAnnotation_1vnae7c">
<bpmn:text>message end event</bpmn:text>
</bpmn:textAnnotation>
<bpmn:association id="Association_0wsh28t" sourceRef="Event_1mxxwwd" targetRef="TextAnnotation_1vnae7c" />
<bpmn:textAnnotation id="TextAnnotation_111k96a">
<bpmn:text>zadanie do wykonania, poszczególne kroki ćwiczenia</bpmn:text>
</bpmn:textAnnotation>
<bpmn:association id="Association_0epku3f" sourceRef="StartEvent_1" targetRef="TextAnnotation_111k96a" />
<bpmn:textAnnotation id="TextAnnotation_1m6aljd">
<bpmn:text>message start event</bpmn:text>
</bpmn:textAnnotation>
<bpmn:association id="Association_1gurimk" sourceRef="Event_1vkd7to" targetRef="TextAnnotation_1m6aljd" />
<bpmn:textAnnotation id="TextAnnotation_17mrlf4">
<bpmn:text>start event</bpmn:text>
</bpmn:textAnnotation>
<bpmn:association id="Association_0by4427" sourceRef="Event_0w4311q" targetRef="TextAnnotation_17mrlf4" />
<bpmn:textAnnotation id="TextAnnotation_0t6fcd0">
<bpmn:text>this represents the multiple start events scenario</bpmn:text>
</bpmn:textAnnotation>
<bpmn:association id="Association_057l1h2" sourceRef="Event_1vkd7to" targetRef="TextAnnotation_0t6fcd0" />
<bpmn:textAnnotation id="TextAnnotation_1q68j7s">
<bpmn:text>ćwiczenie numer 9 z nagrania "BPMN Roulette"</bpmn:text>
</bpmn:textAnnotation>
<bpmn:association id="Association_0oddjyi" sourceRef="Event_1vkd7to" targetRef="TextAnnotation_1q68j7s" />
<bpmn:textAnnotation id="TextAnnotation_1dzvhz9">
<bpmn:text>all errors</bpmn:text>
</bpmn:textAnnotation>
<bpmn:association id="Association_0iqwevx" sourceRef="Event_1z07rta" targetRef="TextAnnotation_1dzvhz9" />
<bpmn:textAnnotation id="TextAnnotation_1q4r506">
<bpmn:text>NOTATKA: wszystko jest ok z BPMN compliance ze schematem</bpmn:text>
</bpmn:textAnnotation>
<bpmn:association id="Association_0nvrgfn" sourceRef="Activity_0ecbn9l" targetRef="TextAnnotation_1q4r506" />
<bpmn:association id="Association_1ca0vh2" sourceRef="Event_1z07rta" targetRef="TextAnnotation_027wxc2" />
<bpmn:textAnnotation id="TextAnnotation_1gqc7fa">
<bpmn:text>ćwiczenie numer 3 z nagrania</bpmn:text>
</bpmn:textAnnotation>
<bpmn:association id="Association_1yw3uws" sourceRef="Event_0zz6qws" targetRef="TextAnnotation_1gqc7fa" />
<bpmn:textAnnotation id="TextAnnotation_10wbso2">
<bpmn:text>ćwiczenie nr 8 z nagrania</bpmn:text>
</bpmn:textAnnotation>
<bpmn:association id="Association_0ariw2d" sourceRef="Event_0g49enc" targetRef="TextAnnotation_10wbso2" />
<bpmn:textAnnotation id="TextAnnotation_1hk8ghx">
<bpmn:text>NOTATKA, model ma błąd message one jest zduplikowany powinno być bramka parallel oraz task 1 task3</bpmn:text>
</bpmn:textAnnotation>
<bpmn:association id="Association_197u42q" sourceRef="Activity_0h2hr9w" targetRef="TextAnnotation_1hk8ghx" />
<bpmn:textAnnotation id="TextAnnotation_1yihbey">
<bpmn:text>ODPOWIEDŹ:dobrze, there is one to one relationship between messages. Therefore you cannot have the same message object multiple times in the same model. One to many is handled by the Signal symbol</bpmn:text>
</bpmn:textAnnotation>
<bpmn:association id="Association_1wy6y2v" sourceRef="Activity_0h2hr9w" targetRef="TextAnnotation_1yihbey" />
<bpmn:textAnnotation id="TextAnnotation_1yrg9fl">
<bpmn:text>throw</bpmn:text>
</bpmn:textAnnotation>
<bpmn:association id="Association_1khno7y" sourceRef="Event_19o5re2" targetRef="TextAnnotation_1yrg9fl" />
<bpmn:textAnnotation id="TextAnnotation_0cvb02d">
<bpmn:text>catch</bpmn:text>
</bpmn:textAnnotation>
<bpmn:association id="Association_1q9shvs" sourceRef="Event_16yapax" targetRef="TextAnnotation_0cvb02d" />
<bpmn:textAnnotation id="TextAnnotation_0at62ve">
<bpmn:text>BŁĘDNA NOTATKA, wydaje się że w modelu powinno być coś przed wysłaniem wiadomości w pierwszym rzędzie, a nie od razu wysłanie wiadomości</bpmn:text>
</bpmn:textAnnotation>
<bpmn:association id="Association_1j69k63" sourceRef="Activity_1fg9nt7" targetRef="TextAnnotation_0at62ve" />
<bpmn:textAnnotation id="TextAnnotation_1u6kuxz">
<bpmn:text>ćwiczenie 13 z nagrania</bpmn:text>
</bpmn:textAnnotation>
<bpmn:association id="Association_1ykrrda" sourceRef="Event_0d5jyjk" targetRef="TextAnnotation_1u6kuxz" />
<bpmn:textAnnotation id="TextAnnotation_0zc3iu2">
<bpmn:text>this is deadlock, bramka czeka na dwa tokeny, MOŻEMY ZGUBIĆ JEDEN token który pójdzie do D, C nigdy nie będzie wykonany</bpmn:text>
</bpmn:textAnnotation>
<bpmn:association id="Association_02j9kmo" sourceRef="Gateway_0mrl62n" targetRef="TextAnnotation_0zc3iu2" />
<bpmn:textAnnotation id="TextAnnotation_1qyco94">
<bpmn:text>to musi zostać zmienione</bpmn:text>
</bpmn:textAnnotation>
<bpmn:association id="Association_1mi284u" sourceRef="Gateway_0mrl62n" targetRef="TextAnnotation_1qyco94" />
<bpmn:textAnnotation id="TextAnnotation_1y9b6xp">
<bpmn:text>ćwiczenie nr 1 z nagrania</bpmn:text>
</bpmn:textAnnotation>
<bpmn:association id="Association_1k7usvr" sourceRef="Event_03d6mio" targetRef="TextAnnotation_1y9b6xp" />
<bpmn:textAnnotation id="TextAnnotation_1x5qoob">
<bpmn:text>inclusive gateway (OR)</bpmn:text>
</bpmn:textAnnotation>
<bpmn:association id="Association_0bvytvk" sourceRef="Gateway_0ohrjry" targetRef="TextAnnotation_1x5qoob" />
<bpmn:textAnnotation id="TextAnnotation_14qvj0l">
<bpmn:text>merging/ synchronizing gateway</bpmn:text>
</bpmn:textAnnotation>
<bpmn:association id="Association_16basx5" sourceRef="Gateway_0xdsqq9" targetRef="TextAnnotation_14qvj0l" />
<bpmn:textAnnotation id="TextAnnotation_08urwke">
<bpmn:text>ODPOWIEDŹ: BPMN compliance is ok, but there is a possibility of a deadlock</bpmn:text>
</bpmn:textAnnotation>
<bpmn:association id="Association_0bg9lzz" sourceRef="Activity_0ytdzvf" targetRef="TextAnnotation_08urwke" />
<bpmn:textAnnotation id="TextAnnotation_1qq3smo">
<bpmn:text>interrupting boundary event</bpmn:text>
</bpmn:textAnnotation>
<bpmn:association id="Association_0wecyv3" sourceRef="Event_1ytbckv" targetRef="TextAnnotation_1qq3smo" />
<bpmn:textAnnotation id="TextAnnotation_1tztk4d">
<bpmn:text>if both: "Always" and "Things are good", this becomes a synchronizing gateway</bpmn:text>
</bpmn:textAnnotation>
<bpmn:association id="Association_0ynjais" sourceRef="Gateway_0ohrjry" targetRef="TextAnnotation_1tztk4d" />
<bpmn:textAnnotation id="TextAnnotation_1k8bqj8">
<bpmn:text>this is deadlock possibility if interrupting time boundary event occurs with 4 seconds, token never will get through this OR gateway, it's faulty model</bpmn:text>
</bpmn:textAnnotation>
<bpmn:association id="Association_0zwosen" sourceRef="Gateway_0xdsqq9" targetRef="TextAnnotation_1k8bqj8" />
<bpmn:textAnnotation id="TextAnnotation_0igeey1">
<bpmn:text>Problem is when answear is both "Always" and "Things are good" are true, the second gateway will behave as a synchronizing gateway, and it will hold one token waiting for the second token that may never came going into C and D, it will wait forever</bpmn:text>
</bpmn:textAnnotation>
<bpmn:association id="Association_1d2ep2f" sourceRef="Gateway_0ohrjry" targetRef="TextAnnotation_0igeey1" />
<bpmn:textAnnotation id="TextAnnotation_1bjcjjs">
<bpmn:text>use the OR gateway sparingly or at all!, it may introduce faults, using OR can be dicey, depending how you use them</bpmn:text>
</bpmn:textAnnotation>
<bpmn:association id="Association_01vixt5" sourceRef="Gateway_0xdsqq9" targetRef="TextAnnotation_1bjcjjs" />
<bpmn:textAnnotation id="TextAnnotation_1wfszwl">
<bpmn:text>there is nothing wrong in the terms of BPMN compliance, however</bpmn:text>
</bpmn:textAnnotation>
<bpmn:association id="Association_114q0n4" sourceRef="Activity_13bedt0" targetRef="TextAnnotation_1wfszwl" />
<bpmn:textAnnotation id="TextAnnotation_0abxhww">
<bpmn:text>sequential subprocess</bpmn:text>
</bpmn:textAnnotation>
<bpmn:association id="Association_0thevmt" sourceRef="Activity_0ck4hz0" targetRef="TextAnnotation_0abxhww" />
<bpmn:textAnnotation id="TextAnnotation_0coi29d">
<bpmn:text>problem, it looks like there is a problem, that the ending after C may never happen depending on what is going on inside the subprocess</bpmn:text>
</bpmn:textAnnotation>
<bpmn:association id="Association_15604nk" sourceRef="Activity_13bedt0" targetRef="TextAnnotation_0coi29d" />
<bpmn:textAnnotation id="TextAnnotation_0k6xh36">
<bpmn:text>is this firing at each instance after 1 minute or the sequential flow of everything that is happening inside is more than 1minute; all the instances must be finished in 1 minute otherwise this subrpocess will be interrupted and D executed instead of C</bpmn:text>
</bpmn:textAnnotation>
<bpmn:association id="Association_03dfrr4" sourceRef="Event_0c4xzjc" targetRef="TextAnnotation_0k6xh36" />
<bpmn:textAnnotation id="TextAnnotation_1g5tix2">
<bpmn:text>ćwiczenie 4 z nagrania</bpmn:text>
</bpmn:textAnnotation>
<bpmn:association id="Association_06cnk1g" sourceRef="Event_1c0hf2e" targetRef="TextAnnotation_1g5tix2" />
<bpmn:textAnnotation id="TextAnnotation_0r1yekq">
<bpmn:text>NOTE: these are 3 processes independent, we dont know if the starting message is the same</bpmn:text>
</bpmn:textAnnotation>
<bpmn:association id="Association_0y16h6z" sourceRef="Activity_0exx3ox" targetRef="TextAnnotation_0r1yekq" />
<bpmn:textAnnotation id="TextAnnotation_1tgcvdo">
<bpmn:text>key takeway: when a start is triggered it will start a new instance, these flows are not connected at all, these should be seperate models</bpmn:text>
</bpmn:textAnnotation>
<bpmn:association id="Association_0bs21vi" sourceRef="Activity_0exx3ox" targetRef="TextAnnotation_1tgcvdo" />
<bpmn:textAnnotation id="TextAnnotation_1ef24uq">
<bpmn:text>ćwiczenie 14 z nagrania</bpmn:text>
</bpmn:textAnnotation>
<bpmn:association id="Association_1poeoa8" sourceRef="Event_1lbs9k9" targetRef="TextAnnotation_1ef24uq" />
<bpmn:textAnnotation id="TextAnnotation_10it3zu">
<bpmn:text>ćwiczenie 7 z nagrania</bpmn:text>
</bpmn:textAnnotation>
<bpmn:association id="Association_0158u01" sourceRef="Event_1fx1s1y" targetRef="TextAnnotation_10it3zu" />
<bpmn:textAnnotation id="TextAnnotation_04cb0hh">
<bpmn:text>in terms of BPMN compliance everything is OK</bpmn:text>
</bpmn:textAnnotation>
<bpmn:association id="Association_11t5qv0" sourceRef="Activity_08l8irv" targetRef="TextAnnotation_04cb0hh" />
<bpmn:textAnnotation id="TextAnnotation_02mcuhb">
<bpmn:text>this gateway is acting both as merging and splitting gateway and that is against best practices, although allowed in BPMN</bpmn:text>
</bpmn:textAnnotation>
<bpmn:association id="Association_1dqcwog" sourceRef="Gateway_1tj48u2" targetRef="TextAnnotation_02mcuhb" />
<bpmn:textAnnotation id="TextAnnotation_11bat8n">
<bpmn:text>messages are received here, but nothing is happeing with that information, activity for the messages is missing</bpmn:text>
</bpmn:textAnnotation>
<bpmn:association id="Association_06jyib5" sourceRef="Event_1xe1j2a" targetRef="TextAnnotation_11bat8n" />
<bpmn:textAnnotation id="TextAnnotation_0yhmjs5">
<bpmn:text>event subprocess</bpmn:text>
</bpmn:textAnnotation>
<bpmn:association id="Association_0vevscn" sourceRef="Activity_133l9mx" targetRef="TextAnnotation_0yhmjs5" />
<bpmn:textAnnotation id="TextAnnotation_1xweku8">
<bpmn:text>ćwiczenie 6 z nagrania</bpmn:text>
</bpmn:textAnnotation>
<bpmn:association id="Association_06zjhw6" sourceRef="Event_1pse4ry" targetRef="TextAnnotation_1xweku8" />
<bpmn:textAnnotation id="TextAnnotation_1c8ttri">
<bpmn:text>there is nothing wrong in terms of BPMN compliance</bpmn:text>
</bpmn:textAnnotation>
<bpmn:association id="Association_147zxao" sourceRef="Activity_0dx2rr6" targetRef="TextAnnotation_1c8ttri" />
<bpmn:textAnnotation id="TextAnnotation_0dc8bpj">
<bpmn:text>question is how does it work, we have event subprocess at the bottom, that is triggered whenever message is received</bpmn:text>
</bpmn:textAnnotation>
<bpmn:association id="Association_0pn75g7" sourceRef="Activity_0dx2rr6" targetRef="TextAnnotation_0dc8bpj" />
<bpmn:textAnnotation id="TextAnnotation_1gjesyf">
<bpmn:text>non interrupting start event</bpmn:text>
</bpmn:textAnnotation>
<bpmn:association id="Association_1772cig" sourceRef="Event_059kv0n" targetRef="TextAnnotation_1gjesyf" />
<bpmn:textAnnotation id="TextAnnotation_18py2k0">
<bpmn:text>this is terminate end event, normally terminate end event kills the token in parent process, but this particular terminate end event kills tokens only in the scope of the event subprocess, not in the scope of the parent, terminate end event needs to be in the scope of a parent process to kill tokens there</bpmn:text>
</bpmn:textAnnotation>
<bpmn:association id="Association_0vgitok" sourceRef="Event_1d7cb2y" targetRef="TextAnnotation_18py2k0" />
<bpmn:textAnnotation id="TextAnnotation_0zq1asn">
<bpmn:text>the way to change that so the termiante start event will kill tokens also in the scope of a parent process is to cznege non-interrupting start event to interrupting start event</bpmn:text>
</bpmn:textAnnotation>
<bpmn:association id="Association_0kbkmkp" sourceRef="Event_059kv0n" targetRef="TextAnnotation_0zq1asn" />
</bpmn:process>
<bpmndi:BPMNDiagram id="BPMNDiagram_1">
<bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="Process_1rgl9oo">
<bpmndi:BPMNShape id="TextAnnotation_0okdi8x_di" bpmnElement="TextAnnotation_0okdi8x">
<dc:Bounds x="670" y="390" width="100" height="41" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="TextAnnotation_0eukoij_di" bpmnElement="TextAnnotation_0eukoij">
<dc:Bounds x="1010" y="340" width="100" height="55" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="TextAnnotation_1fjy2tz_di" bpmnElement="TextAnnotation_1fjy2tz">
<dc:Bounds x="1140" y="340" width="100" height="70" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="TextAnnotation_1vnae7c_di" bpmnElement="TextAnnotation_1vnae7c">
<dc:Bounds x="990" y="690" width="100" height="41" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="TextAnnotation_19tfbdc_di" bpmnElement="TextAnnotation_19tfbdc">
<dc:Bounds x="1000" y="530" width="100" height="41" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="TextAnnotation_111k96a_di" bpmnElement="TextAnnotation_111k96a">
<dc:Bounds x="270" y="80" width="100" height="70" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="TextAnnotation_1m6aljd_di" bpmnElement="TextAnnotation_1m6aljd">
<dc:Bounds x="300" y="480" width="100" height="41" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="TextAnnotation_17mrlf4_di" bpmnElement="TextAnnotation_17mrlf4">
<dc:Bounds x="280" y="701" width="100" height="30" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="TextAnnotation_0t6fcd0_di" bpmnElement="TextAnnotation_0t6fcd0">
<dc:Bounds x="337" y="810" width="160" height="50" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="TextAnnotation_1q68j7s_di" bpmnElement="TextAnnotation_1q68j7s">
<dc:Bounds x="160" y="420" width="100" height="84" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="TextAnnotation_1dzvhz9_di" bpmnElement="TextAnnotation_1dzvhz9">
<dc:Bounds x="397" y="1280" width="100" height="30" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="TextAnnotation_1q4r506_di" bpmnElement="TextAnnotation_1q4r506">
<dc:Bounds x="1110" y="1040" width="100" height="84" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="TextAnnotation_1gqc7fa_di" bpmnElement="TextAnnotation_1gqc7fa">
<dc:Bounds x="160" y="970" width="100" height="55" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="TextAnnotation_10wbso2_di" bpmnElement="TextAnnotation_10wbso2">
<dc:Bounds x="160" y="1590" width="100" height="41" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="TextAnnotation_1hk8ghx_di" bpmnElement="TextAnnotation_1hk8ghx">
<dc:Bounds x="1165" y="1770" width="210" height="60" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="TextAnnotation_1yihbey_di" bpmnElement="TextAnnotation_1yihbey">
<dc:Bounds x="1165" y="1910" width="210" height="113" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="TextAnnotation_1yrg9fl_di" bpmnElement="TextAnnotation_1yrg9fl">
<dc:Bounds x="1265" y="2070" width="100" height="30" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="TextAnnotation_0cvb02d_di" bpmnElement="TextAnnotation_0cvb02d">
<dc:Bounds x="1335" y="2070" width="100" height="30" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="TextAnnotation_0at62ve_di" bpmnElement="TextAnnotation_0at62ve">
<dc:Bounds x="1225" y="2290" width="180" height="98" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="TextAnnotation_1u6kuxz_di" bpmnElement="TextAnnotation_1u6kuxz">
<dc:Bounds x="160" y="2190" width="100" height="41" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="TextAnnotation_0zc3iu2_di" bpmnElement="TextAnnotation_0zc3iu2">
<dc:Bounds x="1210" y="2480" width="195" height="90" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="TextAnnotation_1qyco94_di" bpmnElement="TextAnnotation_1qyco94">
<dc:Bounds x="1210" y="2590" width="100" height="41" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="TextAnnotation_1x5qoob_di" bpmnElement="TextAnnotation_1x5qoob">
<dc:Bounds x="670" y="2710" width="100" height="41" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="TextAnnotation_1y9b6xp_di" bpmnElement="TextAnnotation_1y9b6xp">
<dc:Bounds x="160" y="2710" width="100" height="41" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="TextAnnotation_14qvj0l_di" bpmnElement="TextAnnotation_14qvj0l">
<dc:Bounds x="900" y="2710" width="100" height="55" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="TextAnnotation_08urwke_di" bpmnElement="TextAnnotation_08urwke">
<dc:Bounds x="1258" y="2870" width="100" height="98" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="TextAnnotation_1qq3smo_di" bpmnElement="TextAnnotation_1qq3smo">
<dc:Bounds x="600" y="2990" width="100" height="41" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="TextAnnotation_1k8bqj8_di" bpmnElement="TextAnnotation_1k8bqj8">
<dc:Bounds x="1160" y="3110" width="245" height="70" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="TextAnnotation_1tztk4d_di" bpmnElement="TextAnnotation_1tztk4d">
<dc:Bounds x="1160" y="3040" width="245" height="41" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="TextAnnotation_0igeey1_di" bpmnElement="TextAnnotation_0igeey1">
<dc:Bounds x="1160" y="3200" width="215" height="113" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="TextAnnotation_1bjcjjs_di" bpmnElement="TextAnnotation_1bjcjjs">
<dc:Bounds x="1160" y="3340" width="150" height="100" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="TextAnnotation_0abxhww_di" bpmnElement="TextAnnotation_0abxhww">
<dc:Bounds x="740" y="3690" width="100" height="41" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="TextAnnotation_0coi29d_di" bpmnElement="TextAnnotation_0coi29d">
<dc:Bounds x="1265" y="3655" width="205" height="95" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="TextAnnotation_0k6xh36_di" bpmnElement="TextAnnotation_0k6xh36">
<dc:Bounds x="1265" y="3790" width="225" height="113" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="TextAnnotation_1wfszwl_di" bpmnElement="TextAnnotation_1wfszwl">
<dc:Bounds x="1265" y="3528" width="130" height="84" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="TextAnnotation_1g5tix2_di" bpmnElement="TextAnnotation_1g5tix2">
<dc:Bounds x="160" y="3460" width="100" height="41" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="TextAnnotation_0r1yekq_di" bpmnElement="TextAnnotation_0r1yekq">
<dc:Bounds x="875" y="3990" width="100" height="113" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="TextAnnotation_1tgcvdo_di" bpmnElement="TextAnnotation_1tgcvdo">
<dc:Bounds x="875" y="4120" width="155" height="98" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="TextAnnotation_1ef24uq_di" bpmnElement="TextAnnotation_1ef24uq">
<dc:Bounds x="160" y="3910" width="100" height="41" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="TextAnnotation_10it3zu_di" bpmnElement="TextAnnotation_10it3zu">
<dc:Bounds x="160" y="4360" width="100" height="41" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="TextAnnotation_04cb0hh_di" bpmnElement="TextAnnotation_04cb0hh">
<dc:Bounds x="1240" y="4400" width="100" height="84" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="TextAnnotation_11bat8n_di" bpmnElement="TextAnnotation_11bat8n">
<dc:Bounds x="1242" y="4650" width="205" height="70" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="TextAnnotation_02mcuhb_di" bpmnElement="TextAnnotation_02mcuhb">
<dc:Bounds x="1242" y="4550" width="210" height="80" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="TextAnnotation_1xweku8_di" bpmnElement="TextAnnotation_1xweku8">
<dc:Bounds x="160" y="5070" width="100" height="41" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="TextAnnotation_1c8ttri_di" bpmnElement="TextAnnotation_1c8ttri">
<dc:Bounds x="1080" y="5220" width="145" height="60" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="TextAnnotation_0dc8bpj_di" bpmnElement="TextAnnotation_0dc8bpj">
<dc:Bounds x="952" y="5360" width="228" height="70" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="TextAnnotation_1gjesyf_di" bpmnElement="TextAnnotation_1gjesyf">
<dc:Bounds x="250" y="5229" width="100" height="41" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="TextAnnotation_18py2k0_di" bpmnElement="TextAnnotation_18py2k0">
<dc:Bounds x="950" y="5460" width="215" height="142" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="TextAnnotation_0yhmjs5_di" bpmnElement="TextAnnotation_0yhmjs5">