File size: 216,824 Bytes
71310f2 | 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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 | <!DOCTYPE html>
<html lang="ru">
<head>
<title>Prepare for the IEO</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="csrf-token" content="vslUnHRRHj14iXGkssmbxUo3IlU70aV9aEmF8S1J">
<link rel="icon" type="image/png" href="https://ieo-official.org/img/favicon.png"/>
<!-- Livewire Styles --><style >[wire\:loading][wire\:loading], [wire\:loading\.delay][wire\:loading\.delay], [wire\:loading\.inline-block][wire\:loading\.inline-block], [wire\:loading\.inline][wire\:loading\.inline], [wire\:loading\.block][wire\:loading\.block], [wire\:loading\.flex][wire\:loading\.flex], [wire\:loading\.table][wire\:loading\.table], [wire\:loading\.grid][wire\:loading\.grid], [wire\:loading\.inline-flex][wire\:loading\.inline-flex] {display: none;}[wire\:loading\.delay\.none][wire\:loading\.delay\.none], [wire\:loading\.delay\.shortest][wire\:loading\.delay\.shortest], [wire\:loading\.delay\.shorter][wire\:loading\.delay\.shorter], [wire\:loading\.delay\.short][wire\:loading\.delay\.short], [wire\:loading\.delay\.default][wire\:loading\.delay\.default], [wire\:loading\.delay\.long][wire\:loading\.delay\.long], [wire\:loading\.delay\.longer][wire\:loading\.delay\.longer], [wire\:loading\.delay\.longest][wire\:loading\.delay\.longest] {display: none;}[wire\:offline][wire\:offline] {display: none;}[wire\:dirty]:not(textarea):not(input):not(select) {display: none;}:root {--livewire-progress-bar-color: #2299dd;}[x-cloak] {display: none !important;}[wire\:cloak] {display: none !important;}dialog#livewire-error::backdrop {background-color: rgba(0, 0, 0, .6);}</style>
<link rel="preload" as="style" href="https://ieo-official.org/build/assets/all-DuKU1VCY.css" /><link rel="stylesheet" href="https://ieo-official.org/build/assets/all-DuKU1VCY.css" data-navigate-track="reload" /> </head>
<body
class=" ">
<div wire:snapshot="{"data":[],"memo":{"id":"sgJwbIS94VR9RtcQguHX","name":"admin-bar","path":"prepare","method":"GET","release":"a-a-a","children":[],"scripts":[],"assets":[],"errors":[],"locale":"en"},"checksum":"4c67edfb23a89f3496a3fd7909fa5559d7c3082f4089f5a33cee1799ba831529"}" wire:effects="[]" wire:id="sgJwbIS94VR9RtcQguHX">
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--></div>
<div id="page">
<div id="header">
<div wire:snapshot="{"data":[],"memo":{"id":"PpPv3Wv6XCf9BIyqK1KM","name":"header-block","path":"prepare","method":"GET","release":"a-a-a","children":{"lw-1220809493-4":["div","xeZ38NvVwUFIbzxPt1vn"],"lw-1220809493-5":["div","b9P3pjP4tdoVDWWbHdjI"],"lw-1220809493-6":["a","YX9U1w048cVomWoQ2Gty"],"lw-1220809493-7":["div","hqVb4LGnizy70zQmxmrl"],"lw-1220809493-8":["div","ufOtEuDgQAninWUEj87P"],"lw-1220809493-9":["a","9HOCc2XsT9gGtvrK0EcE"],"lw-1220809493-10":["div","sp6jgxdvu1UH0yDjx6YA"],"lw-1220809493-11":["div","QfAPCDdWckAwhWE6XDOk"],"lw-1220809493-12":["div","CDFvaAbgK4ktxOnVDfCF"],"lw-1220809493-13":["div","piz2G648lQwNGdRHzekJ"]},"scripts":[],"assets":[],"errors":[],"locale":"en"},"checksum":"6fcbc3dff4c39abb8495e8d108c05957656707371c316c4c4167debaa841da8d"}" wire:effects="[]" wire:id="PpPv3Wv6XCf9BIyqK1KM" class="header-block" data-header-block>
<!--[if BLOCK]><![endif]--> <div class="r-d">
<div class="header">
<div class="inner container">
<div wire:snapshot="{"data":[],"memo":{"id":"xeZ38NvVwUFIbzxPt1vn","name":"header-block.subscribe","path":"prepare","method":"GET","release":"a-a-a","children":[],"scripts":[],"assets":[],"errors":[],"locale":"en"},"checksum":"83cc98d138695957f62156e4de22ab7d44246ace848dfc42694c2b7e9ea3b2fa"}" wire:effects="[]" wire:id="xeZ38NvVwUFIbzxPt1vn" class="subscribe">
<a href="#"
class="button white small"
wire:click.prevent="$dispatch('modal.open', {
'title': 'Stay tuned',
'component': 'subscribe-form'
})"
>Subscribe</a>
<a href="/cdn-cgi/l/email-protection#bad3d4dcd5fad3dfd597d5dcdcd3d9d3dbd694d5c8dd" class="email"><span class="__cf_email__" data-cfemail="1a73747c755a737f7537757c7c7379737b763475687d">[email protected]</span></a>
</div>
<div wire:snapshot="{"data":[],"memo":{"id":"b9P3pjP4tdoVDWWbHdjI","name":"header-block.secondary-menu","path":"prepare","method":"GET","release":"a-a-a","children":[],"scripts":[],"assets":[],"errors":[],"locale":"en"},"checksum":"a00c56f3496f6aba037ee5de924126aa2bb59f814a4d454a2af7edb384843aeb"}" wire:effects="[]" wire:id="b9P3pjP4tdoVDWWbHdjI" class="secondary-menu">
<ul>
<li>
<a href="https://ieo-official.org/sponsors">For sponsors</a>
</li>
<li>
<a href="https://ieo-official.org/national">For organizers</a>
</li>
<li>
<a href="https://files.ieo-official.org/IEO_executive_summary.pdf">Executive Summary</a>
</li>
</ul>
</div>
</div>
</div>
<div class="footer" data-footer>
<div class="footer-inner">
<div class="inner container">
<a wire:snapshot="{"data":[],"memo":{"id":"YX9U1w048cVomWoQ2Gty","name":"header-block.logo","path":"prepare","method":"GET","release":"a-a-a","children":[],"scripts":[],"assets":[],"errors":[],"locale":"en"},"checksum":"138d114c16aa02dbcc4ec54eeb1e79f7dafc23abb32f1c2412056d420e587fb0"}" wire:effects="[]" wire:id="YX9U1w048cVomWoQ2Gty" href="https://ieo-official.org" class="logo">
<img src="https://ieo-official.org/img/logo.svg" alt="">
</a>
<div wire:snapshot="{"data":[],"memo":{"id":"hqVb4LGnizy70zQmxmrl","name":"header-block.main-menu","path":"prepare","method":"GET","release":"a-a-a","children":{"lw-1415462284-0":["li","uynDptkAPcnl5gDmOBey"],"lw-1415462284-1":["li","wD0oOVRUYX1MihL7vCD0"],"lw-1415462284-2":["li","Wq8yp5Br6ymc65OChIYt"],"lw-1415462284-3":["li","JynkP8LEzqUrebaDyrsX"],"lw-1415462284-4":["li","4qnrxjR8jKY7jPKOlO4C"],"lw-1415462284-5":["li","d27cm3lS3lhwqwf0TUZ8"]},"scripts":[],"assets":[],"errors":[],"locale":"en"},"checksum":"3309c7cd437f12700360e86b6eef1cb0a99f1dda90ccf418e3d73306cb5cda23"}" wire:effects="[]" wire:id="hqVb4LGnizy70zQmxmrl" class="main-menu">
<ul>
<li wire:snapshot="{"data":{"link":[{"key":null,"icon":null,"name":"About","url":"https:\/\/ieo-official.org","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}],"children":[[[{"key":null,"icon":null,"name":"IEO in a nutshell","url":"https:\/\/ieo-official.org#statistic","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}],[{"key":null,"icon":null,"name":"Mission and goals","url":"https:\/\/ieo-official.org#goals","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}],[{"key":null,"icon":null,"name":"Organizational structure","url":"https:\/\/ieo-official.org#structure","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}],[{"key":null,"icon":null,"name":"People","url":"https:\/\/ieo-official.org\/committees","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}],[{"key":null,"icon":null,"name":"Useful materials","url":"https:\/\/ieo-official.org\/experience","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}],[{"key":null,"icon":null,"name":"Media","url":"https:\/\/ieo-official.org\/media","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}],[{"key":null,"icon":null,"name":"Contacts","url":"https:\/\/ieo-official.org#footer","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}]],{"s":"arr"}]},"memo":{"id":"uynDptkAPcnl5gDmOBey","name":"header-block.main-menu.menu-link","path":"prepare","method":"GET","release":"a-a-a","children":{"header-block.main-menu-link-641fe4c14d21b3e58eba842c25df550b":["li","Cmu7NyA3NGXUW25TAI3D"],"header-block.main-menu-link-dc16dfd563b6777004613d67541247b9":["li","lbm6wL0k98oJdQFQOhVj"],"header-block.main-menu-link-b84d80b044c9e791471dbfecf759c6b6":["li","pMaWTjxusUJcqxBiTT31"],"header-block.main-menu-link-6c9b185a06ff189439a3786de8b7f9ff":["li","ZQ1HaZCqL0l6bMRxkBHY"],"header-block.main-menu-link-76ae81b067585f3e51026e8e5353c94f":["li","c6Jfz6rMfPv6mGivq3tF"],"header-block.main-menu-link-36a65600fb21a45b2d34ffa8efb9ebf2":["li","vo4EwooHv6Rk3GJiGUNx"],"header-block.main-menu-link-16189dcc35a171de8a48244e8a159eab":["li","nhHEov6ZPmbBDeJfS10M"]},"scripts":[],"assets":[],"errors":[],"locale":"en"},"checksum":"fe60a86251dcf436400461472d427af0f968f91379ca94270d87a4d32bc866c9"}" wire:effects="[]" wire:id="uynDptkAPcnl5gDmOBey" class="has-child"
x-data="{
'opened': false,
'active': false,
}"
x-bind:class="{
'opened': opened,
'active': active,
}"
x-on:mouseover="
if (window.innerWidth > 1240) {
opened = true
}
"
x-on:mouseover.away="
if (window.innerWidth > 1240) {
opened = false
}
"
x-on:click="
if (window.innerWidth <= 1240) {
opened = !opened
}
"
x-on:click.outside="
if (window.innerWidth <= 1240) {
opened = false
}
"
>
<a href="https://ieo-official.org"
wire:key="header-block.main-menu-link-1fc5fabb505067b6fc09bed916d3eda1"
data-header-block-main-menu-link
>
About
<!--[if BLOCK]><![endif]--> <svg class="svg-icon svg-icon-arrow-down">
<use xlink:href='#icon-arrow-down'></use>
</svg>
<!--[if ENDBLOCK]><![endif]--> </a>
<!--[if BLOCK]><![endif]--> <ul>
<!--[if BLOCK]><![endif]-->
<li wire:snapshot="{"data":{"link":[{"key":null,"icon":null,"name":"IEO in a nutshell","url":"https:\/\/ieo-official.org#statistic","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}],"children":null},"memo":{"id":"Cmu7NyA3NGXUW25TAI3D","name":"header-block.main-menu.menu-link","path":"prepare","method":"GET","release":"a-a-a","children":[],"scripts":[],"assets":[],"errors":[],"locale":"en"},"checksum":"950ef76263a8661a5e3179a54ec01ab674f10729e13cc577b87e7104c7820c37"}" wire:effects="[]" wire:id="Cmu7NyA3NGXUW25TAI3D" class=""
x-data="{
'opened': false,
'active': false,
}"
x-bind:class="{
'opened': opened,
'active': active,
}"
x-on:mouseover="
if (window.innerWidth > 1240) {
opened = true
}
"
x-on:mouseover.away="
if (window.innerWidth > 1240) {
opened = false
}
"
x-on:click="
if (window.innerWidth <= 1240) {
opened = !opened
}
"
x-on:click.outside="
if (window.innerWidth <= 1240) {
opened = false
}
"
>
<a href="https://ieo-official.org#statistic"
wire:key="header-block.main-menu-link-b7aa6e843501aea3a4e937d390d57c5a"
data-header-block-main-menu-link
>
IEO in a nutshell
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--> </a>
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--></li>
<li wire:snapshot="{"data":{"link":[{"key":null,"icon":null,"name":"Mission and goals","url":"https:\/\/ieo-official.org#goals","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}],"children":null},"memo":{"id":"lbm6wL0k98oJdQFQOhVj","name":"header-block.main-menu.menu-link","path":"prepare","method":"GET","release":"a-a-a","children":[],"scripts":[],"assets":[],"errors":[],"locale":"en"},"checksum":"55834142b50d48b24840fdfe2377e66eebec4b1bb76a83f2f9c032c4bf5f80f3"}" wire:effects="[]" wire:id="lbm6wL0k98oJdQFQOhVj" class=""
x-data="{
'opened': false,
'active': false,
}"
x-bind:class="{
'opened': opened,
'active': active,
}"
x-on:mouseover="
if (window.innerWidth > 1240) {
opened = true
}
"
x-on:mouseover.away="
if (window.innerWidth > 1240) {
opened = false
}
"
x-on:click="
if (window.innerWidth <= 1240) {
opened = !opened
}
"
x-on:click.outside="
if (window.innerWidth <= 1240) {
opened = false
}
"
>
<a href="https://ieo-official.org#goals"
wire:key="header-block.main-menu-link-724b2c57bac9d985e9a284e63938a212"
data-header-block-main-menu-link
>
Mission and goals
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--> </a>
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--></li>
<li wire:snapshot="{"data":{"link":[{"key":null,"icon":null,"name":"Organizational structure","url":"https:\/\/ieo-official.org#structure","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}],"children":null},"memo":{"id":"pMaWTjxusUJcqxBiTT31","name":"header-block.main-menu.menu-link","path":"prepare","method":"GET","release":"a-a-a","children":[],"scripts":[],"assets":[],"errors":[],"locale":"en"},"checksum":"76aa6808640d3efd0b64d5c481bf0a6ca5637f187c64ac5ee521c4af62c78510"}" wire:effects="[]" wire:id="pMaWTjxusUJcqxBiTT31" class=""
x-data="{
'opened': false,
'active': false,
}"
x-bind:class="{
'opened': opened,
'active': active,
}"
x-on:mouseover="
if (window.innerWidth > 1240) {
opened = true
}
"
x-on:mouseover.away="
if (window.innerWidth > 1240) {
opened = false
}
"
x-on:click="
if (window.innerWidth <= 1240) {
opened = !opened
}
"
x-on:click.outside="
if (window.innerWidth <= 1240) {
opened = false
}
"
>
<a href="https://ieo-official.org#structure"
wire:key="header-block.main-menu-link-d162cb2e7b2860983abef1311f7573a2"
data-header-block-main-menu-link
>
Organizational structure
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--> </a>
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--></li>
<li wire:snapshot="{"data":{"link":[{"key":null,"icon":null,"name":"People","url":"https:\/\/ieo-official.org\/committees","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}],"children":null},"memo":{"id":"ZQ1HaZCqL0l6bMRxkBHY","name":"header-block.main-menu.menu-link","path":"prepare","method":"GET","release":"a-a-a","children":[],"scripts":[],"assets":[],"errors":[],"locale":"en"},"checksum":"0b2654b5415b3d4c1712309eeacd40cc7aa0087eb2a54a5d5be352c2c0e98fc8"}" wire:effects="[]" wire:id="ZQ1HaZCqL0l6bMRxkBHY" class=""
x-data="{
'opened': false,
'active': false,
}"
x-bind:class="{
'opened': opened,
'active': active,
}"
x-on:mouseover="
if (window.innerWidth > 1240) {
opened = true
}
"
x-on:mouseover.away="
if (window.innerWidth > 1240) {
opened = false
}
"
x-on:click="
if (window.innerWidth <= 1240) {
opened = !opened
}
"
x-on:click.outside="
if (window.innerWidth <= 1240) {
opened = false
}
"
>
<a href="https://ieo-official.org/committees"
wire:key="header-block.main-menu-link-6ad2b01e91bf47e3d5683bb41b38d967"
data-header-block-main-menu-link
>
People
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--> </a>
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--></li>
<li wire:snapshot="{"data":{"link":[{"key":null,"icon":null,"name":"Useful materials","url":"https:\/\/ieo-official.org\/experience","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}],"children":null},"memo":{"id":"c6Jfz6rMfPv6mGivq3tF","name":"header-block.main-menu.menu-link","path":"prepare","method":"GET","release":"a-a-a","children":[],"scripts":[],"assets":[],"errors":[],"locale":"en"},"checksum":"50dd525f77f5eb13848037db86ce620ac9335da84d248d4edcb93216685a4fcf"}" wire:effects="[]" wire:id="c6Jfz6rMfPv6mGivq3tF" class=""
x-data="{
'opened': false,
'active': false,
}"
x-bind:class="{
'opened': opened,
'active': active,
}"
x-on:mouseover="
if (window.innerWidth > 1240) {
opened = true
}
"
x-on:mouseover.away="
if (window.innerWidth > 1240) {
opened = false
}
"
x-on:click="
if (window.innerWidth <= 1240) {
opened = !opened
}
"
x-on:click.outside="
if (window.innerWidth <= 1240) {
opened = false
}
"
>
<a href="https://ieo-official.org/experience"
wire:key="header-block.main-menu-link-0e085056d1fd1347772e6b952212a6f9"
data-header-block-main-menu-link
>
Useful materials
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--> </a>
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--></li>
<li wire:snapshot="{"data":{"link":[{"key":null,"icon":null,"name":"Media","url":"https:\/\/ieo-official.org\/media","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}],"children":null},"memo":{"id":"vo4EwooHv6Rk3GJiGUNx","name":"header-block.main-menu.menu-link","path":"prepare","method":"GET","release":"a-a-a","children":[],"scripts":[],"assets":[],"errors":[],"locale":"en"},"checksum":"d7e6f3acc9384baefc8c27303d166c59277c481752b93aed04b6b2c1afca537e"}" wire:effects="[]" wire:id="vo4EwooHv6Rk3GJiGUNx" class=""
x-data="{
'opened': false,
'active': false,
}"
x-bind:class="{
'opened': opened,
'active': active,
}"
x-on:mouseover="
if (window.innerWidth > 1240) {
opened = true
}
"
x-on:mouseover.away="
if (window.innerWidth > 1240) {
opened = false
}
"
x-on:click="
if (window.innerWidth <= 1240) {
opened = !opened
}
"
x-on:click.outside="
if (window.innerWidth <= 1240) {
opened = false
}
"
>
<a href="https://ieo-official.org/media"
wire:key="header-block.main-menu-link-8a918e013d6048cc8adb88b00df04ec3"
data-header-block-main-menu-link
>
Media
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--> </a>
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--></li>
<li wire:snapshot="{"data":{"link":[{"key":null,"icon":null,"name":"Contacts","url":"https:\/\/ieo-official.org#footer","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}],"children":null},"memo":{"id":"nhHEov6ZPmbBDeJfS10M","name":"header-block.main-menu.menu-link","path":"prepare","method":"GET","release":"a-a-a","children":[],"scripts":[],"assets":[],"errors":[],"locale":"en"},"checksum":"6624eb0af62d78530876a7efd84e714c99cda148f410f743ea0d48a8446ef17d"}" wire:effects="[]" wire:id="nhHEov6ZPmbBDeJfS10M" class=""
x-data="{
'opened': false,
'active': false,
}"
x-bind:class="{
'opened': opened,
'active': active,
}"
x-on:mouseover="
if (window.innerWidth > 1240) {
opened = true
}
"
x-on:mouseover.away="
if (window.innerWidth > 1240) {
opened = false
}
"
x-on:click="
if (window.innerWidth <= 1240) {
opened = !opened
}
"
x-on:click.outside="
if (window.innerWidth <= 1240) {
opened = false
}
"
>
<a href="https://ieo-official.org#footer"
wire:key="header-block.main-menu-link-a124c60253d5850b515153d5c30fa698"
data-header-block-main-menu-link
>
Contacts
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--> </a>
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--></li>
<!--[if ENDBLOCK]><![endif]--> </ul>
<!--[if ENDBLOCK]><![endif]--></li>
<li wire:snapshot="{"data":{"link":[{"key":null,"icon":null,"name":"Competition","url":null,"link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}],"children":[[[{"key":null,"icon":null,"name":"Regulations","url":"https:\/\/ieo-official.org\/regulations","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}],[{"key":null,"icon":null,"name":"Structure","url":"https:\/\/ieo-official.org#structure","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}],[{"key":null,"icon":null,"name":"Syllabus","url":"https:\/\/ieo-official.org\/prepare#syllabus","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}],[{"key":null,"icon":null,"name":"How-to","url":"https:\/\/ieo-official.org#how-participate","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}],[{"key":null,"icon":null,"name":"Resources","url":"https:\/\/ieo-official.org\/prepare#tasks","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}],[{"key":null,"icon":null,"name":"Past IEOs","url":"https:\/\/ieo-official.org#ieos","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}],[{"key":null,"icon":null,"name":"OpenTrack","url":"https:\/\/ieo-official.org\/opentrack","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}]],{"s":"arr"}]},"memo":{"id":"wD0oOVRUYX1MihL7vCD0","name":"header-block.main-menu.menu-link","path":"prepare","method":"GET","release":"a-a-a","children":{"header-block.main-menu-link-e7e2f999203c48bf34bb06061b8df32d":["li","y1X4Z6L3bJnmcalE0vWg"],"header-block.main-menu-link-f31e9802e3311342020fa15845b856ad":["li","rOXDBlcdnIXZGccbfPi7"],"header-block.main-menu-link-85528093ac933694db5745de2d4ac8eb":["li","vVd60qv9Z9WDkef9zX1p"],"header-block.main-menu-link-df9708683a9a88fda52130e142d355fe":["li","6DGOAMGFFOOMhsCN9V35"],"header-block.main-menu-link-9188974718d83bd94898dfdcd0c7457a":["li","IeEuoFECIkC93awKiI06"],"header-block.main-menu-link-dea6809e4e3e9430820ab0d41ebc09ba":["li","JX6rLI9dlr09Bt5P9Dfp"],"header-block.main-menu-link-2faef0cf9d03bd4ea25cfd0da37cd38f":["li","VussjQIJMGLLTb0xV0Ut"]},"scripts":[],"assets":[],"errors":[],"locale":"en"},"checksum":"caeabbff417f9c24676474716eb0e1a659d2443cf7048cb88c753c0c60a70fd2"}" wire:effects="[]" wire:id="wD0oOVRUYX1MihL7vCD0" class="has-child"
x-data="{
'opened': false,
'active': false,
}"
x-bind:class="{
'opened': opened,
'active': active,
}"
x-on:mouseover="
if (window.innerWidth > 1240) {
opened = true
}
"
x-on:mouseover.away="
if (window.innerWidth > 1240) {
opened = false
}
"
x-on:click="
if (window.innerWidth <= 1240) {
opened = !opened
}
"
x-on:click.outside="
if (window.innerWidth <= 1240) {
opened = false
}
"
>
<a href="#"
wire:key="header-block.main-menu-link-30dbf0e25679177512cf3d475a34a8d7"
data-header-block-main-menu-link
>
Competition
<!--[if BLOCK]><![endif]--> <svg class="svg-icon svg-icon-arrow-down">
<use xlink:href='#icon-arrow-down'></use>
</svg>
<!--[if ENDBLOCK]><![endif]--> </a>
<!--[if BLOCK]><![endif]--> <ul>
<!--[if BLOCK]><![endif]-->
<li wire:snapshot="{"data":{"link":[{"key":null,"icon":null,"name":"Regulations","url":"https:\/\/ieo-official.org\/regulations","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}],"children":null},"memo":{"id":"y1X4Z6L3bJnmcalE0vWg","name":"header-block.main-menu.menu-link","path":"prepare","method":"GET","release":"a-a-a","children":[],"scripts":[],"assets":[],"errors":[],"locale":"en"},"checksum":"e8de11f1bed617d0f9cea2fa83de0014ecefc5634f9a1124c86c8e0d207c8913"}" wire:effects="[]" wire:id="y1X4Z6L3bJnmcalE0vWg" class=""
x-data="{
'opened': false,
'active': false,
}"
x-bind:class="{
'opened': opened,
'active': active,
}"
x-on:mouseover="
if (window.innerWidth > 1240) {
opened = true
}
"
x-on:mouseover.away="
if (window.innerWidth > 1240) {
opened = false
}
"
x-on:click="
if (window.innerWidth <= 1240) {
opened = !opened
}
"
x-on:click.outside="
if (window.innerWidth <= 1240) {
opened = false
}
"
>
<a href="https://ieo-official.org/regulations"
wire:key="header-block.main-menu-link-0c1eb539eacc2009e9455e2f7c21b729"
data-header-block-main-menu-link
>
Regulations
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--> </a>
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--></li>
<li wire:snapshot="{"data":{"link":[{"key":null,"icon":null,"name":"Structure","url":"https:\/\/ieo-official.org#structure","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}],"children":null},"memo":{"id":"rOXDBlcdnIXZGccbfPi7","name":"header-block.main-menu.menu-link","path":"prepare","method":"GET","release":"a-a-a","children":[],"scripts":[],"assets":[],"errors":[],"locale":"en"},"checksum":"83b631153b950547f810527d677b4ec232a01d11afe539559a1f02cb406525c1"}" wire:effects="[]" wire:id="rOXDBlcdnIXZGccbfPi7" class=""
x-data="{
'opened': false,
'active': false,
}"
x-bind:class="{
'opened': opened,
'active': active,
}"
x-on:mouseover="
if (window.innerWidth > 1240) {
opened = true
}
"
x-on:mouseover.away="
if (window.innerWidth > 1240) {
opened = false
}
"
x-on:click="
if (window.innerWidth <= 1240) {
opened = !opened
}
"
x-on:click.outside="
if (window.innerWidth <= 1240) {
opened = false
}
"
>
<a href="https://ieo-official.org#structure"
wire:key="header-block.main-menu-link-f89eec69bc584b40a1e2ce9387d5b23a"
data-header-block-main-menu-link
>
Structure
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--> </a>
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--></li>
<li wire:snapshot="{"data":{"link":[{"key":null,"icon":null,"name":"Syllabus","url":"https:\/\/ieo-official.org\/prepare#syllabus","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}],"children":null},"memo":{"id":"vVd60qv9Z9WDkef9zX1p","name":"header-block.main-menu.menu-link","path":"prepare","method":"GET","release":"a-a-a","children":[],"scripts":[],"assets":[],"errors":[],"locale":"en"},"checksum":"e6fd1b5c8c401f76bdaff33299839552dd6cbab0d0e08eb01c75b4c10ecc99e2"}" wire:effects="[]" wire:id="vVd60qv9Z9WDkef9zX1p" class=""
x-data="{
'opened': false,
'active': false,
}"
x-bind:class="{
'opened': opened,
'active': active,
}"
x-on:mouseover="
if (window.innerWidth > 1240) {
opened = true
}
"
x-on:mouseover.away="
if (window.innerWidth > 1240) {
opened = false
}
"
x-on:click="
if (window.innerWidth <= 1240) {
opened = !opened
}
"
x-on:click.outside="
if (window.innerWidth <= 1240) {
opened = false
}
"
>
<a href="https://ieo-official.org/prepare#syllabus"
wire:key="header-block.main-menu-link-4add72e8d98acb077202593c35bedb7c"
data-header-block-main-menu-link
>
Syllabus
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--> </a>
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--></li>
<li wire:snapshot="{"data":{"link":[{"key":null,"icon":null,"name":"How-to","url":"https:\/\/ieo-official.org#how-participate","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}],"children":null},"memo":{"id":"6DGOAMGFFOOMhsCN9V35","name":"header-block.main-menu.menu-link","path":"prepare","method":"GET","release":"a-a-a","children":[],"scripts":[],"assets":[],"errors":[],"locale":"en"},"checksum":"ffce6a23b7723efec70febb429f96f278c87813ce3ef0a8cf11a5554373b7641"}" wire:effects="[]" wire:id="6DGOAMGFFOOMhsCN9V35" class=""
x-data="{
'opened': false,
'active': false,
}"
x-bind:class="{
'opened': opened,
'active': active,
}"
x-on:mouseover="
if (window.innerWidth > 1240) {
opened = true
}
"
x-on:mouseover.away="
if (window.innerWidth > 1240) {
opened = false
}
"
x-on:click="
if (window.innerWidth <= 1240) {
opened = !opened
}
"
x-on:click.outside="
if (window.innerWidth <= 1240) {
opened = false
}
"
>
<a href="https://ieo-official.org#how-participate"
wire:key="header-block.main-menu-link-145a9e12fe5fbffd5bf62fe8cbc63b9d"
data-header-block-main-menu-link
>
How-to
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--> </a>
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--></li>
<li wire:snapshot="{"data":{"link":[{"key":null,"icon":null,"name":"Resources","url":"https:\/\/ieo-official.org\/prepare#tasks","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}],"children":null},"memo":{"id":"IeEuoFECIkC93awKiI06","name":"header-block.main-menu.menu-link","path":"prepare","method":"GET","release":"a-a-a","children":[],"scripts":[],"assets":[],"errors":[],"locale":"en"},"checksum":"bda1ebd429e9273a90ee9539a6f8bb2978ca0f975c262c31d620a91687a8d437"}" wire:effects="[]" wire:id="IeEuoFECIkC93awKiI06" class=""
x-data="{
'opened': false,
'active': false,
}"
x-bind:class="{
'opened': opened,
'active': active,
}"
x-on:mouseover="
if (window.innerWidth > 1240) {
opened = true
}
"
x-on:mouseover.away="
if (window.innerWidth > 1240) {
opened = false
}
"
x-on:click="
if (window.innerWidth <= 1240) {
opened = !opened
}
"
x-on:click.outside="
if (window.innerWidth <= 1240) {
opened = false
}
"
>
<a href="https://ieo-official.org/prepare#tasks"
wire:key="header-block.main-menu-link-65b5a6a44b2fc9141fc8dadc2b88b2a0"
data-header-block-main-menu-link
>
Resources
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--> </a>
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--></li>
<li wire:snapshot="{"data":{"link":[{"key":null,"icon":null,"name":"Past IEOs","url":"https:\/\/ieo-official.org#ieos","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}],"children":null},"memo":{"id":"JX6rLI9dlr09Bt5P9Dfp","name":"header-block.main-menu.menu-link","path":"prepare","method":"GET","release":"a-a-a","children":[],"scripts":[],"assets":[],"errors":[],"locale":"en"},"checksum":"62090afe9e48ab02a10dc1e6ea5a24b990e836751fd2e07f0ec4cc9c15f50f50"}" wire:effects="[]" wire:id="JX6rLI9dlr09Bt5P9Dfp" class=""
x-data="{
'opened': false,
'active': false,
}"
x-bind:class="{
'opened': opened,
'active': active,
}"
x-on:mouseover="
if (window.innerWidth > 1240) {
opened = true
}
"
x-on:mouseover.away="
if (window.innerWidth > 1240) {
opened = false
}
"
x-on:click="
if (window.innerWidth <= 1240) {
opened = !opened
}
"
x-on:click.outside="
if (window.innerWidth <= 1240) {
opened = false
}
"
>
<a href="https://ieo-official.org#ieos"
wire:key="header-block.main-menu-link-e111945ff7f9afd6cff418bd67bbb4b0"
data-header-block-main-menu-link
>
Past IEOs
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--> </a>
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--></li>
<li wire:snapshot="{"data":{"link":[{"key":null,"icon":null,"name":"OpenTrack","url":"https:\/\/ieo-official.org\/opentrack","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}],"children":null},"memo":{"id":"VussjQIJMGLLTb0xV0Ut","name":"header-block.main-menu.menu-link","path":"prepare","method":"GET","release":"a-a-a","children":[],"scripts":[],"assets":[],"errors":[],"locale":"en"},"checksum":"d7e7ba6bd01680800d90a91bb2b316bc0dede031747a5ca11a524843acf2dd90"}" wire:effects="[]" wire:id="VussjQIJMGLLTb0xV0Ut" class=""
x-data="{
'opened': false,
'active': false,
}"
x-bind:class="{
'opened': opened,
'active': active,
}"
x-on:mouseover="
if (window.innerWidth > 1240) {
opened = true
}
"
x-on:mouseover.away="
if (window.innerWidth > 1240) {
opened = false
}
"
x-on:click="
if (window.innerWidth <= 1240) {
opened = !opened
}
"
x-on:click.outside="
if (window.innerWidth <= 1240) {
opened = false
}
"
>
<a href="https://ieo-official.org/opentrack"
wire:key="header-block.main-menu-link-1880576be47bdb411963d05e344eb19e"
data-header-block-main-menu-link
>
OpenTrack
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--> </a>
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--></li>
<!--[if ENDBLOCK]><![endif]--> </ul>
<!--[if ENDBLOCK]><![endif]--></li>
<li wire:snapshot="{"data":{"link":[{"key":null,"icon":null,"name":"Documents","url":"https:\/\/ieo-official.org#documents","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}],"children":null},"memo":{"id":"Wq8yp5Br6ymc65OChIYt","name":"header-block.main-menu.menu-link","path":"prepare","method":"GET","release":"a-a-a","children":[],"scripts":[],"assets":[],"errors":[],"locale":"en"},"checksum":"0af553c0eb9c5768b9ce4108f38958b628ae04d8d276ffdfac37886da39222dd"}" wire:effects="[]" wire:id="Wq8yp5Br6ymc65OChIYt" class=""
x-data="{
'opened': false,
'active': false,
}"
x-bind:class="{
'opened': opened,
'active': active,
}"
x-on:mouseover="
if (window.innerWidth > 1240) {
opened = true
}
"
x-on:mouseover.away="
if (window.innerWidth > 1240) {
opened = false
}
"
x-on:click="
if (window.innerWidth <= 1240) {
opened = !opened
}
"
x-on:click.outside="
if (window.innerWidth <= 1240) {
opened = false
}
"
>
<a href="https://ieo-official.org#documents"
wire:key="header-block.main-menu-link-474734fba3047a5334a45c0731eebee5"
data-header-block-main-menu-link
>
Documents
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--> </a>
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--></li>
<li wire:snapshot="{"data":{"link":[{"key":null,"icon":null,"name":"Countries","url":"https:\/\/ieo-official.org\/countries","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}],"children":[[[{"key":null,"icon":null,"name":"3YA Partners","url":"https:\/\/ieo-official.org#countries","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}],[{"key":null,"icon":null,"name":"All countries","url":"https:\/\/ieo-official.org\/countries","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}],[{"key":null,"icon":null,"name":"Bring IEO to your country","url":"https:\/\/ieo-official.org\/national","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}]],{"s":"arr"}]},"memo":{"id":"JynkP8LEzqUrebaDyrsX","name":"header-block.main-menu.menu-link","path":"prepare","method":"GET","release":"a-a-a","children":{"header-block.main-menu-link-a22fbc27e661de15770e2ad77597a14c":["li","Lo7R7ic9D6XOhsV6mKFG"],"header-block.main-menu-link-de89599edbe0a796c3b29ef398425170":["li","LHuumIBMzOATQJpnkDlS"],"header-block.main-menu-link-b80fd53a217a6b2f3804988497e2d104":["li","bqGek8h4gnwVNtq1tbIa"]},"scripts":[],"assets":[],"errors":[],"locale":"en"},"checksum":"c6740cc5559075ed495487b0c4097f9cafdbecb67b875f43cb8214344ba6c242"}" wire:effects="[]" wire:id="JynkP8LEzqUrebaDyrsX" class="has-child"
x-data="{
'opened': false,
'active': false,
}"
x-bind:class="{
'opened': opened,
'active': active,
}"
x-on:mouseover="
if (window.innerWidth > 1240) {
opened = true
}
"
x-on:mouseover.away="
if (window.innerWidth > 1240) {
opened = false
}
"
x-on:click="
if (window.innerWidth <= 1240) {
opened = !opened
}
"
x-on:click.outside="
if (window.innerWidth <= 1240) {
opened = false
}
"
>
<a href="https://ieo-official.org/countries"
wire:key="header-block.main-menu-link-f32dcdda5bf1cbf5070839917aa2670f"
data-header-block-main-menu-link
>
Countries
<!--[if BLOCK]><![endif]--> <svg class="svg-icon svg-icon-arrow-down">
<use xlink:href='#icon-arrow-down'></use>
</svg>
<!--[if ENDBLOCK]><![endif]--> </a>
<!--[if BLOCK]><![endif]--> <ul>
<!--[if BLOCK]><![endif]-->
<li wire:snapshot="{"data":{"link":[{"key":null,"icon":null,"name":"3YA Partners","url":"https:\/\/ieo-official.org#countries","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}],"children":null},"memo":{"id":"Lo7R7ic9D6XOhsV6mKFG","name":"header-block.main-menu.menu-link","path":"prepare","method":"GET","release":"a-a-a","children":[],"scripts":[],"assets":[],"errors":[],"locale":"en"},"checksum":"eb5b40425634c3e4bbfc19b3ac56558c93aa3163da5f2487bc65807c19cfbb43"}" wire:effects="[]" wire:id="Lo7R7ic9D6XOhsV6mKFG" class=""
x-data="{
'opened': false,
'active': false,
}"
x-bind:class="{
'opened': opened,
'active': active,
}"
x-on:mouseover="
if (window.innerWidth > 1240) {
opened = true
}
"
x-on:mouseover.away="
if (window.innerWidth > 1240) {
opened = false
}
"
x-on:click="
if (window.innerWidth <= 1240) {
opened = !opened
}
"
x-on:click.outside="
if (window.innerWidth <= 1240) {
opened = false
}
"
>
<a href="https://ieo-official.org#countries"
wire:key="header-block.main-menu-link-161183ef3c4859460bfcb2a75424982f"
data-header-block-main-menu-link
>
3YA Partners
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--> </a>
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--></li>
<li wire:snapshot="{"data":{"link":[{"key":null,"icon":null,"name":"All countries","url":"https:\/\/ieo-official.org\/countries","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}],"children":null},"memo":{"id":"LHuumIBMzOATQJpnkDlS","name":"header-block.main-menu.menu-link","path":"prepare","method":"GET","release":"a-a-a","children":[],"scripts":[],"assets":[],"errors":[],"locale":"en"},"checksum":"eb95827da272b61307c02c4e606eb307d1c2f62e1887743c6b8ff908bd97a166"}" wire:effects="[]" wire:id="LHuumIBMzOATQJpnkDlS" class=""
x-data="{
'opened': false,
'active': false,
}"
x-bind:class="{
'opened': opened,
'active': active,
}"
x-on:mouseover="
if (window.innerWidth > 1240) {
opened = true
}
"
x-on:mouseover.away="
if (window.innerWidth > 1240) {
opened = false
}
"
x-on:click="
if (window.innerWidth <= 1240) {
opened = !opened
}
"
x-on:click.outside="
if (window.innerWidth <= 1240) {
opened = false
}
"
>
<a href="https://ieo-official.org/countries"
wire:key="header-block.main-menu-link-fe12b3034c3f40d35951293157c4abdf"
data-header-block-main-menu-link
>
All countries
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--> </a>
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--></li>
<li wire:snapshot="{"data":{"link":[{"key":null,"icon":null,"name":"Bring IEO to your country","url":"https:\/\/ieo-official.org\/national","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}],"children":null},"memo":{"id":"bqGek8h4gnwVNtq1tbIa","name":"header-block.main-menu.menu-link","path":"prepare","method":"GET","release":"a-a-a","children":[],"scripts":[],"assets":[],"errors":[],"locale":"en"},"checksum":"512ef142c96b62a914a7b81d88b5949dac699df03bc9c205b52bc10f05eee748"}" wire:effects="[]" wire:id="bqGek8h4gnwVNtq1tbIa" class=""
x-data="{
'opened': false,
'active': false,
}"
x-bind:class="{
'opened': opened,
'active': active,
}"
x-on:mouseover="
if (window.innerWidth > 1240) {
opened = true
}
"
x-on:mouseover.away="
if (window.innerWidth > 1240) {
opened = false
}
"
x-on:click="
if (window.innerWidth <= 1240) {
opened = !opened
}
"
x-on:click.outside="
if (window.innerWidth <= 1240) {
opened = false
}
"
>
<a href="https://ieo-official.org/national"
wire:key="header-block.main-menu-link-cc3f6dc67f4c0c9b9df9cc28d847eeb4"
data-header-block-main-menu-link
>
Bring IEO to your country
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--> </a>
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--></li>
<!--[if ENDBLOCK]><![endif]--> </ul>
<!--[if ENDBLOCK]><![endif]--></li>
<li wire:snapshot="{"data":{"link":[{"key":null,"icon":null,"name":"Results","url":"https:\/\/ieo-official.org\/results","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}],"children":[[[{"key":null,"icon":null,"name":"Overall results","url":"https:\/\/ieo-official.org\/results-overall","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}],[{"key":null,"icon":null,"name":"Annual results","url":"https:\/\/ieo-official.org\/results","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}],[{"key":null,"icon":null,"name":"Certificates","url":"https:\/\/ieo-official.org\/certificate","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}]],{"s":"arr"}]},"memo":{"id":"4qnrxjR8jKY7jPKOlO4C","name":"header-block.main-menu.menu-link","path":"prepare","method":"GET","release":"a-a-a","children":{"header-block.main-menu-link-abef5cad301bfa598d9c1bd91868fc71":["li","3tUG2i6MSCf32WWTndsG"],"header-block.main-menu-link-55cc9ba4e51765a43ad25982acf1c89c":["li","ao414C1h5Kw6RrUZxsxz"],"header-block.main-menu-link-18ad96674c73bdf0f7da89a0b8a008f7":["li","Ooa8So4qs3ly8dOoEaqY"]},"scripts":[],"assets":[],"errors":[],"locale":"en"},"checksum":"a40e58bcea82ed75d95b4f68cab2751f8dd0429e30b982f8f3131b1d7ce4d028"}" wire:effects="[]" wire:id="4qnrxjR8jKY7jPKOlO4C" class="has-child"
x-data="{
'opened': false,
'active': false,
}"
x-bind:class="{
'opened': opened,
'active': active,
}"
x-on:mouseover="
if (window.innerWidth > 1240) {
opened = true
}
"
x-on:mouseover.away="
if (window.innerWidth > 1240) {
opened = false
}
"
x-on:click="
if (window.innerWidth <= 1240) {
opened = !opened
}
"
x-on:click.outside="
if (window.innerWidth <= 1240) {
opened = false
}
"
>
<a href="https://ieo-official.org/results"
wire:key="header-block.main-menu-link-1f607a4486be2b76c3b02b7022481b80"
data-header-block-main-menu-link
>
Results
<!--[if BLOCK]><![endif]--> <svg class="svg-icon svg-icon-arrow-down">
<use xlink:href='#icon-arrow-down'></use>
</svg>
<!--[if ENDBLOCK]><![endif]--> </a>
<!--[if BLOCK]><![endif]--> <ul>
<!--[if BLOCK]><![endif]-->
<li wire:snapshot="{"data":{"link":[{"key":null,"icon":null,"name":"Overall results","url":"https:\/\/ieo-official.org\/results-overall","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}],"children":null},"memo":{"id":"3tUG2i6MSCf32WWTndsG","name":"header-block.main-menu.menu-link","path":"prepare","method":"GET","release":"a-a-a","children":[],"scripts":[],"assets":[],"errors":[],"locale":"en"},"checksum":"c0ab56e93c77d4599c384ffda218766798a6dafdcf697f28a7e1d7decd788990"}" wire:effects="[]" wire:id="3tUG2i6MSCf32WWTndsG" class=""
x-data="{
'opened': false,
'active': false,
}"
x-bind:class="{
'opened': opened,
'active': active,
}"
x-on:mouseover="
if (window.innerWidth > 1240) {
opened = true
}
"
x-on:mouseover.away="
if (window.innerWidth > 1240) {
opened = false
}
"
x-on:click="
if (window.innerWidth <= 1240) {
opened = !opened
}
"
x-on:click.outside="
if (window.innerWidth <= 1240) {
opened = false
}
"
>
<a href="https://ieo-official.org/results-overall"
wire:key="header-block.main-menu-link-013166afbf256e15e73f52c1d201997c"
data-header-block-main-menu-link
>
Overall results
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--> </a>
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--></li>
<li wire:snapshot="{"data":{"link":[{"key":null,"icon":null,"name":"Annual results","url":"https:\/\/ieo-official.org\/results","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}],"children":null},"memo":{"id":"ao414C1h5Kw6RrUZxsxz","name":"header-block.main-menu.menu-link","path":"prepare","method":"GET","release":"a-a-a","children":[],"scripts":[],"assets":[],"errors":[],"locale":"en"},"checksum":"7d73dd4a491318b55d1f7ec58b6e16e28ef65432d3a323ce05b72e6c7a8a2a14"}" wire:effects="[]" wire:id="ao414C1h5Kw6RrUZxsxz" class=""
x-data="{
'opened': false,
'active': false,
}"
x-bind:class="{
'opened': opened,
'active': active,
}"
x-on:mouseover="
if (window.innerWidth > 1240) {
opened = true
}
"
x-on:mouseover.away="
if (window.innerWidth > 1240) {
opened = false
}
"
x-on:click="
if (window.innerWidth <= 1240) {
opened = !opened
}
"
x-on:click.outside="
if (window.innerWidth <= 1240) {
opened = false
}
"
>
<a href="https://ieo-official.org/results"
wire:key="header-block.main-menu-link-2282cf8556766dcdb2b6ebcc56e31fbd"
data-header-block-main-menu-link
>
Annual results
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--> </a>
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--></li>
<li wire:snapshot="{"data":{"link":[{"key":null,"icon":null,"name":"Certificates","url":"https:\/\/ieo-official.org\/certificate","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}],"children":null},"memo":{"id":"Ooa8So4qs3ly8dOoEaqY","name":"header-block.main-menu.menu-link","path":"prepare","method":"GET","release":"a-a-a","children":[],"scripts":[],"assets":[],"errors":[],"locale":"en"},"checksum":"06fc0a3270169a0276fda3e06322b302ba386da17527d7370e0aefccf61cd37f"}" wire:effects="[]" wire:id="Ooa8So4qs3ly8dOoEaqY" class=""
x-data="{
'opened': false,
'active': false,
}"
x-bind:class="{
'opened': opened,
'active': active,
}"
x-on:mouseover="
if (window.innerWidth > 1240) {
opened = true
}
"
x-on:mouseover.away="
if (window.innerWidth > 1240) {
opened = false
}
"
x-on:click="
if (window.innerWidth <= 1240) {
opened = !opened
}
"
x-on:click.outside="
if (window.innerWidth <= 1240) {
opened = false
}
"
>
<a href="https://ieo-official.org/certificate"
wire:key="header-block.main-menu-link-3209a049281b315185066fae98945247"
data-header-block-main-menu-link
>
Certificates
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--> </a>
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--></li>
<!--[if ENDBLOCK]><![endif]--> </ul>
<!--[if ENDBLOCK]><![endif]--></li>
<li wire:snapshot="{"data":{"link":[{"key":null,"icon":null,"name":"IEOx","url":"https:\/\/ieo-official.org#ieox","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}],"children":[[[{"key":null,"icon":null,"name":"About","url":"https:\/\/ieox.ieo-official.org","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}],[{"key":null,"icon":null,"name":"EssayChallenge","url":"https:\/\/ieo-official.org\/essaychallenge","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}],[{"key":null,"icon":null,"name":"WinterChallenge","url":"https:\/\/ieo-official.org\/winterchallenge","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}]],{"s":"arr"}]},"memo":{"id":"d27cm3lS3lhwqwf0TUZ8","name":"header-block.main-menu.menu-link","path":"prepare","method":"GET","release":"a-a-a","children":{"header-block.main-menu-link-a9030e7b78180437a8270d376d2baee7":["li","HnN0bXisa58E7jHBUigh"],"header-block.main-menu-link-d7a79809a40b2c4354b294d4fc81efac":["li","LU9F52H8Xtrmki2592rN"],"header-block.main-menu-link-1ef022cac56e9eaf2a9a6512d4664063":["li","BGgFo2d36KU60UTvS7BR"]},"scripts":[],"assets":[],"errors":[],"locale":"en"},"checksum":"1131f274ceaea478d760e69107431ebb304735d387ddcc58bb75995e8b5236fc"}" wire:effects="[]" wire:id="d27cm3lS3lhwqwf0TUZ8" class="has-child"
x-data="{
'opened': false,
'active': false,
}"
x-bind:class="{
'opened': opened,
'active': active,
}"
x-on:mouseover="
if (window.innerWidth > 1240) {
opened = true
}
"
x-on:mouseover.away="
if (window.innerWidth > 1240) {
opened = false
}
"
x-on:click="
if (window.innerWidth <= 1240) {
opened = !opened
}
"
x-on:click.outside="
if (window.innerWidth <= 1240) {
opened = false
}
"
>
<a href="https://ieo-official.org#ieox"
wire:key="header-block.main-menu-link-5a5b6e5e622187fc7524d7bbf3d75536"
data-header-block-main-menu-link
>
IEOx
<!--[if BLOCK]><![endif]--> <svg class="svg-icon svg-icon-arrow-down">
<use xlink:href='#icon-arrow-down'></use>
</svg>
<!--[if ENDBLOCK]><![endif]--> </a>
<!--[if BLOCK]><![endif]--> <ul>
<!--[if BLOCK]><![endif]-->
<li wire:snapshot="{"data":{"link":[{"key":null,"icon":null,"name":"About","url":"https:\/\/ieox.ieo-official.org","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}],"children":null},"memo":{"id":"HnN0bXisa58E7jHBUigh","name":"header-block.main-menu.menu-link","path":"prepare","method":"GET","release":"a-a-a","children":[],"scripts":[],"assets":[],"errors":[],"locale":"en"},"checksum":"7836de3669b8b0cdfc73bebbe49996aa8509695e2adb83dd24e85368771b3902"}" wire:effects="[]" wire:id="HnN0bXisa58E7jHBUigh" class=""
x-data="{
'opened': false,
'active': false,
}"
x-bind:class="{
'opened': opened,
'active': active,
}"
x-on:mouseover="
if (window.innerWidth > 1240) {
opened = true
}
"
x-on:mouseover.away="
if (window.innerWidth > 1240) {
opened = false
}
"
x-on:click="
if (window.innerWidth <= 1240) {
opened = !opened
}
"
x-on:click.outside="
if (window.innerWidth <= 1240) {
opened = false
}
"
>
<a href="https://ieox.ieo-official.org"
wire:key="header-block.main-menu-link-e63e0f90d5fdb534175708acd2051c38"
data-header-block-main-menu-link
>
About
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--> </a>
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--></li>
<li wire:snapshot="{"data":{"link":[{"key":null,"icon":null,"name":"EssayChallenge","url":"https:\/\/ieo-official.org\/essaychallenge","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}],"children":null},"memo":{"id":"LU9F52H8Xtrmki2592rN","name":"header-block.main-menu.menu-link","path":"prepare","method":"GET","release":"a-a-a","children":[],"scripts":[],"assets":[],"errors":[],"locale":"en"},"checksum":"69131b99ce1e153430992a2916a95ce1496936413ddb2e5e995451a642813a5f"}" wire:effects="[]" wire:id="LU9F52H8Xtrmki2592rN" class=""
x-data="{
'opened': false,
'active': false,
}"
x-bind:class="{
'opened': opened,
'active': active,
}"
x-on:mouseover="
if (window.innerWidth > 1240) {
opened = true
}
"
x-on:mouseover.away="
if (window.innerWidth > 1240) {
opened = false
}
"
x-on:click="
if (window.innerWidth <= 1240) {
opened = !opened
}
"
x-on:click.outside="
if (window.innerWidth <= 1240) {
opened = false
}
"
>
<a href="https://ieo-official.org/essaychallenge"
wire:key="header-block.main-menu-link-9b47afe415bdabe333cec0facc14518e"
data-header-block-main-menu-link
>
EssayChallenge
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--> </a>
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--></li>
<li wire:snapshot="{"data":{"link":[{"key":null,"icon":null,"name":"WinterChallenge","url":"https:\/\/ieo-official.org\/winterchallenge","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}],"children":null},"memo":{"id":"BGgFo2d36KU60UTvS7BR","name":"header-block.main-menu.menu-link","path":"prepare","method":"GET","release":"a-a-a","children":[],"scripts":[],"assets":[],"errors":[],"locale":"en"},"checksum":"fab44aa98289de501b1823088b5b57c11577da181310ca44486e45cc188bb2d7"}" wire:effects="[]" wire:id="BGgFo2d36KU60UTvS7BR" class=""
x-data="{
'opened': false,
'active': false,
}"
x-bind:class="{
'opened': opened,
'active': active,
}"
x-on:mouseover="
if (window.innerWidth > 1240) {
opened = true
}
"
x-on:mouseover.away="
if (window.innerWidth > 1240) {
opened = false
}
"
x-on:click="
if (window.innerWidth <= 1240) {
opened = !opened
}
"
x-on:click.outside="
if (window.innerWidth <= 1240) {
opened = false
}
"
>
<a href="https://ieo-official.org/winterchallenge"
wire:key="header-block.main-menu-link-c0b240ccd34575a1e9bbd7912c48298f"
data-header-block-main-menu-link
>
WinterChallenge
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--> </a>
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--></li>
<!--[if ENDBLOCK]><![endif]--> </ul>
<!--[if ENDBLOCK]><![endif]--></li>
</ul>
</div>
<div wire:snapshot="{"data":[],"memo":{"id":"ufOtEuDgQAninWUEj87P","name":"header-block.join","path":"prepare","method":"GET","release":"a-a-a","children":[],"scripts":[],"assets":[],"errors":[],"locale":"en"},"checksum":"04e1101123a94c4cc0efb084b6f5c3846a3b35ce45313476ed2a57dc111bd746"}" wire:effects="[]" wire:id="ufOtEuDgQAninWUEj87P" class="join">
<!--[if BLOCK]><![endif]--> <a href="https://ieo-official.org#how-participate" class="button small">
Join the IEO
</a>
<!--[if ENDBLOCK]><![endif]--></div>
</div>
</div>
</div>
</div>
<div class="mobile-header r-t-m"
x-data="{
opened: false,
}"
@header-block-mobile-menu-close="opened = false"
data-mobile-header
>
<div class="header">
<div class="inner container">
<a wire:snapshot="{"data":[],"memo":{"id":"9HOCc2XsT9gGtvrK0EcE","name":"header-block.logo","path":"prepare","method":"GET","release":"a-a-a","children":[],"scripts":[],"assets":[],"errors":[],"locale":"en"},"checksum":"bf56b9aa947c8513476b4ecf3503abbdbb6761331fc0a3f47821accad4e207bc"}" wire:effects="[]" wire:id="9HOCc2XsT9gGtvrK0EcE" href="https://ieo-official.org" class="logo">
<img src="https://ieo-official.org/img/logo.svg" alt="">
</a>
<div class="flex-aic">
<div wire:snapshot="{"data":[],"memo":{"id":"sp6jgxdvu1UH0yDjx6YA","name":"header-block.join","path":"prepare","method":"GET","release":"a-a-a","children":[],"scripts":[],"assets":[],"errors":[],"locale":"en"},"checksum":"8504465b39d41d329f26a4778ef5127e6d8fc95dff685ae9e8a431dd060454f3"}" wire:effects="[]" wire:id="sp6jgxdvu1UH0yDjx6YA" class="join">
<!--[if BLOCK]><![endif]--> <a href="https://ieo-official.org#how-participate" class="button small">
Join the IEO
</a>
<!--[if ENDBLOCK]><![endif]--></div>
<div x-on:click="opened = !opened">
<div wire:snapshot="{"data":[],"memo":{"id":"QfAPCDdWckAwhWE6XDOk","name":"header-block.menu-link","path":"prepare","method":"GET","release":"a-a-a","children":[],"scripts":[],"assets":[],"errors":[],"locale":"en"},"checksum":"ddd141588d52e9e7119e604e05239d39664ee90c547edc676506c337232e8dd1"}" wire:effects="[]" wire:id="QfAPCDdWckAwhWE6XDOk" class="menu-link">
<span></span>
<span></span>
<span></span>
</div>
</div>
</div>
</div>
</div>
<div class="mobile-menu invisible"
x-bind:class="{
'visible': opened,
}"
>
<div wire:snapshot="{"data":[],"memo":{"id":"CDFvaAbgK4ktxOnVDfCF","name":"header-block.main-menu","path":"prepare","method":"GET","release":"a-a-a","children":{"lw-1415462284-0":["li","0797q5ELWsvEjzHQuXdd"],"lw-1415462284-1":["li","FwJGGvuJnuRjsyytICoC"],"lw-1415462284-2":["li","uoh0CQjdwvMJAckMmlfs"],"lw-1415462284-3":["li","wiFQ1rQvdJjwcUS2dhYL"],"lw-1415462284-4":["li","5KaP2t0AF27tu9FXDmu2"],"lw-1415462284-5":["li","hvkDY5nKxcQSmFKVuCOz"]},"scripts":[],"assets":[],"errors":[],"locale":"en"},"checksum":"5fedc5d79b51d6f6f317c8f26115515eabd10f5ff38d9b930d97549040a0f2b1"}" wire:effects="[]" wire:id="CDFvaAbgK4ktxOnVDfCF" class="main-menu">
<ul>
<li wire:snapshot="{"data":{"link":[{"key":null,"icon":null,"name":"About","url":"https:\/\/ieo-official.org","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}],"children":[[[{"key":null,"icon":null,"name":"IEO in a nutshell","url":"https:\/\/ieo-official.org#statistic","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}],[{"key":null,"icon":null,"name":"Mission and goals","url":"https:\/\/ieo-official.org#goals","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}],[{"key":null,"icon":null,"name":"Organizational structure","url":"https:\/\/ieo-official.org#structure","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}],[{"key":null,"icon":null,"name":"People","url":"https:\/\/ieo-official.org\/committees","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}],[{"key":null,"icon":null,"name":"Useful materials","url":"https:\/\/ieo-official.org\/experience","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}],[{"key":null,"icon":null,"name":"Media","url":"https:\/\/ieo-official.org\/media","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}],[{"key":null,"icon":null,"name":"Contacts","url":"https:\/\/ieo-official.org#footer","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}]],{"s":"arr"}]},"memo":{"id":"0797q5ELWsvEjzHQuXdd","name":"header-block.main-menu.menu-link","path":"prepare","method":"GET","release":"a-a-a","children":{"header-block.main-menu-link-641fe4c14d21b3e58eba842c25df550b":["li","S5qlLeYQA6Y4hZapcsGo"],"header-block.main-menu-link-dc16dfd563b6777004613d67541247b9":["li","pkTiWhDZauEP6pRiqbm5"],"header-block.main-menu-link-b84d80b044c9e791471dbfecf759c6b6":["li","nOlkJ3JNbhNA5tobOuXk"],"header-block.main-menu-link-6c9b185a06ff189439a3786de8b7f9ff":["li","PXm1vNTj0gsnMZtV8TVS"],"header-block.main-menu-link-76ae81b067585f3e51026e8e5353c94f":["li","cXk763IOO2ERIBfDc7Xf"],"header-block.main-menu-link-36a65600fb21a45b2d34ffa8efb9ebf2":["li","ZpQC8Jyh2q4D8dWCGA7b"],"header-block.main-menu-link-16189dcc35a171de8a48244e8a159eab":["li","LGniJtGcp4gn8jTmSsoI"]},"scripts":[],"assets":[],"errors":[],"locale":"en"},"checksum":"edf5218c196dbbcdc864d689567d1fe571c9b4c48345b314f0fe27a622984991"}" wire:effects="[]" wire:id="0797q5ELWsvEjzHQuXdd" class="has-child"
x-data="{
'opened': false,
'active': false,
}"
x-bind:class="{
'opened': opened,
'active': active,
}"
x-on:mouseover="
if (window.innerWidth > 1240) {
opened = true
}
"
x-on:mouseover.away="
if (window.innerWidth > 1240) {
opened = false
}
"
x-on:click="
if (window.innerWidth <= 1240) {
opened = !opened
}
"
x-on:click.outside="
if (window.innerWidth <= 1240) {
opened = false
}
"
>
<a href="https://ieo-official.org"
wire:key="header-block.main-menu-link-1fc5fabb505067b6fc09bed916d3eda1"
data-header-block-main-menu-link
>
About
<!--[if BLOCK]><![endif]--> <svg class="svg-icon svg-icon-arrow-down">
<use xlink:href='#icon-arrow-down'></use>
</svg>
<!--[if ENDBLOCK]><![endif]--> </a>
<!--[if BLOCK]><![endif]--> <ul>
<!--[if BLOCK]><![endif]-->
<li wire:snapshot="{"data":{"link":[{"key":null,"icon":null,"name":"IEO in a nutshell","url":"https:\/\/ieo-official.org#statistic","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}],"children":null},"memo":{"id":"S5qlLeYQA6Y4hZapcsGo","name":"header-block.main-menu.menu-link","path":"prepare","method":"GET","release":"a-a-a","children":[],"scripts":[],"assets":[],"errors":[],"locale":"en"},"checksum":"dbb4c0d6dfb4084ba7a7f06446432c645150fb18cbbddd6acbff1886d7bd540f"}" wire:effects="[]" wire:id="S5qlLeYQA6Y4hZapcsGo" class=""
x-data="{
'opened': false,
'active': false,
}"
x-bind:class="{
'opened': opened,
'active': active,
}"
x-on:mouseover="
if (window.innerWidth > 1240) {
opened = true
}
"
x-on:mouseover.away="
if (window.innerWidth > 1240) {
opened = false
}
"
x-on:click="
if (window.innerWidth <= 1240) {
opened = !opened
}
"
x-on:click.outside="
if (window.innerWidth <= 1240) {
opened = false
}
"
>
<a href="https://ieo-official.org#statistic"
wire:key="header-block.main-menu-link-b7aa6e843501aea3a4e937d390d57c5a"
data-header-block-main-menu-link
>
IEO in a nutshell
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--> </a>
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--></li>
<li wire:snapshot="{"data":{"link":[{"key":null,"icon":null,"name":"Mission and goals","url":"https:\/\/ieo-official.org#goals","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}],"children":null},"memo":{"id":"pkTiWhDZauEP6pRiqbm5","name":"header-block.main-menu.menu-link","path":"prepare","method":"GET","release":"a-a-a","children":[],"scripts":[],"assets":[],"errors":[],"locale":"en"},"checksum":"9a02e52791dff27bafe63aa59bc1c498bbf0af3fa0c9191e4f9c651997bf8a71"}" wire:effects="[]" wire:id="pkTiWhDZauEP6pRiqbm5" class=""
x-data="{
'opened': false,
'active': false,
}"
x-bind:class="{
'opened': opened,
'active': active,
}"
x-on:mouseover="
if (window.innerWidth > 1240) {
opened = true
}
"
x-on:mouseover.away="
if (window.innerWidth > 1240) {
opened = false
}
"
x-on:click="
if (window.innerWidth <= 1240) {
opened = !opened
}
"
x-on:click.outside="
if (window.innerWidth <= 1240) {
opened = false
}
"
>
<a href="https://ieo-official.org#goals"
wire:key="header-block.main-menu-link-724b2c57bac9d985e9a284e63938a212"
data-header-block-main-menu-link
>
Mission and goals
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--> </a>
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--></li>
<li wire:snapshot="{"data":{"link":[{"key":null,"icon":null,"name":"Organizational structure","url":"https:\/\/ieo-official.org#structure","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}],"children":null},"memo":{"id":"nOlkJ3JNbhNA5tobOuXk","name":"header-block.main-menu.menu-link","path":"prepare","method":"GET","release":"a-a-a","children":[],"scripts":[],"assets":[],"errors":[],"locale":"en"},"checksum":"1579254b24b502f9f6a59f505a6ad597aa0ec44c139a15e684a649c8d818f8ac"}" wire:effects="[]" wire:id="nOlkJ3JNbhNA5tobOuXk" class=""
x-data="{
'opened': false,
'active': false,
}"
x-bind:class="{
'opened': opened,
'active': active,
}"
x-on:mouseover="
if (window.innerWidth > 1240) {
opened = true
}
"
x-on:mouseover.away="
if (window.innerWidth > 1240) {
opened = false
}
"
x-on:click="
if (window.innerWidth <= 1240) {
opened = !opened
}
"
x-on:click.outside="
if (window.innerWidth <= 1240) {
opened = false
}
"
>
<a href="https://ieo-official.org#structure"
wire:key="header-block.main-menu-link-d162cb2e7b2860983abef1311f7573a2"
data-header-block-main-menu-link
>
Organizational structure
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--> </a>
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--></li>
<li wire:snapshot="{"data":{"link":[{"key":null,"icon":null,"name":"People","url":"https:\/\/ieo-official.org\/committees","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}],"children":null},"memo":{"id":"PXm1vNTj0gsnMZtV8TVS","name":"header-block.main-menu.menu-link","path":"prepare","method":"GET","release":"a-a-a","children":[],"scripts":[],"assets":[],"errors":[],"locale":"en"},"checksum":"6eb7091a620e1f6322a20c83f1304cbb32863af0573b5bb4ca219ff064b86a25"}" wire:effects="[]" wire:id="PXm1vNTj0gsnMZtV8TVS" class=""
x-data="{
'opened': false,
'active': false,
}"
x-bind:class="{
'opened': opened,
'active': active,
}"
x-on:mouseover="
if (window.innerWidth > 1240) {
opened = true
}
"
x-on:mouseover.away="
if (window.innerWidth > 1240) {
opened = false
}
"
x-on:click="
if (window.innerWidth <= 1240) {
opened = !opened
}
"
x-on:click.outside="
if (window.innerWidth <= 1240) {
opened = false
}
"
>
<a href="https://ieo-official.org/committees"
wire:key="header-block.main-menu-link-6ad2b01e91bf47e3d5683bb41b38d967"
data-header-block-main-menu-link
>
People
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--> </a>
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--></li>
<li wire:snapshot="{"data":{"link":[{"key":null,"icon":null,"name":"Useful materials","url":"https:\/\/ieo-official.org\/experience","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}],"children":null},"memo":{"id":"cXk763IOO2ERIBfDc7Xf","name":"header-block.main-menu.menu-link","path":"prepare","method":"GET","release":"a-a-a","children":[],"scripts":[],"assets":[],"errors":[],"locale":"en"},"checksum":"9ac003ef43520d669d6d94bb92c0169a63c05d1cc17bed072738af0b7045f3ea"}" wire:effects="[]" wire:id="cXk763IOO2ERIBfDc7Xf" class=""
x-data="{
'opened': false,
'active': false,
}"
x-bind:class="{
'opened': opened,
'active': active,
}"
x-on:mouseover="
if (window.innerWidth > 1240) {
opened = true
}
"
x-on:mouseover.away="
if (window.innerWidth > 1240) {
opened = false
}
"
x-on:click="
if (window.innerWidth <= 1240) {
opened = !opened
}
"
x-on:click.outside="
if (window.innerWidth <= 1240) {
opened = false
}
"
>
<a href="https://ieo-official.org/experience"
wire:key="header-block.main-menu-link-0e085056d1fd1347772e6b952212a6f9"
data-header-block-main-menu-link
>
Useful materials
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--> </a>
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--></li>
<li wire:snapshot="{"data":{"link":[{"key":null,"icon":null,"name":"Media","url":"https:\/\/ieo-official.org\/media","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}],"children":null},"memo":{"id":"ZpQC8Jyh2q4D8dWCGA7b","name":"header-block.main-menu.menu-link","path":"prepare","method":"GET","release":"a-a-a","children":[],"scripts":[],"assets":[],"errors":[],"locale":"en"},"checksum":"02e06db30e7cbb07346ce6311c70db54b458e5d743fa4d29dc11009fa1503bbf"}" wire:effects="[]" wire:id="ZpQC8Jyh2q4D8dWCGA7b" class=""
x-data="{
'opened': false,
'active': false,
}"
x-bind:class="{
'opened': opened,
'active': active,
}"
x-on:mouseover="
if (window.innerWidth > 1240) {
opened = true
}
"
x-on:mouseover.away="
if (window.innerWidth > 1240) {
opened = false
}
"
x-on:click="
if (window.innerWidth <= 1240) {
opened = !opened
}
"
x-on:click.outside="
if (window.innerWidth <= 1240) {
opened = false
}
"
>
<a href="https://ieo-official.org/media"
wire:key="header-block.main-menu-link-8a918e013d6048cc8adb88b00df04ec3"
data-header-block-main-menu-link
>
Media
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--> </a>
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--></li>
<li wire:snapshot="{"data":{"link":[{"key":null,"icon":null,"name":"Contacts","url":"https:\/\/ieo-official.org#footer","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}],"children":null},"memo":{"id":"LGniJtGcp4gn8jTmSsoI","name":"header-block.main-menu.menu-link","path":"prepare","method":"GET","release":"a-a-a","children":[],"scripts":[],"assets":[],"errors":[],"locale":"en"},"checksum":"e8edd2590b234bdb12188b21ff0a44647412288f42b318c72744cddaa3291795"}" wire:effects="[]" wire:id="LGniJtGcp4gn8jTmSsoI" class=""
x-data="{
'opened': false,
'active': false,
}"
x-bind:class="{
'opened': opened,
'active': active,
}"
x-on:mouseover="
if (window.innerWidth > 1240) {
opened = true
}
"
x-on:mouseover.away="
if (window.innerWidth > 1240) {
opened = false
}
"
x-on:click="
if (window.innerWidth <= 1240) {
opened = !opened
}
"
x-on:click.outside="
if (window.innerWidth <= 1240) {
opened = false
}
"
>
<a href="https://ieo-official.org#footer"
wire:key="header-block.main-menu-link-a124c60253d5850b515153d5c30fa698"
data-header-block-main-menu-link
>
Contacts
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--> </a>
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--></li>
<!--[if ENDBLOCK]><![endif]--> </ul>
<!--[if ENDBLOCK]><![endif]--></li>
<li wire:snapshot="{"data":{"link":[{"key":null,"icon":null,"name":"Competition","url":null,"link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}],"children":[[[{"key":null,"icon":null,"name":"Regulations","url":"https:\/\/ieo-official.org\/regulations","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}],[{"key":null,"icon":null,"name":"Structure","url":"https:\/\/ieo-official.org#structure","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}],[{"key":null,"icon":null,"name":"Syllabus","url":"https:\/\/ieo-official.org\/prepare#syllabus","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}],[{"key":null,"icon":null,"name":"How-to","url":"https:\/\/ieo-official.org#how-participate","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}],[{"key":null,"icon":null,"name":"Resources","url":"https:\/\/ieo-official.org\/prepare#tasks","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}],[{"key":null,"icon":null,"name":"Past IEOs","url":"https:\/\/ieo-official.org#ieos","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}],[{"key":null,"icon":null,"name":"OpenTrack","url":"https:\/\/ieo-official.org\/opentrack","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}]],{"s":"arr"}]},"memo":{"id":"FwJGGvuJnuRjsyytICoC","name":"header-block.main-menu.menu-link","path":"prepare","method":"GET","release":"a-a-a","children":{"header-block.main-menu-link-e7e2f999203c48bf34bb06061b8df32d":["li","lsrg3qvohVR1Rh2h63Z3"],"header-block.main-menu-link-f31e9802e3311342020fa15845b856ad":["li","F8BbJzW1n0WAznjdF563"],"header-block.main-menu-link-85528093ac933694db5745de2d4ac8eb":["li","Rfr3PxSPjRo6RPZaNlWA"],"header-block.main-menu-link-df9708683a9a88fda52130e142d355fe":["li","BTV6cybR5zHtrQN2AAxy"],"header-block.main-menu-link-9188974718d83bd94898dfdcd0c7457a":["li","PCVsZQSpRxlpXHrzNkA2"],"header-block.main-menu-link-dea6809e4e3e9430820ab0d41ebc09ba":["li","YKz17WJgL59xdaDwAtwm"],"header-block.main-menu-link-2faef0cf9d03bd4ea25cfd0da37cd38f":["li","i7e643c8kCJlU44x28xK"]},"scripts":[],"assets":[],"errors":[],"locale":"en"},"checksum":"f4f3010aad5b69c5f9dfd7f8c71907ea31686c201f15c49b62aded8341f4a1dd"}" wire:effects="[]" wire:id="FwJGGvuJnuRjsyytICoC" class="has-child"
x-data="{
'opened': false,
'active': false,
}"
x-bind:class="{
'opened': opened,
'active': active,
}"
x-on:mouseover="
if (window.innerWidth > 1240) {
opened = true
}
"
x-on:mouseover.away="
if (window.innerWidth > 1240) {
opened = false
}
"
x-on:click="
if (window.innerWidth <= 1240) {
opened = !opened
}
"
x-on:click.outside="
if (window.innerWidth <= 1240) {
opened = false
}
"
>
<a href="#"
wire:key="header-block.main-menu-link-30dbf0e25679177512cf3d475a34a8d7"
data-header-block-main-menu-link
>
Competition
<!--[if BLOCK]><![endif]--> <svg class="svg-icon svg-icon-arrow-down">
<use xlink:href='#icon-arrow-down'></use>
</svg>
<!--[if ENDBLOCK]><![endif]--> </a>
<!--[if BLOCK]><![endif]--> <ul>
<!--[if BLOCK]><![endif]-->
<li wire:snapshot="{"data":{"link":[{"key":null,"icon":null,"name":"Regulations","url":"https:\/\/ieo-official.org\/regulations","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}],"children":null},"memo":{"id":"lsrg3qvohVR1Rh2h63Z3","name":"header-block.main-menu.menu-link","path":"prepare","method":"GET","release":"a-a-a","children":[],"scripts":[],"assets":[],"errors":[],"locale":"en"},"checksum":"6e8f33c3f5fd3339ad358da729cb6ed02f8e902a82944ce8e7639e51cf133182"}" wire:effects="[]" wire:id="lsrg3qvohVR1Rh2h63Z3" class=""
x-data="{
'opened': false,
'active': false,
}"
x-bind:class="{
'opened': opened,
'active': active,
}"
x-on:mouseover="
if (window.innerWidth > 1240) {
opened = true
}
"
x-on:mouseover.away="
if (window.innerWidth > 1240) {
opened = false
}
"
x-on:click="
if (window.innerWidth <= 1240) {
opened = !opened
}
"
x-on:click.outside="
if (window.innerWidth <= 1240) {
opened = false
}
"
>
<a href="https://ieo-official.org/regulations"
wire:key="header-block.main-menu-link-0c1eb539eacc2009e9455e2f7c21b729"
data-header-block-main-menu-link
>
Regulations
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--> </a>
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--></li>
<li wire:snapshot="{"data":{"link":[{"key":null,"icon":null,"name":"Structure","url":"https:\/\/ieo-official.org#structure","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}],"children":null},"memo":{"id":"F8BbJzW1n0WAznjdF563","name":"header-block.main-menu.menu-link","path":"prepare","method":"GET","release":"a-a-a","children":[],"scripts":[],"assets":[],"errors":[],"locale":"en"},"checksum":"cee995253e858bd38e2d2d2a6ca6b056f321d28123d0401bb0f8a6f0a430252e"}" wire:effects="[]" wire:id="F8BbJzW1n0WAznjdF563" class=""
x-data="{
'opened': false,
'active': false,
}"
x-bind:class="{
'opened': opened,
'active': active,
}"
x-on:mouseover="
if (window.innerWidth > 1240) {
opened = true
}
"
x-on:mouseover.away="
if (window.innerWidth > 1240) {
opened = false
}
"
x-on:click="
if (window.innerWidth <= 1240) {
opened = !opened
}
"
x-on:click.outside="
if (window.innerWidth <= 1240) {
opened = false
}
"
>
<a href="https://ieo-official.org#structure"
wire:key="header-block.main-menu-link-f89eec69bc584b40a1e2ce9387d5b23a"
data-header-block-main-menu-link
>
Structure
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--> </a>
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--></li>
<li wire:snapshot="{"data":{"link":[{"key":null,"icon":null,"name":"Syllabus","url":"https:\/\/ieo-official.org\/prepare#syllabus","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}],"children":null},"memo":{"id":"Rfr3PxSPjRo6RPZaNlWA","name":"header-block.main-menu.menu-link","path":"prepare","method":"GET","release":"a-a-a","children":[],"scripts":[],"assets":[],"errors":[],"locale":"en"},"checksum":"0ce1169f4d21ffc79b42d18798b5b80fe87ce5487e82e9823771b9ffed985591"}" wire:effects="[]" wire:id="Rfr3PxSPjRo6RPZaNlWA" class=""
x-data="{
'opened': false,
'active': false,
}"
x-bind:class="{
'opened': opened,
'active': active,
}"
x-on:mouseover="
if (window.innerWidth > 1240) {
opened = true
}
"
x-on:mouseover.away="
if (window.innerWidth > 1240) {
opened = false
}
"
x-on:click="
if (window.innerWidth <= 1240) {
opened = !opened
}
"
x-on:click.outside="
if (window.innerWidth <= 1240) {
opened = false
}
"
>
<a href="https://ieo-official.org/prepare#syllabus"
wire:key="header-block.main-menu-link-4add72e8d98acb077202593c35bedb7c"
data-header-block-main-menu-link
>
Syllabus
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--> </a>
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--></li>
<li wire:snapshot="{"data":{"link":[{"key":null,"icon":null,"name":"How-to","url":"https:\/\/ieo-official.org#how-participate","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}],"children":null},"memo":{"id":"BTV6cybR5zHtrQN2AAxy","name":"header-block.main-menu.menu-link","path":"prepare","method":"GET","release":"a-a-a","children":[],"scripts":[],"assets":[],"errors":[],"locale":"en"},"checksum":"e8af8f8fce068bc423160f9689b8818fc8f0b36adc272b4dac1476b601d02a3a"}" wire:effects="[]" wire:id="BTV6cybR5zHtrQN2AAxy" class=""
x-data="{
'opened': false,
'active': false,
}"
x-bind:class="{
'opened': opened,
'active': active,
}"
x-on:mouseover="
if (window.innerWidth > 1240) {
opened = true
}
"
x-on:mouseover.away="
if (window.innerWidth > 1240) {
opened = false
}
"
x-on:click="
if (window.innerWidth <= 1240) {
opened = !opened
}
"
x-on:click.outside="
if (window.innerWidth <= 1240) {
opened = false
}
"
>
<a href="https://ieo-official.org#how-participate"
wire:key="header-block.main-menu-link-145a9e12fe5fbffd5bf62fe8cbc63b9d"
data-header-block-main-menu-link
>
How-to
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--> </a>
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--></li>
<li wire:snapshot="{"data":{"link":[{"key":null,"icon":null,"name":"Resources","url":"https:\/\/ieo-official.org\/prepare#tasks","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}],"children":null},"memo":{"id":"PCVsZQSpRxlpXHrzNkA2","name":"header-block.main-menu.menu-link","path":"prepare","method":"GET","release":"a-a-a","children":[],"scripts":[],"assets":[],"errors":[],"locale":"en"},"checksum":"85c83e90ac6c7d6e365cd014285055b421e7f72f4319248bfb3e15defc9359ae"}" wire:effects="[]" wire:id="PCVsZQSpRxlpXHrzNkA2" class=""
x-data="{
'opened': false,
'active': false,
}"
x-bind:class="{
'opened': opened,
'active': active,
}"
x-on:mouseover="
if (window.innerWidth > 1240) {
opened = true
}
"
x-on:mouseover.away="
if (window.innerWidth > 1240) {
opened = false
}
"
x-on:click="
if (window.innerWidth <= 1240) {
opened = !opened
}
"
x-on:click.outside="
if (window.innerWidth <= 1240) {
opened = false
}
"
>
<a href="https://ieo-official.org/prepare#tasks"
wire:key="header-block.main-menu-link-65b5a6a44b2fc9141fc8dadc2b88b2a0"
data-header-block-main-menu-link
>
Resources
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--> </a>
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--></li>
<li wire:snapshot="{"data":{"link":[{"key":null,"icon":null,"name":"Past IEOs","url":"https:\/\/ieo-official.org#ieos","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}],"children":null},"memo":{"id":"YKz17WJgL59xdaDwAtwm","name":"header-block.main-menu.menu-link","path":"prepare","method":"GET","release":"a-a-a","children":[],"scripts":[],"assets":[],"errors":[],"locale":"en"},"checksum":"ad489cf5b6ca8b1fbd1acd8dc9c7d3a05b94b6d619c0789553942560a38acb6b"}" wire:effects="[]" wire:id="YKz17WJgL59xdaDwAtwm" class=""
x-data="{
'opened': false,
'active': false,
}"
x-bind:class="{
'opened': opened,
'active': active,
}"
x-on:mouseover="
if (window.innerWidth > 1240) {
opened = true
}
"
x-on:mouseover.away="
if (window.innerWidth > 1240) {
opened = false
}
"
x-on:click="
if (window.innerWidth <= 1240) {
opened = !opened
}
"
x-on:click.outside="
if (window.innerWidth <= 1240) {
opened = false
}
"
>
<a href="https://ieo-official.org#ieos"
wire:key="header-block.main-menu-link-e111945ff7f9afd6cff418bd67bbb4b0"
data-header-block-main-menu-link
>
Past IEOs
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--> </a>
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--></li>
<li wire:snapshot="{"data":{"link":[{"key":null,"icon":null,"name":"OpenTrack","url":"https:\/\/ieo-official.org\/opentrack","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}],"children":null},"memo":{"id":"i7e643c8kCJlU44x28xK","name":"header-block.main-menu.menu-link","path":"prepare","method":"GET","release":"a-a-a","children":[],"scripts":[],"assets":[],"errors":[],"locale":"en"},"checksum":"092a4ef73db7878c0c04d2b69eb5d4543943fc367db370a890dee6fe2cbe28f8"}" wire:effects="[]" wire:id="i7e643c8kCJlU44x28xK" class=""
x-data="{
'opened': false,
'active': false,
}"
x-bind:class="{
'opened': opened,
'active': active,
}"
x-on:mouseover="
if (window.innerWidth > 1240) {
opened = true
}
"
x-on:mouseover.away="
if (window.innerWidth > 1240) {
opened = false
}
"
x-on:click="
if (window.innerWidth <= 1240) {
opened = !opened
}
"
x-on:click.outside="
if (window.innerWidth <= 1240) {
opened = false
}
"
>
<a href="https://ieo-official.org/opentrack"
wire:key="header-block.main-menu-link-1880576be47bdb411963d05e344eb19e"
data-header-block-main-menu-link
>
OpenTrack
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--> </a>
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--></li>
<!--[if ENDBLOCK]><![endif]--> </ul>
<!--[if ENDBLOCK]><![endif]--></li>
<li wire:snapshot="{"data":{"link":[{"key":null,"icon":null,"name":"Documents","url":"https:\/\/ieo-official.org#documents","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}],"children":null},"memo":{"id":"uoh0CQjdwvMJAckMmlfs","name":"header-block.main-menu.menu-link","path":"prepare","method":"GET","release":"a-a-a","children":[],"scripts":[],"assets":[],"errors":[],"locale":"en"},"checksum":"4a07e595525530f811291732bd3bdca1af60cdfac36d1a266eec39e54ca1b3ce"}" wire:effects="[]" wire:id="uoh0CQjdwvMJAckMmlfs" class=""
x-data="{
'opened': false,
'active': false,
}"
x-bind:class="{
'opened': opened,
'active': active,
}"
x-on:mouseover="
if (window.innerWidth > 1240) {
opened = true
}
"
x-on:mouseover.away="
if (window.innerWidth > 1240) {
opened = false
}
"
x-on:click="
if (window.innerWidth <= 1240) {
opened = !opened
}
"
x-on:click.outside="
if (window.innerWidth <= 1240) {
opened = false
}
"
>
<a href="https://ieo-official.org#documents"
wire:key="header-block.main-menu-link-474734fba3047a5334a45c0731eebee5"
data-header-block-main-menu-link
>
Documents
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--> </a>
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--></li>
<li wire:snapshot="{"data":{"link":[{"key":null,"icon":null,"name":"Countries","url":"https:\/\/ieo-official.org\/countries","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}],"children":[[[{"key":null,"icon":null,"name":"3YA Partners","url":"https:\/\/ieo-official.org#countries","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}],[{"key":null,"icon":null,"name":"All countries","url":"https:\/\/ieo-official.org\/countries","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}],[{"key":null,"icon":null,"name":"Bring IEO to your country","url":"https:\/\/ieo-official.org\/national","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}]],{"s":"arr"}]},"memo":{"id":"wiFQ1rQvdJjwcUS2dhYL","name":"header-block.main-menu.menu-link","path":"prepare","method":"GET","release":"a-a-a","children":{"header-block.main-menu-link-a22fbc27e661de15770e2ad77597a14c":["li","7bA3gBM1aqh2y6t5fxTb"],"header-block.main-menu-link-de89599edbe0a796c3b29ef398425170":["li","0qr4X6L8Yypwcmwy77YF"],"header-block.main-menu-link-b80fd53a217a6b2f3804988497e2d104":["li","kd5ut9zsUMumu7q6VKHK"]},"scripts":[],"assets":[],"errors":[],"locale":"en"},"checksum":"39dac98eb78cb889e1892da42d887879b48548ac0c974eeb980bab2552f7ac00"}" wire:effects="[]" wire:id="wiFQ1rQvdJjwcUS2dhYL" class="has-child"
x-data="{
'opened': false,
'active': false,
}"
x-bind:class="{
'opened': opened,
'active': active,
}"
x-on:mouseover="
if (window.innerWidth > 1240) {
opened = true
}
"
x-on:mouseover.away="
if (window.innerWidth > 1240) {
opened = false
}
"
x-on:click="
if (window.innerWidth <= 1240) {
opened = !opened
}
"
x-on:click.outside="
if (window.innerWidth <= 1240) {
opened = false
}
"
>
<a href="https://ieo-official.org/countries"
wire:key="header-block.main-menu-link-f32dcdda5bf1cbf5070839917aa2670f"
data-header-block-main-menu-link
>
Countries
<!--[if BLOCK]><![endif]--> <svg class="svg-icon svg-icon-arrow-down">
<use xlink:href='#icon-arrow-down'></use>
</svg>
<!--[if ENDBLOCK]><![endif]--> </a>
<!--[if BLOCK]><![endif]--> <ul>
<!--[if BLOCK]><![endif]-->
<li wire:snapshot="{"data":{"link":[{"key":null,"icon":null,"name":"3YA Partners","url":"https:\/\/ieo-official.org#countries","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}],"children":null},"memo":{"id":"7bA3gBM1aqh2y6t5fxTb","name":"header-block.main-menu.menu-link","path":"prepare","method":"GET","release":"a-a-a","children":[],"scripts":[],"assets":[],"errors":[],"locale":"en"},"checksum":"3cff51b3ad2bb6279fe6b06b28264ede5397ee022edb34c8fe879fb11f42773b"}" wire:effects="[]" wire:id="7bA3gBM1aqh2y6t5fxTb" class=""
x-data="{
'opened': false,
'active': false,
}"
x-bind:class="{
'opened': opened,
'active': active,
}"
x-on:mouseover="
if (window.innerWidth > 1240) {
opened = true
}
"
x-on:mouseover.away="
if (window.innerWidth > 1240) {
opened = false
}
"
x-on:click="
if (window.innerWidth <= 1240) {
opened = !opened
}
"
x-on:click.outside="
if (window.innerWidth <= 1240) {
opened = false
}
"
>
<a href="https://ieo-official.org#countries"
wire:key="header-block.main-menu-link-161183ef3c4859460bfcb2a75424982f"
data-header-block-main-menu-link
>
3YA Partners
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--> </a>
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--></li>
<li wire:snapshot="{"data":{"link":[{"key":null,"icon":null,"name":"All countries","url":"https:\/\/ieo-official.org\/countries","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}],"children":null},"memo":{"id":"0qr4X6L8Yypwcmwy77YF","name":"header-block.main-menu.menu-link","path":"prepare","method":"GET","release":"a-a-a","children":[],"scripts":[],"assets":[],"errors":[],"locale":"en"},"checksum":"763801893c15c8be213362f6d75db1a27729986e61051994f2d772baf79557af"}" wire:effects="[]" wire:id="0qr4X6L8Yypwcmwy77YF" class=""
x-data="{
'opened': false,
'active': false,
}"
x-bind:class="{
'opened': opened,
'active': active,
}"
x-on:mouseover="
if (window.innerWidth > 1240) {
opened = true
}
"
x-on:mouseover.away="
if (window.innerWidth > 1240) {
opened = false
}
"
x-on:click="
if (window.innerWidth <= 1240) {
opened = !opened
}
"
x-on:click.outside="
if (window.innerWidth <= 1240) {
opened = false
}
"
>
<a href="https://ieo-official.org/countries"
wire:key="header-block.main-menu-link-fe12b3034c3f40d35951293157c4abdf"
data-header-block-main-menu-link
>
All countries
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--> </a>
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--></li>
<li wire:snapshot="{"data":{"link":[{"key":null,"icon":null,"name":"Bring IEO to your country","url":"https:\/\/ieo-official.org\/national","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}],"children":null},"memo":{"id":"kd5ut9zsUMumu7q6VKHK","name":"header-block.main-menu.menu-link","path":"prepare","method":"GET","release":"a-a-a","children":[],"scripts":[],"assets":[],"errors":[],"locale":"en"},"checksum":"b7a22efd773d1efc578de5d18f600450d6d736ebc88a3ae40613e7cf23033764"}" wire:effects="[]" wire:id="kd5ut9zsUMumu7q6VKHK" class=""
x-data="{
'opened': false,
'active': false,
}"
x-bind:class="{
'opened': opened,
'active': active,
}"
x-on:mouseover="
if (window.innerWidth > 1240) {
opened = true
}
"
x-on:mouseover.away="
if (window.innerWidth > 1240) {
opened = false
}
"
x-on:click="
if (window.innerWidth <= 1240) {
opened = !opened
}
"
x-on:click.outside="
if (window.innerWidth <= 1240) {
opened = false
}
"
>
<a href="https://ieo-official.org/national"
wire:key="header-block.main-menu-link-cc3f6dc67f4c0c9b9df9cc28d847eeb4"
data-header-block-main-menu-link
>
Bring IEO to your country
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--> </a>
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--></li>
<!--[if ENDBLOCK]><![endif]--> </ul>
<!--[if ENDBLOCK]><![endif]--></li>
<li wire:snapshot="{"data":{"link":[{"key":null,"icon":null,"name":"Results","url":"https:\/\/ieo-official.org\/results","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}],"children":[[[{"key":null,"icon":null,"name":"Overall results","url":"https:\/\/ieo-official.org\/results-overall","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}],[{"key":null,"icon":null,"name":"Annual results","url":"https:\/\/ieo-official.org\/results","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}],[{"key":null,"icon":null,"name":"Certificates","url":"https:\/\/ieo-official.org\/certificate","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}]],{"s":"arr"}]},"memo":{"id":"5KaP2t0AF27tu9FXDmu2","name":"header-block.main-menu.menu-link","path":"prepare","method":"GET","release":"a-a-a","children":{"header-block.main-menu-link-abef5cad301bfa598d9c1bd91868fc71":["li","a6SYGGWf0HFKryN7dfxQ"],"header-block.main-menu-link-55cc9ba4e51765a43ad25982acf1c89c":["li","wz54uKnBkSDfZ5lGQE3M"],"header-block.main-menu-link-18ad96674c73bdf0f7da89a0b8a008f7":["li","VcwBKhaETYOHrzxG3rwP"]},"scripts":[],"assets":[],"errors":[],"locale":"en"},"checksum":"f06ad2138e667318248c859070a94e162cac4354d113d29aef220409b9934655"}" wire:effects="[]" wire:id="5KaP2t0AF27tu9FXDmu2" class="has-child"
x-data="{
'opened': false,
'active': false,
}"
x-bind:class="{
'opened': opened,
'active': active,
}"
x-on:mouseover="
if (window.innerWidth > 1240) {
opened = true
}
"
x-on:mouseover.away="
if (window.innerWidth > 1240) {
opened = false
}
"
x-on:click="
if (window.innerWidth <= 1240) {
opened = !opened
}
"
x-on:click.outside="
if (window.innerWidth <= 1240) {
opened = false
}
"
>
<a href="https://ieo-official.org/results"
wire:key="header-block.main-menu-link-1f607a4486be2b76c3b02b7022481b80"
data-header-block-main-menu-link
>
Results
<!--[if BLOCK]><![endif]--> <svg class="svg-icon svg-icon-arrow-down">
<use xlink:href='#icon-arrow-down'></use>
</svg>
<!--[if ENDBLOCK]><![endif]--> </a>
<!--[if BLOCK]><![endif]--> <ul>
<!--[if BLOCK]><![endif]-->
<li wire:snapshot="{"data":{"link":[{"key":null,"icon":null,"name":"Overall results","url":"https:\/\/ieo-official.org\/results-overall","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}],"children":null},"memo":{"id":"a6SYGGWf0HFKryN7dfxQ","name":"header-block.main-menu.menu-link","path":"prepare","method":"GET","release":"a-a-a","children":[],"scripts":[],"assets":[],"errors":[],"locale":"en"},"checksum":"c4c5e883973dd7d12d437b54016e2d28bbcb17044946cc694f2ac302adf9a5ac"}" wire:effects="[]" wire:id="a6SYGGWf0HFKryN7dfxQ" class=""
x-data="{
'opened': false,
'active': false,
}"
x-bind:class="{
'opened': opened,
'active': active,
}"
x-on:mouseover="
if (window.innerWidth > 1240) {
opened = true
}
"
x-on:mouseover.away="
if (window.innerWidth > 1240) {
opened = false
}
"
x-on:click="
if (window.innerWidth <= 1240) {
opened = !opened
}
"
x-on:click.outside="
if (window.innerWidth <= 1240) {
opened = false
}
"
>
<a href="https://ieo-official.org/results-overall"
wire:key="header-block.main-menu-link-013166afbf256e15e73f52c1d201997c"
data-header-block-main-menu-link
>
Overall results
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--> </a>
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--></li>
<li wire:snapshot="{"data":{"link":[{"key":null,"icon":null,"name":"Annual results","url":"https:\/\/ieo-official.org\/results","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}],"children":null},"memo":{"id":"wz54uKnBkSDfZ5lGQE3M","name":"header-block.main-menu.menu-link","path":"prepare","method":"GET","release":"a-a-a","children":[],"scripts":[],"assets":[],"errors":[],"locale":"en"},"checksum":"965166eda58a3f0c1de287911dd7b17586e7f342c97eb5e573b2cced3d4c0b3d"}" wire:effects="[]" wire:id="wz54uKnBkSDfZ5lGQE3M" class=""
x-data="{
'opened': false,
'active': false,
}"
x-bind:class="{
'opened': opened,
'active': active,
}"
x-on:mouseover="
if (window.innerWidth > 1240) {
opened = true
}
"
x-on:mouseover.away="
if (window.innerWidth > 1240) {
opened = false
}
"
x-on:click="
if (window.innerWidth <= 1240) {
opened = !opened
}
"
x-on:click.outside="
if (window.innerWidth <= 1240) {
opened = false
}
"
>
<a href="https://ieo-official.org/results"
wire:key="header-block.main-menu-link-2282cf8556766dcdb2b6ebcc56e31fbd"
data-header-block-main-menu-link
>
Annual results
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--> </a>
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--></li>
<li wire:snapshot="{"data":{"link":[{"key":null,"icon":null,"name":"Certificates","url":"https:\/\/ieo-official.org\/certificate","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}],"children":null},"memo":{"id":"VcwBKhaETYOHrzxG3rwP","name":"header-block.main-menu.menu-link","path":"prepare","method":"GET","release":"a-a-a","children":[],"scripts":[],"assets":[],"errors":[],"locale":"en"},"checksum":"55d407163c852a31579d4154308fd5638987499e383c54626d3b95f294b532e9"}" wire:effects="[]" wire:id="VcwBKhaETYOHrzxG3rwP" class=""
x-data="{
'opened': false,
'active': false,
}"
x-bind:class="{
'opened': opened,
'active': active,
}"
x-on:mouseover="
if (window.innerWidth > 1240) {
opened = true
}
"
x-on:mouseover.away="
if (window.innerWidth > 1240) {
opened = false
}
"
x-on:click="
if (window.innerWidth <= 1240) {
opened = !opened
}
"
x-on:click.outside="
if (window.innerWidth <= 1240) {
opened = false
}
"
>
<a href="https://ieo-official.org/certificate"
wire:key="header-block.main-menu-link-3209a049281b315185066fae98945247"
data-header-block-main-menu-link
>
Certificates
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--> </a>
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--></li>
<!--[if ENDBLOCK]><![endif]--> </ul>
<!--[if ENDBLOCK]><![endif]--></li>
<li wire:snapshot="{"data":{"link":[{"key":null,"icon":null,"name":"IEOx","url":"https:\/\/ieo-official.org#ieox","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}],"children":[[[{"key":null,"icon":null,"name":"About","url":"https:\/\/ieox.ieo-official.org","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}],[{"key":null,"icon":null,"name":"EssayChallenge","url":"https:\/\/ieo-official.org\/essaychallenge","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}],[{"key":null,"icon":null,"name":"WinterChallenge","url":"https:\/\/ieo-official.org\/winterchallenge","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}]],{"s":"arr"}]},"memo":{"id":"hvkDY5nKxcQSmFKVuCOz","name":"header-block.main-menu.menu-link","path":"prepare","method":"GET","release":"a-a-a","children":{"header-block.main-menu-link-a9030e7b78180437a8270d376d2baee7":["li","1f7SmGZEuQTFUT1scx8G"],"header-block.main-menu-link-d7a79809a40b2c4354b294d4fc81efac":["li","wBx7mUWSlq8Ctn8PINW1"],"header-block.main-menu-link-1ef022cac56e9eaf2a9a6512d4664063":["li","XXh3Jc6mgt1ha1SZwaTs"]},"scripts":[],"assets":[],"errors":[],"locale":"en"},"checksum":"70d7aa812245aff1d5e9f5c03ce65c28343424aff0714e5167465f8b5a63a89e"}" wire:effects="[]" wire:id="hvkDY5nKxcQSmFKVuCOz" class="has-child"
x-data="{
'opened': false,
'active': false,
}"
x-bind:class="{
'opened': opened,
'active': active,
}"
x-on:mouseover="
if (window.innerWidth > 1240) {
opened = true
}
"
x-on:mouseover.away="
if (window.innerWidth > 1240) {
opened = false
}
"
x-on:click="
if (window.innerWidth <= 1240) {
opened = !opened
}
"
x-on:click.outside="
if (window.innerWidth <= 1240) {
opened = false
}
"
>
<a href="https://ieo-official.org#ieox"
wire:key="header-block.main-menu-link-5a5b6e5e622187fc7524d7bbf3d75536"
data-header-block-main-menu-link
>
IEOx
<!--[if BLOCK]><![endif]--> <svg class="svg-icon svg-icon-arrow-down">
<use xlink:href='#icon-arrow-down'></use>
</svg>
<!--[if ENDBLOCK]><![endif]--> </a>
<!--[if BLOCK]><![endif]--> <ul>
<!--[if BLOCK]><![endif]-->
<li wire:snapshot="{"data":{"link":[{"key":null,"icon":null,"name":"About","url":"https:\/\/ieox.ieo-official.org","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}],"children":null},"memo":{"id":"1f7SmGZEuQTFUT1scx8G","name":"header-block.main-menu.menu-link","path":"prepare","method":"GET","release":"a-a-a","children":[],"scripts":[],"assets":[],"errors":[],"locale":"en"},"checksum":"9404176a4e7bed45592ca65bd798ced22e53821f0805dfc6e7e665abef33eb76"}" wire:effects="[]" wire:id="1f7SmGZEuQTFUT1scx8G" class=""
x-data="{
'opened': false,
'active': false,
}"
x-bind:class="{
'opened': opened,
'active': active,
}"
x-on:mouseover="
if (window.innerWidth > 1240) {
opened = true
}
"
x-on:mouseover.away="
if (window.innerWidth > 1240) {
opened = false
}
"
x-on:click="
if (window.innerWidth <= 1240) {
opened = !opened
}
"
x-on:click.outside="
if (window.innerWidth <= 1240) {
opened = false
}
"
>
<a href="https://ieox.ieo-official.org"
wire:key="header-block.main-menu-link-e63e0f90d5fdb534175708acd2051c38"
data-header-block-main-menu-link
>
About
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--> </a>
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--></li>
<li wire:snapshot="{"data":{"link":[{"key":null,"icon":null,"name":"EssayChallenge","url":"https:\/\/ieo-official.org\/essaychallenge","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}],"children":null},"memo":{"id":"wBx7mUWSlq8Ctn8PINW1","name":"header-block.main-menu.menu-link","path":"prepare","method":"GET","release":"a-a-a","children":[],"scripts":[],"assets":[],"errors":[],"locale":"en"},"checksum":"74cc5c9dab8711f4bce2897b928ec53e6570046076841300f6a31610001d4558"}" wire:effects="[]" wire:id="wBx7mUWSlq8Ctn8PINW1" class=""
x-data="{
'opened': false,
'active': false,
}"
x-bind:class="{
'opened': opened,
'active': active,
}"
x-on:mouseover="
if (window.innerWidth > 1240) {
opened = true
}
"
x-on:mouseover.away="
if (window.innerWidth > 1240) {
opened = false
}
"
x-on:click="
if (window.innerWidth <= 1240) {
opened = !opened
}
"
x-on:click.outside="
if (window.innerWidth <= 1240) {
opened = false
}
"
>
<a href="https://ieo-official.org/essaychallenge"
wire:key="header-block.main-menu-link-9b47afe415bdabe333cec0facc14518e"
data-header-block-main-menu-link
>
EssayChallenge
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--> </a>
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--></li>
<li wire:snapshot="{"data":{"link":[{"key":null,"icon":null,"name":"WinterChallenge","url":"https:\/\/ieo-official.org\/winterchallenge","link_text":null,"class":null,"text":null,"children":null,"active":false},{"class":"App\\Classes\\Item","s":"wrbl"}],"children":null},"memo":{"id":"XXh3Jc6mgt1ha1SZwaTs","name":"header-block.main-menu.menu-link","path":"prepare","method":"GET","release":"a-a-a","children":[],"scripts":[],"assets":[],"errors":[],"locale":"en"},"checksum":"a6a1248c504aa5265e7aad025774d6362020b74e0aef1949d54428df628ce0d2"}" wire:effects="[]" wire:id="XXh3Jc6mgt1ha1SZwaTs" class=""
x-data="{
'opened': false,
'active': false,
}"
x-bind:class="{
'opened': opened,
'active': active,
}"
x-on:mouseover="
if (window.innerWidth > 1240) {
opened = true
}
"
x-on:mouseover.away="
if (window.innerWidth > 1240) {
opened = false
}
"
x-on:click="
if (window.innerWidth <= 1240) {
opened = !opened
}
"
x-on:click.outside="
if (window.innerWidth <= 1240) {
opened = false
}
"
>
<a href="https://ieo-official.org/winterchallenge"
wire:key="header-block.main-menu-link-c0b240ccd34575a1e9bbd7912c48298f"
data-header-block-main-menu-link
>
WinterChallenge
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--> </a>
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--></li>
<!--[if ENDBLOCK]><![endif]--> </ul>
<!--[if ENDBLOCK]><![endif]--></li>
</ul>
</div>
<div wire:snapshot="{"data":[],"memo":{"id":"piz2G648lQwNGdRHzekJ","name":"header-block.secondary-menu","path":"prepare","method":"GET","release":"a-a-a","children":[],"scripts":[],"assets":[],"errors":[],"locale":"en"},"checksum":"4262f5648b8902a9d3692f29651eb3a7377697dbb5d0fba7c1509bc38f3fad3a"}" wire:effects="[]" wire:id="piz2G648lQwNGdRHzekJ" class="secondary-menu">
<ul>
<li>
<a href="https://ieo-official.org/sponsors">For sponsors</a>
</li>
<li>
<a href="https://ieo-official.org/national">For organizers</a>
</li>
<li>
<a href="https://files.ieo-official.org/IEO_executive_summary.pdf">Executive Summary</a>
</li>
</ul>
</div>
</div>
</div>
<!--[if ENDBLOCK]><![endif]-->
</div>
</div>
<div wire:snapshot="{"data":{"code":"prepare"},"memo":{"id":"ucR9y0c1mIYLvtJSUvTa","name":"promo-block","path":"prepare","method":"GET","release":"a-a-a","children":[],"scripts":[],"assets":[],"errors":[],"locale":"en"},"checksum":"730ba43e4d740145ed5c5c6c583244c6cf9ed412fa4e89abc37a4b7de57db778"}" wire:effects="[]" wire:id="ucR9y0c1mIYLvtJSUvTa" class="promo-block block blue">
<div class="inner container">
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]-->
<div class="mb-72">
<!--[if BLOCK]><![endif]--> <div class="mb-32">
<div class="name pre-wrap">Prepare for the IEO</div>
</div>
<!--[if ENDBLOCK]><![endif]-->
<!--[if BLOCK]><![endif]--> <div class="text wysiwyg">Information on how to prepare for the competition: syllabus, tasks of previous years and useful webinars from the IEO experts.</div>
<!--[if ENDBLOCK]><![endif]--> </div>
<!--[if BLOCK]><![endif]--> <div class="links flex gap-16">
<!--[if BLOCK]><![endif]--> <a class="button white"
href="https://files.ieo-official.org/IEO_Syllabus.pdf"
wire:key="link.0"
>Download Syllabus</a>
<a class="button orange"
href="https://ieo-official.org/prepare#syllabus"
wire:key="link.1"
>Learn more</a>
<!--[if ENDBLOCK]><![endif]--> </div>
<!--[if ENDBLOCK]><![endif]--> </div>
<!--[if BLOCK]><![endif]--> <div class="bg">
<img src="https://ieo-official.org/thumb/promo/promo/image/215ab2cb00a925de6af20ad644b934a98dddf214d7fb8b50ce2caad85383.jpg" alt="">
</div>
<!--[if ENDBLOCK]><![endif]-->
</div>
<div id="content" class=" ">
<div id="center">
<div wire:snapshot="{"data":[],"memo":{"id":"MpC0i6d7zEz6mrS9oa7J","name":"prepare-page","path":"prepare","method":"GET","release":"a-a-a","children":{"lw-3788734858-0":["div","ucR9y0c1mIYLvtJSUvTa"],"lw-3788734858-1":["div","s6Fq6mSj0zT69bdpBSAf"],"lw-3788734858-2":["div","i9xyxwYDpNbBbc1dypha"]},"scripts":[],"assets":[],"errors":[],"locale":"en"},"checksum":"df5df2cfe43405897ede54dd7c79d70b816735353106e1daebd10ee0afca6d6f"}" wire:effects="[]" wire:id="MpC0i6d7zEz6mrS9oa7J"></div>
</div>
</div>
<div wire:snapshot="{"data":[],"memo":{"id":"s6Fq6mSj0zT69bdpBSAf","name":"syllabus-block","path":"prepare","method":"GET","release":"a-a-a","children":{"lw-1633917668-0":["span","at0MiUH73MGrjVv5SCcB"],"lw-1633917668-1":["span","J0a1BClPCohp4c3PZ1XE"]},"scripts":[],"assets":[],"errors":[],"locale":"en"},"checksum":"424ee11746c7eb8383613e63bafa922c824b90b9556014288b5890f14c4252ca"}" wire:effects="[]" wire:id="s6Fq6mSj0zT69bdpBSAf" class="syllabus-block block">
<div class="anchor" id="syllabus"></div>
<div class="container">
<div class="block-header">
<div class="block-title">
<span wire:snapshot="{"data":{"code":"syllabus-block-title","default":"Syllabus"},"memo":{"id":"at0MiUH73MGrjVv5SCcB","name":"editable","path":"prepare","method":"GET","release":"a-a-a","children":[],"scripts":[],"assets":[],"errors":[],"locale":"en"},"checksum":"ad201dc2093943167c5293e6ecb60e83415f33ab9301d18066c662e25fb87e8f"}" wire:effects="{"listeners":["editable.save.syllabus-block-title"]}" wire:id="at0MiUH73MGrjVv5SCcB">
<!--[if BLOCK]><![endif]--> <span>Syllabus</span>
<!--[if ENDBLOCK]><![endif]--></span>
</div>
<div class="block-text">
<span wire:snapshot="{"data":{"code":"syllabus-block-text","default":"\n Essential Information about the parts of the competition and the rating system.<br>\n This version of the Syllabus was approved by the International Board on 28\/12\/2024.\n "},"memo":{"id":"J0a1BClPCohp4c3PZ1XE","name":"editable","path":"prepare","method":"GET","release":"a-a-a","children":[],"scripts":[],"assets":[],"errors":[],"locale":"en"},"checksum":"d4eb0a0bd88efa26374aee6721bea96fecdd24820d379dcd2fcb6d03bf0acec2"}" wire:effects="{"listeners":["editable.save.syllabus-block-text"]}" wire:id="J0a1BClPCohp4c3PZ1XE">
<!--[if BLOCK]><![endif]--> <span><p>Essential Information about the parts of the competition and the rating system.<br><i>This version of the Syllabus was approved by the International Board on 31/12/2025.</i></p></span>
<!--[if ENDBLOCK]><![endif]--></span>
</div>
</div>
<div class="items">
<!--[if BLOCK]><![endif]--> <div class="column">
<!--[if BLOCK]><![endif]-->
<div class="item" wire:key="item.1">
<div class="header"
wire:key="item.1.header"
data-syllabus-block-item-header
>
<div class="name">
<span>General</span>
</div>
<div class="toggle">
<svg class="svg-icon svg-icon-plus-thin">
<use xlink:href='#icon-plus-thin'></use>
</svg>
</div>
</div>
<div class="text wysiwyg"><p><strong>1.1. </strong>National education systems and curricula vary in terms of structure and content, but the tasks of the IEO are composed in a way that facilitates equal competition. The tasks are not aimed primarily at testing the knowledge of theory. A significant share of the tasks is practical-oriented, test analytical skills and curiosity. The IEO tasks are created considering that its contestants are predominantly students of (senior) high school, or level 3 according to UNESCO International Standard Classification of Education (ISCED 2011). Yet, provided that the IEO is a worldwide selective competition for national teams, some tasks on the topics that are outside the scope of a traditional high school curriculum may appear.<br><br><strong>1.2. </strong>The <em>Economics and Finance</em> part of the competition is individual. The competition in <em>Business Case</em> is a team competition.<br><br><strong>1.3.</strong> The maximum final points for the parts of the competition are: </p><ul><li>150 for the Economics and Finance part, </li><li>50 for the Business Case part.</li></ul><p><strong>1.4. </strong>In every part of the competition, the result is first computed in raw points. Raw points are then normalized to get the final points according to the following procedure.<br><br>Let Gi be the raw score of the contestant (or team in the Business Case part) i in the part of the Olympiad, A — the average of all raw scores, σ — standard deviation of all raw scores. Then we define Z-score of the contestant i as:<br><br><em>Zi =(Gi − A)/ σ.</em><br><br>The final result of the contestant (team) i is then calculated as follows:<br><br><em>Fi = M/2 × (1 + Zi/2).</em><br><br>Where M is the maximum possible result of this part (in final points) specified in <strong>1.3</strong>.<br><br>If, after this calculation, Fi < 0, then the contestant’s (team’s) final score is set equal to 0.<br><br>If some scores change in the process of moderation, Z-scores and final scores are recalculated.<br><br><strong>1.5. </strong>The total <strong>individual result</strong> of a contestant is calculated as a sum of Economics and Finance final score and the contestant’s team Business Case final score. Ties are broken by taking the score from the Economics and Finance part.<br><br><strong>1.6. </strong>The total <strong>team result</strong> of a team is calculated as a sum of:</p><ul><li>The average final score of the team members in the Economics and Finance part divided by 1.5;</li><li>The team score in the Business Case part.</li></ul><p>Ties are broken by taking the team score from the Business Case part.<br><br></p></div>
</div>
<div class="item" wire:key="item.2">
<div class="header"
wire:key="item.2.header"
data-syllabus-block-item-header
>
<div class="name">
<span>Economics and Finance</span>
</div>
<div class="toggle">
<svg class="svg-icon svg-icon-plus-thin">
<use xlink:href='#icon-plus-thin'></use>
</svg>
</div>
</div>
<div class="text wysiwyg"><p><strong>2.1. </strong>The tasks in Economics and Finance should test contestants' understanding of basic economic and financial (including financial literacy) concepts and models, ability to apply them, their curiosity about the fields, and analytical skills.<br><br><strong>2.2. </strong>Theoretical models will often be applied to modern real-world settings such as platform markets, digital payments, AI-driven productivity, climate transition, and supply-chain shocks, while remaining solvable with the knowledge of topics listed below. Questions may require interpreting empirical graphs/tables and reasoning from evidence (correlation vs plausible causal mechanisms) at an intuitive level.<br><br><strong>2.3.</strong> The Economics topics discussed in the questions are the following:<br>— Economics principles and an economist’s worldview<br>— Microeconomics:</p><ul><li>Competitive markets (demand and supply, elasticities, equilibrium)</li><li>Consumer’s choice</li><li>Firm’s behavior</li><li>Non-competitive markets </li></ul><p> monopoly, oligopoly, monopolistic competition<br>digital platforms & network effects<br>pricing in the digital economy (freemium, bundling, personalized pricing, etc.)<br><br></p><ul><li>Government interventions in competitive and non-competitive markets</li><li>Market failures (externalities, public goods, asymmetric information)</li><li>Labor market</li><li>Game theory: Nash equilibrium, cooperation and coordination problems, commitments, repeated games</li><li>Innovations</li></ul><p>— Macroeconomics:</p><ul><li>Macroeconomic data: measuring income, inflation and unemployment</li><li>Technology and long-run growth</li><li>Labor market</li><li>AD-AS model</li><li>Money and the role of banks</li><li>Monetary and fiscal policy</li><li>Economic fluctuations and crises</li><li>Institutions and Inequality</li></ul><p>— International economics:</p><ul><li>Specialization and gains from trade</li><li>Protectionism: winners and losers</li><li>Currencies, currency unions, exchange rates, and Interest rates parity</li><li>Economics of the environment and sustainable development</li></ul><p>— Frontiers and evidence in modern economics:</p><ul><li>major contemporary questions</li><li>how economists use data; natural and field experiments.</li></ul><p><strong>2.4. </strong>The Finance topics discussed in the questions are the following:</p><ul><li>Financial Planning: Income, expenses, and debt management, financial goals. Budgeting.</li><li>Banks and the Banking System: Financial institutions facilitating savings, credit, and payments. Deposits, loans, interest rates, the role of the central bank. </li><li>Saving Money: Setting aside money for future use, earning interest. Savings accounts, compound interest.</li><li>Borrowing Money, Credit: Using borrowed funds with a promise to repay with interest. Credit cards, loans, credit score, interest rates. </li><li>Investment, Financial Instruments, and Risk Management: Allocating money to generate returns while managing risks. Time value of money. Stocks, bonds, diversification, risk vs. return, derivatives. </li><li>Insurance Contracts and Insurance Market: Risk management through financial protection against potential losses. Premiums, coverage, deductibles, liability. </li><li>Financial Fraud and Ponzi Schemes: Deceptive practices to steal money or assets. Phishing, pyramid schemes, Ponzi schemes, regulatory measures.</li><li>Crowdfunding: Raising funds from many contributors for projects or causes. Platforms, donation-based, equity-based. </li><li>Cryptocurrencies: Digital currencies secured by cryptography and operating on blockchain. Cryptocurrencies, blockchain, volatility, decentralized finance.</li></ul><p><br><strong>2.5. </strong>The main recommended textbook for Economics is <em>The Economy 2.0: Microeconomics and The Economy 2.0: Macroeconomics</em> by the <em>CORE Econ</em> project. The textbooks are available at <a href="https://www.core-econ.org/"><span>https://www.core-econ.org</span></a>.<br>A supplementary recommended textbook for preparation is <em>Principles of Economics</em> by N. Gregory Mankiw (the newest edition). Contestants can also use other A-level, International Baccalaureate, or principles level economics textbooks as supplementary sources.<br>For Nobel Memorial Prizes (often relevant to “frontiers and evidence” section) , see the website: <a href="https://www.nobelprize.org/prizes/lists/all-prizes-in-economic-sciences/"><span>https://www.nobelprize.org/prizes/lists/all-prizes-in-economic-sciences/</span></a>.<br><br><strong>2.6. </strong>The recommended resources for Finance are: </p><ul><li><em>The Economy 2.0: Microeconomics</em> (Unit 9 “Lenders and borrowers and differences in wealth”) (<a href="https://core-econ.org/the-economy/"><span>https://core-econ.org/the-economy/</span></a>)</li><li>Personal Finance course by GFLEC (<a href="https://gflec.org/education/personal-finance-course/"><span>https://gflec.org/education/personal-finance-course/</span></a>)</li><li>Money Smart for Young Adults curriculum (<a href="https://www.fdic.gov/resources/consumers/money-smart/teach-money-smart/money-smart-for-young-adults.html"><span>https://www.fdic.gov/resources/consumers/money-smart/teach-money-smart/money-smart-for-young-adults.html</span></a>)</li><li>Personal Finance Curriculum by PWC (High School Lessons) (<a href="https://www.pwc.com/us/en/about-us/corporate-responsibility/access-your-potential/financial-literacy-curriculum.html"><span>https://www.pwc.com/us/en/about-us/corporate-responsibility/access-your-potential/financial-literacy-curriculum.html</span></a>)</li><li>Khan Academy courses on finance (<a href="https://www.khanacademy.org/college-careers-more/personal-finance"><span>https://www.khanacademy.org/college-careers-more/personal-finance</span></a>, <a href="https://www.khanacademy.org/economics-finance-domain/core-finance"><span>https://www.khanacademy.org/economics-finance-domain/core-finance</span></a>)</li><li>Other freely available sources on finance and financial literacy.</li></ul><p><strong>2.7. </strong>The Economics and Finance part comprises two components: Multiple Choice Questions (MCQs) and Open Questions (OQs). The tests for MCQs and OQs may be administered on the same day or separate days, in any order, as determined by the Steering Committee and approved by the Problem Committee.<br><br><strong>2.8. </strong>There are 40 MCQs, answers to all of them are graded. Scoring is as follows:</p><ul><li>Correct answer: +2 raw points</li><li>Incorrect answer: −0.5 raw points</li><li>Unanswered question: 0 raw points</li></ul><p>The MCQ test lasts for 90 minutes.<br><br><strong>2.9. </strong>The competition includes 5 Open Questions (OQs), each worth a maximum of 30 raw points. Although the Jury grades all OQs, only 4 questions or fewer for each contestant contribute to their final score.<br>Contestants who submit solutions to all 5 questions must clearly indicate which single question should be excluded from the score. If a contestant fails to specify an exclusion in this case, the question with the maximum score will be automatically excluded.<br>The OQ test lasts for 155 minutes.<br><br><strong>2.10.</strong> Open questions are graded with full or partial credit depending on the contestant’s progress. The following principles are used.<br><br><strong>2.10.1. </strong>The Jury reviews papers according to grading schemes. In the case of a contestant's work containing a solution fragment that cannot be assessed based on the grading scheme, the Jury makes a decision based on its understanding of fair assessment, possibly consulting with the Problem Committee. The Jury assesses only what is written in the contestant's paper.<br><br><strong>2.10.2.</strong> Fragments crossed out by the contestant in their paper are not reviewed by the Jury. If a contestant wants to undo the crossing out, they must explicitly write in the paper that they wish the crossed-out part to be evaluated. If it is impossible to determine conclusively whether the contestant wanted the solution fragment to be assessed, that fragment is not evaluated.<br><br><strong>2.10.3. </strong>Contestants must present their solutions in clear English language. The Jury does not deduct points for language mistakes, corrections, spelling, punctuation, and stylistic errors or deficiencies in paper formatting, as long as the contestant's solution is understandable.<br><br><strong>2.10.4.</strong> All statements in the contestant's solution must either be commonly known (standard) or logically follow from the question or the contestant's previous reasoning. A contestant does not need to prove commonly known statements. Generally, facts repeatedly used in previous International Economics Olympiads without proof in official solutions are considered commonly known, as well as standard high school curriculum material. All non-commonly known facts not trivially derived from the question must be proven. A solution explicitly or implicitly relying on unproven non-commonly known facts is rated with a partial score.<br><br><strong>2.10.5.</strong> Contestants can solve questions using any correct method. The Jury does not increase scores for elegance or conciseness of the solution, nor does it decrease scores for using an unconventional method. A correct solution may deviate from the official one in its method. The length of the solution does not directly impact the evaluation; if a contestant writes a lengthy text without advancing the solution, it should be scored zero.<br><br><strong>2.10.6. </strong>The contestant's work should leave no doubt about the method of solving the question. If a contestant presents multiple solutions to a question that are substantially different (potentially leading to different answers), and some of the solutions are incorrect, the Jury is not obligated to choose and evaluate the correct solution.<br><br><strong>2.10.7.</strong> If the contestant's solution contains contradictory statements, they are generally not evaluated, even if one of them is correct. Violation of logical sequences (cause-and-effect relationships) typically results in a significant reduction in the score.<br><br><strong>2.10.8. </strong>The contestant's work must include evidence of the completeness and correctness of their answer. The method of obtaining the answer, if not required for proving its completeness and correctness, is optional to present.<br><br><strong>2.10.9.</strong> Penalties assigned by the Jury for computational errors depend on the severity of the consequences. Computational errors that did not significantly alter the subsequent solution of the question and made it substantially simpler are penalized with fewer points than errors that had a substantial impact regardless of the impact on the final conclusion. The grading key should specify the exact penalties for arithmetic mistakes whenever possible.<br><br><strong>2.10.10.</strong> If a question has multiple parts, the contestant must clearly indicate where the solution to each part begins. If a contestant's solution to one part of the question includes a solution fragment that, according to the marking scheme, can earn points for another part of the question, the Jury may choose not to award those points if it is not evident that the contestant understands the applicability of the results to another point. When solving question parts, contestants can refer to their own solutions (answers) to other parts.<br><br><strong>2.10.11.</strong> If an error occurs in the initial parts of a solution and it changes the contestant's answers in subsequent parts, the scores for subsequent parts are generally not reduced. They are evaluated as if the contestant's own results, used by the contestant, were correct. Exceptions occur when errors in the initial parts simplified or qualitatively distorted the logic of the subsequent solution — in these cases, scores for subsequent parts may be significantly reduced.<br><br><strong>2.10.12.</strong> If additional assumptions are necessary for the contestant's solution, they must be formulated. These additional assumptions should not change the meaning of the question and significantly narrow the range of situations discussed in the solution compared to those specified in the condition.</p></div>
</div>
<!--[if ENDBLOCK]><![endif]--> </div>
<div class="column">
<!--[if BLOCK]><![endif]-->
<div class="item" wire:key="item.4">
<div class="header"
wire:key="item.4.header"
data-syllabus-block-item-header
>
<div class="name">
<span>Business Case</span>
</div>
<div class="toggle">
<svg class="svg-icon svg-icon-plus-thin">
<use xlink:href='#icon-plus-thin'></use>
</svg>
</div>
</div>
<div class="text wysiwyg"><p><strong>3.1. </strong>The competition in business is a team competition and includes the oral presentation of the results. Presentations must be supported by slides. The presentations should be in English.<br><br><strong>3.2. </strong>The Business Case part lasts for two days — 1) day of preparation; 2) day of the presentation. During the day of preparation, contestants may use any online and offline materials, but it is prohibited to contact other people for help. All teams submit their slides by the deadline specified by the Steering Committee prior to the IEO Opening Ceremony. No changes to slides are allowed after this time.<br><br><strong>3.3. </strong>On the day of presentation, teams are divided into groups. Each group is assigned a separate panel of judges.<br><br><strong>3.4. </strong>The top team from each group is invited to the public Business Case Finals. In the Finals, teams are to present their solution again and be graded by a panel of judges.<br><br><strong>3.5. </strong>The organization responsible for the creation of the Business Case prepares a case-specific scoring guide, based on which teams’ raw scores are produced. The scoring guide should include grading rubrics, benchmarks or ranges for key assumptions where applicable, a list of core analytical elements expected to be addressed by participating teams, an exemplar solution of the proposed Business Case, stated briefly or in detail.<br>Raw scores are counted as a sum of scores for each criterion. The score for each criterion is the median of scores for this criterion given by each judge of the panel. The final result of a team participating in the Business Case Finals is the maximum of two results: in a group stage and in Finals.<br><br><strong>3.6. </strong>The competencies contestants are expected to have for a successful business case solution:<br><br><strong>Analytical thinking: </strong>the ability to structurally approach the solution of a complex business problem, correctly dividing it into streams (into directions within which the solution of the problem may lie).<br>As a rule, the team should divide the case into some large blocks, which, in turn, are further divided and so on to the level of specific problems. A good structure corresponds to the MECE principle (mutually exclusive, collectively exhaustive), that is, it covers all possible solutions, but each individual stream does not intersect with others.<br><br><strong>Conceptual thinking: </strong>the ability to build correct hypotheses based on the resulting structure, made by analysis. Here the team checks how ideas respond to the necessary request and correctly address these or other problems of the enterprise, the team also makes sure that these solutions are feasible and have a common and business sense.<br><br><strong>Quantitative thinking: </strong>no case can be solved without simple but fast calculations and more complex models that illustrate certain analyzes.<br><br><strong>Communication skills: </strong>the ability to correctly build a presentation and to answer questions.<br><br><strong>3.7. </strong>The following literature is recommended for preparation.<br>Useful literature for case solving:</p><ul><li>The Pyramid Principle, Barbara Minto;</li><li>Crack the Case, David Ohrvall;</li><li>The Trusted Advisor, D. Maister, C. Green, R. Galford.</li></ul><p>Useful literature for data analysis:</p><ul><li>The McKinsey Way, Ethan Rasiel;</li><li>Strategic Management, Thompson Strickland;</li><li>The Fifth Discipline, Peter Senge;</li><li>Thinking Fast and Slow, Daniel Kahneman;</li><li>Case in Point, Marc Cosentino;</li><li>BCG on Strategy, C. Stern, M. Deimler.</li></ul><p>Useful literature for presentations:</p><ul><li>Say It With Charts, Gene Zelazny;</li><li>Unfolding the Napkin, Dan Roam;</li><li>Visualize This, Nathan Yau;</li><li>The Pyramid Principle, Barbara Minto;</li><li>Slide:ology, Nancy Duarte</li></ul><p><strong>3.8.</strong> In addition to books listed above, it is recommended to study the example cases that were used at the previous Olympiads and can be found here: <a href="https://ieo-official.org/prepare">https://ieo-official.org/prepare.</a> Additional materials for preparation will be provided to the invited teams before the Business Case part.<br><br></p></div>
</div>
<!--[if ENDBLOCK]><![endif]--> </div>
<!--[if ENDBLOCK]><![endif]--> </div>
</div>
</div>
<div wire:snapshot="{"data":{"year":"2025"},"memo":{"id":"i9xyxwYDpNbBbc1dypha","name":"previous-years-tasks-block","path":"prepare","method":"GET","release":"a-a-a","children":{"lw-182851885-0":["span","El9LOYhzEx4SK0xTCa8T"],"lw-182851885-1":["span","dIrXJoJnsLBhZqs01LB8"]},"scripts":[],"assets":[],"errors":[],"locale":"en"},"checksum":"35b5d9d49249a66d53e213e5f8456a053d5878c4d57d361c6d6bfd8fb43fe107"}" wire:effects="[]" wire:id="i9xyxwYDpNbBbc1dypha" class="previous-years-tasks-block block">
<div class="anchor" id="tasks"></div>
<div class="container">
<div class="block-header">
<div class="block-title">
<span wire:snapshot="{"data":{"code":"previous-years-tasks-block-title","default":"Previous years tasks"},"memo":{"id":"El9LOYhzEx4SK0xTCa8T","name":"editable","path":"prepare","method":"GET","release":"a-a-a","children":[],"scripts":[],"assets":[],"errors":[],"locale":"en"},"checksum":"6d838087ac606e789934fc4fcb5cebab0b2ed3b669e626bb43fc03e2f225688b"}" wire:effects="{"listeners":["editable.save.previous-years-tasks-block-title"]}" wire:id="El9LOYhzEx4SK0xTCa8T">
<!--[if BLOCK]><![endif]--> <span><p>Previous years tasks</p></span>
<!--[if ENDBLOCK]><![endif]--></span>
</div>
<div class="block-text">
<span wire:snapshot="{"data":{"code":"previous-years-tasks-block-text","default":"Summaries of the interviews devoted to particular topics"},"memo":{"id":"dIrXJoJnsLBhZqs01LB8","name":"editable","path":"prepare","method":"GET","release":"a-a-a","children":[],"scripts":[],"assets":[],"errors":[],"locale":"en"},"checksum":"89407ebff9508dfcd1c145d8befb5b83d4e5f66c94327537d72aeb05ff43e50c"}" wire:effects="{"listeners":["editable.save.previous-years-tasks-block-text"]}" wire:id="dIrXJoJnsLBhZqs01LB8">
<!--[if BLOCK]><![endif]--> <span>Summaries of the interviews devoted to particular topics</span>
<!--[if ENDBLOCK]><![endif]--></span>
</div>
</div>
<div class="content"
x-data="{
'year': $wire.entangle('year').live,
}"
>
<div class="years">
<!--[if BLOCK]><![endif]--> <a href="#"
class="year"
x-on:click.prevent="year = '2025'"
x-bind:class="{
'active': year == '2025',
}"
wire:key="year.2025"
>
2025
</a>
<a href="#"
class="year"
x-on:click.prevent="year = '2024'"
x-bind:class="{
'active': year == '2024',
}"
wire:key="year.2024"
>
2024
</a>
<a href="#"
class="year"
x-on:click.prevent="year = '2023'"
x-bind:class="{
'active': year == '2023',
}"
wire:key="year.2023"
>
2023
</a>
<a href="#"
class="year"
x-on:click.prevent="year = '2022'"
x-bind:class="{
'active': year == '2022',
}"
wire:key="year.2022"
>
2022
</a>
<a href="#"
class="year"
x-on:click.prevent="year = '2021'"
x-bind:class="{
'active': year == '2021',
}"
wire:key="year.2021"
>
2021
</a>
<a href="#"
class="year"
x-on:click.prevent="year = '2020'"
x-bind:class="{
'active': year == '2020',
}"
wire:key="year.2020"
>
2020
</a>
<a href="#"
class="year"
x-on:click.prevent="year = '2019'"
x-bind:class="{
'active': year == '2019',
}"
wire:key="year.2019"
>
2019
</a>
<a href="#"
class="year"
x-on:click.prevent="year = '2018'"
x-bind:class="{
'active': year == '2018',
}"
wire:key="year.2018"
>
2018
</a>
<!--[if ENDBLOCK]><![endif]--> </div>
<div class="categories">
<!--[if BLOCK]><![endif]-->
<div class="category">
<div class="name">
Economics
</div>
<div class="tasks">
<!--[if BLOCK]><![endif]-->
<a href="https://ieo-official.org/storage/task/file/08ce223a220041eb2492be09d26349d592f912e09350f89471b4be9f4d00.pdf"
class="task"
target="_blank"
wire:key="task.1"
>
Economics 2025. Multiple Choice (PDF)
</a>
<a href="https://ieo-official.org/storage/task/file/a957c634ee4e426971e452f0b5c1d843d93cea59bd37715d11883b6875e9.pdf"
class="task"
target="_blank"
wire:key="task.2"
>
Economics 2025. Multiple Choice (Solutions) (PDF)
</a>
<a href="https://ieo-official.org/storage/task/file/bc792c1b9f03f09ccf0e6cde24f9a2763596172bfd6bd968a63aebdf6e8e.pdf"
class="task"
target="_blank"
wire:key="task.3"
>
Economics 2025. Open Questions (PDF)
</a>
<a href="https://ieo-official.org/storage/task/file/9a2f3c82143cd058a539e54480d30fe823475f8dcf98c6301a8b458cb265.pdf"
class="task"
target="_blank"
wire:key="task.4"
>
Economics 2025. Open Questions (Solutions and Grading) (PDF)
</a>
<a href="https://ieo-official.org/storage/task/file/f7ad465c2bdd1cad3737df0cb0cd1a166f976c50129720a480ff13007060.pdf"
class="task"
target="_blank"
wire:key="task.5"
>
Economics 2025. Multiple Choice - OpenTrack (PDF)
</a>
<a href="https://ieo-official.org/storage/task/file/dbe1370ac7dcc6ac5441f35901bceda9155d3188adf6820e907c7f36a905.pdf"
class="task"
target="_blank"
wire:key="task.6"
>
Economics 2025. Multiple Choice - OpenTrack (Solutions) (PDF)
</a>
<!--[if ENDBLOCK]><![endif]--> </div>
</div>
<div class="category">
<div class="name">
Business Case
</div>
<div class="tasks">
<!--[if BLOCK]><![endif]-->
<a href="https://ieo-official.org/storage/task/file/ac85aa840d3344633abb55e2cc15fdf8a9cc464fac25486ba328234861d6.pdf"
class="task"
target="_blank"
wire:key="task.7"
>
Business Case & Evaluation Criteria 2025 (PDF)
</a>
<!--[if ENDBLOCK]><![endif]--> </div>
</div>
<div class="category">
<div class="name">
Financial Literacy
</div>
<div class="tasks">
<!--[if BLOCK]><![endif]-->
<a href="https://ieo-official.org/storage/task/file/daf178537c4e4b21f50b695e38234a58c3e90adc16d3f09a17effadbced7.pdf"
class="task"
target="_blank"
wire:key="task.8"
>
Financial Literacy 2025. Multiple Choice (PDF)
</a>
<a href="https://ieo-official.org/storage/task/file/df974293641aca16fcd5c358b404455eb55810c7b3b958518ad66cea1896.pdf"
class="task"
target="_blank"
wire:key="task.9"
>
Financial Literacy 2025. Multiple Choice (Solutions) (PDF)
</a>
<!--[if ENDBLOCK]><![endif]--> </div>
</div>
<!--[if ENDBLOCK]><![endif]--> </div>
</div>
</div>
</div>
<div id="footer">
<div wire:snapshot="{"data":{"showForm":true},"memo":{"id":"JjnLDuziOW9ztqQBNUTj","name":"footer-block","path":"prepare","method":"GET","release":"a-a-a","children":{"lw-1224349683-0":["div","mSLnILPMUBB0knFVaTRV"],"lw-1224349683-1":["div","hg7Sn2OWYDfTjis0tBuK"],"lw-1224349683-2":["span","Lz8I2InFul2qa8nPClKt"],"lw-1224349683-3":["span","RRsJTqIRhGDrwB6ViIaq"]},"scripts":[],"assets":[],"errors":[],"locale":"en"},"checksum":"b8917ce29a4723ed1cf4b9c540e07fb3bbe8aa3294baab4b112a0e6dc588a727"}" wire:effects="[]" wire:id="JjnLDuziOW9ztqQBNUTj" class="footer-block block blue with-form ">
<div class="anchor" id="footer"></div>
<!--[if BLOCK]><![endif]--> <div class="contacts">
<div wire:snapshot="{"data":[],"memo":{"id":"mSLnILPMUBB0knFVaTRV","name":"contact-block","path":"prepare","method":"GET","release":"a-a-a","children":{"lw-1910761575-0":["span","MSb6v0KmLIBRg15o2Kre"],"lw-1910761575-1":["span","f9kIvhg2I4gFX6x7v9yT"],"lw-1910761575-2":["form","CUEFn7Ebij8mbXVMhB6N"]},"scripts":[],"assets":[],"errors":[],"locale":"en"},"checksum":"0d12fb98dcc1edf7e7b488da74cade88ab11db2b8f7d5bbdfd01095e9f06e3eb"}" wire:effects="[]" wire:id="mSLnILPMUBB0knFVaTRV" class="contacts-block block blue padding">
<div class="inner container">
<div class="mb-16">
<div class="block-header align-left">
<div class="block-title">
<span wire:snapshot="{"data":{"code":"contact-block-title","default":"Contact Us"},"memo":{"id":"MSb6v0KmLIBRg15o2Kre","name":"editable","path":"prepare","method":"GET","release":"a-a-a","children":[],"scripts":[],"assets":[],"errors":[],"locale":"en"},"checksum":"59c4586f124b264ca843f750b3cc3492d853a727804094ccf1ea7ba3cb603401"}" wire:effects="{"listeners":["editable.save.contact-block-title"]}" wire:id="MSb6v0KmLIBRg15o2Kre">
<!--[if BLOCK]><![endif]--> <span>Contact Us</span>
<!--[if ENDBLOCK]><![endif]--></span>
</div>
<div class="block-text">
<span wire:snapshot="{"data":{"code":"contact-block-text","default":"With any questions, applications or feedback"},"memo":{"id":"f9kIvhg2I4gFX6x7v9yT","name":"editable","path":"prepare","method":"GET","release":"a-a-a","children":[],"scripts":[],"assets":[],"errors":[],"locale":"en"},"checksum":"6f6abbe24cf315b84483dbf69ebab9b3b7a6d0264c78145bc768d929af611725"}" wire:effects="{"listeners":["editable.save.contact-block-text"]}" wire:id="f9kIvhg2I4gFX6x7v9yT">
<!--[if BLOCK]><![endif]--> <span><p>With any questions, applications or feedback</p></span>
<!--[if ENDBLOCK]><![endif]--></span>
</div>
</div>
</div>
<form wire:snapshot="{"data":{"name":null,"email":null,"text":null},"memo":{"id":"CUEFn7Ebij8mbXVMhB6N","name":"contact-form","path":"prepare","method":"GET","release":"a-a-a","children":{"lw-3676672348-0":["div","Z3uwyTKTamePhEmTaRlr"],"lw-3676672348-1":["div","4szfO5KpOTtDZlZedVfR"],"lw-3676672348-2":["div","t31v3JAKrgibAosmaFr0"]},"scripts":[],"assets":[],"errors":[],"locale":"en"},"checksum":"e6ceb4232dbcb04a9df30715e4c9115f715d7c14c51d517048009b37f04188b5"}" wire:effects="[]" wire:id="CUEFn7Ebij8mbXVMhB6N" class="contact-form" wire:submit.prevent="submit">
<div wire:snapshot="{"data":{"value":null,"item":null,"label":null,"placeholder":"Your name","datepicker":false,"datepickerRange":false,"timepicker":false,"allowInput":true,"format":null,"datepickerMinDate":null,"datepickerMaxDate":null,"required":false,"password":false,"size":"full","help":null,"helpBefore":null,"suffix":null,"big":false,"numeric":false,"disabled":false,"showError":true,"autofocus":false,"white":true,"labelAsPlaceholder":true,"wireChange":null,"error":"","for":"field-70e8ca61e8a0861b1df70a432560f8afa39c4f2680b268595d6c22c53b1b"},"memo":{"id":"Z3uwyTKTamePhEmTaRlr","name":"ui.form.text","path":"prepare","method":"GET","release":"a-a-a","bindings":{"name":"value"},"bindingsDirectives":{"name":"wire:model"},"children":[],"scripts":[],"assets":[],"props":["error"],"errors":[],"locale":"en"},"checksum":"ef686ed6a7bec9acdd49c19b473502f2ac3c1ced324987ff2420cf273a7f4a86"}" wire:effects="[]" wire:model="$parent.name" x-modelable="$wire.value" wire:id="Z3uwyTKTamePhEmTaRlr" class="ui-form-text form-group item- ui-form-white"
>
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]-->
<div class="input-and-suffix">
<div class="input-wrapper size-full">
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]-->
<input type="text"
id="field-70e8ca61e8a0861b1df70a432560f8afa39c4f2680b268595d6c22c53b1b"
placeholder="Your name"
class=" "
wire:model.defer="value"
data-ui-form-text-input
>
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--> </div>
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--> </div>
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]-->
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--></div>
<div wire:snapshot="{"data":{"value":null,"item":null,"label":null,"placeholder":"Your E-mail","datepicker":false,"datepickerRange":false,"timepicker":false,"allowInput":true,"format":null,"datepickerMinDate":null,"datepickerMaxDate":null,"required":false,"password":false,"size":"full","help":null,"helpBefore":null,"suffix":null,"big":false,"numeric":false,"disabled":false,"showError":true,"autofocus":false,"white":true,"labelAsPlaceholder":true,"wireChange":null,"error":"","for":"field-9d4a57885d5761c3953dd22088ffb7b8c984b29c9a9017f652545372e1fb"},"memo":{"id":"4szfO5KpOTtDZlZedVfR","name":"ui.form.text","path":"prepare","method":"GET","release":"a-a-a","bindings":{"email":"value"},"bindingsDirectives":{"email":"wire:model"},"children":[],"scripts":[],"assets":[],"props":["error"],"errors":[],"locale":"en"},"checksum":"38cf5e78c8bae3ce86f41338673e997aded91de5f6c22f26766cdf1d25612fff"}" wire:effects="[]" wire:model="$parent.email" x-modelable="$wire.value" wire:id="4szfO5KpOTtDZlZedVfR" class="ui-form-text form-group item- ui-form-white"
>
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]-->
<div class="input-and-suffix">
<div class="input-wrapper size-full">
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]-->
<input type="text"
id="field-9d4a57885d5761c3953dd22088ffb7b8c984b29c9a9017f652545372e1fb"
placeholder="Your E-mail"
class=" "
wire:model.defer="value"
data-ui-form-text-input
>
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--> </div>
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--> </div>
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]-->
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--></div>
<div wire:snapshot="{"data":{"value":null,"item":"text","label":null,"placeholder":"Your question","datepicker":false,"datepickerRange":false,"timepicker":false,"allowInput":true,"format":null,"datepickerMinDate":null,"datepickerMaxDate":null,"required":false,"password":false,"size":"full","help":null,"helpBefore":null,"suffix":null,"big":false,"numeric":false,"disabled":false,"showError":true,"autofocus":false,"white":true,"labelAsPlaceholder":true,"wireChange":null,"error":"","for":"field-7e1dc571bf14fb342b18f3c84eafef64172572f02b16942a52ac65183a27"},"memo":{"id":"t31v3JAKrgibAosmaFr0","name":"ui.form.text","path":"prepare","method":"GET","release":"a-a-a","bindings":{"text":"value"},"bindingsDirectives":{"text":"wire:model"},"children":[],"scripts":[],"assets":[],"props":["error"],"errors":[],"locale":"en"},"checksum":"59110a48e5121501b1519de9bcd9fdd1e3c4950f14a3809292baca2f403027b1"}" wire:effects="[]" wire:model="$parent.text" x-modelable="$wire.value" wire:id="t31v3JAKrgibAosmaFr0" class="ui-form-text form-group item-text ui-form-white"
>
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]-->
<div class="input-and-suffix">
<div class="input-wrapper size-full">
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]-->
<input type="text"
id="field-7e1dc571bf14fb342b18f3c84eafef64172572f02b16942a52ac65183a27"
placeholder="Your question"
class=" "
wire:model.defer="value"
data-ui-form-text-input
>
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--> </div>
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--> </div>
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]-->
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--></div>
<div class="form-group item-actions flex">
<button type="submit" class="white">Send</button>
</div>
</form>
</div>
</div>
</div>
<!--[if ENDBLOCK]><![endif]-->
<div class="footer-block-inner container">
<div class="info">
<div class="mb-56 flex">
<a href="https://ieo-official.org" class="logo">
<img src="https://ieo-official.org/img/logo.svg" alt="">
</a>
</div>
<div class="mb-24">
<div wire:snapshot="{"data":[],"memo":{"id":"hg7Sn2OWYDfTjis0tBuK","name":"footer-block.social","path":"prepare","method":"GET","release":"a-a-a","children":[],"scripts":[],"assets":[],"errors":[],"locale":"en"},"checksum":"ad95e5bad31d59893479923a09d95445e967234f25577f1ab15127d4cbad51a4"}" wire:effects="[]" wire:id="hg7Sn2OWYDfTjis0tBuK" class="social">
<!--[if BLOCK]><![endif]--> <a href="https://facebook.com/ieo.official" target="_blank" title="Facebook">
<svg class="svg-icon svg-icon-social-facebook">
<use xlink:href='#icon-social-facebook'></use>
</svg>
</a>
<a href="https://www.instagram.com/the_ieo/" target="_blank" title="Instagram">
<svg class="svg-icon svg-icon-social-instagram">
<use xlink:href='#icon-social-instagram'></use>
</svg>
</a>
<a href="https://www.linkedin.com/company/ieo-international-economics-olympiad/" target="_blank" title="Linkedin">
<svg class="svg-icon svg-icon-social-linkedin">
<use xlink:href='#icon-social-linkedin'></use>
</svg>
</a>
<a href="https://www.youtube.com/channel/UC6bSL2bUGiGpsZko7HLywoQ" target="_blank" title="Youtube">
<svg class="svg-icon svg-icon-social-youtube">
<use xlink:href='#icon-social-youtube'></use>
</svg>
</a>
<!--[if ENDBLOCK]><![endif]--></div>
</div>
<div class="copyright">
© 2026 International Economics Olympiad.
</div>
</div>
<div class="location">
<!--[if BLOCK]><![endif]--> <div class="title">
<span wire:snapshot="{"data":{"code":"footer-block-location-title","default":"Legal Address:"},"memo":{"id":"Lz8I2InFul2qa8nPClKt","name":"editable","path":"prepare","method":"GET","release":"a-a-a","children":[],"scripts":[],"assets":[],"errors":[],"locale":"en"},"checksum":"ae8cbcb7a0acf48f60ad0f86c592a4474483b4b93343b28cfc3dc8e36c827ca5"}" wire:effects="{"listeners":["editable.save.footer-block-location-title"]}" wire:id="Lz8I2InFul2qa8nPClKt">
<!--[if BLOCK]><![endif]--> <span>Legal Address:</span>
<!--[if ENDBLOCK]><![endif]--></span>
</div>
<div class="text wysiwyg">
<span wire:snapshot="{"data":{"code":"footer-block-location-text","default":"\n <p>\n \u201cInternational Economics\n Olympiad (IEO)\u201d Association\n <\/p>\n <p>\n c\/o Science Olympiad\n University of Bern\n Hochschulstrasse 6\n 3012 Bern\n Switzerland\n <\/p>\n "},"memo":{"id":"RRsJTqIRhGDrwB6ViIaq","name":"editable","path":"prepare","method":"GET","release":"a-a-a","children":[],"scripts":[],"assets":[],"errors":[],"locale":"en"},"checksum":"f9dfb62702b2a7030fdc5ffeea216270b1cdbeda5727d4e97702bf7b7594c471"}" wire:effects="{"listeners":["editable.save.footer-block-location-text"]}" wire:id="RRsJTqIRhGDrwB6ViIaq">
<!--[if BLOCK]><![endif]--> <span><p>“International Economics Olympiad (IEO)” Association</p><p>c/o Science Olympiad University of Bern Hochschulstrasse 6 3012 Bern Switzerland</p></span>
<!--[if ENDBLOCK]><![endif]--></span>
</div>
<!--[if ENDBLOCK]><![endif]--> </div>
</div>
</div>
</div>
</div>
<div wire:snapshot="{"data":[],"memo":{"id":"vil7hWNFEycjswuvRkHS","name":"seo-link","path":"prepare","method":"GET","release":"a-a-a","children":[],"scripts":[],"assets":[],"errors":[],"locale":"en"},"checksum":"2b39bfcfc1e61284beee525861f6958670bce7326272c81c3b898b9899ffe8b3"}" wire:effects="[]" wire:id="vil7hWNFEycjswuvRkHS">
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--></div>
<div wire:snapshot="{"data":{"modals":[[],{"s":"arr"}]},"memo":{"id":"urjeev6MDpr9asILwWun","name":"ui.modal.viewer","path":"prepare","method":"GET","release":"a-a-a","children":[],"scripts":[],"assets":[],"errors":[],"locale":"en"},"checksum":"9ae1647fa46244a61bbe600d552c12cb69116024d9aa99accacf471838feece2"}" wire:effects="{"listeners":["modal.open","modal.close"]}" wire:id="urjeev6MDpr9asILwWun">
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--></div>
<div wire:snapshot="{"data":{"title":null,"text":null,"onClose":null,"buttonText":null,"reload":false,"url":null,"visible":false,"error":false,"dark":false,"width":null,"showButton":true},"memo":{"id":"DH7zJEP2BbFuddBTi1C9","name":"ui.message-modal","path":"prepare","method":"GET","release":"a-a-a","children":[],"scripts":[],"assets":[],"errors":[],"locale":"en"},"checksum":"987d130e5950c961a44cc119d60be0f1aa628a01f5b2ab32a35c1782d2460311"}" wire:effects="{"listeners":["message.success","message.error","message.close"]}" wire:id="DH7zJEP2BbFuddBTi1C9">
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--></div>
<div wire:snapshot="{"data":{"title":"Done!","text":null,"onConfirm":null,"onCancel":null,"confirmArguments":[[],{"s":"arr"}],"cancelArguments":[[],{"s":"arr"}],"confirmButtonText":"\u0414\u0430","cancelButtonText":"\u041e\u0442\u043c\u0435\u043d\u0430","dark":false,"visible":false},"memo":{"id":"3Ua732Ul00940mC1eLt0","name":"ui.dialog-modal","path":"prepare","method":"GET","release":"a-a-a","children":[],"scripts":[],"assets":[],"errors":[],"locale":"en"},"checksum":"c5ae1aaab6f1e39f6b0bfb10cedbb68372a3285eeb847391133be119d706e608"}" wire:effects="{"listeners":["dialog.close","dialog.open"]}" wire:id="3Ua732Ul00940mC1eLt0">
<!--[if BLOCK]><![endif]--><!--[if ENDBLOCK]><![endif]--></div>
<div data-icons="https://ieo-official.org/build/assets/icons--Ry-5f6K.svg"></div>
<script data-cfasync="false" src="/cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js"></script><script src="https://ieo-official.org/vendor/livewire/livewire.min.js?id=6d832aed" data-csrf="vslUnHRRHj14iXGkssmbxUo3IlU70aV9aEmF8S1J" data-update-uri="/livewire/update" data-navigate-once="true"></script>
<link rel="preload" as="style" href="https://ieo-official.org/build/assets/all-CwOW9WHn.css" /><link rel="modulepreload" as="script" href="https://ieo-official.org/build/assets/all-BQU9yWRM.js" /><link rel="modulepreload" as="script" href="https://ieo-official.org/build/assets/helpers-yOFcI_PH.js" /><link rel="modulepreload" as="script" href="https://ieo-official.org/build/assets/jquery-F-NxiN2d.js" /><link rel="modulepreload" as="script" href="https://ieo-official.org/build/assets/_commonjsHelpers-D6-XlEtG.js" /><link rel="stylesheet" href="https://ieo-official.org/build/assets/all-CwOW9WHn.css" data-navigate-track="reload" /><script type="module" src="https://ieo-official.org/build/assets/all-BQU9yWRM.js" data-navigate-track="reload"></script>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-0YMSVPRWCY"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-0YMSVPRWCY');
</script>
<script type="module" src="https://static.cloudflareinsights.com/beacon.min.js/v4513226cdae34746b4dedf0b4dfa099e1781791509496" integrity="sha512-ZE9pZaUXND66v380QUtch/5sE9tPFh2zg45pR2PB0CVkCtOREv2AJKkSidISWkysEuQ0EH8faUU5du78bx87UQ==" data-cf-beacon='{"version":"2024.11.0","token":"256142e8e76845f98408b608acb03aaa","r":1,"server_timing":{"name":{"cfCacheStatus":true,"cfEdge":true,"cfExtPri":true,"cfL4":true,"cfOrigin":true,"cfSpeedBrain":true},"location_startswith":null}}' crossorigin="anonymous"></script>
<script>(function(){function c(){var b=a.contentDocument||a.contentWindow.document;if(b){var d=b.createElement('script');d.innerHTML="window.__CF$cv$params={r:'a1ed5ff0ac4d58ce',t:'MTc4NDY3MDEzOA=='};var a=document.createElement('script');a.src='/cdn-cgi/challenge-platform/scripts/jsd/main.js';document.getElementsByTagName('head')[0].appendChild(a);";b.getElementsByTagName('head')[0].appendChild(d)}}if(document.body){var a=document.createElement('iframe');a.height=1;a.width=1;a.style.position='absolute';a.style.top=0;a.style.left=0;a.style.border='none';a.style.visibility='hidden';document.body.appendChild(a);if('loading'!==document.readyState)c();else if(window.addEventListener)document.addEventListener('DOMContentLoaded',c);else{var e=document.onreadystatechange||function(){};document.onreadystatechange=function(b){e(b);'loading'!==document.readyState&&(document.onreadystatechange=e,c())}}}})();</script></body>
</html>
|