

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>CORE</title>
    <link rel="shortcut icon" href="/static/images/favicon.ico">
    <style>
        body {
            background-color: #ededed;
            margin: 0px;
            overflow: hidden;
            padding: 0px;
        }

        #InitialAppLoadingState {
            background-color: #ededed;
            height: 100vh;
            left: 0px;
            opacity: 1;
            position: fixed;
            top: 0px;
            width: 100vw;
            z-index: 2000;
        }

        #InitialAppLoadingState.hide {
            opacity: 0;
            transition: opacity 0.5s;
        }

        #InitialAppLoadingState .loader {
            left: 50%;
            position: absolute;
            top: 50%;
            transform: translate(-50%, -50%);
        }

        @-webkit-keyframes enter {
            0% {
                opacity: 0;
                top: -8px;
            }
            5% {
                opacity: 1;
                top: 0px;
            }
            50.9% {
                opacity: 1;
                top: 0px;
            }
            55.9% {
                opacity: 0;
                top: 8px;
            }
        }

        @keyframes enter {
            0% {
                opacity: 0;
                top: -8px;
            }
            5% {
                opacity: 1;
                top: 0px;
            }
            50.9% {
                opacity: 1;
                top: 0px;
            }
            55.9% {
                opacity: 0;
                top: 8px;
            }
        }

        @-moz-keyframes enter {
            0% {
                opacity: 0;
                top: -8px;
            }
            5% {
                opacity: 1;
                top: 0px;
            }
            50.9% {
                opacity: 1;
                top: 0px;
            }
            55.9% {
                opacity: 0;
                top: 8px;
            }
        }

        body {
            background: #ffffff;
        }

        * {
            margin: 0;
        }

        .loader {
            position: absolute;
            left: 50%;
            top: 50%;
            margin-left: -36px;
            margin-top: -36px;
        }

        .square {
            background: #29ABE2;
            width: 16px;
            height: 16px;
            float: left;
            border-radius: 2px;
            top: -8px;
            margin-right: 4px;
            margin-top: 4px;
            position: relative;
            opacity: 0;
            -webkit-animation: enter 6s infinite;
            animation: enter 6s infinite;
        }

        .square:nth-child(1) {
            -webkit-animation-delay: 1.2s;
            -moz-animation-delay: 1.2s;
            animation-delay: 1.2s;
        }

        .square:nth-child(2) {
            -webkit-animation-delay: 1.4s;
            -moz-animation-delay: 1.4s;
            animation-delay: 1.4s;
        }

        .square:nth-child(3) {
            -webkit-animation-delay: 1.6s;
            -moz-animation-delay: 1.6s;
            animation-delay: 1.6s;
            background: #29ABE2;
        }

        .square:nth-child(4) {
            -webkit-animation-delay: 0.6s;
            -moz-animation-delay: 0.6s;
            animation-delay: 0.6s;
        }

        .square:nth-child(5) {
            -webkit-animation-delay: 0.8s;
            -moz-animation-delay: 0.8s;
            animation-delay: 0.8s;
        }

        .square:nth-child(6) {
            -webkit-animation-delay: 1s;
            -moz-animation-delay: 1s;
            animation-delay: 1s;
        }

        .square:nth-child(8) {
            -webkit-animation-delay: 0.2s;
            -moz-animation-delay: 0.2s;
            animation-delay: 0.2s;
        }

        .square:nth-child(9) {
            -webkit-animation-delay: 0.4s;
            -moz-animation-delay: 0.4s;
            animation-delay: 0.4s;
        }

        .clear {
            clear: both;
        }

        .last {
            margin-right: 0;
        }

    </style>
    
        <!-- Google Tag Manager -->
        <script id="gtmScript" nonce='slME8tKs9ueVF6OcsL5ZaQ=='>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
        new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
        j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
        'https://www.googletagmanager.com/gtm.js?id='+i+dl;var n=d.querySelector('[nonce]');
        n&&j.setAttribute('nonce',n.nonce||n.getAttribute('nonce'));f.parentNode.insertBefore(j,f);
        })(window,document,'script','dataLayer','GTM-5VCZJRP');</script>
        <!-- End Google Tag Manager -->
    
    <!-- Webpack rendered CSS -->
    <link href="/static/css/main.015b6e36.css" rel="stylesheet" />
</head>
<body>
    
        <!-- Google Tag Manager (noscript) -->
        <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-5VCZJRP"
        height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
        <!-- End Google Tag Manager (noscript) -->
    
    <div id="portalRoot"></div>
    <div id="app">
    </div>

    <div id="InitialAppLoadingState">
        <div class="loader">
            <div class="sk-cube-grid">
                <div class="square"></div>
                <div class="square"></div>
                <div class="square last"></div>
                <div class="square clear"></div>
                <div class="square"></div>
                <div class="square last"></div>
                <div class="square clear"></div>
                <div class="square "></div>
                <div class="square last"></div>
            </div>
        </div>
    </div>

    <script type="text/javascript" nonce='slME8tKs9ueVF6OcsL5ZaQ=='>
    (function () {
        var InitialAppLoadingState = document.getElementById('InitialAppLoadingState');
        var OnInitialAppLoadingStateTransitionEnd = function () {
            InitialAppLoadingState.removeEventListener('transitionend', OnInitialAppLoadingStateTransitionEnd);
            document.body.removeChild(InitialAppLoadingState);
            InitialAppLoadingState = null;

            document.body.classList.add('loaded');
        };

        InitialAppLoadingState.addEventListener('transitionend', OnInitialAppLoadingStateTransitionEnd);
    })();
    </script>
    <!-- script auto-inject -->
    <script src="/static/js/main.645e9b16.js" ></script>
</body>
</html>
