-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1143 lines (976 loc) · 60.3 KB
/
index.html
File metadata and controls
1143 lines (976 loc) · 60.3 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">
<head>
<meta charset="UTF-8">
<!--[if IE]><meta http-equiv='X-UA-Compatible' content='IE=edge,chrome=1'><![endif]-->
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
<link rel="profile" href="http://gmpg.org/xfn/11">
<title>Open Source Risk Engine – Open Source Risk Analytics – Open Source Risk Modelling</title>
<meta name="robots" content="max-image-preview:large">
<link rel="dns-prefetch" href="//www.google.com">
<link rel="dns-prefetch" href="//fonts.googleapis.com">
<link rel="icon" type="image/png" href="/content/uploads/2016/10/favicon.png" sizes="16x16">
<link rel="icon" type="image/png" href="/content/uploads/2016/10/favicon.png" sizes="32x32">
<style id="block-library-inline-css" type="text/css">
:root {
--ore-block-synced-color: #7a00df;
--ore-block-synced-color--rgb: 122,0,223;
--ore-bound-block-color: var(--ore-block-synced-color);
--ore-editor-canvas-background: #ddd;
--ore-admin-theme-color: #007cba;
--ore-admin-theme-color--rgb: 0,124,186;
--ore-admin-theme-color-darker-10: #006ba1;
--ore-admin-theme-color-darker-10--rgb: 0,107,160.5;
--ore-admin-theme-color-darker-20: #005a87;
--ore-admin-theme-color-darker-20--rgb: 0,90,135;
--ore-admin-border-width-focus: 2px
}
@media (min-resolution:192dpi) {
:root {
--ore-admin-border-width-focus: 1.5px
}
}
.wp-element-button {
cursor: pointer
}
:root .has-very-light-gray-background-color {
background-color: #eee
}
:root .has-very-dark-gray-background-color {
background-color: #313131
}
:root .has-very-light-gray-color {
color: #eee
}
:root .has-very-dark-gray-color {
color: #313131
}
:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background {
background: linear-gradient(135deg,#00d084,#0693e3)
}
:root .has-purple-crush-gradient-background {
background: linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)
}
:root .has-hazy-dawn-gradient-background {
background: linear-gradient(135deg,#faaca8,#dad0ec)
}
:root .has-subdued-olive-gradient-background {
background: linear-gradient(135deg,#fafae1,#67a671)
}
:root .has-atomic-cream-gradient-background {
background: linear-gradient(135deg,#fdd79a,#004a59)
}
:root .has-nightshade-gradient-background {
background: linear-gradient(135deg,#330968,#31cdcf)
}
:root .has-midnight-gradient-background {
background: linear-gradient(135deg,#020381,#2874fc)
}
:root {
--ore--preset--font-size--normal: 16px;
--ore--preset--font-size--huge: 42px
}
.has-regular-font-size {
font-size: 1em
}
.has-larger-font-size {
font-size: 2.625em
}
.has-normal-font-size {
font-size: var(--ore--preset--font-size--normal)
}
.has-huge-font-size {
font-size: var(--ore--preset--font-size--huge)
}
.has-text-align-center {
text-align: center
}
.has-text-align-left {
text-align: left
}
.has-text-align-right {
text-align: right
}
.has-fit-text {
white-space: nowrap !important
}
#end-resizable-editor-section {
display: none
}
.aligncenter {
clear: both
}
.items-justified-left {
justify-content: flex-start
}
.items-justified-center {
justify-content: center
}
.items-justified-right {
justify-content: flex-end
}
.items-justified-space-between {
justify-content: space-between
}
.screen-reader-text {
border: 0;
clip-path: inset(50%);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px;
word-wrap: normal !important
}
.screen-reader-text:focus {
background-color: #ddd;
clip-path: none;
color: #444;
display: block;
font-size: 1em;
height: auto;
left: 5px;
line-height: normal;
padding: 15px 23px 14px;
text-decoration: none;
top: 5px;
width: auto;
z-index: 100000
}
html :where(.has-border-color) {
border-style: solid
}
html :where([style*=border-top-color]) {
border-top-style: solid
}
html :where([style*=border-right-color]) {
border-right-style: solid
}
html :where([style*=border-bottom-color]) {
border-bottom-style: solid
}
html :where([style*=border-left-color]) {
border-left-style: solid
}
html :where([style*=border-width]) {
border-style: solid
}
html :where([style*=border-top-width]) {
border-top-style: solid
}
html :where([style*=border-right-width]) {
border-right-style: solid
}
html :where([style*=border-bottom-width]) {
border-bottom-style: solid
}
html :where([style*=border-left-width]) {
border-left-style: solid
}
html :where(img[class*=wp-image-]) {
height: auto;
max-width: 100%
}
:where(figure) {
margin: 0 0 1em
}
html :where(.is-position-sticky) {
--ore-admin--admin-bar--position-offset: var(--ore-admin--admin-bar--height,0px)
}
@media screen and (max-width:600px) {
html :where(.is-position-sticky) {
--ore-admin--admin-bar--position-offset: 0px
}
}
/*# sourceURL=wp-block-library-inline-css */
</style>
<style id="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=/includes/css/classic-themes.min.css */
</style>
<style id="global-styles-inline-css" type="text/css">
:root {
--ore--preset--aspect-ratio--square: 1;
--ore--preset--aspect-ratio--4-3: 4/3;
--ore--preset--aspect-ratio--3-4: 3/4;
--ore--preset--aspect-ratio--3-2: 3/2;
--ore--preset--aspect-ratio--2-3: 2/3;
--ore--preset--aspect-ratio--16-9: 16/9;
--ore--preset--aspect-ratio--9-16: 9/16;
--ore--preset--color--black: #000000;
--ore--preset--color--cyan-bluish-gray: #abb8c3;
--ore--preset--color--white: #ffffff;
--ore--preset--color--pale-pink: #f78da7;
--ore--preset--color--vivid-red: #cf2e2e;
--ore--preset--color--luminous-vivid-orange: #ff6900;
--ore--preset--color--luminous-vivid-amber: #fcb900;
--ore--preset--color--light-green-cyan: #7bdcb5;
--ore--preset--color--vivid-green-cyan: #00d084;
--ore--preset--color--pale-cyan-blue: #8ed1fc;
--ore--preset--color--vivid-cyan-blue: #0693e3;
--ore--preset--color--vivid-purple: #9b51e0;
--ore--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgb(6,147,227) 0%,rgb(155,81,224) 100%);
--ore--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);
--ore--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgb(252,185,0) 0%,rgb(255,105,0) 100%);
--ore--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgb(255,105,0) 0%,rgb(207,46,46) 100%);
--ore--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);
--ore--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%);
--ore--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);
--ore--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);
--ore--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);
--ore--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);
--ore--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);
--ore--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);
--ore--preset--font-size--small: 13px;
--ore--preset--font-size--medium: 20px;
--ore--preset--font-size--large: 36px;
--ore--preset--font-size--x-large: 42px;
--ore--preset--spacing--20: 0.44rem;
--ore--preset--spacing--30: 0.67rem;
--ore--preset--spacing--40: 1rem;
--ore--preset--spacing--50: 1.5rem;
--ore--preset--spacing--60: 2.25rem;
--ore--preset--spacing--70: 3.38rem;
--ore--preset--spacing--80: 5.06rem;
--ore--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);
--ore--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);
--ore--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);
--ore--preset--shadow--outlined: 6px 6px 0px -3px rgb(255, 255, 255), 6px 6px rgb(0, 0, 0);
--ore--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(--ore--preset--color--black) !important;
}
.has-cyan-bluish-gray-color {
color: var(--ore--preset--color--cyan-bluish-gray) !important;
}
.has-white-color {
color: var(--ore--preset--color--white) !important;
}
.has-pale-pink-color {
color: var(--ore--preset--color--pale-pink) !important;
}
.has-vivid-red-color {
color: var(--ore--preset--color--vivid-red) !important;
}
.has-luminous-vivid-orange-color {
color: var(--ore--preset--color--luminous-vivid-orange) !important;
}
.has-luminous-vivid-amber-color {
color: var(--ore--preset--color--luminous-vivid-amber) !important;
}
.has-light-green-cyan-color {
color: var(--ore--preset--color--light-green-cyan) !important;
}
.has-vivid-green-cyan-color {
color: var(--ore--preset--color--vivid-green-cyan) !important;
}
.has-pale-cyan-blue-color {
color: var(--ore--preset--color--pale-cyan-blue) !important;
}
.has-vivid-cyan-blue-color {
color: var(--ore--preset--color--vivid-cyan-blue) !important;
}
.has-vivid-purple-color {
color: var(--ore--preset--color--vivid-purple) !important;
}
.has-black-background-color {
background-color: var(--ore--preset--color--black) !important;
}
.has-cyan-bluish-gray-background-color {
background-color: var(--ore--preset--color--cyan-bluish-gray) !important;
}
.has-white-background-color {
background-color: var(--ore--preset--color--white) !important;
}
.has-pale-pink-background-color {
background-color: var(--ore--preset--color--pale-pink) !important;
}
.has-vivid-red-background-color {
background-color: var(--ore--preset--color--vivid-red) !important;
}
.has-luminous-vivid-orange-background-color {
background-color: var(--ore--preset--color--luminous-vivid-orange) !important;
}
.has-luminous-vivid-amber-background-color {
background-color: var(--ore--preset--color--luminous-vivid-amber) !important;
}
.has-light-green-cyan-background-color {
background-color: var(--ore--preset--color--light-green-cyan) !important;
}
.has-vivid-green-cyan-background-color {
background-color: var(--ore--preset--color--vivid-green-cyan) !important;
}
.has-pale-cyan-blue-background-color {
background-color: var(--ore--preset--color--pale-cyan-blue) !important;
}
.has-vivid-cyan-blue-background-color {
background-color: var(--ore--preset--color--vivid-cyan-blue) !important;
}
.has-vivid-purple-background-color {
background-color: var(--ore--preset--color--vivid-purple) !important;
}
.has-black-border-color {
border-color: var(--ore--preset--color--black) !important;
}
.has-cyan-bluish-gray-border-color {
border-color: var(--ore--preset--color--cyan-bluish-gray) !important;
}
.has-white-border-color {
border-color: var(--ore--preset--color--white) !important;
}
.has-pale-pink-border-color {
border-color: var(--ore--preset--color--pale-pink) !important;
}
.has-vivid-red-border-color {
border-color: var(--ore--preset--color--vivid-red) !important;
}
.has-luminous-vivid-orange-border-color {
border-color: var(--ore--preset--color--luminous-vivid-orange) !important;
}
.has-luminous-vivid-amber-border-color {
border-color: var(--ore--preset--color--luminous-vivid-amber) !important;
}
.has-light-green-cyan-border-color {
border-color: var(--ore--preset--color--light-green-cyan) !important;
}
.has-vivid-green-cyan-border-color {
border-color: var(--ore--preset--color--vivid-green-cyan) !important;
}
.has-pale-cyan-blue-border-color {
border-color: var(--ore--preset--color--pale-cyan-blue) !important;
}
.has-vivid-cyan-blue-border-color {
border-color: var(--ore--preset--color--vivid-cyan-blue) !important;
}
.has-vivid-purple-border-color {
border-color: var(--ore--preset--color--vivid-purple) !important;
}
.has-vivid-cyan-blue-to-vivid-purple-gradient-background {
background: var(--ore--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;
}
.has-light-green-cyan-to-vivid-green-cyan-gradient-background {
background: var(--ore--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;
}
.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background {
background: var(--ore--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;
}
.has-luminous-vivid-orange-to-vivid-red-gradient-background {
background: var(--ore--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;
}
.has-very-light-gray-to-cyan-bluish-gray-gradient-background {
background: var(--ore--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;
}
.has-cool-to-warm-spectrum-gradient-background {
background: var(--ore--preset--gradient--cool-to-warm-spectrum) !important;
}
.has-blush-light-purple-gradient-background {
background: var(--ore--preset--gradient--blush-light-purple) !important;
}
.has-blush-bordeaux-gradient-background {
background: var(--ore--preset--gradient--blush-bordeaux) !important;
}
.has-luminous-dusk-gradient-background {
background: var(--ore--preset--gradient--luminous-dusk) !important;
}
.has-pale-ocean-gradient-background {
background: var(--ore--preset--gradient--pale-ocean) !important;
}
.has-electric-grass-gradient-background {
background: var(--ore--preset--gradient--electric-grass) !important;
}
.has-midnight-gradient-background {
background: var(--ore--preset--gradient--midnight) !important;
}
.has-small-font-size {
font-size: var(--ore--preset--font-size--small) !important;
}
.has-medium-font-size {
font-size: var(--ore--preset--font-size--medium) !important;
}
.has-large-font-size {
font-size: var(--ore--preset--font-size--large) !important;
}
.has-x-large-font-size {
font-size: var(--ore--preset--font-size--x-large) !important;
}
/*# sourceURL=global-styles-inline-css */
</style>
<link rel="stylesheet" id="bbp-default-css" href="/content/plugins/bbpress/templates/default/css/bbpress.min.css" type="text/css" media="all">
<link rel="stylesheet" id="rhythm-fonts-css" href="https://fonts.googleapis.com/css?family=Dosis%3A300%2C400%2C700%7COpen+Sans%3A400italic%2C700italic%2C400%2C300%2C700&subset=latin" type="text/css" media="all">
<link rel="stylesheet" id="bootstrap-css" href="/content/themes/rhythm/css/bootstrap.min.css" type="text/css" media="all">
<link rel="stylesheet" id="rhythm-main-css" href="/content/themes/rhythm/css/style.css" type="text/css" media="all">
<link rel="stylesheet" id="rhythm-responsive-css" href="/content/themes/rhythm/css/style-responsive.css" type="text/css" media="all">
<link rel="stylesheet" id="animate-css" href="/content/themes/rhythm/css/animate.min.css" type="text/css" media="all">
<link rel="stylesheet" id="vertical-rhythm-css" href="/content/themes/rhythm/css/vertical-rhythm.min.css" type="text/css" media="all">
<link rel="stylesheet" id="owl-carousel-css" href="/content/themes/rhythm/css/owl.carousel.css" type="text/css" media="all">
<link rel="stylesheet" id="magnific-popup-css" href="/content/themes/rhythm/css/magnific-popup.css" type="text/css" media="all">
<link rel="stylesheet" id="fontawesome-css" href="/content/themes/rhythm/css/font-awesome.min.css" type="text/css" media="all">
<link rel="stylesheet" id="et-line-css" href="/content/themes/rhythm/css/et-line.css" type="text/css" media="all">
<link rel="stylesheet" id="rhythm-style-css" href="/content/themes/rhythm/style.css" type="text/css" media="all">
<link rel="stylesheet" id="js_composer_shim-css" href="/content/js_composer_shim.css" type="text/css" media="all">
<link rel="stylesheet" id="redux-google-fonts-ts_theme_options-css" href="https://fonts.googleapis.com/css?family=Raleway%3A700%7COpen+Sans%3A300&subset=latin&ver=6.9.4" type="text/css" media="all">
<script type="text/javascript" src="/includes/js/jquery/jquery.min.js" id="jquery-core-js"></script>
<script type="text/javascript" src="/includes/js/jquery/jquery-migrate.min.js" id="jquery-migrate-js"></script>
<link rel="canonical" href="/">
<link rel="shortlink" href="/">
<script type="text/javascripttext/javascript" src="/content/themes/rhythm/js/placeholder.js"></script><![endif]-->
<script>
function setREVStartSize(e) {
//window.requestAnimationFrame(function() {
window.RSIW = window.RSIW === undefined ? window.innerWidth : window.RSIW;
window.RSIH = window.RSIH === undefined ? window.innerHeight : window.RSIH;
try {
var pw = document.getElementById(e.c).parentNode.offsetWidth,
newh;
pw = pw === 0 || isNaN(pw) || (e.l == "fullwidth" || e.layout == "fullwidth") ? window.RSIW : pw;
e.tabw = e.tabw === undefined ? 0 : parseInt(e.tabw);
e.thumbw = e.thumbw === undefined ? 0 : parseInt(e.thumbw);
e.tabh = e.tabh === undefined ? 0 : parseInt(e.tabh);
e.thumbh = e.thumbh === undefined ? 0 : parseInt(e.thumbh);
e.tabhide = e.tabhide === undefined ? 0 : parseInt(e.tabhide);
e.thumbhide = e.thumbhide === undefined ? 0 : parseInt(e.thumbhide);
e.mh = e.mh === undefined || e.mh == "" || e.mh === "auto" ? 0 : parseInt(e.mh, 0);
if (e.layout === "fullscreen" || e.l === "fullscreen")
newh = Math.max(e.mh, window.RSIH);
else {
e.gw = Array.isArray(e.gw) ? e.gw : [e.gw];
for (var i in e.rl) if (e.gw[i] === undefined || e.gw[i] === 0) e.gw[i] = e.gw[i - 1];
e.gh = e.el === undefined || e.el === "" || (Array.isArray(e.el) && e.el.length == 0) ? e.gh : e.el;
e.gh = Array.isArray(e.gh) ? e.gh : [e.gh];
for (var i in e.rl) if (e.gh[i] === undefined || e.gh[i] === 0) e.gh[i] = e.gh[i - 1];
var nl = new Array(e.rl.length),
ix = 0,
sl;
e.tabw = e.tabhide >= pw ? 0 : e.tabw;
e.thumbw = e.thumbhide >= pw ? 0 : e.thumbw;
e.tabh = e.tabhide >= pw ? 0 : e.tabh;
e.thumbh = e.thumbhide >= pw ? 0 : e.thumbh;
for (var i in e.rl) nl[i] = e.rl[i] < window.RSIW ? 0 : e.rl[i];
sl = nl[0];
for (var i in nl) if (sl > nl[i] && nl[i] > 0) { sl = nl[i]; ix = i; }
var m = pw > (e.gw[ix] + e.tabw + e.thumbw) ? 1 : (pw - (e.tabw + e.thumbw)) / (e.gw[ix]);
newh = (e.gh[ix] * m) + (e.tabh + e.thumbh);
}
var el = document.getElementById(e.c);
if (el !== null && el) el.style.height = newh + "px";
el = document.getElementById(e.c + "_wrapper");
if (el !== null && el) {
el.style.height = newh + "px";
el.style.display = "block";
}
} catch (e) {
console.log("Failure at Presize of Slider:" + e)
}
//});
};</script>
<style type="text/css" title="dynamic-css" class="options-output">
.main-nav .inner-nav ul > li > a, .main-nav.dark .inner-nav ul > li > a {
font-family: Raleway;
font-weight: 700;
font-style: normal;
}
.title-wrapper .hs-line-11, .title-wrapper .hs-line-4, .mod-breadcrumbs, .mod-breadcrumbs a, .mod-breadcrumbs span {
font-family: "Open Sans";
font-weight: 300;
font-style: normal;
}
</style>
<style type="text/css">
</style>
<style type="text/css" data-type="vc_custom-css">
.main-section {
clear: both;
padding-top: 0px !important;
}
</style>
<style id="rs-plugin-settings-inline-css" type="text/css">
#rs-demo-id {
}
/*# sourceURL=rs-plugin-settings-inline-css */
</style>
</head>
<body class="home page appear-animate">
<!-- Page Loader -->
<div class="page-loader ">
<div class="loader">Loading...</div>
</div>
<!-- End Page Loader -->
<!-- Page Wrap -->
<div class="page" id="top">
<!-- Navigation panel -->
<nav class="main-nav stick-fixed transparent">
<div class="full-wrapper relative clearfix">
<div class="nav-logo-wrap local-scroll">
<a class="logo" href="/" title="Open Source Risk Engine - Open Source Risk Analytics">
<img src="/content/uploads/2015/03/logo_trans-1.png" width="200" height="80" alt="Open Source Risk Engine - Open Source Risk Analytics">
</a>
</div>
<div class="mobile-nav">
<i class="fa fa-bars"></i>
</div>
<!-- Main Menu -->
<div class="inner-nav desktop-nav">
<ul id="primary-nav" class="clearlist scroll-nav local-scroll">
<li id="menu-item-3433" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home current-menu-item page_item page-item-1835 current_page_item menu-item-3433"><a href="/" class=" ">Home</a></li>
<li id="menu-item-3683" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-3683"><a href="https://github.com/OpenSourceRisk/Engine" class=" ">View On Github</a></li>
<li id="menu-item-3658" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3658"><a href="/documentation/" class=" ">Documentation</a></li>
<li id="menu-item-3595" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3595"><a href="/faqs/" class=" ">FAQs</a></li>
<li id="menu-item-3659" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3659"><a href="/roadmap/" class=" ">Roadmap</a></li>
<li id="menu-item-7207" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-7207"><a href="/learning/" class=" ">Learning</a></li>
<li id="menu-item-3673" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3673"><a href="/contributions/" class=" ">Contributions</a></li>
<li id="menu-item-7243" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-7243"><a target="_blank" href="https://github.com/OpenSourceRisk/Engine/discussions" class=" ">Discussion</a></li>
<li id="menu-item-3661" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3661"><a href="/license/" class=" ">License</a></li>
</ul>
<ul class="clearlist modules">
</ul>
</div>
<!-- End Main Menu -->
</div>
</nav>
<!-- End Navigation panel -->
<!-- Page Section -->
<section class="main-section page-section no-margin">
<div class="container relative">
<article id="post-1835" class="post-1835 page type-page status-publish hentry">
<div class="text">
<section class="content-section full-width with-col cover no-padding no-margin content-section-69cb8af294eb4">
<div class="row vc_row-fluid">
<div class="wpb_column col-md-12">
<div class="wpb_revslider_element wpb_content_element">
<!-- START orehome1 REVOLUTION SLIDER 6.7.28 --><p class="rs-p-wp-fix"></p>
<div class="swiper ore-hero-slider">
<div class="swiper-wrapper">
<div class="swiper-slide" style="background-image:url('/content/uploads/2015/03/abstraact_bg.jpg');">
<div class="ore-slide-overlay"></div>
<div class="ore-slide-content">
<p class="ore-slide-body">Opensourcerisk.org is Post Trade Solutions (formerly Acadia)’s Open Source contribution to the risk community and its stakeholders. It is the first end-to-end open source risk application providing complex risk analytics for financial institutions through a series of releases.</p>
<a href="https://github.com/OpenSourceRisk/Engine" class="ore-slide-btn">ORE Version 16 is Now Available — View on GitHub ›</a>
</div>
</div>
<div class="swiper-slide" style="background-image:url('/content/uploads/2023/03/digital-space-glowing-lines-scaled.jpeg');">
<div class="ore-slide-overlay"></div>
<div class="ore-slide-content">
<h2 class="ore-slide-title">Discover the Possibilities with ORE Academy</h2>
<p class="ore-slide-body">View an extensive library of learning materials on YouTube covering all of the pricing and risk analysis possibilities within ORE so that you can take complete advantage of its capabilities.</p>
<a href="https://www.youtube.com/channel/UCrCpkb1-s3pxKd7U-YgJulA" target="_blank" rel="noopener" class="ore-slide-btn">View the ORE Academy YouTube Channel ›</a>
</div>
</div>
<div class="swiper-slide" style="background-image:url('/content/uploads/2016/07/hero_stocks-darken.jpg');">
<div class="ore-slide-overlay"></div>
<div class="ore-slide-content">
<h2 class="ore-slide-title">Quantitative Derivatives Pricing and Risk Modeling Program</h2>
<p class="ore-slide-body">Master key analytical and decision-making skills in just six months, and elevate your career.</p>
<a href="/learning/" class="ore-slide-btn">Find Out More ›</a>
</div>
</div>
<div class="swiper-slide" style="background-image:url('/content/uploads/2016/07/hero_bg.jpg');">
<div class="ore-slide-overlay"></div>
<div class="ore-slide-content">
<h2 class="ore-slide-title">Risk management is at a crossroads.</h2>
<p class="ore-slide-body">Standard rules can reduce capital effectiveness, while ‘black box’ models generate concern. The increased volume and complexity of regulation is driving a need for global standardisation.</p>
<a href="https://github.com/OpenSourceRisk" class="ore-slide-btn">ORE Version 16 is Now Available — View on GitHub ›</a>
</div>
</div>
<div class="swiper-slide" style="background-image:url('/content/uploads/2016/07/hero_stocks-darken.jpg');">
<div class="ore-slide-overlay"></div>
<div class="ore-slide-content">
<h2 class="ore-slide-title">ORE is Always Evolving</h2>
<p class="ore-slide-body">To get the most out of Open Source Risk Engine and stay up to date with the latest releases, training videos and more, sign up to receive developments straight to your inbox.</p>
<a href="https://share.hsforms.com/1eqcUZ-9_QdSH__M7_YPSig43ul4" target="_blank" rel="noopener" class="ore-slide-btn">Sign up for ORE Developments ›</a>
<a href="https://github.com/OpenSourceRisk/Engine" class="ore-slide-btn">View on GitHub ›</a>
</div>
</div>
</div>
<div class="swiper-pagination"></div>
</div>
<!-- Swiper JS (replaces Revolution Slider) -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css">
<script src="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.js"></script>
<style>
.ore-hero-slider {
/* Break out of Bootstrap container to full viewport width */
width: 100vw;
position: relative;
left: 50%;
transform: translateX(-50%);
height: 650px;
max-height: 65vh;
/* Prevent scrollbar on overflow during transition */
overflow: hidden;
}
/* Remove gutters from the row/column wrapping the slider */
.wpb_revslider_element.wpb_content_element {
margin-bottom: 0 !important;
}
.wpb_revslider_element > p.rs-p-wp-fix {
display: none;
}
.ore-hero-slider .swiper-slide {
background-size: cover;
background-position: center;
background-repeat: no-repeat;
position: relative;
display: flex;
align-items: center;
}
.ore-slide-overlay {
position: absolute;
inset: 0;
background: rgba(0,0,0,0.50);
}
.ore-slide-content {
position: relative;
z-index: 2;
max-width: 820px;
margin-left: 120px;
color: #fff;
font-family: 'Open Sans',sans-serif;
padding: 20px 20px 20px 0;
}
.ore-slide-title {
font-size: 40px;
font-weight: 300;
line-height: 1.15;
margin: 0 0 14px;
color: #fff !important;
}
.ore-slide-body {
font-size: 25px;
font-weight: 300;
line-height: 1.6;
margin: 0 0 28px;
color: #fff !important;
}
.ore-slide-btn {
display: inline-block;
background: rgba(0,110,165,0.80);
color: #fff !important;
padding: 12px 32px;
border-radius: 30px;
font-family: 'Roboto',sans-serif;
font-size: 16px;
font-weight: 500;
text-decoration: none;
margin: 0 8px 8px 0;
transition: background .2s,color .2s;
}
.ore-slide-btn:hover {
background: #fff;
color: #000 !important;
}
.swiper-pagination-bullet-active {
background: #fff;
}
@media(max-width:768px) {
.ore-slide-content {
margin-left: 20px;
margin-right: 20px;
}
.ore-slide-title {
font-size: 28px;
}
.ore-slide-body {
font-size: 18px;
}
}
</style>
<script>
new Swiper('.ore-hero-slider', {
loop: true, autoplay: { delay: 7000, disableOnInteraction: false },
speed: 1800,
effect: 'fade', fadeEffect: { crossFade: true },
pagination: { el: '.swiper-pagination', clickable: true }
});
</script>
<!-- END REVOLUTION SLIDER -->
</div><div class="clear rs-space" style="height:35px;"></div>
</div>
</div>
</section><section id="more" class="content-section full-width with-col cover no-padding no-margin content-section-69cb8af29ca57">
<div class="row vc_row-fluid">
<div class="wpb_column col-md-8">
<div class="clear rs-space" style="height:40px;"></div><blockquote class="mb-0 "><p style="color:#026d95;">The Open Source Risk Engine’s objective is to provide a free/open source platform for risk analytics and XVA. It is based on QuantLib and grew from work developed by market professionals and academics.</p></blockquote><div class="section-text text-block align-left">
<p>The <a href="/" rel="nofollow">Open Source Risk</a> project aims at establishing a transparent peer-reviewed framework for pricing and risk analysis that can serve as</p>
<ul>
<li>a benchmarking, validation, training, teaching reference</li>
<li>an extensible foundation for tailored risk solutions</li>
</ul>
<p><strong>Open Source Risk Engine (ORE) provides</strong></p>
<ul>
<li>contemporary risk analytics and value adjustments (XVAs)</li>
<li>interfaces for trade/market data and system configuration (API and XML)</li>
<li>simple application launchers in Excel, LibreOffice, Python, Jupyter</li>
<li>various examples that demonstrate typical use cases</li>
<li>comprehensive test suites</li>
</ul>
<p>ORE is based on <a href="http://quantlib.org/" rel="nofollow">QuantLib</a>, the open source library for quantitative finance, and it extends QuantLib in terms of simulation models, financial instruments and pricing engines.</p>
<p>ORE is sponsored by <a href="https://www.acadia.inc/" rel="nofollow">Post Trade Solutions (formerly Acadia)</a> as part of the firm’s commitment to transparency in pricing methods and risk analytics applied in the industry. ORE is free/open software, provided under the Modified BSD License, which permits using and modifying the code base as well as incorporating it into commercial applications.</p>
</div>
</div><div class="wpb_column col-md-4">
<div class="alert info" style="background-color:#1e73be;color:#ffffff;border-color:#ffffff;"><i class="fa-lg fa fa-github"></i> ORE VERSION 16 NOW AVAILABLE</div><div class="mb-10"><a href="https://github.com/OpenSourceRisk/Engine" title="button" target="_blank" class="btn btn-mod btn-small btn-solid btn-round"> View on GitHub</a></div><div class="mb-10"><a href="https://solutions.lseg.com/OREMailingList" title="button" target="_blank" class="btn btn-custom-69cb8af29ce0f btn-mod btn-small btn-solid btn-round"> Sign up to hear about the latest ORE developments</a></div><div class="clear rs-space" style="height:20px;"></div><div class="full-block align-left"><img decoding="async" src="/content/uploads/2025/08/lseg_logo_pos_rgb.png" width="70%" alt="" title=""></div><div class="clear rs-space" style="height:20px;"></div><div class="section-text text-block align-left">
<p>Open Source Risk Engine is sponsored by <a href="https://www.acadia.inc/">Post Trade Solutions (formerly Acadia)</a>. The concept of open source is integral to the Firm’s vision. ORE is offered to the community as part of that vision and commitment to improve the transparency of risk analytics.</p>
</div><div class="clear rs-space" style="height:10px;"></div><div class="full-block align-left"><img decoding="async" src="/content/uploads/2020/11/components@2x-1.png" alt="" title=""></div><div class="clear rs-space" style="height:20px;"></div>
</div><div class="wpb_column col-md-12"></div><div class="wpb_column col-md-12"></div>
</div>
</section><section class="content-section full-width with-col cover no-padding no-margin content-section-69cb8af29d2d5"><div class="row vc_row-fluid"><div class="wpb_column col-md-12"><div class="clear rs-space" style="height:30px;"></div><h3 class="banner-heading font-alt mb-30 mb-xxs-10" style="margin-bottom:20px;color:#777777;">Release Timeline</h3><div class="clear rs-space" style="height:15px;"></div><div class="full-block align-left"><img decoding="async" src="/content/uploads/2025/05/openrisk_timeline.png.png" alt="" title=""></div></div></div></section><section class="content-section full-width with-col cover no-padding no-margin content-section-69cb8af29d560"><div class="row vc_row-fluid"><div class="wpb_column col-md-12"><hr class="ts-divider" style="margin-top:20px;margin-bottom:30px;"></div></div></section><section class="content-section full-width with-col cover no-padding no-margin content-section-69cb8af29d5fd"><div class="row vc_row-fluid"><div class="wpb_column col-md-12"><div class="clear rs-space" style="height:60px;"></div></div></div></section><section class="content-section full-width with-col cover no-padding no-margin banner-section content-section-69cb8af29d6d9" data-background="/content/uploads/2015/03/abstraact_bg.jpg">
<div class="row vc_row-fluid">
<div class="wpb_column col-sm-6">
<h3 class="banner-heading font-alt mb-30 mb-xxs-10" style="margin-top:140px;margin-bottom:20px;color:rgba(255,255,255,0.9);">Open Source</h3><div class="section-text text-block " style="color:rgba(255,255,255,0.7);">
<p>Open Source Risk Engine is open source software, provided under the Modified BSD License, which permits using, modifying the code base as well as incorporating it into commercial applications.</p>
</div><div class="clear rs-space" style="height:140px;"></div>
</div><div class="wpb_column col-sm-6 banner-image wow fadeInUp"></div>
</div>
</section>
</div>
</article><!-- #post-## -->
</div>
</section>
<!-- End Page Section -->
<!-- Foter -->
<div class="row vc_row-fluid" style="background-color: #026d95; margin: 0px 0 0 0 !important; text-align: center; justify-content: center;">
<center>
<h3>
<br>
<a href="https://solutions.lseg.com/OREMailingList" title="button" target="_blank" class="btn btn-custom-61eea97c85a47 btn-mod btn-small btn-solid btn-round"> Sign up to hear about the latest ORE developments</a>
<br><br>
</h3>
</center>
</div>
<footer class="small-section bg-gray-lighter footer pb-60">
<div class="container">
<!-- Footer Widgets -->
<div class="row align-left">
<div class="col-sm-6 col-md-3">
<div id="text-2" class="widget widget_text">
<h5 class="widget-title font-alt">About</h5> <div class="textwidget">
<p><img src="/content/uploads/2016/10/footer_logo.png" width="200" height="80" alt="Open Source Risk Engine - Open Source Risk Analytics"></p>
<p>The Open Source Risk Engine’s objective is to offer open source as the basis for risk modelling and analytics at financial institutions. It grew from work developed on QuantLib by market professionals and academics. ORE wants to take this to the next level.</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-3">
<div id="nav_menu-2" class="widget widget_nav_menu">
<h5 class="widget-title font-alt">Quick Links</h5><div class="menu-main-container">
<ul id="menu-main" class="menu">
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home current-menu-item page_item page-item-1835 current_page_item menu-item-3433"><a href="/" aria-current="page">Home</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-3683"><a href="https://github.com/OpenSourceRisk/Engine">View On Github</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3658"><a href="/documentation/">Documentation</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3595"><a href="/faqs/">FAQs</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3659"><a href="/roadmap/">Roadmap</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-7207"><a href="/learning/">Learning</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3673"><a href="/contributions/">Contributions</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-7243"><a target="_blank" href="https://github.com/OpenSourceRisk/Engine/discussions">Discussion</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3661"><a href="/license/">License</a></li>
</ul>
</div>
</div>
</div>
<div class="col-sm-6 col-md-3">
<div id="text-4" class="widget widget_text">
<h5 class="widget-title font-alt">License</h5> <div class="textwidget">
<small>
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met :
Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
Neither the names of the copyright holders nor the names of the Open Source Risk Engine
Group or its contributors may be used to endorse or promote products
derived from this software without specific prior written permission.
</small>
</div>
</div>
</div>
<div class="col-sm-6 col-md-3">
<div id="text-3" class="widget widget_text">
<h5 class="widget-title font-alt">Copyright</h5> <div class="textwidget">
<p>Copyright © LSEG Post Trade Solutions 2025. All rights reserved. Copyright © AcadiaSoft, Inc. 2025. All rights reserved. Acadia is a registered trademark of AcadiaSoft, Inc., an LSEG business. All rights reserved.</p>
<p>This website uses <a title="/cookie-policy/" href="/cookie-policy/">Cookies</a>. Continued use of the site will be deemed as your acceptance of this necessity. LSEG Post Trade Solutions <a title="/cookie-policy/" href="/cookie-policy/"><b>respects your privacy</b></a> and never collects personally identifiable information. Please read our <a title="/terms-and-conditions/" href="/terms-and-conditions/">Terms of Use</a> and <a title="/cookie-policy/" href="/cookie-policy/">Privacy Policy</a>.</p>
</div>
</div>
</div>
</div>
<!-- End Footer Widgets -->
<!-- Divider -->
<hr class="mt-0 mb-30 mb-xs-40 black">
<!-- End Divider -->
<!-- Footer Logo -->
<!-- End Footer Logo -->
<!-- Footer Text -->
<div class="footer-text">
<div class="footer-copy font-alt">
</div>
<div class="footer-made">
This website uses cookies. Continued use of the site will be deemed as your acceptance of the use of cookies.