Advertisement
Guest User

a

a guest
Nov 22nd, 2014
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. /*! jQuery v1.11.0 | (c) 2005, 2014 jQuery Foundation, Inc. | jquery.org/license */
  2. !
  3. function (a, b) {
  4.     "object" == typeof module && "object" == typeof module.exports ? module.exports = a.document ? b(a, !0) : function (a) {
  5.         if (!a.document) throw new Error("jQuery requires a window with a document");
  6.         return b(a)
  7.     } : b(a)
  8. }("undefined" != typeof window ? window : this, function (a, b) {
  9.     var c = [],
  10.         d = c.slice,
  11.         e = c.concat,
  12.         f = c.push,
  13.         g = c.indexOf,
  14.         h = {},
  15.         i = h.toString,
  16.         j = h.hasOwnProperty,
  17.         k = "".trim,
  18.         l = {},
  19.         m = "1.11.0",
  20.         n = function (a, b) {
  21.             return new n.fn.init(a, b)
  22.         },
  23.         o = /^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,
  24.         p = /^-ms-/,
  25.         q = /-([\da-z])/gi,
  26.         r = function (a, b) {
  27.             return b.toUpperCase()
  28.         };
  29.     n.fn = n.prototype = {
  30.         jquery: m,
  31.         constructor: n,
  32.         selector: "",
  33.         length: 0,
  34.         toArray: function () {
  35.             return d.call(this)
  36.         },
  37.         get: function (a) {
  38.             return null != a ? 0 > a ? this[a + this.length] : this[a] : d.call(this)
  39.         },
  40.         pushStack: function (a) {
  41.             var b = n.merge(this.constructor(), a);
  42.             return b.prevObject = this, b.context = this.context, b
  43.         },
  44.         each: function (a, b) {
  45.             return n.each(this, a, b)
  46.         },
  47.         map: function (a) {
  48.             return this.pushStack(n.map(this, function (b, c) {
  49.                 return a.call(b, c, b)
  50.             }))
  51.         },
  52.         slice: function () {
  53.             return this.pushStack(d.apply(this, arguments))
  54.         },
  55.         first: function () {
  56.             return this.eq(0)
  57.         },
  58.         last: function () {
  59.             return this.eq(-1)
  60.         },
  61.         eq: function (a) {
  62.             var b = this.length,
  63.                 c = +a + (0 > a ? b : 0);
  64.             return this.pushStack(c >= 0 && b > c ? [this[c]] : [])
  65.         },
  66.         end: function () {
  67.             return this.prevObject || this.constructor(null)
  68.         },
  69.         push: f,
  70.         sort: c.sort,
  71.         splice: c.splice
  72.     }, n.extend = n.fn.extend = function () {
  73.         var a, b, c, d, e, f, g = arguments[0] || {},
  74.             h = 1,
  75.             i = arguments.length,
  76.             j = !1;
  77.         for ("boolean" == typeof g && (j = g, g = arguments[h] || {}, h++), "object" == typeof g || n.isFunction(g) || (g = {}), h === i && (g = this, h--); i > h; h++) if (null != (e = arguments[h])) for (d in e) a = g[d], c = e[d], g !== c && (j && c && (n.isPlainObject(c) || (b = n.isArray(c))) ? (b ? (b = !1, f = a && n.isArray(a) ? a : []) : f = a && n.isPlainObject(a) ? a : {}, g[d] = n.extend(j, f, c)) : void 0 !== c && (g[d] = c));
  78.         return g
  79.     }, n.extend({
  80.         expando: "jQuery" + (m + Math.random()).replace(/\D/g, ""),
  81.         isReady: !0,
  82.         error: function (a) {
  83.             throw new Error(a)
  84.         },
  85.         noop: function () {},
  86.         isFunction: function (a) {
  87.             return "function" === n.type(a)
  88.         },
  89.         isArray: Array.isArray ||
  90.         function (a) {
  91.             return "array" === n.type(a)
  92.         },
  93.         isWindow: function (a) {
  94.             return null != a && a == a.window
  95.         },
  96.         isNumeric: function (a) {
  97.             return a - parseFloat(a) >= 0
  98.         },
  99.         isEmptyObject: function (a) {
  100.             var b;
  101.             for (b in a) return !1;
  102.             return !0
  103.         },
  104.         isPlainObject: function (a) {
  105.             var b;
  106.             if (!a || "object" !== n.type(a) || a.nodeType || n.isWindow(a)) return !1;
  107.             try {
  108.                 if (a.constructor && !j.call(a, "constructor") && !j.call(a.constructor.prototype, "isPrototypeOf")) return !1
  109.             } catch (c) {
  110.                 return !1
  111.             }
  112.             if (l.ownLast) for (b in a) return j.call(a, b);
  113.             for (b in a);
  114.             return void 0 === b || j.call(a, b)
  115.         },
  116.         type: function (a) {
  117.             return null == a ? a + "" : "object" == typeof a || "function" == typeof a ? h[i.call(a)] || "object" : typeof a
  118.         },
  119.         globalEval: function (b) {
  120.             b && n.trim(b) && (a.execScript ||
  121.             function (b) {
  122.                 a.eval.call(a, b)
  123.             })(b)
  124.         },
  125.         camelCase: function (a) {
  126.             return a.replace(p, "ms-").replace(q, r)
  127.         },
  128.         nodeName: function (a, b) {
  129.             return a.nodeName && a.nodeName.toLowerCase() === b.toLowerCase()
  130.         },
  131.         each: function (a, b, c) {
  132.             var d, e = 0,
  133.                 f = a.length,
  134.                 g = s(a);
  135.             if (c) {
  136.                 if (g) {
  137.                     for (; f > e; e++) if (d = b.apply(a[e], c), d === !1) break
  138.                 } else for (e in a) if (d = b.apply(a[e], c), d === !1) break
  139.             } else if (g) {
  140.                 for (; f > e; e++) if (d = b.call(a[e], e, a[e]), d === !1) break
  141.             } else for (e in a) if (d = b.call(a[e], e, a[e]), d === !1) break;
  142.             return a
  143.         },
  144.         trim: k && !k.call("\ufeff\xa0") ?
  145.         function (a) {
  146.             return null == a ? "" : k.call(a)
  147.         } : function (a) {
  148.             return null == a ? "" : (a + "").replace(o, "")
  149.         },
  150.         makeArray: function (a, b) {
  151.             var c = b || [];
  152.             return null != a && (s(Object(a)) ? n.merge(c, "string" == typeof a ? [a] : a) : f.call(c, a)), c
  153.         },
  154.         inArray: function (a, b, c) {
  155.             var d;
  156.             if (b) {
  157.                 if (g) return g.call(b, a, c);
  158.                 for (d = b.length, c = c ? 0 > c ? Math.max(0, d + c) : c : 0; d > c; c++) if (c in b && b[c] === a) return c
  159.             }
  160.             return -1
  161.         },
  162.         merge: function (a, b) {
  163.             var c = +b.length,
  164.                 d = 0,
  165.                 e = a.length;
  166.             while (c > d) a[e++] = b[d++];
  167.             if (c !== c) while (void 0 !== b[d]) a[e++] = b[d++];
  168.             return a.length = e, a
  169.         },
  170.         grep: function (a, b, c) {
  171.             for (var d, e = [], f = 0, g = a.length, h = !c; g > f; f++) d = !b(a[f], f), d !== h && e.push(a[f]);
  172.             return e
  173.         },
  174.         map: function (a, b, c) {
  175.             var d, f = 0,
  176.                 g = a.length,
  177.                 h = s(a),
  178.                 i = [];
  179.             if (h) for (; g > f; f++) d = b(a[f], f, c), null != d && i.push(d);
  180.             else for (f in a) d = b(a[f], f, c), null != d && i.push(d);
  181.             return e.apply([], i)
  182.         },
  183.         guid: 1,
  184.         proxy: function (a, b) {
  185.             var c, e, f;
  186.             return "string" == typeof b && (f = a[b], b = a, a = f), n.isFunction(a) ? (c = d.call(arguments, 2), e = function () {
  187.                 return a.apply(b || this, c.concat(d.call(arguments)))
  188.             }, e.guid = a.guid = a.guid || n.guid++, e) : void 0
  189.         },
  190.         now: function () {
  191.             return +new Date
  192.         },
  193.         support: l
  194.     }), n.each("Boolean Number String Function Array Date RegExp Object Error".split(" "), function (a, b) {
  195.         h["[object " + b + "]"] = b.toLowerCase()
  196.     });
  197.  
  198.     function s(a) {
  199.         var b = a.length,
  200.             c = n.type(a);
  201.         return "function" === c || n.isWindow(a) ? !1 : 1 === a.nodeType && b ? !0 : "array" === c || 0 === b || "number" == typeof b && b > 0 && b - 1 in a
  202.     }
  203.     var t = function (a) {
  204.         var b, c, d, e, f, g, h, i, j, k, l, m, n, o, p, q, r, s = "sizzle" + -new Date,
  205.             t = a.document,
  206.             u = 0,
  207.             v = 0,
  208.             w = eb(),
  209.             x = eb(),
  210.             y = eb(),
  211.             z = function (a, b) {
  212.                 return a === b && (j = !0), 0
  213.             },
  214.             A = "undefined",
  215.             B = 1 << 31,
  216.             C = {}.hasOwnProperty,
  217.             D = [],
  218.             E = D.pop,
  219.             F = D.push,
  220.             G = D.push,
  221.             H = D.slice,
  222.             I = D.indexOf ||
  223.             function (a) {
  224.                 for (var b = 0, c = this.length; c > b; b++) if (this[b] === a) return b;
  225.                 return -1
  226.             },
  227.             J = "checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",
  228.             K = "[\\x20\\t\\r\\n\\f]",
  229.             L = "(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",
  230.             M = L.replace("w", "w#"),
  231.             N = "\\[" + K + "*(" + L + ")" + K + "*(?:([*^$|!~]?=)" + K + "*(?:(['\"])((?:\\\\.|[^\\\\])*?)\\3|(" + M + ")|)|)" + K + "*\\]",
  232.             O = ":(" + L + ")(?:\\(((['\"])((?:\\\\.|[^\\\\])*?)\\3|((?:\\\\.|[^\\\\()[\\]]|" + N.replace(3, 8) + ")*)|.*)\\)|)",
  233.             P = new RegExp("^" + K + "+|((?:^|[^\\\\])(?:\\\\.)*)" + K + "+$", "g"),
  234.             Q = new RegExp("^" + K + "*," + K + "*"),
  235.             R = new RegExp("^" + K + "*([>+~]|" + K + ")" + K + "*"),
  236.             S = new RegExp("=" + K + "*([^\\]'\"]*?)" + K + "*\\]", "g"),
  237.             T = new RegExp(O),
  238.             U = new RegExp("^" + M + "$"),
  239.             V = {
  240.                 ID: new RegExp("^#(" + L + ")"),
  241.                 CLASS: new RegExp("^\\.(" + L + ")"),
  242.                 TAG: new RegExp("^(" + L.replace("w", "w*") + ")"),
  243.                 ATTR: new RegExp("^" + N),
  244.                 PSEUDO: new RegExp("^" + O),
  245.                 CHILD: new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\(" + K + "*(even|odd|(([+-]|)(\\d*)n|)" + K + "*(?:([+-]|)" + K + "*(\\d+)|))" + K + "*\\)|)", "i"),
  246.                 bool: new RegExp("^(?:" + J + ")$", "i"),
  247.                 needsContext: new RegExp("^" + K + "*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\(" + K + "*((?:-\\d)?\\d*)" + K + "*\\)|)(?=[^-]|$)", "i")
  248.             },
  249.             W = /^(?:input|select|textarea|button)$/i,
  250.             X = /^h\d$/i,
  251.             Y = /^[^{]+\{\s*\[native \w/,
  252.             Z = /^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,
  253.             $ = /[+~]/,
  254.             _ = /'|\\/g,
  255.             ab = new RegExp("\\\\([\\da-f]{1,6}" + K + "?|(" + K + ")|.)", "ig"),
  256.             bb = function (a, b, c) {
  257.                 var d = "0x" + b - 65536;
  258.                 return d !== d || c ? b : 0 > d ? String.fromCharCode(d + 65536) : String.fromCharCode(d >> 10 | 55296, 1023 & d | 56320)
  259.             };
  260.         try {
  261.             G.apply(D = H.call(t.childNodes), t.childNodes), D[t.childNodes.length].nodeType
  262.         } catch (cb) {
  263.             G = {
  264.                 apply: D.length ?
  265.                 function (a, b) {
  266.                     F.apply(a, H.call(b))
  267.                 } : function (a, b) {
  268.                     var c = a.length,
  269.                         d = 0;
  270.                     while (a[c++] = b[d++]);
  271.                     a.length = c - 1
  272.                 }
  273.             }
  274.         }
  275.         function db(a, b, d, e) {
  276.             var f, g, h, i, j, m, p, q, u, v;
  277.             if ((b ? b.ownerDocument || b : t) !== l && k(b), b = b || l, d = d || [], !a || "string" != typeof a) return d;
  278.             if (1 !== (i = b.nodeType) && 9 !== i) return [];
  279.             if (n && !e) {
  280.                 if (f = Z.exec(a)) if (h = f[1]) {
  281.                     if (9 === i) {
  282.                         if (g = b.getElementById(h), !g || !g.parentNode) return d;
  283.                         if (g.id === h) return d.push(g), d
  284.                     } else if (b.ownerDocument && (g = b.ownerDocument.getElementById(h)) && r(b, g) && g.id === h) return d.push(g), d
  285.                 } else {
  286.                     if (f[2]) return G.apply(d, b.getElementsByTagName(a)), d;
  287.                     if ((h = f[3]) && c.getElementsByClassName && b.getElementsByClassName) return G.apply(d, b.getElementsByClassName(h)), d
  288.                 }
  289.                 if (c.qsa && (!o || !o.test(a))) {
  290.                     if (q = p = s, u = b, v = 9 === i && a, 1 === i && "object" !== b.nodeName.toLowerCase()) {
  291.                         m = ob(a), (p = b.getAttribute("id")) ? q = p.replace(_, "\\$&") : b.setAttribute("id", q), q = "[id='" + q + "'] ", j = m.length;
  292.                         while (j--) m[j] = q + pb(m[j]);
  293.                         u = $.test(a) && mb(b.parentNode) || b, v = m.join(",")
  294.                     }
  295.                     if (v) try {
  296.                         return G.apply(d, u.querySelectorAll(v)), d
  297.                     } catch (w) {} finally {
  298.                         p || b.removeAttribute("id")
  299.                     }
  300.                 }
  301.             }
  302.             return xb(a.replace(P, "$1"), b, d, e)
  303.         }
  304.         function eb() {
  305.             var a = [];
  306.  
  307.             function b(c, e) {
  308.                 return a.push(c + " ") > d.cacheLength && delete b[a.shift()], b[c + " "] = e
  309.             }
  310.             return b
  311.         }
  312.         function fb(a) {
  313.             return a[s] = !0, a
  314.         }
  315.         function gb(a) {
  316.             var b = l.createElement("div");
  317.             try {
  318.                 return !!a(b)
  319.             } catch (c) {
  320.                 return !1
  321.             } finally {
  322.                 b.parentNode && b.parentNode.removeChild(b), b = null
  323.             }
  324.         }
  325.         function hb(a, b) {
  326.             var c = a.split("|"),
  327.                 e = a.length;
  328.             while (e--) d.attrHandle[c[e]] = b
  329.         }
  330.         function ib(a, b) {
  331.             var c = b && a,
  332.                 d = c && 1 === a.nodeType && 1 === b.nodeType && (~b.sourceIndex || B) - (~a.sourceIndex || B);
  333.             if (d) return d;
  334.             if (c) while (c = c.nextSibling) if (c === b) return -1;
  335.             return a ? 1 : -1
  336.         }
  337.         function jb(a) {
  338.             return function (b) {
  339.                 var c = b.nodeName.toLowerCase();
  340.                 return "input" === c && b.type === a
  341.             }
  342.         }
  343.         function kb(a) {
  344.             return function (b) {
  345.                 var c = b.nodeName.toLowerCase();
  346.                 return ("input" === c || "button" === c) && b.type === a
  347.             }
  348.         }
  349.         function lb(a) {
  350.             return fb(function (b) {
  351.                 return b = +b, fb(function (c, d) {
  352.                     var e, f = a([], c.length, b),
  353.                         g = f.length;
  354.                     while (g--) c[e = f[g]] && (c[e] = !(d[e] = c[e]))
  355.                 })
  356.             })
  357.         }
  358.         function mb(a) {
  359.             return a && typeof a.getElementsByTagName !== A && a
  360.         }
  361.         c = db.support = {}, f = db.isXML = function (a) {
  362.             var b = a && (a.ownerDocument || a).documentElement;
  363.             return b ? "HTML" !== b.nodeName : !1
  364.         }, k = db.setDocument = function (a) {
  365.             var b, e = a ? a.ownerDocument || a : t,
  366.                 g = e.defaultView;
  367.             return e !== l && 9 === e.nodeType && e.documentElement ? (l = e, m = e.documentElement, n = !f(e), g && g !== g.top && (g.addEventListener ? g.addEventListener("unload", function () {
  368.                 k()
  369.             }, !1) : g.attachEvent && g.attachEvent("onunload", function () {
  370.                 k()
  371.             })), c.attributes = gb(function (a) {
  372.                 return a.className = "i", !a.getAttribute("className")
  373.             }), c.getElementsByTagName = gb(function (a) {
  374.                 return a.appendChild(e.createComment("")), !a.getElementsByTagName("*").length
  375.             }), c.getElementsByClassName = Y.test(e.getElementsByClassName) && gb(function (a) {
  376.                 return a.innerHTML = "<div class='a'></div><div class='a i'></div>", a.firstChild.className = "i", 2 === a.getElementsByClassName("i").length
  377.             }), c.getById = gb(function (a) {
  378.                 return m.appendChild(a).id = s, !e.getElementsByName || !e.getElementsByName(s).length
  379.             }), c.getById ? (d.find.ID = function (a, b) {
  380.                 if (typeof b.getElementById !== A && n) {
  381.                     var c = b.getElementById(a);
  382.                     return c && c.parentNode ? [c] : []
  383.                 }
  384.             }, d.filter.ID = function (a) {
  385.                 var b = a.replace(ab, bb);
  386.                 return function (a) {
  387.                     return a.getAttribute("id") === b
  388.                 }
  389.             }) : (delete d.find.ID, d.filter.ID = function (a) {
  390.                 var b = a.replace(ab, bb);
  391.                 return function (a) {
  392.                     var c = typeof a.getAttributeNode !== A && a.getAttributeNode("id");
  393.                     return c && c.value === b
  394.                 }
  395.             }), d.find.TAG = c.getElementsByTagName ?
  396.             function (a, b) {
  397.                 return typeof b.getElementsByTagName !== A ? b.getElementsByTagName(a) : void 0
  398.             } : function (a, b) {
  399.                 var c, d = [],
  400.                     e = 0,
  401.                     f = b.getElementsByTagName(a);
  402.                 if ("*" === a) {
  403.                     while (c = f[e++]) 1 === c.nodeType && d.push(c);
  404.                     return d
  405.                 }
  406.                 return f
  407.             }, d.find.CLASS = c.getElementsByClassName &&
  408.             function (a, b) {
  409.                 return typeof b.getElementsByClassName !== A && n ? b.getElementsByClassName(a) : void 0
  410.             }, p = [], o = [], (c.qsa = Y.test(e.querySelectorAll)) && (gb(function (a) {
  411.                 a.innerHTML = "<select t=''><option selected=''></option></select>", a.querySelectorAll("[t^='']").length && o.push("[*^$]=" + K + "*(?:''|\"\")"), a.querySelectorAll("[selected]").length || o.push("\\[" + K + "*(?:value|" + J + ")"), a.querySelectorAll(":checked").length || o.push(":checked")
  412.             }), gb(function (a) {
  413.                 var b = e.createElement("input");
  414.                 b.setAttribute("type", "hidden"), a.appendChild(b).setAttribute("name", "D"), a.querySelectorAll("[name=d]").length && o.push("name" + K + "*[*^$|!~]?="), a.querySelectorAll(":enabled").length || o.push(":enabled", ":disabled"), a.querySelectorAll("*,:x"), o.push(",.*:")
  415.             })), (c.matchesSelector = Y.test(q = m.webkitMatchesSelector || m.mozMatchesSelector || m.oMatchesSelector || m.msMatchesSelector)) && gb(function (a) {
  416.                 c.disconnectedMatch = q.call(a, "div"), q.call(a, "[s!='']:x"), p.push("!=", O)
  417.             }), o = o.length && new RegExp(o.join("|")), p = p.length && new RegExp(p.join("|")), b = Y.test(m.compareDocumentPosition), r = b || Y.test(m.contains) ?
  418.             function (a, b) {
  419.                 var c = 9 === a.nodeType ? a.documentElement : a,
  420.                     d = b && b.parentNode;
  421.                 return a === d || !(!d || 1 !== d.nodeType || !(c.contains ? c.contains(d) : a.compareDocumentPosition && 16 & a.compareDocumentPosition(d)))
  422.             } : function (a, b) {
  423.                 if (b) while (b = b.parentNode) if (b === a) return !0;
  424.                 return !1
  425.             }, z = b ?
  426.             function (a, b) {
  427.                 if (a === b) return j = !0, 0;
  428.                 var d = !a.compareDocumentPosition - !b.compareDocumentPosition;
  429.                 return d ? d : (d = (a.ownerDocument || a) === (b.ownerDocument || b) ? a.compareDocumentPosition(b) : 1, 1 & d || !c.sortDetached && b.compareDocumentPosition(a) === d ? a === e || a.ownerDocument === t && r(t, a) ? -1 : b === e || b.ownerDocument === t && r(t, b) ? 1 : i ? I.call(i, a) - I.call(i, b) : 0 : 4 & d ? -1 : 1)
  430.             } : function (a, b) {
  431.                 if (a === b) return j = !0, 0;
  432.                 var c, d = 0,
  433.                     f = a.parentNode,
  434.                     g = b.parentNode,
  435.                     h = [a],
  436.                     k = [b];
  437.                 if (!f || !g) return a === e ? -1 : b === e ? 1 : f ? -1 : g ? 1 : i ? I.call(i, a) - I.call(i, b) : 0;
  438.                 if (f === g) return ib(a, b);
  439.                 c = a;
  440.                 while (c = c.parentNode) h.unshift(c);
  441.                 c = b;
  442.                 while (c = c.parentNode) k.unshift(c);
  443.                 while (h[d] === k[d]) d++;
  444.                 return d ? ib(h[d], k[d]) : h[d] === t ? -1 : k[d] === t ? 1 : 0
  445.             }, e) : l
  446.         }, db.matches = function (a, b) {
  447.             return db(a, null, null, b)
  448.         }, db.matchesSelector = function (a, b) {
  449.             if ((a.ownerDocument || a) !== l && k(a), b = b.replace(S, "='$1']"), !(!c.matchesSelector || !n || p && p.test(b) || o && o.test(b))) try {
  450.                 var d = q.call(a, b);
  451.                 if (d || c.disconnectedMatch || a.document && 11 !== a.document.nodeType) return d
  452.             } catch (e) {}
  453.             return db(b, l, null, [a]).length > 0
  454.         }, db.contains = function (a, b) {
  455.             return (a.ownerDocument || a) !== l && k(a), r(a, b)
  456.         }, db.attr = function (a, b) {
  457.             (a.ownerDocument || a) !== l && k(a);
  458.             var e = d.attrHandle[b.toLowerCase()],
  459.                 f = e && C.call(d.attrHandle, b.toLowerCase()) ? e(a, b, !n) : void 0;
  460.             return void 0 !== f ? f : c.attributes || !n ? a.getAttribute(b) : (f = a.getAttributeNode(b)) && f.specified ? f.value : null
  461.         }, db.error = function (a) {
  462.             throw new Error("Syntax error, unrecognized expression: " + a)
  463.         }, db.uniqueSort = function (a) {
  464.             var b, d = [],
  465.                 e = 0,
  466.                 f = 0;
  467.             if (j = !c.detectDuplicates, i = !c.sortStable && a.slice(0), a.sort(z), j) {
  468.                 while (b = a[f++]) b === a[f] && (e = d.push(f));
  469.                 while (e--) a.splice(d[e], 1)
  470.             }
  471.             return i = null, a
  472.         }, e = db.getText = function (a) {
  473.             var b, c = "",
  474.                 d = 0,
  475.                 f = a.nodeType;
  476.             if (f) {
  477.                 if (1 === f || 9 === f || 11 === f) {
  478.                     if ("string" == typeof a.textContent) return a.textContent;
  479.                     for (a = a.firstChild; a; a = a.nextSibling) c += e(a)
  480.                 } else if (3 === f || 4 === f) return a.nodeValue
  481.             } else while (b = a[d++]) c += e(b);
  482.             return c
  483.         }, d = db.selectors = {
  484.             cacheLength: 50,
  485.             createPseudo: fb,
  486.             match: V,
  487.             attrHandle: {},
  488.             find: {},
  489.             relative: {
  490.                 ">": {
  491.                     dir: "parentNode",
  492.                     first: !0
  493.                 },
  494.                 " ": {
  495.                     dir: "parentNode"
  496.                 },
  497.                 "+": {
  498.                     dir: "previousSibling",
  499.                     first: !0
  500.                 },
  501.                 "~": {
  502.                     dir: "previousSibling"
  503.                 }
  504.             },
  505.             preFilter: {
  506.                 ATTR: function (a) {
  507.                     return a[1] = a[1].replace(ab, bb), a[3] = (a[4] || a[5] || "").replace(ab, bb), "~=" === a[2] && (a[3] = " " + a[3] + " "), a.slice(0, 4)
  508.                 },
  509.                 CHILD: function (a) {
  510.                     return a[1] = a[1].toLowerCase(), "nth" === a[1].slice(0, 3) ? (a[3] || db.error(a[0]), a[4] = +(a[4] ? a[5] + (a[6] || 1) : 2 * ("even" === a[3] || "odd" === a[3])), a[5] = +(a[7] + a[8] || "odd" === a[3])) : a[3] && db.error(a[0]), a
  511.                 },
  512.                 PSEUDO: function (a) {
  513.                     var b, c = !a[5] && a[2];
  514.                     return V.CHILD.test(a[0]) ? null : (a[3] && void 0 !== a[4] ? a[2] = a[4] : c && T.test(c) && (b = ob(c, !0)) && (b = c.indexOf(")", c.length - b) - c.length) && (a[0] = a[0].slice(0, b), a[2] = c.slice(0, b)), a.slice(0, 3))
  515.                 }
  516.             },
  517.             filter: {
  518.                 TAG: function (a) {
  519.                     var b = a.replace(ab, bb).toLowerCase();
  520.                     return "*" === a ?
  521.                     function () {
  522.                         return !0
  523.                     } : function (a) {
  524.                         return a.nodeName && a.nodeName.toLowerCase() === b
  525.                     }
  526.                 },
  527.                 CLASS: function (a) {
  528.                     var b = w[a + " "];
  529.                     return b || (b = new RegExp("(^|" + K + ")" + a + "(" + K + "|$)")) && w(a, function (a) {
  530.                         return b.test("string" == typeof a.className && a.className || typeof a.getAttribute !== A && a.getAttribute("class") || "")
  531.                     })
  532.                 },
  533.                 ATTR: function (a, b, c) {
  534.                     return function (d) {
  535.                         var e = db.attr(d, a);
  536.                         return null == e ? "!=" === b : b ? (e += "", "=" === b ? e === c : "!=" === b ? e !== c : "^=" === b ? c && 0 === e.indexOf(c) : "*=" === b ? c && e.indexOf(c) > -1 : "$=" === b ? c && e.slice(-c.length) === c : "~=" === b ? (" " + e + " ").indexOf(c) > -1 : "|=" === b ? e === c || e.slice(0, c.length + 1) === c + "-" : !1) : !0
  537.                     }
  538.                 },
  539.                 CHILD: function (a, b, c, d, e) {
  540.                     var f = "nth" !== a.slice(0, 3),
  541.                         g = "last" !== a.slice(-4),
  542.                         h = "of-type" === b;
  543.                     return 1 === d && 0 === e ?
  544.                     function (a) {
  545.                         return !!a.parentNode
  546.                     } : function (b, c, i) {
  547.                         var j, k, l, m, n, o, p = f !== g ? "nextSibling" : "previousSibling",
  548.                             q = b.parentNode,
  549.                             r = h && b.nodeName.toLowerCase(),
  550.                             t = !i && !h;
  551.                         if (q) {
  552.                             if (f) {
  553.                                 while (p) {
  554.                                     l = b;
  555.                                     while (l = l[p]) if (h ? l.nodeName.toLowerCase() === r : 1 === l.nodeType) return !1;
  556.                                     o = p = "only" === a && !o && "nextSibling"
  557.                                 }
  558.                                 return !0
  559.                             }
  560.                             if (o = [g ? q.firstChild : q.lastChild], g && t) {
  561.                                 k = q[s] || (q[s] = {}), j = k[a] || [], n = j[0] === u && j[1], m = j[0] === u && j[2], l = n && q.childNodes[n];
  562.                                 while (l = ++n && l && l[p] || (m = n = 0) || o.pop()) if (1 === l.nodeType && ++m && l === b) {
  563.                                     k[a] = [u, n, m];
  564.                                     break
  565.                                 }
  566.                             } else if (t && (j = (b[s] || (b[s] = {}))[a]) && j[0] === u) m = j[1];
  567.                             else while (l = ++n && l && l[p] || (m = n = 0) || o.pop()) if ((h ? l.nodeName.toLowerCase() === r : 1 === l.nodeType) && ++m && (t && ((l[s] || (l[s] = {}))[a] = [u, m]), l === b)) break;
  568.                             return m -= e, m === d || m % d === 0 && m / d >= 0
  569.                         }
  570.                     }
  571.                 },
  572.                 PSEUDO: function (a, b) {
  573.                     var c, e = d.pseudos[a] || d.setFilters[a.toLowerCase()] || db.error("unsupported pseudo: " + a);
  574.                     return e[s] ? e(b) : e.length > 1 ? (c = [a, a, "", b], d.setFilters.hasOwnProperty(a.toLowerCase()) ? fb(function (a, c) {
  575.                         var d, f = e(a, b),
  576.                             g = f.length;
  577.                         while (g--) d = I.call(a, f[g]), a[d] = !(c[d] = f[g])
  578.                     }) : function (a) {
  579.                         return e(a, 0, c)
  580.                     }) : e
  581.                 }
  582.             },
  583.             pseudos: {
  584.                 not: fb(function (a) {
  585.                     var b = [],
  586.                         c = [],
  587.                         d = g(a.replace(P, "$1"));
  588.                     return d[s] ? fb(function (a, b, c, e) {
  589.                         var f, g = d(a, null, e, []),
  590.                             h = a.length;
  591.                         while (h--)(f = g[h]) && (a[h] = !(b[h] = f))
  592.                     }) : function (a, e, f) {
  593.                         return b[0] = a, d(b, null, f, c), !c.pop()
  594.                     }
  595.                 }),
  596.                 has: fb(function (a) {
  597.                     return function (b) {
  598.                         return db(a, b).length > 0
  599.                     }
  600.                 }),
  601.                 contains: fb(function (a) {
  602.                     return function (b) {
  603.                         return (b.textContent || b.innerText || e(b)).indexOf(a) > -1
  604.                     }
  605.                 }),
  606.                 lang: fb(function (a) {
  607.                     return U.test(a || "") || db.error("unsupported lang: " + a), a = a.replace(ab, bb).toLowerCase(), function (b) {
  608.                         var c;
  609.                         do
  610.                         if (c = n ? b.lang : b.getAttribute("xml:lang") || b.getAttribute("lang")) return c = c.toLowerCase(), c === a || 0 === c.indexOf(a + "-");
  611.                         while ((b = b.parentNode) && 1 === b.nodeType);
  612.                         return !1
  613.                     }
  614.                 }),
  615.                 target: function (b) {
  616.                     var c = a.location && a.location.hash;
  617.                     return c && c.slice(1) === b.id
  618.                 },
  619.                 root: function (a) {
  620.                     return a === m
  621.                 },
  622.                 focus: function (a) {
  623.                     return a === l.activeElement && (!l.hasFocus || l.hasFocus()) && !! (a.type || a.href || ~a.tabIndex)
  624.                 },
  625.                 enabled: function (a) {
  626.                     return a.disabled === !1
  627.                 },
  628.                 disabled: function (a) {
  629.                     return a.disabled === !0
  630.                 },
  631.                 checked: function (a) {
  632.                     var b = a.nodeName.toLowerCase();
  633.                     return "input" === b && !! a.checked || "option" === b && !! a.selected
  634.                 },
  635.                 selected: function (a) {
  636.                     return a.parentNode && a.parentNode.selectedIndex, a.selected === !0
  637.                 },
  638.                 empty: function (a) {
  639.                     for (a = a.firstChild; a; a = a.nextSibling) if (a.nodeType < 6) return !1;
  640.                     return !0
  641.                 },
  642.                 parent: function (a) {
  643.                     return !d.pseudos.empty(a)
  644.                 },
  645.                 header: function (a) {
  646.                     return X.test(a.nodeName)
  647.                 },
  648.                 input: function (a) {
  649.                     return W.test(a.nodeName)
  650.                 },
  651.                 button: function (a) {
  652.                     var b = a.nodeName.toLowerCase();
  653.                     return "input" === b && "button" === a.type || "button" === b
  654.                 },
  655.                 text: function (a) {
  656.                     var b;
  657.                     return "input" === a.nodeName.toLowerCase() && "text" === a.type && (null == (b = a.getAttribute("type")) || "text" === b.toLowerCase())
  658.                 },
  659.                 first: lb(function () {
  660.                     return [0]
  661.                 }),
  662.                 last: lb(function (a, b) {
  663.                     return [b - 1]
  664.                 }),
  665.                 eq: lb(function (a, b, c) {
  666.                     return [0 > c ? c + b : c]
  667.                 }),
  668.                 even: lb(function (a, b) {
  669.                     for (var c = 0; b > c; c += 2) a.push(c);
  670.                     return a
  671.                 }),
  672.                 odd: lb(function (a, b) {
  673.                     for (var c = 1; b > c; c += 2) a.push(c);
  674.                     return a
  675.                 }),
  676.                 lt: lb(function (a, b, c) {
  677.                     for (var d = 0 > c ? c + b : c; --d >= 0;) a.push(d);
  678.                     return a
  679.                 }),
  680.                 gt: lb(function (a, b, c) {
  681.                     for (var d = 0 > c ? c + b : c; ++d < b;) a.push(d);
  682.                     return a
  683.                 })
  684.             }
  685.         }, d.pseudos.nth = d.pseudos.eq;
  686.         for (b in {
  687.             radio: !0,
  688.             checkbox: !0,
  689.             file: !0,
  690.             password: !0,
  691.             image: !0
  692.         }) d.pseudos[b] = jb(b);
  693.         for (b in {
  694.             submit: !0,
  695.             reset: !0
  696.         }) d.pseudos[b] = kb(b);
  697.  
  698.         function nb() {}
  699.         nb.prototype = d.filters = d.pseudos, d.setFilters = new nb;
  700.  
  701.         function ob(a, b) {
  702.             var c, e, f, g, h, i, j, k = x[a + " "];
  703.             if (k) return b ? 0 : k.slice(0);
  704.             h = a, i = [], j = d.preFilter;
  705.             while (h) {
  706.                 (!c || (e = Q.exec(h))) && (e && (h = h.slice(e[0].length) || h), i.push(f = [])), c = !1, (e = R.exec(h)) && (c = e.shift(), f.push({
  707.                     value: c,
  708.                     type: e[0].replace(P, " ")
  709.                 }), h = h.slice(c.length));
  710.                 for (g in d.filter)!(e = V[g].exec(h)) || j[g] && !(e = j[g](e)) || (c = e.shift(), f.push({
  711.                     value: c,
  712.                     type: g,
  713.                     matches: e
  714.                 }), h = h.slice(c.length));
  715.                 if (!c) break
  716.             }
  717.             return b ? h.length : h ? db.error(a) : x(a, i).slice(0)
  718.         }
  719.         function pb(a) {
  720.             for (var b = 0, c = a.length, d = ""; c > b; b++) d += a[b].value;
  721.             return d
  722.         }
  723.         function qb(a, b, c) {
  724.             var d = b.dir,
  725.                 e = c && "parentNode" === d,
  726.                 f = v++;
  727.             return b.first ?
  728.             function (b, c, f) {
  729.                 while (b = b[d]) if (1 === b.nodeType || e) return a(b, c, f)
  730.             } : function (b, c, g) {
  731.                 var h, i, j = [u, f];
  732.                 if (g) {
  733.                     while (b = b[d]) if ((1 === b.nodeType || e) && a(b, c, g)) return !0
  734.                 } else while (b = b[d]) if (1 === b.nodeType || e) {
  735.                     if (i = b[s] || (b[s] = {}), (h = i[d]) && h[0] === u && h[1] === f) return j[2] = h[2];
  736.                     if (i[d] = j, j[2] = a(b, c, g)) return !0
  737.                 }
  738.             }
  739.         }
  740.         function rb(a) {
  741.             return a.length > 1 ?
  742.             function (b, c, d) {
  743.                 var e = a.length;
  744.                 while (e--) if (!a[e](b, c, d)) return !1;
  745.                 return !0
  746.             } : a[0]
  747.         }
  748.         function sb(a, b, c, d, e) {
  749.             for (var f, g = [], h = 0, i = a.length, j = null != b; i > h; h++)(f = a[h]) && (!c || c(f, d, e)) && (g.push(f), j && b.push(h));
  750.             return g
  751.         }
  752.         function tb(a, b, c, d, e, f) {
  753.             return d && !d[s] && (d = tb(d)), e && !e[s] && (e = tb(e, f)), fb(function (f, g, h, i) {
  754.                 var j, k, l, m = [],
  755.                     n = [],
  756.                     o = g.length,
  757.                     p = f || wb(b || "*", h.nodeType ? [h] : h, []),
  758.                     q = !a || !f && b ? p : sb(p, m, a, h, i),
  759.                     r = c ? e || (f ? a : o || d) ? [] : g : q;
  760.                 if (c && c(q, r, h, i), d) {
  761.                     j = sb(r, n), d(j, [], h, i), k = j.length;
  762.                     while (k--)(l = j[k]) && (r[n[k]] = !(q[n[k]] = l))
  763.                 }
  764.                 if (f) {
  765.                     if (e || a) {
  766.                         if (e) {
  767.                             j = [], k = r.length;
  768.                             while (k--)(l = r[k]) && j.push(q[k] = l);
  769.                             e(null, r = [], j, i)
  770.                         }
  771.                         k = r.length;
  772.                         while (k--)(l = r[k]) && (j = e ? I.call(f, l) : m[k]) > -1 && (f[j] = !(g[j] = l))
  773.                     }
  774.                 } else r = sb(r === g ? r.splice(o, r.length) : r), e ? e(null, g, r, i) : G.apply(g, r)
  775.             })
  776.         }
  777.         function ub(a) {
  778.             for (var b, c, e, f = a.length, g = d.relative[a[0].type], i = g || d.relative[" "], j = g ? 1 : 0, k = qb(function (a) {
  779.                 return a === b
  780.             }, i, !0), l = qb(function (a) {
  781.                 return I.call(b, a) > -1
  782.             }, i, !0), m = [function (a, c, d) {
  783.                 return !g && (d || c !== h) || ((b = c).nodeType ? k(a, c, d) : l(a, c, d))
  784.             }]; f > j; j++) if (c = d.relative[a[j].type]) m = [qb(rb(m), c)];
  785.             else {
  786.                 if (c = d.filter[a[j].type].apply(null, a[j].matches), c[s]) {
  787.                     for (e = ++j; f > e; e++) if (d.relative[a[e].type]) break;
  788.                     return tb(j > 1 && rb(m), j > 1 && pb(a.slice(0, j - 1).concat({
  789.                         value: " " === a[j - 2].type ? "*" : ""
  790.                     })).replace(P, "$1"), c, e > j && ub(a.slice(j, e)), f > e && ub(a = a.slice(e)), f > e && pb(a))
  791.                 }
  792.                 m.push(c)
  793.             }
  794.             return rb(m)
  795.         }
  796.         function vb(a, b) {
  797.             var c = b.length > 0,
  798.                 e = a.length > 0,
  799.                 f = function (f, g, i, j, k) {
  800.                     var m, n, o, p = 0,
  801.                         q = "0",
  802.                         r = f && [],
  803.                         s = [],
  804.                         t = h,
  805.                         v = f || e && d.find.TAG("*", k),
  806.                         w = u += null == t ? 1 : Math.random() || .1,
  807.                         x = v.length;
  808.                     for (k && (h = g !== l && g); q !== x && null != (m = v[q]); q++) {
  809.                         if (e && m) {
  810.                             n = 0;
  811.                             while (o = a[n++]) if (o(m, g, i)) {
  812.                                 j.push(m);
  813.                                 break
  814.                             }
  815.                             k && (u = w)
  816.                         }
  817.                         c && ((m = !o && m) && p--, f && r.push(m))
  818.                     }
  819.                     if (p += q, c && q !== p) {
  820.                         n = 0;
  821.                         while (o = b[n++]) o(r, s, g, i);
  822.                         if (f) {
  823.                             if (p > 0) while (q--) r[q] || s[q] || (s[q] = E.call(j));
  824.                             s = sb(s)
  825.                         }
  826.                         G.apply(j, s), k && !f && s.length > 0 && p + b.length > 1 && db.uniqueSort(j)
  827.                     }
  828.                     return k && (u = w, h = t), r
  829.                 };
  830.             return c ? fb(f) : f
  831.         }
  832.         g = db.compile = function (a, b) {
  833.             var c, d = [],
  834.                 e = [],
  835.                 f = y[a + " "];
  836.             if (!f) {
  837.                 b || (b = ob(a)), c = b.length;
  838.                 while (c--) f = ub(b[c]), f[s] ? d.push(f) : e.push(f);
  839.                 f = y(a, vb(e, d))
  840.             }
  841.             return f
  842.         };
  843.  
  844.         function wb(a, b, c) {
  845.             for (var d = 0, e = b.length; e > d; d++) db(a, b[d], c);
  846.             return c
  847.         }
  848.         function xb(a, b, e, f) {
  849.             var h, i, j, k, l, m = ob(a);
  850.             if (!f && 1 === m.length) {
  851.                 if (i = m[0] = m[0].slice(0), i.length > 2 && "ID" === (j = i[0]).type && c.getById && 9 === b.nodeType && n && d.relative[i[1].type]) {
  852.                     if (b = (d.find.ID(j.matches[0].replace(ab, bb), b) || [])[0], !b) return e;
  853.                     a = a.slice(i.shift().value.length)
  854.                 }
  855.                 h = V.needsContext.test(a) ? 0 : i.length;
  856.                 while (h--) {
  857.                     if (j = i[h], d.relative[k = j.type]) break;
  858.                     if ((l = d.find[k]) && (f = l(j.matches[0].replace(ab, bb), $.test(i[0].type) && mb(b.parentNode) || b))) {
  859.                         if (i.splice(h, 1), a = f.length && pb(i), !a) return G.apply(e, f), e;
  860.                         break
  861.                     }
  862.                 }
  863.             }
  864.             return g(a, m)(f, b, !n, e, $.test(a) && mb(b.parentNode) || b), e
  865.         }
  866.         return c.sortStable = s.split("").sort(z).join("") === s, c.detectDuplicates = !! j, k(), c.sortDetached = gb(function (a) {
  867.             return 1 & a.compareDocumentPosition(l.createElement("div"))
  868.         }), gb(function (a) {
  869.             return a.innerHTML = "<a href='#'></a>", "#" === a.firstChild.getAttribute("href")
  870.         }) || hb("type|href|height|width", function (a, b, c) {
  871.             return c ? void 0 : a.getAttribute(b, "type" === b.toLowerCase() ? 1 : 2)
  872.         }), c.attributes && gb(function (a) {
  873.             return a.innerHTML = "<input/>", a.firstChild.setAttribute("value", ""), "" === a.firstChild.getAttribute("value")
  874.         }) || hb("value", function (a, b, c) {
  875.             return c || "input" !== a.nodeName.toLowerCase() ? void 0 : a.defaultValue
  876.         }), gb(function (a) {
  877.             return null == a.getAttribute("disabled")
  878.         }) || hb(J, function (a, b, c) {
  879.             var d;
  880.             return c ? void 0 : a[b] === !0 ? b.toLowerCase() : (d = a.getAttributeNode(b)) && d.specified ? d.value : null
  881.         }), db
  882.     }(a);
  883.     n.find = t, n.expr = t.selectors, n.expr[":"] = n.expr.pseudos, n.unique = t.uniqueSort, n.text = t.getText, n.isXMLDoc = t.isXML, n.contains = t.contains;
  884.     var u = n.expr.match.needsContext,
  885.         v = /^<(\w+)\s*\/?>(?:<\/\1>|)$/,
  886.         w = /^.[^:#\[\.,]*$/;
  887.  
  888.     function x(a, b, c) {
  889.         if (n.isFunction(b)) return n.grep(a, function (a, d) {
  890.             return !!b.call(a, d, a) !== c
  891.         });
  892.         if (b.nodeType) return n.grep(a, function (a) {
  893.             return a === b !== c
  894.         });
  895.         if ("string" == typeof b) {
  896.             if (w.test(b)) return n.filter(b, a, c);
  897.             b = n.filter(b, a)
  898.         }
  899.         return n.grep(a, function (a) {
  900.             return n.inArray(a, b) >= 0 !== c
  901.         })
  902.     }
  903.     n.filter = function (a, b, c) {
  904.         var d = b[0];
  905.         return c && (a = ":not(" + a + ")"), 1 === b.length && 1 === d.nodeType ? n.find.matchesSelector(d, a) ? [d] : [] : n.find.matches(a, n.grep(b, function (a) {
  906.             return 1 === a.nodeType
  907.         }))
  908.     }, n.fn.extend({
  909.         find: function (a) {
  910.             var b, c = [],
  911.                 d = this,
  912.                 e = d.length;
  913.             if ("string" != typeof a) return this.pushStack(n(a).filter(function () {
  914.                 for (b = 0; e > b; b++) if (n.contains(d[b], this)) return !0
  915.             }));
  916.             for (b = 0; e > b; b++) n.find(a, d[b], c);
  917.             return c = this.pushStack(e > 1 ? n.unique(c) : c), c.selector = this.selector ? this.selector + " " + a : a, c
  918.         },
  919.         filter: function (a) {
  920.             return this.pushStack(x(this, a || [], !1))
  921.         },
  922.         not: function (a) {
  923.             return this.pushStack(x(this, a || [], !0))
  924.         },
  925.         is: function (a) {
  926.             return !!x(this, "string" == typeof a && u.test(a) ? n(a) : a || [], !1).length
  927.         }
  928.     });
  929.     var y, z = a.document,
  930.         A = /^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/,
  931.         B = n.fn.init = function (a, b) {
  932.             var c, d;
  933.             if (!a) return this;
  934.             if ("string" == typeof a) {
  935.                 if (c = "<" === a.charAt(0) && ">" === a.charAt(a.length - 1) && a.length >= 3 ? [null, a, null] : A.exec(a), !c || !c[1] && b) return !b || b.jquery ? (b || y).find(a) : this.constructor(b).find(a);
  936.                 if (c[1]) {
  937.                     if (b = b instanceof n ? b[0] : b, n.merge(this, n.parseHTML(c[1], b && b.nodeType ? b.ownerDocument || b : z, !0)), v.test(c[1]) && n.isPlainObject(b)) for (c in b) n.isFunction(this[c]) ? this[c](b[c]) : this.attr(c, b[c]);
  938.                     return this
  939.                 }
  940.                 if (d = z.getElementById(c[2]), d && d.parentNode) {
  941.                     if (d.id !== c[2]) return y.find(a);
  942.                     this.length = 1, this[0] = d
  943.                 }
  944.                 return this.context = z, this.selector = a, this
  945.             }
  946.             return a.nodeType ? (this.context = this[0] = a, this.length = 1, this) : n.isFunction(a) ? "undefined" != typeof y.ready ? y.ready(a) : a(n) : (void 0 !== a.selector && (this.selector = a.selector, this.context = a.context), n.makeArray(a, this))
  947.         };
  948.     B.prototype = n.fn, y = n(z);
  949.     var C = /^(?:parents|prev(?:Until|All))/,
  950.         D = {
  951.             children: !0,
  952.             contents: !0,
  953.             next: !0,
  954.             prev: !0
  955.         };
  956.     n.extend({
  957.         dir: function (a, b, c) {
  958.             var d = [],
  959.                 e = a[b];
  960.             while (e && 9 !== e.nodeType && (void 0 === c || 1 !== e.nodeType || !n(e).is(c))) 1 === e.nodeType && d.push(e), e = e[b];
  961.             return d
  962.         },
  963.         sibling: function (a, b) {
  964.             for (var c = []; a; a = a.nextSibling) 1 === a.nodeType && a !== b && c.push(a);
  965.             return c
  966.         }
  967.     }), n.fn.extend({
  968.         has: function (a) {
  969.             var b, c = n(a, this),
  970.                 d = c.length;
  971.             return this.filter(function () {
  972.                 for (b = 0; d > b; b++) if (n.contains(this, c[b])) return !0
  973.             })
  974.         },
  975.         closest: function (a, b) {
  976.             for (var c, d = 0, e = this.length, f = [], g = u.test(a) || "string" != typeof a ? n(a, b || this.context) : 0; e > d; d++) for (c = this[d]; c && c !== b; c = c.parentNode) if (c.nodeType < 11 && (g ? g.index(c) > -1 : 1 === c.nodeType && n.find.matchesSelector(c, a))) {
  977.                 f.push(c);
  978.                 break
  979.             }
  980.             return this.pushStack(f.length > 1 ? n.unique(f) : f)
  981.         },
  982.         index: function (a) {
  983.             return a ? "string" == typeof a ? n.inArray(this[0], n(a)) : n.inArray(a.jquery ? a[0] : a, this) : this[0] && this[0].parentNode ? this.first().prevAll().length : -1
  984.         },
  985.         add: function (a, b) {
  986.             return this.pushStack(n.unique(n.merge(this.get(), n(a, b))))
  987.         },
  988.         addBack: function (a) {
  989.             return this.add(null == a ? this.prevObject : this.prevObject.filter(a))
  990.         }
  991.     });
  992.  
  993.     function E(a, b) {
  994.         do a = a[b];
  995.         while (a && 1 !== a.nodeType);
  996.         return a
  997.     }
  998.     n.each({
  999.         parent: function (a) {
  1000.             var b = a.parentNode;
  1001.             return b && 11 !== b.nodeType ? b : null
  1002.         },
  1003.         parents: function (a) {
  1004.             return n.dir(a, "parentNode")
  1005.         },
  1006.         parentsUntil: function (a, b, c) {
  1007.             return n.dir(a, "parentNode", c)
  1008.         },
  1009.         next: function (a) {
  1010.             return E(a, "nextSibling")
  1011.         },
  1012.         prev: function (a) {
  1013.             return E(a, "previousSibling")
  1014.         },
  1015.         nextAll: function (a) {
  1016.             return n.dir(a, "nextSibling")
  1017.         },
  1018.         prevAll: function (a) {
  1019.             return n.dir(a, "previousSibling")
  1020.         },
  1021.         nextUntil: function (a, b, c) {
  1022.             return n.dir(a, "nextSibling", c)
  1023.         },
  1024.         prevUntil: function (a, b, c) {
  1025.             return n.dir(a, "previousSibling", c)
  1026.         },
  1027.         siblings: function (a) {
  1028.             return n.sibling((a.parentNode || {}).firstChild, a)
  1029.         },
  1030.         children: function (a) {
  1031.             return n.sibling(a.firstChild)
  1032.         },
  1033.         contents: function (a) {
  1034.             return n.nodeName(a, "iframe") ? a.contentDocument || a.contentWindow.document : n.merge([], a.childNodes)
  1035.         }
  1036.     }, function (a, b) {
  1037.         n.fn[a] = function (c, d) {
  1038.             var e = n.map(this, b, c);
  1039.             return "Until" !== a.slice(-5) && (d = c), d && "string" == typeof d && (e = n.filter(d, e)), this.length > 1 && (D[a] || (e = n.unique(e)), C.test(a) && (e = e.reverse())), this.pushStack(e)
  1040.         }
  1041.     });
  1042.     var F = /\S+/g,
  1043.         G = {};
  1044.  
  1045.     function H(a) {
  1046.         var b = G[a] = {};
  1047.         return n.each(a.match(F) || [], function (a, c) {
  1048.             b[c] = !0
  1049.         }), b
  1050.     }
  1051.     n.Callbacks = function (a) {
  1052.         a = "string" == typeof a ? G[a] || H(a) : n.extend({}, a);
  1053.         var b, c, d, e, f, g, h = [],
  1054.             i = !a.once && [],
  1055.             j = function (l) {
  1056.                 for (c = a.memory && l, d = !0, f = g || 0, g = 0, e = h.length, b = !0; h && e > f; f++) if (h[f].apply(l[0], l[1]) === !1 && a.stopOnFalse) {
  1057.                     c = !1;
  1058.                     break
  1059.                 }
  1060.                 b = !1, h && (i ? i.length && j(i.shift()) : c ? h = [] : k.disable())
  1061.             },
  1062.             k = {
  1063.                 add: function () {
  1064.                     if (h) {
  1065.                         var d = h.length;
  1066.                         !
  1067.                         function f(b) {
  1068.                             n.each(b, function (b, c) {
  1069.                                 var d = n.type(c);
  1070.                                 "function" === d ? a.unique && k.has(c) || h.push(c) : c && c.length && "string" !== d && f(c)
  1071.                             })
  1072.                         }(arguments), b ? e = h.length : c && (g = d, j(c))
  1073.                     }
  1074.                     return this
  1075.                 },
  1076.                 remove: function () {
  1077.                     return h && n.each(arguments, function (a, c) {
  1078.                         var d;
  1079.                         while ((d = n.inArray(c, h, d)) > -1) h.splice(d, 1), b && (e >= d && e--, f >= d && f--)
  1080.                     }), this
  1081.                 },
  1082.                 has: function (a) {
  1083.                     return a ? n.inArray(a, h) > -1 : !(!h || !h.length)
  1084.                 },
  1085.                 empty: function () {
  1086.                     return h = [], e = 0, this
  1087.                 },
  1088.                 disable: function () {
  1089.                     return h = i = c = void 0, this
  1090.                 },
  1091.                 disabled: function () {
  1092.                     return !h
  1093.                 },
  1094.                 lock: function () {
  1095.                     return i = void 0, c || k.disable(), this
  1096.                 },
  1097.                 locked: function () {
  1098.                     return !i
  1099.                 },
  1100.                 fireWith: function (a, c) {
  1101.                     return !h || d && !i || (c = c || [], c = [a, c.slice ? c.slice() : c], b ? i.push(c) : j(c)), this
  1102.                 },
  1103.                 fire: function () {
  1104.                     return k.fireWith(this, arguments), this
  1105.                 },
  1106.                 fired: function () {
  1107.                     return !!d
  1108.                 }
  1109.             };
  1110.         return k
  1111.     }, n.extend({
  1112.         Deferred: function (a) {
  1113.             var b = [
  1114.                 ["resolve", "done", n.Callbacks("once memory"), "resolved"],
  1115.                 ["reject", "fail", n.Callbacks("once memory"), "rejected"],
  1116.                 ["notify", "progress", n.Callbacks("memory")]
  1117.             ],
  1118.                 c = "pending",
  1119.                 d = {
  1120.                     state: function () {
  1121.                         return c
  1122.                     },
  1123.                     always: function () {
  1124.                         return e.done(arguments).fail(arguments), this
  1125.                     },
  1126.                     then: function () {
  1127.                         var a = arguments;
  1128.                         return n.Deferred(function (c) {
  1129.                             n.each(b, function (b, f) {
  1130.                                 var g = n.isFunction(a[b]) && a[b];
  1131.                                 e[f[1]](function () {
  1132.                                     var a = g && g.apply(this, arguments);
  1133.                                     a && n.isFunction(a.promise) ? a.promise().done(c.resolve).fail(c.reject).progress(c.notify) : c[f[0] + "With"](this === d ? c.promise() : this, g ? [a] : arguments)
  1134.                                 })
  1135.                             }), a = null
  1136.                         }).promise()
  1137.                     },
  1138.                     promise: function (a) {
  1139.                         return null != a ? n.extend(a, d) : d
  1140.                     }
  1141.                 },
  1142.                 e = {};
  1143.             return d.pipe = d.then, n.each(b, function (a, f) {
  1144.                 var g = f[2],
  1145.                     h = f[3];
  1146.                 d[f[1]] = g.add, h && g.add(function () {
  1147.                     c = h
  1148.                 }, b[1 ^ a][2].disable, b[2][2].lock), e[f[0]] = function () {
  1149.                     return e[f[0] + "With"](this === e ? d : this, arguments), this
  1150.                 }, e[f[0] + "With"] = g.fireWith
  1151.             }), d.promise(e), a && a.call(e, e), e
  1152.         },
  1153.         when: function (a) {
  1154.             var b = 0,
  1155.                 c = d.call(arguments),
  1156.                 e = c.length,
  1157.                 f = 1 !== e || a && n.isFunction(a.promise) ? e : 0,
  1158.                 g = 1 === f ? a : n.Deferred(),
  1159.                 h = function (a, b, c) {
  1160.                     return function (e) {
  1161.                         b[a] = this, c[a] = arguments.length > 1 ? d.call(arguments) : e, c === i ? g.notifyWith(b, c) : --f || g.resolveWith(b, c)
  1162.                     }
  1163.                 },
  1164.                 i, j, k;
  1165.             if (e > 1) for (i = new Array(e), j = new Array(e), k = new Array(e); e > b; b++) c[b] && n.isFunction(c[b].promise) ? c[b].promise().done(h(b, k, c)).fail(g.reject).progress(h(b, j, i)) : --f;
  1166.             return f || g.resolveWith(k, c), g.promise()
  1167.         }
  1168.     });
  1169.     var I;
  1170.     n.fn.ready = function (a) {
  1171.         return n.ready.promise().done(a), this
  1172.     }, n.extend({
  1173.         isReady: !1,
  1174.         readyWait: 1,
  1175.         holdReady: function (a) {
  1176.             a ? n.readyWait++ : n.ready(!0)
  1177.         },
  1178.         ready: function (a) {
  1179.             if (a === !0 ? !--n.readyWait : !n.isReady) {
  1180.                 if (!z.body) return setTimeout(n.ready);
  1181.                 n.isReady = !0, a !== !0 && --n.readyWait > 0 || (I.resolveWith(z, [n]), n.fn.trigger && n(z).trigger("ready").off("ready"))
  1182.             }
  1183.         }
  1184.     });
  1185.  
  1186.     function J() {
  1187.         z.addEventListener ? (z.removeEventListener("DOMContentLoaded", K, !1), a.removeEventListener("load", K, !1)) : (z.detachEvent("onreadystatechange", K), a.detachEvent("onload", K))
  1188.     }
  1189.     function K() {
  1190.         (z.addEventListener || "load" === event.type || "complete" === z.readyState) && (J(), n.ready())
  1191.     }
  1192.     n.ready.promise = function (b) {
  1193.         if (!I) if (I = n.Deferred(), "complete" === z.readyState) setTimeout(n.ready);
  1194.         else if (z.addEventListener) z.addEventListener("DOMContentLoaded", K, !1), a.addEventListener("load", K, !1);
  1195.         else {
  1196.             z.attachEvent("onreadystatechange", K), a.attachEvent("onload", K);
  1197.             var c = !1;
  1198.             try {
  1199.                 c = null == a.frameElement && z.documentElement
  1200.             } catch (d) {}
  1201.             c && c.doScroll && !
  1202.             function e() {
  1203.                 if (!n.isReady) {
  1204.                     try {
  1205.                         c.doScroll("left")
  1206.                     } catch (a) {
  1207.                         return setTimeout(e, 50)
  1208.                     }
  1209.                     J(), n.ready()
  1210.                 }
  1211.             }()
  1212.         }
  1213.         return I.promise(b)
  1214.     };
  1215.     var L = "undefined",
  1216.         M;
  1217.     for (M in n(l)) break;
  1218.     l.ownLast = "0" !== M, l.inlineBlockNeedsLayout = !1, n(function () {
  1219.         var a, b, c = z.getElementsByTagName("body")[0];
  1220.         c && (a = z.createElement("div"), a.style.cssText = "border:0;width:0;height:0;position:absolute;top:0;left:-9999px;margin-top:1px", b = z.createElement("div"), c.appendChild(a).appendChild(b), typeof b.style.zoom !== L && (b.style.cssText = "border:0;margin:0;width:1px;padding:1px;display:inline;zoom:1", (l.inlineBlockNeedsLayout = 3 === b.offsetWidth) && (c.style.zoom = 1)), c.removeChild(a), a = b = null)
  1221.     }), function () {
  1222.         var a = z.createElement("div");
  1223.         if (null == l.deleteExpando) {
  1224.             l.deleteExpando = !0;
  1225.             try {
  1226.                 delete a.test
  1227.             } catch (b) {
  1228.                 l.deleteExpando = !1
  1229.             }
  1230.         }
  1231.         a = null
  1232.     }(), n.acceptData = function (a) {
  1233.         var b = n.noData[(a.nodeName + " ").toLowerCase()],
  1234.             c = +a.nodeType || 1;
  1235.         return 1 !== c && 9 !== c ? !1 : !b || b !== !0 && a.getAttribute("classid") === b
  1236.     };
  1237.     var N = /^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,
  1238.         O = /([A-Z])/g;
  1239.  
  1240.     function P(a, b, c) {
  1241.         if (void 0 === c && 1 === a.nodeType) {
  1242.             var d = "data-" + b.replace(O, "-$1").toLowerCase();
  1243.             if (c = a.getAttribute(d), "string" == typeof c) {
  1244.                 try {
  1245.                     c = "true" === c ? !0 : "false" === c ? !1 : "null" === c ? null : +c + "" === c ? +c : N.test(c) ? n.parseJSON(c) : c
  1246.                 } catch (e) {}
  1247.                 n.data(a, b, c)
  1248.             } else c = void 0
  1249.         }
  1250.         return c
  1251.     }
  1252.     function Q(a) {
  1253.         var b;
  1254.         for (b in a) if (("data" !== b || !n.isEmptyObject(a[b])) && "toJSON" !== b) return !1;
  1255.         return !0
  1256.     }
  1257.     function R(a, b, d, e) {
  1258.         if (n.acceptData(a)) {
  1259.             var f, g, h = n.expando,
  1260.                 i = a.nodeType,
  1261.                 j = i ? n.cache : a,
  1262.                 k = i ? a[h] : a[h] && h;
  1263.             if (k && j[k] && (e || j[k].data) || void 0 !== d || "string" != typeof b) return k || (k = i ? a[h] = c.pop() || n.guid++ : h), j[k] || (j[k] = i ? {} : {
  1264.                 toJSON: n.noop
  1265.             }), ("object" == typeof b || "function" == typeof b) && (e ? j[k] = n.extend(j[k], b) : j[k].data = n.extend(j[k].data, b)), g = j[k], e || (g.data || (g.data = {}), g = g.data), void 0 !== d && (g[n.camelCase(b)] = d), "string" == typeof b ? (f = g[b], null == f && (f = g[n.camelCase(b)])) : f = g, f
  1266.         }
  1267.     }
  1268.     function S(a, b, c) {
  1269.         if (n.acceptData(a)) {
  1270.             var d, e, f = a.nodeType,
  1271.                 g = f ? n.cache : a,
  1272.                 h = f ? a[n.expando] : n.expando;
  1273.             if (g[h]) {
  1274.                 if (b && (d = c ? g[h] : g[h].data)) {
  1275.                     n.isArray(b) ? b = b.concat(n.map(b, n.camelCase)) : b in d ? b = [b] : (b = n.camelCase(b), b = b in d ? [b] : b.split(" ")), e = b.length;
  1276.                     while (e--) delete d[b[e]];
  1277.                     if (c ? !Q(d) : !n.isEmptyObject(d)) return
  1278.                 }(c || (delete g[h].data, Q(g[h]))) && (f ? n.cleanData([a], !0) : l.deleteExpando || g != g.window ? delete g[h] : g[h] = null)
  1279.             }
  1280.         }
  1281.     }
  1282.     n.extend({
  1283.         cache: {},
  1284.         noData: {
  1285.             "applet ": !0,
  1286.             "embed ": !0,
  1287.             "object ": "clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
  1288.         },
  1289.         hasData: function (a) {
  1290.             return a = a.nodeType ? n.cache[a[n.expando]] : a[n.expando], !! a && !Q(a)
  1291.         },
  1292.         data: function (a, b, c) {
  1293.             return R(a, b, c)
  1294.         },
  1295.         removeData: function (a, b) {
  1296.             return S(a, b)
  1297.         },
  1298.         _data: function (a, b, c) {
  1299.             return R(a, b, c, !0)
  1300.         },
  1301.         _removeData: function (a, b) {
  1302.             return S(a, b, !0)
  1303.         }
  1304.     }), n.fn.extend({
  1305.         data: function (a, b) {
  1306.             var c, d, e, f = this[0],
  1307.                 g = f && f.attributes;
  1308.             if (void 0 === a) {
  1309.                 if (this.length && (e = n.data(f), 1 === f.nodeType && !n._data(f, "parsedAttrs"))) {
  1310.                     c = g.length;
  1311.                     while (c--) d = g[c].name, 0 === d.indexOf("data-") && (d = n.camelCase(d.slice(5)), P(f, d, e[d]));
  1312.                     n._data(f, "parsedAttrs", !0)
  1313.                 }
  1314.                 return e
  1315.             }
  1316.             return "object" == typeof a ? this.each(function () {
  1317.                 n.data(this, a)
  1318.             }) : arguments.length > 1 ? this.each(function () {
  1319.                 n.data(this, a, b)
  1320.             }) : f ? P(f, a, n.data(f, a)) : void 0
  1321.         },
  1322.         removeData: function (a) {
  1323.             return this.each(function () {
  1324.                 n.removeData(this, a)
  1325.             })
  1326.         }
  1327.     }), n.extend({
  1328.         queue: function (a, b, c) {
  1329.             var d;
  1330.             return a ? (b = (b || "fx") + "queue", d = n._data(a, b), c && (!d || n.isArray(c) ? d = n._data(a, b, n.makeArray(c)) : d.push(c)), d || []) : void 0
  1331.         },
  1332.         dequeue: function (a, b) {
  1333.             b = b || "fx";
  1334.             var c = n.queue(a, b),
  1335.                 d = c.length,
  1336.                 e = c.shift(),
  1337.                 f = n._queueHooks(a, b),
  1338.                 g = function () {
  1339.                     n.dequeue(a, b)
  1340.                 };
  1341.             "inprogress" === e && (e = c.shift(), d--), e && ("fx" === b && c.unshift("inprogress"), delete f.stop, e.call(a, g, f)), !d && f && f.empty.fire()
  1342.         },
  1343.         _queueHooks: function (a, b) {
  1344.             var c = b + "queueHooks";
  1345.             return n._data(a, c) || n._data(a, c, {
  1346.                 empty: n.Callbacks("once memory").add(function () {
  1347.                     n._removeData(a, b + "queue"), n._removeData(a, c)
  1348.                 })
  1349.             })
  1350.         }
  1351.     }), n.fn.extend({
  1352.         queue: function (a, b) {
  1353.             var c = 2;
  1354.             return "string" != typeof a && (b = a, a = "fx", c--), arguments.length < c ? n.queue(this[0], a) : void 0 === b ? this : this.each(function () {
  1355.                 var c = n.queue(this, a, b);
  1356.                 n._queueHooks(this, a), "fx" === a && "inprogress" !== c[0] && n.dequeue(this, a)
  1357.             })
  1358.         },
  1359.         dequeue: function (a) {
  1360.             return this.each(function () {
  1361.                 n.dequeue(this, a)
  1362.             })
  1363.         },
  1364.         clearQueue: function (a) {
  1365.             return this.queue(a || "fx", [])
  1366.         },
  1367.         promise: function (a, b) {
  1368.             var c, d = 1,
  1369.                 e = n.Deferred(),
  1370.                 f = this,
  1371.                 g = this.length,
  1372.                 h = function () {
  1373.                     --d || e.resolveWith(f, [f])
  1374.                 };
  1375.             "string" != typeof a && (b = a, a = void 0), a = a || "fx";
  1376.             while (g--) c = n._data(f[g], a + "queueHooks"), c && c.empty && (d++, c.empty.add(h));
  1377.             return h(), e.promise(b)
  1378.         }
  1379.     });
  1380.     var T = /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source,
  1381.         U = ["Top", "Right", "Bottom", "Left"],
  1382.         V = function (a, b) {
  1383.             return a = b || a, "none" === n.css(a, "display") || !n.contains(a.ownerDocument, a)
  1384.         },
  1385.         W = n.access = function (a, b, c, d, e, f, g) {
  1386.             var h = 0,
  1387.                 i = a.length,
  1388.                 j = null == c;
  1389.             if ("object" === n.type(c)) {
  1390.                 e = !0;
  1391.                 for (h in c) n.access(a, b, h, c[h], !0, f, g)
  1392.             } else if (void 0 !== d && (e = !0, n.isFunction(d) || (g = !0), j && (g ? (b.call(a, d), b = null) : (j = b, b = function (a, b, c) {
  1393.                 return j.call(n(a), c)
  1394.             })), b)) for (; i > h; h++) b(a[h], c, g ? d : d.call(a[h], h, b(a[h], c)));
  1395.             return e ? a : j ? b.call(a) : i ? b(a[0], c) : f
  1396.         },
  1397.         X = /^(?:checkbox|radio)$/i;
  1398.     !
  1399.     function () {
  1400.         var a = z.createDocumentFragment(),
  1401.             b = z.createElement("div"),
  1402.             c = z.createElement("input");
  1403.         if (b.setAttribute("className", "t"), b.innerHTML = "  <link/><table></table><a href='/a'>a</a>", l.leadingWhitespace = 3 === b.firstChild.nodeType, l.tbody = !b.getElementsByTagName("tbody").length, l.htmlSerialize = !! b.getElementsByTagName("link").length, l.html5Clone = "<:nav></:nav>" !== z.createElement("nav").cloneNode(!0).outerHTML, c.type = "checkbox", c.checked = !0, a.appendChild(c), l.appendChecked = c.checked, b.innerHTML = "<textarea>x</textarea>", l.noCloneChecked = !! b.cloneNode(!0).lastChild.defaultValue, a.appendChild(b), b.innerHTML = "<input type='radio' checked='checked' name='t'/>", l.checkClone = b.cloneNode(!0).cloneNode(!0).lastChild.checked, l.noCloneEvent = !0, b.attachEvent && (b.attachEvent("onclick", function () {
  1404.             l.noCloneEvent = !1
  1405.         }), b.cloneNode(!0).click()), null == l.deleteExpando) {
  1406.             l.deleteExpando = !0;
  1407.             try {
  1408.                 delete b.test
  1409.             } catch (d) {
  1410.                 l.deleteExpando = !1
  1411.             }
  1412.         }
  1413.         a = b = c = null
  1414.     }(), function () {
  1415.         var b, c, d = z.createElement("div");
  1416.         for (b in {
  1417.             submit: !0,
  1418.             change: !0,
  1419.             focusin: !0
  1420.         }) c = "on" + b, (l[b + "Bubbles"] = c in a) || (d.setAttribute(c, "t"), l[b + "Bubbles"] = d.attributes[c].expando === !1);
  1421.         d = null
  1422.     }();
  1423.     var Y = /^(?:input|select|textarea)$/i,
  1424.         Z = /^key/,
  1425.         $ = /^(?:mouse|contextmenu)|click/,
  1426.         _ = /^(?:focusinfocus|focusoutblur)$/,
  1427.         ab = /^([^.]*)(?:\.(.+)|)$/;
  1428.  
  1429.     function bb() {
  1430.         return !0
  1431.     }
  1432.     function cb() {
  1433.         return !1
  1434.     }
  1435.     function db() {
  1436.         try {
  1437.             return z.activeElement
  1438.         } catch (a) {}
  1439.     }
  1440.     n.event = {
  1441.         global: {},
  1442.         add: function (a, b, c, d, e) {
  1443.             var f, g, h, i, j, k, l, m, o, p, q, r = n._data(a);
  1444.             if (r) {
  1445.                 c.handler && (i = c, c = i.handler, e = i.selector), c.guid || (c.guid = n.guid++), (g = r.events) || (g = r.events = {}), (k = r.handle) || (k = r.handle = function (a) {
  1446.                     return typeof n === L || a && n.event.triggered === a.type ? void 0 : n.event.dispatch.apply(k.elem, arguments)
  1447.                 }, k.elem = a), b = (b || "").match(F) || [""], h = b.length;
  1448.                 while (h--) f = ab.exec(b[h]) || [], o = q = f[1], p = (f[2] || "").split(".").sort(), o && (j = n.event.special[o] || {}, o = (e ? j.delegateType : j.bindType) || o, j = n.event.special[o] || {}, l = n.extend({
  1449.                     type: o,
  1450.                     origType: q,
  1451.                     data: d,
  1452.                     handler: c,
  1453.                     guid: c.guid,
  1454.                     selector: e,
  1455.                     needsContext: e && n.expr.match.needsContext.test(e),
  1456.                     namespace: p.join(".")
  1457.                 }, i), (m = g[o]) || (m = g[o] = [], m.delegateCount = 0, j.setup && j.setup.call(a, d, p, k) !== !1 || (a.addEventListener ? a.addEventListener(o, k, !1) : a.attachEvent && a.attachEvent("on" + o, k))), j.add && (j.add.call(a, l), l.handler.guid || (l.handler.guid = c.guid)), e ? m.splice(m.delegateCount++, 0, l) : m.push(l), n.event.global[o] = !0);
  1458.                 a = null
  1459.             }
  1460.         },
  1461.         remove: function (a, b, c, d, e) {
  1462.             var f, g, h, i, j, k, l, m, o, p, q, r = n.hasData(a) && n._data(a);
  1463.             if (r && (k = r.events)) {
  1464.                 b = (b || "").match(F) || [""], j = b.length;
  1465.                 while (j--) if (h = ab.exec(b[j]) || [], o = q = h[1], p = (h[2] || "").split(".").sort(), o) {
  1466.                     l = n.event.special[o] || {}, o = (d ? l.delegateType : l.bindType) || o, m = k[o] || [], h = h[2] && new RegExp("(^|\\.)" + p.join("\\.(?:.*\\.|)") + "(\\.|$)"), i = f = m.length;
  1467.                     while (f--) g = m[f], !e && q !== g.origType || c && c.guid !== g.guid || h && !h.test(g.namespace) || d && d !== g.selector && ("**" !== d || !g.selector) || (m.splice(f, 1), g.selector && m.delegateCount--, l.remove && l.remove.call(a, g));
  1468.                     i && !m.length && (l.teardown && l.teardown.call(a, p, r.handle) !== !1 || n.removeEvent(a, o, r.handle), delete k[o])
  1469.                 } else for (o in k) n.event.remove(a, o + b[j], c, d, !0);
  1470.                 n.isEmptyObject(k) && (delete r.handle, n._removeData(a, "events"))
  1471.             }
  1472.         },
  1473.         trigger: function (b, c, d, e) {
  1474.             var f, g, h, i, k, l, m, o = [d || z],
  1475.                 p = j.call(b, "type") ? b.type : b,
  1476.                 q = j.call(b, "namespace") ? b.namespace.split(".") : [];
  1477.             if (h = l = d = d || z, 3 !== d.nodeType && 8 !== d.nodeType && !_.test(p + n.event.triggered) && (p.indexOf(".") >= 0 && (q = p.split("."), p = q.shift(), q.sort()), g = p.indexOf(":") < 0 && "on" + p, b = b[n.expando] ? b : new n.Event(p, "object" == typeof b && b), b.isTrigger = e ? 2 : 3, b.namespace = q.join("."), b.namespace_re = b.namespace ? new RegExp("(^|\\.)" + q.join("\\.(?:.*\\.|)") + "(\\.|$)") : null, b.result = void 0, b.target || (b.target = d), c = null == c ? [b] : n.makeArray(c, [b]), k = n.event.special[p] || {}, e || !k.trigger || k.trigger.apply(d, c) !== !1)) {
  1478.                 if (!e && !k.noBubble && !n.isWindow(d)) {
  1479.                     for (i = k.delegateType || p, _.test(i + p) || (h = h.parentNode); h; h = h.parentNode) o.push(h), l = h;
  1480.                     l === (d.ownerDocument || z) && o.push(l.defaultView || l.parentWindow || a)
  1481.                 }
  1482.                 m = 0;
  1483.                 while ((h = o[m++]) && !b.isPropagationStopped()) b.type = m > 1 ? i : k.bindType || p, f = (n._data(h, "events") || {})[b.type] && n._data(h, "handle"), f && f.apply(h, c), f = g && h[g], f && f.apply && n.acceptData(h) && (b.result = f.apply(h, c), b.result === !1 && b.preventDefault());
  1484.                 if (b.type = p, !e && !b.isDefaultPrevented() && (!k._default || k._default.apply(o.pop(), c) === !1) && n.acceptData(d) && g && d[p] && !n.isWindow(d)) {
  1485.                     l = d[g], l && (d[g] = null), n.event.triggered = p;
  1486.                     try {
  1487.                         d[p]()
  1488.                     } catch (r) {}
  1489.                     n.event.triggered = void 0, l && (d[g] = l)
  1490.                 }
  1491.                 return b.result
  1492.             }
  1493.         },
  1494.         dispatch: function (a) {
  1495.             a = n.event.fix(a);
  1496.             var b, c, e, f, g, h = [],
  1497.                 i = d.call(arguments),
  1498.                 j = (n._data(this, "events") || {})[a.type] || [],
  1499.                 k = n.event.special[a.type] || {};
  1500.             if (i[0] = a, a.delegateTarget = this, !k.preDispatch || k.preDispatch.call(this, a) !== !1) {
  1501.                 h = n.event.handlers.call(this, a, j), b = 0;
  1502.                 while ((f = h[b++]) && !a.isPropagationStopped()) {
  1503.                     a.currentTarget = f.elem, g = 0;
  1504.                     while ((e = f.handlers[g++]) && !a.isImmediatePropagationStopped())(!a.namespace_re || a.namespace_re.test(e.namespace)) && (a.handleObj = e, a.data = e.data, c = ((n.event.special[e.origType] || {}).handle || e.handler).apply(f.elem, i), void 0 !== c && (a.result = c) === !1 && (a.preventDefault(), a.stopPropagation()))
  1505.                 }
  1506.                 return k.postDispatch && k.postDispatch.call(this, a), a.result
  1507.             }
  1508.         },
  1509.         handlers: function (a, b) {
  1510.             var c, d, e, f, g = [],
  1511.                 h = b.delegateCount,
  1512.                 i = a.target;
  1513.             if (h && i.nodeType && (!a.button || "click" !== a.type)) for (; i != this; i = i.parentNode || this) if (1 === i.nodeType && (i.disabled !== !0 || "click" !== a.type)) {
  1514.                 for (e = [], f = 0; h > f; f++) d = b[f], c = d.selector + " ", void 0 === e[c] && (e[c] = d.needsContext ? n(c, this).index(i) >= 0 : n.find(c, this, null, [i]).length), e[c] && e.push(d);
  1515.                 e.length && g.push({
  1516.                     elem: i,
  1517.                     handlers: e
  1518.                 })
  1519.             }
  1520.             return h < b.length && g.push({
  1521.                 elem: this,
  1522.                 handlers: b.slice(h)
  1523.             }), g
  1524.         },
  1525.         fix: function (a) {
  1526.             if (a[n.expando]) return a;
  1527.             var b, c, d, e = a.type,
  1528.                 f = a,
  1529.                 g = this.fixHooks[e];
  1530.             g || (this.fixHooks[e] = g = $.test(e) ? this.mouseHooks : Z.test(e) ? this.keyHooks : {}), d = g.props ? this.props.concat(g.props) : this.props, a = new n.Event(f), b = d.length;
  1531.             while (b--) c = d[b], a[c] = f[c];
  1532.             return a.target || (a.target = f.srcElement || z), 3 === a.target.nodeType && (a.target = a.target.parentNode), a.metaKey = !! a.metaKey, g.filter ? g.filter(a, f) : a
  1533.         },
  1534.         props: "altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),
  1535.         fixHooks: {},
  1536.         keyHooks: {
  1537.             props: "char charCode key keyCode".split(" "),
  1538.             filter: function (a, b) {
  1539.                 return null == a.which && (a.which = null != b.charCode ? b.charCode : b.keyCode), a
  1540.             }
  1541.         },
  1542.         mouseHooks: {
  1543.             props: "button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "),
  1544.             filter: function (a, b) {
  1545.                 var c, d, e, f = b.button,
  1546.                     g = b.fromElement;
  1547.                 return null == a.pageX && null != b.clientX && (d = a.target.ownerDocument || z, e = d.documentElement, c = d.body, a.pageX = b.clientX + (e && e.scrollLeft || c && c.scrollLeft || 0) - (e && e.clientLeft || c && c.clientLeft || 0), a.pageY = b.clientY + (e && e.scrollTop || c && c.scrollTop || 0) - (e && e.clientTop || c && c.clientTop || 0)), !a.relatedTarget && g && (a.relatedTarget = g === a.target ? b.toElement : g), a.which || void 0 === f || (a.which = 1 & f ? 1 : 2 & f ? 3 : 4 & f ? 2 : 0), a
  1548.             }
  1549.         },
  1550.         special: {
  1551.             load: {
  1552.                 noBubble: !0
  1553.             },
  1554.             focus: {
  1555.                 trigger: function () {
  1556.                     if (this !== db() && this.focus) try {
  1557.                         return this.focus(), !1
  1558.                     } catch (a) {}
  1559.                 },
  1560.                 delegateType: "focusin"
  1561.             },
  1562.             blur: {
  1563.                 trigger: function () {
  1564.                     return this === db() && this.blur ? (this.blur(), !1) : void 0
  1565.                 },
  1566.                 delegateType: "focusout"
  1567.             },
  1568.             click: {
  1569.                 trigger: function () {
  1570.                     return n.nodeName(this, "input") && "checkbox" === this.type && this.click ? (this.click(), !1) : void 0
  1571.                 },
  1572.                 _default: function (a) {
  1573.                     return n.nodeName(a.target, "a")
  1574.                 }
  1575.             },
  1576.             beforeunload: {
  1577.                 postDispatch: function (a) {
  1578.                     void 0 !== a.result && (a.originalEvent.returnValue = a.result)
  1579.                 }
  1580.             }
  1581.         },
  1582.         simulate: function (a, b, c, d) {
  1583.             var e = n.extend(new n.Event, c, {
  1584.                 type: a,
  1585.                 isSimulated: !0,
  1586.                 originalEvent: {}
  1587.             });
  1588.             d ? n.event.trigger(e, null, b) : n.event.dispatch.call(b, e), e.isDefaultPrevented() && c.preventDefault()
  1589.         }
  1590.     }, n.removeEvent = z.removeEventListener ?
  1591.     function (a, b, c) {
  1592.         a.removeEventListener && a.removeEventListener(b, c, !1)
  1593.     } : function (a, b, c) {
  1594.         var d = "on" + b;
  1595.         a.detachEvent && (typeof a[d] === L && (a[d] = null), a.detachEvent(d, c))
  1596.     }, n.Event = function (a, b) {
  1597.         return this instanceof n.Event ? (a && a.type ? (this.originalEvent = a, this.type = a.type, this.isDefaultPrevented = a.defaultPrevented || void 0 === a.defaultPrevented && (a.returnValue === !1 || a.getPreventDefault && a.getPreventDefault()) ? bb : cb) : this.type = a, b && n.extend(this, b), this.timeStamp = a && a.timeStamp || n.now(), void(this[n.expando] = !0)) : new n.Event(a, b)
  1598.     }, n.Event.prototype = {
  1599.         isDefaultPrevented: cb,
  1600.         isPropagationStopped: cb,
  1601.         isImmediatePropagationStopped: cb,
  1602.         preventDefault: function () {
  1603.             var a = this.originalEvent;
  1604.             this.isDefaultPrevented = bb, a && (a.preventDefault ? a.preventDefault() : a.returnValue = !1)
  1605.         },
  1606.         stopPropagation: function () {
  1607.             var a = this.originalEvent;
  1608.             this.isPropagationStopped = bb, a && (a.stopPropagation && a.stopPropagation(), a.cancelBubble = !0)
  1609.         },
  1610.         stopImmediatePropagation: function () {
  1611.             this.isImmediatePropagationStopped = bb, this.stopPropagation()
  1612.         }
  1613.     }, n.each({
  1614.         mouseenter: "mouseover",
  1615.         mouseleave: "mouseout"
  1616.     }, function (a, b) {
  1617.         n.event.special[a] = {
  1618.             delegateType: b,
  1619.             bindType: b,
  1620.             handle: function (a) {
  1621.                 var c, d = this,
  1622.                     e = a.relatedTarget,
  1623.                     f = a.handleObj;
  1624.                 return (!e || e !== d && !n.contains(d, e)) && (a.type = f.origType, c = f.handler.apply(this, arguments), a.type = b), c
  1625.             }
  1626.         }
  1627.     }), l.submitBubbles || (n.event.special.submit = {
  1628.         setup: function () {
  1629.             return n.nodeName(this, "form") ? !1 : void n.event.add(this, "click._submit keypress._submit", function (a) {
  1630.                 var b = a.target,
  1631.                     c = n.nodeName(b, "input") || n.nodeName(b, "button") ? b.form : void 0;
  1632.                 c && !n._data(c, "submitBubbles") && (n.event.add(c, "submit._submit", function (a) {
  1633.                     a._submit_bubble = !0
  1634.                 }), n._data(c, "submitBubbles", !0))
  1635.             })
  1636.         },
  1637.         postDispatch: function (a) {
  1638.             a._submit_bubble && (delete a._submit_bubble, this.parentNode && !a.isTrigger && n.event.simulate("submit", this.parentNode, a, !0))
  1639.         },
  1640.         teardown: function () {
  1641.             return n.nodeName(this, "form") ? !1 : void n.event.remove(this, "._submit")
  1642.         }
  1643.     }), l.changeBubbles || (n.event.special.change = {
  1644.         setup: function () {
  1645.             return Y.test(this.nodeName) ? (("checkbox" === this.type || "radio" === this.type) && (n.event.add(this, "propertychange._change", function (a) {
  1646.                 "checked" === a.originalEvent.propertyName && (this._just_changed = !0)
  1647.             }), n.event.add(this, "click._change", function (a) {
  1648.                 this._just_changed && !a.isTrigger && (this._just_changed = !1), n.event.simulate("change", this, a, !0)
  1649.             })), !1) : void n.event.add(this, "beforeactivate._change", function (a) {
  1650.                 var b = a.target;
  1651.                 Y.test(b.nodeName) && !n._data(b, "changeBubbles") && (n.event.add(b, "change._change", function (a) {
  1652.                     !this.parentNode || a.isSimulated || a.isTrigger || n.event.simulate("change", this.parentNode, a, !0)
  1653.                 }), n._data(b, "changeBubbles", !0))
  1654.             })
  1655.         },
  1656.         handle: function (a) {
  1657.             var b = a.target;
  1658.             return this !== b || a.isSimulated || a.isTrigger || "radio" !== b.type && "checkbox" !== b.type ? a.handleObj.handler.apply(this, arguments) : void 0
  1659.         },
  1660.         teardown: function () {
  1661.             return n.event.remove(this, "._change"), !Y.test(this.nodeName)
  1662.         }
  1663.     }), l.focusinBubbles || n.each({
  1664.         focus: "focusin",
  1665.         blur: "focusout"
  1666.     }, function (a, b) {
  1667.         var c = function (a) {
  1668.             n.event.simulate(b, a.target, n.event.fix(a), !0)
  1669.         };
  1670.         n.event.special[b] = {
  1671.             setup: function () {
  1672.                 var d = this.ownerDocument || this,
  1673.                     e = n._data(d, b);
  1674.                 e || d.addEventListener(a, c, !0), n._data(d, b, (e || 0) + 1)
  1675.             },
  1676.             teardown: function () {
  1677.                 var d = this.ownerDocument || this,
  1678.                     e = n._data(d, b) - 1;
  1679.                 e ? n._data(d, b, e) : (d.removeEventListener(a, c, !0), n._removeData(d, b))
  1680.             }
  1681.         }
  1682.     }), n.fn.extend({
  1683.         on: function (a, b, c, d, e) {
  1684.             var f, g;
  1685.             if ("object" == typeof a) {
  1686.                 "string" != typeof b && (c = c || b, b = void 0);
  1687.                 for (f in a) this.on(f, b, c, a[f], e);
  1688.                 return this
  1689.             }
  1690.             if (null == c && null == d ? (d = b, c = b = void 0) : null == d && ("string" == typeof b ? (d = c, c = void 0) : (d = c, c = b, b = void 0)), d === !1) d = cb;
  1691.             else if (!d) return this;
  1692.             return 1 === e && (g = d, d = function (a) {
  1693.                 return n().off(a), g.apply(this, arguments)
  1694.             }, d.guid = g.guid || (g.guid = n.guid++)), this.each(function () {
  1695.                 n.event.add(this, a, d, c, b)
  1696.             })
  1697.         },
  1698.         one: function (a, b, c, d) {
  1699.             return this.on(a, b, c, d, 1)
  1700.         },
  1701.         off: function (a, b, c) {
  1702.             var d, e;
  1703.             if (a && a.preventDefault && a.handleObj) return d = a.handleObj, n(a.delegateTarget).off(d.namespace ? d.origType + "." + d.namespace : d.origType, d.selector, d.handler), this;
  1704.             if ("object" == typeof a) {
  1705.                 for (e in a) this.off(e, b, a[e]);
  1706.                 return this
  1707.             }
  1708.             return (b === !1 || "function" == typeof b) && (c = b, b = void 0), c === !1 && (c = cb), this.each(function () {
  1709.                 n.event.remove(this, a, c, b)
  1710.             })
  1711.         },
  1712.         trigger: function (a, b) {
  1713.             return this.each(function () {
  1714.                 n.event.trigger(a, b, this)
  1715.             })
  1716.         },
  1717.         triggerHandler: function (a, b) {
  1718.             var c = this[0];
  1719.             return c ? n.event.trigger(a, b, c, !0) : void 0
  1720.         }
  1721.     });
  1722.  
  1723.     function eb(a) {
  1724.         var b = fb.split("|"),
  1725.             c = a.createDocumentFragment();
  1726.         if (c.createElement) while (b.length) c.createElement(b.pop());
  1727.         return c
  1728.     }
  1729.     var fb = "abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",
  1730.         gb = / jQuery\d+="(?:null|\d+)"/g,
  1731.         hb = new RegExp("<(?:" + fb + ")[\\s/>]", "i"),
  1732.         ib = /^\s+/,
  1733.         jb = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,
  1734.         kb = /<([\w:]+)/,
  1735.         lb = /<tbody/i,
  1736.         mb = /<|&#?\w+;/,
  1737.         nb = /<(?:script|style|link)/i,
  1738.         ob = /checked\s*(?:[^=]|=\s*.checked.)/i,
  1739.         pb = /^$|\/(?:java|ecma)script/i,
  1740.         qb = /^true\/(.*)/,
  1741.         rb = /^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g,
  1742.         sb = {
  1743.             option: [1, "<select multiple='multiple'>", "</select>"],
  1744.             legend: [1, "<fieldset>", "</fieldset>"],
  1745.             area: [1, "<map>", "</map>"],
  1746.             param: [1, "<object>", "</object>"],
  1747.             thead: [1, "<table>", "</table>"],
  1748.             tr: [2, "<table><tbody>", "</tbody></table>"],
  1749.             col: [2, "<table><tbody></tbody><colgroup>", "</colgroup></table>"],
  1750.             td: [3, "<table><tbody><tr>", "</tr></tbody></table>"],
  1751.             _default: l.htmlSerialize ? [0, "", ""] : [1, "X<div>", "</div>"]
  1752.         },
  1753.         tb = eb(z),
  1754.         ub = tb.appendChild(z.createElement("div"));
  1755.     sb.optgroup = sb.option, sb.tbody = sb.tfoot = sb.colgroup = sb.caption = sb.thead, sb.th = sb.td;
  1756.  
  1757.     function vb(a, b) {
  1758.         var c, d, e = 0,
  1759.             f = typeof a.getElementsByTagName !== L ? a.getElementsByTagName(b || "*") : typeof a.querySelectorAll !== L ? a.querySelectorAll(b || "*") : void 0;
  1760.         if (!f) for (f = [], c = a.childNodes || a; null != (d = c[e]); e++)!b || n.nodeName(d, b) ? f.push(d) : n.merge(f, vb(d, b));
  1761.         return void 0 === b || b && n.nodeName(a, b) ? n.merge([a], f) : f
  1762.     }
  1763.     function wb(a) {
  1764.         X.test(a.type) && (a.defaultChecked = a.checked)
  1765.     }
  1766.     function xb(a, b) {
  1767.         return n.nodeName(a, "table") && n.nodeName(11 !== b.nodeType ? b : b.firstChild, "tr") ? a.getElementsByTagName("tbody")[0] || a.appendChild(a.ownerDocument.createElement("tbody")) : a
  1768.     }
  1769.     function yb(a) {
  1770.         return a.type = (null !== n.find.attr(a, "type")) + "/" + a.type, a
  1771.     }
  1772.     function zb(a) {
  1773.         var b = qb.exec(a.type);
  1774.         return b ? a.type = b[1] : a.removeAttribute("type"), a
  1775.     }
  1776.     function Ab(a, b) {
  1777.         for (var c, d = 0; null != (c = a[d]); d++) n._data(c, "globalEval", !b || n._data(b[d], "globalEval"))
  1778.     }
  1779.     function Bb(a, b) {
  1780.         if (1 === b.nodeType && n.hasData(a)) {
  1781.             var c, d, e, f = n._data(a),
  1782.                 g = n._data(b, f),
  1783.                 h = f.events;
  1784.             if (h) {
  1785.                 delete g.handle, g.events = {};
  1786.                 for (c in h) for (d = 0, e = h[c].length; e > d; d++) n.event.add(b, c, h[c][d])
  1787.             }
  1788.             g.data && (g.data = n.extend({}, g.data))
  1789.         }
  1790.     }
  1791.     function Cb(a, b) {
  1792.         var c, d, e;
  1793.         if (1 === b.nodeType) {
  1794.             if (c = b.nodeName.toLowerCase(), !l.noCloneEvent && b[n.expando]) {
  1795.                 e = n._data(b);
  1796.                 for (d in e.events) n.removeEvent(b, d, e.handle);
  1797.                 b.removeAttribute(n.expando)
  1798.             }
  1799.             "script" === c && b.text !== a.text ? (yb(b).text = a.text, zb(b)) : "object" === c ? (b.parentNode && (b.outerHTML = a.outerHTML), l.html5Clone && a.innerHTML && !n.trim(b.innerHTML) && (b.innerHTML = a.innerHTML)) : "input" === c && X.test(a.type) ? (b.defaultChecked = b.checked = a.checked, b.value !== a.value && (b.value = a.value)) : "option" === c ? b.defaultSelected = b.selected = a.defaultSelected : ("input" === c || "textarea" === c) && (b.defaultValue = a.defaultValue)
  1800.         }
  1801.     }
  1802.     n.extend({
  1803.         clone: function (a, b, c) {
  1804.             var d, e, f, g, h, i = n.contains(a.ownerDocument, a);
  1805.             if (l.html5Clone || n.isXMLDoc(a) || !hb.test("<" + a.nodeName + ">") ? f = a.cloneNode(!0) : (ub.innerHTML = a.outerHTML, ub.removeChild(f = ub.firstChild)), !(l.noCloneEvent && l.noCloneChecked || 1 !== a.nodeType && 11 !== a.nodeType || n.isXMLDoc(a))) for (d = vb(f), h = vb(a), g = 0; null != (e = h[g]); ++g) d[g] && Cb(e, d[g]);
  1806.             if (b) if (c) for (h = h || vb(a), d = d || vb(f), g = 0; null != (e = h[g]); g++) Bb(e, d[g]);
  1807.             else Bb(a, f);
  1808.             return d = vb(f, "script"), d.length > 0 && Ab(d, !i && vb(a, "script")), d = h = e = null, f
  1809.         },
  1810.         buildFragment: function (a, b, c, d) {
  1811.             for (var e, f, g, h, i, j, k, m = a.length, o = eb(b), p = [], q = 0; m > q; q++) if (f = a[q], f || 0 === f) if ("object" === n.type(f)) n.merge(p, f.nodeType ? [f] : f);
  1812.             else if (mb.test(f)) {
  1813.                 h = h || o.appendChild(b.createElement("div")), i = (kb.exec(f) || ["", ""])[1].toLowerCase(), k = sb[i] || sb._default, h.innerHTML = k[1] + f.replace(jb, "<$1></$2>") + k[2], e = k[0];
  1814.                 while (e--) h = h.lastChild;
  1815.                 if (!l.leadingWhitespace && ib.test(f) && p.push(b.createTextNode(ib.exec(f)[0])), !l.tbody) {
  1816.                     f = "table" !== i || lb.test(f) ? "<table>" !== k[1] || lb.test(f) ? 0 : h : h.firstChild, e = f && f.childNodes.length;
  1817.                     while (e--) n.nodeName(j = f.childNodes[e], "tbody") && !j.childNodes.length && f.removeChild(j)
  1818.                 }
  1819.                 n.merge(p, h.childNodes), h.textContent = "";
  1820.                 while (h.firstChild) h.removeChild(h.firstChild);
  1821.                 h = o.lastChild
  1822.             } else p.push(b.createTextNode(f));
  1823.             h && o.removeChild(h), l.appendChecked || n.grep(vb(p, "input"), wb), q = 0;
  1824.             while (f = p[q++]) if ((!d || -1 === n.inArray(f, d)) && (g = n.contains(f.ownerDocument, f), h = vb(o.appendChild(f), "script"), g && Ab(h), c)) {
  1825.                 e = 0;
  1826.                 while (f = h[e++]) pb.test(f.type || "") && c.push(f)
  1827.             }
  1828.             return h = null, o
  1829.         },
  1830.         cleanData: function (a, b) {
  1831.             for (var d, e, f, g, h = 0, i = n.expando, j = n.cache, k = l.deleteExpando, m = n.event.special; null != (d = a[h]); h++) if ((b || n.acceptData(d)) && (f = d[i], g = f && j[f])) {
  1832.                 if (g.events) for (e in g.events) m[e] ? n.event.remove(d, e) : n.removeEvent(d, e, g.handle);
  1833.                 j[f] && (delete j[f], k ? delete d[i] : typeof d.removeAttribute !== L ? d.removeAttribute(i) : d[i] = null, c.push(f))
  1834.             }
  1835.         }
  1836.     }), n.fn.extend({
  1837.         text: function (a) {
  1838.             return W(this, function (a) {
  1839.                 return void 0 === a ? n.text(this) : this.empty().append((this[0] && this[0].ownerDocument || z).createTextNode(a))
  1840.             }, null, a, arguments.length)
  1841.         },
  1842.         append: function () {
  1843.             return this.domManip(arguments, function (a) {
  1844.                 if (1 === this.nodeType || 11 === this.nodeType || 9 === this.nodeType) {
  1845.                     var b = xb(this, a);
  1846.                     b.appendChild(a)
  1847.                 }
  1848.             })
  1849.         },
  1850.         prepend: function () {
  1851.             return this.domManip(arguments, function (a) {
  1852.                 if (1 === this.nodeType || 11 === this.nodeType || 9 === this.nodeType) {
  1853.                     var b = xb(this, a);
  1854.                     b.insertBefore(a, b.firstChild)
  1855.                 }
  1856.             })
  1857.         },
  1858.         before: function () {
  1859.             return this.domManip(arguments, function (a) {
  1860.                 this.parentNode && this.parentNode.insertBefore(a, this)
  1861.             })
  1862.         },
  1863.         after: function () {
  1864.             return this.domManip(arguments, function (a) {
  1865.                 this.parentNode && this.parentNode.insertBefore(a, this.nextSibling)
  1866.             })
  1867.         },
  1868.         remove: function (a, b) {
  1869.             for (var c, d = a ? n.filter(a, this) : this, e = 0; null != (c = d[e]); e++) b || 1 !== c.nodeType || n.cleanData(vb(c)), c.parentNode && (b && n.contains(c.ownerDocument, c) && Ab(vb(c, "script")), c.parentNode.removeChild(c));
  1870.             return this
  1871.         },
  1872.         empty: function () {
  1873.             for (var a, b = 0; null != (a = this[b]); b++) {
  1874.                 1 === a.nodeType && n.cleanData(vb(a, !1));
  1875.                 while (a.firstChild) a.removeChild(a.firstChild);
  1876.                 a.options && n.nodeName(a, "select") && (a.options.length = 0)
  1877.             }
  1878.             return this
  1879.         },
  1880.         clone: function (a, b) {
  1881.             return a = null == a ? !1 : a, b = null == b ? a : b, this.map(function () {
  1882.                 return n.clone(this, a, b)
  1883.             })
  1884.         },
  1885.         html: function (a) {
  1886.             return W(this, function (a) {
  1887.                 var b = this[0] || {},
  1888.                     c = 0,
  1889.                     d = this.length;
  1890.                 if (void 0 === a) return 1 === b.nodeType ? b.innerHTML.replace(gb, "") : void 0;
  1891.                 if (!("string" != typeof a || nb.test(a) || !l.htmlSerialize && hb.test(a) || !l.leadingWhitespace && ib.test(a) || sb[(kb.exec(a) || ["", ""])[1].toLowerCase()])) {
  1892.                     a = a.replace(jb, "<$1></$2>");
  1893.                     try {
  1894.                         for (; d > c; c++) b = this[c] || {}, 1 === b.nodeType && (n.cleanData(vb(b, !1)), b.innerHTML = a);
  1895.                         b = 0
  1896.                     } catch (e) {}
  1897.                 }
  1898.                 b && this.empty().append(a)
  1899.             }, null, a, arguments.length)
  1900.         },
  1901.         replaceWith: function () {
  1902.             var a = arguments[0];
  1903.             return this.domManip(arguments, function (b) {
  1904.                 a = this.parentNode, n.cleanData(vb(this)), a && a.replaceChild(b, this)
  1905.             }), a && (a.length || a.nodeType) ? this : this.remove()
  1906.         },
  1907.         detach: function (a) {
  1908.             return this.remove(a, !0)
  1909.         },
  1910.         domManip: function (a, b) {
  1911.             a = e.apply([], a);
  1912.             var c, d, f, g, h, i, j = 0,
  1913.                 k = this.length,
  1914.                 m = this,
  1915.                 o = k - 1,
  1916.                 p = a[0],
  1917.                 q = n.isFunction(p);
  1918.             if (q || k > 1 && "string" == typeof p && !l.checkClone && ob.test(p)) return this.each(function (c) {
  1919.                 var d = m.eq(c);
  1920.                 q && (a[0] = p.call(this, c, d.html())), d.domManip(a, b)
  1921.             });
  1922.             if (k && (i = n.buildFragment(a, this[0].ownerDocument, !1, this), c = i.firstChild, 1 === i.childNodes.length && (i = c), c)) {
  1923.                 for (g = n.map(vb(i, "script"), yb), f = g.length; k > j; j++) d = i, j !== o && (d = n.clone(d, !0, !0), f && n.merge(g, vb(d, "script"))), b.call(this[j], d, j);
  1924.                 if (f) for (h = g[g.length - 1].ownerDocument, n.map(g, zb), j = 0; f > j; j++) d = g[j], pb.test(d.type || "") && !n._data(d, "globalEval") && n.contains(h, d) && (d.src ? n._evalUrl && n._evalUrl(d.src) : n.globalEval((d.text || d.textContent || d.innerHTML || "").replace(rb, "")));
  1925.                 i = c = null
  1926.             }
  1927.             return this
  1928.         }
  1929.     }), n.each({
  1930.         appendTo: "append",
  1931.         prependTo: "prepend",
  1932.         insertBefore: "before",
  1933.         insertAfter: "after",
  1934.         replaceAll: "replaceWith"
  1935.     }, function (a, b) {
  1936.         n.fn[a] = function (a) {
  1937.             for (var c, d = 0, e = [], g = n(a), h = g.length - 1; h >= d; d++) c = d === h ? this : this.clone(!0), n(g[d])[b](c), f.apply(e, c.get());
  1938.             return this.pushStack(e)
  1939.         }
  1940.     });
  1941.     var Db, Eb = {};
  1942.  
  1943.     function Fb(b, c) {
  1944.         var d = n(c.createElement(b)).appendTo(c.body),
  1945.             e = a.getDefaultComputedStyle ? a.getDefaultComputedStyle(d[0]).display : n.css(d[0], "display");
  1946.         return d.detach(), e
  1947.     }
  1948.     function Gb(a) {
  1949.         var b = z,
  1950.             c = Eb[a];
  1951.         return c || (c = Fb(a, b), "none" !== c && c || (Db = (Db || n("<iframe frameborder='0' width='0' height='0'/>")).appendTo(b.documentElement), b = (Db[0].contentWindow || Db[0].contentDocument).document, b.write(), b.close(), c = Fb(a, b), Db.detach()), Eb[a] = c), c
  1952.     }!
  1953.     function () {
  1954.         var a, b, c = z.createElement("div"),
  1955.             d = "-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;display:block;padding:0;margin:0;border:0";
  1956.         c.innerHTML = "  <link/><table></table><a href='/a'>a</a><input type='checkbox'/>", a = c.getElementsByTagName("a")[0], a.style.cssText = "float:left;opacity:.5", l.opacity = /^0.5/.test(a.style.opacity), l.cssFloat = !! a.style.cssFloat, c.style.backgroundClip = "content-box", c.cloneNode(!0).style.backgroundClip = "", l.clearCloneStyle = "content-box" === c.style.backgroundClip, a = c = null, l.shrinkWrapBlocks = function () {
  1957.             var a, c, e, f;
  1958.             if (null == b) {
  1959.                 if (a = z.getElementsByTagName("body")[0], !a) return;
  1960.                 f = "border:0;width:0;height:0;position:absolute;top:0;left:-9999px", c = z.createElement("div"), e = z.createElement("div"), a.appendChild(c).appendChild(e), b = !1, typeof e.style.zoom !== L && (e.style.cssText = d + ";width:1px;padding:1px;zoom:1", e.innerHTML = "<div></div>", e.firstChild.style.width = "5px", b = 3 !== e.offsetWidth), a.removeChild(c), a = c = e = null
  1961.             }
  1962.             return b
  1963.         }
  1964.     }();
  1965.     var Hb = /^margin/,
  1966.         Ib = new RegExp("^(" + T + ")(?!px)[a-z%]+$", "i"),
  1967.         Jb, Kb, Lb = /^(top|right|bottom|left)$/;
  1968.     a.getComputedStyle ? (Jb = function (a) {
  1969.         return a.ownerDocument.defaultView.getComputedStyle(a, null)
  1970.     }, Kb = function (a, b, c) {
  1971.         var d, e, f, g, h = a.style;
  1972.         return c = c || Jb(a), g = c ? c.getPropertyValue(b) || c[b] : void 0, c && ("" !== g || n.contains(a.ownerDocument, a) || (g = n.style(a, b)), Ib.test(g) && Hb.test(b) && (d = h.width, e = h.minWidth, f = h.maxWidth, h.minWidth = h.maxWidth = h.width = g, g = c.width, h.width = d, h.minWidth = e, h.maxWidth = f)), void 0 === g ? g : g + ""
  1973.     }) : z.documentElement.currentStyle && (Jb = function (a) {
  1974.         return a.currentStyle
  1975.     }, Kb = function (a, b, c) {
  1976.         var d, e, f, g, h = a.style;
  1977.         return c = c || Jb(a), g = c ? c[b] : void 0, null == g && h && h[b] && (g = h[b]), Ib.test(g) && !Lb.test(b) && (d = h.left, e = a.runtimeStyle, f = e && e.left, f && (e.left = a.currentStyle.left), h.left = "fontSize" === b ? "1em" : g, g = h.pixelLeft + "px", h.left = d, f && (e.left = f)), void 0 === g ? g : g + "" || "auto"
  1978.     });
  1979.  
  1980.     function Mb(a, b) {
  1981.         return {
  1982.             get: function () {
  1983.                 var c = a();
  1984.                 if (null != c) return c ? void delete this.get : (this.get = b).apply(this, arguments)
  1985.             }
  1986.         }
  1987.     }!
  1988.     function () {
  1989.         var b, c, d, e, f, g, h = z.createElement("div"),
  1990.             i = "border:0;width:0;height:0;position:absolute;top:0;left:-9999px",
  1991.             j = "-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;display:block;padding:0;margin:0;border:0";
  1992.         h.innerHTML = "  <link/><table></table><a href='/a'>a</a><input type='checkbox'/>", b = h.getElementsByTagName("a")[0], b.style.cssText = "float:left;opacity:.5", l.opacity = /^0.5/.test(b.style.opacity), l.cssFloat = !! b.style.cssFloat, h.style.backgroundClip = "content-box", h.cloneNode(!0).style.backgroundClip = "", l.clearCloneStyle = "content-box" === h.style.backgroundClip, b = h = null, n.extend(l, {
  1993.             reliableHiddenOffsets: function () {
  1994.                 if (null != c) return c;
  1995.                 var a, b, d, e = z.createElement("div"),
  1996.                     f = z.getElementsByTagName("body")[0];
  1997.                 if (f) return e.setAttribute("className", "t"), e.innerHTML = "  <link/><table></table><a href='/a'>a</a><input type='checkbox'/>", a = z.createElement("div"), a.style.cssText = i, f.appendChild(a).appendChild(e), e.innerHTML = "<table><tr><td></td><td>t</td></tr></table>", b = e.getElementsByTagName("td"), b[0].style.cssText = "padding:0;margin:0;border:0;display:none", d = 0 === b[0].offsetHeight, b[0].style.display = "", b[1].style.display = "none", c = d && 0 === b[0].offsetHeight, f.removeChild(a), e = f = null, c
  1998.             },
  1999.             boxSizing: function () {
  2000.                 return null == d && k(), d
  2001.             },
  2002.             boxSizingReliable: function () {
  2003.                 return null == e && k(), e
  2004.             },
  2005.             pixelPosition: function () {
  2006.                 return null == f && k(), f
  2007.             },
  2008.             reliableMarginRight: function () {
  2009.                 var b, c, d, e;
  2010.                 if (null == g && a.getComputedStyle) {
  2011.                     if (b = z.getElementsByTagName("body")[0], !b) return;
  2012.                     c = z.createElement("div"), d = z.createElement("div"), c.style.cssText = i, b.appendChild(c).appendChild(d), e = d.appendChild(z.createElement("div")), e.style.cssText = d.style.cssText = j, e.style.marginRight = e.style.width = "0", d.style.width = "1px", g = !parseFloat((a.getComputedStyle(e, null) || {}).marginRight), b.removeChild(c)
  2013.                 }
  2014.                 return g
  2015.             }
  2016.         });
  2017.  
  2018.         function k() {
  2019.             var b, c, h = z.getElementsByTagName("body")[0];
  2020.             h && (b = z.createElement("div"), c = z.createElement("div"), b.style.cssText = i, h.appendChild(b).appendChild(c), c.style.cssText = "-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;position:absolute;display:block;padding:1px;border:1px;width:4px;margin-top:1%;top:1%", n.swap(h, null != h.style.zoom ? {
  2021.                 zoom: 1
  2022.             } : {}, function () {
  2023.                 d = 4 === c.offsetWidth
  2024.             }), e = !0, f = !1, g = !0, a.getComputedStyle && (f = "1%" !== (a.getComputedStyle(c, null) || {}).top, e = "4px" === (a.getComputedStyle(c, null) || {
  2025.                 width: "4px"
  2026.             }).width), h.removeChild(b), c = h = null)
  2027.         }
  2028.     }(), n.swap = function (a, b, c, d) {
  2029.         var e, f, g = {};
  2030.         for (f in b) g[f] = a.style[f], a.style[f] = b[f];
  2031.         e = c.apply(a, d || []);
  2032.         for (f in b) a.style[f] = g[f];
  2033.         return e
  2034.     };
  2035.     var Nb = /alpha\([^)]*\)/i,
  2036.         Ob = /opacity\s*=\s*([^)]*)/,
  2037.         Pb = /^(none|table(?!-c[ea]).+)/,
  2038.         Qb = new RegExp("^(" + T + ")(.*)$", "i"),
  2039.         Rb = new RegExp("^([+-])=(" + T + ")", "i"),
  2040.         Sb = {
  2041.             position: "absolute",
  2042.             visibility: "hidden",
  2043.             display: "block"
  2044.         },
  2045.         Tb = {
  2046.             letterSpacing: 0,
  2047.             fontWeight: 400
  2048.         },
  2049.         Ub = ["Webkit", "O", "Moz", "ms"];
  2050.  
  2051.     function Vb(a, b) {
  2052.         if (b in a) return b;
  2053.         var c = b.charAt(0).toUpperCase() + b.slice(1),
  2054.             d = b,
  2055.             e = Ub.length;
  2056.         while (e--) if (b = Ub[e] + c, b in a) return b;
  2057.         return d
  2058.     }
  2059.     function Wb(a, b) {
  2060.         for (var c, d, e, f = [], g = 0, h = a.length; h > g; g++) d = a[g], d.style && (f[g] = n._data(d, "olddisplay"), c = d.style.display, b ? (f[g] || "none" !== c || (d.style.display = ""), "" === d.style.display && V(d) && (f[g] = n._data(d, "olddisplay", Gb(d.nodeName)))) : f[g] || (e = V(d), (c && "none" !== c || !e) && n._data(d, "olddisplay", e ? c : n.css(d, "display"))));
  2061.         for (g = 0; h > g; g++) d = a[g], d.style && (b && "none" !== d.style.display && "" !== d.style.display || (d.style.display = b ? f[g] || "" : "none"));
  2062.         return a
  2063.     }
  2064.     function Xb(a, b, c) {
  2065.         var d = Qb.exec(b);
  2066.         return d ? Math.max(0, d[1] - (c || 0)) + (d[2] || "px") : b
  2067.     }
  2068.     function Yb(a, b, c, d, e) {
  2069.         for (var f = c === (d ? "border" : "content") ? 4 : "width" === b ? 1 : 0, g = 0; 4 > f; f += 2)"margin" === c && (g += n.css(a, c + U[f], !0, e)), d ? ("content" === c && (g -= n.css(a, "padding" + U[f], !0, e)), "margin" !== c && (g -= n.css(a, "border" + U[f] + "Width", !0, e))) : (g += n.css(a, "padding" + U[f], !0, e), "padding" !== c && (g += n.css(a, "border" + U[f] + "Width", !0, e)));
  2070.         return g
  2071.     }
  2072.     function Zb(a, b, c) {
  2073.         var d = !0,
  2074.             e = "width" === b ? a.offsetWidth : a.offsetHeight,
  2075.             f = Jb(a),
  2076.             g = l.boxSizing() && "border-box" === n.css(a, "boxSizing", !1, f);
  2077.         if (0 >= e || null == e) {
  2078.             if (e = Kb(a, b, f), (0 > e || null == e) && (e = a.style[b]), Ib.test(e)) return e;
  2079.             d = g && (l.boxSizingReliable() || e === a.style[b]), e = parseFloat(e) || 0
  2080.         }
  2081.         return e + Yb(a, b, c || (g ? "border" : "content"), d, f) + "px"
  2082.     }
  2083.     n.extend({
  2084.         cssHooks: {
  2085.             opacity: {
  2086.                 get: function (a, b) {
  2087.                     if (b) {
  2088.                         var c = Kb(a, "opacity");
  2089.                         return "" === c ? "1" : c
  2090.                     }
  2091.                 }
  2092.             }
  2093.         },
  2094.         cssNumber: {
  2095.             columnCount: !0,
  2096.             fillOpacity: !0,
  2097.             fontWeight: !0,
  2098.             lineHeight: !0,
  2099.             opacity: !0,
  2100.             order: !0,
  2101.             orphans: !0,
  2102.             widows: !0,
  2103.             zIndex: !0,
  2104.             zoom: !0
  2105.         },
  2106.         cssProps: {
  2107.             "float": l.cssFloat ? "cssFloat" : "styleFloat"
  2108.         },
  2109.         style: function (a, b, c, d) {
  2110.             if (a && 3 !== a.nodeType && 8 !== a.nodeType && a.style) {
  2111.                 var e, f, g, h = n.camelCase(b),
  2112.                     i = a.style;
  2113.                 if (b = n.cssProps[h] || (n.cssProps[h] = Vb(i, h)), g = n.cssHooks[b] || n.cssHooks[h], void 0 === c) return g && "get" in g && void 0 !== (e = g.get(a, !1, d)) ? e : i[b];
  2114.                 if (f = typeof c, "string" === f && (e = Rb.exec(c)) && (c = (e[1] + 1) * e[2] + parseFloat(n.css(a, b)), f = "number"), null != c && c === c && ("number" !== f || n.cssNumber[h] || (c += "px"), l.clearCloneStyle || "" !== c || 0 !== b.indexOf("background") || (i[b] = "inherit"), !(g && "set" in g && void 0 === (c = g.set(a, c, d))))) try {
  2115.                     i[b] = "", i[b] = c
  2116.                 } catch (j) {}
  2117.             }
  2118.         },
  2119.         css: function (a, b, c, d) {
  2120.             var e, f, g, h = n.camelCase(b);
  2121.             return b = n.cssProps[h] || (n.cssProps[h] = Vb(a.style, h)), g = n.cssHooks[b] || n.cssHooks[h], g && "get" in g && (f = g.get(a, !0, c)), void 0 === f && (f = Kb(a, b, d)), "normal" === f && b in Tb && (f = Tb[b]), "" === c || c ? (e = parseFloat(f), c === !0 || n.isNumeric(e) ? e || 0 : f) : f
  2122.         }
  2123.     }), n.each(["height", "width"], function (a, b) {
  2124.         n.cssHooks[b] = {
  2125.             get: function (a, c, d) {
  2126.                 return c ? 0 === a.offsetWidth && Pb.test(n.css(a, "display")) ? n.swap(a, Sb, function () {
  2127.                     return Zb(a, b, d)
  2128.                 }) : Zb(a, b, d) : void 0
  2129.             },
  2130.             set: function (a, c, d) {
  2131.                 var e = d && Jb(a);
  2132.                 return Xb(a, c, d ? Yb(a, b, d, l.boxSizing() && "border-box" === n.css(a, "boxSizing", !1, e), e) : 0)
  2133.             }
  2134.         }
  2135.     }), l.opacity || (n.cssHooks.opacity = {
  2136.         get: function (a, b) {
  2137.             return Ob.test((b && a.currentStyle ? a.currentStyle.filter : a.style.filter) || "") ? .01 * parseFloat(RegExp.$1) + "" : b ? "1" : ""
  2138.         },
  2139.         set: function (a, b) {
  2140.             var c = a.style,
  2141.                 d = a.currentStyle,
  2142.                 e = n.isNumeric(b) ? "alpha(opacity=" + 100 * b + ")" : "",
  2143.                 f = d && d.filter || c.filter || "";
  2144.             c.zoom = 1, (b >= 1 || "" === b) && "" === n.trim(f.replace(Nb, "")) && c.removeAttribute && (c.removeAttribute("filter"), "" === b || d && !d.filter) || (c.filter = Nb.test(f) ? f.replace(Nb, e) : f + " " + e)
  2145.         }
  2146.     }), n.cssHooks.marginRight = Mb(l.reliableMarginRight, function (a, b) {
  2147.         return b ? n.swap(a, {
  2148.             display: "inline-block"
  2149.         }, Kb, [a, "marginRight"]) : void 0
  2150.     }), n.each({
  2151.         margin: "",
  2152.         padding: "",
  2153.         border: "Width"
  2154.     }, function (a, b) {
  2155.         n.cssHooks[a + b] = {
  2156.             expand: function (c) {
  2157.                 for (var d = 0, e = {}, f = "string" == typeof c ? c.split(" ") : [c]; 4 > d; d++) e[a + U[d] + b] = f[d] || f[d - 2] || f[0];
  2158.                 return e
  2159.             }
  2160.         }, Hb.test(a) || (n.cssHooks[a + b].set = Xb)
  2161.     }), n.fn.extend({
  2162.         css: function (a, b) {
  2163.             return W(this, function (a, b, c) {
  2164.                 var d, e, f = {},
  2165.                     g = 0;
  2166.                 if (n.isArray(b)) {
  2167.                     for (d = Jb(a), e = b.length; e > g; g++) f[b[g]] = n.css(a, b[g], !1, d);
  2168.                     return f
  2169.                 }
  2170.                 return void 0 !== c ? n.style(a, b, c) : n.css(a, b)
  2171.             }, a, b, arguments.length > 1)
  2172.         },
  2173.         show: function () {
  2174.             return Wb(this, !0)
  2175.         },
  2176.         hide: function () {
  2177.             return Wb(this)
  2178.         },
  2179.         toggle: function (a) {
  2180.             return "boolean" == typeof a ? a ? this.show() : this.hide() : this.each(function () {
  2181.                 V(this) ? n(this).show() : n(this).hide()
  2182.             })
  2183.         }
  2184.     });
  2185.  
  2186.     function $b(a, b, c, d, e) {
  2187.         return new $b.prototype.init(a, b, c, d, e)
  2188.     }
  2189.     n.Tween = $b, $b.prototype = {
  2190.         constructor: $b,
  2191.         init: function (a, b, c, d, e, f) {
  2192.             this.elem = a, this.prop = c, this.easing = e || "swing", this.options = b, this.start = this.now = this.cur(), this.end = d, this.unit = f || (n.cssNumber[c] ? "" : "px")
  2193.         },
  2194.         cur: function () {
  2195.             var a = $b.propHooks[this.prop];
  2196.             return a && a.get ? a.get(this) : $b.propHooks._default.get(this)
  2197.         },
  2198.         run: function (a) {
  2199.             var b, c = $b.propHooks[this.prop];
  2200.             return this.pos = b = this.options.duration ? n.easing[this.easing](a, this.options.duration * a, 0, 1, this.options.duration) : a, this.now = (this.end - this.start) * b + this.start, this.options.step && this.options.step.call(this.elem, this.now, this), c && c.set ? c.set(this) : $b.propHooks._default.set(this), this
  2201.         }
  2202.     }, $b.prototype.init.prototype = $b.prototype, $b.propHooks = {
  2203.         _default: {
  2204.             get: function (a) {
  2205.                 var b;
  2206.                 return null == a.elem[a.prop] || a.elem.style && null != a.elem.style[a.prop] ? (b = n.css(a.elem, a.prop, ""), b && "auto" !== b ? b : 0) : a.elem[a.prop]
  2207.             },
  2208.             set: function (a) {
  2209.                 n.fx.step[a.prop] ? n.fx.step[a.prop](a) : a.elem.style && (null != a.elem.style[n.cssProps[a.prop]] || n.cssHooks[a.prop]) ? n.style(a.elem, a.prop, a.now + a.unit) : a.elem[a.prop] = a.now
  2210.             }
  2211.         }
  2212.     }, $b.propHooks.scrollTop = $b.propHooks.scrollLeft = {
  2213.         set: function (a) {
  2214.             a.elem.nodeType && a.elem.parentNode && (a.elem[a.prop] = a.now)
  2215.         }
  2216.     }, n.easing = {
  2217.         linear: function (a) {
  2218.             return a
  2219.         },
  2220.         swing: function (a) {
  2221.             return.5 - Math.cos(a * Math.PI) / 2
  2222.         }
  2223.     }, n.fx = $b.prototype.init, n.fx.step = {};
  2224.     var _b, ac, bc = /^(?:toggle|show|hide)$/,
  2225.         cc = new RegExp("^(?:([+-])=|)(" + T + ")([a-z%]*)$", "i"),
  2226.         dc = /queueHooks$/,
  2227.         ec = [jc],
  2228.         fc = {
  2229.             "*": [function (a, b) {
  2230.                 var c = this.createTween(a, b),
  2231.                     d = c.cur(),
  2232.                     e = cc.exec(b),
  2233.                     f = e && e[3] || (n.cssNumber[a] ? "" : "px"),
  2234.                     g = (n.cssNumber[a] || "px" !== f && +d) && cc.exec(n.css(c.elem, a)),
  2235.                     h = 1,
  2236.                     i = 20;
  2237.                 if (g && g[3] !== f) {
  2238.                     f = f || g[3], e = e || [], g = +d || 1;
  2239.                     do h = h || ".5", g /= h, n.style(c.elem, a, g + f);
  2240.                     while (h !== (h = c.cur() / d) && 1 !== h && --i)
  2241.                 }
  2242.                 return e && (g = c.start = +g || +d || 0, c.unit = f, c.end = e[1] ? g + (e[1] + 1) * e[2] : +e[2]), c
  2243.             }]
  2244.         };
  2245.  
  2246.     function gc() {
  2247.         return setTimeout(function () {
  2248.             _b = void 0
  2249.         }), _b = n.now()
  2250.     }
  2251.     function hc(a, b) {
  2252.         var c, d = {
  2253.             height: a
  2254.         },
  2255.             e = 0;
  2256.         for (b = b ? 1 : 0; 4 > e; e += 2 - b) c = U[e], d["margin" + c] = d["padding" + c] = a;
  2257.         return b && (d.opacity = d.width = a), d
  2258.     }
  2259.     function ic(a, b, c) {
  2260.         for (var d, e = (fc[b] || []).concat(fc["*"]), f = 0, g = e.length; g > f; f++) if (d = e[f].call(c, b, a)) return d
  2261.     }
  2262.     function jc(a, b, c) {
  2263.         var d, e, f, g, h, i, j, k, m = this,
  2264.             o = {},
  2265.             p = a.style,
  2266.             q = a.nodeType && V(a),
  2267.             r = n._data(a, "fxshow");
  2268.         c.queue || (h = n._queueHooks(a, "fx"), null == h.unqueued && (h.unqueued = 0, i = h.empty.fire, h.empty.fire = function () {
  2269.             h.unqueued || i()
  2270.         }), h.unqueued++, m.always(function () {
  2271.             m.always(function () {
  2272.                 h.unqueued--, n.queue(a, "fx").length || h.empty.fire()
  2273.             })
  2274.         })), 1 === a.nodeType && ("height" in b || "width" in b) && (c.overflow = [p.overflow, p.overflowX, p.overflowY], j = n.css(a, "display"), k = Gb(a.nodeName), "none" === j && (j = k), "inline" === j && "none" === n.css(a, "float") && (l.inlineBlockNeedsLayout && "inline" !== k ? p.zoom = 1 : p.display = "inline-block")), c.overflow && (p.overflow = "hidden", l.shrinkWrapBlocks() || m.always(function () {
  2275.             p.overflow = c.overflow[0], p.overflowX = c.overflow[1], p.overflowY = c.overflow[2]
  2276.         }));
  2277.         for (d in b) if (e = b[d], bc.exec(e)) {
  2278.             if (delete b[d], f = f || "toggle" === e, e === (q ? "hide" : "show")) {
  2279.                 if ("show" !== e || !r || void 0 === r[d]) continue;
  2280.                 q = !0
  2281.             }
  2282.             o[d] = r && r[d] || n.style(a, d)
  2283.         }
  2284.         if (!n.isEmptyObject(o)) {
  2285.             r ? "hidden" in r && (q = r.hidden) : r = n._data(a, "fxshow", {}), f && (r.hidden = !q), q ? n(a).show() : m.done(function () {
  2286.                 n(a).hide()
  2287.             }), m.done(function () {
  2288.                 var b;
  2289.                 n._removeData(a, "fxshow");
  2290.                 for (b in o) n.style(a, b, o[b])
  2291.             });
  2292.             for (d in o) g = ic(q ? r[d] : 0, d, m), d in r || (r[d] = g.start, q && (g.end = g.start, g.start = "width" === d || "height" === d ? 1 : 0))
  2293.         }
  2294.     }
  2295.     function kc(a, b) {
  2296.         var c, d, e, f, g;
  2297.         for (c in a) if (d = n.camelCase(c), e = b[d], f = a[c], n.isArray(f) && (e = f[1], f = a[c] = f[0]), c !== d && (a[d] = f, delete a[c]), g = n.cssHooks[d], g && "expand" in g) {
  2298.             f = g.expand(f), delete a[d];
  2299.             for (c in f) c in a || (a[c] = f[c], b[c] = e)
  2300.         } else b[d] = e
  2301.     }
  2302.     function lc(a, b, c) {
  2303.         var d, e, f = 0,
  2304.             g = ec.length,
  2305.             h = n.Deferred().always(function () {
  2306.                 delete i.elem
  2307.             }),
  2308.             i = function () {
  2309.                 if (e) return !1;
  2310.                 for (var b = _b || gc(), c = Math.max(0, j.startTime + j.duration - b), d = c / j.duration || 0, f = 1 - d, g = 0, i = j.tweens.length; i > g; g++) j.tweens[g].run(f);
  2311.                 return h.notifyWith(a, [j, f, c]), 1 > f && i ? c : (h.resolveWith(a, [j]), !1)
  2312.             },
  2313.             j = h.promise({
  2314.                 elem: a,
  2315.                 props: n.extend({}, b),
  2316.                 opts: n.extend(!0, {
  2317.                     specialEasing: {}
  2318.                 }, c),
  2319.                 originalProperties: b,
  2320.                 originalOptions: c,
  2321.                 startTime: _b || gc(),
  2322.                 duration: c.duration,
  2323.                 tweens: [],
  2324.                 createTween: function (b, c) {
  2325.                     var d = n.Tween(a, j.opts, b, c, j.opts.specialEasing[b] || j.opts.easing);
  2326.                     return j.tweens.push(d), d
  2327.                 },
  2328.                 stop: function (b) {
  2329.                     var c = 0,
  2330.                         d = b ? j.tweens.length : 0;
  2331.                     if (e) return this;
  2332.                     for (e = !0; d > c; c++) j.tweens[c].run(1);
  2333.                     return b ? h.resolveWith(a, [j, b]) : h.rejectWith(a, [j, b]), this
  2334.                 }
  2335.             }),
  2336.             k = j.props;
  2337.         for (kc(k, j.opts.specialEasing); g > f; f++) if (d = ec[f].call(j, a, k, j.opts)) return d;
  2338.         return n.map(k, ic, j), n.isFunction(j.opts.start) && j.opts.start.call(a, j), n.fx.timer(n.extend(i, {
  2339.             elem: a,
  2340.             anim: j,
  2341.             queue: j.opts.queue
  2342.         })), j.progress(j.opts.progress).done(j.opts.done, j.opts.complete).fail(j.opts.fail).always(j.opts.always)
  2343.     }
  2344.     n.Animation = n.extend(lc, {
  2345.         tweener: function (a, b) {
  2346.             n.isFunction(a) ? (b = a, a = ["*"]) : a = a.split(" ");
  2347.             for (var c, d = 0, e = a.length; e > d; d++) c = a[d], fc[c] = fc[c] || [], fc[c].unshift(b)
  2348.         },
  2349.         prefilter: function (a, b) {
  2350.             b ? ec.unshift(a) : ec.push(a)
  2351.         }
  2352.     }), n.speed = function (a, b, c) {
  2353.         var d = a && "object" == typeof a ? n.extend({}, a) : {
  2354.             complete: c || !c && b || n.isFunction(a) && a,
  2355.             duration: a,
  2356.             easing: c && b || b && !n.isFunction(b) && b
  2357.         };
  2358.         return d.duration = n.fx.off ? 0 : "number" == typeof d.duration ? d.duration : d.duration in n.fx.speeds ? n.fx.speeds[d.duration] : n.fx.speeds._default, (null == d.queue || d.queue === !0) && (d.queue = "fx"), d.old = d.complete, d.complete = function () {
  2359.             n.isFunction(d.old) && d.old.call(this), d.queue && n.dequeue(this, d.queue)
  2360.         }, d
  2361.     }, n.fn.extend({
  2362.         fadeTo: function (a, b, c, d) {
  2363.             return this.filter(V).css("opacity", 0).show().end().animate({
  2364.                 opacity: b
  2365.             }, a, c, d)
  2366.         },
  2367.         animate: function (a, b, c, d) {
  2368.             var e = n.isEmptyObject(a),
  2369.                 f = n.speed(b, c, d),
  2370.                 g = function () {
  2371.                     var b = lc(this, n.extend({}, a), f);
  2372.                     (e || n._data(this, "finish")) && b.stop(!0)
  2373.                 };
  2374.             return g.finish = g, e || f.queue === !1 ? this.each(g) : this.queue(f.queue, g)
  2375.         },
  2376.         stop: function (a, b, c) {
  2377.             var d = function (a) {
  2378.                 var b = a.stop;
  2379.                 delete a.stop, b(c)
  2380.             };
  2381.             return "string" != typeof a && (c = b, b = a, a = void 0), b && a !== !1 && this.queue(a || "fx", []), this.each(function () {
  2382.                 var b = !0,
  2383.                     e = null != a && a + "queueHooks",
  2384.                     f = n.timers,
  2385.                     g = n._data(this);
  2386.                 if (e) g[e] && g[e].stop && d(g[e]);
  2387.                 else for (e in g) g[e] && g[e].stop && dc.test(e) && d(g[e]);
  2388.                 for (e = f.length; e--;) f[e].elem !== this || null != a && f[e].queue !== a || (f[e].anim.stop(c), b = !1, f.splice(e, 1));
  2389.                 (b || !c) && n.dequeue(this, a)
  2390.             })
  2391.         },
  2392.         finish: function (a) {
  2393.             return a !== !1 && (a = a || "fx"), this.each(function () {
  2394.                 var b, c = n._data(this),
  2395.                     d = c[a + "queue"],
  2396.                     e = c[a + "queueHooks"],
  2397.                     f = n.timers,
  2398.                     g = d ? d.length : 0;
  2399.                 for (c.finish = !0, n.queue(this, a, []), e && e.stop && e.stop.call(this, !0), b = f.length; b--;) f[b].elem === this && f[b].queue === a && (f[b].anim.stop(!0), f.splice(b, 1));
  2400.                 for (b = 0; g > b; b++) d[b] && d[b].finish && d[b].finish.call(this);
  2401.                 delete c.finish
  2402.             })
  2403.         }
  2404.     }), n.each(["toggle", "show", "hide"], function (a, b) {
  2405.         var c = n.fn[b];
  2406.         n.fn[b] = function (a, d, e) {
  2407.             return null == a || "boolean" == typeof a ? c.apply(this, arguments) : this.animate(hc(b, !0), a, d, e)
  2408.         }
  2409.     }), n.each({
  2410.         slideDown: hc("show"),
  2411.         slideUp: hc("hide"),
  2412.         slideToggle: hc("toggle"),
  2413.         fadeIn: {
  2414.             opacity: "show"
  2415.         },
  2416.         fadeOut: {
  2417.             opacity: "hide"
  2418.         },
  2419.         fadeToggle: {
  2420.             opacity: "toggle"
  2421.         }
  2422.     }, function (a, b) {
  2423.         n.fn[a] = function (a, c, d) {
  2424.             return this.animate(b, a, c, d)
  2425.         }
  2426.     }), n.timers = [], n.fx.tick = function () {
  2427.         var a, b = n.timers,
  2428.             c = 0;
  2429.         for (_b = n.now(); c < b.length; c++) a = b[c], a() || b[c] !== a || b.splice(c--, 1);
  2430.         b.length || n.fx.stop(), _b = void 0
  2431.     }, n.fx.timer = function (a) {
  2432.         n.timers.push(a), a() ? n.fx.start() : n.timers.pop()
  2433.     }, n.fx.interval = 13, n.fx.start = function () {
  2434.         ac || (ac = setInterval(n.fx.tick, n.fx.interval))
  2435.     }, n.fx.stop = function () {
  2436.         clearInterval(ac), ac = null
  2437.     }, n.fx.speeds = {
  2438.         slow: 600,
  2439.         fast: 200,
  2440.         _default: 400
  2441.     }, n.fn.delay = function (a, b) {
  2442.         return a = n.fx ? n.fx.speeds[a] || a : a, b = b || "fx", this.queue(b, function (b, c) {
  2443.             var d = setTimeout(b, a);
  2444.             c.stop = function () {
  2445.                 clearTimeout(d)
  2446.             }
  2447.         })
  2448.     }, function () {
  2449.         var a, b, c, d, e = z.createElement("div");
  2450.         e.setAttribute("className", "t"), e.innerHTML = "  <link/><table></table><a href='/a'>a</a><input type='checkbox'/>", a = e.getElementsByTagName("a")[0], c = z.createElement("select"), d = c.appendChild(z.createElement("option")), b = e.getElementsByTagName("input")[0], a.style.cssText = "top:1px", l.getSetAttribute = "t" !== e.className, l.style = /top/.test(a.getAttribute("style")), l.hrefNormalized = "/a" === a.getAttribute("href"), l.checkOn = !! b.value, l.optSelected = d.selected, l.enctype = !! z.createElement("form").enctype, c.disabled = !0, l.optDisabled = !d.disabled, b = z.createElement("input"), b.setAttribute("value", ""), l.input = "" === b.getAttribute("value"), b.value = "t", b.setAttribute("type", "radio"), l.radioValue = "t" === b.value, a = b = c = d = e = null
  2451.     }();
  2452.     var mc = /\r/g;
  2453.     n.fn.extend({
  2454.         val: function (a) {
  2455.             var b, c, d, e = this[0]; {
  2456.                 if (arguments.length) return d = n.isFunction(a), this.each(function (c) {
  2457.                     var e;
  2458.                     1 === this.nodeType && (e = d ? a.call(this, c, n(this).val()) : a, null == e ? e = "" : "number" == typeof e ? e += "" : n.isArray(e) && (e = n.map(e, function (a) {
  2459.                         return null == a ? "" : a + ""
  2460.                     })), b = n.valHooks[this.type] || n.valHooks[this.nodeName.toLowerCase()], b && "set" in b && void 0 !== b.set(this, e, "value") || (this.value = e))
  2461.                 });
  2462.                 if (e) return b = n.valHooks[e.type] || n.valHooks[e.nodeName.toLowerCase()], b && "get" in b && void 0 !== (c = b.get(e, "value")) ? c : (c = e.value, "string" == typeof c ? c.replace(mc, "") : null == c ? "" : c)
  2463.             }
  2464.         }
  2465.     }), n.extend({
  2466.         valHooks: {
  2467.             option: {
  2468.                 get: function (a) {
  2469.                     var b = n.find.attr(a, "value");
  2470.                     return null != b ? b : n.text(a)
  2471.                 }
  2472.             },
  2473.             select: {
  2474.                 get: function (a) {
  2475.                     for (var b, c, d = a.options, e = a.selectedIndex, f = "select-one" === a.type || 0 > e, g = f ? null : [], h = f ? e + 1 : d.length, i = 0 > e ? h : f ? e : 0; h > i; i++) if (c = d[i], !(!c.selected && i !== e || (l.optDisabled ? c.disabled : null !== c.getAttribute("disabled")) || c.parentNode.disabled && n.nodeName(c.parentNode, "optgroup"))) {
  2476.                         if (b = n(c).val(), f) return b;
  2477.                         g.push(b)
  2478.                     }
  2479.                     return g
  2480.                 },
  2481.                 set: function (a, b) {
  2482.                     var c, d, e = a.options,
  2483.                         f = n.makeArray(b),
  2484.                         g = e.length;
  2485.                     while (g--) if (d = e[g], n.inArray(n.valHooks.option.get(d), f) >= 0) try {
  2486.                         d.selected = c = !0
  2487.                     } catch (h) {
  2488.                         d.scrollHeight
  2489.                     } else d.selected = !1;
  2490.                     return c || (a.selectedIndex = -1), e
  2491.                 }
  2492.             }
  2493.         }
  2494.     }), n.each(["radio", "checkbox"], function () {
  2495.         n.valHooks[this] = {
  2496.             set: function (a, b) {
  2497.                 return n.isArray(b) ? a.checked = n.inArray(n(a).val(), b) >= 0 : void 0
  2498.             }
  2499.         }, l.checkOn || (n.valHooks[this].get = function (a) {
  2500.             return null === a.getAttribute("value") ? "on" : a.value
  2501.         })
  2502.     });
  2503.     var nc, oc, pc = n.expr.attrHandle,
  2504.         qc = /^(?:checked|selected)$/i,
  2505.         rc = l.getSetAttribute,
  2506.         sc = l.input;
  2507.     n.fn.extend({
  2508.         attr: function (a, b) {
  2509.             return W(this, n.attr, a, b, arguments.length > 1)
  2510.         },
  2511.         removeAttr: function (a) {
  2512.             return this.each(function () {
  2513.                 n.removeAttr(this, a)
  2514.             })
  2515.         }
  2516.     }), n.extend({
  2517.         attr: function (a, b, c) {
  2518.             var d, e, f = a.nodeType;
  2519.             if (a && 3 !== f && 8 !== f && 2 !== f) return typeof a.getAttribute === L ? n.prop(a, b, c) : (1 === f && n.isXMLDoc(a) || (b = b.toLowerCase(), d = n.attrHooks[b] || (n.expr.match.bool.test(b) ? oc : nc)), void 0 === c ? d && "get" in d && null !== (e = d.get(a, b)) ? e : (e = n.find.attr(a, b), null == e ? void 0 : e) : null !== c ? d && "set" in d && void 0 !== (e = d.set(a, c, b)) ? e : (a.setAttribute(b, c + ""), c) : void n.removeAttr(a, b))
  2520.         },
  2521.         removeAttr: function (a, b) {
  2522.             var c, d, e = 0,
  2523.                 f = b && b.match(F);
  2524.             if (f && 1 === a.nodeType) while (c = f[e++]) d = n.propFix[c] || c, n.expr.match.bool.test(c) ? sc && rc || !qc.test(c) ? a[d] = !1 : a[n.camelCase("default-" + c)] = a[d] = !1 : n.attr(a, c, ""), a.removeAttribute(rc ? c : d)
  2525.         },
  2526.         attrHooks: {
  2527.             type: {
  2528.                 set: function (a, b) {
  2529.                     if (!l.radioValue && "radio" === b && n.nodeName(a, "input")) {
  2530.                         var c = a.value;
  2531.                         return a.setAttribute("type", b), c && (a.value = c), b
  2532.                     }
  2533.                 }
  2534.             }
  2535.         }
  2536.     }), oc = {
  2537.         set: function (a, b, c) {
  2538.             return b === !1 ? n.removeAttr(a, c) : sc && rc || !qc.test(c) ? a.setAttribute(!rc && n.propFix[c] || c, c) : a[n.camelCase("default-" + c)] = a[c] = !0, c
  2539.         }
  2540.     }, n.each(n.expr.match.bool.source.match(/\w+/g), function (a, b) {
  2541.         var c = pc[b] || n.find.attr;
  2542.         pc[b] = sc && rc || !qc.test(b) ?
  2543.         function (a, b, d) {
  2544.             var e, f;
  2545.             return d || (f = pc[b], pc[b] = e, e = null != c(a, b, d) ? b.toLowerCase() : null, pc[b] = f), e
  2546.         } : function (a, b, c) {
  2547.             return c ? void 0 : a[n.camelCase("default-" + b)] ? b.toLowerCase() : null
  2548.         }
  2549.     }), sc && rc || (n.attrHooks.value = {
  2550.         set: function (a, b, c) {
  2551.             return n.nodeName(a, "input") ? void(a.defaultValue = b) : nc && nc.set(a, b, c)
  2552.         }
  2553.     }), rc || (nc = {
  2554.         set: function (a, b, c) {
  2555.             var d = a.getAttributeNode(c);
  2556.             return d || a.setAttributeNode(d = a.ownerDocument.createAttribute(c)), d.value = b += "", "value" === c || b === a.getAttribute(c) ? b : void 0
  2557.         }
  2558.     }, pc.id = pc.name = pc.coords = function (a, b, c) {
  2559.         var d;
  2560.         return c ? void 0 : (d = a.getAttributeNode(b)) && "" !== d.value ? d.value : null
  2561.     }, n.valHooks.button = {
  2562.         get: function (a, b) {
  2563.             var c = a.getAttributeNode(b);
  2564.             return c && c.specified ? c.value : void 0
  2565.         },
  2566.         set: nc.set
  2567.     }, n.attrHooks.contenteditable = {
  2568.         set: function (a, b, c) {
  2569.             nc.set(a, "" === b ? !1 : b, c)
  2570.         }
  2571.     }, n.each(["width", "height"], function (a, b) {
  2572.         n.attrHooks[b] = {
  2573.             set: function (a, c) {
  2574.                 return "" === c ? (a.setAttribute(b, "auto"), c) : void 0
  2575.             }
  2576.         }
  2577.     })), l.style || (n.attrHooks.style = {
  2578.         get: function (a) {
  2579.             return a.style.cssText || void 0
  2580.         },
  2581.         set: function (a, b) {
  2582.             return a.style.cssText = b + ""
  2583.         }
  2584.     });
  2585.     var tc = /^(?:input|select|textarea|button|object)$/i,
  2586.         uc = /^(?:a|area)$/i;
  2587.     n.fn.extend({
  2588.         prop: function (a, b) {
  2589.             return W(this, n.prop, a, b, arguments.length > 1)
  2590.         },
  2591.         removeProp: function (a) {
  2592.             return a = n.propFix[a] || a, this.each(function () {
  2593.                 try {
  2594.                     this[a] = void 0, delete this[a]
  2595.                 } catch (b) {}
  2596.             })
  2597.         }
  2598.     }), n.extend({
  2599.         propFix: {
  2600.             "for": "htmlFor",
  2601.             "class": "className"
  2602.         },
  2603.         prop: function (a, b, c) {
  2604.             var d, e, f, g = a.nodeType;
  2605.             if (a && 3 !== g && 8 !== g && 2 !== g) return f = 1 !== g || !n.isXMLDoc(a), f && (b = n.propFix[b] || b, e = n.propHooks[b]), void 0 !== c ? e && "set" in e && void 0 !== (d = e.set(a, c, b)) ? d : a[b] = c : e && "get" in e && null !== (d = e.get(a, b)) ? d : a[b]
  2606.         },
  2607.         propHooks: {
  2608.             tabIndex: {
  2609.                 get: function (a) {
  2610.                     var b = n.find.attr(a, "tabindex");
  2611.                     return b ? parseInt(b, 10) : tc.test(a.nodeName) || uc.test(a.nodeName) && a.href ? 0 : -1
  2612.                 }
  2613.             }
  2614.         }
  2615.     }), l.hrefNormalized || n.each(["href", "src"], function (a, b) {
  2616.         n.propHooks[b] = {
  2617.             get: function (a) {
  2618.                 return a.getAttribute(b, 4)
  2619.             }
  2620.         }
  2621.     }), l.optSelected || (n.propHooks.selected = {
  2622.         get: function (a) {
  2623.             var b = a.parentNode;
  2624.             return b && (b.selectedIndex, b.parentNode && b.parentNode.selectedIndex), null
  2625.         }
  2626.     }), n.each(["tabIndex", "readOnly", "maxLength", "cellSpacing", "cellPadding", "rowSpan", "colSpan", "useMap", "frameBorder", "contentEditable"], function () {
  2627.         n.propFix[this.toLowerCase()] = this
  2628.     }), l.enctype || (n.propFix.enctype = "encoding");
  2629.     var vc = /[\t\r\n\f]/g;
  2630.     n.fn.extend({
  2631.         addClass: function (a) {
  2632.             var b, c, d, e, f, g, h = 0,
  2633.                 i = this.length,
  2634.                 j = "string" == typeof a && a;
  2635.             if (n.isFunction(a)) return this.each(function (b) {
  2636.                 n(this).addClass(a.call(this, b, this.className))
  2637.             });
  2638.             if (j) for (b = (a || "").match(F) || []; i > h; h++) if (c = this[h], d = 1 === c.nodeType && (c.className ? (" " + c.className + " ").replace(vc, " ") : " ")) {
  2639.                 f = 0;
  2640.                 while (e = b[f++]) d.indexOf(" " + e + " ") < 0 && (d += e + " ");
  2641.                 g = n.trim(d), c.className !== g && (c.className = g)
  2642.             }
  2643.             return this
  2644.         },
  2645.         removeClass: function (a) {
  2646.             var b, c, d, e, f, g, h = 0,
  2647.                 i = this.length,
  2648.                 j = 0 === arguments.length || "string" == typeof a && a;
  2649.             if (n.isFunction(a)) return this.each(function (b) {
  2650.                 n(this).removeClass(a.call(this, b, this.className))
  2651.             });
  2652.             if (j) for (b = (a || "").match(F) || []; i > h; h++) if (c = this[h], d = 1 === c.nodeType && (c.className ? (" " + c.className + " ").replace(vc, " ") : "")) {
  2653.                 f = 0;
  2654.                 while (e = b[f++]) while (d.indexOf(" " + e + " ") >= 0) d = d.replace(" " + e + " ", " ");
  2655.                 g = a ? n.trim(d) : "", c.className !== g && (c.className = g)
  2656.             }
  2657.             return this
  2658.         },
  2659.         toggleClass: function (a, b) {
  2660.             var c = typeof a;
  2661.             return "boolean" == typeof b && "string" === c ? b ? this.addClass(a) : this.removeClass(a) : this.each(n.isFunction(a) ?
  2662.             function (c) {
  2663.                 n(this).toggleClass(a.call(this, c, this.className, b), b)
  2664.             } : function () {
  2665.                 if ("string" === c) {
  2666.                     var b, d = 0,
  2667.                         e = n(this),
  2668.                         f = a.match(F) || [];
  2669.                     while (b = f[d++]) e.hasClass(b) ? e.removeClass(b) : e.addClass(b)
  2670.                 } else(c === L || "boolean" === c) && (this.className && n._data(this, "__className__", this.className), this.className = this.className || a === !1 ? "" : n._data(this, "__className__") || "")
  2671.             })
  2672.         },
  2673.         hasClass: function (a) {
  2674.             for (var b = " " + a + " ", c = 0, d = this.length; d > c; c++) if (1 === this[c].nodeType && (" " + this[c].className + " ").replace(vc, " ").indexOf(b) >= 0) return !0;
  2675.             return !1
  2676.         }
  2677.     }), n.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu".split(" "), function (a, b) {
  2678.         n.fn[b] = function (a, c) {
  2679.             return arguments.length > 0 ? this.on(b, null, a, c) : this.trigger(b)
  2680.         }
  2681.     }), n.fn.extend({
  2682.         hover: function (a, b) {
  2683.             return this.mouseenter(a).mouseleave(b || a)
  2684.         },
  2685.         bind: function (a, b, c) {
  2686.             return this.on(a, null, b, c)
  2687.         },
  2688.         unbind: function (a, b) {
  2689.             return this.off(a, null, b)
  2690.         },
  2691.         delegate: function (a, b, c, d) {
  2692.             return this.on(b, a, c, d)
  2693.         },
  2694.         undelegate: function (a, b, c) {
  2695.             return 1 === arguments.length ? this.off(a, "**") : this.off(b, a || "**", c)
  2696.         }
  2697.     });
  2698.     var wc = n.now(),
  2699.         xc = /\?/,
  2700.         yc = /(,)|(\[|{)|(}|])|"(?:[^"\\\r\n]|\\["\\\/bfnrt]|\\u[\da-fA-F]{4})*"\s*:?|true|false|null|-?(?!0\d)\d+(?:\.\d+|)(?:[eE][+-]?\d+|)/g;
  2701.     n.parseJSON = function (b) {
  2702.         if (a.JSON && a.JSON.parse) return a.JSON.parse(b + "");
  2703.         var c, d = null,
  2704.             e = n.trim(b + "");
  2705.         return e && !n.trim(e.replace(yc, function (a, b, e, f) {
  2706.             return c && b && (d = 0), 0 === d ? a : (c = e || b, d += !f - !e, "")
  2707.         })) ? Function("return " + e)() : n.error("Invalid JSON: " + b)
  2708.     }, n.parseXML = function (b) {
  2709.         var c, d;
  2710.         if (!b || "string" != typeof b) return null;
  2711.         try {
  2712.             a.DOMParser ? (d = new DOMParser, c = d.parseFromString(b, "text/xml")) : (c = new ActiveXObject("Microsoft.XMLDOM"), c.async = "false", c.loadXML(b))
  2713.         } catch (e) {
  2714.             c = void 0
  2715.         }
  2716.         return c && c.documentElement && !c.getElementsByTagName("parsererror").length || n.error("Invalid XML: " + b), c
  2717.     };
  2718.     var zc, Ac, Bc = /#.*$/,
  2719.         Cc = /([?&])_=[^&]*/,
  2720.         Dc = /^(.*?):[ \t]*([^\r\n]*)\r?$/gm,
  2721.         Ec = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/,
  2722.         Fc = /^(?:GET|HEAD)$/,
  2723.         Gc = /^\/\//,
  2724.         Hc = /^([\w.+-]+:)(?:\/\/(?:[^\/?#]*@|)([^\/?#:]*)(?::(\d+)|)|)/,
  2725.         Ic = {},
  2726.         Jc = {},
  2727.         Kc = "*/".concat("*");
  2728.     try {
  2729.         Ac = location.href
  2730.     } catch (Lc) {
  2731.         Ac = z.createElement("a"), Ac.href = "", Ac = Ac.href
  2732.     }
  2733.     zc = Hc.exec(Ac.toLowerCase()) || [];
  2734.  
  2735.     function Mc(a) {
  2736.         return function (b, c) {
  2737.             "string" != typeof b && (c = b, b = "*");
  2738.             var d, e = 0,
  2739.                 f = b.toLowerCase().match(F) || [];
  2740.             if (n.isFunction(c)) while (d = f[e++])"+" === d.charAt(0) ? (d = d.slice(1) || "*", (a[d] = a[d] || []).unshift(c)) : (a[d] = a[d] || []).push(c)
  2741.         }
  2742.     }
  2743.     function Nc(a, b, c, d) {
  2744.         var e = {},
  2745.             f = a === Jc;
  2746.  
  2747.         function g(h) {
  2748.             var i;
  2749.             return e[h] = !0, n.each(a[h] || [], function (a, h) {
  2750.                 var j = h(b, c, d);
  2751.                 return "string" != typeof j || f || e[j] ? f ? !(i = j) : void 0 : (b.dataTypes.unshift(j), g(j), !1)
  2752.             }), i
  2753.         }
  2754.         return g(b.dataTypes[0]) || !e["*"] && g("*")
  2755.     }
  2756.     function Oc(a, b) {
  2757.         var c, d, e = n.ajaxSettings.flatOptions || {};
  2758.         for (d in b) void 0 !== b[d] && ((e[d] ? a : c || (c = {}))[d] = b[d]);
  2759.         return c && n.extend(!0, a, c), a
  2760.     }
  2761.     function Pc(a, b, c) {
  2762.         var d, e, f, g, h = a.contents,
  2763.             i = a.dataTypes;
  2764.         while ("*" === i[0]) i.shift(), void 0 === e && (e = a.mimeType || b.getResponseHeader("Content-Type"));
  2765.         if (e) for (g in h) if (h[g] && h[g].test(e)) {
  2766.             i.unshift(g);
  2767.             break
  2768.         }
  2769.         if (i[0] in c) f = i[0];
  2770.         else {
  2771.             for (g in c) {
  2772.                 if (!i[0] || a.converters[g + " " + i[0]]) {
  2773.                     f = g;
  2774.                     break
  2775.                 }
  2776.                 d || (d = g)
  2777.             }
  2778.             f = f || d
  2779.         }
  2780.         return f ? (f !== i[0] && i.unshift(f), c[f]) : void 0
  2781.     }
  2782.     function Qc(a, b, c, d) {
  2783.         var e, f, g, h, i, j = {},
  2784.             k = a.dataTypes.slice();
  2785.         if (k[1]) for (g in a.converters) j[g.toLowerCase()] = a.converters[g];
  2786.         f = k.shift();
  2787.         while (f) if (a.responseFields[f] && (c[a.responseFields[f]] = b), !i && d && a.dataFilter && (b = a.dataFilter(b, a.dataType)), i = f, f = k.shift()) if ("*" === f) f = i;
  2788.         else if ("*" !== i && i !== f) {
  2789.             if (g = j[i + " " + f] || j["* " + f], !g) for (e in j) if (h = e.split(" "), h[1] === f && (g = j[i + " " + h[0]] || j["* " + h[0]])) {
  2790.                 g === !0 ? g = j[e] : j[e] !== !0 && (f = h[0], k.unshift(h[1]));
  2791.                 break
  2792.             }
  2793.             if (g !== !0) if (g && a["throws"]) b = g(b);
  2794.             else try {
  2795.                 b = g(b)
  2796.             } catch (l) {
  2797.                 return {
  2798.                     state: "parsererror",
  2799.                     error: g ? l : "No conversion from " + i + " to " + f
  2800.                 }
  2801.             }
  2802.         }
  2803.         return {
  2804.             state: "success",
  2805.             data: b
  2806.         }
  2807.     }
  2808.     n.extend({
  2809.         active: 0,
  2810.         lastModified: {},
  2811.         etag: {},
  2812.         ajaxSettings: {
  2813.             url: Ac,
  2814.             type: "GET",
  2815.             isLocal: Ec.test(zc[1]),
  2816.             global: !0,
  2817.             processData: !0,
  2818.             async: !0,
  2819.             contentType: "application/x-www-form-urlencoded; charset=UTF-8",
  2820.             accepts: {
  2821.                 "*": Kc,
  2822.                 text: "text/plain",
  2823.                 html: "text/html",
  2824.                 xml: "application/xml, text/xml",
  2825.                 json: "application/json, text/javascript"
  2826.             },
  2827.             contents: {
  2828.                 xml: /xml/,
  2829.                 html: /html/,
  2830.                 json: /json/
  2831.             },
  2832.             responseFields: {
  2833.                 xml: "responseXML",
  2834.                 text: "responseText",
  2835.                 json: "responseJSON"
  2836.             },
  2837.             converters: {
  2838.                 "* text": String,
  2839.                 "text html": !0,
  2840.                 "text json": n.parseJSON,
  2841.                 "text xml": n.parseXML
  2842.             },
  2843.             flatOptions: {
  2844.                 url: !0,
  2845.                 context: !0
  2846.             }
  2847.         },
  2848.         ajaxSetup: function (a, b) {
  2849.             return b ? Oc(Oc(a, n.ajaxSettings), b) : Oc(n.ajaxSettings, a)
  2850.         },
  2851.         ajaxPrefilter: Mc(Ic),
  2852.         ajaxTransport: Mc(Jc),
  2853.         ajax: function (a, b) {
  2854.             "object" == typeof a && (b = a, a = void 0), b = b || {};
  2855.             var c, d, e, f, g, h, i, j, k = n.ajaxSetup({}, b),
  2856.                 l = k.context || k,
  2857.                 m = k.context && (l.nodeType || l.jquery) ? n(l) : n.event,
  2858.                 o = n.Deferred(),
  2859.                 p = n.Callbacks("once memory"),
  2860.                 q = k.statusCode || {},
  2861.                 r = {},
  2862.                 s = {},
  2863.                 t = 0,
  2864.                 u = "canceled",
  2865.                 v = {
  2866.                     readyState: 0,
  2867.                     getResponseHeader: function (a) {
  2868.                         var b;
  2869.                         if (2 === t) {
  2870.                             if (!j) {
  2871.                                 j = {};
  2872.                                 while (b = Dc.exec(f)) j[b[1].toLowerCase()] = b[2]
  2873.                             }
  2874.                             b = j[a.toLowerCase()]
  2875.                         }
  2876.                         return null == b ? null : b
  2877.                     },
  2878.                     getAllResponseHeaders: function () {
  2879.                         return 2 === t ? f : null
  2880.                     },
  2881.                     setRequestHeader: function (a, b) {
  2882.                         var c = a.toLowerCase();
  2883.                         return t || (a = s[c] = s[c] || a, r[a] = b), this
  2884.                     },
  2885.                     overrideMimeType: function (a) {
  2886.                         return t || (k.mimeType = a), this
  2887.                     },
  2888.                     statusCode: function (a) {
  2889.                         var b;
  2890.                         if (a) if (2 > t) for (b in a) q[b] = [q[b], a[b]];
  2891.                         else v.always(a[v.status]);
  2892.                         return this
  2893.                     },
  2894.                     abort: function (a) {
  2895.                         var b = a || u;
  2896.                         return i && i.abort(b), x(0, b), this
  2897.                     }
  2898.                 };
  2899.             if (o.promise(v).complete = p.add, v.success = v.done, v.error = v.fail, k.url = ((a || k.url || Ac) + "").replace(Bc, "").replace(Gc, zc[1] + "//"), k.type = b.method || b.type || k.method || k.type, k.dataTypes = n.trim(k.dataType || "*").toLowerCase().match(F) || [""], null == k.crossDomain && (c = Hc.exec(k.url.toLowerCase()), k.crossDomain = !(!c || c[1] === zc[1] && c[2] === zc[2] && (c[3] || ("http:" === c[1] ? "80" : "443")) === (zc[3] || ("http:" === zc[1] ? "80" : "443")))), k.data && k.processData && "string" != typeof k.data && (k.data = n.param(k.data, k.traditional)), Nc(Ic, k, b, v), 2 === t) return v;
  2900.             h = k.global, h && 0 === n.active++ && n.event.trigger("ajaxStart"), k.type = k.type.toUpperCase(), k.hasContent = !Fc.test(k.type), e = k.url, k.hasContent || (k.data && (e = k.url += (xc.test(e) ? "&" : "?") + k.data, delete k.data), k.cache === !1 && (k.url = Cc.test(e) ? e.replace(Cc, "$1_=" + wc++) : e + (xc.test(e) ? "&" : "?") + "_=" + wc++)), k.ifModified && (n.lastModified[e] && v.setRequestHeader("If-Modified-Since", n.lastModified[e]), n.etag[e] && v.setRequestHeader("If-None-Match", n.etag[e])), (k.data && k.hasContent && k.contentType !== !1 || b.contentType) && v.setRequestHeader("Content-Type", k.contentType), v.setRequestHeader("Accept", k.dataTypes[0] && k.accepts[k.dataTypes[0]] ? k.accepts[k.dataTypes[0]] + ("*" !== k.dataTypes[0] ? ", " + Kc + "; q=0.01" : "") : k.accepts["*"]);
  2901.             for (d in k.headers) v.setRequestHeader(d, k.headers[d]);
  2902.             if (k.beforeSend && (k.beforeSend.call(l, v, k) === !1 || 2 === t)) return v.abort();
  2903.             u = "abort";
  2904.             for (d in {
  2905.                 success: 1,
  2906.                 error: 1,
  2907.                 complete: 1
  2908.             }) v[d](k[d]);
  2909.             if (i = Nc(Jc, k, b, v)) {
  2910.                 v.readyState = 1, h && m.trigger("ajaxSend", [v, k]), k.async && k.timeout > 0 && (g = setTimeout(function () {
  2911.                     v.abort("timeout")
  2912.                 }, k.timeout));
  2913.                 try {
  2914.                     t = 1, i.send(r, x)
  2915.                 } catch (w) {
  2916.                     if (!(2 > t)) throw w;
  2917.                     x(-1, w)
  2918.                 }
  2919.             } else x(-1, "No Transport");
  2920.  
  2921.             function x(a, b, c, d) {
  2922.                 var j, r, s, u, w, x = b;
  2923.                 2 !== t && (t = 2, g && clearTimeout(g), i = void 0, f = d || "", v.readyState = a > 0 ? 4 : 0, j = a >= 200 && 300 > a || 304 === a, c && (u = Pc(k, v, c)), u = Qc(k, u, v, j), j ? (k.ifModified && (w = v.getResponseHeader("Last-Modified"), w && (n.lastModified[e] = w), w = v.getResponseHeader("etag"), w && (n.etag[e] = w)), 204 === a || "HEAD" === k.type ? x = "nocontent" : 304 === a ? x = "notmodified" : (x = u.state, r = u.data, s = u.error, j = !s)) : (s = x, (a || !x) && (x = "error", 0 > a && (a = 0))), v.status = a, v.statusText = (b || x) + "", j ? o.resolveWith(l, [r, x, v]) : o.rejectWith(l, [v, x, s]), v.statusCode(q), q = void 0, h && m.trigger(j ? "ajaxSuccess" : "ajaxError", [v, k, j ? r : s]), p.fireWith(l, [v, x]), h && (m.trigger("ajaxComplete", [v, k]), --n.active || n.event.trigger("ajaxStop")))
  2924.             }
  2925.             return v
  2926.         },
  2927.         getJSON: function (a, b, c) {
  2928.             return n.get(a, b, c, "json")
  2929.         },
  2930.         getScript: function (a, b) {
  2931.             return n.get(a, void 0, b, "script")
  2932.         }
  2933.     }), n.each(["get", "post"], function (a, b) {
  2934.         n[b] = function (a, c, d, e) {
  2935.             return n.isFunction(c) && (e = e || d, d = c, c = void 0), n.ajax({
  2936.                 url: a,
  2937.                 type: b,
  2938.                 dataType: e,
  2939.                 data: c,
  2940.                 success: d
  2941.             })
  2942.         }
  2943.     }), n.each(["ajaxStart", "ajaxStop", "ajaxComplete", "ajaxError", "ajaxSuccess", "ajaxSend"], function (a, b) {
  2944.         n.fn[b] = function (a) {
  2945.             return this.on(b, a)
  2946.         }
  2947.     }), n._evalUrl = function (a) {
  2948.         return n.ajax({
  2949.             url: a,
  2950.             type: "GET",
  2951.             dataType: "script",
  2952.             async: !1,
  2953.             global: !1,
  2954.             "throws": !0
  2955.         })
  2956.     }, n.fn.extend({
  2957.         wrapAll: function (a) {
  2958.             if (n.isFunction(a)) return this.each(function (b) {
  2959.                 n(this).wrapAll(a.call(this, b))
  2960.             });
  2961.             if (this[0]) {
  2962.                 var b = n(a, this[0].ownerDocument).eq(0).clone(!0);
  2963.                 this[0].parentNode && b.insertBefore(this[0]), b.map(function () {
  2964.                     var a = this;
  2965.                     while (a.firstChild && 1 === a.firstChild.nodeType) a = a.firstChild;
  2966.                     return a
  2967.                 }).append(this)
  2968.             }
  2969.             return this
  2970.         },
  2971.         wrapInner: function (a) {
  2972.             return this.each(n.isFunction(a) ?
  2973.             function (b) {
  2974.                 n(this).wrapInner(a.call(this, b))
  2975.             } : function () {
  2976.                 var b = n(this),
  2977.                     c = b.contents();
  2978.                 c.length ? c.wrapAll(a) : b.append(a)
  2979.             })
  2980.         },
  2981.         wrap: function (a) {
  2982.             var b = n.isFunction(a);
  2983.             return this.each(function (c) {
  2984.                 n(this).wrapAll(b ? a.call(this, c) : a)
  2985.             })
  2986.         },
  2987.         unwrap: function () {
  2988.             return this.parent().each(function () {
  2989.                 n.nodeName(this, "body") || n(this).replaceWith(this.childNodes)
  2990.             }).end()
  2991.         }
  2992.     }), n.expr.filters.hidden = function (a) {
  2993.         return a.offsetWidth <= 0 && a.offsetHeight <= 0 || !l.reliableHiddenOffsets() && "none" === (a.style && a.style.display || n.css(a, "display"))
  2994.     }, n.expr.filters.visible = function (a) {
  2995.         return !n.expr.filters.hidden(a)
  2996.     };
  2997.     var Rc = /%20/g,
  2998.         Sc = /\[\]$/,
  2999.         Tc = /\r?\n/g,
  3000.         Uc = /^(?:submit|button|image|reset|file)$/i,
  3001.         Vc = /^(?:input|select|textarea|keygen)/i;
  3002.  
  3003.     function Wc(a, b, c, d) {
  3004.         var e;
  3005.         if (n.isArray(b)) n.each(b, function (b, e) {
  3006.             c || Sc.test(a) ? d(a, e) : Wc(a + "[" + ("object" == typeof e ? b : "") + "]", e, c, d)
  3007.         });
  3008.         else if (c || "object" !== n.type(b)) d(a, b);
  3009.         else for (e in b) Wc(a + "[" + e + "]", b[e], c, d)
  3010.     }
  3011.     n.param = function (a, b) {
  3012.         var c, d = [],
  3013.             e = function (a, b) {
  3014.                 b = n.isFunction(b) ? b() : null == b ? "" : b, d[d.length] = encodeURIComponent(a) + "=" + encodeURIComponent(b)
  3015.             };
  3016.         if (void 0 === b && (b = n.ajaxSettings && n.ajaxSettings.traditional), n.isArray(a) || a.jquery && !n.isPlainObject(a)) n.each(a, function () {
  3017.             e(this.name, this.value)
  3018.         });
  3019.         else for (c in a) Wc(c, a[c], b, e);
  3020.         return d.join("&").replace(Rc, "+")
  3021.     }, n.fn.extend({
  3022.         serialize: function () {
  3023.             return n.param(this.serializeArray())
  3024.         },
  3025.         serializeArray: function () {
  3026.             return this.map(function () {
  3027.                 var a = n.prop(this, "elements");
  3028.                 return a ? n.makeArray(a) : this
  3029.             }).filter(function () {
  3030.                 var a = this.type;
  3031.                 return this.name && !n(this).is(":disabled") && Vc.test(this.nodeName) && !Uc.test(a) && (this.checked || !X.test(a))
  3032.             }).map(function (a, b) {
  3033.                 var c = n(this).val();
  3034.                 return null == c ? null : n.isArray(c) ? n.map(c, function (a) {
  3035.                     return {
  3036.                         name: b.name,
  3037.                         value: a.replace(Tc, "\r\n")
  3038.                     }
  3039.                 }) : {
  3040.                     name: b.name,
  3041.                     value: c.replace(Tc, "\r\n")
  3042.                 }
  3043.             }).get()
  3044.         }
  3045.     }), n.ajaxSettings.xhr = void 0 !== a.ActiveXObject ?
  3046.     function () {
  3047.         return !this.isLocal && /^(get|post|head|put|delete|options)$/i.test(this.type) && $c() || _c()
  3048.     } : $c;
  3049.     var Xc = 0,
  3050.         Yc = {},
  3051.         Zc = n.ajaxSettings.xhr();
  3052.     a.ActiveXObject && n(a).on("unload", function () {
  3053.         for (var a in Yc) Yc[a](void 0, !0)
  3054.     }), l.cors = !! Zc && "withCredentials" in Zc, Zc = l.ajax = !! Zc, Zc && n.ajaxTransport(function (a) {
  3055.         if (!a.crossDomain || l.cors) {
  3056.             var b;
  3057.             return {
  3058.                 send: function (c, d) {
  3059.                     var e, f = a.xhr(),
  3060.                         g = ++Xc;
  3061.                     if (f.open(a.type, a.url, a.async, a.username, a.password), a.xhrFields) for (e in a.xhrFields) f[e] = a.xhrFields[e];
  3062.                     a.mimeType && f.overrideMimeType && f.overrideMimeType(a.mimeType), a.crossDomain || c["X-Requested-With"] || (c["X-Requested-With"] = "XMLHttpRequest");
  3063.                     for (e in c) void 0 !== c[e] && f.setRequestHeader(e, c[e] + "");
  3064.                     f.send(a.hasContent && a.data || null), b = function (c, e) {
  3065.                         var h, i, j;
  3066.                         if (b && (e || 4 === f.readyState)) if (delete Yc[g], b = void 0, f.onreadystatechange = n.noop, e) 4 !== f.readyState && f.abort();
  3067.                         else {
  3068.                             j = {}, h = f.status, "string" == typeof f.responseText && (j.text = f.responseText);
  3069.                             try {
  3070.                                 i = f.statusText
  3071.                             } catch (k) {
  3072.                                 i = ""
  3073.                             }
  3074.                             h || !a.isLocal || a.crossDomain ? 1223 === h && (h = 204) : h = j.text ? 200 : 404
  3075.                         }
  3076.                         j && d(h, i, j, f.getAllResponseHeaders())
  3077.                     }, a.async ? 4 === f.readyState ? setTimeout(b) : f.onreadystatechange = Yc[g] = b : b()
  3078.                 },
  3079.                 abort: function () {
  3080.                     b && b(void 0, !0)
  3081.                 }
  3082.             }
  3083.         }
  3084.     });
  3085.  
  3086.     function $c() {
  3087.         try {
  3088.             return new a.XMLHttpRequest
  3089.         } catch (b) {}
  3090.     }
  3091.     function _c() {
  3092.         try {
  3093.             return new a.ActiveXObject("Microsoft.XMLHTTP")
  3094.         } catch (b) {}
  3095.     }
  3096.     n.ajaxSetup({
  3097.         accepts: {
  3098.             script: "text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"
  3099.         },
  3100.         contents: {
  3101.             script: /(?:java|ecma)script/
  3102.         },
  3103.         converters: {
  3104.             "text script": function (a) {
  3105.                 return n.globalEval(a), a
  3106.             }
  3107.         }
  3108.     }), n.ajaxPrefilter("script", function (a) {
  3109.         void 0 === a.cache && (a.cache = !1), a.crossDomain && (a.type = "GET", a.global = !1)
  3110.     }), n.ajaxTransport("script", function (a) {
  3111.         if (a.crossDomain) {
  3112.             var b, c = z.head || n("head")[0] || z.documentElement;
  3113.             return {
  3114.                 send: function (d, e) {
  3115.                     b = z.createElement("script"), b.async = !0, a.scriptCharset && (b.charset = a.scriptCharset), b.src = a.url, b.onload = b.onreadystatechange = function (a, c) {
  3116.                         (c || !b.readyState || /loaded|complete/.test(b.readyState)) && (b.onload = b.onreadystatechange = null, b.parentNode && b.parentNode.removeChild(b), b = null, c || e(200, "success"))
  3117.                     }, c.insertBefore(b, c.firstChild)
  3118.                 },
  3119.                 abort: function () {
  3120.                     b && b.onload(void 0, !0)
  3121.                 }
  3122.             }
  3123.         }
  3124.     });
  3125.     var ad = [],
  3126.         bd = /(=)\?(?=&|$)|\?\?/;
  3127.     n.ajaxSetup({
  3128.         jsonp: "callback",
  3129.         jsonpCallback: function () {
  3130.             var a = ad.pop() || n.expando + "_" + wc++;
  3131.             return this[a] = !0, a
  3132.         }
  3133.     }), n.ajaxPrefilter("json jsonp", function (b, c, d) {
  3134.         var e, f, g, h = b.jsonp !== !1 && (bd.test(b.url) ? "url" : "string" == typeof b.data && !(b.contentType || "").indexOf("application/x-www-form-urlencoded") && bd.test(b.data) && "data");
  3135.         return h || "jsonp" === b.dataTypes[0] ? (e = b.jsonpCallback = n.isFunction(b.jsonpCallback) ? b.jsonpCallback() : b.jsonpCallback, h ? b[h] = b[h].replace(bd, "$1" + e) : b.jsonp !== !1 && (b.url += (xc.test(b.url) ? "&" : "?") + b.jsonp + "=" + e), b.converters["script json"] = function () {
  3136.             return g || n.error(e + " was not called"), g[0]
  3137.         }, b.dataTypes[0] = "json", f = a[e], a[e] = function () {
  3138.             g = arguments
  3139.         }, d.always(function () {
  3140.             a[e] = f, b[e] && (b.jsonpCallback = c.jsonpCallback, ad.push(e)), g && n.isFunction(f) && f(g[0]), g = f = void 0
  3141.         }), "script") : void 0
  3142.     }), n.parseHTML = function (a, b, c) {
  3143.         if (!a || "string" != typeof a) return null;
  3144.         "boolean" == typeof b && (c = b, b = !1), b = b || z;
  3145.         var d = v.exec(a),
  3146.             e = !c && [];
  3147.         return d ? [b.createElement(d[1])] : (d = n.buildFragment([a], b, e), e && e.length && n(e).remove(), n.merge([], d.childNodes))
  3148.     };
  3149.     var cd = n.fn.load;
  3150.     n.fn.load = function (a, b, c) {
  3151.         if ("string" != typeof a && cd) return cd.apply(this, arguments);
  3152.         var d, e, f, g = this,
  3153.             h = a.indexOf(" ");
  3154.         return h >= 0 && (d = a.slice(h, a.length), a = a.slice(0, h)), n.isFunction(b) ? (c = b, b = void 0) : b && "object" == typeof b && (f = "POST"), g.length > 0 && n.ajax({
  3155.             url: a,
  3156.             type: f,
  3157.             dataType: "html",
  3158.             data: b
  3159.         }).done(function (a) {
  3160.             e = arguments, g.html(d ? n("<div>").append(n.parseHTML(a)).find(d) : a)
  3161.         }).complete(c &&
  3162.         function (a, b) {
  3163.             g.each(c, e || [a.responseText, b, a])
  3164.         }), this
  3165.     }, n.expr.filters.animated = function (a) {
  3166.         return n.grep(n.timers, function (b) {
  3167.             return a === b.elem
  3168.         }).length
  3169.     };
  3170.     var dd = a.document.documentElement;
  3171.  
  3172.     function ed(a) {
  3173.         return n.isWindow(a) ? a : 9 === a.nodeType ? a.defaultView || a.parentWindow : !1
  3174.     }
  3175.     n.offset = {
  3176.         setOffset: function (a, b, c) {
  3177.             var d, e, f, g, h, i, j, k = n.css(a, "position"),
  3178.                 l = n(a),
  3179.                 m = {};
  3180.             "static" === k && (a.style.position = "relative"), h = l.offset(), f = n.css(a, "top"), i = n.css(a, "left"), j = ("absolute" === k || "fixed" === k) && n.inArray("auto", [f, i]) > -1, j ? (d = l.position(), g = d.top, e = d.left) : (g = parseFloat(f) || 0, e = parseFloat(i) || 0), n.isFunction(b) && (b = b.call(a, c, h)), null != b.top && (m.top = b.top - h.top + g), null != b.left && (m.left = b.left - h.left + e), "using" in b ? b.using.call(a, m) : l.css(m)
  3181.         }
  3182.     }, n.fn.extend({
  3183.         offset: function (a) {
  3184.             if (arguments.length) return void 0 === a ? this : this.each(function (b) {
  3185.                 n.offset.setOffset(this, a, b)
  3186.             });
  3187.             var b, c, d = {
  3188.                 top: 0,
  3189.                 left: 0
  3190.             },
  3191.                 e = this[0],
  3192.                 f = e && e.ownerDocument;
  3193.             if (f) return b = f.documentElement, n.contains(b, e) ? (typeof e.getBoundingClientRect !== L && (d = e.getBoundingClientRect()), c = ed(f), {
  3194.                 top: d.top + (c.pageYOffset || b.scrollTop) - (b.clientTop || 0),
  3195.                 left: d.left + (c.pageXOffset || b.scrollLeft) - (b.clientLeft || 0)
  3196.             }) : d
  3197.         },
  3198.         position: function () {
  3199.             if (this[0]) {
  3200.                 var a, b, c = {
  3201.                     top: 0,
  3202.                     left: 0
  3203.                 },
  3204.                     d = this[0];
  3205.                 return "fixed" === n.css(d, "position") ? b = d.getBoundingClientRect() : (a = this.offsetParent(), b = this.offset(), n.nodeName(a[0], "html") || (c = a.offset()), c.top += n.css(a[0], "borderTopWidth", !0), c.left += n.css(a[0], "borderLeftWidth", !0)), {
  3206.                     top: b.top - c.top - n.css(d, "marginTop", !0),
  3207.                     left: b.left - c.left - n.css(d, "marginLeft", !0)
  3208.                 }
  3209.             }
  3210.         },
  3211.         offsetParent: function () {
  3212.             return this.map(function () {
  3213.                 var a = this.offsetParent || dd;
  3214.                 while (a && !n.nodeName(a, "html") && "static" === n.css(a, "position")) a = a.offsetParent;
  3215.                 return a || dd
  3216.             })
  3217.         }
  3218.     }), n.each({
  3219.         scrollLeft: "pageXOffset",
  3220.         scrollTop: "pageYOffset"
  3221.     }, function (a, b) {
  3222.         var c = /Y/.test(b);
  3223.         n.fn[a] = function (d) {
  3224.             return W(this, function (a, d, e) {
  3225.                 var f = ed(a);
  3226.                 return void 0 === e ? f ? b in f ? f[b] : f.document.documentElement[d] : a[d] : void(f ? f.scrollTo(c ? n(f).scrollLeft() : e, c ? e : n(f).scrollTop()) : a[d] = e)
  3227.             }, a, d, arguments.length, null)
  3228.         }
  3229.     }), n.each(["top", "left"], function (a, b) {
  3230.         n.cssHooks[b] = Mb(l.pixelPosition, function (a, c) {
  3231.             return c ? (c = Kb(a, b), Ib.test(c) ? n(a).position()[b] + "px" : c) : void 0
  3232.         })
  3233.     }), n.each({
  3234.         Height: "height",
  3235.         Width: "width"
  3236.     }, function (a, b) {
  3237.         n.each({
  3238.             padding: "inner" + a,
  3239.             content: b,
  3240.             "": "outer" + a
  3241.         }, function (c, d) {
  3242.             n.fn[d] = function (d, e) {
  3243.                 var f = arguments.length && (c || "boolean" != typeof d),
  3244.                     g = c || (d === !0 || e === !0 ? "margin" : "border");
  3245.                 return W(this, function (b, c, d) {
  3246.                     var e;
  3247.                     return n.isWindow(b) ? b.document.documentElement["client" + a] : 9 === b.nodeType ? (e = b.documentElement, Math.max(b.body["scroll" + a], e["scroll" + a], b.body["offset" + a], e["offset" + a], e["client" + a])) : void 0 === d ? n.css(b, c, g) : n.style(b, c, d, g)
  3248.                 }, b, f ? d : void 0, f, null)
  3249.             }
  3250.         })
  3251.     }), n.fn.size = function () {
  3252.         return this.length
  3253.     }, n.fn.andSelf = n.fn.addBack, "function" == typeof define && define.amd && define("jquery", [], function () {
  3254.         return n
  3255.     });
  3256.     var fd = a.jQuery,
  3257.         gd = a.$;
  3258.     return n.noConflict = function (b) {
  3259.         return a.$ === n && (a.$ = gd), b && a.jQuery === n && (a.jQuery = fd), n
  3260.     }, typeof b === L && (a.jQuery = a.$ = n), n
  3261. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement