Untitled

 avatar
unknown
plain_text
4 years ago
38 kB
6
Indexable

<!DOCTYPE html>
<html lang="en">
<head>
	<title>MIND</title>
	<!-- partial:partials/meta-tags.html -->
		<meta charset="utf-8">
	<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
	<meta name="description" content="Learn math with JiJi, by the MIND Research Institute">
	<meta name="mobile-web-app-capable" content="yes">
	<meta name="apple-mobile-web-app-capable" content="yes">
	<meta name="theme-color" content="#FF9400">

	<!-- partial -->
	<!-- partial:partials/viewport-meta-tag-locked-zoom.html -->
	<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=0,viewport-fit=cover">

	<!-- partial -->
	<!-- partial:partials/link-tags.html -->
		<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
	<link rel="apple-touch-icon" type="image/png" href="/apple-touch-icon.png" sizes="180x180">
	<link rel="icon" type="image/png" href="/favicon-32x32.png" sizes="32x32">
	<link rel="icon" type="image/png" href="/favicon-16x16.png" sizes="16x16">
	<link rel="apple-touch-icon" sizes="152x152" href="/touch-icon-ipad.png">
	<link rel="apple-touch-icon" sizes="167x167" href="/touch-icon-ipad-retina.png">
	<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5">
	<link rel="manifest" href="/webapp-manifest.json">
	<!-- partial -->
</head>
<body class="learn" aurelia-app="main" aurelia-root="learnApp">
	<!-- partial:partials/redirect-unsupported.html -->
	
<script>
	var ua = navigator.userAgent;
	if (ua.indexOf('MSIE ') !== -1 || ua.indexOf('Trident/') !== -1 || ua.indexOf('IEMobile') !== -1) {
		window.location.replace('/ie.html');
	}
</script>

<!-- partial:user-agent-searches.html -->
<script>
/**
 * Global Methods, which ARE NOT DEPENDENT upon each other.
 * For dependencies, see the platform-detection.html or browser-detection.html files.
 * These are really string searches & not regular expressions, because regEx contains variables & string searches don't.
 */

/**
 * Device User Agent String Searches.
 * These are NOT dependent on the values from mind_browsers, nor mind_oses.
 */
function mind_devices() {
	const ua = navigator.userAgent;

	// Hardware Devices:
	const device = {
		isIPad: ua.indexOf('iPad') > -1,
		isIPhone: ua.indexOf('iPhone') > -1,
		isPhone: (ua.indexOf('Phone') > -1 || ua.indexOf('Mobile') > -1) // Windows Phone user-agents contain either Phone (Edge 1-78) or Mobile (Edge 79+).
	};

	return device;
}

/**
 * Operating System User Agent String Searches
 * These are NOT dependent on the values from mind_browsers, nor mind_devices.
 */
function mind_oses() {
	const ua = navigator.userAgent;
	/**
	 * BrowserStack shows that Mac OS X Mohave (Safari 12.1) & High Sierra (11.1) do not have maxTouchPoints built into the navigator object.
	 * It was added in Catalina (Safari 13.1). Up until Catalina (released on October 7, 2019), it was undefined. Effectively, it's new to Desktop Mac OS X.
	 */
	const maxTouchPoints = navigator.maxTouchPoints || 0;

	// Software Operating Systems:
	let os = {
		isAndroid: ua.indexOf('Android') > -1,
		isChromeOS: ua.indexOf('CrOS') > -1,
		isCriOS: ua.indexOf('CriOS') > -1, // Chrome on iOS: iPhone & iPad.
		isIOS: (ua.indexOf('iOS') > -1 || ua.indexOf('iPhone; CPU iPhone OS') > -1 || ua.indexOf('iPad; CPU OS') > -1),
		isMacintosh: (ua.indexOf('Macintosh') > -1 && (maxTouchPoints === 0)),
		isWindows: ua.indexOf('Windows') > -1
	};

	os.isIPadOS = (!os.isIOS && ua.indexOf('Macintosh') > -1 && (maxTouchPoints > 0)); // maxTouchPoints will be 5 on iPad.

	return os;
}

/**
 * Browser User Agent String Searches.
 * These are NOT dependent on the values from mind_devices, nor mind_oses.
 */
