-
Notifications
You must be signed in to change notification settings - Fork 0
/
uml_object_diagram.object.violet.html
1971 lines (1971 loc) · 118 KB
/
uml_object_diagram.object.violet.html
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
<HTML>
<HEAD>
<META name="description"
content="Violet UML Editor cross format document" />
<META name="keywords" content="Violet, UML" />
<META charset="UTF-8" />
<SCRIPT type="text/javascript">
function switchVisibility() {
var obj = document.getElementById("content");
obj.style.display = (obj.style.display == "block") ? "none" : "block";
}
</SCRIPT>
</HEAD>
<BODY>
This file was generated with Violet UML Editor 2.1.0.
( <A href=# onclick="switchVisibility()">View Source</A> / <A href="http://sourceforge.net/projects/violet/files/violetumleditor/" target="_blank">Download Violet</A> )
<BR />
<BR />
<SCRIPT id="content" type="text/xml"><![CDATA[<ObjectDiagramGraph id="1">
<nodes id="2">
<ObjectNode id="3">
<children id="4">
<FieldNode id="5">
<children id="6"/>
<parent class="ObjectNode" reference="3"/>
<location class="Point2D.Double" id="7" x="0.0" y="0.0"/>
<id id="8" value="d662643a-7574-45dc-888d-43aced175578"/>
<revision>1</revision>
<backgroundColor id="9">
<red>255</red>
<green>255</green>
<blue>255</blue>
<alpha>255</alpha>
</backgroundColor>
<borderColor id="10">
<red>0</red>
<green>0</green>
<blue>0</blue>
<alpha>255</alpha>
</borderColor>
<textColor reference="10"/>
<name id="11" justification="1" size="4" underlined="false">
<text>prefix</text>
</name>
<value id="12" justification="1" size="4" underlined="false">
<text>null</text>
</value>
<equalSeparator id="13" justification="1" size="4" underlined="false">
<text> = </text>
</equalSeparator>
</FieldNode>
<FieldNode id="14">
<children id="15"/>
<parent class="ObjectNode" reference="3"/>
<location class="Point2D.Double" id="16" x="40.0" y="100.0"/>
<id id="17" value="5fcf7634-aeb6-4e54-879e-556256bbc800"/>
<revision>1</revision>
<backgroundColor reference="9"/>
<borderColor reference="10"/>
<textColor reference="10"/>
<name id="18" justification="1" size="4" underlined="false">
<text>suffix</text>
</name>
<value id="19" justification="1" size="4" underlined="false">
<text>null</text>
</value>
<equalSeparator reference="13"/>
</FieldNode>
<FieldNode id="20">
<children id="21"/>
<parent class="ObjectNode" reference="3"/>
<location class="Point2D.Double" id="22" x="0.0" y="0.0"/>
<id id="23" value="01f2cf0f-2e7c-468f-9c4b-0655b750644d"/>
<revision>1</revision>
<backgroundColor reference="9"/>
<borderColor reference="10"/>
<textColor reference="10"/>
<name id="24" justification="1" size="4" underlined="false">
<text>combinator</text>
</name>
<value id="25" justification="1" size="4" underlined="false">
<text>( _ , _ ) => "abc"</text>
</value>
<equalSeparator reference="13"/>
</FieldNode>
<FieldNode id="26">
<children id="27"/>
<parent class="ObjectNode" reference="3"/>
<location class="Point2D.Double" id="28" x="0.0" y="0.0"/>
<id id="29" value="4bfa8201-4436-4488-bf5a-4f6d5a1db1b3"/>
<revision>1</revision>
<backgroundColor reference="9"/>
<borderColor reference="10"/>
<textColor reference="10"/>
<name id="30" justification="1" size="4" underlined="false">
<text>toString()</text>
</name>
<value id="31" justification="1" size="4" underlined="false">
<text>() => combinator ( null, null ) returns "abc"</text>
</value>
<equalSeparator reference="13"/>
</FieldNode>
</children>
<location class="Point2D.Double" id="32" x="2080.0" y="840.0"/>
<id id="33" value="7378a5cf-f78a-404b-8c09-702d6d363aa5"/>
<revision>1</revision>
<backgroundColor reference="9"/>
<borderColor reference="10"/>
<textColor reference="10"/>
<name id="34" justification="1" size="3" underlined="true">
<text>abc: LazyRiotString</text>
</name>
</ObjectNode>
<ObjectNode id="35">
<children id="36">
<FieldNode id="37">
<children id="38"/>
<parent class="ObjectNode" reference="35"/>
<location class="Point2D.Double" id="39" x="0.0" y="0.0"/>
<id id="40" value="f5c2aa4b-0f85-4a79-ace3-c8ec7ce17979"/>
<revision>1</revision>
<backgroundColor reference="9"/>
<borderColor reference="10"/>
<textColor reference="10"/>
<name id="41" justification="1" size="4" underlined="false">
<text>prefix</text>
</name>
<value id="42" justification="1" size="4" underlined="false">
<text>null</text>
</value>
<equalSeparator reference="13"/>
</FieldNode>
<FieldNode id="43">
<children id="44"/>
<parent class="ObjectNode" reference="35"/>
<location class="Point2D.Double" id="45" x="0.0" y="0.0"/>
<id id="46" value="3578d9ed-7da5-4f80-ad95-d320d2d337fc"/>
<revision>1</revision>
<backgroundColor reference="9"/>
<borderColor reference="10"/>
<textColor reference="10"/>
<name id="47" justification="1" size="4" underlined="false">
<text>suffix</text>
</name>
<value id="48" justification="1" size="4" underlined="false">
<text>null</text>
</value>
<equalSeparator reference="13"/>
</FieldNode>
<FieldNode id="49">
<children id="50"/>
<parent class="ObjectNode" reference="35"/>
<location class="Point2D.Double" id="51" x="0.0" y="0.0"/>
<id id="52" value="0f82cfa1-4769-4dd9-9c0b-632a70bf271b"/>
<revision>1</revision>
<backgroundColor reference="9"/>
<borderColor reference="10"/>
<textColor reference="10"/>
<name id="53" justification="1" size="4" underlined="false">
<text>combinator</text>
</name>
<value id="54" justification="1" size="4" underlined="false">
<text>( _ , _ ) => "xyz"</text>
</value>
<equalSeparator reference="13"/>
</FieldNode>
<FieldNode id="55">
<children id="56"/>
<parent class="ObjectNode" reference="35"/>
<location class="Point2D.Double" id="57" x="0.0" y="0.0"/>
<id id="58" value="00a1e83a-36bb-4571-a972-2e39f6e89a4e"/>
<revision>1</revision>
<backgroundColor reference="9"/>
<borderColor reference="10"/>
<textColor reference="10"/>
<name id="59" justification="1" size="4" underlined="false">
<text>toString()</text>
</name>
<value id="60" justification="1" size="4" underlined="false">
<text>() => combinator ( null, null ) returns "xyz"</text>
</value>
<equalSeparator reference="13"/>
</FieldNode>
</children>
<location class="Point2D.Double" id="61" x="2100.0" y="1090.0"/>
<id id="62" value="1d36d5d0-cd27-4019-866a-bf8a649a0573"/>
<revision>1</revision>
<backgroundColor reference="9"/>
<borderColor reference="10"/>
<textColor reference="10"/>
<name id="63" justification="1" size="3" underlined="true">
<text>xyz: LazyRiotString</text>
</name>
</ObjectNode>
<ObjectNode id="64">
<children id="65">
<FieldNode id="66">
<children id="67"/>
<parent class="ObjectNode" reference="64"/>
<location class="Point2D.Double" id="68" x="10.0" y="60.0"/>
<id id="69" value="b6b3f999-62f3-4979-a752-7b96e222b28f"/>
<revision>1</revision>
<backgroundColor reference="9"/>
<borderColor reference="10"/>
<textColor reference="10"/>
<name id="70" justification="1" size="4" underlined="false">
<text>prefix</text>
</name>
<value id="71" justification="1" size="4" underlined="false">
<text></text>
</value>
<equalSeparator reference="13"/>
</FieldNode>
<FieldNode id="72">
<children id="73"/>
<parent class="ObjectNode" reference="64"/>
<location class="Point2D.Double" id="74" x="0.0" y="0.0"/>
<id id="75" value="8ca001d5-99a7-44cf-a373-3046902fb8de"/>
<revision>1</revision>
<backgroundColor reference="9"/>
<borderColor reference="10"/>
<textColor reference="10"/>
<name id="76" justification="1" size="4" underlined="false">
<text>suffix</text>
</name>
<value id="77" justification="1" size="4" underlined="false">
<text></text>
</value>
<equalSeparator reference="13"/>
</FieldNode>
<FieldNode id="78">
<children id="79"/>
<parent class="ObjectNode" reference="64"/>
<location class="Point2D.Double" id="80" x="0.0" y="0.0"/>
<id id="81" value="8a2fe0bc-a182-4ca1-8a6d-d46b766333c2"/>
<revision>1</revision>
<backgroundColor reference="9"/>
<borderColor reference="10"/>
<textColor reference="10"/>
<name id="82" justification="1" size="4" underlined="false">
<text>combinator</text>
</name>
<value id="83" justification="1" size="4" underlined="false">
<text>(p, s) => "" + p + s</text>
</value>
<equalSeparator reference="13"/>
</FieldNode>
<FieldNode id="84">
<children id="85"/>
<parent class="ObjectNode" reference="64"/>
<location class="Point2D.Double" id="86" x="0.0" y="0.0"/>
<id id="87" value="de35f1a9-f25f-4804-84cc-d1659ec9f969"/>
<revision>1</revision>
<backgroundColor reference="9"/>
<borderColor reference="10"/>
<textColor reference="10"/>
<name id="88" justification="1" size="4" underlined="false">
<text>toString()</text>
</name>
<value id="89" justification="1" size="4" underlined="false">
<text>() => combinator ( prefix, suffix ) returns "xyz"</text>
</value>
<equalSeparator reference="13"/>
</FieldNode>
</children>
<location class="Point2D.Double" id="90" x="1550.0" y="1110.0"/>
<id id="91" value="3be2fa56-2c16-4336-b92a-2f2b8663140b"/>
<revision>1</revision>
<backgroundColor reference="9"/>
<borderColor reference="10"/>
<textColor reference="10"/>
<name id="92" justification="1" size="3" underlined="true">
<text>abc_then_xyz: LazyRiotString</text>
</name>
</ObjectNode>
<ObjectNode id="93">
<children id="94">
<FieldNode id="95">
<children id="96"/>
<parent class="ObjectNode" reference="93"/>
<location class="Point2D.Double" id="97" x="100.0" y="60.0"/>
<id id="98" value="b6b3f999-62f3-4979-a752-7b96e222b28f"/>
<revision>1</revision>
<backgroundColor id="99">
<red>255</red>
<green>255</green>
<blue>255</blue>
<alpha>255</alpha>
</backgroundColor>
<borderColor id="100">
<red>0</red>
<green>0</green>
<blue>0</blue>
<alpha>255</alpha>
</borderColor>
<textColor reference="100"/>
<name id="101" justification="1" size="4" underlined="false">
<text>prefix</text>
</name>
<value id="102" justification="1" size="4" underlined="false">
<text></text>
</value>
<equalSeparator id="103" justification="1" size="4" underlined="false">
<text> = </text>
</equalSeparator>
</FieldNode>
<FieldNode id="104">
<children id="105"/>
<parent class="ObjectNode" reference="93"/>
<location class="Point2D.Double" id="106" x="100.0" y="100.0"/>
<id id="107" value="8ca001d5-99a7-44cf-a373-3046902fb8de"/>
<revision>1</revision>
<backgroundColor reference="99"/>
<borderColor reference="100"/>
<textColor reference="100"/>
<name id="108" justification="1" size="4" underlined="false">
<text>suffix</text>
</name>
<value id="109" justification="1" size="4" underlined="false">
<text></text>
</value>
<equalSeparator reference="103"/>
</FieldNode>
<FieldNode id="110">
<children id="111"/>
<parent class="ObjectNode" reference="93"/>
<location class="Point2D.Double" id="112" x="30.0" y="140.0"/>
<id id="113" value="8a2fe0bc-a182-4ca1-8a6d-d46b766333c2"/>
<revision>1</revision>
<backgroundColor reference="99"/>
<borderColor reference="100"/>
<textColor reference="100"/>
<name id="114" justification="1" size="4" underlined="false">
<text>combinator</text>
</name>
<value id="115" justification="1" size="4" underlined="false">
<text>(p, s) => "" + p + "|" + s</text>
</value>
<equalSeparator reference="103"/>
</FieldNode>
<FieldNode id="116">
<children id="117"/>
<parent class="ObjectNode" reference="93"/>
<location class="Point2D.Double" id="118" x="0.0" y="180.0"/>
<id id="119" value="de35f1a9-f25f-4804-84cc-d1659ec9f969"/>
<revision>1</revision>
<backgroundColor reference="99"/>
<borderColor reference="100"/>
<textColor reference="100"/>
<name id="120" justification="1" size="4" underlined="false">
<text>toString()</text>
</name>
<value id="121" justification="1" size="4" underlined="false">
<text>() => combinator ( prefix, suffix ) returns "abc|xyz"</text>
</value>
<equalSeparator reference="103"/>
</FieldNode>
</children>
<location class="Point2D.Double" id="122" x="1540.0" y="770.0"/>
<id id="123" value="990d1b99-90e7-403e-9e27-71c8c9b0a1cb"/>
<revision>1</revision>
<backgroundColor reference="99"/>
<borderColor reference="100"/>
<textColor reference="100"/>
<name id="124" justification="1" size="3" underlined="true">
<text>abc_or_xyz: LazyRiotString</text>
</name>
</ObjectNode>
<ObjectNode id="125">
<children id="126">
<FieldNode id="127">
<children id="128"/>
<parent class="ObjectNode" reference="125"/>
<location class="Point2D.Double" id="129" x="100.0" y="70.0"/>
<id id="130" value="b6b3f999-62f3-4979-a752-7b96e222b28f"/>
<revision>1</revision>
<backgroundColor id="131">
<red>255</red>
<green>255</green>
<blue>255</blue>
<alpha>255</alpha>
</backgroundColor>
<borderColor id="132">
<red>0</red>
<green>0</green>
<blue>0</blue>
<alpha>255</alpha>
</borderColor>
<textColor reference="132"/>
<name id="133" justification="1" size="4" underlined="false">
<text>prefix</text>
</name>
<value id="134" justification="1" size="4" underlined="false">
<text></text>
</value>
<equalSeparator id="135" justification="1" size="4" underlined="false">
<text> = </text>
</equalSeparator>
</FieldNode>
<FieldNode id="136">
<children id="137"/>
<parent class="ObjectNode" reference="125"/>
<location class="Point2D.Double" id="138" x="130.0" y="100.0"/>
<id id="139" value="8ca001d5-99a7-44cf-a373-3046902fb8de"/>
<revision>1</revision>
<backgroundColor reference="131"/>
<borderColor reference="132"/>
<textColor reference="132"/>
<name id="140" justification="1" size="4" underlined="false">
<text>suffix</text>
</name>
<value id="141" justification="1" size="4" underlined="false">
<text></text>
</value>
<equalSeparator reference="135"/>
</FieldNode>
<FieldNode id="142">
<children id="143"/>
<parent class="ObjectNode" reference="125"/>
<location class="Point2D.Double" id="144" x="10.0" y="140.0"/>
<id id="145" value="8a2fe0bc-a182-4ca1-8a6d-d46b766333c2"/>
<revision>1</revision>
<backgroundColor reference="131"/>
<borderColor reference="132"/>
<textColor reference="132"/>
<name id="146" justification="1" size="4" underlined="false">
<text>combinator</text>
</name>
<value id="147" justification="1" size="4" underlined="false">
<text>(p, s) => "(" + abc_or_xyz.combinator( prefix, suffix ) + ")" + "{3}"</text>
</value>
<equalSeparator reference="135"/>
</FieldNode>
<FieldNode id="148">
<children id="149"/>
<parent class="ObjectNode" reference="125"/>
<location class="Point2D.Double" id="150" x="0.0" y="180.0"/>
<id id="151" value="de35f1a9-f25f-4804-84cc-d1659ec9f969"/>
<revision>1</revision>
<backgroundColor reference="131"/>
<borderColor reference="132"/>
<textColor reference="132"/>
<name id="152" justification="1" size="4" underlined="false">
<text>toString()</text>
</name>
<value id="153" justification="1" size="4" underlined="false">
<text>() => combinator ( prefix, suffix ) returns "(abc|xyz){3}"</text>
</value>
<equalSeparator reference="135"/>
</FieldNode>
</children>
<location class="Point2D.Double" id="154" x="900.0" y="770.0"/>
<id id="155" value="24280da4-ef68-4598-986c-3eb29469bd83"/>
<revision>1</revision>
<backgroundColor reference="131"/>
<borderColor reference="132"/>
<textColor reference="132"/>
<name id="156" justification="1" size="3" underlined="true">
<text>abc_or_xyz_whole_3_times: LazyRiotString</text>
</name>
</ObjectNode>
<ObjectNode id="157">
<children id="158">
<FieldNode id="159">
<children id="160"/>
<parent class="ObjectNode" reference="157"/>
<location class="Point2D.Double" id="161" x="100.0" y="60.0"/>
<id id="162" value="b6b3f999-62f3-4979-a752-7b96e222b28f"/>
<revision>1</revision>
<backgroundColor id="163">
<red>255</red>
<green>255</green>
<blue>255</blue>
<alpha>255</alpha>
</backgroundColor>
<borderColor id="164">
<red>0</red>
<green>0</green>
<blue>0</blue>
<alpha>255</alpha>
</borderColor>
<textColor reference="164"/>
<name id="165" justification="1" size="4" underlined="false">
<text>prefix</text>
</name>
<value id="166" justification="1" size="4" underlined="false">
<text></text>
</value>
<equalSeparator id="167" justification="1" size="4" underlined="false">
<text> = </text>
</equalSeparator>
</FieldNode>
<FieldNode id="168">
<children id="169"/>
<parent class="ObjectNode" reference="157"/>
<location class="Point2D.Double" id="170" x="100.0" y="100.0"/>
<id id="171" value="8ca001d5-99a7-44cf-a373-3046902fb8de"/>
<revision>1</revision>
<backgroundColor reference="163"/>
<borderColor reference="164"/>
<textColor reference="164"/>
<name id="172" justification="1" size="4" underlined="false">
<text>suffix</text>
</name>
<value id="173" justification="1" size="4" underlined="false">
<text></text>
</value>
<equalSeparator reference="167"/>
</FieldNode>
<FieldNode id="174">
<children id="175"/>
<parent class="ObjectNode" reference="157"/>
<location class="Point2D.Double" id="176" x="30.0" y="140.0"/>
<id id="177" value="8a2fe0bc-a182-4ca1-8a6d-d46b766333c2"/>
<revision>1</revision>
<backgroundColor reference="163"/>
<borderColor reference="164"/>
<textColor reference="164"/>
<name id="178" justification="1" size="4" underlined="false">
<text>combinator</text>
</name>
<value id="179" justification="1" size="4" underlined="false">
<text></text>
</value>
<equalSeparator reference="167"/>
</FieldNode>
<FieldNode id="180">
<children id="181"/>
<parent class="ObjectNode" reference="157"/>
<location class="Point2D.Double" id="182" x="0.0" y="180.0"/>
<id id="183" value="de35f1a9-f25f-4804-84cc-d1659ec9f969"/>
<revision>1</revision>
<backgroundColor reference="163"/>
<borderColor reference="164"/>
<textColor reference="164"/>
<name id="184" justification="1" size="4" underlined="false">
<text>toString()</text>
</name>
<value id="185" justification="1" size="4" underlined="false">
<text>() => combinator ( prefix, suffix ) returns "abc(xyz)?"</text>
</value>
<equalSeparator reference="167"/>
</FieldNode>
</children>
<location class="Point2D.Double" id="186" x="840.0" y="1100.0"/>
<id id="187" value="c8c5092b-3996-4cc1-a09c-7f155250dfa2"/>
<revision>1</revision>
<backgroundColor reference="163"/>
<borderColor reference="164"/>
<textColor reference="164"/>
<name id="188" justification="1" size="3" underlined="true">
<text>abc_then_xyz_only_xyz_optional: LazyRiotString </text>
</name>
</ObjectNode>
<ObjectNode id="189">
<children id="190">
<FieldNode id="191">
<children id="192"/>
<parent class="ObjectNode" reference="189"/>
<location class="Point2D.Double" id="193" x="70.0" y="60.0"/>
<id id="194" value="f5c2aa4b-0f85-4a79-ace3-c8ec7ce17979"/>
<revision>1</revision>
<backgroundColor id="195">
<red>255</red>
<green>255</green>
<blue>255</blue>
<alpha>255</alpha>
</backgroundColor>
<borderColor id="196">
<red>0</red>
<green>0</green>
<blue>0</blue>
<alpha>255</alpha>
</borderColor>
<textColor reference="196"/>
<name id="197" justification="1" size="4" underlined="false">
<text>prefix</text>
</name>
<value id="198" justification="1" size="4" underlined="false">
<text>null</text>
</value>
<equalSeparator id="199" justification="1" size="4" underlined="false">
<text> = </text>
</equalSeparator>
</FieldNode>
<FieldNode id="200">
<children id="201"/>
<parent class="ObjectNode" reference="189"/>
<location class="Point2D.Double" id="202" x="70.0" y="100.0"/>
<id id="203" value="3578d9ed-7da5-4f80-ad95-d320d2d337fc"/>
<revision>1</revision>
<backgroundColor reference="195"/>
<borderColor reference="196"/>
<textColor reference="196"/>
<name id="204" justification="1" size="4" underlined="false">
<text>suffix</text>
</name>
<value id="205" justification="1" size="4" underlined="false">
<text>null</text>
</value>
<equalSeparator reference="199"/>
</FieldNode>
<FieldNode id="206">
<children id="207"/>
<parent class="ObjectNode" reference="189"/>
<location class="Point2D.Double" id="208" x="20.0" y="140.0"/>
<id id="209" value="0f82cfa1-4769-4dd9-9c0b-632a70bf271b"/>
<revision>1</revision>
<backgroundColor reference="195"/>
<borderColor reference="196"/>
<textColor reference="196"/>
<name id="210" justification="1" size="4" underlined="false">
<text>combinator</text>
</name>
<value id="211" justification="1" size="4" underlined="false">
<text>( _ , _ ) => "(" + xyz.combinator( _ , _ ) + ")" + "?"</text>
</value>
<equalSeparator reference="199"/>
</FieldNode>
<FieldNode id="212">
<children id="213"/>
<parent class="ObjectNode" reference="189"/>
<location class="Point2D.Double" id="214" x="0.0" y="180.0"/>
<id id="215" value="00a1e83a-36bb-4571-a972-2e39f6e89a4e"/>
<revision>1</revision>
<backgroundColor reference="195"/>
<borderColor reference="196"/>
<textColor reference="196"/>
<name id="216" justification="1" size="4" underlined="false">
<text>toString()</text>
</name>
<value id="217" justification="1" size="4" underlined="false">
<text>() => combinator ( null, null ) returns "(xyz)?"</text>
</value>
<equalSeparator reference="199"/>
</FieldNode>
</children>
<location class="Point2D.Double" id="218" x="1940.0" y="1370.0"/>
<id id="219" value="3ea55943-2966-4092-9257-8e2acbe3c657"/>
<revision>1</revision>
<backgroundColor reference="195"/>
<borderColor reference="196"/>
<textColor reference="196"/>
<name id="220" justification="1" size="3" underlined="true">
<text>xyz_optional: LazyRiotString </text>
</name>
</ObjectNode>
<NoteNode id="221">
<children id="222"/>
<location class="Point2D.Double" id="223" x="1500.0" y="1160.0"/>
<id id="224" value="c18c7fa3-7a26-4e8c-8aa2-ff38d8b245b4"/>
<revision>1</revision>
<backgroundColor reference="9"/>
<borderColor reference="10"/>
<textColor reference="10"/>
<text id="225" justification="0" size="4" underlined="false">
<text>same prefix</text>
</text>
<color id="226">
<red>255</red>
<green>228</green>
<blue>181</blue>
<alpha>255</alpha>
</color>
</NoteNode>
<NoteNode id="227">
<children id="228"/>
<location class="Point2D.Double" id="229" x="1500.0" y="820.0"/>
<id id="230" value="9ba83deb-b30f-4124-909f-42c68886b978"/>
<revision>1</revision>
<backgroundColor id="231">
<red>255</red>
<green>255</green>
<blue>255</blue>
<alpha>255</alpha>
</backgroundColor>
<borderColor id="232">
<red>0</red>
<green>0</green>
<blue>0</blue>
<alpha>255</alpha>
</borderColor>
<textColor reference="232"/>
<text id="233" justification="0" size="4" underlined="false">
<text>same prefix</text>
</text>
<color id="234">
<red>255</red>
<green>228</green>
<blue>181</blue>
<alpha>255</alpha>
</color>
</NoteNode>
<NoteNode id="235">
<children id="236"/>
<location class="Point2D.Double" id="237" x="1470.0" y="890.0"/>
<id id="238" value="b00f63e6-c6af-4b76-95db-a4b9ff32b105"/>
<revision>1</revision>
<backgroundColor id="239">
<red>255</red>
<green>255</green>
<blue>255</blue>
<alpha>255</alpha>
</backgroundColor>
<borderColor id="240">
<red>0</red>
<green>0</green>
<blue>0</blue>
<alpha>255</alpha>
</borderColor>
<textColor reference="240"/>
<text id="241" justification="0" size="4" underlined="false">
<text>same suffix</text>
</text>
<color reference="226"/>
</NoteNode>
<NoteNode id="242">
<children id="243"/>
<location class="Point2D.Double" id="244" x="1460.0" y="1240.0"/>
<id id="245" value="cb8d5e3f-10e1-4c52-aaf2-6b4b10d8b715"/>
<revision>1</revision>
<backgroundColor id="246">
<red>255</red>
<green>255</green>
<blue>255</blue>
<alpha>255</alpha>
</backgroundColor>
<borderColor id="247">
<red>0</red>
<green>0</green>
<blue>0</blue>
<alpha>255</alpha>
</borderColor>
<textColor reference="247"/>
<text id="248" justification="0" size="4" underlined="false">
<text>same combinator</text>
</text>
<color reference="226"/>
</NoteNode>
</nodes>
<edges id="249">
<ObjectReferenceEdge id="250">
<start class="FieldNode" reference="66"/>
<end class="ObjectNode" reference="3"/>
<startLocation class="Point2D.Double" id="251" x="10.0" y="20.0"/>
<endLocation class="Point2D.Double" id="252" x="40.0" y="90.0"/>
<transitionPoints id="253"/>
<id id="254" value="346d1a1a-51d9-43b4-8dd3-c3f85d9b2cb6"/>
<revision>1</revision>
</ObjectReferenceEdge>
<ObjectReferenceEdge id="255">
<start class="FieldNode" reference="72"/>
<end class="ObjectNode" reference="35"/>
<startLocation class="Point2D.Double" id="256" x="70.0" y="20.0"/>
<endLocation class="Point2D.Double" id="257" x="30.0" y="90.0"/>
<transitionPoints id="258"/>
<id id="259" value="bc5c6194-0ec0-4483-a7e7-a3728df81497"/>
<revision>1</revision>
</ObjectReferenceEdge>
<ObjectReferenceEdge id="260">
<start class="FieldNode" reference="95"/>
<end class="ObjectNode" reference="3"/>
<startLocation class="Point2D.Double" id="261" x="30.0" y="20.0"/>
<endLocation class="Point2D.Double" id="262" x="10.0" y="160.0"/>
<transitionPoints id="263"/>
<id id="264" value="8d41b57e-aacb-4f9f-a9f6-e2762014e074"/>
<revision>1</revision>
</ObjectReferenceEdge>
<ObjectReferenceEdge id="265">
<start class="FieldNode" reference="104"/>
<end class="ObjectNode" reference="35"/>
<startLocation class="Point2D.Double" id="266" x="30.0" y="20.0"/>
<endLocation class="Point2D.Double" id="267" x="10.0" y="150.0"/>
<transitionPoints id="268"/>
<id id="269" value="25a203cf-38ba-4d30-98be-508da3ac820e"/>
<revision>1</revision>
</ObjectReferenceEdge>
<ObjectRelationshipEdge id="270">
<start class="ObjectNode" reference="189"/>
<end class="ObjectNode" reference="35"/>
<startLocation class="Point2D.Double" id="271" x="210.0" y="80.0"/>
<endLocation class="Point2D.Double" id="272" x="10.0" y="30.0"/>
<transitionPoints id="273"/>
<id id="274" value="1d4da53f-e4ff-4e77-8efa-fcc3992ee963"/>
<revision>1</revision>
<lineStyle name="SOLID"/>
<startArrowHead name="NONE"/>
<endArrowHead name="NONE"/>
<bentStyle name="STRAIGHT"/>
<startLabel></startLabel>
<middleLabel></middleLabel>
<endLabel></endLabel>
</ObjectRelationshipEdge>
<ObjectReferenceEdge id="275">
<start class="FieldNode" reference="136"/>
<end class="ObjectNode" reference="93"/>
<startLocation class="Point2D.Double" id="276" x="50.0" y="20.0"/>
<endLocation class="Point2D.Double" id="277" x="50.0" y="110.0"/>
<transitionPoints id="278"/>
<id id="279" value="0c0c7457-760c-46a5-b8a9-3528b0101111"/>
<revision>1</revision>
</ObjectReferenceEdge>
<ObjectReferenceEdge id="280">
<start class="FieldNode" reference="127"/>
<end class="ObjectNode" reference="93"/>
<startLocation class="Point2D.Double" id="281" x="50.0" y="20.0"/>
<endLocation class="Point2D.Double" id="282" x="40.0" y="70.0"/>
<transitionPoints id="283"/>
<id id="284" value="b7ff1d0a-8f9e-4dbe-aa46-116f4280f83a"/>
<revision>1</revision>
</ObjectReferenceEdge>
<ObjectReferenceEdge id="285">
<start class="FieldNode" reference="168"/>
<end class="ObjectNode" reference="189"/>
<startLocation class="Point2D.Double" id="286" x="50.0" y="20.0"/>
<endLocation class="Point2D.Double" id="287" x="10.0" y="90.0"/>
<transitionPoints id="288"/>
<id id="289" value="4ee412c8-1ef6-49e0-8030-8249c0baf7f0"/>
<revision>1</revision>
</ObjectReferenceEdge>
<ObjectReferenceEdge id="290">
<start class="FieldNode" reference="174"/>
<end class="ObjectNode" reference="64"/>
<startLocation class="Point2D.Double" id="291" x="90.0" y="20.0"/>
<endLocation class="Point2D.Double" id="292" x="20.0" y="160.0"/>
<transitionPoints id="293"/>
<id id="294" value="f42c9331-c917-4420-aec4-ce736c88487a"/>
<revision>1</revision>
</ObjectReferenceEdge>
<ObjectReferenceEdge id="295">
<start class="FieldNode" reference="159"/>
<end class="ObjectNode" reference="64"/>
<startLocation class="Point2D.Double" id="296" x="40.0" y="20.0"/>
<endLocation class="Point2D.Double" id="297" x="0.0" y="140.0"/>
<transitionPoints id="298"/>
<id id="299" value="547802d6-66a5-47d9-96e9-179151a4d532"/>
<revision>1</revision>
</ObjectReferenceEdge>
</edges>
</ObjectDiagramGraph>]]></SCRIPT>
<BR />
<BR />
<IMG alt="embedded diagram image" src="data:image/png;base64,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
opH58r/q25999pk2x3drMi1b8NuLHFVmZmZGRsbbb78tP8rhaduUH2V5mZB3je/x+C2jJrZv356f
n++7cTXR09Pz0ksvybvv/PnzMvPBgwfyWqRl3nvvPYpi0GeuQT0LAED+AOIvgHnwer0DAwO1tbWS
Wufm5jY2NkajsEU80lVMyc/Pv3DhwszXJaS1a9fOfF3HOXTo0IcffigTlZWVMvPtt9+WaZkzMjIi
E1u3bp2JuJ4VdC9Kb2+vzNm7d++vfvUrmWhpaZGZ8r9MHzlyxHdrly9flmm73e67l3feeUcmnE7n
6dOnZeLYsWN+xyDLa/Wyq1evBj1ONS1H8vDhw5mAepYcmMvlkgmz2Swzq6qqZLqjo2Pfvn3Us6DP
XIN6FgCA/AHEXwALNDg4WF9fb7VaJV1vampawsIW8UhvMeXGjRuHDx/esmWLekzVzNd1HK/X+/jx
Y5nIzMyUmWvXrpXp6enpObcfNGwF7kXI9tetW5eVlfX555+rcpV6ptW2bdtkenh42O8eru3bt9+9
e9d3L2azWSYez/Krx6ld3Lt3b+PGjdoWdu/erW43C6xnad/A4FfP+uqrr2Z8bg2To1V79Hg81LOg
z1yDehYAgPwBxF8AiyU5f2NjY0FBQW5ursPhUM8JIh4hwpiiPjS3a9eumzdv+tVxtOUDP+IXfvuB
iwXdizh69KhMy2/Vj5mZmUlJSffv35f/161b57u1ixcvyky73a5Vl3w/Thj+UKenp0+ePPn888+r
+YWFhTPB6lmBLyHoMnIYoVYEdJJrUM8CAJA/gPgLYMm4XC6Hw2G1WgsKChobG0dGRohHmDOmqCdJ
Tc/yq+NoNz1lZWXNfH1/lsyZc/uBYSvoXu7evSvzfZ/vXl5erm6hkv/feustv621trYGzteOSh2q
xWIJdQxer1dtIbDmNa96ltFoVHv86quvqGdBn7kG9SwAAPkDiL8Alt7g4GBVVZVk3YWFhS0tLfP9
VkTika5iiqoH3bp169SpU351nMOHD3/00UcysX///pmvn5/V0dGhPgY4r+dnBd2Lqlv5PtNK7U65
fv164Nby8vKSkpLcbrc2Xz1jSzarnp91/Pjxmdn7vGR6ampKrSLTfX19Mi37Uh9a9FtmXvWsAwcO
yMSZM2fUBDEaOsw1qGcBAMgfQPwFEC1er7e3t7esrCwtLa2kpKStrW1ycpJ4BL+Y0tPTYzQaMzMz
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