It looks like this is a web page, not a feed. I looked for a feed associated with this page, but couldn't find one. Please enter the address of your feed to validate.

Source: http://mas-pressa.ru

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.    <meta charset="UTF-8">
  5.    <title>Временно недоступен</title>
  6.    <link href="https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;700&&amp;display=swap" rel="stylesheet">
  7.    <script src="https://yastatic.net/pcode/adfox/loader.js" crossorigin="anonymous"></script>
  8.    <script type="text/javascript" language="javascript" >
  9. var punycode = new function Punycode() {
  10.    this.utf16 = {
  11.        decode:function(input){
  12.            var output = [], i=0, len=input.length,value,extra;
  13.            while (i < len) {
  14.                value = input.charCodeAt(i++);
  15.                if ((value & 0xF800) === 0xD800) {
  16.                    extra = input.charCodeAt(i++);
  17.                    if ( ((value & 0xFC00) !== 0xD800) || ((extra & 0xFC00) !== 0xDC00) ) {
  18.                        throw new RangeError("UTF-16(decode): Illegal UTF-16 sequence");
  19.                    }
  20.                    value = ((value & 0x3FF) << 10) + (extra & 0x3FF) + 0x10000;
  21.                }
  22.                output.push(value);
  23.            }
  24.            return output;
  25.        },
  26.        encode:function(input){
  27.            var output = [], i=0, len=input.length,value;
  28.            while (i < len) {
  29.                value = input[i++];
  30.                if ( (value & 0xF800) === 0xD800 ) {
  31.                    throw new RangeError("UTF-16(encode): Illegal UTF-16 value");
  32.                }
  33.                if (value > 0xFFFF) {
  34.                    value -= 0x10000;
  35.                    output.push(String.fromCharCode(((value >>>10) & 0x3FF) | 0xD800));
  36.                    value = 0xDC00 | (value & 0x3FF);
  37.                }
  38.                output.push(String.fromCharCode(value));
  39.            }
  40.            return output.join("");
  41.        }
  42.    }
  43.    var initial_n = 0x80;
  44.    var initial_bias = 72;
  45.    var delimiter = "\x2D";
  46.    var base = 36;
  47.    var damp = 700;
  48.    var tmin=1;
  49.    var tmax=26;
  50.    var skew=38;
  51.    var maxint = 0x7FFFFFFF;
  52.  
  53.    function decode_digit(cp) {
  54.        return cp - 48 < 10 ? cp - 22 : cp - 65 < 26 ? cp - 65 : cp - 97 < 26 ? cp - 97 : base;
  55.    }
  56.  
  57.    function encode_digit(d, flag) {
  58.        return d + 22 + 75 * (d < 26) - ((flag != 0) << 5);
  59.    }
  60.    function adapt(delta, numpoints, firsttime ) {
  61.        var k;
  62.        delta = firsttime ? Math.floor(delta / damp) : (delta >> 1);
  63.        delta += Math.floor(delta / numpoints);
  64.  
  65.        for (k = 0; delta > (((base - tmin) * tmax) >> 1); k += base) {
  66.                delta = Math.floor(delta / ( base - tmin ));
  67.        }
  68.        return Math.floor(k + (base - tmin + 1) * delta / (delta + skew));
  69.    }
  70.  
  71.    function encode_basic(bcp, flag) {
  72.        bcp -= (bcp - 97 < 26) << 5;
  73.        return bcp + ((!flag && (bcp - 65 < 26)) << 5);
  74.    }
  75.  
  76.    this.decode=function(input,preserveCase) {
  77.        var output=[];
  78.        var case_flags=[];
  79.        var input_length = input.length;
  80.  
  81.        var n, out, i, bias, basic, j, ic, oldi, w, k, digit, t, len;
  82.  
  83.        n = initial_n;
  84.        i = 0;
  85.        bias = initial_bias;
  86.  
  87.        basic = input.lastIndexOf(delimiter);
  88.        if (basic < 0) basic = 0;
  89.  
  90.        for (j = 0; j < basic; ++j) {
  91.            if(preserveCase) case_flags[output.length] = ( input.charCodeAt(j) -65 < 26);
  92.            if ( input.charCodeAt(j) >= 0x80) {
  93.                throw new RangeError("Illegal input >= 0x80");
  94.            }
  95.            output.push( input.charCodeAt(j) );
  96.        }
  97.  
  98.        for (ic = basic > 0 ? basic + 1 : 0; ic < input_length; ) {
  99.  
  100.            for (oldi = i, w = 1, k = base; ; k += base) {
  101.                    if (ic >= input_length) {
  102.                        throw RangeError ("punycode_bad_input(1)");
  103.                    }
  104.                    digit = decode_digit(input.charCodeAt(ic++));
  105.  
  106.                    if (digit >= base) {
  107.                        throw RangeError("punycode_bad_input(2)");
  108.                    }
  109.                    if (digit > Math.floor((maxint - i) / w)) {
  110.                        throw RangeError ("punycode_overflow(1)");
  111.                    }
  112.                    i += digit * w;
  113.                    t = k <= bias ? tmin : k >= bias + tmax ? tmax : k - bias;
  114.                    if (digit < t) { break; }
  115.                    if (w > Math.floor(maxint / (base - t))) {
  116.                        throw RangeError("punycode_overflow(2)");
  117.                    }
  118.                    w *= (base - t);
  119.            }
  120.  
  121.            out = output.length + 1;
  122.            bias = adapt(i - oldi, out, oldi === 0);
  123.  
  124.          if ( Math.floor(i / out) > maxint - n) {
  125.                throw RangeError("punycode_overflow(3)");
  126.            }
  127.            n += Math.floor( i / out ) ;
  128.            i %= out;
  129.  
  130.            if (preserveCase) { case_flags.splice(i, 0, input.charCodeAt(ic -1) -65 < 26);}
  131.  
  132.            output.splice(i, 0, n);
  133.            i++;
  134.        }
  135.        if (preserveCase) {
  136.            for (i = 0, len = output.length; i < len; i++) {
  137.                if (case_flags[i]) {
  138.                    output[i] = (String.fromCharCode(output[i]).toUpperCase()).charCodeAt(0);
  139.                }
  140.            }
  141.        }
  142.        return this.utf16.encode(output);
  143.    };
  144.  
  145.    this.encode = function (input,preserveCase) {
  146.  
  147.        var n, delta, h, b, bias, j, m, q, k, t, ijv, case_flags;
  148.  
  149.        if (preserveCase) {
  150.            case_flags = this.utf16.decode(input);
  151.        }
  152.        input = this.utf16.decode(input.toLowerCase());
  153.  
  154.        var input_length = input.length;
  155.  
  156.        if (preserveCase) {
  157.  
  158.            for (j=0; j < input_length; j++) {
  159.                case_flags[j] = input[j] != case_flags[j];
  160.            }
  161.        }
  162.  
  163.        var output=[];
  164.  
  165.        n = initial_n;
  166.        delta = 0;
  167.        bias = initial_bias;
  168.  
  169.        for (j = 0; j < input_length; ++j) {
  170.            if ( input[j] < 0x80) {
  171.                output.push(
  172.                    String.fromCharCode(
  173.                        case_flags ? encode_basic(input[j], case_flags[j]) : input[j]
  174.                    )
  175.                );
  176.            }
  177.        }
  178.  
  179.        h = b = output.length;
  180.  
  181.        if (b > 0) output.push(delimiter);
  182.  
  183.        while (h < input_length) {
  184.  
  185.            for (m = maxint, j = 0; j < input_length; ++j) {
  186.                ijv = input[j];
  187.                if (ijv >= n && ijv < m) m = ijv;
  188.            }
  189.  
  190.            if (m - n > Math.floor((maxint - delta) / (h + 1))) {
  191.                throw RangeError("punycode_overflow (1)");
  192.            }
  193.            delta += (m - n) * (h + 1);
  194.            n = m;
  195.  
  196.            for (j = 0; j < input_length; ++j) {
  197.                ijv = input[j];
  198.  
  199.                if (ijv < n ) {
  200.                    if (++delta > maxint) return Error("punycode_overflow(2)");
  201.                }
  202.  
  203.                if (ijv == n) {
  204.  
  205.                    for (q = delta, k = base; ; k += base) {
  206.                        t = k <= bias ? tmin : k >= bias + tmax ? tmax : k - bias;
  207.                        if (q < t) break;
  208.                        output.push( String.fromCharCode(encode_digit(t + (q - t) % (base - t), 0)) );
  209.                        q = Math.floor( (q - t) / (base - t) );
  210.                    }
  211.                    output.push( String.fromCharCode(encode_digit(q, preserveCase && case_flags[j] ? 1:0 )));
  212.                    bias = adapt(delta, h + 1, h == b);
  213.                    delta = 0;
  214.                    ++h;
  215.                }
  216.            }
  217.  
  218.            ++delta, ++n;
  219.        }
  220.        return output.join("");
  221.    }
  222.  
  223.    this.ToASCII = function ( domain ) {
  224.        var domain_array = domain.split(".");
  225.        var out = [];
  226.        for (var i=0; i < domain_array.length; ++i) {
  227.            var s = domain_array[i];
  228.            out.push(
  229.                s.match(/[^A-Za-z0-9-]/) ?
  230.                "xn--" + punycode.encode(s) :
  231.                s
  232.            );
  233.        }
  234.        return out.join(".");
  235.    }
  236.    this.ToUnicode = function ( domain ) {
  237.        var domain_array = domain.split(".");
  238.        var out = [];
  239.        for (var i=0; i < domain_array.length; ++i) {
  240.            var s = domain_array[i];
  241.            out.push(
  242.                s.match(/^xn--/) ?
  243.                punycode.decode(s.slice(4)) :
  244.                s
  245.            );
  246.        }
  247.        return out.join(".");
  248.    }
  249. }();
  250. </script>
  251.    <style>
  252.        html {
  253.            height: 100%;
  254.        }
  255.  
  256.        header {
  257.            flex: 1 0 auto;
  258.        }
  259.  
  260.        body {
  261.            display: flex;
  262.            flex-direction: column;
  263.            height: 100%;
  264.            margin: 0;
  265.            font-family: 'Noto Sans', sans-serif;
  266.            color: #14295E;
  267.        }
  268.        h1 {
  269.            font-size: 28px;
  270.            line-height: 30px;
  271.            margin-top: 0;
  272.            margin-bottom: 10px;
  273.        }
  274.        a {
  275.            color: #14295E;
  276.        }
  277.        .wrapper {
  278.            flex: 1 0 auto;
  279.            margin: 0 auto;
  280.            max-width: 1024px;
  281.        }
  282.  
  283.        .logo {
  284.            padding: 30px 40px;
  285.        }
  286.  
  287.        .content {
  288.            display: flex;
  289.            justify-content: space-between;
  290.            margin: 0 82px;
  291.        }
  292.  
  293.        .left {
  294.            display: flex;
  295.            flex-direction: column;
  296.            align-items: flex-start;
  297.            justify-content: center;
  298.            width: 420px;
  299.        }
  300.        .text {
  301.            font-size: 15px;
  302.            line-height: 20px;
  303.        }
  304.        .image-wrapper {
  305.            width: 281px;
  306.        }
  307.        .banner {
  308.            margin-top: 160px;
  309.            margin-left: 120px;
  310.            margin-right: 120px;
  311.        }
  312.  
  313.        footer {
  314.            display: grid;
  315.            grid-template: "logo links"
  316.                "text links";
  317.            grid-template-columns: 1fr 365px;
  318.            flex: 0 0 auto;
  319.            padding: 20px 44px;
  320.            border-top: 1px solid #DFE2EA;
  321.        }
  322.  
  323.        .footer-logo {
  324.            grid-area: logo;
  325.        }
  326.  
  327.        .footer-text {
  328.            grid-area: text;
  329.            color: #8994AF;
  330.            font-size: 10px;
  331.        }
  332.  
  333.        .footer-links {
  334.            display: grid;
  335.            grid-area: links;
  336.            grid-template-columns: repeat(2, 1fr);
  337.            grid-column-gap: 80px;
  338.            grid-row-gap: 10px;
  339.            font-size: 13px;
  340.        }
  341.  
  342.        .footer-links>a {
  343.            text-decoration: none;
  344.        }
  345.  
  346.        .footer-links>a:hover {
  347.            text-decoration: underline;
  348.        }
  349.  
  350.        @media only screen and (max-width: 960px) {
  351.            h1 {
  352.                margin-top: 22px;
  353.            }
  354.            .logo {
  355.                padding: 20px 15px 15px;
  356.            }
  357.            .content {
  358.                flex-direction: column-reverse;
  359.                align-items: center;
  360.                margin: 0 15px;
  361.            }
  362.            .image-wrapper {
  363.                width: 190px;
  364.            }
  365.            .left {
  366.                width: auto;
  367.            }
  368.            .banner {
  369.                margin-top: 40px;
  370.                margin-left: 15px;
  371.                margin-right: 15px;
  372.            }
  373.            footer {
  374.                display: block;
  375.                padding: 27px 27px 20px 30px;
  376.            }
  377.            .footer-links {
  378.                padding: 14px 0;
  379.                margin: 14px 0;
  380.                border-top: 1px solid #F3F4F7;
  381.                border-bottom: 1px solid #F3F4F7;
  382.            }
  383.        }
  384.    </style>
  385. </head>
  386. <body>
  387.  
  388.    <header>
  389.        <div class="logo">
  390.            <svg width="100" height="42" viewBox="0 0 100 42" fill="none" xmlns="http://www.w3.org/2000/svg">
  391.                <path d="M39.2312 20.9475C38.5291 20.9475 37.8711 20.8599 37.2572 20.6853C36.643 20.5101 36.1075 20.2386 35.6492 19.8703C35.2028 19.5083 34.8549 19.0539 34.6046 18.5081C34.354 17.9616 34.2285 17.3299 34.2285 16.6124C34.2285 15.6855 34.4043 14.8246 34.7557 14.0302C35.1069 13.2354 35.6004 12.5411 36.235 11.9456C36.8587 11.3621 37.6191 10.9003 38.5167 10.5599C39.4146 10.219 40.3862 10.0491 41.43 10.0491C42.0596 10.0491 42.6839 10.1195 43.304 10.2608C43.9238 10.4019 44.4992 10.6071 45.0306 10.8765L44.3344 13.7005H43.8667C43.5072 13.2651 43.0992 12.9417 42.6442 12.73C42.1892 12.5185 41.6776 12.4122 41.1093 12.4122C40.0711 12.4122 39.2371 12.7831 38.6084 13.5229C37.9788 14.2621 37.6643 15.1854 37.6643 16.2902C37.6643 17.0582 37.8584 17.6323 38.2463 18.0124C38.6344 18.3932 39.2371 18.5838 40.056 18.5838C40.6907 18.5838 41.2696 18.4531 41.7921 18.193C42.3143 17.9322 42.7617 17.643 43.1347 17.324H43.6016L42.9054 20.1468C42.2457 20.4352 41.6667 20.6404 41.1694 20.7634C40.6714 20.8857 40.0247 20.9475 39.2312 20.9475Z"
  392.                      fill="#14295E"/>
  393.                <path d="M53.1509 14.1788C53.1695 14.0678 53.1828 13.9659 53.1923 13.8744C53.2017 13.7815 53.2065 13.6867 53.2065 13.5876C53.2065 13.1011 53.0556 12.7287 52.7556 12.47C52.455 12.211 52.0227 12.0815 51.4591 12.0815C50.7787 12.0815 50.2065 12.2666 49.7435 12.636C49.2798 13.0064 48.9298 13.5204 48.6905 14.1788H53.1509ZM50.6269 20.948C48.8727 20.948 47.5192 20.5584 46.5648 19.7785C45.6118 18.9989 45.1343 17.922 45.1343 16.5476C45.1343 15.6088 45.2902 14.7467 45.602 13.9614C45.9136 13.1759 46.363 12.486 46.9503 11.8903C47.5121 11.3132 48.2153 10.8571 49.0582 10.5185C49.9023 10.1814 50.829 10.0122 51.8381 10.0122C53.371 10.0122 54.5287 10.3243 55.3083 10.9474C56.0872 11.5707 56.4772 12.4905 56.4772 13.706C56.4772 14.1239 56.4352 14.5317 56.3532 14.9311C56.2704 15.3303 56.1618 15.7267 56.0275 16.119H48.3689V16.3311C48.3689 17.0477 48.6204 17.6093 49.121 18.0138C49.6236 18.4189 50.3929 18.6208 51.4278 18.6208C52.1503 18.6208 52.834 18.4985 53.4804 18.2532C54.1263 18.0082 54.6887 17.7343 55.1659 17.4347H55.5337L54.9183 20.0924C54.2769 20.3745 53.6017 20.5878 52.8923 20.7312C52.184 20.8758 51.4287 20.948 50.6269 20.948Z"
  394.                      fill="#14295E"/>
  395.                <path d="M68.7965 10.7206C68.2832 10.2734 67.5642 10.0494 66.6405 10.0494C65.9678 10.0494 65.3521 10.1757 64.792 10.4257C64.2317 10.6779 63.6136 11.0274 62.9346 11.475L63.2065 10.3343L58.7385 10.3351L58.2337 12.5144H59.3852L57.5098 20.6619H60.8287L62.5044 13.3418C62.9323 13.1149 63.3172 12.9453 63.6601 12.831C64.0021 12.7178 64.305 12.6611 64.5681 12.6611C65.1059 12.6611 65.4755 12.7529 65.6772 12.9364C65.879 13.1214 65.9802 13.4122 65.9802 13.8107C65.9802 14.0439 65.9556 14.2963 65.9062 14.5651C65.858 14.8347 65.7908 15.1599 65.7059 15.5395L64.5355 20.6619H67.8761L69.4119 13.9393C69.466 13.7071 69.5068 13.4832 69.5305 13.2679C69.5547 13.0534 69.5666 12.8539 69.5666 12.67C69.5666 11.818 69.3098 11.1679 68.7965 10.7206Z"
  396.                      fill="#14295E"/>
  397.                <path d="M86.2181 14.1788C86.2359 14.0678 86.2498 13.9659 86.259 13.8744C86.2684 13.7815 86.2735 13.6867 86.2735 13.5876C86.2735 13.1011 86.1229 12.7287 85.822 12.47C85.522 12.211 85.0897 12.0815 84.5255 12.0815C83.8448 12.0815 83.2732 12.2666 82.8105 12.636C82.3474 13.0064 81.9971 13.5204 81.7569 14.1788H86.2181ZM83.6942 20.948C81.9394 20.948 80.5859 20.5584 79.632 19.7785C78.6788 18.9989 78.2007 17.922 78.2007 16.5476C78.2007 15.6088 78.3569 14.7467 78.6684 13.9614C78.9803 13.1759 79.4297 12.486 80.017 11.8903C80.5791 11.3132 81.2818 10.8571 82.1255 10.5185C82.9693 10.1814 83.8951 10.0122 84.9042 10.0122C86.4383 10.0122 87.5954 10.3243 88.375 10.9474C89.1545 11.5707 89.5439 12.4905 89.5439 13.706C89.5439 14.1239 89.5022 14.5317 89.4196 14.9311C89.3377 15.3303 89.2285 15.7267 89.0939 16.119H81.4356V16.3311C81.4356 17.0477 81.6865 17.6093 82.1886 18.0138C82.6909 18.4189 83.4593 18.6208 84.4945 18.6208C85.217 18.6208 85.9013 18.4985 86.5468 18.2532C87.1936 18.0082 87.7557 17.7343 88.2329 17.4347H88.6004L87.9856 20.0924C87.3436 20.3745 86.6681 20.5878 85.9596 20.7312C85.2501 20.8758 84.4954 20.948 83.6942 20.948Z"
  398.                      fill="#14295E"/>
  399.                <path d="M99.2681 13.4888H98.9758C98.8288 13.4395 98.622 13.403 98.3533 13.3789C98.0853 13.3543 97.8202 13.3412 97.5578 13.3412C97.124 13.3412 96.7066 13.3742 96.3042 13.438C95.9013 13.5028 95.4868 13.6046 95.0607 13.7463L93.4622 20.6619H90.1421L92.5276 10.3339H95.8489L95.4986 11.8518C96.1202 11.3921 96.7406 11.0182 97.3604 10.7295C97.9791 10.4418 98.6033 10.2974 99.2315 10.2974C99.3474 10.2974 99.4773 10.3007 99.6202 10.3066C99.764 10.3129 99.8906 10.3221 99.9998 10.3339L99.2681 13.4888Z"
  400.                      fill="#14295E"/>
  401.                <path d="M76.5138 10.3344L77.1899 7.38243H73.8798L73.2017 10.3344H71.8428L71.3381 12.5143H72.7301L70.8579 20.6624H74.168C74.1881 20.5789 74.205 20.4949 74.2248 20.4111L76.0396 12.5143H78.2428L78.7443 10.3344H76.5138Z"
  402.                      fill="#14295E"/>
  403.                <path d="M11.7508 12.4608C11.4899 12.2898 11.1042 12.2045 10.5951 12.2045H9.2993L8.66681 14.9427H9.9554C10.6505 14.9427 11.1891 14.8008 11.5705 14.5163C11.9524 14.2315 12.1431 13.8362 12.1431 13.3319C12.1431 12.9221 12.0131 12.6313 11.7508 12.4608ZM24.9706 16.7962C24.6395 18.2069 24.0778 19.23 23.2867 19.8664C22.4953 20.5029 21.3494 20.8215 19.8493 20.8215C18.5122 20.8215 17.5007 20.5807 16.8142 20.0993C16.1277 19.6176 15.7851 18.8891 15.7851 17.9117C15.7851 17.7115 15.8003 17.5081 15.8321 17.3026C15.8639 17.0971 15.898 16.91 15.935 16.7413L17.3935 10.4298H20.0342L18.5801 16.7478C18.5474 16.8758 18.5218 17.0166 18.501 17.1692C18.4796 17.3216 18.47 17.449 18.47 17.5491C18.47 17.9779 18.5986 18.3037 18.8564 18.5247C19.1129 18.7459 19.539 18.857 20.1346 18.857C20.7132 18.857 21.1801 18.6966 21.5364 18.3774C21.8932 18.0581 22.1495 17.561 22.3046 16.8853L23.7972 10.4298H26.4429L24.9706 16.7962ZM14.551 20.6232H11.6275L9.71537 16.8853H8.24415L7.38202 20.6232H4.764L7.10776 10.4298H11.071C12.313 10.4298 13.272 10.6403 13.9504 11.0624C14.6279 11.4847 14.9663 12.13 14.9663 12.9963C14.9663 13.8139 14.7186 14.5002 14.2228 15.0568C13.7274 15.6139 13.055 16.0339 12.2038 16.3169L14.551 20.6232ZM15.7148 0C7.0353 0 0 7.06316 0 15.7755C0 24.4884 7.0353 31.5513 15.7148 31.5513C24.3941 31.5513 31.4311 24.4884 31.4311 15.7755C31.4311 7.06316 24.3941 0 15.7148 0Z"
  404.                      fill="#14295E"/>
  405.                <path d="M67.6909 29.0176C79.3004 28.8359 89.1729 30.3268 99.1019 32.6982C90.5281 28.8251 81.2373 26.3193 70.6522 25.6576C68.319 25.5117 65.9229 25.4555 63.4578 25.4939C43.5033 25.8058 25.779 32.2138 14.1929 42C28.0245 34.4046 46.8631 29.342 67.6909 29.0176Z"
  406.                      fill="#EF3F23"/>
  407.            </svg>
  408.        </div>
  409.    </header>
  410.    <div class="wrapper">
  411.    <div class="content">
  412.        <div class="left">
  413.            <h1>
  414.                Сайт <script>document.write(punycode.ToUnicode(location.hostname));</script> временно недоступен
  415.            </h1>
  416.            <div class="text">
  417.                Если вы администратор этого сайта, <a href="https://www.nic.ru/manager/prolong.cgi">оплатите продление работы хостинга</a> в разделе «Для клиентов». Как только оплата пройдет, сайт снова начнёт работать.
  418.            </div>
  419.        </div>
  420.        <div class="image-wrapper">
  421.            <svg viewBox="0 0 281 326" fill="none" xmlns="http://www.w3.org/2000/svg">
  422.                <path opacity="0.1" d="M176.683 233.993L84.0835 263.791C75.8229 266.449 74.6367 277.646 82.1569 281.976L156.19 324.604C158.417 325.886 161.051 326.262 163.548 325.653L249.368 304.74C251.92 304.118 254.125 302.517 255.506 300.282L267.18 281.397C269.162 278.191 269.173 274.143 267.208 270.927L247.197 238.164C245.377 235.183 242.133 233.368 238.64 233.376L179.723 233.512C178.691 233.515 177.666 233.677 176.683 233.993Z" fill="#14295E"/>
  423.                <path d="M66.2249 16.2655L104.655 1.2684L108.717 3.45548V249.346L69.3493 271.841L65.2876 269.654L54.9528 150.196L38.1054 155.301L34.0436 153.114L32.4814 134.055L57.1642 119.996L66.2249 16.2655Z" fill="#DFE2EA"/>
  424.                <path d="M66.2249 16.2655L104.655 1.2684L108.717 3.45548M66.2249 16.2655L57.1642 119.996M66.2249 16.2655L70.2867 18.4526M57.1642 119.996L32.4814 134.055M57.1642 119.996L61.2259 122.183M32.4814 134.055L34.0436 153.114L38.1054 155.301M32.4814 134.055L36.5432 136.242M69.3493 271.841L108.717 249.346V3.45548M69.3493 271.841L58.7264 149.052L54.9528 150.196M69.3493 271.841L65.2876 269.654L54.9528 150.196M108.717 3.45548L70.2867 18.4526M70.2867 18.4526L61.2259 122.183M61.2259 122.183L36.5432 136.242M36.5432 136.242L38.1054 155.301M38.1054 155.301L54.9528 150.196" stroke="#14295E" stroke-width="2" stroke-linecap="round" stroke-linejoin="bevel"/>
  425.                <path d="M196.053 53.7034L108.57 3.40056L70.1398 18.3977L157.623 68.7005L196.053 53.7034Z" fill="#FAFAFA" stroke="#14295E" stroke-width="2" stroke-linecap="round" stroke-linejoin="bevel"/>
  426.                <path d="M148.25 172.43L157.623 68.7005L70.14 18.3977L61.0792 122.128L148.25 172.43Z" fill="#FAFAFA" stroke="#14295E" stroke-width="2" stroke-linecap="round" stroke-linejoin="bevel"/>
  427.                <path d="M140.619 138.936L146.1 78.2744C146.539 73.4164 144.112 68.7469 139.883 66.3154L89.2152 37.1814C87.6614 36.288 85.9498 36.1458 84.4196 36.5778C83.3784 37.5699 82.663 38.9361 82.5224 40.5464L77.2219 101.228C76.7992 106.067 79.2186 110.712 83.4256 113.14L133.919 142.278C135.475 143.175 137.19 143.319 138.723 142.886C139.76 141.898 140.474 140.539 140.619 138.936Z" fill="white"/>
  428.                <path fill-rule="evenodd" clip-rule="evenodd" d="M137.723 142.886C136.19 143.319 134.475 143.175 132.919 142.278L82.4257 113.14C78.2186 110.712 75.7993 106.067 76.222 101.228L81.5225 40.5464C81.6631 38.9361 82.3785 37.5699 83.4197 36.5778C81.0509 37.2465 79.1167 39.291 78.8753 42.0548L73.5748 102.736C73.1521 107.575 75.5715 112.22 79.7785 114.648L130.272 143.786C132.83 145.262 135.821 144.699 137.723 142.886Z" fill="white"/>
  429.                <path d="M83.4197 36.5778C82.3785 37.5699 81.6631 38.9361 81.5225 40.5464L76.222 101.228C75.7993 106.067 78.2186 110.712 82.4257 113.14L132.919 142.278C134.475 143.175 136.19 143.319 137.723 142.886M83.4197 36.5778C81.0509 37.2465 79.1167 39.291 78.8753 42.0548L73.5748 102.736C73.1521 107.575 75.5715 112.22 79.7785 114.648L130.272 143.786C132.83 145.262 135.821 144.699 137.723 142.886M83.4197 36.5778C84.9499 36.1458 86.6615 36.288 88.2152 37.1814L138.883 66.3154C143.112 68.7469 145.539 73.4164 145.1 78.2744L139.619 138.936C139.474 140.539 138.76 141.898 137.723 142.886" stroke="#14295E" stroke-width="2" stroke-linecap="round" stroke-linejoin="bevel"/>
  430.                <path d="M116.01 81.5175L116.192 79.8321L108.362 75.3116L108.18 76.997L105.146 75.2453L104.928 77.2678L103.166 76.2506L102.79 79.7338L101.42 78.9427L100.062 91.5272L101.726 92.4878L101.337 96.0833L102.806 96.9309L102.587 98.9534L105.817 100.818L105.635 102.504L113.269 106.911L113.475 105.001L116.509 106.753L116.898 103.157L118.659 104.174L119.072 100.354L120.735 101.315L121.706 92.3257L120.042 91.3651L120.43 87.7695L118.864 86.8654L119.24 83.3822L116.01 81.5175Z" fill="#FDD906" stroke="#14295E" stroke-width="2"/>
  431.                <path d="M116.01 81.5175L116.192 79.8321L108.362 75.3116L108.18 76.997L105.146 75.2453L104.928 77.2678L103.166 76.2507L102.79 79.7339L101.42 78.9428L100.062 91.5272L101.726 92.4878L101.338 96.0834L102.806 96.931L102.587 98.9535L105.817 100.818L105.635 102.504L113.269 106.911L113.475 105.001L116.51 106.753L116.898 103.157L118.659 104.174L119.072 100.354L120.735 101.315L121.706 92.3257L120.042 91.3651L120.43 87.7696L118.864 86.8655L119.24 83.3823L116.01 81.5175Z" fill="#DFE2EA" stroke="#14295E" stroke-width="2"/>
  432.                <path d="M102.21 96.0322L102.646 91.9872L100.982 91.0266L102.21 80.3743L103.58 81.1654L103.956 77.6822L105.717 78.6994L105.936 76.6769L108.97 78.4286L109.152 76.7432L115.497 80.504" stroke="white" stroke-width="2"/>
  433.                <path d="M114.044 85.2767L109.347 82.5644L107.794 96.9466" stroke="white" stroke-width="2"/>
  434.                <path d="M114.087 84.5845L112.404 99.612L107.224 96.6216" stroke="#14295E" stroke-width="2"/>
  435.                <path d="M148.25 172.431L61.0791 122.128L36.3964 136.187L123.88 186.49L148.25 172.431Z" fill="#FAFAFA" stroke="#14295E" stroke-width="2" stroke-linecap="round" stroke-linejoin="bevel"/>
  436.                <path d="M156.686 322.089L69.2025 271.786L68.6446 265.85L68.2921 262.101L57.9547 152.122L146.063 199.3L155.848 312.404L156.686 322.089Z" fill="#DFE2EA"/>
  437.                <path d="M68.2921 262.101L68.6446 265.85L69.2025 271.786L156.686 322.089L155.848 312.404M68.2921 262.101L57.9547 152.122L146.063 199.3L155.848 312.404M68.2921 262.101L155.848 312.404" stroke="#14295E" stroke-width="2" stroke-linecap="round" stroke-linejoin="bevel"/>
  438.                <path d="M125.442 205.549L37.9586 155.246L36.3964 136.188L123.88 186.49L125.442 205.549Z" fill="#FAFAFA" stroke="#14295E" stroke-width="2" stroke-linecap="round" stroke-linejoin="bevel"/>
  439.                <path d="M157.623 68.6926L196.053 53.6955L200.115 55.8826V301.773L160.747 324.268L156.686 322.081L146.351 202.623L129.503 207.728L125.442 205.541L123.88 186.482L148.562 172.423L157.623 68.6926Z" fill="#DFE2EA"/>
  440.                <path d="M157.623 68.6926L196.053 53.6955L200.115 55.8826M157.623 68.6926L148.562 172.423M157.623 68.6926L161.685 70.8797M148.562 172.423L123.88 186.482M148.562 172.423L152.624 174.61M123.88 186.482L125.442 205.541L129.503 207.728M123.88 186.482L127.941 188.67M160.747 324.268L200.115 301.773V55.8826M160.747 324.268L150.124 201.48L146.351 202.623M160.747 324.268L156.686 322.081L146.351 202.623M200.115 55.8826L161.685 70.8797M161.685 70.8797L152.624 174.61M152.624 174.61L127.941 188.67M127.941 188.67L129.503 207.728M129.503 207.728L146.351 202.623" stroke="#14295E" stroke-width="2" stroke-linecap="round" stroke-linejoin="bevel"/>
  441.                <path d="M142.769 162.913L138.707 160.726L139.84 147.76L143.901 149.947L142.769 162.913Z" stroke="#EF3F23" stroke-width="2" stroke-linecap="round" stroke-linejoin="bevel"/>
  442.                <path d="M72.076 224.587L71.0154 214.854L73.2791 216.163L74.3396 225.896L72.076 224.587Z" fill="#14295E"/>
  443.                <path d="M75.9116 226.806L74.8511 217.072L77.209 218.436L79.7433 225.528C79.5577 224.473 79.4061 223.568 79.2885 222.813C79.175 222.06 79.0908 221.431 79.0357 220.925L78.869 219.396L80.8875 220.563L81.948 230.297L79.5837 228.929L77.0169 221.647C77.1884 222.5 77.3364 223.318 77.461 224.101C77.5893 224.882 77.6922 225.628 77.7698 226.34L77.9489 227.984L75.9116 226.806Z" fill="#14295E"/>
  444.                <path d="M82.8775 227.743L84.9525 228.943L84.9835 229.227C85.0418 229.762 85.1458 230.176 85.2954 230.468C85.4451 230.76 85.6687 230.992 85.9663 231.164C86.2053 231.302 86.385 231.329 86.5054 231.244C86.6254 231.156 86.6697 230.968 86.6385 230.682C86.5871 230.21 86.2003 229.562 85.4781 228.737C85.3608 228.599 85.2708 228.493 85.208 228.421L85.0935 228.29C84.1168 227.149 83.5004 226.358 83.2443 225.918C83.0593 225.59 82.9088 225.254 82.7928 224.91C82.6768 224.567 82.5998 224.22 82.5617 223.871C82.4689 223.02 82.6414 222.493 83.0791 222.293C83.5167 222.092 84.1652 222.24 85.0246 222.737C85.9594 223.277 86.6979 223.927 87.2403 224.687C87.7868 225.449 88.1092 226.281 88.2075 227.183C88.2116 227.221 88.2152 227.272 88.2184 227.337C88.2215 227.402 88.2252 227.454 88.2293 227.492L86.1983 226.317L86.1852 226.197C86.1389 225.772 86.0367 225.41 85.8786 225.114C85.7248 224.82 85.5222 224.6 85.2706 224.454C85.0568 224.331 84.8935 224.309 84.7805 224.39C84.6671 224.466 84.6241 224.631 84.6517 224.884C84.6967 225.297 85.1133 225.948 85.9016 226.839C86.0454 227.005 86.1554 227.131 86.2318 227.219C86.2941 227.287 86.3816 227.387 86.4942 227.519C87.3416 228.483 87.8952 229.202 88.155 229.676C88.3177 229.979 88.4502 230.294 88.5527 230.622C88.6589 230.948 88.7302 231.278 88.7664 231.61C88.8725 232.584 88.7027 233.188 88.2571 233.424C87.8114 233.66 87.1212 233.507 86.1864 232.967C85.2055 232.4 84.4404 231.722 83.8911 230.935C83.3455 230.145 83.0186 229.254 82.9102 228.259C82.9033 228.196 82.8962 228.131 82.8889 228.063C82.8853 227.994 82.8815 227.887 82.8775 227.743Z" fill="#14295E"/>
  445.                <path d="M90.2983 235.126L89.2378 225.392L94.5071 228.44L94.713 230.33L91.6948 228.584L91.8897 230.373L94.6752 231.984L94.888 233.937L92.1025 232.326L92.3339 234.449L95.3521 236.195L95.5676 238.173L90.2983 235.126Z" fill="#14295E"/>
  446.                <path d="M98.5955 234.6C98.6332 234.622 98.6817 234.652 98.7408 234.69C98.8042 234.731 98.8505 234.76 98.8798 234.777C99.3493 235.048 99.6702 235.145 99.8423 235.067C100.019 234.991 100.082 234.728 100.033 234.277C99.9877 233.86 99.8571 233.508 99.6412 233.221C99.4291 232.933 99.0883 232.653 98.6188 232.381C98.5895 232.364 98.5436 232.34 98.4812 232.307C98.423 232.278 98.375 232.252 98.3373 232.23L98.5955 234.6ZM96.9761 238.988L95.9156 229.254L98.4622 230.727C99.2964 231.21 99.9065 231.6 100.292 231.898C100.678 232.192 100.998 232.502 101.254 232.827C101.555 233.215 101.791 233.614 101.962 234.024C102.136 234.437 102.249 234.873 102.299 235.332C102.36 235.893 102.312 236.306 102.157 236.571C102.005 236.839 101.737 236.976 101.353 236.983C102.087 237.699 102.537 238.652 102.702 239.841L102.705 239.873C102.723 239.997 102.746 240.177 102.775 240.411C102.912 241.516 103.167 242.307 103.541 242.784L100.893 241.253C100.813 241.017 100.746 240.781 100.693 240.545C100.643 240.307 100.605 240.062 100.577 239.809C100.56 239.653 100.544 239.468 100.528 239.254C100.512 239.035 100.501 238.892 100.493 238.825C100.429 238.231 100.307 237.779 100.128 237.47C99.9488 237.162 99.6581 236.891 99.2557 236.658L98.7904 236.389L99.2146 240.282L96.9761 238.988Z" fill="#14295E"/>
  447.                <path d="M105.704 244.035L104.849 236.192L103.038 235.144L102.832 233.254L108.818 236.716L109.024 238.606L107.119 237.504L107.974 245.348L105.704 244.035Z" fill="#14295E"/>
  448.                <path d="M75.3044 237.961L76.606 238.714L75.4955 234.092L75.3044 237.961ZM72.9008 239.965L73.9531 231.453L76.6443 233.01L79.7924 243.95L77.5288 242.641L77.0426 240.613L75.2632 239.584L75.1834 241.285L72.9008 239.965Z" fill="#14295E"/>
  449.                <path d="M87.6946 244.991L89.9205 246.278C89.9311 246.34 89.9401 246.404 89.9475 246.471C89.959 246.541 89.9721 246.644 89.9868 246.778C90.1163 247.967 89.9525 248.699 89.4956 248.976C89.0425 249.251 88.2814 249.079 87.2125 248.461C86.5837 248.097 86.0335 247.68 85.562 247.21C85.0906 246.74 84.6933 246.212 84.3702 245.627C84.1444 245.212 83.9601 244.71 83.8175 244.123C83.6749 243.535 83.5398 242.655 83.4122 241.484C83.2845 240.312 83.2332 239.481 83.2583 238.99C83.2834 238.5 83.3758 238.158 83.5356 237.966C83.7622 237.703 84.0861 237.594 84.5075 237.64C84.9285 237.682 85.447 237.881 86.0632 238.238C87.1238 238.851 87.9505 239.608 88.5435 240.507C89.1401 241.405 89.5027 242.444 89.6313 243.624L89.6416 243.718L87.4401 242.439C87.3597 241.773 87.2337 241.266 87.0623 240.918C86.8904 240.566 86.6367 240.293 86.3014 240.099C85.9367 239.888 85.7052 239.908 85.6068 240.159C85.508 240.406 85.5349 241.229 85.6873 242.628L85.7072 242.811C85.8711 244.315 86.0388 245.277 86.2101 245.696C86.381 246.11 86.6487 246.423 87.0134 246.634C87.353 246.83 87.5765 246.845 87.684 246.678C87.7953 246.51 87.8144 246.091 87.7414 245.421L87.6946 244.991Z" fill="#14295E"/>
  450.                <path d="M95.3669 249.221L95.1754 247.464C95.0579 246.385 94.9162 245.679 94.7503 245.346C94.5882 245.012 94.3289 244.741 93.9726 244.535C93.6247 244.334 93.3979 244.325 93.2922 244.509C93.1865 244.693 93.1918 245.318 93.3079 246.384L93.4994 248.141C93.6142 249.194 93.7533 249.894 93.9168 250.242C94.0799 250.585 94.3396 250.859 94.6959 251.065C95.048 251.269 95.2769 251.279 95.3826 251.095C95.4883 250.912 95.483 250.287 95.3669 249.221ZM91.096 245.927C90.9684 244.756 90.9171 243.925 90.9422 243.434C90.9672 242.943 91.0596 242.602 91.2194 242.41C91.4493 242.14 91.7772 242.032 92.2032 242.085C92.6288 242.134 93.156 242.34 93.7848 242.703C94.4178 243.069 94.9658 243.485 95.4289 243.95C95.8958 244.414 96.291 244.94 96.6145 245.53C96.8492 245.954 97.0378 246.46 97.1805 247.048C97.3231 247.636 97.4579 248.513 97.5851 249.68C97.7118 250.843 97.7629 251.672 97.7383 252.167C97.7132 252.658 97.6168 252.999 97.4491 253.19C97.223 253.458 96.8972 253.568 96.4716 253.519C96.0502 253.473 95.5251 253.268 94.8963 252.904C94.2675 252.541 93.7174 252.124 93.2459 251.654C92.7744 251.184 92.3771 250.656 92.0541 250.07C91.8282 249.656 91.6439 249.154 91.5013 248.566C91.3587 247.978 91.2236 247.099 91.096 245.927Z" fill="#14295E"/>
  451.                <path d="M99.505 255.351L98.4445 245.617L100.708 246.926L101.769 256.66L99.505 255.351Z" fill="#14295E"/>
  452.                <path d="M103.341 257.569L102.28 247.836L104.638 249.199L107.172 256.291C106.987 255.236 106.835 254.331 106.718 253.576C106.604 252.823 106.52 252.194 106.465 251.689L106.298 250.159L108.317 251.327L109.217 260.842L107.013 259.693L104.446 252.41C104.617 253.264 104.765 254.082 104.89 254.864C105.018 255.645 105.121 256.392 105.199 257.104L105.378 258.747L103.341 257.569Z" fill="#14295E"/>
  453.                <path d="M76.3038 256.833L75.4491 248.99L73.6382 247.942L73.4323 246.053L79.4184 249.514L79.6243 251.404L77.7191 250.302L78.5737 258.146L76.3038 256.833Z" fill="#14295E"/>
  454.                <path d="M84.9553 258.1L84.7638 256.343C84.6463 255.264 84.5046 254.558 84.3387 254.225C84.1766 253.891 83.9173 253.621 83.561 253.414C83.2131 253.213 82.9863 253.204 82.8806 253.388C82.7749 253.572 82.7802 254.197 82.8963 255.263L83.0878 257.02C83.2025 258.073 83.3417 258.773 83.5052 259.121C83.6683 259.464 83.928 259.738 84.2843 259.944C84.6364 260.148 84.8653 260.158 84.971 259.974C85.0767 259.791 85.0714 259.166 84.9553 258.1ZM80.6844 254.807C80.5567 253.635 80.5055 252.804 80.5305 252.313C80.5556 251.822 80.648 251.481 80.8078 251.289C81.0376 251.019 81.3656 250.911 81.7916 250.964C82.2172 251.013 82.7444 251.219 83.3732 251.582C84.0062 251.949 84.5542 252.364 85.0173 252.829C85.4842 253.293 85.8793 253.82 86.2028 254.409C86.4376 254.833 86.6262 255.339 86.7688 255.927C86.9114 256.515 87.0463 257.392 87.1735 258.559C87.3002 259.722 87.3513 260.551 87.3266 261.047C87.3016 261.537 87.2052 261.878 87.0375 262.07C86.8114 262.338 86.4855 262.447 86.06 262.399C85.6386 262.352 85.1135 262.147 84.4847 261.784C83.8559 261.42 83.3057 261.003 82.8343 260.533C82.3628 260.063 81.9655 259.535 81.6425 258.95C81.4166 258.535 81.2323 258.033 81.0897 257.445C80.9471 256.858 80.812 255.978 80.6844 254.807Z" fill="#14295E"/>
  455.                <path d="M96.109 264.758L98.3349 266.045C98.3455 266.106 98.3545 266.171 98.3618 266.238C98.3734 266.308 98.3865 266.41 98.4012 266.545C98.5307 267.733 98.3669 268.466 97.91 268.742C97.4569 269.017 96.6958 268.846 95.6269 268.227C94.9981 267.864 94.4479 267.447 93.9764 266.977C93.5049 266.507 93.1077 265.979 92.7846 265.393C92.5588 264.978 92.3745 264.477 92.2319 263.889C92.0893 263.301 91.9542 262.422 91.8265 261.25C91.6989 260.079 91.6476 259.248 91.6727 258.757C91.6978 258.266 91.7902 257.925 91.95 257.733C92.1765 257.469 92.5005 257.361 92.9219 257.407C93.3428 257.449 93.8614 257.648 94.4776 258.004C95.5382 258.618 96.3649 259.374 96.9579 260.274C97.5545 261.172 97.9171 262.21 98.0457 263.39L98.056 263.485L95.8545 262.206C95.7741 261.54 95.6481 261.032 95.4767 260.685C95.3048 260.333 95.0511 260.059 94.7158 259.866C94.3511 259.655 94.1196 259.675 94.0212 259.926C93.9224 260.173 93.9492 260.996 94.1017 262.394L94.1216 262.578C94.2855 264.082 94.4532 265.044 94.6245 265.462C94.7954 265.877 95.0631 266.19 95.4278 266.401C95.7674 266.597 95.9909 266.612 96.0984 266.445C96.2097 266.277 96.2288 265.857 96.1558 265.187L96.109 264.758Z" fill="#14295E"/>
  456.                <path d="M103.781 268.987L103.59 267.23C103.472 266.152 103.331 265.446 103.165 265.113C103.003 264.778 102.743 264.508 102.387 264.302C102.039 264.101 101.812 264.092 101.707 264.276C101.601 264.459 101.606 265.084 101.722 266.15L101.914 267.907C102.029 268.961 102.168 269.661 102.331 270.008C102.494 270.351 102.754 270.626 103.11 270.832C103.462 271.036 103.691 271.046 103.797 270.862C103.903 270.678 103.897 270.053 103.781 268.987ZM99.5104 265.694C99.3827 264.523 99.3315 263.692 99.3565 263.201C99.3816 262.71 99.474 262.369 99.6338 262.177C99.8637 261.907 100.192 261.799 100.618 261.852C101.043 261.9 101.57 262.106 102.199 262.47C102.832 262.836 103.38 263.252 103.843 263.717C104.31 264.18 104.705 264.707 105.029 265.297C105.264 265.721 105.452 266.227 105.595 266.815C105.737 267.402 105.872 268.28 106 269.447C106.126 270.61 106.177 271.439 106.153 271.934C106.128 272.425 106.031 272.766 105.863 272.957C105.637 273.225 105.312 273.335 104.886 273.286C104.465 273.24 103.939 273.035 103.311 272.671C102.682 272.308 102.132 271.891 101.66 271.421C101.189 270.951 100.792 270.423 100.468 269.837C100.243 269.422 100.058 268.921 99.9157 268.333C99.7731 267.745 99.638 266.866 99.5104 265.694Z" fill="#14295E"/>
  457.                <path d="M107.919 275.117L106.859 265.384L109.217 266.748L111.751 273.839C111.566 272.784 111.414 271.879 111.296 271.125C111.183 270.372 111.099 269.743 111.043 269.237L110.877 267.708L112.895 268.875L113.956 278.608L111.592 277.241L109.025 269.959C109.196 270.812 109.344 271.63 109.469 272.413C109.597 273.194 109.7 273.94 109.778 274.652L109.957 276.296L107.919 275.117Z" fill="#14295E"/>
  458.                <path d="M116.722 280.208L115.868 272.365L114.057 271.318L113.851 269.428L119.837 272.89L120.043 274.779L118.138 273.678L118.992 281.521L116.722 280.208Z" fill="#14295E"/>
  459.                <path d="M121.828 283.161L120.768 273.428L123.031 274.737L124.092 284.47L121.828 283.161Z" fill="#14295E"/>
  460.                <path d="M125.664 285.379L124.603 275.646L126.961 277.01L129.496 284.101C129.31 283.047 129.158 282.142 129.041 281.387C128.927 280.634 128.843 280.005 128.788 279.499L128.621 277.97L130.64 279.137L131.7 288.871L129.336 287.503L126.769 280.221C126.941 281.074 127.089 281.892 127.213 282.675C127.342 283.456 127.445 284.202 127.522 284.914L127.701 286.558L125.664 285.379Z" fill="#14295E"/>
  461.                <path d="M132.224 280.053L134.513 281.377L135.178 287.476C135.278 288.399 135.397 289.003 135.534 289.287C135.675 289.574 135.893 289.803 136.186 289.972C136.484 290.145 136.677 290.15 136.765 289.987C136.854 289.825 136.848 289.291 136.75 288.385L136.085 282.286L138.33 283.584L139.007 289.797C139.084 290.501 139.109 291.01 139.085 291.323C139.064 291.635 138.998 291.879 138.888 292.056C138.705 292.361 138.407 292.49 137.993 292.445C137.579 292.395 137.022 292.167 136.322 291.763C135.677 291.389 135.14 290.99 134.713 290.565C134.285 290.136 133.929 289.642 133.644 289.083C133.44 288.684 133.276 288.23 133.154 287.721C133.036 287.215 132.916 286.405 132.795 285.293L132.224 280.053Z" fill="#14295E"/>
  462.                <path d="M140.969 294.231L139.908 284.497L145.177 287.545L145.383 289.434L142.365 287.689L142.56 289.478L145.346 291.089L145.558 293.042L142.773 291.431L143.004 293.554L146.022 295.3L146.238 297.278L140.969 294.231Z" fill="#14295E"/>
  463.                <path d="M104.981 155.337L101.554 157.182L98.1272 162.027L103.334 164.825L106.761 162.979L110.188 161.134V158.302L104.981 155.337Z" fill="#8994AF"/>
  464.                <path d="M103.334 164.825L98.1272 162.027L101.554 157.182L104.981 155.337L110.188 158.302M103.334 164.825L106.761 160.148L110.188 158.302M103.334 164.825L106.761 162.979L110.188 161.134V158.302" stroke="#14295E" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
  465.                <path d="M116.205 162.051L112.778 163.897L109.351 168.742L114.558 171.539L117.985 169.694L121.412 167.849V165.017L116.205 162.051Z" fill="#8994AF"/>
  466.                <path d="M114.558 171.539L109.351 168.742L112.778 163.897L116.205 162.051L121.412 165.017M114.558 171.539L117.985 166.862L121.412 165.017M114.558 171.539L117.985 169.694L121.412 167.849V165.017" stroke="#14295E" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
  467.                <path d="M64.4219 135.772C65.3093 136.28 65.7357 136.95 65.7011 137.615C65.669 138.229 65.2426 138.838 64.4219 139.307C62.7137 140.283 59.9441 140.283 58.2359 139.307C57.4151 138.838 56.9887 138.229 56.9567 137.615C56.922 136.95 57.3484 136.28 58.2359 135.772C59.9441 134.796 62.7137 134.796 64.4219 135.772Z" fill="#8994AF" stroke="#14295E" stroke-width="2"/>
  468.                <path d="M62.2127 130.253C62.4663 130.399 62.5881 130.593 62.5782 130.784C62.569 130.962 62.4472 131.138 62.2127 131.273C61.7246 131.555 60.9333 131.555 60.4453 131.273C60.2108 131.138 60.0889 130.962 60.0798 130.784C60.0699 130.593 60.1917 130.399 60.4453 130.253C60.9333 129.971 61.7246 129.971 62.2127 130.253Z" fill="#DFE2EA"/>
  469.                <path d="M60.4453 137.956C60.9333 138.238 61.7246 138.238 62.2127 137.956C62.4472 137.821 62.569 137.645 62.5782 137.468V137.425V130.784C62.569 130.962 62.4472 131.138 62.2127 131.273C61.7246 131.555 60.9333 131.555 60.4453 131.273C60.2108 131.138 60.0889 130.962 60.0798 130.784L60.0798 137.425C60.0699 137.616 60.1917 137.81 60.4453 137.956Z" fill="#DFE2EA"/>
  470.                <circle cx="61.329" cy="129.126" r="3.45863" fill="#EF3F23"/>
  471.            </svg>
  472.  
  473.        </div>
  474.    </div>
  475.    <div class="banner">
  476.        <div id="adfox_158469918412142908"></div>
  477.    </div>
  478. </div>
  479. <footer>
  480.    <div class="footer-logo">
  481.        <a href="https://www.nic.ru/">
  482.            <svg width="77" height="40" viewBox="0 0 77 40" fill="none" xmlns="http://www.w3.org/2000/svg">
  483.                <path
  484.                    d="M28.2465 24.9625C27.741 24.9625 27.2673 24.8999 26.8253 24.7752C26.383 24.65 25.9975 24.4561 25.6675 24.1931C25.3461 23.9345 25.0955 23.6099 24.9153 23.22C24.7349 22.8297 24.6446 22.3785 24.6446 21.866C24.6446 21.2039 24.7711 20.589 25.0242 20.0215C25.277 19.4539 25.6323 18.9579 26.0893 18.5326C26.5383 18.1157 27.0858 17.7859 27.7321 17.5428C28.3786 17.2993 29.0781 17.1779 29.8297 17.1779C30.283 17.1779 30.7324 17.2282 31.1789 17.3292C31.6252 17.4299 32.0395 17.5765 32.4221 17.7689L31.9209 19.7861H31.5841C31.3253 19.4751 31.0315 19.2441 30.7039 19.0928C30.3763 18.9418 30.008 18.8658 29.5988 18.8658C28.8513 18.8658 28.2508 19.1308 27.7981 19.6592C27.3448 20.1872 27.1184 20.8467 27.1184 21.6359C27.1184 22.1844 27.2581 22.5945 27.5374 22.866C27.8169 23.138 28.2508 23.2741 28.8404 23.2741C29.2973 23.2741 29.7142 23.1808 30.0904 22.995C30.4664 22.8087 30.7885 22.6021 31.0571 22.3743H31.3932L30.892 24.3906C30.417 24.5966 30.0001 24.7431 29.642 24.831C29.2835 24.9184 28.8178 24.9625 28.2465 24.9625Z"
  485.                    fill="#14295E" />
  486.                <path
  487.                    d="M38.2687 20.1277C38.2821 20.0484 38.2917 19.9756 38.2985 19.9103C38.3053 19.8439 38.3087 19.7762 38.3087 19.7054C38.3087 19.3579 38.2001 19.0919 37.9841 18.9071C37.7677 18.7222 37.4565 18.6297 37.0507 18.6297C36.5607 18.6297 36.1487 18.7618 35.8154 19.0257C35.4816 19.2902 35.2296 19.6574 35.0572 20.1277H38.2687ZM36.4514 24.9628C35.1884 24.9628 34.2139 24.6845 33.5267 24.1275C32.8406 23.5706 32.4967 22.8014 32.4967 21.8197C32.4967 21.1491 32.609 20.5333 32.8335 19.9725C33.0578 19.4114 33.3814 18.9186 33.8043 18.493C34.2088 18.0809 34.7151 17.7551 35.322 17.5132C35.9298 17.2725 36.5969 17.1515 37.3235 17.1515C38.4272 17.1515 39.2607 17.3745 39.822 17.8195C40.3829 18.2648 40.6637 18.9218 40.6637 19.79C40.6637 20.0885 40.6334 20.3797 40.5744 20.6651C40.5148 20.9502 40.4366 21.2334 40.3399 21.5136H34.8257V21.665C34.8257 22.1769 35.0067 22.5781 35.3672 22.867C35.7291 23.1563 36.2829 23.3006 37.0281 23.3006C37.5483 23.3006 38.0406 23.2132 38.506 23.038C38.971 22.863 39.376 22.6674 39.7196 22.4533H39.9843L39.5413 24.3517C39.0794 24.5532 38.5933 24.7055 38.0825 24.808C37.5726 24.9113 37.0287 24.9628 36.4514 24.9628Z"
  488.                    fill="#14295E" />
  489.                <path
  490.                    d="M49.5336 17.6576C49.164 17.3381 48.6463 17.1782 47.9813 17.1782C47.4969 17.1782 47.0536 17.2683 46.6504 17.4469C46.2469 17.627 45.8019 17.8767 45.313 18.1964L45.5088 17.3816L42.2918 17.3822L41.9284 18.9389H42.7574L41.4071 24.7585H43.7968L45.0033 19.5299C45.3113 19.3678 45.5885 19.2467 45.8353 19.165C46.0816 19.0842 46.2997 19.0436 46.4891 19.0436C46.8764 19.0436 47.1424 19.1092 47.2877 19.2403C47.433 19.3724 47.5058 19.5801 47.5058 19.8648C47.5058 20.0313 47.4881 20.2116 47.4526 20.4036C47.4179 20.5962 47.3695 20.8285 47.3084 21.0996L46.4657 24.7585H48.8709L49.9766 19.9567C50.0156 19.7908 50.045 19.6308 50.0621 19.477C50.0795 19.3239 50.088 19.1813 50.088 19.05C50.088 18.4414 49.9031 17.9771 49.5336 17.6576Z"
  491.                    fill="#14295E" />
  492.                <path
  493.                    d="M62.0772 20.1277C62.09 20.0484 62.1 19.9756 62.1066 19.9103C62.1134 19.8439 62.117 19.7762 62.117 19.7054C62.117 19.3579 62.0086 19.0919 61.792 18.9071C61.576 18.7222 61.2647 18.6297 60.8585 18.6297C60.3684 18.6297 59.9568 18.7618 59.6236 19.0257C59.2903 19.2902 59.0381 19.6574 58.8651 20.1277H62.0772ZM60.2599 24.9628C58.9965 24.9628 58.022 24.6845 57.3352 24.1275C56.6488 23.5706 56.3046 22.8014 56.3046 21.8197C56.3046 21.1491 56.4171 20.5333 56.6414 19.9725C56.8659 19.4114 57.1895 18.9186 57.6123 18.493C58.0171 18.0809 58.523 17.7551 59.1305 17.5132C59.738 17.2725 60.4046 17.1515 61.1312 17.1515C62.2357 17.1515 63.0688 17.3745 63.6301 17.8195C64.1914 18.2648 64.4717 18.9218 64.4717 19.79C64.4717 20.0885 64.4417 20.3797 64.3823 20.6651C64.3233 20.9502 64.2447 21.2334 64.1477 21.5136H58.6338V21.665C58.6338 22.1769 58.8144 22.5781 59.1759 22.867C59.5376 23.1563 60.0908 23.3006 60.8361 23.3006C61.3563 23.3006 61.849 23.2132 62.3139 23.038C62.7795 22.863 63.1843 22.6674 63.5279 22.4533H63.7924L63.3498 24.3517C62.8875 24.5532 62.4012 24.7055 61.891 24.808C61.3802 24.9113 60.8368 24.9628 60.2599 24.9628Z"
  494.                    fill="#14295E" />
  495.                <path
  496.                    d="M71.4732 19.6349H71.2627C71.1569 19.5996 71.008 19.5736 70.8146 19.5564C70.6216 19.5388 70.4307 19.5294 70.2417 19.5294C69.9295 19.5294 69.6289 19.553 69.3392 19.5986C69.0491 19.6448 68.7506 19.7176 68.4439 19.8188L67.2929 24.7585H64.9024L66.62 17.3814H69.0113L68.7591 18.4656C69.2067 18.1372 69.6534 17.8701 70.0997 17.6639C70.5451 17.4584 70.9946 17.3553 71.4468 17.3553C71.5303 17.3553 71.6238 17.3576 71.7267 17.3619C71.8302 17.3663 71.9214 17.3729 72 17.3814L71.4732 19.6349Z"
  497.                    fill="#14295E" />
  498.                <path
  499.                    d="M55.0901 17.3817L55.5768 15.2732H53.1936L52.7053 17.3817H51.7269L51.3635 18.9388H52.3658L51.0178 24.7588H53.401C53.4155 24.6992 53.4277 24.6392 53.4419 24.5793L54.7486 18.9388H56.335L56.696 17.3817H55.0901Z"
  500.                    fill="#14295E" />
  501.                <path
  502.                    d="M8.46058 18.9006C8.27276 18.7784 7.99501 18.7175 7.62847 18.7175H6.69551L6.24012 20.6734H7.1679C7.66841 20.6734 8.05617 20.572 8.33077 20.3688C8.60577 20.1653 8.74309 19.883 8.74309 19.5228C8.74309 19.23 8.64946 19.0224 8.46058 18.9006ZM17.9788 21.9973C17.7405 23.0049 17.336 23.7357 16.7665 24.1903C16.1966 24.6449 15.3716 24.8725 14.2915 24.8725C13.3288 24.8725 12.6005 24.7005 12.1063 24.3566C11.612 24.0125 11.3653 23.4922 11.3653 22.794C11.3653 22.6511 11.3763 22.5058 11.3991 22.359C11.422 22.2122 11.4466 22.0785 11.4732 21.958L12.5233 17.4498H14.4247L13.3777 21.9627C13.3542 22.0541 13.3357 22.1547 13.3207 22.2637C13.3053 22.3725 13.2984 22.4635 13.2984 22.535C13.2984 22.8414 13.391 23.0741 13.5766 23.2319C13.7613 23.3899 14.0681 23.4693 14.4969 23.4693C14.9135 23.4693 15.2497 23.3547 15.5063 23.1267C15.7631 22.8986 15.9477 22.5435 16.0594 22.0609L17.134 17.4498H19.0389L17.9788 21.9973ZM10.4768 24.7308H8.37179L6.99508 22.0609H5.9358L5.31507 24.7308H3.43009L5.1176 17.4498H7.97113C8.8654 17.4498 9.55588 17.6002 10.0443 17.9017C10.5321 18.2033 10.7757 18.6643 10.7757 19.2831C10.7757 19.8671 10.5974 20.3573 10.2404 20.7548C9.88371 21.1528 9.39961 21.4527 8.78675 21.6549L10.4768 24.7308ZM11.3147 10C5.06543 10 0 15.0451 0 21.2682C0 27.4917 5.06543 32.5366 11.3147 32.5366C17.5638 32.5366 22.6304 27.4917 22.6304 21.2682C22.6304 15.0451 17.5638 10 11.3147 10Z"
  503.                    fill="#14295E" />
  504.                <path
  505.                    d="M48.7376 30.7269C57.0964 30.597 64.2046 31.6619 71.3535 33.3558C65.1804 30.5893 58.491 28.7995 50.8697 28.3268C49.1898 28.2226 47.4646 28.1825 45.6897 28.2099C31.3224 28.4327 18.5609 33.0098 10.2189 40C20.1777 34.5747 33.7415 30.9585 48.7376 30.7269Z"
  506.                    fill="#EF3F23" />
  507.            </svg>
  508.        </a>
  509.    </div>
  510.    <div class="footer-links">
  511.        <a href="https://www.nic.ru/catalog/domains/">Регистрация доменов</a>
  512.        <a href="https://www.nic.ru/catalog/hosting/vds-vps/">VPS/VDS хостинг</a>
  513.        <a href="https://www.nic.ru/catalog/hosting/">Хостинг для сайтов</a>
  514.        <a href="https://www.nic.ru/catalog/hosting/dedicated/">Аренда сервера</a>
  515.        <a href="https://www.nic.ru/catalog/hosting/shared/">Виртуальный хостинг</a>
  516.        <a href="https://www.nic.ru/catalog/ssl/">SSL-сертификаты</a>
  517.    </div>
  518.    <p class="footer-text">
  519.        &#169; АО «РСИЦ» (RU-CENTER),
  520.        <script>document.write(new Date().getFullYear())</script>
  521.    </p>
  522. </footer>
  523. <script>
  524.    window.Ya.adfoxCode.create({
  525.        ownerId: 260122,
  526.        containerId: 'adfox_158469918412142908',
  527.        params: {
  528.            pp: 'i',
  529.            ps: 'dyeo',
  530.            p2: 'fufs',
  531.            puid1: ''
  532.        }
  533.    });
  534. </script>
  535. </body>
  536. </html>
  537.  
Copyright © 2002-9 Sam Ruby, Mark Pilgrim, Joseph Walton, and Phil Ringnalda