function mind_browsers() {
	const ua = navigator.userAgent;

	// Hardware Devices:
	const browser = {
		isChrome: (((ua.indexOf('Chrome') > -1) || (ua.indexOf('CriOS') > -1)) && (ua.indexOf('Silk') === -1) && (ua.indexOf('Edge') === -1) && (ua.indexOf('Edg/') === -1)),
		isEdge: (ua.indexOf('Edge') > -1 || ua.indexOf('Edg/') > -1),
		isFirefox: (ua.indexOf('Firefox') > -1 || ua.indexOf('FxiOS') > -1),
		isIE: ((ua.indexOf('MSIE') > -1) || (ua.indexOf('Trident') > -1) || (ua.indexOf('IEMobile') > -1)),
		isKonqueror: ua.indexOf('konqueror') > -1,
		isOpera: ua.indexOf('OPR') > -1,
		isSafari: ((ua.indexOf('Safari') > -1) && (ua.indexOf('Chrome') === -1) && (ua.indexOf('CriOS') === -1) && (ua.indexOf('konqueror') === -1)),
		isSilk: ua.indexOf('Silk') > -1
	};

	return browser;
}
</script>
<!-- partial -->
<!-- partial:platform-detection.html -->
<script>
// Global method:
function mind_platformDetection() {
	/**
	 * Platform Detection
	 * These ARE dependent on the mind_devices, mind_oses and mind_browsers values.
	 */
	function _platformDetection () {
		const ua = navigator.userAgent;

		let platform = {
			'user-agent': ua
		};

		// A "platform" is a combination of these 3 items:
		const device = mind_devices();
		const os = mind_oses();
		const browser = mind_browserDetection(); // Not: mind_browsers();

		// Add Dependencies here for Platform Specific conditions:

		// Detects the Platform Category:
		const isTablet = (browser.isSilk || device.isIPad || os.isIPadOS);

		let isMobile = ua.indexOf('Mobile') > -1; // Android, iPhone & Windows Phone all contain the 'Mobile' string. The rest of these are fallbacks:
		isMobile = (!isTablet && (isMobile || (os.isAndroid && device.isPhone) || device.isIPhone || os.isIOS || (os.isWindows && device.isPhone)));

		const isDesktop = (!isTablet && !isMobile);

		const categories = {
			isDesktop: isDesktop,
			isMobile: isMobile,
			isTablet: isTablet
		};

		platform = _mapProperties(platform, [device, os, browser, categories]);
		return platform;
	}

	/**
	 * Appends only isSomething=[...] values to the platform object as .isSomething=true properties.
	 * This allows the CSS to create "is-something" classnames, which are based off of those .isSomething=true properties.CSS
	 */
	function _mapProperties (platform, arrObjects) {
		for (let i = 0; i < arrObjects.length; i++) {
			const obj = arrObjects[i];
			for (const key in obj) {
				switch (typeof obj[key]) {
				case 'boolean':
					// Where the boolean = true, then create a platform boolean. Excludes boolean = false.
					if (obj[key]) {
						platform[key] = true;
					}
					break;
				default: 
					// Maps everything else, like strings, integers, etc...
					platform[key] = obj[key];
					break;
				}
			}
		}

		return platform;
	}

	const platform = _platformDetection();
	return platform;
}
</script>
<!-- partial -->
<!-- partial:browser-detection.html -->
<script>
// Global method:
function mind_browserDetection() {
	/**
	 * Browser Detection
	 * These ARE dependent on the mind_browsers values, plus the global mind_oses values.
	 */
	function _browserDetection () {
		const device = mind_devices();
		const os = mind_oses();
		let browser = mind_browsers();

		// Removes false property values.
		browser = _filterProperties(browser);

		// Add Dependencies here for Browser Specific conditions:

		// Detect Browser Name & Version:
		if ((browser.isChrome || os.isChromeOS || os.isCriOS) && !browser.isEdge && !browser.isOpera && !browser.isSilk) {
			browser.name = 'Chrome';
			if (os.isCriOS) {
				browser.isBlocked = true; // AKA: isAllowed = false
				browser.version = _cleanVersion('CriOS');
				browser.isSupported = false;
			} else if (os.isChromeOS) {
				browser.version = _cleanVersion(browser.name);
				browser.isSupported = _hasMinimumVersion(browser);
			} else if (browser.isChrome) {
				browser.version = _cleanVersion(browser.name);
				browser.isSupported = _hasMinimumVersion(browser);
			}
		} else if (browser.isEdge) {
			browser.name = 'Edge';
			// Windows Desktop 79+ Chrome uses "Edg/".
			browser.version = _cleanVersion('Edg');
			if (!browser.version) {
				// Windows Phone uses "Edge", but it reverts to v40 when it's really using Chrome 85. So the real version is found after "Chrome/".
				if (os.isWindows && device.isPhone) {
					browser.version = _cleanVersion('Chrome');
				} else {
					// Windows Desktop <= 78 uses "Edge/".
					browser.version = _cleanVersion(browser.name);
				}
			}
			browser.isSupported = _hasMinimumVersion(browser);
		} else if (browser.isFirefox) {
			browser.name = 'Firefox';
			browser.version = _cleanVersion(browser.name);
			browser.isSupported = false;
		} else if (browser.isIE) {
			browser.isBlocked = true; // AKA: isAllowed = false
			browser.isSupported = false;
		} else if (browser.isKonqueror) {
			browser.name = 'Konqueror';
			browser.version = _cleanVersion(browser.name);
			browser.isSupported = false;
		} else if (browser.isOpera) {
			browser.name = 'Opera';
			browser.version = _cleanVersion('OPR');
			browser.isSupported = false;
		} else if (browser.isSafari) {
			browser.name = 'Safari';
			browser.version = _cleanVersion('Version'); // Safari "Version/..." number.
			browser.isBlocked = !_hasMinimumVersion(browser); // AKA: isAllowed = false
			// Shows the "Continue Anyways?" alert for Desktop Safari, but allows normal login for iOS Safari (iPad, iPhone).
			browser.isSupported = (os.isMacintosh) ? false : _hasMinimumVersion(browser);
		} else if (browser.isSilk) {
			browser.name = 'Silk';
			browser.version = _cleanVersion(browser.name);
			browser.isSupported = _hasMinimumVersion(browser);
		} else {
			browser.isUnknown = true;
			browser.name = 'Unknown';
			browser.isSupported = false;
			browser.version = 0;
		}

		return browser;
	}

	/**
	 * Finds the version decimal value.
	 * This will search for "searchKey/#.#.#.#" in the user-agent string.
	 * @param {string} searchKey Either a browser name or a search string, which is followed by a slash & the version number.
	 * @return {integer} The version number. For now, we only care about the major version numbers. In the future, we might want to use parseFloat() to return decimals.
	 */
	function _cleanVersion (searchKey) {
		let regEx = new RegExp('\\b' + searchKey + '\\/([.\\d]+)', 'i');
		let version = navigator.appVersion.match(regEx);
		if (version && version[1]) {
			version = version[1];
			if (version.indexOf('.') > -1) {
				let parts = version.split('.');
				version = parts[0];
			}
			version = parseInt(version);
		}
		return version;
	}

	function _hasMinimumVersion (browser) {
		const minimumVersion = {
			chrome: 1,
			edge: 79,
			safari: 12,
			silk: 1
		};

		return (browser.version >= minimumVersion[browser.name.toLowerCase()]);
	}

	// Removes false property values from the browser object.
	function _filterProperties (browser) {
		for (const key in browser) {
			if (!browser[key]) {
				delete browser[key];
			}
		}
		return browser;
	}

	const browser = _browserDetection();
	return browser;
};
</script>
<!-- partial -->

<script>
	// See: /entry/partials/user-agent-searches.html for what these return:
	const browser = mind_browserDetection();
	const os = mind_oses();
	// const devices = mind_devices();

	if (browser.isChrome && os.isIOS) {
		window.location.replace('/unsupported.html#Chrome/chrome-ios');
	} else if (browser.isBlocked) {
		window.location.replace('/unsupported.html');
	}
