-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html?p=1111.html
More file actions
1834 lines (1307 loc) · 138 KB
/
Copy pathindex.html?p=1111.html
File metadata and controls
1834 lines (1307 loc) · 138 KB
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
<!doctype html>
<html lang="en-US" prefix="og: https://ogp.me/ns#">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="profile" href="http://gmpg.org/xfn/11">
<!-- Search Engine Optimization by Rank Math - https://rankmath.com/ -->
<title>homepage - xtUML</title>
<meta name="description" content="Open Source Executable and Translatable UML Modeling xtUML.org provides the executable modeling community with access to comprehensive modeling, execution and"/>
<meta name="robots" content="index, follow, max-snippet:-1, max-video-preview:-1, max-image-preview:large"/>
<link rel="canonical" href="index.html%3Fp=4637.html" />
<meta property="og:locale" content="en_US" />
<meta property="og:type" content="website" />
<meta property="og:title" content="homepage - xtUML" />
<meta property="og:description" content="Open Source Executable and Translatable UML Modeling xtUML.org provides the executable modeling community with access to comprehensive modeling, execution and" />
<meta property="og:url" content="https://xtuml.org/" />
<meta property="og:site_name" content="xtUML" />
<meta property="og:updated_time" content="2024-05-24T14:41:10-05:00" />
<meta property="og:image" content="https://xtuml.org/wp-content/uploads/2020/08/BridgePoint-Screen-Shot.jpg" />
<meta property="og:image:secure_url" content="https://xtuml.org/wp-content/uploads/2020/08/BridgePoint-Screen-Shot.jpg" />
<meta property="og:image:width" content="516" />
<meta property="og:image:height" content="365" />
<meta property="og:image:alt" content="homepage" />
<meta property="og:image:type" content="image/jpeg" />
<meta property="article:published_time" content="2020-08-25T16:14:56-05:00" />
<meta property="article:modified_time" content="2024-05-24T14:41:10-05:00" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="homepage - xtUML" />
<meta name="twitter:description" content="Open Source Executable and Translatable UML Modeling xtUML.org provides the executable modeling community with access to comprehensive modeling, execution and" />
<meta name="twitter:image" content="https://xtuml.org/wp-content/uploads/2020/08/BridgePoint-Screen-Shot.jpg" />
<meta name="twitter:label1" content="Written by" />
<meta name="twitter:data1" content="keithbrown" />
<meta name="twitter:label2" content="Time to read" />
<meta name="twitter:data2" content="1 minute" />
<script type="application/ld+json" class="rank-math-schema">{"@context":"https://schema.org","@graph":[{"@type":"Organization","@id":"https://xtuml.org/#organization","name":"xtUML","logo":{"@type":"ImageObject","@id":"https://xtuml.org/#logo","url":"https://xtuml.org/wp-content/uploads/2020/08/[email protected]","contentUrl":"https://xtuml.org/wp-content/uploads/2020/08/[email protected]","caption":"xtUML","inLanguage":"en-US","width":"226","height":"86"}},{"@type":"WebSite","@id":"https://xtuml.org/#website","url":"https://xtuml.org","name":"xtUML","publisher":{"@id":"https://xtuml.org/#organization"},"inLanguage":"en-US","potentialAction":{"@type":"SearchAction","target":"https://xtuml.org/?s={search_term_string}","query-input":"required name=search_term_string"}},{"@type":"ImageObject","@id":"https://xtuml.org/wp-content/uploads/2020/08/xtUML_NavGraphic_nav-09-1-1024x700.png","url":"https://xtuml.org/wp-content/uploads/2020/08/xtUML_NavGraphic_nav-09-1-1024x700.png","width":"200","height":"200","inLanguage":"en-US"},{"@type":"WebPage","@id":"https://xtuml.org/#webpage","url":"https://xtuml.org/","name":"homepage - xtUML","datePublished":"2020-08-25T16:14:56-05:00","dateModified":"2024-05-24T14:41:10-05:00","about":{"@id":"https://xtuml.org/#organization"},"isPartOf":{"@id":"https://xtuml.org/#website"},"primaryImageOfPage":{"@id":"https://xtuml.org/wp-content/uploads/2020/08/xtUML_NavGraphic_nav-09-1-1024x700.png"},"inLanguage":"en-US"},{"@type":"Person","@id":"https://xtuml.org/author/keithbrown/","name":"keithbrown","url":"https://xtuml.org/author/keithbrown/","image":{"@type":"ImageObject","@id":"https://secure.gravatar.com/avatar/6ff171c9228db912f70e19b4b7becef5358bb84d05cdc10ad8a78302932ecf21?s=96&d=mm&r=g","url":"https://secure.gravatar.com/avatar/6ff171c9228db912f70e19b4b7becef5358bb84d05cdc10ad8a78302932ecf21?s=96&d=mm&r=g","caption":"keithbrown","inLanguage":"en-US"},"worksFor":{"@id":"https://xtuml.org/#organization"}},{"@type":"Article","headline":"homepage - xtUML","datePublished":"2020-08-25T16:14:56-05:00","dateModified":"2024-05-24T14:41:10-05:00","author":{"@id":"https://xtuml.org/author/keithbrown/","name":"keithbrown"},"publisher":{"@id":"https://xtuml.org/#organization"},"description":"Open Source Executable and Translatable UML Modeling xtUML.org provides the executable modeling community with access to comprehensive modeling, execution and","name":"homepage - xtUML","@id":"https://xtuml.org/#richSnippet","isPartOf":{"@id":"https://xtuml.org/#webpage"},"image":{"@id":"https://xtuml.org/wp-content/uploads/2020/08/xtUML_NavGraphic_nav-09-1-1024x700.png"},"inLanguage":"en-US","mainEntityOfPage":{"@id":"https://xtuml.org/#webpage"}}]}</script>
<!-- /Rank Math WordPress SEO plugin -->
<link rel='dns-prefetch' href='https://stats.wp.com/' />
<link rel="alternate" type="application/rss+xml" title="xtUML » Feed" href="feed/index.html" />
<link rel="alternate" type="application/rss+xml" title="xtUML » Comments Feed" href="comments/feed/index.html" />
<link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="wp-json/oembed/1.0/embed%3Furl=https:%252F%252Fxtuml.org%252F" />
<link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="wp-json/oembed/1.0/embed%3Furl=https:%252F%252Fxtuml.org%252F&format=xml" />
<link rel="stylesheet" type="text/css" href="https://use.typekit.net/pze0cjs.css"><style id='wp-img-auto-sizes-contain-inline-css' type='text/css'>
img:is([sizes=auto i],[sizes^="auto," i]){contain-intrinsic-size:3000px 1500px}
/*# sourceURL=wp-img-auto-sizes-contain-inline-css */
</style>
<style id='wp-emoji-styles-inline-css' type='text/css'>
img.wp-smiley, img.emoji {
display: inline !important;
border: none !important;
box-shadow: none !important;
height: 1em !important;
width: 1em !important;
margin: 0 0.07em !important;
vertical-align: -0.1em !important;
background: none !important;
padding: 0 !important;
}
/*# sourceURL=wp-emoji-styles-inline-css */
</style>
<style id='classic-theme-styles-inline-css' type='text/css'>
/*! This file is auto-generated */
.wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none}
/*# sourceURL=/wp-includes/css/classic-themes.min.css */
</style>
<link rel='stylesheet' id='mediaelement-css' href='wp-includes/js/mediaelement/mediaelementplayer-legacy.min.css%3Fver=4.2.17.css' type='text/css' media='all' />
<link rel='stylesheet' id='wp-mediaelement-css' href='wp-includes/js/mediaelement/wp-mediaelement.min.css%3Fver=6.9.1.css' type='text/css' media='all' />
<style id='jetpack-sharing-buttons-style-inline-css' type='text/css'>
.jetpack-sharing-buttons__services-list{display:flex;flex-direction:row;flex-wrap:wrap;gap:0;list-style-type:none;margin:5px;padding:0}.jetpack-sharing-buttons__services-list.has-small-icon-size{font-size:12px}.jetpack-sharing-buttons__services-list.has-normal-icon-size{font-size:16px}.jetpack-sharing-buttons__services-list.has-large-icon-size{font-size:24px}.jetpack-sharing-buttons__services-list.has-huge-icon-size{font-size:36px}@media print{.jetpack-sharing-buttons__services-list{display:none!important}}.editor-styles-wrapper .wp-block-jetpack-sharing-buttons{gap:0;padding-inline-start:0}ul.jetpack-sharing-buttons__services-list.has-background{padding:1.25em 2.375em}
/*# sourceURL=https://xtuml.org/wp-content/plugins/jetpack/_inc/blocks/sharing-buttons/view.css */
</style>
<style id='global-styles-inline-css' type='text/css'>
:root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgb(6,147,227) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgb(252,185,0) 0%,rgb(255,105,0) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgb(255,105,0) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgb(255, 255, 255), 6px 6px rgb(0, 0, 0);--wp--preset--shadow--crisp: 6px 6px 0px rgb(0, 0, 0);}:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}
:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}
:where(.wp-block-term-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-term-template.is-layout-grid){gap: 1.25em;}
:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}
:root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}
/*# sourceURL=global-styles-inline-css */
</style>
<link rel='stylesheet' id='bbp-default-css' href='wp-content/plugins/bbpress/templates/default/css/bbpress.min.css%3Fver=2.6.14.css' type='text/css' media='all' />
<link rel='stylesheet' id='widget-detector-elementor-css' href='wp-content/plugins/widget-detector-elementor/public/css/widget-detector-elementor-public.css%3Fver=1.css' type='text/css' media='all' />
<link rel='stylesheet' id='hustlefish-common-css' href='wp-content/plugins/hustefish-admin-plugin-v3/external-plugins/boat-supporting-plugin/includes/hustlefish-common.css%3Fver=6.9.1.css' type='text/css' media='all' />
<link rel='stylesheet' id='wpcw-frontend-css' href='wp-content/plugins/wp-courseware/assets/css/frontend.css%3Fid=9a5c00f4edabd918577a&ver=4.8.8.css' type='text/css' media='all' />
<link rel='stylesheet' id='hello-elementor-css' href='wp-content/themes/hustlefish-theme/style.min.css%3Fver=2.2.0.css' type='text/css' media='all' />
<link rel='stylesheet' id='hello-elementor-theme-style-css' href='wp-content/themes/hustlefish-theme/theme.min.css%3Fver=2.2.0.css' type='text/css' media='all' />
<link rel='stylesheet' id='hf-wpClientFrontend-styles-css' href='wp-content/plugins/hustefish-admin-plugin-v3/dist/wpClientFrontend.bundle.css%3Fver=1.3.1.css' type='text/css' media='all' />
<link rel='stylesheet' id='elementor-frontend-css' href='wp-content/plugins/elementor/assets/css/frontend.min.css%3Fver=3.35.3.css' type='text/css' media='all' />
<link rel='stylesheet' id='widget-image-css' href='wp-content/plugins/elementor/assets/css/widget-image.min.css%3Fver=3.35.3.css' type='text/css' media='all' />
<link rel='stylesheet' id='widget-nav-menu-css' href='wp-content/plugins/elementor-pro/assets/css/widget-nav-menu.min.css%3Fver=3.35.0.css' type='text/css' media='all' />
<link rel='stylesheet' id='widget-heading-css' href='wp-content/plugins/elementor/assets/css/widget-heading.min.css%3Fver=3.35.3.css' type='text/css' media='all' />
<link rel='stylesheet' id='elementor-icons-css' href='wp-content/plugins/elementor/assets/lib/eicons/css/elementor-icons.min.css%3Fver=5.47.0.css' type='text/css' media='all' />
<link rel='stylesheet' id='elementor-post-6422-css' href='wp-content/uploads/elementor/css/post-6422.css%3Fver=1771024902.css' type='text/css' media='all' />
<link rel='stylesheet' id='font-awesome-5-all-css' href='wp-content/plugins/elementor/assets/lib/font-awesome/css/all.min.css%3Fver=3.35.3.css' type='text/css' media='all' />
<link rel='stylesheet' id='font-awesome-4-shim-css' href='wp-content/plugins/elementor/assets/lib/font-awesome/css/v4-shims.min.css%3Fver=3.35.3.css' type='text/css' media='all' />
<link rel='stylesheet' id='namogo-icons-css' href='wp-content/plugins/elementor-extras/assets/lib/nicons/css/nicons.css%3Fver=2.2.52.css' type='text/css' media='all' />
<link rel='stylesheet' id='elementor-extras-frontend-css' href='wp-content/plugins/elementor-extras/assets/css/frontend.min.css%3Fver=2.2.52.css' type='text/css' media='all' />
<link rel='stylesheet' id='e-animation-grow-css' href='wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-grow.min.css%3Fver=3.35.3.css' type='text/css' media='all' />
<link rel='stylesheet' id='elementor-post-6473-css' href='wp-content/uploads/elementor/css/post-6473.css%3Fver=1771024903.css' type='text/css' media='all' />
<link rel='stylesheet' id='elementor-post-6504-css' href='wp-content/uploads/elementor/css/post-6504.css%3Fver=1771024903.css' type='text/css' media='all' />
<link rel='stylesheet' id='elementor-post-6661-css' href='wp-content/uploads/elementor/css/post-6661.css%3Fver=1771024903.css' type='text/css' media='all' />
<link rel='stylesheet' id='eael-general-css' href='wp-content/plugins/essential-addons-for-elementor-lite/assets/front-end/css/view/general.min.css%3Fver=6.5.10.css' type='text/css' media='all' />
<link rel='stylesheet' id='ecs-styles-css' href='wp-content/plugins/ele-custom-skin/assets/css/ecs-style.css%3Fver=3.1.9.css' type='text/css' media='all' />
<link rel='stylesheet' id='elementor-gf-local-roboto-css' href='wp-content/uploads/elementor/google-fonts/css/roboto.css%3Fver=1742293357.css' type='text/css' media='all' />
<link rel='stylesheet' id='elementor-gf-local-robotoslab-css' href='wp-content/uploads/elementor/google-fonts/css/robotoslab.css%3Fver=1742293359.css' type='text/css' media='all' />
<link rel='stylesheet' id='elementor-icons-shared-0-css' href='wp-content/plugins/elementor/assets/lib/font-awesome/css/fontawesome.min.css%3Fver=5.15.3.css' type='text/css' media='all' />
<link rel='stylesheet' id='elementor-icons-fa-solid-css' href='wp-content/plugins/elementor/assets/lib/font-awesome/css/solid.min.css%3Fver=5.15.3.css' type='text/css' media='all' />
<script type="text/javascript" src="wp-includes/js/jquery/jquery.min.js%3Fver=3.7.1" id="jquery-core-js"></script>
<script type="text/javascript" src="wp-includes/js/jquery/jquery-migrate.min.js%3Fver=3.4.1" id="jquery-migrate-js"></script>
<script type="text/javascript" src="wp-content/plugins/hustefish-admin-plugin-v3/dist/wpClientFrontend.bundle.js%3Fver=1.3.1" id="hf-wpClientFrontend-scripts-js"></script>
<script type="text/javascript" src="wp-content/plugins/elementor/assets/lib/font-awesome/js/v4-shims.min.js%3Fver=3.35.3" id="font-awesome-4-shim-js"></script>
<script type="text/javascript" id="ecs_ajax_load-js-extra">
/* <![CDATA[ */
var ecs_ajax_params = {"ajaxurl":"https://xtuml.org/wp-admin/admin-ajax.php","posts":"{\"error\":\"\",\"m\":\"\",\"p\":\"6473\",\"post_parent\":\"\",\"subpost\":\"\",\"subpost_id\":\"\",\"attachment\":\"\",\"attachment_id\":0,\"name\":\"\",\"pagename\":\"\",\"page_id\":\"6473\",\"second\":\"\",\"minute\":\"\",\"hour\":\"\",\"day\":0,\"monthnum\":0,\"year\":0,\"w\":0,\"category_name\":\"\",\"tag\":\"\",\"cat\":\"\",\"tag_id\":\"\",\"author\":\"\",\"author_name\":\"\",\"feed\":\"\",\"tb\":\"\",\"paged\":0,\"meta_key\":\"\",\"meta_value\":\"\",\"preview\":\"\",\"s\":\"\",\"sentence\":\"\",\"title\":\"\",\"fields\":\"all\",\"menu_order\":\"\",\"embed\":\"\",\"category__in\":[],\"category__not_in\":[],\"category__and\":[],\"post__in\":[],\"post__not_in\":[],\"post_name__in\":[],\"tag__in\":[],\"tag__not_in\":[],\"tag__and\":[],\"tag_slug__in\":[],\"tag_slug__and\":[],\"post_parent__in\":[],\"post_parent__not_in\":[],\"author__in\":[],\"author__not_in\":[],\"search_columns\":[],\"ignore_sticky_posts\":false,\"suppress_filters\":false,\"cache_results\":true,\"update_post_term_cache\":true,\"update_menu_item_cache\":false,\"lazy_load_term_meta\":true,\"update_post_meta_cache\":true,\"post_type\":\"\",\"posts_per_page\":10,\"nopaging\":false,\"comments_per_page\":\"50\",\"no_found_rows\":false,\"order\":\"DESC\"}"};
//# sourceURL=ecs_ajax_load-js-extra
/* ]]> */
</script>
<script type="text/javascript" src="wp-content/plugins/ele-custom-skin/assets/js/ecs_ajax_pagination.js%3Fver=3.1.9" id="ecs_ajax_load-js"></script>
<script type="text/javascript" src="wp-content/plugins/ele-custom-skin/assets/js/ecs.js%3Fver=3.1.9" id="ecs-script-js"></script>
<link rel="https://api.w.org/" href="wp-json/index.html" /><link rel="alternate" title="JSON" type="application/json" href="wp-json/wp/v2/pages/6473" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="xmlrpc.php%3Frsd" />
<link rel='shortlink' href='index.html%3Fp=4637.html' />
<style>img#wpstats{display:none}</style>
<meta name="generator" content="Elementor 3.35.3; features: additional_custom_breakpoints; settings: css_print_method-external, google_font-enabled, font_display-auto">
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-KJXJYBDGNF"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-KJXJYBDGNF');
</script>
<style>
.e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload),
.e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload) * {
background-image: none !important;
}
@media screen and (max-height: 1024px) {
.e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload),
.e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload) * {
background-image: none !important;
}
}
@media screen and (max-height: 640px) {
.e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload),
.e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload) * {
background-image: none !important;
}
}
</style>
<link rel="icon" href="wp-content/uploads/2020/08/[email protected]" sizes="32x32" />
<link rel="icon" href="wp-content/uploads/2020/08/[email protected]" sizes="192x192" />
<link rel="apple-touch-icon" href="wp-content/uploads/2020/08/[email protected]" />
<meta name="msapplication-TileImage" content="https://xtuml.org/wp-content/uploads/2020/08/[email protected]" />
<style type="text/css" id="c4wp-checkout-css">
.woocommerce-checkout .c4wp_captcha_field {
margin-bottom: 10px;
margin-top: 15px;
position: relative;
display: inline-block;
}
</style>
<style type="text/css" id="c4wp-v3-lp-form-css">
.login #login, .login #lostpasswordform {
min-width: 350px !important;
}
.wpforms-field-c4wp iframe {
width: 100% !important;
}
</style>
</head>
<body class="bbp-shortcode bbpress bbp-no-js home wp-singular page-template-default page page-id-6473 wp-custom-logo wp-theme-hustlefish-theme elementor-default elementor-kit-6422 elementor-page elementor-page-6473">
<script type="text/javascript" id="bbp-swap-no-js-body-class">
document.body.className = document.body.className.replace( 'bbp-no-js', 'bbp-js' );
</script>
<header data-elementor-type="header" data-elementor-id="6504" class="elementor elementor-6504 elementor-location-header" data-elementor-post-type="elementor_library">
<section class="elementor-section elementor-top-section elementor-element elementor-element-e26bc99 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="e26bc99" data-element_type="section" data-e-type="section">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-881c529" data-id="881c529" data-element_type="column" data-e-type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-733365c elementor-widget elementor-widget-theme-site-logo elementor-widget-image" data-id="733365c" data-element_type="widget" data-e-type="widget" data-widget_type="theme-site-logo.default">
<div class="elementor-widget-container">
<a href="index.html%3Fp=4637.html">
<img width="226" height="86" src="wp-content/uploads/2020/08/[email protected]" class="attachment-full size-full wp-image-6506" alt="" /> </a>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-1f0230e" data-id="1f0230e" data-element_type="column" data-e-type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-6ff16d1 elementor-nav-menu--dropdown-tablet elementor-nav-menu__text-align-aside elementor-nav-menu--toggle elementor-nav-menu--burger elementor-widget elementor-widget-nav-menu" data-id="6ff16d1" data-element_type="widget" data-e-type="widget" data-settings="{"submenu_icon":{"value":"<i class=\"fas fa-chevron-down\" aria-hidden=\"true\"><\/i>","library":"fa-solid"},"layout":"horizontal","toggle":"burger"}" data-widget_type="nav-menu.default">
<div class="elementor-widget-container">
<nav aria-label="Menu" class="elementor-nav-menu--main elementor-nav-menu__container elementor-nav-menu--layout-horizontal e--pointer-framed e--animation-fade">
<ul id="menu-1-6ff16d1" class="elementor-nav-menu"><li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-6495"><a class="elementor-item">Education</a>
<ul class="sub-menu elementor-nav-menu--dropdown">
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-6709"><a href="getting-started-2/index.html" class="elementor-sub-item">Getting Started</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-6710"><a href="learn/articles/index.html" class="elementor-sub-item">Articles</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-6711"><a href="learn/presentations/index.html" class="elementor-sub-item">Presentations</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-6712"><a href="learn/books/index.html" class="elementor-sub-item">Books</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-6713"><a href="https://www.youtube.com/channel/UC7o-JVDNEDib64rWNVCbAdQ" class="elementor-sub-item">Youtube Channel</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-6716"><a href="xtuml-in-japan-2019/index.html" class="elementor-sub-item">xtUML in Japan 2019</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-6717"><a href="learn/on-line-courses/index.html" class="elementor-sub-item">Online Courses and Tutorials</a></li>
</ul>
</li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-6496"><a class="elementor-item">xtUML</a>
<ul class="sub-menu elementor-nav-menu--dropdown">
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-6729"><a href="about/organization/index.html" class="elementor-sub-item">Organization</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-6718"><a href="faqs/index.html" class="elementor-sub-item">FAQs</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-6730"><a href="about/testimonial/index.html" class="elementor-sub-item">Testimonials</a></li>
</ul>
</li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-6500"><a class="elementor-item">Community</a>
<ul class="sub-menu elementor-nav-menu--dropdown">
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-6722"><a href="forums/index.html" class="elementor-sub-item">Forums</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-6723"><a href="https://hangouts.google.com/group/vMohZ9oW08xR7wSd2" class="elementor-sub-item">Community Chat</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-6724"><a href="https://xtuml.org/news-events/" class="elementor-sub-item">News & Events</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-6725"><a href="about/contacts/index.html" class="elementor-sub-item">Contacts</a></li>
</ul>
</li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-6499"><a class="elementor-item">Participation</a>
<ul class="sub-menu elementor-nav-menu--dropdown">
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-6726"><a href="http://support.onefact.net/" class="elementor-sub-item">Issue Tracker</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-6728"><a href="https://github.com/xtuml" class="elementor-sub-item">Github</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-6727"><a href="participate/developers/index.html" class="elementor-sub-item">Developers</a></li>
</ul>
</li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-6497"><a class="elementor-item">Method</a>
<ul class="sub-menu elementor-nav-menu--dropdown">
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-6719"><a href="learn/books/index.html" class="elementor-sub-item">Books</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-6720"><a href="learn/the-historical-documents/index.html" class="elementor-sub-item">The Historical Documents</a></li>
</ul>
</li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-6498"><a class="elementor-item">Tooling</a>
<ul class="sub-menu elementor-nav-menu--dropdown">
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-6721"><a href="download.html" class="elementor-sub-item">Download</a></li>
</ul>
</li>
</ul> </nav>
<div class="elementor-menu-toggle" role="button" tabindex="0" aria-label="Menu Toggle" aria-expanded="false">
<i aria-hidden="true" role="presentation" class="elementor-menu-toggle__icon--open eicon-menu-bar"></i><i aria-hidden="true" role="presentation" class="elementor-menu-toggle__icon--close eicon-close"></i> </div>
<nav class="elementor-nav-menu--dropdown elementor-nav-menu__container" aria-hidden="true">
<ul id="menu-2-6ff16d1" class="elementor-nav-menu"><li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-6495"><a class="elementor-item" tabindex="-1">Education</a>
<ul class="sub-menu elementor-nav-menu--dropdown">
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-6709"><a href="getting-started-2/index.html" class="elementor-sub-item" tabindex="-1">Getting Started</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-6710"><a href="learn/articles/index.html" class="elementor-sub-item" tabindex="-1">Articles</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-6711"><a href="learn/presentations/index.html" class="elementor-sub-item" tabindex="-1">Presentations</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-6712"><a href="learn/books/index.html" class="elementor-sub-item" tabindex="-1">Books</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-6713"><a href="https://www.youtube.com/channel/UC7o-JVDNEDib64rWNVCbAdQ" class="elementor-sub-item" tabindex="-1">Youtube Channel</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-6716"><a href="xtuml-in-japan-2019/index.html" class="elementor-sub-item" tabindex="-1">xtUML in Japan 2019</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-6717"><a href="learn/on-line-courses/index.html" class="elementor-sub-item" tabindex="-1">Online Courses and Tutorials</a></li>
</ul>
</li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-6496"><a class="elementor-item" tabindex="-1">xtUML</a>
<ul class="sub-menu elementor-nav-menu--dropdown">
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-6729"><a href="about/organization/index.html" class="elementor-sub-item" tabindex="-1">Organization</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-6718"><a href="faqs/index.html" class="elementor-sub-item" tabindex="-1">FAQs</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-6730"><a href="about/testimonial/index.html" class="elementor-sub-item" tabindex="-1">Testimonials</a></li>
</ul>
</li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-6500"><a class="elementor-item" tabindex="-1">Community</a>
<ul class="sub-menu elementor-nav-menu--dropdown">
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-6722"><a href="forums/index.html" class="elementor-sub-item" tabindex="-1">Forums</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-6723"><a href="https://hangouts.google.com/group/vMohZ9oW08xR7wSd2" class="elementor-sub-item" tabindex="-1">Community Chat</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-6724"><a href="https://xtuml.org/news-events/" class="elementor-sub-item" tabindex="-1">News & Events</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-6725"><a href="about/contacts/index.html" class="elementor-sub-item" tabindex="-1">Contacts</a></li>
</ul>
</li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-6499"><a class="elementor-item" tabindex="-1">Participation</a>
<ul class="sub-menu elementor-nav-menu--dropdown">
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-6726"><a href="http://support.onefact.net/" class="elementor-sub-item" tabindex="-1">Issue Tracker</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-6728"><a href="https://github.com/xtuml" class="elementor-sub-item" tabindex="-1">Github</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-6727"><a href="participate/developers/index.html" class="elementor-sub-item" tabindex="-1">Developers</a></li>
</ul>
</li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-6497"><a class="elementor-item" tabindex="-1">Method</a>
<ul class="sub-menu elementor-nav-menu--dropdown">
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-6719"><a href="learn/books/index.html" class="elementor-sub-item" tabindex="-1">Books</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-6720"><a href="learn/the-historical-documents/index.html" class="elementor-sub-item" tabindex="-1">The Historical Documents</a></li>
</ul>
</li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-6498"><a class="elementor-item" tabindex="-1">Tooling</a>
<ul class="sub-menu elementor-nav-menu--dropdown">
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-6721"><a href="download.html" class="elementor-sub-item" tabindex="-1">Download</a></li>
</ul>
</li>
</ul> </nav>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-ff5688d elementor-hidden-tablet elementor-hidden-phone" data-id="ff5688d" data-element_type="column" data-e-type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-1fe0ee0 elementor-align-justify elementor-widget elementor-widget-button" data-id="1fe0ee0" data-element_type="widget" data-e-type="widget" data-widget_type="button.default">
<div class="elementor-widget-container">
<div class="elementor-button-wrapper">
<a class="elementor-button elementor-button-link elementor-size-sm" href="download.html">
<span class="elementor-button-content-wrapper">
<span class="elementor-button-text">Download</span>
</span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</header>
<main class="site-main post-6473 page type-page status-publish hentry" role="main">
<div class="page-content">
<div data-elementor-type="wp-page" data-elementor-id="6473" class="elementor elementor-6473" data-elementor-post-type="page">
<section class="elementor-section elementor-top-section elementor-element elementor-element-e9deb68 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="e9deb68" data-element_type="section" data-e-type="section">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-f2a8887" data-id="f2a8887" data-element_type="column" data-e-type="column">
<div class="elementor-widget-wrap">
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-top-section elementor-element elementor-element-80476b9 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="80476b9" data-element_type="section" data-e-type="section">
<div class="elementor-container elementor-column-gap-wider">
<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-602e13f" data-id="602e13f" data-element_type="column" data-e-type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-21100dc elementor-widget elementor-widget-heading" data-id="21100dc" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h1 class="elementor-heading-title elementor-size-default">Open Source Executable and Translatable UML Modeling</h1> </div>
</div>
<div class="elementor-element elementor-element-1b31933 elementor-widget elementor-widget-text-editor" data-id="1b31933" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
xtUML.org provides the executable modeling community with access to comprehensive modeling, execution and translation capabilities through BridgePoint </div>
</div>
<div class="elementor-element elementor-element-c41b69f elementor-widget elementor-widget-button" data-id="c41b69f" data-element_type="widget" data-e-type="widget" data-widget_type="button.default">
<div class="elementor-widget-container">
<div class="elementor-button-wrapper">
<a class="elementor-button elementor-button-link elementor-size-sm" href="download.html">
<span class="elementor-button-content-wrapper">
<span class="elementor-button-text">Download</span>
</span>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-a4fd868 elementor-hidden-phone" data-id="a4fd868" data-element_type="column" data-e-type="column" data-settings="{"background_background":"classic"}">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-deb9664 elementor-widget elementor-widget-hotspots" data-id="deb9664" data-element_type="widget" data-e-type="widget" data-settings="{"trigger":"click_target","_hide":"click_out","hotspots_pulse":"yes","trigger_tablet":"click_target","trigger_mobile":"click_target","_hide_tablet":"click_out","_hide_mobile":"click_out","position":"bottom","arrow_position_h":"center","delay_in":{"unit":"px","size":"","sizes":[]},"delay_out":{"unit":"px","size":"","sizes":[]},"duration":{"unit":"px","size":"","sizes":[]}}" data-widget_type="hotspots.default">
<div class="elementor-widget-container">
<div class="ee-hotspots ee-hotspots--no-pulse">
<img fetchpriority="high" decoding="async" width="800" height="547" src="wp-content/uploads/2020/08/xtUML_NavGraphic_nav-09-1-1024x700.png" class="attachment-large size-large wp-image-6601" alt="" srcset="wp-content/uploads/2020/08/xtUML_NavGraphic_nav-09-1-1024x700.png 1024w, wp-content/uploads/2020/08/xtUML_NavGraphic_nav-09-1-300x205.png 300w, wp-content/uploads/2020/08/xtUML_NavGraphic_nav-09-1-768x525.png 768w, wp-content/uploads/2020/08/xtUML_NavGraphic_nav-09-1.png 1251w" sizes="(max-width: 800px) 100vw, 800px" />
<div class="ee-hotspots__container">
<div class="elementor-repeater-item-8b88e8d hotip ee-hotspot" data-hotips-content="#hotip-content-deb9664_8b88e8d" data-hotips-position="bottom" data-hotips-arrow-position-h="" data-hotips-arrow-position-v="" data-hotips-class="ee-global ee-tooltip ee-tooltip-deb9664">
<span class="ee-hotspot__wrapper">
<span class="ee-hotspot__text">EDUCATION</span>
</span>
</div>
<div class="hotip-content" id="hotip-content-deb9664_8b88e8d">
<a href="getting-started-2/index.html">Getting Started<a>
<a href="learn/articles/index.html">Articles<a>
<a href="learn/presentations/index.html">Presentations<a>
<a href="learn/books/index.html">Books<a>
<a href="https://www.youtube.com/channel/UC7o-JVDNEDib64rWNVCbAdQ" target="_blank" rel="noopener">Youtube Channel<a>
<a href="xtuml-in-japan-2019/index.html">xtUML in Japan<a>
<a href="learn/on-line-courses/index.html">Courses and Tutorials<a> </div>
<div class="elementor-repeater-item-ff785b5 hotip ee-hotspot" data-hotips-content="#hotip-content-deb9664_ff785b5" data-hotips-position="bottom" data-hotips-arrow-position-h="" data-hotips-arrow-position-v="" data-hotips-class="ee-global ee-tooltip ee-tooltip-deb9664" id="xtuml-block">
<span class="ee-hotspot__wrapper">
<span class="ee-hotspot__text">xtUML</span>
</span>
</div>
<div class="hotip-content" id="hotip-content-deb9664_ff785b5">
<a href="about/organization/index.html">Organization<a>
<a href="faqs/index.html">FAQs<a>
<a href="about/testimonial/index.html">Testimonials<a>
</div>
<div class="elementor-repeater-item-5848fb5 hotip ee-hotspot" data-hotips-content="#hotip-content-deb9664_5848fb5" data-hotips-position="" data-hotips-arrow-position-h="" data-hotips-arrow-position-v="" data-hotips-class="ee-global ee-tooltip ee-tooltip-deb9664">
<span class="ee-hotspot__wrapper">
<span class="ee-hotspot__text">COMMUNITY</span>
</span>
</div>
<div class="hotip-content" id="hotip-content-deb9664_5848fb5">
<a href="forums/index.html">Forums<a>
<a href="https://hangouts.google.com/group/vMohZ9oW08xR7wSd2" target="_blank" rel="noopener">Community Chat<a>
<a href="https://xtuml.org/news-events/">News & Events<a>
<a href="about/contacts/index.html">Contacts<a>
</div>
<div class="elementor-repeater-item-a5d219a hotip ee-hotspot" data-hotips-content="#hotip-content-deb9664_a5d219a" data-hotips-position="" data-hotips-arrow-position-h="" data-hotips-arrow-position-v="" data-hotips-class="ee-global ee-tooltip ee-tooltip-deb9664">
<span class="ee-hotspot__wrapper">
<span class="ee-hotspot__text">TOOLING</span>
</span>
</div>
<div class="hotip-content" id="hotip-content-deb9664_a5d219a">
<a href="download.html">Download<a>
</div>
<div class="elementor-repeater-item-a4390cb hotip ee-hotspot" data-hotips-content="#hotip-content-deb9664_a4390cb" data-hotips-position="" data-hotips-arrow-position-h="" data-hotips-arrow-position-v="" data-hotips-class="ee-global ee-tooltip ee-tooltip-deb9664">
<span class="ee-hotspot__wrapper">
<span class="ee-hotspot__text">METHOD</span>
</span>
</div>
<div class="hotip-content" id="hotip-content-deb9664_a4390cb">
<a href="learn/books/index.html">Books<a>
<a href="learn/the-historical-documents/index.html">The Historical Documents<a>
</div>
<div class="elementor-repeater-item-7e1c5cf hotip ee-hotspot" data-hotips-content="#hotip-content-deb9664_7e1c5cf" data-hotips-position="" data-hotips-arrow-position-h="" data-hotips-arrow-position-v="" data-hotips-class="ee-global ee-tooltip ee-tooltip-deb9664">
<span class="ee-hotspot__wrapper">
<span class="ee-hotspot__text">PARTICIPATION</span>
</span>
</div>
<div class="hotip-content" id="hotip-content-deb9664_7e1c5cf">
<a href="http://support.onefact.net/" target="_blank" rel="noopener">Issue Tracker<a>
<a href="https://github.com/xtuml" target="_blank" rel="noopener">Github<a>
<a href="participate/developers/index.html">Developers<a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-top-section elementor-element elementor-element-0cf491a elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="0cf491a" data-element_type="section" data-e-type="section" data-settings="{"background_background":"classic"}">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-4d69eb0" data-id="4d69eb0" data-element_type="column" data-e-type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-127f48a elementor-widget elementor-widget-heading" data-id="127f48a" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-default">Who uses xtUML?</h2> </div>
</div>
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-top-section elementor-element elementor-element-b7295cb elementor-section-content-middle logo-link elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="b7295cb" data-element_type="section" data-e-type="section" data-settings="{"background_background":"classic"}">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-16 elementor-top-column elementor-element elementor-element-1fec3b5" data-id="1fec3b5" data-element_type="column" data-e-type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-d9d464b elementor-widget elementor-widget-heading" data-id="d9d464b" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h3 class="elementor-heading-title elementor-size-default"><a href="https://www.baesystems.com/" target="_blank" rel="noopener">BAE Systems</a></h3> </div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-16 elementor-top-column elementor-element elementor-element-78c3b4c" data-id="78c3b4c" data-element_type="column" data-e-type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-7ceb34f elementor-widget elementor-widget-heading" data-id="7ceb34f" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h3 class="elementor-heading-title elementor-size-default"><a href="https://saab.com/" target="_blank" rel="noopener">Saab</a></h3> </div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-16 elementor-top-column elementor-element elementor-element-d91d625" data-id="d91d625" data-element_type="column" data-e-type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-22f8579 elementor-widget elementor-widget-heading" data-id="22f8579" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h3 class="elementor-heading-title elementor-size-default"><a href="https://www.vricon.com/" target="_blank" rel="noopener"> Vricon</a></h3> </div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-16 elementor-top-column elementor-element elementor-element-edef331" data-id="edef331" data-element_type="column" data-e-type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-9d9abf2 elementor-widget elementor-widget-heading" data-id="9d9abf2" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h3 class="elementor-heading-title elementor-size-default">UK Crown</h3> </div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-16 elementor-top-column elementor-element elementor-element-ca1e342" data-id="ca1e342" data-element_type="column" data-e-type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-f3e545c elementor-widget elementor-widget-heading" data-id="f3e545c" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h3 class="elementor-heading-title elementor-size-default"><a href="https://www.rogoag.com/" target="_blank" rel="noopener">ROGO AG</a></h3> </div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-16 elementor-top-column elementor-element elementor-element-37f7e14" data-id="37f7e14" data-element_type="column" data-e-type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-9fc0e11 elementor-widget elementor-widget-heading" data-id="9fc0e11" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h3 class="elementor-heading-title elementor-size-default"><a href="http://www.softimp.com.au/" target="_blank" rel="noopener">Software Improvements</a></h3> </div>
</div>
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-top-section elementor-element elementor-element-e549803 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="e549803" data-element_type="section" data-e-type="section">
<div class="elementor-container elementor-column-gap-wider">
<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-f966338" data-id="f966338" data-element_type="column" data-e-type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-95097de elementor-widget elementor-widget-image" data-id="95097de" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
<div class="elementor-widget-container">
<img decoding="async" width="516" height="365" src="wp-content/uploads/2020/08/BridgePoint-Screen-Shot.jpg" class="attachment-large size-large wp-image-6483" alt="" srcset="wp-content/uploads/2020/08/BridgePoint-Screen-Shot.jpg 516w, wp-content/uploads/2020/08/BridgePoint-Screen-Shot-300x212.jpg 300w" sizes="(max-width: 516px) 100vw, 516px" /> </div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-d0d86d9" data-id="d0d86d9" data-element_type="column" data-e-type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-7dd87ca elementor-widget elementor-widget-heading" data-id="7dd87ca" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h4 class="elementor-heading-title elementor-size-default">The Front-End UML Editor</h4> </div>
</div>
<div class="elementor-element elementor-element-566f45f elementor-widget elementor-widget-heading" data-id="566f45f" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-default">BridgePoint</h2> </div>
</div>
<div class="elementor-element elementor-element-3f6f542 elementor-widget elementor-widget-text-editor" data-id="3f6f542" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
The BridgePoint/xtUML tool suite is an advanced, proven, xtUML-based modeling, execution, and
translation tool built upon the Eclipse platform, which provides an integrated development
environment (IDE). </div>
</div>
<section class="elementor-section elementor-inner-section elementor-element elementor-element-036c314 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="036c314" data-element_type="section" data-e-type="section">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-7ee3366" data-id="7ee3366" data-element_type="column" data-e-type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-dbdc667 elementor-align-justify elementor-widget elementor-widget-button" data-id="dbdc667" data-element_type="widget" data-e-type="widget" data-widget_type="button.default">
<div class="elementor-widget-container">
<div class="elementor-button-wrapper">
<a class="elementor-button elementor-button-link elementor-size-sm" href="download.html">
<span class="elementor-button-content-wrapper">
<span class="elementor-button-text">Download</span>
</span>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-276d9a2" data-id="276d9a2" data-element_type="column" data-e-type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-bb7ba4e elementor-align-justify elementor-widget elementor-widget-button" data-id="bb7ba4e" data-element_type="widget" data-e-type="widget" data-widget_type="button.default">
<div class="elementor-widget-container">
<div class="elementor-button-wrapper">
<a class="elementor-button elementor-button-link elementor-size-sm" href="https://github.com/xtuml/bridgepoint" target="_blank" rel="noopener">
<span class="elementor-button-content-wrapper">
<span class="elementor-button-text">GITHUB</span>
</span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-inner-section elementor-element elementor-element-e7ba611 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="e7ba611" data-element_type="section" data-e-type="section">
<div class="elementor-container elementor-column-gap-default">
</div>
</section>
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-top-section elementor-element elementor-element-f752085 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="f752085" data-element_type="section" data-e-type="section" data-settings="{"background_background":"classic"}">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-a36bd5a" data-id="a36bd5a" data-element_type="column" data-e-type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-4e1aa08 elementor-widget elementor-widget-heading" data-id="4e1aa08" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h4 class="elementor-heading-title elementor-size-default">Learn xtUML</h4> </div>
</div>
<div class="elementor-element elementor-element-cddc772 elementor-widget elementor-widget-heading" data-id="cddc772" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-default">Dive in and Learn xtUML <br>Inside and Out</h2> </div>
</div>
<section class="elementor-section elementor-inner-section elementor-element elementor-element-cd3aba9 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="cd3aba9" data-element_type="section" data-e-type="section">
<div class="elementor-container elementor-column-gap-wider">
<div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-6e2438d" data-id="6e2438d" data-element_type="column" data-e-type="column" data-settings="{"background_background":"classic"}">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-b3aaa71 elementor-widget elementor-widget-image" data-id="b3aaa71" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
<div class="elementor-widget-container">
<img loading="lazy" decoding="async" width="560" height="160" src="wp-content/uploads/2020/08/[email protected]" class="attachment-large size-large wp-image-6485" alt="" srcset="wp-content/uploads/2020/08/[email protected] 560w, wp-content/uploads/2020/08/[email protected] 300w" sizes="(max-width: 560px) 100vw, 560px" /> </div>
</div>
<div class="elementor-element elementor-element-22a3265 elementor-widget elementor-widget-heading" data-id="22a3265" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h5 class="elementor-heading-title elementor-size-default">GitHub</h5> </div>
</div>
<div class="elementor-element elementor-element-4439fe0 elementor-widget elementor-widget-heading" data-id="4439fe0" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h3 class="elementor-heading-title elementor-size-default">Getting Started with xtUML Guide</h3> </div>
</div>
<div class="elementor-element elementor-element-7a2b879 elementor-align-center elementor-widget elementor-widget-button" data-id="7a2b879" data-element_type="widget" data-e-type="widget" data-widget_type="button.default">
<div class="elementor-widget-container">
<div class="elementor-button-wrapper">
<a class="elementor-button elementor-button-link elementor-size-sm elementor-animation-grow" href="https://github.com/xtuml/bridgepoint/blob/master/doc-bridgepoint/process/Developer%20Getting%20Started%20Guide.md" target="_blank" rel="noopener">
<span class="elementor-button-content-wrapper">
<span class="elementor-button-text">Explore</span>
</span>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-38579f7" data-id="38579f7" data-element_type="column" data-e-type="column" data-settings="{"background_background":"classic"}">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-3b51022 elementor-widget elementor-widget-image" data-id="3b51022" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
<div class="elementor-widget-container">
<img loading="lazy" decoding="async" width="560" height="160" src="wp-content/uploads/2020/08/[email protected]" class="attachment-large size-large wp-image-6649" alt="" srcset="wp-content/uploads/2020/08/[email protected] 560w, wp-content/uploads/2020/08/[email protected] 300w" sizes="(max-width: 560px) 100vw, 560px" /> </div>
</div>
<div class="elementor-element elementor-element-d7295fa elementor-widget elementor-widget-heading" data-id="d7295fa" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h5 class="elementor-heading-title elementor-size-default">Video & Tutorials</h5> </div>
</div>
<div class="elementor-element elementor-element-c017ea5 elementor-widget elementor-widget-heading" data-id="c017ea5" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h3 class="elementor-heading-title elementor-size-default">On-Line Courses and Training</h3> </div>
</div>
<div class="elementor-element elementor-element-37e8d64 elementor-align-center elementor-widget elementor-widget-button" data-id="37e8d64" data-element_type="widget" data-e-type="widget" data-widget_type="button.default">
<div class="elementor-widget-container">
<div class="elementor-button-wrapper">
<a class="elementor-button elementor-button-link elementor-size-sm elementor-animation-grow" href="learn/index.html">
<span class="elementor-button-content-wrapper">
<span class="elementor-button-text">Explore</span>
</span>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-ac3008f" data-id="ac3008f" data-element_type="column" data-e-type="column" data-settings="{"background_background":"classic"}">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-4011f21 elementor-widget elementor-widget-image" data-id="4011f21" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
<div class="elementor-widget-container">
<img loading="lazy" decoding="async" width="560" height="160" src="wp-content/uploads/2020/08/[email protected]" class="attachment-large size-large wp-image-6650" alt="" srcset="wp-content/uploads/2020/08/[email protected] 560w, wp-content/uploads/2020/08/[email protected] 300w" sizes="(max-width: 560px) 100vw, 560px" /> </div>
</div>
<div class="elementor-element elementor-element-89aee0c elementor-widget elementor-widget-heading" data-id="89aee0c" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h5 class="elementor-heading-title elementor-size-default">Books, Articles, Historic Docs</h5> </div>
</div>
<div class="elementor-element elementor-element-686ddf4 elementor-widget elementor-widget-heading" data-id="686ddf4" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h3 class="elementor-heading-title elementor-size-default">Other Learning Resources</h3> </div>
</div>
<div class="elementor-element elementor-element-6ecc2d1 elementor-align-center elementor-widget elementor-widget-button" data-id="6ecc2d1" data-element_type="widget" data-e-type="widget" data-widget_type="button.default">
<div class="elementor-widget-container">
<div class="elementor-button-wrapper">
<a class="elementor-button elementor-button-link elementor-size-sm elementor-animation-grow" href="learn/index.html">
<span class="elementor-button-content-wrapper">
<span class="elementor-button-text">Explore</span>
</span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-top-section elementor-element elementor-element-82dcde8 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="82dcde8" data-element_type="section" data-e-type="section" data-settings="{"background_background":"classic"}">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-8d1e374" data-id="8d1e374" data-element_type="column" data-e-type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-281db37 white elementor-widget elementor-widget-heading" data-id="281db37" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h4 class="elementor-heading-title elementor-size-default">Support Forum & Chat</h4> </div>
</div>
<div class="elementor-element elementor-element-7da78fb elementor-widget elementor-widget-heading" data-id="7da78fb" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-default">Join the Community and Build Better Projects</h2> </div>
</div>
<div class="elementor-element elementor-element-f8b4e9e elementor-hidden-phone elementor-widget elementor-widget-shortcode" data-id="f8b4e9e" data-element_type="widget" data-e-type="widget" id="homepage-forum" data-widget_type="shortcode.default">
<div class="elementor-widget-container">
<div class="elementor-shortcode">
<div id="bbpress-forums" class="bbpress-wrapper">
<div class="bbp-pagination">
<div class="bbp-pagination-count">Viewing 15 topics - 1 through 15 (of 275 total)</div>
<div class="bbp-pagination-links"><span aria-current="page" class="page-numbers current">1</span>
<a class="page-numbers" href="page/2/index.html">2</a>
<a class="page-numbers" href="page/3/index.html">3</a>
<span class="page-numbers dots">…</span>
<a class="page-numbers" href="page/17/index.html">17</a>
<a class="page-numbers" href="page/18/index.html">18</a>
<a class="page-numbers" href="page/19/index.html">19</a>
<a class="next page-numbers" href="page/2/index.html">→</a></div>
</div>
<ul id="bbp-forum-0" class="bbp-topics">
<li class="bbp-header">
<ul class="forum-titles">
<li class="bbp-topic-title">Topic</li>
<li class="bbp-topic-voice-count">Voices</li>
<li class="bbp-topic-reply-count">Posts</li>
<li class="bbp-topic-freshness">Last Post</li>
</ul>
</li>
<li class="bbp-body">
<ul id="bbp-topic-7857" class="loop-item-0 user-id-47 bbp-parent-forum-4980 odd post-7857 topic type-topic status-publish hentry topic-tag-free topic-tag-open">
<li class="bbp-topic-title">
<a class="bbp-topic-permalink" href="forums/topic/xtuml-needs-to-leave-github/index.html">xtUML needs to leave GitHub</a>
<p class="bbp-topic-meta">
<span class="bbp-topic-started-by">Started by: <a href="forums/user/lwriemen/index.html" title="View Lee Riemenschneider's profile" class="bbp-author-link"><span class="bbp-author-avatar"><img alt='' src='https://secure.gravatar.com/avatar/2beeed50ad01495a2bb8456ccfd23100a3ae303e29fc1a90ee450c7cf5e79641?s=14&d=mm&r=g' srcset='https://secure.gravatar.com/avatar/2beeed50ad01495a2bb8456ccfd23100a3ae303e29fc1a90ee450c7cf5e79641?s=28&d=mm&r=g 2x' class='avatar avatar-14 photo' height='14' width='14' /></span><span class="bbp-author-name">Lee Riemenschneider</span></a></span>
<span class="bbp-topic-started-in">in: <a href="forums/community/bridgepoint-development-and-integrations/index.html">BridgePoint Development and Integrations</a></span>
</p>
</li>
<li class="bbp-topic-voice-count">1</li>
<li class="bbp-topic-reply-count">1</li>
<li class="bbp-topic-freshness">
<a href="forums/topic/xtuml-needs-to-leave-github/index.html" title="xtUML needs to leave GitHub">4 months ago</a>
<p class="bbp-topic-meta">
<span class="bbp-topic-freshness-author"><a href="forums/user/lwriemen/index.html" title="View Lee Riemenschneider's profile" class="bbp-author-link"><span class="bbp-author-avatar"><img alt='' src='https://secure.gravatar.com/avatar/2beeed50ad01495a2bb8456ccfd23100a3ae303e29fc1a90ee450c7cf5e79641?s=14&d=mm&r=g' srcset='https://secure.gravatar.com/avatar/2beeed50ad01495a2bb8456ccfd23100a3ae303e29fc1a90ee450c7cf5e79641?s=28&d=mm&r=g 2x' class='avatar avatar-14 photo' height='14' width='14' /></span><span class="bbp-author-name">Lee Riemenschneider</span></a></span>
</p>
</li>
</ul><!-- #bbp-topic-7857 -->
<ul id="bbp-topic-7847" class="loop-item-1 user-id-20298 bbp-parent-forum-5088 even post-7847 topic type-topic status-publish hentry topic-tag-roofing">
<li class="bbp-topic-title">
<a class="bbp-topic-permalink" href="forums/topic/roof-replacement-quoted-at-30k-is-this-normal/index.html">Roof Replacement Quoted at £30k – Is This Normal?</a>
<p class="bbp-topic-meta">
<span class="bbp-topic-started-by">Started by: <a href="forums/user/merkeelwave/index.html" title="View MerkeelWave's profile" class="bbp-author-link"><span class="bbp-author-avatar"><img alt='' src='https://secure.gravatar.com/avatar/766e1c7a9487ffa09e5c6175b2575a055c18255b7ed9f91de360fa862908157f?s=14&d=mm&r=g' srcset='https://secure.gravatar.com/avatar/766e1c7a9487ffa09e5c6175b2575a055c18255b7ed9f91de360fa862908157f?s=28&d=mm&r=g 2x' class='avatar avatar-14 photo' height='14' width='14' /></span><span class="bbp-author-name">MerkeelWave</span></a></span>
<span class="bbp-topic-started-in">in: <a href="forums/community/miscellaneous/index.html">Miscellaneous</a></span>
</p>
</li>
<li class="bbp-topic-voice-count">1</li>
<li class="bbp-topic-reply-count">2</li>
<li class="bbp-topic-freshness">
<a href="forums/topic/roof-replacement-quoted-at-30k-is-this-normal/index.html#post-7848" title="Reply To: Roof Replacement Quoted at £30k – Is This Normal?">5 months, 4 weeks ago</a>
<p class="bbp-topic-meta">
<span class="bbp-topic-freshness-author"><a href="forums/user/merkeelwave/index.html" title="View MerkeelWave's profile" class="bbp-author-link"><span class="bbp-author-avatar"><img alt='' src='https://secure.gravatar.com/avatar/766e1c7a9487ffa09e5c6175b2575a055c18255b7ed9f91de360fa862908157f?s=14&d=mm&r=g' srcset='https://secure.gravatar.com/avatar/766e1c7a9487ffa09e5c6175b2575a055c18255b7ed9f91de360fa862908157f?s=28&d=mm&r=g 2x' class='avatar avatar-14 photo' height='14' width='14' /></span><span class="bbp-author-name">MerkeelWave</span></a></span>
</p>
</li>
</ul><!-- #bbp-topic-7847 -->
<ul id="bbp-topic-7842" class="loop-item-2 user-id-16656 bbp-parent-forum-4980 odd post-7842 topic type-topic status-publish hentry">
<li class="bbp-topic-title">
<a class="bbp-topic-permalink" href="forums/topic/uml-model-to-xtuml-model-migration/index.html">UML Model to xtUML Model Migration</a>
<p class="bbp-topic-meta">
<span class="bbp-topic-started-by">Started by: <a href="forums/user/mugesh/index.html" title="View mugesh's profile" class="bbp-author-link"><span class="bbp-author-avatar"><img alt='' src='https://secure.gravatar.com/avatar/7798ccae07256f51106c63aa7bfba4a711d14bc708957ddeafcc678b034b7551?s=14&d=mm&r=g' srcset='https://secure.gravatar.com/avatar/7798ccae07256f51106c63aa7bfba4a711d14bc708957ddeafcc678b034b7551?s=28&d=mm&r=g 2x' class='avatar avatar-14 photo' height='14' width='14' /></span><span class="bbp-author-name">mugesh</span></a></span>
<span class="bbp-topic-started-in">in: <a href="forums/community/bridgepoint-development-and-integrations/index.html">BridgePoint Development and Integrations</a></span>
</p>
</li>
<li class="bbp-topic-voice-count">2</li>
<li class="bbp-topic-reply-count">2</li>
<li class="bbp-topic-freshness">
<a href="forums/topic/uml-model-to-xtuml-model-migration/index.html#post-7843" title="Reply To: UML Model to xtUML Model Migration">8 months, 1 week ago</a>
<p class="bbp-topic-meta">
<span class="bbp-topic-freshness-author"><a href="forums/user/cort/index.html" title="View cort's profile" class="bbp-author-link"><span class="bbp-author-avatar"><img alt='' src='https://secure.gravatar.com/avatar/ca308d0579825a651fd9c17e27bb94d5ca63f6afd5132edc4321556ec82bd246?s=14&d=mm&r=g' srcset='https://secure.gravatar.com/avatar/ca308d0579825a651fd9c17e27bb94d5ca63f6afd5132edc4321556ec82bd246?s=28&d=mm&r=g 2x' class='avatar avatar-14 photo' height='14' width='14' /></span><span class="bbp-author-name">cort</span></a></span>
</p>
</li>
</ul><!-- #bbp-topic-7842 -->
<ul id="bbp-topic-7831" class="loop-item-3 user-id-350 bbp-parent-forum-5088 even post-7831 topic type-topic status-publish hentry">
<li class="bbp-topic-title">
<a class="bbp-topic-permalink" href="forums/topic/warning-bridgepoint-7-7-fails-to-load-oal-when-setup-for-java-17/index.html">WARNING: BridgePoint 7.7 fails to load OAL when setup for java 17.</a>
<p class="bbp-topic-meta">
<span class="bbp-topic-started-by">Started by: <a href="forums/user/clive/index.html" title="View Clive's profile" class="bbp-author-link"><span class="bbp-author-avatar"><img alt='' src='https://secure.gravatar.com/avatar/6604388ad7af1295543433583594cc206f2fc7cfb557b419f27ce35a9fd7eeb9?s=14&d=mm&r=g' srcset='https://secure.gravatar.com/avatar/6604388ad7af1295543433583594cc206f2fc7cfb557b419f27ce35a9fd7eeb9?s=28&d=mm&r=g 2x' class='avatar avatar-14 photo' height='14' width='14' /></span><span class="bbp-author-name">Clive</span></a></span>
<span class="bbp-topic-started-in">in: <a href="forums/community/miscellaneous/index.html">Miscellaneous</a></span>
</p>
</li>
<li class="bbp-topic-voice-count">1</li>
<li class="bbp-topic-reply-count">1</li>
<li class="bbp-topic-freshness">
<a href="forums/topic/warning-bridgepoint-7-7-fails-to-load-oal-when-setup-for-java-17/index.html" title="WARNING: BridgePoint 7.7 fails to load OAL when setup for java 17.">11 months, 2 weeks ago</a>
<p class="bbp-topic-meta">
<span class="bbp-topic-freshness-author"><a href="forums/user/clive/index.html" title="View Clive's profile" class="bbp-author-link"><span class="bbp-author-avatar"><img alt='' src='https://secure.gravatar.com/avatar/6604388ad7af1295543433583594cc206f2fc7cfb557b419f27ce35a9fd7eeb9?s=14&d=mm&r=g' srcset='https://secure.gravatar.com/avatar/6604388ad7af1295543433583594cc206f2fc7cfb557b419f27ce35a9fd7eeb9?s=28&d=mm&r=g 2x' class='avatar avatar-14 photo' height='14' width='14' /></span><span class="bbp-author-name">Clive</span></a></span>
</p>
</li>
</ul><!-- #bbp-topic-7831 -->
<ul id="bbp-topic-7827" class="loop-item-4 user-id-3905 bbp-parent-forum-4980 odd post-7827 topic type-topic status-publish hentry">
<li class="bbp-topic-title">
<a class="bbp-topic-permalink" href="forums/topic/routing-graphic-information-of-association-are-lost-by-importing-project/index.html">Routing graphic information of association are lost by importing project</a>
<p class="bbp-topic-meta">
<span class="bbp-topic-started-by">Started by: <a href="forums/user/kae-made/index.html" title="View kae-made's profile" class="bbp-author-link"><span class="bbp-author-avatar"><img alt='' src='https://secure.gravatar.com/avatar/7f15c11164ae2cab33c047b0dd810bd93ecb3bcf39d5f269f9878fa89efbacce?s=14&d=mm&r=g' srcset='https://secure.gravatar.com/avatar/7f15c11164ae2cab33c047b0dd810bd93ecb3bcf39d5f269f9878fa89efbacce?s=28&d=mm&r=g 2x' class='avatar avatar-14 photo' height='14' width='14' /></span><span class="bbp-author-name">kae-made</span></a></span>
<span class="bbp-topic-started-in">in: <a href="forums/community/bridgepoint-development-and-integrations/index.html">BridgePoint Development and Integrations</a></span>
</p>
</li>
<li class="bbp-topic-voice-count">2</li>
<li class="bbp-topic-reply-count">2</li>
<li class="bbp-topic-freshness">
<a href="forums/topic/routing-graphic-information-of-association-are-lost-by-importing-project/index.html#post-7828" title="Reply To: Routing graphic information of association are lost by importing project">1 year, 4 months ago</a>
<p class="bbp-topic-meta">
<span class="bbp-topic-freshness-author"><a href="forums/user/cort/index.html" title="View cort's profile" class="bbp-author-link"><span class="bbp-author-avatar"><img alt='' src='https://secure.gravatar.com/avatar/ca308d0579825a651fd9c17e27bb94d5ca63f6afd5132edc4321556ec82bd246?s=14&d=mm&r=g' srcset='https://secure.gravatar.com/avatar/ca308d0579825a651fd9c17e27bb94d5ca63f6afd5132edc4321556ec82bd246?s=28&d=mm&r=g 2x' class='avatar avatar-14 photo' height='14' width='14' /></span><span class="bbp-author-name">cort</span></a></span>
</p>
</li>
</ul><!-- #bbp-topic-7827 -->
<ul id="bbp-topic-7818" class="loop-item-5 user-id-288 bbp-parent-forum-408 even post-7818 topic type-topic status-publish hentry">
<li class="bbp-topic-title">
<a class="bbp-topic-permalink" href="forums/topic/2024-chess-modeling-challenge/index.html">2024 Chess Modeling Challenge</a>
<p class="bbp-topic-meta">
<span class="bbp-topic-started-by">Started by: <a href="forums/user/leviathan747/index.html" title="View Levi's profile" class="bbp-author-link"><span class="bbp-author-avatar"><img alt='' src='https://secure.gravatar.com/avatar/90d61b46ccc7aadd4f181c3cea5f015ca465b5db6397c542ca65e3a0de6cb2a9?s=14&d=mm&r=g' srcset='https://secure.gravatar.com/avatar/90d61b46ccc7aadd4f181c3cea5f015ca465b5db6397c542ca65e3a0de6cb2a9?s=28&d=mm&r=g 2x' class='avatar avatar-14 photo' height='14' width='14' /></span><span class="bbp-author-name">Levi</span></a></span>
<span class="bbp-topic-started-in">in: <a href="forums/community/xtuml-forum/index.html">BridgePoint/xtUML Usage and Training</a></span>
</p>
</li>
<li class="bbp-topic-voice-count">1</li>
<li class="bbp-topic-reply-count">1</li>
<li class="bbp-topic-freshness">