</script>
	<!-- partial -->
	<!-- partial:partials/load-jiji.html -->
	<div id="loader-overlay">
    <div id="loader-container">
        <svg id="loader-wheel" xmlns="http://www.w3.org/2000/svg" width="188" height="188" viewBox="0 0 188 188" preserveAspectRatio="xMidYMid meet">
            <g id="wheel">
                <path class="wheel-part wheel-dark" d="M116 28a88 88 0 0 0 0 176c.193 0 0-176 0-176z" />
                <path class="wheel-part wheel-light" d="M116 204a88 88 0 0 0 0-176" />
                <path class="wheel-part wheel-outline" d="M115 33a82 82 0 1 1-82 82 82.095 82.095 0 0 1 82-82m0-12a94 94 0 1 0 94 94 94 94 0 0 0-94-94z" />
            </g>
        </svg>
        <div id="jiji-animation-wrapper">
            <div class="jiji-animation" id="jiji-animation">
                <svg id="jiji-frames" xmlns="http://www.w3.org/2000/svg" width="1504" height="188" viewBox="0 0 1504 188" preserveAspectRatio="xMidYMid meet">
                    <g id="run1" class="jiji-run">
                        <path transform="translate(-376 -53)" d="M171.038 88.376l-.321-.38c-.3-.346-.636-.721-1-1.112l-.16-.175c-.093-.1-.189-.2-.286-.3-.166-.177-.33-.354-.508-.537a89.406 89.406 0 0 0-.838-.861q-.285-.273-.591-.545-.339-.33-.7-.654-.27-.237-.537-.491l-.389-.3a29.161 29.161 0 0 0-5.53-3.724 45.908 45.908 0 0 0-11.264-3.859 54.858 54.858 0 0 0-5.577-.857c-.511-.058-1.016-.1-1.518-.148a10.439 10.439 0 0 0 .831-3.837q.436-7.914-8.2-12.941l-.125-.069c-.066-.04-.128-.081-.2-.12a30.443 30.443 0 0 0-16.426-4.459A32.065 32.065 0 0 0 101.2 58.92 11.017 11.017 0 0 0 96.481 66a13.332 13.332 0 0 0 .61 8.46 43.769 43.769 0 0 0 3.694 7.231q1.585 2.474 3.093 4.734l-.941 1.133-.873 1.023a9.724 9.724 0 0 0-1.3-.3l-.035-.028c-.3-.039-.609-.06-.919-.072q-10.079-.613-26.153 17.8-.645 2.3 1.973 2.892c.193.442 3.422.456 9.655.046a63.014 63.014 0 0 0-6.6 10.707c-1.229 2.5-2.212 4.761-2.966 6.789-.184.434-.361.862-.525 1.281l.134-.19q-.23.669-.423 1.3a34.355 34.355 0 0 1-1.445-.255 48.938 48.938 0 0 0-7.543-2.246q-2.4-.748-2.951-.214-.875.856-.109 2.46a17.146 17.146 0 0 0 2.514 2.888c.221.216.447.423.67.636.237.307.483.626.751.968a25.927 25.927 0 0 0 6.451 5.662c0 .034 0 .067-.007.1-.011.161-.027.319-.032.485a18.708 18.708 0 0 0 .486 5.436l-4.713 4.786.058.048-.058.059c.021.1.047.193.069.292l-.4-.292q-6.559.429-8.2 4.6l16.069 16.577q5.794 3.744 11.26 2.674a9.884 9.884 0 0 0 .6-1.068l5.958.106a11.572 11.572 0 0 0-.929-4.706 19.667 19.667 0 0 0-1.366-3v-.092q-.109 0-1.312-.214-1.093-.107-3.279-.534a17.552 17.552 0 0 0-4.81-.214l-2.952-3.957-.618-.519-.134-.124q.633-.029 1.3-.106l.107-.109 2.309-2.336 2.067 1.418.112.078.09.1a2.739 2.739 0 0 0 .389.519 30.2 30.2 0 0 0 5.523 2.591 63.436 63.436 0 0 0 7.466 2.283l.432-.068q.933.285 1.507.411c.151.046.219.034.213-.031a.026.026 0 0 0 .008 0 31.349 31.349 0 0 0 17-.964 4.173 4.173 0 0 0 1.567-.573l-.019-.011c.025-.014.05-.024.076-.039l.09-.122-.037-.062.145.044.324-.051c.03-.016.062-.037.092-.054l-.015.123c.256-.13.5-.283.747-.428l8.887 4.772.062-.132.048.025a.545.545 0 0 0 .283-.1l-.174.315q2.185 6.1 6.777 6.631l11.916-19.678q2.186-6.417.546-11.016-1.53-.428-2.186-.642-3.78.3-5.356 1.5-2.713 1.01-2.624 1.711a14.442 14.442 0 0 0 1.093 4.6l-2.951 3.851-.656.855a3.271 3.271 0 0 0-.438-1.176l-.127-.067.018-.04-6.093-3.194a37.846 37.846 0 0 0 2.182-8.685q.315-3.882.314-7.7l-.054-1.739q-.021-2.059-.13-4.116l-.084-2.657q-.051-.669-.108-1.353-.48-6.236-1.32-12.375-.612-4.29-1.392-8.532l-.691-2.168a4.694 4.694 0 0 1-.053-.235l-.334-1.8-.042.326-.118-.717-.861-4.51a16.09 16.09 0 0 0 2.484-2.212c-.106-.187-.2-.366-.3-.545l9.027.158c.271-.009.566-.036.873-.072a23.42 23.42 0 0 0 4.736-1.083q1.971-.616 5.563-1.922a26.825 26.825 0 0 1 3.695-.851q.57-.089 1.156-.159l.075-.01c.352-.041.709-.074 1.068-.105.1-.008.2-.019.3-.026.243-.019.491-.031.738-.045.275-.015.549-.031.829-.04l.194-.005q1.389-.035 2.849.029A67.385 67.385 0 0 1 171 88.418l-.046-.058c.028.006.056.009.084.016z" />
                    </g>
                    <g id="run2" class="jiji-run">
                        <path transform="translate(-188 -53)" d="M171.693 87.2q-.158-.182-.328-.374c-.3-.341-.648-.71-1.015-1.094l-.165-.174-.29-.3c-.169-.174-.336-.347-.517-.527a86.803 86.803 0 0 0-.853-.847q-.291-.268-.6-.535-.345-.324-.71-.642-.274-.233-.546-.481l-.394-.289a29.139 29.139 0 0 0-5.593-3.626 45.816 45.816 0 0 0-11.322-3.658 54.684 54.684 0 0 0-5.588-.757c-.564-.054-1.121-.1-1.674-.132a10.77 10.77 0 0 0 .659-3.449q.2-7.148-6.818-11.765-.962-.669-2.067-1.287a30.387 30.387 0 0 0-16.489-4.164 31.97 31.97 0 0 0-16.373 6.216 11.013 11.013 0 0 0-4.582 7.172 13.364 13.364 0 0 0 .769 8.454 43.848 43.848 0 0 0 3.825 7.168c.609.914 1.207 1.8 1.8 2.669L98.9 89.4a9.475 9.475 0 0 0-1.029-.139l-.037-.025c-.3-.015-.608-.012-.916 0q-10.053.184-24.438 20.308-.445 2.4 2.2 2.8c.179.34 2.178.264 5.978-.225q-1.535 2.538-2.9 5.378a47.076 47.076 0 0 0-4.123 10.522c-.028.127-.052.247-.078.371-.868.084-1.653.141-2.332.164a61.95 61.95 0 0 0-7.972-.108q-2.621-.107-2.948.536-.765.963.437 2.14a14.473 14.473 0 0 0 3.167 2.141c.138.078.278.148.416.225.436.325.913.676 1.44 1.06a25.056 25.056 0 0 0 6.652 3.295 15.992 15.992 0 0 0 1.9 6.9 15.787 15.787 0 0 0 1.094 2.014q-6.8.766-5.718 5.45a110.785 110.785 0 0 1 24.353 14.45 8.26 8.26 0 0 0 7.1-7.172c-.115-.111-.236-.216-.352-.326a36.813 36.813 0 0 0 5.968.452l1.368 4.691q-4.26 4.816-2.512 8.991h22.388q1.827.105 5.669 0l.119.1a49.391 49.391 0 0 0 9.937-.428 5.508 5.508 0 0 0 1.311-3.318 10.828 10.828 0 0 0-1.42-3.961 2.706 2.706 0 0 0-.327-.642q-1.53-.214-7.426-.428-.525-.057-1.092-.107-1.935-.107-3.386-.107l-2.839-.107-5.351-.214.109-.107-2.521-7.492.561-.359q.188-.115.37-.237l1.7-1.087-.147-.1a31.729 31.729 0 0 0 4.565-5.216q.4-.707.759-1.423a35.051 35.051 0 0 0 3.6-11.806q.263-3.743.2-7.409l-.136-2.722q-.049-1.62-.161-3.229l-.1-2.22q-.063-.641-.132-1.3-.589-5.979-1.547-11.855-.694-4.1-1.559-8.157l-.748-2.062a5.657 5.657 0 0 1-.058-.224l-.37-1.718-.018.149-.072-.328a.092.092 0 0 0 .005-.015l-.307-1.5a16.014 16.014 0 0 0 2.439-2.259c-.181-.308-.349-.6-.509-.884h.442l-.015.021 9.171-.005c.27-.014.564-.046.871-.087a23.377 23.377 0 0 0 4.709-1.169q1.956-.652 5.519-2.023a26.773 26.773 0 0 1 3.675-.919q.567-.1 1.15-.179l.076-.012c.351-.048.708-.087 1.066-.124l.294-.032c.242-.023.49-.04.736-.058.275-.02.548-.041.828-.055l.193-.008q1.386-.061 2.847-.022a67.235 67.235 0 0 1 10.971 1.4l-.048-.057a.3.3 0 0 0 .084.008zm-44.4-1.1a.719.719 0 0 1 .114-.416 1.888 1.888 0 0 0-.107.416z" />
                    </g>
                    <g id="run3" class="jiji-run">
                        <path transform="translate(0 -53)" d="M172.344 86.952q-.162-.178-.338-.367a47.088 47.088 0 0 0-1.044-1.071l-.17-.17-.3-.291a78.487 78.487 0 0 0-1.409-1.343q-.3-.261-.616-.521-.354-.316-.728-.625-.28-.226-.56-.469l-.4-.28a29.372 29.372 0 0 0-5.7-3.5 46.242 46.242 0 0 0-11.452-3.4 55.291 55.291 0 0 0-5.63-.631c-.277-.02-.551-.034-.826-.05a12.438 12.438 0 0 0 .688-3.8q0-6.617-6.143-10.914a23.456 23.456 0 0 0-2.988-1.851 30.663 30.663 0 0 0-16.653-3.792 32.169 32.169 0 0 0-16.294 6.573 10.982 10.982 0 0 0-4.433 7.266 13.291 13.291 0 0 0 .97 8.426 43.736 43.736 0 0 0 4.008 7.074c.16.227.315.442.473.667l-4.6 5.3q-1.774 2.017-3.659 4.046l-1.7 2q-3.391 3.5-9.691 11.086a41.07 41.07 0 0 0-7.862 15.3 31.076 31.076 0 0 0-1.176 3.766 68.949 68.949 0 0 0-.3 1.507l-1.248.519c-.465.182-.89.344-1.294.5q-2.04.408-3.659.8a34.059 34.059 0 0 0-4.7 1.3q-2.413.641-2.742 1.283-.549.963.987 1.925a28.341 28.341 0 0 0 3.4 1.284c.392.091.784.168 1.177.253l1.017.389a24.1 24.1 0 0 0 6.615 1.276 14.4 14.4 0 0 0 1.028 3.5l.048.15a13.742 13.742 0 0 0 6.042 7.089c.176.13.345.262.528.39l2.987 1.583a7.634 7.634 0 0 0 1.071 3.987 10.042 10.042 0 0 0 .658 1.275c.059-.02.117-.037.176-.058.016.019.027.039.043.058q3.265-.926 6.607-1.705 1.811.481 3.814.882v2.107l-.219 8.877q-4.607 3.316-2.413 8.984l20.184-.106q5.034-.617 6.691-.214l11.848.214q1.534-2.674-.768-7.487a2.679 2.679 0 0 0-.329-.642q-1.645-.321-10.97-.642h-.658l-2.633-.107h-.329l-5.265-.214-.327-.187.107-8.69-.033-.867a40.783 40.783 0 0 0 9.357-2.021q.879-.321 1.646-.641l-.064-.027a11.582 11.582 0 0 0 4.307-2.838c-.044-.021-.084-.044-.127-.065a38.676 38.676 0 0 0 4.026-4.56 32.491 32.491 0 0 0 4.3-12.922 76.451 76.451 0 0 0-.45-15.15c-.041-.337-.079-.675-.125-1.012a157.25 157.25 0 0 0-3.528-19.158l-.658-1.955c-.02.035-.039.076-.059.113-.036-.137-.066-.275-.1-.413l-.1-.442a16.659 16.659 0 0 0 1.6-1.639c-.14-.224-.273-.441-.4-.653l8.449-.192c.271-.02.565-.059.872-.107a23.552 23.552 0 0 0 4.7-1.273q1.948-.694 5.494-2.144a26.971 26.971 0 0 1 3.667-1q.571-.113 1.158-.206l.069-.012c.352-.056.71-.1 1.07-.148.1-.012.193-.027.292-.038.244-.029.493-.051.74-.075.275-.026.548-.053.828-.073l.194-.013q1.391-.091 2.858-.086A67.88 67.88 0 0 1 172.309 87l-.049-.056c.028 0 .056.003.084.008zm-43.491 7.239c.045-.035.089-.073.134-.109-.051.266-.1.551-.163.86.005-.268.015-.518.029-.751z" />
                    </g>
                    <g id="run4" class="jiji-run">
                        <path transform="translate(188 -53)" d="M171.69 87.139q-.157-.182-.328-.374c-.305-.34-.651-.709-1.019-1.093l-.164-.172-.29-.3c-.17-.175-.338-.348-.521-.529a78.102 78.102 0 0 0-.855-.844q-.291-.268-.6-.534-.345-.324-.712-.64a19.981 19.981 0 0 1-.547-.48l-.4-.288a29.278 29.278 0 0 0-5.609-3.619 46.132 46.132 0 0 0-11.355-3.65 55.128 55.128 0 0 0-5.6-.755c-.5-.047-.982-.083-1.469-.116a10.715 10.715 0 0 0 .666-3.458A12.511 12.511 0 0 0 138 59.983a21.834 21.834 0 0 0-3.912-2.723 30.586 30.586 0 0 0-16.54-4.16 32.151 32.151 0 0 0-16.421 6.205 10.989 10.989 0 0 0-4.594 7.16 13.282 13.282 0 0 0 .772 8.438 43.654 43.654 0 0 0 3.837 7.154c.607.908 1.2 1.789 1.8 2.653l-5.47 6.419-3.572 4.096-.056.067q-8.182 4.7-19.875 16.043-1.022 2.4 1.394 2.778c.062.284 1.383.311 3.935.086q-.864 1.507-1.668 3.085a50.188 50.188 0 0 0-3.962 10.2l-.131.02c-.848.081-1.616.136-2.282.157a54.779 54.779 0 0 0-8-.213q-2.629 0-2.957.641-.767.961.438 2.137a18.423 18.423 0 0 0 3.176 2.03l.119.065c.514.393 1.089.83 1.743 1.324a25.1 25.1 0 0 0 6.628 3.275 17.449 17.449 0 0 0 .282 2.2 16.02 16.02 0 0 0 2.34 6.811 13.513 13.513 0 0 0 3.419 4.094c.495.461 1.011.915 1.569 1.356l2.388 1.482-2.279 7.706.357-.207-.029.1a.86.86 0 0 0-.329.107l-1.961.431a1.843 1.843 0 0 0-.548-.106 8.625 8.625 0 0 0-1.971 7.692l22.014 3.953h1.752l5.257.214 5.411.1c-.073.229-.138.456-.228.689l2.8-.267a11.715 11.715 0 0 0 .389-1.213l.94-.059q1.642-3.312-1.315-7.372l-5.7.534q-1.533-.106-2.848-.107a.451.451 0 0 0-.328-.106h-1.314l-.047-.006.1.006c-.045 0-.1-.008-.151-.012a58.934 58.934 0 0 0-2.97-.309v-.107c-.229-.04-.443-.081-.657-.121v-5.456c.037.007.072.015.11.021h.329q.986.215 1.533.321a.862.862 0 0 0 .329.107 36.172 36.172 0 0 0 5.839.436l.015.039a8.153 8.153 0 0 0 3.116 4.619l20.895-9.624-.047-.1 5.909-5.557a7.982 7.982 0 0 0-.19-2.939 2.882 2.882 0 0 0-1.166-2.069l.314-1.924.8-2.223a5.658 5.658 0 0 0-1.658-.859 4 4 0 0 0-2.789-.635c.148-.78.279-1.565.375-2.36.076-1.078.128-2.15.164-3.219a78.759 78.759 0 0 0-.357-12.054l-.014-.282q-.063-.641-.133-1.3a182.919 182.919 0 0 0-.463-4.152q-.921-7.969-2.544-15.7l-.657-1.953-.08.085-.115-.318a4.087 4.087 0 0 1-.059-.224l-.371-1.715-.015.122-.074-.34c-.055.074-.107.156-.16.237a2.77 2.77 0 0 1 .137-.227l-.339-1.56a16.039 16.039 0 0 0 2.457-2.263c-.182-.308-.35-.6-.511-.882h.117l-.015.021 9.2-.006c.271-.014.566-.046.873-.087a23.521 23.521 0 0 0 4.723-1.167q1.96-.651 5.534-2.02a26.923 26.923 0 0 1 3.685-.917q.568-.1 1.153-.179l.077-.012c.353-.048.711-.087 1.071-.124.1-.01.194-.022.292-.031.244-.023.493-.04.74-.058.276-.02.55-.041.83-.055l.193-.008q1.391-.061 2.855-.022a67.7 67.7 0 0 1 11 1.395l-.047-.057a.567.567 0 0 1 .084.011z" />
                    </g>
                    <g id="run5" class="jiji-run">
                        <path transform="translate(376 -53)" d="M171.038 88.721l-.321-.38a44.19 44.19 0 0 0-1-1.113l-.16-.175-.286-.3c-.166-.177-.33-.354-.508-.537a89.406 89.406 0 0 0-.838-.861q-.285-.273-.591-.545-.339-.33-.7-.654-.27-.237-.537-.491l-.389-.3a29.168 29.168 0 0 0-5.53-3.725 45.892 45.892 0 0 0-11.264-3.861 54.78 54.78 0 0 0-5.58-.858c-.472-.053-.937-.1-1.4-.137a10.187 10.187 0 0 0 .718-3.528q.436-7.917-8.2-12.946l-.125-.069c-.066-.04-.128-.081-.2-.12a30.433 30.433 0 0 0-16.426-4.461 32.056 32.056 0 0 0-16.501 5.915 11.021 11.021 0 0 0-4.721 7.086 13.341 13.341 0 0 0 .61 8.463 43.8 43.8 0 0 0 3.694 7.234q1.565 2.441 3.052 4.673l-4.969 5.975q-9.9.153-25.325 17.829-.645 2.3 1.973 2.893c.159.364 2.391.436 6.664.221a60.819 60.819 0 0 0-3.474 6.306 55.89 55.89 0 0 0-3.8 9.242 34.216 34.216 0 0 1-1.446-.254A48.74 48.74 0 0 0 65.915 127q-2.4-.75-2.951-.214-.875.855-.109 2.461a17.146 17.146 0 0 0 2.514 2.888c.221.217.447.423.67.636.237.308.483.627.751.969a25.868 25.868 0 0 0 6.436 5.653 18.782 18.782 0 0 0 .174 3.258 17.92 17.92 0 0 0 .547 3.157l-4.971 5.05.058.048-.058.059a.921.921 0 0 0 .1.395l-.425-.395q-6.559.429-8.2 4.6l16.069 16.583q4.051 2.323 11.26 1.5.328.642.656.107l5.9.107a11.173 11.173 0 0 0-.874-4.707q-1.093-2.462-1.421-3v-.107q-.109 0-1.2-.107-1.2-.214-3.389-.642a15.333 15.333 0 0 0-4.81-.107l-2.952-3.959-.765-.749a8.17 8.17 0 0 0 1.312-.106l.107-.11L83 157.585l1.939 1.4a4.289 4.289 0 0 1 .656.535 32.448 32.448 0 0 0 5.466 2.567 48.975 48.975 0 0 0 7.543 2.354.858.858 0 0 1 .328-.107 9.777 9.777 0 0 0 1.421.428h.328a31.209 31.209 0 0 0 16.943-1.07q.874-.215 1.64-.428l-.41-.227c.064-.034.128-.058.192-.094l.109-.107.044-.079.089.023a1.5 1.5 0 0 1 .245-.112c.066-.034.129-.073.194-.109l-.04.317c.276-.139.539-.3.805-.461l1.614.849q3.635 1.926 7.215 3.852h.11l.109.214q2.185 6.1 6.777 6.633l11.916-19.686q2.186-6.42-.328-11.234a.629.629 0 0 1-.547-.749l-2.295-3.637q-.875-.535-3.717.214-2.733.642-2.624 2.139l-.109 4.815a14.448 14.448 0 0 0 1.093 4.6l-2.951 3.852a1.314 1.314 0 0 1-1.094-.321l-.109-.107-6.091-3.2a37.877 37.877 0 0 0 2.18-8.683q.315-3.884.314-7.7l-.268-8.515q-.051-.669-.108-1.354-.48-6.237-1.32-12.379-.612-4.293-1.392-8.535l-.691-2.169a4.694 4.694 0 0 1-.053-.235l-.334-1.8-.036.282-.153-.811-.051.077-.76-4.466a16.075 16.075 0 0 0 2.463-2.2c-.176-.31-.337-.6-.492-.89h.05l-.015.02 9.18.161c.271-.009.565-.036.872-.072a23.425 23.425 0 0 0 4.737-1.084q1.971-.616 5.563-1.923a26.825 26.825 0 0 1 3.695-.852q.57-.089 1.156-.159l.075-.01c.353-.041.712-.074 1.072-.105.1-.008.193-.019.291-.026.245-.019.494-.031.742-.045.274-.015.547-.031.827-.04l.194-.005q1.389-.035 2.849.029A67.341 67.341 0 0 1 171 88.764l-.046-.058.084.015z" />
                    </g>
                    <g id="run6" class="jiji-run">
                        <path transform="translate(564 -53)" d="M171.693 87.214l-.328-.375c-.3-.341-.648-.71-1.015-1.095l-.165-.174-.29-.3c-.169-.174-.336-.347-.517-.527a86.803 86.803 0 0 0-.853-.847q-.291-.268-.6-.535-.345-.324-.71-.642-.274-.233-.546-.481l-.394-.289a29.133 29.133 0 0 0-5.593-3.627 45.8 45.8 0 0 0-11.322-3.659 54.715 54.715 0 0 0-5.588-.757c-.564-.054-1.121-.1-1.674-.132a10.777 10.777 0 0 0 .659-3.45q.2-7.15-6.818-11.768-.962-.669-2.067-1.287a30.379 30.379 0 0 0-16.489-4.165 31.964 31.964 0 0 0-16.373 6.218 11.017 11.017 0 0 0-4.583 7.178 13.372 13.372 0 0 0 .769 8.456 43.868 43.868 0 0 0 3.825 7.17c.592.889 1.174 1.752 1.75 2.6l-5.415 6.385-2.113 2.438q-9.623 1.492-22.983 20.189-.445 2.4 2.2 2.8c.131.249 1.247.272 3.313.078a97.917 97.917 0 0 0-5.212 11.883c-.477.036-.931.064-1.34.078a61.908 61.908 0 0 0-7.972-.107q-2.621-.108-2.948.535-.765.963.437 2.141a14.47 14.47 0 0 0 3.167 2.142c.138.077.278.148.416.224.436.325.913.677 1.44 1.061a25.1 25.1 0 0 0 6.69 3.309c.066.56.158 1.14.285 1.746a16 16 0 0 0 .973 3.644 6.415 6.415 0 0 0-.74 2.543 95.9 95.9 0 0 1 16.054 21.735q5.57.321 8.518-6a39.177 39.177 0 0 0-1.52-3.225c.885.193 1.786.379 2.722.548h.328q.983.215 1.529.321a.833.833 0 0 0 .327.107 35.736 35.736 0 0 0 6.263.44l1.163 3.736h.109a.453.453 0 0 0 .328.107l-2.075 3.426q-1.857 3.961-.983 6.424l22.934.108a20.063 20.063 0 0 1 5.023-.215l4.041-.107a39.362 39.362 0 0 0 5.9-.428q2.622-3.532 0-8.351a2.712 2.712 0 0 0-.327-.643q-1.53-.106-7.426-.321v-.107l-7.317-.107-5.242-.107h-.109l-.219-.214-1.829-6.67a14.216 14.216 0 0 0 1.586-1.082 29.977 29.977 0 0 0 5.1-5.673q.4-.7.759-1.423a35.065 35.065 0 0 0 3.6-11.81q.163-2.342.2-4.654a79.12 79.12 0 0 0-.394-10.731l-.01-.2q-.063-.642-.132-1.3c-.131-1.325-.28-2.644-.437-3.961q-.924-8.193-2.579-16.131l-.656-1.957c-.039.043-.074.1-.112.148l-.065-.18a5.657 5.657 0 0 1-.058-.224l-.37-1.719-.018.149-.07-.32c.01-.015.018-.033.028-.047l-.333-1.484a16.053 16.053 0 0 0 2.431-2.253c-.181-.308-.349-.6-.509-.884h.442l-.015.021 9.171-.005c.27-.014.564-.046.871-.087a23.374 23.374 0 0 0 4.709-1.17q1.956-.652 5.519-2.024a26.759 26.759 0 0 1 3.675-.919q.567-.1 1.15-.18l.076-.011c.351-.048.708-.087 1.066-.125l.294-.032c.242-.023.49-.04.736-.058.275-.02.548-.041.828-.055l.193-.008q1.386-.061 2.847-.022a67.213 67.213 0 0 1 10.971 1.4l-.048-.057c.03.001.058.004.086.01zm-97.869 39.527c-.1.388-.2.765-.274 1.127-.042.189-.079.368-.118.552a45.57 45.57 0 0 1-.841.071z" />
                    </g>
                    <g id="run7" class="jiji-run">
                        <path transform="translate(752 -53)" d="M173 86.915q-.162-.178-.338-.366a45.203 45.203 0 0 0-1.044-1.069l-.17-.17-.3-.291c-.174-.17-.346-.34-.533-.516-.279-.267-.57-.541-.876-.826q-.3-.261-.616-.52-.354-.316-.728-.624a19.793 19.793 0 0 1-.559-.468l-.4-.279a29.34 29.34 0 0 0-5.7-3.493 46.286 46.286 0 0 0-11.453-3.4 55.291 55.291 0 0 0-5.629-.631c-.5-.036-.986-.061-1.473-.084a12.4 12.4 0 0 0 .677-3.764q0-6.61-6.142-10.9a23.558 23.558 0 0 0-2.989-1.849 30.69 30.69 0 0 0-16.652-3.788 32.189 32.189 0 0 0-16.294 6.566 10.97 10.97 0 0 0-4.432 7.257 13.265 13.265 0 0 0 .97 8.417 43.757 43.757 0 0 0 4.008 7.066c.139.2.273.383.411.578l-4.758 5.456-3.608 4.049-.812.942c-.2.188-.393.374-.6.568a72.588 72.588 0 0 0-7.9 9.374A63.986 63.986 0 0 0 77.949 115a45.835 45.835 0 0 0-4.014 10.257 84.73 84.73 0 0 0-.347 1.652l-1.029.428c-.465.182-.89.344-1.294.5q-2.04.408-3.659.8a33.96 33.96 0 0 0-4.7 1.50q-2.413.641-2.742 1.282-.549.962.987 1.923a28.587 28.587 0 0 0 3.4 1.282c.392.091.784.168 1.177.252l1.017.389a23.871 23.871 0 0 0 6.451 1.262 25.589 25.589 0 0 0 1.121 3.579 13.433 13.433 0 0 0 6.313 7.443l5.038 2.773a2.742 2.742 0 0 1 .6.405 32.539 32.539 0 0 0 5.932 2.008c.822.23 1.68.44 2.554.641l.069 1.756q.271 7.383.439 8.547a.92.92 0 0 0 .095.312l-.643.009q-4.278 4.808-2.523 9.723l23.035-.107a32.529 32.529 0 0 0 3.51.107h11.408q2.3-3.526 0-8.334a2.638 2.638 0 0 0-.329-.641q-11.3-.64-11.517-.641h-.11l-2.962-.107q-2.68-.112-5.265-.214h-.329l-.11-.748.11-8.119v-.1a40.541 40.541 0 0 0 10.968-2.144q.878-.321 1.646-.641l-.3-.126.007-.028c.1-.223.19-.448.286-.672l-.072.7.217-.034a.453.453 0 0 0 .307-.157 17.469 17.469 0 0 0 2.514-1.588 34.07 34.07 0 0 0 5.183-5.58 32.435 32.435 0 0 0 4.3-12.909 76.355 76.355 0 0 0-.451-15.133c-.041-.337-.078-.675-.125-1.011a156.577 156.577 0 0 0-3.519-19.143l-.659-1.948c-.02.035-.039.076-.059.113-.035-.137-.066-.275-.1-.412l-.1-.442a16.645 16.645 0 0 0 1.6-1.637 73.62 73.62 0 0 1-.393-.637l9.1-.207c.271-.02.565-.058.872-.107a23.551 23.551 0 0 0 4.7-1.272q1.948-.694 5.494-2.142a26.96 26.96 0 0 1 3.667-1q.571-.113 1.158-.206l.069-.012c.352-.056.71-.1 1.07-.148.1-.012.193-.027.291-.038.244-.029.493-.051.741-.075.275-.026.548-.053.828-.073l.193-.013a39.797 39.797 0 0 1 2.858-.085 67.936 67.936 0 0 1 11.048 1.15l-.049-.056c.021.006.049.009.078.014z" />
                    </g>
                    <g id="run8" class="jiji-run">
                        <path transform="translate(940 -53)" d="M171.69 88.246q-.157-.182-.328-.375a50.04 50.04 0 0 0-1.019-1.1l-.162-.171-.294-.3c-.17-.174-.337-.348-.519-.528a87.687 87.687 0 0 0-.855-.847q-.291-.269-.6-.536-.345-.325-.712-.643a18.505 18.505 0 0 1-.547-.482l-.4-.29a29.259 29.259 0 0 0-5.609-3.632 46.008 46.008 0 0 0-11.355-3.664 54.93 54.93 0 0 0-5.6-.757 54.81 54.81 0 0 0-1.578-.125 11.1 11.1 0 0 0 .775-3.785A12.577 12.577 0 0 0 138 60.666a21.83 21.83 0 0 0-3.912-2.734 30.494 30.494 0 0 0-16.536-4.172 32.077 32.077 0 0 0-16.421 6.229 11.034 11.034 0 0 0-4.594 7.187 13.379 13.379 0 0 0 .772 8.47 43.865 43.865 0 0 0 3.837 7.182c.608.912 1.206 1.8 1.8 2.665l-3.176 3.778q-9.47 2.968-25.688 18.759-1.022 2.4 1.394 2.788c.082.374 2.317.305 6.671-.2a63.9 63.9 0 0 0-4.425 7.579 65.865 65.865 0 0 0-3.376 7.93 89.78 89.78 0 0 0-.786 2.152l.22-.313c-.042.156-.081.307-.119.458l-.12.018c-.848.082-1.616.137-2.282.158a54.524 54.524 0 0 0-8-.214q-2.629 0-2.957.643-.767.966.438 2.145a18.3 18.3 0 0 0 3.176 2.038c.04.023.08.043.119.066.514.394 1.089.833 1.743 1.328a25.134 25.134 0 0 0 6.691 3.309q.045.788.175 1.645a16.112 16.112 0 0 0 2.14 6.961c.042.081.088.157.132.236l.04.068a13.944 13.944 0 0 0 3.066 3.828 25.041 25.041 0 0 0 2 1.756l2.936 1.83-2.158 7.289h-.012c-.425.125-.795.22-1.121.291l-.15.031a5.025 5.025 0 0 1-.809.107c-.031.017-.057.025-.085.038-.125-.012-.252-.024-.353-.038a8.681 8.681 0 0 0-1.972 7.721l22.014 3.969h1.752l5.257.214 5.411.1c-.073.23 2.854-.394 2.96-.793l.939-.06q1.642-3.324-1.315-7.4l-5.7.536q-1.515-.065-2.847-.214a.91.91 0 0 1-.329 0 9.783 9.783 0 0 1-1.07-.1l21.9-4.475-.126-.019.363-.074-.08-.372.4-.276.1.071.107.227.095-.043.013.026 8.869-4.029v.067l2.349-1.067a9.5 9.5 0 0 0-.961-4.329 5.926 5.926 0 0 0-1.575-2.092 8.206 8.206 0 0 0-.826-.677l-.1.045c-.034-.018-.064-.041-.1-.059l-2.283 1.037c-.036-.023-.066-.05-.1-.073-.654.179-1.306.37-1.956.566a6.091 6.091 0 0 0-.594-.6c-.089-.093-.173-.191-.266-.279l-.039.026c.093-.176.193-.35.282-.527a35.1 35.1 0 0 0 3.611-11.83c.076-1.081.128-2.158.164-3.23a79.37 79.37 0 0 0-.357-12.1l-.014-.283q-.063-.642-.133-1.3a184.881 184.881 0 0 0-.463-4.167q-.921-8-2.544-15.756l-.657-1.96c-.027.029-.05.067-.075.1l-.12-.333a4.339 4.339 0 0 1-.059-.224l-.36-1.721-.015.122-.063-.29.017-.03-.352-1.622a16.073 16.073 0 0 0 2.414-2.238 45.51 45.51 0 0 1-.316-.543l9.1-.006c.27-.014.565-.046.872-.087a23.452 23.452 0 0 0 4.724-1.172q1.96-.653 5.534-2.028a26.853 26.853 0 0 1 3.686-.921q.569-.1 1.151-.18l.078-.012c.351-.048.709-.087 1.067-.124.1-.01.2-.023.3-.032.243-.023.491-.04.738-.058.275-.02.549-.041.829-.055l.195-.008q1.391-.061 2.854-.022a67.477 67.477 0 0 1 11 1.4l-.047-.057a.4.4 0 0 1 .089.009zm-71.626 77.464v-.11c-.229-.041-.443-.083-.658-.124l-.02-5.41.635.136a8.631 8.631 0 0 0 1.614 5.635q-.835-.052-1.571-.128zm-18.9-4.347l-.047.165a.69.69 0 0 1-.252.009z" />
                    </g>
                </svg>
            </div>
        </div>
    </div>
</div>
<!-- partial:load-jiji.partials/style.html -->
<style>
    #loader-overlay {
        background-color: #38c3fd;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }

    #loader-container {
        margin: 0;
        position: absolute;
        width: 20vmin;
        height: 20vmin;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    #loader-wheel {
        width: 100%;
        height: 100%;

        animation-name: spin;
        animation-duration: 3s;
        animation-iteration-count: infinite;
        animation-timing-function: linear;
        transform-origin: 50% 50%;
        display: inline-block;
    }

    @keyframes spin {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }

    .wheel-part {
        transform: translate(-21px, -21px);
        fill: #fff;
        fill-rule: evenodd;
    }

    .wheel-light {
        opacity: 0.12;
    }

    .wheel-dark {
        opacity: 0.25;
    }

    /* Jiji Animation */

    #jiji-animation-wrapper {
        overflow: hidden;
        position: absolute;
        width: 100%;
        height: 999%;
        left: -10%;
        top: -2%;
        transform: scale(0.95);
    }

    #jiji-frames {
        height: 999%;
        width: auto;
    }

    .jiji-run {
        fill: #fff;
        fill-rule: evenodd;
        transform: translate(25%, 20%);
    }

    .jiji-animation {
        width: 800%;
        height: 999%;
        background-size: 100%, 100%;
        background-repeat: no-repeat;
        position: absolute;
        left: 0;
        top: 0;
		}
		
    .jiji-animation-animate {
        animation-name: jiji-anim;
        animation-duration: 0.7s;
        animation-timing-function: steps(1);
        animation-iteration-count: infinite;
    }

    @keyframes jiji-anim {
        0% {
            transform: translateX(0);
				}
				
    }

</style>
<script>
	function findKeyframesRule(rule) {
		var ss = document.styleSheets;
		for (var i = 0; i < ss.length; ++i) {
			for (var j = 0; j < ss[i].cssRules.length; ++j) {
				if (ss[i].cssRules[j].type == window.CSSRule.KEYFRAMES_RULE && 
				ss[i].cssRules[j].name == rule) { 
					return ss[i].cssRules[j]; }
			}
		}
		return null;
	}
	setTimeout(function(){
		rule = findKeyframesRule('jiji-anim');
		animation = document.getElementById('jiji-animation');
		rr = "100% {transform: translateX(-" + Math.round(animation.clientWidth * 0.875) + "px);}"
		console.log(rr);
		
		animation.classList.remove('jiji-animation-animate')
		rule.deleteRule("100%");
		rule.appendRule(rr);
		setTimeout(function() {animation.classList.add('jiji-animation-animate')}, 100);
		window.addEventListener('resize', function() {
			animation.classList.add('jiji-animation-animate');
			rr = "100% {transform: translateX(-" + Math.round(animation.clientWidth * 0.875) + "px);}"
			animation.classList.remove('jiji-animation-animate');
			rule.deleteRule('100%');
			rule.appendRule(rr);
			setTimeout(function() {animation.classList.add('jiji-animation-animate')}, 100);
		});
	},100);
</script>

<!-- partial -->

	<!-- partial -->
	<script src="jspm_packages/system.js"></script>
	<!-- partial:partials/startup.html -->
		<script data-apikey="224385f245ea9f3eb63716e5516a7387" data-maxdepth=10>
		window.installPrompt = {};
		window.addEventListener('beforeinstallprompt', function (e) {
			e.preventDefault();
			window.installPrompt.evt = e; // Stash the event so it can be triggered later.
		});
		System.config({
			defaultJSExtensions: true,
			transpiler: false,
			paths: {
				"*": "dist/*",
				"github:*": "jspm_packages/github/*",
				"npm:*": "jspm_packages/npm/*",
				"mind:*": "jspm_packages/mind/*",
				"root-web-handler.js": "/root-web-handler.js",
				"mind-api-client-library.js": "/mind-api-client-library.js"
			},
			map:{
				"moment": "npm:moment@2.24.0"
			}
		});
		const currentParams = new URLSearchParams(window.location.search);
		const overrideVersion = currentParams.get('version');
		const willUseBundles = (window.location.hostname !== 'localhost' || overrideVersion);
		if (willUseBundles) {
			System.config({
				bundles: {
					"root-web-handler.js": [
						"config/config.js",
						"lib/CommandHandler.js",
						"rootWebHandler.js"
					]
				}
			})
		}
		System.import('rootWebHandler.js')
		.then(function(handler) {
			return handler.handle();
		})
		.then(function () {
			System.import('aurelia-bootstrapper');
		});
	</script>
	<!-- partial -->
</body>
</html>
Editor is loading...