View | Details | Raw Unified | Return to bug 29155
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/lib/jquery/jquery-2.2.3.js (-9842 lines)
Lines 1-9842 Link Here
1
/*!
2
 * jQuery JavaScript Library v2.2.3
3
 * http://jquery.com/
4
 *
5
 * Includes Sizzle.js
6
 * http://sizzlejs.com/
7
 *
8
 * Copyright jQuery Foundation and other contributors
9
 * Released under the MIT license
10
 * http://jquery.org/license
11
 *
12
 * Date: 2016-04-05T19:26Z
13
 */
14
15
(function( global, factory ) {
16
17
	if ( typeof module === "object" && typeof module.exports === "object" ) {
18
		// For CommonJS and CommonJS-like environments where a proper `window`
19
		// is present, execute the factory and get jQuery.
20
		// For environments that do not have a `window` with a `document`
21
		// (such as Node.js), expose a factory as module.exports.
22
		// This accentuates the need for the creation of a real `window`.
23
		// e.g. var jQuery = require("jquery")(window);
24
		// See ticket #14549 for more info.
25
		module.exports = global.document ?
26
			factory( global, true ) :
27
			function( w ) {
28
				if ( !w.document ) {
29
					throw new Error( "jQuery requires a window with a document" );
30
				}
31
				return factory( w );
32
			};
33
	} else {
34
		factory( global );
35
	}
36
37
// Pass this if window is not defined yet
38
}(typeof window !== "undefined" ? window : this, function( window, noGlobal ) {
39
40
// Support: Firefox 18+
41
// Can't be in strict mode, several libs including ASP.NET trace
42
// the stack via arguments.caller.callee and Firefox dies if
43
// you try to trace through "use strict" call chains. (#13335)
44
//"use strict";
45
var arr = [];
46
47
var document = window.document;
48
49
var slice = arr.slice;
50
51
var concat = arr.concat;
52
53
var push = arr.push;
54
55
var indexOf = arr.indexOf;
56
57
var class2type = {};
58
59
var toString = class2type.toString;
60
61
var hasOwn = class2type.hasOwnProperty;
62
63
var support = {};
64
65
66
67
var
68
	version = "2.2.3",
69
70
	// Define a local copy of jQuery
71
	jQuery = function( selector, context ) {
72
73
		// The jQuery object is actually just the init constructor 'enhanced'
74
		// Need init if jQuery is called (just allow error to be thrown if not included)
75
		return new jQuery.fn.init( selector, context );
76
	},
77
78
	// Support: Android<4.1
79
	// Make sure we trim BOM and NBSP
80
	rtrim = /^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,
81
82
	// Matches dashed string for camelizing
83
	rmsPrefix = /^-ms-/,
84
	rdashAlpha = /-([\da-z])/gi,
85
86
	// Used by jQuery.camelCase as callback to replace()
87
	fcamelCase = function( all, letter ) {
88
		return letter.toUpperCase();
89
	};
90
91
jQuery.fn = jQuery.prototype = {
92
93
	// The current version of jQuery being used
94
	jquery: version,
95
96
	constructor: jQuery,
97
98
	// Start with an empty selector
99
	selector: "",
100
101
	// The default length of a jQuery object is 0
102
	length: 0,
103
104
	toArray: function() {
105
		return slice.call( this );
106
	},
107
108
	// Get the Nth element in the matched element set OR
109
	// Get the whole matched element set as a clean array
110
	get: function( num ) {
111
		return num != null ?
112
113
			// Return just the one element from the set
114
			( num < 0 ? this[ num + this.length ] : this[ num ] ) :
115
116
			// Return all the elements in a clean array
117
			slice.call( this );
118
	},
119
120
	// Take an array of elements and push it onto the stack
121
	// (returning the new matched element set)
122
	pushStack: function( elems ) {
123
124
		// Build a new jQuery matched element set
125
		var ret = jQuery.merge( this.constructor(), elems );
126
127
		// Add the old object onto the stack (as a reference)
128
		ret.prevObject = this;
129
		ret.context = this.context;
130
131
		// Return the newly-formed element set
132
		return ret;
133
	},
134
135
	// Execute a callback for every element in the matched set.
136
	each: function( callback ) {
137
		return jQuery.each( this, callback );
138
	},
139
140
	map: function( callback ) {
141
		return this.pushStack( jQuery.map( this, function( elem, i ) {
142
			return callback.call( elem, i, elem );
143
		} ) );
144
	},
145
146
	slice: function() {
147
		return this.pushStack( slice.apply( this, arguments ) );
148
	},
149
150
	first: function() {
151
		return this.eq( 0 );
152
	},
153
154
	last: function() {
155
		return this.eq( -1 );
156
	},
157
158
	eq: function( i ) {
159
		var len = this.length,
160
			j = +i + ( i < 0 ? len : 0 );
161
		return this.pushStack( j >= 0 && j < len ? [ this[ j ] ] : [] );
162
	},
163
164
	end: function() {
165
		return this.prevObject || this.constructor();
166
	},
167
168
	// For internal use only.
169
	// Behaves like an Array's method, not like a jQuery method.
170
	push: push,
171
	sort: arr.sort,
172
	splice: arr.splice
173
};
174
175
jQuery.extend = jQuery.fn.extend = function() {
176
	var options, name, src, copy, copyIsArray, clone,
177
		target = arguments[ 0 ] || {},
178
		i = 1,
179
		length = arguments.length,
180
		deep = false;
181
182
	// Handle a deep copy situation
183
	if ( typeof target === "boolean" ) {
184
		deep = target;
185
186
		// Skip the boolean and the target
187
		target = arguments[ i ] || {};
188
		i++;
189
	}
190
191
	// Handle case when target is a string or something (possible in deep copy)
192
	if ( typeof target !== "object" && !jQuery.isFunction( target ) ) {
193
		target = {};
194
	}
195
196
	// Extend jQuery itself if only one argument is passed
197
	if ( i === length ) {
198
		target = this;
199
		i--;
200
	}
201
202
	for ( ; i < length; i++ ) {
203
204
		// Only deal with non-null/undefined values
205
		if ( ( options = arguments[ i ] ) != null ) {
206
207
			// Extend the base object
208
			for ( name in options ) {
209
				src = target[ name ];
210
				copy = options[ name ];
211
212
				// Prevent never-ending loop
213
				if ( target === copy ) {
214
					continue;
215
				}
216
217
				// Recurse if we're merging plain objects or arrays
218
				if ( deep && copy && ( jQuery.isPlainObject( copy ) ||
219
					( copyIsArray = jQuery.isArray( copy ) ) ) ) {
220
221
					if ( copyIsArray ) {
222
						copyIsArray = false;
223
						clone = src && jQuery.isArray( src ) ? src : [];
224
225
					} else {
226
						clone = src && jQuery.isPlainObject( src ) ? src : {};
227
					}
228
229
					// Never move original objects, clone them
230
					target[ name ] = jQuery.extend( deep, clone, copy );
231
232
				// Don't bring in undefined values
233
				} else if ( copy !== undefined ) {
234
					target[ name ] = copy;
235
				}
236
			}
237
		}
238
	}
239
240
	// Return the modified object
241
	return target;
242
};
243
244
jQuery.extend( {
245
246
	// Unique for each copy of jQuery on the page
247
	expando: "jQuery" + ( version + Math.random() ).replace( /\D/g, "" ),
248
249
	// Assume jQuery is ready without the ready module
250
	isReady: true,
251
252
	error: function( msg ) {
253
		throw new Error( msg );
254
	},
255
256
	noop: function() {},
257
258
	isFunction: function( obj ) {
259
		return jQuery.type( obj ) === "function";
260
	},
261
262
	isArray: Array.isArray,
263
264
	isWindow: function( obj ) {
265
		return obj != null && obj === obj.window;
266
	},
267
268
	isNumeric: function( obj ) {
269
270
		// parseFloat NaNs numeric-cast false positives (null|true|false|"")
271
		// ...but misinterprets leading-number strings, particularly hex literals ("0x...")
272
		// subtraction forces infinities to NaN
273
		// adding 1 corrects loss of precision from parseFloat (#15100)
274
		var realStringObj = obj && obj.toString();
275
		return !jQuery.isArray( obj ) && ( realStringObj - parseFloat( realStringObj ) + 1 ) >= 0;
276
	},
277
278
	isPlainObject: function( obj ) {
279
		var key;
280
281
		// Not plain objects:
282
		// - Any object or value whose internal [[Class]] property is not "[object Object]"
283
		// - DOM nodes
284
		// - window
285
		if ( jQuery.type( obj ) !== "object" || obj.nodeType || jQuery.isWindow( obj ) ) {
286
			return false;
287
		}
288
289
		// Not own constructor property must be Object
290
		if ( obj.constructor &&
291
				!hasOwn.call( obj, "constructor" ) &&
292
				!hasOwn.call( obj.constructor.prototype || {}, "isPrototypeOf" ) ) {
293
			return false;
294
		}
295
296
		// Own properties are enumerated firstly, so to speed up,
297
		// if last one is own, then all properties are own
298
		for ( key in obj ) {}
299
300
		return key === undefined || hasOwn.call( obj, key );
301
	},
302
303
	isEmptyObject: function( obj ) {
304
		var name;
305
		for ( name in obj ) {
306
			return false;
307
		}
308
		return true;
309
	},
310
311
	type: function( obj ) {
312
		if ( obj == null ) {
313
			return obj + "";
314
		}
315
316
		// Support: Android<4.0, iOS<6 (functionish RegExp)
317
		return typeof obj === "object" || typeof obj === "function" ?
318
			class2type[ toString.call( obj ) ] || "object" :
319
			typeof obj;
320
	},
321
322
	// Evaluates a script in a global context
323
	globalEval: function( code ) {
324
		var script,
325
			indirect = eval;
326
327
		code = jQuery.trim( code );
328
329
		if ( code ) {
330
331
			// If the code includes a valid, prologue position
332
			// strict mode pragma, execute code by injecting a
333
			// script tag into the document.
334
			if ( code.indexOf( "use strict" ) === 1 ) {
335
				script = document.createElement( "script" );
336
				script.text = code;
337
				document.head.appendChild( script ).parentNode.removeChild( script );
338
			} else {
339
340
				// Otherwise, avoid the DOM node creation, insertion
341
				// and removal by using an indirect global eval
342
343
				indirect( code );
344
			}
345
		}
346
	},
347
348
	// Convert dashed to camelCase; used by the css and data modules
349
	// Support: IE9-11+
350
	// Microsoft forgot to hump their vendor prefix (#9572)
351
	camelCase: function( string ) {
352
		return string.replace( rmsPrefix, "ms-" ).replace( rdashAlpha, fcamelCase );
353
	},
354
355
	nodeName: function( elem, name ) {
356
		return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase();
357
	},
358
359
	each: function( obj, callback ) {
360
		var length, i = 0;
361
362
		if ( isArrayLike( obj ) ) {
363
			length = obj.length;
364
			for ( ; i < length; i++ ) {
365
				if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) {
366
					break;
367
				}
368
			}
369
		} else {
370
			for ( i in obj ) {
371
				if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) {
372
					break;
373
				}
374
			}
375
		}
376
377
		return obj;
378
	},
379
380
	// Support: Android<4.1
381
	trim: function( text ) {
382
		return text == null ?
383
			"" :
384
			( text + "" ).replace( rtrim, "" );
385
	},
386
387
	// results is for internal usage only
388
	makeArray: function( arr, results ) {
389
		var ret = results || [];
390
391
		if ( arr != null ) {
392
			if ( isArrayLike( Object( arr ) ) ) {
393
				jQuery.merge( ret,
394
					typeof arr === "string" ?
395
					[ arr ] : arr
396
				);
397
			} else {
398
				push.call( ret, arr );
399
			}
400
		}
401
402
		return ret;
403
	},
404
405
	inArray: function( elem, arr, i ) {
406
		return arr == null ? -1 : indexOf.call( arr, elem, i );
407
	},
408
409
	merge: function( first, second ) {
410
		var len = +second.length,
411
			j = 0,
412
			i = first.length;
413
414
		for ( ; j < len; j++ ) {
415
			first[ i++ ] = second[ j ];
416
		}
417
418
		first.length = i;
419
420
		return first;
421
	},
422
423
	grep: function( elems, callback, invert ) {
424
		var callbackInverse,
425
			matches = [],
426
			i = 0,
427
			length = elems.length,
428
			callbackExpect = !invert;
429
430
		// Go through the array, only saving the items
431
		// that pass the validator function
432
		for ( ; i < length; i++ ) {
433
			callbackInverse = !callback( elems[ i ], i );
434
			if ( callbackInverse !== callbackExpect ) {
435
				matches.push( elems[ i ] );
436
			}
437
		}
438
439
		return matches;
440
	},
441
442
	// arg is for internal usage only
443
	map: function( elems, callback, arg ) {
444
		var length, value,
445
			i = 0,
446
			ret = [];
447
448
		// Go through the array, translating each of the items to their new values
449
		if ( isArrayLike( elems ) ) {
450
			length = elems.length;
451
			for ( ; i < length; i++ ) {
452
				value = callback( elems[ i ], i, arg );
453
454
				if ( value != null ) {
455
					ret.push( value );
456
				}
457
			}
458
459
		// Go through every key on the object,
460
		} else {
461
			for ( i in elems ) {
462
				value = callback( elems[ i ], i, arg );
463
464
				if ( value != null ) {
465
					ret.push( value );
466
				}
467
			}
468
		}
469
470
		// Flatten any nested arrays
471
		return concat.apply( [], ret );
472
	},
473
474
	// A global GUID counter for objects
475
	guid: 1,
476
477
	// Bind a function to a context, optionally partially applying any
478
	// arguments.
479
	proxy: function( fn, context ) {
480
		var tmp, args, proxy;
481
482
		if ( typeof context === "string" ) {
483
			tmp = fn[ context ];
484
			context = fn;
485
			fn = tmp;
486
		}
487
488
		// Quick check to determine if target is callable, in the spec
489
		// this throws a TypeError, but we will just return undefined.
490
		if ( !jQuery.isFunction( fn ) ) {
491
			return undefined;
492
		}
493
494
		// Simulated bind
495
		args = slice.call( arguments, 2 );
496
		proxy = function() {
497
			return fn.apply( context || this, args.concat( slice.call( arguments ) ) );
498
		};
499
500
		// Set the guid of unique handler to the same of original handler, so it can be removed
501
		proxy.guid = fn.guid = fn.guid || jQuery.guid++;
502
503
		return proxy;
504
	},
505
506
	now: Date.now,
507
508
	// jQuery.support is not used in Core but other projects attach their
509
	// properties to it so it needs to exist.
510
	support: support
511
} );
512
513
// JSHint would error on this code due to the Symbol not being defined in ES5.
514
// Defining this global in .jshintrc would create a danger of using the global
515
// unguarded in another place, it seems safer to just disable JSHint for these
516
// three lines.
517
/* jshint ignore: start */
518
if ( typeof Symbol === "function" ) {
519
	jQuery.fn[ Symbol.iterator ] = arr[ Symbol.iterator ];
520
}
521
/* jshint ignore: end */
522
523
// Populate the class2type map
524
jQuery.each( "Boolean Number String Function Array Date RegExp Object Error Symbol".split( " " ),
525
function( i, name ) {
526
	class2type[ "[object " + name + "]" ] = name.toLowerCase();
527
} );
528
529
function isArrayLike( obj ) {
530
531
	// Support: iOS 8.2 (not reproducible in simulator)
532
	// `in` check used to prevent JIT error (gh-2145)
533
	// hasOwn isn't used here due to false negatives
534
	// regarding Nodelist length in IE
535
	var length = !!obj && "length" in obj && obj.length,
536
		type = jQuery.type( obj );
537
538
	if ( type === "function" || jQuery.isWindow( obj ) ) {
539
		return false;
540
	}
541
542
	return type === "array" || length === 0 ||
543
		typeof length === "number" && length > 0 && ( length - 1 ) in obj;
544
}
545
var Sizzle =
546
/*!
547
 * Sizzle CSS Selector Engine v2.2.1
548
 * http://sizzlejs.com/
549
 *
550
 * Copyright jQuery Foundation and other contributors
551
 * Released under the MIT license
552
 * http://jquery.org/license
553
 *
554
 * Date: 2015-10-17
555
 */
556
(function( window ) {
557
558
var i,
559
	support,
560
	Expr,
561
	getText,
562
	isXML,
563
	tokenize,
564
	compile,
565
	select,
566
	outermostContext,
567
	sortInput,
568
	hasDuplicate,
569
570
	// Local document vars
571
	setDocument,
572
	document,
573
	docElem,
574
	documentIsHTML,
575
	rbuggyQSA,
576
	rbuggyMatches,
577
	matches,
578
	contains,
579
580
	// Instance-specific data
581
	expando = "sizzle" + 1 * new Date(),
582
	preferredDoc = window.document,
583
	dirruns = 0,
584
	done = 0,
585
	classCache = createCache(),
586
	tokenCache = createCache(),
587
	compilerCache = createCache(),
588
	sortOrder = function( a, b ) {
589
		if ( a === b ) {
590
			hasDuplicate = true;
591
		}
592
		return 0;
593
	},
594
595
	// General-purpose constants
596
	MAX_NEGATIVE = 1 << 31,
597
598
	// Instance methods
599
	hasOwn = ({}).hasOwnProperty,
600
	arr = [],
601
	pop = arr.pop,
602
	push_native = arr.push,
603
	push = arr.push,
604
	slice = arr.slice,
605
	// Use a stripped-down indexOf as it's faster than native
606
	// http://jsperf.com/thor-indexof-vs-for/5
607
	indexOf = function( list, elem ) {
608
		var i = 0,
609
			len = list.length;
610
		for ( ; i < len; i++ ) {
611
			if ( list[i] === elem ) {
612
				return i;
613
			}
614
		}
615
		return -1;
616
	},
617
618
	booleans = "checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",
619
620
	// Regular expressions
621
622
	// http://www.w3.org/TR/css3-selectors/#whitespace
623
	whitespace = "[\\x20\\t\\r\\n\\f]",
624
625
	// http://www.w3.org/TR/CSS21/syndata.html#value-def-identifier
626
	identifier = "(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",
627
628
	// Attribute selectors: http://www.w3.org/TR/selectors/#attribute-selectors
629
	attributes = "\\[" + whitespace + "*(" + identifier + ")(?:" + whitespace +
630
		// Operator (capture 2)
631
		"*([*^$|!~]?=)" + whitespace +
632
		// "Attribute values must be CSS identifiers [capture 5] or strings [capture 3 or capture 4]"
633
		"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|(" + identifier + "))|)" + whitespace +
634
		"*\\]",
635
636
	pseudos = ":(" + identifier + ")(?:\\((" +
637
		// To reduce the number of selectors needing tokenize in the preFilter, prefer arguments:
638
		// 1. quoted (capture 3; capture 4 or capture 5)
639
		"('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|" +
640
		// 2. simple (capture 6)
641
		"((?:\\\\.|[^\\\\()[\\]]|" + attributes + ")*)|" +
642
		// 3. anything else (capture 2)
643
		".*" +
644
		")\\)|)",
645
646
	// Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter
647
	rwhitespace = new RegExp( whitespace + "+", "g" ),
648
	rtrim = new RegExp( "^" + whitespace + "+|((?:^|[^\\\\])(?:\\\\.)*)" + whitespace + "+$", "g" ),
649
650
	rcomma = new RegExp( "^" + whitespace + "*," + whitespace + "*" ),
651
	rcombinators = new RegExp( "^" + whitespace + "*([>+~]|" + whitespace + ")" + whitespace + "*" ),
652
653
	rattributeQuotes = new RegExp( "=" + whitespace + "*([^\\]'\"]*?)" + whitespace + "*\\]", "g" ),
654
655
	rpseudo = new RegExp( pseudos ),
656
	ridentifier = new RegExp( "^" + identifier + "$" ),
657
658
	matchExpr = {
659
		"ID": new RegExp( "^#(" + identifier + ")" ),
660
		"CLASS": new RegExp( "^\\.(" + identifier + ")" ),
661
		"TAG": new RegExp( "^(" + identifier + "|[*])" ),
662
		"ATTR": new RegExp( "^" + attributes ),
663
		"PSEUDO": new RegExp( "^" + pseudos ),
664
		"CHILD": new RegExp( "^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\(" + whitespace +
665
			"*(even|odd|(([+-]|)(\\d*)n|)" + whitespace + "*(?:([+-]|)" + whitespace +
666
			"*(\\d+)|))" + whitespace + "*\\)|)", "i" ),
667
		"bool": new RegExp( "^(?:" + booleans + ")$", "i" ),
668
		// For use in libraries implementing .is()
669
		// We use this for POS matching in `select`
670
		"needsContext": new RegExp( "^" + whitespace + "*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\(" +
671
			whitespace + "*((?:-\\d)?\\d*)" + whitespace + "*\\)|)(?=[^-]|$)", "i" )
672
	},
673
674
	rinputs = /^(?:input|select|textarea|button)$/i,
675
	rheader = /^h\d$/i,
676
677
	rnative = /^[^{]+\{\s*\[native \w/,
678
679
	// Easily-parseable/retrievable ID or TAG or CLASS selectors
680
	rquickExpr = /^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,
681
682
	rsibling = /[+~]/,
683
	rescape = /'|\\/g,
684
685
	// CSS escapes http://www.w3.org/TR/CSS21/syndata.html#escaped-characters
686
	runescape = new RegExp( "\\\\([\\da-f]{1,6}" + whitespace + "?|(" + whitespace + ")|.)", "ig" ),
687
	funescape = function( _, escaped, escapedWhitespace ) {
688
		var high = "0x" + escaped - 0x10000;
689
		// NaN means non-codepoint
690
		// Support: Firefox<24
691
		// Workaround erroneous numeric interpretation of +"0x"
692
		return high !== high || escapedWhitespace ?
693
			escaped :
694
			high < 0 ?
695
				// BMP codepoint
696
				String.fromCharCode( high + 0x10000 ) :
697
				// Supplemental Plane codepoint (surrogate pair)
698
				String.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 );
699
	},
700
701
	// Used for iframes
702
	// See setDocument()
703
	// Removing the function wrapper causes a "Permission Denied"
704
	// error in IE
705
	unloadHandler = function() {
706
		setDocument();
707
	};
708
709
// Optimize for push.apply( _, NodeList )
710
try {
711
	push.apply(
712
		(arr = slice.call( preferredDoc.childNodes )),
713
		preferredDoc.childNodes
714
	);
715
	// Support: Android<4.0
716
	// Detect silently failing push.apply
717
	arr[ preferredDoc.childNodes.length ].nodeType;
718
} catch ( e ) {
719
	push = { apply: arr.length ?
720
721
		// Leverage slice if possible
722
		function( target, els ) {
723
			push_native.apply( target, slice.call(els) );
724
		} :
725
726
		// Support: IE<9
727
		// Otherwise append directly
728
		function( target, els ) {
729
			var j = target.length,
730
				i = 0;
731
			// Can't trust NodeList.length
732
			while ( (target[j++] = els[i++]) ) {}
733
			target.length = j - 1;
734
		}
735
	};
736
}
737
738
function Sizzle( selector, context, results, seed ) {
739
	var m, i, elem, nid, nidselect, match, groups, newSelector,
740
		newContext = context && context.ownerDocument,
741
742
		// nodeType defaults to 9, since context defaults to document
743
		nodeType = context ? context.nodeType : 9;
744
745
	results = results || [];
746
747
	// Return early from calls with invalid selector or context
748
	if ( typeof selector !== "string" || !selector ||
749
		nodeType !== 1 && nodeType !== 9 && nodeType !== 11 ) {
750
751
		return results;
752
	}
753
754
	// Try to shortcut find operations (as opposed to filters) in HTML documents
755
	if ( !seed ) {
756
757
		if ( ( context ? context.ownerDocument || context : preferredDoc ) !== document ) {
758
			setDocument( context );
759
		}
760
		context = context || document;
761
762
		if ( documentIsHTML ) {
763
764
			// If the selector is sufficiently simple, try using a "get*By*" DOM method
765
			// (excepting DocumentFragment context, where the methods don't exist)
766
			if ( nodeType !== 11 && (match = rquickExpr.exec( selector )) ) {
767
768
				// ID selector
769
				if ( (m = match[1]) ) {
770
771
					// Document context
772
					if ( nodeType === 9 ) {
773
						if ( (elem = context.getElementById( m )) ) {
774
775
							// Support: IE, Opera, Webkit
776
							// TODO: identify versions
777
							// getElementById can match elements by name instead of ID
778
							if ( elem.id === m ) {
779
								results.push( elem );
780
								return results;
781
							}
782
						} else {
783
							return results;
784
						}
785
786
					// Element context
787
					} else {
788
789
						// Support: IE, Opera, Webkit
790
						// TODO: identify versions
791
						// getElementById can match elements by name instead of ID
792
						if ( newContext && (elem = newContext.getElementById( m )) &&
793
							contains( context, elem ) &&
794
							elem.id === m ) {
795
796
							results.push( elem );
797
							return results;
798
						}
799
					}
800
801
				// Type selector
802
				} else if ( match[2] ) {
803
					push.apply( results, context.getElementsByTagName( selector ) );
804
					return results;
805
806
				// Class selector
807
				} else if ( (m = match[3]) && support.getElementsByClassName &&
808
					context.getElementsByClassName ) {
809
810
					push.apply( results, context.getElementsByClassName( m ) );
811
					return results;
812
				}
813
			}
814
815
			// Take advantage of querySelectorAll
816
			if ( support.qsa &&
817
				!compilerCache[ selector + " " ] &&
818
				(!rbuggyQSA || !rbuggyQSA.test( selector )) ) {
819
820
				if ( nodeType !== 1 ) {
821
					newContext = context;
822
					newSelector = selector;
823
824
				// qSA looks outside Element context, which is not what we want
825
				// Thanks to Andrew Dupont for this workaround technique
826
				// Support: IE <=8
827
				// Exclude object elements
828
				} else if ( context.nodeName.toLowerCase() !== "object" ) {
829
830
					// Capture the context ID, setting it first if necessary
831
					if ( (nid = context.getAttribute( "id" )) ) {
832
						nid = nid.replace( rescape, "\\$&" );
833
					} else {
834
						context.setAttribute( "id", (nid = expando) );
835
					}
836
837
					// Prefix every selector in the list
838
					groups = tokenize( selector );
839
					i = groups.length;
840
					nidselect = ridentifier.test( nid ) ? "#" + nid : "[id='" + nid + "']";
841
					while ( i-- ) {
842
						groups[i] = nidselect + " " + toSelector( groups[i] );
843
					}
844
					newSelector = groups.join( "," );
845
846
					// Expand context for sibling selectors
847
					newContext = rsibling.test( selector ) && testContext( context.parentNode ) ||
848
						context;
849
				}
850
851
				if ( newSelector ) {
852
					try {
853
						push.apply( results,
854
							newContext.querySelectorAll( newSelector )
855
						);
856
						return results;
857
					} catch ( qsaError ) {
858
					} finally {
859
						if ( nid === expando ) {
860
							context.removeAttribute( "id" );
861
						}
862
					}
863
				}
864
			}
865
		}
866
	}
867
868
	// All others
869
	return select( selector.replace( rtrim, "$1" ), context, results, seed );
870
}
871
872
/**
873
 * Create key-value caches of limited size
874
 * @returns {function(string, object)} Returns the Object data after storing it on itself with
875
 *	property name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength)
876
 *	deleting the oldest entry
877
 */
878
function createCache() {
879
	var keys = [];
880
881
	function cache( key, value ) {
882
		// Use (key + " ") to avoid collision with native prototype properties (see Issue #157)
883
		if ( keys.push( key + " " ) > Expr.cacheLength ) {
884
			// Only keep the most recent entries
885
			delete cache[ keys.shift() ];
886
		}
887
		return (cache[ key + " " ] = value);
888
	}
889
	return cache;
890
}
891
892
/**
893
 * Mark a function for special use by Sizzle
894
 * @param {Function} fn The function to mark
895
 */
896
function markFunction( fn ) {
897
	fn[ expando ] = true;
898
	return fn;
899
}
900
901
/**
902
 * Support testing using an element
903
 * @param {Function} fn Passed the created div and expects a boolean result
904
 */
905
function assert( fn ) {
906
	var div = document.createElement("div");
907
908
	try {
909
		return !!fn( div );
910
	} catch (e) {
911
		return false;
912
	} finally {
913
		// Remove from its parent by default
914
		if ( div.parentNode ) {
915
			div.parentNode.removeChild( div );
916
		}
917
		// release memory in IE
918
		div = null;
919
	}
920
}
921
922
/**
923
 * Adds the same handler for all of the specified attrs
924
 * @param {String} attrs Pipe-separated list of attributes
925
 * @param {Function} handler The method that will be applied
926
 */
927
function addHandle( attrs, handler ) {
928
	var arr = attrs.split("|"),
929
		i = arr.length;
930
931
	while ( i-- ) {
932
		Expr.attrHandle[ arr[i] ] = handler;
933
	}
934
}
935
936
/**
937
 * Checks document order of two siblings
938
 * @param {Element} a
939
 * @param {Element} b
940
 * @returns {Number} Returns less than 0 if a precedes b, greater than 0 if a follows b
941
 */
942
function siblingCheck( a, b ) {
943
	var cur = b && a,
944
		diff = cur && a.nodeType === 1 && b.nodeType === 1 &&
945
			( ~b.sourceIndex || MAX_NEGATIVE ) -
946
			( ~a.sourceIndex || MAX_NEGATIVE );
947
948
	// Use IE sourceIndex if available on both nodes
949
	if ( diff ) {
950
		return diff;
951
	}
952
953
	// Check if b follows a
954
	if ( cur ) {
955
		while ( (cur = cur.nextSibling) ) {
956
			if ( cur === b ) {
957
				return -1;
958
			}
959
		}
960
	}
961
962
	return a ? 1 : -1;
963
}
964
965
/**
966
 * Returns a function to use in pseudos for input types
967
 * @param {String} type
968
 */
969
function createInputPseudo( type ) {
970
	return function( elem ) {
971
		var name = elem.nodeName.toLowerCase();
972
		return name === "input" && elem.type === type;
973
	};
974
}
975
976
/**
977
 * Returns a function to use in pseudos for buttons
978
 * @param {String} type
979
 */
980
function createButtonPseudo( type ) {
981
	return function( elem ) {
982
		var name = elem.nodeName.toLowerCase();
983
		return (name === "input" || name === "button") && elem.type === type;
984
	};
985
}
986
987
/**
988
 * Returns a function to use in pseudos for positionals
989
 * @param {Function} fn
990
 */
991
function createPositionalPseudo( fn ) {
992
	return markFunction(function( argument ) {
993
		argument = +argument;
994
		return markFunction(function( seed, matches ) {
995
			var j,
996
				matchIndexes = fn( [], seed.length, argument ),
997
				i = matchIndexes.length;
998
999
			// Match elements found at the specified indexes
1000
			while ( i-- ) {
1001
				if ( seed[ (j = matchIndexes[i]) ] ) {
1002
					seed[j] = !(matches[j] = seed[j]);
1003
				}
1004
			}
1005
		});
1006
	});
1007
}
1008
1009
/**
1010
 * Checks a node for validity as a Sizzle context
1011
 * @param {Element|Object=} context
1012
 * @returns {Element|Object|Boolean} The input node if acceptable, otherwise a falsy value
1013
 */
1014
function testContext( context ) {
1015
	return context && typeof context.getElementsByTagName !== "undefined" && context;
1016
}
1017
1018
// Expose support vars for convenience
1019
support = Sizzle.support = {};
1020
1021
/**
1022
 * Detects XML nodes
1023
 * @param {Element|Object} elem An element or a document
1024
 * @returns {Boolean} True iff elem is a non-HTML XML node
1025
 */
1026
isXML = Sizzle.isXML = function( elem ) {
1027
	// documentElement is verified for cases where it doesn't yet exist
1028
	// (such as loading iframes in IE - #4833)
1029
	var documentElement = elem && (elem.ownerDocument || elem).documentElement;
1030
	return documentElement ? documentElement.nodeName !== "HTML" : false;
1031
};
1032
1033
/**
1034
 * Sets document-related variables once based on the current document
1035
 * @param {Element|Object} [doc] An element or document object to use to set the document
1036
 * @returns {Object} Returns the current document
1037
 */
1038
setDocument = Sizzle.setDocument = function( node ) {
1039
	var hasCompare, parent,
1040
		doc = node ? node.ownerDocument || node : preferredDoc;
1041
1042
	// Return early if doc is invalid or already selected
1043
	if ( doc === document || doc.nodeType !== 9 || !doc.documentElement ) {
1044
		return document;
1045
	}
1046
1047
	// Update global variables
1048
	document = doc;
1049
	docElem = document.documentElement;
1050
	documentIsHTML = !isXML( document );
1051
1052
	// Support: IE 9-11, Edge
1053
	// Accessing iframe documents after unload throws "permission denied" errors (jQuery #13936)
1054
	if ( (parent = document.defaultView) && parent.top !== parent ) {
1055
		// Support: IE 11
1056
		if ( parent.addEventListener ) {
1057
			parent.addEventListener( "unload", unloadHandler, false );
1058
1059
		// Support: IE 9 - 10 only
1060
		} else if ( parent.attachEvent ) {
1061
			parent.attachEvent( "onunload", unloadHandler );
1062
		}
1063
	}
1064
1065
	/* Attributes
1066
	---------------------------------------------------------------------- */
1067
1068
	// Support: IE<8
1069
	// Verify that getAttribute really returns attributes and not properties
1070
	// (excepting IE8 booleans)
1071
	support.attributes = assert(function( div ) {
1072
		div.className = "i";
1073
		return !div.getAttribute("className");
1074
	});
1075
1076
	/* getElement(s)By*
1077
	---------------------------------------------------------------------- */
1078
1079
	// Check if getElementsByTagName("*") returns only elements
1080
	support.getElementsByTagName = assert(function( div ) {
1081
		div.appendChild( document.createComment("") );
1082
		return !div.getElementsByTagName("*").length;
1083
	});
1084
1085
	// Support: IE<9
1086
	support.getElementsByClassName = rnative.test( document.getElementsByClassName );
1087
1088
	// Support: IE<10
1089
	// Check if getElementById returns elements by name
1090
	// The broken getElementById methods don't pick up programatically-set names,
1091
	// so use a roundabout getElementsByName test
1092
	support.getById = assert(function( div ) {
1093
		docElem.appendChild( div ).id = expando;
1094
		return !document.getElementsByName || !document.getElementsByName( expando ).length;
1095
	});
1096
1097
	// ID find and filter
1098
	if ( support.getById ) {
1099
		Expr.find["ID"] = function( id, context ) {
1100
			if ( typeof context.getElementById !== "undefined" && documentIsHTML ) {
1101
				var m = context.getElementById( id );
1102
				return m ? [ m ] : [];
1103
			}
1104
		};
1105
		Expr.filter["ID"] = function( id ) {
1106
			var attrId = id.replace( runescape, funescape );
1107
			return function( elem ) {
1108
				return elem.getAttribute("id") === attrId;
1109
			};
1110
		};
1111
	} else {
1112
		// Support: IE6/7
1113
		// getElementById is not reliable as a find shortcut
1114
		delete Expr.find["ID"];
1115
1116
		Expr.filter["ID"] =  function( id ) {
1117
			var attrId = id.replace( runescape, funescape );
1118
			return function( elem ) {
1119
				var node = typeof elem.getAttributeNode !== "undefined" &&
1120
					elem.getAttributeNode("id");
1121
				return node && node.value === attrId;
1122
			};
1123
		};
1124
	}
1125
1126
	// Tag
1127
	Expr.find["TAG"] = support.getElementsByTagName ?
1128
		function( tag, context ) {
1129
			if ( typeof context.getElementsByTagName !== "undefined" ) {
1130
				return context.getElementsByTagName( tag );
1131
1132
			// DocumentFragment nodes don't have gEBTN
1133
			} else if ( support.qsa ) {
1134
				return context.querySelectorAll( tag );
1135
			}
1136
		} :
1137
1138
		function( tag, context ) {
1139
			var elem,
1140
				tmp = [],
1141
				i = 0,
1142
				// By happy coincidence, a (broken) gEBTN appears on DocumentFragment nodes too
1143
				results = context.getElementsByTagName( tag );
1144
1145
			// Filter out possible comments
1146
			if ( tag === "*" ) {
1147
				while ( (elem = results[i++]) ) {
1148
					if ( elem.nodeType === 1 ) {
1149
						tmp.push( elem );
1150
					}
1151
				}
1152
1153
				return tmp;
1154
			}
1155
			return results;
1156
		};
1157
1158
	// Class
1159
	Expr.find["CLASS"] = support.getElementsByClassName && function( className, context ) {
1160
		if ( typeof context.getElementsByClassName !== "undefined" && documentIsHTML ) {
1161
			return context.getElementsByClassName( className );
1162
		}
1163
	};
1164
1165
	/* QSA/matchesSelector
1166
	---------------------------------------------------------------------- */
1167
1168
	// QSA and matchesSelector support
1169
1170
	// matchesSelector(:active) reports false when true (IE9/Opera 11.5)
1171
	rbuggyMatches = [];
1172
1173
	// qSa(:focus) reports false when true (Chrome 21)
1174
	// We allow this because of a bug in IE8/9 that throws an error
1175
	// whenever `document.activeElement` is accessed on an iframe
1176
	// So, we allow :focus to pass through QSA all the time to avoid the IE error
1177
	// See http://bugs.jquery.com/ticket/13378
1178
	rbuggyQSA = [];
1179
1180
	if ( (support.qsa = rnative.test( document.querySelectorAll )) ) {
1181
		// Build QSA regex
1182
		// Regex strategy adopted from Diego Perini
1183
		assert(function( div ) {
1184
			// Select is set to empty string on purpose
1185
			// This is to test IE's treatment of not explicitly
1186
			// setting a boolean content attribute,
1187
			// since its presence should be enough
1188
			// http://bugs.jquery.com/ticket/12359
1189
			docElem.appendChild( div ).innerHTML = "<a id='" + expando + "'></a>" +
1190
				"<select id='" + expando + "-\r\\' msallowcapture=''>" +
1191
				"<option selected=''></option></select>";
1192
1193
			// Support: IE8, Opera 11-12.16
1194
			// Nothing should be selected when empty strings follow ^= or $= or *=
1195
			// The test attribute must be unknown in Opera but "safe" for WinRT
1196
			// http://msdn.microsoft.com/en-us/library/ie/hh465388.aspx#attribute_section
1197
			if ( div.querySelectorAll("[msallowcapture^='']").length ) {
1198
				rbuggyQSA.push( "[*^$]=" + whitespace + "*(?:''|\"\")" );
1199
			}
1200
1201
			// Support: IE8
1202
			// Boolean attributes and "value" are not treated correctly
1203
			if ( !div.querySelectorAll("[selected]").length ) {
1204
				rbuggyQSA.push( "\\[" + whitespace + "*(?:value|" + booleans + ")" );
1205
			}
1206
1207
			// Support: Chrome<29, Android<4.4, Safari<7.0+, iOS<7.0+, PhantomJS<1.9.8+
1208
			if ( !div.querySelectorAll( "[id~=" + expando + "-]" ).length ) {
1209
				rbuggyQSA.push("~=");
1210
			}
1211
1212
			// Webkit/Opera - :checked should return selected option elements
1213
			// http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked
1214
			// IE8 throws error here and will not see later tests
1215
			if ( !div.querySelectorAll(":checked").length ) {
1216
				rbuggyQSA.push(":checked");
1217
			}
1218
1219
			// Support: Safari 8+, iOS 8+
1220
			// https://bugs.webkit.org/show_bug.cgi?id=136851
1221
			// In-page `selector#id sibing-combinator selector` fails
1222
			if ( !div.querySelectorAll( "a#" + expando + "+*" ).length ) {
1223
				rbuggyQSA.push(".#.+[+~]");
1224
			}
1225
		});
1226
1227
		assert(function( div ) {
1228
			// Support: Windows 8 Native Apps
1229
			// The type and name attributes are restricted during .innerHTML assignment
1230
			var input = document.createElement("input");
1231
			input.setAttribute( "type", "hidden" );
1232
			div.appendChild( input ).setAttribute( "name", "D" );
1233
1234
			// Support: IE8
1235
			// Enforce case-sensitivity of name attribute
1236
			if ( div.querySelectorAll("[name=d]").length ) {
1237
				rbuggyQSA.push( "name" + whitespace + "*[*^$|!~]?=" );
1238
			}
1239
1240
			// FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled)
1241
			// IE8 throws error here and will not see later tests
1242
			if ( !div.querySelectorAll(":enabled").length ) {
1243
				rbuggyQSA.push( ":enabled", ":disabled" );
1244
			}
1245
1246
			// Opera 10-11 does not throw on post-comma invalid pseudos
1247
			div.querySelectorAll("*,:x");
1248
			rbuggyQSA.push(",.*:");
1249
		});
1250
	}
1251
1252
	if ( (support.matchesSelector = rnative.test( (matches = docElem.matches ||
1253
		docElem.webkitMatchesSelector ||
1254
		docElem.mozMatchesSelector ||
1255
		docElem.oMatchesSelector ||
1256
		docElem.msMatchesSelector) )) ) {
1257
1258
		assert(function( div ) {
1259
			// Check to see if it's possible to do matchesSelector
1260
			// on a disconnected node (IE 9)
1261
			support.disconnectedMatch = matches.call( div, "div" );
1262
1263
			// This should fail with an exception
1264
			// Gecko does not error, returns false instead
1265
			matches.call( div, "[s!='']:x" );
1266
			rbuggyMatches.push( "!=", pseudos );
1267
		});
1268
	}
1269
1270
	rbuggyQSA = rbuggyQSA.length && new RegExp( rbuggyQSA.join("|") );
1271
	rbuggyMatches = rbuggyMatches.length && new RegExp( rbuggyMatches.join("|") );
1272
1273
	/* Contains
1274
	---------------------------------------------------------------------- */
1275
	hasCompare = rnative.test( docElem.compareDocumentPosition );
1276
1277
	// Element contains another
1278
	// Purposefully self-exclusive
1279
	// As in, an element does not contain itself
1280
	contains = hasCompare || rnative.test( docElem.contains ) ?
1281
		function( a, b ) {
1282
			var adown = a.nodeType === 9 ? a.documentElement : a,
1283
				bup = b && b.parentNode;
1284
			return a === bup || !!( bup && bup.nodeType === 1 && (
1285
				adown.contains ?
1286
					adown.contains( bup ) :
1287
					a.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16
1288
			));
1289
		} :
1290
		function( a, b ) {
1291
			if ( b ) {
1292
				while ( (b = b.parentNode) ) {
1293
					if ( b === a ) {
1294
						return true;
1295
					}
1296
				}
1297
			}
1298
			return false;
1299
		};
1300
1301
	/* Sorting
1302
	---------------------------------------------------------------------- */
1303
1304
	// Document order sorting
1305
	sortOrder = hasCompare ?
1306
	function( a, b ) {
1307
1308
		// Flag for duplicate removal
1309
		if ( a === b ) {
1310
			hasDuplicate = true;
1311
			return 0;
1312
		}
1313
1314
		// Sort on method existence if only one input has compareDocumentPosition
1315
		var compare = !a.compareDocumentPosition - !b.compareDocumentPosition;
1316
		if ( compare ) {
1317
			return compare;
1318
		}
1319
1320
		// Calculate position if both inputs belong to the same document
1321
		compare = ( a.ownerDocument || a ) === ( b.ownerDocument || b ) ?
1322
			a.compareDocumentPosition( b ) :
1323
1324
			// Otherwise we know they are disconnected
1325
			1;
1326
1327
		// Disconnected nodes
1328
		if ( compare & 1 ||
1329
			(!support.sortDetached && b.compareDocumentPosition( a ) === compare) ) {
1330
1331
			// Choose the first element that is related to our preferred document
1332
			if ( a === document || a.ownerDocument === preferredDoc && contains(preferredDoc, a) ) {
1333
				return -1;
1334
			}
1335
			if ( b === document || b.ownerDocument === preferredDoc && contains(preferredDoc, b) ) {
1336
				return 1;
1337
			}
1338
1339
			// Maintain original order
1340
			return sortInput ?
1341
				( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) :
1342
				0;
1343
		}
1344
1345
		return compare & 4 ? -1 : 1;
1346
	} :
1347
	function( a, b ) {
1348
		// Exit early if the nodes are identical
1349
		if ( a === b ) {
1350
			hasDuplicate = true;
1351
			return 0;
1352
		}
1353
1354
		var cur,
1355
			i = 0,
1356
			aup = a.parentNode,
1357
			bup = b.parentNode,
1358
			ap = [ a ],
1359
			bp = [ b ];
1360
1361
		// Parentless nodes are either documents or disconnected
1362
		if ( !aup || !bup ) {
1363
			return a === document ? -1 :
1364
				b === document ? 1 :
1365
				aup ? -1 :
1366
				bup ? 1 :
1367
				sortInput ?
1368
				( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) :
1369
				0;
1370
1371
		// If the nodes are siblings, we can do a quick check
1372
		} else if ( aup === bup ) {
1373
			return siblingCheck( a, b );
1374
		}
1375
1376
		// Otherwise we need full lists of their ancestors for comparison
1377
		cur = a;
1378
		while ( (cur = cur.parentNode) ) {
1379
			ap.unshift( cur );
1380
		}
1381
		cur = b;
1382
		while ( (cur = cur.parentNode) ) {
1383
			bp.unshift( cur );
1384
		}
1385
1386
		// Walk down the tree looking for a discrepancy
1387
		while ( ap[i] === bp[i] ) {
1388
			i++;
1389
		}
1390
1391
		return i ?
1392
			// Do a sibling check if the nodes have a common ancestor
1393
			siblingCheck( ap[i], bp[i] ) :
1394
1395
			// Otherwise nodes in our document sort first
1396
			ap[i] === preferredDoc ? -1 :
1397
			bp[i] === preferredDoc ? 1 :
1398
			0;
1399
	};
1400
1401
	return document;
1402
};
1403
1404
Sizzle.matches = function( expr, elements ) {
1405
	return Sizzle( expr, null, null, elements );
1406
};
1407
1408
Sizzle.matchesSelector = function( elem, expr ) {
1409
	// Set document vars if needed
1410
	if ( ( elem.ownerDocument || elem ) !== document ) {
1411
		setDocument( elem );
1412
	}
1413
1414
	// Make sure that attribute selectors are quoted
1415
	expr = expr.replace( rattributeQuotes, "='$1']" );
1416
1417
	if ( support.matchesSelector && documentIsHTML &&
1418
		!compilerCache[ expr + " " ] &&
1419
		( !rbuggyMatches || !rbuggyMatches.test( expr ) ) &&
1420
		( !rbuggyQSA     || !rbuggyQSA.test( expr ) ) ) {
1421
1422
		try {
1423
			var ret = matches.call( elem, expr );
1424
1425
			// IE 9's matchesSelector returns false on disconnected nodes
1426
			if ( ret || support.disconnectedMatch ||
1427
					// As well, disconnected nodes are said to be in a document
1428
					// fragment in IE 9
1429
					elem.document && elem.document.nodeType !== 11 ) {
1430
				return ret;
1431
			}
1432
		} catch (e) {}
1433
	}
1434
1435
	return Sizzle( expr, document, null, [ elem ] ).length > 0;
1436
};
1437
1438
Sizzle.contains = function( context, elem ) {
1439
	// Set document vars if needed
1440
	if ( ( context.ownerDocument || context ) !== document ) {
1441
		setDocument( context );
1442
	}
1443
	return contains( context, elem );
1444
};
1445
1446
Sizzle.attr = function( elem, name ) {
1447
	// Set document vars if needed
1448
	if ( ( elem.ownerDocument || elem ) !== document ) {
1449
		setDocument( elem );
1450
	}
1451
1452
	var fn = Expr.attrHandle[ name.toLowerCase() ],
1453
		// Don't get fooled by Object.prototype properties (jQuery #13807)
1454
		val = fn && hasOwn.call( Expr.attrHandle, name.toLowerCase() ) ?
1455
			fn( elem, name, !documentIsHTML ) :
1456
			undefined;
1457
1458
	return val !== undefined ?
1459
		val :
1460
		support.attributes || !documentIsHTML ?
1461
			elem.getAttribute( name ) :
1462
			(val = elem.getAttributeNode(name)) && val.specified ?
1463
				val.value :
1464
				null;
1465
};
1466
1467
Sizzle.error = function( msg ) {
1468
	throw new Error( "Syntax error, unrecognized expression: " + msg );
1469
};
1470
1471
/**
1472
 * Document sorting and removing duplicates
1473
 * @param {ArrayLike} results
1474
 */
1475
Sizzle.uniqueSort = function( results ) {
1476
	var elem,
1477
		duplicates = [],
1478
		j = 0,
1479
		i = 0;
1480
1481
	// Unless we *know* we can detect duplicates, assume their presence
1482
	hasDuplicate = !support.detectDuplicates;
1483
	sortInput = !support.sortStable && results.slice( 0 );
1484
	results.sort( sortOrder );
1485
1486
	if ( hasDuplicate ) {
1487
		while ( (elem = results[i++]) ) {
1488
			if ( elem === results[ i ] ) {
1489
				j = duplicates.push( i );
1490
			}
1491
		}
1492
		while ( j-- ) {
1493
			results.splice( duplicates[ j ], 1 );
1494
		}
1495
	}
1496
1497
	// Clear input after sorting to release objects
1498
	// See https://github.com/jquery/sizzle/pull/225
1499
	sortInput = null;
1500
1501
	return results;
1502
};
1503
1504
/**
1505
 * Utility function for retrieving the text value of an array of DOM nodes
1506
 * @param {Array|Element} elem
1507
 */
1508
getText = Sizzle.getText = function( elem ) {
1509
	var node,
1510
		ret = "",
1511
		i = 0,
1512
		nodeType = elem.nodeType;
1513
1514
	if ( !nodeType ) {
1515
		// If no nodeType, this is expected to be an array
1516
		while ( (node = elem[i++]) ) {
1517
			// Do not traverse comment nodes
1518
			ret += getText( node );
1519
		}
1520
	} else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) {
1521
		// Use textContent for elements
1522
		// innerText usage removed for consistency of new lines (jQuery #11153)
1523
		if ( typeof elem.textContent === "string" ) {
1524
			return elem.textContent;
1525
		} else {
1526
			// Traverse its children
1527
			for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {
1528
				ret += getText( elem );
1529
			}
1530
		}
1531
	} else if ( nodeType === 3 || nodeType === 4 ) {
1532
		return elem.nodeValue;
1533
	}
1534
	// Do not include comment or processing instruction nodes
1535
1536
	return ret;
1537
};
1538
1539
Expr = Sizzle.selectors = {
1540
1541
	// Can be adjusted by the user
1542
	cacheLength: 50,
1543
1544
	createPseudo: markFunction,
1545
1546
	match: matchExpr,
1547
1548
	attrHandle: {},
1549
1550
	find: {},
1551
1552
	relative: {
1553
		">": { dir: "parentNode", first: true },
1554
		" ": { dir: "parentNode" },
1555
		"+": { dir: "previousSibling", first: true },
1556
		"~": { dir: "previousSibling" }
1557
	},
1558
1559
	preFilter: {
1560
		"ATTR": function( match ) {
1561
			match[1] = match[1].replace( runescape, funescape );
1562
1563
			// Move the given value to match[3] whether quoted or unquoted
1564
			match[3] = ( match[3] || match[4] || match[5] || "" ).replace( runescape, funescape );
1565
1566
			if ( match[2] === "~=" ) {
1567
				match[3] = " " + match[3] + " ";
1568
			}
1569
1570
			return match.slice( 0, 4 );
1571
		},
1572
1573
		"CHILD": function( match ) {
1574
			/* matches from matchExpr["CHILD"]
1575
				1 type (only|nth|...)
1576
				2 what (child|of-type)
1577
				3 argument (even|odd|\d*|\d*n([+-]\d+)?|...)
1578
				4 xn-component of xn+y argument ([+-]?\d*n|)
1579
				5 sign of xn-component
1580
				6 x of xn-component
1581
				7 sign of y-component
1582
				8 y of y-component
1583
			*/
1584
			match[1] = match[1].toLowerCase();
1585
1586
			if ( match[1].slice( 0, 3 ) === "nth" ) {
1587
				// nth-* requires argument
1588
				if ( !match[3] ) {
1589
					Sizzle.error( match[0] );
1590
				}
1591
1592
				// numeric x and y parameters for Expr.filter.CHILD
1593
				// remember that false/true cast respectively to 0/1
1594
				match[4] = +( match[4] ? match[5] + (match[6] || 1) : 2 * ( match[3] === "even" || match[3] === "odd" ) );
1595
				match[5] = +( ( match[7] + match[8] ) || match[3] === "odd" );
1596
1597
			// other types prohibit arguments
1598
			} else if ( match[3] ) {
1599
				Sizzle.error( match[0] );
1600
			}
1601
1602
			return match;
1603
		},
1604
1605
		"PSEUDO": function( match ) {
1606
			var excess,
1607
				unquoted = !match[6] && match[2];
1608
1609
			if ( matchExpr["CHILD"].test( match[0] ) ) {
1610
				return null;
1611
			}
1612
1613
			// Accept quoted arguments as-is
1614
			if ( match[3] ) {
1615
				match[2] = match[4] || match[5] || "";
1616
1617
			// Strip excess characters from unquoted arguments
1618
			} else if ( unquoted && rpseudo.test( unquoted ) &&
1619
				// Get excess from tokenize (recursively)
1620
				(excess = tokenize( unquoted, true )) &&
1621
				// advance to the next closing parenthesis
1622
				(excess = unquoted.indexOf( ")", unquoted.length - excess ) - unquoted.length) ) {
1623
1624
				// excess is a negative index
1625
				match[0] = match[0].slice( 0, excess );
1626
				match[2] = unquoted.slice( 0, excess );
1627
			}
1628
1629
			// Return only captures needed by the pseudo filter method (type and argument)
1630
			return match.slice( 0, 3 );
1631
		}
1632
	},
1633
1634
	filter: {
1635
1636
		"TAG": function( nodeNameSelector ) {
1637
			var nodeName = nodeNameSelector.replace( runescape, funescape ).toLowerCase();
1638
			return nodeNameSelector === "*" ?
1639
				function() { return true; } :
1640
				function( elem ) {
1641
					return elem.nodeName && elem.nodeName.toLowerCase() === nodeName;
1642
				};
1643
		},
1644
1645
		"CLASS": function( className ) {
1646
			var pattern = classCache[ className + " " ];
1647
1648
			return pattern ||
1649
				(pattern = new RegExp( "(^|" + whitespace + ")" + className + "(" + whitespace + "|$)" )) &&
1650
				classCache( className, function( elem ) {
1651
					return pattern.test( typeof elem.className === "string" && elem.className || typeof elem.getAttribute !== "undefined" && elem.getAttribute("class") || "" );
1652
				});
1653
		},
1654
1655
		"ATTR": function( name, operator, check ) {
1656
			return function( elem ) {
1657
				var result = Sizzle.attr( elem, name );
1658
1659
				if ( result == null ) {
1660
					return operator === "!=";
1661
				}
1662
				if ( !operator ) {
1663
					return true;
1664
				}
1665
1666
				result += "";
1667
1668
				return operator === "=" ? result === check :
1669
					operator === "!=" ? result !== check :
1670
					operator === "^=" ? check && result.indexOf( check ) === 0 :
1671
					operator === "*=" ? check && result.indexOf( check ) > -1 :
1672
					operator === "$=" ? check && result.slice( -check.length ) === check :
1673
					operator === "~=" ? ( " " + result.replace( rwhitespace, " " ) + " " ).indexOf( check ) > -1 :
1674
					operator === "|=" ? result === check || result.slice( 0, check.length + 1 ) === check + "-" :
1675
					false;
1676
			};
1677
		},
1678
1679
		"CHILD": function( type, what, argument, first, last ) {
1680
			var simple = type.slice( 0, 3 ) !== "nth",
1681
				forward = type.slice( -4 ) !== "last",
1682
				ofType = what === "of-type";
1683
1684
			return first === 1 && last === 0 ?
1685
1686
				// Shortcut for :nth-*(n)
1687
				function( elem ) {
1688
					return !!elem.parentNode;
1689
				} :
1690
1691
				function( elem, context, xml ) {
1692
					var cache, uniqueCache, outerCache, node, nodeIndex, start,
1693
						dir = simple !== forward ? "nextSibling" : "previousSibling",
1694
						parent = elem.parentNode,
1695
						name = ofType && elem.nodeName.toLowerCase(),
1696
						useCache = !xml && !ofType,
1697
						diff = false;
1698
1699
					if ( parent ) {
1700
1701
						// :(first|last|only)-(child|of-type)
1702
						if ( simple ) {
1703
							while ( dir ) {
1704
								node = elem;
1705
								while ( (node = node[ dir ]) ) {
1706
									if ( ofType ?
1707
										node.nodeName.toLowerCase() === name :
1708
										node.nodeType === 1 ) {
1709
1710
										return false;
1711
									}
1712
								}
1713
								// Reverse direction for :only-* (if we haven't yet done so)
1714
								start = dir = type === "only" && !start && "nextSibling";
1715
							}
1716
							return true;
1717
						}
1718
1719
						start = [ forward ? parent.firstChild : parent.lastChild ];
1720
1721
						// non-xml :nth-child(...) stores cache data on `parent`
1722
						if ( forward && useCache ) {
1723
1724
							// Seek `elem` from a previously-cached index
1725
1726
							// ...in a gzip-friendly way
1727
							node = parent;
1728
							outerCache = node[ expando ] || (node[ expando ] = {});
1729
1730
							// Support: IE <9 only
1731
							// Defend against cloned attroperties (jQuery gh-1709)
1732
							uniqueCache = outerCache[ node.uniqueID ] ||
1733
								(outerCache[ node.uniqueID ] = {});
1734
1735
							cache = uniqueCache[ type ] || [];
1736
							nodeIndex = cache[ 0 ] === dirruns && cache[ 1 ];
1737
							diff = nodeIndex && cache[ 2 ];
1738
							node = nodeIndex && parent.childNodes[ nodeIndex ];
1739
1740
							while ( (node = ++nodeIndex && node && node[ dir ] ||
1741
1742
								// Fallback to seeking `elem` from the start
1743
								(diff = nodeIndex = 0) || start.pop()) ) {
1744
1745
								// When found, cache indexes on `parent` and break
1746
								if ( node.nodeType === 1 && ++diff && node === elem ) {
1747
									uniqueCache[ type ] = [ dirruns, nodeIndex, diff ];
1748
									break;
1749
								}
1750
							}
1751
1752
						} else {
1753
							// Use previously-cached element index if available
1754
							if ( useCache ) {
1755
								// ...in a gzip-friendly way
1756
								node = elem;
1757
								outerCache = node[ expando ] || (node[ expando ] = {});
1758
1759
								// Support: IE <9 only
1760
								// Defend against cloned attroperties (jQuery gh-1709)
1761
								uniqueCache = outerCache[ node.uniqueID ] ||
1762
									(outerCache[ node.uniqueID ] = {});
1763
1764
								cache = uniqueCache[ type ] || [];
1765
								nodeIndex = cache[ 0 ] === dirruns && cache[ 1 ];
1766
								diff = nodeIndex;
1767
							}
1768
1769
							// xml :nth-child(...)
1770
							// or :nth-last-child(...) or :nth(-last)?-of-type(...)
1771
							if ( diff === false ) {
1772
								// Use the same loop as above to seek `elem` from the start
1773
								while ( (node = ++nodeIndex && node && node[ dir ] ||
1774
									(diff = nodeIndex = 0) || start.pop()) ) {
1775
1776
									if ( ( ofType ?
1777
										node.nodeName.toLowerCase() === name :
1778
										node.nodeType === 1 ) &&
1779
										++diff ) {
1780
1781
										// Cache the index of each encountered element
1782
										if ( useCache ) {
1783
											outerCache = node[ expando ] || (node[ expando ] = {});
1784
1785
											// Support: IE <9 only
1786
											// Defend against cloned attroperties (jQuery gh-1709)
1787
											uniqueCache = outerCache[ node.uniqueID ] ||
1788
												(outerCache[ node.uniqueID ] = {});
1789
1790
											uniqueCache[ type ] = [ dirruns, diff ];
1791
										}
1792
1793
										if ( node === elem ) {
1794
											break;
1795
										}
1796
									}
1797
								}
1798
							}
1799
						}
1800
1801
						// Incorporate the offset, then check against cycle size
1802
						diff -= last;
1803
						return diff === first || ( diff % first === 0 && diff / first >= 0 );
1804
					}
1805
				};
1806
		},
1807
1808
		"PSEUDO": function( pseudo, argument ) {
1809
			// pseudo-class names are case-insensitive
1810
			// http://www.w3.org/TR/selectors/#pseudo-classes
1811
			// Prioritize by case sensitivity in case custom pseudos are added with uppercase letters
1812
			// Remember that setFilters inherits from pseudos
1813
			var args,
1814
				fn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] ||
1815
					Sizzle.error( "unsupported pseudo: " + pseudo );
1816
1817
			// The user may use createPseudo to indicate that
1818
			// arguments are needed to create the filter function
1819
			// just as Sizzle does
1820
			if ( fn[ expando ] ) {
1821
				return fn( argument );
1822
			}
1823
1824
			// But maintain support for old signatures
1825
			if ( fn.length > 1 ) {
1826
				args = [ pseudo, pseudo, "", argument ];
1827
				return Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ?
1828
					markFunction(function( seed, matches ) {
1829
						var idx,
1830
							matched = fn( seed, argument ),
1831
							i = matched.length;
1832
						while ( i-- ) {
1833
							idx = indexOf( seed, matched[i] );
1834
							seed[ idx ] = !( matches[ idx ] = matched[i] );
1835
						}
1836
					}) :
1837
					function( elem ) {
1838
						return fn( elem, 0, args );
1839
					};
1840
			}
1841
1842
			return fn;
1843
		}
1844
	},
1845
1846
	pseudos: {
1847
		// Potentially complex pseudos
1848
		"not": markFunction(function( selector ) {
1849
			// Trim the selector passed to compile
1850
			// to avoid treating leading and trailing
1851
			// spaces as combinators
1852
			var input = [],
1853
				results = [],
1854
				matcher = compile( selector.replace( rtrim, "$1" ) );
1855
1856
			return matcher[ expando ] ?
1857
				markFunction(function( seed, matches, context, xml ) {
1858
					var elem,
1859
						unmatched = matcher( seed, null, xml, [] ),
1860
						i = seed.length;
1861
1862
					// Match elements unmatched by `matcher`
1863
					while ( i-- ) {
1864
						if ( (elem = unmatched[i]) ) {
1865
							seed[i] = !(matches[i] = elem);
1866
						}
1867
					}
1868
				}) :
1869
				function( elem, context, xml ) {
1870
					input[0] = elem;
1871
					matcher( input, null, xml, results );
1872
					// Don't keep the element (issue #299)
1873
					input[0] = null;
1874
					return !results.pop();
1875
				};
1876
		}),
1877
1878
		"has": markFunction(function( selector ) {
1879
			return function( elem ) {
1880
				return Sizzle( selector, elem ).length > 0;
1881
			};
1882
		}),
1883
1884
		"contains": markFunction(function( text ) {
1885
			text = text.replace( runescape, funescape );
1886
			return function( elem ) {
1887
				return ( elem.textContent || elem.innerText || getText( elem ) ).indexOf( text ) > -1;
1888
			};
1889
		}),
1890
1891
		// "Whether an element is represented by a :lang() selector
1892
		// is based solely on the element's language value
1893
		// being equal to the identifier C,
1894
		// or beginning with the identifier C immediately followed by "-".
1895
		// The matching of C against the element's language value is performed case-insensitively.
1896
		// The identifier C does not have to be a valid language name."
1897
		// http://www.w3.org/TR/selectors/#lang-pseudo
1898
		"lang": markFunction( function( lang ) {
1899
			// lang value must be a valid identifier
1900
			if ( !ridentifier.test(lang || "") ) {
1901
				Sizzle.error( "unsupported lang: " + lang );
1902
			}
1903
			lang = lang.replace( runescape, funescape ).toLowerCase();
1904
			return function( elem ) {
1905
				var elemLang;
1906
				do {
1907
					if ( (elemLang = documentIsHTML ?
1908
						elem.lang :
1909
						elem.getAttribute("xml:lang") || elem.getAttribute("lang")) ) {
1910
1911
						elemLang = elemLang.toLowerCase();
1912
						return elemLang === lang || elemLang.indexOf( lang + "-" ) === 0;
1913
					}
1914
				} while ( (elem = elem.parentNode) && elem.nodeType === 1 );
1915
				return false;
1916
			};
1917
		}),
1918
1919
		// Miscellaneous
1920
		"target": function( elem ) {
1921
			var hash = window.location && window.location.hash;
1922
			return hash && hash.slice( 1 ) === elem.id;
1923
		},
1924
1925
		"root": function( elem ) {
1926
			return elem === docElem;
1927
		},
1928
1929
		"focus": function( elem ) {
1930
			return elem === document.activeElement && (!document.hasFocus || document.hasFocus()) && !!(elem.type || elem.href || ~elem.tabIndex);
1931
		},
1932
1933
		// Boolean properties
1934
		"enabled": function( elem ) {
1935
			return elem.disabled === false;
1936
		},
1937
1938
		"disabled": function( elem ) {
1939
			return elem.disabled === true;
1940
		},
1941
1942
		"checked": function( elem ) {
1943
			// In CSS3, :checked should return both checked and selected elements
1944
			// http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked
1945
			var nodeName = elem.nodeName.toLowerCase();
1946
			return (nodeName === "input" && !!elem.checked) || (nodeName === "option" && !!elem.selected);
1947
		},
1948
1949
		"selected": function( elem ) {
1950
			// Accessing this property makes selected-by-default
1951
			// options in Safari work properly
1952
			if ( elem.parentNode ) {
1953
				elem.parentNode.selectedIndex;
1954
			}
1955
1956
			return elem.selected === true;
1957
		},
1958
1959
		// Contents
1960
		"empty": function( elem ) {
1961
			// http://www.w3.org/TR/selectors/#empty-pseudo
1962
			// :empty is negated by element (1) or content nodes (text: 3; cdata: 4; entity ref: 5),
1963
			//   but not by others (comment: 8; processing instruction: 7; etc.)
1964
			// nodeType < 6 works because attributes (2) do not appear as children
1965
			for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {
1966
				if ( elem.nodeType < 6 ) {
1967
					return false;
1968
				}
1969
			}
1970
			return true;
1971
		},
1972
1973
		"parent": function( elem ) {
1974
			return !Expr.pseudos["empty"]( elem );
1975
		},
1976
1977
		// Element/input types
1978
		"header": function( elem ) {
1979
			return rheader.test( elem.nodeName );
1980
		},
1981
1982
		"input": function( elem ) {
1983
			return rinputs.test( elem.nodeName );
1984
		},
1985
1986
		"button": function( elem ) {
1987
			var name = elem.nodeName.toLowerCase();
1988
			return name === "input" && elem.type === "button" || name === "button";
1989
		},
1990
1991
		"text": function( elem ) {
1992
			var attr;
1993
			return elem.nodeName.toLowerCase() === "input" &&
1994
				elem.type === "text" &&
1995
1996
				// Support: IE<8
1997
				// New HTML5 attribute values (e.g., "search") appear with elem.type === "text"
1998
				( (attr = elem.getAttribute("type")) == null || attr.toLowerCase() === "text" );
1999
		},
2000
2001
		// Position-in-collection
2002
		"first": createPositionalPseudo(function() {
2003
			return [ 0 ];
2004
		}),
2005
2006
		"last": createPositionalPseudo(function( matchIndexes, length ) {
2007
			return [ length - 1 ];
2008
		}),
2009
2010
		"eq": createPositionalPseudo(function( matchIndexes, length, argument ) {
2011
			return [ argument < 0 ? argument + length : argument ];
2012
		}),
2013
2014
		"even": createPositionalPseudo(function( matchIndexes, length ) {
2015
			var i = 0;
2016
			for ( ; i < length; i += 2 ) {
2017
				matchIndexes.push( i );
2018
			}
2019
			return matchIndexes;
2020
		}),
2021
2022
		"odd": createPositionalPseudo(function( matchIndexes, length ) {
2023
			var i = 1;
2024
			for ( ; i < length; i += 2 ) {
2025
				matchIndexes.push( i );
2026
			}
2027
			return matchIndexes;
2028
		}),
2029
2030
		"lt": createPositionalPseudo(function( matchIndexes, length, argument ) {
2031
			var i = argument < 0 ? argument + length : argument;
2032
			for ( ; --i >= 0; ) {
2033
				matchIndexes.push( i );
2034
			}
2035
			return matchIndexes;
2036
		}),
2037
2038
		"gt": createPositionalPseudo(function( matchIndexes, length, argument ) {
2039
			var i = argument < 0 ? argument + length : argument;
2040
			for ( ; ++i < length; ) {
2041
				matchIndexes.push( i );
2042
			}
2043
			return matchIndexes;
2044
		})
2045
	}
2046
};
2047
2048
Expr.pseudos["nth"] = Expr.pseudos["eq"];
2049
2050
// Add button/input type pseudos
2051
for ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) {
2052
	Expr.pseudos[ i ] = createInputPseudo( i );
2053
}
2054
for ( i in { submit: true, reset: true } ) {
2055
	Expr.pseudos[ i ] = createButtonPseudo( i );
2056
}
2057
2058
// Easy API for creating new setFilters
2059
function setFilters() {}
2060
setFilters.prototype = Expr.filters = Expr.pseudos;
2061
Expr.setFilters = new setFilters();
2062
2063
tokenize = Sizzle.tokenize = function( selector, parseOnly ) {
2064
	var matched, match, tokens, type,
2065
		soFar, groups, preFilters,
2066
		cached = tokenCache[ selector + " " ];
2067
2068
	if ( cached ) {
2069
		return parseOnly ? 0 : cached.slice( 0 );
2070
	}
2071
2072
	soFar = selector;
2073
	groups = [];
2074
	preFilters = Expr.preFilter;
2075
2076
	while ( soFar ) {
2077
2078
		// Comma and first run
2079
		if ( !matched || (match = rcomma.exec( soFar )) ) {
2080
			if ( match ) {
2081
				// Don't consume trailing commas as valid
2082
				soFar = soFar.slice( match[0].length ) || soFar;
2083
			}
2084
			groups.push( (tokens = []) );
2085
		}
2086
2087
		matched = false;
2088
2089
		// Combinators
2090
		if ( (match = rcombinators.exec( soFar )) ) {
2091
			matched = match.shift();
2092
			tokens.push({
2093
				value: matched,
2094
				// Cast descendant combinators to space
2095
				type: match[0].replace( rtrim, " " )
2096
			});
2097
			soFar = soFar.slice( matched.length );
2098
		}
2099
2100
		// Filters
2101
		for ( type in Expr.filter ) {
2102
			if ( (match = matchExpr[ type ].exec( soFar )) && (!preFilters[ type ] ||
2103
				(match = preFilters[ type ]( match ))) ) {
2104
				matched = match.shift();
2105
				tokens.push({
2106
					value: matched,
2107
					type: type,
2108
					matches: match
2109
				});
2110
				soFar = soFar.slice( matched.length );
2111
			}
2112
		}
2113
2114
		if ( !matched ) {
2115
			break;
2116
		}
2117
	}
2118
2119
	// Return the length of the invalid excess
2120
	// if we're just parsing
2121
	// Otherwise, throw an error or return tokens
2122
	return parseOnly ?
2123
		soFar.length :
2124
		soFar ?
2125
			Sizzle.error( selector ) :
2126
			// Cache the tokens
2127
			tokenCache( selector, groups ).slice( 0 );
2128
};
2129
2130
function toSelector( tokens ) {
2131
	var i = 0,
2132
		len = tokens.length,
2133
		selector = "";
2134
	for ( ; i < len; i++ ) {
2135
		selector += tokens[i].value;
2136
	}
2137
	return selector;
2138
}
2139
2140
function addCombinator( matcher, combinator, base ) {
2141
	var dir = combinator.dir,
2142
		checkNonElements = base && dir === "parentNode",
2143
		doneName = done++;
2144
2145
	return combinator.first ?
2146
		// Check against closest ancestor/preceding element
2147
		function( elem, context, xml ) {
2148
			while ( (elem = elem[ dir ]) ) {
2149
				if ( elem.nodeType === 1 || checkNonElements ) {
2150
					return matcher( elem, context, xml );
2151
				}
2152
			}
2153
		} :
2154
2155
		// Check against all ancestor/preceding elements
2156
		function( elem, context, xml ) {
2157
			var oldCache, uniqueCache, outerCache,
2158
				newCache = [ dirruns, doneName ];
2159
2160
			// We can't set arbitrary data on XML nodes, so they don't benefit from combinator caching
2161
			if ( xml ) {
2162
				while ( (elem = elem[ dir ]) ) {
2163
					if ( elem.nodeType === 1 || checkNonElements ) {
2164
						if ( matcher( elem, context, xml ) ) {
2165
							return true;
2166
						}
2167
					}
2168
				}
2169
			} else {
2170
				while ( (elem = elem[ dir ]) ) {
2171
					if ( elem.nodeType === 1 || checkNonElements ) {
2172
						outerCache = elem[ expando ] || (elem[ expando ] = {});
2173
2174
						// Support: IE <9 only
2175
						// Defend against cloned attroperties (jQuery gh-1709)
2176
						uniqueCache = outerCache[ elem.uniqueID ] || (outerCache[ elem.uniqueID ] = {});
2177
2178
						if ( (oldCache = uniqueCache[ dir ]) &&
2179
							oldCache[ 0 ] === dirruns && oldCache[ 1 ] === doneName ) {
2180
2181
							// Assign to newCache so results back-propagate to previous elements
2182
							return (newCache[ 2 ] = oldCache[ 2 ]);
2183
						} else {
2184
							// Reuse newcache so results back-propagate to previous elements
2185
							uniqueCache[ dir ] = newCache;
2186
2187
							// A match means we're done; a fail means we have to keep checking
2188
							if ( (newCache[ 2 ] = matcher( elem, context, xml )) ) {
2189
								return true;
2190
							}
2191
						}
2192
					}
2193
				}
2194
			}
2195
		};
2196
}
2197
2198
function elementMatcher( matchers ) {
2199
	return matchers.length > 1 ?
2200
		function( elem, context, xml ) {
2201
			var i = matchers.length;
2202
			while ( i-- ) {
2203
				if ( !matchers[i]( elem, context, xml ) ) {
2204
					return false;
2205
				}
2206
			}
2207
			return true;
2208
		} :
2209
		matchers[0];
2210
}
2211
2212
function multipleContexts( selector, contexts, results ) {
2213
	var i = 0,
2214
		len = contexts.length;
2215
	for ( ; i < len; i++ ) {
2216
		Sizzle( selector, contexts[i], results );
2217
	}
2218
	return results;
2219
}
2220
2221
function condense( unmatched, map, filter, context, xml ) {
2222
	var elem,
2223
		newUnmatched = [],
2224
		i = 0,
2225
		len = unmatched.length,
2226
		mapped = map != null;
2227
2228
	for ( ; i < len; i++ ) {
2229
		if ( (elem = unmatched[i]) ) {
2230
			if ( !filter || filter( elem, context, xml ) ) {
2231
				newUnmatched.push( elem );
2232
				if ( mapped ) {
2233
					map.push( i );
2234
				}
2235
			}
2236
		}
2237
	}
2238
2239
	return newUnmatched;
2240
}
2241
2242
function setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) {
2243
	if ( postFilter && !postFilter[ expando ] ) {
2244
		postFilter = setMatcher( postFilter );
2245
	}
2246
	if ( postFinder && !postFinder[ expando ] ) {
2247
		postFinder = setMatcher( postFinder, postSelector );
2248
	}
2249
	return markFunction(function( seed, results, context, xml ) {
2250
		var temp, i, elem,
2251
			preMap = [],
2252
			postMap = [],
2253
			preexisting = results.length,
2254
2255
			// Get initial elements from seed or context
2256
			elems = seed || multipleContexts( selector || "*", context.nodeType ? [ context ] : context, [] ),
2257
2258
			// Prefilter to get matcher input, preserving a map for seed-results synchronization
2259
			matcherIn = preFilter && ( seed || !selector ) ?
2260
				condense( elems, preMap, preFilter, context, xml ) :
2261
				elems,
2262
2263
			matcherOut = matcher ?
2264
				// If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results,
2265
				postFinder || ( seed ? preFilter : preexisting || postFilter ) ?
2266
2267
					// ...intermediate processing is necessary
2268
					[] :
2269
2270
					// ...otherwise use results directly
2271
					results :
2272
				matcherIn;
2273
2274
		// Find primary matches
2275
		if ( matcher ) {
2276
			matcher( matcherIn, matcherOut, context, xml );
2277
		}
2278
2279
		// Apply postFilter
2280
		if ( postFilter ) {
2281
			temp = condense( matcherOut, postMap );
2282
			postFilter( temp, [], context, xml );
2283
2284
			// Un-match failing elements by moving them back to matcherIn
2285
			i = temp.length;
2286
			while ( i-- ) {
2287
				if ( (elem = temp[i]) ) {
2288
					matcherOut[ postMap[i] ] = !(matcherIn[ postMap[i] ] = elem);
2289
				}
2290
			}
2291
		}
2292
2293
		if ( seed ) {
2294
			if ( postFinder || preFilter ) {
2295
				if ( postFinder ) {
2296
					// Get the final matcherOut by condensing this intermediate into postFinder contexts
2297
					temp = [];
2298
					i = matcherOut.length;
2299
					while ( i-- ) {
2300
						if ( (elem = matcherOut[i]) ) {
2301
							// Restore matcherIn since elem is not yet a final match
2302
							temp.push( (matcherIn[i] = elem) );
2303
						}
2304
					}
2305
					postFinder( null, (matcherOut = []), temp, xml );
2306
				}
2307
2308
				// Move matched elements from seed to results to keep them synchronized
2309
				i = matcherOut.length;
2310
				while ( i-- ) {
2311
					if ( (elem = matcherOut[i]) &&
2312
						(temp = postFinder ? indexOf( seed, elem ) : preMap[i]) > -1 ) {
2313
2314
						seed[temp] = !(results[temp] = elem);
2315
					}
2316
				}
2317
			}
2318
2319
		// Add elements to results, through postFinder if defined
2320
		} else {
2321
			matcherOut = condense(
2322
				matcherOut === results ?
2323
					matcherOut.splice( preexisting, matcherOut.length ) :
2324
					matcherOut
2325
			);
2326
			if ( postFinder ) {
2327
				postFinder( null, results, matcherOut, xml );
2328
			} else {
2329
				push.apply( results, matcherOut );
2330
			}
2331
		}
2332
	});
2333
}
2334
2335
function matcherFromTokens( tokens ) {
2336
	var checkContext, matcher, j,
2337
		len = tokens.length,
2338
		leadingRelative = Expr.relative[ tokens[0].type ],
2339
		implicitRelative = leadingRelative || Expr.relative[" "],
2340
		i = leadingRelative ? 1 : 0,
2341
2342
		// The foundational matcher ensures that elements are reachable from top-level context(s)
2343
		matchContext = addCombinator( function( elem ) {
2344
			return elem === checkContext;
2345
		}, implicitRelative, true ),
2346
		matchAnyContext = addCombinator( function( elem ) {
2347
			return indexOf( checkContext, elem ) > -1;
2348
		}, implicitRelative, true ),
2349
		matchers = [ function( elem, context, xml ) {
2350
			var ret = ( !leadingRelative && ( xml || context !== outermostContext ) ) || (
2351
				(checkContext = context).nodeType ?
2352
					matchContext( elem, context, xml ) :
2353
					matchAnyContext( elem, context, xml ) );
2354
			// Avoid hanging onto element (issue #299)
2355
			checkContext = null;
2356
			return ret;
2357
		} ];
2358
2359
	for ( ; i < len; i++ ) {
2360
		if ( (matcher = Expr.relative[ tokens[i].type ]) ) {
2361
			matchers = [ addCombinator(elementMatcher( matchers ), matcher) ];
2362
		} else {
2363
			matcher = Expr.filter[ tokens[i].type ].apply( null, tokens[i].matches );
2364
2365
			// Return special upon seeing a positional matcher
2366
			if ( matcher[ expando ] ) {
2367
				// Find the next relative operator (if any) for proper handling
2368
				j = ++i;
2369
				for ( ; j < len; j++ ) {
2370
					if ( Expr.relative[ tokens[j].type ] ) {
2371
						break;
2372
					}
2373
				}
2374
				return setMatcher(
2375
					i > 1 && elementMatcher( matchers ),
2376
					i > 1 && toSelector(
2377
						// If the preceding token was a descendant combinator, insert an implicit any-element `*`
2378
						tokens.slice( 0, i - 1 ).concat({ value: tokens[ i - 2 ].type === " " ? "*" : "" })
2379
					).replace( rtrim, "$1" ),
2380
					matcher,
2381
					i < j && matcherFromTokens( tokens.slice( i, j ) ),
2382
					j < len && matcherFromTokens( (tokens = tokens.slice( j )) ),
2383
					j < len && toSelector( tokens )
2384
				);
2385
			}
2386
			matchers.push( matcher );
2387
		}
2388
	}
2389
2390
	return elementMatcher( matchers );
2391
}
2392
2393
function matcherFromGroupMatchers( elementMatchers, setMatchers ) {
2394
	var bySet = setMatchers.length > 0,
2395
		byElement = elementMatchers.length > 0,
2396
		superMatcher = function( seed, context, xml, results, outermost ) {
2397
			var elem, j, matcher,
2398
				matchedCount = 0,
2399
				i = "0",
2400
				unmatched = seed && [],
2401
				setMatched = [],
2402
				contextBackup = outermostContext,
2403
				// We must always have either seed elements or outermost context
2404
				elems = seed || byElement && Expr.find["TAG"]( "*", outermost ),
2405
				// Use integer dirruns iff this is the outermost matcher
2406
				dirrunsUnique = (dirruns += contextBackup == null ? 1 : Math.random() || 0.1),
2407
				len = elems.length;
2408
2409
			if ( outermost ) {
2410
				outermostContext = context === document || context || outermost;
2411
			}
2412
2413
			// Add elements passing elementMatchers directly to results
2414
			// Support: IE<9, Safari
2415
			// Tolerate NodeList properties (IE: "length"; Safari: <number>) matching elements by id
2416
			for ( ; i !== len && (elem = elems[i]) != null; i++ ) {
2417
				if ( byElement && elem ) {
2418
					j = 0;
2419
					if ( !context && elem.ownerDocument !== document ) {
2420
						setDocument( elem );
2421
						xml = !documentIsHTML;
2422
					}
2423
					while ( (matcher = elementMatchers[j++]) ) {
2424
						if ( matcher( elem, context || document, xml) ) {
2425
							results.push( elem );
2426
							break;
2427
						}
2428
					}
2429
					if ( outermost ) {
2430
						dirruns = dirrunsUnique;
2431
					}
2432
				}
2433
2434
				// Track unmatched elements for set filters
2435
				if ( bySet ) {
2436
					// They will have gone through all possible matchers
2437
					if ( (elem = !matcher && elem) ) {
2438
						matchedCount--;
2439
					}
2440
2441
					// Lengthen the array for every element, matched or not
2442
					if ( seed ) {
2443
						unmatched.push( elem );
2444
					}
2445
				}
2446
			}
2447
2448
			// `i` is now the count of elements visited above, and adding it to `matchedCount`
2449
			// makes the latter nonnegative.
2450
			matchedCount += i;
2451
2452
			// Apply set filters to unmatched elements
2453
			// NOTE: This can be skipped if there are no unmatched elements (i.e., `matchedCount`
2454
			// equals `i`), unless we didn't visit _any_ elements in the above loop because we have
2455
			// no element matchers and no seed.
2456
			// Incrementing an initially-string "0" `i` allows `i` to remain a string only in that
2457
			// case, which will result in a "00" `matchedCount` that differs from `i` but is also
2458
			// numerically zero.
2459
			if ( bySet && i !== matchedCount ) {
2460
				j = 0;
2461
				while ( (matcher = setMatchers[j++]) ) {
2462
					matcher( unmatched, setMatched, context, xml );
2463
				}
2464
2465
				if ( seed ) {
2466
					// Reintegrate element matches to eliminate the need for sorting
2467
					if ( matchedCount > 0 ) {
2468
						while ( i-- ) {
2469
							if ( !(unmatched[i] || setMatched[i]) ) {
2470
								setMatched[i] = pop.call( results );
2471
							}
2472
						}
2473
					}
2474
2475
					// Discard index placeholder values to get only actual matches
2476
					setMatched = condense( setMatched );
2477
				}
2478
2479
				// Add matches to results
2480
				push.apply( results, setMatched );
2481
2482
				// Seedless set matches succeeding multiple successful matchers stipulate sorting
2483
				if ( outermost && !seed && setMatched.length > 0 &&
2484
					( matchedCount + setMatchers.length ) > 1 ) {
2485
2486
					Sizzle.uniqueSort( results );
2487
				}
2488
			}
2489
2490
			// Override manipulation of globals by nested matchers
2491
			if ( outermost ) {
2492
				dirruns = dirrunsUnique;
2493
				outermostContext = contextBackup;
2494
			}
2495
2496
			return unmatched;
2497
		};
2498
2499
	return bySet ?
2500
		markFunction( superMatcher ) :
2501
		superMatcher;
2502
}
2503
2504
compile = Sizzle.compile = function( selector, match /* Internal Use Only */ ) {
2505
	var i,
2506
		setMatchers = [],
2507
		elementMatchers = [],
2508
		cached = compilerCache[ selector + " " ];
2509
2510
	if ( !cached ) {
2511
		// Generate a function of recursive functions that can be used to check each element
2512
		if ( !match ) {
2513
			match = tokenize( selector );
2514
		}
2515
		i = match.length;
2516
		while ( i-- ) {
2517
			cached = matcherFromTokens( match[i] );
2518
			if ( cached[ expando ] ) {
2519
				setMatchers.push( cached );
2520
			} else {
2521
				elementMatchers.push( cached );
2522
			}
2523
		}
2524
2525
		// Cache the compiled function
2526
		cached = compilerCache( selector, matcherFromGroupMatchers( elementMatchers, setMatchers ) );
2527
2528
		// Save selector and tokenization
2529
		cached.selector = selector;
2530
	}
2531
	return cached;
2532
};
2533
2534
/**
2535
 * A low-level selection function that works with Sizzle's compiled
2536
 *  selector functions
2537
 * @param {String|Function} selector A selector or a pre-compiled
2538
 *  selector function built with Sizzle.compile
2539
 * @param {Element} context
2540
 * @param {Array} [results]
2541
 * @param {Array} [seed] A set of elements to match against
2542
 */
2543
select = Sizzle.select = function( selector, context, results, seed ) {
2544
	var i, tokens, token, type, find,
2545
		compiled = typeof selector === "function" && selector,
2546
		match = !seed && tokenize( (selector = compiled.selector || selector) );
2547
2548
	results = results || [];
2549
2550
	// Try to minimize operations if there is only one selector in the list and no seed
2551
	// (the latter of which guarantees us context)
2552
	if ( match.length === 1 ) {
2553
2554
		// Reduce context if the leading compound selector is an ID
2555
		tokens = match[0] = match[0].slice( 0 );
2556
		if ( tokens.length > 2 && (token = tokens[0]).type === "ID" &&
2557
				support.getById && context.nodeType === 9 && documentIsHTML &&
2558
				Expr.relative[ tokens[1].type ] ) {
2559
2560
			context = ( Expr.find["ID"]( token.matches[0].replace(runescape, funescape), context ) || [] )[0];
2561
			if ( !context ) {
2562
				return results;
2563
2564
			// Precompiled matchers will still verify ancestry, so step up a level
2565
			} else if ( compiled ) {
2566
				context = context.parentNode;
2567
			}
2568
2569
			selector = selector.slice( tokens.shift().value.length );
2570
		}
2571
2572
		// Fetch a seed set for right-to-left matching
2573
		i = matchExpr["needsContext"].test( selector ) ? 0 : tokens.length;
2574
		while ( i-- ) {
2575
			token = tokens[i];
2576
2577
			// Abort if we hit a combinator
2578
			if ( Expr.relative[ (type = token.type) ] ) {
2579
				break;
2580
			}
2581
			if ( (find = Expr.find[ type ]) ) {
2582
				// Search, expanding context for leading sibling combinators
2583
				if ( (seed = find(
2584
					token.matches[0].replace( runescape, funescape ),
2585
					rsibling.test( tokens[0].type ) && testContext( context.parentNode ) || context
2586
				)) ) {
2587
2588
					// If seed is empty or no tokens remain, we can return early
2589
					tokens.splice( i, 1 );
2590
					selector = seed.length && toSelector( tokens );
2591
					if ( !selector ) {
2592
						push.apply( results, seed );
2593
						return results;
2594
					}
2595
2596
					break;
2597
				}
2598
			}
2599
		}
2600
	}
2601
2602
	// Compile and execute a filtering function if one is not provided
2603
	// Provide `match` to avoid retokenization if we modified the selector above
2604
	( compiled || compile( selector, match ) )(
2605
		seed,
2606
		context,
2607
		!documentIsHTML,
2608
		results,
2609
		!context || rsibling.test( selector ) && testContext( context.parentNode ) || context
2610
	);
2611
	return results;
2612
};
2613
2614
// One-time assignments
2615
2616
// Sort stability
2617
support.sortStable = expando.split("").sort( sortOrder ).join("") === expando;
2618
2619
// Support: Chrome 14-35+
2620
// Always assume duplicates if they aren't passed to the comparison function
2621
support.detectDuplicates = !!hasDuplicate;
2622
2623
// Initialize against the default document
2624
setDocument();
2625
2626
// Support: Webkit<537.32 - Safari 6.0.3/Chrome 25 (fixed in Chrome 27)
2627
// Detached nodes confoundingly follow *each other*
2628
support.sortDetached = assert(function( div1 ) {
2629
	// Should return 1, but returns 4 (following)
2630
	return div1.compareDocumentPosition( document.createElement("div") ) & 1;
2631
});
2632
2633
// Support: IE<8
2634
// Prevent attribute/property "interpolation"
2635
// http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx
2636
if ( !assert(function( div ) {
2637
	div.innerHTML = "<a href='#'></a>";
2638
	return div.firstChild.getAttribute("href") === "#" ;
2639
}) ) {
2640
	addHandle( "type|href|height|width", function( elem, name, isXML ) {
2641
		if ( !isXML ) {
2642
			return elem.getAttribute( name, name.toLowerCase() === "type" ? 1 : 2 );
2643
		}
2644
	});
2645
}
2646
2647
// Support: IE<9
2648
// Use defaultValue in place of getAttribute("value")
2649
if ( !support.attributes || !assert(function( div ) {
2650
	div.innerHTML = "<input/>";
2651
	div.firstChild.setAttribute( "value", "" );
2652
	return div.firstChild.getAttribute( "value" ) === "";
2653
}) ) {
2654
	addHandle( "value", function( elem, name, isXML ) {
2655
		if ( !isXML && elem.nodeName.toLowerCase() === "input" ) {
2656
			return elem.defaultValue;
2657
		}
2658
	});
2659
}
2660
2661
// Support: IE<9
2662
// Use getAttributeNode to fetch booleans when getAttribute lies
2663
if ( !assert(function( div ) {
2664
	return div.getAttribute("disabled") == null;
2665
}) ) {
2666
	addHandle( booleans, function( elem, name, isXML ) {
2667
		var val;
2668
		if ( !isXML ) {
2669
			return elem[ name ] === true ? name.toLowerCase() :
2670
					(val = elem.getAttributeNode( name )) && val.specified ?
2671
					val.value :
2672
				null;
2673
		}
2674
	});
2675
}
2676
2677
return Sizzle;
2678
2679
})( window );
2680
2681
2682
2683
jQuery.find = Sizzle;
2684
jQuery.expr = Sizzle.selectors;
2685
jQuery.expr[ ":" ] = jQuery.expr.pseudos;
2686
jQuery.uniqueSort = jQuery.unique = Sizzle.uniqueSort;
2687
jQuery.text = Sizzle.getText;
2688
jQuery.isXMLDoc = Sizzle.isXML;
2689
jQuery.contains = Sizzle.contains;
2690
2691
2692
2693
var dir = function( elem, dir, until ) {
2694
	var matched = [],
2695
		truncate = until !== undefined;
2696
2697
	while ( ( elem = elem[ dir ] ) && elem.nodeType !== 9 ) {
2698
		if ( elem.nodeType === 1 ) {
2699
			if ( truncate && jQuery( elem ).is( until ) ) {
2700
				break;
2701
			}
2702
			matched.push( elem );
2703
		}
2704
	}
2705
	return matched;
2706
};
2707
2708
2709
var siblings = function( n, elem ) {
2710
	var matched = [];
2711
2712
	for ( ; n; n = n.nextSibling ) {
2713
		if ( n.nodeType === 1 && n !== elem ) {
2714
			matched.push( n );
2715
		}
2716
	}
2717
2718
	return matched;
2719
};
2720
2721
2722
var rneedsContext = jQuery.expr.match.needsContext;
2723
2724
var rsingleTag = ( /^<([\w-]+)\s*\/?>(?:<\/\1>|)$/ );
2725
2726
2727
2728
var risSimple = /^.[^:#\[\.,]*$/;
2729
2730
// Implement the identical functionality for filter and not
2731
function winnow( elements, qualifier, not ) {
2732
	if ( jQuery.isFunction( qualifier ) ) {
2733
		return jQuery.grep( elements, function( elem, i ) {
2734
			/* jshint -W018 */
2735
			return !!qualifier.call( elem, i, elem ) !== not;
2736
		} );
2737
2738
	}
2739
2740
	if ( qualifier.nodeType ) {
2741
		return jQuery.grep( elements, function( elem ) {
2742
			return ( elem === qualifier ) !== not;
2743
		} );
2744
2745
	}
2746
2747
	if ( typeof qualifier === "string" ) {
2748
		if ( risSimple.test( qualifier ) ) {
2749
			return jQuery.filter( qualifier, elements, not );
2750
		}
2751
2752
		qualifier = jQuery.filter( qualifier, elements );
2753
	}
2754
2755
	return jQuery.grep( elements, function( elem ) {
2756
		return ( indexOf.call( qualifier, elem ) > -1 ) !== not;
2757
	} );
2758
}
2759
2760
jQuery.filter = function( expr, elems, not ) {
2761
	var elem = elems[ 0 ];
2762
2763
	if ( not ) {
2764
		expr = ":not(" + expr + ")";
2765
	}
2766
2767
	return elems.length === 1 && elem.nodeType === 1 ?
2768
		jQuery.find.matchesSelector( elem, expr ) ? [ elem ] : [] :
2769
		jQuery.find.matches( expr, jQuery.grep( elems, function( elem ) {
2770
			return elem.nodeType === 1;
2771
		} ) );
2772
};
2773
2774
jQuery.fn.extend( {
2775
	find: function( selector ) {
2776
		var i,
2777
			len = this.length,
2778
			ret = [],
2779
			self = this;
2780
2781
		if ( typeof selector !== "string" ) {
2782
			return this.pushStack( jQuery( selector ).filter( function() {
2783
				for ( i = 0; i < len; i++ ) {
2784
					if ( jQuery.contains( self[ i ], this ) ) {
2785
						return true;
2786
					}
2787
				}
2788
			} ) );
2789
		}
2790
2791
		for ( i = 0; i < len; i++ ) {
2792
			jQuery.find( selector, self[ i ], ret );
2793
		}
2794
2795
		// Needed because $( selector, context ) becomes $( context ).find( selector )
2796
		ret = this.pushStack( len > 1 ? jQuery.unique( ret ) : ret );
2797
		ret.selector = this.selector ? this.selector + " " + selector : selector;
2798
		return ret;
2799
	},
2800
	filter: function( selector ) {
2801
		return this.pushStack( winnow( this, selector || [], false ) );
2802
	},
2803
	not: function( selector ) {
2804
		return this.pushStack( winnow( this, selector || [], true ) );
2805
	},
2806
	is: function( selector ) {
2807
		return !!winnow(
2808
			this,
2809
2810
			// If this is a positional/relative selector, check membership in the returned set
2811
			// so $("p:first").is("p:last") won't return true for a doc with two "p".
2812
			typeof selector === "string" && rneedsContext.test( selector ) ?
2813
				jQuery( selector ) :
2814
				selector || [],
2815
			false
2816
		).length;
2817
	}
2818
} );
2819
2820
2821
// Initialize a jQuery object
2822
2823
2824
// A central reference to the root jQuery(document)
2825
var rootjQuery,
2826
2827
	// A simple way to check for HTML strings
2828
	// Prioritize #id over <tag> to avoid XSS via location.hash (#9521)
2829
	// Strict HTML recognition (#11290: must start with <)
2830
	rquickExpr = /^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/,
2831
2832
	init = jQuery.fn.init = function( selector, context, root ) {
2833
		var match, elem;
2834
2835
		// HANDLE: $(""), $(null), $(undefined), $(false)
2836
		if ( !selector ) {
2837
			return this;
2838
		}
2839
2840
		// Method init() accepts an alternate rootjQuery
2841
		// so migrate can support jQuery.sub (gh-2101)
2842
		root = root || rootjQuery;
2843
2844
		// Handle HTML strings
2845
		if ( typeof selector === "string" ) {
2846
			if ( selector[ 0 ] === "<" &&
2847
				selector[ selector.length - 1 ] === ">" &&
2848
				selector.length >= 3 ) {
2849
2850
				// Assume that strings that start and end with <> are HTML and skip the regex check
2851
				match = [ null, selector, null ];
2852
2853
			} else {
2854
				match = rquickExpr.exec( selector );
2855
			}
2856
2857
			// Match html or make sure no context is specified for #id
2858
			if ( match && ( match[ 1 ] || !context ) ) {
2859
2860
				// HANDLE: $(html) -> $(array)
2861
				if ( match[ 1 ] ) {
2862
					context = context instanceof jQuery ? context[ 0 ] : context;
2863
2864
					// Option to run scripts is true for back-compat
2865
					// Intentionally let the error be thrown if parseHTML is not present
2866
					jQuery.merge( this, jQuery.parseHTML(
2867
						match[ 1 ],
2868
						context && context.nodeType ? context.ownerDocument || context : document,
2869
						true
2870
					) );
2871
2872
					// HANDLE: $(html, props)
2873
					if ( rsingleTag.test( match[ 1 ] ) && jQuery.isPlainObject( context ) ) {
2874
						for ( match in context ) {
2875
2876
							// Properties of context are called as methods if possible
2877
							if ( jQuery.isFunction( this[ match ] ) ) {
2878
								this[ match ]( context[ match ] );
2879
2880
							// ...and otherwise set as attributes
2881
							} else {
2882
								this.attr( match, context[ match ] );
2883
							}
2884
						}
2885
					}
2886
2887
					return this;
2888
2889
				// HANDLE: $(#id)
2890
				} else {
2891
					elem = document.getElementById( match[ 2 ] );
2892
2893
					// Support: Blackberry 4.6
2894
					// gEBID returns nodes no longer in the document (#6963)
2895
					if ( elem && elem.parentNode ) {
2896
2897
						// Inject the element directly into the jQuery object
2898
						this.length = 1;
2899
						this[ 0 ] = elem;
2900
					}
2901
2902
					this.context = document;
2903
					this.selector = selector;
2904
					return this;
2905
				}
2906
2907
			// HANDLE: $(expr, $(...))
2908
			} else if ( !context || context.jquery ) {
2909
				return ( context || root ).find( selector );
2910
2911
			// HANDLE: $(expr, context)
2912
			// (which is just equivalent to: $(context).find(expr)
2913
			} else {
2914
				return this.constructor( context ).find( selector );
2915
			}
2916
2917
		// HANDLE: $(DOMElement)
2918
		} else if ( selector.nodeType ) {
2919
			this.context = this[ 0 ] = selector;
2920
			this.length = 1;
2921
			return this;
2922
2923
		// HANDLE: $(function)
2924
		// Shortcut for document ready
2925
		} else if ( jQuery.isFunction( selector ) ) {
2926
			return root.ready !== undefined ?
2927
				root.ready( selector ) :
2928
2929
				// Execute immediately if ready is not present
2930
				selector( jQuery );
2931
		}
2932
2933
		if ( selector.selector !== undefined ) {
2934
			this.selector = selector.selector;
2935
			this.context = selector.context;
2936
		}
2937
2938
		return jQuery.makeArray( selector, this );
2939
	};
2940
2941
// Give the init function the jQuery prototype for later instantiation
2942
init.prototype = jQuery.fn;
2943
2944
// Initialize central reference
2945
rootjQuery = jQuery( document );
2946
2947
2948
var rparentsprev = /^(?:parents|prev(?:Until|All))/,
2949
2950
	// Methods guaranteed to produce a unique set when starting from a unique set
2951
	guaranteedUnique = {
2952
		children: true,
2953
		contents: true,
2954
		next: true,
2955
		prev: true
2956
	};
2957
2958
jQuery.fn.extend( {
2959
	has: function( target ) {
2960
		var targets = jQuery( target, this ),
2961
			l = targets.length;
2962
2963
		return this.filter( function() {
2964
			var i = 0;
2965
			for ( ; i < l; i++ ) {
2966
				if ( jQuery.contains( this, targets[ i ] ) ) {
2967
					return true;
2968
				}
2969
			}
2970
		} );
2971
	},
2972
2973
	closest: function( selectors, context ) {
2974
		var cur,
2975
			i = 0,
2976
			l = this.length,
2977
			matched = [],
2978
			pos = rneedsContext.test( selectors ) || typeof selectors !== "string" ?
2979
				jQuery( selectors, context || this.context ) :
2980
				0;
2981
2982
		for ( ; i < l; i++ ) {
2983
			for ( cur = this[ i ]; cur && cur !== context; cur = cur.parentNode ) {
2984
2985
				// Always skip document fragments
2986
				if ( cur.nodeType < 11 && ( pos ?
2987
					pos.index( cur ) > -1 :
2988
2989
					// Don't pass non-elements to Sizzle
2990
					cur.nodeType === 1 &&
2991
						jQuery.find.matchesSelector( cur, selectors ) ) ) {
2992
2993
					matched.push( cur );
2994
					break;
2995
				}
2996
			}
2997
		}
2998
2999
		return this.pushStack( matched.length > 1 ? jQuery.uniqueSort( matched ) : matched );
3000
	},
3001
3002
	// Determine the position of an element within the set
3003
	index: function( elem ) {
3004
3005
		// No argument, return index in parent
3006
		if ( !elem ) {
3007
			return ( this[ 0 ] && this[ 0 ].parentNode ) ? this.first().prevAll().length : -1;
3008
		}
3009
3010
		// Index in selector
3011
		if ( typeof elem === "string" ) {
3012
			return indexOf.call( jQuery( elem ), this[ 0 ] );
3013
		}
3014
3015
		// Locate the position of the desired element
3016
		return indexOf.call( this,
3017
3018
			// If it receives a jQuery object, the first element is used
3019
			elem.jquery ? elem[ 0 ] : elem
3020
		);
3021
	},
3022
3023
	add: function( selector, context ) {
3024
		return this.pushStack(
3025
			jQuery.uniqueSort(
3026
				jQuery.merge( this.get(), jQuery( selector, context ) )
3027
			)
3028
		);
3029
	},
3030
3031
	addBack: function( selector ) {
3032
		return this.add( selector == null ?
3033
			this.prevObject : this.prevObject.filter( selector )
3034
		);
3035
	}
3036
} );
3037
3038
function sibling( cur, dir ) {
3039
	while ( ( cur = cur[ dir ] ) && cur.nodeType !== 1 ) {}
3040
	return cur;
3041
}
3042
3043
jQuery.each( {
3044
	parent: function( elem ) {
3045
		var parent = elem.parentNode;
3046
		return parent && parent.nodeType !== 11 ? parent : null;
3047
	},
3048
	parents: function( elem ) {
3049
		return dir( elem, "parentNode" );
3050
	},
3051
	parentsUntil: function( elem, i, until ) {
3052
		return dir( elem, "parentNode", until );
3053
	},
3054
	next: function( elem ) {
3055
		return sibling( elem, "nextSibling" );
3056
	},
3057
	prev: function( elem ) {
3058
		return sibling( elem, "previousSibling" );
3059
	},
3060
	nextAll: function( elem ) {
3061
		return dir( elem, "nextSibling" );
3062
	},
3063
	prevAll: function( elem ) {
3064
		return dir( elem, "previousSibling" );
3065
	},
3066
	nextUntil: function( elem, i, until ) {
3067
		return dir( elem, "nextSibling", until );
3068
	},
3069
	prevUntil: function( elem, i, until ) {
3070
		return dir( elem, "previousSibling", until );
3071
	},
3072
	siblings: function( elem ) {
3073
		return siblings( ( elem.parentNode || {} ).firstChild, elem );
3074
	},
3075
	children: function( elem ) {
3076
		return siblings( elem.firstChild );
3077
	},
3078
	contents: function( elem ) {
3079
		return elem.contentDocument || jQuery.merge( [], elem.childNodes );
3080
	}
3081
}, function( name, fn ) {
3082
	jQuery.fn[ name ] = function( until, selector ) {
3083
		var matched = jQuery.map( this, fn, until );
3084
3085
		if ( name.slice( -5 ) !== "Until" ) {
3086
			selector = until;
3087
		}
3088
3089
		if ( selector && typeof selector === "string" ) {
3090
			matched = jQuery.filter( selector, matched );
3091
		}
3092
3093
		if ( this.length > 1 ) {
3094
3095
			// Remove duplicates
3096
			if ( !guaranteedUnique[ name ] ) {
3097
				jQuery.uniqueSort( matched );
3098
			}
3099
3100
			// Reverse order for parents* and prev-derivatives
3101
			if ( rparentsprev.test( name ) ) {
3102
				matched.reverse();
3103
			}
3104
		}
3105
3106
		return this.pushStack( matched );
3107
	};
3108
} );
3109
var rnotwhite = ( /\S+/g );
3110
3111
3112
3113
// Convert String-formatted options into Object-formatted ones
3114
function createOptions( options ) {
3115
	var object = {};
3116
	jQuery.each( options.match( rnotwhite ) || [], function( _, flag ) {
3117
		object[ flag ] = true;
3118
	} );
3119
	return object;
3120
}
3121
3122
/*
3123
 * Create a callback list using the following parameters:
3124
 *
3125
 *	options: an optional list of space-separated options that will change how
3126
 *			the callback list behaves or a more traditional option object
3127
 *
3128
 * By default a callback list will act like an event callback list and can be
3129
 * "fired" multiple times.
3130
 *
3131
 * Possible options:
3132
 *
3133
 *	once:			will ensure the callback list can only be fired once (like a Deferred)
3134
 *
3135
 *	memory:			will keep track of previous values and will call any callback added
3136
 *					after the list has been fired right away with the latest "memorized"
3137
 *					values (like a Deferred)
3138
 *
3139
 *	unique:			will ensure a callback can only be added once (no duplicate in the list)
3140
 *
3141
 *	stopOnFalse:	interrupt callings when a callback returns false
3142
 *
3143
 */
3144
jQuery.Callbacks = function( options ) {
3145
3146
	// Convert options from String-formatted to Object-formatted if needed
3147
	// (we check in cache first)
3148
	options = typeof options === "string" ?
3149
		createOptions( options ) :
3150
		jQuery.extend( {}, options );
3151
3152
	var // Flag to know if list is currently firing
3153
		firing,
3154
3155
		// Last fire value for non-forgettable lists
3156
		memory,
3157
3158
		// Flag to know if list was already fired
3159
		fired,
3160
3161
		// Flag to prevent firing
3162
		locked,
3163
3164
		// Actual callback list
3165
		list = [],
3166
3167
		// Queue of execution data for repeatable lists
3168
		queue = [],
3169
3170
		// Index of currently firing callback (modified by add/remove as needed)
3171
		firingIndex = -1,
3172
3173
		// Fire callbacks
3174
		fire = function() {
3175
3176
			// Enforce single-firing
3177
			locked = options.once;
3178
3179
			// Execute callbacks for all pending executions,
3180
			// respecting firingIndex overrides and runtime changes
3181
			fired = firing = true;
3182
			for ( ; queue.length; firingIndex = -1 ) {
3183
				memory = queue.shift();
3184
				while ( ++firingIndex < list.length ) {
3185
3186
					// Run callback and check for early termination
3187
					if ( list[ firingIndex ].apply( memory[ 0 ], memory[ 1 ] ) === false &&
3188
						options.stopOnFalse ) {
3189
3190
						// Jump to end and forget the data so .add doesn't re-fire
3191
						firingIndex = list.length;
3192
						memory = false;
3193
					}
3194
				}
3195
			}
3196
3197
			// Forget the data if we're done with it
3198
			if ( !options.memory ) {
3199
				memory = false;
3200
			}
3201
3202
			firing = false;
3203
3204
			// Clean up if we're done firing for good
3205
			if ( locked ) {
3206
3207
				// Keep an empty list if we have data for future add calls
3208
				if ( memory ) {
3209
					list = [];
3210
3211
				// Otherwise, this object is spent
3212
				} else {
3213
					list = "";
3214
				}
3215
			}
3216
		},
3217
3218
		// Actual Callbacks object
3219
		self = {
3220
3221
			// Add a callback or a collection of callbacks to the list
3222
			add: function() {
3223
				if ( list ) {
3224
3225
					// If we have memory from a past run, we should fire after adding
3226
					if ( memory && !firing ) {
3227
						firingIndex = list.length - 1;
3228
						queue.push( memory );
3229
					}
3230
3231
					( function add( args ) {
3232
						jQuery.each( args, function( _, arg ) {
3233
							if ( jQuery.isFunction( arg ) ) {
3234
								if ( !options.unique || !self.has( arg ) ) {
3235
									list.push( arg );
3236
								}
3237
							} else if ( arg && arg.length && jQuery.type( arg ) !== "string" ) {
3238
3239
								// Inspect recursively
3240
								add( arg );
3241
							}
3242
						} );
3243
					} )( arguments );
3244
3245
					if ( memory && !firing ) {
3246
						fire();
3247
					}
3248
				}
3249
				return this;
3250
			},
3251
3252
			// Remove a callback from the list
3253
			remove: function() {
3254
				jQuery.each( arguments, function( _, arg ) {
3255
					var index;
3256
					while ( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) {
3257
						list.splice( index, 1 );
3258
3259
						// Handle firing indexes
3260
						if ( index <= firingIndex ) {
3261
							firingIndex--;
3262
						}
3263
					}
3264
				} );
3265
				return this;
3266
			},
3267
3268
			// Check if a given callback is in the list.
3269
			// If no argument is given, return whether or not list has callbacks attached.
3270
			has: function( fn ) {
3271
				return fn ?
3272
					jQuery.inArray( fn, list ) > -1 :
3273
					list.length > 0;
3274
			},
3275
3276
			// Remove all callbacks from the list
3277
			empty: function() {
3278
				if ( list ) {
3279
					list = [];
3280
				}
3281
				return this;
3282
			},
3283
3284
			// Disable .fire and .add
3285
			// Abort any current/pending executions
3286
			// Clear all callbacks and values
3287
			disable: function() {
3288
				locked = queue = [];
3289
				list = memory = "";
3290
				return this;
3291
			},
3292
			disabled: function() {
3293
				return !list;
3294
			},
3295
3296
			// Disable .fire
3297
			// Also disable .add unless we have memory (since it would have no effect)
3298
			// Abort any pending executions
3299
			lock: function() {
3300
				locked = queue = [];
3301
				if ( !memory ) {
3302
					list = memory = "";
3303
				}
3304
				return this;
3305
			},
3306
			locked: function() {
3307
				return !!locked;
3308
			},
3309
3310
			// Call all callbacks with the given context and arguments
3311
			fireWith: function( context, args ) {
3312
				if ( !locked ) {
3313
					args = args || [];
3314
					args = [ context, args.slice ? args.slice() : args ];
3315
					queue.push( args );
3316
					if ( !firing ) {
3317
						fire();
3318
					}
3319
				}
3320
				return this;
3321
			},
3322
3323
			// Call all the callbacks with the given arguments
3324
			fire: function() {
3325
				self.fireWith( this, arguments );
3326
				return this;
3327
			},
3328
3329
			// To know if the callbacks have already been called at least once
3330
			fired: function() {
3331
				return !!fired;
3332
			}
3333
		};
3334
3335
	return self;
3336
};
3337
3338
3339
jQuery.extend( {
3340
3341
	Deferred: function( func ) {
3342
		var tuples = [
3343
3344
				// action, add listener, listener list, final state
3345
				[ "resolve", "done", jQuery.Callbacks( "once memory" ), "resolved" ],
3346
				[ "reject", "fail", jQuery.Callbacks( "once memory" ), "rejected" ],
3347
				[ "notify", "progress", jQuery.Callbacks( "memory" ) ]
3348
			],
3349
			state = "pending",
3350
			promise = {
3351
				state: function() {
3352
					return state;
3353
				},
3354
				always: function() {
3355
					deferred.done( arguments ).fail( arguments );
3356
					return this;
3357
				},
3358
				then: function( /* fnDone, fnFail, fnProgress */ ) {
3359
					var fns = arguments;
3360
					return jQuery.Deferred( function( newDefer ) {
3361
						jQuery.each( tuples, function( i, tuple ) {
3362
							var fn = jQuery.isFunction( fns[ i ] ) && fns[ i ];
3363
3364
							// deferred[ done | fail | progress ] for forwarding actions to newDefer
3365
							deferred[ tuple[ 1 ] ]( function() {
3366
								var returned = fn && fn.apply( this, arguments );
3367
								if ( returned && jQuery.isFunction( returned.promise ) ) {
3368
									returned.promise()
3369
										.progress( newDefer.notify )
3370
										.done( newDefer.resolve )
3371
										.fail( newDefer.reject );
3372
								} else {
3373
									newDefer[ tuple[ 0 ] + "With" ](
3374
										this === promise ? newDefer.promise() : this,
3375
										fn ? [ returned ] : arguments
3376
									);
3377
								}
3378
							} );
3379
						} );
3380
						fns = null;
3381
					} ).promise();
3382
				},
3383
3384
				// Get a promise for this deferred
3385
				// If obj is provided, the promise aspect is added to the object
3386
				promise: function( obj ) {
3387
					return obj != null ? jQuery.extend( obj, promise ) : promise;
3388
				}
3389
			},
3390
			deferred = {};
3391
3392
		// Keep pipe for back-compat
3393
		promise.pipe = promise.then;
3394
3395
		// Add list-specific methods
3396
		jQuery.each( tuples, function( i, tuple ) {
3397
			var list = tuple[ 2 ],
3398
				stateString = tuple[ 3 ];
3399
3400
			// promise[ done | fail | progress ] = list.add
3401
			promise[ tuple[ 1 ] ] = list.add;
3402
3403
			// Handle state
3404
			if ( stateString ) {
3405
				list.add( function() {
3406
3407
					// state = [ resolved | rejected ]
3408
					state = stateString;
3409
3410
				// [ reject_list | resolve_list ].disable; progress_list.lock
3411
				}, tuples[ i ^ 1 ][ 2 ].disable, tuples[ 2 ][ 2 ].lock );
3412
			}
3413
3414
			// deferred[ resolve | reject | notify ]
3415
			deferred[ tuple[ 0 ] ] = function() {
3416
				deferred[ tuple[ 0 ] + "With" ]( this === deferred ? promise : this, arguments );
3417
				return this;
3418
			};
3419
			deferred[ tuple[ 0 ] + "With" ] = list.fireWith;
3420
		} );
3421
3422
		// Make the deferred a promise
3423
		promise.promise( deferred );
3424
3425
		// Call given func if any
3426
		if ( func ) {
3427
			func.call( deferred, deferred );
3428
		}
3429
3430
		// All done!
3431
		return deferred;
3432
	},
3433
3434
	// Deferred helper
3435
	when: function( subordinate /* , ..., subordinateN */ ) {
3436
		var i = 0,
3437
			resolveValues = slice.call( arguments ),
3438
			length = resolveValues.length,
3439
3440
			// the count of uncompleted subordinates
3441
			remaining = length !== 1 ||
3442
				( subordinate && jQuery.isFunction( subordinate.promise ) ) ? length : 0,
3443
3444
			// the master Deferred.
3445
			// If resolveValues consist of only a single Deferred, just use that.
3446
			deferred = remaining === 1 ? subordinate : jQuery.Deferred(),
3447
3448
			// Update function for both resolve and progress values
3449
			updateFunc = function( i, contexts, values ) {
3450
				return function( value ) {
3451
					contexts[ i ] = this;
3452
					values[ i ] = arguments.length > 1 ? slice.call( arguments ) : value;
3453
					if ( values === progressValues ) {
3454
						deferred.notifyWith( contexts, values );
3455
					} else if ( !( --remaining ) ) {
3456
						deferred.resolveWith( contexts, values );
3457
					}
3458
				};
3459
			},
3460
3461
			progressValues, progressContexts, resolveContexts;
3462
3463
		// Add listeners to Deferred subordinates; treat others as resolved
3464
		if ( length > 1 ) {
3465
			progressValues = new Array( length );
3466
			progressContexts = new Array( length );
3467
			resolveContexts = new Array( length );
3468
			for ( ; i < length; i++ ) {
3469
				if ( resolveValues[ i ] && jQuery.isFunction( resolveValues[ i ].promise ) ) {
3470
					resolveValues[ i ].promise()
3471
						.progress( updateFunc( i, progressContexts, progressValues ) )
3472
						.done( updateFunc( i, resolveContexts, resolveValues ) )
3473
						.fail( deferred.reject );
3474
				} else {
3475
					--remaining;
3476
				}
3477
			}
3478
		}
3479
3480
		// If we're not waiting on anything, resolve the master
3481
		if ( !remaining ) {
3482
			deferred.resolveWith( resolveContexts, resolveValues );
3483
		}
3484
3485
		return deferred.promise();
3486
	}
3487
} );
3488
3489
3490
// The deferred used on DOM ready
3491
var readyList;
3492
3493
jQuery.fn.ready = function( fn ) {
3494
3495
	// Add the callback
3496
	jQuery.ready.promise().done( fn );
3497
3498
	return this;
3499
};
3500
3501
jQuery.extend( {
3502
3503
	// Is the DOM ready to be used? Set to true once it occurs.
3504
	isReady: false,
3505
3506
	// A counter to track how many items to wait for before
3507
	// the ready event fires. See #6781
3508
	readyWait: 1,
3509
3510
	// Hold (or release) the ready event
3511
	holdReady: function( hold ) {
3512
		if ( hold ) {
3513
			jQuery.readyWait++;
3514
		} else {
3515
			jQuery.ready( true );
3516
		}
3517
	},
3518
3519
	// Handle when the DOM is ready
3520
	ready: function( wait ) {
3521
3522
		// Abort if there are pending holds or we're already ready
3523
		if ( wait === true ? --jQuery.readyWait : jQuery.isReady ) {
3524
			return;
3525
		}
3526
3527
		// Remember that the DOM is ready
3528
		jQuery.isReady = true;
3529
3530
		// If a normal DOM Ready event fired, decrement, and wait if need be
3531
		if ( wait !== true && --jQuery.readyWait > 0 ) {
3532
			return;
3533
		}
3534
3535
		// If there are functions bound, to execute
3536
		readyList.resolveWith( document, [ jQuery ] );
3537
3538
		// Trigger any bound ready events
3539
		if ( jQuery.fn.triggerHandler ) {
3540
			jQuery( document ).triggerHandler( "ready" );
3541
			jQuery( document ).off( "ready" );
3542
		}
3543
	}
3544
} );
3545
3546
/**
3547
 * The ready event handler and self cleanup method
3548
 */
3549
function completed() {
3550
	document.removeEventListener( "DOMContentLoaded", completed );
3551
	window.removeEventListener( "load", completed );
3552
	jQuery.ready();
3553
}
3554
3555
jQuery.ready.promise = function( obj ) {
3556
	if ( !readyList ) {
3557
3558
		readyList = jQuery.Deferred();
3559
3560
		// Catch cases where $(document).ready() is called
3561
		// after the browser event has already occurred.
3562
		// Support: IE9-10 only
3563
		// Older IE sometimes signals "interactive" too soon
3564
		if ( document.readyState === "complete" ||
3565
			( document.readyState !== "loading" && !document.documentElement.doScroll ) ) {
3566
3567
			// Handle it asynchronously to allow scripts the opportunity to delay ready
3568
			window.setTimeout( jQuery.ready );
3569
3570
		} else {
3571
3572
			// Use the handy event callback
3573
			document.addEventListener( "DOMContentLoaded", completed );
3574
3575
			// A fallback to window.onload, that will always work
3576
			window.addEventListener( "load", completed );
3577
		}
3578
	}
3579
	return readyList.promise( obj );
3580
};
3581
3582
// Kick off the DOM ready check even if the user does not
3583
jQuery.ready.promise();
3584
3585
3586
3587
3588
// Multifunctional method to get and set values of a collection
3589
// The value/s can optionally be executed if it's a function
3590
var access = function( elems, fn, key, value, chainable, emptyGet, raw ) {
3591
	var i = 0,
3592
		len = elems.length,
3593
		bulk = key == null;
3594
3595
	// Sets many values
3596
	if ( jQuery.type( key ) === "object" ) {
3597
		chainable = true;
3598
		for ( i in key ) {
3599
			access( elems, fn, i, key[ i ], true, emptyGet, raw );
3600
		}
3601
3602
	// Sets one value
3603
	} else if ( value !== undefined ) {
3604
		chainable = true;
3605
3606
		if ( !jQuery.isFunction( value ) ) {
3607
			raw = true;
3608
		}
3609
3610
		if ( bulk ) {
3611
3612
			// Bulk operations run against the entire set
3613
			if ( raw ) {
3614
				fn.call( elems, value );
3615
				fn = null;
3616
3617
			// ...except when executing function values
3618
			} else {
3619
				bulk = fn;
3620
				fn = function( elem, key, value ) {
3621
					return bulk.call( jQuery( elem ), value );
3622
				};
3623
			}
3624
		}
3625
3626
		if ( fn ) {
3627
			for ( ; i < len; i++ ) {
3628
				fn(
3629
					elems[ i ], key, raw ?
3630
					value :
3631
					value.call( elems[ i ], i, fn( elems[ i ], key ) )
3632
				);
3633
			}
3634
		}
3635
	}
3636
3637
	return chainable ?
3638
		elems :
3639
3640
		// Gets
3641
		bulk ?
3642
			fn.call( elems ) :
3643
			len ? fn( elems[ 0 ], key ) : emptyGet;
3644
};
3645
var acceptData = function( owner ) {
3646
3647
	// Accepts only:
3648
	//  - Node
3649
	//    - Node.ELEMENT_NODE
3650
	//    - Node.DOCUMENT_NODE
3651
	//  - Object
3652
	//    - Any
3653
	/* jshint -W018 */
3654
	return owner.nodeType === 1 || owner.nodeType === 9 || !( +owner.nodeType );
3655
};
3656
3657
3658
3659
3660
function Data() {
3661
	this.expando = jQuery.expando + Data.uid++;
3662
}
3663
3664
Data.uid = 1;
3665
3666
Data.prototype = {
3667
3668
	register: function( owner, initial ) {
3669
		var value = initial || {};
3670
3671
		// If it is a node unlikely to be stringify-ed or looped over
3672
		// use plain assignment
3673
		if ( owner.nodeType ) {
3674
			owner[ this.expando ] = value;
3675
3676
		// Otherwise secure it in a non-enumerable, non-writable property
3677
		// configurability must be true to allow the property to be
3678
		// deleted with the delete operator
3679
		} else {
3680
			Object.defineProperty( owner, this.expando, {
3681
				value: value,
3682
				writable: true,
3683
				configurable: true
3684
			} );
3685
		}
3686
		return owner[ this.expando ];
3687
	},
3688
	cache: function( owner ) {
3689
3690
		// We can accept data for non-element nodes in modern browsers,
3691
		// but we should not, see #8335.
3692
		// Always return an empty object.
3693
		if ( !acceptData( owner ) ) {
3694
			return {};
3695
		}
3696
3697
		// Check if the owner object already has a cache
3698
		var value = owner[ this.expando ];
3699
3700
		// If not, create one
3701
		if ( !value ) {
3702
			value = {};
3703
3704
			// We can accept data for non-element nodes in modern browsers,
3705
			// but we should not, see #8335.
3706
			// Always return an empty object.
3707
			if ( acceptData( owner ) ) {
3708
3709
				// If it is a node unlikely to be stringify-ed or looped over
3710
				// use plain assignment
3711
				if ( owner.nodeType ) {
3712
					owner[ this.expando ] = value;
3713
3714
				// Otherwise secure it in a non-enumerable property
3715
				// configurable must be true to allow the property to be
3716
				// deleted when data is removed
3717
				} else {
3718
					Object.defineProperty( owner, this.expando, {
3719
						value: value,
3720
						configurable: true
3721
					} );
3722
				}
3723
			}
3724
		}
3725
3726
		return value;
3727
	},
3728
	set: function( owner, data, value ) {
3729
		var prop,
3730
			cache = this.cache( owner );
3731
3732
		// Handle: [ owner, key, value ] args
3733
		if ( typeof data === "string" ) {
3734
			cache[ data ] = value;
3735
3736
		// Handle: [ owner, { properties } ] args
3737
		} else {
3738
3739
			// Copy the properties one-by-one to the cache object
3740
			for ( prop in data ) {
3741
				cache[ prop ] = data[ prop ];
3742
			}
3743
		}
3744
		return cache;
3745
	},
3746
	get: function( owner, key ) {
3747
		return key === undefined ?
3748
			this.cache( owner ) :
3749
			owner[ this.expando ] && owner[ this.expando ][ key ];
3750
	},
3751
	access: function( owner, key, value ) {
3752
		var stored;
3753
3754
		// In cases where either:
3755
		//
3756
		//   1. No key was specified
3757
		//   2. A string key was specified, but no value provided
3758
		//
3759
		// Take the "read" path and allow the get method to determine
3760
		// which value to return, respectively either:
3761
		//
3762
		//   1. The entire cache object
3763
		//   2. The data stored at the key
3764
		//
3765
		if ( key === undefined ||
3766
				( ( key && typeof key === "string" ) && value === undefined ) ) {
3767
3768
			stored = this.get( owner, key );
3769
3770
			return stored !== undefined ?
3771
				stored : this.get( owner, jQuery.camelCase( key ) );
3772
		}
3773
3774
		// When the key is not a string, or both a key and value
3775
		// are specified, set or extend (existing objects) with either:
3776
		//
3777
		//   1. An object of properties
3778
		//   2. A key and value
3779
		//
3780
		this.set( owner, key, value );
3781
3782
		// Since the "set" path can have two possible entry points
3783
		// return the expected data based on which path was taken[*]
3784
		return value !== undefined ? value : key;
3785
	},
3786
	remove: function( owner, key ) {
3787
		var i, name, camel,
3788
			cache = owner[ this.expando ];
3789
3790
		if ( cache === undefined ) {
3791
			return;
3792
		}
3793
3794
		if ( key === undefined ) {
3795
			this.register( owner );
3796
3797
		} else {
3798
3799
			// Support array or space separated string of keys
3800
			if ( jQuery.isArray( key ) ) {
3801
3802
				// If "name" is an array of keys...
3803
				// When data is initially created, via ("key", "val") signature,
3804
				// keys will be converted to camelCase.
3805
				// Since there is no way to tell _how_ a key was added, remove
3806
				// both plain key and camelCase key. #12786
3807
				// This will only penalize the array argument path.
3808
				name = key.concat( key.map( jQuery.camelCase ) );
3809
			} else {
3810
				camel = jQuery.camelCase( key );
3811
3812
				// Try the string as a key before any manipulation
3813
				if ( key in cache ) {
3814
					name = [ key, camel ];
3815
				} else {
3816
3817
					// If a key with the spaces exists, use it.
3818
					// Otherwise, create an array by matching non-whitespace
3819
					name = camel;
3820
					name = name in cache ?
3821
						[ name ] : ( name.match( rnotwhite ) || [] );
3822
				}
3823
			}
3824
3825
			i = name.length;
3826
3827
			while ( i-- ) {
3828
				delete cache[ name[ i ] ];
3829
			}
3830
		}
3831
3832
		// Remove the expando if there's no more data
3833
		if ( key === undefined || jQuery.isEmptyObject( cache ) ) {
3834
3835
			// Support: Chrome <= 35-45+
3836
			// Webkit & Blink performance suffers when deleting properties
3837
			// from DOM nodes, so set to undefined instead
3838
			// https://code.google.com/p/chromium/issues/detail?id=378607
3839
			if ( owner.nodeType ) {
3840
				owner[ this.expando ] = undefined;
3841
			} else {
3842
				delete owner[ this.expando ];
3843
			}
3844
		}
3845
	},
3846
	hasData: function( owner ) {
3847
		var cache = owner[ this.expando ];
3848
		return cache !== undefined && !jQuery.isEmptyObject( cache );
3849
	}
3850
};
3851
var dataPriv = new Data();
3852
3853
var dataUser = new Data();
3854
3855
3856
3857
//	Implementation Summary
3858
//
3859
//	1. Enforce API surface and semantic compatibility with 1.9.x branch
3860
//	2. Improve the module's maintainability by reducing the storage
3861
//		paths to a single mechanism.
3862
//	3. Use the same single mechanism to support "private" and "user" data.
3863
//	4. _Never_ expose "private" data to user code (TODO: Drop _data, _removeData)
3864
//	5. Avoid exposing implementation details on user objects (eg. expando properties)
3865
//	6. Provide a clear path for implementation upgrade to WeakMap in 2014
3866
3867
var rbrace = /^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,
3868
	rmultiDash = /[A-Z]/g;
3869
3870
function dataAttr( elem, key, data ) {
3871
	var name;
3872
3873
	// If nothing was found internally, try to fetch any
3874
	// data from the HTML5 data-* attribute
3875
	if ( data === undefined && elem.nodeType === 1 ) {
3876
		name = "data-" + key.replace( rmultiDash, "-$&" ).toLowerCase();
3877
		data = elem.getAttribute( name );
3878
3879
		if ( typeof data === "string" ) {
3880
			try {
3881
				data = data === "true" ? true :
3882
					data === "false" ? false :
3883
					data === "null" ? null :
3884
3885
					// Only convert to a number if it doesn't change the string
3886
					+data + "" === data ? +data :
3887
					rbrace.test( data ) ? jQuery.parseJSON( data ) :
3888
					data;
3889
			} catch ( e ) {}
3890
3891
			// Make sure we set the data so it isn't changed later
3892
			dataUser.set( elem, key, data );
3893
		} else {
3894
			data = undefined;
3895
		}
3896
	}
3897
	return data;
3898
}
3899
3900
jQuery.extend( {
3901
	hasData: function( elem ) {
3902
		return dataUser.hasData( elem ) || dataPriv.hasData( elem );
3903
	},
3904
3905
	data: function( elem, name, data ) {
3906
		return dataUser.access( elem, name, data );
3907
	},
3908
3909
	removeData: function( elem, name ) {
3910
		dataUser.remove( elem, name );
3911
	},
3912
3913
	// TODO: Now that all calls to _data and _removeData have been replaced
3914
	// with direct calls to dataPriv methods, these can be deprecated.
3915
	_data: function( elem, name, data ) {
3916
		return dataPriv.access( elem, name, data );
3917
	},
3918
3919
	_removeData: function( elem, name ) {
3920
		dataPriv.remove( elem, name );
3921
	}
3922
} );
3923
3924
jQuery.fn.extend( {
3925
	data: function( key, value ) {
3926
		var i, name, data,
3927
			elem = this[ 0 ],
3928
			attrs = elem && elem.attributes;
3929
3930
		// Gets all values
3931
		if ( key === undefined ) {
3932
			if ( this.length ) {
3933
				data = dataUser.get( elem );
3934
3935
				if ( elem.nodeType === 1 && !dataPriv.get( elem, "hasDataAttrs" ) ) {
3936
					i = attrs.length;
3937
					while ( i-- ) {
3938
3939
						// Support: IE11+
3940
						// The attrs elements can be null (#14894)
3941
						if ( attrs[ i ] ) {
3942
							name = attrs[ i ].name;
3943
							if ( name.indexOf( "data-" ) === 0 ) {
3944
								name = jQuery.camelCase( name.slice( 5 ) );
3945
								dataAttr( elem, name, data[ name ] );
3946
							}
3947
						}
3948
					}
3949
					dataPriv.set( elem, "hasDataAttrs", true );
3950
				}
3951
			}
3952
3953
			return data;
3954
		}
3955
3956
		// Sets multiple values
3957
		if ( typeof key === "object" ) {
3958
			return this.each( function() {
3959
				dataUser.set( this, key );
3960
			} );
3961
		}
3962
3963
		return access( this, function( value ) {
3964
			var data, camelKey;
3965
3966
			// The calling jQuery object (element matches) is not empty
3967
			// (and therefore has an element appears at this[ 0 ]) and the
3968
			// `value` parameter was not undefined. An empty jQuery object
3969
			// will result in `undefined` for elem = this[ 0 ] which will
3970
			// throw an exception if an attempt to read a data cache is made.
3971
			if ( elem && value === undefined ) {
3972
3973
				// Attempt to get data from the cache
3974
				// with the key as-is
3975
				data = dataUser.get( elem, key ) ||
3976
3977
					// Try to find dashed key if it exists (gh-2779)
3978
					// This is for 2.2.x only
3979
					dataUser.get( elem, key.replace( rmultiDash, "-$&" ).toLowerCase() );
3980
3981
				if ( data !== undefined ) {
3982
					return data;
3983
				}
3984
3985
				camelKey = jQuery.camelCase( key );
3986
3987
				// Attempt to get data from the cache
3988
				// with the key camelized
3989
				data = dataUser.get( elem, camelKey );
3990
				if ( data !== undefined ) {
3991
					return data;
3992
				}
3993
3994
				// Attempt to "discover" the data in
3995
				// HTML5 custom data-* attrs
3996
				data = dataAttr( elem, camelKey, undefined );
3997
				if ( data !== undefined ) {
3998
					return data;
3999
				}
4000
4001
				// We tried really hard, but the data doesn't exist.
4002
				return;
4003
			}
4004
4005
			// Set the data...
4006
			camelKey = jQuery.camelCase( key );
4007
			this.each( function() {
4008
4009
				// First, attempt to store a copy or reference of any
4010
				// data that might've been store with a camelCased key.
4011
				var data = dataUser.get( this, camelKey );
4012
4013
				// For HTML5 data-* attribute interop, we have to
4014
				// store property names with dashes in a camelCase form.
4015
				// This might not apply to all properties...*
4016
				dataUser.set( this, camelKey, value );
4017
4018
				// *... In the case of properties that might _actually_
4019
				// have dashes, we need to also store a copy of that
4020
				// unchanged property.
4021
				if ( key.indexOf( "-" ) > -1 && data !== undefined ) {
4022
					dataUser.set( this, key, value );
4023
				}
4024
			} );
4025
		}, null, value, arguments.length > 1, null, true );
4026
	},
4027
4028
	removeData: function( key ) {
4029
		return this.each( function() {
4030
			dataUser.remove( this, key );
4031
		} );
4032
	}
4033
} );
4034
4035
4036
jQuery.extend( {
4037
	queue: function( elem, type, data ) {
4038
		var queue;
4039
4040
		if ( elem ) {
4041
			type = ( type || "fx" ) + "queue";
4042
			queue = dataPriv.get( elem, type );
4043
4044
			// Speed up dequeue by getting out quickly if this is just a lookup
4045
			if ( data ) {
4046
				if ( !queue || jQuery.isArray( data ) ) {
4047
					queue = dataPriv.access( elem, type, jQuery.makeArray( data ) );
4048
				} else {
4049
					queue.push( data );
4050
				}
4051
			}
4052
			return queue || [];
4053
		}
4054
	},
4055
4056
	dequeue: function( elem, type ) {
4057
		type = type || "fx";
4058
4059
		var queue = jQuery.queue( elem, type ),
4060
			startLength = queue.length,
4061
			fn = queue.shift(),
4062
			hooks = jQuery._queueHooks( elem, type ),
4063
			next = function() {
4064
				jQuery.dequeue( elem, type );
4065
			};
4066
4067
		// If the fx queue is dequeued, always remove the progress sentinel
4068
		if ( fn === "inprogress" ) {
4069
			fn = queue.shift();
4070
			startLength--;
4071
		}
4072
4073
		if ( fn ) {
4074
4075
			// Add a progress sentinel to prevent the fx queue from being
4076
			// automatically dequeued
4077
			if ( type === "fx" ) {
4078
				queue.unshift( "inprogress" );
4079
			}
4080
4081
			// Clear up the last queue stop function
4082
			delete hooks.stop;
4083
			fn.call( elem, next, hooks );
4084
		}
4085
4086
		if ( !startLength && hooks ) {
4087
			hooks.empty.fire();
4088
		}
4089
	},
4090
4091
	// Not public - generate a queueHooks object, or return the current one
4092
	_queueHooks: function( elem, type ) {
4093
		var key = type + "queueHooks";
4094
		return dataPriv.get( elem, key ) || dataPriv.access( elem, key, {
4095
			empty: jQuery.Callbacks( "once memory" ).add( function() {
4096
				dataPriv.remove( elem, [ type + "queue", key ] );
4097
			} )
4098
		} );
4099
	}
4100
} );
4101
4102
jQuery.fn.extend( {
4103
	queue: function( type, data ) {
4104
		var setter = 2;
4105
4106
		if ( typeof type !== "string" ) {
4107
			data = type;
4108
			type = "fx";
4109
			setter--;
4110
		}
4111
4112
		if ( arguments.length < setter ) {
4113
			return jQuery.queue( this[ 0 ], type );
4114
		}
4115
4116
		return data === undefined ?
4117
			this :
4118
			this.each( function() {
4119
				var queue = jQuery.queue( this, type, data );
4120
4121
				// Ensure a hooks for this queue
4122
				jQuery._queueHooks( this, type );
4123
4124
				if ( type === "fx" && queue[ 0 ] !== "inprogress" ) {
4125
					jQuery.dequeue( this, type );
4126
				}
4127
			} );
4128
	},
4129
	dequeue: function( type ) {
4130
		return this.each( function() {
4131
			jQuery.dequeue( this, type );
4132
		} );
4133
	},
4134
	clearQueue: function( type ) {
4135
		return this.queue( type || "fx", [] );
4136
	},
4137
4138
	// Get a promise resolved when queues of a certain type
4139
	// are emptied (fx is the type by default)
4140
	promise: function( type, obj ) {
4141
		var tmp,
4142
			count = 1,
4143
			defer = jQuery.Deferred(),
4144
			elements = this,
4145
			i = this.length,
4146
			resolve = function() {
4147
				if ( !( --count ) ) {
4148
					defer.resolveWith( elements, [ elements ] );
4149
				}
4150
			};
4151
4152
		if ( typeof type !== "string" ) {
4153
			obj = type;
4154
			type = undefined;
4155
		}
4156
		type = type || "fx";
4157
4158
		while ( i-- ) {
4159
			tmp = dataPriv.get( elements[ i ], type + "queueHooks" );
4160
			if ( tmp && tmp.empty ) {
4161
				count++;
4162
				tmp.empty.add( resolve );
4163
			}
4164
		}
4165
		resolve();
4166
		return defer.promise( obj );
4167
	}
4168
} );
4169
var pnum = ( /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/ ).source;
4170
4171
var rcssNum = new RegExp( "^(?:([+-])=|)(" + pnum + ")([a-z%]*)$", "i" );
4172
4173
4174
var cssExpand = [ "Top", "Right", "Bottom", "Left" ];
4175
4176
var isHidden = function( elem, el ) {
4177
4178
		// isHidden might be called from jQuery#filter function;
4179
		// in that case, element will be second argument
4180
		elem = el || elem;
4181
		return jQuery.css( elem, "display" ) === "none" ||
4182
			!jQuery.contains( elem.ownerDocument, elem );
4183
	};
4184
4185
4186
4187
function adjustCSS( elem, prop, valueParts, tween ) {
4188
	var adjusted,
4189
		scale = 1,
4190
		maxIterations = 20,
4191
		currentValue = tween ?
4192
			function() { return tween.cur(); } :
4193
			function() { return jQuery.css( elem, prop, "" ); },
4194
		initial = currentValue(),
4195
		unit = valueParts && valueParts[ 3 ] || ( jQuery.cssNumber[ prop ] ? "" : "px" ),
4196
4197
		// Starting value computation is required for potential unit mismatches
4198
		initialInUnit = ( jQuery.cssNumber[ prop ] || unit !== "px" && +initial ) &&
4199
			rcssNum.exec( jQuery.css( elem, prop ) );
4200
4201
	if ( initialInUnit && initialInUnit[ 3 ] !== unit ) {
4202
4203
		// Trust units reported by jQuery.css
4204
		unit = unit || initialInUnit[ 3 ];
4205
4206
		// Make sure we update the tween properties later on
4207
		valueParts = valueParts || [];
4208
4209
		// Iteratively approximate from a nonzero starting point
4210
		initialInUnit = +initial || 1;
4211
4212
		do {
4213
4214
			// If previous iteration zeroed out, double until we get *something*.
4215
			// Use string for doubling so we don't accidentally see scale as unchanged below
4216
			scale = scale || ".5";
4217
4218
			// Adjust and apply
4219
			initialInUnit = initialInUnit / scale;
4220
			jQuery.style( elem, prop, initialInUnit + unit );
4221
4222
		// Update scale, tolerating zero or NaN from tween.cur()
4223
		// Break the loop if scale is unchanged or perfect, or if we've just had enough.
4224
		} while (
4225
			scale !== ( scale = currentValue() / initial ) && scale !== 1 && --maxIterations
4226
		);
4227
	}
4228
4229
	if ( valueParts ) {
4230
		initialInUnit = +initialInUnit || +initial || 0;
4231
4232
		// Apply relative offset (+=/-=) if specified
4233
		adjusted = valueParts[ 1 ] ?
4234
			initialInUnit + ( valueParts[ 1 ] + 1 ) * valueParts[ 2 ] :
4235
			+valueParts[ 2 ];
4236
		if ( tween ) {
4237
			tween.unit = unit;
4238
			tween.start = initialInUnit;
4239
			tween.end = adjusted;
4240
		}
4241
	}
4242
	return adjusted;
4243
}
4244
var rcheckableType = ( /^(?:checkbox|radio)$/i );
4245
4246
var rtagName = ( /<([\w:-]+)/ );
4247
4248
var rscriptType = ( /^$|\/(?:java|ecma)script/i );
4249
4250
4251
4252
// We have to close these tags to support XHTML (#13200)
4253
var wrapMap = {
4254
4255
	// Support: IE9
4256
	option: [ 1, "<select multiple='multiple'>", "</select>" ],
4257
4258
	// XHTML parsers do not magically insert elements in the
4259
	// same way that tag soup parsers do. So we cannot shorten
4260
	// this by omitting <tbody> or other required elements.
4261
	thead: [ 1, "<table>", "</table>" ],
4262
	col: [ 2, "<table><colgroup>", "</colgroup></table>" ],
4263
	tr: [ 2, "<table><tbody>", "</tbody></table>" ],
4264
	td: [ 3, "<table><tbody><tr>", "</tr></tbody></table>" ],
4265
4266
	_default: [ 0, "", "" ]
4267
};
4268
4269
// Support: IE9
4270
wrapMap.optgroup = wrapMap.option;
4271
4272
wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead;
4273
wrapMap.th = wrapMap.td;
4274
4275
4276
function getAll( context, tag ) {
4277
4278
	// Support: IE9-11+
4279
	// Use typeof to avoid zero-argument method invocation on host objects (#15151)
4280
	var ret = typeof context.getElementsByTagName !== "undefined" ?
4281
			context.getElementsByTagName( tag || "*" ) :
4282
			typeof context.querySelectorAll !== "undefined" ?
4283
				context.querySelectorAll( tag || "*" ) :
4284
			[];
4285
4286
	return tag === undefined || tag && jQuery.nodeName( context, tag ) ?
4287
		jQuery.merge( [ context ], ret ) :
4288
		ret;
4289
}
4290
4291
4292
// Mark scripts as having already been evaluated
4293
function setGlobalEval( elems, refElements ) {
4294
	var i = 0,
4295
		l = elems.length;
4296
4297
	for ( ; i < l; i++ ) {
4298
		dataPriv.set(
4299
			elems[ i ],
4300
			"globalEval",
4301
			!refElements || dataPriv.get( refElements[ i ], "globalEval" )
4302
		);
4303
	}
4304
}
4305
4306
4307
var rhtml = /<|&#?\w+;/;
4308
4309
function buildFragment( elems, context, scripts, selection, ignored ) {
4310
	var elem, tmp, tag, wrap, contains, j,
4311
		fragment = context.createDocumentFragment(),
4312
		nodes = [],
4313
		i = 0,
4314
		l = elems.length;
4315
4316
	for ( ; i < l; i++ ) {
4317
		elem = elems[ i ];
4318
4319
		if ( elem || elem === 0 ) {
4320
4321
			// Add nodes directly
4322
			if ( jQuery.type( elem ) === "object" ) {
4323
4324
				// Support: Android<4.1, PhantomJS<2
4325
				// push.apply(_, arraylike) throws on ancient WebKit
4326
				jQuery.merge( nodes, elem.nodeType ? [ elem ] : elem );
4327
4328
			// Convert non-html into a text node
4329
			} else if ( !rhtml.test( elem ) ) {
4330
				nodes.push( context.createTextNode( elem ) );
4331
4332
			// Convert html into DOM nodes
4333
			} else {
4334
				tmp = tmp || fragment.appendChild( context.createElement( "div" ) );
4335
4336
				// Deserialize a standard representation
4337
				tag = ( rtagName.exec( elem ) || [ "", "" ] )[ 1 ].toLowerCase();
4338
				wrap = wrapMap[ tag ] || wrapMap._default;
4339
				tmp.innerHTML = wrap[ 1 ] + jQuery.htmlPrefilter( elem ) + wrap[ 2 ];
4340
4341
				// Descend through wrappers to the right content
4342
				j = wrap[ 0 ];
4343
				while ( j-- ) {
4344
					tmp = tmp.lastChild;
4345
				}
4346
4347
				// Support: Android<4.1, PhantomJS<2
4348
				// push.apply(_, arraylike) throws on ancient WebKit
4349
				jQuery.merge( nodes, tmp.childNodes );
4350
4351
				// Remember the top-level container
4352
				tmp = fragment.firstChild;
4353
4354
				// Ensure the created nodes are orphaned (#12392)
4355
				tmp.textContent = "";
4356
			}
4357
		}
4358
	}
4359
4360
	// Remove wrapper from fragment
4361
	fragment.textContent = "";
4362
4363
	i = 0;
4364
	while ( ( elem = nodes[ i++ ] ) ) {
4365
4366
		// Skip elements already in the context collection (trac-4087)
4367
		if ( selection && jQuery.inArray( elem, selection ) > -1 ) {
4368
			if ( ignored ) {
4369
				ignored.push( elem );
4370
			}
4371
			continue;
4372
		}
4373
4374
		contains = jQuery.contains( elem.ownerDocument, elem );
4375
4376
		// Append to fragment
4377
		tmp = getAll( fragment.appendChild( elem ), "script" );
4378
4379
		// Preserve script evaluation history
4380
		if ( contains ) {
4381
			setGlobalEval( tmp );
4382
		}
4383
4384
		// Capture executables
4385
		if ( scripts ) {
4386
			j = 0;
4387
			while ( ( elem = tmp[ j++ ] ) ) {
4388
				if ( rscriptType.test( elem.type || "" ) ) {
4389
					scripts.push( elem );
4390
				}
4391
			}
4392
		}
4393
	}
4394
4395
	return fragment;
4396
}
4397
4398
4399
( function() {
4400
	var fragment = document.createDocumentFragment(),
4401
		div = fragment.appendChild( document.createElement( "div" ) ),
4402
		input = document.createElement( "input" );
4403
4404
	// Support: Android 4.0-4.3, Safari<=5.1
4405
	// Check state lost if the name is set (#11217)
4406
	// Support: Windows Web Apps (WWA)
4407
	// `name` and `type` must use .setAttribute for WWA (#14901)
4408
	input.setAttribute( "type", "radio" );
4409
	input.setAttribute( "checked", "checked" );
4410
	input.setAttribute( "name", "t" );
4411
4412
	div.appendChild( input );
4413
4414
	// Support: Safari<=5.1, Android<4.2
4415
	// Older WebKit doesn't clone checked state correctly in fragments
4416
	support.checkClone = div.cloneNode( true ).cloneNode( true ).lastChild.checked;
4417
4418
	// Support: IE<=11+
4419
	// Make sure textarea (and checkbox) defaultValue is properly cloned
4420
	div.innerHTML = "<textarea>x</textarea>";
4421
	support.noCloneChecked = !!div.cloneNode( true ).lastChild.defaultValue;
4422
} )();
4423
4424
4425
var
4426
	rkeyEvent = /^key/,
4427
	rmouseEvent = /^(?:mouse|pointer|contextmenu|drag|drop)|click/,
4428
	rtypenamespace = /^([^.]*)(?:\.(.+)|)/;
4429
4430
function returnTrue() {
4431
	return true;
4432
}
4433
4434
function returnFalse() {
4435
	return false;
4436
}
4437
4438
// Support: IE9
4439
// See #13393 for more info
4440
function safeActiveElement() {
4441
	try {
4442
		return document.activeElement;
4443
	} catch ( err ) { }
4444
}
4445
4446
function on( elem, types, selector, data, fn, one ) {
4447
	var origFn, type;
4448
4449
	// Types can be a map of types/handlers
4450
	if ( typeof types === "object" ) {
4451
4452
		// ( types-Object, selector, data )
4453
		if ( typeof selector !== "string" ) {
4454
4455
			// ( types-Object, data )
4456
			data = data || selector;
4457
			selector = undefined;
4458
		}
4459
		for ( type in types ) {
4460
			on( elem, type, selector, data, types[ type ], one );
4461
		}
4462
		return elem;
4463
	}
4464
4465
	if ( data == null && fn == null ) {
4466
4467
		// ( types, fn )
4468
		fn = selector;
4469
		data = selector = undefined;
4470
	} else if ( fn == null ) {
4471
		if ( typeof selector === "string" ) {
4472
4473
			// ( types, selector, fn )
4474
			fn = data;
4475
			data = undefined;
4476
		} else {
4477
4478
			// ( types, data, fn )
4479
			fn = data;
4480
			data = selector;
4481
			selector = undefined;
4482
		}
4483
	}
4484
	if ( fn === false ) {
4485
		fn = returnFalse;
4486
	} else if ( !fn ) {
4487
		return elem;
4488
	}
4489
4490
	if ( one === 1 ) {
4491
		origFn = fn;
4492
		fn = function( event ) {
4493
4494
			// Can use an empty set, since event contains the info
4495
			jQuery().off( event );
4496
			return origFn.apply( this, arguments );
4497
		};
4498
4499
		// Use same guid so caller can remove using origFn
4500
		fn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ );
4501
	}
4502
	return elem.each( function() {
4503
		jQuery.event.add( this, types, fn, data, selector );
4504
	} );
4505
}
4506
4507
/*
4508
 * Helper functions for managing events -- not part of the public interface.
4509
 * Props to Dean Edwards' addEvent library for many of the ideas.
4510
 */
4511
jQuery.event = {
4512
4513
	global: {},
4514
4515
	add: function( elem, types, handler, data, selector ) {
4516
4517
		var handleObjIn, eventHandle, tmp,
4518
			events, t, handleObj,
4519
			special, handlers, type, namespaces, origType,
4520
			elemData = dataPriv.get( elem );
4521
4522
		// Don't attach events to noData or text/comment nodes (but allow plain objects)
4523
		if ( !elemData ) {
4524
			return;
4525
		}
4526
4527
		// Caller can pass in an object of custom data in lieu of the handler
4528
		if ( handler.handler ) {
4529
			handleObjIn = handler;
4530
			handler = handleObjIn.handler;
4531
			selector = handleObjIn.selector;
4532
		}
4533
4534
		// Make sure that the handler has a unique ID, used to find/remove it later
4535
		if ( !handler.guid ) {
4536
			handler.guid = jQuery.guid++;
4537
		}
4538
4539
		// Init the element's event structure and main handler, if this is the first
4540
		if ( !( events = elemData.events ) ) {
4541
			events = elemData.events = {};
4542
		}
4543
		if ( !( eventHandle = elemData.handle ) ) {
4544
			eventHandle = elemData.handle = function( e ) {
4545
4546
				// Discard the second event of a jQuery.event.trigger() and
4547
				// when an event is called after a page has unloaded
4548
				return typeof jQuery !== "undefined" && jQuery.event.triggered !== e.type ?
4549
					jQuery.event.dispatch.apply( elem, arguments ) : undefined;
4550
			};
4551
		}
4552
4553
		// Handle multiple events separated by a space
4554
		types = ( types || "" ).match( rnotwhite ) || [ "" ];
4555
		t = types.length;
4556
		while ( t-- ) {
4557
			tmp = rtypenamespace.exec( types[ t ] ) || [];
4558
			type = origType = tmp[ 1 ];
4559
			namespaces = ( tmp[ 2 ] || "" ).split( "." ).sort();
4560
4561
			// There *must* be a type, no attaching namespace-only handlers
4562
			if ( !type ) {
4563
				continue;
4564
			}
4565
4566
			// If event changes its type, use the special event handlers for the changed type
4567
			special = jQuery.event.special[ type ] || {};
4568
4569
			// If selector defined, determine special event api type, otherwise given type
4570
			type = ( selector ? special.delegateType : special.bindType ) || type;
4571
4572
			// Update special based on newly reset type
4573
			special = jQuery.event.special[ type ] || {};
4574
4575
			// handleObj is passed to all event handlers
4576
			handleObj = jQuery.extend( {
4577
				type: type,
4578
				origType: origType,
4579
				data: data,
4580
				handler: handler,
4581
				guid: handler.guid,
4582
				selector: selector,
4583
				needsContext: selector && jQuery.expr.match.needsContext.test( selector ),
4584
				namespace: namespaces.join( "." )
4585
			}, handleObjIn );
4586
4587
			// Init the event handler queue if we're the first
4588
			if ( !( handlers = events[ type ] ) ) {
4589
				handlers = events[ type ] = [];
4590
				handlers.delegateCount = 0;
4591
4592
				// Only use addEventListener if the special events handler returns false
4593
				if ( !special.setup ||
4594
					special.setup.call( elem, data, namespaces, eventHandle ) === false ) {
4595
4596
					if ( elem.addEventListener ) {
4597
						elem.addEventListener( type, eventHandle );
4598
					}
4599
				}
4600
			}
4601
4602
			if ( special.add ) {
4603
				special.add.call( elem, handleObj );
4604
4605
				if ( !handleObj.handler.guid ) {
4606
					handleObj.handler.guid = handler.guid;
4607
				}
4608
			}
4609
4610
			// Add to the element's handler list, delegates in front
4611
			if ( selector ) {
4612
				handlers.splice( handlers.delegateCount++, 0, handleObj );
4613
			} else {
4614
				handlers.push( handleObj );
4615
			}
4616
4617
			// Keep track of which events have ever been used, for event optimization
4618
			jQuery.event.global[ type ] = true;
4619
		}
4620
4621
	},
4622
4623
	// Detach an event or set of events from an element
4624
	remove: function( elem, types, handler, selector, mappedTypes ) {
4625
4626
		var j, origCount, tmp,
4627
			events, t, handleObj,
4628
			special, handlers, type, namespaces, origType,
4629
			elemData = dataPriv.hasData( elem ) && dataPriv.get( elem );
4630
4631
		if ( !elemData || !( events = elemData.events ) ) {
4632
			return;
4633
		}
4634
4635
		// Once for each type.namespace in types; type may be omitted
4636
		types = ( types || "" ).match( rnotwhite ) || [ "" ];
4637
		t = types.length;
4638
		while ( t-- ) {
4639
			tmp = rtypenamespace.exec( types[ t ] ) || [];
4640
			type = origType = tmp[ 1 ];
4641
			namespaces = ( tmp[ 2 ] || "" ).split( "." ).sort();
4642
4643
			// Unbind all events (on this namespace, if provided) for the element
4644
			if ( !type ) {
4645
				for ( type in events ) {
4646
					jQuery.event.remove( elem, type + types[ t ], handler, selector, true );
4647
				}
4648
				continue;
4649
			}
4650
4651
			special = jQuery.event.special[ type ] || {};
4652
			type = ( selector ? special.delegateType : special.bindType ) || type;
4653
			handlers = events[ type ] || [];
4654
			tmp = tmp[ 2 ] &&
4655
				new RegExp( "(^|\\.)" + namespaces.join( "\\.(?:.*\\.|)" ) + "(\\.|$)" );
4656
4657
			// Remove matching events
4658
			origCount = j = handlers.length;
4659
			while ( j-- ) {
4660
				handleObj = handlers[ j ];
4661
4662
				if ( ( mappedTypes || origType === handleObj.origType ) &&
4663
					( !handler || handler.guid === handleObj.guid ) &&
4664
					( !tmp || tmp.test( handleObj.namespace ) ) &&
4665
					( !selector || selector === handleObj.selector ||
4666
						selector === "**" && handleObj.selector ) ) {
4667
					handlers.splice( j, 1 );
4668
4669
					if ( handleObj.selector ) {
4670
						handlers.delegateCount--;
4671
					}
4672
					if ( special.remove ) {
4673
						special.remove.call( elem, handleObj );
4674
					}
4675
				}
4676
			}
4677
4678
			// Remove generic event handler if we removed something and no more handlers exist
4679
			// (avoids potential for endless recursion during removal of special event handlers)
4680
			if ( origCount && !handlers.length ) {
4681
				if ( !special.teardown ||
4682
					special.teardown.call( elem, namespaces, elemData.handle ) === false ) {
4683
4684
					jQuery.removeEvent( elem, type, elemData.handle );
4685
				}
4686
4687
				delete events[ type ];
4688
			}
4689
		}
4690
4691
		// Remove data and the expando if it's no longer used
4692
		if ( jQuery.isEmptyObject( events ) ) {
4693
			dataPriv.remove( elem, "handle events" );
4694
		}
4695
	},
4696
4697
	dispatch: function( event ) {
4698
4699
		// Make a writable jQuery.Event from the native event object
4700
		event = jQuery.event.fix( event );
4701
4702
		var i, j, ret, matched, handleObj,
4703
			handlerQueue = [],
4704
			args = slice.call( arguments ),
4705
			handlers = ( dataPriv.get( this, "events" ) || {} )[ event.type ] || [],
4706
			special = jQuery.event.special[ event.type ] || {};
4707
4708
		// Use the fix-ed jQuery.Event rather than the (read-only) native event
4709
		args[ 0 ] = event;
4710
		event.delegateTarget = this;
4711
4712
		// Call the preDispatch hook for the mapped type, and let it bail if desired
4713
		if ( special.preDispatch && special.preDispatch.call( this, event ) === false ) {
4714
			return;
4715
		}
4716
4717
		// Determine handlers
4718
		handlerQueue = jQuery.event.handlers.call( this, event, handlers );
4719
4720
		// Run delegates first; they may want to stop propagation beneath us
4721
		i = 0;
4722
		while ( ( matched = handlerQueue[ i++ ] ) && !event.isPropagationStopped() ) {
4723
			event.currentTarget = matched.elem;
4724
4725
			j = 0;
4726
			while ( ( handleObj = matched.handlers[ j++ ] ) &&
4727
				!event.isImmediatePropagationStopped() ) {
4728
4729
				// Triggered event must either 1) have no namespace, or 2) have namespace(s)
4730
				// a subset or equal to those in the bound event (both can have no namespace).
4731
				if ( !event.rnamespace || event.rnamespace.test( handleObj.namespace ) ) {
4732
4733
					event.handleObj = handleObj;
4734
					event.data = handleObj.data;
4735
4736
					ret = ( ( jQuery.event.special[ handleObj.origType ] || {} ).handle ||
4737
						handleObj.handler ).apply( matched.elem, args );
4738
4739
					if ( ret !== undefined ) {
4740
						if ( ( event.result = ret ) === false ) {
4741
							event.preventDefault();
4742
							event.stopPropagation();
4743
						}
4744
					}
4745
				}
4746
			}
4747
		}
4748
4749
		// Call the postDispatch hook for the mapped type
4750
		if ( special.postDispatch ) {
4751
			special.postDispatch.call( this, event );
4752
		}
4753
4754
		return event.result;
4755
	},
4756
4757
	handlers: function( event, handlers ) {
4758
		var i, matches, sel, handleObj,
4759
			handlerQueue = [],
4760
			delegateCount = handlers.delegateCount,
4761
			cur = event.target;
4762
4763
		// Support (at least): Chrome, IE9
4764
		// Find delegate handlers
4765
		// Black-hole SVG <use> instance trees (#13180)
4766
		//
4767
		// Support: Firefox<=42+
4768
		// Avoid non-left-click in FF but don't block IE radio events (#3861, gh-2343)
4769
		if ( delegateCount && cur.nodeType &&
4770
			( event.type !== "click" || isNaN( event.button ) || event.button < 1 ) ) {
4771
4772
			for ( ; cur !== this; cur = cur.parentNode || this ) {
4773
4774
				// Don't check non-elements (#13208)
4775
				// Don't process clicks on disabled elements (#6911, #8165, #11382, #11764)
4776
				if ( cur.nodeType === 1 && ( cur.disabled !== true || event.type !== "click" ) ) {
4777
					matches = [];
4778
					for ( i = 0; i < delegateCount; i++ ) {
4779
						handleObj = handlers[ i ];
4780
4781
						// Don't conflict with Object.prototype properties (#13203)
4782
						sel = handleObj.selector + " ";
4783
4784
						if ( matches[ sel ] === undefined ) {
4785
							matches[ sel ] = handleObj.needsContext ?
4786
								jQuery( sel, this ).index( cur ) > -1 :
4787
								jQuery.find( sel, this, null, [ cur ] ).length;
4788
						}
4789
						if ( matches[ sel ] ) {
4790
							matches.push( handleObj );
4791
						}
4792
					}
4793
					if ( matches.length ) {
4794
						handlerQueue.push( { elem: cur, handlers: matches } );
4795
					}
4796
				}
4797
			}
4798
		}
4799
4800
		// Add the remaining (directly-bound) handlers
4801
		if ( delegateCount < handlers.length ) {
4802
			handlerQueue.push( { elem: this, handlers: handlers.slice( delegateCount ) } );
4803
		}
4804
4805
		return handlerQueue;
4806
	},
4807
4808
	// Includes some event props shared by KeyEvent and MouseEvent
4809
	props: ( "altKey bubbles cancelable ctrlKey currentTarget detail eventPhase " +
4810
		"metaKey relatedTarget shiftKey target timeStamp view which" ).split( " " ),
4811
4812
	fixHooks: {},
4813
4814
	keyHooks: {
4815
		props: "char charCode key keyCode".split( " " ),
4816
		filter: function( event, original ) {
4817
4818
			// Add which for key events
4819
			if ( event.which == null ) {
4820
				event.which = original.charCode != null ? original.charCode : original.keyCode;
4821
			}
4822
4823
			return event;
4824
		}
4825
	},
4826
4827
	mouseHooks: {
4828
		props: ( "button buttons clientX clientY offsetX offsetY pageX pageY " +
4829
			"screenX screenY toElement" ).split( " " ),
4830
		filter: function( event, original ) {
4831
			var eventDoc, doc, body,
4832
				button = original.button;
4833
4834
			// Calculate pageX/Y if missing and clientX/Y available
4835
			if ( event.pageX == null && original.clientX != null ) {
4836
				eventDoc = event.target.ownerDocument || document;
4837
				doc = eventDoc.documentElement;
4838
				body = eventDoc.body;
4839
4840
				event.pageX = original.clientX +
4841
					( doc && doc.scrollLeft || body && body.scrollLeft || 0 ) -
4842
					( doc && doc.clientLeft || body && body.clientLeft || 0 );
4843
				event.pageY = original.clientY +
4844
					( doc && doc.scrollTop  || body && body.scrollTop  || 0 ) -
4845
					( doc && doc.clientTop  || body && body.clientTop  || 0 );
4846
			}
4847
4848
			// Add which for click: 1 === left; 2 === middle; 3 === right
4849
			// Note: button is not normalized, so don't use it
4850
			if ( !event.which && button !== undefined ) {
4851
				event.which = ( button & 1 ? 1 : ( button & 2 ? 3 : ( button & 4 ? 2 : 0 ) ) );
4852
			}
4853
4854
			return event;
4855
		}
4856
	},
4857
4858
	fix: function( event ) {
4859
		if ( event[ jQuery.expando ] ) {
4860
			return event;
4861
		}
4862
4863
		// Create a writable copy of the event object and normalize some properties
4864
		var i, prop, copy,
4865
			type = event.type,
4866
			originalEvent = event,
4867
			fixHook = this.fixHooks[ type ];
4868
4869
		if ( !fixHook ) {
4870
			this.fixHooks[ type ] = fixHook =
4871
				rmouseEvent.test( type ) ? this.mouseHooks :
4872
				rkeyEvent.test( type ) ? this.keyHooks :
4873
				{};
4874
		}
4875
		copy = fixHook.props ? this.props.concat( fixHook.props ) : this.props;
4876
4877
		event = new jQuery.Event( originalEvent );
4878
4879
		i = copy.length;
4880
		while ( i-- ) {
4881
			prop = copy[ i ];
4882
			event[ prop ] = originalEvent[ prop ];
4883
		}
4884
4885
		// Support: Cordova 2.5 (WebKit) (#13255)
4886
		// All events should have a target; Cordova deviceready doesn't
4887
		if ( !event.target ) {
4888
			event.target = document;
4889
		}
4890
4891
		// Support: Safari 6.0+, Chrome<28
4892
		// Target should not be a text node (#504, #13143)
4893
		if ( event.target.nodeType === 3 ) {
4894
			event.target = event.target.parentNode;
4895
		}
4896
4897
		return fixHook.filter ? fixHook.filter( event, originalEvent ) : event;
4898
	},
4899
4900
	special: {
4901
		load: {
4902
4903
			// Prevent triggered image.load events from bubbling to window.load
4904
			noBubble: true
4905
		},
4906
		focus: {
4907
4908
			// Fire native event if possible so blur/focus sequence is correct
4909
			trigger: function() {
4910
				if ( this !== safeActiveElement() && this.focus ) {
4911
					this.focus();
4912
					return false;
4913
				}
4914
			},
4915
			delegateType: "focusin"
4916
		},
4917
		blur: {
4918
			trigger: function() {
4919
				if ( this === safeActiveElement() && this.blur ) {
4920
					this.blur();
4921
					return false;
4922
				}
4923
			},
4924
			delegateType: "focusout"
4925
		},
4926
		click: {
4927
4928
			// For checkbox, fire native event so checked state will be right
4929
			trigger: function() {
4930
				if ( this.type === "checkbox" && this.click && jQuery.nodeName( this, "input" ) ) {
4931
					this.click();
4932
					return false;
4933
				}
4934
			},
4935
4936
			// For cross-browser consistency, don't fire native .click() on links
4937
			_default: function( event ) {
4938
				return jQuery.nodeName( event.target, "a" );
4939
			}
4940
		},
4941
4942
		beforeunload: {
4943
			postDispatch: function( event ) {
4944
4945
				// Support: Firefox 20+
4946
				// Firefox doesn't alert if the returnValue field is not set.
4947
				if ( event.result !== undefined && event.originalEvent ) {
4948
					event.originalEvent.returnValue = event.result;
4949
				}
4950
			}
4951
		}
4952
	}
4953
};
4954
4955
jQuery.removeEvent = function( elem, type, handle ) {
4956
4957
	// This "if" is needed for plain objects
4958
	if ( elem.removeEventListener ) {
4959
		elem.removeEventListener( type, handle );
4960
	}
4961
};
4962
4963
jQuery.Event = function( src, props ) {
4964
4965
	// Allow instantiation without the 'new' keyword
4966
	if ( !( this instanceof jQuery.Event ) ) {
4967
		return new jQuery.Event( src, props );
4968
	}
4969
4970
	// Event object
4971
	if ( src && src.type ) {
4972
		this.originalEvent = src;
4973
		this.type = src.type;
4974
4975
		// Events bubbling up the document may have been marked as prevented
4976
		// by a handler lower down the tree; reflect the correct value.
4977
		this.isDefaultPrevented = src.defaultPrevented ||
4978
				src.defaultPrevented === undefined &&
4979
4980
				// Support: Android<4.0
4981
				src.returnValue === false ?
4982
			returnTrue :
4983
			returnFalse;
4984
4985
	// Event type
4986
	} else {
4987
		this.type = src;
4988
	}
4989
4990
	// Put explicitly provided properties onto the event object
4991
	if ( props ) {
4992
		jQuery.extend( this, props );
4993
	}
4994
4995
	// Create a timestamp if incoming event doesn't have one
4996
	this.timeStamp = src && src.timeStamp || jQuery.now();
4997
4998
	// Mark it as fixed
4999
	this[ jQuery.expando ] = true;
5000
};
5001
5002
// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding
5003
// http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html
5004
jQuery.Event.prototype = {
5005
	constructor: jQuery.Event,
5006
	isDefaultPrevented: returnFalse,
5007
	isPropagationStopped: returnFalse,
5008
	isImmediatePropagationStopped: returnFalse,
5009
5010
	preventDefault: function() {
5011
		var e = this.originalEvent;
5012
5013
		this.isDefaultPrevented = returnTrue;
5014
5015
		if ( e ) {
5016
			e.preventDefault();
5017
		}
5018
	},
5019
	stopPropagation: function() {
5020
		var e = this.originalEvent;
5021
5022
		this.isPropagationStopped = returnTrue;
5023
5024
		if ( e ) {
5025
			e.stopPropagation();
5026
		}
5027
	},
5028
	stopImmediatePropagation: function() {
5029
		var e = this.originalEvent;
5030
5031
		this.isImmediatePropagationStopped = returnTrue;
5032
5033
		if ( e ) {
5034
			e.stopImmediatePropagation();
5035
		}
5036
5037
		this.stopPropagation();
5038
	}
5039
};
5040
5041
// Create mouseenter/leave events using mouseover/out and event-time checks
5042
// so that event delegation works in jQuery.
5043
// Do the same for pointerenter/pointerleave and pointerover/pointerout
5044
//
5045
// Support: Safari 7 only
5046
// Safari sends mouseenter too often; see:
5047
// https://code.google.com/p/chromium/issues/detail?id=470258
5048
// for the description of the bug (it existed in older Chrome versions as well).
5049
jQuery.each( {
5050
	mouseenter: "mouseover",
5051
	mouseleave: "mouseout",
5052
	pointerenter: "pointerover",
5053
	pointerleave: "pointerout"
5054
}, function( orig, fix ) {
5055
	jQuery.event.special[ orig ] = {
5056
		delegateType: fix,
5057
		bindType: fix,
5058
5059
		handle: function( event ) {
5060
			var ret,
5061
				target = this,
5062
				related = event.relatedTarget,
5063
				handleObj = event.handleObj;
5064
5065
			// For mouseenter/leave call the handler if related is outside the target.
5066
			// NB: No relatedTarget if the mouse left/entered the browser window
5067
			if ( !related || ( related !== target && !jQuery.contains( target, related ) ) ) {
5068
				event.type = handleObj.origType;
5069
				ret = handleObj.handler.apply( this, arguments );
5070
				event.type = fix;
5071
			}
5072
			return ret;
5073
		}
5074
	};
5075
} );
5076
5077
jQuery.fn.extend( {
5078
	on: function( types, selector, data, fn ) {
5079
		return on( this, types, selector, data, fn );
5080
	},
5081
	one: function( types, selector, data, fn ) {
5082
		return on( this, types, selector, data, fn, 1 );
5083
	},
5084
	off: function( types, selector, fn ) {
5085
		var handleObj, type;
5086
		if ( types && types.preventDefault && types.handleObj ) {
5087
5088
			// ( event )  dispatched jQuery.Event
5089
			handleObj = types.handleObj;
5090
			jQuery( types.delegateTarget ).off(
5091
				handleObj.namespace ?
5092
					handleObj.origType + "." + handleObj.namespace :
5093
					handleObj.origType,
5094
				handleObj.selector,
5095
				handleObj.handler
5096
			);
5097
			return this;
5098
		}
5099
		if ( typeof types === "object" ) {
5100
5101
			// ( types-object [, selector] )
5102
			for ( type in types ) {
5103
				this.off( type, selector, types[ type ] );
5104
			}
5105
			return this;
5106
		}
5107
		if ( selector === false || typeof selector === "function" ) {
5108
5109
			// ( types [, fn] )
5110
			fn = selector;
5111
			selector = undefined;
5112
		}
5113
		if ( fn === false ) {
5114
			fn = returnFalse;
5115
		}
5116
		return this.each( function() {
5117
			jQuery.event.remove( this, types, fn, selector );
5118
		} );
5119
	}
5120
} );
5121
5122
5123
var
5124
	rxhtmlTag = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:-]+)[^>]*)\/>/gi,
5125
5126
	// Support: IE 10-11, Edge 10240+
5127
	// In IE/Edge using regex groups here causes severe slowdowns.
5128
	// See https://connect.microsoft.com/IE/feedback/details/1736512/
5129
	rnoInnerhtml = /<script|<style|<link/i,
5130
5131
	// checked="checked" or checked
5132
	rchecked = /checked\s*(?:[^=]|=\s*.checked.)/i,
5133
	rscriptTypeMasked = /^true\/(.*)/,
5134
	rcleanScript = /^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g;
5135
5136
// Manipulating tables requires a tbody
5137
function manipulationTarget( elem, content ) {
5138
	return jQuery.nodeName( elem, "table" ) &&
5139
		jQuery.nodeName( content.nodeType !== 11 ? content : content.firstChild, "tr" ) ?
5140
5141
		elem.getElementsByTagName( "tbody" )[ 0 ] ||
5142
			elem.appendChild( elem.ownerDocument.createElement( "tbody" ) ) :
5143
		elem;
5144
}
5145
5146
// Replace/restore the type attribute of script elements for safe DOM manipulation
5147
function disableScript( elem ) {
5148
	elem.type = ( elem.getAttribute( "type" ) !== null ) + "/" + elem.type;
5149
	return elem;
5150
}
5151
function restoreScript( elem ) {
5152
	var match = rscriptTypeMasked.exec( elem.type );
5153
5154
	if ( match ) {
5155
		elem.type = match[ 1 ];
5156
	} else {
5157
		elem.removeAttribute( "type" );
5158
	}
5159
5160
	return elem;
5161
}
5162
5163
function cloneCopyEvent( src, dest ) {
5164
	var i, l, type, pdataOld, pdataCur, udataOld, udataCur, events;
5165
5166
	if ( dest.nodeType !== 1 ) {
5167
		return;
5168
	}
5169
5170
	// 1. Copy private data: events, handlers, etc.
5171
	if ( dataPriv.hasData( src ) ) {
5172
		pdataOld = dataPriv.access( src );
5173
		pdataCur = dataPriv.set( dest, pdataOld );
5174
		events = pdataOld.events;
5175
5176
		if ( events ) {
5177
			delete pdataCur.handle;
5178
			pdataCur.events = {};
5179
5180
			for ( type in events ) {
5181
				for ( i = 0, l = events[ type ].length; i < l; i++ ) {
5182
					jQuery.event.add( dest, type, events[ type ][ i ] );
5183
				}
5184
			}
5185
		}
5186
	}
5187
5188
	// 2. Copy user data
5189
	if ( dataUser.hasData( src ) ) {
5190
		udataOld = dataUser.access( src );
5191
		udataCur = jQuery.extend( {}, udataOld );
5192
5193
		dataUser.set( dest, udataCur );
5194
	}
5195
}
5196
5197
// Fix IE bugs, see support tests
5198
function fixInput( src, dest ) {
5199
	var nodeName = dest.nodeName.toLowerCase();
5200
5201
	// Fails to persist the checked state of a cloned checkbox or radio button.
5202
	if ( nodeName === "input" && rcheckableType.test( src.type ) ) {
5203
		dest.checked = src.checked;
5204
5205
	// Fails to return the selected option to the default selected state when cloning options
5206
	} else if ( nodeName === "input" || nodeName === "textarea" ) {
5207
		dest.defaultValue = src.defaultValue;
5208
	}
5209
}
5210
5211
function domManip( collection, args, callback, ignored ) {
5212
5213
	// Flatten any nested arrays
5214
	args = concat.apply( [], args );
5215
5216
	var fragment, first, scripts, hasScripts, node, doc,
5217
		i = 0,
5218
		l = collection.length,
5219
		iNoClone = l - 1,
5220
		value = args[ 0 ],
5221
		isFunction = jQuery.isFunction( value );
5222
5223
	// We can't cloneNode fragments that contain checked, in WebKit
5224
	if ( isFunction ||
5225
			( l > 1 && typeof value === "string" &&
5226
				!support.checkClone && rchecked.test( value ) ) ) {
5227
		return collection.each( function( index ) {
5228
			var self = collection.eq( index );
5229
			if ( isFunction ) {
5230
				args[ 0 ] = value.call( this, index, self.html() );
5231
			}
5232
			domManip( self, args, callback, ignored );
5233
		} );
5234
	}
5235
5236
	if ( l ) {
5237
		fragment = buildFragment( args, collection[ 0 ].ownerDocument, false, collection, ignored );
5238
		first = fragment.firstChild;
5239
5240
		if ( fragment.childNodes.length === 1 ) {
5241
			fragment = first;
5242
		}
5243
5244
		// Require either new content or an interest in ignored elements to invoke the callback
5245
		if ( first || ignored ) {
5246
			scripts = jQuery.map( getAll( fragment, "script" ), disableScript );
5247
			hasScripts = scripts.length;
5248
5249
			// Use the original fragment for the last item
5250
			// instead of the first because it can end up
5251
			// being emptied incorrectly in certain situations (#8070).
5252
			for ( ; i < l; i++ ) {
5253
				node = fragment;
5254
5255
				if ( i !== iNoClone ) {
5256
					node = jQuery.clone( node, true, true );
5257
5258
					// Keep references to cloned scripts for later restoration
5259
					if ( hasScripts ) {
5260
5261
						// Support: Android<4.1, PhantomJS<2
5262
						// push.apply(_, arraylike) throws on ancient WebKit
5263
						jQuery.merge( scripts, getAll( node, "script" ) );
5264
					}
5265
				}
5266
5267
				callback.call( collection[ i ], node, i );
5268
			}
5269
5270
			if ( hasScripts ) {
5271
				doc = scripts[ scripts.length - 1 ].ownerDocument;
5272
5273
				// Reenable scripts
5274
				jQuery.map( scripts, restoreScript );
5275
5276
				// Evaluate executable scripts on first document insertion
5277
				for ( i = 0; i < hasScripts; i++ ) {
5278
					node = scripts[ i ];
5279
					if ( rscriptType.test( node.type || "" ) &&
5280
						!dataPriv.access( node, "globalEval" ) &&
5281
						jQuery.contains( doc, node ) ) {
5282
5283
						if ( node.src ) {
5284
5285
							// Optional AJAX dependency, but won't run scripts if not present
5286
							if ( jQuery._evalUrl ) {
5287
								jQuery._evalUrl( node.src );
5288
							}
5289
						} else {
5290
							jQuery.globalEval( node.textContent.replace( rcleanScript, "" ) );
5291
						}
5292
					}
5293
				}
5294
			}
5295
		}
5296
	}
5297
5298
	return collection;
5299
}
5300
5301
function remove( elem, selector, keepData ) {
5302
	var node,
5303
		nodes = selector ? jQuery.filter( selector, elem ) : elem,
5304
		i = 0;
5305
5306
	for ( ; ( node = nodes[ i ] ) != null; i++ ) {
5307
		if ( !keepData && node.nodeType === 1 ) {
5308
			jQuery.cleanData( getAll( node ) );
5309
		}
5310
5311
		if ( node.parentNode ) {
5312
			if ( keepData && jQuery.contains( node.ownerDocument, node ) ) {
5313
				setGlobalEval( getAll( node, "script" ) );
5314
			}
5315
			node.parentNode.removeChild( node );
5316
		}
5317
	}
5318
5319
	return elem;
5320
}
5321
5322
jQuery.extend( {
5323
	htmlPrefilter: function( html ) {
5324
		return html.replace( rxhtmlTag, "<$1></$2>" );
5325
	},
5326
5327
	clone: function( elem, dataAndEvents, deepDataAndEvents ) {
5328
		var i, l, srcElements, destElements,
5329
			clone = elem.cloneNode( true ),
5330
			inPage = jQuery.contains( elem.ownerDocument, elem );
5331
5332
		// Fix IE cloning issues
5333
		if ( !support.noCloneChecked && ( elem.nodeType === 1 || elem.nodeType === 11 ) &&
5334
				!jQuery.isXMLDoc( elem ) ) {
5335
5336
			// We eschew Sizzle here for performance reasons: http://jsperf.com/getall-vs-sizzle/2
5337
			destElements = getAll( clone );
5338
			srcElements = getAll( elem );
5339
5340
			for ( i = 0, l = srcElements.length; i < l; i++ ) {
5341
				fixInput( srcElements[ i ], destElements[ i ] );
5342
			}
5343
		}
5344
5345
		// Copy the events from the original to the clone
5346
		if ( dataAndEvents ) {
5347
			if ( deepDataAndEvents ) {
5348
				srcElements = srcElements || getAll( elem );
5349
				destElements = destElements || getAll( clone );
5350
5351
				for ( i = 0, l = srcElements.length; i < l; i++ ) {
5352
					cloneCopyEvent( srcElements[ i ], destElements[ i ] );
5353
				}
5354
			} else {
5355
				cloneCopyEvent( elem, clone );
5356
			}
5357
		}
5358
5359
		// Preserve script evaluation history
5360
		destElements = getAll( clone, "script" );
5361
		if ( destElements.length > 0 ) {
5362
			setGlobalEval( destElements, !inPage && getAll( elem, "script" ) );
5363
		}
5364
5365
		// Return the cloned set
5366
		return clone;
5367
	},
5368
5369
	cleanData: function( elems ) {
5370
		var data, elem, type,
5371
			special = jQuery.event.special,
5372
			i = 0;
5373
5374
		for ( ; ( elem = elems[ i ] ) !== undefined; i++ ) {
5375
			if ( acceptData( elem ) ) {
5376
				if ( ( data = elem[ dataPriv.expando ] ) ) {
5377
					if ( data.events ) {
5378
						for ( type in data.events ) {
5379
							if ( special[ type ] ) {
5380
								jQuery.event.remove( elem, type );
5381
5382
							// This is a shortcut to avoid jQuery.event.remove's overhead
5383
							} else {
5384
								jQuery.removeEvent( elem, type, data.handle );
5385
							}
5386
						}
5387
					}
5388
5389
					// Support: Chrome <= 35-45+
5390
					// Assign undefined instead of using delete, see Data#remove
5391
					elem[ dataPriv.expando ] = undefined;
5392
				}
5393
				if ( elem[ dataUser.expando ] ) {
5394
5395
					// Support: Chrome <= 35-45+
5396
					// Assign undefined instead of using delete, see Data#remove
5397
					elem[ dataUser.expando ] = undefined;
5398
				}
5399
			}
5400
		}
5401
	}
5402
} );
5403
5404
jQuery.fn.extend( {
5405
5406
	// Keep domManip exposed until 3.0 (gh-2225)
5407
	domManip: domManip,
5408
5409
	detach: function( selector ) {
5410
		return remove( this, selector, true );
5411
	},
5412
5413
	remove: function( selector ) {
5414
		return remove( this, selector );
5415
	},
5416
5417
	text: function( value ) {
5418
		return access( this, function( value ) {
5419
			return value === undefined ?
5420
				jQuery.text( this ) :
5421
				this.empty().each( function() {
5422
					if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {
5423
						this.textContent = value;
5424
					}
5425
				} );
5426
		}, null, value, arguments.length );
5427
	},
5428
5429
	append: function() {
5430
		return domManip( this, arguments, function( elem ) {
5431
			if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {
5432
				var target = manipulationTarget( this, elem );
5433
				target.appendChild( elem );
5434
			}
5435
		} );
5436
	},
5437
5438
	prepend: function() {
5439
		return domManip( this, arguments, function( elem ) {
5440
			if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {
5441
				var target = manipulationTarget( this, elem );
5442
				target.insertBefore( elem, target.firstChild );
5443
			}
5444
		} );
5445
	},
5446
5447
	before: function() {
5448
		return domManip( this, arguments, function( elem ) {
5449
			if ( this.parentNode ) {
5450
				this.parentNode.insertBefore( elem, this );
5451
			}
5452
		} );
5453
	},
5454
5455
	after: function() {
5456
		return domManip( this, arguments, function( elem ) {
5457
			if ( this.parentNode ) {
5458
				this.parentNode.insertBefore( elem, this.nextSibling );
5459
			}
5460
		} );
5461
	},
5462
5463
	empty: function() {
5464
		var elem,
5465
			i = 0;
5466
5467
		for ( ; ( elem = this[ i ] ) != null; i++ ) {
5468
			if ( elem.nodeType === 1 ) {
5469
5470
				// Prevent memory leaks
5471
				jQuery.cleanData( getAll( elem, false ) );
5472
5473
				// Remove any remaining nodes
5474
				elem.textContent = "";
5475
			}
5476
		}
5477
5478
		return this;
5479
	},
5480
5481
	clone: function( dataAndEvents, deepDataAndEvents ) {
5482
		dataAndEvents = dataAndEvents == null ? false : dataAndEvents;
5483
		deepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents;
5484
5485
		return this.map( function() {
5486
			return jQuery.clone( this, dataAndEvents, deepDataAndEvents );
5487
		} );
5488
	},
5489
5490
	html: function( value ) {
5491
		return access( this, function( value ) {
5492
			var elem = this[ 0 ] || {},
5493
				i = 0,
5494
				l = this.length;
5495
5496
			if ( value === undefined && elem.nodeType === 1 ) {
5497
				return elem.innerHTML;
5498
			}
5499
5500
			// See if we can take a shortcut and just use innerHTML
5501
			if ( typeof value === "string" && !rnoInnerhtml.test( value ) &&
5502
				!wrapMap[ ( rtagName.exec( value ) || [ "", "" ] )[ 1 ].toLowerCase() ] ) {
5503
5504
				value = jQuery.htmlPrefilter( value );
5505
5506
				try {
5507
					for ( ; i < l; i++ ) {
5508
						elem = this[ i ] || {};
5509
5510
						// Remove element nodes and prevent memory leaks
5511
						if ( elem.nodeType === 1 ) {
5512
							jQuery.cleanData( getAll( elem, false ) );
5513
							elem.innerHTML = value;
5514
						}
5515
					}
5516
5517
					elem = 0;
5518
5519
				// If using innerHTML throws an exception, use the fallback method
5520
				} catch ( e ) {}
5521
			}
5522
5523
			if ( elem ) {
5524
				this.empty().append( value );
5525
			}
5526
		}, null, value, arguments.length );
5527
	},
5528
5529
	replaceWith: function() {
5530
		var ignored = [];
5531
5532
		// Make the changes, replacing each non-ignored context element with the new content
5533
		return domManip( this, arguments, function( elem ) {
5534
			var parent = this.parentNode;
5535
5536
			if ( jQuery.inArray( this, ignored ) < 0 ) {
5537
				jQuery.cleanData( getAll( this ) );
5538
				if ( parent ) {
5539
					parent.replaceChild( elem, this );
5540
				}
5541
			}
5542
5543
		// Force callback invocation
5544
		}, ignored );
5545
	}
5546
} );
5547
5548
jQuery.each( {
5549
	appendTo: "append",
5550
	prependTo: "prepend",
5551
	insertBefore: "before",
5552
	insertAfter: "after",
5553
	replaceAll: "replaceWith"
5554
}, function( name, original ) {
5555
	jQuery.fn[ name ] = function( selector ) {
5556
		var elems,
5557
			ret = [],
5558
			insert = jQuery( selector ),
5559
			last = insert.length - 1,
5560
			i = 0;
5561
5562
		for ( ; i <= last; i++ ) {
5563
			elems = i === last ? this : this.clone( true );
5564
			jQuery( insert[ i ] )[ original ]( elems );
5565
5566
			// Support: QtWebKit
5567
			// .get() because push.apply(_, arraylike) throws
5568
			push.apply( ret, elems.get() );
5569
		}
5570
5571
		return this.pushStack( ret );
5572
	};
5573
} );
5574
5575
5576
var iframe,
5577
	elemdisplay = {
5578
5579
		// Support: Firefox
5580
		// We have to pre-define these values for FF (#10227)
5581
		HTML: "block",
5582
		BODY: "block"
5583
	};
5584
5585
/**
5586
 * Retrieve the actual display of a element
5587
 * @param {String} name nodeName of the element
5588
 * @param {Object} doc Document object
5589
 */
5590
5591
// Called only from within defaultDisplay
5592
function actualDisplay( name, doc ) {
5593
	var elem = jQuery( doc.createElement( name ) ).appendTo( doc.body ),
5594
5595
		display = jQuery.css( elem[ 0 ], "display" );
5596
5597
	// We don't have any data stored on the element,
5598
	// so use "detach" method as fast way to get rid of the element
5599
	elem.detach();
5600
5601
	return display;
5602
}
5603
5604
/**
5605
 * Try to determine the default display value of an element
5606
 * @param {String} nodeName
5607
 */
5608
function defaultDisplay( nodeName ) {
5609
	var doc = document,
5610
		display = elemdisplay[ nodeName ];
5611
5612
	if ( !display ) {
5613
		display = actualDisplay( nodeName, doc );
5614
5615
		// If the simple way fails, read from inside an iframe
5616
		if ( display === "none" || !display ) {
5617
5618
			// Use the already-created iframe if possible
5619
			iframe = ( iframe || jQuery( "<iframe frameborder='0' width='0' height='0'/>" ) )
5620
				.appendTo( doc.documentElement );
5621
5622
			// Always write a new HTML skeleton so Webkit and Firefox don't choke on reuse
5623
			doc = iframe[ 0 ].contentDocument;
5624
5625
			// Support: IE
5626
			doc.write();
5627
			doc.close();
5628
5629
			display = actualDisplay( nodeName, doc );
5630
			iframe.detach();
5631
		}
5632
5633
		// Store the correct default display
5634
		elemdisplay[ nodeName ] = display;
5635
	}
5636
5637
	return display;
5638
}
5639
var rmargin = ( /^margin/ );
5640
5641
var rnumnonpx = new RegExp( "^(" + pnum + ")(?!px)[a-z%]+$", "i" );
5642
5643
var getStyles = function( elem ) {
5644
5645
		// Support: IE<=11+, Firefox<=30+ (#15098, #14150)
5646
		// IE throws on elements created in popups
5647
		// FF meanwhile throws on frame elements through "defaultView.getComputedStyle"
5648
		var view = elem.ownerDocument.defaultView;
5649
5650
		if ( !view || !view.opener ) {
5651
			view = window;
5652
		}
5653
5654
		return view.getComputedStyle( elem );
5655
	};
5656
5657
var swap = function( elem, options, callback, args ) {
5658
	var ret, name,
5659
		old = {};
5660
5661
	// Remember the old values, and insert the new ones
5662
	for ( name in options ) {
5663
		old[ name ] = elem.style[ name ];
5664
		elem.style[ name ] = options[ name ];
5665
	}
5666
5667
	ret = callback.apply( elem, args || [] );
5668
5669
	// Revert the old values
5670
	for ( name in options ) {
5671
		elem.style[ name ] = old[ name ];
5672
	}
5673
5674
	return ret;
5675
};
5676
5677
5678
var documentElement = document.documentElement;
5679
5680
5681
5682
( function() {
5683
	var pixelPositionVal, boxSizingReliableVal, pixelMarginRightVal, reliableMarginLeftVal,
5684
		container = document.createElement( "div" ),
5685
		div = document.createElement( "div" );
5686
5687
	// Finish early in limited (non-browser) environments
5688
	if ( !div.style ) {
5689
		return;
5690
	}
5691
5692
	// Support: IE9-11+
5693
	// Style of cloned element affects source element cloned (#8908)
5694
	div.style.backgroundClip = "content-box";
5695
	div.cloneNode( true ).style.backgroundClip = "";
5696
	support.clearCloneStyle = div.style.backgroundClip === "content-box";
5697
5698
	container.style.cssText = "border:0;width:8px;height:0;top:0;left:-9999px;" +
5699
		"padding:0;margin-top:1px;position:absolute";
5700
	container.appendChild( div );
5701
5702
	// Executing both pixelPosition & boxSizingReliable tests require only one layout
5703
	// so they're executed at the same time to save the second computation.
5704
	function computeStyleTests() {
5705
		div.style.cssText =
5706
5707
			// Support: Firefox<29, Android 2.3
5708
			// Vendor-prefix box-sizing
5709
			"-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;" +
5710
			"position:relative;display:block;" +
5711
			"margin:auto;border:1px;padding:1px;" +
5712
			"top:1%;width:50%";
5713
		div.innerHTML = "";
5714
		documentElement.appendChild( container );
5715
5716
		var divStyle = window.getComputedStyle( div );
5717
		pixelPositionVal = divStyle.top !== "1%";
5718
		reliableMarginLeftVal = divStyle.marginLeft === "2px";
5719
		boxSizingReliableVal = divStyle.width === "4px";
5720
5721
		// Support: Android 4.0 - 4.3 only
5722
		// Some styles come back with percentage values, even though they shouldn't
5723
		div.style.marginRight = "50%";
5724
		pixelMarginRightVal = divStyle.marginRight === "4px";
5725
5726
		documentElement.removeChild( container );
5727
	}
5728
5729
	jQuery.extend( support, {
5730
		pixelPosition: function() {
5731
5732
			// This test is executed only once but we still do memoizing
5733
			// since we can use the boxSizingReliable pre-computing.
5734
			// No need to check if the test was already performed, though.
5735
			computeStyleTests();
5736
			return pixelPositionVal;
5737
		},
5738
		boxSizingReliable: function() {
5739
			if ( boxSizingReliableVal == null ) {
5740
				computeStyleTests();
5741
			}
5742
			return boxSizingReliableVal;
5743
		},
5744
		pixelMarginRight: function() {
5745
5746
			// Support: Android 4.0-4.3
5747
			// We're checking for boxSizingReliableVal here instead of pixelMarginRightVal
5748
			// since that compresses better and they're computed together anyway.
5749
			if ( boxSizingReliableVal == null ) {
5750
				computeStyleTests();
5751
			}
5752
			return pixelMarginRightVal;
5753
		},
5754
		reliableMarginLeft: function() {
5755
5756
			// Support: IE <=8 only, Android 4.0 - 4.3 only, Firefox <=3 - 37
5757
			if ( boxSizingReliableVal == null ) {
5758
				computeStyleTests();
5759
			}
5760
			return reliableMarginLeftVal;
5761
		},
5762
		reliableMarginRight: function() {
5763
5764
			// Support: Android 2.3
5765
			// Check if div with explicit width and no margin-right incorrectly
5766
			// gets computed margin-right based on width of container. (#3333)
5767
			// WebKit Bug 13343 - getComputedStyle returns wrong value for margin-right
5768
			// This support function is only executed once so no memoizing is needed.
5769
			var ret,
5770
				marginDiv = div.appendChild( document.createElement( "div" ) );
5771
5772
			// Reset CSS: box-sizing; display; margin; border; padding
5773
			marginDiv.style.cssText = div.style.cssText =
5774
5775
				// Support: Android 2.3
5776
				// Vendor-prefix box-sizing
5777
				"-webkit-box-sizing:content-box;box-sizing:content-box;" +
5778
				"display:block;margin:0;border:0;padding:0";
5779
			marginDiv.style.marginRight = marginDiv.style.width = "0";
5780
			div.style.width = "1px";
5781
			documentElement.appendChild( container );
5782
5783
			ret = !parseFloat( window.getComputedStyle( marginDiv ).marginRight );
5784
5785
			documentElement.removeChild( container );
5786
			div.removeChild( marginDiv );
5787
5788
			return ret;
5789
		}
5790
	} );
5791
} )();
5792
5793
5794
function curCSS( elem, name, computed ) {
5795
	var width, minWidth, maxWidth, ret,
5796
		style = elem.style;
5797
5798
	computed = computed || getStyles( elem );
5799
	ret = computed ? computed.getPropertyValue( name ) || computed[ name ] : undefined;
5800
5801
	// Support: Opera 12.1x only
5802
	// Fall back to style even without computed
5803
	// computed is undefined for elems on document fragments
5804
	if ( ( ret === "" || ret === undefined ) && !jQuery.contains( elem.ownerDocument, elem ) ) {
5805
		ret = jQuery.style( elem, name );
5806
	}
5807
5808
	// Support: IE9
5809
	// getPropertyValue is only needed for .css('filter') (#12537)
5810
	if ( computed ) {
5811
5812
		// A tribute to the "awesome hack by Dean Edwards"
5813
		// Android Browser returns percentage for some values,
5814
		// but width seems to be reliably pixels.
5815
		// This is against the CSSOM draft spec:
5816
		// http://dev.w3.org/csswg/cssom/#resolved-values
5817
		if ( !support.pixelMarginRight() && rnumnonpx.test( ret ) && rmargin.test( name ) ) {
5818
5819
			// Remember the original values
5820
			width = style.width;
5821
			minWidth = style.minWidth;
5822
			maxWidth = style.maxWidth;
5823
5824
			// Put in the new values to get a computed value out
5825
			style.minWidth = style.maxWidth = style.width = ret;
5826
			ret = computed.width;
5827
5828
			// Revert the changed values
5829
			style.width = width;
5830
			style.minWidth = minWidth;
5831
			style.maxWidth = maxWidth;
5832
		}
5833
	}
5834
5835
	return ret !== undefined ?
5836
5837
		// Support: IE9-11+
5838
		// IE returns zIndex value as an integer.
5839
		ret + "" :
5840
		ret;
5841
}
5842
5843
5844
function addGetHookIf( conditionFn, hookFn ) {
5845
5846
	// Define the hook, we'll check on the first run if it's really needed.
5847
	return {
5848
		get: function() {
5849
			if ( conditionFn() ) {
5850
5851
				// Hook not needed (or it's not possible to use it due
5852
				// to missing dependency), remove it.
5853
				delete this.get;
5854
				return;
5855
			}
5856
5857
			// Hook needed; redefine it so that the support test is not executed again.
5858
			return ( this.get = hookFn ).apply( this, arguments );
5859
		}
5860
	};
5861
}
5862
5863
5864
var
5865
5866
	// Swappable if display is none or starts with table
5867
	// except "table", "table-cell", or "table-caption"
5868
	// See here for display values: https://developer.mozilla.org/en-US/docs/CSS/display
5869
	rdisplayswap = /^(none|table(?!-c[ea]).+)/,
5870
5871
	cssShow = { position: "absolute", visibility: "hidden", display: "block" },
5872
	cssNormalTransform = {
5873
		letterSpacing: "0",
5874
		fontWeight: "400"
5875
	},
5876
5877
	cssPrefixes = [ "Webkit", "O", "Moz", "ms" ],
5878
	emptyStyle = document.createElement( "div" ).style;
5879
5880
// Return a css property mapped to a potentially vendor prefixed property
5881
function vendorPropName( name ) {
5882
5883
	// Shortcut for names that are not vendor prefixed
5884
	if ( name in emptyStyle ) {
5885
		return name;
5886
	}
5887
5888
	// Check for vendor prefixed names
5889
	var capName = name[ 0 ].toUpperCase() + name.slice( 1 ),
5890
		i = cssPrefixes.length;
5891
5892
	while ( i-- ) {
5893
		name = cssPrefixes[ i ] + capName;
5894
		if ( name in emptyStyle ) {
5895
			return name;
5896
		}
5897
	}
5898
}
5899
5900
function setPositiveNumber( elem, value, subtract ) {
5901
5902
	// Any relative (+/-) values have already been
5903
	// normalized at this point
5904
	var matches = rcssNum.exec( value );
5905
	return matches ?
5906
5907
		// Guard against undefined "subtract", e.g., when used as in cssHooks
5908
		Math.max( 0, matches[ 2 ] - ( subtract || 0 ) ) + ( matches[ 3 ] || "px" ) :
5909
		value;
5910
}
5911
5912
function augmentWidthOrHeight( elem, name, extra, isBorderBox, styles ) {
5913
	var i = extra === ( isBorderBox ? "border" : "content" ) ?
5914
5915
		// If we already have the right measurement, avoid augmentation
5916
		4 :
5917
5918
		// Otherwise initialize for horizontal or vertical properties
5919
		name === "width" ? 1 : 0,
5920
5921
		val = 0;
5922
5923
	for ( ; i < 4; i += 2 ) {
5924
5925
		// Both box models exclude margin, so add it if we want it
5926
		if ( extra === "margin" ) {
5927
			val += jQuery.css( elem, extra + cssExpand[ i ], true, styles );
5928
		}
5929
5930
		if ( isBorderBox ) {
5931
5932
			// border-box includes padding, so remove it if we want content
5933
			if ( extra === "content" ) {
5934
				val -= jQuery.css( elem, "padding" + cssExpand[ i ], true, styles );
5935
			}
5936
5937
			// At this point, extra isn't border nor margin, so remove border
5938
			if ( extra !== "margin" ) {
5939
				val -= jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles );
5940
			}
5941
		} else {
5942
5943
			// At this point, extra isn't content, so add padding
5944
			val += jQuery.css( elem, "padding" + cssExpand[ i ], true, styles );
5945
5946
			// At this point, extra isn't content nor padding, so add border
5947
			if ( extra !== "padding" ) {
5948
				val += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles );
5949
			}
5950
		}
5951
	}
5952
5953
	return val;
5954
}
5955
5956
function getWidthOrHeight( elem, name, extra ) {
5957
5958
	// Start with offset property, which is equivalent to the border-box value
5959
	var valueIsBorderBox = true,
5960
		val = name === "width" ? elem.offsetWidth : elem.offsetHeight,
5961
		styles = getStyles( elem ),
5962
		isBorderBox = jQuery.css( elem, "boxSizing", false, styles ) === "border-box";
5963
5964
	// Support: IE11 only
5965
	// In IE 11 fullscreen elements inside of an iframe have
5966
	// 100x too small dimensions (gh-1764).
5967
	if ( document.msFullscreenElement && window.top !== window ) {
5968
5969
		// Support: IE11 only
5970
		// Running getBoundingClientRect on a disconnected node
5971
		// in IE throws an error.
5972
		if ( elem.getClientRects().length ) {
5973
			val = Math.round( elem.getBoundingClientRect()[ name ] * 100 );
5974
		}
5975
	}
5976
5977
	// Some non-html elements return undefined for offsetWidth, so check for null/undefined
5978
	// svg - https://bugzilla.mozilla.org/show_bug.cgi?id=649285
5979
	// MathML - https://bugzilla.mozilla.org/show_bug.cgi?id=491668
5980
	if ( val <= 0 || val == null ) {
5981
5982
		// Fall back to computed then uncomputed css if necessary
5983
		val = curCSS( elem, name, styles );
5984
		if ( val < 0 || val == null ) {
5985
			val = elem.style[ name ];
5986
		}
5987
5988
		// Computed unit is not pixels. Stop here and return.
5989
		if ( rnumnonpx.test( val ) ) {
5990
			return val;
5991
		}
5992
5993
		// Check for style in case a browser which returns unreliable values
5994
		// for getComputedStyle silently falls back to the reliable elem.style
5995
		valueIsBorderBox = isBorderBox &&
5996
			( support.boxSizingReliable() || val === elem.style[ name ] );
5997
5998
		// Normalize "", auto, and prepare for extra
5999
		val = parseFloat( val ) || 0;
6000
	}
6001
6002
	// Use the active box-sizing model to add/subtract irrelevant styles
6003
	return ( val +
6004
		augmentWidthOrHeight(
6005
			elem,
6006
			name,
6007
			extra || ( isBorderBox ? "border" : "content" ),
6008
			valueIsBorderBox,
6009
			styles
6010
		)
6011
	) + "px";
6012
}
6013
6014
function showHide( elements, show ) {
6015
	var display, elem, hidden,
6016
		values = [],
6017
		index = 0,
6018
		length = elements.length;
6019
6020
	for ( ; index < length; index++ ) {
6021
		elem = elements[ index ];
6022
		if ( !elem.style ) {
6023
			continue;
6024
		}
6025
6026
		values[ index ] = dataPriv.get( elem, "olddisplay" );
6027
		display = elem.style.display;
6028
		if ( show ) {
6029
6030
			// Reset the inline display of this element to learn if it is
6031
			// being hidden by cascaded rules or not
6032
			if ( !values[ index ] && display === "none" ) {
6033
				elem.style.display = "";
6034
			}
6035
6036
			// Set elements which have been overridden with display: none
6037
			// in a stylesheet to whatever the default browser style is
6038
			// for such an element
6039
			if ( elem.style.display === "" && isHidden( elem ) ) {
6040
				values[ index ] = dataPriv.access(
6041
					elem,
6042
					"olddisplay",
6043
					defaultDisplay( elem.nodeName )
6044
				);
6045
			}
6046
		} else {
6047
			hidden = isHidden( elem );
6048
6049
			if ( display !== "none" || !hidden ) {
6050
				dataPriv.set(
6051
					elem,
6052
					"olddisplay",
6053
					hidden ? display : jQuery.css( elem, "display" )
6054
				);
6055
			}
6056
		}
6057
	}
6058
6059
	// Set the display of most of the elements in a second loop
6060
	// to avoid the constant reflow
6061
	for ( index = 0; index < length; index++ ) {
6062
		elem = elements[ index ];
6063
		if ( !elem.style ) {
6064
			continue;
6065
		}
6066
		if ( !show || elem.style.display === "none" || elem.style.display === "" ) {
6067
			elem.style.display = show ? values[ index ] || "" : "none";
6068
		}
6069
	}
6070
6071
	return elements;
6072
}
6073
6074
jQuery.extend( {
6075
6076
	// Add in style property hooks for overriding the default
6077
	// behavior of getting and setting a style property
6078
	cssHooks: {
6079
		opacity: {
6080
			get: function( elem, computed ) {
6081
				if ( computed ) {
6082
6083
					// We should always get a number back from opacity
6084
					var ret = curCSS( elem, "opacity" );
6085
					return ret === "" ? "1" : ret;
6086
				}
6087
			}
6088
		}
6089
	},
6090
6091
	// Don't automatically add "px" to these possibly-unitless properties
6092
	cssNumber: {
6093
		"animationIterationCount": true,
6094
		"columnCount": true,
6095
		"fillOpacity": true,
6096
		"flexGrow": true,
6097
		"flexShrink": true,
6098
		"fontWeight": true,
6099
		"lineHeight": true,
6100
		"opacity": true,
6101
		"order": true,
6102
		"orphans": true,
6103
		"widows": true,
6104
		"zIndex": true,
6105
		"zoom": true
6106
	},
6107
6108
	// Add in properties whose names you wish to fix before
6109
	// setting or getting the value
6110
	cssProps: {
6111
		"float": "cssFloat"
6112
	},
6113
6114
	// Get and set the style property on a DOM Node
6115
	style: function( elem, name, value, extra ) {
6116
6117
		// Don't set styles on text and comment nodes
6118
		if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) {
6119
			return;
6120
		}
6121
6122
		// Make sure that we're working with the right name
6123
		var ret, type, hooks,
6124
			origName = jQuery.camelCase( name ),
6125
			style = elem.style;
6126
6127
		name = jQuery.cssProps[ origName ] ||
6128
			( jQuery.cssProps[ origName ] = vendorPropName( origName ) || origName );
6129
6130
		// Gets hook for the prefixed version, then unprefixed version
6131
		hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];
6132
6133
		// Check if we're setting a value
6134
		if ( value !== undefined ) {
6135
			type = typeof value;
6136
6137
			// Convert "+=" or "-=" to relative numbers (#7345)
6138
			if ( type === "string" && ( ret = rcssNum.exec( value ) ) && ret[ 1 ] ) {
6139
				value = adjustCSS( elem, name, ret );
6140
6141
				// Fixes bug #9237
6142
				type = "number";
6143
			}
6144
6145
			// Make sure that null and NaN values aren't set (#7116)
6146
			if ( value == null || value !== value ) {
6147
				return;
6148
			}
6149
6150
			// If a number was passed in, add the unit (except for certain CSS properties)
6151
			if ( type === "number" ) {
6152
				value += ret && ret[ 3 ] || ( jQuery.cssNumber[ origName ] ? "" : "px" );
6153
			}
6154
6155
			// Support: IE9-11+
6156
			// background-* props affect original clone's values
6157
			if ( !support.clearCloneStyle && value === "" && name.indexOf( "background" ) === 0 ) {
6158
				style[ name ] = "inherit";
6159
			}
6160
6161
			// If a hook was provided, use that value, otherwise just set the specified value
6162
			if ( !hooks || !( "set" in hooks ) ||
6163
				( value = hooks.set( elem, value, extra ) ) !== undefined ) {
6164
6165
				style[ name ] = value;
6166
			}
6167
6168
		} else {
6169
6170
			// If a hook was provided get the non-computed value from there
6171
			if ( hooks && "get" in hooks &&
6172
				( ret = hooks.get( elem, false, extra ) ) !== undefined ) {
6173
6174
				return ret;
6175
			}
6176
6177
			// Otherwise just get the value from the style object
6178
			return style[ name ];
6179
		}
6180
	},
6181
6182
	css: function( elem, name, extra, styles ) {
6183
		var val, num, hooks,
6184
			origName = jQuery.camelCase( name );
6185
6186
		// Make sure that we're working with the right name
6187
		name = jQuery.cssProps[ origName ] ||
6188
			( jQuery.cssProps[ origName ] = vendorPropName( origName ) || origName );
6189
6190
		// Try prefixed name followed by the unprefixed name
6191
		hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];
6192
6193
		// If a hook was provided get the computed value from there
6194
		if ( hooks && "get" in hooks ) {
6195
			val = hooks.get( elem, true, extra );
6196
		}
6197
6198
		// Otherwise, if a way to get the computed value exists, use that
6199
		if ( val === undefined ) {
6200
			val = curCSS( elem, name, styles );
6201
		}
6202
6203
		// Convert "normal" to computed value
6204
		if ( val === "normal" && name in cssNormalTransform ) {
6205
			val = cssNormalTransform[ name ];
6206
		}
6207
6208
		// Make numeric if forced or a qualifier was provided and val looks numeric
6209
		if ( extra === "" || extra ) {
6210
			num = parseFloat( val );
6211
			return extra === true || isFinite( num ) ? num || 0 : val;
6212
		}
6213
		return val;
6214
	}
6215
} );
6216
6217
jQuery.each( [ "height", "width" ], function( i, name ) {
6218
	jQuery.cssHooks[ name ] = {
6219
		get: function( elem, computed, extra ) {
6220
			if ( computed ) {
6221
6222
				// Certain elements can have dimension info if we invisibly show them
6223
				// but it must have a current display style that would benefit
6224
				return rdisplayswap.test( jQuery.css( elem, "display" ) ) &&
6225
					elem.offsetWidth === 0 ?
6226
						swap( elem, cssShow, function() {
6227
							return getWidthOrHeight( elem, name, extra );
6228
						} ) :
6229
						getWidthOrHeight( elem, name, extra );
6230
			}
6231
		},
6232
6233
		set: function( elem, value, extra ) {
6234
			var matches,
6235
				styles = extra && getStyles( elem ),
6236
				subtract = extra && augmentWidthOrHeight(
6237
					elem,
6238
					name,
6239
					extra,
6240
					jQuery.css( elem, "boxSizing", false, styles ) === "border-box",
6241
					styles
6242
				);
6243
6244
			// Convert to pixels if value adjustment is needed
6245
			if ( subtract && ( matches = rcssNum.exec( value ) ) &&
6246
				( matches[ 3 ] || "px" ) !== "px" ) {
6247
6248
				elem.style[ name ] = value;
6249
				value = jQuery.css( elem, name );
6250
			}
6251
6252
			return setPositiveNumber( elem, value, subtract );
6253
		}
6254
	};
6255
} );
6256
6257
jQuery.cssHooks.marginLeft = addGetHookIf( support.reliableMarginLeft,
6258
	function( elem, computed ) {
6259
		if ( computed ) {
6260
			return ( parseFloat( curCSS( elem, "marginLeft" ) ) ||
6261
				elem.getBoundingClientRect().left -
6262
					swap( elem, { marginLeft: 0 }, function() {
6263
						return elem.getBoundingClientRect().left;
6264
					} )
6265
				) + "px";
6266
		}
6267
	}
6268
);
6269
6270
// Support: Android 2.3
6271
jQuery.cssHooks.marginRight = addGetHookIf( support.reliableMarginRight,
6272
	function( elem, computed ) {
6273
		if ( computed ) {
6274
			return swap( elem, { "display": "inline-block" },
6275
				curCSS, [ elem, "marginRight" ] );
6276
		}
6277
	}
6278
);
6279
6280
// These hooks are used by animate to expand properties
6281
jQuery.each( {
6282
	margin: "",
6283
	padding: "",
6284
	border: "Width"
6285
}, function( prefix, suffix ) {
6286
	jQuery.cssHooks[ prefix + suffix ] = {
6287
		expand: function( value ) {
6288
			var i = 0,
6289
				expanded = {},
6290
6291
				// Assumes a single number if not a string
6292
				parts = typeof value === "string" ? value.split( " " ) : [ value ];
6293
6294
			for ( ; i < 4; i++ ) {
6295
				expanded[ prefix + cssExpand[ i ] + suffix ] =
6296
					parts[ i ] || parts[ i - 2 ] || parts[ 0 ];
6297
			}
6298
6299
			return expanded;
6300
		}
6301
	};
6302
6303
	if ( !rmargin.test( prefix ) ) {
6304
		jQuery.cssHooks[ prefix + suffix ].set = setPositiveNumber;
6305
	}
6306
} );
6307
6308
jQuery.fn.extend( {
6309
	css: function( name, value ) {
6310
		return access( this, function( elem, name, value ) {
6311
			var styles, len,
6312
				map = {},
6313
				i = 0;
6314
6315
			if ( jQuery.isArray( name ) ) {
6316
				styles = getStyles( elem );
6317
				len = name.length;
6318
6319
				for ( ; i < len; i++ ) {
6320
					map[ name[ i ] ] = jQuery.css( elem, name[ i ], false, styles );
6321
				}
6322
6323
				return map;
6324
			}
6325
6326
			return value !== undefined ?
6327
				jQuery.style( elem, name, value ) :
6328
				jQuery.css( elem, name );
6329
		}, name, value, arguments.length > 1 );
6330
	},
6331
	show: function() {
6332
		return showHide( this, true );
6333
	},
6334
	hide: function() {
6335
		return showHide( this );
6336
	},
6337
	toggle: function( state ) {
6338
		if ( typeof state === "boolean" ) {
6339
			return state ? this.show() : this.hide();
6340
		}
6341
6342
		return this.each( function() {
6343
			if ( isHidden( this ) ) {
6344
				jQuery( this ).show();
6345
			} else {
6346
				jQuery( this ).hide();
6347
			}
6348
		} );
6349
	}
6350
} );
6351
6352
6353
function Tween( elem, options, prop, end, easing ) {
6354
	return new Tween.prototype.init( elem, options, prop, end, easing );
6355
}
6356
jQuery.Tween = Tween;
6357
6358
Tween.prototype = {
6359
	constructor: Tween,
6360
	init: function( elem, options, prop, end, easing, unit ) {
6361
		this.elem = elem;
6362
		this.prop = prop;
6363
		this.easing = easing || jQuery.easing._default;
6364
		this.options = options;
6365
		this.start = this.now = this.cur();
6366
		this.end = end;
6367
		this.unit = unit || ( jQuery.cssNumber[ prop ] ? "" : "px" );
6368
	},
6369
	cur: function() {
6370
		var hooks = Tween.propHooks[ this.prop ];
6371
6372
		return hooks && hooks.get ?
6373
			hooks.get( this ) :
6374
			Tween.propHooks._default.get( this );
6375
	},
6376
	run: function( percent ) {
6377
		var eased,
6378
			hooks = Tween.propHooks[ this.prop ];
6379
6380
		if ( this.options.duration ) {
6381
			this.pos = eased = jQuery.easing[ this.easing ](
6382
				percent, this.options.duration * percent, 0, 1, this.options.duration
6383
			);
6384
		} else {
6385
			this.pos = eased = percent;
6386
		}
6387
		this.now = ( this.end - this.start ) * eased + this.start;
6388
6389
		if ( this.options.step ) {
6390
			this.options.step.call( this.elem, this.now, this );
6391
		}
6392
6393
		if ( hooks && hooks.set ) {
6394
			hooks.set( this );
6395
		} else {
6396
			Tween.propHooks._default.set( this );
6397
		}
6398
		return this;
6399
	}
6400
};
6401
6402
Tween.prototype.init.prototype = Tween.prototype;
6403
6404
Tween.propHooks = {
6405
	_default: {
6406
		get: function( tween ) {
6407
			var result;
6408
6409
			// Use a property on the element directly when it is not a DOM element,
6410
			// or when there is no matching style property that exists.
6411
			if ( tween.elem.nodeType !== 1 ||
6412
				tween.elem[ tween.prop ] != null && tween.elem.style[ tween.prop ] == null ) {
6413
				return tween.elem[ tween.prop ];
6414
			}
6415
6416
			// Passing an empty string as a 3rd parameter to .css will automatically
6417
			// attempt a parseFloat and fallback to a string if the parse fails.
6418
			// Simple values such as "10px" are parsed to Float;
6419
			// complex values such as "rotate(1rad)" are returned as-is.
6420
			result = jQuery.css( tween.elem, tween.prop, "" );
6421
6422
			// Empty strings, null, undefined and "auto" are converted to 0.
6423
			return !result || result === "auto" ? 0 : result;
6424
		},
6425
		set: function( tween ) {
6426
6427
			// Use step hook for back compat.
6428
			// Use cssHook if its there.
6429
			// Use .style if available and use plain properties where available.
6430
			if ( jQuery.fx.step[ tween.prop ] ) {
6431
				jQuery.fx.step[ tween.prop ]( tween );
6432
			} else if ( tween.elem.nodeType === 1 &&
6433
				( tween.elem.style[ jQuery.cssProps[ tween.prop ] ] != null ||
6434
					jQuery.cssHooks[ tween.prop ] ) ) {
6435
				jQuery.style( tween.elem, tween.prop, tween.now + tween.unit );
6436
			} else {
6437
				tween.elem[ tween.prop ] = tween.now;
6438
			}
6439
		}
6440
	}
6441
};
6442
6443
// Support: IE9
6444
// Panic based approach to setting things on disconnected nodes
6445
Tween.propHooks.scrollTop = Tween.propHooks.scrollLeft = {
6446
	set: function( tween ) {
6447
		if ( tween.elem.nodeType && tween.elem.parentNode ) {
6448
			tween.elem[ tween.prop ] = tween.now;
6449
		}
6450
	}
6451
};
6452
6453
jQuery.easing = {
6454
	linear: function( p ) {
6455
		return p;
6456
	},
6457
	swing: function( p ) {
6458
		return 0.5 - Math.cos( p * Math.PI ) / 2;
6459
	},
6460
	_default: "swing"
6461
};
6462
6463
jQuery.fx = Tween.prototype.init;
6464
6465
// Back Compat <1.8 extension point
6466
jQuery.fx.step = {};
6467
6468
6469
6470
6471
var
6472
	fxNow, timerId,
6473
	rfxtypes = /^(?:toggle|show|hide)$/,
6474
	rrun = /queueHooks$/;
6475
6476
// Animations created synchronously will run synchronously
6477
function createFxNow() {
6478
	window.setTimeout( function() {
6479
		fxNow = undefined;
6480
	} );
6481
	return ( fxNow = jQuery.now() );
6482
}
6483
6484
// Generate parameters to create a standard animation
6485
function genFx( type, includeWidth ) {
6486
	var which,
6487
		i = 0,
6488
		attrs = { height: type };
6489
6490
	// If we include width, step value is 1 to do all cssExpand values,
6491
	// otherwise step value is 2 to skip over Left and Right
6492
	includeWidth = includeWidth ? 1 : 0;
6493
	for ( ; i < 4 ; i += 2 - includeWidth ) {
6494
		which = cssExpand[ i ];
6495
		attrs[ "margin" + which ] = attrs[ "padding" + which ] = type;
6496
	}
6497
6498
	if ( includeWidth ) {
6499
		attrs.opacity = attrs.width = type;
6500
	}
6501
6502
	return attrs;
6503
}
6504
6505
function createTween( value, prop, animation ) {
6506
	var tween,
6507
		collection = ( Animation.tweeners[ prop ] || [] ).concat( Animation.tweeners[ "*" ] ),
6508
		index = 0,
6509
		length = collection.length;
6510
	for ( ; index < length; index++ ) {
6511
		if ( ( tween = collection[ index ].call( animation, prop, value ) ) ) {
6512
6513
			// We're done with this property
6514
			return tween;
6515
		}
6516
	}
6517
}
6518
6519
function defaultPrefilter( elem, props, opts ) {
6520
	/* jshint validthis: true */
6521
	var prop, value, toggle, tween, hooks, oldfire, display, checkDisplay,
6522
		anim = this,
6523
		orig = {},
6524
		style = elem.style,
6525
		hidden = elem.nodeType && isHidden( elem ),
6526
		dataShow = dataPriv.get( elem, "fxshow" );
6527
6528
	// Handle queue: false promises
6529
	if ( !opts.queue ) {
6530
		hooks = jQuery._queueHooks( elem, "fx" );
6531
		if ( hooks.unqueued == null ) {
6532
			hooks.unqueued = 0;
6533
			oldfire = hooks.empty.fire;
6534
			hooks.empty.fire = function() {
6535
				if ( !hooks.unqueued ) {
6536
					oldfire();
6537
				}
6538
			};
6539
		}
6540
		hooks.unqueued++;
6541
6542
		anim.always( function() {
6543
6544
			// Ensure the complete handler is called before this completes
6545
			anim.always( function() {
6546
				hooks.unqueued--;
6547
				if ( !jQuery.queue( elem, "fx" ).length ) {
6548
					hooks.empty.fire();
6549
				}
6550
			} );
6551
		} );
6552
	}
6553
6554
	// Height/width overflow pass
6555
	if ( elem.nodeType === 1 && ( "height" in props || "width" in props ) ) {
6556
6557
		// Make sure that nothing sneaks out
6558
		// Record all 3 overflow attributes because IE9-10 do not
6559
		// change the overflow attribute when overflowX and
6560
		// overflowY are set to the same value
6561
		opts.overflow = [ style.overflow, style.overflowX, style.overflowY ];
6562
6563
		// Set display property to inline-block for height/width
6564
		// animations on inline elements that are having width/height animated
6565
		display = jQuery.css( elem, "display" );
6566
6567
		// Test default display if display is currently "none"
6568
		checkDisplay = display === "none" ?
6569
			dataPriv.get( elem, "olddisplay" ) || defaultDisplay( elem.nodeName ) : display;
6570
6571
		if ( checkDisplay === "inline" && jQuery.css( elem, "float" ) === "none" ) {
6572
			style.display = "inline-block";
6573
		}
6574
	}
6575
6576
	if ( opts.overflow ) {
6577
		style.overflow = "hidden";
6578
		anim.always( function() {
6579
			style.overflow = opts.overflow[ 0 ];
6580
			style.overflowX = opts.overflow[ 1 ];
6581
			style.overflowY = opts.overflow[ 2 ];
6582
		} );
6583
	}
6584
6585
	// show/hide pass
6586
	for ( prop in props ) {
6587
		value = props[ prop ];
6588
		if ( rfxtypes.exec( value ) ) {
6589
			delete props[ prop ];
6590
			toggle = toggle || value === "toggle";
6591
			if ( value === ( hidden ? "hide" : "show" ) ) {
6592
6593
				// If there is dataShow left over from a stopped hide or show
6594
				// and we are going to proceed with show, we should pretend to be hidden
6595
				if ( value === "show" && dataShow && dataShow[ prop ] !== undefined ) {
6596
					hidden = true;
6597
				} else {
6598
					continue;
6599
				}
6600
			}
6601
			orig[ prop ] = dataShow && dataShow[ prop ] || jQuery.style( elem, prop );
6602
6603
		// Any non-fx value stops us from restoring the original display value
6604
		} else {
6605
			display = undefined;
6606
		}
6607
	}
6608
6609
	if ( !jQuery.isEmptyObject( orig ) ) {
6610
		if ( dataShow ) {
6611
			if ( "hidden" in dataShow ) {
6612
				hidden = dataShow.hidden;
6613
			}
6614
		} else {
6615
			dataShow = dataPriv.access( elem, "fxshow", {} );
6616
		}
6617
6618
		// Store state if its toggle - enables .stop().toggle() to "reverse"
6619
		if ( toggle ) {
6620
			dataShow.hidden = !hidden;
6621
		}
6622
		if ( hidden ) {
6623
			jQuery( elem ).show();
6624
		} else {
6625
			anim.done( function() {
6626
				jQuery( elem ).hide();
6627
			} );
6628
		}
6629
		anim.done( function() {
6630
			var prop;
6631
6632
			dataPriv.remove( elem, "fxshow" );
6633
			for ( prop in orig ) {
6634
				jQuery.style( elem, prop, orig[ prop ] );
6635
			}
6636
		} );
6637
		for ( prop in orig ) {
6638
			tween = createTween( hidden ? dataShow[ prop ] : 0, prop, anim );
6639
6640
			if ( !( prop in dataShow ) ) {
6641
				dataShow[ prop ] = tween.start;
6642
				if ( hidden ) {
6643
					tween.end = tween.start;
6644
					tween.start = prop === "width" || prop === "height" ? 1 : 0;
6645
				}
6646
			}
6647
		}
6648
6649
	// If this is a noop like .hide().hide(), restore an overwritten display value
6650
	} else if ( ( display === "none" ? defaultDisplay( elem.nodeName ) : display ) === "inline" ) {
6651
		style.display = display;
6652
	}
6653
}
6654
6655
function propFilter( props, specialEasing ) {
6656
	var index, name, easing, value, hooks;
6657
6658
	// camelCase, specialEasing and expand cssHook pass
6659
	for ( index in props ) {
6660
		name = jQuery.camelCase( index );
6661
		easing = specialEasing[ name ];
6662
		value = props[ index ];
6663
		if ( jQuery.isArray( value ) ) {
6664
			easing = value[ 1 ];
6665
			value = props[ index ] = value[ 0 ];
6666
		}
6667
6668
		if ( index !== name ) {
6669
			props[ name ] = value;
6670
			delete props[ index ];
6671
		}
6672
6673
		hooks = jQuery.cssHooks[ name ];
6674
		if ( hooks && "expand" in hooks ) {
6675
			value = hooks.expand( value );
6676
			delete props[ name ];
6677
6678
			// Not quite $.extend, this won't overwrite existing keys.
6679
			// Reusing 'index' because we have the correct "name"
6680
			for ( index in value ) {
6681
				if ( !( index in props ) ) {
6682
					props[ index ] = value[ index ];
6683
					specialEasing[ index ] = easing;
6684
				}
6685
			}
6686
		} else {
6687
			specialEasing[ name ] = easing;
6688
		}
6689
	}
6690
}
6691
6692
function Animation( elem, properties, options ) {
6693
	var result,
6694
		stopped,
6695
		index = 0,
6696
		length = Animation.prefilters.length,
6697
		deferred = jQuery.Deferred().always( function() {
6698
6699
			// Don't match elem in the :animated selector
6700
			delete tick.elem;
6701
		} ),
6702
		tick = function() {
6703
			if ( stopped ) {
6704
				return false;
6705
			}
6706
			var currentTime = fxNow || createFxNow(),
6707
				remaining = Math.max( 0, animation.startTime + animation.duration - currentTime ),
6708
6709
				// Support: Android 2.3
6710
				// Archaic crash bug won't allow us to use `1 - ( 0.5 || 0 )` (#12497)
6711
				temp = remaining / animation.duration || 0,
6712
				percent = 1 - temp,
6713
				index = 0,
6714
				length = animation.tweens.length;
6715
6716
			for ( ; index < length ; index++ ) {
6717
				animation.tweens[ index ].run( percent );
6718
			}
6719
6720
			deferred.notifyWith( elem, [ animation, percent, remaining ] );
6721
6722
			if ( percent < 1 && length ) {
6723
				return remaining;
6724
			} else {
6725
				deferred.resolveWith( elem, [ animation ] );
6726
				return false;
6727
			}
6728
		},
6729
		animation = deferred.promise( {
6730
			elem: elem,
6731
			props: jQuery.extend( {}, properties ),
6732
			opts: jQuery.extend( true, {
6733
				specialEasing: {},
6734
				easing: jQuery.easing._default
6735
			}, options ),
6736
			originalProperties: properties,
6737
			originalOptions: options,
6738
			startTime: fxNow || createFxNow(),
6739
			duration: options.duration,
6740
			tweens: [],
6741
			createTween: function( prop, end ) {
6742
				var tween = jQuery.Tween( elem, animation.opts, prop, end,
6743
						animation.opts.specialEasing[ prop ] || animation.opts.easing );
6744
				animation.tweens.push( tween );
6745
				return tween;
6746
			},
6747
			stop: function( gotoEnd ) {
6748
				var index = 0,
6749
6750
					// If we are going to the end, we want to run all the tweens
6751
					// otherwise we skip this part
6752
					length = gotoEnd ? animation.tweens.length : 0;
6753
				if ( stopped ) {
6754
					return this;
6755
				}
6756
				stopped = true;
6757
				for ( ; index < length ; index++ ) {
6758
					animation.tweens[ index ].run( 1 );
6759
				}
6760
6761
				// Resolve when we played the last frame; otherwise, reject
6762
				if ( gotoEnd ) {
6763
					deferred.notifyWith( elem, [ animation, 1, 0 ] );
6764
					deferred.resolveWith( elem, [ animation, gotoEnd ] );
6765
				} else {
6766
					deferred.rejectWith( elem, [ animation, gotoEnd ] );
6767
				}
6768
				return this;
6769
			}
6770
		} ),
6771
		props = animation.props;
6772
6773
	propFilter( props, animation.opts.specialEasing );
6774
6775
	for ( ; index < length ; index++ ) {
6776
		result = Animation.prefilters[ index ].call( animation, elem, props, animation.opts );
6777
		if ( result ) {
6778
			if ( jQuery.isFunction( result.stop ) ) {
6779
				jQuery._queueHooks( animation.elem, animation.opts.queue ).stop =
6780
					jQuery.proxy( result.stop, result );
6781
			}
6782
			return result;
6783
		}
6784
	}
6785
6786
	jQuery.map( props, createTween, animation );
6787
6788
	if ( jQuery.isFunction( animation.opts.start ) ) {
6789
		animation.opts.start.call( elem, animation );
6790
	}
6791
6792
	jQuery.fx.timer(
6793
		jQuery.extend( tick, {
6794
			elem: elem,
6795
			anim: animation,
6796
			queue: animation.opts.queue
6797
		} )
6798
	);
6799
6800
	// attach callbacks from options
6801
	return animation.progress( animation.opts.progress )
6802
		.done( animation.opts.done, animation.opts.complete )
6803
		.fail( animation.opts.fail )
6804
		.always( animation.opts.always );
6805
}
6806
6807
jQuery.Animation = jQuery.extend( Animation, {
6808
	tweeners: {
6809
		"*": [ function( prop, value ) {
6810
			var tween = this.createTween( prop, value );
6811
			adjustCSS( tween.elem, prop, rcssNum.exec( value ), tween );
6812
			return tween;
6813
		} ]
6814
	},
6815
6816
	tweener: function( props, callback ) {
6817
		if ( jQuery.isFunction( props ) ) {
6818
			callback = props;
6819
			props = [ "*" ];
6820
		} else {
6821
			props = props.match( rnotwhite );
6822
		}
6823
6824
		var prop,
6825
			index = 0,
6826
			length = props.length;
6827
6828
		for ( ; index < length ; index++ ) {
6829
			prop = props[ index ];
6830
			Animation.tweeners[ prop ] = Animation.tweeners[ prop ] || [];
6831
			Animation.tweeners[ prop ].unshift( callback );
6832
		}
6833
	},
6834
6835
	prefilters: [ defaultPrefilter ],
6836
6837
	prefilter: function( callback, prepend ) {
6838
		if ( prepend ) {
6839
			Animation.prefilters.unshift( callback );
6840
		} else {
6841
			Animation.prefilters.push( callback );
6842
		}
6843
	}
6844
} );
6845
6846
jQuery.speed = function( speed, easing, fn ) {
6847
	var opt = speed && typeof speed === "object" ? jQuery.extend( {}, speed ) : {
6848
		complete: fn || !fn && easing ||
6849
			jQuery.isFunction( speed ) && speed,
6850
		duration: speed,
6851
		easing: fn && easing || easing && !jQuery.isFunction( easing ) && easing
6852
	};
6853
6854
	opt.duration = jQuery.fx.off ? 0 : typeof opt.duration === "number" ?
6855
		opt.duration : opt.duration in jQuery.fx.speeds ?
6856
			jQuery.fx.speeds[ opt.duration ] : jQuery.fx.speeds._default;
6857
6858
	// Normalize opt.queue - true/undefined/null -> "fx"
6859
	if ( opt.queue == null || opt.queue === true ) {
6860
		opt.queue = "fx";
6861
	}
6862
6863
	// Queueing
6864
	opt.old = opt.complete;
6865
6866
	opt.complete = function() {
6867
		if ( jQuery.isFunction( opt.old ) ) {
6868
			opt.old.call( this );
6869
		}
6870
6871
		if ( opt.queue ) {
6872
			jQuery.dequeue( this, opt.queue );
6873
		}
6874
	};
6875
6876
	return opt;
6877
};
6878
6879
jQuery.fn.extend( {
6880
	fadeTo: function( speed, to, easing, callback ) {
6881
6882
		// Show any hidden elements after setting opacity to 0
6883
		return this.filter( isHidden ).css( "opacity", 0 ).show()
6884
6885
			// Animate to the value specified
6886
			.end().animate( { opacity: to }, speed, easing, callback );
6887
	},
6888
	animate: function( prop, speed, easing, callback ) {
6889
		var empty = jQuery.isEmptyObject( prop ),
6890
			optall = jQuery.speed( speed, easing, callback ),
6891
			doAnimation = function() {
6892
6893
				// Operate on a copy of prop so per-property easing won't be lost
6894
				var anim = Animation( this, jQuery.extend( {}, prop ), optall );
6895
6896
				// Empty animations, or finishing resolves immediately
6897
				if ( empty || dataPriv.get( this, "finish" ) ) {
6898
					anim.stop( true );
6899
				}
6900
			};
6901
			doAnimation.finish = doAnimation;
6902
6903
		return empty || optall.queue === false ?
6904
			this.each( doAnimation ) :
6905
			this.queue( optall.queue, doAnimation );
6906
	},
6907
	stop: function( type, clearQueue, gotoEnd ) {
6908
		var stopQueue = function( hooks ) {
6909
			var stop = hooks.stop;
6910
			delete hooks.stop;
6911
			stop( gotoEnd );
6912
		};
6913
6914
		if ( typeof type !== "string" ) {
6915
			gotoEnd = clearQueue;
6916
			clearQueue = type;
6917
			type = undefined;
6918
		}
6919
		if ( clearQueue && type !== false ) {
6920
			this.queue( type || "fx", [] );
6921
		}
6922
6923
		return this.each( function() {
6924
			var dequeue = true,
6925
				index = type != null && type + "queueHooks",
6926
				timers = jQuery.timers,
6927
				data = dataPriv.get( this );
6928
6929
			if ( index ) {
6930
				if ( data[ index ] && data[ index ].stop ) {
6931
					stopQueue( data[ index ] );
6932
				}
6933
			} else {
6934
				for ( index in data ) {
6935
					if ( data[ index ] && data[ index ].stop && rrun.test( index ) ) {
6936
						stopQueue( data[ index ] );
6937
					}
6938
				}
6939
			}
6940
6941
			for ( index = timers.length; index--; ) {
6942
				if ( timers[ index ].elem === this &&
6943
					( type == null || timers[ index ].queue === type ) ) {
6944
6945
					timers[ index ].anim.stop( gotoEnd );
6946
					dequeue = false;
6947
					timers.splice( index, 1 );
6948
				}
6949
			}
6950
6951
			// Start the next in the queue if the last step wasn't forced.
6952
			// Timers currently will call their complete callbacks, which
6953
			// will dequeue but only if they were gotoEnd.
6954
			if ( dequeue || !gotoEnd ) {
6955
				jQuery.dequeue( this, type );
6956
			}
6957
		} );
6958
	},
6959
	finish: function( type ) {
6960
		if ( type !== false ) {
6961
			type = type || "fx";
6962
		}
6963
		return this.each( function() {
6964
			var index,
6965
				data = dataPriv.get( this ),
6966
				queue = data[ type + "queue" ],
6967
				hooks = data[ type + "queueHooks" ],
6968
				timers = jQuery.timers,
6969
				length = queue ? queue.length : 0;
6970
6971
			// Enable finishing flag on private data
6972
			data.finish = true;
6973
6974
			// Empty the queue first
6975
			jQuery.queue( this, type, [] );
6976
6977
			if ( hooks && hooks.stop ) {
6978
				hooks.stop.call( this, true );
6979
			}
6980
6981
			// Look for any active animations, and finish them
6982
			for ( index = timers.length; index--; ) {
6983
				if ( timers[ index ].elem === this && timers[ index ].queue === type ) {
6984
					timers[ index ].anim.stop( true );
6985
					timers.splice( index, 1 );
6986
				}
6987
			}
6988
6989
			// Look for any animations in the old queue and finish them
6990
			for ( index = 0; index < length; index++ ) {
6991
				if ( queue[ index ] && queue[ index ].finish ) {
6992
					queue[ index ].finish.call( this );
6993
				}
6994
			}
6995
6996
			// Turn off finishing flag
6997
			delete data.finish;
6998
		} );
6999
	}
7000
} );
7001
7002
jQuery.each( [ "toggle", "show", "hide" ], function( i, name ) {
7003
	var cssFn = jQuery.fn[ name ];
7004
	jQuery.fn[ name ] = function( speed, easing, callback ) {
7005
		return speed == null || typeof speed === "boolean" ?
7006
			cssFn.apply( this, arguments ) :
7007
			this.animate( genFx( name, true ), speed, easing, callback );
7008
	};
7009
} );
7010
7011
// Generate shortcuts for custom animations
7012
jQuery.each( {
7013
	slideDown: genFx( "show" ),
7014
	slideUp: genFx( "hide" ),
7015
	slideToggle: genFx( "toggle" ),
7016
	fadeIn: { opacity: "show" },
7017
	fadeOut: { opacity: "hide" },
7018
	fadeToggle: { opacity: "toggle" }
7019
}, function( name, props ) {
7020
	jQuery.fn[ name ] = function( speed, easing, callback ) {
7021
		return this.animate( props, speed, easing, callback );
7022
	};
7023
} );
7024
7025
jQuery.timers = [];
7026
jQuery.fx.tick = function() {
7027
	var timer,
7028
		i = 0,
7029
		timers = jQuery.timers;
7030
7031
	fxNow = jQuery.now();
7032
7033
	for ( ; i < timers.length; i++ ) {
7034
		timer = timers[ i ];
7035
7036
		// Checks the timer has not already been removed
7037
		if ( !timer() && timers[ i ] === timer ) {
7038
			timers.splice( i--, 1 );
7039
		}
7040
	}
7041
7042
	if ( !timers.length ) {
7043
		jQuery.fx.stop();
7044
	}
7045
	fxNow = undefined;
7046
};
7047
7048
jQuery.fx.timer = function( timer ) {
7049
	jQuery.timers.push( timer );
7050
	if ( timer() ) {
7051
		jQuery.fx.start();
7052
	} else {
7053
		jQuery.timers.pop();
7054
	}
7055
};
7056
7057
jQuery.fx.interval = 13;
7058
jQuery.fx.start = function() {
7059
	if ( !timerId ) {
7060
		timerId = window.setInterval( jQuery.fx.tick, jQuery.fx.interval );
7061
	}
7062
};
7063
7064
jQuery.fx.stop = function() {
7065
	window.clearInterval( timerId );
7066
7067
	timerId = null;
7068
};
7069
7070
jQuery.fx.speeds = {
7071
	slow: 600,
7072
	fast: 200,
7073
7074
	// Default speed
7075
	_default: 400
7076
};
7077
7078
7079
// Based off of the plugin by Clint Helfers, with permission.
7080
// http://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/
7081
jQuery.fn.delay = function( time, type ) {
7082
	time = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time;
7083
	type = type || "fx";
7084
7085
	return this.queue( type, function( next, hooks ) {
7086
		var timeout = window.setTimeout( next, time );
7087
		hooks.stop = function() {
7088
			window.clearTimeout( timeout );
7089
		};
7090
	} );
7091
};
7092
7093
7094
( function() {
7095
	var input = document.createElement( "input" ),
7096
		select = document.createElement( "select" ),
7097
		opt = select.appendChild( document.createElement( "option" ) );
7098
7099
	input.type = "checkbox";
7100
7101
	// Support: iOS<=5.1, Android<=4.2+
7102
	// Default value for a checkbox should be "on"
7103
	support.checkOn = input.value !== "";
7104
7105
	// Support: IE<=11+
7106
	// Must access selectedIndex to make default options select
7107
	support.optSelected = opt.selected;
7108
7109
	// Support: Android<=2.3
7110
	// Options inside disabled selects are incorrectly marked as disabled
7111
	select.disabled = true;
7112
	support.optDisabled = !opt.disabled;
7113
7114
	// Support: IE<=11+
7115
	// An input loses its value after becoming a radio
7116
	input = document.createElement( "input" );
7117
	input.value = "t";
7118
	input.type = "radio";
7119
	support.radioValue = input.value === "t";
7120
} )();
7121
7122
7123
var boolHook,
7124
	attrHandle = jQuery.expr.attrHandle;
7125
7126
jQuery.fn.extend( {
7127
	attr: function( name, value ) {
7128
		return access( this, jQuery.attr, name, value, arguments.length > 1 );
7129
	},
7130
7131
	removeAttr: function( name ) {
7132
		return this.each( function() {
7133
			jQuery.removeAttr( this, name );
7134
		} );
7135
	}
7136
} );
7137
7138
jQuery.extend( {
7139
	attr: function( elem, name, value ) {
7140
		var ret, hooks,
7141
			nType = elem.nodeType;
7142
7143
		// Don't get/set attributes on text, comment and attribute nodes
7144
		if ( nType === 3 || nType === 8 || nType === 2 ) {
7145
			return;
7146
		}
7147
7148
		// Fallback to prop when attributes are not supported
7149
		if ( typeof elem.getAttribute === "undefined" ) {
7150
			return jQuery.prop( elem, name, value );
7151
		}
7152
7153
		// All attributes are lowercase
7154
		// Grab necessary hook if one is defined
7155
		if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) {
7156
			name = name.toLowerCase();
7157
			hooks = jQuery.attrHooks[ name ] ||
7158
				( jQuery.expr.match.bool.test( name ) ? boolHook : undefined );
7159
		}
7160
7161
		if ( value !== undefined ) {
7162
			if ( value === null ) {
7163
				jQuery.removeAttr( elem, name );
7164
				return;
7165
			}
7166
7167
			if ( hooks && "set" in hooks &&
7168
				( ret = hooks.set( elem, value, name ) ) !== undefined ) {
7169
				return ret;
7170
			}
7171
7172
			elem.setAttribute( name, value + "" );
7173
			return value;
7174
		}
7175
7176
		if ( hooks && "get" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) {
7177
			return ret;
7178
		}
7179
7180
		ret = jQuery.find.attr( elem, name );
7181
7182
		// Non-existent attributes return null, we normalize to undefined
7183
		return ret == null ? undefined : ret;
7184
	},
7185
7186
	attrHooks: {
7187
		type: {
7188
			set: function( elem, value ) {
7189
				if ( !support.radioValue && value === "radio" &&
7190
					jQuery.nodeName( elem, "input" ) ) {
7191
					var val = elem.value;
7192
					elem.setAttribute( "type", value );
7193
					if ( val ) {
7194
						elem.value = val;
7195
					}
7196
					return value;
7197
				}
7198
			}
7199
		}
7200
	},
7201
7202
	removeAttr: function( elem, value ) {
7203
		var name, propName,
7204
			i = 0,
7205
			attrNames = value && value.match( rnotwhite );
7206
7207
		if ( attrNames && elem.nodeType === 1 ) {
7208
			while ( ( name = attrNames[ i++ ] ) ) {
7209
				propName = jQuery.propFix[ name ] || name;
7210
7211
				// Boolean attributes get special treatment (#10870)
7212
				if ( jQuery.expr.match.bool.test( name ) ) {
7213
7214
					// Set corresponding property to false
7215
					elem[ propName ] = false;
7216
				}
7217
7218
				elem.removeAttribute( name );
7219
			}
7220
		}
7221
	}
7222
} );
7223
7224
// Hooks for boolean attributes
7225
boolHook = {
7226
	set: function( elem, value, name ) {
7227
		if ( value === false ) {
7228
7229
			// Remove boolean attributes when set to false
7230
			jQuery.removeAttr( elem, name );
7231
		} else {
7232
			elem.setAttribute( name, name );
7233
		}
7234
		return name;
7235
	}
7236
};
7237
jQuery.each( jQuery.expr.match.bool.source.match( /\w+/g ), function( i, name ) {
7238
	var getter = attrHandle[ name ] || jQuery.find.attr;
7239
7240
	attrHandle[ name ] = function( elem, name, isXML ) {
7241
		var ret, handle;
7242
		if ( !isXML ) {
7243
7244
			// Avoid an infinite loop by temporarily removing this function from the getter
7245
			handle = attrHandle[ name ];
7246
			attrHandle[ name ] = ret;
7247
			ret = getter( elem, name, isXML ) != null ?
7248
				name.toLowerCase() :
7249
				null;
7250
			attrHandle[ name ] = handle;
7251
		}
7252
		return ret;
7253
	};
7254
} );
7255
7256
7257
7258
7259
var rfocusable = /^(?:input|select|textarea|button)$/i,
7260
	rclickable = /^(?:a|area)$/i;
7261
7262
jQuery.fn.extend( {
7263
	prop: function( name, value ) {
7264
		return access( this, jQuery.prop, name, value, arguments.length > 1 );
7265
	},
7266
7267
	removeProp: function( name ) {
7268
		return this.each( function() {
7269
			delete this[ jQuery.propFix[ name ] || name ];
7270
		} );
7271
	}
7272
} );
7273
7274
jQuery.extend( {
7275
	prop: function( elem, name, value ) {
7276
		var ret, hooks,
7277
			nType = elem.nodeType;
7278
7279
		// Don't get/set properties on text, comment and attribute nodes
7280
		if ( nType === 3 || nType === 8 || nType === 2 ) {
7281
			return;
7282
		}
7283
7284
		if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) {
7285
7286
			// Fix name and attach hooks
7287
			name = jQuery.propFix[ name ] || name;
7288
			hooks = jQuery.propHooks[ name ];
7289
		}
7290
7291
		if ( value !== undefined ) {
7292
			if ( hooks && "set" in hooks &&
7293
				( ret = hooks.set( elem, value, name ) ) !== undefined ) {
7294
				return ret;
7295
			}
7296
7297
			return ( elem[ name ] = value );
7298
		}
7299
7300
		if ( hooks && "get" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) {
7301
			return ret;
7302
		}
7303
7304
		return elem[ name ];
7305
	},
7306
7307
	propHooks: {
7308
		tabIndex: {
7309
			get: function( elem ) {
7310
7311
				// elem.tabIndex doesn't always return the
7312
				// correct value when it hasn't been explicitly set
7313
				// http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/
7314
				// Use proper attribute retrieval(#12072)
7315
				var tabindex = jQuery.find.attr( elem, "tabindex" );
7316
7317
				return tabindex ?
7318
					parseInt( tabindex, 10 ) :
7319
					rfocusable.test( elem.nodeName ) ||
7320
						rclickable.test( elem.nodeName ) && elem.href ?
7321
							0 :
7322
							-1;
7323
			}
7324
		}
7325
	},
7326
7327
	propFix: {
7328
		"for": "htmlFor",
7329
		"class": "className"
7330
	}
7331
} );
7332
7333
// Support: IE <=11 only
7334
// Accessing the selectedIndex property
7335
// forces the browser to respect setting selected
7336
// on the option
7337
// The getter ensures a default option is selected
7338
// when in an optgroup
7339
if ( !support.optSelected ) {
7340
	jQuery.propHooks.selected = {
7341
		get: function( elem ) {
7342
			var parent = elem.parentNode;
7343
			if ( parent && parent.parentNode ) {
7344
				parent.parentNode.selectedIndex;
7345
			}
7346
			return null;
7347
		},
7348
		set: function( elem ) {
7349
			var parent = elem.parentNode;
7350
			if ( parent ) {
7351
				parent.selectedIndex;
7352
7353
				if ( parent.parentNode ) {
7354
					parent.parentNode.selectedIndex;
7355
				}
7356
			}
7357
		}
7358
	};
7359
}
7360
7361
jQuery.each( [
7362
	"tabIndex",
7363
	"readOnly",
7364
	"maxLength",
7365
	"cellSpacing",
7366
	"cellPadding",
7367
	"rowSpan",
7368
	"colSpan",
7369
	"useMap",
7370
	"frameBorder",
7371
	"contentEditable"
7372
], function() {
7373
	jQuery.propFix[ this.toLowerCase() ] = this;
7374
} );
7375
7376
7377
7378
7379
var rclass = /[\t\r\n\f]/g;
7380
7381
function getClass( elem ) {
7382
	return elem.getAttribute && elem.getAttribute( "class" ) || "";
7383
}
7384
7385
jQuery.fn.extend( {
7386
	addClass: function( value ) {
7387
		var classes, elem, cur, curValue, clazz, j, finalValue,
7388
			i = 0;
7389
7390
		if ( jQuery.isFunction( value ) ) {
7391
			return this.each( function( j ) {
7392
				jQuery( this ).addClass( value.call( this, j, getClass( this ) ) );
7393
			} );
7394
		}
7395
7396
		if ( typeof value === "string" && value ) {
7397
			classes = value.match( rnotwhite ) || [];
7398
7399
			while ( ( elem = this[ i++ ] ) ) {
7400
				curValue = getClass( elem );
7401
				cur = elem.nodeType === 1 &&
7402
					( " " + curValue + " " ).replace( rclass, " " );
7403
7404
				if ( cur ) {
7405
					j = 0;
7406
					while ( ( clazz = classes[ j++ ] ) ) {
7407
						if ( cur.indexOf( " " + clazz + " " ) < 0 ) {
7408
							cur += clazz + " ";
7409
						}
7410
					}
7411
7412
					// Only assign if different to avoid unneeded rendering.
7413
					finalValue = jQuery.trim( cur );
7414
					if ( curValue !== finalValue ) {
7415
						elem.setAttribute( "class", finalValue );
7416
					}
7417
				}
7418
			}
7419
		}
7420
7421
		return this;
7422
	},
7423
7424
	removeClass: function( value ) {
7425
		var classes, elem, cur, curValue, clazz, j, finalValue,
7426
			i = 0;
7427
7428
		if ( jQuery.isFunction( value ) ) {
7429
			return this.each( function( j ) {
7430
				jQuery( this ).removeClass( value.call( this, j, getClass( this ) ) );
7431
			} );
7432
		}
7433
7434
		if ( !arguments.length ) {
7435
			return this.attr( "class", "" );
7436
		}
7437
7438
		if ( typeof value === "string" && value ) {
7439
			classes = value.match( rnotwhite ) || [];
7440
7441
			while ( ( elem = this[ i++ ] ) ) {
7442
				curValue = getClass( elem );
7443
7444
				// This expression is here for better compressibility (see addClass)
7445
				cur = elem.nodeType === 1 &&
7446
					( " " + curValue + " " ).replace( rclass, " " );
7447
7448
				if ( cur ) {
7449
					j = 0;
7450
					while ( ( clazz = classes[ j++ ] ) ) {
7451
7452
						// Remove *all* instances
7453
						while ( cur.indexOf( " " + clazz + " " ) > -1 ) {
7454
							cur = cur.replace( " " + clazz + " ", " " );
7455
						}
7456
					}
7457
7458
					// Only assign if different to avoid unneeded rendering.
7459
					finalValue = jQuery.trim( cur );
7460
					if ( curValue !== finalValue ) {
7461
						elem.setAttribute( "class", finalValue );
7462
					}
7463
				}
7464
			}
7465
		}
7466
7467
		return this;
7468
	},
7469
7470
	toggleClass: function( value, stateVal ) {
7471
		var type = typeof value;
7472
7473
		if ( typeof stateVal === "boolean" && type === "string" ) {
7474
			return stateVal ? this.addClass( value ) : this.removeClass( value );
7475
		}
7476
7477
		if ( jQuery.isFunction( value ) ) {
7478
			return this.each( function( i ) {
7479
				jQuery( this ).toggleClass(
7480
					value.call( this, i, getClass( this ), stateVal ),
7481
					stateVal
7482
				);
7483
			} );
7484
		}
7485
7486
		return this.each( function() {
7487
			var className, i, self, classNames;
7488
7489
			if ( type === "string" ) {
7490
7491
				// Toggle individual class names
7492
				i = 0;
7493
				self = jQuery( this );
7494
				classNames = value.match( rnotwhite ) || [];
7495
7496
				while ( ( className = classNames[ i++ ] ) ) {
7497
7498
					// Check each className given, space separated list
7499
					if ( self.hasClass( className ) ) {
7500
						self.removeClass( className );
7501
					} else {
7502
						self.addClass( className );
7503
					}
7504
				}
7505
7506
			// Toggle whole class name
7507
			} else if ( value === undefined || type === "boolean" ) {
7508
				className = getClass( this );
7509
				if ( className ) {
7510
7511
					// Store className if set
7512
					dataPriv.set( this, "__className__", className );
7513
				}
7514
7515
				// If the element has a class name or if we're passed `false`,
7516
				// then remove the whole classname (if there was one, the above saved it).
7517
				// Otherwise bring back whatever was previously saved (if anything),
7518
				// falling back to the empty string if nothing was stored.
7519
				if ( this.setAttribute ) {
7520
					this.setAttribute( "class",
7521
						className || value === false ?
7522
						"" :
7523
						dataPriv.get( this, "__className__" ) || ""
7524
					);
7525
				}
7526
			}
7527
		} );
7528
	},
7529
7530
	hasClass: function( selector ) {
7531
		var className, elem,
7532
			i = 0;
7533
7534
		className = " " + selector + " ";
7535
		while ( ( elem = this[ i++ ] ) ) {
7536
			if ( elem.nodeType === 1 &&
7537
				( " " + getClass( elem ) + " " ).replace( rclass, " " )
7538
					.indexOf( className ) > -1
7539
			) {
7540
				return true;
7541
			}
7542
		}
7543
7544
		return false;
7545
	}
7546
} );
7547
7548
7549
7550
7551
var rreturn = /\r/g,
7552
	rspaces = /[\x20\t\r\n\f]+/g;
7553
7554
jQuery.fn.extend( {
7555
	val: function( value ) {
7556
		var hooks, ret, isFunction,
7557
			elem = this[ 0 ];
7558
7559
		if ( !arguments.length ) {
7560
			if ( elem ) {
7561
				hooks = jQuery.valHooks[ elem.type ] ||
7562
					jQuery.valHooks[ elem.nodeName.toLowerCase() ];
7563
7564
				if ( hooks &&
7565
					"get" in hooks &&
7566
					( ret = hooks.get( elem, "value" ) ) !== undefined
7567
				) {
7568
					return ret;
7569
				}
7570
7571
				ret = elem.value;
7572
7573
				return typeof ret === "string" ?
7574
7575
					// Handle most common string cases
7576
					ret.replace( rreturn, "" ) :
7577
7578
					// Handle cases where value is null/undef or number
7579
					ret == null ? "" : ret;
7580
			}
7581
7582
			return;
7583
		}
7584
7585
		isFunction = jQuery.isFunction( value );
7586
7587
		return this.each( function( i ) {
7588
			var val;
7589
7590
			if ( this.nodeType !== 1 ) {
7591
				return;
7592
			}
7593
7594
			if ( isFunction ) {
7595
				val = value.call( this, i, jQuery( this ).val() );
7596
			} else {
7597
				val = value;
7598
			}
7599
7600
			// Treat null/undefined as ""; convert numbers to string
7601
			if ( val == null ) {
7602
				val = "";
7603
7604
			} else if ( typeof val === "number" ) {
7605
				val += "";
7606
7607
			} else if ( jQuery.isArray( val ) ) {
7608
				val = jQuery.map( val, function( value ) {
7609
					return value == null ? "" : value + "";
7610
				} );
7611
			}
7612
7613
			hooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ];
7614
7615
			// If set returns undefined, fall back to normal setting
7616
			if ( !hooks || !( "set" in hooks ) || hooks.set( this, val, "value" ) === undefined ) {
7617
				this.value = val;
7618
			}
7619
		} );
7620
	}
7621
} );
7622
7623
jQuery.extend( {
7624
	valHooks: {
7625
		option: {
7626
			get: function( elem ) {
7627
7628
				var val = jQuery.find.attr( elem, "value" );
7629
				return val != null ?
7630
					val :
7631
7632
					// Support: IE10-11+
7633
					// option.text throws exceptions (#14686, #14858)
7634
					// Strip and collapse whitespace
7635
					// https://html.spec.whatwg.org/#strip-and-collapse-whitespace
7636
					jQuery.trim( jQuery.text( elem ) ).replace( rspaces, " " );
7637
			}
7638
		},
7639
		select: {
7640
			get: function( elem ) {
7641
				var value, option,
7642
					options = elem.options,
7643
					index = elem.selectedIndex,
7644
					one = elem.type === "select-one" || index < 0,
7645
					values = one ? null : [],
7646
					max = one ? index + 1 : options.length,
7647
					i = index < 0 ?
7648
						max :
7649
						one ? index : 0;
7650
7651
				// Loop through all the selected options
7652
				for ( ; i < max; i++ ) {
7653
					option = options[ i ];
7654
7655
					// IE8-9 doesn't update selected after form reset (#2551)
7656
					if ( ( option.selected || i === index ) &&
7657
7658
							// Don't return options that are disabled or in a disabled optgroup
7659
							( support.optDisabled ?
7660
								!option.disabled : option.getAttribute( "disabled" ) === null ) &&
7661
							( !option.parentNode.disabled ||
7662
								!jQuery.nodeName( option.parentNode, "optgroup" ) ) ) {
7663
7664
						// Get the specific value for the option
7665
						value = jQuery( option ).val();
7666
7667
						// We don't need an array for one selects
7668
						if ( one ) {
7669
							return value;
7670
						}
7671
7672
						// Multi-Selects return an array
7673
						values.push( value );
7674
					}
7675
				}
7676
7677
				return values;
7678
			},
7679
7680
			set: function( elem, value ) {
7681
				var optionSet, option,
7682
					options = elem.options,
7683
					values = jQuery.makeArray( value ),
7684
					i = options.length;
7685
7686
				while ( i-- ) {
7687
					option = options[ i ];
7688
					if ( option.selected =
7689
						jQuery.inArray( jQuery.valHooks.option.get( option ), values ) > -1
7690
					) {
7691
						optionSet = true;
7692
					}
7693
				}
7694
7695
				// Force browsers to behave consistently when non-matching value is set
7696
				if ( !optionSet ) {
7697
					elem.selectedIndex = -1;
7698
				}
7699
				return values;
7700
			}
7701
		}
7702
	}
7703
} );
7704
7705
// Radios and checkboxes getter/setter
7706
jQuery.each( [ "radio", "checkbox" ], function() {
7707
	jQuery.valHooks[ this ] = {
7708
		set: function( elem, value ) {
7709
			if ( jQuery.isArray( value ) ) {
7710
				return ( elem.checked = jQuery.inArray( jQuery( elem ).val(), value ) > -1 );
7711
			}
7712
		}
7713
	};
7714
	if ( !support.checkOn ) {
7715
		jQuery.valHooks[ this ].get = function( elem ) {
7716
			return elem.getAttribute( "value" ) === null ? "on" : elem.value;
7717
		};
7718
	}
7719
} );
7720
7721
7722
7723
7724
// Return jQuery for attributes-only inclusion
7725
7726
7727
var rfocusMorph = /^(?:focusinfocus|focusoutblur)$/;
7728
7729
jQuery.extend( jQuery.event, {
7730
7731
	trigger: function( event, data, elem, onlyHandlers ) {
7732
7733
		var i, cur, tmp, bubbleType, ontype, handle, special,
7734
			eventPath = [ elem || document ],
7735
			type = hasOwn.call( event, "type" ) ? event.type : event,
7736
			namespaces = hasOwn.call( event, "namespace" ) ? event.namespace.split( "." ) : [];
7737
7738
		cur = tmp = elem = elem || document;
7739
7740
		// Don't do events on text and comment nodes
7741
		if ( elem.nodeType === 3 || elem.nodeType === 8 ) {
7742
			return;
7743
		}
7744
7745
		// focus/blur morphs to focusin/out; ensure we're not firing them right now
7746
		if ( rfocusMorph.test( type + jQuery.event.triggered ) ) {
7747
			return;
7748
		}
7749
7750
		if ( type.indexOf( "." ) > -1 ) {
7751
7752
			// Namespaced trigger; create a regexp to match event type in handle()
7753
			namespaces = type.split( "." );
7754
			type = namespaces.shift();
7755
			namespaces.sort();
7756
		}
7757
		ontype = type.indexOf( ":" ) < 0 && "on" + type;
7758
7759
		// Caller can pass in a jQuery.Event object, Object, or just an event type string
7760
		event = event[ jQuery.expando ] ?
7761
			event :
7762
			new jQuery.Event( type, typeof event === "object" && event );
7763
7764
		// Trigger bitmask: & 1 for native handlers; & 2 for jQuery (always true)
7765
		event.isTrigger = onlyHandlers ? 2 : 3;
7766
		event.namespace = namespaces.join( "." );
7767
		event.rnamespace = event.namespace ?
7768
			new RegExp( "(^|\\.)" + namespaces.join( "\\.(?:.*\\.|)" ) + "(\\.|$)" ) :
7769
			null;
7770
7771
		// Clean up the event in case it is being reused
7772
		event.result = undefined;
7773
		if ( !event.target ) {
7774
			event.target = elem;
7775
		}
7776
7777
		// Clone any incoming data and prepend the event, creating the handler arg list
7778
		data = data == null ?
7779
			[ event ] :
7780
			jQuery.makeArray( data, [ event ] );
7781
7782
		// Allow special events to draw outside the lines
7783
		special = jQuery.event.special[ type ] || {};
7784
		if ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) {
7785
			return;
7786
		}
7787
7788
		// Determine event propagation path in advance, per W3C events spec (#9951)
7789
		// Bubble up to document, then to window; watch for a global ownerDocument var (#9724)
7790
		if ( !onlyHandlers && !special.noBubble && !jQuery.isWindow( elem ) ) {
7791
7792
			bubbleType = special.delegateType || type;
7793
			if ( !rfocusMorph.test( bubbleType + type ) ) {
7794
				cur = cur.parentNode;
7795
			}
7796
			for ( ; cur; cur = cur.parentNode ) {
7797
				eventPath.push( cur );
7798
				tmp = cur;
7799
			}
7800
7801
			// Only add window if we got to document (e.g., not plain obj or detached DOM)
7802
			if ( tmp === ( elem.ownerDocument || document ) ) {
7803
				eventPath.push( tmp.defaultView || tmp.parentWindow || window );
7804
			}
7805
		}
7806
7807
		// Fire handlers on the event path
7808
		i = 0;
7809
		while ( ( cur = eventPath[ i++ ] ) && !event.isPropagationStopped() ) {
7810
7811
			event.type = i > 1 ?
7812
				bubbleType :
7813
				special.bindType || type;
7814
7815
			// jQuery handler
7816
			handle = ( dataPriv.get( cur, "events" ) || {} )[ event.type ] &&
7817
				dataPriv.get( cur, "handle" );
7818
			if ( handle ) {
7819
				handle.apply( cur, data );
7820
			}
7821
7822
			// Native handler
7823
			handle = ontype && cur[ ontype ];
7824
			if ( handle && handle.apply && acceptData( cur ) ) {
7825
				event.result = handle.apply( cur, data );
7826
				if ( event.result === false ) {
7827
					event.preventDefault();
7828
				}
7829
			}
7830
		}
7831
		event.type = type;
7832
7833
		// If nobody prevented the default action, do it now
7834
		if ( !onlyHandlers && !event.isDefaultPrevented() ) {
7835
7836
			if ( ( !special._default ||
7837
				special._default.apply( eventPath.pop(), data ) === false ) &&
7838
				acceptData( elem ) ) {
7839
7840
				// Call a native DOM method on the target with the same name name as the event.
7841
				// Don't do default actions on window, that's where global variables be (#6170)
7842
				if ( ontype && jQuery.isFunction( elem[ type ] ) && !jQuery.isWindow( elem ) ) {
7843
7844
					// Don't re-trigger an onFOO event when we call its FOO() method
7845
					tmp = elem[ ontype ];
7846
7847
					if ( tmp ) {
7848
						elem[ ontype ] = null;
7849
					}
7850
7851
					// Prevent re-triggering of the same event, since we already bubbled it above
7852
					jQuery.event.triggered = type;
7853
					elem[ type ]();
7854
					jQuery.event.triggered = undefined;
7855
7856
					if ( tmp ) {
7857
						elem[ ontype ] = tmp;
7858
					}
7859
				}
7860
			}
7861
		}
7862
7863
		return event.result;
7864
	},
7865
7866
	// Piggyback on a donor event to simulate a different one
7867
	simulate: function( type, elem, event ) {
7868
		var e = jQuery.extend(
7869
			new jQuery.Event(),
7870
			event,
7871
			{
7872
				type: type,
7873
				isSimulated: true
7874
7875
				// Previously, `originalEvent: {}` was set here, so stopPropagation call
7876
				// would not be triggered on donor event, since in our own
7877
				// jQuery.event.stopPropagation function we had a check for existence of
7878
				// originalEvent.stopPropagation method, so, consequently it would be a noop.
7879
				//
7880
				// But now, this "simulate" function is used only for events
7881
				// for which stopPropagation() is noop, so there is no need for that anymore.
7882
				//
7883
				// For the 1.x branch though, guard for "click" and "submit"
7884
				// events is still used, but was moved to jQuery.event.stopPropagation function
7885
				// because `originalEvent` should point to the original event for the constancy
7886
				// with other events and for more focused logic
7887
			}
7888
		);
7889
7890
		jQuery.event.trigger( e, null, elem );
7891
7892
		if ( e.isDefaultPrevented() ) {
7893
			event.preventDefault();
7894
		}
7895
	}
7896
7897
} );
7898
7899
jQuery.fn.extend( {
7900
7901
	trigger: function( type, data ) {
7902
		return this.each( function() {
7903
			jQuery.event.trigger( type, data, this );
7904
		} );
7905
	},
7906
	triggerHandler: function( type, data ) {
7907
		var elem = this[ 0 ];
7908
		if ( elem ) {
7909
			return jQuery.event.trigger( type, data, elem, true );
7910
		}
7911
	}
7912
} );
7913
7914
7915
jQuery.each( ( "blur focus focusin focusout load resize scroll unload click dblclick " +
7916
	"mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave " +
7917
	"change select submit keydown keypress keyup error contextmenu" ).split( " " ),
7918
	function( i, name ) {
7919
7920
	// Handle event binding
7921
	jQuery.fn[ name ] = function( data, fn ) {
7922
		return arguments.length > 0 ?
7923
			this.on( name, null, data, fn ) :
7924
			this.trigger( name );
7925
	};
7926
} );
7927
7928
jQuery.fn.extend( {
7929
	hover: function( fnOver, fnOut ) {
7930
		return this.mouseenter( fnOver ).mouseleave( fnOut || fnOver );
7931
	}
7932
} );
7933
7934
7935
7936
7937
support.focusin = "onfocusin" in window;
7938
7939
7940
// Support: Firefox
7941
// Firefox doesn't have focus(in | out) events
7942
// Related ticket - https://bugzilla.mozilla.org/show_bug.cgi?id=687787
7943
//
7944
// Support: Chrome, Safari
7945
// focus(in | out) events fire after focus & blur events,
7946
// which is spec violation - http://www.w3.org/TR/DOM-Level-3-Events/#events-focusevent-event-order
7947
// Related ticket - https://code.google.com/p/chromium/issues/detail?id=449857
7948
if ( !support.focusin ) {
7949
	jQuery.each( { focus: "focusin", blur: "focusout" }, function( orig, fix ) {
7950
7951
		// Attach a single capturing handler on the document while someone wants focusin/focusout
7952
		var handler = function( event ) {
7953
			jQuery.event.simulate( fix, event.target, jQuery.event.fix( event ) );
7954
		};
7955
7956
		jQuery.event.special[ fix ] = {
7957
			setup: function() {
7958
				var doc = this.ownerDocument || this,
7959
					attaches = dataPriv.access( doc, fix );
7960
7961
				if ( !attaches ) {
7962
					doc.addEventListener( orig, handler, true );
7963
				}
7964
				dataPriv.access( doc, fix, ( attaches || 0 ) + 1 );
7965
			},
7966
			teardown: function() {
7967
				var doc = this.ownerDocument || this,
7968
					attaches = dataPriv.access( doc, fix ) - 1;
7969
7970
				if ( !attaches ) {
7971
					doc.removeEventListener( orig, handler, true );
7972
					dataPriv.remove( doc, fix );
7973
7974
				} else {
7975
					dataPriv.access( doc, fix, attaches );
7976
				}
7977
			}
7978
		};
7979
	} );
7980
}
7981
var location = window.location;
7982
7983
var nonce = jQuery.now();
7984
7985
var rquery = ( /\?/ );
7986
7987
7988
7989
// Support: Android 2.3
7990
// Workaround failure to string-cast null input
7991
jQuery.parseJSON = function( data ) {
7992
	return JSON.parse( data + "" );
7993
};
7994
7995
7996
// Cross-browser xml parsing
7997
jQuery.parseXML = function( data ) {
7998
	var xml;
7999
	if ( !data || typeof data !== "string" ) {
8000
		return null;
8001
	}
8002
8003
	// Support: IE9
8004
	try {
8005
		xml = ( new window.DOMParser() ).parseFromString( data, "text/xml" );
8006
	} catch ( e ) {
8007
		xml = undefined;
8008
	}
8009
8010
	if ( !xml || xml.getElementsByTagName( "parsererror" ).length ) {
8011
		jQuery.error( "Invalid XML: " + data );
8012
	}
8013
	return xml;
8014
};
8015
8016
8017
var
8018
	rhash = /#.*$/,
8019
	rts = /([?&])_=[^&]*/,
8020
	rheaders = /^(.*?):[ \t]*([^\r\n]*)$/mg,
8021
8022
	// #7653, #8125, #8152: local protocol detection
8023
	rlocalProtocol = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/,
8024
	rnoContent = /^(?:GET|HEAD)$/,
8025
	rprotocol = /^\/\//,
8026
8027
	/* Prefilters
8028
	 * 1) They are useful to introduce custom dataTypes (see ajax/jsonp.js for an example)
8029
	 * 2) These are called:
8030
	 *    - BEFORE asking for a transport
8031
	 *    - AFTER param serialization (s.data is a string if s.processData is true)
8032
	 * 3) key is the dataType
8033
	 * 4) the catchall symbol "*" can be used
8034
	 * 5) execution will start with transport dataType and THEN continue down to "*" if needed
8035
	 */
8036
	prefilters = {},
8037
8038
	/* Transports bindings
8039
	 * 1) key is the dataType
8040
	 * 2) the catchall symbol "*" can be used
8041
	 * 3) selection will start with transport dataType and THEN go to "*" if needed
8042
	 */
8043
	transports = {},
8044
8045
	// Avoid comment-prolog char sequence (#10098); must appease lint and evade compression
8046
	allTypes = "*/".concat( "*" ),
8047
8048
	// Anchor tag for parsing the document origin
8049
	originAnchor = document.createElement( "a" );
8050
	originAnchor.href = location.href;
8051
8052
// Base "constructor" for jQuery.ajaxPrefilter and jQuery.ajaxTransport
8053
function addToPrefiltersOrTransports( structure ) {
8054
8055
	// dataTypeExpression is optional and defaults to "*"
8056
	return function( dataTypeExpression, func ) {
8057
8058
		if ( typeof dataTypeExpression !== "string" ) {
8059
			func = dataTypeExpression;
8060
			dataTypeExpression = "*";
8061
		}
8062
8063
		var dataType,
8064
			i = 0,
8065
			dataTypes = dataTypeExpression.toLowerCase().match( rnotwhite ) || [];
8066
8067
		if ( jQuery.isFunction( func ) ) {
8068
8069
			// For each dataType in the dataTypeExpression
8070
			while ( ( dataType = dataTypes[ i++ ] ) ) {
8071
8072
				// Prepend if requested
8073
				if ( dataType[ 0 ] === "+" ) {
8074
					dataType = dataType.slice( 1 ) || "*";
8075
					( structure[ dataType ] = structure[ dataType ] || [] ).unshift( func );
8076
8077
				// Otherwise append
8078
				} else {
8079
					( structure[ dataType ] = structure[ dataType ] || [] ).push( func );
8080
				}
8081
			}
8082
		}
8083
	};
8084
}
8085
8086
// Base inspection function for prefilters and transports
8087
function inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR ) {
8088
8089
	var inspected = {},
8090
		seekingTransport = ( structure === transports );
8091
8092
	function inspect( dataType ) {
8093
		var selected;
8094
		inspected[ dataType ] = true;
8095
		jQuery.each( structure[ dataType ] || [], function( _, prefilterOrFactory ) {
8096
			var dataTypeOrTransport = prefilterOrFactory( options, originalOptions, jqXHR );
8097
			if ( typeof dataTypeOrTransport === "string" &&
8098
				!seekingTransport && !inspected[ dataTypeOrTransport ] ) {
8099
8100
				options.dataTypes.unshift( dataTypeOrTransport );
8101
				inspect( dataTypeOrTransport );
8102
				return false;
8103
			} else if ( seekingTransport ) {
8104
				return !( selected = dataTypeOrTransport );
8105
			}
8106
		} );
8107
		return selected;
8108
	}
8109
8110
	return inspect( options.dataTypes[ 0 ] ) || !inspected[ "*" ] && inspect( "*" );
8111
}
8112
8113
// A special extend for ajax options
8114
// that takes "flat" options (not to be deep extended)
8115
// Fixes #9887
8116
function ajaxExtend( target, src ) {
8117
	var key, deep,
8118
		flatOptions = jQuery.ajaxSettings.flatOptions || {};
8119
8120
	for ( key in src ) {
8121
		if ( src[ key ] !== undefined ) {
8122
			( flatOptions[ key ] ? target : ( deep || ( deep = {} ) ) )[ key ] = src[ key ];
8123
		}
8124
	}
8125
	if ( deep ) {
8126
		jQuery.extend( true, target, deep );
8127
	}
8128
8129
	return target;
8130
}
8131
8132
/* Handles responses to an ajax request:
8133
 * - finds the right dataType (mediates between content-type and expected dataType)
8134
 * - returns the corresponding response
8135
 */
8136
function ajaxHandleResponses( s, jqXHR, responses ) {
8137
8138
	var ct, type, finalDataType, firstDataType,
8139
		contents = s.contents,
8140
		dataTypes = s.dataTypes;
8141
8142
	// Remove auto dataType and get content-type in the process
8143
	while ( dataTypes[ 0 ] === "*" ) {
8144
		dataTypes.shift();
8145
		if ( ct === undefined ) {
8146
			ct = s.mimeType || jqXHR.getResponseHeader( "Content-Type" );
8147
		}
8148
	}
8149
8150
	// Check if we're dealing with a known content-type
8151
	if ( ct ) {
8152
		for ( type in contents ) {
8153
			if ( contents[ type ] && contents[ type ].test( ct ) ) {
8154
				dataTypes.unshift( type );
8155
				break;
8156
			}
8157
		}
8158
	}
8159
8160
	// Check to see if we have a response for the expected dataType
8161
	if ( dataTypes[ 0 ] in responses ) {
8162
		finalDataType = dataTypes[ 0 ];
8163
	} else {
8164
8165
		// Try convertible dataTypes
8166
		for ( type in responses ) {
8167
			if ( !dataTypes[ 0 ] || s.converters[ type + " " + dataTypes[ 0 ] ] ) {
8168
				finalDataType = type;
8169
				break;
8170
			}
8171
			if ( !firstDataType ) {
8172
				firstDataType = type;
8173
			}
8174
		}
8175
8176
		// Or just use first one
8177
		finalDataType = finalDataType || firstDataType;
8178
	}
8179
8180
	// If we found a dataType
8181
	// We add the dataType to the list if needed
8182
	// and return the corresponding response
8183
	if ( finalDataType ) {
8184
		if ( finalDataType !== dataTypes[ 0 ] ) {
8185
			dataTypes.unshift( finalDataType );
8186
		}
8187
		return responses[ finalDataType ];
8188
	}
8189
}
8190
8191
/* Chain conversions given the request and the original response
8192
 * Also sets the responseXXX fields on the jqXHR instance
8193
 */
8194
function ajaxConvert( s, response, jqXHR, isSuccess ) {
8195
	var conv2, current, conv, tmp, prev,
8196
		converters = {},
8197
8198
		// Work with a copy of dataTypes in case we need to modify it for conversion
8199
		dataTypes = s.dataTypes.slice();
8200
8201
	// Create converters map with lowercased keys
8202
	if ( dataTypes[ 1 ] ) {
8203
		for ( conv in s.converters ) {
8204
			converters[ conv.toLowerCase() ] = s.converters[ conv ];
8205
		}
8206
	}
8207
8208
	current = dataTypes.shift();
8209
8210
	// Convert to each sequential dataType
8211
	while ( current ) {
8212
8213
		if ( s.responseFields[ current ] ) {
8214
			jqXHR[ s.responseFields[ current ] ] = response;
8215
		}
8216
8217
		// Apply the dataFilter if provided
8218
		if ( !prev && isSuccess && s.dataFilter ) {
8219
			response = s.dataFilter( response, s.dataType );
8220
		}
8221
8222
		prev = current;
8223
		current = dataTypes.shift();
8224
8225
		if ( current ) {
8226
8227
		// There's only work to do if current dataType is non-auto
8228
			if ( current === "*" ) {
8229
8230
				current = prev;
8231
8232
			// Convert response if prev dataType is non-auto and differs from current
8233
			} else if ( prev !== "*" && prev !== current ) {
8234
8235
				// Seek a direct converter
8236
				conv = converters[ prev + " " + current ] || converters[ "* " + current ];
8237
8238
				// If none found, seek a pair
8239
				if ( !conv ) {
8240
					for ( conv2 in converters ) {
8241
8242
						// If conv2 outputs current
8243
						tmp = conv2.split( " " );
8244
						if ( tmp[ 1 ] === current ) {
8245
8246
							// If prev can be converted to accepted input
8247
							conv = converters[ prev + " " + tmp[ 0 ] ] ||
8248
								converters[ "* " + tmp[ 0 ] ];
8249
							if ( conv ) {
8250
8251
								// Condense equivalence converters
8252
								if ( conv === true ) {
8253
									conv = converters[ conv2 ];
8254
8255
								// Otherwise, insert the intermediate dataType
8256
								} else if ( converters[ conv2 ] !== true ) {
8257
									current = tmp[ 0 ];
8258
									dataTypes.unshift( tmp[ 1 ] );
8259
								}
8260
								break;
8261
							}
8262
						}
8263
					}
8264
				}
8265
8266
				// Apply converter (if not an equivalence)
8267
				if ( conv !== true ) {
8268
8269
					// Unless errors are allowed to bubble, catch and return them
8270
					if ( conv && s.throws ) {
8271
						response = conv( response );
8272
					} else {
8273
						try {
8274
							response = conv( response );
8275
						} catch ( e ) {
8276
							return {
8277
								state: "parsererror",
8278
								error: conv ? e : "No conversion from " + prev + " to " + current
8279
							};
8280
						}
8281
					}
8282
				}
8283
			}
8284
		}
8285
	}
8286
8287
	return { state: "success", data: response };
8288
}
8289
8290
jQuery.extend( {
8291
8292
	// Counter for holding the number of active queries
8293
	active: 0,
8294
8295
	// Last-Modified header cache for next request
8296
	lastModified: {},
8297
	etag: {},
8298
8299
	ajaxSettings: {
8300
		url: location.href,
8301
		type: "GET",
8302
		isLocal: rlocalProtocol.test( location.protocol ),
8303
		global: true,
8304
		processData: true,
8305
		async: true,
8306
		contentType: "application/x-www-form-urlencoded; charset=UTF-8",
8307
		/*
8308
		timeout: 0,
8309
		data: null,
8310
		dataType: null,
8311
		username: null,
8312
		password: null,
8313
		cache: null,
8314
		throws: false,
8315
		traditional: false,
8316
		headers: {},
8317
		*/
8318
8319
		accepts: {
8320
			"*": allTypes,
8321
			text: "text/plain",
8322
			html: "text/html",
8323
			xml: "application/xml, text/xml",
8324
			json: "application/json, text/javascript"
8325
		},
8326
8327
		contents: {
8328
			xml: /\bxml\b/,
8329
			html: /\bhtml/,
8330
			json: /\bjson\b/
8331
		},
8332
8333
		responseFields: {
8334
			xml: "responseXML",
8335
			text: "responseText",
8336
			json: "responseJSON"
8337
		},
8338
8339
		// Data converters
8340
		// Keys separate source (or catchall "*") and destination types with a single space
8341
		converters: {
8342
8343
			// Convert anything to text
8344
			"* text": String,
8345
8346
			// Text to html (true = no transformation)
8347
			"text html": true,
8348
8349
			// Evaluate text as a json expression
8350
			"text json": jQuery.parseJSON,
8351
8352
			// Parse text as xml
8353
			"text xml": jQuery.parseXML
8354
		},
8355
8356
		// For options that shouldn't be deep extended:
8357
		// you can add your own custom options here if
8358
		// and when you create one that shouldn't be
8359
		// deep extended (see ajaxExtend)
8360
		flatOptions: {
8361
			url: true,
8362
			context: true
8363
		}
8364
	},
8365
8366
	// Creates a full fledged settings object into target
8367
	// with both ajaxSettings and settings fields.
8368
	// If target is omitted, writes into ajaxSettings.
8369
	ajaxSetup: function( target, settings ) {
8370
		return settings ?
8371
8372
			// Building a settings object
8373
			ajaxExtend( ajaxExtend( target, jQuery.ajaxSettings ), settings ) :
8374
8375
			// Extending ajaxSettings
8376
			ajaxExtend( jQuery.ajaxSettings, target );
8377
	},
8378
8379
	ajaxPrefilter: addToPrefiltersOrTransports( prefilters ),
8380
	ajaxTransport: addToPrefiltersOrTransports( transports ),
8381
8382
	// Main method
8383
	ajax: function( url, options ) {
8384
8385
		// If url is an object, simulate pre-1.5 signature
8386
		if ( typeof url === "object" ) {
8387
			options = url;
8388
			url = undefined;
8389
		}
8390
8391
		// Force options to be an object
8392
		options = options || {};
8393
8394
		var transport,
8395
8396
			// URL without anti-cache param
8397
			cacheURL,
8398
8399
			// Response headers
8400
			responseHeadersString,
8401
			responseHeaders,
8402
8403
			// timeout handle
8404
			timeoutTimer,
8405
8406
			// Url cleanup var
8407
			urlAnchor,
8408
8409
			// To know if global events are to be dispatched
8410
			fireGlobals,
8411
8412
			// Loop variable
8413
			i,
8414
8415
			// Create the final options object
8416
			s = jQuery.ajaxSetup( {}, options ),
8417
8418
			// Callbacks context
8419
			callbackContext = s.context || s,
8420
8421
			// Context for global events is callbackContext if it is a DOM node or jQuery collection
8422
			globalEventContext = s.context &&
8423
				( callbackContext.nodeType || callbackContext.jquery ) ?
8424
					jQuery( callbackContext ) :
8425
					jQuery.event,
8426
8427
			// Deferreds
8428
			deferred = jQuery.Deferred(),
8429
			completeDeferred = jQuery.Callbacks( "once memory" ),
8430
8431
			// Status-dependent callbacks
8432
			statusCode = s.statusCode || {},
8433
8434
			// Headers (they are sent all at once)
8435
			requestHeaders = {},
8436
			requestHeadersNames = {},
8437
8438
			// The jqXHR state
8439
			state = 0,
8440
8441
			// Default abort message
8442
			strAbort = "canceled",
8443
8444
			// Fake xhr
8445
			jqXHR = {
8446
				readyState: 0,
8447
8448
				// Builds headers hashtable if needed
8449
				getResponseHeader: function( key ) {
8450
					var match;
8451
					if ( state === 2 ) {
8452
						if ( !responseHeaders ) {
8453
							responseHeaders = {};
8454
							while ( ( match = rheaders.exec( responseHeadersString ) ) ) {
8455
								responseHeaders[ match[ 1 ].toLowerCase() ] = match[ 2 ];
8456
							}
8457
						}
8458
						match = responseHeaders[ key.toLowerCase() ];
8459
					}
8460
					return match == null ? null : match;
8461
				},
8462
8463
				// Raw string
8464
				getAllResponseHeaders: function() {
8465
					return state === 2 ? responseHeadersString : null;
8466
				},
8467
8468
				// Caches the header
8469
				setRequestHeader: function( name, value ) {
8470
					var lname = name.toLowerCase();
8471
					if ( !state ) {
8472
						name = requestHeadersNames[ lname ] = requestHeadersNames[ lname ] || name;
8473
						requestHeaders[ name ] = value;
8474
					}
8475
					return this;
8476
				},
8477
8478
				// Overrides response content-type header
8479
				overrideMimeType: function( type ) {
8480
					if ( !state ) {
8481
						s.mimeType = type;
8482
					}
8483
					return this;
8484
				},
8485
8486
				// Status-dependent callbacks
8487
				statusCode: function( map ) {
8488
					var code;
8489
					if ( map ) {
8490
						if ( state < 2 ) {
8491
							for ( code in map ) {
8492
8493
								// Lazy-add the new callback in a way that preserves old ones
8494
								statusCode[ code ] = [ statusCode[ code ], map[ code ] ];
8495
							}
8496
						} else {
8497
8498
							// Execute the appropriate callbacks
8499
							jqXHR.always( map[ jqXHR.status ] );
8500
						}
8501
					}
8502
					return this;
8503
				},
8504
8505
				// Cancel the request
8506
				abort: function( statusText ) {
8507
					var finalText = statusText || strAbort;
8508
					if ( transport ) {
8509
						transport.abort( finalText );
8510
					}
8511
					done( 0, finalText );
8512
					return this;
8513
				}
8514
			};
8515
8516
		// Attach deferreds
8517
		deferred.promise( jqXHR ).complete = completeDeferred.add;
8518
		jqXHR.success = jqXHR.done;
8519
		jqXHR.error = jqXHR.fail;
8520
8521
		// Remove hash character (#7531: and string promotion)
8522
		// Add protocol if not provided (prefilters might expect it)
8523
		// Handle falsy url in the settings object (#10093: consistency with old signature)
8524
		// We also use the url parameter if available
8525
		s.url = ( ( url || s.url || location.href ) + "" ).replace( rhash, "" )
8526
			.replace( rprotocol, location.protocol + "//" );
8527
8528
		// Alias method option to type as per ticket #12004
8529
		s.type = options.method || options.type || s.method || s.type;
8530
8531
		// Extract dataTypes list
8532
		s.dataTypes = jQuery.trim( s.dataType || "*" ).toLowerCase().match( rnotwhite ) || [ "" ];
8533
8534
		// A cross-domain request is in order when the origin doesn't match the current origin.
8535
		if ( s.crossDomain == null ) {
8536
			urlAnchor = document.createElement( "a" );
8537
8538
			// Support: IE8-11+
8539
			// IE throws exception if url is malformed, e.g. http://example.com:80x/
8540
			try {
8541
				urlAnchor.href = s.url;
8542
8543
				// Support: IE8-11+
8544
				// Anchor's host property isn't correctly set when s.url is relative
8545
				urlAnchor.href = urlAnchor.href;
8546
				s.crossDomain = originAnchor.protocol + "//" + originAnchor.host !==
8547
					urlAnchor.protocol + "//" + urlAnchor.host;
8548
			} catch ( e ) {
8549
8550
				// If there is an error parsing the URL, assume it is crossDomain,
8551
				// it can be rejected by the transport if it is invalid
8552
				s.crossDomain = true;
8553
			}
8554
		}
8555
8556
		// Convert data if not already a string
8557
		if ( s.data && s.processData && typeof s.data !== "string" ) {
8558
			s.data = jQuery.param( s.data, s.traditional );
8559
		}
8560
8561
		// Apply prefilters
8562
		inspectPrefiltersOrTransports( prefilters, s, options, jqXHR );
8563
8564
		// If request was aborted inside a prefilter, stop there
8565
		if ( state === 2 ) {
8566
			return jqXHR;
8567
		}
8568
8569
		// We can fire global events as of now if asked to
8570
		// Don't fire events if jQuery.event is undefined in an AMD-usage scenario (#15118)
8571
		fireGlobals = jQuery.event && s.global;
8572
8573
		// Watch for a new set of requests
8574
		if ( fireGlobals && jQuery.active++ === 0 ) {
8575
			jQuery.event.trigger( "ajaxStart" );
8576
		}
8577
8578
		// Uppercase the type
8579
		s.type = s.type.toUpperCase();
8580
8581
		// Determine if request has content
8582
		s.hasContent = !rnoContent.test( s.type );
8583
8584
		// Save the URL in case we're toying with the If-Modified-Since
8585
		// and/or If-None-Match header later on
8586
		cacheURL = s.url;
8587
8588
		// More options handling for requests with no content
8589
		if ( !s.hasContent ) {
8590
8591
			// If data is available, append data to url
8592
			if ( s.data ) {
8593
				cacheURL = ( s.url += ( rquery.test( cacheURL ) ? "&" : "?" ) + s.data );
8594
8595
				// #9682: remove data so that it's not used in an eventual retry
8596
				delete s.data;
8597
			}
8598
8599
			// Add anti-cache in url if needed
8600
			if ( s.cache === false ) {
8601
				s.url = rts.test( cacheURL ) ?
8602
8603
					// If there is already a '_' parameter, set its value
8604
					cacheURL.replace( rts, "$1_=" + nonce++ ) :
8605
8606
					// Otherwise add one to the end
8607
					cacheURL + ( rquery.test( cacheURL ) ? "&" : "?" ) + "_=" + nonce++;
8608
			}
8609
		}
8610
8611
		// Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.
8612
		if ( s.ifModified ) {
8613
			if ( jQuery.lastModified[ cacheURL ] ) {
8614
				jqXHR.setRequestHeader( "If-Modified-Since", jQuery.lastModified[ cacheURL ] );
8615
			}
8616
			if ( jQuery.etag[ cacheURL ] ) {
8617
				jqXHR.setRequestHeader( "If-None-Match", jQuery.etag[ cacheURL ] );
8618
			}
8619
		}
8620
8621
		// Set the correct header, if data is being sent
8622
		if ( s.data && s.hasContent && s.contentType !== false || options.contentType ) {
8623
			jqXHR.setRequestHeader( "Content-Type", s.contentType );
8624
		}
8625
8626
		// Set the Accepts header for the server, depending on the dataType
8627
		jqXHR.setRequestHeader(
8628
			"Accept",
8629
			s.dataTypes[ 0 ] && s.accepts[ s.dataTypes[ 0 ] ] ?
8630
				s.accepts[ s.dataTypes[ 0 ] ] +
8631
					( s.dataTypes[ 0 ] !== "*" ? ", " + allTypes + "; q=0.01" : "" ) :
8632
				s.accepts[ "*" ]
8633
		);
8634
8635
		// Check for headers option
8636
		for ( i in s.headers ) {
8637
			jqXHR.setRequestHeader( i, s.headers[ i ] );
8638
		}
8639
8640
		// Allow custom headers/mimetypes and early abort
8641
		if ( s.beforeSend &&
8642
			( s.beforeSend.call( callbackContext, jqXHR, s ) === false || state === 2 ) ) {
8643
8644
			// Abort if not done already and return
8645
			return jqXHR.abort();
8646
		}
8647
8648
		// Aborting is no longer a cancellation
8649
		strAbort = "abort";
8650
8651
		// Install callbacks on deferreds
8652
		for ( i in { success: 1, error: 1, complete: 1 } ) {
8653
			jqXHR[ i ]( s[ i ] );
8654
		}
8655
8656
		// Get transport
8657
		transport = inspectPrefiltersOrTransports( transports, s, options, jqXHR );
8658
8659
		// If no transport, we auto-abort
8660
		if ( !transport ) {
8661
			done( -1, "No Transport" );
8662
		} else {
8663
			jqXHR.readyState = 1;
8664
8665
			// Send global event
8666
			if ( fireGlobals ) {
8667
				globalEventContext.trigger( "ajaxSend", [ jqXHR, s ] );
8668
			}
8669
8670
			// If request was aborted inside ajaxSend, stop there
8671
			if ( state === 2 ) {
8672
				return jqXHR;
8673
			}
8674
8675
			// Timeout
8676
			if ( s.async && s.timeout > 0 ) {
8677
				timeoutTimer = window.setTimeout( function() {
8678
					jqXHR.abort( "timeout" );
8679
				}, s.timeout );
8680
			}
8681
8682
			try {
8683
				state = 1;
8684
				transport.send( requestHeaders, done );
8685
			} catch ( e ) {
8686
8687
				// Propagate exception as error if not done
8688
				if ( state < 2 ) {
8689
					done( -1, e );
8690
8691
				// Simply rethrow otherwise
8692
				} else {
8693
					throw e;
8694
				}
8695
			}
8696
		}
8697
8698
		// Callback for when everything is done
8699
		function done( status, nativeStatusText, responses, headers ) {
8700
			var isSuccess, success, error, response, modified,
8701
				statusText = nativeStatusText;
8702
8703
			// Called once
8704
			if ( state === 2 ) {
8705
				return;
8706
			}
8707
8708
			// State is "done" now
8709
			state = 2;
8710
8711
			// Clear timeout if it exists
8712
			if ( timeoutTimer ) {
8713
				window.clearTimeout( timeoutTimer );
8714
			}
8715
8716
			// Dereference transport for early garbage collection
8717
			// (no matter how long the jqXHR object will be used)
8718
			transport = undefined;
8719
8720
			// Cache response headers
8721
			responseHeadersString = headers || "";
8722
8723
			// Set readyState
8724
			jqXHR.readyState = status > 0 ? 4 : 0;
8725
8726
			// Determine if successful
8727
			isSuccess = status >= 200 && status < 300 || status === 304;
8728
8729
			// Get response data
8730
			if ( responses ) {
8731
				response = ajaxHandleResponses( s, jqXHR, responses );
8732
			}
8733
8734
			// Convert no matter what (that way responseXXX fields are always set)
8735
			response = ajaxConvert( s, response, jqXHR, isSuccess );
8736
8737
			// If successful, handle type chaining
8738
			if ( isSuccess ) {
8739
8740
				// Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.
8741
				if ( s.ifModified ) {
8742
					modified = jqXHR.getResponseHeader( "Last-Modified" );
8743
					if ( modified ) {
8744
						jQuery.lastModified[ cacheURL ] = modified;
8745
					}
8746
					modified = jqXHR.getResponseHeader( "etag" );
8747
					if ( modified ) {
8748
						jQuery.etag[ cacheURL ] = modified;
8749
					}
8750
				}
8751
8752
				// if no content
8753
				if ( status === 204 || s.type === "HEAD" ) {
8754
					statusText = "nocontent";
8755
8756
				// if not modified
8757
				} else if ( status === 304 ) {
8758
					statusText = "notmodified";
8759
8760
				// If we have data, let's convert it
8761
				} else {
8762
					statusText = response.state;
8763
					success = response.data;
8764
					error = response.error;
8765
					isSuccess = !error;
8766
				}
8767
			} else {
8768
8769
				// Extract error from statusText and normalize for non-aborts
8770
				error = statusText;
8771
				if ( status || !statusText ) {
8772
					statusText = "error";
8773
					if ( status < 0 ) {
8774
						status = 0;
8775
					}
8776
				}
8777
			}
8778
8779
			// Set data for the fake xhr object
8780
			jqXHR.status = status;
8781
			jqXHR.statusText = ( nativeStatusText || statusText ) + "";
8782
8783
			// Success/Error
8784
			if ( isSuccess ) {
8785
				deferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] );
8786
			} else {
8787
				deferred.rejectWith( callbackContext, [ jqXHR, statusText, error ] );
8788
			}
8789
8790
			// Status-dependent callbacks
8791
			jqXHR.statusCode( statusCode );
8792
			statusCode = undefined;
8793
8794
			if ( fireGlobals ) {
8795
				globalEventContext.trigger( isSuccess ? "ajaxSuccess" : "ajaxError",
8796
					[ jqXHR, s, isSuccess ? success : error ] );
8797
			}
8798
8799
			// Complete
8800
			completeDeferred.fireWith( callbackContext, [ jqXHR, statusText ] );
8801
8802
			if ( fireGlobals ) {
8803
				globalEventContext.trigger( "ajaxComplete", [ jqXHR, s ] );
8804
8805
				// Handle the global AJAX counter
8806
				if ( !( --jQuery.active ) ) {
8807
					jQuery.event.trigger( "ajaxStop" );
8808
				}
8809
			}
8810
		}
8811
8812
		return jqXHR;
8813
	},
8814
8815
	getJSON: function( url, data, callback ) {
8816
		return jQuery.get( url, data, callback, "json" );
8817
	},
8818
8819
	getScript: function( url, callback ) {
8820
		return jQuery.get( url, undefined, callback, "script" );
8821
	}
8822
} );
8823
8824
jQuery.each( [ "get", "post" ], function( i, method ) {
8825
	jQuery[ method ] = function( url, data, callback, type ) {
8826
8827
		// Shift arguments if data argument was omitted
8828
		if ( jQuery.isFunction( data ) ) {
8829
			type = type || callback;
8830
			callback = data;
8831
			data = undefined;
8832
		}
8833
8834
		// The url can be an options object (which then must have .url)
8835
		return jQuery.ajax( jQuery.extend( {
8836
			url: url,
8837
			type: method,
8838
			dataType: type,
8839
			data: data,
8840
			success: callback
8841
		}, jQuery.isPlainObject( url ) && url ) );
8842
	};
8843
} );
8844
8845
8846
jQuery._evalUrl = function( url ) {
8847
	return jQuery.ajax( {
8848
		url: url,
8849
8850
		// Make this explicit, since user can override this through ajaxSetup (#11264)
8851
		type: "GET",
8852
		dataType: "script",
8853
		async: false,
8854
		global: false,
8855
		"throws": true
8856
	} );
8857
};
8858
8859
8860
jQuery.fn.extend( {
8861
	wrapAll: function( html ) {
8862
		var wrap;
8863
8864
		if ( jQuery.isFunction( html ) ) {
8865
			return this.each( function( i ) {
8866
				jQuery( this ).wrapAll( html.call( this, i ) );
8867
			} );
8868
		}
8869
8870
		if ( this[ 0 ] ) {
8871
8872
			// The elements to wrap the target around
8873
			wrap = jQuery( html, this[ 0 ].ownerDocument ).eq( 0 ).clone( true );
8874
8875
			if ( this[ 0 ].parentNode ) {
8876
				wrap.insertBefore( this[ 0 ] );
8877
			}
8878
8879
			wrap.map( function() {
8880
				var elem = this;
8881
8882
				while ( elem.firstElementChild ) {
8883
					elem = elem.firstElementChild;
8884
				}
8885
8886
				return elem;
8887
			} ).append( this );
8888
		}
8889
8890
		return this;
8891
	},
8892
8893
	wrapInner: function( html ) {
8894
		if ( jQuery.isFunction( html ) ) {
8895
			return this.each( function( i ) {
8896
				jQuery( this ).wrapInner( html.call( this, i ) );
8897
			} );
8898
		}
8899
8900
		return this.each( function() {
8901
			var self = jQuery( this ),
8902
				contents = self.contents();
8903
8904
			if ( contents.length ) {
8905
				contents.wrapAll( html );
8906
8907
			} else {
8908
				self.append( html );
8909
			}
8910
		} );
8911
	},
8912
8913
	wrap: function( html ) {
8914
		var isFunction = jQuery.isFunction( html );
8915
8916
		return this.each( function( i ) {
8917
			jQuery( this ).wrapAll( isFunction ? html.call( this, i ) : html );
8918
		} );
8919
	},
8920
8921
	unwrap: function() {
8922
		return this.parent().each( function() {
8923
			if ( !jQuery.nodeName( this, "body" ) ) {
8924
				jQuery( this ).replaceWith( this.childNodes );
8925
			}
8926
		} ).end();
8927
	}
8928
} );
8929
8930
8931
jQuery.expr.filters.hidden = function( elem ) {
8932
	return !jQuery.expr.filters.visible( elem );
8933
};
8934
jQuery.expr.filters.visible = function( elem ) {
8935
8936
	// Support: Opera <= 12.12
8937
	// Opera reports offsetWidths and offsetHeights less than zero on some elements
8938
	// Use OR instead of AND as the element is not visible if either is true
8939
	// See tickets #10406 and #13132
8940
	return elem.offsetWidth > 0 || elem.offsetHeight > 0 || elem.getClientRects().length > 0;
8941
};
8942
8943
8944
8945
8946
var r20 = /%20/g,
8947
	rbracket = /\[\]$/,
8948
	rCRLF = /\r?\n/g,
8949
	rsubmitterTypes = /^(?:submit|button|image|reset|file)$/i,
8950
	rsubmittable = /^(?:input|select|textarea|keygen)/i;
8951
8952
function buildParams( prefix, obj, traditional, add ) {
8953
	var name;
8954
8955
	if ( jQuery.isArray( obj ) ) {
8956
8957
		// Serialize array item.
8958
		jQuery.each( obj, function( i, v ) {
8959
			if ( traditional || rbracket.test( prefix ) ) {
8960
8961
				// Treat each array item as a scalar.
8962
				add( prefix, v );
8963
8964
			} else {
8965
8966
				// Item is non-scalar (array or object), encode its numeric index.
8967
				buildParams(
8968
					prefix + "[" + ( typeof v === "object" && v != null ? i : "" ) + "]",
8969
					v,
8970
					traditional,
8971
					add
8972
				);
8973
			}
8974
		} );
8975
8976
	} else if ( !traditional && jQuery.type( obj ) === "object" ) {
8977
8978
		// Serialize object item.
8979
		for ( name in obj ) {
8980
			buildParams( prefix + "[" + name + "]", obj[ name ], traditional, add );
8981
		}
8982
8983
	} else {
8984
8985
		// Serialize scalar item.
8986
		add( prefix, obj );
8987
	}
8988
}
8989
8990
// Serialize an array of form elements or a set of
8991
// key/values into a query string
8992
jQuery.param = function( a, traditional ) {
8993
	var prefix,
8994
		s = [],
8995
		add = function( key, value ) {
8996
8997
			// If value is a function, invoke it and return its value
8998
			value = jQuery.isFunction( value ) ? value() : ( value == null ? "" : value );
8999
			s[ s.length ] = encodeURIComponent( key ) + "=" + encodeURIComponent( value );
9000
		};
9001
9002
	// Set traditional to true for jQuery <= 1.3.2 behavior.
9003
	if ( traditional === undefined ) {
9004
		traditional = jQuery.ajaxSettings && jQuery.ajaxSettings.traditional;
9005
	}
9006
9007
	// If an array was passed in, assume that it is an array of form elements.
9008
	if ( jQuery.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) {
9009
9010
		// Serialize the form elements
9011
		jQuery.each( a, function() {
9012
			add( this.name, this.value );
9013
		} );
9014
9015
	} else {
9016
9017
		// If traditional, encode the "old" way (the way 1.3.2 or older
9018
		// did it), otherwise encode params recursively.
9019
		for ( prefix in a ) {
9020
			buildParams( prefix, a[ prefix ], traditional, add );
9021
		}
9022
	}
9023
9024
	// Return the resulting serialization
9025
	return s.join( "&" ).replace( r20, "+" );
9026
};
9027
9028
jQuery.fn.extend( {
9029
	serialize: function() {
9030
		return jQuery.param( this.serializeArray() );
9031
	},
9032
	serializeArray: function() {
9033
		return this.map( function() {
9034
9035
			// Can add propHook for "elements" to filter or add form elements
9036
			var elements = jQuery.prop( this, "elements" );
9037
			return elements ? jQuery.makeArray( elements ) : this;
9038
		} )
9039
		.filter( function() {
9040
			var type = this.type;
9041
9042
			// Use .is( ":disabled" ) so that fieldset[disabled] works
9043
			return this.name && !jQuery( this ).is( ":disabled" ) &&
9044
				rsubmittable.test( this.nodeName ) && !rsubmitterTypes.test( type ) &&
9045
				( this.checked || !rcheckableType.test( type ) );
9046
		} )
9047
		.map( function( i, elem ) {
9048
			var val = jQuery( this ).val();
9049
9050
			return val == null ?
9051
				null :
9052
				jQuery.isArray( val ) ?
9053
					jQuery.map( val, function( val ) {
9054
						return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) };
9055
					} ) :
9056
					{ name: elem.name, value: val.replace( rCRLF, "\r\n" ) };
9057
		} ).get();
9058
	}
9059
} );
9060
9061
9062
jQuery.ajaxSettings.xhr = function() {
9063
	try {
9064
		return new window.XMLHttpRequest();
9065
	} catch ( e ) {}
9066
};
9067
9068
var xhrSuccessStatus = {
9069
9070
		// File protocol always yields status code 0, assume 200
9071
		0: 200,
9072
9073
		// Support: IE9
9074
		// #1450: sometimes IE returns 1223 when it should be 204
9075
		1223: 204
9076
	},
9077
	xhrSupported = jQuery.ajaxSettings.xhr();
9078
9079
support.cors = !!xhrSupported && ( "withCredentials" in xhrSupported );
9080
support.ajax = xhrSupported = !!xhrSupported;
9081
9082
jQuery.ajaxTransport( function( options ) {
9083
	var callback, errorCallback;
9084
9085
	// Cross domain only allowed if supported through XMLHttpRequest
9086
	if ( support.cors || xhrSupported && !options.crossDomain ) {
9087
		return {
9088
			send: function( headers, complete ) {
9089
				var i,
9090
					xhr = options.xhr();
9091
9092
				xhr.open(
9093
					options.type,
9094
					options.url,
9095
					options.async,
9096
					options.username,
9097
					options.password
9098
				);
9099
9100
				// Apply custom fields if provided
9101
				if ( options.xhrFields ) {
9102
					for ( i in options.xhrFields ) {
9103
						xhr[ i ] = options.xhrFields[ i ];
9104
					}
9105
				}
9106
9107
				// Override mime type if needed
9108
				if ( options.mimeType && xhr.overrideMimeType ) {
9109
					xhr.overrideMimeType( options.mimeType );
9110
				}
9111
9112
				// X-Requested-With header
9113
				// For cross-domain requests, seeing as conditions for a preflight are
9114
				// akin to a jigsaw puzzle, we simply never set it to be sure.
9115
				// (it can always be set on a per-request basis or even using ajaxSetup)
9116
				// For same-domain requests, won't change header if already provided.
9117
				if ( !options.crossDomain && !headers[ "X-Requested-With" ] ) {
9118
					headers[ "X-Requested-With" ] = "XMLHttpRequest";
9119
				}
9120
9121
				// Set headers
9122
				for ( i in headers ) {
9123
					xhr.setRequestHeader( i, headers[ i ] );
9124
				}
9125
9126
				// Callback
9127
				callback = function( type ) {
9128
					return function() {
9129
						if ( callback ) {
9130
							callback = errorCallback = xhr.onload =
9131
								xhr.onerror = xhr.onabort = xhr.onreadystatechange = null;
9132
9133
							if ( type === "abort" ) {
9134
								xhr.abort();
9135
							} else if ( type === "error" ) {
9136
9137
								// Support: IE9
9138
								// On a manual native abort, IE9 throws
9139
								// errors on any property access that is not readyState
9140
								if ( typeof xhr.status !== "number" ) {
9141
									complete( 0, "error" );
9142
								} else {
9143
									complete(
9144
9145
										// File: protocol always yields status 0; see #8605, #14207
9146
										xhr.status,
9147
										xhr.statusText
9148
									);
9149
								}
9150
							} else {
9151
								complete(
9152
									xhrSuccessStatus[ xhr.status ] || xhr.status,
9153
									xhr.statusText,
9154
9155
									// Support: IE9 only
9156
									// IE9 has no XHR2 but throws on binary (trac-11426)
9157
									// For XHR2 non-text, let the caller handle it (gh-2498)
9158
									( xhr.responseType || "text" ) !== "text"  ||
9159
									typeof xhr.responseText !== "string" ?
9160
										{ binary: xhr.response } :
9161
										{ text: xhr.responseText },
9162
									xhr.getAllResponseHeaders()
9163
								);
9164
							}
9165
						}
9166
					};
9167
				};
9168
9169
				// Listen to events
9170
				xhr.onload = callback();
9171
				errorCallback = xhr.onerror = callback( "error" );
9172
9173
				// Support: IE9
9174
				// Use onreadystatechange to replace onabort
9175
				// to handle uncaught aborts
9176
				if ( xhr.onabort !== undefined ) {
9177
					xhr.onabort = errorCallback;
9178
				} else {
9179
					xhr.onreadystatechange = function() {
9180
9181
						// Check readyState before timeout as it changes
9182
						if ( xhr.readyState === 4 ) {
9183
9184
							// Allow onerror to be called first,
9185
							// but that will not handle a native abort
9186
							// Also, save errorCallback to a variable
9187
							// as xhr.onerror cannot be accessed
9188
							window.setTimeout( function() {
9189
								if ( callback ) {
9190
									errorCallback();
9191
								}
9192
							} );
9193
						}
9194
					};
9195
				}
9196
9197
				// Create the abort callback
9198
				callback = callback( "abort" );
9199
9200
				try {
9201
9202
					// Do send the request (this may raise an exception)
9203
					xhr.send( options.hasContent && options.data || null );
9204
				} catch ( e ) {
9205
9206
					// #14683: Only rethrow if this hasn't been notified as an error yet
9207
					if ( callback ) {
9208
						throw e;
9209
					}
9210
				}
9211
			},
9212
9213
			abort: function() {
9214
				if ( callback ) {
9215
					callback();
9216
				}
9217
			}
9218
		};
9219
	}
9220
} );
9221
9222
9223
9224
9225
// Install script dataType
9226
jQuery.ajaxSetup( {
9227
	accepts: {
9228
		script: "text/javascript, application/javascript, " +
9229
			"application/ecmascript, application/x-ecmascript"
9230
	},
9231
	contents: {
9232
		script: /\b(?:java|ecma)script\b/
9233
	},
9234
	converters: {
9235
		"text script": function( text ) {
9236
			jQuery.globalEval( text );
9237
			return text;
9238
		}
9239
	}
9240
} );
9241
9242
// Handle cache's special case and crossDomain
9243
jQuery.ajaxPrefilter( "script", function( s ) {
9244
	if ( s.cache === undefined ) {
9245
		s.cache = false;
9246
	}
9247
	if ( s.crossDomain ) {
9248
		s.type = "GET";
9249
	}
9250
} );
9251
9252
// Bind script tag hack transport
9253
jQuery.ajaxTransport( "script", function( s ) {
9254
9255
	// This transport only deals with cross domain requests
9256
	if ( s.crossDomain ) {
9257
		var script, callback;
9258
		return {
9259
			send: function( _, complete ) {
9260
				script = jQuery( "<script>" ).prop( {
9261
					charset: s.scriptCharset,
9262
					src: s.url
9263
				} ).on(
9264
					"load error",
9265
					callback = function( evt ) {
9266
						script.remove();
9267
						callback = null;
9268
						if ( evt ) {
9269
							complete( evt.type === "error" ? 404 : 200, evt.type );
9270
						}
9271
					}
9272
				);
9273
9274
				// Use native DOM manipulation to avoid our domManip AJAX trickery
9275
				document.head.appendChild( script[ 0 ] );
9276
			},
9277
			abort: function() {
9278
				if ( callback ) {
9279
					callback();
9280
				}
9281
			}
9282
		};
9283
	}
9284
} );
9285
9286
9287
9288
9289
var oldCallbacks = [],
9290
	rjsonp = /(=)\?(?=&|$)|\?\?/;
9291
9292
// Default jsonp settings
9293
jQuery.ajaxSetup( {
9294
	jsonp: "callback",
9295
	jsonpCallback: function() {
9296
		var callback = oldCallbacks.pop() || ( jQuery.expando + "_" + ( nonce++ ) );
9297
		this[ callback ] = true;
9298
		return callback;
9299
	}
9300
} );
9301
9302
// Detect, normalize options and install callbacks for jsonp requests
9303
jQuery.ajaxPrefilter( "json jsonp", function( s, originalSettings, jqXHR ) {
9304
9305
	var callbackName, overwritten, responseContainer,
9306
		jsonProp = s.jsonp !== false && ( rjsonp.test( s.url ) ?
9307
			"url" :
9308
			typeof s.data === "string" &&
9309
				( s.contentType || "" )
9310
					.indexOf( "application/x-www-form-urlencoded" ) === 0 &&
9311
				rjsonp.test( s.data ) && "data"
9312
		);
9313
9314
	// Handle iff the expected data type is "jsonp" or we have a parameter to set
9315
	if ( jsonProp || s.dataTypes[ 0 ] === "jsonp" ) {
9316
9317
		// Get callback name, remembering preexisting value associated with it
9318
		callbackName = s.jsonpCallback = jQuery.isFunction( s.jsonpCallback ) ?
9319
			s.jsonpCallback() :
9320
			s.jsonpCallback;
9321
9322
		// Insert callback into url or form data
9323
		if ( jsonProp ) {
9324
			s[ jsonProp ] = s[ jsonProp ].replace( rjsonp, "$1" + callbackName );
9325
		} else if ( s.jsonp !== false ) {
9326
			s.url += ( rquery.test( s.url ) ? "&" : "?" ) + s.jsonp + "=" + callbackName;
9327
		}
9328
9329
		// Use data converter to retrieve json after script execution
9330
		s.converters[ "script json" ] = function() {
9331
			if ( !responseContainer ) {
9332
				jQuery.error( callbackName + " was not called" );
9333
			}
9334
			return responseContainer[ 0 ];
9335
		};
9336
9337
		// Force json dataType
9338
		s.dataTypes[ 0 ] = "json";
9339
9340
		// Install callback
9341
		overwritten = window[ callbackName ];
9342
		window[ callbackName ] = function() {
9343
			responseContainer = arguments;
9344
		};
9345
9346
		// Clean-up function (fires after converters)
9347
		jqXHR.always( function() {
9348
9349
			// If previous value didn't exist - remove it
9350
			if ( overwritten === undefined ) {
9351
				jQuery( window ).removeProp( callbackName );
9352
9353
			// Otherwise restore preexisting value
9354
			} else {
9355
				window[ callbackName ] = overwritten;
9356
			}
9357
9358
			// Save back as free
9359
			if ( s[ callbackName ] ) {
9360
9361
				// Make sure that re-using the options doesn't screw things around
9362
				s.jsonpCallback = originalSettings.jsonpCallback;
9363
9364
				// Save the callback name for future use
9365
				oldCallbacks.push( callbackName );
9366
			}
9367
9368
			// Call if it was a function and we have a response
9369
			if ( responseContainer && jQuery.isFunction( overwritten ) ) {
9370
				overwritten( responseContainer[ 0 ] );
9371
			}
9372
9373
			responseContainer = overwritten = undefined;
9374
		} );
9375
9376
		// Delegate to script
9377
		return "script";
9378
	}
9379
} );
9380
9381
9382
9383
9384
// Argument "data" should be string of html
9385
// context (optional): If specified, the fragment will be created in this context,
9386
// defaults to document
9387
// keepScripts (optional): If true, will include scripts passed in the html string
9388
jQuery.parseHTML = function( data, context, keepScripts ) {
9389
	if ( !data || typeof data !== "string" ) {
9390
		return null;
9391
	}
9392
	if ( typeof context === "boolean" ) {
9393
		keepScripts = context;
9394
		context = false;
9395
	}
9396
	context = context || document;
9397
9398
	var parsed = rsingleTag.exec( data ),
9399
		scripts = !keepScripts && [];
9400
9401
	// Single tag
9402
	if ( parsed ) {
9403
		return [ context.createElement( parsed[ 1 ] ) ];
9404
	}
9405
9406
	parsed = buildFragment( [ data ], context, scripts );
9407
9408
	if ( scripts && scripts.length ) {
9409
		jQuery( scripts ).remove();
9410
	}
9411
9412
	return jQuery.merge( [], parsed.childNodes );
9413
};
9414
9415
9416
// Keep a copy of the old load method
9417
var _load = jQuery.fn.load;
9418
9419
/**
9420
 * Load a url into a page
9421
 */
9422
jQuery.fn.load = function( url, params, callback ) {
9423
	if ( typeof url !== "string" && _load ) {
9424
		return _load.apply( this, arguments );
9425
	}
9426
9427
	var selector, type, response,
9428
		self = this,
9429
		off = url.indexOf( " " );
9430
9431
	if ( off > -1 ) {
9432
		selector = jQuery.trim( url.slice( off ) );
9433
		url = url.slice( 0, off );
9434
	}
9435
9436
	// If it's a function
9437
	if ( jQuery.isFunction( params ) ) {
9438
9439
		// We assume that it's the callback
9440
		callback = params;
9441
		params = undefined;
9442
9443
	// Otherwise, build a param string
9444
	} else if ( params && typeof params === "object" ) {
9445
		type = "POST";
9446
	}
9447
9448
	// If we have elements to modify, make the request
9449
	if ( self.length > 0 ) {
9450
		jQuery.ajax( {
9451
			url: url,
9452
9453
			// If "type" variable is undefined, then "GET" method will be used.
9454
			// Make value of this field explicit since
9455
			// user can override it through ajaxSetup method
9456
			type: type || "GET",
9457
			dataType: "html",
9458
			data: params
9459
		} ).done( function( responseText ) {
9460
9461
			// Save response for use in complete callback
9462
			response = arguments;
9463
9464
			self.html( selector ?
9465
9466
				// If a selector was specified, locate the right elements in a dummy div
9467
				// Exclude scripts to avoid IE 'Permission Denied' errors
9468
				jQuery( "<div>" ).append( jQuery.parseHTML( responseText ) ).find( selector ) :
9469
9470
				// Otherwise use the full result
9471
				responseText );
9472
9473
		// If the request succeeds, this function gets "data", "status", "jqXHR"
9474
		// but they are ignored because response was set above.
9475
		// If it fails, this function gets "jqXHR", "status", "error"
9476
		} ).always( callback && function( jqXHR, status ) {
9477
			self.each( function() {
9478
				callback.apply( this, response || [ jqXHR.responseText, status, jqXHR ] );
9479
			} );
9480
		} );
9481
	}
9482
9483
	return this;
9484
};
9485
9486
9487
9488
9489
// Attach a bunch of functions for handling common AJAX events
9490
jQuery.each( [
9491
	"ajaxStart",
9492
	"ajaxStop",
9493
	"ajaxComplete",
9494
	"ajaxError",
9495
	"ajaxSuccess",
9496
	"ajaxSend"
9497
], function( i, type ) {
9498
	jQuery.fn[ type ] = function( fn ) {
9499
		return this.on( type, fn );
9500
	};
9501
} );
9502
9503
9504
9505
9506
jQuery.expr.filters.animated = function( elem ) {
9507
	return jQuery.grep( jQuery.timers, function( fn ) {
9508
		return elem === fn.elem;
9509
	} ).length;
9510
};
9511
9512
9513
9514
9515
/**
9516
 * Gets a window from an element
9517
 */
9518
function getWindow( elem ) {
9519
	return jQuery.isWindow( elem ) ? elem : elem.nodeType === 9 && elem.defaultView;
9520
}
9521
9522
jQuery.offset = {
9523
	setOffset: function( elem, options, i ) {
9524
		var curPosition, curLeft, curCSSTop, curTop, curOffset, curCSSLeft, calculatePosition,
9525
			position = jQuery.css( elem, "position" ),
9526
			curElem = jQuery( elem ),
9527
			props = {};
9528
9529
		// Set position first, in-case top/left are set even on static elem
9530
		if ( position === "static" ) {
9531
			elem.style.position = "relative";
9532
		}
9533
9534
		curOffset = curElem.offset();
9535
		curCSSTop = jQuery.css( elem, "top" );
9536
		curCSSLeft = jQuery.css( elem, "left" );
9537
		calculatePosition = ( position === "absolute" || position === "fixed" ) &&
9538
			( curCSSTop + curCSSLeft ).indexOf( "auto" ) > -1;
9539
9540
		// Need to be able to calculate position if either
9541
		// top or left is auto and position is either absolute or fixed
9542
		if ( calculatePosition ) {
9543
			curPosition = curElem.position();
9544
			curTop = curPosition.top;
9545
			curLeft = curPosition.left;
9546
9547
		} else {
9548
			curTop = parseFloat( curCSSTop ) || 0;
9549
			curLeft = parseFloat( curCSSLeft ) || 0;
9550
		}
9551
9552
		if ( jQuery.isFunction( options ) ) {
9553
9554
			// Use jQuery.extend here to allow modification of coordinates argument (gh-1848)
9555
			options = options.call( elem, i, jQuery.extend( {}, curOffset ) );
9556
		}
9557
9558
		if ( options.top != null ) {
9559
			props.top = ( options.top - curOffset.top ) + curTop;
9560
		}
9561
		if ( options.left != null ) {
9562
			props.left = ( options.left - curOffset.left ) + curLeft;
9563
		}
9564
9565
		if ( "using" in options ) {
9566
			options.using.call( elem, props );
9567
9568
		} else {
9569
			curElem.css( props );
9570
		}
9571
	}
9572
};
9573
9574
jQuery.fn.extend( {
9575
	offset: function( options ) {
9576
		if ( arguments.length ) {
9577
			return options === undefined ?
9578
				this :
9579
				this.each( function( i ) {
9580
					jQuery.offset.setOffset( this, options, i );
9581
				} );
9582
		}
9583
9584
		var docElem, win,
9585
			elem = this[ 0 ],
9586
			box = { top: 0, left: 0 },
9587
			doc = elem && elem.ownerDocument;
9588
9589
		if ( !doc ) {
9590
			return;
9591
		}
9592
9593
		docElem = doc.documentElement;
9594
9595
		// Make sure it's not a disconnected DOM node
9596
		if ( !jQuery.contains( docElem, elem ) ) {
9597
			return box;
9598
		}
9599
9600
		box = elem.getBoundingClientRect();
9601
		win = getWindow( doc );
9602
		return {
9603
			top: box.top + win.pageYOffset - docElem.clientTop,
9604
			left: box.left + win.pageXOffset - docElem.clientLeft
9605
		};
9606
	},
9607
9608
	position: function() {
9609
		if ( !this[ 0 ] ) {
9610
			return;
9611
		}
9612
9613
		var offsetParent, offset,
9614
			elem = this[ 0 ],
9615
			parentOffset = { top: 0, left: 0 };
9616
9617
		// Fixed elements are offset from window (parentOffset = {top:0, left: 0},
9618
		// because it is its only offset parent
9619
		if ( jQuery.css( elem, "position" ) === "fixed" ) {
9620
9621
			// Assume getBoundingClientRect is there when computed position is fixed
9622
			offset = elem.getBoundingClientRect();
9623
9624
		} else {
9625
9626
			// Get *real* offsetParent
9627
			offsetParent = this.offsetParent();
9628
9629
			// Get correct offsets
9630
			offset = this.offset();
9631
			if ( !jQuery.nodeName( offsetParent[ 0 ], "html" ) ) {
9632
				parentOffset = offsetParent.offset();
9633
			}
9634
9635
			// Add offsetParent borders
9636
			parentOffset.top += jQuery.css( offsetParent[ 0 ], "borderTopWidth", true );
9637
			parentOffset.left += jQuery.css( offsetParent[ 0 ], "borderLeftWidth", true );
9638
		}
9639
9640
		// Subtract parent offsets and element margins
9641
		return {
9642
			top: offset.top - parentOffset.top - jQuery.css( elem, "marginTop", true ),
9643
			left: offset.left - parentOffset.left - jQuery.css( elem, "marginLeft", true )
9644
		};
9645
	},
9646
9647
	// This method will return documentElement in the following cases:
9648
	// 1) For the element inside the iframe without offsetParent, this method will return
9649
	//    documentElement of the parent window
9650
	// 2) For the hidden or detached element
9651
	// 3) For body or html element, i.e. in case of the html node - it will return itself
9652
	//
9653
	// but those exceptions were never presented as a real life use-cases
9654
	// and might be considered as more preferable results.
9655
	//
9656
	// This logic, however, is not guaranteed and can change at any point in the future
9657
	offsetParent: function() {
9658
		return this.map( function() {
9659
			var offsetParent = this.offsetParent;
9660
9661
			while ( offsetParent && jQuery.css( offsetParent, "position" ) === "static" ) {
9662
				offsetParent = offsetParent.offsetParent;
9663
			}
9664
9665
			return offsetParent || documentElement;
9666
		} );
9667
	}
9668
} );
9669
9670
// Create scrollLeft and scrollTop methods
9671
jQuery.each( { scrollLeft: "pageXOffset", scrollTop: "pageYOffset" }, function( method, prop ) {
9672
	var top = "pageYOffset" === prop;
9673
9674
	jQuery.fn[ method ] = function( val ) {
9675
		return access( this, function( elem, method, val ) {
9676
			var win = getWindow( elem );
9677
9678
			if ( val === undefined ) {
9679
				return win ? win[ prop ] : elem[ method ];
9680
			}
9681
9682
			if ( win ) {
9683
				win.scrollTo(
9684
					!top ? val : win.pageXOffset,
9685
					top ? val : win.pageYOffset
9686
				);
9687
9688
			} else {
9689
				elem[ method ] = val;
9690
			}
9691
		}, method, val, arguments.length );
9692
	};
9693
} );
9694
9695
// Support: Safari<7-8+, Chrome<37-44+
9696
// Add the top/left cssHooks using jQuery.fn.position
9697
// Webkit bug: https://bugs.webkit.org/show_bug.cgi?id=29084
9698
// Blink bug: https://code.google.com/p/chromium/issues/detail?id=229280
9699
// getComputedStyle returns percent when specified for top/left/bottom/right;
9700
// rather than make the css module depend on the offset module, just check for it here
9701
jQuery.each( [ "top", "left" ], function( i, prop ) {
9702
	jQuery.cssHooks[ prop ] = addGetHookIf( support.pixelPosition,
9703
		function( elem, computed ) {
9704
			if ( computed ) {
9705
				computed = curCSS( elem, prop );
9706
9707
				// If curCSS returns percentage, fallback to offset
9708
				return rnumnonpx.test( computed ) ?
9709
					jQuery( elem ).position()[ prop ] + "px" :
9710
					computed;
9711
			}
9712
		}
9713
	);
9714
} );
9715
9716
9717
// Create innerHeight, innerWidth, height, width, outerHeight and outerWidth methods
9718
jQuery.each( { Height: "height", Width: "width" }, function( name, type ) {
9719
	jQuery.each( { padding: "inner" + name, content: type, "": "outer" + name },
9720
		function( defaultExtra, funcName ) {
9721
9722
		// Margin is only for outerHeight, outerWidth
9723
		jQuery.fn[ funcName ] = function( margin, value ) {
9724
			var chainable = arguments.length && ( defaultExtra || typeof margin !== "boolean" ),
9725
				extra = defaultExtra || ( margin === true || value === true ? "margin" : "border" );
9726
9727
			return access( this, function( elem, type, value ) {
9728
				var doc;
9729
9730
				if ( jQuery.isWindow( elem ) ) {
9731
9732
					// As of 5/8/2012 this will yield incorrect results for Mobile Safari, but there
9733
					// isn't a whole lot we can do. See pull request at this URL for discussion:
9734
					// https://github.com/jquery/jquery/pull/764
9735
					return elem.document.documentElement[ "client" + name ];
9736
				}
9737
9738
				// Get document width or height
9739
				if ( elem.nodeType === 9 ) {
9740
					doc = elem.documentElement;
9741
9742
					// Either scroll[Width/Height] or offset[Width/Height] or client[Width/Height],
9743
					// whichever is greatest
9744
					return Math.max(
9745
						elem.body[ "scroll" + name ], doc[ "scroll" + name ],
9746
						elem.body[ "offset" + name ], doc[ "offset" + name ],
9747
						doc[ "client" + name ]
9748
					);
9749
				}
9750
9751
				return value === undefined ?
9752
9753
					// Get width or height on the element, requesting but not forcing parseFloat
9754
					jQuery.css( elem, type, extra ) :
9755
9756
					// Set width or height on the element
9757
					jQuery.style( elem, type, value, extra );
9758
			}, type, chainable ? margin : undefined, chainable, null );
9759
		};
9760
	} );
9761
} );
9762
9763
9764
jQuery.fn.extend( {
9765
9766
	bind: function( types, data, fn ) {
9767
		return this.on( types, null, data, fn );
9768
	},
9769
	unbind: function( types, fn ) {
9770
		return this.off( types, null, fn );
9771
	},
9772
9773
	delegate: function( selector, types, data, fn ) {
9774
		return this.on( types, selector, data, fn );
9775
	},
9776
	undelegate: function( selector, types, fn ) {
9777
9778
		// ( namespace ) or ( selector, types [, fn] )
9779
		return arguments.length === 1 ?
9780
			this.off( selector, "**" ) :
9781
			this.off( types, selector || "**", fn );
9782
	},
9783
	size: function() {
9784
		return this.length;
9785
	}
9786
} );
9787
9788
jQuery.fn.andSelf = jQuery.fn.addBack;
9789
9790
9791
9792
9793
// Register as a named AMD module, since jQuery can be concatenated with other
9794
// files that may use define, but not via a proper concatenation script that
9795
// understands anonymous AMD modules. A named AMD is safest and most robust
9796
// way to register. Lowercase jquery is used because AMD module names are
9797
// derived from file names, and jQuery is normally delivered in a lowercase
9798
// file name. Do this after creating the global so that if an AMD module wants
9799
// to call noConflict to hide this version of jQuery, it will work.
9800
9801
// Note that for maximum portability, libraries that are not jQuery should
9802
// declare themselves as anonymous modules, and avoid setting a global if an
9803
// AMD loader is present. jQuery is a special case. For more information, see
9804
// https://github.com/jrburke/requirejs/wiki/Updating-existing-libraries#wiki-anon
9805
9806
if ( typeof define === "function" && define.amd ) {
9807
	define( "jquery", [], function() {
9808
		return jQuery;
9809
	} );
9810
}
9811
9812
9813
9814
var
9815
9816
	// Map over jQuery in case of overwrite
9817
	_jQuery = window.jQuery,
9818
9819
	// Map over the $ in case of overwrite
9820
	_$ = window.$;
9821
9822
jQuery.noConflict = function( deep ) {
9823
	if ( window.$ === jQuery ) {
9824
		window.$ = _$;
9825
	}
9826
9827
	if ( deep && window.jQuery === jQuery ) {
9828
		window.jQuery = _jQuery;
9829
	}
9830
9831
	return jQuery;
9832
};
9833
9834
// Expose jQuery and $ identifiers, even in AMD
9835
// (#7102#comment:10, https://github.com/jquery/jquery/pull/557)
9836
// and CommonJS for browser emulators (#13566)
9837
if ( !noGlobal ) {
9838
	window.jQuery = window.$ = jQuery;
9839
}
9840
9841
return jQuery;
9842
}));
(-)a/koha-tmpl/intranet-tmpl/lib/jquery/jquery-2.2.3.min.js (-4 lines)
Lines 1-4 Link Here
1
/*! jQuery v2.2.3 | (c) jQuery Foundation | jquery.org/license */
2
!function(a,b){"object"==typeof module&&"object"==typeof module.exports?module.exports=a.document?b(a,!0):function(a){if(!a.document)throw new Error("jQuery requires a window with a document");return b(a)}:b(a)}("undefined"!=typeof window?window:this,function(a,b){var c=[],d=a.document,e=c.slice,f=c.concat,g=c.push,h=c.indexOf,i={},j=i.toString,k=i.hasOwnProperty,l={},m="2.2.3",n=function(a,b){return new n.fn.init(a,b)},o=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,p=/^-ms-/,q=/-([\da-z])/gi,r=function(a,b){return b.toUpperCase()};n.fn=n.prototype={jquery:m,constructor:n,selector:"",length:0,toArray:function(){return e.call(this)},get:function(a){return null!=a?0>a?this[a+this.length]:this[a]:e.call(this)},pushStack:function(a){var b=n.merge(this.constructor(),a);return b.prevObject=this,b.context=this.context,b},each:function(a){return n.each(this,a)},map:function(a){return this.pushStack(n.map(this,function(b,c){return a.call(b,c,b)}))},slice:function(){return this.pushStack(e.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(a){var b=this.length,c=+a+(0>a?b:0);return this.pushStack(c>=0&&b>c?[this[c]]:[])},end:function(){return this.prevObject||this.constructor()},push:g,sort:c.sort,splice:c.splice},n.extend=n.fn.extend=function(){var a,b,c,d,e,f,g=arguments[0]||{},h=1,i=arguments.length,j=!1;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!=(a=arguments[h]))for(b in a)c=g[b],d=a[b],g!==d&&(j&&d&&(n.isPlainObject(d)||(e=n.isArray(d)))?(e?(e=!1,f=c&&n.isArray(c)?c:[]):f=c&&n.isPlainObject(c)?c:{},g[b]=n.extend(j,f,d)):void 0!==d&&(g[b]=d));return g},n.extend({expando:"jQuery"+(m+Math.random()).replace(/\D/g,""),isReady:!0,error:function(a){throw new Error(a)},noop:function(){},isFunction:function(a){return"function"===n.type(a)},isArray:Array.isArray,isWindow:function(a){return null!=a&&a===a.window},isNumeric:function(a){var b=a&&a.toString();return!n.isArray(a)&&b-parseFloat(b)+1>=0},isPlainObject:function(a){var b;if("object"!==n.type(a)||a.nodeType||n.isWindow(a))return!1;if(a.constructor&&!k.call(a,"constructor")&&!k.call(a.constructor.prototype||{},"isPrototypeOf"))return!1;for(b in a);return void 0===b||k.call(a,b)},isEmptyObject:function(a){var b;for(b in a)return!1;return!0},type:function(a){return null==a?a+"":"object"==typeof a||"function"==typeof a?i[j.call(a)]||"object":typeof a},globalEval:function(a){var b,c=eval;a=n.trim(a),a&&(1===a.indexOf("use strict")?(b=d.createElement("script"),b.text=a,d.head.appendChild(b).parentNode.removeChild(b)):c(a))},camelCase:function(a){return a.replace(p,"ms-").replace(q,r)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toLowerCase()===b.toLowerCase()},each:function(a,b){var c,d=0;if(s(a)){for(c=a.length;c>d;d++)if(b.call(a[d],d,a[d])===!1)break}else for(d in a)if(b.call(a[d],d,a[d])===!1)break;return a},trim:function(a){return null==a?"":(a+"").replace(o,"")},makeArray:function(a,b){var c=b||[];return null!=a&&(s(Object(a))?n.merge(c,"string"==typeof a?[a]:a):g.call(c,a)),c},inArray:function(a,b,c){return null==b?-1:h.call(b,a,c)},merge:function(a,b){for(var c=+b.length,d=0,e=a.length;c>d;d++)a[e++]=b[d];return a.length=e,a},grep:function(a,b,c){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]);return e},map:function(a,b,c){var d,e,g=0,h=[];if(s(a))for(d=a.length;d>g;g++)e=b(a[g],g,c),null!=e&&h.push(e);else for(g in a)e=b(a[g],g,c),null!=e&&h.push(e);return f.apply([],h)},guid:1,proxy:function(a,b){var c,d,f;return"string"==typeof b&&(c=a[b],b=a,a=c),n.isFunction(a)?(d=e.call(arguments,2),f=function(){return a.apply(b||this,d.concat(e.call(arguments)))},f.guid=a.guid=a.guid||n.guid++,f):void 0},now:Date.now,support:l}),"function"==typeof Symbol&&(n.fn[Symbol.iterator]=c[Symbol.iterator]),n.each("Boolean Number String Function Array Date RegExp Object Error Symbol".split(" "),function(a,b){i["[object "+b+"]"]=b.toLowerCase()});function s(a){var b=!!a&&"length"in a&&a.length,c=n.type(a);return"function"===c||n.isWindow(a)?!1:"array"===c||0===b||"number"==typeof b&&b>0&&b-1 in a}var t=function(a){var b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u="sizzle"+1*new Date,v=a.document,w=0,x=0,y=ga(),z=ga(),A=ga(),B=function(a,b){return a===b&&(l=!0),0},C=1<<31,D={}.hasOwnProperty,E=[],F=E.pop,G=E.push,H=E.push,I=E.slice,J=function(a,b){for(var c=0,d=a.length;d>c;c++)if(a[c]===b)return c;return-1},K="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",L="[\\x20\\t\\r\\n\\f]",M="(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",N="\\["+L+"*("+M+")(?:"+L+"*([*^$|!~]?=)"+L+"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|("+M+"))|)"+L+"*\\]",O=":("+M+")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|"+N+")*)|.*)\\)|)",P=new RegExp(L+"+","g"),Q=new RegExp("^"+L+"+|((?:^|[^\\\\])(?:\\\\.)*)"+L+"+$","g"),R=new RegExp("^"+L+"*,"+L+"*"),S=new RegExp("^"+L+"*([>+~]|"+L+")"+L+"*"),T=new RegExp("="+L+"*([^\\]'\"]*?)"+L+"*\\]","g"),U=new RegExp(O),V=new RegExp("^"+M+"$"),W={ID:new RegExp("^#("+M+")"),CLASS:new RegExp("^\\.("+M+")"),TAG:new RegExp("^("+M+"|[*])"),ATTR:new RegExp("^"+N),PSEUDO:new RegExp("^"+O),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+L+"*(even|odd|(([+-]|)(\\d*)n|)"+L+"*(?:([+-]|)"+L+"*(\\d+)|))"+L+"*\\)|)","i"),bool:new RegExp("^(?:"+K+")$","i"),needsContext:new RegExp("^"+L+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+L+"*((?:-\\d)?\\d*)"+L+"*\\)|)(?=[^-]|$)","i")},X=/^(?:input|select|textarea|button)$/i,Y=/^h\d$/i,Z=/^[^{]+\{\s*\[native \w/,$=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,_=/[+~]/,aa=/'|\\/g,ba=new RegExp("\\\\([\\da-f]{1,6}"+L+"?|("+L+")|.)","ig"),ca=function(a,b,c){var d="0x"+b-65536;return d!==d||c?b:0>d?String.fromCharCode(d+65536):String.fromCharCode(d>>10|55296,1023&d|56320)},da=function(){m()};try{H.apply(E=I.call(v.childNodes),v.childNodes),E[v.childNodes.length].nodeType}catch(ea){H={apply:E.length?function(a,b){G.apply(a,I.call(b))}:function(a,b){var c=a.length,d=0;while(a[c++]=b[d++]);a.length=c-1}}}function fa(a,b,d,e){var f,h,j,k,l,o,r,s,w=b&&b.ownerDocument,x=b?b.nodeType:9;if(d=d||[],"string"!=typeof a||!a||1!==x&&9!==x&&11!==x)return d;if(!e&&((b?b.ownerDocument||b:v)!==n&&m(b),b=b||n,p)){if(11!==x&&(o=$.exec(a)))if(f=o[1]){if(9===x){if(!(j=b.getElementById(f)))return d;if(j.id===f)return d.push(j),d}else if(w&&(j=w.getElementById(f))&&t(b,j)&&j.id===f)return d.push(j),d}else{if(o[2])return H.apply(d,b.getElementsByTagName(a)),d;if((f=o[3])&&c.getElementsByClassName&&b.getElementsByClassName)return H.apply(d,b.getElementsByClassName(f)),d}if(c.qsa&&!A[a+" "]&&(!q||!q.test(a))){if(1!==x)w=b,s=a;else if("object"!==b.nodeName.toLowerCase()){(k=b.getAttribute("id"))?k=k.replace(aa,"\\$&"):b.setAttribute("id",k=u),r=g(a),h=r.length,l=V.test(k)?"#"+k:"[id='"+k+"']";while(h--)r[h]=l+" "+qa(r[h]);s=r.join(","),w=_.test(a)&&oa(b.parentNode)||b}if(s)try{return H.apply(d,w.querySelectorAll(s)),d}catch(y){}finally{k===u&&b.removeAttribute("id")}}}return i(a.replace(Q,"$1"),b,d,e)}function ga(){var a=[];function b(c,e){return a.push(c+" ")>d.cacheLength&&delete b[a.shift()],b[c+" "]=e}return b}function ha(a){return a[u]=!0,a}function ia(a){var b=n.createElement("div");try{return!!a(b)}catch(c){return!1}finally{b.parentNode&&b.parentNode.removeChild(b),b=null}}function ja(a,b){var c=a.split("|"),e=c.length;while(e--)d.attrHandle[c[e]]=b}function ka(a,b){var c=b&&a,d=c&&1===a.nodeType&&1===b.nodeType&&(~b.sourceIndex||C)-(~a.sourceIndex||C);if(d)return d;if(c)while(c=c.nextSibling)if(c===b)return-1;return a?1:-1}function la(a){return function(b){var c=b.nodeName.toLowerCase();return"input"===c&&b.type===a}}function ma(a){return function(b){var c=b.nodeName.toLowerCase();return("input"===c||"button"===c)&&b.type===a}}function na(a){return ha(function(b){return b=+b,ha(function(c,d){var e,f=a([],c.length,b),g=f.length;while(g--)c[e=f[g]]&&(c[e]=!(d[e]=c[e]))})})}function oa(a){return a&&"undefined"!=typeof a.getElementsByTagName&&a}c=fa.support={},f=fa.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return b?"HTML"!==b.nodeName:!1},m=fa.setDocument=function(a){var b,e,g=a?a.ownerDocument||a:v;return g!==n&&9===g.nodeType&&g.documentElement?(n=g,o=n.documentElement,p=!f(n),(e=n.defaultView)&&e.top!==e&&(e.addEventListener?e.addEventListener("unload",da,!1):e.attachEvent&&e.attachEvent("onunload",da)),c.attributes=ia(function(a){return a.className="i",!a.getAttribute("className")}),c.getElementsByTagName=ia(function(a){return a.appendChild(n.createComment("")),!a.getElementsByTagName("*").length}),c.getElementsByClassName=Z.test(n.getElementsByClassName),c.getById=ia(function(a){return o.appendChild(a).id=u,!n.getElementsByName||!n.getElementsByName(u).length}),c.getById?(d.find.ID=function(a,b){if("undefined"!=typeof b.getElementById&&p){var c=b.getElementById(a);return c?[c]:[]}},d.filter.ID=function(a){var b=a.replace(ba,ca);return function(a){return a.getAttribute("id")===b}}):(delete d.find.ID,d.filter.ID=function(a){var b=a.replace(ba,ca);return function(a){var c="undefined"!=typeof a.getAttributeNode&&a.getAttributeNode("id");return c&&c.value===b}}),d.find.TAG=c.getElementsByTagName?function(a,b){return"undefined"!=typeof b.getElementsByTagName?b.getElementsByTagName(a):c.qsa?b.querySelectorAll(a):void 0}:function(a,b){var c,d=[],e=0,f=b.getElementsByTagName(a);if("*"===a){while(c=f[e++])1===c.nodeType&&d.push(c);return d}return f},d.find.CLASS=c.getElementsByClassName&&function(a,b){return"undefined"!=typeof b.getElementsByClassName&&p?b.getElementsByClassName(a):void 0},r=[],q=[],(c.qsa=Z.test(n.querySelectorAll))&&(ia(function(a){o.appendChild(a).innerHTML="<a id='"+u+"'></a><select id='"+u+"-\r\\' msallowcapture=''><option selected=''></option></select>",a.querySelectorAll("[msallowcapture^='']").length&&q.push("[*^$]="+L+"*(?:''|\"\")"),a.querySelectorAll("[selected]").length||q.push("\\["+L+"*(?:value|"+K+")"),a.querySelectorAll("[id~="+u+"-]").length||q.push("~="),a.querySelectorAll(":checked").length||q.push(":checked"),a.querySelectorAll("a#"+u+"+*").length||q.push(".#.+[+~]")}),ia(function(a){var b=n.createElement("input");b.setAttribute("type","hidden"),a.appendChild(b).setAttribute("name","D"),a.querySelectorAll("[name=d]").length&&q.push("name"+L+"*[*^$|!~]?="),a.querySelectorAll(":enabled").length||q.push(":enabled",":disabled"),a.querySelectorAll("*,:x"),q.push(",.*:")})),(c.matchesSelector=Z.test(s=o.matches||o.webkitMatchesSelector||o.mozMatchesSelector||o.oMatchesSelector||o.msMatchesSelector))&&ia(function(a){c.disconnectedMatch=s.call(a,"div"),s.call(a,"[s!='']:x"),r.push("!=",O)}),q=q.length&&new RegExp(q.join("|")),r=r.length&&new RegExp(r.join("|")),b=Z.test(o.compareDocumentPosition),t=b||Z.test(o.contains)?function(a,b){var c=9===a.nodeType?a.documentElement:a,d=b&&b.parentNode;return a===d||!(!d||1!==d.nodeType||!(c.contains?c.contains(d):a.compareDocumentPosition&&16&a.compareDocumentPosition(d)))}:function(a,b){if(b)while(b=b.parentNode)if(b===a)return!0;return!1},B=b?function(a,b){if(a===b)return l=!0,0;var d=!a.compareDocumentPosition-!b.compareDocumentPosition;return d?d:(d=(a.ownerDocument||a)===(b.ownerDocument||b)?a.compareDocumentPosition(b):1,1&d||!c.sortDetached&&b.compareDocumentPosition(a)===d?a===n||a.ownerDocument===v&&t(v,a)?-1:b===n||b.ownerDocument===v&&t(v,b)?1:k?J(k,a)-J(k,b):0:4&d?-1:1)}:function(a,b){if(a===b)return l=!0,0;var c,d=0,e=a.parentNode,f=b.parentNode,g=[a],h=[b];if(!e||!f)return a===n?-1:b===n?1:e?-1:f?1:k?J(k,a)-J(k,b):0;if(e===f)return ka(a,b);c=a;while(c=c.parentNode)g.unshift(c);c=b;while(c=c.parentNode)h.unshift(c);while(g[d]===h[d])d++;return d?ka(g[d],h[d]):g[d]===v?-1:h[d]===v?1:0},n):n},fa.matches=function(a,b){return fa(a,null,null,b)},fa.matchesSelector=function(a,b){if((a.ownerDocument||a)!==n&&m(a),b=b.replace(T,"='$1']"),c.matchesSelector&&p&&!A[b+" "]&&(!r||!r.test(b))&&(!q||!q.test(b)))try{var d=s.call(a,b);if(d||c.disconnectedMatch||a.document&&11!==a.document.nodeType)return d}catch(e){}return fa(b,n,null,[a]).length>0},fa.contains=function(a,b){return(a.ownerDocument||a)!==n&&m(a),t(a,b)},fa.attr=function(a,b){(a.ownerDocument||a)!==n&&m(a);var e=d.attrHandle[b.toLowerCase()],f=e&&D.call(d.attrHandle,b.toLowerCase())?e(a,b,!p):void 0;return void 0!==f?f:c.attributes||!p?a.getAttribute(b):(f=a.getAttributeNode(b))&&f.specified?f.value:null},fa.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)},fa.uniqueSort=function(a){var b,d=[],e=0,f=0;if(l=!c.detectDuplicates,k=!c.sortStable&&a.slice(0),a.sort(B),l){while(b=a[f++])b===a[f]&&(e=d.push(f));while(e--)a.splice(d[e],1)}return k=null,a},e=fa.getText=function(a){var b,c="",d=0,f=a.nodeType;if(f){if(1===f||9===f||11===f){if("string"==typeof a.textContent)return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=e(a)}else if(3===f||4===f)return a.nodeValue}else while(b=a[d++])c+=e(b);return c},d=fa.selectors={cacheLength:50,createPseudo:ha,match:W,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(ba,ca),a[3]=(a[3]||a[4]||a[5]||"").replace(ba,ca),"~="===a[2]&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),"nth"===a[1].slice(0,3)?(a[3]||fa.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]&&fa.error(a[0]),a},PSEUDO:function(a){var b,c=!a[6]&&a[2];return W.CHILD.test(a[0])?null:(a[3]?a[2]=a[4]||a[5]||"":c&&U.test(c)&&(b=g(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))}},filter:{TAG:function(a){var b=a.replace(ba,ca).toLowerCase();return"*"===a?function(){return!0}:function(a){return a.nodeName&&a.nodeName.toLowerCase()===b}},CLASS:function(a){var b=y[a+" "];return b||(b=new RegExp("(^|"+L+")"+a+"("+L+"|$)"))&&y(a,function(a){return b.test("string"==typeof a.className&&a.className||"undefined"!=typeof a.getAttribute&&a.getAttribute("class")||"")})},ATTR:function(a,b,c){return function(d){var e=fa.attr(d,a);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.replace(P," ")+" ").indexOf(c)>-1:"|="===b?e===c||e.slice(0,c.length+1)===c+"-":!1):!0}},CHILD:function(a,b,c,d,e){var f="nth"!==a.slice(0,3),g="last"!==a.slice(-4),h="of-type"===b;return 1===d&&0===e?function(a){return!!a.parentNode}:function(b,c,i){var j,k,l,m,n,o,p=f!==g?"nextSibling":"previousSibling",q=b.parentNode,r=h&&b.nodeName.toLowerCase(),s=!i&&!h,t=!1;if(q){if(f){while(p){m=b;while(m=m[p])if(h?m.nodeName.toLowerCase()===r:1===m.nodeType)return!1;o=p="only"===a&&!o&&"nextSibling"}return!0}if(o=[g?q.firstChild:q.lastChild],g&&s){m=q,l=m[u]||(m[u]={}),k=l[m.uniqueID]||(l[m.uniqueID]={}),j=k[a]||[],n=j[0]===w&&j[1],t=n&&j[2],m=n&&q.childNodes[n];while(m=++n&&m&&m[p]||(t=n=0)||o.pop())if(1===m.nodeType&&++t&&m===b){k[a]=[w,n,t];break}}else if(s&&(m=b,l=m[u]||(m[u]={}),k=l[m.uniqueID]||(l[m.uniqueID]={}),j=k[a]||[],n=j[0]===w&&j[1],t=n),t===!1)while(m=++n&&m&&m[p]||(t=n=0)||o.pop())if((h?m.nodeName.toLowerCase()===r:1===m.nodeType)&&++t&&(s&&(l=m[u]||(m[u]={}),k=l[m.uniqueID]||(l[m.uniqueID]={}),k[a]=[w,t]),m===b))break;return t-=e,t===d||t%d===0&&t/d>=0}}},PSEUDO:function(a,b){var c,e=d.pseudos[a]||d.setFilters[a.toLowerCase()]||fa.error("unsupported pseudo: "+a);return e[u]?e(b):e.length>1?(c=[a,a,"",b],d.setFilters.hasOwnProperty(a.toLowerCase())?ha(function(a,c){var d,f=e(a,b),g=f.length;while(g--)d=J(a,f[g]),a[d]=!(c[d]=f[g])}):function(a){return e(a,0,c)}):e}},pseudos:{not:ha(function(a){var b=[],c=[],d=h(a.replace(Q,"$1"));return d[u]?ha(function(a,b,c,e){var f,g=d(a,null,e,[]),h=a.length;while(h--)(f=g[h])&&(a[h]=!(b[h]=f))}):function(a,e,f){return b[0]=a,d(b,null,f,c),b[0]=null,!c.pop()}}),has:ha(function(a){return function(b){return fa(a,b).length>0}}),contains:ha(function(a){return a=a.replace(ba,ca),function(b){return(b.textContent||b.innerText||e(b)).indexOf(a)>-1}}),lang:ha(function(a){return V.test(a||"")||fa.error("unsupported lang: "+a),a=a.replace(ba,ca).toLowerCase(),function(b){var c;do if(c=p?b.lang:b.getAttribute("xml:lang")||b.getAttribute("lang"))return c=c.toLowerCase(),c===a||0===c.indexOf(a+"-");while((b=b.parentNode)&&1===b.nodeType);return!1}}),target:function(b){var c=a.location&&a.location.hash;return c&&c.slice(1)===b.id},root:function(a){return a===o},focus:function(a){return a===n.activeElement&&(!n.hasFocus||n.hasFocus())&&!!(a.type||a.href||~a.tabIndex)},enabled:function(a){return a.disabled===!1},disabled:function(a){return a.disabled===!0},checked:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&!!a.checked||"option"===b&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},empty:function(a){for(a=a.firstChild;a;a=a.nextSibling)if(a.nodeType<6)return!1;return!0},parent:function(a){return!d.pseudos.empty(a)},header:function(a){return Y.test(a.nodeName)},input:function(a){return X.test(a.nodeName)},button:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&"button"===a.type||"button"===b},text:function(a){var b;return"input"===a.nodeName.toLowerCase()&&"text"===a.type&&(null==(b=a.getAttribute("type"))||"text"===b.toLowerCase())},first:na(function(){return[0]}),last:na(function(a,b){return[b-1]}),eq:na(function(a,b,c){return[0>c?c+b:c]}),even:na(function(a,b){for(var c=0;b>c;c+=2)a.push(c);return a}),odd:na(function(a,b){for(var c=1;b>c;c+=2)a.push(c);return a}),lt:na(function(a,b,c){for(var d=0>c?c+b:c;--d>=0;)a.push(d);return a}),gt:na(function(a,b,c){for(var d=0>c?c+b:c;++d<b;)a.push(d);return a})}},d.pseudos.nth=d.pseudos.eq;for(b in{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})d.pseudos[b]=la(b);for(b in{submit:!0,reset:!0})d.pseudos[b]=ma(b);function pa(){}pa.prototype=d.filters=d.pseudos,d.setFilters=new pa,g=fa.tokenize=function(a,b){var c,e,f,g,h,i,j,k=z[a+" "];if(k)return b?0:k.slice(0);h=a,i=[],j=d.preFilter;while(h){c&&!(e=R.exec(h))||(e&&(h=h.slice(e[0].length)||h),i.push(f=[])),c=!1,(e=S.exec(h))&&(c=e.shift(),f.push({value:c,type:e[0].replace(Q," ")}),h=h.slice(c.length));for(g in d.filter)!(e=W[g].exec(h))||j[g]&&!(e=j[g](e))||(c=e.shift(),f.push({value:c,type:g,matches:e}),h=h.slice(c.length));if(!c)break}return b?h.length:h?fa.error(a):z(a,i).slice(0)};function qa(a){for(var b=0,c=a.length,d="";c>b;b++)d+=a[b].value;return d}function ra(a,b,c){var d=b.dir,e=c&&"parentNode"===d,f=x++;return b.first?function(b,c,f){while(b=b[d])if(1===b.nodeType||e)return a(b,c,f)}:function(b,c,g){var h,i,j,k=[w,f];if(g){while(b=b[d])if((1===b.nodeType||e)&&a(b,c,g))return!0}else while(b=b[d])if(1===b.nodeType||e){if(j=b[u]||(b[u]={}),i=j[b.uniqueID]||(j[b.uniqueID]={}),(h=i[d])&&h[0]===w&&h[1]===f)return k[2]=h[2];if(i[d]=k,k[2]=a(b,c,g))return!0}}}function sa(a){return a.length>1?function(b,c,d){var e=a.length;while(e--)if(!a[e](b,c,d))return!1;return!0}:a[0]}function ta(a,b,c){for(var d=0,e=b.length;e>d;d++)fa(a,b[d],c);return c}function ua(a,b,c,d,e){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)));return g}function va(a,b,c,d,e,f){return d&&!d[u]&&(d=va(d)),e&&!e[u]&&(e=va(e,f)),ha(function(f,g,h,i){var j,k,l,m=[],n=[],o=g.length,p=f||ta(b||"*",h.nodeType?[h]:h,[]),q=!a||!f&&b?p:ua(p,m,a,h,i),r=c?e||(f?a:o||d)?[]:g:q;if(c&&c(q,r,h,i),d){j=ua(r,n),d(j,[],h,i),k=j.length;while(k--)(l=j[k])&&(r[n[k]]=!(q[n[k]]=l))}if(f){if(e||a){if(e){j=[],k=r.length;while(k--)(l=r[k])&&j.push(q[k]=l);e(null,r=[],j,i)}k=r.length;while(k--)(l=r[k])&&(j=e?J(f,l):m[k])>-1&&(f[j]=!(g[j]=l))}}else r=ua(r===g?r.splice(o,r.length):r),e?e(null,g,r,i):H.apply(g,r)})}function wa(a){for(var b,c,e,f=a.length,g=d.relative[a[0].type],h=g||d.relative[" "],i=g?1:0,k=ra(function(a){return a===b},h,!0),l=ra(function(a){return J(b,a)>-1},h,!0),m=[function(a,c,d){var e=!g&&(d||c!==j)||((b=c).nodeType?k(a,c,d):l(a,c,d));return b=null,e}];f>i;i++)if(c=d.relative[a[i].type])m=[ra(sa(m),c)];else{if(c=d.filter[a[i].type].apply(null,a[i].matches),c[u]){for(e=++i;f>e;e++)if(d.relative[a[e].type])break;return va(i>1&&sa(m),i>1&&qa(a.slice(0,i-1).concat({value:" "===a[i-2].type?"*":""})).replace(Q,"$1"),c,e>i&&wa(a.slice(i,e)),f>e&&wa(a=a.slice(e)),f>e&&qa(a))}m.push(c)}return sa(m)}function xa(a,b){var c=b.length>0,e=a.length>0,f=function(f,g,h,i,k){var l,o,q,r=0,s="0",t=f&&[],u=[],v=j,x=f||e&&d.find.TAG("*",k),y=w+=null==v?1:Math.random()||.1,z=x.length;for(k&&(j=g===n||g||k);s!==z&&null!=(l=x[s]);s++){if(e&&l){o=0,g||l.ownerDocument===n||(m(l),h=!p);while(q=a[o++])if(q(l,g||n,h)){i.push(l);break}k&&(w=y)}c&&((l=!q&&l)&&r--,f&&t.push(l))}if(r+=s,c&&s!==r){o=0;while(q=b[o++])q(t,u,g,h);if(f){if(r>0)while(s--)t[s]||u[s]||(u[s]=F.call(i));u=ua(u)}H.apply(i,u),k&&!f&&u.length>0&&r+b.length>1&&fa.uniqueSort(i)}return k&&(w=y,j=v),t};return c?ha(f):f}return h=fa.compile=function(a,b){var c,d=[],e=[],f=A[a+" "];if(!f){b||(b=g(a)),c=b.length;while(c--)f=wa(b[c]),f[u]?d.push(f):e.push(f);f=A(a,xa(e,d)),f.selector=a}return f},i=fa.select=function(a,b,e,f){var i,j,k,l,m,n="function"==typeof a&&a,o=!f&&g(a=n.selector||a);if(e=e||[],1===o.length){if(j=o[0]=o[0].slice(0),j.length>2&&"ID"===(k=j[0]).type&&c.getById&&9===b.nodeType&&p&&d.relative[j[1].type]){if(b=(d.find.ID(k.matches[0].replace(ba,ca),b)||[])[0],!b)return e;n&&(b=b.parentNode),a=a.slice(j.shift().value.length)}i=W.needsContext.test(a)?0:j.length;while(i--){if(k=j[i],d.relative[l=k.type])break;if((m=d.find[l])&&(f=m(k.matches[0].replace(ba,ca),_.test(j[0].type)&&oa(b.parentNode)||b))){if(j.splice(i,1),a=f.length&&qa(j),!a)return H.apply(e,f),e;break}}}return(n||h(a,o))(f,b,!p,e,!b||_.test(a)&&oa(b.parentNode)||b),e},c.sortStable=u.split("").sort(B).join("")===u,c.detectDuplicates=!!l,m(),c.sortDetached=ia(function(a){return 1&a.compareDocumentPosition(n.createElement("div"))}),ia(function(a){return a.innerHTML="<a href='#'></a>","#"===a.firstChild.getAttribute("href")})||ja("type|href|height|width",function(a,b,c){return c?void 0:a.getAttribute(b,"type"===b.toLowerCase()?1:2)}),c.attributes&&ia(function(a){return a.innerHTML="<input/>",a.firstChild.setAttribute("value",""),""===a.firstChild.getAttribute("value")})||ja("value",function(a,b,c){return c||"input"!==a.nodeName.toLowerCase()?void 0:a.defaultValue}),ia(function(a){return null==a.getAttribute("disabled")})||ja(K,function(a,b,c){var d;return c?void 0:a[b]===!0?b.toLowerCase():(d=a.getAttributeNode(b))&&d.specified?d.value:null}),fa}(a);n.find=t,n.expr=t.selectors,n.expr[":"]=n.expr.pseudos,n.uniqueSort=n.unique=t.uniqueSort,n.text=t.getText,n.isXMLDoc=t.isXML,n.contains=t.contains;var u=function(a,b,c){var d=[],e=void 0!==c;while((a=a[b])&&9!==a.nodeType)if(1===a.nodeType){if(e&&n(a).is(c))break;d.push(a)}return d},v=function(a,b){for(var c=[];a;a=a.nextSibling)1===a.nodeType&&a!==b&&c.push(a);return c},w=n.expr.match.needsContext,x=/^<([\w-]+)\s*\/?>(?:<\/\1>|)$/,y=/^.[^:#\[\.,]*$/;function z(a,b,c){if(n.isFunction(b))return n.grep(a,function(a,d){return!!b.call(a,d,a)!==c});if(b.nodeType)return n.grep(a,function(a){return a===b!==c});if("string"==typeof b){if(y.test(b))return n.filter(b,a,c);b=n.filter(b,a)}return n.grep(a,function(a){return h.call(b,a)>-1!==c})}n.filter=function(a,b,c){var d=b[0];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){return 1===a.nodeType}))},n.fn.extend({find:function(a){var b,c=this.length,d=[],e=this;if("string"!=typeof a)return this.pushStack(n(a).filter(function(){for(b=0;c>b;b++)if(n.contains(e[b],this))return!0}));for(b=0;c>b;b++)n.find(a,e[b],d);return d=this.pushStack(c>1?n.unique(d):d),d.selector=this.selector?this.selector+" "+a:a,d},filter:function(a){return this.pushStack(z(this,a||[],!1))},not:function(a){return this.pushStack(z(this,a||[],!0))},is:function(a){return!!z(this,"string"==typeof a&&w.test(a)?n(a):a||[],!1).length}});var A,B=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/,C=n.fn.init=function(a,b,c){var e,f;if(!a)return this;if(c=c||A,"string"==typeof a){if(e="<"===a[0]&&">"===a[a.length-1]&&a.length>=3?[null,a,null]:B.exec(a),!e||!e[1]&&b)return!b||b.jquery?(b||c).find(a):this.constructor(b).find(a);if(e[1]){if(b=b instanceof n?b[0]:b,n.merge(this,n.parseHTML(e[1],b&&b.nodeType?b.ownerDocument||b:d,!0)),x.test(e[1])&&n.isPlainObject(b))for(e in b)n.isFunction(this[e])?this[e](b[e]):this.attr(e,b[e]);return this}return f=d.getElementById(e[2]),f&&f.parentNode&&(this.length=1,this[0]=f),this.context=d,this.selector=a,this}return a.nodeType?(this.context=this[0]=a,this.length=1,this):n.isFunction(a)?void 0!==c.ready?c.ready(a):a(n):(void 0!==a.selector&&(this.selector=a.selector,this.context=a.context),n.makeArray(a,this))};C.prototype=n.fn,A=n(d);var D=/^(?:parents|prev(?:Until|All))/,E={children:!0,contents:!0,next:!0,prev:!0};n.fn.extend({has:function(a){var b=n(a,this),c=b.length;return this.filter(function(){for(var a=0;c>a;a++)if(n.contains(this,b[a]))return!0})},closest:function(a,b){for(var c,d=0,e=this.length,f=[],g=w.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))){f.push(c);break}return this.pushStack(f.length>1?n.uniqueSort(f):f)},index:function(a){return a?"string"==typeof a?h.call(n(a),this[0]):h.call(this,a.jquery?a[0]:a):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(a,b){return this.pushStack(n.uniqueSort(n.merge(this.get(),n(a,b))))},addBack:function(a){return this.add(null==a?this.prevObject:this.prevObject.filter(a))}});function F(a,b){while((a=a[b])&&1!==a.nodeType);return a}n.each({parent:function(a){var b=a.parentNode;return b&&11!==b.nodeType?b:null},parents:function(a){return u(a,"parentNode")},parentsUntil:function(a,b,c){return u(a,"parentNode",c)},next:function(a){return F(a,"nextSibling")},prev:function(a){return F(a,"previousSibling")},nextAll:function(a){return u(a,"nextSibling")},prevAll:function(a){return u(a,"previousSibling")},nextUntil:function(a,b,c){return u(a,"nextSibling",c)},prevUntil:function(a,b,c){return u(a,"previousSibling",c)},siblings:function(a){return v((a.parentNode||{}).firstChild,a)},children:function(a){return v(a.firstChild)},contents:function(a){return a.contentDocument||n.merge([],a.childNodes)}},function(a,b){n.fn[a]=function(c,d){var e=n.map(this,b,c);return"Until"!==a.slice(-5)&&(d=c),d&&"string"==typeof d&&(e=n.filter(d,e)),this.length>1&&(E[a]||n.uniqueSort(e),D.test(a)&&e.reverse()),this.pushStack(e)}});var G=/\S+/g;function H(a){var b={};return n.each(a.match(G)||[],function(a,c){b[c]=!0}),b}n.Callbacks=function(a){a="string"==typeof a?H(a):n.extend({},a);var b,c,d,e,f=[],g=[],h=-1,i=function(){for(e=a.once,d=b=!0;g.length;h=-1){c=g.shift();while(++h<f.length)f[h].apply(c[0],c[1])===!1&&a.stopOnFalse&&(h=f.length,c=!1)}a.memory||(c=!1),b=!1,e&&(f=c?[]:"")},j={add:function(){return f&&(c&&!b&&(h=f.length-1,g.push(c)),function d(b){n.each(b,function(b,c){n.isFunction(c)?a.unique&&j.has(c)||f.push(c):c&&c.length&&"string"!==n.type(c)&&d(c)})}(arguments),c&&!b&&i()),this},remove:function(){return n.each(arguments,function(a,b){var c;while((c=n.inArray(b,f,c))>-1)f.splice(c,1),h>=c&&h--}),this},has:function(a){return a?n.inArray(a,f)>-1:f.length>0},empty:function(){return f&&(f=[]),this},disable:function(){return e=g=[],f=c="",this},disabled:function(){return!f},lock:function(){return e=g=[],c||(f=c=""),this},locked:function(){return!!e},fireWith:function(a,c){return e||(c=c||[],c=[a,c.slice?c.slice():c],g.push(c),b||i()),this},fire:function(){return j.fireWith(this,arguments),this},fired:function(){return!!d}};return j},n.extend({Deferred:function(a){var b=[["resolve","done",n.Callbacks("once memory"),"resolved"],["reject","fail",n.Callbacks("once memory"),"rejected"],["notify","progress",n.Callbacks("memory")]],c="pending",d={state:function(){return c},always:function(){return e.done(arguments).fail(arguments),this},then:function(){var a=arguments;return n.Deferred(function(c){n.each(b,function(b,f){var g=n.isFunction(a[b])&&a[b];e[f[1]](function(){var a=g&&g.apply(this,arguments);a&&n.isFunction(a.promise)?a.promise().progress(c.notify).done(c.resolve).fail(c.reject):c[f[0]+"With"](this===d?c.promise():this,g?[a]:arguments)})}),a=null}).promise()},promise:function(a){return null!=a?n.extend(a,d):d}},e={};return d.pipe=d.then,n.each(b,function(a,f){var g=f[2],h=f[3];d[f[1]]=g.add,h&&g.add(function(){c=h},b[1^a][2].disable,b[2][2].lock),e[f[0]]=function(){return e[f[0]+"With"](this===e?d:this,arguments),this},e[f[0]+"With"]=g.fireWith}),d.promise(e),a&&a.call(e,e),e},when:function(a){var b=0,c=e.call(arguments),d=c.length,f=1!==d||a&&n.isFunction(a.promise)?d:0,g=1===f?a:n.Deferred(),h=function(a,b,c){return function(d){b[a]=this,c[a]=arguments.length>1?e.call(arguments):d,c===i?g.notifyWith(b,c):--f||g.resolveWith(b,c)}},i,j,k;if(d>1)for(i=new Array(d),j=new Array(d),k=new Array(d);d>b;b++)c[b]&&n.isFunction(c[b].promise)?c[b].promise().progress(h(b,j,i)).done(h(b,k,c)).fail(g.reject):--f;return f||g.resolveWith(k,c),g.promise()}});var I;n.fn.ready=function(a){return n.ready.promise().done(a),this},n.extend({isReady:!1,readyWait:1,holdReady:function(a){a?n.readyWait++:n.ready(!0)},ready:function(a){(a===!0?--n.readyWait:n.isReady)||(n.isReady=!0,a!==!0&&--n.readyWait>0||(I.resolveWith(d,[n]),n.fn.triggerHandler&&(n(d).triggerHandler("ready"),n(d).off("ready"))))}});function J(){d.removeEventListener("DOMContentLoaded",J),a.removeEventListener("load",J),n.ready()}n.ready.promise=function(b){return I||(I=n.Deferred(),"complete"===d.readyState||"loading"!==d.readyState&&!d.documentElement.doScroll?a.setTimeout(n.ready):(d.addEventListener("DOMContentLoaded",J),a.addEventListener("load",J))),I.promise(b)},n.ready.promise();var K=function(a,b,c,d,e,f,g){var h=0,i=a.length,j=null==c;if("object"===n.type(c)){e=!0;for(h in c)K(a,b,h,c[h],!0,f,g)}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){return j.call(n(a),c)})),b))for(;i>h;h++)b(a[h],c,g?d:d.call(a[h],h,b(a[h],c)));return e?a:j?b.call(a):i?b(a[0],c):f},L=function(a){return 1===a.nodeType||9===a.nodeType||!+a.nodeType};function M(){this.expando=n.expando+M.uid++}M.uid=1,M.prototype={register:function(a,b){var c=b||{};return a.nodeType?a[this.expando]=c:Object.defineProperty(a,this.expando,{value:c,writable:!0,configurable:!0}),a[this.expando]},cache:function(a){if(!L(a))return{};var b=a[this.expando];return b||(b={},L(a)&&(a.nodeType?a[this.expando]=b:Object.defineProperty(a,this.expando,{value:b,configurable:!0}))),b},set:function(a,b,c){var d,e=this.cache(a);if("string"==typeof b)e[b]=c;else for(d in b)e[d]=b[d];return e},get:function(a,b){return void 0===b?this.cache(a):a[this.expando]&&a[this.expando][b]},access:function(a,b,c){var d;return void 0===b||b&&"string"==typeof b&&void 0===c?(d=this.get(a,b),void 0!==d?d:this.get(a,n.camelCase(b))):(this.set(a,b,c),void 0!==c?c:b)},remove:function(a,b){var c,d,e,f=a[this.expando];if(void 0!==f){if(void 0===b)this.register(a);else{n.isArray(b)?d=b.concat(b.map(n.camelCase)):(e=n.camelCase(b),b in f?d=[b,e]:(d=e,d=d in f?[d]:d.match(G)||[])),c=d.length;while(c--)delete f[d[c]]}(void 0===b||n.isEmptyObject(f))&&(a.nodeType?a[this.expando]=void 0:delete a[this.expando])}},hasData:function(a){var b=a[this.expando];return void 0!==b&&!n.isEmptyObject(b)}};var N=new M,O=new M,P=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,Q=/[A-Z]/g;function R(a,b,c){var d;if(void 0===c&&1===a.nodeType)if(d="data-"+b.replace(Q,"-$&").toLowerCase(),c=a.getAttribute(d),"string"==typeof c){try{c="true"===c?!0:"false"===c?!1:"null"===c?null:+c+""===c?+c:P.test(c)?n.parseJSON(c):c;
3
}catch(e){}O.set(a,b,c)}else c=void 0;return c}n.extend({hasData:function(a){return O.hasData(a)||N.hasData(a)},data:function(a,b,c){return O.access(a,b,c)},removeData:function(a,b){O.remove(a,b)},_data:function(a,b,c){return N.access(a,b,c)},_removeData:function(a,b){N.remove(a,b)}}),n.fn.extend({data:function(a,b){var c,d,e,f=this[0],g=f&&f.attributes;if(void 0===a){if(this.length&&(e=O.get(f),1===f.nodeType&&!N.get(f,"hasDataAttrs"))){c=g.length;while(c--)g[c]&&(d=g[c].name,0===d.indexOf("data-")&&(d=n.camelCase(d.slice(5)),R(f,d,e[d])));N.set(f,"hasDataAttrs",!0)}return e}return"object"==typeof a?this.each(function(){O.set(this,a)}):K(this,function(b){var c,d;if(f&&void 0===b){if(c=O.get(f,a)||O.get(f,a.replace(Q,"-$&").toLowerCase()),void 0!==c)return c;if(d=n.camelCase(a),c=O.get(f,d),void 0!==c)return c;if(c=R(f,d,void 0),void 0!==c)return c}else d=n.camelCase(a),this.each(function(){var c=O.get(this,d);O.set(this,d,b),a.indexOf("-")>-1&&void 0!==c&&O.set(this,a,b)})},null,b,arguments.length>1,null,!0)},removeData:function(a){return this.each(function(){O.remove(this,a)})}}),n.extend({queue:function(a,b,c){var d;return a?(b=(b||"fx")+"queue",d=N.get(a,b),c&&(!d||n.isArray(c)?d=N.access(a,b,n.makeArray(c)):d.push(c)),d||[]):void 0},dequeue:function(a,b){b=b||"fx";var c=n.queue(a,b),d=c.length,e=c.shift(),f=n._queueHooks(a,b),g=function(){n.dequeue(a,b)};"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()},_queueHooks:function(a,b){var c=b+"queueHooks";return N.get(a,c)||N.access(a,c,{empty:n.Callbacks("once memory").add(function(){N.remove(a,[b+"queue",c])})})}}),n.fn.extend({queue:function(a,b){var c=2;return"string"!=typeof a&&(b=a,a="fx",c--),arguments.length<c?n.queue(this[0],a):void 0===b?this:this.each(function(){var c=n.queue(this,a,b);n._queueHooks(this,a),"fx"===a&&"inprogress"!==c[0]&&n.dequeue(this,a)})},dequeue:function(a){return this.each(function(){n.dequeue(this,a)})},clearQueue:function(a){return this.queue(a||"fx",[])},promise:function(a,b){var c,d=1,e=n.Deferred(),f=this,g=this.length,h=function(){--d||e.resolveWith(f,[f])};"string"!=typeof a&&(b=a,a=void 0),a=a||"fx";while(g--)c=N.get(f[g],a+"queueHooks"),c&&c.empty&&(d++,c.empty.add(h));return h(),e.promise(b)}});var S=/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source,T=new RegExp("^(?:([+-])=|)("+S+")([a-z%]*)$","i"),U=["Top","Right","Bottom","Left"],V=function(a,b){return a=b||a,"none"===n.css(a,"display")||!n.contains(a.ownerDocument,a)};function W(a,b,c,d){var e,f=1,g=20,h=d?function(){return d.cur()}:function(){return n.css(a,b,"")},i=h(),j=c&&c[3]||(n.cssNumber[b]?"":"px"),k=(n.cssNumber[b]||"px"!==j&&+i)&&T.exec(n.css(a,b));if(k&&k[3]!==j){j=j||k[3],c=c||[],k=+i||1;do f=f||".5",k/=f,n.style(a,b,k+j);while(f!==(f=h()/i)&&1!==f&&--g)}return c&&(k=+k||+i||0,e=c[1]?k+(c[1]+1)*c[2]:+c[2],d&&(d.unit=j,d.start=k,d.end=e)),e}var X=/^(?:checkbox|radio)$/i,Y=/<([\w:-]+)/,Z=/^$|\/(?:java|ecma)script/i,$={option:[1,"<select multiple='multiple'>","</select>"],thead:[1,"<table>","</table>"],col:[2,"<table><colgroup>","</colgroup></table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],_default:[0,"",""]};$.optgroup=$.option,$.tbody=$.tfoot=$.colgroup=$.caption=$.thead,$.th=$.td;function _(a,b){var c="undefined"!=typeof a.getElementsByTagName?a.getElementsByTagName(b||"*"):"undefined"!=typeof a.querySelectorAll?a.querySelectorAll(b||"*"):[];return void 0===b||b&&n.nodeName(a,b)?n.merge([a],c):c}function aa(a,b){for(var c=0,d=a.length;d>c;c++)N.set(a[c],"globalEval",!b||N.get(b[c],"globalEval"))}var ba=/<|&#?\w+;/;function ca(a,b,c,d,e){for(var f,g,h,i,j,k,l=b.createDocumentFragment(),m=[],o=0,p=a.length;p>o;o++)if(f=a[o],f||0===f)if("object"===n.type(f))n.merge(m,f.nodeType?[f]:f);else if(ba.test(f)){g=g||l.appendChild(b.createElement("div")),h=(Y.exec(f)||["",""])[1].toLowerCase(),i=$[h]||$._default,g.innerHTML=i[1]+n.htmlPrefilter(f)+i[2],k=i[0];while(k--)g=g.lastChild;n.merge(m,g.childNodes),g=l.firstChild,g.textContent=""}else m.push(b.createTextNode(f));l.textContent="",o=0;while(f=m[o++])if(d&&n.inArray(f,d)>-1)e&&e.push(f);else if(j=n.contains(f.ownerDocument,f),g=_(l.appendChild(f),"script"),j&&aa(g),c){k=0;while(f=g[k++])Z.test(f.type||"")&&c.push(f)}return l}!function(){var a=d.createDocumentFragment(),b=a.appendChild(d.createElement("div")),c=d.createElement("input");c.setAttribute("type","radio"),c.setAttribute("checked","checked"),c.setAttribute("name","t"),b.appendChild(c),l.checkClone=b.cloneNode(!0).cloneNode(!0).lastChild.checked,b.innerHTML="<textarea>x</textarea>",l.noCloneChecked=!!b.cloneNode(!0).lastChild.defaultValue}();var da=/^key/,ea=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,fa=/^([^.]*)(?:\.(.+)|)/;function ga(){return!0}function ha(){return!1}function ia(){try{return d.activeElement}catch(a){}}function ja(a,b,c,d,e,f){var g,h;if("object"==typeof b){"string"!=typeof c&&(d=d||c,c=void 0);for(h in b)ja(a,h,c,d,b[h],f);return a}if(null==d&&null==e?(e=c,d=c=void 0):null==e&&("string"==typeof c?(e=d,d=void 0):(e=d,d=c,c=void 0)),e===!1)e=ha;else if(!e)return a;return 1===f&&(g=e,e=function(a){return n().off(a),g.apply(this,arguments)},e.guid=g.guid||(g.guid=n.guid++)),a.each(function(){n.event.add(this,b,e,d,c)})}n.event={global:{},add:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,o,p,q,r=N.get(a);if(r){c.handler&&(f=c,c=f.handler,e=f.selector),c.guid||(c.guid=n.guid++),(i=r.events)||(i=r.events={}),(g=r.handle)||(g=r.handle=function(b){return"undefined"!=typeof n&&n.event.triggered!==b.type?n.event.dispatch.apply(a,arguments):void 0}),b=(b||"").match(G)||[""],j=b.length;while(j--)h=fa.exec(b[j])||[],o=q=h[1],p=(h[2]||"").split(".").sort(),o&&(l=n.event.special[o]||{},o=(e?l.delegateType:l.bindType)||o,l=n.event.special[o]||{},k=n.extend({type:o,origType:q,data:d,handler:c,guid:c.guid,selector:e,needsContext:e&&n.expr.match.needsContext.test(e),namespace:p.join(".")},f),(m=i[o])||(m=i[o]=[],m.delegateCount=0,l.setup&&l.setup.call(a,d,p,g)!==!1||a.addEventListener&&a.addEventListener(o,g)),l.add&&(l.add.call(a,k),k.handler.guid||(k.handler.guid=c.guid)),e?m.splice(m.delegateCount++,0,k):m.push(k),n.event.global[o]=!0)}},remove:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,o,p,q,r=N.hasData(a)&&N.get(a);if(r&&(i=r.events)){b=(b||"").match(G)||[""],j=b.length;while(j--)if(h=fa.exec(b[j])||[],o=q=h[1],p=(h[2]||"").split(".").sort(),o){l=n.event.special[o]||{},o=(d?l.delegateType:l.bindType)||o,m=i[o]||[],h=h[2]&&new RegExp("(^|\\.)"+p.join("\\.(?:.*\\.|)")+"(\\.|$)"),g=f=m.length;while(f--)k=m[f],!e&&q!==k.origType||c&&c.guid!==k.guid||h&&!h.test(k.namespace)||d&&d!==k.selector&&("**"!==d||!k.selector)||(m.splice(f,1),k.selector&&m.delegateCount--,l.remove&&l.remove.call(a,k));g&&!m.length&&(l.teardown&&l.teardown.call(a,p,r.handle)!==!1||n.removeEvent(a,o,r.handle),delete i[o])}else for(o in i)n.event.remove(a,o+b[j],c,d,!0);n.isEmptyObject(i)&&N.remove(a,"handle events")}},dispatch:function(a){a=n.event.fix(a);var b,c,d,f,g,h=[],i=e.call(arguments),j=(N.get(this,"events")||{})[a.type]||[],k=n.event.special[a.type]||{};if(i[0]=a,a.delegateTarget=this,!k.preDispatch||k.preDispatch.call(this,a)!==!1){h=n.event.handlers.call(this,a,j),b=0;while((f=h[b++])&&!a.isPropagationStopped()){a.currentTarget=f.elem,c=0;while((g=f.handlers[c++])&&!a.isImmediatePropagationStopped())a.rnamespace&&!a.rnamespace.test(g.namespace)||(a.handleObj=g,a.data=g.data,d=((n.event.special[g.origType]||{}).handle||g.handler).apply(f.elem,i),void 0!==d&&(a.result=d)===!1&&(a.preventDefault(),a.stopPropagation()))}return k.postDispatch&&k.postDispatch.call(this,a),a.result}},handlers:function(a,b){var c,d,e,f,g=[],h=b.delegateCount,i=a.target;if(h&&i.nodeType&&("click"!==a.type||isNaN(a.button)||a.button<1))for(;i!==this;i=i.parentNode||this)if(1===i.nodeType&&(i.disabled!==!0||"click"!==a.type)){for(d=[],c=0;h>c;c++)f=b[c],e=f.selector+" ",void 0===d[e]&&(d[e]=f.needsContext?n(e,this).index(i)>-1:n.find(e,this,null,[i]).length),d[e]&&d.push(f);d.length&&g.push({elem:i,handlers:d})}return h<b.length&&g.push({elem:this,handlers:b.slice(h)}),g},props:"altKey bubbles cancelable ctrlKey currentTarget detail eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),fixHooks:{},keyHooks:{props:"char charCode key keyCode".split(" "),filter:function(a,b){return null==a.which&&(a.which=null!=b.charCode?b.charCode:b.keyCode),a}},mouseHooks:{props:"button buttons clientX clientY offsetX offsetY pageX pageY screenX screenY toElement".split(" "),filter:function(a,b){var c,e,f,g=b.button;return null==a.pageX&&null!=b.clientX&&(c=a.target.ownerDocument||d,e=c.documentElement,f=c.body,a.pageX=b.clientX+(e&&e.scrollLeft||f&&f.scrollLeft||0)-(e&&e.clientLeft||f&&f.clientLeft||0),a.pageY=b.clientY+(e&&e.scrollTop||f&&f.scrollTop||0)-(e&&e.clientTop||f&&f.clientTop||0)),a.which||void 0===g||(a.which=1&g?1:2&g?3:4&g?2:0),a}},fix:function(a){if(a[n.expando])return a;var b,c,e,f=a.type,g=a,h=this.fixHooks[f];h||(this.fixHooks[f]=h=ea.test(f)?this.mouseHooks:da.test(f)?this.keyHooks:{}),e=h.props?this.props.concat(h.props):this.props,a=new n.Event(g),b=e.length;while(b--)c=e[b],a[c]=g[c];return a.target||(a.target=d),3===a.target.nodeType&&(a.target=a.target.parentNode),h.filter?h.filter(a,g):a},special:{load:{noBubble:!0},focus:{trigger:function(){return this!==ia()&&this.focus?(this.focus(),!1):void 0},delegateType:"focusin"},blur:{trigger:function(){return this===ia()&&this.blur?(this.blur(),!1):void 0},delegateType:"focusout"},click:{trigger:function(){return"checkbox"===this.type&&this.click&&n.nodeName(this,"input")?(this.click(),!1):void 0},_default:function(a){return n.nodeName(a.target,"a")}},beforeunload:{postDispatch:function(a){void 0!==a.result&&a.originalEvent&&(a.originalEvent.returnValue=a.result)}}}},n.removeEvent=function(a,b,c){a.removeEventListener&&a.removeEventListener(b,c)},n.Event=function(a,b){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?ga:ha):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)},n.Event.prototype={constructor:n.Event,isDefaultPrevented:ha,isPropagationStopped:ha,isImmediatePropagationStopped:ha,preventDefault:function(){var a=this.originalEvent;this.isDefaultPrevented=ga,a&&a.preventDefault()},stopPropagation:function(){var a=this.originalEvent;this.isPropagationStopped=ga,a&&a.stopPropagation()},stopImmediatePropagation:function(){var a=this.originalEvent;this.isImmediatePropagationStopped=ga,a&&a.stopImmediatePropagation(),this.stopPropagation()}},n.each({mouseenter:"mouseover",mouseleave:"mouseout",pointerenter:"pointerover",pointerleave:"pointerout"},function(a,b){n.event.special[a]={delegateType:b,bindType:b,handle:function(a){var c,d=this,e=a.relatedTarget,f=a.handleObj;return e&&(e===d||n.contains(d,e))||(a.type=f.origType,c=f.handler.apply(this,arguments),a.type=b),c}}}),n.fn.extend({on:function(a,b,c,d){return ja(this,a,b,c,d)},one:function(a,b,c,d){return ja(this,a,b,c,d,1)},off:function(a,b,c){var d,e;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;if("object"==typeof a){for(e in a)this.off(e,b,a[e]);return this}return b!==!1&&"function"!=typeof b||(c=b,b=void 0),c===!1&&(c=ha),this.each(function(){n.event.remove(this,a,c,b)})}});var ka=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:-]+)[^>]*)\/>/gi,la=/<script|<style|<link/i,ma=/checked\s*(?:[^=]|=\s*.checked.)/i,na=/^true\/(.*)/,oa=/^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g;function pa(a,b){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}function qa(a){return a.type=(null!==a.getAttribute("type"))+"/"+a.type,a}function ra(a){var b=na.exec(a.type);return b?a.type=b[1]:a.removeAttribute("type"),a}function sa(a,b){var c,d,e,f,g,h,i,j;if(1===b.nodeType){if(N.hasData(a)&&(f=N.access(a),g=N.set(b,f),j=f.events)){delete g.handle,g.events={};for(e in j)for(c=0,d=j[e].length;d>c;c++)n.event.add(b,e,j[e][c])}O.hasData(a)&&(h=O.access(a),i=n.extend({},h),O.set(b,i))}}function ta(a,b){var c=b.nodeName.toLowerCase();"input"===c&&X.test(a.type)?b.checked=a.checked:"input"!==c&&"textarea"!==c||(b.defaultValue=a.defaultValue)}function ua(a,b,c,d){b=f.apply([],b);var e,g,h,i,j,k,m=0,o=a.length,p=o-1,q=b[0],r=n.isFunction(q);if(r||o>1&&"string"==typeof q&&!l.checkClone&&ma.test(q))return a.each(function(e){var f=a.eq(e);r&&(b[0]=q.call(this,e,f.html())),ua(f,b,c,d)});if(o&&(e=ca(b,a[0].ownerDocument,!1,a,d),g=e.firstChild,1===e.childNodes.length&&(e=g),g||d)){for(h=n.map(_(e,"script"),qa),i=h.length;o>m;m++)j=e,m!==p&&(j=n.clone(j,!0,!0),i&&n.merge(h,_(j,"script"))),c.call(a[m],j,m);if(i)for(k=h[h.length-1].ownerDocument,n.map(h,ra),m=0;i>m;m++)j=h[m],Z.test(j.type||"")&&!N.access(j,"globalEval")&&n.contains(k,j)&&(j.src?n._evalUrl&&n._evalUrl(j.src):n.globalEval(j.textContent.replace(oa,"")))}return a}function va(a,b,c){for(var d,e=b?n.filter(b,a):a,f=0;null!=(d=e[f]);f++)c||1!==d.nodeType||n.cleanData(_(d)),d.parentNode&&(c&&n.contains(d.ownerDocument,d)&&aa(_(d,"script")),d.parentNode.removeChild(d));return a}n.extend({htmlPrefilter:function(a){return a.replace(ka,"<$1></$2>")},clone:function(a,b,c){var d,e,f,g,h=a.cloneNode(!0),i=n.contains(a.ownerDocument,a);if(!(l.noCloneChecked||1!==a.nodeType&&11!==a.nodeType||n.isXMLDoc(a)))for(g=_(h),f=_(a),d=0,e=f.length;e>d;d++)ta(f[d],g[d]);if(b)if(c)for(f=f||_(a),g=g||_(h),d=0,e=f.length;e>d;d++)sa(f[d],g[d]);else sa(a,h);return g=_(h,"script"),g.length>0&&aa(g,!i&&_(a,"script")),h},cleanData:function(a){for(var b,c,d,e=n.event.special,f=0;void 0!==(c=a[f]);f++)if(L(c)){if(b=c[N.expando]){if(b.events)for(d in b.events)e[d]?n.event.remove(c,d):n.removeEvent(c,d,b.handle);c[N.expando]=void 0}c[O.expando]&&(c[O.expando]=void 0)}}}),n.fn.extend({domManip:ua,detach:function(a){return va(this,a,!0)},remove:function(a){return va(this,a)},text:function(a){return K(this,function(a){return void 0===a?n.text(this):this.empty().each(function(){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||(this.textContent=a)})},null,a,arguments.length)},append:function(){return ua(this,arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=pa(this,a);b.appendChild(a)}})},prepend:function(){return ua(this,arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=pa(this,a);b.insertBefore(a,b.firstChild)}})},before:function(){return ua(this,arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this)})},after:function(){return ua(this,arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this.nextSibling)})},empty:function(){for(var a,b=0;null!=(a=this[b]);b++)1===a.nodeType&&(n.cleanData(_(a,!1)),a.textContent="");return this},clone:function(a,b){return a=null==a?!1:a,b=null==b?a:b,this.map(function(){return n.clone(this,a,b)})},html:function(a){return K(this,function(a){var b=this[0]||{},c=0,d=this.length;if(void 0===a&&1===b.nodeType)return b.innerHTML;if("string"==typeof a&&!la.test(a)&&!$[(Y.exec(a)||["",""])[1].toLowerCase()]){a=n.htmlPrefilter(a);try{for(;d>c;c++)b=this[c]||{},1===b.nodeType&&(n.cleanData(_(b,!1)),b.innerHTML=a);b=0}catch(e){}}b&&this.empty().append(a)},null,a,arguments.length)},replaceWith:function(){var a=[];return ua(this,arguments,function(b){var c=this.parentNode;n.inArray(this,a)<0&&(n.cleanData(_(this)),c&&c.replaceChild(b,this))},a)}}),n.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){n.fn[a]=function(a){for(var c,d=[],e=n(a),f=e.length-1,h=0;f>=h;h++)c=h===f?this:this.clone(!0),n(e[h])[b](c),g.apply(d,c.get());return this.pushStack(d)}});var wa,xa={HTML:"block",BODY:"block"};function ya(a,b){var c=n(b.createElement(a)).appendTo(b.body),d=n.css(c[0],"display");return c.detach(),d}function za(a){var b=d,c=xa[a];return c||(c=ya(a,b),"none"!==c&&c||(wa=(wa||n("<iframe frameborder='0' width='0' height='0'/>")).appendTo(b.documentElement),b=wa[0].contentDocument,b.write(),b.close(),c=ya(a,b),wa.detach()),xa[a]=c),c}var Aa=/^margin/,Ba=new RegExp("^("+S+")(?!px)[a-z%]+$","i"),Ca=function(b){var c=b.ownerDocument.defaultView;return c&&c.opener||(c=a),c.getComputedStyle(b)},Da=function(a,b,c,d){var e,f,g={};for(f in b)g[f]=a.style[f],a.style[f]=b[f];e=c.apply(a,d||[]);for(f in b)a.style[f]=g[f];return e},Ea=d.documentElement;!function(){var b,c,e,f,g=d.createElement("div"),h=d.createElement("div");if(h.style){h.style.backgroundClip="content-box",h.cloneNode(!0).style.backgroundClip="",l.clearCloneStyle="content-box"===h.style.backgroundClip,g.style.cssText="border:0;width:8px;height:0;top:0;left:-9999px;padding:0;margin-top:1px;position:absolute",g.appendChild(h);function i(){h.style.cssText="-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;position:relative;display:block;margin:auto;border:1px;padding:1px;top:1%;width:50%",h.innerHTML="",Ea.appendChild(g);var d=a.getComputedStyle(h);b="1%"!==d.top,f="2px"===d.marginLeft,c="4px"===d.width,h.style.marginRight="50%",e="4px"===d.marginRight,Ea.removeChild(g)}n.extend(l,{pixelPosition:function(){return i(),b},boxSizingReliable:function(){return null==c&&i(),c},pixelMarginRight:function(){return null==c&&i(),e},reliableMarginLeft:function(){return null==c&&i(),f},reliableMarginRight:function(){var b,c=h.appendChild(d.createElement("div"));return c.style.cssText=h.style.cssText="-webkit-box-sizing:content-box;box-sizing:content-box;display:block;margin:0;border:0;padding:0",c.style.marginRight=c.style.width="0",h.style.width="1px",Ea.appendChild(g),b=!parseFloat(a.getComputedStyle(c).marginRight),Ea.removeChild(g),h.removeChild(c),b}})}}();function Fa(a,b,c){var d,e,f,g,h=a.style;return c=c||Ca(a),g=c?c.getPropertyValue(b)||c[b]:void 0,""!==g&&void 0!==g||n.contains(a.ownerDocument,a)||(g=n.style(a,b)),c&&!l.pixelMarginRight()&&Ba.test(g)&&Aa.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}function Ga(a,b){return{get:function(){return a()?void delete this.get:(this.get=b).apply(this,arguments)}}}var Ha=/^(none|table(?!-c[ea]).+)/,Ia={position:"absolute",visibility:"hidden",display:"block"},Ja={letterSpacing:"0",fontWeight:"400"},Ka=["Webkit","O","Moz","ms"],La=d.createElement("div").style;function Ma(a){if(a in La)return a;var b=a[0].toUpperCase()+a.slice(1),c=Ka.length;while(c--)if(a=Ka[c]+b,a in La)return a}function Na(a,b,c){var d=T.exec(b);return d?Math.max(0,d[2]-(c||0))+(d[3]||"px"):b}function Oa(a,b,c,d,e){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)));return g}function Pa(b,c,e){var f=!0,g="width"===c?b.offsetWidth:b.offsetHeight,h=Ca(b),i="border-box"===n.css(b,"boxSizing",!1,h);if(d.msFullscreenElement&&a.top!==a&&b.getClientRects().length&&(g=Math.round(100*b.getBoundingClientRect()[c])),0>=g||null==g){if(g=Fa(b,c,h),(0>g||null==g)&&(g=b.style[c]),Ba.test(g))return g;f=i&&(l.boxSizingReliable()||g===b.style[c]),g=parseFloat(g)||0}return g+Oa(b,c,e||(i?"border":"content"),f,h)+"px"}function Qa(a,b){for(var c,d,e,f=[],g=0,h=a.length;h>g;g++)d=a[g],d.style&&(f[g]=N.get(d,"olddisplay"),c=d.style.display,b?(f[g]||"none"!==c||(d.style.display=""),""===d.style.display&&V(d)&&(f[g]=N.access(d,"olddisplay",za(d.nodeName)))):(e=V(d),"none"===c&&e||N.set(d,"olddisplay",e?c:n.css(d,"display"))));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"));return a}n.extend({cssHooks:{opacity:{get:function(a,b){if(b){var c=Fa(a,"opacity");return""===c?"1":c}}}},cssNumber:{animationIterationCount:!0,columnCount:!0,fillOpacity:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":"cssFloat"},style:function(a,b,c,d){if(a&&3!==a.nodeType&&8!==a.nodeType&&a.style){var e,f,g,h=n.camelCase(b),i=a.style;return b=n.cssProps[h]||(n.cssProps[h]=Ma(h)||h),g=n.cssHooks[b]||n.cssHooks[h],void 0===c?g&&"get"in g&&void 0!==(e=g.get(a,!1,d))?e:i[b]:(f=typeof c,"string"===f&&(e=T.exec(c))&&e[1]&&(c=W(a,b,e),f="number"),null!=c&&c===c&&("number"===f&&(c+=e&&e[3]||(n.cssNumber[h]?"":"px")),l.clearCloneStyle||""!==c||0!==b.indexOf("background")||(i[b]="inherit"),g&&"set"in g&&void 0===(c=g.set(a,c,d))||(i[b]=c)),void 0)}},css:function(a,b,c,d){var e,f,g,h=n.camelCase(b);return b=n.cssProps[h]||(n.cssProps[h]=Ma(h)||h),g=n.cssHooks[b]||n.cssHooks[h],g&&"get"in g&&(e=g.get(a,!0,c)),void 0===e&&(e=Fa(a,b,d)),"normal"===e&&b in Ja&&(e=Ja[b]),""===c||c?(f=parseFloat(e),c===!0||isFinite(f)?f||0:e):e}}),n.each(["height","width"],function(a,b){n.cssHooks[b]={get:function(a,c,d){return c?Ha.test(n.css(a,"display"))&&0===a.offsetWidth?Da(a,Ia,function(){return Pa(a,b,d)}):Pa(a,b,d):void 0},set:function(a,c,d){var e,f=d&&Ca(a),g=d&&Oa(a,b,d,"border-box"===n.css(a,"boxSizing",!1,f),f);return g&&(e=T.exec(c))&&"px"!==(e[3]||"px")&&(a.style[b]=c,c=n.css(a,b)),Na(a,c,g)}}}),n.cssHooks.marginLeft=Ga(l.reliableMarginLeft,function(a,b){return b?(parseFloat(Fa(a,"marginLeft"))||a.getBoundingClientRect().left-Da(a,{marginLeft:0},function(){return a.getBoundingClientRect().left}))+"px":void 0}),n.cssHooks.marginRight=Ga(l.reliableMarginRight,function(a,b){return b?Da(a,{display:"inline-block"},Fa,[a,"marginRight"]):void 0}),n.each({margin:"",padding:"",border:"Width"},function(a,b){n.cssHooks[a+b]={expand:function(c){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];return e}},Aa.test(a)||(n.cssHooks[a+b].set=Na)}),n.fn.extend({css:function(a,b){return K(this,function(a,b,c){var d,e,f={},g=0;if(n.isArray(b)){for(d=Ca(a),e=b.length;e>g;g++)f[b[g]]=n.css(a,b[g],!1,d);return f}return void 0!==c?n.style(a,b,c):n.css(a,b)},a,b,arguments.length>1)},show:function(){return Qa(this,!0)},hide:function(){return Qa(this)},toggle:function(a){return"boolean"==typeof a?a?this.show():this.hide():this.each(function(){V(this)?n(this).show():n(this).hide()})}});function Ra(a,b,c,d,e){return new Ra.prototype.init(a,b,c,d,e)}n.Tween=Ra,Ra.prototype={constructor:Ra,init:function(a,b,c,d,e,f){this.elem=a,this.prop=c,this.easing=e||n.easing._default,this.options=b,this.start=this.now=this.cur(),this.end=d,this.unit=f||(n.cssNumber[c]?"":"px")},cur:function(){var a=Ra.propHooks[this.prop];return a&&a.get?a.get(this):Ra.propHooks._default.get(this)},run:function(a){var b,c=Ra.propHooks[this.prop];return this.options.duration?this.pos=b=n.easing[this.easing](a,this.options.duration*a,0,1,this.options.duration):this.pos=b=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):Ra.propHooks._default.set(this),this}},Ra.prototype.init.prototype=Ra.prototype,Ra.propHooks={_default:{get:function(a){var b;return 1!==a.elem.nodeType||null!=a.elem[a.prop]&&null==a.elem.style[a.prop]?a.elem[a.prop]:(b=n.css(a.elem,a.prop,""),b&&"auto"!==b?b:0)},set:function(a){n.fx.step[a.prop]?n.fx.step[a.prop](a):1!==a.elem.nodeType||null==a.elem.style[n.cssProps[a.prop]]&&!n.cssHooks[a.prop]?a.elem[a.prop]=a.now:n.style(a.elem,a.prop,a.now+a.unit)}}},Ra.propHooks.scrollTop=Ra.propHooks.scrollLeft={set:function(a){a.elem.nodeType&&a.elem.parentNode&&(a.elem[a.prop]=a.now)}},n.easing={linear:function(a){return a},swing:function(a){return.5-Math.cos(a*Math.PI)/2},_default:"swing"},n.fx=Ra.prototype.init,n.fx.step={};var Sa,Ta,Ua=/^(?:toggle|show|hide)$/,Va=/queueHooks$/;function Wa(){return a.setTimeout(function(){Sa=void 0}),Sa=n.now()}function Xa(a,b){var c,d=0,e={height:a};for(b=b?1:0;4>d;d+=2-b)c=U[d],e["margin"+c]=e["padding"+c]=a;return b&&(e.opacity=e.width=a),e}function Ya(a,b,c){for(var d,e=(_a.tweeners[b]||[]).concat(_a.tweeners["*"]),f=0,g=e.length;g>f;f++)if(d=e[f].call(c,b,a))return d}function Za(a,b,c){var d,e,f,g,h,i,j,k,l=this,m={},o=a.style,p=a.nodeType&&V(a),q=N.get(a,"fxshow");c.queue||(h=n._queueHooks(a,"fx"),null==h.unqueued&&(h.unqueued=0,i=h.empty.fire,h.empty.fire=function(){h.unqueued||i()}),h.unqueued++,l.always(function(){l.always(function(){h.unqueued--,n.queue(a,"fx").length||h.empty.fire()})})),1===a.nodeType&&("height"in b||"width"in b)&&(c.overflow=[o.overflow,o.overflowX,o.overflowY],j=n.css(a,"display"),k="none"===j?N.get(a,"olddisplay")||za(a.nodeName):j,"inline"===k&&"none"===n.css(a,"float")&&(o.display="inline-block")),c.overflow&&(o.overflow="hidden",l.always(function(){o.overflow=c.overflow[0],o.overflowX=c.overflow[1],o.overflowY=c.overflow[2]}));for(d in b)if(e=b[d],Ua.exec(e)){if(delete b[d],f=f||"toggle"===e,e===(p?"hide":"show")){if("show"!==e||!q||void 0===q[d])continue;p=!0}m[d]=q&&q[d]||n.style(a,d)}else j=void 0;if(n.isEmptyObject(m))"inline"===("none"===j?za(a.nodeName):j)&&(o.display=j);else{q?"hidden"in q&&(p=q.hidden):q=N.access(a,"fxshow",{}),f&&(q.hidden=!p),p?n(a).show():l.done(function(){n(a).hide()}),l.done(function(){var b;N.remove(a,"fxshow");for(b in m)n.style(a,b,m[b])});for(d in m)g=Ya(p?q[d]:0,d,l),d in q||(q[d]=g.start,p&&(g.end=g.start,g.start="width"===d||"height"===d?1:0))}}function $a(a,b){var c,d,e,f,g;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){f=g.expand(f),delete a[d];for(c in f)c in a||(a[c]=f[c],b[c]=e)}else b[d]=e}function _a(a,b,c){var d,e,f=0,g=_a.prefilters.length,h=n.Deferred().always(function(){delete i.elem}),i=function(){if(e)return!1;for(var b=Sa||Wa(),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);return h.notifyWith(a,[j,f,c]),1>f&&i?c:(h.resolveWith(a,[j]),!1)},j=h.promise({elem:a,props:n.extend({},b),opts:n.extend(!0,{specialEasing:{},easing:n.easing._default},c),originalProperties:b,originalOptions:c,startTime:Sa||Wa(),duration:c.duration,tweens:[],createTween:function(b,c){var d=n.Tween(a,j.opts,b,c,j.opts.specialEasing[b]||j.opts.easing);return j.tweens.push(d),d},stop:function(b){var c=0,d=b?j.tweens.length:0;if(e)return this;for(e=!0;d>c;c++)j.tweens[c].run(1);return b?(h.notifyWith(a,[j,1,0]),h.resolveWith(a,[j,b])):h.rejectWith(a,[j,b]),this}}),k=j.props;for($a(k,j.opts.specialEasing);g>f;f++)if(d=_a.prefilters[f].call(j,a,k,j.opts))return n.isFunction(d.stop)&&(n._queueHooks(j.elem,j.opts.queue).stop=n.proxy(d.stop,d)),d;return n.map(k,Ya,j),n.isFunction(j.opts.start)&&j.opts.start.call(a,j),n.fx.timer(n.extend(i,{elem:a,anim:j,queue:j.opts.queue})),j.progress(j.opts.progress).done(j.opts.done,j.opts.complete).fail(j.opts.fail).always(j.opts.always)}n.Animation=n.extend(_a,{tweeners:{"*":[function(a,b){var c=this.createTween(a,b);return W(c.elem,a,T.exec(b),c),c}]},tweener:function(a,b){n.isFunction(a)?(b=a,a=["*"]):a=a.match(G);for(var c,d=0,e=a.length;e>d;d++)c=a[d],_a.tweeners[c]=_a.tweeners[c]||[],_a.tweeners[c].unshift(b)},prefilters:[Za],prefilter:function(a,b){b?_a.prefilters.unshift(a):_a.prefilters.push(a)}}),n.speed=function(a,b,c){var d=a&&"object"==typeof a?n.extend({},a):{complete:c||!c&&b||n.isFunction(a)&&a,duration:a,easing:c&&b||b&&!n.isFunction(b)&&b};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(){n.isFunction(d.old)&&d.old.call(this),d.queue&&n.dequeue(this,d.queue)},d},n.fn.extend({fadeTo:function(a,b,c,d){return this.filter(V).css("opacity",0).show().end().animate({opacity:b},a,c,d)},animate:function(a,b,c,d){var e=n.isEmptyObject(a),f=n.speed(b,c,d),g=function(){var b=_a(this,n.extend({},a),f);(e||N.get(this,"finish"))&&b.stop(!0)};return g.finish=g,e||f.queue===!1?this.each(g):this.queue(f.queue,g)},stop:function(a,b,c){var d=function(a){var b=a.stop;delete a.stop,b(c)};return"string"!=typeof a&&(c=b,b=a,a=void 0),b&&a!==!1&&this.queue(a||"fx",[]),this.each(function(){var b=!0,e=null!=a&&a+"queueHooks",f=n.timers,g=N.get(this);if(e)g[e]&&g[e].stop&&d(g[e]);else for(e in g)g[e]&&g[e].stop&&Va.test(e)&&d(g[e]);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));!b&&c||n.dequeue(this,a)})},finish:function(a){return a!==!1&&(a=a||"fx"),this.each(function(){var b,c=N.get(this),d=c[a+"queue"],e=c[a+"queueHooks"],f=n.timers,g=d?d.length:0;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));for(b=0;g>b;b++)d[b]&&d[b].finish&&d[b].finish.call(this);delete c.finish})}}),n.each(["toggle","show","hide"],function(a,b){var c=n.fn[b];n.fn[b]=function(a,d,e){return null==a||"boolean"==typeof a?c.apply(this,arguments):this.animate(Xa(b,!0),a,d,e)}}),n.each({slideDown:Xa("show"),slideUp:Xa("hide"),slideToggle:Xa("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(a,b){n.fn[a]=function(a,c,d){return this.animate(b,a,c,d)}}),n.timers=[],n.fx.tick=function(){var a,b=0,c=n.timers;for(Sa=n.now();b<c.length;b++)a=c[b],a()||c[b]!==a||c.splice(b--,1);c.length||n.fx.stop(),Sa=void 0},n.fx.timer=function(a){n.timers.push(a),a()?n.fx.start():n.timers.pop()},n.fx.interval=13,n.fx.start=function(){Ta||(Ta=a.setInterval(n.fx.tick,n.fx.interval))},n.fx.stop=function(){a.clearInterval(Ta),Ta=null},n.fx.speeds={slow:600,fast:200,_default:400},n.fn.delay=function(b,c){return b=n.fx?n.fx.speeds[b]||b:b,c=c||"fx",this.queue(c,function(c,d){var e=a.setTimeout(c,b);d.stop=function(){a.clearTimeout(e)}})},function(){var a=d.createElement("input"),b=d.createElement("select"),c=b.appendChild(d.createElement("option"));a.type="checkbox",l.checkOn=""!==a.value,l.optSelected=c.selected,b.disabled=!0,l.optDisabled=!c.disabled,a=d.createElement("input"),a.value="t",a.type="radio",l.radioValue="t"===a.value}();var ab,bb=n.expr.attrHandle;n.fn.extend({attr:function(a,b){return K(this,n.attr,a,b,arguments.length>1)},removeAttr:function(a){return this.each(function(){n.removeAttr(this,a)})}}),n.extend({attr:function(a,b,c){var d,e,f=a.nodeType;if(3!==f&&8!==f&&2!==f)return"undefined"==typeof a.getAttribute?n.prop(a,b,c):(1===f&&n.isXMLDoc(a)||(b=b.toLowerCase(),e=n.attrHooks[b]||(n.expr.match.bool.test(b)?ab:void 0)),void 0!==c?null===c?void n.removeAttr(a,b):e&&"set"in e&&void 0!==(d=e.set(a,c,b))?d:(a.setAttribute(b,c+""),c):e&&"get"in e&&null!==(d=e.get(a,b))?d:(d=n.find.attr(a,b),null==d?void 0:d))},attrHooks:{type:{set:function(a,b){if(!l.radioValue&&"radio"===b&&n.nodeName(a,"input")){var c=a.value;return a.setAttribute("type",b),c&&(a.value=c),b}}}},removeAttr:function(a,b){var c,d,e=0,f=b&&b.match(G);if(f&&1===a.nodeType)while(c=f[e++])d=n.propFix[c]||c,n.expr.match.bool.test(c)&&(a[d]=!1),a.removeAttribute(c)}}),ab={set:function(a,b,c){return b===!1?n.removeAttr(a,c):a.setAttribute(c,c),c}},n.each(n.expr.match.bool.source.match(/\w+/g),function(a,b){var c=bb[b]||n.find.attr;bb[b]=function(a,b,d){var e,f;return d||(f=bb[b],bb[b]=e,e=null!=c(a,b,d)?b.toLowerCase():null,bb[b]=f),e}});var cb=/^(?:input|select|textarea|button)$/i,db=/^(?:a|area)$/i;n.fn.extend({prop:function(a,b){return K(this,n.prop,a,b,arguments.length>1)},removeProp:function(a){return this.each(function(){delete this[n.propFix[a]||a]})}}),n.extend({prop:function(a,b,c){var d,e,f=a.nodeType;if(3!==f&&8!==f&&2!==f)return 1===f&&n.isXMLDoc(a)||(b=n.propFix[b]||b,
4
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]},propHooks:{tabIndex:{get:function(a){var b=n.find.attr(a,"tabindex");return b?parseInt(b,10):cb.test(a.nodeName)||db.test(a.nodeName)&&a.href?0:-1}}},propFix:{"for":"htmlFor","class":"className"}}),l.optSelected||(n.propHooks.selected={get:function(a){var b=a.parentNode;return b&&b.parentNode&&b.parentNode.selectedIndex,null},set:function(a){var b=a.parentNode;b&&(b.selectedIndex,b.parentNode&&b.parentNode.selectedIndex)}}),n.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){n.propFix[this.toLowerCase()]=this});var eb=/[\t\r\n\f]/g;function fb(a){return a.getAttribute&&a.getAttribute("class")||""}n.fn.extend({addClass:function(a){var b,c,d,e,f,g,h,i=0;if(n.isFunction(a))return this.each(function(b){n(this).addClass(a.call(this,b,fb(this)))});if("string"==typeof a&&a){b=a.match(G)||[];while(c=this[i++])if(e=fb(c),d=1===c.nodeType&&(" "+e+" ").replace(eb," ")){g=0;while(f=b[g++])d.indexOf(" "+f+" ")<0&&(d+=f+" ");h=n.trim(d),e!==h&&c.setAttribute("class",h)}}return this},removeClass:function(a){var b,c,d,e,f,g,h,i=0;if(n.isFunction(a))return this.each(function(b){n(this).removeClass(a.call(this,b,fb(this)))});if(!arguments.length)return this.attr("class","");if("string"==typeof a&&a){b=a.match(G)||[];while(c=this[i++])if(e=fb(c),d=1===c.nodeType&&(" "+e+" ").replace(eb," ")){g=0;while(f=b[g++])while(d.indexOf(" "+f+" ")>-1)d=d.replace(" "+f+" "," ");h=n.trim(d),e!==h&&c.setAttribute("class",h)}}return this},toggleClass:function(a,b){var c=typeof a;return"boolean"==typeof b&&"string"===c?b?this.addClass(a):this.removeClass(a):n.isFunction(a)?this.each(function(c){n(this).toggleClass(a.call(this,c,fb(this),b),b)}):this.each(function(){var b,d,e,f;if("string"===c){d=0,e=n(this),f=a.match(G)||[];while(b=f[d++])e.hasClass(b)?e.removeClass(b):e.addClass(b)}else void 0!==a&&"boolean"!==c||(b=fb(this),b&&N.set(this,"__className__",b),this.setAttribute&&this.setAttribute("class",b||a===!1?"":N.get(this,"__className__")||""))})},hasClass:function(a){var b,c,d=0;b=" "+a+" ";while(c=this[d++])if(1===c.nodeType&&(" "+fb(c)+" ").replace(eb," ").indexOf(b)>-1)return!0;return!1}});var gb=/\r/g,hb=/[\x20\t\r\n\f]+/g;n.fn.extend({val:function(a){var b,c,d,e=this[0];{if(arguments.length)return d=n.isFunction(a),this.each(function(c){var e;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){return null==a?"":a+""})),b=n.valHooks[this.type]||n.valHooks[this.nodeName.toLowerCase()],b&&"set"in b&&void 0!==b.set(this,e,"value")||(this.value=e))});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(gb,""):null==c?"":c)}}}),n.extend({valHooks:{option:{get:function(a){var b=n.find.attr(a,"value");return null!=b?b:n.trim(n.text(a)).replace(hb," ")}},select:{get:function(a){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"))){if(b=n(c).val(),f)return b;g.push(b)}return g},set:function(a,b){var c,d,e=a.options,f=n.makeArray(b),g=e.length;while(g--)d=e[g],(d.selected=n.inArray(n.valHooks.option.get(d),f)>-1)&&(c=!0);return c||(a.selectedIndex=-1),f}}}}),n.each(["radio","checkbox"],function(){n.valHooks[this]={set:function(a,b){return n.isArray(b)?a.checked=n.inArray(n(a).val(),b)>-1:void 0}},l.checkOn||(n.valHooks[this].get=function(a){return null===a.getAttribute("value")?"on":a.value})});var ib=/^(?:focusinfocus|focusoutblur)$/;n.extend(n.event,{trigger:function(b,c,e,f){var g,h,i,j,l,m,o,p=[e||d],q=k.call(b,"type")?b.type:b,r=k.call(b,"namespace")?b.namespace.split("."):[];if(h=i=e=e||d,3!==e.nodeType&&8!==e.nodeType&&!ib.test(q+n.event.triggered)&&(q.indexOf(".")>-1&&(r=q.split("."),q=r.shift(),r.sort()),l=q.indexOf(":")<0&&"on"+q,b=b[n.expando]?b:new n.Event(q,"object"==typeof b&&b),b.isTrigger=f?2:3,b.namespace=r.join("."),b.rnamespace=b.namespace?new RegExp("(^|\\.)"+r.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,b.result=void 0,b.target||(b.target=e),c=null==c?[b]:n.makeArray(c,[b]),o=n.event.special[q]||{},f||!o.trigger||o.trigger.apply(e,c)!==!1)){if(!f&&!o.noBubble&&!n.isWindow(e)){for(j=o.delegateType||q,ib.test(j+q)||(h=h.parentNode);h;h=h.parentNode)p.push(h),i=h;i===(e.ownerDocument||d)&&p.push(i.defaultView||i.parentWindow||a)}g=0;while((h=p[g++])&&!b.isPropagationStopped())b.type=g>1?j:o.bindType||q,m=(N.get(h,"events")||{})[b.type]&&N.get(h,"handle"),m&&m.apply(h,c),m=l&&h[l],m&&m.apply&&L(h)&&(b.result=m.apply(h,c),b.result===!1&&b.preventDefault());return b.type=q,f||b.isDefaultPrevented()||o._default&&o._default.apply(p.pop(),c)!==!1||!L(e)||l&&n.isFunction(e[q])&&!n.isWindow(e)&&(i=e[l],i&&(e[l]=null),n.event.triggered=q,e[q](),n.event.triggered=void 0,i&&(e[l]=i)),b.result}},simulate:function(a,b,c){var d=n.extend(new n.Event,c,{type:a,isSimulated:!0});n.event.trigger(d,null,b),d.isDefaultPrevented()&&c.preventDefault()}}),n.fn.extend({trigger:function(a,b){return this.each(function(){n.event.trigger(a,b,this)})},triggerHandler:function(a,b){var c=this[0];return c?n.event.trigger(a,b,c,!0):void 0}}),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){n.fn[b]=function(a,c){return arguments.length>0?this.on(b,null,a,c):this.trigger(b)}}),n.fn.extend({hover:function(a,b){return this.mouseenter(a).mouseleave(b||a)}}),l.focusin="onfocusin"in a,l.focusin||n.each({focus:"focusin",blur:"focusout"},function(a,b){var c=function(a){n.event.simulate(b,a.target,n.event.fix(a))};n.event.special[b]={setup:function(){var d=this.ownerDocument||this,e=N.access(d,b);e||d.addEventListener(a,c,!0),N.access(d,b,(e||0)+1)},teardown:function(){var d=this.ownerDocument||this,e=N.access(d,b)-1;e?N.access(d,b,e):(d.removeEventListener(a,c,!0),N.remove(d,b))}}});var jb=a.location,kb=n.now(),lb=/\?/;n.parseJSON=function(a){return JSON.parse(a+"")},n.parseXML=function(b){var c;if(!b||"string"!=typeof b)return null;try{c=(new a.DOMParser).parseFromString(b,"text/xml")}catch(d){c=void 0}return c&&!c.getElementsByTagName("parsererror").length||n.error("Invalid XML: "+b),c};var mb=/#.*$/,nb=/([?&])_=[^&]*/,ob=/^(.*?):[ \t]*([^\r\n]*)$/gm,pb=/^(?:about|app|app-storage|.+-extension|file|res|widget):$/,qb=/^(?:GET|HEAD)$/,rb=/^\/\//,sb={},tb={},ub="*/".concat("*"),vb=d.createElement("a");vb.href=jb.href;function wb(a){return function(b,c){"string"!=typeof b&&(c=b,b="*");var d,e=0,f=b.toLowerCase().match(G)||[];if(n.isFunction(c))while(d=f[e++])"+"===d[0]?(d=d.slice(1)||"*",(a[d]=a[d]||[]).unshift(c)):(a[d]=a[d]||[]).push(c)}}function xb(a,b,c,d){var e={},f=a===tb;function g(h){var i;return e[h]=!0,n.each(a[h]||[],function(a,h){var j=h(b,c,d);return"string"!=typeof j||f||e[j]?f?!(i=j):void 0:(b.dataTypes.unshift(j),g(j),!1)}),i}return g(b.dataTypes[0])||!e["*"]&&g("*")}function yb(a,b){var c,d,e=n.ajaxSettings.flatOptions||{};for(c in b)void 0!==b[c]&&((e[c]?a:d||(d={}))[c]=b[c]);return d&&n.extend(!0,a,d),a}function zb(a,b,c){var d,e,f,g,h=a.contents,i=a.dataTypes;while("*"===i[0])i.shift(),void 0===d&&(d=a.mimeType||b.getResponseHeader("Content-Type"));if(d)for(e in h)if(h[e]&&h[e].test(d)){i.unshift(e);break}if(i[0]in c)f=i[0];else{for(e in c){if(!i[0]||a.converters[e+" "+i[0]]){f=e;break}g||(g=e)}f=f||g}return f?(f!==i[0]&&i.unshift(f),c[f]):void 0}function Ab(a,b,c,d){var e,f,g,h,i,j={},k=a.dataTypes.slice();if(k[1])for(g in a.converters)j[g.toLowerCase()]=a.converters[g];f=k.shift();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;else if("*"!==i&&i!==f){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]])){g===!0?g=j[e]:j[e]!==!0&&(f=h[0],k.unshift(h[1]));break}if(g!==!0)if(g&&a["throws"])b=g(b);else try{b=g(b)}catch(l){return{state:"parsererror",error:g?l:"No conversion from "+i+" to "+f}}}return{state:"success",data:b}}n.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:jb.href,type:"GET",isLocal:pb.test(jb.protocol),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":ub,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/\bxml\b/,html:/\bhtml/,json:/\bjson\b/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":n.parseJSON,"text xml":n.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(a,b){return b?yb(yb(a,n.ajaxSettings),b):yb(n.ajaxSettings,a)},ajaxPrefilter:wb(sb),ajaxTransport:wb(tb),ajax:function(b,c){"object"==typeof b&&(c=b,b=void 0),c=c||{};var e,f,g,h,i,j,k,l,m=n.ajaxSetup({},c),o=m.context||m,p=m.context&&(o.nodeType||o.jquery)?n(o):n.event,q=n.Deferred(),r=n.Callbacks("once memory"),s=m.statusCode||{},t={},u={},v=0,w="canceled",x={readyState:0,getResponseHeader:function(a){var b;if(2===v){if(!h){h={};while(b=ob.exec(g))h[b[1].toLowerCase()]=b[2]}b=h[a.toLowerCase()]}return null==b?null:b},getAllResponseHeaders:function(){return 2===v?g:null},setRequestHeader:function(a,b){var c=a.toLowerCase();return v||(a=u[c]=u[c]||a,t[a]=b),this},overrideMimeType:function(a){return v||(m.mimeType=a),this},statusCode:function(a){var b;if(a)if(2>v)for(b in a)s[b]=[s[b],a[b]];else x.always(a[x.status]);return this},abort:function(a){var b=a||w;return e&&e.abort(b),z(0,b),this}};if(q.promise(x).complete=r.add,x.success=x.done,x.error=x.fail,m.url=((b||m.url||jb.href)+"").replace(mb,"").replace(rb,jb.protocol+"//"),m.type=c.method||c.type||m.method||m.type,m.dataTypes=n.trim(m.dataType||"*").toLowerCase().match(G)||[""],null==m.crossDomain){j=d.createElement("a");try{j.href=m.url,j.href=j.href,m.crossDomain=vb.protocol+"//"+vb.host!=j.protocol+"//"+j.host}catch(y){m.crossDomain=!0}}if(m.data&&m.processData&&"string"!=typeof m.data&&(m.data=n.param(m.data,m.traditional)),xb(sb,m,c,x),2===v)return x;k=n.event&&m.global,k&&0===n.active++&&n.event.trigger("ajaxStart"),m.type=m.type.toUpperCase(),m.hasContent=!qb.test(m.type),f=m.url,m.hasContent||(m.data&&(f=m.url+=(lb.test(f)?"&":"?")+m.data,delete m.data),m.cache===!1&&(m.url=nb.test(f)?f.replace(nb,"$1_="+kb++):f+(lb.test(f)?"&":"?")+"_="+kb++)),m.ifModified&&(n.lastModified[f]&&x.setRequestHeader("If-Modified-Since",n.lastModified[f]),n.etag[f]&&x.setRequestHeader("If-None-Match",n.etag[f])),(m.data&&m.hasContent&&m.contentType!==!1||c.contentType)&&x.setRequestHeader("Content-Type",m.contentType),x.setRequestHeader("Accept",m.dataTypes[0]&&m.accepts[m.dataTypes[0]]?m.accepts[m.dataTypes[0]]+("*"!==m.dataTypes[0]?", "+ub+"; q=0.01":""):m.accepts["*"]);for(l in m.headers)x.setRequestHeader(l,m.headers[l]);if(m.beforeSend&&(m.beforeSend.call(o,x,m)===!1||2===v))return x.abort();w="abort";for(l in{success:1,error:1,complete:1})x[l](m[l]);if(e=xb(tb,m,c,x)){if(x.readyState=1,k&&p.trigger("ajaxSend",[x,m]),2===v)return x;m.async&&m.timeout>0&&(i=a.setTimeout(function(){x.abort("timeout")},m.timeout));try{v=1,e.send(t,z)}catch(y){if(!(2>v))throw y;z(-1,y)}}else z(-1,"No Transport");function z(b,c,d,h){var j,l,t,u,w,y=c;2!==v&&(v=2,i&&a.clearTimeout(i),e=void 0,g=h||"",x.readyState=b>0?4:0,j=b>=200&&300>b||304===b,d&&(u=zb(m,x,d)),u=Ab(m,u,x,j),j?(m.ifModified&&(w=x.getResponseHeader("Last-Modified"),w&&(n.lastModified[f]=w),w=x.getResponseHeader("etag"),w&&(n.etag[f]=w)),204===b||"HEAD"===m.type?y="nocontent":304===b?y="notmodified":(y=u.state,l=u.data,t=u.error,j=!t)):(t=y,!b&&y||(y="error",0>b&&(b=0))),x.status=b,x.statusText=(c||y)+"",j?q.resolveWith(o,[l,y,x]):q.rejectWith(o,[x,y,t]),x.statusCode(s),s=void 0,k&&p.trigger(j?"ajaxSuccess":"ajaxError",[x,m,j?l:t]),r.fireWith(o,[x,y]),k&&(p.trigger("ajaxComplete",[x,m]),--n.active||n.event.trigger("ajaxStop")))}return x},getJSON:function(a,b,c){return n.get(a,b,c,"json")},getScript:function(a,b){return n.get(a,void 0,b,"script")}}),n.each(["get","post"],function(a,b){n[b]=function(a,c,d,e){return n.isFunction(c)&&(e=e||d,d=c,c=void 0),n.ajax(n.extend({url:a,type:b,dataType:e,data:c,success:d},n.isPlainObject(a)&&a))}}),n._evalUrl=function(a){return n.ajax({url:a,type:"GET",dataType:"script",async:!1,global:!1,"throws":!0})},n.fn.extend({wrapAll:function(a){var b;return n.isFunction(a)?this.each(function(b){n(this).wrapAll(a.call(this,b))}):(this[0]&&(b=n(a,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstElementChild)a=a.firstElementChild;return a}).append(this)),this)},wrapInner:function(a){return n.isFunction(a)?this.each(function(b){n(this).wrapInner(a.call(this,b))}):this.each(function(){var b=n(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){var b=n.isFunction(a);return this.each(function(c){n(this).wrapAll(b?a.call(this,c):a)})},unwrap:function(){return this.parent().each(function(){n.nodeName(this,"body")||n(this).replaceWith(this.childNodes)}).end()}}),n.expr.filters.hidden=function(a){return!n.expr.filters.visible(a)},n.expr.filters.visible=function(a){return a.offsetWidth>0||a.offsetHeight>0||a.getClientRects().length>0};var Bb=/%20/g,Cb=/\[\]$/,Db=/\r?\n/g,Eb=/^(?:submit|button|image|reset|file)$/i,Fb=/^(?:input|select|textarea|keygen)/i;function Gb(a,b,c,d){var e;if(n.isArray(b))n.each(b,function(b,e){c||Cb.test(a)?d(a,e):Gb(a+"["+("object"==typeof e&&null!=e?b:"")+"]",e,c,d)});else if(c||"object"!==n.type(b))d(a,b);else for(e in b)Gb(a+"["+e+"]",b[e],c,d)}n.param=function(a,b){var c,d=[],e=function(a,b){b=n.isFunction(b)?b():null==b?"":b,d[d.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};if(void 0===b&&(b=n.ajaxSettings&&n.ajaxSettings.traditional),n.isArray(a)||a.jquery&&!n.isPlainObject(a))n.each(a,function(){e(this.name,this.value)});else for(c in a)Gb(c,a[c],b,e);return d.join("&").replace(Bb,"+")},n.fn.extend({serialize:function(){return n.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var a=n.prop(this,"elements");return a?n.makeArray(a):this}).filter(function(){var a=this.type;return this.name&&!n(this).is(":disabled")&&Fb.test(this.nodeName)&&!Eb.test(a)&&(this.checked||!X.test(a))}).map(function(a,b){var c=n(this).val();return null==c?null:n.isArray(c)?n.map(c,function(a){return{name:b.name,value:a.replace(Db,"\r\n")}}):{name:b.name,value:c.replace(Db,"\r\n")}}).get()}}),n.ajaxSettings.xhr=function(){try{return new a.XMLHttpRequest}catch(b){}};var Hb={0:200,1223:204},Ib=n.ajaxSettings.xhr();l.cors=!!Ib&&"withCredentials"in Ib,l.ajax=Ib=!!Ib,n.ajaxTransport(function(b){var c,d;return l.cors||Ib&&!b.crossDomain?{send:function(e,f){var g,h=b.xhr();if(h.open(b.type,b.url,b.async,b.username,b.password),b.xhrFields)for(g in b.xhrFields)h[g]=b.xhrFields[g];b.mimeType&&h.overrideMimeType&&h.overrideMimeType(b.mimeType),b.crossDomain||e["X-Requested-With"]||(e["X-Requested-With"]="XMLHttpRequest");for(g in e)h.setRequestHeader(g,e[g]);c=function(a){return function(){c&&(c=d=h.onload=h.onerror=h.onabort=h.onreadystatechange=null,"abort"===a?h.abort():"error"===a?"number"!=typeof h.status?f(0,"error"):f(h.status,h.statusText):f(Hb[h.status]||h.status,h.statusText,"text"!==(h.responseType||"text")||"string"!=typeof h.responseText?{binary:h.response}:{text:h.responseText},h.getAllResponseHeaders()))}},h.onload=c(),d=h.onerror=c("error"),void 0!==h.onabort?h.onabort=d:h.onreadystatechange=function(){4===h.readyState&&a.setTimeout(function(){c&&d()})},c=c("abort");try{h.send(b.hasContent&&b.data||null)}catch(i){if(c)throw i}},abort:function(){c&&c()}}:void 0}),n.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/\b(?:java|ecma)script\b/},converters:{"text script":function(a){return n.globalEval(a),a}}}),n.ajaxPrefilter("script",function(a){void 0===a.cache&&(a.cache=!1),a.crossDomain&&(a.type="GET")}),n.ajaxTransport("script",function(a){if(a.crossDomain){var b,c;return{send:function(e,f){b=n("<script>").prop({charset:a.scriptCharset,src:a.url}).on("load error",c=function(a){b.remove(),c=null,a&&f("error"===a.type?404:200,a.type)}),d.head.appendChild(b[0])},abort:function(){c&&c()}}}});var Jb=[],Kb=/(=)\?(?=&|$)|\?\?/;n.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var a=Jb.pop()||n.expando+"_"+kb++;return this[a]=!0,a}}),n.ajaxPrefilter("json jsonp",function(b,c,d){var e,f,g,h=b.jsonp!==!1&&(Kb.test(b.url)?"url":"string"==typeof b.data&&0===(b.contentType||"").indexOf("application/x-www-form-urlencoded")&&Kb.test(b.data)&&"data");return h||"jsonp"===b.dataTypes[0]?(e=b.jsonpCallback=n.isFunction(b.jsonpCallback)?b.jsonpCallback():b.jsonpCallback,h?b[h]=b[h].replace(Kb,"$1"+e):b.jsonp!==!1&&(b.url+=(lb.test(b.url)?"&":"?")+b.jsonp+"="+e),b.converters["script json"]=function(){return g||n.error(e+" was not called"),g[0]},b.dataTypes[0]="json",f=a[e],a[e]=function(){g=arguments},d.always(function(){void 0===f?n(a).removeProp(e):a[e]=f,b[e]&&(b.jsonpCallback=c.jsonpCallback,Jb.push(e)),g&&n.isFunction(f)&&f(g[0]),g=f=void 0}),"script"):void 0}),n.parseHTML=function(a,b,c){if(!a||"string"!=typeof a)return null;"boolean"==typeof b&&(c=b,b=!1),b=b||d;var e=x.exec(a),f=!c&&[];return e?[b.createElement(e[1])]:(e=ca([a],b,f),f&&f.length&&n(f).remove(),n.merge([],e.childNodes))};var Lb=n.fn.load;n.fn.load=function(a,b,c){if("string"!=typeof a&&Lb)return Lb.apply(this,arguments);var d,e,f,g=this,h=a.indexOf(" ");return h>-1&&(d=n.trim(a.slice(h)),a=a.slice(0,h)),n.isFunction(b)?(c=b,b=void 0):b&&"object"==typeof b&&(e="POST"),g.length>0&&n.ajax({url:a,type:e||"GET",dataType:"html",data:b}).done(function(a){f=arguments,g.html(d?n("<div>").append(n.parseHTML(a)).find(d):a)}).always(c&&function(a,b){g.each(function(){c.apply(this,f||[a.responseText,b,a])})}),this},n.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(a,b){n.fn[b]=function(a){return this.on(b,a)}}),n.expr.filters.animated=function(a){return n.grep(n.timers,function(b){return a===b.elem}).length};function Mb(a){return n.isWindow(a)?a:9===a.nodeType&&a.defaultView}n.offset={setOffset:function(a,b,c){var d,e,f,g,h,i,j,k=n.css(a,"position"),l=n(a),m={};"static"===k&&(a.style.position="relative"),h=l.offset(),f=n.css(a,"top"),i=n.css(a,"left"),j=("absolute"===k||"fixed"===k)&&(f+i).indexOf("auto")>-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,n.extend({},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)}},n.fn.extend({offset:function(a){if(arguments.length)return void 0===a?this:this.each(function(b){n.offset.setOffset(this,a,b)});var b,c,d=this[0],e={top:0,left:0},f=d&&d.ownerDocument;if(f)return b=f.documentElement,n.contains(b,d)?(e=d.getBoundingClientRect(),c=Mb(f),{top:e.top+c.pageYOffset-b.clientTop,left:e.left+c.pageXOffset-b.clientLeft}):e},position:function(){if(this[0]){var a,b,c=this[0],d={top:0,left:0};return"fixed"===n.css(c,"position")?b=c.getBoundingClientRect():(a=this.offsetParent(),b=this.offset(),n.nodeName(a[0],"html")||(d=a.offset()),d.top+=n.css(a[0],"borderTopWidth",!0),d.left+=n.css(a[0],"borderLeftWidth",!0)),{top:b.top-d.top-n.css(c,"marginTop",!0),left:b.left-d.left-n.css(c,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var a=this.offsetParent;while(a&&"static"===n.css(a,"position"))a=a.offsetParent;return a||Ea})}}),n.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(a,b){var c="pageYOffset"===b;n.fn[a]=function(d){return K(this,function(a,d,e){var f=Mb(a);return void 0===e?f?f[b]:a[d]:void(f?f.scrollTo(c?f.pageXOffset:e,c?e:f.pageYOffset):a[d]=e)},a,d,arguments.length)}}),n.each(["top","left"],function(a,b){n.cssHooks[b]=Ga(l.pixelPosition,function(a,c){return c?(c=Fa(a,b),Ba.test(c)?n(a).position()[b]+"px":c):void 0})}),n.each({Height:"height",Width:"width"},function(a,b){n.each({padding:"inner"+a,content:b,"":"outer"+a},function(c,d){n.fn[d]=function(d,e){var f=arguments.length&&(c||"boolean"!=typeof d),g=c||(d===!0||e===!0?"margin":"border");return K(this,function(b,c,d){var e;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)},b,f?d:void 0,f,null)}})}),n.fn.extend({bind:function(a,b,c){return this.on(a,null,b,c)},unbind:function(a,b){return this.off(a,null,b)},delegate:function(a,b,c,d){return this.on(b,a,c,d)},undelegate:function(a,b,c){return 1===arguments.length?this.off(a,"**"):this.off(b,a||"**",c)},size:function(){return this.length}}),n.fn.andSelf=n.fn.addBack,"function"==typeof define&&define.amd&&define("jquery",[],function(){return n});var Nb=a.jQuery,Ob=a.$;return n.noConflict=function(b){return a.$===n&&(a.$=Ob),b&&a.jQuery===n&&(a.jQuery=Nb),n},b||(a.jQuery=a.$=n),n});
(-)a/koha-tmpl/intranet-tmpl/lib/jquery/jquery-3.6.0.min.js (+2 lines)
Line 0 Link Here
1
/*! jQuery v3.6.0 | (c) OpenJS Foundation and other contributors | jquery.org/license */
2
!function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(C,e){"use strict";var t=[],r=Object.getPrototypeOf,s=t.slice,g=t.flat?function(e){return t.flat.call(e)}:function(e){return t.concat.apply([],e)},u=t.push,i=t.indexOf,n={},o=n.toString,v=n.hasOwnProperty,a=v.toString,l=a.call(Object),y={},m=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType&&"function"!=typeof e.item},x=function(e){return null!=e&&e===e.window},E=C.document,c={type:!0,src:!0,nonce:!0,noModule:!0};function b(e,t,n){var r,i,o=(n=n||E).createElement("script");if(o.text=e,t)for(r in c)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function w(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?n[o.call(e)]||"object":typeof e}var f="3.6.0",S=function(e,t){return new S.fn.init(e,t)};function p(e){var t=!!e&&"length"in e&&e.length,n=w(e);return!m(e)&&!x(e)&&("array"===n||0===t||"number"==typeof t&&0<t&&t-1 in e)}S.fn=S.prototype={jquery:f,constructor:S,length:0,toArray:function(){return s.call(this)},get:function(e){return null==e?s.call(this):e<0?this[e+this.length]:this[e]},pushStack:function(e){var t=S.merge(this.constructor(),e);return t.prevObject=this,t},each:function(e){return S.each(this,e)},map:function(n){return this.pushStack(S.map(this,function(e,t){return n.call(e,t,e)}))},slice:function(){return this.pushStack(s.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},even:function(){return this.pushStack(S.grep(this,function(e,t){return(t+1)%2}))},odd:function(){return this.pushStack(S.grep(this,function(e,t){return t%2}))},eq:function(e){var t=this.length,n=+e+(e<0?t:0);return this.pushStack(0<=n&&n<t?[this[n]]:[])},end:function(){return this.prevObject||this.constructor()},push:u,sort:t.sort,splice:t.splice},S.extend=S.fn.extend=function(){var e,t,n,r,i,o,a=arguments[0]||{},s=1,u=arguments.length,l=!1;for("boolean"==typeof a&&(l=a,a=arguments[s]||{},s++),"object"==typeof a||m(a)||(a={}),s===u&&(a=this,s--);s<u;s++)if(null!=(e=arguments[s]))for(t in e)r=e[t],"__proto__"!==t&&a!==r&&(l&&r&&(S.isPlainObject(r)||(i=Array.isArray(r)))?(n=a[t],o=i&&!Array.isArray(n)?[]:i||S.isPlainObject(n)?n:{},i=!1,a[t]=S.extend(l,o,r)):void 0!==r&&(a[t]=r));return a},S.extend({expando:"jQuery"+(f+Math.random()).replace(/\D/g,""),isReady:!0,error:function(e){throw new Error(e)},noop:function(){},isPlainObject:function(e){var t,n;return!(!e||"[object Object]"!==o.call(e))&&(!(t=r(e))||"function"==typeof(n=v.call(t,"constructor")&&t.constructor)&&a.call(n)===l)},isEmptyObject:function(e){var t;for(t in e)return!1;return!0},globalEval:function(e,t,n){b(e,{nonce:t&&t.nonce},n)},each:function(e,t){var n,r=0;if(p(e)){for(n=e.length;r<n;r++)if(!1===t.call(e[r],r,e[r]))break}else for(r in e)if(!1===t.call(e[r],r,e[r]))break;return e},makeArray:function(e,t){var n=t||[];return null!=e&&(p(Object(e))?S.merge(n,"string"==typeof e?[e]:e):u.call(n,e)),n},inArray:function(e,t,n){return null==t?-1:i.call(t,e,n)},merge:function(e,t){for(var n=+t.length,r=0,i=e.length;r<n;r++)e[i++]=t[r];return e.length=i,e},grep:function(e,t,n){for(var r=[],i=0,o=e.length,a=!n;i<o;i++)!t(e[i],i)!==a&&r.push(e[i]);return r},map:function(e,t,n){var r,i,o=0,a=[];if(p(e))for(r=e.length;o<r;o++)null!=(i=t(e[o],o,n))&&a.push(i);else for(o in e)null!=(i=t(e[o],o,n))&&a.push(i);return g(a)},guid:1,support:y}),"function"==typeof Symbol&&(S.fn[Symbol.iterator]=t[Symbol.iterator]),S.each("Boolean Number String Function Array Date RegExp Object Error Symbol".split(" "),function(e,t){n["[object "+t+"]"]=t.toLowerCase()});var d=function(n){var e,d,b,o,i,h,f,g,w,u,l,T,C,a,E,v,s,c,y,S="sizzle"+1*new Date,p=n.document,k=0,r=0,m=ue(),x=ue(),A=ue(),N=ue(),j=function(e,t){return e===t&&(l=!0),0},D={}.hasOwnProperty,t=[],q=t.pop,L=t.push,H=t.push,O=t.slice,P=function(e,t){for(var n=0,r=e.length;n<r;n++)if(e[n]===t)return n;return-1},R="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",M="[\\x20\\t\\r\\n\\f]",I="(?:\\\\[\\da-fA-F]{1,6}"+M+"?|\\\\[^\\r\\n\\f]|[\\w-]|[^\0-\\x7f])+",W="\\["+M+"*("+I+")(?:"+M+"*([*^$|!~]?=)"+M+"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|("+I+"))|)"+M+"*\\]",F=":("+I+")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|"+W+")*)|.*)\\)|)",B=new RegExp(M+"+","g"),$=new RegExp("^"+M+"+|((?:^|[^\\\\])(?:\\\\.)*)"+M+"+$","g"),_=new RegExp("^"+M+"*,"+M+"*"),z=new RegExp("^"+M+"*([>+~]|"+M+")"+M+"*"),U=new RegExp(M+"|>"),X=new RegExp(F),V=new RegExp("^"+I+"$"),G={ID:new RegExp("^#("+I+")"),CLASS:new RegExp("^\\.("+I+")"),TAG:new RegExp("^("+I+"|[*])"),ATTR:new RegExp("^"+W),PSEUDO:new RegExp("^"+F),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+R+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/HTML$/i,Q=/^(?:input|select|textarea|button)$/i,J=/^h\d$/i,K=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\[\\da-fA-F]{1,6}"+M+"?|\\\\([^\\r\\n\\f])","g"),ne=function(e,t){var n="0x"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){T()},ae=be(function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()},{dir:"parentNode",next:"legend"});try{H.apply(t=O.call(p.childNodes),p.childNodes),t[p.childNodes.length].nodeType}catch(e){H={apply:t.length?function(e,t){L.apply(e,O.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function se(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==p&&9!==p&&11!==p)return n;if(!r&&(T(e),e=e||C,E)){if(11!==p&&(u=Z.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return n.push(a),n}else if(f&&(a=f.getElementById(i))&&y(e,a)&&a.id===i)return n.push(a),n}else{if(u[2])return H.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&d.getElementsByClassName&&e.getElementsByClassName)return H.apply(n,e.getElementsByClassName(i)),n}if(d.qsa&&!N[t+" "]&&(!v||!v.test(t))&&(1!==p||"object"!==e.nodeName.toLowerCase())){if(c=t,f=e,1===p&&(U.test(t)||z.test(t))){(f=ee.test(t)&&ye(e.parentNode)||e)===e&&d.scope||((s=e.getAttribute("id"))?s=s.replace(re,ie):e.setAttribute("id",s=S)),o=(l=h(t)).length;while(o--)l[o]=(s?"#"+s:":scope")+" "+xe(l[o]);c=l.join(",")}try{return H.apply(n,f.querySelectorAll(c)),n}catch(e){N(t,!0)}finally{s===S&&e.removeAttribute("id")}}}return g(t.replace($,"$1"),e,n,r)}function ue(){var r=[];return function e(t,n){return r.push(t+" ")>b.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function le(e){return e[S]=!0,e}function ce(e){var t=C.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){var n=e.split("|"),r=n.length;while(r--)b.attrHandle[n[r]]=t}function pe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function de(t){return function(e){return"input"===e.nodeName.toLowerCase()&&e.type===t}}function he(n){return function(e){var t=e.nodeName.toLowerCase();return("input"===t||"button"===t)&&e.type===n}}function ge(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&ae(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function ve(a){return le(function(o){return o=+o,le(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function ye(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}for(e in d=se.support={},i=se.isXML=function(e){var t=e&&e.namespaceURI,n=e&&(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||"HTML")},T=se.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:p;return r!=C&&9===r.nodeType&&r.documentElement&&(a=(C=r).documentElement,E=!i(C),p!=C&&(n=C.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",oe,!1):n.attachEvent&&n.attachEvent("onunload",oe)),d.scope=ce(function(e){return a.appendChild(e).appendChild(C.createElement("div")),"undefined"!=typeof e.querySelectorAll&&!e.querySelectorAll(":scope fieldset div").length}),d.attributes=ce(function(e){return e.className="i",!e.getAttribute("className")}),d.getElementsByTagName=ce(function(e){return e.appendChild(C.createComment("")),!e.getElementsByTagName("*").length}),d.getElementsByClassName=K.test(C.getElementsByClassName),d.getById=ce(function(e){return a.appendChild(e).id=S,!C.getElementsByName||!C.getElementsByName(S).length}),d.getById?(b.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(te,ne);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),b.find.TAG=d.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):d.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},b.find.CLASS=d.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&E)return t.getElementsByClassName(e)},s=[],v=[],(d.qsa=K.test(C.querySelectorAll))&&(ce(function(e){var t;a.appendChild(e).innerHTML="<a id='"+S+"'></a><select id='"+S+"-\r\\' msallowcapture=''><option selected=''></option></select>",e.querySelectorAll("[msallowcapture^='']").length&&v.push("[*^$]="+M+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||v.push("\\["+M+"*(?:value|"+R+")"),e.querySelectorAll("[id~="+S+"-]").length||v.push("~="),(t=C.createElement("input")).setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name='']").length||v.push("\\["+M+"*name"+M+"*="+M+"*(?:''|\"\")"),e.querySelectorAll(":checked").length||v.push(":checked"),e.querySelectorAll("a#"+S+"+*").length||v.push(".#.+[+~]"),e.querySelectorAll("\\\f"),v.push("[\\r\\n\\f]")}),ce(function(e){e.innerHTML="<a href='' disabled='disabled'></a><select disabled='disabled'><option/></select>";var t=C.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&v.push("name"+M+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&v.push(":enabled",":disabled"),a.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&v.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),v.push(",.*:")})),(d.matchesSelector=K.test(c=a.matches||a.webkitMatchesSelector||a.mozMatchesSelector||a.oMatchesSelector||a.msMatchesSelector))&&ce(function(e){d.disconnectedMatch=c.call(e,"*"),c.call(e,"[s!='']:x"),s.push("!=",F)}),v=v.length&&new RegExp(v.join("|")),s=s.length&&new RegExp(s.join("|")),t=K.test(a.compareDocumentPosition),y=t||K.test(a.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},j=t?function(e,t){if(e===t)return l=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!d.sortDetached&&t.compareDocumentPosition(e)===n?e==C||e.ownerDocument==p&&y(p,e)?-1:t==C||t.ownerDocument==p&&y(p,t)?1:u?P(u,e)-P(u,t):0:4&n?-1:1)}:function(e,t){if(e===t)return l=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e==C?-1:t==C?1:i?-1:o?1:u?P(u,e)-P(u,t):0;if(i===o)return pe(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(a[r]===s[r])r++;return r?pe(a[r],s[r]):a[r]==p?-1:s[r]==p?1:0}),C},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if(T(e),d.matchesSelector&&E&&!N[t+" "]&&(!s||!s.test(t))&&(!v||!v.test(t)))try{var n=c.call(e,t);if(n||d.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){N(t,!0)}return 0<se(t,C,null,[e]).length},se.contains=function(e,t){return(e.ownerDocument||e)!=C&&T(e),y(e,t)},se.attr=function(e,t){(e.ownerDocument||e)!=C&&T(e);var n=b.attrHandle[t.toLowerCase()],r=n&&D.call(b.attrHandle,t.toLowerCase())?n(e,t,!E):void 0;return void 0!==r?r:d.attributes||!E?e.getAttribute(t):(r=e.getAttributeNode(t))&&r.specified?r.value:null},se.escape=function(e){return(e+"").replace(re,ie)},se.error=function(e){throw new Error("Syntax error, unrecognized expression: "+e)},se.uniqueSort=function(e){var t,n=[],r=0,i=0;if(l=!d.detectDuplicates,u=!d.sortStable&&e.slice(0),e.sort(j),l){while(t=e[i++])t===e[i]&&(r=n.push(i));while(r--)e.splice(n[r],1)}return u=null,e},o=se.getText=function(e){var t,n="",r=0,i=e.nodeType;if(i){if(1===i||9===i||11===i){if("string"==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=o(e)}else if(3===i||4===i)return e.nodeValue}else while(t=e[r++])n+=o(t);return n},(b=se.selectors={cacheLength:50,createPseudo:le,match:G,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return G.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&X.test(n)&&(t=h(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=m[e+" "];return t||(t=new RegExp("(^|"+M+")"+e+"("+M+"|$)"))&&m(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=se.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1<t.indexOf(i):"$="===r?i&&t.slice(-i.length)===i:"~="===r?-1<(" "+t.replace(B," ")+" ").indexOf(i):"|="===r&&(t===i||t.slice(0,i.length+1)===i+"-"))}},CHILD:function(h,e,t,g,v){var y="nth"!==h.slice(0,3),m="last"!==h.slice(-4),x="of-type"===e;return 1===g&&0===v?function(e){return!!e.parentNode}:function(e,t,n){var r,i,o,a,s,u,l=y!==m?"nextSibling":"previousSibling",c=e.parentNode,f=x&&e.nodeName.toLowerCase(),p=!n&&!x,d=!1;if(c){if(y){while(l){a=e;while(a=a[l])if(x?a.nodeName.toLowerCase()===f:1===a.nodeType)return!1;u=l="only"===h&&!u&&"nextSibling"}return!0}if(u=[m?c.firstChild:c.lastChild],m&&p){d=(s=(r=(i=(o=(a=c)[S]||(a[S]={}))[a.uniqueID]||(o[a.uniqueID]={}))[h]||[])[0]===k&&r[1])&&r[2],a=s&&c.childNodes[s];while(a=++s&&a&&a[l]||(d=s=0)||u.pop())if(1===a.nodeType&&++d&&a===e){i[h]=[k,s,d];break}}else if(p&&(d=s=(r=(i=(o=(a=e)[S]||(a[S]={}))[a.uniqueID]||(o[a.uniqueID]={}))[h]||[])[0]===k&&r[1]),!1===d)while(a=++s&&a&&a[l]||(d=s=0)||u.pop())if((x?a.nodeName.toLowerCase()===f:1===a.nodeType)&&++d&&(p&&((i=(o=a[S]||(a[S]={}))[a.uniqueID]||(o[a.uniqueID]={}))[h]=[k,d]),a===e))break;return(d-=v)===g||d%g==0&&0<=d/g}}},PSEUDO:function(e,o){var t,a=b.pseudos[e]||b.setFilters[e.toLowerCase()]||se.error("unsupported pseudo: "+e);return a[S]?a(o):1<a.length?(t=[e,e,"",o],b.setFilters.hasOwnProperty(e.toLowerCase())?le(function(e,t){var n,r=a(e,o),i=r.length;while(i--)e[n=P(e,r[i])]=!(t[n]=r[i])}):function(e){return a(e,0,t)}):a}},pseudos:{not:le(function(e){var r=[],i=[],s=f(e.replace($,"$1"));return s[S]?le(function(e,t,n,r){var i,o=s(e,null,r,[]),a=e.length;while(a--)(i=o[a])&&(e[a]=!(t[a]=i))}):function(e,t,n){return r[0]=e,s(r,null,n,i),r[0]=null,!i.pop()}}),has:le(function(t){return function(e){return 0<se(t,e).length}}),contains:le(function(t){return t=t.replace(te,ne),function(e){return-1<(e.textContent||o(e)).indexOf(t)}}),lang:le(function(n){return V.test(n||"")||se.error("unsupported lang: "+n),n=n.replace(te,ne).toLowerCase(),function(e){var t;do{if(t=E?e.lang:e.getAttribute("xml:lang")||e.getAttribute("lang"))return(t=t.toLowerCase())===n||0===t.indexOf(n+"-")}while((e=e.parentNode)&&1===e.nodeType);return!1}}),target:function(e){var t=n.location&&n.location.hash;return t&&t.slice(1)===e.id},root:function(e){return e===a},focus:function(e){return e===C.activeElement&&(!C.hasFocus||C.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:ge(!1),disabled:ge(!0),checked:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&!!e.checked||"option"===t&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,!0===e.selected},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeType<6)return!1;return!0},parent:function(e){return!b.pseudos.empty(e)},header:function(e){return J.test(e.nodeName)},input:function(e){return Q.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&"button"===e.type||"button"===t},text:function(e){var t;return"input"===e.nodeName.toLowerCase()&&"text"===e.type&&(null==(t=e.getAttribute("type"))||"text"===t.toLowerCase())},first:ve(function(){return[0]}),last:ve(function(e,t){return[t-1]}),eq:ve(function(e,t,n){return[n<0?n+t:n]}),even:ve(function(e,t){for(var n=0;n<t;n+=2)e.push(n);return e}),odd:ve(function(e,t){for(var n=1;n<t;n+=2)e.push(n);return e}),lt:ve(function(e,t,n){for(var r=n<0?n+t:t<n?t:n;0<=--r;)e.push(r);return e}),gt:ve(function(e,t,n){for(var r=n<0?n+t:n;++r<t;)e.push(r);return e})}}).pseudos.nth=b.pseudos.eq,{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})b.pseudos[e]=de(e);for(e in{submit:!0,reset:!0})b.pseudos[e]=he(e);function me(){}function xe(e){for(var t=0,n=e.length,r="";t<n;t++)r+=e[t].value;return r}function be(s,e,t){var u=e.dir,l=e.next,c=l||u,f=t&&"parentNode"===c,p=r++;return e.first?function(e,t,n){while(e=e[u])if(1===e.nodeType||f)return s(e,t,n);return!1}:function(e,t,n){var r,i,o,a=[k,p];if(n){while(e=e[u])if((1===e.nodeType||f)&&s(e,t,n))return!0}else while(e=e[u])if(1===e.nodeType||f)if(i=(o=e[S]||(e[S]={}))[e.uniqueID]||(o[e.uniqueID]={}),l&&l===e.nodeName.toLowerCase())e=e[u]||e;else{if((r=i[c])&&r[0]===k&&r[1]===p)return a[2]=r[2];if((i[c]=a)[2]=s(e,t,n))return!0}return!1}}function we(i){return 1<i.length?function(e,t,n){var r=i.length;while(r--)if(!i[r](e,t,n))return!1;return!0}:i[0]}function Te(e,t,n,r,i){for(var o,a=[],s=0,u=e.length,l=null!=t;s<u;s++)(o=e[s])&&(n&&!n(o,r,i)||(a.push(o),l&&t.push(s)));return a}function Ce(d,h,g,v,y,e){return v&&!v[S]&&(v=Ce(v)),y&&!y[S]&&(y=Ce(y,e)),le(function(e,t,n,r){var i,o,a,s=[],u=[],l=t.length,c=e||function(e,t,n){for(var r=0,i=t.length;r<i;r++)se(e,t[r],n);return n}(h||"*",n.nodeType?[n]:n,[]),f=!d||!e&&h?c:Te(c,s,d,n,r),p=g?y||(e?d:l||v)?[]:t:f;if(g&&g(f,p,n,r),v){i=Te(p,u),v(i,[],n,r),o=i.length;while(o--)(a=i[o])&&(p[u[o]]=!(f[u[o]]=a))}if(e){if(y||d){if(y){i=[],o=p.length;while(o--)(a=p[o])&&i.push(f[o]=a);y(null,p=[],i,r)}o=p.length;while(o--)(a=p[o])&&-1<(i=y?P(e,a):s[o])&&(e[i]=!(t[i]=a))}}else p=Te(p===t?p.splice(l,p.length):p),y?y(null,t,p,r):H.apply(t,p)})}function Ee(e){for(var i,t,n,r=e.length,o=b.relative[e[0].type],a=o||b.relative[" "],s=o?1:0,u=be(function(e){return e===i},a,!0),l=be(function(e){return-1<P(i,e)},a,!0),c=[function(e,t,n){var r=!o&&(n||t!==w)||((i=t).nodeType?u(e,t,n):l(e,t,n));return i=null,r}];s<r;s++)if(t=b.relative[e[s].type])c=[be(we(c),t)];else{if((t=b.filter[e[s].type].apply(null,e[s].matches))[S]){for(n=++s;n<r;n++)if(b.relative[e[n].type])break;return Ce(1<s&&we(c),1<s&&xe(e.slice(0,s-1).concat({value:" "===e[s-2].type?"*":""})).replace($,"$1"),t,s<n&&Ee(e.slice(s,n)),n<r&&Ee(e=e.slice(n)),n<r&&xe(e))}c.push(t)}return we(c)}return me.prototype=b.filters=b.pseudos,b.setFilters=new me,h=se.tokenize=function(e,t){var n,r,i,o,a,s,u,l=x[e+" "];if(l)return t?0:l.slice(0);a=e,s=[],u=b.preFilter;while(a){for(o in n&&!(r=_.exec(a))||(r&&(a=a.slice(r[0].length)||a),s.push(i=[])),n=!1,(r=z.exec(a))&&(n=r.shift(),i.push({value:n,type:r[0].replace($," ")}),a=a.slice(n.length)),b.filter)!(r=G[o].exec(a))||u[o]&&!(r=u[o](r))||(n=r.shift(),i.push({value:n,type:o,matches:r}),a=a.slice(n.length));if(!n)break}return t?a.length:a?se.error(e):x(e,s).slice(0)},f=se.compile=function(e,t){var n,v,y,m,x,r,i=[],o=[],a=A[e+" "];if(!a){t||(t=h(e)),n=t.length;while(n--)(a=Ee(t[n]))[S]?i.push(a):o.push(a);(a=A(e,(v=o,m=0<(y=i).length,x=0<v.length,r=function(e,t,n,r,i){var o,a,s,u=0,l="0",c=e&&[],f=[],p=w,d=e||x&&b.find.TAG("*",i),h=k+=null==p?1:Math.random()||.1,g=d.length;for(i&&(w=t==C||t||i);l!==g&&null!=(o=d[l]);l++){if(x&&o){a=0,t||o.ownerDocument==C||(T(o),n=!E);while(s=v[a++])if(s(o,t||C,n)){r.push(o);break}i&&(k=h)}m&&((o=!s&&o)&&u--,e&&c.push(o))}if(u+=l,m&&l!==u){a=0;while(s=y[a++])s(c,f,t,n);if(e){if(0<u)while(l--)c[l]||f[l]||(f[l]=q.call(r));f=Te(f)}H.apply(r,f),i&&!e&&0<f.length&&1<u+y.length&&se.uniqueSort(r)}return i&&(k=h,w=p),c},m?le(r):r))).selector=e}return a},g=se.select=function(e,t,n,r){var i,o,a,s,u,l="function"==typeof e&&e,c=!r&&h(e=l.selector||e);if(n=n||[],1===c.length){if(2<(o=c[0]=c[0].slice(0)).length&&"ID"===(a=o[0]).type&&9===t.nodeType&&E&&b.relative[o[1].type]){if(!(t=(b.find.ID(a.matches[0].replace(te,ne),t)||[])[0]))return n;l&&(t=t.parentNode),e=e.slice(o.shift().value.length)}i=G.needsContext.test(e)?0:o.length;while(i--){if(a=o[i],b.relative[s=a.type])break;if((u=b.find[s])&&(r=u(a.matches[0].replace(te,ne),ee.test(o[0].type)&&ye(t.parentNode)||t))){if(o.splice(i,1),!(e=r.length&&xe(o)))return H.apply(n,r),n;break}}}return(l||f(e,c))(r,t,!E,n,!t||ee.test(e)&&ye(t.parentNode)||t),n},d.sortStable=S.split("").sort(j).join("")===S,d.detectDuplicates=!!l,T(),d.sortDetached=ce(function(e){return 1&e.compareDocumentPosition(C.createElement("fieldset"))}),ce(function(e){return e.innerHTML="<a href='#'></a>","#"===e.firstChild.getAttribute("href")})||fe("type|href|height|width",function(e,t,n){if(!n)return e.getAttribute(t,"type"===t.toLowerCase()?1:2)}),d.attributes&&ce(function(e){return e.innerHTML="<input/>",e.firstChild.setAttribute("value",""),""===e.firstChild.getAttribute("value")})||fe("value",function(e,t,n){if(!n&&"input"===e.nodeName.toLowerCase())return e.defaultValue}),ce(function(e){return null==e.getAttribute("disabled")})||fe(R,function(e,t,n){var r;if(!n)return!0===e[t]?t.toLowerCase():(r=e.getAttributeNode(t))&&r.specified?r.value:null}),se}(C);S.find=d,S.expr=d.selectors,S.expr[":"]=S.expr.pseudos,S.uniqueSort=S.unique=d.uniqueSort,S.text=d.getText,S.isXMLDoc=d.isXML,S.contains=d.contains,S.escapeSelector=d.escape;var h=function(e,t,n){var r=[],i=void 0!==n;while((e=e[t])&&9!==e.nodeType)if(1===e.nodeType){if(i&&S(e).is(n))break;r.push(e)}return r},T=function(e,t){for(var n=[];e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n},k=S.expr.match.needsContext;function A(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()}var N=/^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function j(e,n,r){return m(n)?S.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?S.grep(e,function(e){return e===n!==r}):"string"!=typeof n?S.grep(e,function(e){return-1<i.call(n,e)!==r}):S.filter(n,e,r)}S.filter=function(e,t,n){var r=t[0];return n&&(e=":not("+e+")"),1===t.length&&1===r.nodeType?S.find.matchesSelector(r,e)?[r]:[]:S.find.matches(e,S.grep(t,function(e){return 1===e.nodeType}))},S.fn.extend({find:function(e){var t,n,r=this.length,i=this;if("string"!=typeof e)return this.pushStack(S(e).filter(function(){for(t=0;t<r;t++)if(S.contains(i[t],this))return!0}));for(n=this.pushStack([]),t=0;t<r;t++)S.find(e,i[t],n);return 1<r?S.uniqueSort(n):n},filter:function(e){return this.pushStack(j(this,e||[],!1))},not:function(e){return this.pushStack(j(this,e||[],!0))},is:function(e){return!!j(this,"string"==typeof e&&k.test(e)?S(e):e||[],!1).length}});var D,q=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/;(S.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||D,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:q.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof S?t[0]:t,S.merge(this,S.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:E,!0)),N.test(r[1])&&S.isPlainObject(t))for(r in t)m(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=E.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):m(e)?void 0!==n.ready?n.ready(e):e(S):S.makeArray(e,this)}).prototype=S.fn,D=S(E);var L=/^(?:parents|prev(?:Until|All))/,H={children:!0,contents:!0,next:!0,prev:!0};function O(e,t){while((e=e[t])&&1!==e.nodeType);return e}S.fn.extend({has:function(e){var t=S(e,this),n=t.length;return this.filter(function(){for(var e=0;e<n;e++)if(S.contains(this,t[e]))return!0})},closest:function(e,t){var n,r=0,i=this.length,o=[],a="string"!=typeof e&&S(e);if(!k.test(e))for(;r<i;r++)for(n=this[r];n&&n!==t;n=n.parentNode)if(n.nodeType<11&&(a?-1<a.index(n):1===n.nodeType&&S.find.matchesSelector(n,e))){o.push(n);break}return this.pushStack(1<o.length?S.uniqueSort(o):o)},index:function(e){return e?"string"==typeof e?i.call(S(e),this[0]):i.call(this,e.jquery?e[0]:e):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){return this.pushStack(S.uniqueSort(S.merge(this.get(),S(e,t))))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}}),S.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return h(e,"parentNode")},parentsUntil:function(e,t,n){return h(e,"parentNode",n)},next:function(e){return O(e,"nextSibling")},prev:function(e){return O(e,"previousSibling")},nextAll:function(e){return h(e,"nextSibling")},prevAll:function(e){return h(e,"previousSibling")},nextUntil:function(e,t,n){return h(e,"nextSibling",n)},prevUntil:function(e,t,n){return h(e,"previousSibling",n)},siblings:function(e){return T((e.parentNode||{}).firstChild,e)},children:function(e){return T(e.firstChild)},contents:function(e){return null!=e.contentDocument&&r(e.contentDocument)?e.contentDocument:(A(e,"template")&&(e=e.content||e),S.merge([],e.childNodes))}},function(r,i){S.fn[r]=function(e,t){var n=S.map(this,i,e);return"Until"!==r.slice(-5)&&(t=e),t&&"string"==typeof t&&(n=S.filter(t,n)),1<this.length&&(H[r]||S.uniqueSort(n),L.test(r)&&n.reverse()),this.pushStack(n)}});var P=/[^\x20\t\r\n\f]+/g;function R(e){return e}function M(e){throw e}function I(e,t,n,r){var i;try{e&&m(i=e.promise)?i.call(e).done(t).fail(n):e&&m(i=e.then)?i.call(e,t,n):t.apply(void 0,[e].slice(r))}catch(e){n.apply(void 0,[e])}}S.Callbacks=function(r){var e,n;r="string"==typeof r?(e=r,n={},S.each(e.match(P)||[],function(e,t){n[t]=!0}),n):S.extend({},r);var i,t,o,a,s=[],u=[],l=-1,c=function(){for(a=a||r.once,o=i=!0;u.length;l=-1){t=u.shift();while(++l<s.length)!1===s[l].apply(t[0],t[1])&&r.stopOnFalse&&(l=s.length,t=!1)}r.memory||(t=!1),i=!1,a&&(s=t?[]:"")},f={add:function(){return s&&(t&&!i&&(l=s.length-1,u.push(t)),function n(e){S.each(e,function(e,t){m(t)?r.unique&&f.has(t)||s.push(t):t&&t.length&&"string"!==w(t)&&n(t)})}(arguments),t&&!i&&c()),this},remove:function(){return S.each(arguments,function(e,t){var n;while(-1<(n=S.inArray(t,s,n)))s.splice(n,1),n<=l&&l--}),this},has:function(e){return e?-1<S.inArray(e,s):0<s.length},empty:function(){return s&&(s=[]),this},disable:function(){return a=u=[],s=t="",this},disabled:function(){return!s},lock:function(){return a=u=[],t||i||(s=t=""),this},locked:function(){return!!a},fireWith:function(e,t){return a||(t=[e,(t=t||[]).slice?t.slice():t],u.push(t),i||c()),this},fire:function(){return f.fireWith(this,arguments),this},fired:function(){return!!o}};return f},S.extend({Deferred:function(e){var o=[["notify","progress",S.Callbacks("memory"),S.Callbacks("memory"),2],["resolve","done",S.Callbacks("once memory"),S.Callbacks("once memory"),0,"resolved"],["reject","fail",S.Callbacks("once memory"),S.Callbacks("once memory"),1,"rejected"]],i="pending",a={state:function(){return i},always:function(){return s.done(arguments).fail(arguments),this},"catch":function(e){return a.then(null,e)},pipe:function(){var i=arguments;return S.Deferred(function(r){S.each(o,function(e,t){var n=m(i[t[4]])&&i[t[4]];s[t[1]](function(){var e=n&&n.apply(this,arguments);e&&m(e.promise)?e.promise().progress(r.notify).done(r.resolve).fail(r.reject):r[t[0]+"With"](this,n?[e]:arguments)})}),i=null}).promise()},then:function(t,n,r){var u=0;function l(i,o,a,s){return function(){var n=this,r=arguments,e=function(){var e,t;if(!(i<u)){if((e=a.apply(n,r))===o.promise())throw new TypeError("Thenable self-resolution");t=e&&("object"==typeof e||"function"==typeof e)&&e.then,m(t)?s?t.call(e,l(u,o,R,s),l(u,o,M,s)):(u++,t.call(e,l(u,o,R,s),l(u,o,M,s),l(u,o,R,o.notifyWith))):(a!==R&&(n=void 0,r=[e]),(s||o.resolveWith)(n,r))}},t=s?e:function(){try{e()}catch(e){S.Deferred.exceptionHook&&S.Deferred.exceptionHook(e,t.stackTrace),u<=i+1&&(a!==M&&(n=void 0,r=[e]),o.rejectWith(n,r))}};i?t():(S.Deferred.getStackHook&&(t.stackTrace=S.Deferred.getStackHook()),C.setTimeout(t))}}return S.Deferred(function(e){o[0][3].add(l(0,e,m(r)?r:R,e.notifyWith)),o[1][3].add(l(0,e,m(t)?t:R)),o[2][3].add(l(0,e,m(n)?n:M))}).promise()},promise:function(e){return null!=e?S.extend(e,a):a}},s={};return S.each(o,function(e,t){var n=t[2],r=t[5];a[t[1]]=n.add,r&&n.add(function(){i=r},o[3-e][2].disable,o[3-e][3].disable,o[0][2].lock,o[0][3].lock),n.add(t[3].fire),s[t[0]]=function(){return s[t[0]+"With"](this===s?void 0:this,arguments),this},s[t[0]+"With"]=n.fireWith}),a.promise(s),e&&e.call(s,s),s},when:function(e){var n=arguments.length,t=n,r=Array(t),i=s.call(arguments),o=S.Deferred(),a=function(t){return function(e){r[t]=this,i[t]=1<arguments.length?s.call(arguments):e,--n||o.resolveWith(r,i)}};if(n<=1&&(I(e,o.done(a(t)).resolve,o.reject,!n),"pending"===o.state()||m(i[t]&&i[t].then)))return o.then();while(t--)I(i[t],a(t),o.reject);return o.promise()}});var W=/^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;S.Deferred.exceptionHook=function(e,t){C.console&&C.console.warn&&e&&W.test(e.name)&&C.console.warn("jQuery.Deferred exception: "+e.message,e.stack,t)},S.readyException=function(e){C.setTimeout(function(){throw e})};var F=S.Deferred();function B(){E.removeEventListener("DOMContentLoaded",B),C.removeEventListener("load",B),S.ready()}S.fn.ready=function(e){return F.then(e)["catch"](function(e){S.readyException(e)}),this},S.extend({isReady:!1,readyWait:1,ready:function(e){(!0===e?--S.readyWait:S.isReady)||(S.isReady=!0)!==e&&0<--S.readyWait||F.resolveWith(E,[S])}}),S.ready.then=F.then,"complete"===E.readyState||"loading"!==E.readyState&&!E.documentElement.doScroll?C.setTimeout(S.ready):(E.addEventListener("DOMContentLoaded",B),C.addEventListener("load",B));var $=function(e,t,n,r,i,o,a){var s=0,u=e.length,l=null==n;if("object"===w(n))for(s in i=!0,n)$(e,t,s,n[s],!0,o,a);else if(void 0!==r&&(i=!0,m(r)||(a=!0),l&&(a?(t.call(e,r),t=null):(l=t,t=function(e,t,n){return l.call(S(e),n)})),t))for(;s<u;s++)t(e[s],n,a?r:r.call(e[s],s,t(e[s],n)));return i?e:l?t.call(e):u?t(e[0],n):o},_=/^-ms-/,z=/-([a-z])/g;function U(e,t){return t.toUpperCase()}function X(e){return e.replace(_,"ms-").replace(z,U)}var V=function(e){return 1===e.nodeType||9===e.nodeType||!+e.nodeType};function G(){this.expando=S.expando+G.uid++}G.uid=1,G.prototype={cache:function(e){var t=e[this.expando];return t||(t={},V(e)&&(e.nodeType?e[this.expando]=t:Object.defineProperty(e,this.expando,{value:t,configurable:!0}))),t},set:function(e,t,n){var r,i=this.cache(e);if("string"==typeof t)i[X(t)]=n;else for(r in t)i[X(r)]=t[r];return i},get:function(e,t){return void 0===t?this.cache(e):e[this.expando]&&e[this.expando][X(t)]},access:function(e,t,n){return void 0===t||t&&"string"==typeof t&&void 0===n?this.get(e,t):(this.set(e,t,n),void 0!==n?n:t)},remove:function(e,t){var n,r=e[this.expando];if(void 0!==r){if(void 0!==t){n=(t=Array.isArray(t)?t.map(X):(t=X(t))in r?[t]:t.match(P)||[]).length;while(n--)delete r[t[n]]}(void 0===t||S.isEmptyObject(r))&&(e.nodeType?e[this.expando]=void 0:delete e[this.expando])}},hasData:function(e){var t=e[this.expando];return void 0!==t&&!S.isEmptyObject(t)}};var Y=new G,Q=new G,J=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,K=/[A-Z]/g;function Z(e,t,n){var r,i;if(void 0===n&&1===e.nodeType)if(r="data-"+t.replace(K,"-$&").toLowerCase(),"string"==typeof(n=e.getAttribute(r))){try{n="true"===(i=n)||"false"!==i&&("null"===i?null:i===+i+""?+i:J.test(i)?JSON.parse(i):i)}catch(e){}Q.set(e,t,n)}else n=void 0;return n}S.extend({hasData:function(e){return Q.hasData(e)||Y.hasData(e)},data:function(e,t,n){return Q.access(e,t,n)},removeData:function(e,t){Q.remove(e,t)},_data:function(e,t,n){return Y.access(e,t,n)},_removeData:function(e,t){Y.remove(e,t)}}),S.fn.extend({data:function(n,e){var t,r,i,o=this[0],a=o&&o.attributes;if(void 0===n){if(this.length&&(i=Q.get(o),1===o.nodeType&&!Y.get(o,"hasDataAttrs"))){t=a.length;while(t--)a[t]&&0===(r=a[t].name).indexOf("data-")&&(r=X(r.slice(5)),Z(o,r,i[r]));Y.set(o,"hasDataAttrs",!0)}return i}return"object"==typeof n?this.each(function(){Q.set(this,n)}):$(this,function(e){var t;if(o&&void 0===e)return void 0!==(t=Q.get(o,n))?t:void 0!==(t=Z(o,n))?t:void 0;this.each(function(){Q.set(this,n,e)})},null,e,1<arguments.length,null,!0)},removeData:function(e){return this.each(function(){Q.remove(this,e)})}}),S.extend({queue:function(e,t,n){var r;if(e)return t=(t||"fx")+"queue",r=Y.get(e,t),n&&(!r||Array.isArray(n)?r=Y.access(e,t,S.makeArray(n)):r.push(n)),r||[]},dequeue:function(e,t){t=t||"fx";var n=S.queue(e,t),r=n.length,i=n.shift(),o=S._queueHooks(e,t);"inprogress"===i&&(i=n.shift(),r--),i&&("fx"===t&&n.unshift("inprogress"),delete o.stop,i.call(e,function(){S.dequeue(e,t)},o)),!r&&o&&o.empty.fire()},_queueHooks:function(e,t){var n=t+"queueHooks";return Y.get(e,n)||Y.access(e,n,{empty:S.Callbacks("once memory").add(function(){Y.remove(e,[t+"queue",n])})})}}),S.fn.extend({queue:function(t,n){var e=2;return"string"!=typeof t&&(n=t,t="fx",e--),arguments.length<e?S.queue(this[0],t):void 0===n?this:this.each(function(){var e=S.queue(this,t,n);S._queueHooks(this,t),"fx"===t&&"inprogress"!==e[0]&&S.dequeue(this,t)})},dequeue:function(e){return this.each(function(){S.dequeue(this,e)})},clearQueue:function(e){return this.queue(e||"fx",[])},promise:function(e,t){var n,r=1,i=S.Deferred(),o=this,a=this.length,s=function(){--r||i.resolveWith(o,[o])};"string"!=typeof e&&(t=e,e=void 0),e=e||"fx";while(a--)(n=Y.get(o[a],e+"queueHooks"))&&n.empty&&(r++,n.empty.add(s));return s(),i.promise(t)}});var ee=/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source,te=new RegExp("^(?:([+-])=|)("+ee+")([a-z%]*)$","i"),ne=["Top","Right","Bottom","Left"],re=E.documentElement,ie=function(e){return S.contains(e.ownerDocument,e)},oe={composed:!0};re.getRootNode&&(ie=function(e){return S.contains(e.ownerDocument,e)||e.getRootNode(oe)===e.ownerDocument});var ae=function(e,t){return"none"===(e=t||e).style.display||""===e.style.display&&ie(e)&&"none"===S.css(e,"display")};function se(e,t,n,r){var i,o,a=20,s=r?function(){return r.cur()}:function(){return S.css(e,t,"")},u=s(),l=n&&n[3]||(S.cssNumber[t]?"":"px"),c=e.nodeType&&(S.cssNumber[t]||"px"!==l&&+u)&&te.exec(S.css(e,t));if(c&&c[3]!==l){u/=2,l=l||c[3],c=+u||1;while(a--)S.style(e,t,c+l),(1-o)*(1-(o=s()/u||.5))<=0&&(a=0),c/=o;c*=2,S.style(e,t,c+l),n=n||[]}return n&&(c=+c||+u||0,i=n[1]?c+(n[1]+1)*n[2]:+n[2],r&&(r.unit=l,r.start=c,r.end=i)),i}var ue={};function le(e,t){for(var n,r,i,o,a,s,u,l=[],c=0,f=e.length;c<f;c++)(r=e[c]).style&&(n=r.style.display,t?("none"===n&&(l[c]=Y.get(r,"display")||null,l[c]||(r.style.display="")),""===r.style.display&&ae(r)&&(l[c]=(u=a=o=void 0,a=(i=r).ownerDocument,s=i.nodeName,(u=ue[s])||(o=a.body.appendChild(a.createElement(s)),u=S.css(o,"display"),o.parentNode.removeChild(o),"none"===u&&(u="block"),ue[s]=u)))):"none"!==n&&(l[c]="none",Y.set(r,"display",n)));for(c=0;c<f;c++)null!=l[c]&&(e[c].style.display=l[c]);return e}S.fn.extend({show:function(){return le(this,!0)},hide:function(){return le(this)},toggle:function(e){return"boolean"==typeof e?e?this.show():this.hide():this.each(function(){ae(this)?S(this).show():S(this).hide()})}});var ce,fe,pe=/^(?:checkbox|radio)$/i,de=/<([a-z][^\/\0>\x20\t\r\n\f]*)/i,he=/^$|^module$|\/(?:java|ecma)script/i;ce=E.createDocumentFragment().appendChild(E.createElement("div")),(fe=E.createElement("input")).setAttribute("type","radio"),fe.setAttribute("checked","checked"),fe.setAttribute("name","t"),ce.appendChild(fe),y.checkClone=ce.cloneNode(!0).cloneNode(!0).lastChild.checked,ce.innerHTML="<textarea>x</textarea>",y.noCloneChecked=!!ce.cloneNode(!0).lastChild.defaultValue,ce.innerHTML="<option></option>",y.option=!!ce.lastChild;var ge={thead:[1,"<table>","</table>"],col:[2,"<table><colgroup>","</colgroup></table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],_default:[0,"",""]};function ve(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&A(e,t)?S.merge([e],n):n}function ye(e,t){for(var n=0,r=e.length;n<r;n++)Y.set(e[n],"globalEval",!t||Y.get(t[n],"globalEval"))}ge.tbody=ge.tfoot=ge.colgroup=ge.caption=ge.thead,ge.th=ge.td,y.option||(ge.optgroup=ge.option=[1,"<select multiple='multiple'>","</select>"]);var me=/<|&#?\w+;/;function xe(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),p=[],d=0,h=e.length;d<h;d++)if((o=e[d])||0===o)if("object"===w(o))S.merge(p,o.nodeType?[o]:o);else if(me.test(o)){a=a||f.appendChild(t.createElement("div")),s=(de.exec(o)||["",""])[1].toLowerCase(),u=ge[s]||ge._default,a.innerHTML=u[1]+S.htmlPrefilter(o)+u[2],c=u[0];while(c--)a=a.lastChild;S.merge(p,a.childNodes),(a=f.firstChild).textContent=""}else p.push(t.createTextNode(o));f.textContent="",d=0;while(o=p[d++])if(r&&-1<S.inArray(o,r))i&&i.push(o);else if(l=ie(o),a=ve(f.appendChild(o),"script"),l&&ye(a),n){c=0;while(o=a[c++])he.test(o.type||"")&&n.push(o)}return f}var be=/^([^.]*)(?:\.(.+)|)/;function we(){return!0}function Te(){return!1}function Ce(e,t){return e===function(){try{return E.activeElement}catch(e){}}()==("focus"===t)}function Ee(e,t,n,r,i,o){var a,s;if("object"==typeof t){for(s in"string"!=typeof n&&(r=r||n,n=void 0),t)Ee(e,s,n,r,t[s],o);return e}if(null==r&&null==i?(i=n,r=n=void 0):null==i&&("string"==typeof n?(i=r,r=void 0):(i=r,r=n,n=void 0)),!1===i)i=Te;else if(!i)return e;return 1===o&&(a=i,(i=function(e){return S().off(e),a.apply(this,arguments)}).guid=a.guid||(a.guid=S.guid++)),e.each(function(){S.event.add(this,t,i,r,n)})}function Se(e,i,o){o?(Y.set(e,i,!1),S.event.add(e,i,{namespace:!1,handler:function(e){var t,n,r=Y.get(this,i);if(1&e.isTrigger&&this[i]){if(r.length)(S.event.special[i]||{}).delegateType&&e.stopPropagation();else if(r=s.call(arguments),Y.set(this,i,r),t=o(this,i),this[i](),r!==(n=Y.get(this,i))||t?Y.set(this,i,!1):n={},r!==n)return e.stopImmediatePropagation(),e.preventDefault(),n&&n.value}else r.length&&(Y.set(this,i,{value:S.event.trigger(S.extend(r[0],S.Event.prototype),r.slice(1),this)}),e.stopImmediatePropagation())}})):void 0===Y.get(e,i)&&S.event.add(e,i,we)}S.event={global:{},add:function(t,e,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,v=Y.get(t);if(V(t)){n.handler&&(n=(o=n).handler,i=o.selector),i&&S.find.matchesSelector(re,i),n.guid||(n.guid=S.guid++),(u=v.events)||(u=v.events=Object.create(null)),(a=v.handle)||(a=v.handle=function(e){return"undefined"!=typeof S&&S.event.triggered!==e.type?S.event.dispatch.apply(t,arguments):void 0}),l=(e=(e||"").match(P)||[""]).length;while(l--)d=g=(s=be.exec(e[l])||[])[1],h=(s[2]||"").split(".").sort(),d&&(f=S.event.special[d]||{},d=(i?f.delegateType:f.bindType)||d,f=S.event.special[d]||{},c=S.extend({type:d,origType:g,data:r,handler:n,guid:n.guid,selector:i,needsContext:i&&S.expr.match.needsContext.test(i),namespace:h.join(".")},o),(p=u[d])||((p=u[d]=[]).delegateCount=0,f.setup&&!1!==f.setup.call(t,r,h,a)||t.addEventListener&&t.addEventListener(d,a)),f.add&&(f.add.call(t,c),c.handler.guid||(c.handler.guid=n.guid)),i?p.splice(p.delegateCount++,0,c):p.push(c),S.event.global[d]=!0)}},remove:function(e,t,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,v=Y.hasData(e)&&Y.get(e);if(v&&(u=v.events)){l=(t=(t||"").match(P)||[""]).length;while(l--)if(d=g=(s=be.exec(t[l])||[])[1],h=(s[2]||"").split(".").sort(),d){f=S.event.special[d]||{},p=u[d=(r?f.delegateType:f.bindType)||d]||[],s=s[2]&&new RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"),a=o=p.length;while(o--)c=p[o],!i&&g!==c.origType||n&&n.guid!==c.guid||s&&!s.test(c.namespace)||r&&r!==c.selector&&("**"!==r||!c.selector)||(p.splice(o,1),c.selector&&p.delegateCount--,f.remove&&f.remove.call(e,c));a&&!p.length&&(f.teardown&&!1!==f.teardown.call(e,h,v.handle)||S.removeEvent(e,d,v.handle),delete u[d])}else for(d in u)S.event.remove(e,d+t[l],n,r,!0);S.isEmptyObject(u)&&Y.remove(e,"handle events")}},dispatch:function(e){var t,n,r,i,o,a,s=new Array(arguments.length),u=S.event.fix(e),l=(Y.get(this,"events")||Object.create(null))[u.type]||[],c=S.event.special[u.type]||{};for(s[0]=u,t=1;t<arguments.length;t++)s[t]=arguments[t];if(u.delegateTarget=this,!c.preDispatch||!1!==c.preDispatch.call(this,u)){a=S.event.handlers.call(this,u,l),t=0;while((i=a[t++])&&!u.isPropagationStopped()){u.currentTarget=i.elem,n=0;while((o=i.handlers[n++])&&!u.isImmediatePropagationStopped())u.rnamespace&&!1!==o.namespace&&!u.rnamespace.test(o.namespace)||(u.handleObj=o,u.data=o.data,void 0!==(r=((S.event.special[o.origType]||{}).handle||o.handler).apply(i.elem,s))&&!1===(u.result=r)&&(u.preventDefault(),u.stopPropagation()))}return c.postDispatch&&c.postDispatch.call(this,u),u.result}},handlers:function(e,t){var n,r,i,o,a,s=[],u=t.delegateCount,l=e.target;if(u&&l.nodeType&&!("click"===e.type&&1<=e.button))for(;l!==this;l=l.parentNode||this)if(1===l.nodeType&&("click"!==e.type||!0!==l.disabled)){for(o=[],a={},n=0;n<u;n++)void 0===a[i=(r=t[n]).selector+" "]&&(a[i]=r.needsContext?-1<S(i,this).index(l):S.find(i,this,null,[l]).length),a[i]&&o.push(r);o.length&&s.push({elem:l,handlers:o})}return l=this,u<t.length&&s.push({elem:l,handlers:t.slice(u)}),s},addProp:function(t,e){Object.defineProperty(S.Event.prototype,t,{enumerable:!0,configurable:!0,get:m(e)?function(){if(this.originalEvent)return e(this.originalEvent)}:function(){if(this.originalEvent)return this.originalEvent[t]},set:function(e){Object.defineProperty(this,t,{enumerable:!0,configurable:!0,writable:!0,value:e})}})},fix:function(e){return e[S.expando]?e:new S.Event(e)},special:{load:{noBubble:!0},click:{setup:function(e){var t=this||e;return pe.test(t.type)&&t.click&&A(t,"input")&&Se(t,"click",we),!1},trigger:function(e){var t=this||e;return pe.test(t.type)&&t.click&&A(t,"input")&&Se(t,"click"),!0},_default:function(e){var t=e.target;return pe.test(t.type)&&t.click&&A(t,"input")&&Y.get(t,"click")||A(t,"a")}},beforeunload:{postDispatch:function(e){void 0!==e.result&&e.originalEvent&&(e.originalEvent.returnValue=e.result)}}}},S.removeEvent=function(e,t,n){e.removeEventListener&&e.removeEventListener(t,n)},S.Event=function(e,t){if(!(this instanceof S.Event))return new S.Event(e,t);e&&e.type?(this.originalEvent=e,this.type=e.type,this.isDefaultPrevented=e.defaultPrevented||void 0===e.defaultPrevented&&!1===e.returnValue?we:Te,this.target=e.target&&3===e.target.nodeType?e.target.parentNode:e.target,this.currentTarget=e.currentTarget,this.relatedTarget=e.relatedTarget):this.type=e,t&&S.extend(this,t),this.timeStamp=e&&e.timeStamp||Date.now(),this[S.expando]=!0},S.Event.prototype={constructor:S.Event,isDefaultPrevented:Te,isPropagationStopped:Te,isImmediatePropagationStopped:Te,isSimulated:!1,preventDefault:function(){var e=this.originalEvent;this.isDefaultPrevented=we,e&&!this.isSimulated&&e.preventDefault()},stopPropagation:function(){var e=this.originalEvent;this.isPropagationStopped=we,e&&!this.isSimulated&&e.stopPropagation()},stopImmediatePropagation:function(){var e=this.originalEvent;this.isImmediatePropagationStopped=we,e&&!this.isSimulated&&e.stopImmediatePropagation(),this.stopPropagation()}},S.each({altKey:!0,bubbles:!0,cancelable:!0,changedTouches:!0,ctrlKey:!0,detail:!0,eventPhase:!0,metaKey:!0,pageX:!0,pageY:!0,shiftKey:!0,view:!0,"char":!0,code:!0,charCode:!0,key:!0,keyCode:!0,button:!0,buttons:!0,clientX:!0,clientY:!0,offsetX:!0,offsetY:!0,pointerId:!0,pointerType:!0,screenX:!0,screenY:!0,targetTouches:!0,toElement:!0,touches:!0,which:!0},S.event.addProp),S.each({focus:"focusin",blur:"focusout"},function(e,t){S.event.special[e]={setup:function(){return Se(this,e,Ce),!1},trigger:function(){return Se(this,e),!0},_default:function(){return!0},delegateType:t}}),S.each({mouseenter:"mouseover",mouseleave:"mouseout",pointerenter:"pointerover",pointerleave:"pointerout"},function(e,i){S.event.special[e]={delegateType:i,bindType:i,handle:function(e){var t,n=e.relatedTarget,r=e.handleObj;return n&&(n===this||S.contains(this,n))||(e.type=r.origType,t=r.handler.apply(this,arguments),e.type=i),t}}}),S.fn.extend({on:function(e,t,n,r){return Ee(this,e,t,n,r)},one:function(e,t,n,r){return Ee(this,e,t,n,r,1)},off:function(e,t,n){var r,i;if(e&&e.preventDefault&&e.handleObj)return r=e.handleObj,S(e.delegateTarget).off(r.namespace?r.origType+"."+r.namespace:r.origType,r.selector,r.handler),this;if("object"==typeof e){for(i in e)this.off(i,t,e[i]);return this}return!1!==t&&"function"!=typeof t||(n=t,t=void 0),!1===n&&(n=Te),this.each(function(){S.event.remove(this,e,n,t)})}});var ke=/<script|<style|<link/i,Ae=/checked\s*(?:[^=]|=\s*.checked.)/i,Ne=/^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g;function je(e,t){return A(e,"table")&&A(11!==t.nodeType?t:t.firstChild,"tr")&&S(e).children("tbody")[0]||e}function De(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function qe(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Le(e,t){var n,r,i,o,a,s;if(1===t.nodeType){if(Y.hasData(e)&&(s=Y.get(e).events))for(i in Y.remove(t,"handle events"),s)for(n=0,r=s[i].length;n<r;n++)S.event.add(t,i,s[i][n]);Q.hasData(e)&&(o=Q.access(e),a=S.extend({},o),Q.set(t,a))}}function He(n,r,i,o){r=g(r);var e,t,a,s,u,l,c=0,f=n.length,p=f-1,d=r[0],h=m(d);if(h||1<f&&"string"==typeof d&&!y.checkClone&&Ae.test(d))return n.each(function(e){var t=n.eq(e);h&&(r[0]=d.call(this,e,t.html())),He(t,r,i,o)});if(f&&(t=(e=xe(r,n[0].ownerDocument,!1,n,o)).firstChild,1===e.childNodes.length&&(e=t),t||o)){for(s=(a=S.map(ve(e,"script"),De)).length;c<f;c++)u=e,c!==p&&(u=S.clone(u,!0,!0),s&&S.merge(a,ve(u,"script"))),i.call(n[c],u,c);if(s)for(l=a[a.length-1].ownerDocument,S.map(a,qe),c=0;c<s;c++)u=a[c],he.test(u.type||"")&&!Y.access(u,"globalEval")&&S.contains(l,u)&&(u.src&&"module"!==(u.type||"").toLowerCase()?S._evalUrl&&!u.noModule&&S._evalUrl(u.src,{nonce:u.nonce||u.getAttribute("nonce")},l):b(u.textContent.replace(Ne,""),u,l))}return n}function Oe(e,t,n){for(var r,i=t?S.filter(t,e):e,o=0;null!=(r=i[o]);o++)n||1!==r.nodeType||S.cleanData(ve(r)),r.parentNode&&(n&&ie(r)&&ye(ve(r,"script")),r.parentNode.removeChild(r));return e}S.extend({htmlPrefilter:function(e){return e},clone:function(e,t,n){var r,i,o,a,s,u,l,c=e.cloneNode(!0),f=ie(e);if(!(y.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||S.isXMLDoc(e)))for(a=ve(c),r=0,i=(o=ve(e)).length;r<i;r++)s=o[r],u=a[r],void 0,"input"===(l=u.nodeName.toLowerCase())&&pe.test(s.type)?u.checked=s.checked:"input"!==l&&"textarea"!==l||(u.defaultValue=s.defaultValue);if(t)if(n)for(o=o||ve(e),a=a||ve(c),r=0,i=o.length;r<i;r++)Le(o[r],a[r]);else Le(e,c);return 0<(a=ve(c,"script")).length&&ye(a,!f&&ve(e,"script")),c},cleanData:function(e){for(var t,n,r,i=S.event.special,o=0;void 0!==(n=e[o]);o++)if(V(n)){if(t=n[Y.expando]){if(t.events)for(r in t.events)i[r]?S.event.remove(n,r):S.removeEvent(n,r,t.handle);n[Y.expando]=void 0}n[Q.expando]&&(n[Q.expando]=void 0)}}}),S.fn.extend({detach:function(e){return Oe(this,e,!0)},remove:function(e){return Oe(this,e)},text:function(e){return $(this,function(e){return void 0===e?S.text(this):this.empty().each(function(){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||(this.textContent=e)})},null,e,arguments.length)},append:function(){return He(this,arguments,function(e){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||je(this,e).appendChild(e)})},prepend:function(){return He(this,arguments,function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=je(this,e);t.insertBefore(e,t.firstChild)}})},before:function(){return He(this,arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this)})},after:function(){return He(this,arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)})},empty:function(){for(var e,t=0;null!=(e=this[t]);t++)1===e.nodeType&&(S.cleanData(ve(e,!1)),e.textContent="");return this},clone:function(e,t){return e=null!=e&&e,t=null==t?e:t,this.map(function(){return S.clone(this,e,t)})},html:function(e){return $(this,function(e){var t=this[0]||{},n=0,r=this.length;if(void 0===e&&1===t.nodeType)return t.innerHTML;if("string"==typeof e&&!ke.test(e)&&!ge[(de.exec(e)||["",""])[1].toLowerCase()]){e=S.htmlPrefilter(e);try{for(;n<r;n++)1===(t=this[n]||{}).nodeType&&(S.cleanData(ve(t,!1)),t.innerHTML=e);t=0}catch(e){}}t&&this.empty().append(e)},null,e,arguments.length)},replaceWith:function(){var n=[];return He(this,arguments,function(e){var t=this.parentNode;S.inArray(this,n)<0&&(S.cleanData(ve(this)),t&&t.replaceChild(e,this))},n)}}),S.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(e,a){S.fn[e]=function(e){for(var t,n=[],r=S(e),i=r.length-1,o=0;o<=i;o++)t=o===i?this:this.clone(!0),S(r[o])[a](t),u.apply(n,t.get());return this.pushStack(n)}});var Pe=new RegExp("^("+ee+")(?!px)[a-z%]+$","i"),Re=function(e){var t=e.ownerDocument.defaultView;return t&&t.opener||(t=C),t.getComputedStyle(e)},Me=function(e,t,n){var r,i,o={};for(i in t)o[i]=e.style[i],e.style[i]=t[i];for(i in r=n.call(e),t)e.style[i]=o[i];return r},Ie=new RegExp(ne.join("|"),"i");function We(e,t,n){var r,i,o,a,s=e.style;return(n=n||Re(e))&&(""!==(a=n.getPropertyValue(t)||n[t])||ie(e)||(a=S.style(e,t)),!y.pixelBoxStyles()&&Pe.test(a)&&Ie.test(t)&&(r=s.width,i=s.minWidth,o=s.maxWidth,s.minWidth=s.maxWidth=s.width=a,a=n.width,s.width=r,s.minWidth=i,s.maxWidth=o)),void 0!==a?a+"":a}function Fe(e,t){return{get:function(){if(!e())return(this.get=t).apply(this,arguments);delete this.get}}}!function(){function e(){if(l){u.style.cssText="position:absolute;left:-11111px;width:60px;margin-top:1px;padding:0;border:0",l.style.cssText="position:relative;display:block;box-sizing:border-box;overflow:scroll;margin:auto;border:1px;padding:1px;width:60%;top:1%",re.appendChild(u).appendChild(l);var e=C.getComputedStyle(l);n="1%"!==e.top,s=12===t(e.marginLeft),l.style.right="60%",o=36===t(e.right),r=36===t(e.width),l.style.position="absolute",i=12===t(l.offsetWidth/3),re.removeChild(u),l=null}}function t(e){return Math.round(parseFloat(e))}var n,r,i,o,a,s,u=E.createElement("div"),l=E.createElement("div");l.style&&(l.style.backgroundClip="content-box",l.cloneNode(!0).style.backgroundClip="",y.clearCloneStyle="content-box"===l.style.backgroundClip,S.extend(y,{boxSizingReliable:function(){return e(),r},pixelBoxStyles:function(){return e(),o},pixelPosition:function(){return e(),n},reliableMarginLeft:function(){return e(),s},scrollboxSize:function(){return e(),i},reliableTrDimensions:function(){var e,t,n,r;return null==a&&(e=E.createElement("table"),t=E.createElement("tr"),n=E.createElement("div"),e.style.cssText="position:absolute;left:-11111px;border-collapse:separate",t.style.cssText="border:1px solid",t.style.height="1px",n.style.height="9px",n.style.display="block",re.appendChild(e).appendChild(t).appendChild(n),r=C.getComputedStyle(t),a=parseInt(r.height,10)+parseInt(r.borderTopWidth,10)+parseInt(r.borderBottomWidth,10)===t.offsetHeight,re.removeChild(e)),a}}))}();var Be=["Webkit","Moz","ms"],$e=E.createElement("div").style,_e={};function ze(e){var t=S.cssProps[e]||_e[e];return t||(e in $e?e:_e[e]=function(e){var t=e[0].toUpperCase()+e.slice(1),n=Be.length;while(n--)if((e=Be[n]+t)in $e)return e}(e)||e)}var Ue=/^(none|table(?!-c[ea]).+)/,Xe=/^--/,Ve={position:"absolute",visibility:"hidden",display:"block"},Ge={letterSpacing:"0",fontWeight:"400"};function Ye(e,t,n){var r=te.exec(t);return r?Math.max(0,r[2]-(n||0))+(r[3]||"px"):t}function Qe(e,t,n,r,i,o){var a="width"===t?1:0,s=0,u=0;if(n===(r?"border":"content"))return 0;for(;a<4;a+=2)"margin"===n&&(u+=S.css(e,n+ne[a],!0,i)),r?("content"===n&&(u-=S.css(e,"padding"+ne[a],!0,i)),"margin"!==n&&(u-=S.css(e,"border"+ne[a]+"Width",!0,i))):(u+=S.css(e,"padding"+ne[a],!0,i),"padding"!==n?u+=S.css(e,"border"+ne[a]+"Width",!0,i):s+=S.css(e,"border"+ne[a]+"Width",!0,i));return!r&&0<=o&&(u+=Math.max(0,Math.ceil(e["offset"+t[0].toUpperCase()+t.slice(1)]-o-u-s-.5))||0),u}function Je(e,t,n){var r=Re(e),i=(!y.boxSizingReliable()||n)&&"border-box"===S.css(e,"boxSizing",!1,r),o=i,a=We(e,t,r),s="offset"+t[0].toUpperCase()+t.slice(1);if(Pe.test(a)){if(!n)return a;a="auto"}return(!y.boxSizingReliable()&&i||!y.reliableTrDimensions()&&A(e,"tr")||"auto"===a||!parseFloat(a)&&"inline"===S.css(e,"display",!1,r))&&e.getClientRects().length&&(i="border-box"===S.css(e,"boxSizing",!1,r),(o=s in e)&&(a=e[s])),(a=parseFloat(a)||0)+Qe(e,t,n||(i?"border":"content"),o,r,a)+"px"}function Ke(e,t,n,r,i){return new Ke.prototype.init(e,t,n,r,i)}S.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=We(e,"opacity");return""===n?"1":n}}}},cssNumber:{animationIterationCount:!0,columnCount:!0,fillOpacity:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,gridArea:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnStart:!0,gridRow:!0,gridRowEnd:!0,gridRowStart:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{},style:function(e,t,n,r){if(e&&3!==e.nodeType&&8!==e.nodeType&&e.style){var i,o,a,s=X(t),u=Xe.test(t),l=e.style;if(u||(t=ze(s)),a=S.cssHooks[t]||S.cssHooks[s],void 0===n)return a&&"get"in a&&void 0!==(i=a.get(e,!1,r))?i:l[t];"string"===(o=typeof n)&&(i=te.exec(n))&&i[1]&&(n=se(e,t,i),o="number"),null!=n&&n==n&&("number"!==o||u||(n+=i&&i[3]||(S.cssNumber[s]?"":"px")),y.clearCloneStyle||""!==n||0!==t.indexOf("background")||(l[t]="inherit"),a&&"set"in a&&void 0===(n=a.set(e,n,r))||(u?l.setProperty(t,n):l[t]=n))}},css:function(e,t,n,r){var i,o,a,s=X(t);return Xe.test(t)||(t=ze(s)),(a=S.cssHooks[t]||S.cssHooks[s])&&"get"in a&&(i=a.get(e,!0,n)),void 0===i&&(i=We(e,t,r)),"normal"===i&&t in Ge&&(i=Ge[t]),""===n||n?(o=parseFloat(i),!0===n||isFinite(o)?o||0:i):i}}),S.each(["height","width"],function(e,u){S.cssHooks[u]={get:function(e,t,n){if(t)return!Ue.test(S.css(e,"display"))||e.getClientRects().length&&e.getBoundingClientRect().width?Je(e,u,n):Me(e,Ve,function(){return Je(e,u,n)})},set:function(e,t,n){var r,i=Re(e),o=!y.scrollboxSize()&&"absolute"===i.position,a=(o||n)&&"border-box"===S.css(e,"boxSizing",!1,i),s=n?Qe(e,u,n,a,i):0;return a&&o&&(s-=Math.ceil(e["offset"+u[0].toUpperCase()+u.slice(1)]-parseFloat(i[u])-Qe(e,u,"border",!1,i)-.5)),s&&(r=te.exec(t))&&"px"!==(r[3]||"px")&&(e.style[u]=t,t=S.css(e,u)),Ye(0,t,s)}}}),S.cssHooks.marginLeft=Fe(y.reliableMarginLeft,function(e,t){if(t)return(parseFloat(We(e,"marginLeft"))||e.getBoundingClientRect().left-Me(e,{marginLeft:0},function(){return e.getBoundingClientRect().left}))+"px"}),S.each({margin:"",padding:"",border:"Width"},function(i,o){S.cssHooks[i+o]={expand:function(e){for(var t=0,n={},r="string"==typeof e?e.split(" "):[e];t<4;t++)n[i+ne[t]+o]=r[t]||r[t-2]||r[0];return n}},"margin"!==i&&(S.cssHooks[i+o].set=Ye)}),S.fn.extend({css:function(e,t){return $(this,function(e,t,n){var r,i,o={},a=0;if(Array.isArray(t)){for(r=Re(e),i=t.length;a<i;a++)o[t[a]]=S.css(e,t[a],!1,r);return o}return void 0!==n?S.style(e,t,n):S.css(e,t)},e,t,1<arguments.length)}}),((S.Tween=Ke).prototype={constructor:Ke,init:function(e,t,n,r,i,o){this.elem=e,this.prop=n,this.easing=i||S.easing._default,this.options=t,this.start=this.now=this.cur(),this.end=r,this.unit=o||(S.cssNumber[n]?"":"px")},cur:function(){var e=Ke.propHooks[this.prop];return e&&e.get?e.get(this):Ke.propHooks._default.get(this)},run:function(e){var t,n=Ke.propHooks[this.prop];return this.options.duration?this.pos=t=S.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration):this.pos=t=e,this.now=(this.end-this.start)*t+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),n&&n.set?n.set(this):Ke.propHooks._default.set(this),this}}).init.prototype=Ke.prototype,(Ke.propHooks={_default:{get:function(e){var t;return 1!==e.elem.nodeType||null!=e.elem[e.prop]&&null==e.elem.style[e.prop]?e.elem[e.prop]:(t=S.css(e.elem,e.prop,""))&&"auto"!==t?t:0},set:function(e){S.fx.step[e.prop]?S.fx.step[e.prop](e):1!==e.elem.nodeType||!S.cssHooks[e.prop]&&null==e.elem.style[ze(e.prop)]?e.elem[e.prop]=e.now:S.style(e.elem,e.prop,e.now+e.unit)}}}).scrollTop=Ke.propHooks.scrollLeft={set:function(e){e.elem.nodeType&&e.elem.parentNode&&(e.elem[e.prop]=e.now)}},S.easing={linear:function(e){return e},swing:function(e){return.5-Math.cos(e*Math.PI)/2},_default:"swing"},S.fx=Ke.prototype.init,S.fx.step={};var Ze,et,tt,nt,rt=/^(?:toggle|show|hide)$/,it=/queueHooks$/;function ot(){et&&(!1===E.hidden&&C.requestAnimationFrame?C.requestAnimationFrame(ot):C.setTimeout(ot,S.fx.interval),S.fx.tick())}function at(){return C.setTimeout(function(){Ze=void 0}),Ze=Date.now()}function st(e,t){var n,r=0,i={height:e};for(t=t?1:0;r<4;r+=2-t)i["margin"+(n=ne[r])]=i["padding"+n]=e;return t&&(i.opacity=i.width=e),i}function ut(e,t,n){for(var r,i=(lt.tweeners[t]||[]).concat(lt.tweeners["*"]),o=0,a=i.length;o<a;o++)if(r=i[o].call(n,t,e))return r}function lt(o,e,t){var n,a,r=0,i=lt.prefilters.length,s=S.Deferred().always(function(){delete u.elem}),u=function(){if(a)return!1;for(var e=Ze||at(),t=Math.max(0,l.startTime+l.duration-e),n=1-(t/l.duration||0),r=0,i=l.tweens.length;r<i;r++)l.tweens[r].run(n);return s.notifyWith(o,[l,n,t]),n<1&&i?t:(i||s.notifyWith(o,[l,1,0]),s.resolveWith(o,[l]),!1)},l=s.promise({elem:o,props:S.extend({},e),opts:S.extend(!0,{specialEasing:{},easing:S.easing._default},t),originalProperties:e,originalOptions:t,startTime:Ze||at(),duration:t.duration,tweens:[],createTween:function(e,t){var n=S.Tween(o,l.opts,e,t,l.opts.specialEasing[e]||l.opts.easing);return l.tweens.push(n),n},stop:function(e){var t=0,n=e?l.tweens.length:0;if(a)return this;for(a=!0;t<n;t++)l.tweens[t].run(1);return e?(s.notifyWith(o,[l,1,0]),s.resolveWith(o,[l,e])):s.rejectWith(o,[l,e]),this}}),c=l.props;for(!function(e,t){var n,r,i,o,a;for(n in e)if(i=t[r=X(n)],o=e[n],Array.isArray(o)&&(i=o[1],o=e[n]=o[0]),n!==r&&(e[r]=o,delete e[n]),(a=S.cssHooks[r])&&"expand"in a)for(n in o=a.expand(o),delete e[r],o)n in e||(e[n]=o[n],t[n]=i);else t[r]=i}(c,l.opts.specialEasing);r<i;r++)if(n=lt.prefilters[r].call(l,o,c,l.opts))return m(n.stop)&&(S._queueHooks(l.elem,l.opts.queue).stop=n.stop.bind(n)),n;return S.map(c,ut,l),m(l.opts.start)&&l.opts.start.call(o,l),l.progress(l.opts.progress).done(l.opts.done,l.opts.complete).fail(l.opts.fail).always(l.opts.always),S.fx.timer(S.extend(u,{elem:o,anim:l,queue:l.opts.queue})),l}S.Animation=S.extend(lt,{tweeners:{"*":[function(e,t){var n=this.createTween(e,t);return se(n.elem,e,te.exec(t),n),n}]},tweener:function(e,t){m(e)?(t=e,e=["*"]):e=e.match(P);for(var n,r=0,i=e.length;r<i;r++)n=e[r],lt.tweeners[n]=lt.tweeners[n]||[],lt.tweeners[n].unshift(t)},prefilters:[function(e,t,n){var r,i,o,a,s,u,l,c,f="width"in t||"height"in t,p=this,d={},h=e.style,g=e.nodeType&&ae(e),v=Y.get(e,"fxshow");for(r in n.queue||(null==(a=S._queueHooks(e,"fx")).unqueued&&(a.unqueued=0,s=a.empty.fire,a.empty.fire=function(){a.unqueued||s()}),a.unqueued++,p.always(function(){p.always(function(){a.unqueued--,S.queue(e,"fx").length||a.empty.fire()})})),t)if(i=t[r],rt.test(i)){if(delete t[r],o=o||"toggle"===i,i===(g?"hide":"show")){if("show"!==i||!v||void 0===v[r])continue;g=!0}d[r]=v&&v[r]||S.style(e,r)}if((u=!S.isEmptyObject(t))||!S.isEmptyObject(d))for(r in f&&1===e.nodeType&&(n.overflow=[h.overflow,h.overflowX,h.overflowY],null==(l=v&&v.display)&&(l=Y.get(e,"display")),"none"===(c=S.css(e,"display"))&&(l?c=l:(le([e],!0),l=e.style.display||l,c=S.css(e,"display"),le([e]))),("inline"===c||"inline-block"===c&&null!=l)&&"none"===S.css(e,"float")&&(u||(p.done(function(){h.display=l}),null==l&&(c=h.display,l="none"===c?"":c)),h.display="inline-block")),n.overflow&&(h.overflow="hidden",p.always(function(){h.overflow=n.overflow[0],h.overflowX=n.overflow[1],h.overflowY=n.overflow[2]})),u=!1,d)u||(v?"hidden"in v&&(g=v.hidden):v=Y.access(e,"fxshow",{display:l}),o&&(v.hidden=!g),g&&le([e],!0),p.done(function(){for(r in g||le([e]),Y.remove(e,"fxshow"),d)S.style(e,r,d[r])})),u=ut(g?v[r]:0,r,p),r in v||(v[r]=u.start,g&&(u.end=u.start,u.start=0))}],prefilter:function(e,t){t?lt.prefilters.unshift(e):lt.prefilters.push(e)}}),S.speed=function(e,t,n){var r=e&&"object"==typeof e?S.extend({},e):{complete:n||!n&&t||m(e)&&e,duration:e,easing:n&&t||t&&!m(t)&&t};return S.fx.off?r.duration=0:"number"!=typeof r.duration&&(r.duration in S.fx.speeds?r.duration=S.fx.speeds[r.duration]:r.duration=S.fx.speeds._default),null!=r.queue&&!0!==r.queue||(r.queue="fx"),r.old=r.complete,r.complete=function(){m(r.old)&&r.old.call(this),r.queue&&S.dequeue(this,r.queue)},r},S.fn.extend({fadeTo:function(e,t,n,r){return this.filter(ae).css("opacity",0).show().end().animate({opacity:t},e,n,r)},animate:function(t,e,n,r){var i=S.isEmptyObject(t),o=S.speed(e,n,r),a=function(){var e=lt(this,S.extend({},t),o);(i||Y.get(this,"finish"))&&e.stop(!0)};return a.finish=a,i||!1===o.queue?this.each(a):this.queue(o.queue,a)},stop:function(i,e,o){var a=function(e){var t=e.stop;delete e.stop,t(o)};return"string"!=typeof i&&(o=e,e=i,i=void 0),e&&this.queue(i||"fx",[]),this.each(function(){var e=!0,t=null!=i&&i+"queueHooks",n=S.timers,r=Y.get(this);if(t)r[t]&&r[t].stop&&a(r[t]);else for(t in r)r[t]&&r[t].stop&&it.test(t)&&a(r[t]);for(t=n.length;t--;)n[t].elem!==this||null!=i&&n[t].queue!==i||(n[t].anim.stop(o),e=!1,n.splice(t,1));!e&&o||S.dequeue(this,i)})},finish:function(a){return!1!==a&&(a=a||"fx"),this.each(function(){var e,t=Y.get(this),n=t[a+"queue"],r=t[a+"queueHooks"],i=S.timers,o=n?n.length:0;for(t.finish=!0,S.queue(this,a,[]),r&&r.stop&&r.stop.call(this,!0),e=i.length;e--;)i[e].elem===this&&i[e].queue===a&&(i[e].anim.stop(!0),i.splice(e,1));for(e=0;e<o;e++)n[e]&&n[e].finish&&n[e].finish.call(this);delete t.finish})}}),S.each(["toggle","show","hide"],function(e,r){var i=S.fn[r];S.fn[r]=function(e,t,n){return null==e||"boolean"==typeof e?i.apply(this,arguments):this.animate(st(r,!0),e,t,n)}}),S.each({slideDown:st("show"),slideUp:st("hide"),slideToggle:st("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(e,r){S.fn[e]=function(e,t,n){return this.animate(r,e,t,n)}}),S.timers=[],S.fx.tick=function(){var e,t=0,n=S.timers;for(Ze=Date.now();t<n.length;t++)(e=n[t])()||n[t]!==e||n.splice(t--,1);n.length||S.fx.stop(),Ze=void 0},S.fx.timer=function(e){S.timers.push(e),S.fx.start()},S.fx.interval=13,S.fx.start=function(){et||(et=!0,ot())},S.fx.stop=function(){et=null},S.fx.speeds={slow:600,fast:200,_default:400},S.fn.delay=function(r,e){return r=S.fx&&S.fx.speeds[r]||r,e=e||"fx",this.queue(e,function(e,t){var n=C.setTimeout(e,r);t.stop=function(){C.clearTimeout(n)}})},tt=E.createElement("input"),nt=E.createElement("select").appendChild(E.createElement("option")),tt.type="checkbox",y.checkOn=""!==tt.value,y.optSelected=nt.selected,(tt=E.createElement("input")).value="t",tt.type="radio",y.radioValue="t"===tt.value;var ct,ft=S.expr.attrHandle;S.fn.extend({attr:function(e,t){return $(this,S.attr,e,t,1<arguments.length)},removeAttr:function(e){return this.each(function(){S.removeAttr(this,e)})}}),S.extend({attr:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o)return"undefined"==typeof e.getAttribute?S.prop(e,t,n):(1===o&&S.isXMLDoc(e)||(i=S.attrHooks[t.toLowerCase()]||(S.expr.match.bool.test(t)?ct:void 0)),void 0!==n?null===n?void S.removeAttr(e,t):i&&"set"in i&&void 0!==(r=i.set(e,n,t))?r:(e.setAttribute(t,n+""),n):i&&"get"in i&&null!==(r=i.get(e,t))?r:null==(r=S.find.attr(e,t))?void 0:r)},attrHooks:{type:{set:function(e,t){if(!y.radioValue&&"radio"===t&&A(e,"input")){var n=e.value;return e.setAttribute("type",t),n&&(e.value=n),t}}}},removeAttr:function(e,t){var n,r=0,i=t&&t.match(P);if(i&&1===e.nodeType)while(n=i[r++])e.removeAttribute(n)}}),ct={set:function(e,t,n){return!1===t?S.removeAttr(e,n):e.setAttribute(n,n),n}},S.each(S.expr.match.bool.source.match(/\w+/g),function(e,t){var a=ft[t]||S.find.attr;ft[t]=function(e,t,n){var r,i,o=t.toLowerCase();return n||(i=ft[o],ft[o]=r,r=null!=a(e,t,n)?o:null,ft[o]=i),r}});var pt=/^(?:input|select|textarea|button)$/i,dt=/^(?:a|area)$/i;function ht(e){return(e.match(P)||[]).join(" ")}function gt(e){return e.getAttribute&&e.getAttribute("class")||""}function vt(e){return Array.isArray(e)?e:"string"==typeof e&&e.match(P)||[]}S.fn.extend({prop:function(e,t){return $(this,S.prop,e,t,1<arguments.length)},removeProp:function(e){return this.each(function(){delete this[S.propFix[e]||e]})}}),S.extend({prop:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o)return 1===o&&S.isXMLDoc(e)||(t=S.propFix[t]||t,i=S.propHooks[t]),void 0!==n?i&&"set"in i&&void 0!==(r=i.set(e,n,t))?r:e[t]=n:i&&"get"in i&&null!==(r=i.get(e,t))?r:e[t]},propHooks:{tabIndex:{get:function(e){var t=S.find.attr(e,"tabindex");return t?parseInt(t,10):pt.test(e.nodeName)||dt.test(e.nodeName)&&e.href?0:-1}}},propFix:{"for":"htmlFor","class":"className"}}),y.optSelected||(S.propHooks.selected={get:function(e){var t=e.parentNode;return t&&t.parentNode&&t.parentNode.selectedIndex,null},set:function(e){var t=e.parentNode;t&&(t.selectedIndex,t.parentNode&&t.parentNode.selectedIndex)}}),S.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){S.propFix[this.toLowerCase()]=this}),S.fn.extend({addClass:function(t){var e,n,r,i,o,a,s,u=0;if(m(t))return this.each(function(e){S(this).addClass(t.call(this,e,gt(this)))});if((e=vt(t)).length)while(n=this[u++])if(i=gt(n),r=1===n.nodeType&&" "+ht(i)+" "){a=0;while(o=e[a++])r.indexOf(" "+o+" ")<0&&(r+=o+" ");i!==(s=ht(r))&&n.setAttribute("class",s)}return this},removeClass:function(t){var e,n,r,i,o,a,s,u=0;if(m(t))return this.each(function(e){S(this).removeClass(t.call(this,e,gt(this)))});if(!arguments.length)return this.attr("class","");if((e=vt(t)).length)while(n=this[u++])if(i=gt(n),r=1===n.nodeType&&" "+ht(i)+" "){a=0;while(o=e[a++])while(-1<r.indexOf(" "+o+" "))r=r.replace(" "+o+" "," ");i!==(s=ht(r))&&n.setAttribute("class",s)}return this},toggleClass:function(i,t){var o=typeof i,a="string"===o||Array.isArray(i);return"boolean"==typeof t&&a?t?this.addClass(i):this.removeClass(i):m(i)?this.each(function(e){S(this).toggleClass(i.call(this,e,gt(this),t),t)}):this.each(function(){var e,t,n,r;if(a){t=0,n=S(this),r=vt(i);while(e=r[t++])n.hasClass(e)?n.removeClass(e):n.addClass(e)}else void 0!==i&&"boolean"!==o||((e=gt(this))&&Y.set(this,"__className__",e),this.setAttribute&&this.setAttribute("class",e||!1===i?"":Y.get(this,"__className__")||""))})},hasClass:function(e){var t,n,r=0;t=" "+e+" ";while(n=this[r++])if(1===n.nodeType&&-1<(" "+ht(gt(n))+" ").indexOf(t))return!0;return!1}});var yt=/\r/g;S.fn.extend({val:function(n){var r,e,i,t=this[0];return arguments.length?(i=m(n),this.each(function(e){var t;1===this.nodeType&&(null==(t=i?n.call(this,e,S(this).val()):n)?t="":"number"==typeof t?t+="":Array.isArray(t)&&(t=S.map(t,function(e){return null==e?"":e+""})),(r=S.valHooks[this.type]||S.valHooks[this.nodeName.toLowerCase()])&&"set"in r&&void 0!==r.set(this,t,"value")||(this.value=t))})):t?(r=S.valHooks[t.type]||S.valHooks[t.nodeName.toLowerCase()])&&"get"in r&&void 0!==(e=r.get(t,"value"))?e:"string"==typeof(e=t.value)?e.replace(yt,""):null==e?"":e:void 0}}),S.extend({valHooks:{option:{get:function(e){var t=S.find.attr(e,"value");return null!=t?t:ht(S.text(e))}},select:{get:function(e){var t,n,r,i=e.options,o=e.selectedIndex,a="select-one"===e.type,s=a?null:[],u=a?o+1:i.length;for(r=o<0?u:a?o:0;r<u;r++)if(((n=i[r]).selected||r===o)&&!n.disabled&&(!n.parentNode.disabled||!A(n.parentNode,"optgroup"))){if(t=S(n).val(),a)return t;s.push(t)}return s},set:function(e,t){var n,r,i=e.options,o=S.makeArray(t),a=i.length;while(a--)((r=i[a]).selected=-1<S.inArray(S.valHooks.option.get(r),o))&&(n=!0);return n||(e.selectedIndex=-1),o}}}}),S.each(["radio","checkbox"],function(){S.valHooks[this]={set:function(e,t){if(Array.isArray(t))return e.checked=-1<S.inArray(S(e).val(),t)}},y.checkOn||(S.valHooks[this].get=function(e){return null===e.getAttribute("value")?"on":e.value})}),y.focusin="onfocusin"in C;var mt=/^(?:focusinfocus|focusoutblur)$/,xt=function(e){e.stopPropagation()};S.extend(S.event,{trigger:function(e,t,n,r){var i,o,a,s,u,l,c,f,p=[n||E],d=v.call(e,"type")?e.type:e,h=v.call(e,"namespace")?e.namespace.split("."):[];if(o=f=a=n=n||E,3!==n.nodeType&&8!==n.nodeType&&!mt.test(d+S.event.triggered)&&(-1<d.indexOf(".")&&(d=(h=d.split(".")).shift(),h.sort()),u=d.indexOf(":")<0&&"on"+d,(e=e[S.expando]?e:new S.Event(d,"object"==typeof e&&e)).isTrigger=r?2:3,e.namespace=h.join("."),e.rnamespace=e.namespace?new RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,e.result=void 0,e.target||(e.target=n),t=null==t?[e]:S.makeArray(t,[e]),c=S.event.special[d]||{},r||!c.trigger||!1!==c.trigger.apply(n,t))){if(!r&&!c.noBubble&&!x(n)){for(s=c.delegateType||d,mt.test(s+d)||(o=o.parentNode);o;o=o.parentNode)p.push(o),a=o;a===(n.ownerDocument||E)&&p.push(a.defaultView||a.parentWindow||C)}i=0;while((o=p[i++])&&!e.isPropagationStopped())f=o,e.type=1<i?s:c.bindType||d,(l=(Y.get(o,"events")||Object.create(null))[e.type]&&Y.get(o,"handle"))&&l.apply(o,t),(l=u&&o[u])&&l.apply&&V(o)&&(e.result=l.apply(o,t),!1===e.result&&e.preventDefault());return e.type=d,r||e.isDefaultPrevented()||c._default&&!1!==c._default.apply(p.pop(),t)||!V(n)||u&&m(n[d])&&!x(n)&&((a=n[u])&&(n[u]=null),S.event.triggered=d,e.isPropagationStopped()&&f.addEventListener(d,xt),n[d](),e.isPropagationStopped()&&f.removeEventListener(d,xt),S.event.triggered=void 0,a&&(n[u]=a)),e.result}},simulate:function(e,t,n){var r=S.extend(new S.Event,n,{type:e,isSimulated:!0});S.event.trigger(r,null,t)}}),S.fn.extend({trigger:function(e,t){return this.each(function(){S.event.trigger(e,t,this)})},triggerHandler:function(e,t){var n=this[0];if(n)return S.event.trigger(e,t,n,!0)}}),y.focusin||S.each({focus:"focusin",blur:"focusout"},function(n,r){var i=function(e){S.event.simulate(r,e.target,S.event.fix(e))};S.event.special[r]={setup:function(){var e=this.ownerDocument||this.document||this,t=Y.access(e,r);t||e.addEventListener(n,i,!0),Y.access(e,r,(t||0)+1)},teardown:function(){var e=this.ownerDocument||this.document||this,t=Y.access(e,r)-1;t?Y.access(e,r,t):(e.removeEventListener(n,i,!0),Y.remove(e,r))}}});var bt=C.location,wt={guid:Date.now()},Tt=/\?/;S.parseXML=function(e){var t,n;if(!e||"string"!=typeof e)return null;try{t=(new C.DOMParser).parseFromString(e,"text/xml")}catch(e){}return n=t&&t.getElementsByTagName("parsererror")[0],t&&!n||S.error("Invalid XML: "+(n?S.map(n.childNodes,function(e){return e.textContent}).join("\n"):e)),t};var Ct=/\[\]$/,Et=/\r?\n/g,St=/^(?:submit|button|image|reset|file)$/i,kt=/^(?:input|select|textarea|keygen)/i;function At(n,e,r,i){var t;if(Array.isArray(e))S.each(e,function(e,t){r||Ct.test(n)?i(n,t):At(n+"["+("object"==typeof t&&null!=t?e:"")+"]",t,r,i)});else if(r||"object"!==w(e))i(n,e);else for(t in e)At(n+"["+t+"]",e[t],r,i)}S.param=function(e,t){var n,r=[],i=function(e,t){var n=m(t)?t():t;r[r.length]=encodeURIComponent(e)+"="+encodeURIComponent(null==n?"":n)};if(null==e)return"";if(Array.isArray(e)||e.jquery&&!S.isPlainObject(e))S.each(e,function(){i(this.name,this.value)});else for(n in e)At(n,e[n],t,i);return r.join("&")},S.fn.extend({serialize:function(){return S.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var e=S.prop(this,"elements");return e?S.makeArray(e):this}).filter(function(){var e=this.type;return this.name&&!S(this).is(":disabled")&&kt.test(this.nodeName)&&!St.test(e)&&(this.checked||!pe.test(e))}).map(function(e,t){var n=S(this).val();return null==n?null:Array.isArray(n)?S.map(n,function(e){return{name:t.name,value:e.replace(Et,"\r\n")}}):{name:t.name,value:n.replace(Et,"\r\n")}}).get()}});var Nt=/%20/g,jt=/#.*$/,Dt=/([?&])_=[^&]*/,qt=/^(.*?):[ \t]*([^\r\n]*)$/gm,Lt=/^(?:GET|HEAD)$/,Ht=/^\/\//,Ot={},Pt={},Rt="*/".concat("*"),Mt=E.createElement("a");function It(o){return function(e,t){"string"!=typeof e&&(t=e,e="*");var n,r=0,i=e.toLowerCase().match(P)||[];if(m(t))while(n=i[r++])"+"===n[0]?(n=n.slice(1)||"*",(o[n]=o[n]||[]).unshift(t)):(o[n]=o[n]||[]).push(t)}}function Wt(t,i,o,a){var s={},u=t===Pt;function l(e){var r;return s[e]=!0,S.each(t[e]||[],function(e,t){var n=t(i,o,a);return"string"!=typeof n||u||s[n]?u?!(r=n):void 0:(i.dataTypes.unshift(n),l(n),!1)}),r}return l(i.dataTypes[0])||!s["*"]&&l("*")}function Ft(e,t){var n,r,i=S.ajaxSettings.flatOptions||{};for(n in t)void 0!==t[n]&&((i[n]?e:r||(r={}))[n]=t[n]);return r&&S.extend(!0,e,r),e}Mt.href=bt.href,S.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:bt.href,type:"GET",isLocal:/^(?:about|app|app-storage|.+-extension|file|res|widget):$/.test(bt.protocol),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":Rt,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/\bxml\b/,html:/\bhtml/,json:/\bjson\b/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":JSON.parse,"text xml":S.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(e,t){return t?Ft(Ft(e,S.ajaxSettings),t):Ft(S.ajaxSettings,e)},ajaxPrefilter:It(Ot),ajaxTransport:It(Pt),ajax:function(e,t){"object"==typeof e&&(t=e,e=void 0),t=t||{};var c,f,p,n,d,r,h,g,i,o,v=S.ajaxSetup({},t),y=v.context||v,m=v.context&&(y.nodeType||y.jquery)?S(y):S.event,x=S.Deferred(),b=S.Callbacks("once memory"),w=v.statusCode||{},a={},s={},u="canceled",T={readyState:0,getResponseHeader:function(e){var t;if(h){if(!n){n={};while(t=qt.exec(p))n[t[1].toLowerCase()+" "]=(n[t[1].toLowerCase()+" "]||[]).concat(t[2])}t=n[e.toLowerCase()+" "]}return null==t?null:t.join(", ")},getAllResponseHeaders:function(){return h?p:null},setRequestHeader:function(e,t){return null==h&&(e=s[e.toLowerCase()]=s[e.toLowerCase()]||e,a[e]=t),this},overrideMimeType:function(e){return null==h&&(v.mimeType=e),this},statusCode:function(e){var t;if(e)if(h)T.always(e[T.status]);else for(t in e)w[t]=[w[t],e[t]];return this},abort:function(e){var t=e||u;return c&&c.abort(t),l(0,t),this}};if(x.promise(T),v.url=((e||v.url||bt.href)+"").replace(Ht,bt.protocol+"//"),v.type=t.method||t.type||v.method||v.type,v.dataTypes=(v.dataType||"*").toLowerCase().match(P)||[""],null==v.crossDomain){r=E.createElement("a");try{r.href=v.url,r.href=r.href,v.crossDomain=Mt.protocol+"//"+Mt.host!=r.protocol+"//"+r.host}catch(e){v.crossDomain=!0}}if(v.data&&v.processData&&"string"!=typeof v.data&&(v.data=S.param(v.data,v.traditional)),Wt(Ot,v,t,T),h)return T;for(i in(g=S.event&&v.global)&&0==S.active++&&S.event.trigger("ajaxStart"),v.type=v.type.toUpperCase(),v.hasContent=!Lt.test(v.type),f=v.url.replace(jt,""),v.hasContent?v.data&&v.processData&&0===(v.contentType||"").indexOf("application/x-www-form-urlencoded")&&(v.data=v.data.replace(Nt,"+")):(o=v.url.slice(f.length),v.data&&(v.processData||"string"==typeof v.data)&&(f+=(Tt.test(f)?"&":"?")+v.data,delete v.data),!1===v.cache&&(f=f.replace(Dt,"$1"),o=(Tt.test(f)?"&":"?")+"_="+wt.guid+++o),v.url=f+o),v.ifModified&&(S.lastModified[f]&&T.setRequestHeader("If-Modified-Since",S.lastModified[f]),S.etag[f]&&T.setRequestHeader("If-None-Match",S.etag[f])),(v.data&&v.hasContent&&!1!==v.contentType||t.contentType)&&T.setRequestHeader("Content-Type",v.contentType),T.setRequestHeader("Accept",v.dataTypes[0]&&v.accepts[v.dataTypes[0]]?v.accepts[v.dataTypes[0]]+("*"!==v.dataTypes[0]?", "+Rt+"; q=0.01":""):v.accepts["*"]),v.headers)T.setRequestHeader(i,v.headers[i]);if(v.beforeSend&&(!1===v.beforeSend.call(y,T,v)||h))return T.abort();if(u="abort",b.add(v.complete),T.done(v.success),T.fail(v.error),c=Wt(Pt,v,t,T)){if(T.readyState=1,g&&m.trigger("ajaxSend",[T,v]),h)return T;v.async&&0<v.timeout&&(d=C.setTimeout(function(){T.abort("timeout")},v.timeout));try{h=!1,c.send(a,l)}catch(e){if(h)throw e;l(-1,e)}}else l(-1,"No Transport");function l(e,t,n,r){var i,o,a,s,u,l=t;h||(h=!0,d&&C.clearTimeout(d),c=void 0,p=r||"",T.readyState=0<e?4:0,i=200<=e&&e<300||304===e,n&&(s=function(e,t,n){var r,i,o,a,s=e.contents,u=e.dataTypes;while("*"===u[0])u.shift(),void 0===r&&(r=e.mimeType||t.getResponseHeader("Content-Type"));if(r)for(i in s)if(s[i]&&s[i].test(r)){u.unshift(i);break}if(u[0]in n)o=u[0];else{for(i in n){if(!u[0]||e.converters[i+" "+u[0]]){o=i;break}a||(a=i)}o=o||a}if(o)return o!==u[0]&&u.unshift(o),n[o]}(v,T,n)),!i&&-1<S.inArray("script",v.dataTypes)&&S.inArray("json",v.dataTypes)<0&&(v.converters["text script"]=function(){}),s=function(e,t,n,r){var i,o,a,s,u,l={},c=e.dataTypes.slice();if(c[1])for(a in e.converters)l[a.toLowerCase()]=e.converters[a];o=c.shift();while(o)if(e.responseFields[o]&&(n[e.responseFields[o]]=t),!u&&r&&e.dataFilter&&(t=e.dataFilter(t,e.dataType)),u=o,o=c.shift())if("*"===o)o=u;else if("*"!==u&&u!==o){if(!(a=l[u+" "+o]||l["* "+o]))for(i in l)if((s=i.split(" "))[1]===o&&(a=l[u+" "+s[0]]||l["* "+s[0]])){!0===a?a=l[i]:!0!==l[i]&&(o=s[0],c.unshift(s[1]));break}if(!0!==a)if(a&&e["throws"])t=a(t);else try{t=a(t)}catch(e){return{state:"parsererror",error:a?e:"No conversion from "+u+" to "+o}}}return{state:"success",data:t}}(v,s,T,i),i?(v.ifModified&&((u=T.getResponseHeader("Last-Modified"))&&(S.lastModified[f]=u),(u=T.getResponseHeader("etag"))&&(S.etag[f]=u)),204===e||"HEAD"===v.type?l="nocontent":304===e?l="notmodified":(l=s.state,o=s.data,i=!(a=s.error))):(a=l,!e&&l||(l="error",e<0&&(e=0))),T.status=e,T.statusText=(t||l)+"",i?x.resolveWith(y,[o,l,T]):x.rejectWith(y,[T,l,a]),T.statusCode(w),w=void 0,g&&m.trigger(i?"ajaxSuccess":"ajaxError",[T,v,i?o:a]),b.fireWith(y,[T,l]),g&&(m.trigger("ajaxComplete",[T,v]),--S.active||S.event.trigger("ajaxStop")))}return T},getJSON:function(e,t,n){return S.get(e,t,n,"json")},getScript:function(e,t){return S.get(e,void 0,t,"script")}}),S.each(["get","post"],function(e,i){S[i]=function(e,t,n,r){return m(t)&&(r=r||n,n=t,t=void 0),S.ajax(S.extend({url:e,type:i,dataType:r,data:t,success:n},S.isPlainObject(e)&&e))}}),S.ajaxPrefilter(function(e){var t;for(t in e.headers)"content-type"===t.toLowerCase()&&(e.contentType=e.headers[t]||"")}),S._evalUrl=function(e,t,n){return S.ajax({url:e,type:"GET",dataType:"script",cache:!0,async:!1,global:!1,converters:{"text script":function(){}},dataFilter:function(e){S.globalEval(e,t,n)}})},S.fn.extend({wrapAll:function(e){var t;return this[0]&&(m(e)&&(e=e.call(this[0])),t=S(e,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&t.insertBefore(this[0]),t.map(function(){var e=this;while(e.firstElementChild)e=e.firstElementChild;return e}).append(this)),this},wrapInner:function(n){return m(n)?this.each(function(e){S(this).wrapInner(n.call(this,e))}):this.each(function(){var e=S(this),t=e.contents();t.length?t.wrapAll(n):e.append(n)})},wrap:function(t){var n=m(t);return this.each(function(e){S(this).wrapAll(n?t.call(this,e):t)})},unwrap:function(e){return this.parent(e).not("body").each(function(){S(this).replaceWith(this.childNodes)}),this}}),S.expr.pseudos.hidden=function(e){return!S.expr.pseudos.visible(e)},S.expr.pseudos.visible=function(e){return!!(e.offsetWidth||e.offsetHeight||e.getClientRects().length)},S.ajaxSettings.xhr=function(){try{return new C.XMLHttpRequest}catch(e){}};var Bt={0:200,1223:204},$t=S.ajaxSettings.xhr();y.cors=!!$t&&"withCredentials"in $t,y.ajax=$t=!!$t,S.ajaxTransport(function(i){var o,a;if(y.cors||$t&&!i.crossDomain)return{send:function(e,t){var n,r=i.xhr();if(r.open(i.type,i.url,i.async,i.username,i.password),i.xhrFields)for(n in i.xhrFields)r[n]=i.xhrFields[n];for(n in i.mimeType&&r.overrideMimeType&&r.overrideMimeType(i.mimeType),i.crossDomain||e["X-Requested-With"]||(e["X-Requested-With"]="XMLHttpRequest"),e)r.setRequestHeader(n,e[n]);o=function(e){return function(){o&&(o=a=r.onload=r.onerror=r.onabort=r.ontimeout=r.onreadystatechange=null,"abort"===e?r.abort():"error"===e?"number"!=typeof r.status?t(0,"error"):t(r.status,r.statusText):t(Bt[r.status]||r.status,r.statusText,"text"!==(r.responseType||"text")||"string"!=typeof r.responseText?{binary:r.response}:{text:r.responseText},r.getAllResponseHeaders()))}},r.onload=o(),a=r.onerror=r.ontimeout=o("error"),void 0!==r.onabort?r.onabort=a:r.onreadystatechange=function(){4===r.readyState&&C.setTimeout(function(){o&&a()})},o=o("abort");try{r.send(i.hasContent&&i.data||null)}catch(e){if(o)throw e}},abort:function(){o&&o()}}}),S.ajaxPrefilter(function(e){e.crossDomain&&(e.contents.script=!1)}),S.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/\b(?:java|ecma)script\b/},converters:{"text script":function(e){return S.globalEval(e),e}}}),S.ajaxPrefilter("script",function(e){void 0===e.cache&&(e.cache=!1),e.crossDomain&&(e.type="GET")}),S.ajaxTransport("script",function(n){var r,i;if(n.crossDomain||n.scriptAttrs)return{send:function(e,t){r=S("<script>").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on("load error",i=function(e){r.remove(),i=null,e&&t("error"===e.type?404:200,e.type)}),E.head.appendChild(r[0])},abort:function(){i&&i()}}});var _t,zt=[],Ut=/(=)\?(?=&|$)|\?\?/;S.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=zt.pop()||S.expando+"_"+wt.guid++;return this[e]=!0,e}}),S.ajaxPrefilter("json jsonp",function(e,t,n){var r,i,o,a=!1!==e.jsonp&&(Ut.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Ut.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return r=e.jsonpCallback=m(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Ut,"$1"+r):!1!==e.jsonp&&(e.url+=(Tt.test(e.url)?"&":"?")+e.jsonp+"="+r),e.converters["script json"]=function(){return o||S.error(r+" was not called"),o[0]},e.dataTypes[0]="json",i=C[r],C[r]=function(){o=arguments},n.always(function(){void 0===i?S(C).removeProp(r):C[r]=i,e[r]&&(e.jsonpCallback=t.jsonpCallback,zt.push(r)),o&&m(i)&&i(o[0]),o=i=void 0}),"script"}),y.createHTMLDocument=((_t=E.implementation.createHTMLDocument("").body).innerHTML="<form></form><form></form>",2===_t.childNodes.length),S.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(y.createHTMLDocument?((r=(t=E.implementation.createHTMLDocument("")).createElement("base")).href=E.location.href,t.head.appendChild(r)):t=E),o=!n&&[],(i=N.exec(e))?[t.createElement(i[1])]:(i=xe([e],t,o),o&&o.length&&S(o).remove(),S.merge([],i.childNodes)));var r,i,o},S.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return-1<s&&(r=ht(e.slice(s)),e=e.slice(0,s)),m(t)?(n=t,t=void 0):t&&"object"==typeof t&&(i="POST"),0<a.length&&S.ajax({url:e,type:i||"GET",dataType:"html",data:t}).done(function(e){o=arguments,a.html(r?S("<div>").append(S.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},S.expr.pseudos.animated=function(t){return S.grep(S.timers,function(e){return t===e.elem}).length},S.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=S.css(e,"position"),c=S(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=S.css(e,"top"),u=S.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),m(t)&&(t=t.call(e,n,S.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):c.css(f)}},S.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){S.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===S.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===S.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=S(e).offset()).top+=S.css(e,"borderTopWidth",!0),i.left+=S.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-S.css(r,"marginTop",!0),left:t.left-i.left-S.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===S.css(e,"position"))e=e.offsetParent;return e||re})}}),S.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;S.fn[t]=function(e){return $(this,function(e,t,n){var r;if(x(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),S.each(["top","left"],function(e,n){S.cssHooks[n]=Fe(y.pixelPosition,function(e,t){if(t)return t=We(e,n),Pe.test(t)?S(e).position()[n]+"px":t})}),S.each({Height:"height",Width:"width"},function(a,s){S.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){S.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return $(this,function(e,t,n){var r;return x(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?S.css(e,t,i):S.style(e,t,n,i)},s,n?e:void 0,n)}})}),S.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){S.fn[t]=function(e){return this.on(t,e)}}),S.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)},hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),S.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){S.fn[n]=function(e,t){return 0<arguments.length?this.on(n,null,e,t):this.trigger(n)}});var Xt=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g;S.proxy=function(e,t){var n,r,i;if("string"==typeof t&&(n=e[t],t=e,e=n),m(e))return r=s.call(arguments,2),(i=function(){return e.apply(t||this,r.concat(s.call(arguments)))}).guid=e.guid=e.guid||S.guid++,i},S.holdReady=function(e){e?S.readyWait++:S.ready(!0)},S.isArray=Array.isArray,S.parseJSON=JSON.parse,S.nodeName=A,S.isFunction=m,S.isWindow=x,S.camelCase=X,S.type=w,S.now=Date.now,S.isNumeric=function(e){var t=S.type(e);return("number"===t||"string"===t)&&!isNaN(e-parseFloat(e))},S.trim=function(e){return null==e?"":(e+"").replace(Xt,"")},"function"==typeof define&&define.amd&&define("jquery",[],function(){return S});var Vt=C.jQuery,Gt=C.$;return S.noConflict=function(e){return C.$===S&&(C.$=Gt),e&&C.jQuery===S&&(C.jQuery=Vt),S},"undefined"==typeof e&&(C.jQuery=C.$=S),S});
(-)a/koha-tmpl/intranet-tmpl/lib/jquery/jquery-migrate-1.3.0.js (-702 lines)
Lines 1-702 Link Here
1
/*!
2
 * jQuery Migrate - v1.3.0 - 2016-01-13
3
 * Copyright jQuery Foundation and other contributors
4
 */
5
(function( jQuery, window, undefined ) {
6
// See http://bugs.jquery.com/ticket/13335
7
// "use strict";
8
9
10
jQuery.migrateVersion = "1.3.0";
11
12
13
var warnedAbout = {};
14
15
// List of warnings already given; public read only
16
jQuery.migrateWarnings = [];
17
18
// Set to true to prevent console output; migrateWarnings still maintained
19
// jQuery.migrateMute = false;
20
21
// Show a message on the console so devs know we're active
22
if ( !jQuery.migrateMute && window.console && window.console.log ) {
23
	window.console.log("JQMIGRATE: Logging is active");
24
}
25
26
// Set to false to disable traces that appear with warnings
27
if ( jQuery.migrateTrace === undefined ) {
28
	jQuery.migrateTrace = true;
29
}
30
31
// Forget any warnings we've already given; public
32
jQuery.migrateReset = function() {
33
	warnedAbout = {};
34
	jQuery.migrateWarnings.length = 0;
35
};
36
37
function migrateWarn( msg) {
38
	var console = window.console;
39
	if ( !warnedAbout[ msg ] ) {
40
		warnedAbout[ msg ] = true;
41
		jQuery.migrateWarnings.push( msg );
42
		if ( console && console.warn && !jQuery.migrateMute ) {
43
			console.warn( "JQMIGRATE: " + msg );
44
			if ( jQuery.migrateTrace && console.trace ) {
45
				console.trace();
46
			}
47
		}
48
	}
49
}
50
51
function migrateWarnProp( obj, prop, value, msg ) {
52
	if ( Object.defineProperty ) {
53
		// On ES5 browsers (non-oldIE), warn if the code tries to get prop;
54
		// allow property to be overwritten in case some other plugin wants it
55
		try {
56
			Object.defineProperty( obj, prop, {
57
				configurable: true,
58
				enumerable: true,
59
				get: function() {
60
					migrateWarn( msg );
61
					return value;
62
				},
63
				set: function( newValue ) {
64
					migrateWarn( msg );
65
					value = newValue;
66
				}
67
			});
68
			return;
69
		} catch( err ) {
70
			// IE8 is a dope about Object.defineProperty, can't warn there
71
		}
72
	}
73
74
	// Non-ES5 (or broken) browser; just set the property
75
	jQuery._definePropertyBroken = true;
76
	obj[ prop ] = value;
77
}
78
79
if ( document.compatMode === "BackCompat" ) {
80
	// jQuery has never supported or tested Quirks Mode
81
	migrateWarn( "jQuery is not compatible with Quirks Mode" );
82
}
83
84
85
var attrFn = jQuery( "<input/>", { size: 1 } ).attr("size") && jQuery.attrFn,
86
	oldAttr = jQuery.attr,
87
	valueAttrGet = jQuery.attrHooks.value && jQuery.attrHooks.value.get ||
88
		function() { return null; },
89
	valueAttrSet = jQuery.attrHooks.value && jQuery.attrHooks.value.set ||
90
		function() { return undefined; },
91
	rnoType = /^(?:input|button)$/i,
92
	rnoAttrNodeType = /^[238]$/,
93
	rboolean = /^(?:autofocus|autoplay|async|checked|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped|selected)$/i,
94
	ruseDefault = /^(?:checked|selected)$/i;
95
96
// jQuery.attrFn
97
migrateWarnProp( jQuery, "attrFn", attrFn || {}, "jQuery.attrFn is deprecated" );
98
99
jQuery.attr = function( elem, name, value, pass ) {
100
	var lowerName = name.toLowerCase(),
101
		nType = elem && elem.nodeType;
102
103
	if ( pass ) {
104
		// Since pass is used internally, we only warn for new jQuery
105
		// versions where there isn't a pass arg in the formal params
106
		if ( oldAttr.length < 4 ) {
107
			migrateWarn("jQuery.fn.attr( props, pass ) is deprecated");
108
		}
109
		if ( elem && !rnoAttrNodeType.test( nType ) &&
110
			(attrFn ? name in attrFn : jQuery.isFunction(jQuery.fn[name])) ) {
111
			return jQuery( elem )[ name ]( value );
112
		}
113
	}
114
115
	// Warn if user tries to set `type`, since it breaks on IE 6/7/8; by checking
116
	// for disconnected elements we don't warn on $( "<button>", { type: "button" } ).
117
	if ( name === "type" && value !== undefined && rnoType.test( elem.nodeName ) && elem.parentNode ) {
118
		migrateWarn("Can't change the 'type' of an input or button in IE 6/7/8");
119
	}
120
121
	// Restore boolHook for boolean property/attribute synchronization
122
	if ( !jQuery.attrHooks[ lowerName ] && rboolean.test( lowerName ) ) {
123
		jQuery.attrHooks[ lowerName ] = {
124
			get: function( elem, name ) {
125
				// Align boolean attributes with corresponding properties
126
				// Fall back to attribute presence where some booleans are not supported
127
				var attrNode,
128
					property = jQuery.prop( elem, name );
129
				return property === true || typeof property !== "boolean" &&
130
					( attrNode = elem.getAttributeNode(name) ) && attrNode.nodeValue !== false ?
131
132
					name.toLowerCase() :
133
					undefined;
134
			},
135
			set: function( elem, value, name ) {
136
				var propName;
137
				if ( value === false ) {
138
					// Remove boolean attributes when set to false
139
					jQuery.removeAttr( elem, name );
140
				} else {
141
					// value is true since we know at this point it's type boolean and not false
142
					// Set boolean attributes to the same name and set the DOM property
143
					propName = jQuery.propFix[ name ] || name;
144
					if ( propName in elem ) {
145
						// Only set the IDL specifically if it already exists on the element
146
						elem[ propName ] = true;
147
					}
148
149
					elem.setAttribute( name, name.toLowerCase() );
150
				}
151
				return name;
152
			}
153
		};
154
155
		// Warn only for attributes that can remain distinct from their properties post-1.9
156
		if ( ruseDefault.test( lowerName ) ) {
157
			migrateWarn( "jQuery.fn.attr('" + lowerName + "') might use property instead of attribute" );
158
		}
159
	}
160
161
	return oldAttr.call( jQuery, elem, name, value );
162
};
163
164
// attrHooks: value
165
jQuery.attrHooks.value = {
166
	get: function( elem, name ) {
167
		var nodeName = ( elem.nodeName || "" ).toLowerCase();
168
		if ( nodeName === "button" ) {
169
			return valueAttrGet.apply( this, arguments );
170
		}
171
		if ( nodeName !== "input" && nodeName !== "option" ) {
172
			migrateWarn("jQuery.fn.attr('value') no longer gets properties");
173
		}
174
		return name in elem ?
175
			elem.value :
176
			null;
177
	},
178
	set: function( elem, value ) {
179
		var nodeName = ( elem.nodeName || "" ).toLowerCase();
180
		if ( nodeName === "button" ) {
181
			return valueAttrSet.apply( this, arguments );
182
		}
183
		if ( nodeName !== "input" && nodeName !== "option" ) {
184
			migrateWarn("jQuery.fn.attr('value', val) no longer sets properties");
185
		}
186
		// Does not return so that setAttribute is also used
187
		elem.value = value;
188
	}
189
};
190
191
192
var matched, browser,
193
	oldInit = jQuery.fn.init,
194
	oldParseJSON = jQuery.parseJSON,
195
	rspaceAngle = /^\s*</,
196
	// Note: XSS check is done below after string is trimmed
197
	rquickExpr = /^([^<]*)(<[\w\W]+>)([^>]*)$/;
198
199
// $(html) "looks like html" rule change
200
jQuery.fn.init = function( selector, context, rootjQuery ) {
201
	var match, ret;
202
203
	if ( selector && typeof selector === "string" && !jQuery.isPlainObject( context ) &&
204
			(match = rquickExpr.exec( jQuery.trim( selector ) )) && match[ 0 ] ) {
205
		// This is an HTML string according to the "old" rules; is it still?
206
		if ( !rspaceAngle.test( selector ) ) {
207
			migrateWarn("$(html) HTML strings must start with '<' character");
208
		}
209
		if ( match[ 3 ] ) {
210
			migrateWarn("$(html) HTML text after last tag is ignored");
211
		}
212
213
		// Consistently reject any HTML-like string starting with a hash (#9521)
214
		// Note that this may break jQuery 1.6.x code that otherwise would work.
215
		if ( match[ 0 ].charAt( 0 ) === "#" ) {
216
			migrateWarn("HTML string cannot start with a '#' character");
217
			jQuery.error("JQMIGRATE: Invalid selector string (XSS)");
218
		}
219
		// Now process using loose rules; let pre-1.8 play too
220
		if ( context && context.context ) {
221
			// jQuery object as context; parseHTML expects a DOM object
222
			context = context.context;
223
		}
224
		if ( jQuery.parseHTML ) {
225
			return oldInit.call( this,
226
					jQuery.parseHTML( match[ 2 ], context && context.ownerDocument ||
227
						context || document, true ), context, rootjQuery );
228
		}
229
	}
230
231
	// jQuery( "#" ) is a bogus ID selector, but it returned an empty set before jQuery 3.0
232
	if ( selector === "#" ) {
233
		migrateWarn( "jQuery( '#' ) is not a valid selector" );
234
		selector = [];
235
	}
236
237
	ret = oldInit.apply( this, arguments );
238
239
	// Fill in selector and context properties so .live() works
240
	if ( selector && selector.selector !== undefined ) {
241
		// A jQuery object, copy its properties
242
		ret.selector = selector.selector;
243
		ret.context = selector.context;
244
245
	} else {
246
		ret.selector = typeof selector === "string" ? selector : "";
247
		if ( selector ) {
248
			ret.context = selector.nodeType? selector : context || document;
249
		}
250
	}
251
252
	return ret;
253
};
254
jQuery.fn.init.prototype = jQuery.fn;
255
256
// Let $.parseJSON(falsy_value) return null
257
jQuery.parseJSON = function( json ) {
258
	if ( !json ) {
259
		migrateWarn("jQuery.parseJSON requires a valid JSON string");
260
		return null;
261
	}
262
	return oldParseJSON.apply( this, arguments );
263
};
264
265
jQuery.uaMatch = function( ua ) {
266
	ua = ua.toLowerCase();
267
268
	var match = /(chrome)[ \/]([\w.]+)/.exec( ua ) ||
269
		/(webkit)[ \/]([\w.]+)/.exec( ua ) ||
270
		/(opera)(?:.*version|)[ \/]([\w.]+)/.exec( ua ) ||
271
		/(msie) ([\w.]+)/.exec( ua ) ||
272
		ua.indexOf("compatible") < 0 && /(mozilla)(?:.*? rv:([\w.]+)|)/.exec( ua ) ||
273
		[];
274
275
	return {
276
		browser: match[ 1 ] || "",
277
		version: match[ 2 ] || "0"
278
	};
279
};
280
281
// Don't clobber any existing jQuery.browser in case it's different
282
if ( !jQuery.browser ) {
283
	matched = jQuery.uaMatch( navigator.userAgent );
284
	browser = {};
285
286
	if ( matched.browser ) {
287
		browser[ matched.browser ] = true;
288
		browser.version = matched.version;
289
	}
290
291
	// Chrome is Webkit, but Webkit is also Safari.
292
	if ( browser.chrome ) {
293
		browser.webkit = true;
294
	} else if ( browser.webkit ) {
295
		browser.safari = true;
296
	}
297
298
	jQuery.browser = browser;
299
}
300
301
// Warn if the code tries to get jQuery.browser
302
migrateWarnProp( jQuery, "browser", jQuery.browser, "jQuery.browser is deprecated" );
303
304
// jQuery.boxModel deprecated in 1.3, jQuery.support.boxModel deprecated in 1.7
305
jQuery.boxModel = jQuery.support.boxModel = (document.compatMode === "CSS1Compat");
306
migrateWarnProp( jQuery, "boxModel", jQuery.boxModel, "jQuery.boxModel is deprecated" );
307
migrateWarnProp( jQuery.support, "boxModel", jQuery.support.boxModel, "jQuery.support.boxModel is deprecated" );
308
309
jQuery.sub = function() {
310
	function jQuerySub( selector, context ) {
311
		return new jQuerySub.fn.init( selector, context );
312
	}
313
	jQuery.extend( true, jQuerySub, this );
314
	jQuerySub.superclass = this;
315
	jQuerySub.fn = jQuerySub.prototype = this();
316
	jQuerySub.fn.constructor = jQuerySub;
317
	jQuerySub.sub = this.sub;
318
	jQuerySub.fn.init = function init( selector, context ) {
319
		var instance = jQuery.fn.init.call( this, selector, context, rootjQuerySub );
320
		return instance instanceof jQuerySub ?
321
			instance :
322
			jQuerySub( instance );
323
	};
324
	jQuerySub.fn.init.prototype = jQuerySub.fn;
325
	var rootjQuerySub = jQuerySub(document);
326
	migrateWarn( "jQuery.sub() is deprecated" );
327
	return jQuerySub;
328
};
329
330
// The number of elements contained in the matched element set
331
jQuery.fn.size = function() {
332
	migrateWarn( "jQuery.fn.size() is deprecated; use the .length property" );
333
	return this.length;
334
};
335
336
337
var internalSwapCall = false;
338
339
// If this version of jQuery has .swap(), don't false-alarm on internal uses
340
if ( jQuery.swap ) {
341
	jQuery.each( [ "height", "width", "reliableMarginRight" ], function( _, name ) {
342
		var oldHook = jQuery.cssHooks[ name ] && jQuery.cssHooks[ name ].get;
343
344
		if ( oldHook ) {
345
			jQuery.cssHooks[ name ].get = function() {
346
				var ret;
347
348
				internalSwapCall = true;
349
				ret = oldHook.apply( this, arguments );
350
				internalSwapCall = false;
351
				return ret;
352
			};
353
		}
354
	});
355
}
356
357
jQuery.swap = function( elem, options, callback, args ) {
358
	var ret, name,
359
		old = {};
360
361
	if ( !internalSwapCall ) {
362
		migrateWarn( "jQuery.swap() is undocumented and deprecated" );
363
	}
364
365
	// Remember the old values, and insert the new ones
366
	for ( name in options ) {
367
		old[ name ] = elem.style[ name ];
368
		elem.style[ name ] = options[ name ];
369
	}
370
371
	ret = callback.apply( elem, args || [] );
372
373
	// Revert the old values
374
	for ( name in options ) {
375
		elem.style[ name ] = old[ name ];
376
	}
377
378
	return ret;
379
};
380
381
382
// Ensure that $.ajax gets the new parseJSON defined in core.js
383
jQuery.ajaxSetup({
384
	converters: {
385
		"text json": jQuery.parseJSON
386
	}
387
});
388
389
390
var oldFnData = jQuery.fn.data;
391
392
jQuery.fn.data = function( name ) {
393
	var ret, evt,
394
		elem = this[0];
395
396
	// Handles 1.7 which has this behavior and 1.8 which doesn't
397
	if ( elem && name === "events" && arguments.length === 1 ) {
398
		ret = jQuery.data( elem, name );
399
		evt = jQuery._data( elem, name );
400
		if ( ( ret === undefined || ret === evt ) && evt !== undefined ) {
401
			migrateWarn("Use of jQuery.fn.data('events') is deprecated");
402
			return evt;
403
		}
404
	}
405
	return oldFnData.apply( this, arguments );
406
};
407
408
409
var rscriptType = /\/(java|ecma)script/i;
410
411
// Since jQuery.clean is used internally on older versions, we only shim if it's missing
412
if ( !jQuery.clean ) {
413
	jQuery.clean = function( elems, context, fragment, scripts ) {
414
		// Set context per 1.8 logic
415
		context = context || document;
416
		context = !context.nodeType && context[0] || context;
417
		context = context.ownerDocument || context;
418
419
		migrateWarn("jQuery.clean() is deprecated");
420
421
		var i, elem, handleScript, jsTags,
422
			ret = [];
423
424
		jQuery.merge( ret, jQuery.buildFragment( elems, context ).childNodes );
425
426
		// Complex logic lifted directly from jQuery 1.8
427
		if ( fragment ) {
428
			// Special handling of each script element
429
			handleScript = function( elem ) {
430
				// Check if we consider it executable
431
				if ( !elem.type || rscriptType.test( elem.type ) ) {
432
					// Detach the script and store it in the scripts array (if provided) or the fragment
433
					// Return truthy to indicate that it has been handled
434
					return scripts ?
435
						scripts.push( elem.parentNode ? elem.parentNode.removeChild( elem ) : elem ) :
436
						fragment.appendChild( elem );
437
				}
438
			};
439
440
			for ( i = 0; (elem = ret[i]) != null; i++ ) {
441
				// Check if we're done after handling an executable script
442
				if ( !( jQuery.nodeName( elem, "script" ) && handleScript( elem ) ) ) {
443
					// Append to fragment and handle embedded scripts
444
					fragment.appendChild( elem );
445
					if ( typeof elem.getElementsByTagName !== "undefined" ) {
446
						// handleScript alters the DOM, so use jQuery.merge to ensure snapshot iteration
447
						jsTags = jQuery.grep( jQuery.merge( [], elem.getElementsByTagName("script") ), handleScript );
448
449
						// Splice the scripts into ret after their former ancestor and advance our index beyond them
450
						ret.splice.apply( ret, [i + 1, 0].concat( jsTags ) );
451
						i += jsTags.length;
452
					}
453
				}
454
			}
455
		}
456
457
		return ret;
458
	};
459
}
460
461
var eventAdd = jQuery.event.add,
462
	eventRemove = jQuery.event.remove,
463
	eventTrigger = jQuery.event.trigger,
464
	oldToggle = jQuery.fn.toggle,
465
	oldLive = jQuery.fn.live,
466
	oldDie = jQuery.fn.die,
467
	oldLoad = jQuery.fn.load,
468
	ajaxEvents = "ajaxStart|ajaxStop|ajaxSend|ajaxComplete|ajaxError|ajaxSuccess",
469
	rajaxEvent = new RegExp( "\\b(?:" + ajaxEvents + ")\\b" ),
470
	rhoverHack = /(?:^|\s)hover(\.\S+|)\b/,
471
	hoverHack = function( events ) {
472
		if ( typeof( events ) !== "string" || jQuery.event.special.hover ) {
473
			return events;
474
		}
475
		if ( rhoverHack.test( events ) ) {
476
			migrateWarn("'hover' pseudo-event is deprecated, use 'mouseenter mouseleave'");
477
		}
478
		return events && events.replace( rhoverHack, "mouseenter$1 mouseleave$1" );
479
	};
480
481
// Event props removed in 1.9, put them back if needed; no practical way to warn them
482
if ( jQuery.event.props && jQuery.event.props[ 0 ] !== "attrChange" ) {
483
	jQuery.event.props.unshift( "attrChange", "attrName", "relatedNode", "srcElement" );
484
}
485
486
// Undocumented jQuery.event.handle was "deprecated" in jQuery 1.7
487
if ( jQuery.event.dispatch ) {
488
	migrateWarnProp( jQuery.event, "handle", jQuery.event.dispatch, "jQuery.event.handle is undocumented and deprecated" );
489
}
490
491
// Support for 'hover' pseudo-event and ajax event warnings
492
jQuery.event.add = function( elem, types, handler, data, selector ){
493
	if ( elem !== document && rajaxEvent.test( types ) ) {
494
		migrateWarn( "AJAX events should be attached to document: " + types );
495
	}
496
	eventAdd.call( this, elem, hoverHack( types || "" ), handler, data, selector );
497
};
498
jQuery.event.remove = function( elem, types, handler, selector, mappedTypes ){
499
	eventRemove.call( this, elem, hoverHack( types ) || "", handler, selector, mappedTypes );
500
};
501
502
jQuery.each( [ "load", "unload", "error" ], function( _, name ) {
503
504
	jQuery.fn[ name ] = function() {
505
		var args = Array.prototype.slice.call( arguments, 0 );
506
		migrateWarn( "jQuery.fn." + name + "() is deprecated" );
507
508
		// If this is an ajax load() the first arg should be the string URL;
509
		// technically this could also be the "Anything" arg of the event .load()
510
		// which just goes to show why this dumb signature has been deprecated!
511
		// jQuery custom builds that exclude the Ajax module justifiably die here.
512
		if ( name === "load" && typeof arguments[ 0 ] === "string" ) {
513
			return oldLoad.apply( this, arguments );
514
		}
515
516
		args.splice( 0, 0, name );
517
		if ( arguments.length ) {
518
			return this.bind.apply( this, args );
519
		}
520
521
		// Use .triggerHandler here because:
522
		// - load and unload events don't need to bubble, only applied to window or image
523
		// - error event should not bubble to window, although it does pre-1.7
524
		// See http://bugs.jquery.com/ticket/11820
525
		this.triggerHandler.apply( this, args );
526
		return this;
527
	};
528
529
});
530
531
jQuery.fn.toggle = function( fn, fn2 ) {
532
533
	// Don't mess with animation or css toggles
534
	if ( !jQuery.isFunction( fn ) || !jQuery.isFunction( fn2 ) ) {
535
		return oldToggle.apply( this, arguments );
536
	}
537
	migrateWarn("jQuery.fn.toggle(handler, handler...) is deprecated");
538
539
	// Save reference to arguments for access in closure
540
	var args = arguments,
541
		guid = fn.guid || jQuery.guid++,
542
		i = 0,
543
		toggler = function( event ) {
544
			// Figure out which function to execute
545
			var lastToggle = ( jQuery._data( this, "lastToggle" + fn.guid ) || 0 ) % i;
546
			jQuery._data( this, "lastToggle" + fn.guid, lastToggle + 1 );
547
548
			// Make sure that clicks stop
549
			event.preventDefault();
550
551
			// and execute the function
552
			return args[ lastToggle ].apply( this, arguments ) || false;
553
		};
554
555
	// link all the functions, so any of them can unbind this click handler
556
	toggler.guid = guid;
557
	while ( i < args.length ) {
558
		args[ i++ ].guid = guid;
559
	}
560
561
	return this.click( toggler );
562
};
563
564
jQuery.fn.live = function( types, data, fn ) {
565
	migrateWarn("jQuery.fn.live() is deprecated");
566
	if ( oldLive ) {
567
		return oldLive.apply( this, arguments );
568
	}
569
	jQuery( this.context ).on( types, this.selector, data, fn );
570
	return this;
571
};
572
573
jQuery.fn.die = function( types, fn ) {
574
	migrateWarn("jQuery.fn.die() is deprecated");
575
	if ( oldDie ) {
576
		return oldDie.apply( this, arguments );
577
	}
578
	jQuery( this.context ).off( types, this.selector || "**", fn );
579
	return this;
580
};
581
582
// Turn global events into document-triggered events
583
jQuery.event.trigger = function( event, data, elem, onlyHandlers  ){
584
	if ( !elem && !rajaxEvent.test( event ) ) {
585
		migrateWarn( "Global events are undocumented and deprecated" );
586
	}
587
	return eventTrigger.call( this,  event, data, elem || document, onlyHandlers  );
588
};
589
jQuery.each( ajaxEvents.split("|"),
590
	function( _, name ) {
591
		jQuery.event.special[ name ] = {
592
			setup: function() {
593
				var elem = this;
594
595
				// The document needs no shimming; must be !== for oldIE
596
				if ( elem !== document ) {
597
					jQuery.event.add( document, name + "." + jQuery.guid, function() {
598
						jQuery.event.trigger( name, Array.prototype.slice.call( arguments, 1 ), elem, true );
599
					});
600
					jQuery._data( this, name, jQuery.guid++ );
601
				}
602
				return false;
603
			},
604
			teardown: function() {
605
				if ( this !== document ) {
606
					jQuery.event.remove( document, name + "." + jQuery._data( this, name ) );
607
				}
608
				return false;
609
			}
610
		};
611
	}
612
);
613
614
jQuery.event.special.ready = {
615
	setup: function() { migrateWarn( "'ready' event is deprecated" ); }
616
};
617
618
var oldSelf = jQuery.fn.andSelf || jQuery.fn.addBack,
619
	oldFind = jQuery.fn.find;
620
621
jQuery.fn.andSelf = function() {
622
	migrateWarn("jQuery.fn.andSelf() replaced by jQuery.fn.addBack()");
623
	return oldSelf.apply( this, arguments );
624
};
625
626
jQuery.fn.find = function( selector ) {
627
	var ret = oldFind.apply( this, arguments );
628
	ret.context = this.context;
629
	ret.selector = this.selector ? this.selector + " " + selector : selector;
630
	return ret;
631
};
632
633
634
// jQuery 1.6 did not support Callbacks, do not warn there
635
if ( jQuery.Callbacks ) {
636
637
	var oldDeferred = jQuery.Deferred,
638
		tuples = [
639
			// action, add listener, callbacks, .then handlers, final state
640
			[ "resolve", "done", jQuery.Callbacks("once memory"),
641
				jQuery.Callbacks("once memory"), "resolved" ],
642
			[ "reject", "fail", jQuery.Callbacks("once memory"),
643
				jQuery.Callbacks("once memory"), "rejected" ],
644
			[ "notify", "progress", jQuery.Callbacks("memory"),
645
				jQuery.Callbacks("memory") ]
646
		];
647
648
	jQuery.Deferred = function( func ) {
649
		var deferred = oldDeferred(),
650
			promise = deferred.promise();
651
652
		deferred.pipe = promise.pipe = function( /* fnDone, fnFail, fnProgress */ ) {
653
			var fns = arguments;
654
655
			migrateWarn( "deferred.pipe() is deprecated" );
656
657
			return jQuery.Deferred(function( newDefer ) {
658
				jQuery.each( tuples, function( i, tuple ) {
659
					var fn = jQuery.isFunction( fns[ i ] ) && fns[ i ];
660
					// deferred.done(function() { bind to newDefer or newDefer.resolve })
661
					// deferred.fail(function() { bind to newDefer or newDefer.reject })
662
					// deferred.progress(function() { bind to newDefer or newDefer.notify })
663
					deferred[ tuple[1] ](function() {
664
						var returned = fn && fn.apply( this, arguments );
665
						if ( returned && jQuery.isFunction( returned.promise ) ) {
666
							returned.promise()
667
								.done( newDefer.resolve )
668
								.fail( newDefer.reject )
669
								.progress( newDefer.notify );
670
						} else {
671
							newDefer[ tuple[ 0 ] + "With" ](
672
								this === promise ? newDefer.promise() : this,
673
								fn ? [ returned ] : arguments
674
							);
675
						}
676
					});
677
				});
678
				fns = null;
679
			}).promise();
680
681
		};
682
683
		deferred.isResolved = function() {
684
			migrateWarn( "deferred.isResolved is deprecated" );
685
			return deferred.state() === "resolved";
686
		};
687
688
		deferred.isRejected = function() {
689
			migrateWarn( "deferred.isRejected is deprecated" );
690
			return deferred.state() === "rejected";
691
		};
692
693
		if ( func ) {
694
			func.call( deferred, deferred );
695
		}
696
697
		return deferred;
698
	};
699
700
}
701
702
})( jQuery, window );
(-)a/koha-tmpl/intranet-tmpl/lib/jquery/jquery-migrate-1.3.0.min.js (-2 lines)
Lines 1-2 Link Here
1
/*! jQuery Migrate v1.3.0 | (c) jQuery Foundation and other contributors | jquery.org/license */
2
"undefined"==typeof jQuery.migrateMute&&(jQuery.migrateMute=!0),function(a,b,c){function d(c){var d=b.console;f[c]||(f[c]=!0,a.migrateWarnings.push(c),d&&d.warn&&!a.migrateMute&&(d.warn("JQMIGRATE: "+c),a.migrateTrace&&d.trace&&d.trace()))}function e(b,c,e,f){if(Object.defineProperty)try{return void Object.defineProperty(b,c,{configurable:!0,enumerable:!0,get:function(){return d(f),e},set:function(a){d(f),e=a}})}catch(g){}a._definePropertyBroken=!0,b[c]=e}a.migrateVersion="1.3.0";var f={};a.migrateWarnings=[],!a.migrateMute&&b.console&&b.console.log&&b.console.log("JQMIGRATE: Logging is active"),a.migrateTrace===c&&(a.migrateTrace=!0),a.migrateReset=function(){f={},a.migrateWarnings.length=0},"BackCompat"===document.compatMode&&d("jQuery is not compatible with Quirks Mode");var g=a("<input/>",{size:1}).attr("size")&&a.attrFn,h=a.attr,i=a.attrHooks.value&&a.attrHooks.value.get||function(){return null},j=a.attrHooks.value&&a.attrHooks.value.set||function(){return c},k=/^(?:input|button)$/i,l=/^[238]$/,m=/^(?:autofocus|autoplay|async|checked|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped|selected)$/i,n=/^(?:checked|selected)$/i;e(a,"attrFn",g||{},"jQuery.attrFn is deprecated"),a.attr=function(b,e,f,i){var j=e.toLowerCase(),o=b&&b.nodeType;return i&&(h.length<4&&d("jQuery.fn.attr( props, pass ) is deprecated"),b&&!l.test(o)&&(g?e in g:a.isFunction(a.fn[e])))?a(b)[e](f):("type"===e&&f!==c&&k.test(b.nodeName)&&b.parentNode&&d("Can't change the 'type' of an input or button in IE 6/7/8"),!a.attrHooks[j]&&m.test(j)&&(a.attrHooks[j]={get:function(b,d){var e,f=a.prop(b,d);return f===!0||"boolean"!=typeof f&&(e=b.getAttributeNode(d))&&e.nodeValue!==!1?d.toLowerCase():c},set:function(b,c,d){var e;return c===!1?a.removeAttr(b,d):(e=a.propFix[d]||d,e in b&&(b[e]=!0),b.setAttribute(d,d.toLowerCase())),d}},n.test(j)&&d("jQuery.fn.attr('"+j+"') might use property instead of attribute")),h.call(a,b,e,f))},a.attrHooks.value={get:function(a,b){var c=(a.nodeName||"").toLowerCase();return"button"===c?i.apply(this,arguments):("input"!==c&&"option"!==c&&d("jQuery.fn.attr('value') no longer gets properties"),b in a?a.value:null)},set:function(a,b){var c=(a.nodeName||"").toLowerCase();return"button"===c?j.apply(this,arguments):("input"!==c&&"option"!==c&&d("jQuery.fn.attr('value', val) no longer sets properties"),void(a.value=b))}};var o,p,q=a.fn.init,r=a.parseJSON,s=/^\s*</,t=/^([^<]*)(<[\w\W]+>)([^>]*)$/;a.fn.init=function(b,e,f){var g,h;return b&&"string"==typeof b&&!a.isPlainObject(e)&&(g=t.exec(a.trim(b)))&&g[0]&&(s.test(b)||d("$(html) HTML strings must start with '<' character"),g[3]&&d("$(html) HTML text after last tag is ignored"),"#"===g[0].charAt(0)&&(d("HTML string cannot start with a '#' character"),a.error("JQMIGRATE: Invalid selector string (XSS)")),e&&e.context&&(e=e.context),a.parseHTML)?q.call(this,a.parseHTML(g[2],e&&e.ownerDocument||e||document,!0),e,f):("#"===b&&(d("jQuery( '#' ) is not a valid selector"),b=[]),h=q.apply(this,arguments),b&&b.selector!==c?(h.selector=b.selector,h.context=b.context):(h.selector="string"==typeof b?b:"",b&&(h.context=b.nodeType?b:e||document)),h)},a.fn.init.prototype=a.fn,a.parseJSON=function(a){return a?r.apply(this,arguments):(d("jQuery.parseJSON requires a valid JSON string"),null)},a.uaMatch=function(a){a=a.toLowerCase();var b=/(chrome)[ \/]([\w.]+)/.exec(a)||/(webkit)[ \/]([\w.]+)/.exec(a)||/(opera)(?:.*version|)[ \/]([\w.]+)/.exec(a)||/(msie) ([\w.]+)/.exec(a)||a.indexOf("compatible")<0&&/(mozilla)(?:.*? rv:([\w.]+)|)/.exec(a)||[];return{browser:b[1]||"",version:b[2]||"0"}},a.browser||(o=a.uaMatch(navigator.userAgent),p={},o.browser&&(p[o.browser]=!0,p.version=o.version),p.chrome?p.webkit=!0:p.webkit&&(p.safari=!0),a.browser=p),e(a,"browser",a.browser,"jQuery.browser is deprecated"),a.boxModel=a.support.boxModel="CSS1Compat"===document.compatMode,e(a,"boxModel",a.boxModel,"jQuery.boxModel is deprecated"),e(a.support,"boxModel",a.support.boxModel,"jQuery.support.boxModel is deprecated"),a.sub=function(){function b(a,c){return new b.fn.init(a,c)}a.extend(!0,b,this),b.superclass=this,b.fn=b.prototype=this(),b.fn.constructor=b,b.sub=this.sub,b.fn.init=function(d,e){var f=a.fn.init.call(this,d,e,c);return f instanceof b?f:b(f)},b.fn.init.prototype=b.fn;var c=b(document);return d("jQuery.sub() is deprecated"),b},a.fn.size=function(){return d("jQuery.fn.size() is deprecated; use the .length property"),this.length};var u=!1;a.swap&&a.each(["height","width","reliableMarginRight"],function(b,c){var d=a.cssHooks[c]&&a.cssHooks[c].get;d&&(a.cssHooks[c].get=function(){var a;return u=!0,a=d.apply(this,arguments),u=!1,a})}),a.swap=function(a,b,c,e){var f,g,h={};u||d("jQuery.swap() is undocumented and deprecated");for(g in b)h[g]=a.style[g],a.style[g]=b[g];f=c.apply(a,e||[]);for(g in b)a.style[g]=h[g];return f},a.ajaxSetup({converters:{"text json":a.parseJSON}});var v=a.fn.data;a.fn.data=function(b){var e,f,g=this[0];return!g||"events"!==b||1!==arguments.length||(e=a.data(g,b),f=a._data(g,b),e!==c&&e!==f||f===c)?v.apply(this,arguments):(d("Use of jQuery.fn.data('events') is deprecated"),f)};var w=/\/(java|ecma)script/i;a.clean||(a.clean=function(b,c,e,f){c=c||document,c=!c.nodeType&&c[0]||c,c=c.ownerDocument||c,d("jQuery.clean() is deprecated");var g,h,i,j,k=[];if(a.merge(k,a.buildFragment(b,c).childNodes),e)for(i=function(a){return!a.type||w.test(a.type)?f?f.push(a.parentNode?a.parentNode.removeChild(a):a):e.appendChild(a):void 0},g=0;null!=(h=k[g]);g++)a.nodeName(h,"script")&&i(h)||(e.appendChild(h),"undefined"!=typeof h.getElementsByTagName&&(j=a.grep(a.merge([],h.getElementsByTagName("script")),i),k.splice.apply(k,[g+1,0].concat(j)),g+=j.length));return k});var x=a.event.add,y=a.event.remove,z=a.event.trigger,A=a.fn.toggle,B=a.fn.live,C=a.fn.die,D=a.fn.load,E="ajaxStart|ajaxStop|ajaxSend|ajaxComplete|ajaxError|ajaxSuccess",F=new RegExp("\\b(?:"+E+")\\b"),G=/(?:^|\s)hover(\.\S+|)\b/,H=function(b){return"string"!=typeof b||a.event.special.hover?b:(G.test(b)&&d("'hover' pseudo-event is deprecated, use 'mouseenter mouseleave'"),b&&b.replace(G,"mouseenter$1 mouseleave$1"))};a.event.props&&"attrChange"!==a.event.props[0]&&a.event.props.unshift("attrChange","attrName","relatedNode","srcElement"),a.event.dispatch&&e(a.event,"handle",a.event.dispatch,"jQuery.event.handle is undocumented and deprecated"),a.event.add=function(a,b,c,e,f){a!==document&&F.test(b)&&d("AJAX events should be attached to document: "+b),x.call(this,a,H(b||""),c,e,f)},a.event.remove=function(a,b,c,d,e){y.call(this,a,H(b)||"",c,d,e)},a.each(["load","unload","error"],function(b,c){a.fn[c]=function(){var a=Array.prototype.slice.call(arguments,0);return d("jQuery.fn."+c+"() is deprecated"),"load"===c&&"string"==typeof arguments[0]?D.apply(this,arguments):(a.splice(0,0,c),arguments.length?this.bind.apply(this,a):(this.triggerHandler.apply(this,a),this))}}),a.fn.toggle=function(b,c){if(!a.isFunction(b)||!a.isFunction(c))return A.apply(this,arguments);d("jQuery.fn.toggle(handler, handler...) is deprecated");var e=arguments,f=b.guid||a.guid++,g=0,h=function(c){var d=(a._data(this,"lastToggle"+b.guid)||0)%g;return a._data(this,"lastToggle"+b.guid,d+1),c.preventDefault(),e[d].apply(this,arguments)||!1};for(h.guid=f;g<e.length;)e[g++].guid=f;return this.click(h)},a.fn.live=function(b,c,e){return d("jQuery.fn.live() is deprecated"),B?B.apply(this,arguments):(a(this.context).on(b,this.selector,c,e),this)},a.fn.die=function(b,c){return d("jQuery.fn.die() is deprecated"),C?C.apply(this,arguments):(a(this.context).off(b,this.selector||"**",c),this)},a.event.trigger=function(a,b,c,e){return c||F.test(a)||d("Global events are undocumented and deprecated"),z.call(this,a,b,c||document,e)},a.each(E.split("|"),function(b,c){a.event.special[c]={setup:function(){var b=this;return b!==document&&(a.event.add(document,c+"."+a.guid,function(){a.event.trigger(c,Array.prototype.slice.call(arguments,1),b,!0)}),a._data(this,c,a.guid++)),!1},teardown:function(){return this!==document&&a.event.remove(document,c+"."+a._data(this,c)),!1}}}),a.event.special.ready={setup:function(){d("'ready' event is deprecated")}};var I=a.fn.andSelf||a.fn.addBack,J=a.fn.find;if(a.fn.andSelf=function(){return d("jQuery.fn.andSelf() replaced by jQuery.fn.addBack()"),I.apply(this,arguments)},a.fn.find=function(a){var b=J.apply(this,arguments);return b.context=this.context,b.selector=this.selector?this.selector+" "+a:a,b},a.Callbacks){var K=a.Deferred,L=[["resolve","done",a.Callbacks("once memory"),a.Callbacks("once memory"),"resolved"],["reject","fail",a.Callbacks("once memory"),a.Callbacks("once memory"),"rejected"],["notify","progress",a.Callbacks("memory"),a.Callbacks("memory")]];a.Deferred=function(b){var c=K(),e=c.promise();return c.pipe=e.pipe=function(){var b=arguments;return d("deferred.pipe() is deprecated"),a.Deferred(function(d){a.each(L,function(f,g){var h=a.isFunction(b[f])&&b[f];c[g[1]](function(){var b=h&&h.apply(this,arguments);b&&a.isFunction(b.promise)?b.promise().done(d.resolve).fail(d.reject).progress(d.notify):d[g[0]+"With"](this===e?d.promise():this,h?[b]:arguments)})}),b=null}).promise()},c.isResolved=function(){return d("deferred.isResolved is deprecated"),"resolved"===c.state()},c.isRejected=function(){return d("deferred.isRejected is deprecated"),"rejected"===c.state()},b&&b.call(c,c),c}}}(jQuery,window);
(-)a/koha-tmpl/intranet-tmpl/lib/jquery/jquery-migrate-3.3.2.min.js (+2 lines)
Line 0 Link Here
1
/*! jQuery Migrate v3.3.2 | (c) OpenJS Foundation and other contributors | jquery.org/license */
2
"undefined"==typeof jQuery.migrateMute&&(jQuery.migrateMute=!0),function(t){"use strict";"function"==typeof define&&define.amd?define(["jquery"],function(e){return t(e,window)}):"object"==typeof module&&module.exports?module.exports=t(require("jquery"),window):t(jQuery,window)}(function(s,n){"use strict";function e(e){return 0<=function(e,t){for(var r=/^(\d+)\.(\d+)\.(\d+)/,n=r.exec(e)||[],o=r.exec(t)||[],i=1;i<=3;i++){if(+o[i]<+n[i])return 1;if(+n[i]<+o[i])return-1}return 0}(s.fn.jquery,e)}s.migrateVersion="3.3.2",n.console&&n.console.log&&(s&&e("3.0.0")||n.console.log("JQMIGRATE: jQuery 3.0.0+ REQUIRED"),s.migrateWarnings&&n.console.log("JQMIGRATE: Migrate plugin loaded multiple times"),n.console.log("JQMIGRATE: Migrate is installed"+(s.migrateMute?"":" with logging active")+", version "+s.migrateVersion));var r={};function u(e){var t=n.console;s.migrateDeduplicateWarnings&&r[e]||(r[e]=!0,s.migrateWarnings.push(e),t&&t.warn&&!s.migrateMute&&(t.warn("JQMIGRATE: "+e),s.migrateTrace&&t.trace&&t.trace()))}function t(e,t,r,n){Object.defineProperty(e,t,{configurable:!0,enumerable:!0,get:function(){return u(n),r},set:function(e){u(n),r=e}})}function o(e,t,r,n){e[t]=function(){return u(n),r.apply(this,arguments)}}s.migrateDeduplicateWarnings=!0,s.migrateWarnings=[],void 0===s.migrateTrace&&(s.migrateTrace=!0),s.migrateReset=function(){r={},s.migrateWarnings.length=0},"BackCompat"===n.document.compatMode&&u("jQuery is not compatible with Quirks Mode");var i,a,c,d={},l=s.fn.init,p=s.find,f=/\[(\s*[-\w]+\s*)([~|^$*]?=)\s*([-\w#]*?#[-\w#]*)\s*\]/,y=/\[(\s*[-\w]+\s*)([~|^$*]?=)\s*([-\w#]*?#[-\w#]*)\s*\]/g,m=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g;for(i in s.fn.init=function(e){var t=Array.prototype.slice.call(arguments);return"string"==typeof e&&"#"===e&&(u("jQuery( '#' ) is not a valid selector"),t[0]=[]),l.apply(this,t)},s.fn.init.prototype=s.fn,s.find=function(t){var r=Array.prototype.slice.call(arguments);if("string"==typeof t&&f.test(t))try{n.document.querySelector(t)}catch(e){t=t.replace(y,function(e,t,r,n){return"["+t+r+'"'+n+'"]'});try{n.document.querySelector(t),u("Attribute selector with '#' must be quoted: "+r[0]),r[0]=t}catch(e){u("Attribute selector with '#' was not fixed: "+r[0])}}return p.apply(this,r)},p)Object.prototype.hasOwnProperty.call(p,i)&&(s.find[i]=p[i]);o(s.fn,"size",function(){return this.length},"jQuery.fn.size() is deprecated and removed; use the .length property"),o(s,"parseJSON",function(){return JSON.parse.apply(null,arguments)},"jQuery.parseJSON is deprecated; use JSON.parse"),o(s,"holdReady",s.holdReady,"jQuery.holdReady is deprecated"),o(s,"unique",s.uniqueSort,"jQuery.unique is deprecated; use jQuery.uniqueSort"),t(s.expr,"filters",s.expr.pseudos,"jQuery.expr.filters is deprecated; use jQuery.expr.pseudos"),t(s.expr,":",s.expr.pseudos,"jQuery.expr[':'] is deprecated; use jQuery.expr.pseudos"),e("3.1.1")&&o(s,"trim",function(e){return null==e?"":(e+"").replace(m,"")},"jQuery.trim is deprecated; use String.prototype.trim"),e("3.2.0")&&(o(s,"nodeName",function(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()},"jQuery.nodeName is deprecated"),o(s,"isArray",Array.isArray,"jQuery.isArray is deprecated; use Array.isArray")),e("3.3.0")&&(o(s,"isNumeric",function(e){var t=typeof e;return("number"==t||"string"==t)&&!isNaN(e-parseFloat(e))},"jQuery.isNumeric() is deprecated"),s.each("Boolean Number String Function Array Date RegExp Object Error Symbol".split(" "),function(e,t){d["[object "+t+"]"]=t.toLowerCase()}),o(s,"type",function(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?d[Object.prototype.toString.call(e)]||"object":typeof e},"jQuery.type is deprecated"),o(s,"isFunction",function(e){return"function"==typeof e},"jQuery.isFunction() is deprecated"),o(s,"isWindow",function(e){return null!=e&&e===e.window},"jQuery.isWindow() is deprecated")),s.ajax&&(a=s.ajax,c=/(=)\?(?=&|$)|\?\?/,s.ajax=function(){var e=a.apply(this,arguments);return e.promise&&(o(e,"success",e.done,"jQXHR.success is deprecated and removed"),o(e,"error",e.fail,"jQXHR.error is deprecated and removed"),o(e,"complete",e.always,"jQXHR.complete is deprecated and removed")),e},e("4.0.0")||s.ajaxPrefilter("+json",function(e){!1!==e.jsonp&&(c.test(e.url)||"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&c.test(e.data))&&u("JSON-to-JSONP auto-promotion is deprecated")}));var g=s.fn.removeAttr,h=s.fn.toggleClass,v=/\S+/g;function j(e){return e.replace(/-([a-z])/g,function(e,t){return t.toUpperCase()})}s.fn.removeAttr=function(e){var r=this;return s.each(e.match(v),function(e,t){s.expr.match.bool.test(t)&&(u("jQuery.fn.removeAttr no longer sets boolean properties: "+t),r.prop(t,!1))}),g.apply(this,arguments)};var Q,b=!(s.fn.toggleClass=function(t){return void 0!==t&&"boolean"!=typeof t?h.apply(this,arguments):(u("jQuery.fn.toggleClass( boolean ) is deprecated"),this.each(function(){var e=this.getAttribute&&this.getAttribute("class")||"";e&&s.data(this,"__className__",e),this.setAttribute&&this.setAttribute("class",!e&&!1!==t&&s.data(this,"__className__")||"")}))}),w=/^[a-z]/,x=/^(?:Border(?:Top|Right|Bottom|Left)?(?:Width|)|(?:Margin|Padding)?(?:Top|Right|Bottom|Left)?|(?:Min|Max)?(?:Width|Height))$/;s.swap&&s.each(["height","width","reliableMarginRight"],function(e,t){var r=s.cssHooks[t]&&s.cssHooks[t].get;r&&(s.cssHooks[t].get=function(){var e;return b=!0,e=r.apply(this,arguments),b=!1,e})}),s.swap=function(e,t,r,n){var o,i,a={};for(i in b||u("jQuery.swap() is undocumented and deprecated"),t)a[i]=e.style[i],e.style[i]=t[i];for(i in o=r.apply(e,n||[]),t)e.style[i]=a[i];return o},e("3.4.0")&&"undefined"!=typeof Proxy&&(s.cssProps=new Proxy(s.cssProps||{},{set:function(){return u("JQMIGRATE: jQuery.cssProps is deprecated"),Reflect.set.apply(this,arguments)}})),s.cssNumber||(s.cssNumber={}),Q=s.fn.css,s.fn.css=function(e,t){var r,n,o=this;return e&&"object"==typeof e&&!Array.isArray(e)?(s.each(e,function(e,t){s.fn.css.call(o,e,t)}),this):("number"==typeof t&&(r=j(e),n=r,w.test(n)&&x.test(n[0].toUpperCase()+n.slice(1))||s.cssNumber[r]||u('Number-typed values are deprecated for jQuery.fn.css( "'+e+'", value )')),Q.apply(this,arguments))};var A,k,S,M,N=s.data;s.data=function(e,t,r){var n,o,i;if(t&&"object"==typeof t&&2===arguments.length){for(i in n=s.hasData(e)&&N.call(this,e),o={},t)i!==j(i)?(u("jQuery.data() always sets/gets camelCased names: "+i),n[i]=t[i]):o[i]=t[i];return N.call(this,e,o),t}return t&&"string"==typeof t&&t!==j(t)&&(n=s.hasData(e)&&N.call(this,e))&&t in n?(u("jQuery.data() always sets/gets camelCased names: "+t),2<arguments.length&&(n[t]=r),n[t]):N.apply(this,arguments)},s.fx&&(S=s.Tween.prototype.run,M=function(e){return e},s.Tween.prototype.run=function(){1<s.easing[this.easing].length&&(u("'jQuery.easing."+this.easing.toString()+"' should use only one argument"),s.easing[this.easing]=M),S.apply(this,arguments)},A=s.fx.interval||13,k="jQuery.fx.interval is deprecated",n.requestAnimationFrame&&Object.defineProperty(s.fx,"interval",{configurable:!0,enumerable:!0,get:function(){return n.document.hidden||u(k),A},set:function(e){u(k),A=e}}));var R=s.fn.load,H=s.event.add,C=s.event.fix;s.event.props=[],s.event.fixHooks={},t(s.event.props,"concat",s.event.props.concat,"jQuery.event.props.concat() is deprecated and removed"),s.event.fix=function(e){var t,r=e.type,n=this.fixHooks[r],o=s.event.props;if(o.length){u("jQuery.event.props are deprecated and removed: "+o.join());while(o.length)s.event.addProp(o.pop())}if(n&&!n._migrated_&&(n._migrated_=!0,u("jQuery.event.fixHooks are deprecated and removed: "+r),(o=n.props)&&o.length))while(o.length)s.event.addProp(o.pop());return t=C.call(this,e),n&&n.filter?n.filter(t,e):t},s.event.add=function(e,t){return e===n&&"load"===t&&"complete"===n.document.readyState&&u("jQuery(window).on('load'...) called after load event occurred"),H.apply(this,arguments)},s.each(["load","unload","error"],function(e,t){s.fn[t]=function(){var e=Array.prototype.slice.call(arguments,0);return"load"===t&&"string"==typeof e[0]?R.apply(this,e):(u("jQuery.fn."+t+"() is deprecated"),e.splice(0,0,t),arguments.length?this.on.apply(this,e):(this.triggerHandler.apply(this,e),this))}}),s.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,r){s.fn[r]=function(e,t){return u("jQuery.fn."+r+"() event shorthand is deprecated"),0<arguments.length?this.on(r,null,e,t):this.trigger(r)}}),s(function(){s(n.document).triggerHandler("ready")}),s.event.special.ready={setup:function(){this===n.document&&u("'ready' event is deprecated")}},s.fn.extend({bind:function(e,t,r){return u("jQuery.fn.bind() is deprecated"),this.on(e,null,t,r)},unbind:function(e,t){return u("jQuery.fn.unbind() is deprecated"),this.off(e,null,t)},delegate:function(e,t,r,n){return u("jQuery.fn.delegate() is deprecated"),this.on(t,e,r,n)},undelegate:function(e,t,r){return u("jQuery.fn.undelegate() is deprecated"),1===arguments.length?this.off(e,"**"):this.off(t,e||"**",r)},hover:function(e,t){return u("jQuery.fn.hover() is deprecated"),this.on("mouseenter",e).on("mouseleave",t||e)}});function T(e){var t=n.document.implementation.createHTMLDocument("");return t.body.innerHTML=e,t.body&&t.body.innerHTML}function P(e){var t=e.replace(O,"<$1></$2>");t!==e&&T(e)!==T(t)&&u("HTML tags must be properly nested and closed: "+e)}var O=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>\x20\t\r\n\f]*)[^>]*)\/>/gi,q=s.htmlPrefilter;s.UNSAFE_restoreLegacyHtmlPrefilter=function(){s.htmlPrefilter=function(e){return P(e),e.replace(O,"<$1></$2>")}},s.htmlPrefilter=function(e){return P(e),q(e)};var D,_=s.fn.offset;s.fn.offset=function(){var e=this[0];return!e||e.nodeType&&e.getBoundingClientRect?_.apply(this,arguments):(u("jQuery.fn.offset() requires a valid DOM element"),arguments.length?this:void 0)},s.ajax&&(D=s.param,s.param=function(e,t){var r=s.ajaxSettings&&s.ajaxSettings.traditional;return void 0===t&&r&&(u("jQuery.param() no longer uses jQuery.ajaxSettings.traditional"),t=r),D.call(this,e,t)});var E,F,J=s.fn.andSelf||s.fn.addBack;return s.fn.andSelf=function(){return u("jQuery.fn.andSelf() is deprecated and removed, use jQuery.fn.addBack()"),J.apply(this,arguments)},s.Deferred&&(E=s.Deferred,F=[["resolve","done",s.Callbacks("once memory"),s.Callbacks("once memory"),"resolved"],["reject","fail",s.Callbacks("once memory"),s.Callbacks("once memory"),"rejected"],["notify","progress",s.Callbacks("memory"),s.Callbacks("memory")]],s.Deferred=function(e){var i=E(),a=i.promise();return i.pipe=a.pipe=function(){var o=arguments;return u("deferred.pipe() is deprecated"),s.Deferred(function(n){s.each(F,function(e,t){var r="function"==typeof o[e]&&o[e];i[t[1]](function(){var e=r&&r.apply(this,arguments);e&&"function"==typeof e.promise?e.promise().done(n.resolve).fail(n.reject).progress(n.notify):n[t[0]+"With"](this===a?n.promise():this,r?[e]:arguments)})}),o=null}).promise()},e&&e.call(i,i),i},s.Deferred.exceptionHook=E.exceptionHook),s});
(-)a/koha-tmpl/opac-tmpl/bootstrap/lib/jquery/jquery-3.4.1.js (-10598 lines)
Lines 1-10598 Link Here
1
/*!
2
 * jQuery JavaScript Library v3.4.1
3
 * https://jquery.com/
4
 *
5
 * Includes Sizzle.js
6
 * https://sizzlejs.com/
7
 *
8
 * Copyright JS Foundation and other contributors
9
 * Released under the MIT license
10
 * https://jquery.org/license
11
 *
12
 * Date: 2019-05-01T21:04Z
13
 */
14
( function( global, factory ) {
15
16
    "use strict";
17
18
    if ( typeof module === "object" && typeof module.exports === "object" ) {
19
20
        // For CommonJS and CommonJS-like environments where a proper `window`
21
        // is present, execute the factory and get jQuery.
22
        // For environments that do not have a `window` with a `document`
23
        // (such as Node.js), expose a factory as module.exports.
24
        // This accentuates the need for the creation of a real `window`.
25
        // e.g. var jQuery = require("jquery")(window);
26
        // See ticket #14549 for more info.
27
        module.exports = global.document ?
28
            factory( global, true ) :
29
            function( w ) {
30
                if ( !w.document ) {
31
                    throw new Error( "jQuery requires a window with a document" );
32
                }
33
                return factory( w );
34
            };
35
    } else {
36
        factory( global );
37
    }
38
39
// Pass this if window is not defined yet
40
} )( typeof window !== "undefined" ? window : this, function( window, noGlobal ) {
41
42
// Edge <= 12 - 13+, Firefox <=18 - 45+, IE 10 - 11, Safari 5.1 - 9+, iOS 6 - 9.1
43
// throw exceptions when non-strict code (e.g., ASP.NET 4.5) accesses strict mode
44
// arguments.callee.caller (trac-13335). But as of jQuery 3.0 (2016), strict mode should be common
45
// enough that all such attempts are guarded in a try block.
46
"use strict";
47
48
var arr = [];
49
50
var document = window.document;
51
52
var getProto = Object.getPrototypeOf;
53
54
var slice = arr.slice;
55
56
var concat = arr.concat;
57
58
var push = arr.push;
59
60
var indexOf = arr.indexOf;
61
62
var class2type = {};
63
64
var toString = class2type.toString;
65
66
var hasOwn = class2type.hasOwnProperty;
67
68
var fnToString = hasOwn.toString;
69
70
var ObjectFunctionString = fnToString.call( Object );
71
72
var support = {};
73
74
var isFunction = function isFunction( obj ) {
75
76
      // Support: Chrome <=57, Firefox <=52
77
      // In some browsers, typeof returns "function" for HTML <object> elements
78
      // (i.e., `typeof document.createElement( "object" ) === "function"`).
79
      // We don't want to classify *any* DOM node as a function.
80
      return typeof obj === "function" && typeof obj.nodeType !== "number";
81
  };
82
83
84
var isWindow = function isWindow( obj ) {
85
        return obj != null && obj === obj.window;
86
    };
87
88
89
90
91
    var preservedScriptAttributes = {
92
        type: true,
93
        src: true,
94
        nonce: true,
95
        noModule: true
96
    };
97
98
    function DOMEval( code, node, doc ) {
99
        doc = doc || document;
100
101
        var i, val,
102
            script = doc.createElement( "script" );
103
104
        script.text = code;
105
        if ( node ) {
106
            for ( i in preservedScriptAttributes ) {
107
108
                // Support: Firefox 64+, Edge 18+
109
                // Some browsers don't support the "nonce" property on scripts.
110
                // On the other hand, just using `getAttribute` is not enough as
111
                // the `nonce` attribute is reset to an empty string whenever it
112
                // becomes browsing-context connected.
113
                // See https://github.com/whatwg/html/issues/2369
114
                // See https://html.spec.whatwg.org/#nonce-attributes
115
                // The `node.getAttribute` check was added for the sake of
116
                // `jQuery.globalEval` so that it can fake a nonce-containing node
117
                // via an object.
118
                val = node[ i ] || node.getAttribute && node.getAttribute( i );
119
                if ( val ) {
120
                    script.setAttribute( i, val );
121
                }
122
            }
123
        }
124
        doc.head.appendChild( script ).parentNode.removeChild( script );
125
    }
126
127
128
function toType( obj ) {
129
    if ( obj == null ) {
130
        return obj + "";
131
    }
132
133
    // Support: Android <=2.3 only (functionish RegExp)
134
    return typeof obj === "object" || typeof obj === "function" ?
135
        class2type[ toString.call( obj ) ] || "object" :
136
        typeof obj;
137
}
138
/* global Symbol */
139
// Defining this global in .eslintrc.json would create a danger of using the global
140
// unguarded in another place, it seems safer to define global only for this module
141
142
143
144
var
145
    version = "3.4.1",
146
147
    // Define a local copy of jQuery
148
    jQuery = function( selector, context ) {
149
150
        // The jQuery object is actually just the init constructor 'enhanced'
151
        // Need init if jQuery is called (just allow error to be thrown if not included)
152
        return new jQuery.fn.init( selector, context );
153
    },
154
155
    // Support: Android <=4.0 only
156
    // Make sure we trim BOM and NBSP
157
    rtrim = /^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g;
158
159
jQuery.fn = jQuery.prototype = {
160
161
    // The current version of jQuery being used
162
    jquery: version,
163
164
    constructor: jQuery,
165
166
    // The default length of a jQuery object is 0
167
    length: 0,
168
169
    toArray: function() {
170
        return slice.call( this );
171
    },
172
173
    // Get the Nth element in the matched element set OR
174
    // Get the whole matched element set as a clean array
175
    get: function( num ) {
176
177
        // Return all the elements in a clean array
178
        if ( num == null ) {
179
            return slice.call( this );
180
        }
181
182
        // Return just the one element from the set
183
        return num < 0 ? this[ num + this.length ] : this[ num ];
184
    },
185
186
    // Take an array of elements and push it onto the stack
187
    // (returning the new matched element set)
188
    pushStack: function( elems ) {
189
190
        // Build a new jQuery matched element set
191
        var ret = jQuery.merge( this.constructor(), elems );
192
193
        // Add the old object onto the stack (as a reference)
194
        ret.prevObject = this;
195
196
        // Return the newly-formed element set
197
        return ret;
198
    },
199
200
    // Execute a callback for every element in the matched set.
201
    each: function( callback ) {
202
        return jQuery.each( this, callback );
203
    },
204
205
    map: function( callback ) {
206
        return this.pushStack( jQuery.map( this, function( elem, i ) {
207
            return callback.call( elem, i, elem );
208
        } ) );
209
    },
210
211
    slice: function() {
212
        return this.pushStack( slice.apply( this, arguments ) );
213
    },
214
215
    first: function() {
216
        return this.eq( 0 );
217
    },
218
219
    last: function() {
220
        return this.eq( -1 );
221
    },
222
223
    eq: function( i ) {
224
        var len = this.length,
225
            j = +i + ( i < 0 ? len : 0 );
226
        return this.pushStack( j >= 0 && j < len ? [ this[ j ] ] : [] );
227
    },
228
229
    end: function() {
230
        return this.prevObject || this.constructor();
231
    },
232
233
    // For internal use only.
234
    // Behaves like an Array's method, not like a jQuery method.
235
    push: push,
236
    sort: arr.sort,
237
    splice: arr.splice
238
};
239
240
jQuery.extend = jQuery.fn.extend = function() {
241
    var options, name, src, copy, copyIsArray, clone,
242
        target = arguments[ 0 ] || {},
243
        i = 1,
244
        length = arguments.length,
245
        deep = false;
246
247
    // Handle a deep copy situation
248
    if ( typeof target === "boolean" ) {
249
        deep = target;
250
251
        // Skip the boolean and the target
252
        target = arguments[ i ] || {};
253
        i++;
254
    }
255
256
    // Handle case when target is a string or something (possible in deep copy)
257
    if ( typeof target !== "object" && !isFunction( target ) ) {
258
        target = {};
259
    }
260
261
    // Extend jQuery itself if only one argument is passed
262
    if ( i === length ) {
263
        target = this;
264
        i--;
265
    }
266
267
    for ( ; i < length; i++ ) {
268
269
        // Only deal with non-null/undefined values
270
        if ( ( options = arguments[ i ] ) != null ) {
271
272
            // Extend the base object
273
            for ( name in options ) {
274
                copy = options[ name ];
275
276
                // Prevent Object.prototype pollution
277
                // Prevent never-ending loop
278
                if ( name === "__proto__" || target === copy ) {
279
                    continue;
280
                }
281
282
                // Recurse if we're merging plain objects or arrays
283
                if ( deep && copy && ( jQuery.isPlainObject( copy ) ||
284
                    ( copyIsArray = Array.isArray( copy ) ) ) ) {
285
                    src = target[ name ];
286
287
                    // Ensure proper type for the source value
288
                    if ( copyIsArray && !Array.isArray( src ) ) {
289
                        clone = [];
290
                    } else if ( !copyIsArray && !jQuery.isPlainObject( src ) ) {
291
                        clone = {};
292
                    } else {
293
                        clone = src;
294
                    }
295
                    copyIsArray = false;
296
297
                    // Never move original objects, clone them
298
                    target[ name ] = jQuery.extend( deep, clone, copy );
299
300
                // Don't bring in undefined values
301
                } else if ( copy !== undefined ) {
302
                    target[ name ] = copy;
303
                }
304
            }
305
        }
306
    }
307
308
    // Return the modified object
309
    return target;
310
};
311
312
jQuery.extend( {
313
314
    // Unique for each copy of jQuery on the page
315
    expando: "jQuery" + ( version + Math.random() ).replace( /\D/g, "" ),
316
317
    // Assume jQuery is ready without the ready module
318
    isReady: true,
319
320
    error: function( msg ) {
321
        throw new Error( msg );
322
    },
323
324
    noop: function() {},
325
326
    isPlainObject: function( obj ) {
327
        var proto, Ctor;
328
329
        // Detect obvious negatives
330
        // Use toString instead of jQuery.type to catch host objects
331
        if ( !obj || toString.call( obj ) !== "[object Object]" ) {
332
            return false;
333
        }
334
335
        proto = getProto( obj );
336
337
        // Objects with no prototype (e.g., `Object.create( null )`) are plain
338
        if ( !proto ) {
339
            return true;
340
        }
341
342
        // Objects with prototype are plain iff they were constructed by a global Object function
343
        Ctor = hasOwn.call( proto, "constructor" ) && proto.constructor;
344
        return typeof Ctor === "function" && fnToString.call( Ctor ) === ObjectFunctionString;
345
    },
346
347
    isEmptyObject: function( obj ) {
348
        var name;
349
350
        for ( name in obj ) {
351
            return false;
352
        }
353
        return true;
354
    },
355
356
    // Evaluates a script in a global context
357
    globalEval: function( code, options ) {
358
        DOMEval( code, { nonce: options && options.nonce } );
359
    },
360
361
    each: function( obj, callback ) {
362
        var length, i = 0;
363
364
        if ( isArrayLike( obj ) ) {
365
            length = obj.length;
366
            for ( ; i < length; i++ ) {
367
                if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) {
368
                    break;
369
                }
370
            }
371
        } else {
372
            for ( i in obj ) {
373
                if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) {
374
                    break;
375
                }
376
            }
377
        }
378
379
        return obj;
380
    },
381
382
    // Support: Android <=4.0 only
383
    trim: function( text ) {
384
        return text == null ?
385
            "" :
386
            ( text + "" ).replace( rtrim, "" );
387
    },
388
389
    // results is for internal usage only
390
    makeArray: function( arr, results ) {
391
        var ret = results || [];
392
393
        if ( arr != null ) {
394
            if ( isArrayLike( Object( arr ) ) ) {
395
                jQuery.merge( ret,
396
                    typeof arr === "string" ?
397
                    [ arr ] : arr
398
                );
399
            } else {
400
                push.call( ret, arr );
401
            }
402
        }
403
404
        return ret;
405
    },
406
407
    inArray: function( elem, arr, i ) {
408
        return arr == null ? -1 : indexOf.call( arr, elem, i );
409
    },
410
411
    // Support: Android <=4.0 only, PhantomJS 1 only
412
    // push.apply(_, arraylike) throws on ancient WebKit
413
    merge: function( first, second ) {
414
        var len = +second.length,
415
            j = 0,
416
            i = first.length;
417
418
        for ( ; j < len; j++ ) {
419
            first[ i++ ] = second[ j ];
420
        }
421
422
        first.length = i;
423
424
        return first;
425
    },
426
427
    grep: function( elems, callback, invert ) {
428
        var callbackInverse,
429
            matches = [],
430
            i = 0,
431
            length = elems.length,
432
            callbackExpect = !invert;
433
434
        // Go through the array, only saving the items
435
        // that pass the validator function
436
        for ( ; i < length; i++ ) {
437
            callbackInverse = !callback( elems[ i ], i );
438
            if ( callbackInverse !== callbackExpect ) {
439
                matches.push( elems[ i ] );
440
            }
441
        }
442
443
        return matches;
444
    },
445
446
    // arg is for internal usage only
447
    map: function( elems, callback, arg ) {
448
        var length, value,
449
            i = 0,
450
            ret = [];
451
452
        // Go through the array, translating each of the items to their new values
453
        if ( isArrayLike( elems ) ) {
454
            length = elems.length;
455
            for ( ; i < length; i++ ) {
456
                value = callback( elems[ i ], i, arg );
457
458
                if ( value != null ) {
459
                    ret.push( value );
460
                }
461
            }
462
463
        // Go through every key on the object,
464
        } else {
465
            for ( i in elems ) {
466
                value = callback( elems[ i ], i, arg );
467
468
                if ( value != null ) {
469
                    ret.push( value );
470
                }
471
            }
472
        }
473
474
        // Flatten any nested arrays
475
        return concat.apply( [], ret );
476
    },
477
478
    // A global GUID counter for objects
479
    guid: 1,
480
481
    // jQuery.support is not used in Core but other projects attach their
482
    // properties to it so it needs to exist.
483
    support: support
484
} );
485
486
if ( typeof Symbol === "function" ) {
487
    jQuery.fn[ Symbol.iterator ] = arr[ Symbol.iterator ];
488
}
489
490
// Populate the class2type map
491
jQuery.each( "Boolean Number String Function Array Date RegExp Object Error Symbol".split( " " ),
492
function( i, name ) {
493
    class2type[ "[object " + name + "]" ] = name.toLowerCase();
494
} );
495
496
function isArrayLike( obj ) {
497
498
    // Support: real iOS 8.2 only (not reproducible in simulator)
499
    // `in` check used to prevent JIT error (gh-2145)
500
    // hasOwn isn't used here due to false negatives
501
    // regarding Nodelist length in IE
502
    var length = !!obj && "length" in obj && obj.length,
503
        type = toType( obj );
504
505
    if ( isFunction( obj ) || isWindow( obj ) ) {
506
        return false;
507
    }
508
509
    return type === "array" || length === 0 ||
510
        typeof length === "number" && length > 0 && ( length - 1 ) in obj;
511
}
512
var Sizzle =
513
/*!
514
 * Sizzle CSS Selector Engine v2.3.4
515
 * https://sizzlejs.com/
516
 *
517
 * Copyright JS Foundation and other contributors
518
 * Released under the MIT license
519
 * https://js.foundation/
520
 *
521
 * Date: 2019-04-08
522
 */
523
(function( window ) {
524
525
var i,
526
    support,
527
    Expr,
528
    getText,
529
    isXML,
530
    tokenize,
531
    compile,
532
    select,
533
    outermostContext,
534
    sortInput,
535
    hasDuplicate,
536
537
    // Local document vars
538
    setDocument,
539
    document,
540
    docElem,
541
    documentIsHTML,
542
    rbuggyQSA,
543
    rbuggyMatches,
544
    matches,
545
    contains,
546
547
    // Instance-specific data
548
    expando = "sizzle" + 1 * new Date(),
549
    preferredDoc = window.document,
550
    dirruns = 0,
551
    done = 0,
552
    classCache = createCache(),
553
    tokenCache = createCache(),
554
    compilerCache = createCache(),
555
    nonnativeSelectorCache = createCache(),
556
    sortOrder = function( a, b ) {
557
        if ( a === b ) {
558
            hasDuplicate = true;
559
        }
560
        return 0;
561
    },
562
563
    // Instance methods
564
    hasOwn = ({}).hasOwnProperty,
565
    arr = [],
566
    pop = arr.pop,
567
    push_native = arr.push,
568
    push = arr.push,
569
    slice = arr.slice,
570
    // Use a stripped-down indexOf as it's faster than native
571
    // https://jsperf.com/thor-indexof-vs-for/5
572
    indexOf = function( list, elem ) {
573
        var i = 0,
574
            len = list.length;
575
        for ( ; i < len; i++ ) {
576
            if ( list[i] === elem ) {
577
                return i;
578
            }
579
        }
580
        return -1;
581
    },
582
583
    booleans = "checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",
584
585
    // Regular expressions
586
587
    // http://www.w3.org/TR/css3-selectors/#whitespace
588
    whitespace = "[\\x20\\t\\r\\n\\f]",
589
590
    // http://www.w3.org/TR/CSS21/syndata.html#value-def-identifier
591
    identifier = "(?:\\\\.|[\\w-]|[^\0-\\xa0])+",
592
593
    // Attribute selectors: http://www.w3.org/TR/selectors/#attribute-selectors
594
    attributes = "\\[" + whitespace + "*(" + identifier + ")(?:" + whitespace +
595
        // Operator (capture 2)
596
        "*([*^$|!~]?=)" + whitespace +
597
        // "Attribute values must be CSS identifiers [capture 5] or strings [capture 3 or capture 4]"
598
        "*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|(" + identifier + "))|)" + whitespace +
599
        "*\\]",
600
601
    pseudos = ":(" + identifier + ")(?:\\((" +
602
        // To reduce the number of selectors needing tokenize in the preFilter, prefer arguments:
603
        // 1. quoted (capture 3; capture 4 or capture 5)
604
        "('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|" +
605
        // 2. simple (capture 6)
606
        "((?:\\\\.|[^\\\\()[\\]]|" + attributes + ")*)|" +
607
        // 3. anything else (capture 2)
608
        ".*" +
609
        ")\\)|)",
610
611
    // Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter
612
    rwhitespace = new RegExp( whitespace + "+", "g" ),
613
    rtrim = new RegExp( "^" + whitespace + "+|((?:^|[^\\\\])(?:\\\\.)*)" + whitespace + "+$", "g" ),
614
615
    rcomma = new RegExp( "^" + whitespace + "*," + whitespace + "*" ),
616
    rcombinators = new RegExp( "^" + whitespace + "*([>+~]|" + whitespace + ")" + whitespace + "*" ),
617
    rdescend = new RegExp( whitespace + "|>" ),
618
619
    rpseudo = new RegExp( pseudos ),
620
    ridentifier = new RegExp( "^" + identifier + "$" ),
621
622
    matchExpr = {
623
        "ID": new RegExp( "^#(" + identifier + ")" ),
624
        "CLASS": new RegExp( "^\\.(" + identifier + ")" ),
625
        "TAG": new RegExp( "^(" + identifier + "|[*])" ),
626
        "ATTR": new RegExp( "^" + attributes ),
627
        "PSEUDO": new RegExp( "^" + pseudos ),
628
        "CHILD": new RegExp( "^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\(" + whitespace +
629
            "*(even|odd|(([+-]|)(\\d*)n|)" + whitespace + "*(?:([+-]|)" + whitespace +
630
            "*(\\d+)|))" + whitespace + "*\\)|)", "i" ),
631
        "bool": new RegExp( "^(?:" + booleans + ")$", "i" ),
632
        // For use in libraries implementing .is()
633
        // We use this for POS matching in `select`
634
        "needsContext": new RegExp( "^" + whitespace + "*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\(" +
635
            whitespace + "*((?:-\\d)?\\d*)" + whitespace + "*\\)|)(?=[^-]|$)", "i" )
636
    },
637
638
    rhtml = /HTML$/i,
639
    rinputs = /^(?:input|select|textarea|button)$/i,
640
    rheader = /^h\d$/i,
641
642
    rnative = /^[^{]+\{\s*\[native \w/,
643
644
    // Easily-parseable/retrievable ID or TAG or CLASS selectors
645
    rquickExpr = /^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,
646
647
    rsibling = /[+~]/,
648
649
    // CSS escapes
650
    // http://www.w3.org/TR/CSS21/syndata.html#escaped-characters
651
    runescape = new RegExp( "\\\\([\\da-f]{1,6}" + whitespace + "?|(" + whitespace + ")|.)", "ig" ),
652
    funescape = function( _, escaped, escapedWhitespace ) {
653
        var high = "0x" + escaped - 0x10000;
654
        // NaN means non-codepoint
655
        // Support: Firefox<24
656
        // Workaround erroneous numeric interpretation of +"0x"
657
        return high !== high || escapedWhitespace ?
658
            escaped :
659
            high < 0 ?
660
                // BMP codepoint
661
                String.fromCharCode( high + 0x10000 ) :
662
                // Supplemental Plane codepoint (surrogate pair)
663
                String.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 );
664
    },
665
666
    // CSS string/identifier serialization
667
    // https://drafts.csswg.org/cssom/#common-serializing-idioms
668
    rcssescape = /([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,
669
    fcssescape = function( ch, asCodePoint ) {
670
        if ( asCodePoint ) {
671
672
            // U+0000 NULL becomes U+FFFD REPLACEMENT CHARACTER
673
            if ( ch === "\0" ) {
674
                return "\uFFFD";
675
            }
676
677
            // Control characters and (dependent upon position) numbers get escaped as code points
678
            return ch.slice( 0, -1 ) + "\\" + ch.charCodeAt( ch.length - 1 ).toString( 16 ) + " ";
679
        }
680
681
        // Other potentially-special ASCII characters get backslash-escaped
682
        return "\\" + ch;
683
    },
684
685
    // Used for iframes
686
    // See setDocument()
687
    // Removing the function wrapper causes a "Permission Denied"
688
    // error in IE
689
    unloadHandler = function() {
690
        setDocument();
691
    },
692
693
    inDisabledFieldset = addCombinator(
694
        function( elem ) {
695
            return elem.disabled === true && elem.nodeName.toLowerCase() === "fieldset";
696
        },
697
        { dir: "parentNode", next: "legend" }
698
    );
699
700
// Optimize for push.apply( _, NodeList )
701
try {
702
    push.apply(
703
        (arr = slice.call( preferredDoc.childNodes )),
704
        preferredDoc.childNodes
705
    );
706
    // Support: Android<4.0
707
    // Detect silently failing push.apply
708
    arr[ preferredDoc.childNodes.length ].nodeType;
709
} catch ( e ) {
710
    push = { apply: arr.length ?
711
712
        // Leverage slice if possible
713
        function( target, els ) {
714
            push_native.apply( target, slice.call(els) );
715
        } :
716
717
        // Support: IE<9
718
        // Otherwise append directly
719
        function( target, els ) {
720
            var j = target.length,
721
                i = 0;
722
            // Can't trust NodeList.length
723
            while ( (target[j++] = els[i++]) ) {}
724
            target.length = j - 1;
725
        }
726
    };
727
}
728
729
function Sizzle( selector, context, results, seed ) {
730
    var m, i, elem, nid, match, groups, newSelector,
731
        newContext = context && context.ownerDocument,
732
733
        // nodeType defaults to 9, since context defaults to document
734
        nodeType = context ? context.nodeType : 9;
735
736
    results = results || [];
737
738
    // Return early from calls with invalid selector or context
739
    if ( typeof selector !== "string" || !selector ||
740
        nodeType !== 1 && nodeType !== 9 && nodeType !== 11 ) {
741
742
        return results;
743
    }
744
745
    // Try to shortcut find operations (as opposed to filters) in HTML documents
746
    if ( !seed ) {
747
748
        if ( ( context ? context.ownerDocument || context : preferredDoc ) !== document ) {
749
            setDocument( context );
750
        }
751
        context = context || document;
752
753
        if ( documentIsHTML ) {
754
755
            // If the selector is sufficiently simple, try using a "get*By*" DOM method
756
            // (excepting DocumentFragment context, where the methods don't exist)
757
            if ( nodeType !== 11 && (match = rquickExpr.exec( selector )) ) {
758
759
                // ID selector
760
                if ( (m = match[1]) ) {
761
762
                    // Document context
763
                    if ( nodeType === 9 ) {
764
                        if ( (elem = context.getElementById( m )) ) {
765
766
                            // Support: IE, Opera, Webkit
767
                            // TODO: identify versions
768
                            // getElementById can match elements by name instead of ID
769
                            if ( elem.id === m ) {
770
                                results.push( elem );
771
                                return results;
772
                            }
773
                        } else {
774
                            return results;
775
                        }
776
777
                    // Element context
778
                    } else {
779
780
                        // Support: IE, Opera, Webkit
781
                        // TODO: identify versions
782
                        // getElementById can match elements by name instead of ID
783
                        if ( newContext && (elem = newContext.getElementById( m )) &&
784
                            contains( context, elem ) &&
785
                            elem.id === m ) {
786
787
                            results.push( elem );
788
                            return results;
789
                        }
790
                    }
791
792
                // Type selector
793
                } else if ( match[2] ) {
794
                    push.apply( results, context.getElementsByTagName( selector ) );
795
                    return results;
796
797
                // Class selector
798
                } else if ( (m = match[3]) && support.getElementsByClassName &&
799
                    context.getElementsByClassName ) {
800
801
                    push.apply( results, context.getElementsByClassName( m ) );
802
                    return results;
803
                }
804
            }
805
806
            // Take advantage of querySelectorAll
807
            if ( support.qsa &&
808
                !nonnativeSelectorCache[ selector + " " ] &&
809
                (!rbuggyQSA || !rbuggyQSA.test( selector )) &&
810
811
                // Support: IE 8 only
812
                // Exclude object elements
813
                (nodeType !== 1 || context.nodeName.toLowerCase() !== "object") ) {
814
815
                newSelector = selector;
816
                newContext = context;
817
818
                // qSA considers elements outside a scoping root when evaluating child or
819
                // descendant combinators, which is not what we want.
820
                // In such cases, we work around the behavior by prefixing every selector in the
821
                // list with an ID selector referencing the scope context.
822
                // Thanks to Andrew Dupont for this technique.
823
                if ( nodeType === 1 && rdescend.test( selector ) ) {
824
825
                    // Capture the context ID, setting it first if necessary
826
                    if ( (nid = context.getAttribute( "id" )) ) {
827
                        nid = nid.replace( rcssescape, fcssescape );
828
                    } else {
829
                        context.setAttribute( "id", (nid = expando) );
830
                    }
831
832
                    // Prefix every selector in the list
833
                    groups = tokenize( selector );
834
                    i = groups.length;
835
                    while ( i-- ) {
836
                        groups[i] = "#" + nid + " " + toSelector( groups[i] );
837
                    }
838
                    newSelector = groups.join( "," );
839
840
                    // Expand context for sibling selectors
841
                    newContext = rsibling.test( selector ) && testContext( context.parentNode ) ||
842
                        context;
843
                }
844
845
                try {
846
                    push.apply( results,
847
                        newContext.querySelectorAll( newSelector )
848
                    );
849
                    return results;
850
                } catch ( qsaError ) {
851
                    nonnativeSelectorCache( selector, true );
852
                } finally {
853
                    if ( nid === expando ) {
854
                        context.removeAttribute( "id" );
855
                    }
856
                }
857
            }
858
        }
859
    }
860
861
    // All others
862
    return select( selector.replace( rtrim, "$1" ), context, results, seed );
863
}
864
865
/**
866
 * Create key-value caches of limited size
867
 * @returns {function(string, object)} Returns the Object data after storing it on itself with
868
 *  property name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength)
869
 *  deleting the oldest entry
870
 */
871
function createCache() {
872
    var keys = [];
873
874
    function cache( key, value ) {
875
        // Use (key + " ") to avoid collision with native prototype properties (see Issue #157)
876
        if ( keys.push( key + " " ) > Expr.cacheLength ) {
877
            // Only keep the most recent entries
878
            delete cache[ keys.shift() ];
879
        }
880
        return (cache[ key + " " ] = value);
881
    }
882
    return cache;
883
}
884
885
/**
886
 * Mark a function for special use by Sizzle
887
 * @param {Function} fn The function to mark
888
 */
889
function markFunction( fn ) {
890
    fn[ expando ] = true;
891
    return fn;
892
}
893
894
/**
895
 * Support testing using an element
896
 * @param {Function} fn Passed the created element and returns a boolean result
897
 */
898
function assert( fn ) {
899
    var el = document.createElement("fieldset");
900
901
    try {
902
        return !!fn( el );
903
    } catch (e) {
904
        return false;
905
    } finally {
906
        // Remove from its parent by default
907
        if ( el.parentNode ) {
908
            el.parentNode.removeChild( el );
909
        }
910
        // release memory in IE
911
        el = null;
912
    }
913
}
914
915
/**
916
 * Adds the same handler for all of the specified attrs
917
 * @param {String} attrs Pipe-separated list of attributes
918
 * @param {Function} handler The method that will be applied
919
 */
920
function addHandle( attrs, handler ) {
921
    var arr = attrs.split("|"),
922
        i = arr.length;
923
924
    while ( i-- ) {
925
        Expr.attrHandle[ arr[i] ] = handler;
926
    }
927
}
928
929
/**
930
 * Checks document order of two siblings
931
 * @param {Element} a
932
 * @param {Element} b
933
 * @returns {Number} Returns less than 0 if a precedes b, greater than 0 if a follows b
934
 */
935
function siblingCheck( a, b ) {
936
    var cur = b && a,
937
        diff = cur && a.nodeType === 1 && b.nodeType === 1 &&
938
            a.sourceIndex - b.sourceIndex;
939
940
    // Use IE sourceIndex if available on both nodes
941
    if ( diff ) {
942
        return diff;
943
    }
944
945
    // Check if b follows a
946
    if ( cur ) {
947
        while ( (cur = cur.nextSibling) ) {
948
            if ( cur === b ) {
949
                return -1;
950
            }
951
        }
952
    }
953
954
    return a ? 1 : -1;
955
}
956
957
/**
958
 * Returns a function to use in pseudos for input types
959
 * @param {String} type
960
 */
961
function createInputPseudo( type ) {
962
    return function( elem ) {
963
        var name = elem.nodeName.toLowerCase();
964
        return name === "input" && elem.type === type;
965
    };
966
}
967
968
/**
969
 * Returns a function to use in pseudos for buttons
970
 * @param {String} type
971
 */
972
function createButtonPseudo( type ) {
973
    return function( elem ) {
974
        var name = elem.nodeName.toLowerCase();
975
        return (name === "input" || name === "button") && elem.type === type;
976
    };
977
}
978
979
/**
980
 * Returns a function to use in pseudos for :enabled/:disabled
981
 * @param {Boolean} disabled true for :disabled; false for :enabled
982
 */
983
function createDisabledPseudo( disabled ) {
984
985
    // Known :disabled false positives: fieldset[disabled] > legend:nth-of-type(n+2) :can-disable
986
    return function( elem ) {
987
988
        // Only certain elements can match :enabled or :disabled
989
        // https://html.spec.whatwg.org/multipage/scripting.html#selector-enabled
990
        // https://html.spec.whatwg.org/multipage/scripting.html#selector-disabled
991
        if ( "form" in elem ) {
992
993
            // Check for inherited disabledness on relevant non-disabled elements:
994
            // * listed form-associated elements in a disabled fieldset
995
            //   https://html.spec.whatwg.org/multipage/forms.html#category-listed
996
            //   https://html.spec.whatwg.org/multipage/forms.html#concept-fe-disabled
997
            // * option elements in a disabled optgroup
998
            //   https://html.spec.whatwg.org/multipage/forms.html#concept-option-disabled
999
            // All such elements have a "form" property.
1000
            if ( elem.parentNode && elem.disabled === false ) {
1001
1002
                // Option elements defer to a parent optgroup if present
1003
                if ( "label" in elem ) {
1004
                    if ( "label" in elem.parentNode ) {
1005
                        return elem.parentNode.disabled === disabled;
1006
                    } else {
1007
                        return elem.disabled === disabled;
1008
                    }
1009
                }
1010
1011
                // Support: IE 6 - 11
1012
                // Use the isDisabled shortcut property to check for disabled fieldset ancestors
1013
                return elem.isDisabled === disabled ||
1014
1015
                    // Where there is no isDisabled, check manually
1016
                    /* jshint -W018 */
1017
                    elem.isDisabled !== !disabled &&
1018
                        inDisabledFieldset( elem ) === disabled;
1019
            }
1020
1021
            return elem.disabled === disabled;
1022
1023
        // Try to winnow out elements that can't be disabled before trusting the disabled property.
1024
        // Some victims get caught in our net (label, legend, menu, track), but it shouldn't
1025
        // even exist on them, let alone have a boolean value.
1026
        } else if ( "label" in elem ) {
1027
            return elem.disabled === disabled;
1028
        }
1029
1030
        // Remaining elements are neither :enabled nor :disabled
1031
        return false;
1032
    };
1033
}
1034
1035
/**
1036
 * Returns a function to use in pseudos for positionals
1037
 * @param {Function} fn
1038
 */
1039
function createPositionalPseudo( fn ) {
1040
    return markFunction(function( argument ) {
1041
        argument = +argument;
1042
        return markFunction(function( seed, matches ) {
1043
            var j,
1044
                matchIndexes = fn( [], seed.length, argument ),
1045
                i = matchIndexes.length;
1046
1047
            // Match elements found at the specified indexes
1048
            while ( i-- ) {
1049
                if ( seed[ (j = matchIndexes[i]) ] ) {
1050
                    seed[j] = !(matches[j] = seed[j]);
1051
                }
1052
            }
1053
        });
1054
    });
1055
}
1056
1057
/**
1058
 * Checks a node for validity as a Sizzle context
1059
 * @param {Element|Object=} context
1060
 * @returns {Element|Object|Boolean} The input node if acceptable, otherwise a falsy value
1061
 */
1062
function testContext( context ) {
1063
    return context && typeof context.getElementsByTagName !== "undefined" && context;
1064
}
1065
1066
// Expose support vars for convenience
1067
support = Sizzle.support = {};
1068
1069
/**
1070
 * Detects XML nodes
1071
 * @param {Element|Object} elem An element or a document
1072
 * @returns {Boolean} True iff elem is a non-HTML XML node
1073
 */
1074
isXML = Sizzle.isXML = function( elem ) {
1075
    var namespace = elem.namespaceURI,
1076
        docElem = (elem.ownerDocument || elem).documentElement;
1077
1078
    // Support: IE <=8
1079
    // Assume HTML when documentElement doesn't yet exist, such as inside loading iframes
1080
    // https://bugs.jquery.com/ticket/4833
1081
    return !rhtml.test( namespace || docElem && docElem.nodeName || "HTML" );
1082
};
1083
1084
/**
1085
 * Sets document-related variables once based on the current document
1086
 * @param {Element|Object} [doc] An element or document object to use to set the document
1087
 * @returns {Object} Returns the current document
1088
 */
1089
setDocument = Sizzle.setDocument = function( node ) {
1090
    var hasCompare, subWindow,
1091
        doc = node ? node.ownerDocument || node : preferredDoc;
1092
1093
    // Return early if doc is invalid or already selected
1094
    if ( doc === document || doc.nodeType !== 9 || !doc.documentElement ) {
1095
        return document;
1096
    }
1097
1098
    // Update global variables
1099
    document = doc;
1100
    docElem = document.documentElement;
1101
    documentIsHTML = !isXML( document );
1102
1103
    // Support: IE 9-11, Edge
1104
    // Accessing iframe documents after unload throws "permission denied" errors (jQuery #13936)
1105
    if ( preferredDoc !== document &&
1106
        (subWindow = document.defaultView) && subWindow.top !== subWindow ) {
1107
1108
        // Support: IE 11, Edge
1109
        if ( subWindow.addEventListener ) {
1110
            subWindow.addEventListener( "unload", unloadHandler, false );
1111
1112
        // Support: IE 9 - 10 only
1113
        } else if ( subWindow.attachEvent ) {
1114
            subWindow.attachEvent( "onunload", unloadHandler );
1115
        }
1116
    }
1117
1118
    /* Attributes
1119
    ---------------------------------------------------------------------- */
1120
1121
    // Support: IE<8
1122
    // Verify that getAttribute really returns attributes and not properties
1123
    // (excepting IE8 booleans)
1124
    support.attributes = assert(function( el ) {
1125
        el.className = "i";
1126
        return !el.getAttribute("className");
1127
    });
1128
1129
    /* getElement(s)By*
1130
    ---------------------------------------------------------------------- */
1131
1132
    // Check if getElementsByTagName("*") returns only elements
1133
    support.getElementsByTagName = assert(function( el ) {
1134
        el.appendChild( document.createComment("") );
1135
        return !el.getElementsByTagName("*").length;
1136
    });
1137
1138
    // Support: IE<9
1139
    support.getElementsByClassName = rnative.test( document.getElementsByClassName );
1140
1141
    // Support: IE<10
1142
    // Check if getElementById returns elements by name
1143
    // The broken getElementById methods don't pick up programmatically-set names,
1144
    // so use a roundabout getElementsByName test
1145
    support.getById = assert(function( el ) {
1146
        docElem.appendChild( el ).id = expando;
1147
        return !document.getElementsByName || !document.getElementsByName( expando ).length;
1148
    });
1149
1150
    // ID filter and find
1151
    if ( support.getById ) {
1152
        Expr.filter["ID"] = function( id ) {
1153
            var attrId = id.replace( runescape, funescape );
1154
            return function( elem ) {
1155
                return elem.getAttribute("id") === attrId;
1156
            };
1157
        };
1158
        Expr.find["ID"] = function( id, context ) {
1159
            if ( typeof context.getElementById !== "undefined" && documentIsHTML ) {
1160
                var elem = context.getElementById( id );
1161
                return elem ? [ elem ] : [];
1162
            }
1163
        };
1164
    } else {
1165
        Expr.filter["ID"] =  function( id ) {
1166
            var attrId = id.replace( runescape, funescape );
1167
            return function( elem ) {
1168
                var node = typeof elem.getAttributeNode !== "undefined" &&
1169
                    elem.getAttributeNode("id");
1170
                return node && node.value === attrId;
1171
            };
1172
        };
1173
1174
        // Support: IE 6 - 7 only
1175
        // getElementById is not reliable as a find shortcut
1176
        Expr.find["ID"] = function( id, context ) {
1177
            if ( typeof context.getElementById !== "undefined" && documentIsHTML ) {
1178
                var node, i, elems,
1179
                    elem = context.getElementById( id );
1180
1181
                if ( elem ) {
1182
1183
                    // Verify the id attribute
1184
                    node = elem.getAttributeNode("id");
1185
                    if ( node && node.value === id ) {
1186
                        return [ elem ];
1187
                    }
1188
1189
                    // Fall back on getElementsByName
1190
                    elems = context.getElementsByName( id );
1191
                    i = 0;
1192
                    while ( (elem = elems[i++]) ) {
1193
                        node = elem.getAttributeNode("id");
1194
                        if ( node && node.value === id ) {
1195
                            return [ elem ];
1196
                        }
1197
                    }
1198
                }
1199
1200
                return [];
1201
            }
1202
        };
1203
    }
1204
1205
    // Tag
1206
    Expr.find["TAG"] = support.getElementsByTagName ?
1207
        function( tag, context ) {
1208
            if ( typeof context.getElementsByTagName !== "undefined" ) {
1209
                return context.getElementsByTagName( tag );
1210
1211
            // DocumentFragment nodes don't have gEBTN
1212
            } else if ( support.qsa ) {
1213
                return context.querySelectorAll( tag );
1214
            }
1215
        } :
1216
1217
        function( tag, context ) {
1218
            var elem,
1219
                tmp = [],
1220
                i = 0,
1221
                // By happy coincidence, a (broken) gEBTN appears on DocumentFragment nodes too
1222
                results = context.getElementsByTagName( tag );
1223
1224
            // Filter out possible comments
1225
            if ( tag === "*" ) {
1226
                while ( (elem = results[i++]) ) {
1227
                    if ( elem.nodeType === 1 ) {
1228
                        tmp.push( elem );
1229
                    }
1230
                }
1231
1232
                return tmp;
1233
            }
1234
            return results;
1235
        };
1236
1237
    // Class
1238
    Expr.find["CLASS"] = support.getElementsByClassName && function( className, context ) {
1239
        if ( typeof context.getElementsByClassName !== "undefined" && documentIsHTML ) {
1240
            return context.getElementsByClassName( className );
1241
        }
1242
    };
1243
1244
    /* QSA/matchesSelector
1245
    ---------------------------------------------------------------------- */
1246
1247
    // QSA and matchesSelector support
1248
1249
    // matchesSelector(:active) reports false when true (IE9/Opera 11.5)
1250
    rbuggyMatches = [];
1251
1252
    // qSa(:focus) reports false when true (Chrome 21)
1253
    // We allow this because of a bug in IE8/9 that throws an error
1254
    // whenever `document.activeElement` is accessed on an iframe
1255
    // So, we allow :focus to pass through QSA all the time to avoid the IE error
1256
    // See https://bugs.jquery.com/ticket/13378
1257
    rbuggyQSA = [];
1258
1259
    if ( (support.qsa = rnative.test( document.querySelectorAll )) ) {
1260
        // Build QSA regex
1261
        // Regex strategy adopted from Diego Perini
1262
        assert(function( el ) {
1263
            // Select is set to empty string on purpose
1264
            // This is to test IE's treatment of not explicitly
1265
            // setting a boolean content attribute,
1266
            // since its presence should be enough
1267
            // https://bugs.jquery.com/ticket/12359
1268
            docElem.appendChild( el ).innerHTML = "<a id='" + expando + "'></a>" +
1269
                "<select id='" + expando + "-\r\\' msallowcapture=''>" +
1270
                "<option selected=''></option></select>";
1271
1272
            // Support: IE8, Opera 11-12.16
1273
            // Nothing should be selected when empty strings follow ^= or $= or *=
1274
            // The test attribute must be unknown in Opera but "safe" for WinRT
1275
            // https://msdn.microsoft.com/en-us/library/ie/hh465388.aspx#attribute_section
1276
            if ( el.querySelectorAll("[msallowcapture^='']").length ) {
1277
                rbuggyQSA.push( "[*^$]=" + whitespace + "*(?:''|\"\")" );
1278
            }
1279
1280
            // Support: IE8
1281
            // Boolean attributes and "value" are not treated correctly
1282
            if ( !el.querySelectorAll("[selected]").length ) {
1283
                rbuggyQSA.push( "\\[" + whitespace + "*(?:value|" + booleans + ")" );
1284
            }
1285
1286
            // Support: Chrome<29, Android<4.4, Safari<7.0+, iOS<7.0+, PhantomJS<1.9.8+
1287
            if ( !el.querySelectorAll( "[id~=" + expando + "-]" ).length ) {
1288
                rbuggyQSA.push("~=");
1289
            }
1290
1291
            // Webkit/Opera - :checked should return selected option elements
1292
            // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked
1293
            // IE8 throws error here and will not see later tests
1294
            if ( !el.querySelectorAll(":checked").length ) {
1295
                rbuggyQSA.push(":checked");
1296
            }
1297
1298
            // Support: Safari 8+, iOS 8+
1299
            // https://bugs.webkit.org/show_bug.cgi?id=136851
1300
            // In-page `selector#id sibling-combinator selector` fails
1301
            if ( !el.querySelectorAll( "a#" + expando + "+*" ).length ) {
1302
                rbuggyQSA.push(".#.+[+~]");
1303
            }
1304
        });
1305
1306
        assert(function( el ) {
1307
            el.innerHTML = "<a href='' disabled='disabled'></a>" +
1308
                "<select disabled='disabled'><option/></select>";
1309
1310
            // Support: Windows 8 Native Apps
1311
            // The type and name attributes are restricted during .innerHTML assignment
1312
            var input = document.createElement("input");
1313
            input.setAttribute( "type", "hidden" );
1314
            el.appendChild( input ).setAttribute( "name", "D" );
1315
1316
            // Support: IE8
1317
            // Enforce case-sensitivity of name attribute
1318
            if ( el.querySelectorAll("[name=d]").length ) {
1319
                rbuggyQSA.push( "name" + whitespace + "*[*^$|!~]?=" );
1320
            }
1321
1322
            // FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled)
1323
            // IE8 throws error here and will not see later tests
1324
            if ( el.querySelectorAll(":enabled").length !== 2 ) {
1325
                rbuggyQSA.push( ":enabled", ":disabled" );
1326
            }
1327
1328
            // Support: IE9-11+
1329
            // IE's :disabled selector does not pick up the children of disabled fieldsets
1330
            docElem.appendChild( el ).disabled = true;
1331
            if ( el.querySelectorAll(":disabled").length !== 2 ) {
1332
                rbuggyQSA.push( ":enabled", ":disabled" );
1333
            }
1334
1335
            // Opera 10-11 does not throw on post-comma invalid pseudos
1336
            el.querySelectorAll("*,:x");
1337
            rbuggyQSA.push(",.*:");
1338
        });
1339
    }
1340
1341
    if ( (support.matchesSelector = rnative.test( (matches = docElem.matches ||
1342
        docElem.webkitMatchesSelector ||
1343
        docElem.mozMatchesSelector ||
1344
        docElem.oMatchesSelector ||
1345
        docElem.msMatchesSelector) )) ) {
1346
1347
        assert(function( el ) {
1348
            // Check to see if it's possible to do matchesSelector
1349
            // on a disconnected node (IE 9)
1350
            support.disconnectedMatch = matches.call( el, "*" );
1351
1352
            // This should fail with an exception
1353
            // Gecko does not error, returns false instead
1354
            matches.call( el, "[s!='']:x" );
1355
            rbuggyMatches.push( "!=", pseudos );
1356
        });
1357
    }
1358
1359
    rbuggyQSA = rbuggyQSA.length && new RegExp( rbuggyQSA.join("|") );
1360
    rbuggyMatches = rbuggyMatches.length && new RegExp( rbuggyMatches.join("|") );
1361
1362
    /* Contains
1363
    ---------------------------------------------------------------------- */
1364
    hasCompare = rnative.test( docElem.compareDocumentPosition );
1365
1366
    // Element contains another
1367
    // Purposefully self-exclusive
1368
    // As in, an element does not contain itself
1369
    contains = hasCompare || rnative.test( docElem.contains ) ?
1370
        function( a, b ) {
1371
            var adown = a.nodeType === 9 ? a.documentElement : a,
1372
                bup = b && b.parentNode;
1373
            return a === bup || !!( bup && bup.nodeType === 1 && (
1374
                adown.contains ?
1375
                    adown.contains( bup ) :
1376
                    a.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16
1377
            ));
1378
        } :
1379
        function( a, b ) {
1380
            if ( b ) {
1381
                while ( (b = b.parentNode) ) {
1382
                    if ( b === a ) {
1383
                        return true;
1384
                    }
1385
                }
1386
            }
1387
            return false;
1388
        };
1389
1390
    /* Sorting
1391
    ---------------------------------------------------------------------- */
1392
1393
    // Document order sorting
1394
    sortOrder = hasCompare ?
1395
    function( a, b ) {
1396
1397
        // Flag for duplicate removal
1398
        if ( a === b ) {
1399
            hasDuplicate = true;
1400
            return 0;
1401
        }
1402
1403
        // Sort on method existence if only one input has compareDocumentPosition
1404
        var compare = !a.compareDocumentPosition - !b.compareDocumentPosition;
1405
        if ( compare ) {
1406
            return compare;
1407
        }
1408
1409
        // Calculate position if both inputs belong to the same document
1410
        compare = ( a.ownerDocument || a ) === ( b.ownerDocument || b ) ?
1411
            a.compareDocumentPosition( b ) :
1412
1413
            // Otherwise we know they are disconnected
1414
            1;
1415
1416
        // Disconnected nodes
1417
        if ( compare & 1 ||
1418
            (!support.sortDetached && b.compareDocumentPosition( a ) === compare) ) {
1419
1420
            // Choose the first element that is related to our preferred document
1421
            if ( a === document || a.ownerDocument === preferredDoc && contains(preferredDoc, a) ) {
1422
                return -1;
1423
            }
1424
            if ( b === document || b.ownerDocument === preferredDoc && contains(preferredDoc, b) ) {
1425
                return 1;
1426
            }
1427
1428
            // Maintain original order
1429
            return sortInput ?
1430
                ( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) :
1431
                0;
1432
        }
1433
1434
        return compare & 4 ? -1 : 1;
1435
    } :
1436
    function( a, b ) {
1437
        // Exit early if the nodes are identical
1438
        if ( a === b ) {
1439
            hasDuplicate = true;
1440
            return 0;
1441
        }
1442
1443
        var cur,
1444
            i = 0,
1445
            aup = a.parentNode,
1446
            bup = b.parentNode,
1447
            ap = [ a ],
1448
            bp = [ b ];
1449
1450
        // Parentless nodes are either documents or disconnected
1451
        if ( !aup || !bup ) {
1452
            return a === document ? -1 :
1453
                b === document ? 1 :
1454
                aup ? -1 :
1455
                bup ? 1 :
1456
                sortInput ?
1457
                ( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) :
1458
                0;
1459
1460
        // If the nodes are siblings, we can do a quick check
1461
        } else if ( aup === bup ) {
1462
            return siblingCheck( a, b );
1463
        }
1464
1465
        // Otherwise we need full lists of their ancestors for comparison
1466
        cur = a;
1467
        while ( (cur = cur.parentNode) ) {
1468
            ap.unshift( cur );
1469
        }
1470
        cur = b;
1471
        while ( (cur = cur.parentNode) ) {
1472
            bp.unshift( cur );
1473
        }
1474
1475
        // Walk down the tree looking for a discrepancy
1476
        while ( ap[i] === bp[i] ) {
1477
            i++;
1478
        }
1479
1480
        return i ?
1481
            // Do a sibling check if the nodes have a common ancestor
1482
            siblingCheck( ap[i], bp[i] ) :
1483
1484
            // Otherwise nodes in our document sort first
1485
            ap[i] === preferredDoc ? -1 :
1486
            bp[i] === preferredDoc ? 1 :
1487
            0;
1488
    };
1489
1490
    return document;
1491
};
1492
1493
Sizzle.matches = function( expr, elements ) {
1494
    return Sizzle( expr, null, null, elements );
1495
};
1496
1497
Sizzle.matchesSelector = function( elem, expr ) {
1498
    // Set document vars if needed
1499
    if ( ( elem.ownerDocument || elem ) !== document ) {
1500
        setDocument( elem );
1501
    }
1502
1503
    if ( support.matchesSelector && documentIsHTML &&
1504
        !nonnativeSelectorCache[ expr + " " ] &&
1505
        ( !rbuggyMatches || !rbuggyMatches.test( expr ) ) &&
1506
        ( !rbuggyQSA     || !rbuggyQSA.test( expr ) ) ) {
1507
1508
        try {
1509
            var ret = matches.call( elem, expr );
1510
1511
            // IE 9's matchesSelector returns false on disconnected nodes
1512
            if ( ret || support.disconnectedMatch ||
1513
                    // As well, disconnected nodes are said to be in a document
1514
                    // fragment in IE 9
1515
                    elem.document && elem.document.nodeType !== 11 ) {
1516
                return ret;
1517
            }
1518
        } catch (e) {
1519
            nonnativeSelectorCache( expr, true );
1520
        }
1521
    }
1522
1523
    return Sizzle( expr, document, null, [ elem ] ).length > 0;
1524
};
1525
1526
Sizzle.contains = function( context, elem ) {
1527
    // Set document vars if needed
1528
    if ( ( context.ownerDocument || context ) !== document ) {
1529
        setDocument( context );
1530
    }
1531
    return contains( context, elem );
1532
};
1533
1534
Sizzle.attr = function( elem, name ) {
1535
    // Set document vars if needed
1536
    if ( ( elem.ownerDocument || elem ) !== document ) {
1537
        setDocument( elem );
1538
    }
1539
1540
    var fn = Expr.attrHandle[ name.toLowerCase() ],
1541
        // Don't get fooled by Object.prototype properties (jQuery #13807)
1542
        val = fn && hasOwn.call( Expr.attrHandle, name.toLowerCase() ) ?
1543
            fn( elem, name, !documentIsHTML ) :
1544
            undefined;
1545
1546
    return val !== undefined ?
1547
        val :
1548
        support.attributes || !documentIsHTML ?
1549
            elem.getAttribute( name ) :
1550
            (val = elem.getAttributeNode(name)) && val.specified ?
1551
                val.value :
1552
                null;
1553
};
1554
1555
Sizzle.escape = function( sel ) {
1556
    return (sel + "").replace( rcssescape, fcssescape );
1557
};
1558
1559
Sizzle.error = function( msg ) {
1560
    throw new Error( "Syntax error, unrecognized expression: " + msg );
1561
};
1562
1563
/**
1564
 * Document sorting and removing duplicates
1565
 * @param {ArrayLike} results
1566
 */
1567
Sizzle.uniqueSort = function( results ) {
1568
    var elem,
1569
        duplicates = [],
1570
        j = 0,
1571
        i = 0;
1572
1573
    // Unless we *know* we can detect duplicates, assume their presence
1574
    hasDuplicate = !support.detectDuplicates;
1575
    sortInput = !support.sortStable && results.slice( 0 );
1576
    results.sort( sortOrder );
1577
1578
    if ( hasDuplicate ) {
1579
        while ( (elem = results[i++]) ) {
1580
            if ( elem === results[ i ] ) {
1581
                j = duplicates.push( i );
1582
            }
1583
        }
1584
        while ( j-- ) {
1585
            results.splice( duplicates[ j ], 1 );
1586
        }
1587
    }
1588
1589
    // Clear input after sorting to release objects
1590
    // See https://github.com/jquery/sizzle/pull/225
1591
    sortInput = null;
1592
1593
    return results;
1594
};
1595
1596
/**
1597
 * Utility function for retrieving the text value of an array of DOM nodes
1598
 * @param {Array|Element} elem
1599
 */
1600
getText = Sizzle.getText = function( elem ) {
1601
    var node,
1602
        ret = "",
1603
        i = 0,
1604
        nodeType = elem.nodeType;
1605
1606
    if ( !nodeType ) {
1607
        // If no nodeType, this is expected to be an array
1608
        while ( (node = elem[i++]) ) {
1609
            // Do not traverse comment nodes
1610
            ret += getText( node );
1611
        }
1612
    } else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) {
1613
        // Use textContent for elements
1614
        // innerText usage removed for consistency of new lines (jQuery #11153)
1615
        if ( typeof elem.textContent === "string" ) {
1616
            return elem.textContent;
1617
        } else {
1618
            // Traverse its children
1619
            for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {
1620
                ret += getText( elem );
1621
            }
1622
        }
1623
    } else if ( nodeType === 3 || nodeType === 4 ) {
1624
        return elem.nodeValue;
1625
    }
1626
    // Do not include comment or processing instruction nodes
1627
1628
    return ret;
1629
};
1630
1631
Expr = Sizzle.selectors = {
1632
1633
    // Can be adjusted by the user
1634
    cacheLength: 50,
1635
1636
    createPseudo: markFunction,
1637
1638
    match: matchExpr,
1639
1640
    attrHandle: {},
1641
1642
    find: {},
1643
1644
    relative: {
1645
        ">": { dir: "parentNode", first: true },
1646
        " ": { dir: "parentNode" },
1647
        "+": { dir: "previousSibling", first: true },
1648
        "~": { dir: "previousSibling" }
1649
    },
1650
1651
    preFilter: {
1652
        "ATTR": function( match ) {
1653
            match[1] = match[1].replace( runescape, funescape );
1654
1655
            // Move the given value to match[3] whether quoted or unquoted
1656
            match[3] = ( match[3] || match[4] || match[5] || "" ).replace( runescape, funescape );
1657
1658
            if ( match[2] === "~=" ) {
1659
                match[3] = " " + match[3] + " ";
1660
            }
1661
1662
            return match.slice( 0, 4 );
1663
        },
1664
1665
        "CHILD": function( match ) {
1666
            /* matches from matchExpr["CHILD"]
1667
                1 type (only|nth|...)
1668
                2 what (child|of-type)
1669
                3 argument (even|odd|\d*|\d*n([+-]\d+)?|...)
1670
                4 xn-component of xn+y argument ([+-]?\d*n|)
1671
                5 sign of xn-component
1672
                6 x of xn-component
1673
                7 sign of y-component
1674
                8 y of y-component
1675
            */
1676
            match[1] = match[1].toLowerCase();
1677
1678
            if ( match[1].slice( 0, 3 ) === "nth" ) {
1679
                // nth-* requires argument
1680
                if ( !match[3] ) {
1681
                    Sizzle.error( match[0] );
1682
                }
1683
1684
                // numeric x and y parameters for Expr.filter.CHILD
1685
                // remember that false/true cast respectively to 0/1
1686
                match[4] = +( match[4] ? match[5] + (match[6] || 1) : 2 * ( match[3] === "even" || match[3] === "odd" ) );
1687
                match[5] = +( ( match[7] + match[8] ) || match[3] === "odd" );
1688
1689
            // other types prohibit arguments
1690
            } else if ( match[3] ) {
1691
                Sizzle.error( match[0] );
1692
            }
1693
1694
            return match;
1695
        },
1696
1697
        "PSEUDO": function( match ) {
1698
            var excess,
1699
                unquoted = !match[6] && match[2];
1700
1701
            if ( matchExpr["CHILD"].test( match[0] ) ) {
1702
                return null;
1703
            }
1704
1705
            // Accept quoted arguments as-is
1706
            if ( match[3] ) {
1707
                match[2] = match[4] || match[5] || "";
1708
1709
            // Strip excess characters from unquoted arguments
1710
            } else if ( unquoted && rpseudo.test( unquoted ) &&
1711
                // Get excess from tokenize (recursively)
1712
                (excess = tokenize( unquoted, true )) &&
1713
                // advance to the next closing parenthesis
1714
                (excess = unquoted.indexOf( ")", unquoted.length - excess ) - unquoted.length) ) {
1715
1716
                // excess is a negative index
1717
                match[0] = match[0].slice( 0, excess );
1718
                match[2] = unquoted.slice( 0, excess );
1719
            }
1720
1721
            // Return only captures needed by the pseudo filter method (type and argument)
1722
            return match.slice( 0, 3 );
1723
        }
1724
    },
1725
1726
    filter: {
1727
1728
        "TAG": function( nodeNameSelector ) {
1729
            var nodeName = nodeNameSelector.replace( runescape, funescape ).toLowerCase();
1730
            return nodeNameSelector === "*" ?
1731
                function() { return true; } :
1732
                function( elem ) {
1733
                    return elem.nodeName && elem.nodeName.toLowerCase() === nodeName;
1734
                };
1735
        },
1736
1737
        "CLASS": function( className ) {
1738
            var pattern = classCache[ className + " " ];
1739
1740
            return pattern ||
1741
                (pattern = new RegExp( "(^|" + whitespace + ")" + className + "(" + whitespace + "|$)" )) &&
1742
                classCache( className, function( elem ) {
1743
                    return pattern.test( typeof elem.className === "string" && elem.className || typeof elem.getAttribute !== "undefined" && elem.getAttribute("class") || "" );
1744
                });
1745
        },
1746
1747
        "ATTR": function( name, operator, check ) {
1748
            return function( elem ) {
1749
                var result = Sizzle.attr( elem, name );
1750
1751
                if ( result == null ) {
1752
                    return operator === "!=";
1753
                }
1754
                if ( !operator ) {
1755
                    return true;
1756
                }
1757
1758
                result += "";
1759
1760
                return operator === "=" ? result === check :
1761
                    operator === "!=" ? result !== check :
1762
                    operator === "^=" ? check && result.indexOf( check ) === 0 :
1763
                    operator === "*=" ? check && result.indexOf( check ) > -1 :
1764
                    operator === "$=" ? check && result.slice( -check.length ) === check :
1765
                    operator === "~=" ? ( " " + result.replace( rwhitespace, " " ) + " " ).indexOf( check ) > -1 :
1766
                    operator === "|=" ? result === check || result.slice( 0, check.length + 1 ) === check + "-" :
1767
                    false;
1768
            };
1769
        },
1770
1771
        "CHILD": function( type, what, argument, first, last ) {
1772
            var simple = type.slice( 0, 3 ) !== "nth",
1773
                forward = type.slice( -4 ) !== "last",
1774
                ofType = what === "of-type";
1775
1776
            return first === 1 && last === 0 ?
1777
1778
                // Shortcut for :nth-*(n)
1779
                function( elem ) {
1780
                    return !!elem.parentNode;
1781
                } :
1782
1783
                function( elem, context, xml ) {
1784
                    var cache, uniqueCache, outerCache, node, nodeIndex, start,
1785
                        dir = simple !== forward ? "nextSibling" : "previousSibling",
1786
                        parent = elem.parentNode,
1787
                        name = ofType && elem.nodeName.toLowerCase(),
1788
                        useCache = !xml && !ofType,
1789
                        diff = false;
1790
1791
                    if ( parent ) {
1792
1793
                        // :(first|last|only)-(child|of-type)
1794
                        if ( simple ) {
1795
                            while ( dir ) {
1796
                                node = elem;
1797
                                while ( (node = node[ dir ]) ) {
1798
                                    if ( ofType ?
1799
                                        node.nodeName.toLowerCase() === name :
1800
                                        node.nodeType === 1 ) {
1801
1802
                                        return false;
1803
                                    }
1804
                                }
1805
                                // Reverse direction for :only-* (if we haven't yet done so)
1806
                                start = dir = type === "only" && !start && "nextSibling";
1807
                            }
1808
                            return true;
1809
                        }
1810
1811
                        start = [ forward ? parent.firstChild : parent.lastChild ];
1812
1813
                        // non-xml :nth-child(...) stores cache data on `parent`
1814
                        if ( forward && useCache ) {
1815
1816
                            // Seek `elem` from a previously-cached index
1817
1818
                            // ...in a gzip-friendly way
1819
                            node = parent;
1820
                            outerCache = node[ expando ] || (node[ expando ] = {});
1821
1822
                            // Support: IE <9 only
1823
                            // Defend against cloned attroperties (jQuery gh-1709)
1824
                            uniqueCache = outerCache[ node.uniqueID ] ||
1825
                                (outerCache[ node.uniqueID ] = {});
1826
1827
                            cache = uniqueCache[ type ] || [];
1828
                            nodeIndex = cache[ 0 ] === dirruns && cache[ 1 ];
1829
                            diff = nodeIndex && cache[ 2 ];
1830
                            node = nodeIndex && parent.childNodes[ nodeIndex ];
1831
1832
                            while ( (node = ++nodeIndex && node && node[ dir ] ||
1833
1834
                                // Fallback to seeking `elem` from the start
1835
                                (diff = nodeIndex = 0) || start.pop()) ) {
1836
1837
                                // When found, cache indexes on `parent` and break
1838
                                if ( node.nodeType === 1 && ++diff && node === elem ) {
1839
                                    uniqueCache[ type ] = [ dirruns, nodeIndex, diff ];
1840
                                    break;
1841
                                }
1842
                            }
1843
1844
                        } else {
1845
                            // Use previously-cached element index if available
1846
                            if ( useCache ) {
1847
                                // ...in a gzip-friendly way
1848
                                node = elem;
1849
                                outerCache = node[ expando ] || (node[ expando ] = {});
1850
1851
                                // Support: IE <9 only
1852
                                // Defend against cloned attroperties (jQuery gh-1709)
1853
                                uniqueCache = outerCache[ node.uniqueID ] ||
1854
                                    (outerCache[ node.uniqueID ] = {});
1855
1856
                                cache = uniqueCache[ type ] || [];
1857
                                nodeIndex = cache[ 0 ] === dirruns && cache[ 1 ];
1858
                                diff = nodeIndex;
1859
                            }
1860
1861
                            // xml :nth-child(...)
1862
                            // or :nth-last-child(...) or :nth(-last)?-of-type(...)
1863
                            if ( diff === false ) {
1864
                                // Use the same loop as above to seek `elem` from the start
1865
                                while ( (node = ++nodeIndex && node && node[ dir ] ||
1866
                                    (diff = nodeIndex = 0) || start.pop()) ) {
1867
1868
                                    if ( ( ofType ?
1869
                                        node.nodeName.toLowerCase() === name :
1870
                                        node.nodeType === 1 ) &&
1871
                                        ++diff ) {
1872
1873
                                        // Cache the index of each encountered element
1874
                                        if ( useCache ) {
1875
                                            outerCache = node[ expando ] || (node[ expando ] = {});
1876
1877
                                            // Support: IE <9 only
1878
                                            // Defend against cloned attroperties (jQuery gh-1709)
1879
                                            uniqueCache = outerCache[ node.uniqueID ] ||
1880
                                                (outerCache[ node.uniqueID ] = {});
1881
1882
                                            uniqueCache[ type ] = [ dirruns, diff ];
1883
                                        }
1884
1885
                                        if ( node === elem ) {
1886
                                            break;
1887
                                        }
1888
                                    }
1889
                                }
1890
                            }
1891
                        }
1892
1893
                        // Incorporate the offset, then check against cycle size
1894
                        diff -= last;
1895
                        return diff === first || ( diff % first === 0 && diff / first >= 0 );
1896
                    }
1897
                };
1898
        },
1899
1900
        "PSEUDO": function( pseudo, argument ) {
1901
            // pseudo-class names are case-insensitive
1902
            // http://www.w3.org/TR/selectors/#pseudo-classes
1903
            // Prioritize by case sensitivity in case custom pseudos are added with uppercase letters
1904
            // Remember that setFilters inherits from pseudos
1905
            var args,
1906
                fn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] ||
1907
                    Sizzle.error( "unsupported pseudo: " + pseudo );
1908
1909
            // The user may use createPseudo to indicate that
1910
            // arguments are needed to create the filter function
1911
            // just as Sizzle does
1912
            if ( fn[ expando ] ) {
1913
                return fn( argument );
1914
            }
1915
1916
            // But maintain support for old signatures
1917
            if ( fn.length > 1 ) {
1918
                args = [ pseudo, pseudo, "", argument ];
1919
                return Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ?
1920
                    markFunction(function( seed, matches ) {
1921
                        var idx,
1922
                            matched = fn( seed, argument ),
1923
                            i = matched.length;
1924
                        while ( i-- ) {
1925
                            idx = indexOf( seed, matched[i] );
1926
                            seed[ idx ] = !( matches[ idx ] = matched[i] );
1927
                        }
1928
                    }) :
1929
                    function( elem ) {
1930
                        return fn( elem, 0, args );
1931
                    };
1932
            }
1933
1934
            return fn;
1935
        }
1936
    },
1937
1938
    pseudos: {
1939
        // Potentially complex pseudos
1940
        "not": markFunction(function( selector ) {
1941
            // Trim the selector passed to compile
1942
            // to avoid treating leading and trailing
1943
            // spaces as combinators
1944
            var input = [],
1945
                results = [],
1946
                matcher = compile( selector.replace( rtrim, "$1" ) );
1947
1948
            return matcher[ expando ] ?
1949
                markFunction(function( seed, matches, context, xml ) {
1950
                    var elem,
1951
                        unmatched = matcher( seed, null, xml, [] ),
1952
                        i = seed.length;
1953
1954
                    // Match elements unmatched by `matcher`
1955
                    while ( i-- ) {
1956
                        if ( (elem = unmatched[i]) ) {
1957
                            seed[i] = !(matches[i] = elem);
1958
                        }
1959
                    }
1960
                }) :
1961
                function( elem, context, xml ) {
1962
                    input[0] = elem;
1963
                    matcher( input, null, xml, results );
1964
                    // Don't keep the element (issue #299)
1965
                    input[0] = null;
1966
                    return !results.pop();
1967
                };
1968
        }),
1969
1970
        "has": markFunction(function( selector ) {
1971
            return function( elem ) {
1972
                return Sizzle( selector, elem ).length > 0;
1973
            };
1974
        }),
1975
1976
        "contains": markFunction(function( text ) {
1977
            text = text.replace( runescape, funescape );
1978
            return function( elem ) {
1979
                return ( elem.textContent || getText( elem ) ).indexOf( text ) > -1;
1980
            };
1981
        }),
1982
1983
        // "Whether an element is represented by a :lang() selector
1984
        // is based solely on the element's language value
1985
        // being equal to the identifier C,
1986
        // or beginning with the identifier C immediately followed by "-".
1987
        // The matching of C against the element's language value is performed case-insensitively.
1988
        // The identifier C does not have to be a valid language name."
1989
        // http://www.w3.org/TR/selectors/#lang-pseudo
1990
        "lang": markFunction( function( lang ) {
1991
            // lang value must be a valid identifier
1992
            if ( !ridentifier.test(lang || "") ) {
1993
                Sizzle.error( "unsupported lang: " + lang );
1994
            }
1995
            lang = lang.replace( runescape, funescape ).toLowerCase();
1996
            return function( elem ) {
1997
                var elemLang;
1998
                do {
1999
                    if ( (elemLang = documentIsHTML ?
2000
                        elem.lang :
2001
                        elem.getAttribute("xml:lang") || elem.getAttribute("lang")) ) {
2002
2003
                        elemLang = elemLang.toLowerCase();
2004
                        return elemLang === lang || elemLang.indexOf( lang + "-" ) === 0;
2005
                    }
2006
                } while ( (elem = elem.parentNode) && elem.nodeType === 1 );
2007
                return false;
2008
            };
2009
        }),
2010
2011
        // Miscellaneous
2012
        "target": function( elem ) {
2013
            var hash = window.location && window.location.hash;
2014
            return hash && hash.slice( 1 ) === elem.id;
2015
        },
2016
2017
        "root": function( elem ) {
2018
            return elem === docElem;
2019
        },
2020
2021
        "focus": function( elem ) {
2022
            return elem === document.activeElement && (!document.hasFocus || document.hasFocus()) && !!(elem.type || elem.href || ~elem.tabIndex);
2023
        },
2024
2025
        // Boolean properties
2026
        "enabled": createDisabledPseudo( false ),
2027
        "disabled": createDisabledPseudo( true ),
2028
2029
        "checked": function( elem ) {
2030
            // In CSS3, :checked should return both checked and selected elements
2031
            // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked
2032
            var nodeName = elem.nodeName.toLowerCase();
2033
            return (nodeName === "input" && !!elem.checked) || (nodeName === "option" && !!elem.selected);
2034
        },
2035
2036
        "selected": function( elem ) {
2037
            // Accessing this property makes selected-by-default
2038
            // options in Safari work properly
2039
            if ( elem.parentNode ) {
2040
                elem.parentNode.selectedIndex;
2041
            }
2042
2043
            return elem.selected === true;
2044
        },
2045
2046
        // Contents
2047
        "empty": function( elem ) {
2048
            // http://www.w3.org/TR/selectors/#empty-pseudo
2049
            // :empty is negated by element (1) or content nodes (text: 3; cdata: 4; entity ref: 5),
2050
            //   but not by others (comment: 8; processing instruction: 7; etc.)
2051
            // nodeType < 6 works because attributes (2) do not appear as children
2052
            for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {
2053
                if ( elem.nodeType < 6 ) {
2054
                    return false;
2055
                }
2056
            }
2057
            return true;
2058
        },
2059
2060
        "parent": function( elem ) {
2061
            return !Expr.pseudos["empty"]( elem );
2062
        },
2063
2064
        // Element/input types
2065
        "header": function( elem ) {
2066
            return rheader.test( elem.nodeName );
2067
        },
2068
2069
        "input": function( elem ) {
2070
            return rinputs.test( elem.nodeName );
2071
        },
2072
2073
        "button": function( elem ) {
2074
            var name = elem.nodeName.toLowerCase();
2075
            return name === "input" && elem.type === "button" || name === "button";
2076
        },
2077
2078
        "text": function( elem ) {
2079
            var attr;
2080
            return elem.nodeName.toLowerCase() === "input" &&
2081
                elem.type === "text" &&
2082
2083
                // Support: IE<8
2084
                // New HTML5 attribute values (e.g., "search") appear with elem.type === "text"
2085
                ( (attr = elem.getAttribute("type")) == null || attr.toLowerCase() === "text" );
2086
        },
2087
2088
        // Position-in-collection
2089
        "first": createPositionalPseudo(function() {
2090
            return [ 0 ];
2091
        }),
2092
2093
        "last": createPositionalPseudo(function( matchIndexes, length ) {
2094
            return [ length - 1 ];
2095
        }),
2096
2097
        "eq": createPositionalPseudo(function( matchIndexes, length, argument ) {
2098
            return [ argument < 0 ? argument + length : argument ];
2099
        }),
2100
2101
        "even": createPositionalPseudo(function( matchIndexes, length ) {
2102
            var i = 0;
2103
            for ( ; i < length; i += 2 ) {
2104
                matchIndexes.push( i );
2105
            }
2106
            return matchIndexes;
2107
        }),
2108
2109
        "odd": createPositionalPseudo(function( matchIndexes, length ) {
2110
            var i = 1;
2111
            for ( ; i < length; i += 2 ) {
2112
                matchIndexes.push( i );
2113
            }
2114
            return matchIndexes;
2115
        }),
2116
2117
        "lt": createPositionalPseudo(function( matchIndexes, length, argument ) {
2118
            var i = argument < 0 ?
2119
                argument + length :
2120
                argument > length ?
2121
                    length :
2122
                    argument;
2123
            for ( ; --i >= 0; ) {
2124
                matchIndexes.push( i );
2125
            }
2126
            return matchIndexes;
2127
        }),
2128
2129
        "gt": createPositionalPseudo(function( matchIndexes, length, argument ) {
2130
            var i = argument < 0 ? argument + length : argument;
2131
            for ( ; ++i < length; ) {
2132
                matchIndexes.push( i );
2133
            }
2134
            return matchIndexes;
2135
        })
2136
    }
2137
};
2138
2139
Expr.pseudos["nth"] = Expr.pseudos["eq"];
2140
2141
// Add button/input type pseudos
2142
for ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) {
2143
    Expr.pseudos[ i ] = createInputPseudo( i );
2144
}
2145
for ( i in { submit: true, reset: true } ) {
2146
    Expr.pseudos[ i ] = createButtonPseudo( i );
2147
}
2148
2149
// Easy API for creating new setFilters
2150
function setFilters() {}
2151
setFilters.prototype = Expr.filters = Expr.pseudos;
2152
Expr.setFilters = new setFilters();
2153
2154
tokenize = Sizzle.tokenize = function( selector, parseOnly ) {
2155
    var matched, match, tokens, type,
2156
        soFar, groups, preFilters,
2157
        cached = tokenCache[ selector + " " ];
2158
2159
    if ( cached ) {
2160
        return parseOnly ? 0 : cached.slice( 0 );
2161
    }
2162
2163
    soFar = selector;
2164
    groups = [];
2165
    preFilters = Expr.preFilter;
2166
2167
    while ( soFar ) {
2168
2169
        // Comma and first run
2170
        if ( !matched || (match = rcomma.exec( soFar )) ) {
2171
            if ( match ) {
2172
                // Don't consume trailing commas as valid
2173
                soFar = soFar.slice( match[0].length ) || soFar;
2174
            }
2175
            groups.push( (tokens = []) );
2176
        }
2177
2178
        matched = false;
2179
2180
        // Combinators
2181
        if ( (match = rcombinators.exec( soFar )) ) {
2182
            matched = match.shift();
2183
            tokens.push({
2184
                value: matched,
2185
                // Cast descendant combinators to space
2186
                type: match[0].replace( rtrim, " " )
2187
            });
2188
            soFar = soFar.slice( matched.length );
2189
        }
2190
2191
        // Filters
2192
        for ( type in Expr.filter ) {
2193
            if ( (match = matchExpr[ type ].exec( soFar )) && (!preFilters[ type ] ||
2194
                (match = preFilters[ type ]( match ))) ) {
2195
                matched = match.shift();
2196
                tokens.push({
2197
                    value: matched,
2198
                    type: type,
2199
                    matches: match
2200
                });
2201
                soFar = soFar.slice( matched.length );
2202
            }
2203
        }
2204
2205
        if ( !matched ) {
2206
            break;
2207
        }
2208
    }
2209
2210
    // Return the length of the invalid excess
2211
    // if we're just parsing
2212
    // Otherwise, throw an error or return tokens
2213
    return parseOnly ?
2214
        soFar.length :
2215
        soFar ?
2216
            Sizzle.error( selector ) :
2217
            // Cache the tokens
2218
            tokenCache( selector, groups ).slice( 0 );
2219
};
2220
2221
function toSelector( tokens ) {
2222
    var i = 0,
2223
        len = tokens.length,
2224
        selector = "";
2225
    for ( ; i < len; i++ ) {
2226
        selector += tokens[i].value;
2227
    }
2228
    return selector;
2229
}
2230
2231
function addCombinator( matcher, combinator, base ) {
2232
    var dir = combinator.dir,
2233
        skip = combinator.next,
2234
        key = skip || dir,
2235
        checkNonElements = base && key === "parentNode",
2236
        doneName = done++;
2237
2238
    return combinator.first ?
2239
        // Check against closest ancestor/preceding element
2240
        function( elem, context, xml ) {
2241
            while ( (elem = elem[ dir ]) ) {
2242
                if ( elem.nodeType === 1 || checkNonElements ) {
2243
                    return matcher( elem, context, xml );
2244
                }
2245
            }
2246
            return false;
2247
        } :
2248
2249
        // Check against all ancestor/preceding elements
2250
        function( elem, context, xml ) {
2251
            var oldCache, uniqueCache, outerCache,
2252
                newCache = [ dirruns, doneName ];
2253
2254
            // We can't set arbitrary data on XML nodes, so they don't benefit from combinator caching
2255
            if ( xml ) {
2256
                while ( (elem = elem[ dir ]) ) {
2257
                    if ( elem.nodeType === 1 || checkNonElements ) {
2258
                        if ( matcher( elem, context, xml ) ) {
2259
                            return true;
2260
                        }
2261
                    }
2262
                }
2263
            } else {
2264
                while ( (elem = elem[ dir ]) ) {
2265
                    if ( elem.nodeType === 1 || checkNonElements ) {
2266
                        outerCache = elem[ expando ] || (elem[ expando ] = {});
2267
2268
                        // Support: IE <9 only
2269
                        // Defend against cloned attroperties (jQuery gh-1709)
2270
                        uniqueCache = outerCache[ elem.uniqueID ] || (outerCache[ elem.uniqueID ] = {});
2271
2272
                        if ( skip && skip === elem.nodeName.toLowerCase() ) {
2273
                            elem = elem[ dir ] || elem;
2274
                        } else if ( (oldCache = uniqueCache[ key ]) &&
2275
                            oldCache[ 0 ] === dirruns && oldCache[ 1 ] === doneName ) {
2276
2277
                            // Assign to newCache so results back-propagate to previous elements
2278
                            return (newCache[ 2 ] = oldCache[ 2 ]);
2279
                        } else {
2280
                            // Reuse newcache so results back-propagate to previous elements
2281
                            uniqueCache[ key ] = newCache;
2282
2283
                            // A match means we're done; a fail means we have to keep checking
2284
                            if ( (newCache[ 2 ] = matcher( elem, context, xml )) ) {
2285
                                return true;
2286
                            }
2287
                        }
2288
                    }
2289
                }
2290
            }
2291
            return false;
2292
        };
2293
}
2294
2295
function elementMatcher( matchers ) {
2296
    return matchers.length > 1 ?
2297
        function( elem, context, xml ) {
2298
            var i = matchers.length;
2299
            while ( i-- ) {
2300
                if ( !matchers[i]( elem, context, xml ) ) {
2301
                    return false;
2302
                }
2303
            }
2304
            return true;
2305
        } :
2306
        matchers[0];
2307
}
2308
2309
function multipleContexts( selector, contexts, results ) {
2310
    var i = 0,
2311
        len = contexts.length;
2312
    for ( ; i < len; i++ ) {
2313
        Sizzle( selector, contexts[i], results );
2314
    }
2315
    return results;
2316
}
2317
2318
function condense( unmatched, map, filter, context, xml ) {
2319
    var elem,
2320
        newUnmatched = [],
2321
        i = 0,
2322
        len = unmatched.length,
2323
        mapped = map != null;
2324
2325
    for ( ; i < len; i++ ) {
2326
        if ( (elem = unmatched[i]) ) {
2327
            if ( !filter || filter( elem, context, xml ) ) {
2328
                newUnmatched.push( elem );
2329
                if ( mapped ) {
2330
                    map.push( i );
2331
                }
2332
            }
2333
        }
2334
    }
2335
2336
    return newUnmatched;
2337
}
2338
2339
function setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) {
2340
    if ( postFilter && !postFilter[ expando ] ) {
2341
        postFilter = setMatcher( postFilter );
2342
    }
2343
    if ( postFinder && !postFinder[ expando ] ) {
2344
        postFinder = setMatcher( postFinder, postSelector );
2345
    }
2346
    return markFunction(function( seed, results, context, xml ) {
2347
        var temp, i, elem,
2348
            preMap = [],
2349
            postMap = [],
2350
            preexisting = results.length,
2351
2352
            // Get initial elements from seed or context
2353
            elems = seed || multipleContexts( selector || "*", context.nodeType ? [ context ] : context, [] ),
2354
2355
            // Prefilter to get matcher input, preserving a map for seed-results synchronization
2356
            matcherIn = preFilter && ( seed || !selector ) ?
2357
                condense( elems, preMap, preFilter, context, xml ) :
2358
                elems,
2359
2360
            matcherOut = matcher ?
2361
                // If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results,
2362
                postFinder || ( seed ? preFilter : preexisting || postFilter ) ?
2363
2364
                    // ...intermediate processing is necessary
2365
                    [] :
2366
2367
                    // ...otherwise use results directly
2368
                    results :
2369
                matcherIn;
2370
2371
        // Find primary matches
2372
        if ( matcher ) {
2373
            matcher( matcherIn, matcherOut, context, xml );
2374
        }
2375
2376
        // Apply postFilter
2377
        if ( postFilter ) {
2378
            temp = condense( matcherOut, postMap );
2379
            postFilter( temp, [], context, xml );
2380
2381
            // Un-match failing elements by moving them back to matcherIn
2382
            i = temp.length;
2383
            while ( i-- ) {
2384
                if ( (elem = temp[i]) ) {
2385
                    matcherOut[ postMap[i] ] = !(matcherIn[ postMap[i] ] = elem);
2386
                }
2387
            }
2388
        }
2389
2390
        if ( seed ) {
2391
            if ( postFinder || preFilter ) {
2392
                if ( postFinder ) {
2393
                    // Get the final matcherOut by condensing this intermediate into postFinder contexts
2394
                    temp = [];
2395
                    i = matcherOut.length;
2396
                    while ( i-- ) {
2397
                        if ( (elem = matcherOut[i]) ) {
2398
                            // Restore matcherIn since elem is not yet a final match
2399
                            temp.push( (matcherIn[i] = elem) );
2400
                        }
2401
                    }
2402
                    postFinder( null, (matcherOut = []), temp, xml );
2403
                }
2404
2405
                // Move matched elements from seed to results to keep them synchronized
2406
                i = matcherOut.length;
2407
                while ( i-- ) {
2408
                    if ( (elem = matcherOut[i]) &&
2409
                        (temp = postFinder ? indexOf( seed, elem ) : preMap[i]) > -1 ) {
2410
2411
                        seed[temp] = !(results[temp] = elem);
2412
                    }
2413
                }
2414
            }
2415
2416
        // Add elements to results, through postFinder if defined
2417
        } else {
2418
            matcherOut = condense(
2419
                matcherOut === results ?
2420
                    matcherOut.splice( preexisting, matcherOut.length ) :
2421
                    matcherOut
2422
            );
2423
            if ( postFinder ) {
2424
                postFinder( null, results, matcherOut, xml );
2425
            } else {
2426
                push.apply( results, matcherOut );
2427
            }
2428
        }
2429
    });
2430
}
2431
2432
function matcherFromTokens( tokens ) {
2433
    var checkContext, matcher, j,
2434
        len = tokens.length,
2435
        leadingRelative = Expr.relative[ tokens[0].type ],
2436
        implicitRelative = leadingRelative || Expr.relative[" "],
2437
        i = leadingRelative ? 1 : 0,
2438
2439
        // The foundational matcher ensures that elements are reachable from top-level context(s)
2440
        matchContext = addCombinator( function( elem ) {
2441
            return elem === checkContext;
2442
        }, implicitRelative, true ),
2443
        matchAnyContext = addCombinator( function( elem ) {
2444
            return indexOf( checkContext, elem ) > -1;
2445
        }, implicitRelative, true ),
2446
        matchers = [ function( elem, context, xml ) {
2447
            var ret = ( !leadingRelative && ( xml || context !== outermostContext ) ) || (
2448
                (checkContext = context).nodeType ?
2449
                    matchContext( elem, context, xml ) :
2450
                    matchAnyContext( elem, context, xml ) );
2451
            // Avoid hanging onto element (issue #299)
2452
            checkContext = null;
2453
            return ret;
2454
        } ];
2455
2456
    for ( ; i < len; i++ ) {
2457
        if ( (matcher = Expr.relative[ tokens[i].type ]) ) {
2458
            matchers = [ addCombinator(elementMatcher( matchers ), matcher) ];
2459
        } else {
2460
            matcher = Expr.filter[ tokens[i].type ].apply( null, tokens[i].matches );
2461
2462
            // Return special upon seeing a positional matcher
2463
            if ( matcher[ expando ] ) {
2464
                // Find the next relative operator (if any) for proper handling
2465
                j = ++i;
2466
                for ( ; j < len; j++ ) {
2467
                    if ( Expr.relative[ tokens[j].type ] ) {
2468
                        break;
2469
                    }
2470
                }
2471
                return setMatcher(
2472
                    i > 1 && elementMatcher( matchers ),
2473
                    i > 1 && toSelector(
2474
                        // If the preceding token was a descendant combinator, insert an implicit any-element `*`
2475
                        tokens.slice( 0, i - 1 ).concat({ value: tokens[ i - 2 ].type === " " ? "*" : "" })
2476
                    ).replace( rtrim, "$1" ),
2477
                    matcher,
2478
                    i < j && matcherFromTokens( tokens.slice( i, j ) ),
2479
                    j < len && matcherFromTokens( (tokens = tokens.slice( j )) ),
2480
                    j < len && toSelector( tokens )
2481
                );
2482
            }
2483
            matchers.push( matcher );
2484
        }
2485
    }
2486
2487
    return elementMatcher( matchers );
2488
}
2489
2490
function matcherFromGroupMatchers( elementMatchers, setMatchers ) {
2491
    var bySet = setMatchers.length > 0,
2492
        byElement = elementMatchers.length > 0,
2493
        superMatcher = function( seed, context, xml, results, outermost ) {
2494
            var elem, j, matcher,
2495
                matchedCount = 0,
2496
                i = "0",
2497
                unmatched = seed && [],
2498
                setMatched = [],
2499
                contextBackup = outermostContext,
2500
                // We must always have either seed elements or outermost context
2501
                elems = seed || byElement && Expr.find["TAG"]( "*", outermost ),
2502
                // Use integer dirruns iff this is the outermost matcher
2503
                dirrunsUnique = (dirruns += contextBackup == null ? 1 : Math.random() || 0.1),
2504
                len = elems.length;
2505
2506
            if ( outermost ) {
2507
                outermostContext = context === document || context || outermost;
2508
            }
2509
2510
            // Add elements passing elementMatchers directly to results
2511
            // Support: IE<9, Safari
2512
            // Tolerate NodeList properties (IE: "length"; Safari: <number>) matching elements by id
2513
            for ( ; i !== len && (elem = elems[i]) != null; i++ ) {
2514
                if ( byElement && elem ) {
2515
                    j = 0;
2516
                    if ( !context && elem.ownerDocument !== document ) {
2517
                        setDocument( elem );
2518
                        xml = !documentIsHTML;
2519
                    }
2520
                    while ( (matcher = elementMatchers[j++]) ) {
2521
                        if ( matcher( elem, context || document, xml) ) {
2522
                            results.push( elem );
2523
                            break;
2524
                        }
2525
                    }
2526
                    if ( outermost ) {
2527
                        dirruns = dirrunsUnique;
2528
                    }
2529
                }
2530
2531
                // Track unmatched elements for set filters
2532
                if ( bySet ) {
2533
                    // They will have gone through all possible matchers
2534
                    if ( (elem = !matcher && elem) ) {
2535
                        matchedCount--;
2536
                    }
2537
2538
                    // Lengthen the array for every element, matched or not
2539
                    if ( seed ) {
2540
                        unmatched.push( elem );
2541
                    }
2542
                }
2543
            }
2544
2545
            // `i` is now the count of elements visited above, and adding it to `matchedCount`
2546
            // makes the latter nonnegative.
2547
            matchedCount += i;
2548
2549
            // Apply set filters to unmatched elements
2550
            // NOTE: This can be skipped if there are no unmatched elements (i.e., `matchedCount`
2551
            // equals `i`), unless we didn't visit _any_ elements in the above loop because we have
2552
            // no element matchers and no seed.
2553
            // Incrementing an initially-string "0" `i` allows `i` to remain a string only in that
2554
            // case, which will result in a "00" `matchedCount` that differs from `i` but is also
2555
            // numerically zero.
2556
            if ( bySet && i !== matchedCount ) {
2557
                j = 0;
2558
                while ( (matcher = setMatchers[j++]) ) {
2559
                    matcher( unmatched, setMatched, context, xml );
2560
                }
2561
2562
                if ( seed ) {
2563
                    // Reintegrate element matches to eliminate the need for sorting
2564
                    if ( matchedCount > 0 ) {
2565
                        while ( i-- ) {
2566
                            if ( !(unmatched[i] || setMatched[i]) ) {
2567
                                setMatched[i] = pop.call( results );
2568
                            }
2569
                        }
2570
                    }
2571
2572
                    // Discard index placeholder values to get only actual matches
2573
                    setMatched = condense( setMatched );
2574
                }
2575
2576
                // Add matches to results
2577
                push.apply( results, setMatched );
2578
2579
                // Seedless set matches succeeding multiple successful matchers stipulate sorting
2580
                if ( outermost && !seed && setMatched.length > 0 &&
2581
                    ( matchedCount + setMatchers.length ) > 1 ) {
2582
2583
                    Sizzle.uniqueSort( results );
2584
                }
2585
            }
2586
2587
            // Override manipulation of globals by nested matchers
2588
            if ( outermost ) {
2589
                dirruns = dirrunsUnique;
2590
                outermostContext = contextBackup;
2591
            }
2592
2593
            return unmatched;
2594
        };
2595
2596
    return bySet ?
2597
        markFunction( superMatcher ) :
2598
        superMatcher;
2599
}
2600
2601
compile = Sizzle.compile = function( selector, match /* Internal Use Only */ ) {
2602
    var i,
2603
        setMatchers = [],
2604
        elementMatchers = [],
2605
        cached = compilerCache[ selector + " " ];
2606
2607
    if ( !cached ) {
2608
        // Generate a function of recursive functions that can be used to check each element
2609
        if ( !match ) {
2610
            match = tokenize( selector );
2611
        }
2612
        i = match.length;
2613
        while ( i-- ) {
2614
            cached = matcherFromTokens( match[i] );
2615
            if ( cached[ expando ] ) {
2616
                setMatchers.push( cached );
2617
            } else {
2618
                elementMatchers.push( cached );
2619
            }
2620
        }
2621
2622
        // Cache the compiled function
2623
        cached = compilerCache( selector, matcherFromGroupMatchers( elementMatchers, setMatchers ) );
2624
2625
        // Save selector and tokenization
2626
        cached.selector = selector;
2627
    }
2628
    return cached;
2629
};
2630
2631
/**
2632
 * A low-level selection function that works with Sizzle's compiled
2633
 *  selector functions
2634
 * @param {String|Function} selector A selector or a pre-compiled
2635
 *  selector function built with Sizzle.compile
2636
 * @param {Element} context
2637
 * @param {Array} [results]
2638
 * @param {Array} [seed] A set of elements to match against
2639
 */
2640
select = Sizzle.select = function( selector, context, results, seed ) {
2641
    var i, tokens, token, type, find,
2642
        compiled = typeof selector === "function" && selector,
2643
        match = !seed && tokenize( (selector = compiled.selector || selector) );
2644
2645
    results = results || [];
2646
2647
    // Try to minimize operations if there is only one selector in the list and no seed
2648
    // (the latter of which guarantees us context)
2649
    if ( match.length === 1 ) {
2650
2651
        // Reduce context if the leading compound selector is an ID
2652
        tokens = match[0] = match[0].slice( 0 );
2653
        if ( tokens.length > 2 && (token = tokens[0]).type === "ID" &&
2654
                context.nodeType === 9 && documentIsHTML && Expr.relative[ tokens[1].type ] ) {
2655
2656
            context = ( Expr.find["ID"]( token.matches[0].replace(runescape, funescape), context ) || [] )[0];
2657
            if ( !context ) {
2658
                return results;
2659
2660
            // Precompiled matchers will still verify ancestry, so step up a level
2661
            } else if ( compiled ) {
2662
                context = context.parentNode;
2663
            }
2664
2665
            selector = selector.slice( tokens.shift().value.length );
2666
        }
2667
2668
        // Fetch a seed set for right-to-left matching
2669
        i = matchExpr["needsContext"].test( selector ) ? 0 : tokens.length;
2670
        while ( i-- ) {
2671
            token = tokens[i];
2672
2673
            // Abort if we hit a combinator
2674
            if ( Expr.relative[ (type = token.type) ] ) {
2675
                break;
2676
            }
2677
            if ( (find = Expr.find[ type ]) ) {
2678
                // Search, expanding context for leading sibling combinators
2679
                if ( (seed = find(
2680
                    token.matches[0].replace( runescape, funescape ),
2681
                    rsibling.test( tokens[0].type ) && testContext( context.parentNode ) || context
2682
                )) ) {
2683
2684
                    // If seed is empty or no tokens remain, we can return early
2685
                    tokens.splice( i, 1 );
2686
                    selector = seed.length && toSelector( tokens );
2687
                    if ( !selector ) {
2688
                        push.apply( results, seed );
2689
                        return results;
2690
                    }
2691
2692
                    break;
2693
                }
2694
            }
2695
        }
2696
    }
2697
2698
    // Compile and execute a filtering function if one is not provided
2699
    // Provide `match` to avoid retokenization if we modified the selector above
2700
    ( compiled || compile( selector, match ) )(
2701
        seed,
2702
        context,
2703
        !documentIsHTML,
2704
        results,
2705
        !context || rsibling.test( selector ) && testContext( context.parentNode ) || context
2706
    );
2707
    return results;
2708
};
2709
2710
// One-time assignments
2711
2712
// Sort stability
2713
support.sortStable = expando.split("").sort( sortOrder ).join("") === expando;
2714
2715
// Support: Chrome 14-35+
2716
// Always assume duplicates if they aren't passed to the comparison function
2717
support.detectDuplicates = !!hasDuplicate;
2718
2719
// Initialize against the default document
2720
setDocument();
2721
2722
// Support: Webkit<537.32 - Safari 6.0.3/Chrome 25 (fixed in Chrome 27)
2723
// Detached nodes confoundingly follow *each other*
2724
support.sortDetached = assert(function( el ) {
2725
    // Should return 1, but returns 4 (following)
2726
    return el.compareDocumentPosition( document.createElement("fieldset") ) & 1;
2727
});
2728
2729
// Support: IE<8
2730
// Prevent attribute/property "interpolation"
2731
// https://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx
2732
if ( !assert(function( el ) {
2733
    el.innerHTML = "<a href='#'></a>";
2734
    return el.firstChild.getAttribute("href") === "#" ;
2735
}) ) {
2736
    addHandle( "type|href|height|width", function( elem, name, isXML ) {
2737
        if ( !isXML ) {
2738
            return elem.getAttribute( name, name.toLowerCase() === "type" ? 1 : 2 );
2739
        }
2740
    });
2741
}
2742
2743
// Support: IE<9
2744
// Use defaultValue in place of getAttribute("value")
2745
if ( !support.attributes || !assert(function( el ) {
2746
    el.innerHTML = "<input/>";
2747
    el.firstChild.setAttribute( "value", "" );
2748
    return el.firstChild.getAttribute( "value" ) === "";
2749
}) ) {
2750
    addHandle( "value", function( elem, name, isXML ) {
2751
        if ( !isXML && elem.nodeName.toLowerCase() === "input" ) {
2752
            return elem.defaultValue;
2753
        }
2754
    });
2755
}
2756
2757
// Support: IE<9
2758
// Use getAttributeNode to fetch booleans when getAttribute lies
2759
if ( !assert(function( el ) {
2760
    return el.getAttribute("disabled") == null;
2761
}) ) {
2762
    addHandle( booleans, function( elem, name, isXML ) {
2763
        var val;
2764
        if ( !isXML ) {
2765
            return elem[ name ] === true ? name.toLowerCase() :
2766
                    (val = elem.getAttributeNode( name )) && val.specified ?
2767
                    val.value :
2768
                null;
2769
        }
2770
    });
2771
}
2772
2773
return Sizzle;
2774
2775
})( window );
2776
2777
2778
2779
jQuery.find = Sizzle;
2780
jQuery.expr = Sizzle.selectors;
2781
2782
// Deprecated
2783
jQuery.expr[ ":" ] = jQuery.expr.pseudos;
2784
jQuery.uniqueSort = jQuery.unique = Sizzle.uniqueSort;
2785
jQuery.text = Sizzle.getText;
2786
jQuery.isXMLDoc = Sizzle.isXML;
2787
jQuery.contains = Sizzle.contains;
2788
jQuery.escapeSelector = Sizzle.escape;
2789
2790
2791
2792
2793
var dir = function( elem, dir, until ) {
2794
    var matched = [],
2795
        truncate = until !== undefined;
2796
2797
    while ( ( elem = elem[ dir ] ) && elem.nodeType !== 9 ) {
2798
        if ( elem.nodeType === 1 ) {
2799
            if ( truncate && jQuery( elem ).is( until ) ) {
2800
                break;
2801
            }
2802
            matched.push( elem );
2803
        }
2804
    }
2805
    return matched;
2806
};
2807
2808
2809
var siblings = function( n, elem ) {
2810
    var matched = [];
2811
2812
    for ( ; n; n = n.nextSibling ) {
2813
        if ( n.nodeType === 1 && n !== elem ) {
2814
            matched.push( n );
2815
        }
2816
    }
2817
2818
    return matched;
2819
};
2820
2821
2822
var rneedsContext = jQuery.expr.match.needsContext;
2823
2824
2825
2826
function nodeName( elem, name ) {
2827
2828
  return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase();
2829
2830
};
2831
var rsingleTag = ( /^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i );
2832
2833
2834
2835
// Implement the identical functionality for filter and not
2836
function winnow( elements, qualifier, not ) {
2837
    if ( isFunction( qualifier ) ) {
2838
        return jQuery.grep( elements, function( elem, i ) {
2839
            return !!qualifier.call( elem, i, elem ) !== not;
2840
        } );
2841
    }
2842
2843
    // Single element
2844
    if ( qualifier.nodeType ) {
2845
        return jQuery.grep( elements, function( elem ) {
2846
            return ( elem === qualifier ) !== not;
2847
        } );
2848
    }
2849
2850
    // Arraylike of elements (jQuery, arguments, Array)
2851
    if ( typeof qualifier !== "string" ) {
2852
        return jQuery.grep( elements, function( elem ) {
2853
            return ( indexOf.call( qualifier, elem ) > -1 ) !== not;
2854
        } );
2855
    }
2856
2857
    // Filtered directly for both simple and complex selectors
2858
    return jQuery.filter( qualifier, elements, not );
2859
}
2860
2861
jQuery.filter = function( expr, elems, not ) {
2862
    var elem = elems[ 0 ];
2863
2864
    if ( not ) {
2865
        expr = ":not(" + expr + ")";
2866
    }
2867
2868
    if ( elems.length === 1 && elem.nodeType === 1 ) {
2869
        return jQuery.find.matchesSelector( elem, expr ) ? [ elem ] : [];
2870
    }
2871
2872
    return jQuery.find.matches( expr, jQuery.grep( elems, function( elem ) {
2873
        return elem.nodeType === 1;
2874
    } ) );
2875
};
2876
2877
jQuery.fn.extend( {
2878
    find: function( selector ) {
2879
        var i, ret,
2880
            len = this.length,
2881
            self = this;
2882
2883
        if ( typeof selector !== "string" ) {
2884
            return this.pushStack( jQuery( selector ).filter( function() {
2885
                for ( i = 0; i < len; i++ ) {
2886
                    if ( jQuery.contains( self[ i ], this ) ) {
2887
                        return true;
2888
                    }
2889
                }
2890
            } ) );
2891
        }
2892
2893
        ret = this.pushStack( [] );
2894
2895
        for ( i = 0; i < len; i++ ) {
2896
            jQuery.find( selector, self[ i ], ret );
2897
        }
2898
2899
        return len > 1 ? jQuery.uniqueSort( ret ) : ret;
2900
    },
2901
    filter: function( selector ) {
2902
        return this.pushStack( winnow( this, selector || [], false ) );
2903
    },
2904
    not: function( selector ) {
2905
        return this.pushStack( winnow( this, selector || [], true ) );
2906
    },
2907
    is: function( selector ) {
2908
        return !!winnow(
2909
            this,
2910
2911
            // If this is a positional/relative selector, check membership in the returned set
2912
            // so $("p:first").is("p:last") won't return true for a doc with two "p".
2913
            typeof selector === "string" && rneedsContext.test( selector ) ?
2914
                jQuery( selector ) :
2915
                selector || [],
2916
            false
2917
        ).length;
2918
    }
2919
} );
2920
2921
2922
// Initialize a jQuery object
2923
2924
2925
// A central reference to the root jQuery(document)
2926
var rootjQuery,
2927
2928
    // A simple way to check for HTML strings
2929
    // Prioritize #id over <tag> to avoid XSS via location.hash (#9521)
2930
    // Strict HTML recognition (#11290: must start with <)
2931
    // Shortcut simple #id case for speed
2932
    rquickExpr = /^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/,
2933
2934
    init = jQuery.fn.init = function( selector, context, root ) {
2935
        var match, elem;
2936
2937
        // HANDLE: $(""), $(null), $(undefined), $(false)
2938
        if ( !selector ) {
2939
            return this;
2940
        }
2941
2942
        // Method init() accepts an alternate rootjQuery
2943
        // so migrate can support jQuery.sub (gh-2101)
2944
        root = root || rootjQuery;
2945
2946
        // Handle HTML strings
2947
        if ( typeof selector === "string" ) {
2948
            if ( selector[ 0 ] === "<" &&
2949
                selector[ selector.length - 1 ] === ">" &&
2950
                selector.length >= 3 ) {
2951
2952
                // Assume that strings that start and end with <> are HTML and skip the regex check
2953
                match = [ null, selector, null ];
2954
2955
            } else {
2956
                match = rquickExpr.exec( selector );
2957
            }
2958
2959
            // Match html or make sure no context is specified for #id
2960
            if ( match && ( match[ 1 ] || !context ) ) {
2961
2962
                // HANDLE: $(html) -> $(array)
2963
                if ( match[ 1 ] ) {
2964
                    context = context instanceof jQuery ? context[ 0 ] : context;
2965
2966
                    // Option to run scripts is true for back-compat
2967
                    // Intentionally let the error be thrown if parseHTML is not present
2968
                    jQuery.merge( this, jQuery.parseHTML(
2969
                        match[ 1 ],
2970
                        context && context.nodeType ? context.ownerDocument || context : document,
2971
                        true
2972
                    ) );
2973
2974
                    // HANDLE: $(html, props)
2975
                    if ( rsingleTag.test( match[ 1 ] ) && jQuery.isPlainObject( context ) ) {
2976
                        for ( match in context ) {
2977
2978
                            // Properties of context are called as methods if possible
2979
                            if ( isFunction( this[ match ] ) ) {
2980
                                this[ match ]( context[ match ] );
2981
2982
                            // ...and otherwise set as attributes
2983
                            } else {
2984
                                this.attr( match, context[ match ] );
2985
                            }
2986
                        }
2987
                    }
2988
2989
                    return this;
2990
2991
                // HANDLE: $(#id)
2992
                } else {
2993
                    elem = document.getElementById( match[ 2 ] );
2994
2995
                    if ( elem ) {
2996
2997
                        // Inject the element directly into the jQuery object
2998
                        this[ 0 ] = elem;
2999
                        this.length = 1;
3000
                    }
3001
                    return this;
3002
                }
3003
3004
            // HANDLE: $(expr, $(...))
3005
            } else if ( !context || context.jquery ) {
3006
                return ( context || root ).find( selector );
3007
3008
            // HANDLE: $(expr, context)
3009
            // (which is just equivalent to: $(context).find(expr)
3010
            } else {
3011
                return this.constructor( context ).find( selector );
3012
            }
3013
3014
        // HANDLE: $(DOMElement)
3015
        } else if ( selector.nodeType ) {
3016
            this[ 0 ] = selector;
3017
            this.length = 1;
3018
            return this;
3019
3020
        // HANDLE: $(function)
3021
        // Shortcut for document ready
3022
        } else if ( isFunction( selector ) ) {
3023
            return root.ready !== undefined ?
3024
                root.ready( selector ) :
3025
3026
                // Execute immediately if ready is not present
3027
                selector( jQuery );
3028
        }
3029
3030
        return jQuery.makeArray( selector, this );
3031
    };
3032
3033
// Give the init function the jQuery prototype for later instantiation
3034
init.prototype = jQuery.fn;
3035
3036
// Initialize central reference
3037
rootjQuery = jQuery( document );
3038
3039
3040
var rparentsprev = /^(?:parents|prev(?:Until|All))/,
3041
3042
    // Methods guaranteed to produce a unique set when starting from a unique set
3043
    guaranteedUnique = {
3044
        children: true,
3045
        contents: true,
3046
        next: true,
3047
        prev: true
3048
    };
3049
3050
jQuery.fn.extend( {
3051
    has: function( target ) {
3052
        var targets = jQuery( target, this ),
3053
            l = targets.length;
3054
3055
        return this.filter( function() {
3056
            var i = 0;
3057
            for ( ; i < l; i++ ) {
3058
                if ( jQuery.contains( this, targets[ i ] ) ) {
3059
                    return true;
3060
                }
3061
            }
3062
        } );
3063
    },
3064
3065
    closest: function( selectors, context ) {
3066
        var cur,
3067
            i = 0,
3068
            l = this.length,
3069
            matched = [],
3070
            targets = typeof selectors !== "string" && jQuery( selectors );
3071
3072
        // Positional selectors never match, since there's no _selection_ context
3073
        if ( !rneedsContext.test( selectors ) ) {
3074
            for ( ; i < l; i++ ) {
3075
                for ( cur = this[ i ]; cur && cur !== context; cur = cur.parentNode ) {
3076
3077
                    // Always skip document fragments
3078
                    if ( cur.nodeType < 11 && ( targets ?
3079
                        targets.index( cur ) > -1 :
3080
3081
                        // Don't pass non-elements to Sizzle
3082
                        cur.nodeType === 1 &&
3083
                            jQuery.find.matchesSelector( cur, selectors ) ) ) {
3084
3085
                        matched.push( cur );
3086
                        break;
3087
                    }
3088
                }
3089
            }
3090
        }
3091
3092
        return this.pushStack( matched.length > 1 ? jQuery.uniqueSort( matched ) : matched );
3093
    },
3094
3095
    // Determine the position of an element within the set
3096
    index: function( elem ) {
3097
3098
        // No argument, return index in parent
3099
        if ( !elem ) {
3100
            return ( this[ 0 ] && this[ 0 ].parentNode ) ? this.first().prevAll().length : -1;
3101
        }
3102
3103
        // Index in selector
3104
        if ( typeof elem === "string" ) {
3105
            return indexOf.call( jQuery( elem ), this[ 0 ] );
3106
        }
3107
3108
        // Locate the position of the desired element
3109
        return indexOf.call( this,
3110
3111
            // If it receives a jQuery object, the first element is used
3112
            elem.jquery ? elem[ 0 ] : elem
3113
        );
3114
    },
3115
3116
    add: function( selector, context ) {
3117
        return this.pushStack(
3118
            jQuery.uniqueSort(
3119
                jQuery.merge( this.get(), jQuery( selector, context ) )
3120
            )
3121
        );
3122
    },
3123
3124
    addBack: function( selector ) {
3125
        return this.add( selector == null ?
3126
            this.prevObject : this.prevObject.filter( selector )
3127
        );
3128
    }
3129
} );
3130
3131
function sibling( cur, dir ) {
3132
    while ( ( cur = cur[ dir ] ) && cur.nodeType !== 1 ) {}
3133
    return cur;
3134
}
3135
3136
jQuery.each( {
3137
    parent: function( elem ) {
3138
        var parent = elem.parentNode;
3139
        return parent && parent.nodeType !== 11 ? parent : null;
3140
    },
3141
    parents: function( elem ) {
3142
        return dir( elem, "parentNode" );
3143
    },
3144
    parentsUntil: function( elem, i, until ) {
3145
        return dir( elem, "parentNode", until );
3146
    },
3147
    next: function( elem ) {
3148
        return sibling( elem, "nextSibling" );
3149
    },
3150
    prev: function( elem ) {
3151
        return sibling( elem, "previousSibling" );
3152
    },
3153
    nextAll: function( elem ) {
3154
        return dir( elem, "nextSibling" );
3155
    },
3156
    prevAll: function( elem ) {
3157
        return dir( elem, "previousSibling" );
3158
    },
3159
    nextUntil: function( elem, i, until ) {
3160
        return dir( elem, "nextSibling", until );
3161
    },
3162
    prevUntil: function( elem, i, until ) {
3163
        return dir( elem, "previousSibling", until );
3164
    },
3165
    siblings: function( elem ) {
3166
        return siblings( ( elem.parentNode || {} ).firstChild, elem );
3167
    },
3168
    children: function( elem ) {
3169
        return siblings( elem.firstChild );
3170
    },
3171
    contents: function( elem ) {
3172
        if ( typeof elem.contentDocument !== "undefined" ) {
3173
            return elem.contentDocument;
3174
        }
3175
3176
        // Support: IE 9 - 11 only, iOS 7 only, Android Browser <=4.3 only
3177
        // Treat the template element as a regular one in browsers that
3178
        // don't support it.
3179
        if ( nodeName( elem, "template" ) ) {
3180
            elem = elem.content || elem;
3181
        }
3182
3183
        return jQuery.merge( [], elem.childNodes );
3184
    }
3185
}, function( name, fn ) {
3186
    jQuery.fn[ name ] = function( until, selector ) {
3187
        var matched = jQuery.map( this, fn, until );
3188
3189
        if ( name.slice( -5 ) !== "Until" ) {
3190
            selector = until;
3191
        }
3192
3193
        if ( selector && typeof selector === "string" ) {
3194
            matched = jQuery.filter( selector, matched );
3195
        }
3196
3197
        if ( this.length > 1 ) {
3198
3199
            // Remove duplicates
3200
            if ( !guaranteedUnique[ name ] ) {
3201
                jQuery.uniqueSort( matched );
3202
            }
3203
3204
            // Reverse order for parents* and prev-derivatives
3205
            if ( rparentsprev.test( name ) ) {
3206
                matched.reverse();
3207
            }
3208
        }
3209
3210
        return this.pushStack( matched );
3211
    };
3212
} );
3213
var rnothtmlwhite = ( /[^\x20\t\r\n\f]+/g );
3214
3215
3216
3217
// Convert String-formatted options into Object-formatted ones
3218
function createOptions( options ) {
3219
    var object = {};
3220
    jQuery.each( options.match( rnothtmlwhite ) || [], function( _, flag ) {
3221
        object[ flag ] = true;
3222
    } );
3223
    return object;
3224
}
3225
3226
/*
3227
 * Create a callback list using the following parameters:
3228
 *
3229
 *  options: an optional list of space-separated options that will change how
3230
 *          the callback list behaves or a more traditional option object
3231
 *
3232
 * By default a callback list will act like an event callback list and can be
3233
 * "fired" multiple times.
3234
 *
3235
 * Possible options:
3236
 *
3237
 *  once:           will ensure the callback list can only be fired once (like a Deferred)
3238
 *
3239
 *  memory:         will keep track of previous values and will call any callback added
3240
 *                  after the list has been fired right away with the latest "memorized"
3241
 *                  values (like a Deferred)
3242
 *
3243
 *  unique:         will ensure a callback can only be added once (no duplicate in the list)
3244
 *
3245
 *  stopOnFalse:    interrupt callings when a callback returns false
3246
 *
3247
 */
3248
jQuery.Callbacks = function( options ) {
3249
3250
    // Convert options from String-formatted to Object-formatted if needed
3251
    // (we check in cache first)
3252
    options = typeof options === "string" ?
3253
        createOptions( options ) :
3254
        jQuery.extend( {}, options );
3255
3256
    var // Flag to know if list is currently firing
3257
        firing,
3258
3259
        // Last fire value for non-forgettable lists
3260
        memory,
3261
3262
        // Flag to know if list was already fired
3263
        fired,
3264
3265
        // Flag to prevent firing
3266
        locked,
3267
3268
        // Actual callback list
3269
        list = [],
3270
3271
        // Queue of execution data for repeatable lists
3272
        queue = [],
3273
3274
        // Index of currently firing callback (modified by add/remove as needed)
3275
        firingIndex = -1,
3276
3277
        // Fire callbacks
3278
        fire = function() {
3279
3280
            // Enforce single-firing
3281
            locked = locked || options.once;
3282
3283
            // Execute callbacks for all pending executions,
3284
            // respecting firingIndex overrides and runtime changes
3285
            fired = firing = true;
3286
            for ( ; queue.length; firingIndex = -1 ) {
3287
                memory = queue.shift();
3288
                while ( ++firingIndex < list.length ) {
3289
3290
                    // Run callback and check for early termination
3291
                    if ( list[ firingIndex ].apply( memory[ 0 ], memory[ 1 ] ) === false &&
3292
                        options.stopOnFalse ) {
3293
3294
                        // Jump to end and forget the data so .add doesn't re-fire
3295
                        firingIndex = list.length;
3296
                        memory = false;
3297
                    }
3298
                }
3299
            }
3300
3301
            // Forget the data if we're done with it
3302
            if ( !options.memory ) {
3303
                memory = false;
3304
            }
3305
3306
            firing = false;
3307
3308
            // Clean up if we're done firing for good
3309
            if ( locked ) {
3310
3311
                // Keep an empty list if we have data for future add calls
3312
                if ( memory ) {
3313
                    list = [];
3314
3315
                // Otherwise, this object is spent
3316
                } else {
3317
                    list = "";
3318
                }
3319
            }
3320
        },
3321
3322
        // Actual Callbacks object
3323
        self = {
3324
3325
            // Add a callback or a collection of callbacks to the list
3326
            add: function() {
3327
                if ( list ) {
3328
3329
                    // If we have memory from a past run, we should fire after adding
3330
                    if ( memory && !firing ) {
3331
                        firingIndex = list.length - 1;
3332
                        queue.push( memory );
3333
                    }
3334
3335
                    ( function add( args ) {
3336
                        jQuery.each( args, function( _, arg ) {
3337
                            if ( isFunction( arg ) ) {
3338
                                if ( !options.unique || !self.has( arg ) ) {
3339
                                    list.push( arg );
3340
                                }
3341
                            } else if ( arg && arg.length && toType( arg ) !== "string" ) {
3342
3343
                                // Inspect recursively
3344
                                add( arg );
3345
                            }
3346
                        } );
3347
                    } )( arguments );
3348
3349
                    if ( memory && !firing ) {
3350
                        fire();
3351
                    }
3352
                }
3353
                return this;
3354
            },
3355
3356
            // Remove a callback from the list
3357
            remove: function() {
3358
                jQuery.each( arguments, function( _, arg ) {
3359
                    var index;
3360
                    while ( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) {
3361
                        list.splice( index, 1 );
3362
3363
                        // Handle firing indexes
3364
                        if ( index <= firingIndex ) {
3365
                            firingIndex--;
3366
                        }
3367
                    }
3368
                } );
3369
                return this;
3370
            },
3371
3372
            // Check if a given callback is in the list.
3373
            // If no argument is given, return whether or not list has callbacks attached.
3374
            has: function( fn ) {
3375
                return fn ?
3376
                    jQuery.inArray( fn, list ) > -1 :
3377
                    list.length > 0;
3378
            },
3379
3380
            // Remove all callbacks from the list
3381
            empty: function() {
3382
                if ( list ) {
3383
                    list = [];
3384
                }
3385
                return this;
3386
            },
3387
3388
            // Disable .fire and .add
3389
            // Abort any current/pending executions
3390
            // Clear all callbacks and values
3391
            disable: function() {
3392
                locked = queue = [];
3393
                list = memory = "";
3394
                return this;
3395
            },
3396
            disabled: function() {
3397
                return !list;
3398
            },
3399
3400
            // Disable .fire
3401
            // Also disable .add unless we have memory (since it would have no effect)
3402
            // Abort any pending executions
3403
            lock: function() {
3404
                locked = queue = [];
3405
                if ( !memory && !firing ) {
3406
                    list = memory = "";
3407
                }
3408
                return this;
3409
            },
3410
            locked: function() {
3411
                return !!locked;
3412
            },
3413
3414
            // Call all callbacks with the given context and arguments
3415
            fireWith: function( context, args ) {
3416
                if ( !locked ) {
3417
                    args = args || [];
3418
                    args = [ context, args.slice ? args.slice() : args ];
3419
                    queue.push( args );
3420
                    if ( !firing ) {
3421
                        fire();
3422
                    }
3423
                }
3424
                return this;
3425
            },
3426
3427
            // Call all the callbacks with the given arguments
3428
            fire: function() {
3429
                self.fireWith( this, arguments );
3430
                return this;
3431
            },
3432
3433
            // To know if the callbacks have already been called at least once
3434
            fired: function() {
3435
                return !!fired;
3436
            }
3437
        };
3438
3439
    return self;
3440
};
3441
3442
3443
function Identity( v ) {
3444
    return v;
3445
}
3446
function Thrower( ex ) {
3447
    throw ex;
3448
}
3449
3450
function adoptValue( value, resolve, reject, noValue ) {
3451
    var method;
3452
3453
    try {
3454
3455
        // Check for promise aspect first to privilege synchronous behavior
3456
        if ( value && isFunction( ( method = value.promise ) ) ) {
3457
            method.call( value ).done( resolve ).fail( reject );
3458
3459
        // Other thenables
3460
        } else if ( value && isFunction( ( method = value.then ) ) ) {
3461
            method.call( value, resolve, reject );
3462
3463
        // Other non-thenables
3464
        } else {
3465
3466
            // Control `resolve` arguments by letting Array#slice cast boolean `noValue` to integer:
3467
            // * false: [ value ].slice( 0 ) => resolve( value )
3468
            // * true: [ value ].slice( 1 ) => resolve()
3469
            resolve.apply( undefined, [ value ].slice( noValue ) );
3470
        }
3471
3472
    // For Promises/A+, convert exceptions into rejections
3473
    // Since jQuery.when doesn't unwrap thenables, we can skip the extra checks appearing in
3474
    // Deferred#then to conditionally suppress rejection.
3475
    } catch ( value ) {
3476
3477
        // Support: Android 4.0 only
3478
        // Strict mode functions invoked without .call/.apply get global-object context
3479
        reject.apply( undefined, [ value ] );
3480
    }
3481
}
3482
3483
jQuery.extend( {
3484
3485
    Deferred: function( func ) {
3486
        var tuples = [
3487
3488
                // action, add listener, callbacks,
3489
                // ... .then handlers, argument index, [final state]
3490
                [ "notify", "progress", jQuery.Callbacks( "memory" ),
3491
                    jQuery.Callbacks( "memory" ), 2 ],
3492
                [ "resolve", "done", jQuery.Callbacks( "once memory" ),
3493
                    jQuery.Callbacks( "once memory" ), 0, "resolved" ],
3494
                [ "reject", "fail", jQuery.Callbacks( "once memory" ),
3495
                    jQuery.Callbacks( "once memory" ), 1, "rejected" ]
3496
            ],
3497
            state = "pending",
3498
            promise = {
3499
                state: function() {
3500
                    return state;
3501
                },
3502
                always: function() {
3503
                    deferred.done( arguments ).fail( arguments );
3504
                    return this;
3505
                },
3506
                "catch": function( fn ) {
3507
                    return promise.then( null, fn );
3508
                },
3509
3510
                // Keep pipe for back-compat
3511
                pipe: function( /* fnDone, fnFail, fnProgress */ ) {
3512
                    var fns = arguments;
3513
3514
                    return jQuery.Deferred( function( newDefer ) {
3515
                        jQuery.each( tuples, function( i, tuple ) {
3516
3517
                            // Map tuples (progress, done, fail) to arguments (done, fail, progress)
3518
                            var fn = isFunction( fns[ tuple[ 4 ] ] ) && fns[ tuple[ 4 ] ];
3519
3520
                            // deferred.progress(function() { bind to newDefer or newDefer.notify })
3521
                            // deferred.done(function() { bind to newDefer or newDefer.resolve })
3522
                            // deferred.fail(function() { bind to newDefer or newDefer.reject })
3523
                            deferred[ tuple[ 1 ] ]( function() {
3524
                                var returned = fn && fn.apply( this, arguments );
3525
                                if ( returned && isFunction( returned.promise ) ) {
3526
                                    returned.promise()
3527
                                        .progress( newDefer.notify )
3528
                                        .done( newDefer.resolve )
3529
                                        .fail( newDefer.reject );
3530
                                } else {
3531
                                    newDefer[ tuple[ 0 ] + "With" ](
3532
                                        this,
3533
                                        fn ? [ returned ] : arguments
3534
                                    );
3535
                                }
3536
                            } );
3537
                        } );
3538
                        fns = null;
3539
                    } ).promise();
3540
                },
3541
                then: function( onFulfilled, onRejected, onProgress ) {
3542
                    var maxDepth = 0;
3543
                    function resolve( depth, deferred, handler, special ) {
3544
                        return function() {
3545
                            var that = this,
3546
                                args = arguments,
3547
                                mightThrow = function() {
3548
                                    var returned, then;
3549
3550
                                    // Support: Promises/A+ section 2.3.3.3.3
3551
                                    // https://promisesaplus.com/#point-59
3552
                                    // Ignore double-resolution attempts
3553
                                    if ( depth < maxDepth ) {
3554
                                        return;
3555
                                    }
3556
3557
                                    returned = handler.apply( that, args );
3558
3559
                                    // Support: Promises/A+ section 2.3.1
3560
                                    // https://promisesaplus.com/#point-48
3561
                                    if ( returned === deferred.promise() ) {
3562
                                        throw new TypeError( "Thenable self-resolution" );
3563
                                    }
3564
3565
                                    // Support: Promises/A+ sections 2.3.3.1, 3.5
3566
                                    // https://promisesaplus.com/#point-54
3567
                                    // https://promisesaplus.com/#point-75
3568
                                    // Retrieve `then` only once
3569
                                    then = returned &&
3570
3571
                                        // Support: Promises/A+ section 2.3.4
3572
                                        // https://promisesaplus.com/#point-64
3573
                                        // Only check objects and functions for thenability
3574
                                        ( typeof returned === "object" ||
3575
                                            typeof returned === "function" ) &&
3576
                                        returned.then;
3577
3578
                                    // Handle a returned thenable
3579
                                    if ( isFunction( then ) ) {
3580
3581
                                        // Special processors (notify) just wait for resolution
3582
                                        if ( special ) {
3583
                                            then.call(
3584
                                                returned,
3585
                                                resolve( maxDepth, deferred, Identity, special ),
3586
                                                resolve( maxDepth, deferred, Thrower, special )
3587
                                            );
3588
3589
                                        // Normal processors (resolve) also hook into progress
3590
                                        } else {
3591
3592
                                            // ...and disregard older resolution values
3593
                                            maxDepth++;
3594
3595
                                            then.call(
3596
                                                returned,
3597
                                                resolve( maxDepth, deferred, Identity, special ),
3598
                                                resolve( maxDepth, deferred, Thrower, special ),
3599
                                                resolve( maxDepth, deferred, Identity,
3600
                                                    deferred.notifyWith )
3601
                                            );
3602
                                        }
3603
3604
                                    // Handle all other returned values
3605
                                    } else {
3606
3607
                                        // Only substitute handlers pass on context
3608
                                        // and multiple values (non-spec behavior)
3609
                                        if ( handler !== Identity ) {
3610
                                            that = undefined;
3611
                                            args = [ returned ];
3612
                                        }
3613
3614
                                        // Process the value(s)
3615
                                        // Default process is resolve
3616
                                        ( special || deferred.resolveWith )( that, args );
3617
                                    }
3618
                                },
3619
3620
                                // Only normal processors (resolve) catch and reject exceptions
3621
                                process = special ?
3622
                                    mightThrow :
3623
                                    function() {
3624
                                        try {
3625
                                            mightThrow();
3626
                                        } catch ( e ) {
3627
3628
                                            if ( jQuery.Deferred.exceptionHook ) {
3629
                                                jQuery.Deferred.exceptionHook( e,
3630
                                                    process.stackTrace );
3631
                                            }
3632
3633
                                            // Support: Promises/A+ section 2.3.3.3.4.1
3634
                                            // https://promisesaplus.com/#point-61
3635
                                            // Ignore post-resolution exceptions
3636
                                            if ( depth + 1 >= maxDepth ) {
3637
3638
                                                // Only substitute handlers pass on context
3639
                                                // and multiple values (non-spec behavior)
3640
                                                if ( handler !== Thrower ) {
3641
                                                    that = undefined;
3642
                                                    args = [ e ];
3643
                                                }
3644
3645
                                                deferred.rejectWith( that, args );
3646
                                            }
3647
                                        }
3648
                                    };
3649
3650
                            // Support: Promises/A+ section 2.3.3.3.1
3651
                            // https://promisesaplus.com/#point-57
3652
                            // Re-resolve promises immediately to dodge false rejection from
3653
                            // subsequent errors
3654
                            if ( depth ) {
3655
                                process();
3656
                            } else {
3657
3658
                                // Call an optional hook to record the stack, in case of exception
3659
                                // since it's otherwise lost when execution goes async
3660
                                if ( jQuery.Deferred.getStackHook ) {
3661
                                    process.stackTrace = jQuery.Deferred.getStackHook();
3662
                                }
3663
                                window.setTimeout( process );
3664
                            }
3665
                        };
3666
                    }
3667
3668
                    return jQuery.Deferred( function( newDefer ) {
3669
3670
                        // progress_handlers.add( ... )
3671
                        tuples[ 0 ][ 3 ].add(
3672
                            resolve(
3673
                                0,
3674
                                newDefer,
3675
                                isFunction( onProgress ) ?
3676
                                    onProgress :
3677
                                    Identity,
3678
                                newDefer.notifyWith
3679
                            )
3680
                        );
3681
3682
                        // fulfilled_handlers.add( ... )
3683
                        tuples[ 1 ][ 3 ].add(
3684
                            resolve(
3685
                                0,
3686
                                newDefer,
3687
                                isFunction( onFulfilled ) ?
3688
                                    onFulfilled :
3689
                                    Identity
3690
                            )
3691
                        );
3692
3693
                        // rejected_handlers.add( ... )
3694
                        tuples[ 2 ][ 3 ].add(
3695
                            resolve(
3696
                                0,
3697
                                newDefer,
3698
                                isFunction( onRejected ) ?
3699
                                    onRejected :
3700
                                    Thrower
3701
                            )
3702
                        );
3703
                    } ).promise();
3704
                },
3705
3706
                // Get a promise for this deferred
3707
                // If obj is provided, the promise aspect is added to the object
3708
                promise: function( obj ) {
3709
                    return obj != null ? jQuery.extend( obj, promise ) : promise;
3710
                }
3711
            },
3712
            deferred = {};
3713
3714
        // Add list-specific methods
3715
        jQuery.each( tuples, function( i, tuple ) {
3716
            var list = tuple[ 2 ],
3717
                stateString = tuple[ 5 ];
3718
3719
            // promise.progress = list.add
3720
            // promise.done = list.add
3721
            // promise.fail = list.add
3722
            promise[ tuple[ 1 ] ] = list.add;
3723
3724
            // Handle state
3725
            if ( stateString ) {
3726
                list.add(
3727
                    function() {
3728
3729
                        // state = "resolved" (i.e., fulfilled)
3730
                        // state = "rejected"
3731
                        state = stateString;
3732
                    },
3733
3734
                    // rejected_callbacks.disable
3735
                    // fulfilled_callbacks.disable
3736
                    tuples[ 3 - i ][ 2 ].disable,
3737
3738
                    // rejected_handlers.disable
3739
                    // fulfilled_handlers.disable
3740
                    tuples[ 3 - i ][ 3 ].disable,
3741
3742
                    // progress_callbacks.lock
3743
                    tuples[ 0 ][ 2 ].lock,
3744
3745
                    // progress_handlers.lock
3746
                    tuples[ 0 ][ 3 ].lock
3747
                );
3748
            }
3749
3750
            // progress_handlers.fire
3751
            // fulfilled_handlers.fire
3752
            // rejected_handlers.fire
3753
            list.add( tuple[ 3 ].fire );
3754
3755
            // deferred.notify = function() { deferred.notifyWith(...) }
3756
            // deferred.resolve = function() { deferred.resolveWith(...) }
3757
            // deferred.reject = function() { deferred.rejectWith(...) }
3758
            deferred[ tuple[ 0 ] ] = function() {
3759
                deferred[ tuple[ 0 ] + "With" ]( this === deferred ? undefined : this, arguments );
3760
                return this;
3761
            };
3762
3763
            // deferred.notifyWith = list.fireWith
3764
            // deferred.resolveWith = list.fireWith
3765
            // deferred.rejectWith = list.fireWith
3766
            deferred[ tuple[ 0 ] + "With" ] = list.fireWith;
3767
        } );
3768
3769
        // Make the deferred a promise
3770
        promise.promise( deferred );
3771
3772
        // Call given func if any
3773
        if ( func ) {
3774
            func.call( deferred, deferred );
3775
        }
3776
3777
        // All done!
3778
        return deferred;
3779
    },
3780
3781
    // Deferred helper
3782
    when: function( singleValue ) {
3783
        var
3784
3785
            // count of uncompleted subordinates
3786
            remaining = arguments.length,
3787
3788
            // count of unprocessed arguments
3789
            i = remaining,
3790
3791
            // subordinate fulfillment data
3792
            resolveContexts = Array( i ),
3793
            resolveValues = slice.call( arguments ),
3794
3795
            // the master Deferred
3796
            master = jQuery.Deferred(),
3797
3798
            // subordinate callback factory
3799
            updateFunc = function( i ) {
3800
                return function( value ) {
3801
                    resolveContexts[ i ] = this;
3802
                    resolveValues[ i ] = arguments.length > 1 ? slice.call( arguments ) : value;
3803
                    if ( !( --remaining ) ) {
3804
                        master.resolveWith( resolveContexts, resolveValues );
3805
                    }
3806
                };
3807
            };
3808
3809
        // Single- and empty arguments are adopted like Promise.resolve
3810
        if ( remaining <= 1 ) {
3811
            adoptValue( singleValue, master.done( updateFunc( i ) ).resolve, master.reject,
3812
                !remaining );
3813
3814
            // Use .then() to unwrap secondary thenables (cf. gh-3000)
3815
            if ( master.state() === "pending" ||
3816
                isFunction( resolveValues[ i ] && resolveValues[ i ].then ) ) {
3817
3818
                return master.then();
3819
            }
3820
        }
3821
3822
        // Multiple arguments are aggregated like Promise.all array elements
3823
        while ( i-- ) {
3824
            adoptValue( resolveValues[ i ], updateFunc( i ), master.reject );
3825
        }
3826
3827
        return master.promise();
3828
    }
3829
} );
3830
3831
3832
// These usually indicate a programmer mistake during development,
3833
// warn about them ASAP rather than swallowing them by default.
3834
var rerrorNames = /^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;
3835
3836
jQuery.Deferred.exceptionHook = function( error, stack ) {
3837
3838
    // Support: IE 8 - 9 only
3839
    // Console exists when dev tools are open, which can happen at any time
3840
    if ( window.console && window.console.warn && error && rerrorNames.test( error.name ) ) {
3841
        window.console.warn( "jQuery.Deferred exception: " + error.message, error.stack, stack );
3842
    }
3843
};
3844
3845
3846
3847
3848
jQuery.readyException = function( error ) {
3849
    window.setTimeout( function() {
3850
        throw error;
3851
    } );
3852
};
3853
3854
3855
3856
3857
// The deferred used on DOM ready
3858
var readyList = jQuery.Deferred();
3859
3860
jQuery.fn.ready = function( fn ) {
3861
3862
    readyList
3863
        .then( fn )
3864
3865
        // Wrap jQuery.readyException in a function so that the lookup
3866
        // happens at the time of error handling instead of callback
3867
        // registration.
3868
        .catch( function( error ) {
3869
            jQuery.readyException( error );
3870
        } );
3871
3872
    return this;
3873
};
3874
3875
jQuery.extend( {
3876
3877
    // Is the DOM ready to be used? Set to true once it occurs.
3878
    isReady: false,
3879
3880
    // A counter to track how many items to wait for before
3881
    // the ready event fires. See #6781
3882
    readyWait: 1,
3883
3884
    // Handle when the DOM is ready
3885
    ready: function( wait ) {
3886
3887
        // Abort if there are pending holds or we're already ready
3888
        if ( wait === true ? --jQuery.readyWait : jQuery.isReady ) {
3889
            return;
3890
        }
3891
3892
        // Remember that the DOM is ready
3893
        jQuery.isReady = true;
3894
3895
        // If a normal DOM Ready event fired, decrement, and wait if need be
3896
        if ( wait !== true && --jQuery.readyWait > 0 ) {
3897
            return;
3898
        }
3899
3900
        // If there are functions bound, to execute
3901
        readyList.resolveWith( document, [ jQuery ] );
3902
    }
3903
} );
3904
3905
jQuery.ready.then = readyList.then;
3906
3907
// The ready event handler and self cleanup method
3908
function completed() {
3909
    document.removeEventListener( "DOMContentLoaded", completed );
3910
    window.removeEventListener( "load", completed );
3911
    jQuery.ready();
3912
}
3913
3914
// Catch cases where $(document).ready() is called
3915
// after the browser event has already occurred.
3916
// Support: IE <=9 - 10 only
3917
// Older IE sometimes signals "interactive" too soon
3918
if ( document.readyState === "complete" ||
3919
    ( document.readyState !== "loading" && !document.documentElement.doScroll ) ) {
3920
3921
    // Handle it asynchronously to allow scripts the opportunity to delay ready
3922
    window.setTimeout( jQuery.ready );
3923
3924
} else {
3925
3926
    // Use the handy event callback
3927
    document.addEventListener( "DOMContentLoaded", completed );
3928
3929
    // A fallback to window.onload, that will always work
3930
    window.addEventListener( "load", completed );
3931
}
3932
3933
3934
3935
3936
// Multifunctional method to get and set values of a collection
3937
// The value/s can optionally be executed if it's a function
3938
var access = function( elems, fn, key, value, chainable, emptyGet, raw ) {
3939
    var i = 0,
3940
        len = elems.length,
3941
        bulk = key == null;
3942
3943
    // Sets many values
3944
    if ( toType( key ) === "object" ) {
3945
        chainable = true;
3946
        for ( i in key ) {
3947
            access( elems, fn, i, key[ i ], true, emptyGet, raw );
3948
        }
3949
3950
    // Sets one value
3951
    } else if ( value !== undefined ) {
3952
        chainable = true;
3953
3954
        if ( !isFunction( value ) ) {
3955
            raw = true;
3956
        }
3957
3958
        if ( bulk ) {
3959
3960
            // Bulk operations run against the entire set
3961
            if ( raw ) {
3962
                fn.call( elems, value );
3963
                fn = null;
3964
3965
            // ...except when executing function values
3966
            } else {
3967
                bulk = fn;
3968
                fn = function( elem, key, value ) {
3969
                    return bulk.call( jQuery( elem ), value );
3970
                };
3971
            }
3972
        }
3973
3974
        if ( fn ) {
3975
            for ( ; i < len; i++ ) {
3976
                fn(
3977
                    elems[ i ], key, raw ?
3978
                    value :
3979
                    value.call( elems[ i ], i, fn( elems[ i ], key ) )
3980
                );
3981
            }
3982
        }
3983
    }
3984
3985
    if ( chainable ) {
3986
        return elems;
3987
    }
3988
3989
    // Gets
3990
    if ( bulk ) {
3991
        return fn.call( elems );
3992
    }
3993
3994
    return len ? fn( elems[ 0 ], key ) : emptyGet;
3995
};
3996
3997
3998
// Matches dashed string for camelizing
3999
var rmsPrefix = /^-ms-/,
4000
    rdashAlpha = /-([a-z])/g;
4001
4002
// Used by camelCase as callback to replace()
4003
function fcamelCase( all, letter ) {
4004
    return letter.toUpperCase();
4005
}
4006
4007
// Convert dashed to camelCase; used by the css and data modules
4008
// Support: IE <=9 - 11, Edge 12 - 15
4009
// Microsoft forgot to hump their vendor prefix (#9572)
4010
function camelCase( string ) {
4011
    return string.replace( rmsPrefix, "ms-" ).replace( rdashAlpha, fcamelCase );
4012
}
4013
var acceptData = function( owner ) {
4014
4015
    // Accepts only:
4016
    //  - Node
4017
    //    - Node.ELEMENT_NODE
4018
    //    - Node.DOCUMENT_NODE
4019
    //  - Object
4020
    //    - Any
4021
    return owner.nodeType === 1 || owner.nodeType === 9 || !( +owner.nodeType );
4022
};
4023
4024
4025
4026
4027
function Data() {
4028
    this.expando = jQuery.expando + Data.uid++;
4029
}
4030
4031
Data.uid = 1;
4032
4033
Data.prototype = {
4034
4035
    cache: function( owner ) {
4036
4037
        // Check if the owner object already has a cache
4038
        var value = owner[ this.expando ];
4039
4040
        // If not, create one
4041
        if ( !value ) {
4042
            value = {};
4043
4044
            // We can accept data for non-element nodes in modern browsers,
4045
            // but we should not, see #8335.
4046
            // Always return an empty object.
4047
            if ( acceptData( owner ) ) {
4048
4049
                // If it is a node unlikely to be stringify-ed or looped over
4050
                // use plain assignment
4051
                if ( owner.nodeType ) {
4052
                    owner[ this.expando ] = value;
4053
4054
                // Otherwise secure it in a non-enumerable property
4055
                // configurable must be true to allow the property to be
4056
                // deleted when data is removed
4057
                } else {
4058
                    Object.defineProperty( owner, this.expando, {
4059
                        value: value,
4060
                        configurable: true
4061
                    } );
4062
                }
4063
            }
4064
        }
4065
4066
        return value;
4067
    },
4068
    set: function( owner, data, value ) {
4069
        var prop,
4070
            cache = this.cache( owner );
4071
4072
        // Handle: [ owner, key, value ] args
4073
        // Always use camelCase key (gh-2257)
4074
        if ( typeof data === "string" ) {
4075
            cache[ camelCase( data ) ] = value;
4076
4077
        // Handle: [ owner, { properties } ] args
4078
        } else {
4079
4080
            // Copy the properties one-by-one to the cache object
4081
            for ( prop in data ) {
4082
                cache[ camelCase( prop ) ] = data[ prop ];
4083
            }
4084
        }
4085
        return cache;
4086
    },
4087
    get: function( owner, key ) {
4088
        return key === undefined ?
4089
            this.cache( owner ) :
4090
4091
            // Always use camelCase key (gh-2257)
4092
            owner[ this.expando ] && owner[ this.expando ][ camelCase( key ) ];
4093
    },
4094
    access: function( owner, key, value ) {
4095
4096
        // In cases where either:
4097
        //
4098
        //   1. No key was specified
4099
        //   2. A string key was specified, but no value provided
4100
        //
4101
        // Take the "read" path and allow the get method to determine
4102
        // which value to return, respectively either:
4103
        //
4104
        //   1. The entire cache object
4105
        //   2. The data stored at the key
4106
        //
4107
        if ( key === undefined ||
4108
                ( ( key && typeof key === "string" ) && value === undefined ) ) {
4109
4110
            return this.get( owner, key );
4111
        }
4112
4113
        // When the key is not a string, or both a key and value
4114
        // are specified, set or extend (existing objects) with either:
4115
        //
4116
        //   1. An object of properties
4117
        //   2. A key and value
4118
        //
4119
        this.set( owner, key, value );
4120
4121
        // Since the "set" path can have two possible entry points
4122
        // return the expected data based on which path was taken[*]
4123
        return value !== undefined ? value : key;
4124
    },
4125
    remove: function( owner, key ) {
4126
        var i,
4127
            cache = owner[ this.expando ];
4128
4129
        if ( cache === undefined ) {
4130
            return;
4131
        }
4132
4133
        if ( key !== undefined ) {
4134
4135
            // Support array or space separated string of keys
4136
            if ( Array.isArray( key ) ) {
4137
4138
                // If key is an array of keys...
4139
                // We always set camelCase keys, so remove that.
4140
                key = key.map( camelCase );
4141
            } else {
4142
                key = camelCase( key );
4143
4144
                // If a key with the spaces exists, use it.
4145
                // Otherwise, create an array by matching non-whitespace
4146
                key = key in cache ?
4147
                    [ key ] :
4148
                    ( key.match( rnothtmlwhite ) || [] );
4149
            }
4150
4151
            i = key.length;
4152
4153
            while ( i-- ) {
4154
                delete cache[ key[ i ] ];
4155
            }
4156
        }
4157
4158
        // Remove the expando if there's no more data
4159
        if ( key === undefined || jQuery.isEmptyObject( cache ) ) {
4160
4161
            // Support: Chrome <=35 - 45
4162
            // Webkit & Blink performance suffers when deleting properties
4163
            // from DOM nodes, so set to undefined instead
4164
            // https://bugs.chromium.org/p/chromium/issues/detail?id=378607 (bug restricted)
4165
            if ( owner.nodeType ) {
4166
                owner[ this.expando ] = undefined;
4167
            } else {
4168
                delete owner[ this.expando ];
4169
            }
4170
        }
4171
    },
4172
    hasData: function( owner ) {
4173
        var cache = owner[ this.expando ];
4174
        return cache !== undefined && !jQuery.isEmptyObject( cache );
4175
    }
4176
};
4177
var dataPriv = new Data();
4178
4179
var dataUser = new Data();
4180
4181
4182
4183
//  Implementation Summary
4184
//
4185
//  1. Enforce API surface and semantic compatibility with 1.9.x branch
4186
//  2. Improve the module's maintainability by reducing the storage
4187
//      paths to a single mechanism.
4188
//  3. Use the same single mechanism to support "private" and "user" data.
4189
//  4. _Never_ expose "private" data to user code (TODO: Drop _data, _removeData)
4190
//  5. Avoid exposing implementation details on user objects (eg. expando properties)
4191
//  6. Provide a clear path for implementation upgrade to WeakMap in 2014
4192
4193
var rbrace = /^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,
4194
    rmultiDash = /[A-Z]/g;
4195
4196
function getData( data ) {
4197
    if ( data === "true" ) {
4198
        return true;
4199
    }
4200
4201
    if ( data === "false" ) {
4202
        return false;
4203
    }
4204
4205
    if ( data === "null" ) {
4206
        return null;
4207
    }
4208
4209
    // Only convert to a number if it doesn't change the string
4210
    if ( data === +data + "" ) {
4211
        return +data;
4212
    }
4213
4214
    if ( rbrace.test( data ) ) {
4215
        return JSON.parse( data );
4216
    }
4217
4218
    return data;
4219
}
4220
4221
function dataAttr( elem, key, data ) {
4222
    var name;
4223
4224
    // If nothing was found internally, try to fetch any
4225
    // data from the HTML5 data-* attribute
4226
    if ( data === undefined && elem.nodeType === 1 ) {
4227
        name = "data-" + key.replace( rmultiDash, "-$&" ).toLowerCase();
4228
        data = elem.getAttribute( name );
4229
4230
        if ( typeof data === "string" ) {
4231
            try {
4232
                data = getData( data );
4233
            } catch ( e ) {}
4234
4235
            // Make sure we set the data so it isn't changed later
4236
            dataUser.set( elem, key, data );
4237
        } else {
4238
            data = undefined;
4239
        }
4240
    }
4241
    return data;
4242
}
4243
4244
jQuery.extend( {
4245
    hasData: function( elem ) {
4246
        return dataUser.hasData( elem ) || dataPriv.hasData( elem );
4247
    },
4248
4249
    data: function( elem, name, data ) {
4250
        return dataUser.access( elem, name, data );
4251
    },
4252
4253
    removeData: function( elem, name ) {
4254
        dataUser.remove( elem, name );
4255
    },
4256
4257
    // TODO: Now that all calls to _data and _removeData have been replaced
4258
    // with direct calls to dataPriv methods, these can be deprecated.
4259
    _data: function( elem, name, data ) {
4260
        return dataPriv.access( elem, name, data );
4261
    },
4262
4263
    _removeData: function( elem, name ) {
4264
        dataPriv.remove( elem, name );
4265
    }
4266
} );
4267
4268
jQuery.fn.extend( {
4269
    data: function( key, value ) {
4270
        var i, name, data,
4271
            elem = this[ 0 ],
4272
            attrs = elem && elem.attributes;
4273
4274
        // Gets all values
4275
        if ( key === undefined ) {
4276
            if ( this.length ) {
4277
                data = dataUser.get( elem );
4278
4279
                if ( elem.nodeType === 1 && !dataPriv.get( elem, "hasDataAttrs" ) ) {
4280
                    i = attrs.length;
4281
                    while ( i-- ) {
4282
4283
                        // Support: IE 11 only
4284
                        // The attrs elements can be null (#14894)
4285
                        if ( attrs[ i ] ) {
4286
                            name = attrs[ i ].name;
4287
                            if ( name.indexOf( "data-" ) === 0 ) {
4288
                                name = camelCase( name.slice( 5 ) );
4289
                                dataAttr( elem, name, data[ name ] );
4290
                            }
4291
                        }
4292
                    }
4293
                    dataPriv.set( elem, "hasDataAttrs", true );
4294
                }
4295
            }
4296
4297
            return data;
4298
        }
4299
4300
        // Sets multiple values
4301
        if ( typeof key === "object" ) {
4302
            return this.each( function() {
4303
                dataUser.set( this, key );
4304
            } );
4305
        }
4306
4307
        return access( this, function( value ) {
4308
            var data;
4309
4310
            // The calling jQuery object (element matches) is not empty
4311
            // (and therefore has an element appears at this[ 0 ]) and the
4312
            // `value` parameter was not undefined. An empty jQuery object
4313
            // will result in `undefined` for elem = this[ 0 ] which will
4314
            // throw an exception if an attempt to read a data cache is made.
4315
            if ( elem && value === undefined ) {
4316
4317
                // Attempt to get data from the cache
4318
                // The key will always be camelCased in Data
4319
                data = dataUser.get( elem, key );
4320
                if ( data !== undefined ) {
4321
                    return data;
4322
                }
4323
4324
                // Attempt to "discover" the data in
4325
                // HTML5 custom data-* attrs
4326
                data = dataAttr( elem, key );
4327
                if ( data !== undefined ) {
4328
                    return data;
4329
                }
4330
4331
                // We tried really hard, but the data doesn't exist.
4332
                return;
4333
            }
4334
4335
            // Set the data...
4336
            this.each( function() {
4337
4338
                // We always store the camelCased key
4339
                dataUser.set( this, key, value );
4340
            } );
4341
        }, null, value, arguments.length > 1, null, true );
4342
    },
4343
4344
    removeData: function( key ) {
4345
        return this.each( function() {
4346
            dataUser.remove( this, key );
4347
        } );
4348
    }
4349
} );
4350
4351
4352
jQuery.extend( {
4353
    queue: function( elem, type, data ) {
4354
        var queue;
4355
4356
        if ( elem ) {
4357
            type = ( type || "fx" ) + "queue";
4358
            queue = dataPriv.get( elem, type );
4359
4360
            // Speed up dequeue by getting out quickly if this is just a lookup
4361
            if ( data ) {
4362
                if ( !queue || Array.isArray( data ) ) {
4363
                    queue = dataPriv.access( elem, type, jQuery.makeArray( data ) );
4364
                } else {
4365
                    queue.push( data );
4366
                }
4367
            }
4368
            return queue || [];
4369
        }
4370
    },
4371
4372
    dequeue: function( elem, type ) {
4373
        type = type || "fx";
4374
4375
        var queue = jQuery.queue( elem, type ),
4376
            startLength = queue.length,
4377
            fn = queue.shift(),
4378
            hooks = jQuery._queueHooks( elem, type ),
4379
            next = function() {
4380
                jQuery.dequeue( elem, type );
4381
            };
4382
4383
        // If the fx queue is dequeued, always remove the progress sentinel
4384
        if ( fn === "inprogress" ) {
4385
            fn = queue.shift();
4386
            startLength--;
4387
        }
4388
4389
        if ( fn ) {
4390
4391
            // Add a progress sentinel to prevent the fx queue from being
4392
            // automatically dequeued
4393
            if ( type === "fx" ) {
4394
                queue.unshift( "inprogress" );
4395
            }
4396
4397
            // Clear up the last queue stop function
4398
            delete hooks.stop;
4399
            fn.call( elem, next, hooks );
4400
        }
4401
4402
        if ( !startLength && hooks ) {
4403
            hooks.empty.fire();
4404
        }
4405
    },
4406
4407
    // Not public - generate a queueHooks object, or return the current one
4408
    _queueHooks: function( elem, type ) {
4409
        var key = type + "queueHooks";
4410
        return dataPriv.get( elem, key ) || dataPriv.access( elem, key, {
4411
            empty: jQuery.Callbacks( "once memory" ).add( function() {
4412
                dataPriv.remove( elem, [ type + "queue", key ] );
4413
            } )
4414
        } );
4415
    }
4416
} );
4417
4418
jQuery.fn.extend( {
4419
    queue: function( type, data ) {
4420
        var setter = 2;
4421
4422
        if ( typeof type !== "string" ) {
4423
            data = type;
4424
            type = "fx";
4425
            setter--;
4426
        }
4427
4428
        if ( arguments.length < setter ) {
4429
            return jQuery.queue( this[ 0 ], type );
4430
        }
4431
4432
        return data === undefined ?
4433
            this :
4434
            this.each( function() {
4435
                var queue = jQuery.queue( this, type, data );
4436
4437
                // Ensure a hooks for this queue
4438
                jQuery._queueHooks( this, type );
4439
4440
                if ( type === "fx" && queue[ 0 ] !== "inprogress" ) {
4441
                    jQuery.dequeue( this, type );
4442
                }
4443
            } );
4444
    },
4445
    dequeue: function( type ) {
4446
        return this.each( function() {
4447
            jQuery.dequeue( this, type );
4448
        } );
4449
    },
4450
    clearQueue: function( type ) {
4451
        return this.queue( type || "fx", [] );
4452
    },
4453
4454
    // Get a promise resolved when queues of a certain type
4455
    // are emptied (fx is the type by default)
4456
    promise: function( type, obj ) {
4457
        var tmp,
4458
            count = 1,
4459
            defer = jQuery.Deferred(),
4460
            elements = this,
4461
            i = this.length,
4462
            resolve = function() {
4463
                if ( !( --count ) ) {
4464
                    defer.resolveWith( elements, [ elements ] );
4465
                }
4466
            };
4467
4468
        if ( typeof type !== "string" ) {
4469
            obj = type;
4470
            type = undefined;
4471
        }
4472
        type = type || "fx";
4473
4474
        while ( i-- ) {
4475
            tmp = dataPriv.get( elements[ i ], type + "queueHooks" );
4476
            if ( tmp && tmp.empty ) {
4477
                count++;
4478
                tmp.empty.add( resolve );
4479
            }
4480
        }
4481
        resolve();
4482
        return defer.promise( obj );
4483
    }
4484
} );
4485
var pnum = ( /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/ ).source;
4486
4487
var rcssNum = new RegExp( "^(?:([+-])=|)(" + pnum + ")([a-z%]*)$", "i" );
4488
4489
4490
var cssExpand = [ "Top", "Right", "Bottom", "Left" ];
4491
4492
var documentElement = document.documentElement;
4493
4494
4495
4496
    var isAttached = function( elem ) {
4497
            return jQuery.contains( elem.ownerDocument, elem );
4498
        },
4499
        composed = { composed: true };
4500
4501
    // Support: IE 9 - 11+, Edge 12 - 18+, iOS 10.0 - 10.2 only
4502
    // Check attachment across shadow DOM boundaries when possible (gh-3504)
4503
    // Support: iOS 10.0-10.2 only
4504
    // Early iOS 10 versions support `attachShadow` but not `getRootNode`,
4505
    // leading to errors. We need to check for `getRootNode`.
4506
    if ( documentElement.getRootNode ) {
4507
        isAttached = function( elem ) {
4508
            return jQuery.contains( elem.ownerDocument, elem ) ||
4509
                elem.getRootNode( composed ) === elem.ownerDocument;
4510
        };
4511
    }
4512
var isHiddenWithinTree = function( elem, el ) {
4513
4514
        // isHiddenWithinTree might be called from jQuery#filter function;
4515
        // in that case, element will be second argument
4516
        elem = el || elem;
4517
4518
        // Inline style trumps all
4519
        return elem.style.display === "none" ||
4520
            elem.style.display === "" &&
4521
4522
            // Otherwise, check computed style
4523
            // Support: Firefox <=43 - 45
4524
            // Disconnected elements can have computed display: none, so first confirm that elem is
4525
            // in the document.
4526
            isAttached( elem ) &&
4527
4528
            jQuery.css( elem, "display" ) === "none";
4529
    };
4530
4531
var swap = function( elem, options, callback, args ) {
4532
    var ret, name,
4533
        old = {};
4534
4535
    // Remember the old values, and insert the new ones
4536
    for ( name in options ) {
4537
        old[ name ] = elem.style[ name ];
4538
        elem.style[ name ] = options[ name ];
4539
    }
4540
4541
    ret = callback.apply( elem, args || [] );
4542
4543
    // Revert the old values
4544
    for ( name in options ) {
4545
        elem.style[ name ] = old[ name ];
4546
    }
4547
4548
    return ret;
4549
};
4550
4551
4552
4553
4554
function adjustCSS( elem, prop, valueParts, tween ) {
4555
    var adjusted, scale,
4556
        maxIterations = 20,
4557
        currentValue = tween ?
4558
            function() {
4559
                return tween.cur();
4560
            } :
4561
            function() {
4562
                return jQuery.css( elem, prop, "" );
4563
            },
4564
        initial = currentValue(),
4565
        unit = valueParts && valueParts[ 3 ] || ( jQuery.cssNumber[ prop ] ? "" : "px" ),
4566
4567
        // Starting value computation is required for potential unit mismatches
4568
        initialInUnit = elem.nodeType &&
4569
            ( jQuery.cssNumber[ prop ] || unit !== "px" && +initial ) &&
4570
            rcssNum.exec( jQuery.css( elem, prop ) );
4571
4572
    if ( initialInUnit && initialInUnit[ 3 ] !== unit ) {
4573
4574
        // Support: Firefox <=54
4575
        // Halve the iteration target value to prevent interference from CSS upper bounds (gh-2144)
4576
        initial = initial / 2;
4577
4578
        // Trust units reported by jQuery.css
4579
        unit = unit || initialInUnit[ 3 ];
4580
4581
        // Iteratively approximate from a nonzero starting point
4582
        initialInUnit = +initial || 1;
4583
4584
        while ( maxIterations-- ) {
4585
4586
            // Evaluate and update our best guess (doubling guesses that zero out).
4587
            // Finish if the scale equals or crosses 1 (making the old*new product non-positive).
4588
            jQuery.style( elem, prop, initialInUnit + unit );
4589
            if ( ( 1 - scale ) * ( 1 - ( scale = currentValue() / initial || 0.5 ) ) <= 0 ) {
4590
                maxIterations = 0;
4591
            }
4592
            initialInUnit = initialInUnit / scale;
4593
4594
        }
4595
4596
        initialInUnit = initialInUnit * 2;
4597
        jQuery.style( elem, prop, initialInUnit + unit );
4598
4599
        // Make sure we update the tween properties later on
4600
        valueParts = valueParts || [];
4601
    }
4602
4603
    if ( valueParts ) {
4604
        initialInUnit = +initialInUnit || +initial || 0;
4605
4606
        // Apply relative offset (+=/-=) if specified
4607
        adjusted = valueParts[ 1 ] ?
4608
            initialInUnit + ( valueParts[ 1 ] + 1 ) * valueParts[ 2 ] :
4609
            +valueParts[ 2 ];
4610
        if ( tween ) {
4611
            tween.unit = unit;
4612
            tween.start = initialInUnit;
4613
            tween.end = adjusted;
4614
        }
4615
    }
4616
    return adjusted;
4617
}
4618
4619
4620
var defaultDisplayMap = {};
4621
4622
function getDefaultDisplay( elem ) {
4623
    var temp,
4624
        doc = elem.ownerDocument,
4625
        nodeName = elem.nodeName,
4626
        display = defaultDisplayMap[ nodeName ];
4627
4628
    if ( display ) {
4629
        return display;
4630
    }
4631
4632
    temp = doc.body.appendChild( doc.createElement( nodeName ) );
4633
    display = jQuery.css( temp, "display" );
4634
4635
    temp.parentNode.removeChild( temp );
4636
4637
    if ( display === "none" ) {
4638
        display = "block";
4639
    }
4640
    defaultDisplayMap[ nodeName ] = display;
4641
4642
    return display;
4643
}
4644
4645
function showHide( elements, show ) {
4646
    var display, elem,
4647
        values = [],
4648
        index = 0,
4649
        length = elements.length;
4650
4651
    // Determine new display value for elements that need to change
4652
    for ( ; index < length; index++ ) {
4653
        elem = elements[ index ];
4654
        if ( !elem.style ) {
4655
            continue;
4656
        }
4657
4658
        display = elem.style.display;
4659
        if ( show ) {
4660
4661
            // Since we force visibility upon cascade-hidden elements, an immediate (and slow)
4662
            // check is required in this first loop unless we have a nonempty display value (either
4663
            // inline or about-to-be-restored)
4664
            if ( display === "none" ) {
4665
                values[ index ] = dataPriv.get( elem, "display" ) || null;
4666
                if ( !values[ index ] ) {
4667
                    elem.style.display = "";
4668
                }
4669
            }
4670
            if ( elem.style.display === "" && isHiddenWithinTree( elem ) ) {
4671
                values[ index ] = getDefaultDisplay( elem );
4672
            }
4673
        } else {
4674
            if ( display !== "none" ) {
4675
                values[ index ] = "none";
4676
4677
                // Remember what we're overwriting
4678
                dataPriv.set( elem, "display", display );
4679
            }
4680
        }
4681
    }
4682
4683
    // Set the display of the elements in a second loop to avoid constant reflow
4684
    for ( index = 0; index < length; index++ ) {
4685
        if ( values[ index ] != null ) {
4686
            elements[ index ].style.display = values[ index ];
4687
        }
4688
    }
4689
4690
    return elements;
4691
}
4692
4693
jQuery.fn.extend( {
4694
    show: function() {
4695
        return showHide( this, true );
4696
    },
4697
    hide: function() {
4698
        return showHide( this );
4699
    },
4700
    toggle: function( state ) {
4701
        if ( typeof state === "boolean" ) {
4702
            return state ? this.show() : this.hide();
4703
        }
4704
4705
        return this.each( function() {
4706
            if ( isHiddenWithinTree( this ) ) {
4707
                jQuery( this ).show();
4708
            } else {
4709
                jQuery( this ).hide();
4710
            }
4711
        } );
4712
    }
4713
} );
4714
var rcheckableType = ( /^(?:checkbox|radio)$/i );
4715
4716
var rtagName = ( /<([a-z][^\/\0>\x20\t\r\n\f]*)/i );
4717
4718
var rscriptType = ( /^$|^module$|\/(?:java|ecma)script/i );
4719
4720
4721
4722
// We have to close these tags to support XHTML (#13200)
4723
var wrapMap = {
4724
4725
    // Support: IE <=9 only
4726
    option: [ 1, "<select multiple='multiple'>", "</select>" ],
4727
4728
    // XHTML parsers do not magically insert elements in the
4729
    // same way that tag soup parsers do. So we cannot shorten
4730
    // this by omitting <tbody> or other required elements.
4731
    thead: [ 1, "<table>", "</table>" ],
4732
    col: [ 2, "<table><colgroup>", "</colgroup></table>" ],
4733
    tr: [ 2, "<table><tbody>", "</tbody></table>" ],
4734
    td: [ 3, "<table><tbody><tr>", "</tr></tbody></table>" ],
4735
4736
    _default: [ 0, "", "" ]
4737
};
4738
4739
// Support: IE <=9 only
4740
wrapMap.optgroup = wrapMap.option;
4741
4742
wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead;
4743
wrapMap.th = wrapMap.td;
4744
4745
4746
function getAll( context, tag ) {
4747
4748
    // Support: IE <=9 - 11 only
4749
    // Use typeof to avoid zero-argument method invocation on host objects (#15151)
4750
    var ret;
4751
4752
    if ( typeof context.getElementsByTagName !== "undefined" ) {
4753
        ret = context.getElementsByTagName( tag || "*" );
4754
4755
    } else if ( typeof context.querySelectorAll !== "undefined" ) {
4756
        ret = context.querySelectorAll( tag || "*" );
4757
4758
    } else {
4759
        ret = [];
4760
    }
4761
4762
    if ( tag === undefined || tag && nodeName( context, tag ) ) {
4763
        return jQuery.merge( [ context ], ret );
4764
    }
4765
4766
    return ret;
4767
}
4768
4769
4770
// Mark scripts as having already been evaluated
4771
function setGlobalEval( elems, refElements ) {
4772
    var i = 0,
4773
        l = elems.length;
4774
4775
    for ( ; i < l; i++ ) {
4776
        dataPriv.set(
4777
            elems[ i ],
4778
            "globalEval",
4779
            !refElements || dataPriv.get( refElements[ i ], "globalEval" )
4780
        );
4781
    }
4782
}
4783
4784
4785
var rhtml = /<|&#?\w+;/;
4786
4787
function buildFragment( elems, context, scripts, selection, ignored ) {
4788
    var elem, tmp, tag, wrap, attached, j,
4789
        fragment = context.createDocumentFragment(),
4790
        nodes = [],
4791
        i = 0,
4792
        l = elems.length;
4793
4794
    for ( ; i < l; i++ ) {
4795
        elem = elems[ i ];
4796
4797
        if ( elem || elem === 0 ) {
4798
4799
            // Add nodes directly
4800
            if ( toType( elem ) === "object" ) {
4801
4802
                // Support: Android <=4.0 only, PhantomJS 1 only
4803
                // push.apply(_, arraylike) throws on ancient WebKit
4804
                jQuery.merge( nodes, elem.nodeType ? [ elem ] : elem );
4805
4806
            // Convert non-html into a text node
4807
            } else if ( !rhtml.test( elem ) ) {
4808
                nodes.push( context.createTextNode( elem ) );
4809
4810
            // Convert html into DOM nodes
4811
            } else {
4812
                tmp = tmp || fragment.appendChild( context.createElement( "div" ) );
4813
4814
                // Deserialize a standard representation
4815
                tag = ( rtagName.exec( elem ) || [ "", "" ] )[ 1 ].toLowerCase();
4816
                wrap = wrapMap[ tag ] || wrapMap._default;
4817
                tmp.innerHTML = wrap[ 1 ] + jQuery.htmlPrefilter( elem ) + wrap[ 2 ];
4818
4819
                // Descend through wrappers to the right content
4820
                j = wrap[ 0 ];
4821
                while ( j-- ) {
4822
                    tmp = tmp.lastChild;
4823
                }
4824
4825
                // Support: Android <=4.0 only, PhantomJS 1 only
4826
                // push.apply(_, arraylike) throws on ancient WebKit
4827
                jQuery.merge( nodes, tmp.childNodes );
4828
4829
                // Remember the top-level container
4830
                tmp = fragment.firstChild;
4831
4832
                // Ensure the created nodes are orphaned (#12392)
4833
                tmp.textContent = "";
4834
            }
4835
        }
4836
    }
4837
4838
    // Remove wrapper from fragment
4839
    fragment.textContent = "";
4840
4841
    i = 0;
4842
    while ( ( elem = nodes[ i++ ] ) ) {
4843
4844
        // Skip elements already in the context collection (trac-4087)
4845
        if ( selection && jQuery.inArray( elem, selection ) > -1 ) {
4846
            if ( ignored ) {
4847
                ignored.push( elem );
4848
            }
4849
            continue;
4850
        }
4851
4852
        attached = isAttached( elem );
4853
4854
        // Append to fragment
4855
        tmp = getAll( fragment.appendChild( elem ), "script" );
4856
4857
        // Preserve script evaluation history
4858
        if ( attached ) {
4859
            setGlobalEval( tmp );
4860
        }
4861
4862
        // Capture executables
4863
        if ( scripts ) {
4864
            j = 0;
4865
            while ( ( elem = tmp[ j++ ] ) ) {
4866
                if ( rscriptType.test( elem.type || "" ) ) {
4867
                    scripts.push( elem );
4868
                }
4869
            }
4870
        }
4871
    }
4872
4873
    return fragment;
4874
}
4875
4876
4877
( function() {
4878
    var fragment = document.createDocumentFragment(),
4879
        div = fragment.appendChild( document.createElement( "div" ) ),
4880
        input = document.createElement( "input" );
4881
4882
    // Support: Android 4.0 - 4.3 only
4883
    // Check state lost if the name is set (#11217)
4884
    // Support: Windows Web Apps (WWA)
4885
    // `name` and `type` must use .setAttribute for WWA (#14901)
4886
    input.setAttribute( "type", "radio" );
4887
    input.setAttribute( "checked", "checked" );
4888
    input.setAttribute( "name", "t" );
4889
4890
    div.appendChild( input );
4891
4892
    // Support: Android <=4.1 only
4893
    // Older WebKit doesn't clone checked state correctly in fragments
4894
    support.checkClone = div.cloneNode( true ).cloneNode( true ).lastChild.checked;
4895
4896
    // Support: IE <=11 only
4897
    // Make sure textarea (and checkbox) defaultValue is properly cloned
4898
    div.innerHTML = "<textarea>x</textarea>";
4899
    support.noCloneChecked = !!div.cloneNode( true ).lastChild.defaultValue;
4900
} )();
4901
4902
4903
var
4904
    rkeyEvent = /^key/,
4905
    rmouseEvent = /^(?:mouse|pointer|contextmenu|drag|drop)|click/,
4906
    rtypenamespace = /^([^.]*)(?:\.(.+)|)/;
4907
4908
function returnTrue() {
4909
    return true;
4910
}
4911
4912
function returnFalse() {
4913
    return false;
4914
}
4915
4916
// Support: IE <=9 - 11+
4917
// focus() and blur() are asynchronous, except when they are no-op.
4918
// So expect focus to be synchronous when the element is already active,
4919
// and blur to be synchronous when the element is not already active.
4920
// (focus and blur are always synchronous in other supported browsers,
4921
// this just defines when we can count on it).
4922
function expectSync( elem, type ) {
4923
    return ( elem === safeActiveElement() ) === ( type === "focus" );
4924
}
4925
4926
// Support: IE <=9 only
4927
// Accessing document.activeElement can throw unexpectedly
4928
// https://bugs.jquery.com/ticket/13393
4929
function safeActiveElement() {
4930
    try {
4931
        return document.activeElement;
4932
    } catch ( err ) { }
4933
}
4934
4935
function on( elem, types, selector, data, fn, one ) {
4936
    var origFn, type;
4937
4938
    // Types can be a map of types/handlers
4939
    if ( typeof types === "object" ) {
4940
4941
        // ( types-Object, selector, data )
4942
        if ( typeof selector !== "string" ) {
4943
4944
            // ( types-Object, data )
4945
            data = data || selector;
4946
            selector = undefined;
4947
        }
4948
        for ( type in types ) {
4949
            on( elem, type, selector, data, types[ type ], one );
4950
        }
4951
        return elem;
4952
    }
4953
4954
    if ( data == null && fn == null ) {
4955
4956
        // ( types, fn )
4957
        fn = selector;
4958
        data = selector = undefined;
4959
    } else if ( fn == null ) {
4960
        if ( typeof selector === "string" ) {
4961
4962
            // ( types, selector, fn )
4963
            fn = data;
4964
            data = undefined;
4965
        } else {
4966
4967
            // ( types, data, fn )
4968
            fn = data;
4969
            data = selector;
4970
            selector = undefined;
4971
        }
4972
    }
4973
    if ( fn === false ) {
4974
        fn = returnFalse;
4975
    } else if ( !fn ) {
4976
        return elem;
4977
    }
4978
4979
    if ( one === 1 ) {
4980
        origFn = fn;
4981
        fn = function( event ) {
4982
4983
            // Can use an empty set, since event contains the info
4984
            jQuery().off( event );
4985
            return origFn.apply( this, arguments );
4986
        };
4987
4988
        // Use same guid so caller can remove using origFn
4989
        fn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ );
4990
    }
4991
    return elem.each( function() {
4992
        jQuery.event.add( this, types, fn, data, selector );
4993
    } );
4994
}
4995
4996
/*
4997
 * Helper functions for managing events -- not part of the public interface.
4998
 * Props to Dean Edwards' addEvent library for many of the ideas.
4999
 */
5000
jQuery.event = {
5001
5002
    global: {},
5003
5004
    add: function( elem, types, handler, data, selector ) {
5005
5006
        var handleObjIn, eventHandle, tmp,
5007
            events, t, handleObj,
5008
            special, handlers, type, namespaces, origType,
5009
            elemData = dataPriv.get( elem );
5010
5011
        // Don't attach events to noData or text/comment nodes (but allow plain objects)
5012
        if ( !elemData ) {
5013
            return;
5014
        }
5015
5016
        // Caller can pass in an object of custom data in lieu of the handler
5017
        if ( handler.handler ) {
5018
            handleObjIn = handler;
5019
            handler = handleObjIn.handler;
5020
            selector = handleObjIn.selector;
5021
        }
5022
5023
        // Ensure that invalid selectors throw exceptions at attach time
5024
        // Evaluate against documentElement in case elem is a non-element node (e.g., document)
5025
        if ( selector ) {
5026
            jQuery.find.matchesSelector( documentElement, selector );
5027
        }
5028
5029
        // Make sure that the handler has a unique ID, used to find/remove it later
5030
        if ( !handler.guid ) {
5031
            handler.guid = jQuery.guid++;
5032
        }
5033
5034
        // Init the element's event structure and main handler, if this is the first
5035
        if ( !( events = elemData.events ) ) {
5036
            events = elemData.events = {};
5037
        }
5038
        if ( !( eventHandle = elemData.handle ) ) {
5039
            eventHandle = elemData.handle = function( e ) {
5040
5041
                // Discard the second event of a jQuery.event.trigger() and
5042
                // when an event is called after a page has unloaded
5043
                return typeof jQuery !== "undefined" && jQuery.event.triggered !== e.type ?
5044
                    jQuery.event.dispatch.apply( elem, arguments ) : undefined;
5045
            };
5046
        }
5047
5048
        // Handle multiple events separated by a space
5049
        types = ( types || "" ).match( rnothtmlwhite ) || [ "" ];
5050
        t = types.length;
5051
        while ( t-- ) {
5052
            tmp = rtypenamespace.exec( types[ t ] ) || [];
5053
            type = origType = tmp[ 1 ];
5054
            namespaces = ( tmp[ 2 ] || "" ).split( "." ).sort();
5055
5056
            // There *must* be a type, no attaching namespace-only handlers
5057
            if ( !type ) {
5058
                continue;
5059
            }
5060
5061
            // If event changes its type, use the special event handlers for the changed type
5062
            special = jQuery.event.special[ type ] || {};
5063
5064
            // If selector defined, determine special event api type, otherwise given type
5065
            type = ( selector ? special.delegateType : special.bindType ) || type;
5066
5067
            // Update special based on newly reset type
5068
            special = jQuery.event.special[ type ] || {};
5069
5070
            // handleObj is passed to all event handlers
5071
            handleObj = jQuery.extend( {
5072
                type: type,
5073
                origType: origType,
5074
                data: data,
5075
                handler: handler,
5076
                guid: handler.guid,
5077
                selector: selector,
5078
                needsContext: selector && jQuery.expr.match.needsContext.test( selector ),
5079
                namespace: namespaces.join( "." )
5080
            }, handleObjIn );
5081
5082
            // Init the event handler queue if we're the first
5083
            if ( !( handlers = events[ type ] ) ) {
5084
                handlers = events[ type ] = [];
5085
                handlers.delegateCount = 0;
5086
5087
                // Only use addEventListener if the special events handler returns false
5088
                if ( !special.setup ||
5089
                    special.setup.call( elem, data, namespaces, eventHandle ) === false ) {
5090
5091
                    if ( elem.addEventListener ) {
5092
                        elem.addEventListener( type, eventHandle );
5093
                    }
5094
                }
5095
            }
5096
5097
            if ( special.add ) {
5098
                special.add.call( elem, handleObj );
5099
5100
                if ( !handleObj.handler.guid ) {
5101
                    handleObj.handler.guid = handler.guid;
5102
                }
5103
            }
5104
5105
            // Add to the element's handler list, delegates in front
5106
            if ( selector ) {
5107
                handlers.splice( handlers.delegateCount++, 0, handleObj );
5108
            } else {
5109
                handlers.push( handleObj );
5110
            }
5111
5112
            // Keep track of which events have ever been used, for event optimization
5113
            jQuery.event.global[ type ] = true;
5114
        }
5115
5116
    },
5117
5118
    // Detach an event or set of events from an element
5119
    remove: function( elem, types, handler, selector, mappedTypes ) {
5120
5121
        var j, origCount, tmp,
5122
            events, t, handleObj,
5123
            special, handlers, type, namespaces, origType,
5124
            elemData = dataPriv.hasData( elem ) && dataPriv.get( elem );
5125
5126
        if ( !elemData || !( events = elemData.events ) ) {
5127
            return;
5128
        }
5129
5130
        // Once for each type.namespace in types; type may be omitted
5131
        types = ( types || "" ).match( rnothtmlwhite ) || [ "" ];
5132
        t = types.length;
5133
        while ( t-- ) {
5134
            tmp = rtypenamespace.exec( types[ t ] ) || [];
5135
            type = origType = tmp[ 1 ];
5136
            namespaces = ( tmp[ 2 ] || "" ).split( "." ).sort();
5137
5138
            // Unbind all events (on this namespace, if provided) for the element
5139
            if ( !type ) {
5140
                for ( type in events ) {
5141
                    jQuery.event.remove( elem, type + types[ t ], handler, selector, true );
5142
                }
5143
                continue;
5144
            }
5145
5146
            special = jQuery.event.special[ type ] || {};
5147
            type = ( selector ? special.delegateType : special.bindType ) || type;
5148
            handlers = events[ type ] || [];
5149
            tmp = tmp[ 2 ] &&
5150
                new RegExp( "(^|\\.)" + namespaces.join( "\\.(?:.*\\.|)" ) + "(\\.|$)" );
5151
5152
            // Remove matching events
5153
            origCount = j = handlers.length;
5154
            while ( j-- ) {
5155
                handleObj = handlers[ j ];
5156
5157
                if ( ( mappedTypes || origType === handleObj.origType ) &&
5158
                    ( !handler || handler.guid === handleObj.guid ) &&
5159
                    ( !tmp || tmp.test( handleObj.namespace ) ) &&
5160
                    ( !selector || selector === handleObj.selector ||
5161
                        selector === "**" && handleObj.selector ) ) {
5162
                    handlers.splice( j, 1 );
5163
5164
                    if ( handleObj.selector ) {
5165
                        handlers.delegateCount--;
5166
                    }
5167
                    if ( special.remove ) {
5168
                        special.remove.call( elem, handleObj );
5169
                    }
5170
                }
5171
            }
5172
5173
            // Remove generic event handler if we removed something and no more handlers exist
5174
            // (avoids potential for endless recursion during removal of special event handlers)
5175
            if ( origCount && !handlers.length ) {
5176
                if ( !special.teardown ||
5177
                    special.teardown.call( elem, namespaces, elemData.handle ) === false ) {
5178
5179
                    jQuery.removeEvent( elem, type, elemData.handle );
5180
                }
5181
5182
                delete events[ type ];
5183
            }
5184
        }
5185
5186
        // Remove data and the expando if it's no longer used
5187
        if ( jQuery.isEmptyObject( events ) ) {
5188
            dataPriv.remove( elem, "handle events" );
5189
        }
5190
    },
5191
5192
    dispatch: function( nativeEvent ) {
5193
5194
        // Make a writable jQuery.Event from the native event object
5195
        var event = jQuery.event.fix( nativeEvent );
5196
5197
        var i, j, ret, matched, handleObj, handlerQueue,
5198
            args = new Array( arguments.length ),
5199
            handlers = ( dataPriv.get( this, "events" ) || {} )[ event.type ] || [],
5200
            special = jQuery.event.special[ event.type ] || {};
5201
5202
        // Use the fix-ed jQuery.Event rather than the (read-only) native event
5203
        args[ 0 ] = event;
5204
5205
        for ( i = 1; i < arguments.length; i++ ) {
5206
            args[ i ] = arguments[ i ];
5207
        }
5208
5209
        event.delegateTarget = this;
5210
5211
        // Call the preDispatch hook for the mapped type, and let it bail if desired
5212
        if ( special.preDispatch && special.preDispatch.call( this, event ) === false ) {
5213
            return;
5214
        }
5215
5216
        // Determine handlers
5217
        handlerQueue = jQuery.event.handlers.call( this, event, handlers );
5218
5219
        // Run delegates first; they may want to stop propagation beneath us
5220
        i = 0;
5221
        while ( ( matched = handlerQueue[ i++ ] ) && !event.isPropagationStopped() ) {
5222
            event.currentTarget = matched.elem;
5223
5224
            j = 0;
5225
            while ( ( handleObj = matched.handlers[ j++ ] ) &&
5226
                !event.isImmediatePropagationStopped() ) {
5227
5228
                // If the event is namespaced, then each handler is only invoked if it is
5229
                // specially universal or its namespaces are a superset of the event's.
5230
                if ( !event.rnamespace || handleObj.namespace === false ||
5231
                    event.rnamespace.test( handleObj.namespace ) ) {
5232
5233
                    event.handleObj = handleObj;
5234
                    event.data = handleObj.data;
5235
5236
                    ret = ( ( jQuery.event.special[ handleObj.origType ] || {} ).handle ||
5237
                        handleObj.handler ).apply( matched.elem, args );
5238
5239
                    if ( ret !== undefined ) {
5240
                        if ( ( event.result = ret ) === false ) {
5241
                            event.preventDefault();
5242
                            event.stopPropagation();
5243
                        }
5244
                    }
5245
                }
5246
            }
5247
        }
5248
5249
        // Call the postDispatch hook for the mapped type
5250
        if ( special.postDispatch ) {
5251
            special.postDispatch.call( this, event );
5252
        }
5253
5254
        return event.result;
5255
    },
5256
5257
    handlers: function( event, handlers ) {
5258
        var i, handleObj, sel, matchedHandlers, matchedSelectors,
5259
            handlerQueue = [],
5260
            delegateCount = handlers.delegateCount,
5261
            cur = event.target;
5262
5263
        // Find delegate handlers
5264
        if ( delegateCount &&
5265
5266
            // Support: IE <=9
5267
            // Black-hole SVG <use> instance trees (trac-13180)
5268
            cur.nodeType &&
5269
5270
            // Support: Firefox <=42
5271
            // Suppress spec-violating clicks indicating a non-primary pointer button (trac-3861)
5272
            // https://www.w3.org/TR/DOM-Level-3-Events/#event-type-click
5273
            // Support: IE 11 only
5274
            // ...but not arrow key "clicks" of radio inputs, which can have `button` -1 (gh-2343)
5275
            !( event.type === "click" && event.button >= 1 ) ) {
5276
5277
            for ( ; cur !== this; cur = cur.parentNode || this ) {
5278
5279
                // Don't check non-elements (#13208)
5280
                // Don't process clicks on disabled elements (#6911, #8165, #11382, #11764)
5281
                if ( cur.nodeType === 1 && !( event.type === "click" && cur.disabled === true ) ) {
5282
                    matchedHandlers = [];
5283
                    matchedSelectors = {};
5284
                    for ( i = 0; i < delegateCount; i++ ) {
5285
                        handleObj = handlers[ i ];
5286
5287
                        // Don't conflict with Object.prototype properties (#13203)
5288
                        sel = handleObj.selector + " ";
5289
5290
                        if ( matchedSelectors[ sel ] === undefined ) {
5291
                            matchedSelectors[ sel ] = handleObj.needsContext ?
5292
                                jQuery( sel, this ).index( cur ) > -1 :
5293
                                jQuery.find( sel, this, null, [ cur ] ).length;
5294
                        }
5295
                        if ( matchedSelectors[ sel ] ) {
5296
                            matchedHandlers.push( handleObj );
5297
                        }
5298
                    }
5299
                    if ( matchedHandlers.length ) {
5300
                        handlerQueue.push( { elem: cur, handlers: matchedHandlers } );
5301
                    }
5302
                }
5303
            }
5304
        }
5305
5306
        // Add the remaining (directly-bound) handlers
5307
        cur = this;
5308
        if ( delegateCount < handlers.length ) {
5309
            handlerQueue.push( { elem: cur, handlers: handlers.slice( delegateCount ) } );
5310
        }
5311
5312
        return handlerQueue;
5313
    },
5314
5315
    addProp: function( name, hook ) {
5316
        Object.defineProperty( jQuery.Event.prototype, name, {
5317
            enumerable: true,
5318
            configurable: true,
5319
5320
            get: isFunction( hook ) ?
5321
                function() {
5322
                    if ( this.originalEvent ) {
5323
                            return hook( this.originalEvent );
5324
                    }
5325
                } :
5326
                function() {
5327
                    if ( this.originalEvent ) {
5328
                            return this.originalEvent[ name ];
5329
                    }
5330
                },
5331
5332
            set: function( value ) {
5333
                Object.defineProperty( this, name, {
5334
                    enumerable: true,
5335
                    configurable: true,
5336
                    writable: true,
5337
                    value: value
5338
                } );
5339
            }
5340
        } );
5341
    },
5342
5343
    fix: function( originalEvent ) {
5344
        return originalEvent[ jQuery.expando ] ?
5345
            originalEvent :
5346
            new jQuery.Event( originalEvent );
5347
    },
5348
5349
    special: {
5350
        load: {
5351
5352
            // Prevent triggered image.load events from bubbling to window.load
5353
            noBubble: true
5354
        },
5355
        click: {
5356
5357
            // Utilize native event to ensure correct state for checkable inputs
5358
            setup: function( data ) {
5359
5360
                // For mutual compressibility with _default, replace `this` access with a local var.
5361
                // `|| data` is dead code meant only to preserve the variable through minification.
5362
                var el = this || data;
5363
5364
                // Claim the first handler
5365
                if ( rcheckableType.test( el.type ) &&
5366
                    el.click && nodeName( el, "input" ) ) {
5367
5368
                    // dataPriv.set( el, "click", ... )
5369
                    leverageNative( el, "click", returnTrue );
5370
                }
5371
5372
                // Return false to allow normal processing in the caller
5373
                return false;
5374
            },
5375
            trigger: function( data ) {
5376
5377
                // For mutual compressibility with _default, replace `this` access with a local var.
5378
                // `|| data` is dead code meant only to preserve the variable through minification.
5379
                var el = this || data;
5380
5381
                // Force setup before triggering a click
5382
                if ( rcheckableType.test( el.type ) &&
5383
                    el.click && nodeName( el, "input" ) ) {
5384
5385
                    leverageNative( el, "click" );
5386
                }
5387
5388
                // Return non-false to allow normal event-path propagation
5389
                return true;
5390
            },
5391
5392
            // For cross-browser consistency, suppress native .click() on links
5393
            // Also prevent it if we're currently inside a leveraged native-event stack
5394
            _default: function( event ) {
5395
                var target = event.target;
5396
                return rcheckableType.test( target.type ) &&
5397
                    target.click && nodeName( target, "input" ) &&
5398
                    dataPriv.get( target, "click" ) ||
5399
                    nodeName( target, "a" );
5400
            }
5401
        },
5402
5403
        beforeunload: {
5404
            postDispatch: function( event ) {
5405
5406
                // Support: Firefox 20+
5407
                // Firefox doesn't alert if the returnValue field is not set.
5408
                if ( event.result !== undefined && event.originalEvent ) {
5409
                    event.originalEvent.returnValue = event.result;
5410
                }
5411
            }
5412
        }
5413
    }
5414
};
5415
5416
// Ensure the presence of an event listener that handles manually-triggered
5417
// synthetic events by interrupting progress until reinvoked in response to
5418
// *native* events that it fires directly, ensuring that state changes have
5419
// already occurred before other listeners are invoked.
5420
function leverageNative( el, type, expectSync ) {
5421
5422
    // Missing expectSync indicates a trigger call, which must force setup through jQuery.event.add
5423
    if ( !expectSync ) {
5424
        if ( dataPriv.get( el, type ) === undefined ) {
5425
            jQuery.event.add( el, type, returnTrue );
5426
        }
5427
        return;
5428
    }
5429
5430
    // Register the controller as a special universal handler for all event namespaces
5431
    dataPriv.set( el, type, false );
5432
    jQuery.event.add( el, type, {
5433
        namespace: false,
5434
        handler: function( event ) {
5435
            var notAsync, result,
5436
                saved = dataPriv.get( this, type );
5437
5438
            if ( ( event.isTrigger & 1 ) && this[ type ] ) {
5439
5440
                // Interrupt processing of the outer synthetic .trigger()ed event
5441
                // Saved data should be false in such cases, but might be a leftover capture object
5442
                // from an async native handler (gh-4350)
5443
                if ( !saved.length ) {
5444
5445
                    // Store arguments for use when handling the inner native event
5446
                    // There will always be at least one argument (an event object), so this array
5447
                    // will not be confused with a leftover capture object.
5448
                    saved = slice.call( arguments );
5449
                    dataPriv.set( this, type, saved );
5450
5451
                    // Trigger the native event and capture its result
5452
                    // Support: IE <=9 - 11+
5453
                    // focus() and blur() are asynchronous
5454
                    notAsync = expectSync( this, type );
5455
                    this[ type ]();
5456
                    result = dataPriv.get( this, type );
5457
                    if ( saved !== result || notAsync ) {
5458
                        dataPriv.set( this, type, false );
5459
                    } else {
5460
                        result = {};
5461
                    }
5462
                    if ( saved !== result ) {
5463
5464
                        // Cancel the outer synthetic event
5465
                        event.stopImmediatePropagation();
5466
                        event.preventDefault();
5467
                        return result.value;
5468
                    }
5469
5470
                // If this is an inner synthetic event for an event with a bubbling surrogate
5471
                // (focus or blur), assume that the surrogate already propagated from triggering the
5472
                // native event and prevent that from happening again here.
5473
                // This technically gets the ordering wrong w.r.t. to `.trigger()` (in which the
5474
                // bubbling surrogate propagates *after* the non-bubbling base), but that seems
5475
                // less bad than duplication.
5476
                } else if ( ( jQuery.event.special[ type ] || {} ).delegateType ) {
5477
                    event.stopPropagation();
5478
                }
5479
5480
            // If this is a native event triggered above, everything is now in order
5481
            // Fire an inner synthetic event with the original arguments
5482
            } else if ( saved.length ) {
5483
5484
                // ...and capture the result
5485
                dataPriv.set( this, type, {
5486
                    value: jQuery.event.trigger(
5487
5488
                        // Support: IE <=9 - 11+
5489
                        // Extend with the prototype to reset the above stopImmediatePropagation()
5490
                        jQuery.extend( saved[ 0 ], jQuery.Event.prototype ),
5491
                        saved.slice( 1 ),
5492
                        this
5493
                    )
5494
                } );
5495
5496
                // Abort handling of the native event
5497
                event.stopImmediatePropagation();
5498
            }
5499
        }
5500
    } );
5501
}
5502
5503
jQuery.removeEvent = function( elem, type, handle ) {
5504
5505
    // This "if" is needed for plain objects
5506
    if ( elem.removeEventListener ) {
5507
        elem.removeEventListener( type, handle );
5508
    }
5509
};
5510
5511
jQuery.Event = function( src, props ) {
5512
5513
    // Allow instantiation without the 'new' keyword
5514
    if ( !( this instanceof jQuery.Event ) ) {
5515
        return new jQuery.Event( src, props );
5516
    }
5517
5518
    // Event object
5519
    if ( src && src.type ) {
5520
        this.originalEvent = src;
5521
        this.type = src.type;
5522
5523
        // Events bubbling up the document may have been marked as prevented
5524
        // by a handler lower down the tree; reflect the correct value.
5525
        this.isDefaultPrevented = src.defaultPrevented ||
5526
                src.defaultPrevented === undefined &&
5527
5528
                // Support: Android <=2.3 only
5529
                src.returnValue === false ?
5530
            returnTrue :
5531
            returnFalse;
5532
5533
        // Create target properties
5534
        // Support: Safari <=6 - 7 only
5535
        // Target should not be a text node (#504, #13143)
5536
        this.target = ( src.target && src.target.nodeType === 3 ) ?
5537
            src.target.parentNode :
5538
            src.target;
5539
5540
        this.currentTarget = src.currentTarget;
5541
        this.relatedTarget = src.relatedTarget;
5542
5543
    // Event type
5544
    } else {
5545
        this.type = src;
5546
    }
5547
5548
    // Put explicitly provided properties onto the event object
5549
    if ( props ) {
5550
        jQuery.extend( this, props );
5551
    }
5552
5553
    // Create a timestamp if incoming event doesn't have one
5554
    this.timeStamp = src && src.timeStamp || Date.now();
5555
5556
    // Mark it as fixed
5557
    this[ jQuery.expando ] = true;
5558
};
5559
5560
// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding
5561
// https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html
5562
jQuery.Event.prototype = {
5563
    constructor: jQuery.Event,
5564
    isDefaultPrevented: returnFalse,
5565
    isPropagationStopped: returnFalse,
5566
    isImmediatePropagationStopped: returnFalse,
5567
    isSimulated: false,
5568
5569
    preventDefault: function() {
5570
        var e = this.originalEvent;
5571
5572
        this.isDefaultPrevented = returnTrue;
5573
5574
        if ( e && !this.isSimulated ) {
5575
            e.preventDefault();
5576
        }
5577
    },
5578
    stopPropagation: function() {
5579
        var e = this.originalEvent;
5580
5581
        this.isPropagationStopped = returnTrue;
5582
5583
        if ( e && !this.isSimulated ) {
5584
            e.stopPropagation();
5585
        }
5586
    },
5587
    stopImmediatePropagation: function() {
5588
        var e = this.originalEvent;
5589
5590
        this.isImmediatePropagationStopped = returnTrue;
5591
5592
        if ( e && !this.isSimulated ) {
5593
            e.stopImmediatePropagation();
5594
        }
5595
5596
        this.stopPropagation();
5597
    }
5598
};
5599
5600
// Includes all common event props including KeyEvent and MouseEvent specific props
5601
jQuery.each( {
5602
    altKey: true,
5603
    bubbles: true,
5604
    cancelable: true,
5605
    changedTouches: true,
5606
    ctrlKey: true,
5607
    detail: true,
5608
    eventPhase: true,
5609
    metaKey: true,
5610
    pageX: true,
5611
    pageY: true,
5612
    shiftKey: true,
5613
    view: true,
5614
    "char": true,
5615
    code: true,
5616
    charCode: true,
5617
    key: true,
5618
    keyCode: true,
5619
    button: true,
5620
    buttons: true,
5621
    clientX: true,
5622
    clientY: true,
5623
    offsetX: true,
5624
    offsetY: true,
5625
    pointerId: true,
5626
    pointerType: true,
5627
    screenX: true,
5628
    screenY: true,
5629
    targetTouches: true,
5630
    toElement: true,
5631
    touches: true,
5632
5633
    which: function( event ) {
5634
        var button = event.button;
5635
5636
        // Add which for key events
5637
        if ( event.which == null && rkeyEvent.test( event.type ) ) {
5638
            return event.charCode != null ? event.charCode : event.keyCode;
5639
        }
5640
5641
        // Add which for click: 1 === left; 2 === middle; 3 === right
5642
        if ( !event.which && button !== undefined && rmouseEvent.test( event.type ) ) {
5643
            if ( button & 1 ) {
5644
                return 1;
5645
            }
5646
5647
            if ( button & 2 ) {
5648
                return 3;
5649
            }
5650
5651
            if ( button & 4 ) {
5652
                return 2;
5653
            }
5654
5655
            return 0;
5656
        }
5657
5658
        return event.which;
5659
    }
5660
}, jQuery.event.addProp );
5661
5662
jQuery.each( { focus: "focusin", blur: "focusout" }, function( type, delegateType ) {
5663
    jQuery.event.special[ type ] = {
5664
5665
        // Utilize native event if possible so blur/focus sequence is correct
5666
        setup: function() {
5667
5668
            // Claim the first handler
5669
            // dataPriv.set( this, "focus", ... )
5670
            // dataPriv.set( this, "blur", ... )
5671
            leverageNative( this, type, expectSync );
5672
5673
            // Return false to allow normal processing in the caller
5674
            return false;
5675
        },
5676
        trigger: function() {
5677
5678
            // Force setup before trigger
5679
            leverageNative( this, type );
5680
5681
            // Return non-false to allow normal event-path propagation
5682
            return true;
5683
        },
5684
5685
        delegateType: delegateType
5686
    };
5687
} );
5688
5689
// Create mouseenter/leave events using mouseover/out and event-time checks
5690
// so that event delegation works in jQuery.
5691
// Do the same for pointerenter/pointerleave and pointerover/pointerout
5692
//
5693
// Support: Safari 7 only
5694
// Safari sends mouseenter too often; see:
5695
// https://bugs.chromium.org/p/chromium/issues/detail?id=470258
5696
// for the description of the bug (it existed in older Chrome versions as well).
5697
jQuery.each( {
5698
    mouseenter: "mouseover",
5699
    mouseleave: "mouseout",
5700
    pointerenter: "pointerover",
5701
    pointerleave: "pointerout"
5702
}, function( orig, fix ) {
5703
    jQuery.event.special[ orig ] = {
5704
        delegateType: fix,
5705
        bindType: fix,
5706
5707
        handle: function( event ) {
5708
            var ret,
5709
                target = this,
5710
                related = event.relatedTarget,
5711
                handleObj = event.handleObj;
5712
5713
            // For mouseenter/leave call the handler if related is outside the target.
5714
            // NB: No relatedTarget if the mouse left/entered the browser window
5715
            if ( !related || ( related !== target && !jQuery.contains( target, related ) ) ) {
5716
                event.type = handleObj.origType;
5717
                ret = handleObj.handler.apply( this, arguments );
5718
                event.type = fix;
5719
            }
5720
            return ret;
5721
        }
5722
    };
5723
} );
5724
5725
jQuery.fn.extend( {
5726
5727
    on: function( types, selector, data, fn ) {
5728
        return on( this, types, selector, data, fn );
5729
    },
5730
    one: function( types, selector, data, fn ) {
5731
        return on( this, types, selector, data, fn, 1 );
5732
    },
5733
    off: function( types, selector, fn ) {
5734
        var handleObj, type;
5735
        if ( types && types.preventDefault && types.handleObj ) {
5736
5737
            // ( event )  dispatched jQuery.Event
5738
            handleObj = types.handleObj;
5739
            jQuery( types.delegateTarget ).off(
5740
                handleObj.namespace ?
5741
                    handleObj.origType + "." + handleObj.namespace :
5742
                    handleObj.origType,
5743
                handleObj.selector,
5744
                handleObj.handler
5745
            );
5746
            return this;
5747
        }
5748
        if ( typeof types === "object" ) {
5749
5750
            // ( types-object [, selector] )
5751
            for ( type in types ) {
5752
                this.off( type, selector, types[ type ] );
5753
            }
5754
            return this;
5755
        }
5756
        if ( selector === false || typeof selector === "function" ) {
5757
5758
            // ( types [, fn] )
5759
            fn = selector;
5760
            selector = undefined;
5761
        }
5762
        if ( fn === false ) {
5763
            fn = returnFalse;
5764
        }
5765
        return this.each( function() {
5766
            jQuery.event.remove( this, types, fn, selector );
5767
        } );
5768
    }
5769
} );
5770
5771
5772
var
5773
5774
    /* eslint-disable max-len */
5775
5776
    // See https://github.com/eslint/eslint/issues/3229
5777
    rxhtmlTag = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>\x20\t\r\n\f]*)[^>]*)\/>/gi,
5778
5779
    /* eslint-enable */
5780
5781
    // Support: IE <=10 - 11, Edge 12 - 13 only
5782
    // In IE/Edge using regex groups here causes severe slowdowns.
5783
    // See https://connect.microsoft.com/IE/feedback/details/1736512/
5784
    rnoInnerhtml = /<script|<style|<link/i,
5785
5786
    // checked="checked" or checked
5787
    rchecked = /checked\s*(?:[^=]|=\s*.checked.)/i,
5788
    rcleanScript = /^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g;
5789
5790
// Prefer a tbody over its parent table for containing new rows
5791
function manipulationTarget( elem, content ) {
5792
    if ( nodeName( elem, "table" ) &&
5793
        nodeName( content.nodeType !== 11 ? content : content.firstChild, "tr" ) ) {
5794
5795
        return jQuery( elem ).children( "tbody" )[ 0 ] || elem;
5796
    }
5797
5798
    return elem;
5799
}
5800
5801
// Replace/restore the type attribute of script elements for safe DOM manipulation
5802
function disableScript( elem ) {
5803
    elem.type = ( elem.getAttribute( "type" ) !== null ) + "/" + elem.type;
5804
    return elem;
5805
}
5806
function restoreScript( elem ) {
5807
    if ( ( elem.type || "" ).slice( 0, 5 ) === "true/" ) {
5808
        elem.type = elem.type.slice( 5 );
5809
    } else {
5810
        elem.removeAttribute( "type" );
5811
    }
5812
5813
    return elem;
5814
}
5815
5816
function cloneCopyEvent( src, dest ) {
5817
    var i, l, type, pdataOld, pdataCur, udataOld, udataCur, events;
5818
5819
    if ( dest.nodeType !== 1 ) {
5820
        return;
5821
    }
5822
5823
    // 1. Copy private data: events, handlers, etc.
5824
    if ( dataPriv.hasData( src ) ) {
5825
        pdataOld = dataPriv.access( src );
5826
        pdataCur = dataPriv.set( dest, pdataOld );
5827
        events = pdataOld.events;
5828
5829
        if ( events ) {
5830
            delete pdataCur.handle;
5831
            pdataCur.events = {};
5832
5833
            for ( type in events ) {
5834
                for ( i = 0, l = events[ type ].length; i < l; i++ ) {
5835
                    jQuery.event.add( dest, type, events[ type ][ i ] );
5836
                }
5837
            }
5838
        }
5839
    }
5840
5841
    // 2. Copy user data
5842
    if ( dataUser.hasData( src ) ) {
5843
        udataOld = dataUser.access( src );
5844
        udataCur = jQuery.extend( {}, udataOld );
5845
5846
        dataUser.set( dest, udataCur );
5847
    }
5848
}
5849
5850
// Fix IE bugs, see support tests
5851
function fixInput( src, dest ) {
5852
    var nodeName = dest.nodeName.toLowerCase();
5853
5854
    // Fails to persist the checked state of a cloned checkbox or radio button.
5855
    if ( nodeName === "input" && rcheckableType.test( src.type ) ) {
5856
        dest.checked = src.checked;
5857
5858
    // Fails to return the selected option to the default selected state when cloning options
5859
    } else if ( nodeName === "input" || nodeName === "textarea" ) {
5860
        dest.defaultValue = src.defaultValue;
5861
    }
5862
}
5863
5864
function domManip( collection, args, callback, ignored ) {
5865
5866
    // Flatten any nested arrays
5867
    args = concat.apply( [], args );
5868
5869
    var fragment, first, scripts, hasScripts, node, doc,
5870
        i = 0,
5871
        l = collection.length,
5872
        iNoClone = l - 1,
5873
        value = args[ 0 ],
5874
        valueIsFunction = isFunction( value );
5875
5876
    // We can't cloneNode fragments that contain checked, in WebKit
5877
    if ( valueIsFunction ||
5878
            ( l > 1 && typeof value === "string" &&
5879
                !support.checkClone && rchecked.test( value ) ) ) {
5880
        return collection.each( function( index ) {
5881
            var self = collection.eq( index );
5882
            if ( valueIsFunction ) {
5883
                args[ 0 ] = value.call( this, index, self.html() );
5884
            }
5885
            domManip( self, args, callback, ignored );
5886
        } );
5887
    }
5888
5889
    if ( l ) {
5890
        fragment = buildFragment( args, collection[ 0 ].ownerDocument, false, collection, ignored );
5891
        first = fragment.firstChild;
5892
5893
        if ( fragment.childNodes.length === 1 ) {
5894
            fragment = first;
5895
        }
5896
5897
        // Require either new content or an interest in ignored elements to invoke the callback
5898
        if ( first || ignored ) {
5899
            scripts = jQuery.map( getAll( fragment, "script" ), disableScript );
5900
            hasScripts = scripts.length;
5901
5902
            // Use the original fragment for the last item
5903
            // instead of the first because it can end up
5904
            // being emptied incorrectly in certain situations (#8070).
5905
            for ( ; i < l; i++ ) {
5906
                node = fragment;
5907
5908
                if ( i !== iNoClone ) {
5909
                    node = jQuery.clone( node, true, true );
5910
5911
                    // Keep references to cloned scripts for later restoration
5912
                    if ( hasScripts ) {
5913
5914
                        // Support: Android <=4.0 only, PhantomJS 1 only
5915
                        // push.apply(_, arraylike) throws on ancient WebKit
5916
                        jQuery.merge( scripts, getAll( node, "script" ) );
5917
                    }
5918
                }
5919
5920
                callback.call( collection[ i ], node, i );
5921
            }
5922
5923
            if ( hasScripts ) {
5924
                doc = scripts[ scripts.length - 1 ].ownerDocument;
5925
5926
                // Reenable scripts
5927
                jQuery.map( scripts, restoreScript );
5928
5929
                // Evaluate executable scripts on first document insertion
5930
                for ( i = 0; i < hasScripts; i++ ) {
5931
                    node = scripts[ i ];
5932
                    if ( rscriptType.test( node.type || "" ) &&
5933
                        !dataPriv.access( node, "globalEval" ) &&
5934
                        jQuery.contains( doc, node ) ) {
5935
5936
                        if ( node.src && ( node.type || "" ).toLowerCase()  !== "module" ) {
5937
5938
                            // Optional AJAX dependency, but won't run scripts if not present
5939
                            if ( jQuery._evalUrl && !node.noModule ) {
5940
                                jQuery._evalUrl( node.src, {
5941
                                    nonce: node.nonce || node.getAttribute( "nonce" )
5942
                                } );
5943
                            }
5944
                        } else {
5945
                            DOMEval( node.textContent.replace( rcleanScript, "" ), node, doc );
5946
                        }
5947
                    }
5948
                }
5949
            }
5950
        }
5951
    }
5952
5953
    return collection;
5954
}
5955
5956
function remove( elem, selector, keepData ) {
5957
    var node,
5958
        nodes = selector ? jQuery.filter( selector, elem ) : elem,
5959
        i = 0;
5960
5961
    for ( ; ( node = nodes[ i ] ) != null; i++ ) {
5962
        if ( !keepData && node.nodeType === 1 ) {
5963
            jQuery.cleanData( getAll( node ) );
5964
        }
5965
5966
        if ( node.parentNode ) {
5967
            if ( keepData && isAttached( node ) ) {
5968
                setGlobalEval( getAll( node, "script" ) );
5969
            }
5970
            node.parentNode.removeChild( node );
5971
        }
5972
    }
5973
5974
    return elem;
5975
}
5976
5977
jQuery.extend( {
5978
    htmlPrefilter: function( html ) {
5979
        return html.replace( rxhtmlTag, "<$1></$2>" );
5980
    },
5981
5982
    clone: function( elem, dataAndEvents, deepDataAndEvents ) {
5983
        var i, l, srcElements, destElements,
5984
            clone = elem.cloneNode( true ),
5985
            inPage = isAttached( elem );
5986
5987
        // Fix IE cloning issues
5988
        if ( !support.noCloneChecked && ( elem.nodeType === 1 || elem.nodeType === 11 ) &&
5989
                !jQuery.isXMLDoc( elem ) ) {
5990
5991
            // We eschew Sizzle here for performance reasons: https://jsperf.com/getall-vs-sizzle/2
5992
            destElements = getAll( clone );
5993
            srcElements = getAll( elem );
5994
5995
            for ( i = 0, l = srcElements.length; i < l; i++ ) {
5996
                fixInput( srcElements[ i ], destElements[ i ] );
5997
            }
5998
        }
5999
6000
        // Copy the events from the original to the clone
6001
        if ( dataAndEvents ) {
6002
            if ( deepDataAndEvents ) {
6003
                srcElements = srcElements || getAll( elem );
6004
                destElements = destElements || getAll( clone );
6005
6006
                for ( i = 0, l = srcElements.length; i < l; i++ ) {
6007
                    cloneCopyEvent( srcElements[ i ], destElements[ i ] );
6008
                }
6009
            } else {
6010
                cloneCopyEvent( elem, clone );
6011
            }
6012
        }
6013
6014
        // Preserve script evaluation history
6015
        destElements = getAll( clone, "script" );
6016
        if ( destElements.length > 0 ) {
6017
            setGlobalEval( destElements, !inPage && getAll( elem, "script" ) );
6018
        }
6019
6020
        // Return the cloned set
6021
        return clone;
6022
    },
6023
6024
    cleanData: function( elems ) {
6025
        var data, elem, type,
6026
            special = jQuery.event.special,
6027
            i = 0;
6028
6029
        for ( ; ( elem = elems[ i ] ) !== undefined; i++ ) {
6030
            if ( acceptData( elem ) ) {
6031
                if ( ( data = elem[ dataPriv.expando ] ) ) {
6032
                    if ( data.events ) {
6033
                        for ( type in data.events ) {
6034
                            if ( special[ type ] ) {
6035
                                jQuery.event.remove( elem, type );
6036
6037
                            // This is a shortcut to avoid jQuery.event.remove's overhead
6038
                            } else {
6039
                                jQuery.removeEvent( elem, type, data.handle );
6040
                            }
6041
                        }
6042
                    }
6043
6044
                    // Support: Chrome <=35 - 45+
6045
                    // Assign undefined instead of using delete, see Data#remove
6046
                    elem[ dataPriv.expando ] = undefined;
6047
                }
6048
                if ( elem[ dataUser.expando ] ) {
6049
6050
                    // Support: Chrome <=35 - 45+
6051
                    // Assign undefined instead of using delete, see Data#remove
6052
                    elem[ dataUser.expando ] = undefined;
6053
                }
6054
            }
6055
        }
6056
    }
6057
} );
6058
6059
jQuery.fn.extend( {
6060
    detach: function( selector ) {
6061
        return remove( this, selector, true );
6062
    },
6063
6064
    remove: function( selector ) {
6065
        return remove( this, selector );
6066
    },
6067
6068
    text: function( value ) {
6069
        return access( this, function( value ) {
6070
            return value === undefined ?
6071
                jQuery.text( this ) :
6072
                this.empty().each( function() {
6073
                    if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {
6074
                        this.textContent = value;
6075
                    }
6076
                } );
6077
        }, null, value, arguments.length );
6078
    },
6079
6080
    append: function() {
6081
        return domManip( this, arguments, function( elem ) {
6082
            if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {
6083
                var target = manipulationTarget( this, elem );
6084
                target.appendChild( elem );
6085
            }
6086
        } );
6087
    },
6088
6089
    prepend: function() {
6090
        return domManip( this, arguments, function( elem ) {
6091
            if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {
6092
                var target = manipulationTarget( this, elem );
6093
                target.insertBefore( elem, target.firstChild );
6094
            }
6095
        } );
6096
    },
6097
6098
    before: function() {
6099
        return domManip( this, arguments, function( elem ) {
6100
            if ( this.parentNode ) {
6101
                this.parentNode.insertBefore( elem, this );
6102
            }
6103
        } );
6104
    },
6105
6106
    after: function() {
6107
        return domManip( this, arguments, function( elem ) {
6108
            if ( this.parentNode ) {
6109
                this.parentNode.insertBefore( elem, this.nextSibling );
6110
            }
6111
        } );
6112
    },
6113
6114
    empty: function() {
6115
        var elem,
6116
            i = 0;
6117
6118
        for ( ; ( elem = this[ i ] ) != null; i++ ) {
6119
            if ( elem.nodeType === 1 ) {
6120
6121
                // Prevent memory leaks
6122
                jQuery.cleanData( getAll( elem, false ) );
6123
6124
                // Remove any remaining nodes
6125
                elem.textContent = "";
6126
            }
6127
        }
6128
6129
        return this;
6130
    },
6131
6132
    clone: function( dataAndEvents, deepDataAndEvents ) {
6133
        dataAndEvents = dataAndEvents == null ? false : dataAndEvents;
6134
        deepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents;
6135
6136
        return this.map( function() {
6137
            return jQuery.clone( this, dataAndEvents, deepDataAndEvents );
6138
        } );
6139
    },
6140
6141
    html: function( value ) {
6142
        return access( this, function( value ) {
6143
            var elem = this[ 0 ] || {},
6144
                i = 0,
6145
                l = this.length;
6146
6147
            if ( value === undefined && elem.nodeType === 1 ) {
6148
                return elem.innerHTML;
6149
            }
6150
6151
            // See if we can take a shortcut and just use innerHTML
6152
            if ( typeof value === "string" && !rnoInnerhtml.test( value ) &&
6153
                !wrapMap[ ( rtagName.exec( value ) || [ "", "" ] )[ 1 ].toLowerCase() ] ) {
6154
6155
                value = jQuery.htmlPrefilter( value );
6156
6157
                try {
6158
                    for ( ; i < l; i++ ) {
6159
                        elem = this[ i ] || {};
6160
6161
                        // Remove element nodes and prevent memory leaks
6162
                        if ( elem.nodeType === 1 ) {
6163
                            jQuery.cleanData( getAll( elem, false ) );
6164
                            elem.innerHTML = value;
6165
                        }
6166
                    }
6167
6168
                    elem = 0;
6169
6170
                // If using innerHTML throws an exception, use the fallback method
6171
                } catch ( e ) {}
6172
            }
6173
6174
            if ( elem ) {
6175
                this.empty().append( value );
6176
            }
6177
        }, null, value, arguments.length );
6178
    },
6179
6180
    replaceWith: function() {
6181
        var ignored = [];
6182
6183
        // Make the changes, replacing each non-ignored context element with the new content
6184
        return domManip( this, arguments, function( elem ) {
6185
            var parent = this.parentNode;
6186
6187
            if ( jQuery.inArray( this, ignored ) < 0 ) {
6188
                jQuery.cleanData( getAll( this ) );
6189
                if ( parent ) {
6190
                    parent.replaceChild( elem, this );
6191
                }
6192
            }
6193
6194
        // Force callback invocation
6195
        }, ignored );
6196
    }
6197
} );
6198
6199
jQuery.each( {
6200
    appendTo: "append",
6201
    prependTo: "prepend",
6202
    insertBefore: "before",
6203
    insertAfter: "after",
6204
    replaceAll: "replaceWith"
6205
}, function( name, original ) {
6206
    jQuery.fn[ name ] = function( selector ) {
6207
        var elems,
6208
            ret = [],
6209
            insert = jQuery( selector ),
6210
            last = insert.length - 1,
6211
            i = 0;
6212
6213
        for ( ; i <= last; i++ ) {
6214
            elems = i === last ? this : this.clone( true );
6215
            jQuery( insert[ i ] )[ original ]( elems );
6216
6217
            // Support: Android <=4.0 only, PhantomJS 1 only
6218
            // .get() because push.apply(_, arraylike) throws on ancient WebKit
6219
            push.apply( ret, elems.get() );
6220
        }
6221
6222
        return this.pushStack( ret );
6223
    };
6224
} );
6225
var rnumnonpx = new RegExp( "^(" + pnum + ")(?!px)[a-z%]+$", "i" );
6226
6227
var getStyles = function( elem ) {
6228
6229
        // Support: IE <=11 only, Firefox <=30 (#15098, #14150)
6230
        // IE throws on elements created in popups
6231
        // FF meanwhile throws on frame elements through "defaultView.getComputedStyle"
6232
        var view = elem.ownerDocument.defaultView;
6233
6234
        if ( !view || !view.opener ) {
6235
            view = window;
6236
        }
6237
6238
        return view.getComputedStyle( elem );
6239
    };
6240
6241
var rboxStyle = new RegExp( cssExpand.join( "|" ), "i" );
6242
6243
6244
6245
( function() {
6246
6247
    // Executing both pixelPosition & boxSizingReliable tests require only one layout
6248
    // so they're executed at the same time to save the second computation.
6249
    function computeStyleTests() {
6250
6251
        // This is a singleton, we need to execute it only once
6252
        if ( !div ) {
6253
            return;
6254
        }
6255
6256
        container.style.cssText = "position:absolute;left:-11111px;width:60px;" +
6257
            "margin-top:1px;padding:0;border:0";
6258
        div.style.cssText =
6259
            "position:relative;display:block;box-sizing:border-box;overflow:scroll;" +
6260
            "margin:auto;border:1px;padding:1px;" +
6261
            "width:60%;top:1%";
6262
        documentElement.appendChild( container ).appendChild( div );
6263
6264
        var divStyle = window.getComputedStyle( div );
6265
        pixelPositionVal = divStyle.top !== "1%";
6266
6267
        // Support: Android 4.0 - 4.3 only, Firefox <=3 - 44
6268
        reliableMarginLeftVal = roundPixelMeasures( divStyle.marginLeft ) === 12;
6269
6270
        // Support: Android 4.0 - 4.3 only, Safari <=9.1 - 10.1, iOS <=7.0 - 9.3
6271
        // Some styles come back with percentage values, even though they shouldn't
6272
        div.style.right = "60%";
6273
        pixelBoxStylesVal = roundPixelMeasures( divStyle.right ) === 36;
6274
6275
        // Support: IE 9 - 11 only
6276
        // Detect misreporting of content dimensions for box-sizing:border-box elements
6277
        boxSizingReliableVal = roundPixelMeasures( divStyle.width ) === 36;
6278
6279
        // Support: IE 9 only
6280
        // Detect overflow:scroll screwiness (gh-3699)
6281
        // Support: Chrome <=64
6282
        // Don't get tricked when zoom affects offsetWidth (gh-4029)
6283
        div.style.position = "absolute";
6284
        scrollboxSizeVal = roundPixelMeasures( div.offsetWidth / 3 ) === 12;
6285
6286
        documentElement.removeChild( container );
6287
6288
        // Nullify the div so it wouldn't be stored in the memory and
6289
        // it will also be a sign that checks already performed
6290
        div = null;
6291
    }
6292
6293
    function roundPixelMeasures( measure ) {
6294
        return Math.round( parseFloat( measure ) );
6295
    }
6296
6297
    var pixelPositionVal, boxSizingReliableVal, scrollboxSizeVal, pixelBoxStylesVal,
6298
        reliableMarginLeftVal,
6299
        container = document.createElement( "div" ),
6300
        div = document.createElement( "div" );
6301
6302
    // Finish early in limited (non-browser) environments
6303
    if ( !div.style ) {
6304
        return;
6305
    }
6306
6307
    // Support: IE <=9 - 11 only
6308
    // Style of cloned element affects source element cloned (#8908)
6309
    div.style.backgroundClip = "content-box";
6310
    div.cloneNode( true ).style.backgroundClip = "";
6311
    support.clearCloneStyle = div.style.backgroundClip === "content-box";
6312
6313
    jQuery.extend( support, {
6314
        boxSizingReliable: function() {
6315
            computeStyleTests();
6316
            return boxSizingReliableVal;
6317
        },
6318
        pixelBoxStyles: function() {
6319
            computeStyleTests();
6320
            return pixelBoxStylesVal;
6321
        },
6322
        pixelPosition: function() {
6323
            computeStyleTests();
6324
            return pixelPositionVal;
6325
        },
6326
        reliableMarginLeft: function() {
6327
            computeStyleTests();
6328
            return reliableMarginLeftVal;
6329
        },
6330
        scrollboxSize: function() {
6331
            computeStyleTests();
6332
            return scrollboxSizeVal;
6333
        }
6334
    } );
6335
} )();
6336
6337
6338
function curCSS( elem, name, computed ) {
6339
    var width, minWidth, maxWidth, ret,
6340
6341
        // Support: Firefox 51+
6342
        // Retrieving style before computed somehow
6343
        // fixes an issue with getting wrong values
6344
        // on detached elements
6345
        style = elem.style;
6346
6347
    computed = computed || getStyles( elem );
6348
6349
    // getPropertyValue is needed for:
6350
    //   .css('filter') (IE 9 only, #12537)
6351
    //   .css('--customProperty) (#3144)
6352
    if ( computed ) {
6353
        ret = computed.getPropertyValue( name ) || computed[ name ];
6354
6355
        if ( ret === "" && !isAttached( elem ) ) {
6356
            ret = jQuery.style( elem, name );
6357
        }
6358
6359
        // A tribute to the "awesome hack by Dean Edwards"
6360
        // Android Browser returns percentage for some values,
6361
        // but width seems to be reliably pixels.
6362
        // This is against the CSSOM draft spec:
6363
        // https://drafts.csswg.org/cssom/#resolved-values
6364
        if ( !support.pixelBoxStyles() && rnumnonpx.test( ret ) && rboxStyle.test( name ) ) {
6365
6366
            // Remember the original values
6367
            width = style.width;
6368
            minWidth = style.minWidth;
6369
            maxWidth = style.maxWidth;
6370
6371
            // Put in the new values to get a computed value out
6372
            style.minWidth = style.maxWidth = style.width = ret;
6373
            ret = computed.width;
6374
6375
            // Revert the changed values
6376
            style.width = width;
6377
            style.minWidth = minWidth;
6378
            style.maxWidth = maxWidth;
6379
        }
6380
    }
6381
6382
    return ret !== undefined ?
6383
6384
        // Support: IE <=9 - 11 only
6385
        // IE returns zIndex value as an integer.
6386
        ret + "" :
6387
        ret;
6388
}
6389
6390
6391
function addGetHookIf( conditionFn, hookFn ) {
6392
6393
    // Define the hook, we'll check on the first run if it's really needed.
6394
    return {
6395
        get: function() {
6396
            if ( conditionFn() ) {
6397
6398
                // Hook not needed (or it's not possible to use it due
6399
                // to missing dependency), remove it.
6400
                delete this.get;
6401
                return;
6402
            }
6403
6404
            // Hook needed; redefine it so that the support test is not executed again.
6405
            return ( this.get = hookFn ).apply( this, arguments );
6406
        }
6407
    };
6408
}
6409
6410
6411
var cssPrefixes = [ "Webkit", "Moz", "ms" ],
6412
    emptyStyle = document.createElement( "div" ).style,
6413
    vendorProps = {};
6414
6415
// Return a vendor-prefixed property or undefined
6416
function vendorPropName( name ) {
6417
6418
    // Check for vendor prefixed names
6419
    var capName = name[ 0 ].toUpperCase() + name.slice( 1 ),
6420
        i = cssPrefixes.length;
6421
6422
    while ( i-- ) {
6423
        name = cssPrefixes[ i ] + capName;
6424
        if ( name in emptyStyle ) {
6425
            return name;
6426
        }
6427
    }
6428
}
6429
6430
// Return a potentially-mapped jQuery.cssProps or vendor prefixed property
6431
function finalPropName( name ) {
6432
    var final = jQuery.cssProps[ name ] || vendorProps[ name ];
6433
6434
    if ( final ) {
6435
        return final;
6436
    }
6437
    if ( name in emptyStyle ) {
6438
        return name;
6439
    }
6440
    return vendorProps[ name ] = vendorPropName( name ) || name;
6441
}
6442
6443
6444
var
6445
6446
    // Swappable if display is none or starts with table
6447
    // except "table", "table-cell", or "table-caption"
6448
    // See here for display values: https://developer.mozilla.org/en-US/docs/CSS/display
6449
    rdisplayswap = /^(none|table(?!-c[ea]).+)/,
6450
    rcustomProp = /^--/,
6451
    cssShow = { position: "absolute", visibility: "hidden", display: "block" },
6452
    cssNormalTransform = {
6453
        letterSpacing: "0",
6454
        fontWeight: "400"
6455
    };
6456
6457
function setPositiveNumber( elem, value, subtract ) {
6458
6459
    // Any relative (+/-) values have already been
6460
    // normalized at this point
6461
    var matches = rcssNum.exec( value );
6462
    return matches ?
6463
6464
        // Guard against undefined "subtract", e.g., when used as in cssHooks
6465
        Math.max( 0, matches[ 2 ] - ( subtract || 0 ) ) + ( matches[ 3 ] || "px" ) :
6466
        value;
6467
}
6468
6469
function boxModelAdjustment( elem, dimension, box, isBorderBox, styles, computedVal ) {
6470
    var i = dimension === "width" ? 1 : 0,
6471
        extra = 0,
6472
        delta = 0;
6473
6474
    // Adjustment may not be necessary
6475
    if ( box === ( isBorderBox ? "border" : "content" ) ) {
6476
        return 0;
6477
    }
6478
6479
    for ( ; i < 4; i += 2 ) {
6480
6481
        // Both box models exclude margin
6482
        if ( box === "margin" ) {
6483
            delta += jQuery.css( elem, box + cssExpand[ i ], true, styles );
6484
        }
6485
6486
        // If we get here with a content-box, we're seeking "padding" or "border" or "margin"
6487
        if ( !isBorderBox ) {
6488
6489
            // Add padding
6490
            delta += jQuery.css( elem, "padding" + cssExpand[ i ], true, styles );
6491
6492
            // For "border" or "margin", add border
6493
            if ( box !== "padding" ) {
6494
                delta += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles );
6495
6496
            // But still keep track of it otherwise
6497
            } else {
6498
                extra += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles );
6499
            }
6500
6501
        // If we get here with a border-box (content + padding + border), we're seeking "content" or
6502
        // "padding" or "margin"
6503
        } else {
6504
6505
            // For "content", subtract padding
6506
            if ( box === "content" ) {
6507
                delta -= jQuery.css( elem, "padding" + cssExpand[ i ], true, styles );
6508
            }
6509
6510
            // For "content" or "padding", subtract border
6511
            if ( box !== "margin" ) {
6512
                delta -= jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles );
6513
            }
6514
        }
6515
    }
6516
6517
    // Account for positive content-box scroll gutter when requested by providing computedVal
6518
    if ( !isBorderBox && computedVal >= 0 ) {
6519
6520
        // offsetWidth/offsetHeight is a rounded sum of content, padding, scroll gutter, and border
6521
        // Assuming integer scroll gutter, subtract the rest and round down
6522
        delta += Math.max( 0, Math.ceil(
6523
            elem[ "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] -
6524
            computedVal -
6525
            delta -
6526
            extra -
6527
            0.5
6528
6529
        // If offsetWidth/offsetHeight is unknown, then we can't determine content-box scroll gutter
6530
        // Use an explicit zero to avoid NaN (gh-3964)
6531
        ) ) || 0;
6532
    }
6533
6534
    return delta;
6535
}
6536
6537
function getWidthOrHeight( elem, dimension, extra ) {
6538
6539
    // Start with computed style
6540
    var styles = getStyles( elem ),
6541
6542
        // To avoid forcing a reflow, only fetch boxSizing if we need it (gh-4322).
6543
        // Fake content-box until we know it's needed to know the true value.
6544
        boxSizingNeeded = !support.boxSizingReliable() || extra,
6545
        isBorderBox = boxSizingNeeded &&
6546
            jQuery.css( elem, "boxSizing", false, styles ) === "border-box",
6547
        valueIsBorderBox = isBorderBox,
6548
6549
        val = curCSS( elem, dimension, styles ),
6550
        offsetProp = "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 );
6551
6552
    // Support: Firefox <=54
6553
    // Return a confounding non-pixel value or feign ignorance, as appropriate.
6554
    if ( rnumnonpx.test( val ) ) {
6555
        if ( !extra ) {
6556
            return val;
6557
        }
6558
        val = "auto";
6559
    }
6560
6561
6562
    // Fall back to offsetWidth/offsetHeight when value is "auto"
6563
    // This happens for inline elements with no explicit setting (gh-3571)
6564
    // Support: Android <=4.1 - 4.3 only
6565
    // Also use offsetWidth/offsetHeight for misreported inline dimensions (gh-3602)
6566
    // Support: IE 9-11 only
6567
    // Also use offsetWidth/offsetHeight for when box sizing is unreliable
6568
    // We use getClientRects() to check for hidden/disconnected.
6569
    // In those cases, the computed value can be trusted to be border-box
6570
    if ( ( !support.boxSizingReliable() && isBorderBox ||
6571
        val === "auto" ||
6572
        !parseFloat( val ) && jQuery.css( elem, "display", false, styles ) === "inline" ) &&
6573
        elem.getClientRects().length ) {
6574
6575
        isBorderBox = jQuery.css( elem, "boxSizing", false, styles ) === "border-box";
6576
6577
        // Where available, offsetWidth/offsetHeight approximate border box dimensions.
6578
        // Where not available (e.g., SVG), assume unreliable box-sizing and interpret the
6579
        // retrieved value as a content box dimension.
6580
        valueIsBorderBox = offsetProp in elem;
6581
        if ( valueIsBorderBox ) {
6582
            val = elem[ offsetProp ];
6583
        }
6584
    }
6585
6586
    // Normalize "" and auto
6587
    val = parseFloat( val ) || 0;
6588
6589
    // Adjust for the element's box model
6590
    return ( val +
6591
        boxModelAdjustment(
6592
            elem,
6593
            dimension,
6594
            extra || ( isBorderBox ? "border" : "content" ),
6595
            valueIsBorderBox,
6596
            styles,
6597
6598
            // Provide the current computed size to request scroll gutter calculation (gh-3589)
6599
            val
6600
        )
6601
    ) + "px";
6602
}
6603
6604
jQuery.extend( {
6605
6606
    // Add in style property hooks for overriding the default
6607
    // behavior of getting and setting a style property
6608
    cssHooks: {
6609
        opacity: {
6610
            get: function( elem, computed ) {
6611
                if ( computed ) {
6612
6613
                    // We should always get a number back from opacity
6614
                    var ret = curCSS( elem, "opacity" );
6615
                    return ret === "" ? "1" : ret;
6616
                }
6617
            }
6618
        }
6619
    },
6620
6621
    // Don't automatically add "px" to these possibly-unitless properties
6622
    cssNumber: {
6623
        "animationIterationCount": true,
6624
        "columnCount": true,
6625
        "fillOpacity": true,
6626
        "flexGrow": true,
6627
        "flexShrink": true,
6628
        "fontWeight": true,
6629
        "gridArea": true,
6630
        "gridColumn": true,
6631
        "gridColumnEnd": true,
6632
        "gridColumnStart": true,
6633
        "gridRow": true,
6634
        "gridRowEnd": true,
6635
        "gridRowStart": true,
6636
        "lineHeight": true,
6637
        "opacity": true,
6638
        "order": true,
6639
        "orphans": true,
6640
        "widows": true,
6641
        "zIndex": true,
6642
        "zoom": true
6643
    },
6644
6645
    // Add in properties whose names you wish to fix before
6646
    // setting or getting the value
6647
    cssProps: {},
6648
6649
    // Get and set the style property on a DOM Node
6650
    style: function( elem, name, value, extra ) {
6651
6652
        // Don't set styles on text and comment nodes
6653
        if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) {
6654
            return;
6655
        }
6656
6657
        // Make sure that we're working with the right name
6658
        var ret, type, hooks,
6659
            origName = camelCase( name ),
6660
            isCustomProp = rcustomProp.test( name ),
6661
            style = elem.style;
6662
6663
        // Make sure that we're working with the right name. We don't
6664
        // want to query the value if it is a CSS custom property
6665
        // since they are user-defined.
6666
        if ( !isCustomProp ) {
6667
            name = finalPropName( origName );
6668
        }
6669
6670
        // Gets hook for the prefixed version, then unprefixed version
6671
        hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];
6672
6673
        // Check if we're setting a value
6674
        if ( value !== undefined ) {
6675
            type = typeof value;
6676
6677
            // Convert "+=" or "-=" to relative numbers (#7345)
6678
            if ( type === "string" && ( ret = rcssNum.exec( value ) ) && ret[ 1 ] ) {
6679
                value = adjustCSS( elem, name, ret );
6680
6681
                // Fixes bug #9237
6682
                type = "number";
6683
            }
6684
6685
            // Make sure that null and NaN values aren't set (#7116)
6686
            if ( value == null || value !== value ) {
6687
                return;
6688
            }
6689
6690
            // If a number was passed in, add the unit (except for certain CSS properties)
6691
            // The isCustomProp check can be removed in jQuery 4.0 when we only auto-append
6692
            // "px" to a few hardcoded values.
6693
            if ( type === "number" && !isCustomProp ) {
6694
                value += ret && ret[ 3 ] || ( jQuery.cssNumber[ origName ] ? "" : "px" );
6695
            }
6696
6697
            // background-* props affect original clone's values
6698
            if ( !support.clearCloneStyle && value === "" && name.indexOf( "background" ) === 0 ) {
6699
                style[ name ] = "inherit";
6700
            }
6701
6702
            // If a hook was provided, use that value, otherwise just set the specified value
6703
            if ( !hooks || !( "set" in hooks ) ||
6704
                ( value = hooks.set( elem, value, extra ) ) !== undefined ) {
6705
6706
                if ( isCustomProp ) {
6707
                    style.setProperty( name, value );
6708
                } else {
6709
                    style[ name ] = value;
6710
                }
6711
            }
6712
6713
        } else {
6714
6715
            // If a hook was provided get the non-computed value from there
6716
            if ( hooks && "get" in hooks &&
6717
                ( ret = hooks.get( elem, false, extra ) ) !== undefined ) {
6718
6719
                return ret;
6720
            }
6721
6722
            // Otherwise just get the value from the style object
6723
            return style[ name ];
6724
        }
6725
    },
6726
6727
    css: function( elem, name, extra, styles ) {
6728
        var val, num, hooks,
6729
            origName = camelCase( name ),
6730
            isCustomProp = rcustomProp.test( name );
6731
6732
        // Make sure that we're working with the right name. We don't
6733
        // want to modify the value if it is a CSS custom property
6734
        // since they are user-defined.
6735
        if ( !isCustomProp ) {
6736
            name = finalPropName( origName );
6737
        }
6738
6739
        // Try prefixed name followed by the unprefixed name
6740
        hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];
6741
6742
        // If a hook was provided get the computed value from there
6743
        if ( hooks && "get" in hooks ) {
6744
            val = hooks.get( elem, true, extra );
6745
        }
6746
6747
        // Otherwise, if a way to get the computed value exists, use that
6748
        if ( val === undefined ) {
6749
            val = curCSS( elem, name, styles );
6750
        }
6751
6752
        // Convert "normal" to computed value
6753
        if ( val === "normal" && name in cssNormalTransform ) {
6754
            val = cssNormalTransform[ name ];
6755
        }
6756
6757
        // Make numeric if forced or a qualifier was provided and val looks numeric
6758
        if ( extra === "" || extra ) {
6759
            num = parseFloat( val );
6760
            return extra === true || isFinite( num ) ? num || 0 : val;
6761
        }
6762
6763
        return val;
6764
    }
6765
} );
6766
6767
jQuery.each( [ "height", "width" ], function( i, dimension ) {
6768
    jQuery.cssHooks[ dimension ] = {
6769
        get: function( elem, computed, extra ) {
6770
            if ( computed ) {
6771
6772
                // Certain elements can have dimension info if we invisibly show them
6773
                // but it must have a current display style that would benefit
6774
                return rdisplayswap.test( jQuery.css( elem, "display" ) ) &&
6775
6776
                    // Support: Safari 8+
6777
                    // Table columns in Safari have non-zero offsetWidth & zero
6778
                    // getBoundingClientRect().width unless display is changed.
6779
                    // Support: IE <=11 only
6780
                    // Running getBoundingClientRect on a disconnected node
6781
                    // in IE throws an error.
6782
                    ( !elem.getClientRects().length || !elem.getBoundingClientRect().width ) ?
6783
                        swap( elem, cssShow, function() {
6784
                            return getWidthOrHeight( elem, dimension, extra );
6785
                        } ) :
6786
                        getWidthOrHeight( elem, dimension, extra );
6787
            }
6788
        },
6789
6790
        set: function( elem, value, extra ) {
6791
            var matches,
6792
                styles = getStyles( elem ),
6793
6794
                // Only read styles.position if the test has a chance to fail
6795
                // to avoid forcing a reflow.
6796
                scrollboxSizeBuggy = !support.scrollboxSize() &&
6797
                    styles.position === "absolute",
6798
6799
                // To avoid forcing a reflow, only fetch boxSizing if we need it (gh-3991)
6800
                boxSizingNeeded = scrollboxSizeBuggy || extra,
6801
                isBorderBox = boxSizingNeeded &&
6802
                    jQuery.css( elem, "boxSizing", false, styles ) === "border-box",
6803
                subtract = extra ?
6804
                    boxModelAdjustment(
6805
                        elem,
6806
                        dimension,
6807
                        extra,
6808
                        isBorderBox,
6809
                        styles
6810
                    ) :
6811
                    0;
6812
6813
            // Account for unreliable border-box dimensions by comparing offset* to computed and
6814
            // faking a content-box to get border and padding (gh-3699)
6815
            if ( isBorderBox && scrollboxSizeBuggy ) {
6816
                subtract -= Math.ceil(
6817
                    elem[ "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] -
6818
                    parseFloat( styles[ dimension ] ) -
6819
                    boxModelAdjustment( elem, dimension, "border", false, styles ) -
6820
                    0.5
6821
                );
6822
            }
6823
6824
            // Convert to pixels if value adjustment is needed
6825
            if ( subtract && ( matches = rcssNum.exec( value ) ) &&
6826
                ( matches[ 3 ] || "px" ) !== "px" ) {
6827
6828
                elem.style[ dimension ] = value;
6829
                value = jQuery.css( elem, dimension );
6830
            }
6831
6832
            return setPositiveNumber( elem, value, subtract );
6833
        }
6834
    };
6835
} );
6836
6837
jQuery.cssHooks.marginLeft = addGetHookIf( support.reliableMarginLeft,
6838
    function( elem, computed ) {
6839
        if ( computed ) {
6840
            return ( parseFloat( curCSS( elem, "marginLeft" ) ) ||
6841
                elem.getBoundingClientRect().left -
6842
                    swap( elem, { marginLeft: 0 }, function() {
6843
                        return elem.getBoundingClientRect().left;
6844
                    } )
6845
                ) + "px";
6846
        }
6847
    }
6848
);
6849
6850
// These hooks are used by animate to expand properties
6851
jQuery.each( {
6852
    margin: "",
6853
    padding: "",
6854
    border: "Width"
6855
}, function( prefix, suffix ) {
6856
    jQuery.cssHooks[ prefix + suffix ] = {
6857
        expand: function( value ) {
6858
            var i = 0,
6859
                expanded = {},
6860
6861
                // Assumes a single number if not a string
6862
                parts = typeof value === "string" ? value.split( " " ) : [ value ];
6863
6864
            for ( ; i < 4; i++ ) {
6865
                expanded[ prefix + cssExpand[ i ] + suffix ] =
6866
                    parts[ i ] || parts[ i - 2 ] || parts[ 0 ];
6867
            }
6868
6869
            return expanded;
6870
        }
6871
    };
6872
6873
    if ( prefix !== "margin" ) {
6874
        jQuery.cssHooks[ prefix + suffix ].set = setPositiveNumber;
6875
    }
6876
} );
6877
6878
jQuery.fn.extend( {
6879
    css: function( name, value ) {
6880
        return access( this, function( elem, name, value ) {
6881
            var styles, len,
6882
                map = {},
6883
                i = 0;
6884
6885
            if ( Array.isArray( name ) ) {
6886
                styles = getStyles( elem );
6887
                len = name.length;
6888
6889
                for ( ; i < len; i++ ) {
6890
                    map[ name[ i ] ] = jQuery.css( elem, name[ i ], false, styles );
6891
                }
6892
6893
                return map;
6894
            }
6895
6896
            return value !== undefined ?
6897
                jQuery.style( elem, name, value ) :
6898
                jQuery.css( elem, name );
6899
        }, name, value, arguments.length > 1 );
6900
    }
6901
} );
6902
6903
6904
function Tween( elem, options, prop, end, easing ) {
6905
    return new Tween.prototype.init( elem, options, prop, end, easing );
6906
}
6907
jQuery.Tween = Tween;
6908
6909
Tween.prototype = {
6910
    constructor: Tween,
6911
    init: function( elem, options, prop, end, easing, unit ) {
6912
        this.elem = elem;
6913
        this.prop = prop;
6914
        this.easing = easing || jQuery.easing._default;
6915
        this.options = options;
6916
        this.start = this.now = this.cur();
6917
        this.end = end;
6918
        this.unit = unit || ( jQuery.cssNumber[ prop ] ? "" : "px" );
6919
    },
6920
    cur: function() {
6921
        var hooks = Tween.propHooks[ this.prop ];
6922
6923
        return hooks && hooks.get ?
6924
            hooks.get( this ) :
6925
            Tween.propHooks._default.get( this );
6926
    },
6927
    run: function( percent ) {
6928
        var eased,
6929
            hooks = Tween.propHooks[ this.prop ];
6930
6931
        if ( this.options.duration ) {
6932
            this.pos = eased = jQuery.easing[ this.easing ](
6933
                percent, this.options.duration * percent, 0, 1, this.options.duration
6934
            );
6935
        } else {
6936
            this.pos = eased = percent;
6937
        }
6938
        this.now = ( this.end - this.start ) * eased + this.start;
6939
6940
        if ( this.options.step ) {
6941
            this.options.step.call( this.elem, this.now, this );
6942
        }
6943
6944
        if ( hooks && hooks.set ) {
6945
            hooks.set( this );
6946
        } else {
6947
            Tween.propHooks._default.set( this );
6948
        }
6949
        return this;
6950
    }
6951
};
6952
6953
Tween.prototype.init.prototype = Tween.prototype;
6954
6955
Tween.propHooks = {
6956
    _default: {
6957
        get: function( tween ) {
6958
            var result;
6959
6960
            // Use a property on the element directly when it is not a DOM element,
6961
            // or when there is no matching style property that exists.
6962
            if ( tween.elem.nodeType !== 1 ||
6963
                tween.elem[ tween.prop ] != null && tween.elem.style[ tween.prop ] == null ) {
6964
                return tween.elem[ tween.prop ];
6965
            }
6966
6967
            // Passing an empty string as a 3rd parameter to .css will automatically
6968
            // attempt a parseFloat and fallback to a string if the parse fails.
6969
            // Simple values such as "10px" are parsed to Float;
6970
            // complex values such as "rotate(1rad)" are returned as-is.
6971
            result = jQuery.css( tween.elem, tween.prop, "" );
6972
6973
            // Empty strings, null, undefined and "auto" are converted to 0.
6974
            return !result || result === "auto" ? 0 : result;
6975
        },
6976
        set: function( tween ) {
6977
6978
            // Use step hook for back compat.
6979
            // Use cssHook if its there.
6980
            // Use .style if available and use plain properties where available.
6981
            if ( jQuery.fx.step[ tween.prop ] ) {
6982
                jQuery.fx.step[ tween.prop ]( tween );
6983
            } else if ( tween.elem.nodeType === 1 && (
6984
                    jQuery.cssHooks[ tween.prop ] ||
6985
                    tween.elem.style[ finalPropName( tween.prop ) ] != null ) ) {
6986
                jQuery.style( tween.elem, tween.prop, tween.now + tween.unit );
6987
            } else {
6988
                tween.elem[ tween.prop ] = tween.now;
6989
            }
6990
        }
6991
    }
6992
};
6993
6994
// Support: IE <=9 only
6995
// Panic based approach to setting things on disconnected nodes
6996
Tween.propHooks.scrollTop = Tween.propHooks.scrollLeft = {
6997
    set: function( tween ) {
6998
        if ( tween.elem.nodeType && tween.elem.parentNode ) {
6999
            tween.elem[ tween.prop ] = tween.now;
7000
        }
7001
    }
7002
};
7003
7004
jQuery.easing = {
7005
    linear: function( p ) {
7006
        return p;
7007
    },
7008
    swing: function( p ) {
7009
        return 0.5 - Math.cos( p * Math.PI ) / 2;
7010
    },
7011
    _default: "swing"
7012
};
7013
7014
jQuery.fx = Tween.prototype.init;
7015
7016
// Back compat <1.8 extension point
7017
jQuery.fx.step = {};
7018
7019
7020
7021
7022
var
7023
    fxNow, inProgress,
7024
    rfxtypes = /^(?:toggle|show|hide)$/,
7025
    rrun = /queueHooks$/;
7026
7027
function schedule() {
7028
    if ( inProgress ) {
7029
        if ( document.hidden === false && window.requestAnimationFrame ) {
7030
            window.requestAnimationFrame( schedule );
7031
        } else {
7032
            window.setTimeout( schedule, jQuery.fx.interval );
7033
        }
7034
7035
        jQuery.fx.tick();
7036
    }
7037
}
7038
7039
// Animations created synchronously will run synchronously
7040
function createFxNow() {
7041
    window.setTimeout( function() {
7042
        fxNow = undefined;
7043
    } );
7044
    return ( fxNow = Date.now() );
7045
}
7046
7047
// Generate parameters to create a standard animation
7048
function genFx( type, includeWidth ) {
7049
    var which,
7050
        i = 0,
7051
        attrs = { height: type };
7052
7053
    // If we include width, step value is 1 to do all cssExpand values,
7054
    // otherwise step value is 2 to skip over Left and Right
7055
    includeWidth = includeWidth ? 1 : 0;
7056
    for ( ; i < 4; i += 2 - includeWidth ) {
7057
        which = cssExpand[ i ];
7058
        attrs[ "margin" + which ] = attrs[ "padding" + which ] = type;
7059
    }
7060
7061
    if ( includeWidth ) {
7062
        attrs.opacity = attrs.width = type;
7063
    }
7064
7065
    return attrs;
7066
}
7067
7068
function createTween( value, prop, animation ) {
7069
    var tween,
7070
        collection = ( Animation.tweeners[ prop ] || [] ).concat( Animation.tweeners[ "*" ] ),
7071
        index = 0,
7072
        length = collection.length;
7073
    for ( ; index < length; index++ ) {
7074
        if ( ( tween = collection[ index ].call( animation, prop, value ) ) ) {
7075
7076
            // We're done with this property
7077
            return tween;
7078
        }
7079
    }
7080
}
7081
7082
function defaultPrefilter( elem, props, opts ) {
7083
    var prop, value, toggle, hooks, oldfire, propTween, restoreDisplay, display,
7084
        isBox = "width" in props || "height" in props,
7085
        anim = this,
7086
        orig = {},
7087
        style = elem.style,
7088
        hidden = elem.nodeType && isHiddenWithinTree( elem ),
7089
        dataShow = dataPriv.get( elem, "fxshow" );
7090
7091
    // Queue-skipping animations hijack the fx hooks
7092
    if ( !opts.queue ) {
7093
        hooks = jQuery._queueHooks( elem, "fx" );
7094
        if ( hooks.unqueued == null ) {
7095
            hooks.unqueued = 0;
7096
            oldfire = hooks.empty.fire;
7097
            hooks.empty.fire = function() {
7098
                if ( !hooks.unqueued ) {
7099
                    oldfire();
7100
                }
7101
            };
7102
        }
7103
        hooks.unqueued++;
7104
7105
        anim.always( function() {
7106
7107
            // Ensure the complete handler is called before this completes
7108
            anim.always( function() {
7109
                hooks.unqueued--;
7110
                if ( !jQuery.queue( elem, "fx" ).length ) {
7111
                    hooks.empty.fire();
7112
                }
7113
            } );
7114
        } );
7115
    }
7116
7117
    // Detect show/hide animations
7118
    for ( prop in props ) {
7119
        value = props[ prop ];
7120
        if ( rfxtypes.test( value ) ) {
7121
            delete props[ prop ];
7122
            toggle = toggle || value === "toggle";
7123
            if ( value === ( hidden ? "hide" : "show" ) ) {
7124
7125
                // Pretend to be hidden if this is a "show" and
7126
                // there is still data from a stopped show/hide
7127
                if ( value === "show" && dataShow && dataShow[ prop ] !== undefined ) {
7128
                    hidden = true;
7129
7130
                // Ignore all other no-op show/hide data
7131
                } else {
7132
                    continue;
7133
                }
7134
            }
7135
            orig[ prop ] = dataShow && dataShow[ prop ] || jQuery.style( elem, prop );
7136
        }
7137
    }
7138
7139
    // Bail out if this is a no-op like .hide().hide()
7140
    propTween = !jQuery.isEmptyObject( props );
7141
    if ( !propTween && jQuery.isEmptyObject( orig ) ) {
7142
        return;
7143
    }
7144
7145
    // Restrict "overflow" and "display" styles during box animations
7146
    if ( isBox && elem.nodeType === 1 ) {
7147
7148
        // Support: IE <=9 - 11, Edge 12 - 15
7149
        // Record all 3 overflow attributes because IE does not infer the shorthand
7150
        // from identically-valued overflowX and overflowY and Edge just mirrors
7151
        // the overflowX value there.
7152
        opts.overflow = [ style.overflow, style.overflowX, style.overflowY ];
7153
7154
        // Identify a display type, preferring old show/hide data over the CSS cascade
7155
        restoreDisplay = dataShow && dataShow.display;
7156
        if ( restoreDisplay == null ) {
7157
            restoreDisplay = dataPriv.get( elem, "display" );
7158
        }
7159
        display = jQuery.css( elem, "display" );
7160
        if ( display === "none" ) {
7161
            if ( restoreDisplay ) {
7162
                display = restoreDisplay;
7163
            } else {
7164
7165
                // Get nonempty value(s) by temporarily forcing visibility
7166
                showHide( [ elem ], true );
7167
                restoreDisplay = elem.style.display || restoreDisplay;
7168
                display = jQuery.css( elem, "display" );
7169
                showHide( [ elem ] );
7170
            }
7171
        }
7172
7173
        // Animate inline elements as inline-block
7174
        if ( display === "inline" || display === "inline-block" && restoreDisplay != null ) {
7175
            if ( jQuery.css( elem, "float" ) === "none" ) {
7176
7177
                // Restore the original display value at the end of pure show/hide animations
7178
                if ( !propTween ) {
7179
                    anim.done( function() {
7180
                        style.display = restoreDisplay;
7181
                    } );
7182
                    if ( restoreDisplay == null ) {
7183
                        display = style.display;
7184
                        restoreDisplay = display === "none" ? "" : display;
7185
                    }
7186
                }
7187
                style.display = "inline-block";
7188
            }
7189
        }
7190
    }
7191
7192
    if ( opts.overflow ) {
7193
        style.overflow = "hidden";
7194
        anim.always( function() {
7195
            style.overflow = opts.overflow[ 0 ];
7196
            style.overflowX = opts.overflow[ 1 ];
7197
            style.overflowY = opts.overflow[ 2 ];
7198
        } );
7199
    }
7200
7201
    // Implement show/hide animations
7202
    propTween = false;
7203
    for ( prop in orig ) {
7204
7205
        // General show/hide setup for this element animation
7206
        if ( !propTween ) {
7207
            if ( dataShow ) {
7208
                if ( "hidden" in dataShow ) {
7209
                    hidden = dataShow.hidden;
7210
                }
7211
            } else {
7212
                dataShow = dataPriv.access( elem, "fxshow", { display: restoreDisplay } );
7213
            }
7214
7215
            // Store hidden/visible for toggle so `.stop().toggle()` "reverses"
7216
            if ( toggle ) {
7217
                dataShow.hidden = !hidden;
7218
            }
7219
7220
            // Show elements before animating them
7221
            if ( hidden ) {
7222
                showHide( [ elem ], true );
7223
            }
7224
7225
            /* eslint-disable no-loop-func */
7226
7227
            anim.done( function() {
7228
7229
            /* eslint-enable no-loop-func */
7230
7231
                // The final step of a "hide" animation is actually hiding the element
7232
                if ( !hidden ) {
7233
                    showHide( [ elem ] );
7234
                }
7235
                dataPriv.remove( elem, "fxshow" );
7236
                for ( prop in orig ) {
7237
                    jQuery.style( elem, prop, orig[ prop ] );
7238
                }
7239
            } );
7240
        }
7241
7242
        // Per-property setup
7243
        propTween = createTween( hidden ? dataShow[ prop ] : 0, prop, anim );
7244
        if ( !( prop in dataShow ) ) {
7245
            dataShow[ prop ] = propTween.start;
7246
            if ( hidden ) {
7247
                propTween.end = propTween.start;
7248
                propTween.start = 0;
7249
            }
7250
        }
7251
    }
7252
}
7253
7254
function propFilter( props, specialEasing ) {
7255
    var index, name, easing, value, hooks;
7256
7257
    // camelCase, specialEasing and expand cssHook pass
7258
    for ( index in props ) {
7259
        name = camelCase( index );
7260
        easing = specialEasing[ name ];
7261
        value = props[ index ];
7262
        if ( Array.isArray( value ) ) {
7263
            easing = value[ 1 ];
7264
            value = props[ index ] = value[ 0 ];
7265
        }
7266
7267
        if ( index !== name ) {
7268
            props[ name ] = value;
7269
            delete props[ index ];
7270
        }
7271
7272
        hooks = jQuery.cssHooks[ name ];
7273
        if ( hooks && "expand" in hooks ) {
7274
            value = hooks.expand( value );
7275
            delete props[ name ];
7276
7277
            // Not quite $.extend, this won't overwrite existing keys.
7278
            // Reusing 'index' because we have the correct "name"
7279
            for ( index in value ) {
7280
                if ( !( index in props ) ) {
7281
                    props[ index ] = value[ index ];
7282
                    specialEasing[ index ] = easing;
7283
                }
7284
            }
7285
        } else {
7286
            specialEasing[ name ] = easing;
7287
        }
7288
    }
7289
}
7290
7291
function Animation( elem, properties, options ) {
7292
    var result,
7293
        stopped,
7294
        index = 0,
7295
        length = Animation.prefilters.length,
7296
        deferred = jQuery.Deferred().always( function() {
7297
7298
            // Don't match elem in the :animated selector
7299
            delete tick.elem;
7300
        } ),
7301
        tick = function() {
7302
            if ( stopped ) {
7303
                return false;
7304
            }
7305
            var currentTime = fxNow || createFxNow(),
7306
                remaining = Math.max( 0, animation.startTime + animation.duration - currentTime ),
7307
7308
                // Support: Android 2.3 only
7309
                // Archaic crash bug won't allow us to use `1 - ( 0.5 || 0 )` (#12497)
7310
                temp = remaining / animation.duration || 0,
7311
                percent = 1 - temp,
7312
                index = 0,
7313
                length = animation.tweens.length;
7314
7315
            for ( ; index < length; index++ ) {
7316
                animation.tweens[ index ].run( percent );
7317
            }
7318
7319
            deferred.notifyWith( elem, [ animation, percent, remaining ] );
7320
7321
            // If there's more to do, yield
7322
            if ( percent < 1 && length ) {
7323
                return remaining;
7324
            }
7325
7326
            // If this was an empty animation, synthesize a final progress notification
7327
            if ( !length ) {
7328
                deferred.notifyWith( elem, [ animation, 1, 0 ] );
7329
            }
7330
7331
            // Resolve the animation and report its conclusion
7332
            deferred.resolveWith( elem, [ animation ] );
7333
            return false;
7334
        },
7335
        animation = deferred.promise( {
7336
            elem: elem,
7337
            props: jQuery.extend( {}, properties ),
7338
            opts: jQuery.extend( true, {
7339
                specialEasing: {},
7340
                easing: jQuery.easing._default
7341
            }, options ),
7342
            originalProperties: properties,
7343
            originalOptions: options,
7344
            startTime: fxNow || createFxNow(),
7345
            duration: options.duration,
7346
            tweens: [],
7347
            createTween: function( prop, end ) {
7348
                var tween = jQuery.Tween( elem, animation.opts, prop, end,
7349
                        animation.opts.specialEasing[ prop ] || animation.opts.easing );
7350
                animation.tweens.push( tween );
7351
                return tween;
7352
            },
7353
            stop: function( gotoEnd ) {
7354
                var index = 0,
7355
7356
                    // If we are going to the end, we want to run all the tweens
7357
                    // otherwise we skip this part
7358
                    length = gotoEnd ? animation.tweens.length : 0;
7359
                if ( stopped ) {
7360
                    return this;
7361
                }
7362
                stopped = true;
7363
                for ( ; index < length; index++ ) {
7364
                    animation.tweens[ index ].run( 1 );
7365
                }
7366
7367
                // Resolve when we played the last frame; otherwise, reject
7368
                if ( gotoEnd ) {
7369
                    deferred.notifyWith( elem, [ animation, 1, 0 ] );
7370
                    deferred.resolveWith( elem, [ animation, gotoEnd ] );
7371
                } else {
7372
                    deferred.rejectWith( elem, [ animation, gotoEnd ] );
7373
                }
7374
                return this;
7375
            }
7376
        } ),
7377
        props = animation.props;
7378
7379
    propFilter( props, animation.opts.specialEasing );
7380
7381
    for ( ; index < length; index++ ) {
7382
        result = Animation.prefilters[ index ].call( animation, elem, props, animation.opts );
7383
        if ( result ) {
7384
            if ( isFunction( result.stop ) ) {
7385
                jQuery._queueHooks( animation.elem, animation.opts.queue ).stop =
7386
                    result.stop.bind( result );
7387
            }
7388
            return result;
7389
        }
7390
    }
7391
7392
    jQuery.map( props, createTween, animation );
7393
7394
    if ( isFunction( animation.opts.start ) ) {
7395
        animation.opts.start.call( elem, animation );
7396
    }
7397
7398
    // Attach callbacks from options
7399
    animation
7400
        .progress( animation.opts.progress )
7401
        .done( animation.opts.done, animation.opts.complete )
7402
        .fail( animation.opts.fail )
7403
        .always( animation.opts.always );
7404
7405
    jQuery.fx.timer(
7406
        jQuery.extend( tick, {
7407
            elem: elem,
7408
            anim: animation,
7409
            queue: animation.opts.queue
7410
        } )
7411
    );
7412
7413
    return animation;
7414
}
7415
7416
jQuery.Animation = jQuery.extend( Animation, {
7417
7418
    tweeners: {
7419
        "*": [ function( prop, value ) {
7420
            var tween = this.createTween( prop, value );
7421
            adjustCSS( tween.elem, prop, rcssNum.exec( value ), tween );
7422
            return tween;
7423
        } ]
7424
    },
7425
7426
    tweener: function( props, callback ) {
7427
        if ( isFunction( props ) ) {
7428
            callback = props;
7429
            props = [ "*" ];
7430
        } else {
7431
            props = props.match( rnothtmlwhite );
7432
        }
7433
7434
        var prop,
7435
            index = 0,
7436
            length = props.length;
7437
7438
        for ( ; index < length; index++ ) {
7439
            prop = props[ index ];
7440
            Animation.tweeners[ prop ] = Animation.tweeners[ prop ] || [];
7441
            Animation.tweeners[ prop ].unshift( callback );
7442
        }
7443
    },
7444
7445
    prefilters: [ defaultPrefilter ],
7446
7447
    prefilter: function( callback, prepend ) {
7448
        if ( prepend ) {
7449
            Animation.prefilters.unshift( callback );
7450
        } else {
7451
            Animation.prefilters.push( callback );
7452
        }
7453
    }
7454
} );
7455
7456
jQuery.speed = function( speed, easing, fn ) {
7457
    var opt = speed && typeof speed === "object" ? jQuery.extend( {}, speed ) : {
7458
        complete: fn || !fn && easing ||
7459
            isFunction( speed ) && speed,
7460
        duration: speed,
7461
        easing: fn && easing || easing && !isFunction( easing ) && easing
7462
    };
7463
7464
    // Go to the end state if fx are off
7465
    if ( jQuery.fx.off ) {
7466
        opt.duration = 0;
7467
7468
    } else {
7469
        if ( typeof opt.duration !== "number" ) {
7470
            if ( opt.duration in jQuery.fx.speeds ) {
7471
                opt.duration = jQuery.fx.speeds[ opt.duration ];
7472
7473
            } else {
7474
                opt.duration = jQuery.fx.speeds._default;
7475
            }
7476
        }
7477
    }
7478
7479
    // Normalize opt.queue - true/undefined/null -> "fx"
7480
    if ( opt.queue == null || opt.queue === true ) {
7481
        opt.queue = "fx";
7482
    }
7483
7484
    // Queueing
7485
    opt.old = opt.complete;
7486
7487
    opt.complete = function() {
7488
        if ( isFunction( opt.old ) ) {
7489
            opt.old.call( this );
7490
        }
7491
7492
        if ( opt.queue ) {
7493
            jQuery.dequeue( this, opt.queue );
7494
        }
7495
    };
7496
7497
    return opt;
7498
};
7499
7500
jQuery.fn.extend( {
7501
    fadeTo: function( speed, to, easing, callback ) {
7502
7503
        // Show any hidden elements after setting opacity to 0
7504
        return this.filter( isHiddenWithinTree ).css( "opacity", 0 ).show()
7505
7506
            // Animate to the value specified
7507
            .end().animate( { opacity: to }, speed, easing, callback );
7508
    },
7509
    animate: function( prop, speed, easing, callback ) {
7510
        var empty = jQuery.isEmptyObject( prop ),
7511
            optall = jQuery.speed( speed, easing, callback ),
7512
            doAnimation = function() {
7513
7514
                // Operate on a copy of prop so per-property easing won't be lost
7515
                var anim = Animation( this, jQuery.extend( {}, prop ), optall );
7516
7517
                // Empty animations, or finishing resolves immediately
7518
                if ( empty || dataPriv.get( this, "finish" ) ) {
7519
                    anim.stop( true );
7520
                }
7521
            };
7522
            doAnimation.finish = doAnimation;
7523
7524
        return empty || optall.queue === false ?
7525
            this.each( doAnimation ) :
7526
            this.queue( optall.queue, doAnimation );
7527
    },
7528
    stop: function( type, clearQueue, gotoEnd ) {
7529
        var stopQueue = function( hooks ) {
7530
            var stop = hooks.stop;
7531
            delete hooks.stop;
7532
            stop( gotoEnd );
7533
        };
7534
7535
        if ( typeof type !== "string" ) {
7536
            gotoEnd = clearQueue;
7537
            clearQueue = type;
7538
            type = undefined;
7539
        }
7540
        if ( clearQueue && type !== false ) {
7541
            this.queue( type || "fx", [] );
7542
        }
7543
7544
        return this.each( function() {
7545
            var dequeue = true,
7546
                index = type != null && type + "queueHooks",
7547
                timers = jQuery.timers,
7548
                data = dataPriv.get( this );
7549
7550
            if ( index ) {
7551
                if ( data[ index ] && data[ index ].stop ) {
7552
                    stopQueue( data[ index ] );
7553
                }
7554
            } else {
7555
                for ( index in data ) {
7556
                    if ( data[ index ] && data[ index ].stop && rrun.test( index ) ) {
7557
                        stopQueue( data[ index ] );
7558
                    }
7559
                }
7560
            }
7561
7562
            for ( index = timers.length; index--; ) {
7563
                if ( timers[ index ].elem === this &&
7564
                    ( type == null || timers[ index ].queue === type ) ) {
7565
7566
                    timers[ index ].anim.stop( gotoEnd );
7567
                    dequeue = false;
7568
                    timers.splice( index, 1 );
7569
                }
7570
            }
7571
7572
            // Start the next in the queue if the last step wasn't forced.
7573
            // Timers currently will call their complete callbacks, which
7574
            // will dequeue but only if they were gotoEnd.
7575
            if ( dequeue || !gotoEnd ) {
7576
                jQuery.dequeue( this, type );
7577
            }
7578
        } );
7579
    },
7580
    finish: function( type ) {
7581
        if ( type !== false ) {
7582
            type = type || "fx";
7583
        }
7584
        return this.each( function() {
7585
            var index,
7586
                data = dataPriv.get( this ),
7587
                queue = data[ type + "queue" ],
7588
                hooks = data[ type + "queueHooks" ],
7589
                timers = jQuery.timers,
7590
                length = queue ? queue.length : 0;
7591
7592
            // Enable finishing flag on private data
7593
            data.finish = true;
7594
7595
            // Empty the queue first
7596
            jQuery.queue( this, type, [] );
7597
7598
            if ( hooks && hooks.stop ) {
7599
                hooks.stop.call( this, true );
7600
            }
7601
7602
            // Look for any active animations, and finish them
7603
            for ( index = timers.length; index--; ) {
7604
                if ( timers[ index ].elem === this && timers[ index ].queue === type ) {
7605
                    timers[ index ].anim.stop( true );
7606
                    timers.splice( index, 1 );
7607
                }
7608
            }
7609
7610
            // Look for any animations in the old queue and finish them
7611
            for ( index = 0; index < length; index++ ) {
7612
                if ( queue[ index ] && queue[ index ].finish ) {
7613
                    queue[ index ].finish.call( this );
7614
                }
7615
            }
7616
7617
            // Turn off finishing flag
7618
            delete data.finish;
7619
        } );
7620
    }
7621
} );
7622
7623
jQuery.each( [ "toggle", "show", "hide" ], function( i, name ) {
7624
    var cssFn = jQuery.fn[ name ];
7625
    jQuery.fn[ name ] = function( speed, easing, callback ) {
7626
        return speed == null || typeof speed === "boolean" ?
7627
            cssFn.apply( this, arguments ) :
7628
            this.animate( genFx( name, true ), speed, easing, callback );
7629
    };
7630
} );
7631
7632
// Generate shortcuts for custom animations
7633
jQuery.each( {
7634
    slideDown: genFx( "show" ),
7635
    slideUp: genFx( "hide" ),
7636
    slideToggle: genFx( "toggle" ),
7637
    fadeIn: { opacity: "show" },
7638
    fadeOut: { opacity: "hide" },
7639
    fadeToggle: { opacity: "toggle" }
7640
}, function( name, props ) {
7641
    jQuery.fn[ name ] = function( speed, easing, callback ) {
7642
        return this.animate( props, speed, easing, callback );
7643
    };
7644
} );
7645
7646
jQuery.timers = [];
7647
jQuery.fx.tick = function() {
7648
    var timer,
7649
        i = 0,
7650
        timers = jQuery.timers;
7651
7652
    fxNow = Date.now();
7653
7654
    for ( ; i < timers.length; i++ ) {
7655
        timer = timers[ i ];
7656
7657
        // Run the timer and safely remove it when done (allowing for external removal)
7658
        if ( !timer() && timers[ i ] === timer ) {
7659
            timers.splice( i--, 1 );
7660
        }
7661
    }
7662
7663
    if ( !timers.length ) {
7664
        jQuery.fx.stop();
7665
    }
7666
    fxNow = undefined;
7667
};
7668
7669
jQuery.fx.timer = function( timer ) {
7670
    jQuery.timers.push( timer );
7671
    jQuery.fx.start();
7672
};
7673
7674
jQuery.fx.interval = 13;
7675
jQuery.fx.start = function() {
7676
    if ( inProgress ) {
7677
        return;
7678
    }
7679
7680
    inProgress = true;
7681
    schedule();
7682
};
7683
7684
jQuery.fx.stop = function() {
7685
    inProgress = null;
7686
};
7687
7688
jQuery.fx.speeds = {
7689
    slow: 600,
7690
    fast: 200,
7691
7692
    // Default speed
7693
    _default: 400
7694
};
7695
7696
7697
// Based off of the plugin by Clint Helfers, with permission.
7698
// https://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/
7699
jQuery.fn.delay = function( time, type ) {
7700
    time = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time;
7701
    type = type || "fx";
7702
7703
    return this.queue( type, function( next, hooks ) {
7704
        var timeout = window.setTimeout( next, time );
7705
        hooks.stop = function() {
7706
            window.clearTimeout( timeout );
7707
        };
7708
    } );
7709
};
7710
7711
7712
( function() {
7713
    var input = document.createElement( "input" ),
7714
        select = document.createElement( "select" ),
7715
        opt = select.appendChild( document.createElement( "option" ) );
7716
7717
    input.type = "checkbox";
7718
7719
    // Support: Android <=4.3 only
7720
    // Default value for a checkbox should be "on"
7721
    support.checkOn = input.value !== "";
7722
7723
    // Support: IE <=11 only
7724
    // Must access selectedIndex to make default options select
7725
    support.optSelected = opt.selected;
7726
7727
    // Support: IE <=11 only
7728
    // An input loses its value after becoming a radio
7729
    input = document.createElement( "input" );
7730
    input.value = "t";
7731
    input.type = "radio";
7732
    support.radioValue = input.value === "t";
7733
} )();
7734
7735
7736
var boolHook,
7737
    attrHandle = jQuery.expr.attrHandle;
7738
7739
jQuery.fn.extend( {
7740
    attr: function( name, value ) {
7741
        return access( this, jQuery.attr, name, value, arguments.length > 1 );
7742
    },
7743
7744
    removeAttr: function( name ) {
7745
        return this.each( function() {
7746
            jQuery.removeAttr( this, name );
7747
        } );
7748
    }
7749
} );
7750
7751
jQuery.extend( {
7752
    attr: function( elem, name, value ) {
7753
        var ret, hooks,
7754
            nType = elem.nodeType;
7755
7756
        // Don't get/set attributes on text, comment and attribute nodes
7757
        if ( nType === 3 || nType === 8 || nType === 2 ) {
7758
            return;
7759
        }
7760
7761
        // Fallback to prop when attributes are not supported
7762
        if ( typeof elem.getAttribute === "undefined" ) {
7763
            return jQuery.prop( elem, name, value );
7764
        }
7765
7766
        // Attribute hooks are determined by the lowercase version
7767
        // Grab necessary hook if one is defined
7768
        if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) {
7769
            hooks = jQuery.attrHooks[ name.toLowerCase() ] ||
7770
                ( jQuery.expr.match.bool.test( name ) ? boolHook : undefined );
7771
        }
7772
7773
        if ( value !== undefined ) {
7774
            if ( value === null ) {
7775
                jQuery.removeAttr( elem, name );
7776
                return;
7777
            }
7778
7779
            if ( hooks && "set" in hooks &&
7780
                ( ret = hooks.set( elem, value, name ) ) !== undefined ) {
7781
                return ret;
7782
            }
7783
7784
            elem.setAttribute( name, value + "" );
7785
            return value;
7786
        }
7787
7788
        if ( hooks && "get" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) {
7789
            return ret;
7790
        }
7791
7792
        ret = jQuery.find.attr( elem, name );
7793
7794
        // Non-existent attributes return null, we normalize to undefined
7795
        return ret == null ? undefined : ret;
7796
    },
7797
7798
    attrHooks: {
7799
        type: {
7800
            set: function( elem, value ) {
7801
                if ( !support.radioValue && value === "radio" &&
7802
                    nodeName( elem, "input" ) ) {
7803
                    var val = elem.value;
7804
                    elem.setAttribute( "type", value );
7805
                    if ( val ) {
7806
                        elem.value = val;
7807
                    }
7808
                    return value;
7809
                }
7810
            }
7811
        }
7812
    },
7813
7814
    removeAttr: function( elem, value ) {
7815
        var name,
7816
            i = 0,
7817
7818
            // Attribute names can contain non-HTML whitespace characters
7819
            // https://html.spec.whatwg.org/multipage/syntax.html#attributes-2
7820
            attrNames = value && value.match( rnothtmlwhite );
7821
7822
        if ( attrNames && elem.nodeType === 1 ) {
7823
            while ( ( name = attrNames[ i++ ] ) ) {
7824
                elem.removeAttribute( name );
7825
            }
7826
        }
7827
    }
7828
} );
7829
7830
// Hooks for boolean attributes
7831
boolHook = {
7832
    set: function( elem, value, name ) {
7833
        if ( value === false ) {
7834
7835
            // Remove boolean attributes when set to false
7836
            jQuery.removeAttr( elem, name );
7837
        } else {
7838
            elem.setAttribute( name, name );
7839
        }
7840
        return name;
7841
    }
7842
};
7843
7844
jQuery.each( jQuery.expr.match.bool.source.match( /\w+/g ), function( i, name ) {
7845
    var getter = attrHandle[ name ] || jQuery.find.attr;
7846
7847
    attrHandle[ name ] = function( elem, name, isXML ) {
7848
        var ret, handle,
7849
            lowercaseName = name.toLowerCase();
7850
7851
        if ( !isXML ) {
7852
7853
            // Avoid an infinite loop by temporarily removing this function from the getter
7854
            handle = attrHandle[ lowercaseName ];
7855
            attrHandle[ lowercaseName ] = ret;
7856
            ret = getter( elem, name, isXML ) != null ?
7857
                lowercaseName :
7858
                null;
7859
            attrHandle[ lowercaseName ] = handle;
7860
        }
7861
        return ret;
7862
    };
7863
} );
7864
7865
7866
7867
7868
var rfocusable = /^(?:input|select|textarea|button)$/i,
7869
    rclickable = /^(?:a|area)$/i;
7870
7871
jQuery.fn.extend( {
7872
    prop: function( name, value ) {
7873
        return access( this, jQuery.prop, name, value, arguments.length > 1 );
7874
    },
7875
7876
    removeProp: function( name ) {
7877
        return this.each( function() {
7878
            delete this[ jQuery.propFix[ name ] || name ];
7879
        } );
7880
    }
7881
} );
7882
7883
jQuery.extend( {
7884
    prop: function( elem, name, value ) {
7885
        var ret, hooks,
7886
            nType = elem.nodeType;
7887
7888
        // Don't get/set properties on text, comment and attribute nodes
7889
        if ( nType === 3 || nType === 8 || nType === 2 ) {
7890
            return;
7891
        }
7892
7893
        if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) {
7894
7895
            // Fix name and attach hooks
7896
            name = jQuery.propFix[ name ] || name;
7897
            hooks = jQuery.propHooks[ name ];
7898
        }
7899
7900
        if ( value !== undefined ) {
7901
            if ( hooks && "set" in hooks &&
7902
                ( ret = hooks.set( elem, value, name ) ) !== undefined ) {
7903
                return ret;
7904
            }
7905
7906
            return ( elem[ name ] = value );
7907
        }
7908
7909
        if ( hooks && "get" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) {
7910
            return ret;
7911
        }
7912
7913
        return elem[ name ];
7914
    },
7915
7916
    propHooks: {
7917
        tabIndex: {
7918
            get: function( elem ) {
7919
7920
                // Support: IE <=9 - 11 only
7921
                // elem.tabIndex doesn't always return the
7922
                // correct value when it hasn't been explicitly set
7923
                // https://web.archive.org/web/20141116233347/http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/
7924
                // Use proper attribute retrieval(#12072)
7925
                var tabindex = jQuery.find.attr( elem, "tabindex" );
7926
7927
                if ( tabindex ) {
7928
                    return parseInt( tabindex, 10 );
7929
                }
7930
7931
                if (
7932
                    rfocusable.test( elem.nodeName ) ||
7933
                    rclickable.test( elem.nodeName ) &&
7934
                    elem.href
7935
                ) {
7936
                    return 0;
7937
                }
7938
7939
                return -1;
7940
            }
7941
        }
7942
    },
7943
7944
    propFix: {
7945
        "for": "htmlFor",
7946
        "class": "className"
7947
    }
7948
} );
7949
7950
// Support: IE <=11 only
7951
// Accessing the selectedIndex property
7952
// forces the browser to respect setting selected
7953
// on the option
7954
// The getter ensures a default option is selected
7955
// when in an optgroup
7956
// eslint rule "no-unused-expressions" is disabled for this code
7957
// since it considers such accessions noop
7958
if ( !support.optSelected ) {
7959
    jQuery.propHooks.selected = {
7960
        get: function( elem ) {
7961
7962
            /* eslint no-unused-expressions: "off" */
7963
7964
            var parent = elem.parentNode;
7965
            if ( parent && parent.parentNode ) {
7966
                parent.parentNode.selectedIndex;
7967
            }
7968
            return null;
7969
        },
7970
        set: function( elem ) {
7971
7972
            /* eslint no-unused-expressions: "off" */
7973
7974
            var parent = elem.parentNode;
7975
            if ( parent ) {
7976
                parent.selectedIndex;
7977
7978
                if ( parent.parentNode ) {
7979
                    parent.parentNode.selectedIndex;
7980
                }
7981
            }
7982
        }
7983
    };
7984
}
7985
7986
jQuery.each( [
7987
    "tabIndex",
7988
    "readOnly",
7989
    "maxLength",
7990
    "cellSpacing",
7991
    "cellPadding",
7992
    "rowSpan",
7993
    "colSpan",
7994
    "useMap",
7995
    "frameBorder",
7996
    "contentEditable"
7997
], function() {
7998
    jQuery.propFix[ this.toLowerCase() ] = this;
7999
} );
8000
8001
8002
8003
8004
    // Strip and collapse whitespace according to HTML spec
8005
    // https://infra.spec.whatwg.org/#strip-and-collapse-ascii-whitespace
8006
    function stripAndCollapse( value ) {
8007
        var tokens = value.match( rnothtmlwhite ) || [];
8008
        return tokens.join( " " );
8009
    }
8010
8011
8012
function getClass( elem ) {
8013
    return elem.getAttribute && elem.getAttribute( "class" ) || "";
8014
}
8015
8016
function classesToArray( value ) {
8017
    if ( Array.isArray( value ) ) {
8018
        return value;
8019
    }
8020
    if ( typeof value === "string" ) {
8021
        return value.match( rnothtmlwhite ) || [];
8022
    }
8023
    return [];
8024
}
8025
8026
jQuery.fn.extend( {
8027
    addClass: function( value ) {
8028
        var classes, elem, cur, curValue, clazz, j, finalValue,
8029
            i = 0;
8030
8031
        if ( isFunction( value ) ) {
8032
            return this.each( function( j ) {
8033
                jQuery( this ).addClass( value.call( this, j, getClass( this ) ) );
8034
            } );
8035
        }
8036
8037
        classes = classesToArray( value );
8038
8039
        if ( classes.length ) {
8040
            while ( ( elem = this[ i++ ] ) ) {
8041
                curValue = getClass( elem );
8042
                cur = elem.nodeType === 1 && ( " " + stripAndCollapse( curValue ) + " " );
8043
8044
                if ( cur ) {
8045
                    j = 0;
8046
                    while ( ( clazz = classes[ j++ ] ) ) {
8047
                        if ( cur.indexOf( " " + clazz + " " ) < 0 ) {
8048
                            cur += clazz + " ";
8049
                        }
8050
                    }
8051
8052
                    // Only assign if different to avoid unneeded rendering.
8053
                    finalValue = stripAndCollapse( cur );
8054
                    if ( curValue !== finalValue ) {
8055
                        elem.setAttribute( "class", finalValue );
8056
                    }
8057
                }
8058
            }
8059
        }
8060
8061
        return this;
8062
    },
8063
8064
    removeClass: function( value ) {
8065
        var classes, elem, cur, curValue, clazz, j, finalValue,
8066
            i = 0;
8067
8068
        if ( isFunction( value ) ) {
8069
            return this.each( function( j ) {
8070
                jQuery( this ).removeClass( value.call( this, j, getClass( this ) ) );
8071
            } );
8072
        }
8073
8074
        if ( !arguments.length ) {
8075
            return this.attr( "class", "" );
8076
        }
8077
8078
        classes = classesToArray( value );
8079
8080
        if ( classes.length ) {
8081
            while ( ( elem = this[ i++ ] ) ) {
8082
                curValue = getClass( elem );
8083
8084
                // This expression is here for better compressibility (see addClass)
8085
                cur = elem.nodeType === 1 && ( " " + stripAndCollapse( curValue ) + " " );
8086
8087
                if ( cur ) {
8088
                    j = 0;
8089
                    while ( ( clazz = classes[ j++ ] ) ) {
8090
8091
                        // Remove *all* instances
8092
                        while ( cur.indexOf( " " + clazz + " " ) > -1 ) {
8093
                            cur = cur.replace( " " + clazz + " ", " " );
8094
                        }
8095
                    }
8096
8097
                    // Only assign if different to avoid unneeded rendering.
8098
                    finalValue = stripAndCollapse( cur );
8099
                    if ( curValue !== finalValue ) {
8100
                        elem.setAttribute( "class", finalValue );
8101
                    }
8102
                }
8103
            }
8104
        }
8105
8106
        return this;
8107
    },
8108
8109
    toggleClass: function( value, stateVal ) {
8110
        var type = typeof value,
8111
            isValidValue = type === "string" || Array.isArray( value );
8112
8113
        if ( typeof stateVal === "boolean" && isValidValue ) {
8114
            return stateVal ? this.addClass( value ) : this.removeClass( value );
8115
        }
8116
8117
        if ( isFunction( value ) ) {
8118
            return this.each( function( i ) {
8119
                jQuery( this ).toggleClass(
8120
                    value.call( this, i, getClass( this ), stateVal ),
8121
                    stateVal
8122
                );
8123
            } );
8124
        }
8125
8126
        return this.each( function() {
8127
            var className, i, self, classNames;
8128
8129
            if ( isValidValue ) {
8130
8131
                // Toggle individual class names
8132
                i = 0;
8133
                self = jQuery( this );
8134
                classNames = classesToArray( value );
8135
8136
                while ( ( className = classNames[ i++ ] ) ) {
8137
8138
                    // Check each className given, space separated list
8139
                    if ( self.hasClass( className ) ) {
8140
                        self.removeClass( className );
8141
                    } else {
8142
                        self.addClass( className );
8143
                    }
8144
                }
8145
8146
            // Toggle whole class name
8147
            } else if ( value === undefined || type === "boolean" ) {
8148
                className = getClass( this );
8149
                if ( className ) {
8150
8151
                    // Store className if set
8152
                    dataPriv.set( this, "__className__", className );
8153
                }
8154
8155
                // If the element has a class name or if we're passed `false`,
8156
                // then remove the whole classname (if there was one, the above saved it).
8157
                // Otherwise bring back whatever was previously saved (if anything),
8158
                // falling back to the empty string if nothing was stored.
8159
                if ( this.setAttribute ) {
8160
                    this.setAttribute( "class",
8161
                        className || value === false ?
8162
                        "" :
8163
                        dataPriv.get( this, "__className__" ) || ""
8164
                    );
8165
                }
8166
            }
8167
        } );
8168
    },
8169
8170
    hasClass: function( selector ) {
8171
        var className, elem,
8172
            i = 0;
8173
8174
        className = " " + selector + " ";
8175
        while ( ( elem = this[ i++ ] ) ) {
8176
            if ( elem.nodeType === 1 &&
8177
                ( " " + stripAndCollapse( getClass( elem ) ) + " " ).indexOf( className ) > -1 ) {
8178
                    return true;
8179
            }
8180
        }
8181
8182
        return false;
8183
    }
8184
} );
8185
8186
8187
8188
8189
var rreturn = /\r/g;
8190
8191
jQuery.fn.extend( {
8192
    val: function( value ) {
8193
        var hooks, ret, valueIsFunction,
8194
            elem = this[ 0 ];
8195
8196
        if ( !arguments.length ) {
8197
            if ( elem ) {
8198
                hooks = jQuery.valHooks[ elem.type ] ||
8199
                    jQuery.valHooks[ elem.nodeName.toLowerCase() ];
8200
8201
                if ( hooks &&
8202
                    "get" in hooks &&
8203
                    ( ret = hooks.get( elem, "value" ) ) !== undefined
8204
                ) {
8205
                    return ret;
8206
                }
8207
8208
                ret = elem.value;
8209
8210
                // Handle most common string cases
8211
                if ( typeof ret === "string" ) {
8212
                    return ret.replace( rreturn, "" );
8213
                }
8214
8215
                // Handle cases where value is null/undef or number
8216
                return ret == null ? "" : ret;
8217
            }
8218
8219
            return;
8220
        }
8221
8222
        valueIsFunction = isFunction( value );
8223
8224
        return this.each( function( i ) {
8225
            var val;
8226
8227
            if ( this.nodeType !== 1 ) {
8228
                return;
8229
            }
8230
8231
            if ( valueIsFunction ) {
8232
                val = value.call( this, i, jQuery( this ).val() );
8233
            } else {
8234
                val = value;
8235
            }
8236
8237
            // Treat null/undefined as ""; convert numbers to string
8238
            if ( val == null ) {
8239
                val = "";
8240
8241
            } else if ( typeof val === "number" ) {
8242
                val += "";
8243
8244
            } else if ( Array.isArray( val ) ) {
8245
                val = jQuery.map( val, function( value ) {
8246
                    return value == null ? "" : value + "";
8247
                } );
8248
            }
8249
8250
            hooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ];
8251
8252
            // If set returns undefined, fall back to normal setting
8253
            if ( !hooks || !( "set" in hooks ) || hooks.set( this, val, "value" ) === undefined ) {
8254
                this.value = val;
8255
            }
8256
        } );
8257
    }
8258
} );
8259
8260
jQuery.extend( {
8261
    valHooks: {
8262
        option: {
8263
            get: function( elem ) {
8264
8265
                var val = jQuery.find.attr( elem, "value" );
8266
                return val != null ?
8267
                    val :
8268
8269
                    // Support: IE <=10 - 11 only
8270
                    // option.text throws exceptions (#14686, #14858)
8271
                    // Strip and collapse whitespace
8272
                    // https://html.spec.whatwg.org/#strip-and-collapse-whitespace
8273
                    stripAndCollapse( jQuery.text( elem ) );
8274
            }
8275
        },
8276
        select: {
8277
            get: function( elem ) {
8278
                var value, option, i,
8279
                    options = elem.options,
8280
                    index = elem.selectedIndex,
8281
                    one = elem.type === "select-one",
8282
                    values = one ? null : [],
8283
                    max = one ? index + 1 : options.length;
8284
8285
                if ( index < 0 ) {
8286
                    i = max;
8287
8288
                } else {
8289
                    i = one ? index : 0;
8290
                }
8291
8292
                // Loop through all the selected options
8293
                for ( ; i < max; i++ ) {
8294
                    option = options[ i ];
8295
8296
                    // Support: IE <=9 only
8297
                    // IE8-9 doesn't update selected after form reset (#2551)
8298
                    if ( ( option.selected || i === index ) &&
8299
8300
                            // Don't return options that are disabled or in a disabled optgroup
8301
                            !option.disabled &&
8302
                            ( !option.parentNode.disabled ||
8303
                                !nodeName( option.parentNode, "optgroup" ) ) ) {
8304
8305
                        // Get the specific value for the option
8306
                        value = jQuery( option ).val();
8307
8308
                        // We don't need an array for one selects
8309
                        if ( one ) {
8310
                            return value;
8311
                        }
8312
8313
                        // Multi-Selects return an array
8314
                        values.push( value );
8315
                    }
8316
                }
8317
8318
                return values;
8319
            },
8320
8321
            set: function( elem, value ) {
8322
                var optionSet, option,
8323
                    options = elem.options,
8324
                    values = jQuery.makeArray( value ),
8325
                    i = options.length;
8326
8327
                while ( i-- ) {
8328
                    option = options[ i ];
8329
8330
                    /* eslint-disable no-cond-assign */
8331
8332
                    if ( option.selected =
8333
                        jQuery.inArray( jQuery.valHooks.option.get( option ), values ) > -1
8334
                    ) {
8335
                        optionSet = true;
8336
                    }
8337
8338
                    /* eslint-enable no-cond-assign */
8339
                }
8340
8341
                // Force browsers to behave consistently when non-matching value is set
8342
                if ( !optionSet ) {
8343
                    elem.selectedIndex = -1;
8344
                }
8345
                return values;
8346
            }
8347
        }
8348
    }
8349
} );
8350
8351
// Radios and checkboxes getter/setter
8352
jQuery.each( [ "radio", "checkbox" ], function() {
8353
    jQuery.valHooks[ this ] = {
8354
        set: function( elem, value ) {
8355
            if ( Array.isArray( value ) ) {
8356
                return ( elem.checked = jQuery.inArray( jQuery( elem ).val(), value ) > -1 );
8357
            }
8358
        }
8359
    };
8360
    if ( !support.checkOn ) {
8361
        jQuery.valHooks[ this ].get = function( elem ) {
8362
            return elem.getAttribute( "value" ) === null ? "on" : elem.value;
8363
        };
8364
    }
8365
} );
8366
8367
8368
8369
8370
// Return jQuery for attributes-only inclusion
8371
8372
8373
support.focusin = "onfocusin" in window;
8374
8375
8376
var rfocusMorph = /^(?:focusinfocus|focusoutblur)$/,
8377
    stopPropagationCallback = function( e ) {
8378
        e.stopPropagation();
8379
    };
8380
8381
jQuery.extend( jQuery.event, {
8382
8383
    trigger: function( event, data, elem, onlyHandlers ) {
8384
8385
        var i, cur, tmp, bubbleType, ontype, handle, special, lastElement,
8386
            eventPath = [ elem || document ],
8387
            type = hasOwn.call( event, "type" ) ? event.type : event,
8388
            namespaces = hasOwn.call( event, "namespace" ) ? event.namespace.split( "." ) : [];
8389
8390
        cur = lastElement = tmp = elem = elem || document;
8391
8392
        // Don't do events on text and comment nodes
8393
        if ( elem.nodeType === 3 || elem.nodeType === 8 ) {
8394
            return;
8395
        }
8396
8397
        // focus/blur morphs to focusin/out; ensure we're not firing them right now
8398
        if ( rfocusMorph.test( type + jQuery.event.triggered ) ) {
8399
            return;
8400
        }
8401
8402
        if ( type.indexOf( "." ) > -1 ) {
8403
8404
            // Namespaced trigger; create a regexp to match event type in handle()
8405
            namespaces = type.split( "." );
8406
            type = namespaces.shift();
8407
            namespaces.sort();
8408
        }
8409
        ontype = type.indexOf( ":" ) < 0 && "on" + type;
8410
8411
        // Caller can pass in a jQuery.Event object, Object, or just an event type string
8412
        event = event[ jQuery.expando ] ?
8413
            event :
8414
            new jQuery.Event( type, typeof event === "object" && event );
8415
8416
        // Trigger bitmask: & 1 for native handlers; & 2 for jQuery (always true)
8417
        event.isTrigger = onlyHandlers ? 2 : 3;
8418
        event.namespace = namespaces.join( "." );
8419
        event.rnamespace = event.namespace ?
8420
            new RegExp( "(^|\\.)" + namespaces.join( "\\.(?:.*\\.|)" ) + "(\\.|$)" ) :
8421
            null;
8422
8423
        // Clean up the event in case it is being reused
8424
        event.result = undefined;
8425
        if ( !event.target ) {
8426
            event.target = elem;
8427
        }
8428
8429
        // Clone any incoming data and prepend the event, creating the handler arg list
8430
        data = data == null ?
8431
            [ event ] :
8432
            jQuery.makeArray( data, [ event ] );
8433
8434
        // Allow special events to draw outside the lines
8435
        special = jQuery.event.special[ type ] || {};
8436
        if ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) {
8437
            return;
8438
        }
8439
8440
        // Determine event propagation path in advance, per W3C events spec (#9951)
8441
        // Bubble up to document, then to window; watch for a global ownerDocument var (#9724)
8442
        if ( !onlyHandlers && !special.noBubble && !isWindow( elem ) ) {
8443
8444
            bubbleType = special.delegateType || type;
8445
            if ( !rfocusMorph.test( bubbleType + type ) ) {
8446
                cur = cur.parentNode;
8447
            }
8448
            for ( ; cur; cur = cur.parentNode ) {
8449
                eventPath.push( cur );
8450
                tmp = cur;
8451
            }
8452
8453
            // Only add window if we got to document (e.g., not plain obj or detached DOM)
8454
            if ( tmp === ( elem.ownerDocument || document ) ) {
8455
                eventPath.push( tmp.defaultView || tmp.parentWindow || window );
8456
            }
8457
        }
8458
8459
        // Fire handlers on the event path
8460
        i = 0;
8461
        while ( ( cur = eventPath[ i++ ] ) && !event.isPropagationStopped() ) {
8462
            lastElement = cur;
8463
            event.type = i > 1 ?
8464
                bubbleType :
8465
                special.bindType || type;
8466
8467
            // jQuery handler
8468
            handle = ( dataPriv.get( cur, "events" ) || {} )[ event.type ] &&
8469
                dataPriv.get( cur, "handle" );
8470
            if ( handle ) {
8471
                handle.apply( cur, data );
8472
            }
8473
8474
            // Native handler
8475
            handle = ontype && cur[ ontype ];
8476
            if ( handle && handle.apply && acceptData( cur ) ) {
8477
                event.result = handle.apply( cur, data );
8478
                if ( event.result === false ) {
8479
                    event.preventDefault();
8480
                }
8481
            }
8482
        }
8483
        event.type = type;
8484
8485
        // If nobody prevented the default action, do it now
8486
        if ( !onlyHandlers && !event.isDefaultPrevented() ) {
8487
8488
            if ( ( !special._default ||
8489
                special._default.apply( eventPath.pop(), data ) === false ) &&
8490
                acceptData( elem ) ) {
8491
8492
                // Call a native DOM method on the target with the same name as the event.
8493
                // Don't do default actions on window, that's where global variables be (#6170)
8494
                if ( ontype && isFunction( elem[ type ] ) && !isWindow( elem ) ) {
8495
8496
                    // Don't re-trigger an onFOO event when we call its FOO() method
8497
                    tmp = elem[ ontype ];
8498
8499
                    if ( tmp ) {
8500
                        elem[ ontype ] = null;
8501
                    }
8502
8503
                    // Prevent re-triggering of the same event, since we already bubbled it above
8504
                    jQuery.event.triggered = type;
8505
8506
                    if ( event.isPropagationStopped() ) {
8507
                        lastElement.addEventListener( type, stopPropagationCallback );
8508
                    }
8509
8510
                    elem[ type ]();
8511
8512
                    if ( event.isPropagationStopped() ) {
8513
                        lastElement.removeEventListener( type, stopPropagationCallback );
8514
                    }
8515
8516
                    jQuery.event.triggered = undefined;
8517
8518
                    if ( tmp ) {
8519
                        elem[ ontype ] = tmp;
8520
                    }
8521
                }
8522
            }
8523
        }
8524
8525
        return event.result;
8526
    },
8527
8528
    // Piggyback on a donor event to simulate a different one
8529
    // Used only for `focus(in | out)` events
8530
    simulate: function( type, elem, event ) {
8531
        var e = jQuery.extend(
8532
            new jQuery.Event(),
8533
            event,
8534
            {
8535
                type: type,
8536
                isSimulated: true
8537
            }
8538
        );
8539
8540
        jQuery.event.trigger( e, null, elem );
8541
    }
8542
8543
} );
8544
8545
jQuery.fn.extend( {
8546
8547
    trigger: function( type, data ) {
8548
        return this.each( function() {
8549
            jQuery.event.trigger( type, data, this );
8550
        } );
8551
    },
8552
    triggerHandler: function( type, data ) {
8553
        var elem = this[ 0 ];
8554
        if ( elem ) {
8555
            return jQuery.event.trigger( type, data, elem, true );
8556
        }
8557
    }
8558
} );
8559
8560
8561
// Support: Firefox <=44
8562
// Firefox doesn't have focus(in | out) events
8563
// Related ticket - https://bugzilla.mozilla.org/show_bug.cgi?id=687787
8564
//
8565
// Support: Chrome <=48 - 49, Safari <=9.0 - 9.1
8566
// focus(in | out) events fire after focus & blur events,
8567
// which is spec violation - http://www.w3.org/TR/DOM-Level-3-Events/#events-focusevent-event-order
8568
// Related ticket - https://bugs.chromium.org/p/chromium/issues/detail?id=449857
8569
if ( !support.focusin ) {
8570
    jQuery.each( { focus: "focusin", blur: "focusout" }, function( orig, fix ) {
8571
8572
        // Attach a single capturing handler on the document while someone wants focusin/focusout
8573
        var handler = function( event ) {
8574
            jQuery.event.simulate( fix, event.target, jQuery.event.fix( event ) );
8575
        };
8576
8577
        jQuery.event.special[ fix ] = {
8578
            setup: function() {
8579
                var doc = this.ownerDocument || this,
8580
                    attaches = dataPriv.access( doc, fix );
8581
8582
                if ( !attaches ) {
8583
                    doc.addEventListener( orig, handler, true );
8584
                }
8585
                dataPriv.access( doc, fix, ( attaches || 0 ) + 1 );
8586
            },
8587
            teardown: function() {
8588
                var doc = this.ownerDocument || this,
8589
                    attaches = dataPriv.access( doc, fix ) - 1;
8590
8591
                if ( !attaches ) {
8592
                    doc.removeEventListener( orig, handler, true );
8593
                    dataPriv.remove( doc, fix );
8594
8595
                } else {
8596
                    dataPriv.access( doc, fix, attaches );
8597
                }
8598
            }
8599
        };
8600
    } );
8601
}
8602
var location = window.location;
8603
8604
var nonce = Date.now();
8605
8606
var rquery = ( /\?/ );
8607
8608
8609
8610
// Cross-browser xml parsing
8611
jQuery.parseXML = function( data ) {
8612
    var xml;
8613
    if ( !data || typeof data !== "string" ) {
8614
        return null;
8615
    }
8616
8617
    // Support: IE 9 - 11 only
8618
    // IE throws on parseFromString with invalid input.
8619
    try {
8620
        xml = ( new window.DOMParser() ).parseFromString( data, "text/xml" );
8621
    } catch ( e ) {
8622
        xml = undefined;
8623
    }
8624
8625
    if ( !xml || xml.getElementsByTagName( "parsererror" ).length ) {
8626
        jQuery.error( "Invalid XML: " + data );
8627
    }
8628
    return xml;
8629
};
8630
8631
8632
var
8633
    rbracket = /\[\]$/,
8634
    rCRLF = /\r?\n/g,
8635
    rsubmitterTypes = /^(?:submit|button|image|reset|file)$/i,
8636
    rsubmittable = /^(?:input|select|textarea|keygen)/i;
8637
8638
function buildParams( prefix, obj, traditional, add ) {
8639
    var name;
8640
8641
    if ( Array.isArray( obj ) ) {
8642
8643
        // Serialize array item.
8644
        jQuery.each( obj, function( i, v ) {
8645
            if ( traditional || rbracket.test( prefix ) ) {
8646
8647
                // Treat each array item as a scalar.
8648
                add( prefix, v );
8649
8650
            } else {
8651
8652
                // Item is non-scalar (array or object), encode its numeric index.
8653
                buildParams(
8654
                    prefix + "[" + ( typeof v === "object" && v != null ? i : "" ) + "]",
8655
                    v,
8656
                    traditional,
8657
                    add
8658
                );
8659
            }
8660
        } );
8661
8662
    } else if ( !traditional && toType( obj ) === "object" ) {
8663
8664
        // Serialize object item.
8665
        for ( name in obj ) {
8666
            buildParams( prefix + "[" + name + "]", obj[ name ], traditional, add );
8667
        }
8668
8669
    } else {
8670
8671
        // Serialize scalar item.
8672
        add( prefix, obj );
8673
    }
8674
}
8675
8676
// Serialize an array of form elements or a set of
8677
// key/values into a query string
8678
jQuery.param = function( a, traditional ) {
8679
    var prefix,
8680
        s = [],
8681
        add = function( key, valueOrFunction ) {
8682
8683
            // If value is a function, invoke it and use its return value
8684
            var value = isFunction( valueOrFunction ) ?
8685
                valueOrFunction() :
8686
                valueOrFunction;
8687
8688
            s[ s.length ] = encodeURIComponent( key ) + "=" +
8689
                encodeURIComponent( value == null ? "" : value );
8690
        };
8691
8692
    if ( a == null ) {
8693
        return "";
8694
    }
8695
8696
    // If an array was passed in, assume that it is an array of form elements.
8697
    if ( Array.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) {
8698
8699
        // Serialize the form elements
8700
        jQuery.each( a, function() {
8701
            add( this.name, this.value );
8702
        } );
8703
8704
    } else {
8705
8706
        // If traditional, encode the "old" way (the way 1.3.2 or older
8707
        // did it), otherwise encode params recursively.
8708
        for ( prefix in a ) {
8709
            buildParams( prefix, a[ prefix ], traditional, add );
8710
        }
8711
    }
8712
8713
    // Return the resulting serialization
8714
    return s.join( "&" );
8715
};
8716
8717
jQuery.fn.extend( {
8718
    serialize: function() {
8719
        return jQuery.param( this.serializeArray() );
8720
    },
8721
    serializeArray: function() {
8722
        return this.map( function() {
8723
8724
            // Can add propHook for "elements" to filter or add form elements
8725
            var elements = jQuery.prop( this, "elements" );
8726
            return elements ? jQuery.makeArray( elements ) : this;
8727
        } )
8728
        .filter( function() {
8729
            var type = this.type;
8730
8731
            // Use .is( ":disabled" ) so that fieldset[disabled] works
8732
            return this.name && !jQuery( this ).is( ":disabled" ) &&
8733
                rsubmittable.test( this.nodeName ) && !rsubmitterTypes.test( type ) &&
8734
                ( this.checked || !rcheckableType.test( type ) );
8735
        } )
8736
        .map( function( i, elem ) {
8737
            var val = jQuery( this ).val();
8738
8739
            if ( val == null ) {
8740
                return null;
8741
            }
8742
8743
            if ( Array.isArray( val ) ) {
8744
                return jQuery.map( val, function( val ) {
8745
                    return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) };
8746
                } );
8747
            }
8748
8749
            return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) };
8750
        } ).get();
8751
    }
8752
} );
8753
8754
8755
var
8756
    r20 = /%20/g,
8757
    rhash = /#.*$/,
8758
    rantiCache = /([?&])_=[^&]*/,
8759
    rheaders = /^(.*?):[ \t]*([^\r\n]*)$/mg,
8760
8761
    // #7653, #8125, #8152: local protocol detection
8762
    rlocalProtocol = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/,
8763
    rnoContent = /^(?:GET|HEAD)$/,
8764
    rprotocol = /^\/\//,
8765
8766
    /* Prefilters
8767
     * 1) They are useful to introduce custom dataTypes (see ajax/jsonp.js for an example)
8768
     * 2) These are called:
8769
     *    - BEFORE asking for a transport
8770
     *    - AFTER param serialization (s.data is a string if s.processData is true)
8771
     * 3) key is the dataType
8772
     * 4) the catchall symbol "*" can be used
8773
     * 5) execution will start with transport dataType and THEN continue down to "*" if needed
8774
     */
8775
    prefilters = {},
8776
8777
    /* Transports bindings
8778
     * 1) key is the dataType
8779
     * 2) the catchall symbol "*" can be used
8780
     * 3) selection will start with transport dataType and THEN go to "*" if needed
8781
     */
8782
    transports = {},
8783
8784
    // Avoid comment-prolog char sequence (#10098); must appease lint and evade compression
8785
    allTypes = "*/".concat( "*" ),
8786
8787
    // Anchor tag for parsing the document origin
8788
    originAnchor = document.createElement( "a" );
8789
    originAnchor.href = location.href;
8790
8791
// Base "constructor" for jQuery.ajaxPrefilter and jQuery.ajaxTransport
8792
function addToPrefiltersOrTransports( structure ) {
8793
8794
    // dataTypeExpression is optional and defaults to "*"
8795
    return function( dataTypeExpression, func ) {
8796
8797
        if ( typeof dataTypeExpression !== "string" ) {
8798
            func = dataTypeExpression;
8799
            dataTypeExpression = "*";
8800
        }
8801
8802
        var dataType,
8803
            i = 0,
8804
            dataTypes = dataTypeExpression.toLowerCase().match( rnothtmlwhite ) || [];
8805
8806
        if ( isFunction( func ) ) {
8807
8808
            // For each dataType in the dataTypeExpression
8809
            while ( ( dataType = dataTypes[ i++ ] ) ) {
8810
8811
                // Prepend if requested
8812
                if ( dataType[ 0 ] === "+" ) {
8813
                    dataType = dataType.slice( 1 ) || "*";
8814
                    ( structure[ dataType ] = structure[ dataType ] || [] ).unshift( func );
8815
8816
                // Otherwise append
8817
                } else {
8818
                    ( structure[ dataType ] = structure[ dataType ] || [] ).push( func );
8819
                }
8820
            }
8821
        }
8822
    };
8823
}
8824
8825
// Base inspection function for prefilters and transports
8826
function inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR ) {
8827
8828
    var inspected = {},
8829
        seekingTransport = ( structure === transports );
8830
8831
    function inspect( dataType ) {
8832
        var selected;
8833
        inspected[ dataType ] = true;
8834
        jQuery.each( structure[ dataType ] || [], function( _, prefilterOrFactory ) {
8835
            var dataTypeOrTransport = prefilterOrFactory( options, originalOptions, jqXHR );
8836
            if ( typeof dataTypeOrTransport === "string" &&
8837
                !seekingTransport && !inspected[ dataTypeOrTransport ] ) {
8838
8839
                options.dataTypes.unshift( dataTypeOrTransport );
8840
                inspect( dataTypeOrTransport );
8841
                return false;
8842
            } else if ( seekingTransport ) {
8843
                return !( selected = dataTypeOrTransport );
8844
            }
8845
        } );
8846
        return selected;
8847
    }
8848
8849
    return inspect( options.dataTypes[ 0 ] ) || !inspected[ "*" ] && inspect( "*" );
8850
}
8851
8852
// A special extend for ajax options
8853
// that takes "flat" options (not to be deep extended)
8854
// Fixes #9887
8855
function ajaxExtend( target, src ) {
8856
    var key, deep,
8857
        flatOptions = jQuery.ajaxSettings.flatOptions || {};
8858
8859
    for ( key in src ) {
8860
        if ( src[ key ] !== undefined ) {
8861
            ( flatOptions[ key ] ? target : ( deep || ( deep = {} ) ) )[ key ] = src[ key ];
8862
        }
8863
    }
8864
    if ( deep ) {
8865
        jQuery.extend( true, target, deep );
8866
    }
8867
8868
    return target;
8869
}
8870
8871
/* Handles responses to an ajax request:
8872
 * - finds the right dataType (mediates between content-type and expected dataType)
8873
 * - returns the corresponding response
8874
 */
8875
function ajaxHandleResponses( s, jqXHR, responses ) {
8876
8877
    var ct, type, finalDataType, firstDataType,
8878
        contents = s.contents,
8879
        dataTypes = s.dataTypes;
8880
8881
    // Remove auto dataType and get content-type in the process
8882
    while ( dataTypes[ 0 ] === "*" ) {
8883
        dataTypes.shift();
8884
        if ( ct === undefined ) {
8885
            ct = s.mimeType || jqXHR.getResponseHeader( "Content-Type" );
8886
        }
8887
    }
8888
8889
    // Check if we're dealing with a known content-type
8890
    if ( ct ) {
8891
        for ( type in contents ) {
8892
            if ( contents[ type ] && contents[ type ].test( ct ) ) {
8893
                dataTypes.unshift( type );
8894
                break;
8895
            }
8896
        }
8897
    }
8898
8899
    // Check to see if we have a response for the expected dataType
8900
    if ( dataTypes[ 0 ] in responses ) {
8901
        finalDataType = dataTypes[ 0 ];
8902
    } else {
8903
8904
        // Try convertible dataTypes
8905
        for ( type in responses ) {
8906
            if ( !dataTypes[ 0 ] || s.converters[ type + " " + dataTypes[ 0 ] ] ) {
8907
                finalDataType = type;
8908
                break;
8909
            }
8910
            if ( !firstDataType ) {
8911
                firstDataType = type;
8912
            }
8913
        }
8914
8915
        // Or just use first one
8916
        finalDataType = finalDataType || firstDataType;
8917
    }
8918
8919
    // If we found a dataType
8920
    // We add the dataType to the list if needed
8921
    // and return the corresponding response
8922
    if ( finalDataType ) {
8923
        if ( finalDataType !== dataTypes[ 0 ] ) {
8924
            dataTypes.unshift( finalDataType );
8925
        }
8926
        return responses[ finalDataType ];
8927
    }
8928
}
8929
8930
/* Chain conversions given the request and the original response
8931
 * Also sets the responseXXX fields on the jqXHR instance
8932
 */
8933
function ajaxConvert( s, response, jqXHR, isSuccess ) {
8934
    var conv2, current, conv, tmp, prev,
8935
        converters = {},
8936
8937
        // Work with a copy of dataTypes in case we need to modify it for conversion
8938
        dataTypes = s.dataTypes.slice();
8939
8940
    // Create converters map with lowercased keys
8941
    if ( dataTypes[ 1 ] ) {
8942
        for ( conv in s.converters ) {
8943
            converters[ conv.toLowerCase() ] = s.converters[ conv ];
8944
        }
8945
    }
8946
8947
    current = dataTypes.shift();
8948
8949
    // Convert to each sequential dataType
8950
    while ( current ) {
8951
8952
        if ( s.responseFields[ current ] ) {
8953
            jqXHR[ s.responseFields[ current ] ] = response;
8954
        }
8955
8956
        // Apply the dataFilter if provided
8957
        if ( !prev && isSuccess && s.dataFilter ) {
8958
            response = s.dataFilter( response, s.dataType );
8959
        }
8960
8961
        prev = current;
8962
        current = dataTypes.shift();
8963
8964
        if ( current ) {
8965
8966
            // There's only work to do if current dataType is non-auto
8967
            if ( current === "*" ) {
8968
8969
                current = prev;
8970
8971
            // Convert response if prev dataType is non-auto and differs from current
8972
            } else if ( prev !== "*" && prev !== current ) {
8973
8974
                // Seek a direct converter
8975
                conv = converters[ prev + " " + current ] || converters[ "* " + current ];
8976
8977
                // If none found, seek a pair
8978
                if ( !conv ) {
8979
                    for ( conv2 in converters ) {
8980
8981
                        // If conv2 outputs current
8982
                        tmp = conv2.split( " " );
8983
                        if ( tmp[ 1 ] === current ) {
8984
8985
                            // If prev can be converted to accepted input
8986
                            conv = converters[ prev + " " + tmp[ 0 ] ] ||
8987
                                converters[ "* " + tmp[ 0 ] ];
8988
                            if ( conv ) {
8989
8990
                                // Condense equivalence converters
8991
                                if ( conv === true ) {
8992
                                    conv = converters[ conv2 ];
8993
8994
                                // Otherwise, insert the intermediate dataType
8995
                                } else if ( converters[ conv2 ] !== true ) {
8996
                                    current = tmp[ 0 ];
8997
                                    dataTypes.unshift( tmp[ 1 ] );
8998
                                }
8999
                                break;
9000
                            }
9001
                        }
9002
                    }
9003
                }
9004
9005
                // Apply converter (if not an equivalence)
9006
                if ( conv !== true ) {
9007
9008
                    // Unless errors are allowed to bubble, catch and return them
9009
                    if ( conv && s.throws ) {
9010
                        response = conv( response );
9011
                    } else {
9012
                        try {
9013
                            response = conv( response );
9014
                        } catch ( e ) {
9015
                            return {
9016
                                state: "parsererror",
9017
                                error: conv ? e : "No conversion from " + prev + " to " + current
9018
                            };
9019
                        }
9020
                    }
9021
                }
9022
            }
9023
        }
9024
    }
9025
9026
    return { state: "success", data: response };
9027
}
9028
9029
jQuery.extend( {
9030
9031
    // Counter for holding the number of active queries
9032
    active: 0,
9033
9034
    // Last-Modified header cache for next request
9035
    lastModified: {},
9036
    etag: {},
9037
9038
    ajaxSettings: {
9039
        url: location.href,
9040
        type: "GET",
9041
        isLocal: rlocalProtocol.test( location.protocol ),
9042
        global: true,
9043
        processData: true,
9044
        async: true,
9045
        contentType: "application/x-www-form-urlencoded; charset=UTF-8",
9046
9047
        /*
9048
        timeout: 0,
9049
        data: null,
9050
        dataType: null,
9051
        username: null,
9052
        password: null,
9053
        cache: null,
9054
        throws: false,
9055
        traditional: false,
9056
        headers: {},
9057
        */
9058
9059
        accepts: {
9060
            "*": allTypes,
9061
            text: "text/plain",
9062
            html: "text/html",
9063
            xml: "application/xml, text/xml",
9064
            json: "application/json, text/javascript"
9065
        },
9066
9067
        contents: {
9068
            xml: /\bxml\b/,
9069
            html: /\bhtml/,
9070
            json: /\bjson\b/
9071
        },
9072
9073
        responseFields: {
9074
            xml: "responseXML",
9075
            text: "responseText",
9076
            json: "responseJSON"
9077
        },
9078
9079
        // Data converters
9080
        // Keys separate source (or catchall "*") and destination types with a single space
9081
        converters: {
9082
9083
            // Convert anything to text
9084
            "* text": String,
9085
9086
            // Text to html (true = no transformation)
9087
            "text html": true,
9088
9089
            // Evaluate text as a json expression
9090
            "text json": JSON.parse,
9091
9092
            // Parse text as xml
9093
            "text xml": jQuery.parseXML
9094
        },
9095
9096
        // For options that shouldn't be deep extended:
9097
        // you can add your own custom options here if
9098
        // and when you create one that shouldn't be
9099
        // deep extended (see ajaxExtend)
9100
        flatOptions: {
9101
            url: true,
9102
            context: true
9103
        }
9104
    },
9105
9106
    // Creates a full fledged settings object into target
9107
    // with both ajaxSettings and settings fields.
9108
    // If target is omitted, writes into ajaxSettings.
9109
    ajaxSetup: function( target, settings ) {
9110
        return settings ?
9111
9112
            // Building a settings object
9113
            ajaxExtend( ajaxExtend( target, jQuery.ajaxSettings ), settings ) :
9114
9115
            // Extending ajaxSettings
9116
            ajaxExtend( jQuery.ajaxSettings, target );
9117
    },
9118
9119
    ajaxPrefilter: addToPrefiltersOrTransports( prefilters ),
9120
    ajaxTransport: addToPrefiltersOrTransports( transports ),
9121
9122
    // Main method
9123
    ajax: function( url, options ) {
9124
9125
        // If url is an object, simulate pre-1.5 signature
9126
        if ( typeof url === "object" ) {
9127
            options = url;
9128
            url = undefined;
9129
        }
9130
9131
        // Force options to be an object
9132
        options = options || {};
9133
9134
        var transport,
9135
9136
            // URL without anti-cache param
9137
            cacheURL,
9138
9139
            // Response headers
9140
            responseHeadersString,
9141
            responseHeaders,
9142
9143
            // timeout handle
9144
            timeoutTimer,
9145
9146
            // Url cleanup var
9147
            urlAnchor,
9148
9149
            // Request state (becomes false upon send and true upon completion)
9150
            completed,
9151
9152
            // To know if global events are to be dispatched
9153
            fireGlobals,
9154
9155
            // Loop variable
9156
            i,
9157
9158
            // uncached part of the url
9159
            uncached,
9160
9161
            // Create the final options object
9162
            s = jQuery.ajaxSetup( {}, options ),
9163
9164
            // Callbacks context
9165
            callbackContext = s.context || s,
9166
9167
            // Context for global events is callbackContext if it is a DOM node or jQuery collection
9168
            globalEventContext = s.context &&
9169
                ( callbackContext.nodeType || callbackContext.jquery ) ?
9170
                    jQuery( callbackContext ) :
9171
                    jQuery.event,
9172
9173
            // Deferreds
9174
            deferred = jQuery.Deferred(),
9175
            completeDeferred = jQuery.Callbacks( "once memory" ),
9176
9177
            // Status-dependent callbacks
9178
            statusCode = s.statusCode || {},
9179
9180
            // Headers (they are sent all at once)
9181
            requestHeaders = {},
9182
            requestHeadersNames = {},
9183
9184
            // Default abort message
9185
            strAbort = "canceled",
9186
9187
            // Fake xhr
9188
            jqXHR = {
9189
                readyState: 0,
9190
9191
                // Builds headers hashtable if needed
9192
                getResponseHeader: function( key ) {
9193
                    var match;
9194
                    if ( completed ) {
9195
                        if ( !responseHeaders ) {
9196
                            responseHeaders = {};
9197
                            while ( ( match = rheaders.exec( responseHeadersString ) ) ) {
9198
                                responseHeaders[ match[ 1 ].toLowerCase() + " " ] =
9199
                                    ( responseHeaders[ match[ 1 ].toLowerCase() + " " ] || [] )
9200
                                        .concat( match[ 2 ] );
9201
                            }
9202
                        }
9203
                        match = responseHeaders[ key.toLowerCase() + " " ];
9204
                    }
9205
                    return match == null ? null : match.join( ", " );
9206
                },
9207
9208
                // Raw string
9209
                getAllResponseHeaders: function() {
9210
                    return completed ? responseHeadersString : null;
9211
                },
9212
9213
                // Caches the header
9214
                setRequestHeader: function( name, value ) {
9215
                    if ( completed == null ) {
9216
                        name = requestHeadersNames[ name.toLowerCase() ] =
9217
                            requestHeadersNames[ name.toLowerCase() ] || name;
9218
                        requestHeaders[ name ] = value;
9219
                    }
9220
                    return this;
9221
                },
9222
9223
                // Overrides response content-type header
9224
                overrideMimeType: function( type ) {
9225
                    if ( completed == null ) {
9226
                        s.mimeType = type;
9227
                    }
9228
                    return this;
9229
                },
9230
9231
                // Status-dependent callbacks
9232
                statusCode: function( map ) {
9233
                    var code;
9234
                    if ( map ) {
9235
                        if ( completed ) {
9236
9237
                            // Execute the appropriate callbacks
9238
                            jqXHR.always( map[ jqXHR.status ] );
9239
                        } else {
9240
9241
                            // Lazy-add the new callbacks in a way that preserves old ones
9242
                            for ( code in map ) {
9243
                                statusCode[ code ] = [ statusCode[ code ], map[ code ] ];
9244
                            }
9245
                        }
9246
                    }
9247
                    return this;
9248
                },
9249
9250
                // Cancel the request
9251
                abort: function( statusText ) {
9252
                    var finalText = statusText || strAbort;
9253
                    if ( transport ) {
9254
                        transport.abort( finalText );
9255
                    }
9256
                    done( 0, finalText );
9257
                    return this;
9258
                }
9259
            };
9260
9261
        // Attach deferreds
9262
        deferred.promise( jqXHR );
9263
9264
        // Add protocol if not provided (prefilters might expect it)
9265
        // Handle falsy url in the settings object (#10093: consistency with old signature)
9266
        // We also use the url parameter if available
9267
        s.url = ( ( url || s.url || location.href ) + "" )
9268
            .replace( rprotocol, location.protocol + "//" );
9269
9270
        // Alias method option to type as per ticket #12004
9271
        s.type = options.method || options.type || s.method || s.type;
9272
9273
        // Extract dataTypes list
9274
        s.dataTypes = ( s.dataType || "*" ).toLowerCase().match( rnothtmlwhite ) || [ "" ];
9275
9276
        // A cross-domain request is in order when the origin doesn't match the current origin.
9277
        if ( s.crossDomain == null ) {
9278
            urlAnchor = document.createElement( "a" );
9279
9280
            // Support: IE <=8 - 11, Edge 12 - 15
9281
            // IE throws exception on accessing the href property if url is malformed,
9282
            // e.g. http://example.com:80x/
9283
            try {
9284
                urlAnchor.href = s.url;
9285
9286
                // Support: IE <=8 - 11 only
9287
                // Anchor's host property isn't correctly set when s.url is relative
9288
                urlAnchor.href = urlAnchor.href;
9289
                s.crossDomain = originAnchor.protocol + "//" + originAnchor.host !==
9290
                    urlAnchor.protocol + "//" + urlAnchor.host;
9291
            } catch ( e ) {
9292
9293
                // If there is an error parsing the URL, assume it is crossDomain,
9294
                // it can be rejected by the transport if it is invalid
9295
                s.crossDomain = true;
9296
            }
9297
        }
9298
9299
        // Convert data if not already a string
9300
        if ( s.data && s.processData && typeof s.data !== "string" ) {
9301
            s.data = jQuery.param( s.data, s.traditional );
9302
        }
9303
9304
        // Apply prefilters
9305
        inspectPrefiltersOrTransports( prefilters, s, options, jqXHR );
9306
9307
        // If request was aborted inside a prefilter, stop there
9308
        if ( completed ) {
9309
            return jqXHR;
9310
        }
9311
9312
        // We can fire global events as of now if asked to
9313
        // Don't fire events if jQuery.event is undefined in an AMD-usage scenario (#15118)
9314
        fireGlobals = jQuery.event && s.global;
9315
9316
        // Watch for a new set of requests
9317
        if ( fireGlobals && jQuery.active++ === 0 ) {
9318
            jQuery.event.trigger( "ajaxStart" );
9319
        }
9320
9321
        // Uppercase the type
9322
        s.type = s.type.toUpperCase();
9323
9324
        // Determine if request has content
9325
        s.hasContent = !rnoContent.test( s.type );
9326
9327
        // Save the URL in case we're toying with the If-Modified-Since
9328
        // and/or If-None-Match header later on
9329
        // Remove hash to simplify url manipulation
9330
        cacheURL = s.url.replace( rhash, "" );
9331
9332
        // More options handling for requests with no content
9333
        if ( !s.hasContent ) {
9334
9335
            // Remember the hash so we can put it back
9336
            uncached = s.url.slice( cacheURL.length );
9337
9338
            // If data is available and should be processed, append data to url
9339
            if ( s.data && ( s.processData || typeof s.data === "string" ) ) {
9340
                cacheURL += ( rquery.test( cacheURL ) ? "&" : "?" ) + s.data;
9341
9342
                // #9682: remove data so that it's not used in an eventual retry
9343
                delete s.data;
9344
            }
9345
9346
            // Add or update anti-cache param if needed
9347
            if ( s.cache === false ) {
9348
                cacheURL = cacheURL.replace( rantiCache, "$1" );
9349
                uncached = ( rquery.test( cacheURL ) ? "&" : "?" ) + "_=" + ( nonce++ ) + uncached;
9350
            }
9351
9352
            // Put hash and anti-cache on the URL that will be requested (gh-1732)
9353
            s.url = cacheURL + uncached;
9354
9355
        // Change '%20' to '+' if this is encoded form body content (gh-2658)
9356
        } else if ( s.data && s.processData &&
9357
            ( s.contentType || "" ).indexOf( "application/x-www-form-urlencoded" ) === 0 ) {
9358
            s.data = s.data.replace( r20, "+" );
9359
        }
9360
9361
        // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.
9362
        if ( s.ifModified ) {
9363
            if ( jQuery.lastModified[ cacheURL ] ) {
9364
                jqXHR.setRequestHeader( "If-Modified-Since", jQuery.lastModified[ cacheURL ] );
9365
            }
9366
            if ( jQuery.etag[ cacheURL ] ) {
9367
                jqXHR.setRequestHeader( "If-None-Match", jQuery.etag[ cacheURL ] );
9368
            }
9369
        }
9370
9371
        // Set the correct header, if data is being sent
9372
        if ( s.data && s.hasContent && s.contentType !== false || options.contentType ) {
9373
            jqXHR.setRequestHeader( "Content-Type", s.contentType );
9374
        }
9375
9376
        // Set the Accepts header for the server, depending on the dataType
9377
        jqXHR.setRequestHeader(
9378
            "Accept",
9379
            s.dataTypes[ 0 ] && s.accepts[ s.dataTypes[ 0 ] ] ?
9380
                s.accepts[ s.dataTypes[ 0 ] ] +
9381
                    ( s.dataTypes[ 0 ] !== "*" ? ", " + allTypes + "; q=0.01" : "" ) :
9382
                s.accepts[ "*" ]
9383
        );
9384
9385
        // Check for headers option
9386
        for ( i in s.headers ) {
9387
            jqXHR.setRequestHeader( i, s.headers[ i ] );
9388
        }
9389
9390
        // Allow custom headers/mimetypes and early abort
9391
        if ( s.beforeSend &&
9392
            ( s.beforeSend.call( callbackContext, jqXHR, s ) === false || completed ) ) {
9393
9394
            // Abort if not done already and return
9395
            return jqXHR.abort();
9396
        }
9397
9398
        // Aborting is no longer a cancellation
9399
        strAbort = "abort";
9400
9401
        // Install callbacks on deferreds
9402
        completeDeferred.add( s.complete );
9403
        jqXHR.done( s.success );
9404
        jqXHR.fail( s.error );
9405
9406
        // Get transport
9407
        transport = inspectPrefiltersOrTransports( transports, s, options, jqXHR );
9408
9409
        // If no transport, we auto-abort
9410
        if ( !transport ) {
9411
            done( -1, "No Transport" );
9412
        } else {
9413
            jqXHR.readyState = 1;
9414
9415
            // Send global event
9416
            if ( fireGlobals ) {
9417
                globalEventContext.trigger( "ajaxSend", [ jqXHR, s ] );
9418
            }
9419
9420
            // If request was aborted inside ajaxSend, stop there
9421
            if ( completed ) {
9422
                return jqXHR;
9423
            }
9424
9425
            // Timeout
9426
            if ( s.async && s.timeout > 0 ) {
9427
                timeoutTimer = window.setTimeout( function() {
9428
                    jqXHR.abort( "timeout" );
9429
                }, s.timeout );
9430
            }
9431
9432
            try {
9433
                completed = false;
9434
                transport.send( requestHeaders, done );
9435
            } catch ( e ) {
9436
9437
                // Rethrow post-completion exceptions
9438
                if ( completed ) {
9439
                    throw e;
9440
                }
9441
9442
                // Propagate others as results
9443
                done( -1, e );
9444
            }
9445
        }
9446
9447
        // Callback for when everything is done
9448
        function done( status, nativeStatusText, responses, headers ) {
9449
            var isSuccess, success, error, response, modified,
9450
                statusText = nativeStatusText;
9451
9452
            // Ignore repeat invocations
9453
            if ( completed ) {
9454
                return;
9455
            }
9456
9457
            completed = true;
9458
9459
            // Clear timeout if it exists
9460
            if ( timeoutTimer ) {
9461
                window.clearTimeout( timeoutTimer );
9462
            }
9463
9464
            // Dereference transport for early garbage collection
9465
            // (no matter how long the jqXHR object will be used)
9466
            transport = undefined;
9467
9468
            // Cache response headers
9469
            responseHeadersString = headers || "";
9470
9471
            // Set readyState
9472
            jqXHR.readyState = status > 0 ? 4 : 0;
9473
9474
            // Determine if successful
9475
            isSuccess = status >= 200 && status < 300 || status === 304;
9476
9477
            // Get response data
9478
            if ( responses ) {
9479
                response = ajaxHandleResponses( s, jqXHR, responses );
9480
            }
9481
9482
            // Convert no matter what (that way responseXXX fields are always set)
9483
            response = ajaxConvert( s, response, jqXHR, isSuccess );
9484
9485
            // If successful, handle type chaining
9486
            if ( isSuccess ) {
9487
9488
                // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.
9489
                if ( s.ifModified ) {
9490
                    modified = jqXHR.getResponseHeader( "Last-Modified" );
9491
                    if ( modified ) {
9492
                        jQuery.lastModified[ cacheURL ] = modified;
9493
                    }
9494
                    modified = jqXHR.getResponseHeader( "etag" );
9495
                    if ( modified ) {
9496
                        jQuery.etag[ cacheURL ] = modified;
9497
                    }
9498
                }
9499
9500
                // if no content
9501
                if ( status === 204 || s.type === "HEAD" ) {
9502
                    statusText = "nocontent";
9503
9504
                // if not modified
9505
                } else if ( status === 304 ) {
9506
                    statusText = "notmodified";
9507
9508
                // If we have data, let's convert it
9509
                } else {
9510
                    statusText = response.state;
9511
                    success = response.data;
9512
                    error = response.error;
9513
                    isSuccess = !error;
9514
                }
9515
            } else {
9516
9517
                // Extract error from statusText and normalize for non-aborts
9518
                error = statusText;
9519
                if ( status || !statusText ) {
9520
                    statusText = "error";
9521
                    if ( status < 0 ) {
9522
                        status = 0;
9523
                    }
9524
                }
9525
            }
9526
9527
            // Set data for the fake xhr object
9528
            jqXHR.status = status;
9529
            jqXHR.statusText = ( nativeStatusText || statusText ) + "";
9530
9531
            // Success/Error
9532
            if ( isSuccess ) {
9533
                deferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] );
9534
            } else {
9535
                deferred.rejectWith( callbackContext, [ jqXHR, statusText, error ] );
9536
            }
9537
9538
            // Status-dependent callbacks
9539
            jqXHR.statusCode( statusCode );
9540
            statusCode = undefined;
9541
9542
            if ( fireGlobals ) {
9543
                globalEventContext.trigger( isSuccess ? "ajaxSuccess" : "ajaxError",
9544
                    [ jqXHR, s, isSuccess ? success : error ] );
9545
            }
9546
9547
            // Complete
9548
            completeDeferred.fireWith( callbackContext, [ jqXHR, statusText ] );
9549
9550
            if ( fireGlobals ) {
9551
                globalEventContext.trigger( "ajaxComplete", [ jqXHR, s ] );
9552
9553
                // Handle the global AJAX counter
9554
                if ( !( --jQuery.active ) ) {
9555
                    jQuery.event.trigger( "ajaxStop" );
9556
                }
9557
            }
9558
        }
9559
9560
        return jqXHR;
9561
    },
9562
9563
    getJSON: function( url, data, callback ) {
9564
        return jQuery.get( url, data, callback, "json" );
9565
    },
9566
9567
    getScript: function( url, callback ) {
9568
        return jQuery.get( url, undefined, callback, "script" );
9569
    }
9570
} );
9571
9572
jQuery.each( [ "get", "post" ], function( i, method ) {
9573
    jQuery[ method ] = function( url, data, callback, type ) {
9574
9575
        // Shift arguments if data argument was omitted
9576
        if ( isFunction( data ) ) {
9577
            type = type || callback;
9578
            callback = data;
9579
            data = undefined;
9580
        }
9581
9582
        // The url can be an options object (which then must have .url)
9583
        return jQuery.ajax( jQuery.extend( {
9584
            url: url,
9585
            type: method,
9586
            dataType: type,
9587
            data: data,
9588
            success: callback
9589
        }, jQuery.isPlainObject( url ) && url ) );
9590
    };
9591
} );
9592
9593
9594
jQuery._evalUrl = function( url, options ) {
9595
    return jQuery.ajax( {
9596
        url: url,
9597
9598
        // Make this explicit, since user can override this through ajaxSetup (#11264)
9599
        type: "GET",
9600
        dataType: "script",
9601
        cache: true,
9602
        async: false,
9603
        global: false,
9604
9605
        // Only evaluate the response if it is successful (gh-4126)
9606
        // dataFilter is not invoked for failure responses, so using it instead
9607
        // of the default converter is kludgy but it works.
9608
        converters: {
9609
            "text script": function() {}
9610
        },
9611
        dataFilter: function( response ) {
9612
            jQuery.globalEval( response, options );
9613
        }
9614
    } );
9615
};
9616
9617
9618
jQuery.fn.extend( {
9619
    wrapAll: function( html ) {
9620
        var wrap;
9621
9622
        if ( this[ 0 ] ) {
9623
            if ( isFunction( html ) ) {
9624
                html = html.call( this[ 0 ] );
9625
            }
9626
9627
            // The elements to wrap the target around
9628
            wrap = jQuery( html, this[ 0 ].ownerDocument ).eq( 0 ).clone( true );
9629
9630
            if ( this[ 0 ].parentNode ) {
9631
                wrap.insertBefore( this[ 0 ] );
9632
            }
9633
9634
            wrap.map( function() {
9635
                var elem = this;
9636
9637
                while ( elem.firstElementChild ) {
9638
                    elem = elem.firstElementChild;
9639
                }
9640
9641
                return elem;
9642
            } ).append( this );
9643
        }
9644
9645
        return this;
9646
    },
9647
9648
    wrapInner: function( html ) {
9649
        if ( isFunction( html ) ) {
9650
            return this.each( function( i ) {
9651
                jQuery( this ).wrapInner( html.call( this, i ) );
9652
            } );
9653
        }
9654
9655
        return this.each( function() {
9656
            var self = jQuery( this ),
9657
                contents = self.contents();
9658
9659
            if ( contents.length ) {
9660
                contents.wrapAll( html );
9661
9662
            } else {
9663
                self.append( html );
9664
            }
9665
        } );
9666
    },
9667
9668
    wrap: function( html ) {
9669
        var htmlIsFunction = isFunction( html );
9670
9671
        return this.each( function( i ) {
9672
            jQuery( this ).wrapAll( htmlIsFunction ? html.call( this, i ) : html );
9673
        } );
9674
    },
9675
9676
    unwrap: function( selector ) {
9677
        this.parent( selector ).not( "body" ).each( function() {
9678
            jQuery( this ).replaceWith( this.childNodes );
9679
        } );
9680
        return this;
9681
    }
9682
} );
9683
9684
9685
jQuery.expr.pseudos.hidden = function( elem ) {
9686
    return !jQuery.expr.pseudos.visible( elem );
9687
};
9688
jQuery.expr.pseudos.visible = function( elem ) {
9689
    return !!( elem.offsetWidth || elem.offsetHeight || elem.getClientRects().length );
9690
};
9691
9692
9693
9694
9695
jQuery.ajaxSettings.xhr = function() {
9696
    try {
9697
        return new window.XMLHttpRequest();
9698
    } catch ( e ) {}
9699
};
9700
9701
var xhrSuccessStatus = {
9702
9703
        // File protocol always yields status code 0, assume 200
9704
        0: 200,
9705
9706
        // Support: IE <=9 only
9707
        // #1450: sometimes IE returns 1223 when it should be 204
9708
        1223: 204
9709
    },
9710
    xhrSupported = jQuery.ajaxSettings.xhr();
9711
9712
support.cors = !!xhrSupported && ( "withCredentials" in xhrSupported );
9713
support.ajax = xhrSupported = !!xhrSupported;
9714
9715
jQuery.ajaxTransport( function( options ) {
9716
    var callback, errorCallback;
9717
9718
    // Cross domain only allowed if supported through XMLHttpRequest
9719
    if ( support.cors || xhrSupported && !options.crossDomain ) {
9720
        return {
9721
            send: function( headers, complete ) {
9722
                var i,
9723
                    xhr = options.xhr();
9724
9725
                xhr.open(
9726
                    options.type,
9727
                    options.url,
9728
                    options.async,
9729
                    options.username,
9730
                    options.password
9731
                );
9732
9733
                // Apply custom fields if provided
9734
                if ( options.xhrFields ) {
9735
                    for ( i in options.xhrFields ) {
9736
                        xhr[ i ] = options.xhrFields[ i ];
9737
                    }
9738
                }
9739
9740
                // Override mime type if needed
9741
                if ( options.mimeType && xhr.overrideMimeType ) {
9742
                    xhr.overrideMimeType( options.mimeType );
9743
                }
9744
9745
                // X-Requested-With header
9746
                // For cross-domain requests, seeing as conditions for a preflight are
9747
                // akin to a jigsaw puzzle, we simply never set it to be sure.
9748
                // (it can always be set on a per-request basis or even using ajaxSetup)
9749
                // For same-domain requests, won't change header if already provided.
9750
                if ( !options.crossDomain && !headers[ "X-Requested-With" ] ) {
9751
                    headers[ "X-Requested-With" ] = "XMLHttpRequest";
9752
                }
9753
9754
                // Set headers
9755
                for ( i in headers ) {
9756
                    xhr.setRequestHeader( i, headers[ i ] );
9757
                }
9758
9759
                // Callback
9760
                callback = function( type ) {
9761
                    return function() {
9762
                        if ( callback ) {
9763
                            callback = errorCallback = xhr.onload =
9764
                                xhr.onerror = xhr.onabort = xhr.ontimeout =
9765
                                    xhr.onreadystatechange = null;
9766
9767
                            if ( type === "abort" ) {
9768
                                xhr.abort();
9769
                            } else if ( type === "error" ) {
9770
9771
                                // Support: IE <=9 only
9772
                                // On a manual native abort, IE9 throws
9773
                                // errors on any property access that is not readyState
9774
                                if ( typeof xhr.status !== "number" ) {
9775
                                    complete( 0, "error" );
9776
                                } else {
9777
                                    complete(
9778
9779
                                        // File: protocol always yields status 0; see #8605, #14207
9780
                                        xhr.status,
9781
                                        xhr.statusText
9782
                                    );
9783
                                }
9784
                            } else {
9785
                                complete(
9786
                                    xhrSuccessStatus[ xhr.status ] || xhr.status,
9787
                                    xhr.statusText,
9788
9789
                                    // Support: IE <=9 only
9790
                                    // IE9 has no XHR2 but throws on binary (trac-11426)
9791
                                    // For XHR2 non-text, let the caller handle it (gh-2498)
9792
                                    ( xhr.responseType || "text" ) !== "text"  ||
9793
                                    typeof xhr.responseText !== "string" ?
9794
                                        { binary: xhr.response } :
9795
                                        { text: xhr.responseText },
9796
                                    xhr.getAllResponseHeaders()
9797
                                );
9798
                            }
9799
                        }
9800
                    };
9801
                };
9802
9803
                // Listen to events
9804
                xhr.onload = callback();
9805
                errorCallback = xhr.onerror = xhr.ontimeout = callback( "error" );
9806
9807
                // Support: IE 9 only
9808
                // Use onreadystatechange to replace onabort
9809
                // to handle uncaught aborts
9810
                if ( xhr.onabort !== undefined ) {
9811
                    xhr.onabort = errorCallback;
9812
                } else {
9813
                    xhr.onreadystatechange = function() {
9814
9815
                        // Check readyState before timeout as it changes
9816
                        if ( xhr.readyState === 4 ) {
9817
9818
                            // Allow onerror to be called first,
9819
                            // but that will not handle a native abort
9820
                            // Also, save errorCallback to a variable
9821
                            // as xhr.onerror cannot be accessed
9822
                            window.setTimeout( function() {
9823
                                if ( callback ) {
9824
                                    errorCallback();
9825
                                }
9826
                            } );
9827
                        }
9828
                    };
9829
                }
9830
9831
                // Create the abort callback
9832
                callback = callback( "abort" );
9833
9834
                try {
9835
9836
                    // Do send the request (this may raise an exception)
9837
                    xhr.send( options.hasContent && options.data || null );
9838
                } catch ( e ) {
9839
9840
                    // #14683: Only rethrow if this hasn't been notified as an error yet
9841
                    if ( callback ) {
9842
                        throw e;
9843
                    }
9844
                }
9845
            },
9846
9847
            abort: function() {
9848
                if ( callback ) {
9849
                    callback();
9850
                }
9851
            }
9852
        };
9853
    }
9854
} );
9855
9856
9857
9858
9859
// Prevent auto-execution of scripts when no explicit dataType was provided (See gh-2432)
9860
jQuery.ajaxPrefilter( function( s ) {
9861
    if ( s.crossDomain ) {
9862
        s.contents.script = false;
9863
    }
9864
} );
9865
9866
// Install script dataType
9867
jQuery.ajaxSetup( {
9868
    accepts: {
9869
        script: "text/javascript, application/javascript, " +
9870
            "application/ecmascript, application/x-ecmascript"
9871
    },
9872
    contents: {
9873
        script: /\b(?:java|ecma)script\b/
9874
    },
9875
    converters: {
9876
        "text script": function( text ) {
9877
            jQuery.globalEval( text );
9878
            return text;
9879
        }
9880
    }
9881
} );
9882
9883
// Handle cache's special case and crossDomain
9884
jQuery.ajaxPrefilter( "script", function( s ) {
9885
    if ( s.cache === undefined ) {
9886
        s.cache = false;
9887
    }
9888
    if ( s.crossDomain ) {
9889
        s.type = "GET";
9890
    }
9891
} );
9892
9893
// Bind script tag hack transport
9894
jQuery.ajaxTransport( "script", function( s ) {
9895
9896
    // This transport only deals with cross domain or forced-by-attrs requests
9897
    if ( s.crossDomain || s.scriptAttrs ) {
9898
        var script, callback;
9899
        return {
9900
            send: function( _, complete ) {
9901
                script = jQuery( "<script>" )
9902
                    .attr( s.scriptAttrs || {} )
9903
                    .prop( { charset: s.scriptCharset, src: s.url } )
9904
                    .on( "load error", callback = function( evt ) {
9905
                        script.remove();
9906
                        callback = null;
9907
                        if ( evt ) {
9908
                            complete( evt.type === "error" ? 404 : 200, evt.type );
9909
                        }
9910
                    } );
9911
9912
                // Use native DOM manipulation to avoid our domManip AJAX trickery
9913
                document.head.appendChild( script[ 0 ] );
9914
            },
9915
            abort: function() {
9916
                if ( callback ) {
9917
                    callback();
9918
                }
9919
            }
9920
        };
9921
    }
9922
} );
9923
9924
9925
9926
9927
var oldCallbacks = [],
9928
    rjsonp = /(=)\?(?=&|$)|\?\?/;
9929
9930
// Default jsonp settings
9931
jQuery.ajaxSetup( {
9932
    jsonp: "callback",
9933
    jsonpCallback: function() {
9934
        var callback = oldCallbacks.pop() || ( jQuery.expando + "_" + ( nonce++ ) );
9935
        this[ callback ] = true;
9936
        return callback;
9937
    }
9938
} );
9939
9940
// Detect, normalize options and install callbacks for jsonp requests
9941
jQuery.ajaxPrefilter( "json jsonp", function( s, originalSettings, jqXHR ) {
9942
9943
    var callbackName, overwritten, responseContainer,
9944
        jsonProp = s.jsonp !== false && ( rjsonp.test( s.url ) ?
9945
            "url" :
9946
            typeof s.data === "string" &&
9947
                ( s.contentType || "" )
9948
                    .indexOf( "application/x-www-form-urlencoded" ) === 0 &&
9949
                rjsonp.test( s.data ) && "data"
9950
        );
9951
9952
    // Handle iff the expected data type is "jsonp" or we have a parameter to set
9953
    if ( jsonProp || s.dataTypes[ 0 ] === "jsonp" ) {
9954
9955
        // Get callback name, remembering preexisting value associated with it
9956
        callbackName = s.jsonpCallback = isFunction( s.jsonpCallback ) ?
9957
            s.jsonpCallback() :
9958
            s.jsonpCallback;
9959
9960
        // Insert callback into url or form data
9961
        if ( jsonProp ) {
9962
            s[ jsonProp ] = s[ jsonProp ].replace( rjsonp, "$1" + callbackName );
9963
        } else if ( s.jsonp !== false ) {
9964
            s.url += ( rquery.test( s.url ) ? "&" : "?" ) + s.jsonp + "=" + callbackName;
9965
        }
9966
9967
        // Use data converter to retrieve json after script execution
9968
        s.converters[ "script json" ] = function() {
9969
            if ( !responseContainer ) {
9970
                jQuery.error( callbackName + " was not called" );
9971
            }
9972
            return responseContainer[ 0 ];
9973
        };
9974
9975
        // Force json dataType
9976
        s.dataTypes[ 0 ] = "json";
9977
9978
        // Install callback
9979
        overwritten = window[ callbackName ];
9980
        window[ callbackName ] = function() {
9981
            responseContainer = arguments;
9982
        };
9983
9984
        // Clean-up function (fires after converters)
9985
        jqXHR.always( function() {
9986
9987
            // If previous value didn't exist - remove it
9988
            if ( overwritten === undefined ) {
9989
                jQuery( window ).removeProp( callbackName );
9990
9991
            // Otherwise restore preexisting value
9992
            } else {
9993
                window[ callbackName ] = overwritten;
9994
            }
9995
9996
            // Save back as free
9997
            if ( s[ callbackName ] ) {
9998
9999
                // Make sure that re-using the options doesn't screw things around
10000
                s.jsonpCallback = originalSettings.jsonpCallback;
10001
10002
                // Save the callback name for future use
10003
                oldCallbacks.push( callbackName );
10004
            }
10005
10006
            // Call if it was a function and we have a response
10007
            if ( responseContainer && isFunction( overwritten ) ) {
10008
                overwritten( responseContainer[ 0 ] );
10009
            }
10010
10011
            responseContainer = overwritten = undefined;
10012
        } );
10013
10014
        // Delegate to script
10015
        return "script";
10016
    }
10017
} );
10018
10019
10020
10021
10022
// Support: Safari 8 only
10023
// In Safari 8 documents created via document.implementation.createHTMLDocument
10024
// collapse sibling forms: the second one becomes a child of the first one.
10025
// Because of that, this security measure has to be disabled in Safari 8.
10026
// https://bugs.webkit.org/show_bug.cgi?id=137337
10027
support.createHTMLDocument = ( function() {
10028
    var body = document.implementation.createHTMLDocument( "" ).body;
10029
    body.innerHTML = "<form></form><form></form>";
10030
    return body.childNodes.length === 2;
10031
} )();
10032
10033
10034
// Argument "data" should be string of html
10035
// context (optional): If specified, the fragment will be created in this context,
10036
// defaults to document
10037
// keepScripts (optional): If true, will include scripts passed in the html string
10038
jQuery.parseHTML = function( data, context, keepScripts ) {
10039
    if ( typeof data !== "string" ) {
10040
        return [];
10041
    }
10042
    if ( typeof context === "boolean" ) {
10043
        keepScripts = context;
10044
        context = false;
10045
    }
10046
10047
    var base, parsed, scripts;
10048
10049
    if ( !context ) {
10050
10051
        // Stop scripts or inline event handlers from being executed immediately
10052
        // by using document.implementation
10053
        if ( support.createHTMLDocument ) {
10054
            context = document.implementation.createHTMLDocument( "" );
10055
10056
            // Set the base href for the created document
10057
            // so any parsed elements with URLs
10058
            // are based on the document's URL (gh-2965)
10059
            base = context.createElement( "base" );
10060
            base.href = document.location.href;
10061
            context.head.appendChild( base );
10062
        } else {
10063
            context = document;
10064
        }
10065
    }
10066
10067
    parsed = rsingleTag.exec( data );
10068
    scripts = !keepScripts && [];
10069
10070
    // Single tag
10071
    if ( parsed ) {
10072
        return [ context.createElement( parsed[ 1 ] ) ];
10073
    }
10074
10075
    parsed = buildFragment( [ data ], context, scripts );
10076
10077
    if ( scripts && scripts.length ) {
10078
        jQuery( scripts ).remove();
10079
    }
10080
10081
    return jQuery.merge( [], parsed.childNodes );
10082
};
10083
10084
10085
/**
10086
 * Load a url into a page
10087
 */
10088
jQuery.fn.load = function( url, params, callback ) {
10089
    var selector, type, response,
10090
        self = this,
10091
        off = url.indexOf( " " );
10092
10093
    if ( off > -1 ) {
10094
        selector = stripAndCollapse( url.slice( off ) );
10095
        url = url.slice( 0, off );
10096
    }
10097
10098
    // If it's a function
10099
    if ( isFunction( params ) ) {
10100
10101
        // We assume that it's the callback
10102
        callback = params;
10103
        params = undefined;
10104
10105
    // Otherwise, build a param string
10106
    } else if ( params && typeof params === "object" ) {
10107
        type = "POST";
10108
    }
10109
10110
    // If we have elements to modify, make the request
10111
    if ( self.length > 0 ) {
10112
        jQuery.ajax( {
10113
            url: url,
10114
10115
            // If "type" variable is undefined, then "GET" method will be used.
10116
            // Make value of this field explicit since
10117
            // user can override it through ajaxSetup method
10118
            type: type || "GET",
10119
            dataType: "html",
10120
            data: params
10121
        } ).done( function( responseText ) {
10122
10123
            // Save response for use in complete callback
10124
            response = arguments;
10125
10126
            self.html( selector ?
10127
10128
                // If a selector was specified, locate the right elements in a dummy div
10129
                // Exclude scripts to avoid IE 'Permission Denied' errors
10130
                jQuery( "<div>" ).append( jQuery.parseHTML( responseText ) ).find( selector ) :
10131
10132
                // Otherwise use the full result
10133
                responseText );
10134
10135
        // If the request succeeds, this function gets "data", "status", "jqXHR"
10136
        // but they are ignored because response was set above.
10137
        // If it fails, this function gets "jqXHR", "status", "error"
10138
        } ).always( callback && function( jqXHR, status ) {
10139
            self.each( function() {
10140
                callback.apply( this, response || [ jqXHR.responseText, status, jqXHR ] );
10141
            } );
10142
        } );
10143
    }
10144
10145
    return this;
10146
};
10147
10148
10149
10150
10151
// Attach a bunch of functions for handling common AJAX events
10152
jQuery.each( [
10153
    "ajaxStart",
10154
    "ajaxStop",
10155
    "ajaxComplete",
10156
    "ajaxError",
10157
    "ajaxSuccess",
10158
    "ajaxSend"
10159
], function( i, type ) {
10160
    jQuery.fn[ type ] = function( fn ) {
10161
        return this.on( type, fn );
10162
    };
10163
} );
10164
10165
10166
10167
10168
jQuery.expr.pseudos.animated = function( elem ) {
10169
    return jQuery.grep( jQuery.timers, function( fn ) {
10170
        return elem === fn.elem;
10171
    } ).length;
10172
};
10173
10174
10175
10176
10177
jQuery.offset = {
10178
    setOffset: function( elem, options, i ) {
10179
        var curPosition, curLeft, curCSSTop, curTop, curOffset, curCSSLeft, calculatePosition,
10180
            position = jQuery.css( elem, "position" ),
10181
            curElem = jQuery( elem ),
10182
            props = {};
10183
10184
        // Set position first, in-case top/left are set even on static elem
10185
        if ( position === "static" ) {
10186
            elem.style.position = "relative";
10187
        }
10188
10189
        curOffset = curElem.offset();
10190
        curCSSTop = jQuery.css( elem, "top" );
10191
        curCSSLeft = jQuery.css( elem, "left" );
10192
        calculatePosition = ( position === "absolute" || position === "fixed" ) &&
10193
            ( curCSSTop + curCSSLeft ).indexOf( "auto" ) > -1;
10194
10195
        // Need to be able to calculate position if either
10196
        // top or left is auto and position is either absolute or fixed
10197
        if ( calculatePosition ) {
10198
            curPosition = curElem.position();
10199
            curTop = curPosition.top;
10200
            curLeft = curPosition.left;
10201
10202
        } else {
10203
            curTop = parseFloat( curCSSTop ) || 0;
10204
            curLeft = parseFloat( curCSSLeft ) || 0;
10205
        }
10206
10207
        if ( isFunction( options ) ) {
10208
10209
            // Use jQuery.extend here to allow modification of coordinates argument (gh-1848)
10210
            options = options.call( elem, i, jQuery.extend( {}, curOffset ) );
10211
        }
10212
10213
        if ( options.top != null ) {
10214
            props.top = ( options.top - curOffset.top ) + curTop;
10215
        }
10216
        if ( options.left != null ) {
10217
            props.left = ( options.left - curOffset.left ) + curLeft;
10218
        }
10219
10220
        if ( "using" in options ) {
10221
            options.using.call( elem, props );
10222
10223
        } else {
10224
            curElem.css( props );
10225
        }
10226
    }
10227
};
10228
10229
jQuery.fn.extend( {
10230
10231
    // offset() relates an element's border box to the document origin
10232
    offset: function( options ) {
10233
10234
        // Preserve chaining for setter
10235
        if ( arguments.length ) {
10236
            return options === undefined ?
10237
                this :
10238
                this.each( function( i ) {
10239
                    jQuery.offset.setOffset( this, options, i );
10240
                } );
10241
        }
10242
10243
        var rect, win,
10244
            elem = this[ 0 ];
10245
10246
        if ( !elem ) {
10247
            return;
10248
        }
10249
10250
        // Return zeros for disconnected and hidden (display: none) elements (gh-2310)
10251
        // Support: IE <=11 only
10252
        // Running getBoundingClientRect on a
10253
        // disconnected node in IE throws an error
10254
        if ( !elem.getClientRects().length ) {
10255
            return { top: 0, left: 0 };
10256
        }
10257
10258
        // Get document-relative position by adding viewport scroll to viewport-relative gBCR
10259
        rect = elem.getBoundingClientRect();
10260
        win = elem.ownerDocument.defaultView;
10261
        return {
10262
            top: rect.top + win.pageYOffset,
10263
            left: rect.left + win.pageXOffset
10264
        };
10265
    },
10266
10267
    // position() relates an element's margin box to its offset parent's padding box
10268
    // This corresponds to the behavior of CSS absolute positioning
10269
    position: function() {
10270
        if ( !this[ 0 ] ) {
10271
            return;
10272
        }
10273
10274
        var offsetParent, offset, doc,
10275
            elem = this[ 0 ],
10276
            parentOffset = { top: 0, left: 0 };
10277
10278
        // position:fixed elements are offset from the viewport, which itself always has zero offset
10279
        if ( jQuery.css( elem, "position" ) === "fixed" ) {
10280
10281
            // Assume position:fixed implies availability of getBoundingClientRect
10282
            offset = elem.getBoundingClientRect();
10283
10284
        } else {
10285
            offset = this.offset();
10286
10287
            // Account for the *real* offset parent, which can be the document or its root element
10288
            // when a statically positioned element is identified
10289
            doc = elem.ownerDocument;
10290
            offsetParent = elem.offsetParent || doc.documentElement;
10291
            while ( offsetParent &&
10292
                ( offsetParent === doc.body || offsetParent === doc.documentElement ) &&
10293
                jQuery.css( offsetParent, "position" ) === "static" ) {
10294
10295
                offsetParent = offsetParent.parentNode;
10296
            }
10297
            if ( offsetParent && offsetParent !== elem && offsetParent.nodeType === 1 ) {
10298
10299
                // Incorporate borders into its offset, since they are outside its content origin
10300
                parentOffset = jQuery( offsetParent ).offset();
10301
                parentOffset.top += jQuery.css( offsetParent, "borderTopWidth", true );
10302
                parentOffset.left += jQuery.css( offsetParent, "borderLeftWidth", true );
10303
            }
10304
        }
10305
10306
        // Subtract parent offsets and element margins
10307
        return {
10308
            top: offset.top - parentOffset.top - jQuery.css( elem, "marginTop", true ),
10309
            left: offset.left - parentOffset.left - jQuery.css( elem, "marginLeft", true )
10310
        };
10311
    },
10312
10313
    // This method will return documentElement in the following cases:
10314
    // 1) For the element inside the iframe without offsetParent, this method will return
10315
    //    documentElement of the parent window
10316
    // 2) For the hidden or detached element
10317
    // 3) For body or html element, i.e. in case of the html node - it will return itself
10318
    //
10319
    // but those exceptions were never presented as a real life use-cases
10320
    // and might be considered as more preferable results.
10321
    //
10322
    // This logic, however, is not guaranteed and can change at any point in the future
10323
    offsetParent: function() {
10324
        return this.map( function() {
10325
            var offsetParent = this.offsetParent;
10326
10327
            while ( offsetParent && jQuery.css( offsetParent, "position" ) === "static" ) {
10328
                offsetParent = offsetParent.offsetParent;
10329
            }
10330
10331
            return offsetParent || documentElement;
10332
        } );
10333
    }
10334
} );
10335
10336
// Create scrollLeft and scrollTop methods
10337
jQuery.each( { scrollLeft: "pageXOffset", scrollTop: "pageYOffset" }, function( method, prop ) {
10338
    var top = "pageYOffset" === prop;
10339
10340
    jQuery.fn[ method ] = function( val ) {
10341
        return access( this, function( elem, method, val ) {
10342
10343
            // Coalesce documents and windows
10344
            var win;
10345
            if ( isWindow( elem ) ) {
10346
                win = elem;
10347
            } else if ( elem.nodeType === 9 ) {
10348
                win = elem.defaultView;
10349
            }
10350
10351
            if ( val === undefined ) {
10352
                return win ? win[ prop ] : elem[ method ];
10353
            }
10354
10355
            if ( win ) {
10356
                win.scrollTo(
10357
                    !top ? val : win.pageXOffset,
10358
                    top ? val : win.pageYOffset
10359
                );
10360
10361
            } else {
10362
                elem[ method ] = val;
10363
            }
10364
        }, method, val, arguments.length );
10365
    };
10366
} );
10367
10368
// Support: Safari <=7 - 9.1, Chrome <=37 - 49
10369
// Add the top/left cssHooks using jQuery.fn.position
10370
// Webkit bug: https://bugs.webkit.org/show_bug.cgi?id=29084
10371
// Blink bug: https://bugs.chromium.org/p/chromium/issues/detail?id=589347
10372
// getComputedStyle returns percent when specified for top/left/bottom/right;
10373
// rather than make the css module depend on the offset module, just check for it here
10374
jQuery.each( [ "top", "left" ], function( i, prop ) {
10375
    jQuery.cssHooks[ prop ] = addGetHookIf( support.pixelPosition,
10376
        function( elem, computed ) {
10377
            if ( computed ) {
10378
                computed = curCSS( elem, prop );
10379
10380
                // If curCSS returns percentage, fallback to offset
10381
                return rnumnonpx.test( computed ) ?
10382
                    jQuery( elem ).position()[ prop ] + "px" :
10383
                    computed;
10384
            }
10385
        }
10386
    );
10387
} );
10388
10389
10390
// Create innerHeight, innerWidth, height, width, outerHeight and outerWidth methods
10391
jQuery.each( { Height: "height", Width: "width" }, function( name, type ) {
10392
    jQuery.each( { padding: "inner" + name, content: type, "": "outer" + name },
10393
        function( defaultExtra, funcName ) {
10394
10395
        // Margin is only for outerHeight, outerWidth
10396
        jQuery.fn[ funcName ] = function( margin, value ) {
10397
            var chainable = arguments.length && ( defaultExtra || typeof margin !== "boolean" ),
10398
                extra = defaultExtra || ( margin === true || value === true ? "margin" : "border" );
10399
10400
            return access( this, function( elem, type, value ) {
10401
                var doc;
10402
10403
                if ( isWindow( elem ) ) {
10404
10405
                    // $( window ).outerWidth/Height return w/h including scrollbars (gh-1729)
10406
                    return funcName.indexOf( "outer" ) === 0 ?
10407
                        elem[ "inner" + name ] :
10408
                        elem.document.documentElement[ "client" + name ];
10409
                }
10410
10411
                // Get document width or height
10412
                if ( elem.nodeType === 9 ) {
10413
                    doc = elem.documentElement;
10414
10415
                    // Either scroll[Width/Height] or offset[Width/Height] or client[Width/Height],
10416
                    // whichever is greatest
10417
                    return Math.max(
10418
                        elem.body[ "scroll" + name ], doc[ "scroll" + name ],
10419
                        elem.body[ "offset" + name ], doc[ "offset" + name ],
10420
                        doc[ "client" + name ]
10421
                    );
10422
                }
10423
10424
                return value === undefined ?
10425
10426
                    // Get width or height on the element, requesting but not forcing parseFloat
10427
                    jQuery.css( elem, type, extra ) :
10428
10429
                    // Set width or height on the element
10430
                    jQuery.style( elem, type, value, extra );
10431
            }, type, chainable ? margin : undefined, chainable );
10432
        };
10433
    } );
10434
} );
10435
10436
10437
jQuery.each( ( "blur focus focusin focusout resize scroll click dblclick " +
10438
    "mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave " +
10439
    "change select submit keydown keypress keyup contextmenu" ).split( " " ),
10440
    function( i, name ) {
10441
10442
    // Handle event binding
10443
    jQuery.fn[ name ] = function( data, fn ) {
10444
        return arguments.length > 0 ?
10445
            this.on( name, null, data, fn ) :
10446
            this.trigger( name );
10447
    };
10448
} );
10449
10450
jQuery.fn.extend( {
10451
    hover: function( fnOver, fnOut ) {
10452
        return this.mouseenter( fnOver ).mouseleave( fnOut || fnOver );
10453
    }
10454
} );
10455
10456
10457
10458
10459
jQuery.fn.extend( {
10460
10461
    bind: function( types, data, fn ) {
10462
        return this.on( types, null, data, fn );
10463
    },
10464
    unbind: function( types, fn ) {
10465
        return this.off( types, null, fn );
10466
    },
10467
10468
    delegate: function( selector, types, data, fn ) {
10469
        return this.on( types, selector, data, fn );
10470
    },
10471
    undelegate: function( selector, types, fn ) {
10472
10473
        // ( namespace ) or ( selector, types [, fn] )
10474
        return arguments.length === 1 ?
10475
            this.off( selector, "**" ) :
10476
            this.off( types, selector || "**", fn );
10477
    }
10478
} );
10479
10480
// Bind a function to a context, optionally partially applying any
10481
// arguments.
10482
// jQuery.proxy is deprecated to promote standards (specifically Function#bind)
10483
// However, it is not slated for removal any time soon
10484
jQuery.proxy = function( fn, context ) {
10485
    var tmp, args, proxy;
10486
10487
    if ( typeof context === "string" ) {
10488
        tmp = fn[ context ];
10489
        context = fn;
10490
        fn = tmp;
10491
    }
10492
10493
    // Quick check to determine if target is callable, in the spec
10494
    // this throws a TypeError, but we will just return undefined.
10495
    if ( !isFunction( fn ) ) {
10496
        return undefined;
10497
    }
10498
10499
    // Simulated bind
10500
    args = slice.call( arguments, 2 );
10501
    proxy = function() {
10502
        return fn.apply( context || this, args.concat( slice.call( arguments ) ) );
10503
    };
10504
10505
    // Set the guid of unique handler to the same of original handler, so it can be removed
10506
    proxy.guid = fn.guid = fn.guid || jQuery.guid++;
10507
10508
    return proxy;
10509
};
10510
10511
jQuery.holdReady = function( hold ) {
10512
    if ( hold ) {
10513
        jQuery.readyWait++;
10514
    } else {
10515
        jQuery.ready( true );
10516
    }
10517
};
10518
jQuery.isArray = Array.isArray;
10519
jQuery.parseJSON = JSON.parse;
10520
jQuery.nodeName = nodeName;
10521
jQuery.isFunction = isFunction;
10522
jQuery.isWindow = isWindow;
10523
jQuery.camelCase = camelCase;
10524
jQuery.type = toType;
10525
10526
jQuery.now = Date.now;
10527
10528
jQuery.isNumeric = function( obj ) {
10529
10530
    // As of jQuery 3.0, isNumeric is limited to
10531
    // strings and numbers (primitives or objects)
10532
    // that can be coerced to finite numbers (gh-2662)
10533
    var type = jQuery.type( obj );
10534
    return ( type === "number" || type === "string" ) &&
10535
10536
        // parseFloat NaNs numeric-cast false positives ("")
10537
        // ...but misinterprets leading-number strings, particularly hex literals ("0x...")
10538
        // subtraction forces infinities to NaN
10539
        !isNaN( obj - parseFloat( obj ) );
10540
};
10541
10542
10543
10544
10545
// Register as a named AMD module, since jQuery can be concatenated with other
10546
// files that may use define, but not via a proper concatenation script that
10547
// understands anonymous AMD modules. A named AMD is safest and most robust
10548
// way to register. Lowercase jquery is used because AMD module names are
10549
// derived from file names, and jQuery is normally delivered in a lowercase
10550
// file name. Do this after creating the global so that if an AMD module wants
10551
// to call noConflict to hide this version of jQuery, it will work.
10552
10553
// Note that for maximum portability, libraries that are not jQuery should
10554
// declare themselves as anonymous modules, and avoid setting a global if an
10555
// AMD loader is present. jQuery is a special case. For more information, see
10556
// https://github.com/jrburke/requirejs/wiki/Updating-existing-libraries#wiki-anon
10557
10558
if ( typeof define === "function" && define.amd ) {
10559
    define( "jquery", [], function() {
10560
        return jQuery;
10561
    } );
10562
}
10563
10564
10565
10566
10567
var
10568
10569
    // Map over jQuery in case of overwrite
10570
    _jQuery = window.jQuery,
10571
10572
    // Map over the $ in case of overwrite
10573
    _$ = window.$;
10574
10575
jQuery.noConflict = function( deep ) {
10576
    if ( window.$ === jQuery ) {
10577
        window.$ = _$;
10578
    }
10579
10580
    if ( deep && window.jQuery === jQuery ) {
10581
        window.jQuery = _jQuery;
10582
    }
10583
10584
    return jQuery;
10585
};
10586
10587
// Expose jQuery and $ identifiers, even in AMD
10588
// (#7102#comment:10, https://github.com/jquery/jquery/pull/557)
10589
// and CommonJS for browser emulators (#13566)
10590
if ( !noGlobal ) {
10591
    window.jQuery = window.$ = jQuery;
10592
}
10593
10594
10595
10596
10597
return jQuery;
10598
} );
(-)a/koha-tmpl/opac-tmpl/bootstrap/lib/jquery/jquery-3.4.1.min.js (-2 lines)
Lines 1-2 Link Here
1
/*! jQuery v3.4.1 | (c) JS Foundation and other contributors | jquery.org/license */
2
!function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(C,e){"use strict";var t=[],E=C.document,r=Object.getPrototypeOf,s=t.slice,g=t.concat,u=t.push,i=t.indexOf,n={},o=n.toString,v=n.hasOwnProperty,a=v.toString,l=a.call(Object),y={},m=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType},x=function(e){return null!=e&&e===e.window},c={type:!0,src:!0,nonce:!0,noModule:!0};function b(e,t,n){var r,i,o=(n=n||E).createElement("script");if(o.text=e,t)for(r in c)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function w(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?n[o.call(e)]||"object":typeof e}var f="3.4.1",k=function(e,t){return new k.fn.init(e,t)},p=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g;function d(e){var t=!!e&&"length"in e&&e.length,n=w(e);return!m(e)&&!x(e)&&("array"===n||0===t||"number"==typeof t&&0<t&&t-1 in e)}k.fn=k.prototype={jquery:f,constructor:k,length:0,toArray:function(){return s.call(this)},get:function(e){return null==e?s.call(this):e<0?this[e+this.length]:this[e]},pushStack:function(e){var t=k.merge(this.constructor(),e);return t.prevObject=this,t},each:function(e){return k.each(this,e)},map:function(n){return this.pushStack(k.map(this,function(e,t){return n.call(e,t,e)}))},slice:function(){return this.pushStack(s.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(e){var t=this.length,n=+e+(e<0?t:0);return this.pushStack(0<=n&&n<t?[this[n]]:[])},end:function(){return this.prevObject||this.constructor()},push:u,sort:t.sort,splice:t.splice},k.extend=k.fn.extend=function(){var e,t,n,r,i,o,a=arguments[0]||{},s=1,u=arguments.length,l=!1;for("boolean"==typeof a&&(l=a,a=arguments[s]||{},s++),"object"==typeof a||m(a)||(a={}),s===u&&(a=this,s--);s<u;s++)if(null!=(e=arguments[s]))for(t in e)r=e[t],"__proto__"!==t&&a!==r&&(l&&r&&(k.isPlainObject(r)||(i=Array.isArray(r)))?(n=a[t],o=i&&!Array.isArray(n)?[]:i||k.isPlainObject(n)?n:{},i=!1,a[t]=k.extend(l,o,r)):void 0!==r&&(a[t]=r));return a},k.extend({expando:"jQuery"+(f+Math.random()).replace(/\D/g,""),isReady:!0,error:function(e){throw new Error(e)},noop:function(){},isPlainObject:function(e){var t,n;return!(!e||"[object Object]"!==o.call(e))&&(!(t=r(e))||"function"==typeof(n=v.call(t,"constructor")&&t.constructor)&&a.call(n)===l)},isEmptyObject:function(e){var t;for(t in e)return!1;return!0},globalEval:function(e,t){b(e,{nonce:t&&t.nonce})},each:function(e,t){var n,r=0;if(d(e)){for(n=e.length;r<n;r++)if(!1===t.call(e[r],r,e[r]))break}else for(r in e)if(!1===t.call(e[r],r,e[r]))break;return e},trim:function(e){return null==e?"":(e+"").replace(p,"")},makeArray:function(e,t){var n=t||[];return null!=e&&(d(Object(e))?k.merge(n,"string"==typeof e?[e]:e):u.call(n,e)),n},inArray:function(e,t,n){return null==t?-1:i.call(t,e,n)},merge:function(e,t){for(var n=+t.length,r=0,i=e.length;r<n;r++)e[i++]=t[r];return e.length=i,e},grep:function(e,t,n){for(var r=[],i=0,o=e.length,a=!n;i<o;i++)!t(e[i],i)!==a&&r.push(e[i]);return r},map:function(e,t,n){var r,i,o=0,a=[];if(d(e))for(r=e.length;o<r;o++)null!=(i=t(e[o],o,n))&&a.push(i);else for(o in e)null!=(i=t(e[o],o,n))&&a.push(i);return g.apply([],a)},guid:1,support:y}),"function"==typeof Symbol&&(k.fn[Symbol.iterator]=t[Symbol.iterator]),k.each("Boolean Number String Function Array Date RegExp Object Error Symbol".split(" "),function(e,t){n["[object "+t+"]"]=t.toLowerCase()});var h=function(n){var e,d,b,o,i,h,f,g,w,u,l,T,C,a,E,v,s,c,y,k="sizzle"+1*new Date,m=n.document,S=0,r=0,p=ue(),x=ue(),N=ue(),A=ue(),D=function(e,t){return e===t&&(l=!0),0},j={}.hasOwnProperty,t=[],q=t.pop,L=t.push,H=t.push,O=t.slice,P=function(e,t){for(var n=0,r=e.length;n<r;n++)if(e[n]===t)return n;return-1},R="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",M="[\\x20\\t\\r\\n\\f]",I="(?:\\\\.|[\\w-]|[^\0-\\xa0])+",W="\\["+M+"*("+I+")(?:"+M+"*([*^$|!~]?=)"+M+"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|("+I+"))|)"+M+"*\\]",$=":("+I+")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|"+W+")*)|.*)\\)|)",F=new RegExp(M+"+","g"),B=new RegExp("^"+M+"+|((?:^|[^\\\\])(?:\\\\.)*)"+M+"+$","g"),_=new RegExp("^"+M+"*,"+M+"*"),z=new RegExp("^"+M+"*([>+~]|"+M+")"+M+"*"),U=new RegExp(M+"|>"),X=new RegExp($),V=new RegExp("^"+I+"$"),G={ID:new RegExp("^#("+I+")"),CLASS:new RegExp("^\\.("+I+")"),TAG:new RegExp("^("+I+"|[*])"),ATTR:new RegExp("^"+W),PSEUDO:new RegExp("^"+$),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+R+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/HTML$/i,Q=/^(?:input|select|textarea|button)$/i,J=/^h\d$/i,K=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\([\\da-f]{1,6}"+M+"?|("+M+")|.)","ig"),ne=function(e,t,n){var r="0x"+t-65536;return r!=r||n?t:r<0?String.fromCharCode(r+65536):String.fromCharCode(r>>10|55296,1023&r|56320)},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){T()},ae=be(function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()},{dir:"parentNode",next:"legend"});try{H.apply(t=O.call(m.childNodes),m.childNodes),t[m.childNodes.length].nodeType}catch(e){H={apply:t.length?function(e,t){L.apply(e,O.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function se(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==p&&9!==p&&11!==p)return n;if(!r&&((e?e.ownerDocument||e:m)!==C&&T(e),e=e||C,E)){if(11!==p&&(u=Z.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return n.push(a),n}else if(f&&(a=f.getElementById(i))&&y(e,a)&&a.id===i)return n.push(a),n}else{if(u[2])return H.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&d.getElementsByClassName&&e.getElementsByClassName)return H.apply(n,e.getElementsByClassName(i)),n}if(d.qsa&&!A[t+" "]&&(!v||!v.test(t))&&(1!==p||"object"!==e.nodeName.toLowerCase())){if(c=t,f=e,1===p&&U.test(t)){(s=e.getAttribute("id"))?s=s.replace(re,ie):e.setAttribute("id",s=k),o=(l=h(t)).length;while(o--)l[o]="#"+s+" "+xe(l[o]);c=l.join(","),f=ee.test(t)&&ye(e.parentNode)||e}try{return H.apply(n,f.querySelectorAll(c)),n}catch(e){A(t,!0)}finally{s===k&&e.removeAttribute("id")}}}return g(t.replace(B,"$1"),e,n,r)}function ue(){var r=[];return function e(t,n){return r.push(t+" ")>b.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function le(e){return e[k]=!0,e}function ce(e){var t=C.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){var n=e.split("|"),r=n.length;while(r--)b.attrHandle[n[r]]=t}function pe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function de(t){return function(e){return"input"===e.nodeName.toLowerCase()&&e.type===t}}function he(n){return function(e){var t=e.nodeName.toLowerCase();return("input"===t||"button"===t)&&e.type===n}}function ge(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&ae(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function ve(a){return le(function(o){return o=+o,le(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function ye(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}for(e in d=se.support={},i=se.isXML=function(e){var t=e.namespaceURI,n=(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||"HTML")},T=se.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:m;return r!==C&&9===r.nodeType&&r.documentElement&&(a=(C=r).documentElement,E=!i(C),m!==C&&(n=C.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",oe,!1):n.attachEvent&&n.attachEvent("onunload",oe)),d.attributes=ce(function(e){return e.className="i",!e.getAttribute("className")}),d.getElementsByTagName=ce(function(e){return e.appendChild(C.createComment("")),!e.getElementsByTagName("*").length}),d.getElementsByClassName=K.test(C.getElementsByClassName),d.getById=ce(function(e){return a.appendChild(e).id=k,!C.getElementsByName||!C.getElementsByName(k).length}),d.getById?(b.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(te,ne);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),b.find.TAG=d.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):d.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},b.find.CLASS=d.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&E)return t.getElementsByClassName(e)},s=[],v=[],(d.qsa=K.test(C.querySelectorAll))&&(ce(function(e){a.appendChild(e).innerHTML="<a id='"+k+"'></a><select id='"+k+"-\r\\' msallowcapture=''><option selected=''></option></select>",e.querySelectorAll("[msallowcapture^='']").length&&v.push("[*^$]="+M+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||v.push("\\["+M+"*(?:value|"+R+")"),e.querySelectorAll("[id~="+k+"-]").length||v.push("~="),e.querySelectorAll(":checked").length||v.push(":checked"),e.querySelectorAll("a#"+k+"+*").length||v.push(".#.+[+~]")}),ce(function(e){e.innerHTML="<a href='' disabled='disabled'></a><select disabled='disabled'><option/></select>";var t=C.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&v.push("name"+M+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&v.push(":enabled",":disabled"),a.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&v.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),v.push(",.*:")})),(d.matchesSelector=K.test(c=a.matches||a.webkitMatchesSelector||a.mozMatchesSelector||a.oMatchesSelector||a.msMatchesSelector))&&ce(function(e){d.disconnectedMatch=c.call(e,"*"),c.call(e,"[s!='']:x"),s.push("!=",$)}),v=v.length&&new RegExp(v.join("|")),s=s.length&&new RegExp(s.join("|")),t=K.test(a.compareDocumentPosition),y=t||K.test(a.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},D=t?function(e,t){if(e===t)return l=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)===(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!d.sortDetached&&t.compareDocumentPosition(e)===n?e===C||e.ownerDocument===m&&y(m,e)?-1:t===C||t.ownerDocument===m&&y(m,t)?1:u?P(u,e)-P(u,t):0:4&n?-1:1)}:function(e,t){if(e===t)return l=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e===C?-1:t===C?1:i?-1:o?1:u?P(u,e)-P(u,t):0;if(i===o)return pe(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(a[r]===s[r])r++;return r?pe(a[r],s[r]):a[r]===m?-1:s[r]===m?1:0}),C},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if((e.ownerDocument||e)!==C&&T(e),d.matchesSelector&&E&&!A[t+" "]&&(!s||!s.test(t))&&(!v||!v.test(t)))try{var n=c.call(e,t);if(n||d.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){A(t,!0)}return 0<se(t,C,null,[e]).length},se.contains=function(e,t){return(e.ownerDocument||e)!==C&&T(e),y(e,t)},se.attr=function(e,t){(e.ownerDocument||e)!==C&&T(e);var n=b.attrHandle[t.toLowerCase()],r=n&&j.call(b.attrHandle,t.toLowerCase())?n(e,t,!E):void 0;return void 0!==r?r:d.attributes||!E?e.getAttribute(t):(r=e.getAttributeNode(t))&&r.specified?r.value:null},se.escape=function(e){return(e+"").replace(re,ie)},se.error=function(e){throw new Error("Syntax error, unrecognized expression: "+e)},se.uniqueSort=function(e){var t,n=[],r=0,i=0;if(l=!d.detectDuplicates,u=!d.sortStable&&e.slice(0),e.sort(D),l){while(t=e[i++])t===e[i]&&(r=n.push(i));while(r--)e.splice(n[r],1)}return u=null,e},o=se.getText=function(e){var t,n="",r=0,i=e.nodeType;if(i){if(1===i||9===i||11===i){if("string"==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=o(e)}else if(3===i||4===i)return e.nodeValue}else while(t=e[r++])n+=o(t);return n},(b=se.selectors={cacheLength:50,createPseudo:le,match:G,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return G.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&X.test(n)&&(t=h(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=p[e+" "];return t||(t=new RegExp("(^|"+M+")"+e+"("+M+"|$)"))&&p(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=se.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1<t.indexOf(i):"$="===r?i&&t.slice(-i.length)===i:"~="===r?-1<(" "+t.replace(F," ")+" ").indexOf(i):"|="===r&&(t===i||t.slice(0,i.length+1)===i+"-"))}},CHILD:function(h,e,t,g,v){var y="nth"!==h.slice(0,3),m="last"!==h.slice(-4),x="of-type"===e;return 1===g&&0===v?function(e){return!!e.parentNode}:function(e,t,n){var r,i,o,a,s,u,l=y!==m?"nextSibling":"previousSibling",c=e.parentNode,f=x&&e.nodeName.toLowerCase(),p=!n&&!x,d=!1;if(c){if(y){while(l){a=e;while(a=a[l])if(x?a.nodeName.toLowerCase()===f:1===a.nodeType)return!1;u=l="only"===h&&!u&&"nextSibling"}return!0}if(u=[m?c.firstChild:c.lastChild],m&&p){d=(s=(r=(i=(o=(a=c)[k]||(a[k]={}))[a.uniqueID]||(o[a.uniqueID]={}))[h]||[])[0]===S&&r[1])&&r[2],a=s&&c.childNodes[s];while(a=++s&&a&&a[l]||(d=s=0)||u.pop())if(1===a.nodeType&&++d&&a===e){i[h]=[S,s,d];break}}else if(p&&(d=s=(r=(i=(o=(a=e)[k]||(a[k]={}))[a.uniqueID]||(o[a.uniqueID]={}))[h]||[])[0]===S&&r[1]),!1===d)while(a=++s&&a&&a[l]||(d=s=0)||u.pop())if((x?a.nodeName.toLowerCase()===f:1===a.nodeType)&&++d&&(p&&((i=(o=a[k]||(a[k]={}))[a.uniqueID]||(o[a.uniqueID]={}))[h]=[S,d]),a===e))break;return(d-=v)===g||d%g==0&&0<=d/g}}},PSEUDO:function(e,o){var t,a=b.pseudos[e]||b.setFilters[e.toLowerCase()]||se.error("unsupported pseudo: "+e);return a[k]?a(o):1<a.length?(t=[e,e,"",o],b.setFilters.hasOwnProperty(e.toLowerCase())?le(function(e,t){var n,r=a(e,o),i=r.length;while(i--)e[n=P(e,r[i])]=!(t[n]=r[i])}):function(e){return a(e,0,t)}):a}},pseudos:{not:le(function(e){var r=[],i=[],s=f(e.replace(B,"$1"));return s[k]?le(function(e,t,n,r){var i,o=s(e,null,r,[]),a=e.length;while(a--)(i=o[a])&&(e[a]=!(t[a]=i))}):function(e,t,n){return r[0]=e,s(r,null,n,i),r[0]=null,!i.pop()}}),has:le(function(t){return function(e){return 0<se(t,e).length}}),contains:le(function(t){return t=t.replace(te,ne),function(e){return-1<(e.textContent||o(e)).indexOf(t)}}),lang:le(function(n){return V.test(n||"")||se.error("unsupported lang: "+n),n=n.replace(te,ne).toLowerCase(),function(e){var t;do{if(t=E?e.lang:e.getAttribute("xml:lang")||e.getAttribute("lang"))return(t=t.toLowerCase())===n||0===t.indexOf(n+"-")}while((e=e.parentNode)&&1===e.nodeType);return!1}}),target:function(e){var t=n.location&&n.location.hash;return t&&t.slice(1)===e.id},root:function(e){return e===a},focus:function(e){return e===C.activeElement&&(!C.hasFocus||C.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:ge(!1),disabled:ge(!0),checked:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&!!e.checked||"option"===t&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,!0===e.selected},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeType<6)return!1;return!0},parent:function(e){return!b.pseudos.empty(e)},header:function(e){return J.test(e.nodeName)},input:function(e){return Q.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&"button"===e.type||"button"===t},text:function(e){var t;return"input"===e.nodeName.toLowerCase()&&"text"===e.type&&(null==(t=e.getAttribute("type"))||"text"===t.toLowerCase())},first:ve(function(){return[0]}),last:ve(function(e,t){return[t-1]}),eq:ve(function(e,t,n){return[n<0?n+t:n]}),even:ve(function(e,t){for(var n=0;n<t;n+=2)e.push(n);return e}),odd:ve(function(e,t){for(var n=1;n<t;n+=2)e.push(n);return e}),lt:ve(function(e,t,n){for(var r=n<0?n+t:t<n?t:n;0<=--r;)e.push(r);return e}),gt:ve(function(e,t,n){for(var r=n<0?n+t:n;++r<t;)e.push(r);return e})}}).pseudos.nth=b.pseudos.eq,{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})b.pseudos[e]=de(e);for(e in{submit:!0,reset:!0})b.pseudos[e]=he(e);function me(){}function xe(e){for(var t=0,n=e.length,r="";t<n;t++)r+=e[t].value;return r}function be(s,e,t){var u=e.dir,l=e.next,c=l||u,f=t&&"parentNode"===c,p=r++;return e.first?function(e,t,n){while(e=e[u])if(1===e.nodeType||f)return s(e,t,n);return!1}:function(e,t,n){var r,i,o,a=[S,p];if(n){while(e=e[u])if((1===e.nodeType||f)&&s(e,t,n))return!0}else while(e=e[u])if(1===e.nodeType||f)if(i=(o=e[k]||(e[k]={}))[e.uniqueID]||(o[e.uniqueID]={}),l&&l===e.nodeName.toLowerCase())e=e[u]||e;else{if((r=i[c])&&r[0]===S&&r[1]===p)return a[2]=r[2];if((i[c]=a)[2]=s(e,t,n))return!0}return!1}}function we(i){return 1<i.length?function(e,t,n){var r=i.length;while(r--)if(!i[r](e,t,n))return!1;return!0}:i[0]}function Te(e,t,n,r,i){for(var o,a=[],s=0,u=e.length,l=null!=t;s<u;s++)(o=e[s])&&(n&&!n(o,r,i)||(a.push(o),l&&t.push(s)));return a}function Ce(d,h,g,v,y,e){return v&&!v[k]&&(v=Ce(v)),y&&!y[k]&&(y=Ce(y,e)),le(function(e,t,n,r){var i,o,a,s=[],u=[],l=t.length,c=e||function(e,t,n){for(var r=0,i=t.length;r<i;r++)se(e,t[r],n);return n}(h||"*",n.nodeType?[n]:n,[]),f=!d||!e&&h?c:Te(c,s,d,n,r),p=g?y||(e?d:l||v)?[]:t:f;if(g&&g(f,p,n,r),v){i=Te(p,u),v(i,[],n,r),o=i.length;while(o--)(a=i[o])&&(p[u[o]]=!(f[u[o]]=a))}if(e){if(y||d){if(y){i=[],o=p.length;while(o--)(a=p[o])&&i.push(f[o]=a);y(null,p=[],i,r)}o=p.length;while(o--)(a=p[o])&&-1<(i=y?P(e,a):s[o])&&(e[i]=!(t[i]=a))}}else p=Te(p===t?p.splice(l,p.length):p),y?y(null,t,p,r):H.apply(t,p)})}function Ee(e){for(var i,t,n,r=e.length,o=b.relative[e[0].type],a=o||b.relative[" "],s=o?1:0,u=be(function(e){return e===i},a,!0),l=be(function(e){return-1<P(i,e)},a,!0),c=[function(e,t,n){var r=!o&&(n||t!==w)||((i=t).nodeType?u(e,t,n):l(e,t,n));return i=null,r}];s<r;s++)if(t=b.relative[e[s].type])c=[be(we(c),t)];else{if((t=b.filter[e[s].type].apply(null,e[s].matches))[k]){for(n=++s;n<r;n++)if(b.relative[e[n].type])break;return Ce(1<s&&we(c),1<s&&xe(e.slice(0,s-1).concat({value:" "===e[s-2].type?"*":""})).replace(B,"$1"),t,s<n&&Ee(e.slice(s,n)),n<r&&Ee(e=e.slice(n)),n<r&&xe(e))}c.push(t)}return we(c)}return me.prototype=b.filters=b.pseudos,b.setFilters=new me,h=se.tokenize=function(e,t){var n,r,i,o,a,s,u,l=x[e+" "];if(l)return t?0:l.slice(0);a=e,s=[],u=b.preFilter;while(a){for(o in n&&!(r=_.exec(a))||(r&&(a=a.slice(r[0].length)||a),s.push(i=[])),n=!1,(r=z.exec(a))&&(n=r.shift(),i.push({value:n,type:r[0].replace(B," ")}),a=a.slice(n.length)),b.filter)!(r=G[o].exec(a))||u[o]&&!(r=u[o](r))||(n=r.shift(),i.push({value:n,type:o,matches:r}),a=a.slice(n.length));if(!n)break}return t?a.length:a?se.error(e):x(e,s).slice(0)},f=se.compile=function(e,t){var n,v,y,m,x,r,i=[],o=[],a=N[e+" "];if(!a){t||(t=h(e)),n=t.length;while(n--)(a=Ee(t[n]))[k]?i.push(a):o.push(a);(a=N(e,(v=o,m=0<(y=i).length,x=0<v.length,r=function(e,t,n,r,i){var o,a,s,u=0,l="0",c=e&&[],f=[],p=w,d=e||x&&b.find.TAG("*",i),h=S+=null==p?1:Math.random()||.1,g=d.length;for(i&&(w=t===C||t||i);l!==g&&null!=(o=d[l]);l++){if(x&&o){a=0,t||o.ownerDocument===C||(T(o),n=!E);while(s=v[a++])if(s(o,t||C,n)){r.push(o);break}i&&(S=h)}m&&((o=!s&&o)&&u--,e&&c.push(o))}if(u+=l,m&&l!==u){a=0;while(s=y[a++])s(c,f,t,n);if(e){if(0<u)while(l--)c[l]||f[l]||(f[l]=q.call(r));f=Te(f)}H.apply(r,f),i&&!e&&0<f.length&&1<u+y.length&&se.uniqueSort(r)}return i&&(S=h,w=p),c},m?le(r):r))).selector=e}return a},g=se.select=function(e,t,n,r){var i,o,a,s,u,l="function"==typeof e&&e,c=!r&&h(e=l.selector||e);if(n=n||[],1===c.length){if(2<(o=c[0]=c[0].slice(0)).length&&"ID"===(a=o[0]).type&&9===t.nodeType&&E&&b.relative[o[1].type]){if(!(t=(b.find.ID(a.matches[0].replace(te,ne),t)||[])[0]))return n;l&&(t=t.parentNode),e=e.slice(o.shift().value.length)}i=G.needsContext.test(e)?0:o.length;while(i--){if(a=o[i],b.relative[s=a.type])break;if((u=b.find[s])&&(r=u(a.matches[0].replace(te,ne),ee.test(o[0].type)&&ye(t.parentNode)||t))){if(o.splice(i,1),!(e=r.length&&xe(o)))return H.apply(n,r),n;break}}}return(l||f(e,c))(r,t,!E,n,!t||ee.test(e)&&ye(t.parentNode)||t),n},d.sortStable=k.split("").sort(D).join("")===k,d.detectDuplicates=!!l,T(),d.sortDetached=ce(function(e){return 1&e.compareDocumentPosition(C.createElement("fieldset"))}),ce(function(e){return e.innerHTML="<a href='#'></a>","#"===e.firstChild.getAttribute("href")})||fe("type|href|height|width",function(e,t,n){if(!n)return e.getAttribute(t,"type"===t.toLowerCase()?1:2)}),d.attributes&&ce(function(e){return e.innerHTML="<input/>",e.firstChild.setAttribute("value",""),""===e.firstChild.getAttribute("value")})||fe("value",function(e,t,n){if(!n&&"input"===e.nodeName.toLowerCase())return e.defaultValue}),ce(function(e){return null==e.getAttribute("disabled")})||fe(R,function(e,t,n){var r;if(!n)return!0===e[t]?t.toLowerCase():(r=e.getAttributeNode(t))&&r.specified?r.value:null}),se}(C);k.find=h,k.expr=h.selectors,k.expr[":"]=k.expr.pseudos,k.uniqueSort=k.unique=h.uniqueSort,k.text=h.getText,k.isXMLDoc=h.isXML,k.contains=h.contains,k.escapeSelector=h.escape;var T=function(e,t,n){var r=[],i=void 0!==n;while((e=e[t])&&9!==e.nodeType)if(1===e.nodeType){if(i&&k(e).is(n))break;r.push(e)}return r},S=function(e,t){for(var n=[];e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n},N=k.expr.match.needsContext;function A(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()}var D=/^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function j(e,n,r){return m(n)?k.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?k.grep(e,function(e){return e===n!==r}):"string"!=typeof n?k.grep(e,function(e){return-1<i.call(n,e)!==r}):k.filter(n,e,r)}k.filter=function(e,t,n){var r=t[0];return n&&(e=":not("+e+")"),1===t.length&&1===r.nodeType?k.find.matchesSelector(r,e)?[r]:[]:k.find.matches(e,k.grep(t,function(e){return 1===e.nodeType}))},k.fn.extend({find:function(e){var t,n,r=this.length,i=this;if("string"!=typeof e)return this.pushStack(k(e).filter(function(){for(t=0;t<r;t++)if(k.contains(i[t],this))return!0}));for(n=this.pushStack([]),t=0;t<r;t++)k.find(e,i[t],n);return 1<r?k.uniqueSort(n):n},filter:function(e){return this.pushStack(j(this,e||[],!1))},not:function(e){return this.pushStack(j(this,e||[],!0))},is:function(e){return!!j(this,"string"==typeof e&&N.test(e)?k(e):e||[],!1).length}});var q,L=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/;(k.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||q,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:L.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof k?t[0]:t,k.merge(this,k.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:E,!0)),D.test(r[1])&&k.isPlainObject(t))for(r in t)m(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=E.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):m(e)?void 0!==n.ready?n.ready(e):e(k):k.makeArray(e,this)}).prototype=k.fn,q=k(E);var H=/^(?:parents|prev(?:Until|All))/,O={children:!0,contents:!0,next:!0,prev:!0};function P(e,t){while((e=e[t])&&1!==e.nodeType);return e}k.fn.extend({has:function(e){var t=k(e,this),n=t.length;return this.filter(function(){for(var e=0;e<n;e++)if(k.contains(this,t[e]))return!0})},closest:function(e,t){var n,r=0,i=this.length,o=[],a="string"!=typeof e&&k(e);if(!N.test(e))for(;r<i;r++)for(n=this[r];n&&n!==t;n=n.parentNode)if(n.nodeType<11&&(a?-1<a.index(n):1===n.nodeType&&k.find.matchesSelector(n,e))){o.push(n);break}return this.pushStack(1<o.length?k.uniqueSort(o):o)},index:function(e){return e?"string"==typeof e?i.call(k(e),this[0]):i.call(this,e.jquery?e[0]:e):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){return this.pushStack(k.uniqueSort(k.merge(this.get(),k(e,t))))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}}),k.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return T(e,"parentNode")},parentsUntil:function(e,t,n){return T(e,"parentNode",n)},next:function(e){return P(e,"nextSibling")},prev:function(e){return P(e,"previousSibling")},nextAll:function(e){return T(e,"nextSibling")},prevAll:function(e){return T(e,"previousSibling")},nextUntil:function(e,t,n){return T(e,"nextSibling",n)},prevUntil:function(e,t,n){return T(e,"previousSibling",n)},siblings:function(e){return S((e.parentNode||{}).firstChild,e)},children:function(e){return S(e.firstChild)},contents:function(e){return"undefined"!=typeof e.contentDocument?e.contentDocument:(A(e,"template")&&(e=e.content||e),k.merge([],e.childNodes))}},function(r,i){k.fn[r]=function(e,t){var n=k.map(this,i,e);return"Until"!==r.slice(-5)&&(t=e),t&&"string"==typeof t&&(n=k.filter(t,n)),1<this.length&&(O[r]||k.uniqueSort(n),H.test(r)&&n.reverse()),this.pushStack(n)}});var R=/[^\x20\t\r\n\f]+/g;function M(e){return e}function I(e){throw e}function W(e,t,n,r){var i;try{e&&m(i=e.promise)?i.call(e).done(t).fail(n):e&&m(i=e.then)?i.call(e,t,n):t.apply(void 0,[e].slice(r))}catch(e){n.apply(void 0,[e])}}k.Callbacks=function(r){var e,n;r="string"==typeof r?(e=r,n={},k.each(e.match(R)||[],function(e,t){n[t]=!0}),n):k.extend({},r);var i,t,o,a,s=[],u=[],l=-1,c=function(){for(a=a||r.once,o=i=!0;u.length;l=-1){t=u.shift();while(++l<s.length)!1===s[l].apply(t[0],t[1])&&r.stopOnFalse&&(l=s.length,t=!1)}r.memory||(t=!1),i=!1,a&&(s=t?[]:"")},f={add:function(){return s&&(t&&!i&&(l=s.length-1,u.push(t)),function n(e){k.each(e,function(e,t){m(t)?r.unique&&f.has(t)||s.push(t):t&&t.length&&"string"!==w(t)&&n(t)})}(arguments),t&&!i&&c()),this},remove:function(){return k.each(arguments,function(e,t){var n;while(-1<(n=k.inArray(t,s,n)))s.splice(n,1),n<=l&&l--}),this},has:function(e){return e?-1<k.inArray(e,s):0<s.length},empty:function(){return s&&(s=[]),this},disable:function(){return a=u=[],s=t="",this},disabled:function(){return!s},lock:function(){return a=u=[],t||i||(s=t=""),this},locked:function(){return!!a},fireWith:function(e,t){return a||(t=[e,(t=t||[]).slice?t.slice():t],u.push(t),i||c()),this},fire:function(){return f.fireWith(this,arguments),this},fired:function(){return!!o}};return f},k.extend({Deferred:function(e){var o=[["notify","progress",k.Callbacks("memory"),k.Callbacks("memory"),2],["resolve","done",k.Callbacks("once memory"),k.Callbacks("once memory"),0,"resolved"],["reject","fail",k.Callbacks("once memory"),k.Callbacks("once memory"),1,"rejected"]],i="pending",a={state:function(){return i},always:function(){return s.done(arguments).fail(arguments),this},"catch":function(e){return a.then(null,e)},pipe:function(){var i=arguments;return k.Deferred(function(r){k.each(o,function(e,t){var n=m(i[t[4]])&&i[t[4]];s[t[1]](function(){var e=n&&n.apply(this,arguments);e&&m(e.promise)?e.promise().progress(r.notify).done(r.resolve).fail(r.reject):r[t[0]+"With"](this,n?[e]:arguments)})}),i=null}).promise()},then:function(t,n,r){var u=0;function l(i,o,a,s){return function(){var n=this,r=arguments,e=function(){var e,t;if(!(i<u)){if((e=a.apply(n,r))===o.promise())throw new TypeError("Thenable self-resolution");t=e&&("object"==typeof e||"function"==typeof e)&&e.then,m(t)?s?t.call(e,l(u,o,M,s),l(u,o,I,s)):(u++,t.call(e,l(u,o,M,s),l(u,o,I,s),l(u,o,M,o.notifyWith))):(a!==M&&(n=void 0,r=[e]),(s||o.resolveWith)(n,r))}},t=s?e:function(){try{e()}catch(e){k.Deferred.exceptionHook&&k.Deferred.exceptionHook(e,t.stackTrace),u<=i+1&&(a!==I&&(n=void 0,r=[e]),o.rejectWith(n,r))}};i?t():(k.Deferred.getStackHook&&(t.stackTrace=k.Deferred.getStackHook()),C.setTimeout(t))}}return k.Deferred(function(e){o[0][3].add(l(0,e,m(r)?r:M,e.notifyWith)),o[1][3].add(l(0,e,m(t)?t:M)),o[2][3].add(l(0,e,m(n)?n:I))}).promise()},promise:function(e){return null!=e?k.extend(e,a):a}},s={};return k.each(o,function(e,t){var n=t[2],r=t[5];a[t[1]]=n.add,r&&n.add(function(){i=r},o[3-e][2].disable,o[3-e][3].disable,o[0][2].lock,o[0][3].lock),n.add(t[3].fire),s[t[0]]=function(){return s[t[0]+"With"](this===s?void 0:this,arguments),this},s[t[0]+"With"]=n.fireWith}),a.promise(s),e&&e.call(s,s),s},when:function(e){var n=arguments.length,t=n,r=Array(t),i=s.call(arguments),o=k.Deferred(),a=function(t){return function(e){r[t]=this,i[t]=1<arguments.length?s.call(arguments):e,--n||o.resolveWith(r,i)}};if(n<=1&&(W(e,o.done(a(t)).resolve,o.reject,!n),"pending"===o.state()||m(i[t]&&i[t].then)))return o.then();while(t--)W(i[t],a(t),o.reject);return o.promise()}});var $=/^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;k.Deferred.exceptionHook=function(e,t){C.console&&C.console.warn&&e&&$.test(e.name)&&C.console.warn("jQuery.Deferred exception: "+e.message,e.stack,t)},k.readyException=function(e){C.setTimeout(function(){throw e})};var F=k.Deferred();function B(){E.removeEventListener("DOMContentLoaded",B),C.removeEventListener("load",B),k.ready()}k.fn.ready=function(e){return F.then(e)["catch"](function(e){k.readyException(e)}),this},k.extend({isReady:!1,readyWait:1,ready:function(e){(!0===e?--k.readyWait:k.isReady)||(k.isReady=!0)!==e&&0<--k.readyWait||F.resolveWith(E,[k])}}),k.ready.then=F.then,"complete"===E.readyState||"loading"!==E.readyState&&!E.documentElement.doScroll?C.setTimeout(k.ready):(E.addEventListener("DOMContentLoaded",B),C.addEventListener("load",B));var _=function(e,t,n,r,i,o,a){var s=0,u=e.length,l=null==n;if("object"===w(n))for(s in i=!0,n)_(e,t,s,n[s],!0,o,a);else if(void 0!==r&&(i=!0,m(r)||(a=!0),l&&(a?(t.call(e,r),t=null):(l=t,t=function(e,t,n){return l.call(k(e),n)})),t))for(;s<u;s++)t(e[s],n,a?r:r.call(e[s],s,t(e[s],n)));return i?e:l?t.call(e):u?t(e[0],n):o},z=/^-ms-/,U=/-([a-z])/g;function X(e,t){return t.toUpperCase()}function V(e){return e.replace(z,"ms-").replace(U,X)}var G=function(e){return 1===e.nodeType||9===e.nodeType||!+e.nodeType};function Y(){this.expando=k.expando+Y.uid++}Y.uid=1,Y.prototype={cache:function(e){var t=e[this.expando];return t||(t={},G(e)&&(e.nodeType?e[this.expando]=t:Object.defineProperty(e,this.expando,{value:t,configurable:!0}))),t},set:function(e,t,n){var r,i=this.cache(e);if("string"==typeof t)i[V(t)]=n;else for(r in t)i[V(r)]=t[r];return i},get:function(e,t){return void 0===t?this.cache(e):e[this.expando]&&e[this.expando][V(t)]},access:function(e,t,n){return void 0===t||t&&"string"==typeof t&&void 0===n?this.get(e,t):(this.set(e,t,n),void 0!==n?n:t)},remove:function(e,t){var n,r=e[this.expando];if(void 0!==r){if(void 0!==t){n=(t=Array.isArray(t)?t.map(V):(t=V(t))in r?[t]:t.match(R)||[]).length;while(n--)delete r[t[n]]}(void 0===t||k.isEmptyObject(r))&&(e.nodeType?e[this.expando]=void 0:delete e[this.expando])}},hasData:function(e){var t=e[this.expando];return void 0!==t&&!k.isEmptyObject(t)}};var Q=new Y,J=new Y,K=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,Z=/[A-Z]/g;function ee(e,t,n){var r,i;if(void 0===n&&1===e.nodeType)if(r="data-"+t.replace(Z,"-$&").toLowerCase(),"string"==typeof(n=e.getAttribute(r))){try{n="true"===(i=n)||"false"!==i&&("null"===i?null:i===+i+""?+i:K.test(i)?JSON.parse(i):i)}catch(e){}J.set(e,t,n)}else n=void 0;return n}k.extend({hasData:function(e){return J.hasData(e)||Q.hasData(e)},data:function(e,t,n){return J.access(e,t,n)},removeData:function(e,t){J.remove(e,t)},_data:function(e,t,n){return Q.access(e,t,n)},_removeData:function(e,t){Q.remove(e,t)}}),k.fn.extend({data:function(n,e){var t,r,i,o=this[0],a=o&&o.attributes;if(void 0===n){if(this.length&&(i=J.get(o),1===o.nodeType&&!Q.get(o,"hasDataAttrs"))){t=a.length;while(t--)a[t]&&0===(r=a[t].name).indexOf("data-")&&(r=V(r.slice(5)),ee(o,r,i[r]));Q.set(o,"hasDataAttrs",!0)}return i}return"object"==typeof n?this.each(function(){J.set(this,n)}):_(this,function(e){var t;if(o&&void 0===e)return void 0!==(t=J.get(o,n))?t:void 0!==(t=ee(o,n))?t:void 0;this.each(function(){J.set(this,n,e)})},null,e,1<arguments.length,null,!0)},removeData:function(e){return this.each(function(){J.remove(this,e)})}}),k.extend({queue:function(e,t,n){var r;if(e)return t=(t||"fx")+"queue",r=Q.get(e,t),n&&(!r||Array.isArray(n)?r=Q.access(e,t,k.makeArray(n)):r.push(n)),r||[]},dequeue:function(e,t){t=t||"fx";var n=k.queue(e,t),r=n.length,i=n.shift(),o=k._queueHooks(e,t);"inprogress"===i&&(i=n.shift(),r--),i&&("fx"===t&&n.unshift("inprogress"),delete o.stop,i.call(e,function(){k.dequeue(e,t)},o)),!r&&o&&o.empty.fire()},_queueHooks:function(e,t){var n=t+"queueHooks";return Q.get(e,n)||Q.access(e,n,{empty:k.Callbacks("once memory").add(function(){Q.remove(e,[t+"queue",n])})})}}),k.fn.extend({queue:function(t,n){var e=2;return"string"!=typeof t&&(n=t,t="fx",e--),arguments.length<e?k.queue(this[0],t):void 0===n?this:this.each(function(){var e=k.queue(this,t,n);k._queueHooks(this,t),"fx"===t&&"inprogress"!==e[0]&&k.dequeue(this,t)})},dequeue:function(e){return this.each(function(){k.dequeue(this,e)})},clearQueue:function(e){return this.queue(e||"fx",[])},promise:function(e,t){var n,r=1,i=k.Deferred(),o=this,a=this.length,s=function(){--r||i.resolveWith(o,[o])};"string"!=typeof e&&(t=e,e=void 0),e=e||"fx";while(a--)(n=Q.get(o[a],e+"queueHooks"))&&n.empty&&(r++,n.empty.add(s));return s(),i.promise(t)}});var te=/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source,ne=new RegExp("^(?:([+-])=|)("+te+")([a-z%]*)$","i"),re=["Top","Right","Bottom","Left"],ie=E.documentElement,oe=function(e){return k.contains(e.ownerDocument,e)},ae={composed:!0};ie.getRootNode&&(oe=function(e){return k.contains(e.ownerDocument,e)||e.getRootNode(ae)===e.ownerDocument});var se=function(e,t){return"none"===(e=t||e).style.display||""===e.style.display&&oe(e)&&"none"===k.css(e,"display")},ue=function(e,t,n,r){var i,o,a={};for(o in t)a[o]=e.style[o],e.style[o]=t[o];for(o in i=n.apply(e,r||[]),t)e.style[o]=a[o];return i};function le(e,t,n,r){var i,o,a=20,s=r?function(){return r.cur()}:function(){return k.css(e,t,"")},u=s(),l=n&&n[3]||(k.cssNumber[t]?"":"px"),c=e.nodeType&&(k.cssNumber[t]||"px"!==l&&+u)&&ne.exec(k.css(e,t));if(c&&c[3]!==l){u/=2,l=l||c[3],c=+u||1;while(a--)k.style(e,t,c+l),(1-o)*(1-(o=s()/u||.5))<=0&&(a=0),c/=o;c*=2,k.style(e,t,c+l),n=n||[]}return n&&(c=+c||+u||0,i=n[1]?c+(n[1]+1)*n[2]:+n[2],r&&(r.unit=l,r.start=c,r.end=i)),i}var ce={};function fe(e,t){for(var n,r,i,o,a,s,u,l=[],c=0,f=e.length;c<f;c++)(r=e[c]).style&&(n=r.style.display,t?("none"===n&&(l[c]=Q.get(r,"display")||null,l[c]||(r.style.display="")),""===r.style.display&&se(r)&&(l[c]=(u=a=o=void 0,a=(i=r).ownerDocument,s=i.nodeName,(u=ce[s])||(o=a.body.appendChild(a.createElement(s)),u=k.css(o,"display"),o.parentNode.removeChild(o),"none"===u&&(u="block"),ce[s]=u)))):"none"!==n&&(l[c]="none",Q.set(r,"display",n)));for(c=0;c<f;c++)null!=l[c]&&(e[c].style.display=l[c]);return e}k.fn.extend({show:function(){return fe(this,!0)},hide:function(){return fe(this)},toggle:function(e){return"boolean"==typeof e?e?this.show():this.hide():this.each(function(){se(this)?k(this).show():k(this).hide()})}});var pe=/^(?:checkbox|radio)$/i,de=/<([a-z][^\/\0>\x20\t\r\n\f]*)/i,he=/^$|^module$|\/(?:java|ecma)script/i,ge={option:[1,"<select multiple='multiple'>","</select>"],thead:[1,"<table>","</table>"],col:[2,"<table><colgroup>","</colgroup></table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],_default:[0,"",""]};function ve(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&A(e,t)?k.merge([e],n):n}function ye(e,t){for(var n=0,r=e.length;n<r;n++)Q.set(e[n],"globalEval",!t||Q.get(t[n],"globalEval"))}ge.optgroup=ge.option,ge.tbody=ge.tfoot=ge.colgroup=ge.caption=ge.thead,ge.th=ge.td;var me,xe,be=/<|&#?\w+;/;function we(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),p=[],d=0,h=e.length;d<h;d++)if((o=e[d])||0===o)if("object"===w(o))k.merge(p,o.nodeType?[o]:o);else if(be.test(o)){a=a||f.appendChild(t.createElement("div")),s=(de.exec(o)||["",""])[1].toLowerCase(),u=ge[s]||ge._default,a.innerHTML=u[1]+k.htmlPrefilter(o)+u[2],c=u[0];while(c--)a=a.lastChild;k.merge(p,a.childNodes),(a=f.firstChild).textContent=""}else p.push(t.createTextNode(o));f.textContent="",d=0;while(o=p[d++])if(r&&-1<k.inArray(o,r))i&&i.push(o);else if(l=oe(o),a=ve(f.appendChild(o),"script"),l&&ye(a),n){c=0;while(o=a[c++])he.test(o.type||"")&&n.push(o)}return f}me=E.createDocumentFragment().appendChild(E.createElement("div")),(xe=E.createElement("input")).setAttribute("type","radio"),xe.setAttribute("checked","checked"),xe.setAttribute("name","t"),me.appendChild(xe),y.checkClone=me.cloneNode(!0).cloneNode(!0).lastChild.checked,me.innerHTML="<textarea>x</textarea>",y.noCloneChecked=!!me.cloneNode(!0).lastChild.defaultValue;var Te=/^key/,Ce=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,Ee=/^([^.]*)(?:\.(.+)|)/;function ke(){return!0}function Se(){return!1}function Ne(e,t){return e===function(){try{return E.activeElement}catch(e){}}()==("focus"===t)}function Ae(e,t,n,r,i,o){var a,s;if("object"==typeof t){for(s in"string"!=typeof n&&(r=r||n,n=void 0),t)Ae(e,s,n,r,t[s],o);return e}if(null==r&&null==i?(i=n,r=n=void 0):null==i&&("string"==typeof n?(i=r,r=void 0):(i=r,r=n,n=void 0)),!1===i)i=Se;else if(!i)return e;return 1===o&&(a=i,(i=function(e){return k().off(e),a.apply(this,arguments)}).guid=a.guid||(a.guid=k.guid++)),e.each(function(){k.event.add(this,t,i,r,n)})}function De(e,i,o){o?(Q.set(e,i,!1),k.event.add(e,i,{namespace:!1,handler:function(e){var t,n,r=Q.get(this,i);if(1&e.isTrigger&&this[i]){if(r.length)(k.event.special[i]||{}).delegateType&&e.stopPropagation();else if(r=s.call(arguments),Q.set(this,i,r),t=o(this,i),this[i](),r!==(n=Q.get(this,i))||t?Q.set(this,i,!1):n={},r!==n)return e.stopImmediatePropagation(),e.preventDefault(),n.value}else r.length&&(Q.set(this,i,{value:k.event.trigger(k.extend(r[0],k.Event.prototype),r.slice(1),this)}),e.stopImmediatePropagation())}})):void 0===Q.get(e,i)&&k.event.add(e,i,ke)}k.event={global:{},add:function(t,e,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,v=Q.get(t);if(v){n.handler&&(n=(o=n).handler,i=o.selector),i&&k.find.matchesSelector(ie,i),n.guid||(n.guid=k.guid++),(u=v.events)||(u=v.events={}),(a=v.handle)||(a=v.handle=function(e){return"undefined"!=typeof k&&k.event.triggered!==e.type?k.event.dispatch.apply(t,arguments):void 0}),l=(e=(e||"").match(R)||[""]).length;while(l--)d=g=(s=Ee.exec(e[l])||[])[1],h=(s[2]||"").split(".").sort(),d&&(f=k.event.special[d]||{},d=(i?f.delegateType:f.bindType)||d,f=k.event.special[d]||{},c=k.extend({type:d,origType:g,data:r,handler:n,guid:n.guid,selector:i,needsContext:i&&k.expr.match.needsContext.test(i),namespace:h.join(".")},o),(p=u[d])||((p=u[d]=[]).delegateCount=0,f.setup&&!1!==f.setup.call(t,r,h,a)||t.addEventListener&&t.addEventListener(d,a)),f.add&&(f.add.call(t,c),c.handler.guid||(c.handler.guid=n.guid)),i?p.splice(p.delegateCount++,0,c):p.push(c),k.event.global[d]=!0)}},remove:function(e,t,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,v=Q.hasData(e)&&Q.get(e);if(v&&(u=v.events)){l=(t=(t||"").match(R)||[""]).length;while(l--)if(d=g=(s=Ee.exec(t[l])||[])[1],h=(s[2]||"").split(".").sort(),d){f=k.event.special[d]||{},p=u[d=(r?f.delegateType:f.bindType)||d]||[],s=s[2]&&new RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"),a=o=p.length;while(o--)c=p[o],!i&&g!==c.origType||n&&n.guid!==c.guid||s&&!s.test(c.namespace)||r&&r!==c.selector&&("**"!==r||!c.selector)||(p.splice(o,1),c.selector&&p.delegateCount--,f.remove&&f.remove.call(e,c));a&&!p.length&&(f.teardown&&!1!==f.teardown.call(e,h,v.handle)||k.removeEvent(e,d,v.handle),delete u[d])}else for(d in u)k.event.remove(e,d+t[l],n,r,!0);k.isEmptyObject(u)&&Q.remove(e,"handle events")}},dispatch:function(e){var t,n,r,i,o,a,s=k.event.fix(e),u=new Array(arguments.length),l=(Q.get(this,"events")||{})[s.type]||[],c=k.event.special[s.type]||{};for(u[0]=s,t=1;t<arguments.length;t++)u[t]=arguments[t];if(s.delegateTarget=this,!c.preDispatch||!1!==c.preDispatch.call(this,s)){a=k.event.handlers.call(this,s,l),t=0;while((i=a[t++])&&!s.isPropagationStopped()){s.currentTarget=i.elem,n=0;while((o=i.handlers[n++])&&!s.isImmediatePropagationStopped())s.rnamespace&&!1!==o.namespace&&!s.rnamespace.test(o.namespace)||(s.handleObj=o,s.data=o.data,void 0!==(r=((k.event.special[o.origType]||{}).handle||o.handler).apply(i.elem,u))&&!1===(s.result=r)&&(s.preventDefault(),s.stopPropagation()))}return c.postDispatch&&c.postDispatch.call(this,s),s.result}},handlers:function(e,t){var n,r,i,o,a,s=[],u=t.delegateCount,l=e.target;if(u&&l.nodeType&&!("click"===e.type&&1<=e.button))for(;l!==this;l=l.parentNode||this)if(1===l.nodeType&&("click"!==e.type||!0!==l.disabled)){for(o=[],a={},n=0;n<u;n++)void 0===a[i=(r=t[n]).selector+" "]&&(a[i]=r.needsContext?-1<k(i,this).index(l):k.find(i,this,null,[l]).length),a[i]&&o.push(r);o.length&&s.push({elem:l,handlers:o})}return l=this,u<t.length&&s.push({elem:l,handlers:t.slice(u)}),s},addProp:function(t,e){Object.defineProperty(k.Event.prototype,t,{enumerable:!0,configurable:!0,get:m(e)?function(){if(this.originalEvent)return e(this.originalEvent)}:function(){if(this.originalEvent)return this.originalEvent[t]},set:function(e){Object.defineProperty(this,t,{enumerable:!0,configurable:!0,writable:!0,value:e})}})},fix:function(e){return e[k.expando]?e:new k.Event(e)},special:{load:{noBubble:!0},click:{setup:function(e){var t=this||e;return pe.test(t.type)&&t.click&&A(t,"input")&&De(t,"click",ke),!1},trigger:function(e){var t=this||e;return pe.test(t.type)&&t.click&&A(t,"input")&&De(t,"click"),!0},_default:function(e){var t=e.target;return pe.test(t.type)&&t.click&&A(t,"input")&&Q.get(t,"click")||A(t,"a")}},beforeunload:{postDispatch:function(e){void 0!==e.result&&e.originalEvent&&(e.originalEvent.returnValue=e.result)}}}},k.removeEvent=function(e,t,n){e.removeEventListener&&e.removeEventListener(t,n)},k.Event=function(e,t){if(!(this instanceof k.Event))return new k.Event(e,t);e&&e.type?(this.originalEvent=e,this.type=e.type,this.isDefaultPrevented=e.defaultPrevented||void 0===e.defaultPrevented&&!1===e.returnValue?ke:Se,this.target=e.target&&3===e.target.nodeType?e.target.parentNode:e.target,this.currentTarget=e.currentTarget,this.relatedTarget=e.relatedTarget):this.type=e,t&&k.extend(this,t),this.timeStamp=e&&e.timeStamp||Date.now(),this[k.expando]=!0},k.Event.prototype={constructor:k.Event,isDefaultPrevented:Se,isPropagationStopped:Se,isImmediatePropagationStopped:Se,isSimulated:!1,preventDefault:function(){var e=this.originalEvent;this.isDefaultPrevented=ke,e&&!this.isSimulated&&e.preventDefault()},stopPropagation:function(){var e=this.originalEvent;this.isPropagationStopped=ke,e&&!this.isSimulated&&e.stopPropagation()},stopImmediatePropagation:function(){var e=this.originalEvent;this.isImmediatePropagationStopped=ke,e&&!this.isSimulated&&e.stopImmediatePropagation(),this.stopPropagation()}},k.each({altKey:!0,bubbles:!0,cancelable:!0,changedTouches:!0,ctrlKey:!0,detail:!0,eventPhase:!0,metaKey:!0,pageX:!0,pageY:!0,shiftKey:!0,view:!0,"char":!0,code:!0,charCode:!0,key:!0,keyCode:!0,button:!0,buttons:!0,clientX:!0,clientY:!0,offsetX:!0,offsetY:!0,pointerId:!0,pointerType:!0,screenX:!0,screenY:!0,targetTouches:!0,toElement:!0,touches:!0,which:function(e){var t=e.button;return null==e.which&&Te.test(e.type)?null!=e.charCode?e.charCode:e.keyCode:!e.which&&void 0!==t&&Ce.test(e.type)?1&t?1:2&t?3:4&t?2:0:e.which}},k.event.addProp),k.each({focus:"focusin",blur:"focusout"},function(e,t){k.event.special[e]={setup:function(){return De(this,e,Ne),!1},trigger:function(){return De(this,e),!0},delegateType:t}}),k.each({mouseenter:"mouseover",mouseleave:"mouseout",pointerenter:"pointerover",pointerleave:"pointerout"},function(e,i){k.event.special[e]={delegateType:i,bindType:i,handle:function(e){var t,n=e.relatedTarget,r=e.handleObj;return n&&(n===this||k.contains(this,n))||(e.type=r.origType,t=r.handler.apply(this,arguments),e.type=i),t}}}),k.fn.extend({on:function(e,t,n,r){return Ae(this,e,t,n,r)},one:function(e,t,n,r){return Ae(this,e,t,n,r,1)},off:function(e,t,n){var r,i;if(e&&e.preventDefault&&e.handleObj)return r=e.handleObj,k(e.delegateTarget).off(r.namespace?r.origType+"."+r.namespace:r.origType,r.selector,r.handler),this;if("object"==typeof e){for(i in e)this.off(i,t,e[i]);return this}return!1!==t&&"function"!=typeof t||(n=t,t=void 0),!1===n&&(n=Se),this.each(function(){k.event.remove(this,e,n,t)})}});var je=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>\x20\t\r\n\f]*)[^>]*)\/>/gi,qe=/<script|<style|<link/i,Le=/checked\s*(?:[^=]|=\s*.checked.)/i,He=/^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g;function Oe(e,t){return A(e,"table")&&A(11!==t.nodeType?t:t.firstChild,"tr")&&k(e).children("tbody")[0]||e}function Pe(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function Re(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Me(e,t){var n,r,i,o,a,s,u,l;if(1===t.nodeType){if(Q.hasData(e)&&(o=Q.access(e),a=Q.set(t,o),l=o.events))for(i in delete a.handle,a.events={},l)for(n=0,r=l[i].length;n<r;n++)k.event.add(t,i,l[i][n]);J.hasData(e)&&(s=J.access(e),u=k.extend({},s),J.set(t,u))}}function Ie(n,r,i,o){r=g.apply([],r);var e,t,a,s,u,l,c=0,f=n.length,p=f-1,d=r[0],h=m(d);if(h||1<f&&"string"==typeof d&&!y.checkClone&&Le.test(d))return n.each(function(e){var t=n.eq(e);h&&(r[0]=d.call(this,e,t.html())),Ie(t,r,i,o)});if(f&&(t=(e=we(r,n[0].ownerDocument,!1,n,o)).firstChild,1===e.childNodes.length&&(e=t),t||o)){for(s=(a=k.map(ve(e,"script"),Pe)).length;c<f;c++)u=e,c!==p&&(u=k.clone(u,!0,!0),s&&k.merge(a,ve(u,"script"))),i.call(n[c],u,c);if(s)for(l=a[a.length-1].ownerDocument,k.map(a,Re),c=0;c<s;c++)u=a[c],he.test(u.type||"")&&!Q.access(u,"globalEval")&&k.contains(l,u)&&(u.src&&"module"!==(u.type||"").toLowerCase()?k._evalUrl&&!u.noModule&&k._evalUrl(u.src,{nonce:u.nonce||u.getAttribute("nonce")}):b(u.textContent.replace(He,""),u,l))}return n}function We(e,t,n){for(var r,i=t?k.filter(t,e):e,o=0;null!=(r=i[o]);o++)n||1!==r.nodeType||k.cleanData(ve(r)),r.parentNode&&(n&&oe(r)&&ye(ve(r,"script")),r.parentNode.removeChild(r));return e}k.extend({htmlPrefilter:function(e){return e.replace(je,"<$1></$2>")},clone:function(e,t,n){var r,i,o,a,s,u,l,c=e.cloneNode(!0),f=oe(e);if(!(y.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||k.isXMLDoc(e)))for(a=ve(c),r=0,i=(o=ve(e)).length;r<i;r++)s=o[r],u=a[r],void 0,"input"===(l=u.nodeName.toLowerCase())&&pe.test(s.type)?u.checked=s.checked:"input"!==l&&"textarea"!==l||(u.defaultValue=s.defaultValue);if(t)if(n)for(o=o||ve(e),a=a||ve(c),r=0,i=o.length;r<i;r++)Me(o[r],a[r]);else Me(e,c);return 0<(a=ve(c,"script")).length&&ye(a,!f&&ve(e,"script")),c},cleanData:function(e){for(var t,n,r,i=k.event.special,o=0;void 0!==(n=e[o]);o++)if(G(n)){if(t=n[Q.expando]){if(t.events)for(r in t.events)i[r]?k.event.remove(n,r):k.removeEvent(n,r,t.handle);n[Q.expando]=void 0}n[J.expando]&&(n[J.expando]=void 0)}}}),k.fn.extend({detach:function(e){return We(this,e,!0)},remove:function(e){return We(this,e)},text:function(e){return _(this,function(e){return void 0===e?k.text(this):this.empty().each(function(){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||(this.textContent=e)})},null,e,arguments.length)},append:function(){return Ie(this,arguments,function(e){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||Oe(this,e).appendChild(e)})},prepend:function(){return Ie(this,arguments,function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=Oe(this,e);t.insertBefore(e,t.firstChild)}})},before:function(){return Ie(this,arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this)})},after:function(){return Ie(this,arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)})},empty:function(){for(var e,t=0;null!=(e=this[t]);t++)1===e.nodeType&&(k.cleanData(ve(e,!1)),e.textContent="");return this},clone:function(e,t){return e=null!=e&&e,t=null==t?e:t,this.map(function(){return k.clone(this,e,t)})},html:function(e){return _(this,function(e){var t=this[0]||{},n=0,r=this.length;if(void 0===e&&1===t.nodeType)return t.innerHTML;if("string"==typeof e&&!qe.test(e)&&!ge[(de.exec(e)||["",""])[1].toLowerCase()]){e=k.htmlPrefilter(e);try{for(;n<r;n++)1===(t=this[n]||{}).nodeType&&(k.cleanData(ve(t,!1)),t.innerHTML=e);t=0}catch(e){}}t&&this.empty().append(e)},null,e,arguments.length)},replaceWith:function(){var n=[];return Ie(this,arguments,function(e){var t=this.parentNode;k.inArray(this,n)<0&&(k.cleanData(ve(this)),t&&t.replaceChild(e,this))},n)}}),k.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(e,a){k.fn[e]=function(e){for(var t,n=[],r=k(e),i=r.length-1,o=0;o<=i;o++)t=o===i?this:this.clone(!0),k(r[o])[a](t),u.apply(n,t.get());return this.pushStack(n)}});var $e=new RegExp("^("+te+")(?!px)[a-z%]+$","i"),Fe=function(e){var t=e.ownerDocument.defaultView;return t&&t.opener||(t=C),t.getComputedStyle(e)},Be=new RegExp(re.join("|"),"i");function _e(e,t,n){var r,i,o,a,s=e.style;return(n=n||Fe(e))&&(""!==(a=n.getPropertyValue(t)||n[t])||oe(e)||(a=k.style(e,t)),!y.pixelBoxStyles()&&$e.test(a)&&Be.test(t)&&(r=s.width,i=s.minWidth,o=s.maxWidth,s.minWidth=s.maxWidth=s.width=a,a=n.width,s.width=r,s.minWidth=i,s.maxWidth=o)),void 0!==a?a+"":a}function ze(e,t){return{get:function(){if(!e())return(this.get=t).apply(this,arguments);delete this.get}}}!function(){function e(){if(u){s.style.cssText="position:absolute;left:-11111px;width:60px;margin-top:1px;padding:0;border:0",u.style.cssText="position:relative;display:block;box-sizing:border-box;overflow:scroll;margin:auto;border:1px;padding:1px;width:60%;top:1%",ie.appendChild(s).appendChild(u);var e=C.getComputedStyle(u);n="1%"!==e.top,a=12===t(e.marginLeft),u.style.right="60%",o=36===t(e.right),r=36===t(e.width),u.style.position="absolute",i=12===t(u.offsetWidth/3),ie.removeChild(s),u=null}}function t(e){return Math.round(parseFloat(e))}var n,r,i,o,a,s=E.createElement("div"),u=E.createElement("div");u.style&&(u.style.backgroundClip="content-box",u.cloneNode(!0).style.backgroundClip="",y.clearCloneStyle="content-box"===u.style.backgroundClip,k.extend(y,{boxSizingReliable:function(){return e(),r},pixelBoxStyles:function(){return e(),o},pixelPosition:function(){return e(),n},reliableMarginLeft:function(){return e(),a},scrollboxSize:function(){return e(),i}}))}();var Ue=["Webkit","Moz","ms"],Xe=E.createElement("div").style,Ve={};function Ge(e){var t=k.cssProps[e]||Ve[e];return t||(e in Xe?e:Ve[e]=function(e){var t=e[0].toUpperCase()+e.slice(1),n=Ue.length;while(n--)if((e=Ue[n]+t)in Xe)return e}(e)||e)}var Ye=/^(none|table(?!-c[ea]).+)/,Qe=/^--/,Je={position:"absolute",visibility:"hidden",display:"block"},Ke={letterSpacing:"0",fontWeight:"400"};function Ze(e,t,n){var r=ne.exec(t);return r?Math.max(0,r[2]-(n||0))+(r[3]||"px"):t}function et(e,t,n,r,i,o){var a="width"===t?1:0,s=0,u=0;if(n===(r?"border":"content"))return 0;for(;a<4;a+=2)"margin"===n&&(u+=k.css(e,n+re[a],!0,i)),r?("content"===n&&(u-=k.css(e,"padding"+re[a],!0,i)),"margin"!==n&&(u-=k.css(e,"border"+re[a]+"Width",!0,i))):(u+=k.css(e,"padding"+re[a],!0,i),"padding"!==n?u+=k.css(e,"border"+re[a]+"Width",!0,i):s+=k.css(e,"border"+re[a]+"Width",!0,i));return!r&&0<=o&&(u+=Math.max(0,Math.ceil(e["offset"+t[0].toUpperCase()+t.slice(1)]-o-u-s-.5))||0),u}function tt(e,t,n){var r=Fe(e),i=(!y.boxSizingReliable()||n)&&"border-box"===k.css(e,"boxSizing",!1,r),o=i,a=_e(e,t,r),s="offset"+t[0].toUpperCase()+t.slice(1);if($e.test(a)){if(!n)return a;a="auto"}return(!y.boxSizingReliable()&&i||"auto"===a||!parseFloat(a)&&"inline"===k.css(e,"display",!1,r))&&e.getClientRects().length&&(i="border-box"===k.css(e,"boxSizing",!1,r),(o=s in e)&&(a=e[s])),(a=parseFloat(a)||0)+et(e,t,n||(i?"border":"content"),o,r,a)+"px"}function nt(e,t,n,r,i){return new nt.prototype.init(e,t,n,r,i)}k.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=_e(e,"opacity");return""===n?"1":n}}}},cssNumber:{animationIterationCount:!0,columnCount:!0,fillOpacity:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,gridArea:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnStart:!0,gridRow:!0,gridRowEnd:!0,gridRowStart:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{},style:function(e,t,n,r){if(e&&3!==e.nodeType&&8!==e.nodeType&&e.style){var i,o,a,s=V(t),u=Qe.test(t),l=e.style;if(u||(t=Ge(s)),a=k.cssHooks[t]||k.cssHooks[s],void 0===n)return a&&"get"in a&&void 0!==(i=a.get(e,!1,r))?i:l[t];"string"===(o=typeof n)&&(i=ne.exec(n))&&i[1]&&(n=le(e,t,i),o="number"),null!=n&&n==n&&("number"!==o||u||(n+=i&&i[3]||(k.cssNumber[s]?"":"px")),y.clearCloneStyle||""!==n||0!==t.indexOf("background")||(l[t]="inherit"),a&&"set"in a&&void 0===(n=a.set(e,n,r))||(u?l.setProperty(t,n):l[t]=n))}},css:function(e,t,n,r){var i,o,a,s=V(t);return Qe.test(t)||(t=Ge(s)),(a=k.cssHooks[t]||k.cssHooks[s])&&"get"in a&&(i=a.get(e,!0,n)),void 0===i&&(i=_e(e,t,r)),"normal"===i&&t in Ke&&(i=Ke[t]),""===n||n?(o=parseFloat(i),!0===n||isFinite(o)?o||0:i):i}}),k.each(["height","width"],function(e,u){k.cssHooks[u]={get:function(e,t,n){if(t)return!Ye.test(k.css(e,"display"))||e.getClientRects().length&&e.getBoundingClientRect().width?tt(e,u,n):ue(e,Je,function(){return tt(e,u,n)})},set:function(e,t,n){var r,i=Fe(e),o=!y.scrollboxSize()&&"absolute"===i.position,a=(o||n)&&"border-box"===k.css(e,"boxSizing",!1,i),s=n?et(e,u,n,a,i):0;return a&&o&&(s-=Math.ceil(e["offset"+u[0].toUpperCase()+u.slice(1)]-parseFloat(i[u])-et(e,u,"border",!1,i)-.5)),s&&(r=ne.exec(t))&&"px"!==(r[3]||"px")&&(e.style[u]=t,t=k.css(e,u)),Ze(0,t,s)}}}),k.cssHooks.marginLeft=ze(y.reliableMarginLeft,function(e,t){if(t)return(parseFloat(_e(e,"marginLeft"))||e.getBoundingClientRect().left-ue(e,{marginLeft:0},function(){return e.getBoundingClientRect().left}))+"px"}),k.each({margin:"",padding:"",border:"Width"},function(i,o){k.cssHooks[i+o]={expand:function(e){for(var t=0,n={},r="string"==typeof e?e.split(" "):[e];t<4;t++)n[i+re[t]+o]=r[t]||r[t-2]||r[0];return n}},"margin"!==i&&(k.cssHooks[i+o].set=Ze)}),k.fn.extend({css:function(e,t){return _(this,function(e,t,n){var r,i,o={},a=0;if(Array.isArray(t)){for(r=Fe(e),i=t.length;a<i;a++)o[t[a]]=k.css(e,t[a],!1,r);return o}return void 0!==n?k.style(e,t,n):k.css(e,t)},e,t,1<arguments.length)}}),((k.Tween=nt).prototype={constructor:nt,init:function(e,t,n,r,i,o){this.elem=e,this.prop=n,this.easing=i||k.easing._default,this.options=t,this.start=this.now=this.cur(),this.end=r,this.unit=o||(k.cssNumber[n]?"":"px")},cur:function(){var e=nt.propHooks[this.prop];return e&&e.get?e.get(this):nt.propHooks._default.get(this)},run:function(e){var t,n=nt.propHooks[this.prop];return this.options.duration?this.pos=t=k.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration):this.pos=t=e,this.now=(this.end-this.start)*t+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),n&&n.set?n.set(this):nt.propHooks._default.set(this),this}}).init.prototype=nt.prototype,(nt.propHooks={_default:{get:function(e){var t;return 1!==e.elem.nodeType||null!=e.elem[e.prop]&&null==e.elem.style[e.prop]?e.elem[e.prop]:(t=k.css(e.elem,e.prop,""))&&"auto"!==t?t:0},set:function(e){k.fx.step[e.prop]?k.fx.step[e.prop](e):1!==e.elem.nodeType||!k.cssHooks[e.prop]&&null==e.elem.style[Ge(e.prop)]?e.elem[e.prop]=e.now:k.style(e.elem,e.prop,e.now+e.unit)}}}).scrollTop=nt.propHooks.scrollLeft={set:function(e){e.elem.nodeType&&e.elem.parentNode&&(e.elem[e.prop]=e.now)}},k.easing={linear:function(e){return e},swing:function(e){return.5-Math.cos(e*Math.PI)/2},_default:"swing"},k.fx=nt.prototype.init,k.fx.step={};var rt,it,ot,at,st=/^(?:toggle|show|hide)$/,ut=/queueHooks$/;function lt(){it&&(!1===E.hidden&&C.requestAnimationFrame?C.requestAnimationFrame(lt):C.setTimeout(lt,k.fx.interval),k.fx.tick())}function ct(){return C.setTimeout(function(){rt=void 0}),rt=Date.now()}function ft(e,t){var n,r=0,i={height:e};for(t=t?1:0;r<4;r+=2-t)i["margin"+(n=re[r])]=i["padding"+n]=e;return t&&(i.opacity=i.width=e),i}function pt(e,t,n){for(var r,i=(dt.tweeners[t]||[]).concat(dt.tweeners["*"]),o=0,a=i.length;o<a;o++)if(r=i[o].call(n,t,e))return r}function dt(o,e,t){var n,a,r=0,i=dt.prefilters.length,s=k.Deferred().always(function(){delete u.elem}),u=function(){if(a)return!1;for(var e=rt||ct(),t=Math.max(0,l.startTime+l.duration-e),n=1-(t/l.duration||0),r=0,i=l.tweens.length;r<i;r++)l.tweens[r].run(n);return s.notifyWith(o,[l,n,t]),n<1&&i?t:(i||s.notifyWith(o,[l,1,0]),s.resolveWith(o,[l]),!1)},l=s.promise({elem:o,props:k.extend({},e),opts:k.extend(!0,{specialEasing:{},easing:k.easing._default},t),originalProperties:e,originalOptions:t,startTime:rt||ct(),duration:t.duration,tweens:[],createTween:function(e,t){var n=k.Tween(o,l.opts,e,t,l.opts.specialEasing[e]||l.opts.easing);return l.tweens.push(n),n},stop:function(e){var t=0,n=e?l.tweens.length:0;if(a)return this;for(a=!0;t<n;t++)l.tweens[t].run(1);return e?(s.notifyWith(o,[l,1,0]),s.resolveWith(o,[l,e])):s.rejectWith(o,[l,e]),this}}),c=l.props;for(!function(e,t){var n,r,i,o,a;for(n in e)if(i=t[r=V(n)],o=e[n],Array.isArray(o)&&(i=o[1],o=e[n]=o[0]),n!==r&&(e[r]=o,delete e[n]),(a=k.cssHooks[r])&&"expand"in a)for(n in o=a.expand(o),delete e[r],o)n in e||(e[n]=o[n],t[n]=i);else t[r]=i}(c,l.opts.specialEasing);r<i;r++)if(n=dt.prefilters[r].call(l,o,c,l.opts))return m(n.stop)&&(k._queueHooks(l.elem,l.opts.queue).stop=n.stop.bind(n)),n;return k.map(c,pt,l),m(l.opts.start)&&l.opts.start.call(o,l),l.progress(l.opts.progress).done(l.opts.done,l.opts.complete).fail(l.opts.fail).always(l.opts.always),k.fx.timer(k.extend(u,{elem:o,anim:l,queue:l.opts.queue})),l}k.Animation=k.extend(dt,{tweeners:{"*":[function(e,t){var n=this.createTween(e,t);return le(n.elem,e,ne.exec(t),n),n}]},tweener:function(e,t){m(e)?(t=e,e=["*"]):e=e.match(R);for(var n,r=0,i=e.length;r<i;r++)n=e[r],dt.tweeners[n]=dt.tweeners[n]||[],dt.tweeners[n].unshift(t)},prefilters:[function(e,t,n){var r,i,o,a,s,u,l,c,f="width"in t||"height"in t,p=this,d={},h=e.style,g=e.nodeType&&se(e),v=Q.get(e,"fxshow");for(r in n.queue||(null==(a=k._queueHooks(e,"fx")).unqueued&&(a.unqueued=0,s=a.empty.fire,a.empty.fire=function(){a.unqueued||s()}),a.unqueued++,p.always(function(){p.always(function(){a.unqueued--,k.queue(e,"fx").length||a.empty.fire()})})),t)if(i=t[r],st.test(i)){if(delete t[r],o=o||"toggle"===i,i===(g?"hide":"show")){if("show"!==i||!v||void 0===v[r])continue;g=!0}d[r]=v&&v[r]||k.style(e,r)}if((u=!k.isEmptyObject(t))||!k.isEmptyObject(d))for(r in f&&1===e.nodeType&&(n.overflow=[h.overflow,h.overflowX,h.overflowY],null==(l=v&&v.display)&&(l=Q.get(e,"display")),"none"===(c=k.css(e,"display"))&&(l?c=l:(fe([e],!0),l=e.style.display||l,c=k.css(e,"display"),fe([e]))),("inline"===c||"inline-block"===c&&null!=l)&&"none"===k.css(e,"float")&&(u||(p.done(function(){h.display=l}),null==l&&(c=h.display,l="none"===c?"":c)),h.display="inline-block")),n.overflow&&(h.overflow="hidden",p.always(function(){h.overflow=n.overflow[0],h.overflowX=n.overflow[1],h.overflowY=n.overflow[2]})),u=!1,d)u||(v?"hidden"in v&&(g=v.hidden):v=Q.access(e,"fxshow",{display:l}),o&&(v.hidden=!g),g&&fe([e],!0),p.done(function(){for(r in g||fe([e]),Q.remove(e,"fxshow"),d)k.style(e,r,d[r])})),u=pt(g?v[r]:0,r,p),r in v||(v[r]=u.start,g&&(u.end=u.start,u.start=0))}],prefilter:function(e,t){t?dt.prefilters.unshift(e):dt.prefilters.push(e)}}),k.speed=function(e,t,n){var r=e&&"object"==typeof e?k.extend({},e):{complete:n||!n&&t||m(e)&&e,duration:e,easing:n&&t||t&&!m(t)&&t};return k.fx.off?r.duration=0:"number"!=typeof r.duration&&(r.duration in k.fx.speeds?r.duration=k.fx.speeds[r.duration]:r.duration=k.fx.speeds._default),null!=r.queue&&!0!==r.queue||(r.queue="fx"),r.old=r.complete,r.complete=function(){m(r.old)&&r.old.call(this),r.queue&&k.dequeue(this,r.queue)},r},k.fn.extend({fadeTo:function(e,t,n,r){return this.filter(se).css("opacity",0).show().end().animate({opacity:t},e,n,r)},animate:function(t,e,n,r){var i=k.isEmptyObject(t),o=k.speed(e,n,r),a=function(){var e=dt(this,k.extend({},t),o);(i||Q.get(this,"finish"))&&e.stop(!0)};return a.finish=a,i||!1===o.queue?this.each(a):this.queue(o.queue,a)},stop:function(i,e,o){var a=function(e){var t=e.stop;delete e.stop,t(o)};return"string"!=typeof i&&(o=e,e=i,i=void 0),e&&!1!==i&&this.queue(i||"fx",[]),this.each(function(){var e=!0,t=null!=i&&i+"queueHooks",n=k.timers,r=Q.get(this);if(t)r[t]&&r[t].stop&&a(r[t]);else for(t in r)r[t]&&r[t].stop&&ut.test(t)&&a(r[t]);for(t=n.length;t--;)n[t].elem!==this||null!=i&&n[t].queue!==i||(n[t].anim.stop(o),e=!1,n.splice(t,1));!e&&o||k.dequeue(this,i)})},finish:function(a){return!1!==a&&(a=a||"fx"),this.each(function(){var e,t=Q.get(this),n=t[a+"queue"],r=t[a+"queueHooks"],i=k.timers,o=n?n.length:0;for(t.finish=!0,k.queue(this,a,[]),r&&r.stop&&r.stop.call(this,!0),e=i.length;e--;)i[e].elem===this&&i[e].queue===a&&(i[e].anim.stop(!0),i.splice(e,1));for(e=0;e<o;e++)n[e]&&n[e].finish&&n[e].finish.call(this);delete t.finish})}}),k.each(["toggle","show","hide"],function(e,r){var i=k.fn[r];k.fn[r]=function(e,t,n){return null==e||"boolean"==typeof e?i.apply(this,arguments):this.animate(ft(r,!0),e,t,n)}}),k.each({slideDown:ft("show"),slideUp:ft("hide"),slideToggle:ft("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(e,r){k.fn[e]=function(e,t,n){return this.animate(r,e,t,n)}}),k.timers=[],k.fx.tick=function(){var e,t=0,n=k.timers;for(rt=Date.now();t<n.length;t++)(e=n[t])()||n[t]!==e||n.splice(t--,1);n.length||k.fx.stop(),rt=void 0},k.fx.timer=function(e){k.timers.push(e),k.fx.start()},k.fx.interval=13,k.fx.start=function(){it||(it=!0,lt())},k.fx.stop=function(){it=null},k.fx.speeds={slow:600,fast:200,_default:400},k.fn.delay=function(r,e){return r=k.fx&&k.fx.speeds[r]||r,e=e||"fx",this.queue(e,function(e,t){var n=C.setTimeout(e,r);t.stop=function(){C.clearTimeout(n)}})},ot=E.createElement("input"),at=E.createElement("select").appendChild(E.createElement("option")),ot.type="checkbox",y.checkOn=""!==ot.value,y.optSelected=at.selected,(ot=E.createElement("input")).value="t",ot.type="radio",y.radioValue="t"===ot.value;var ht,gt=k.expr.attrHandle;k.fn.extend({attr:function(e,t){return _(this,k.attr,e,t,1<arguments.length)},removeAttr:function(e){return this.each(function(){k.removeAttr(this,e)})}}),k.extend({attr:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o)return"undefined"==typeof e.getAttribute?k.prop(e,t,n):(1===o&&k.isXMLDoc(e)||(i=k.attrHooks[t.toLowerCase()]||(k.expr.match.bool.test(t)?ht:void 0)),void 0!==n?null===n?void k.removeAttr(e,t):i&&"set"in i&&void 0!==(r=i.set(e,n,t))?r:(e.setAttribute(t,n+""),n):i&&"get"in i&&null!==(r=i.get(e,t))?r:null==(r=k.find.attr(e,t))?void 0:r)},attrHooks:{type:{set:function(e,t){if(!y.radioValue&&"radio"===t&&A(e,"input")){var n=e.value;return e.setAttribute("type",t),n&&(e.value=n),t}}}},removeAttr:function(e,t){var n,r=0,i=t&&t.match(R);if(i&&1===e.nodeType)while(n=i[r++])e.removeAttribute(n)}}),ht={set:function(e,t,n){return!1===t?k.removeAttr(e,n):e.setAttribute(n,n),n}},k.each(k.expr.match.bool.source.match(/\w+/g),function(e,t){var a=gt[t]||k.find.attr;gt[t]=function(e,t,n){var r,i,o=t.toLowerCase();return n||(i=gt[o],gt[o]=r,r=null!=a(e,t,n)?o:null,gt[o]=i),r}});var vt=/^(?:input|select|textarea|button)$/i,yt=/^(?:a|area)$/i;function mt(e){return(e.match(R)||[]).join(" ")}function xt(e){return e.getAttribute&&e.getAttribute("class")||""}function bt(e){return Array.isArray(e)?e:"string"==typeof e&&e.match(R)||[]}k.fn.extend({prop:function(e,t){return _(this,k.prop,e,t,1<arguments.length)},removeProp:function(e){return this.each(function(){delete this[k.propFix[e]||e]})}}),k.extend({prop:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o)return 1===o&&k.isXMLDoc(e)||(t=k.propFix[t]||t,i=k.propHooks[t]),void 0!==n?i&&"set"in i&&void 0!==(r=i.set(e,n,t))?r:e[t]=n:i&&"get"in i&&null!==(r=i.get(e,t))?r:e[t]},propHooks:{tabIndex:{get:function(e){var t=k.find.attr(e,"tabindex");return t?parseInt(t,10):vt.test(e.nodeName)||yt.test(e.nodeName)&&e.href?0:-1}}},propFix:{"for":"htmlFor","class":"className"}}),y.optSelected||(k.propHooks.selected={get:function(e){var t=e.parentNode;return t&&t.parentNode&&t.parentNode.selectedIndex,null},set:function(e){var t=e.parentNode;t&&(t.selectedIndex,t.parentNode&&t.parentNode.selectedIndex)}}),k.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){k.propFix[this.toLowerCase()]=this}),k.fn.extend({addClass:function(t){var e,n,r,i,o,a,s,u=0;if(m(t))return this.each(function(e){k(this).addClass(t.call(this,e,xt(this)))});if((e=bt(t)).length)while(n=this[u++])if(i=xt(n),r=1===n.nodeType&&" "+mt(i)+" "){a=0;while(o=e[a++])r.indexOf(" "+o+" ")<0&&(r+=o+" ");i!==(s=mt(r))&&n.setAttribute("class",s)}return this},removeClass:function(t){var e,n,r,i,o,a,s,u=0;if(m(t))return this.each(function(e){k(this).removeClass(t.call(this,e,xt(this)))});if(!arguments.length)return this.attr("class","");if((e=bt(t)).length)while(n=this[u++])if(i=xt(n),r=1===n.nodeType&&" "+mt(i)+" "){a=0;while(o=e[a++])while(-1<r.indexOf(" "+o+" "))r=r.replace(" "+o+" "," ");i!==(s=mt(r))&&n.setAttribute("class",s)}return this},toggleClass:function(i,t){var o=typeof i,a="string"===o||Array.isArray(i);return"boolean"==typeof t&&a?t?this.addClass(i):this.removeClass(i):m(i)?this.each(function(e){k(this).toggleClass(i.call(this,e,xt(this),t),t)}):this.each(function(){var e,t,n,r;if(a){t=0,n=k(this),r=bt(i);while(e=r[t++])n.hasClass(e)?n.removeClass(e):n.addClass(e)}else void 0!==i&&"boolean"!==o||((e=xt(this))&&Q.set(this,"__className__",e),this.setAttribute&&this.setAttribute("class",e||!1===i?"":Q.get(this,"__className__")||""))})},hasClass:function(e){var t,n,r=0;t=" "+e+" ";while(n=this[r++])if(1===n.nodeType&&-1<(" "+mt(xt(n))+" ").indexOf(t))return!0;return!1}});var wt=/\r/g;k.fn.extend({val:function(n){var r,e,i,t=this[0];return arguments.length?(i=m(n),this.each(function(e){var t;1===this.nodeType&&(null==(t=i?n.call(this,e,k(this).val()):n)?t="":"number"==typeof t?t+="":Array.isArray(t)&&(t=k.map(t,function(e){return null==e?"":e+""})),(r=k.valHooks[this.type]||k.valHooks[this.nodeName.toLowerCase()])&&"set"in r&&void 0!==r.set(this,t,"value")||(this.value=t))})):t?(r=k.valHooks[t.type]||k.valHooks[t.nodeName.toLowerCase()])&&"get"in r&&void 0!==(e=r.get(t,"value"))?e:"string"==typeof(e=t.value)?e.replace(wt,""):null==e?"":e:void 0}}),k.extend({valHooks:{option:{get:function(e){var t=k.find.attr(e,"value");return null!=t?t:mt(k.text(e))}},select:{get:function(e){var t,n,r,i=e.options,o=e.selectedIndex,a="select-one"===e.type,s=a?null:[],u=a?o+1:i.length;for(r=o<0?u:a?o:0;r<u;r++)if(((n=i[r]).selected||r===o)&&!n.disabled&&(!n.parentNode.disabled||!A(n.parentNode,"optgroup"))){if(t=k(n).val(),a)return t;s.push(t)}return s},set:function(e,t){var n,r,i=e.options,o=k.makeArray(t),a=i.length;while(a--)((r=i[a]).selected=-1<k.inArray(k.valHooks.option.get(r),o))&&(n=!0);return n||(e.selectedIndex=-1),o}}}}),k.each(["radio","checkbox"],function(){k.valHooks[this]={set:function(e,t){if(Array.isArray(t))return e.checked=-1<k.inArray(k(e).val(),t)}},y.checkOn||(k.valHooks[this].get=function(e){return null===e.getAttribute("value")?"on":e.value})}),y.focusin="onfocusin"in C;var Tt=/^(?:focusinfocus|focusoutblur)$/,Ct=function(e){e.stopPropagation()};k.extend(k.event,{trigger:function(e,t,n,r){var i,o,a,s,u,l,c,f,p=[n||E],d=v.call(e,"type")?e.type:e,h=v.call(e,"namespace")?e.namespace.split("."):[];if(o=f=a=n=n||E,3!==n.nodeType&&8!==n.nodeType&&!Tt.test(d+k.event.triggered)&&(-1<d.indexOf(".")&&(d=(h=d.split(".")).shift(),h.sort()),u=d.indexOf(":")<0&&"on"+d,(e=e[k.expando]?e:new k.Event(d,"object"==typeof e&&e)).isTrigger=r?2:3,e.namespace=h.join("."),e.rnamespace=e.namespace?new RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,e.result=void 0,e.target||(e.target=n),t=null==t?[e]:k.makeArray(t,[e]),c=k.event.special[d]||{},r||!c.trigger||!1!==c.trigger.apply(n,t))){if(!r&&!c.noBubble&&!x(n)){for(s=c.delegateType||d,Tt.test(s+d)||(o=o.parentNode);o;o=o.parentNode)p.push(o),a=o;a===(n.ownerDocument||E)&&p.push(a.defaultView||a.parentWindow||C)}i=0;while((o=p[i++])&&!e.isPropagationStopped())f=o,e.type=1<i?s:c.bindType||d,(l=(Q.get(o,"events")||{})[e.type]&&Q.get(o,"handle"))&&l.apply(o,t),(l=u&&o[u])&&l.apply&&G(o)&&(e.result=l.apply(o,t),!1===e.result&&e.preventDefault());return e.type=d,r||e.isDefaultPrevented()||c._default&&!1!==c._default.apply(p.pop(),t)||!G(n)||u&&m(n[d])&&!x(n)&&((a=n[u])&&(n[u]=null),k.event.triggered=d,e.isPropagationStopped()&&f.addEventListener(d,Ct),n[d](),e.isPropagationStopped()&&f.removeEventListener(d,Ct),k.event.triggered=void 0,a&&(n[u]=a)),e.result}},simulate:function(e,t,n){var r=k.extend(new k.Event,n,{type:e,isSimulated:!0});k.event.trigger(r,null,t)}}),k.fn.extend({trigger:function(e,t){return this.each(function(){k.event.trigger(e,t,this)})},triggerHandler:function(e,t){var n=this[0];if(n)return k.event.trigger(e,t,n,!0)}}),y.focusin||k.each({focus:"focusin",blur:"focusout"},function(n,r){var i=function(e){k.event.simulate(r,e.target,k.event.fix(e))};k.event.special[r]={setup:function(){var e=this.ownerDocument||this,t=Q.access(e,r);t||e.addEventListener(n,i,!0),Q.access(e,r,(t||0)+1)},teardown:function(){var e=this.ownerDocument||this,t=Q.access(e,r)-1;t?Q.access(e,r,t):(e.removeEventListener(n,i,!0),Q.remove(e,r))}}});var Et=C.location,kt=Date.now(),St=/\?/;k.parseXML=function(e){var t;if(!e||"string"!=typeof e)return null;try{t=(new C.DOMParser).parseFromString(e,"text/xml")}catch(e){t=void 0}return t&&!t.getElementsByTagName("parsererror").length||k.error("Invalid XML: "+e),t};var Nt=/\[\]$/,At=/\r?\n/g,Dt=/^(?:submit|button|image|reset|file)$/i,jt=/^(?:input|select|textarea|keygen)/i;function qt(n,e,r,i){var t;if(Array.isArray(e))k.each(e,function(e,t){r||Nt.test(n)?i(n,t):qt(n+"["+("object"==typeof t&&null!=t?e:"")+"]",t,r,i)});else if(r||"object"!==w(e))i(n,e);else for(t in e)qt(n+"["+t+"]",e[t],r,i)}k.param=function(e,t){var n,r=[],i=function(e,t){var n=m(t)?t():t;r[r.length]=encodeURIComponent(e)+"="+encodeURIComponent(null==n?"":n)};if(null==e)return"";if(Array.isArray(e)||e.jquery&&!k.isPlainObject(e))k.each(e,function(){i(this.name,this.value)});else for(n in e)qt(n,e[n],t,i);return r.join("&")},k.fn.extend({serialize:function(){return k.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var e=k.prop(this,"elements");return e?k.makeArray(e):this}).filter(function(){var e=this.type;return this.name&&!k(this).is(":disabled")&&jt.test(this.nodeName)&&!Dt.test(e)&&(this.checked||!pe.test(e))}).map(function(e,t){var n=k(this).val();return null==n?null:Array.isArray(n)?k.map(n,function(e){return{name:t.name,value:e.replace(At,"\r\n")}}):{name:t.name,value:n.replace(At,"\r\n")}}).get()}});var Lt=/%20/g,Ht=/#.*$/,Ot=/([?&])_=[^&]*/,Pt=/^(.*?):[ \t]*([^\r\n]*)$/gm,Rt=/^(?:GET|HEAD)$/,Mt=/^\/\//,It={},Wt={},$t="*/".concat("*"),Ft=E.createElement("a");function Bt(o){return function(e,t){"string"!=typeof e&&(t=e,e="*");var n,r=0,i=e.toLowerCase().match(R)||[];if(m(t))while(n=i[r++])"+"===n[0]?(n=n.slice(1)||"*",(o[n]=o[n]||[]).unshift(t)):(o[n]=o[n]||[]).push(t)}}function _t(t,i,o,a){var s={},u=t===Wt;function l(e){var r;return s[e]=!0,k.each(t[e]||[],function(e,t){var n=t(i,o,a);return"string"!=typeof n||u||s[n]?u?!(r=n):void 0:(i.dataTypes.unshift(n),l(n),!1)}),r}return l(i.dataTypes[0])||!s["*"]&&l("*")}function zt(e,t){var n,r,i=k.ajaxSettings.flatOptions||{};for(n in t)void 0!==t[n]&&((i[n]?e:r||(r={}))[n]=t[n]);return r&&k.extend(!0,e,r),e}Ft.href=Et.href,k.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:Et.href,type:"GET",isLocal:/^(?:about|app|app-storage|.+-extension|file|res|widget):$/.test(Et.protocol),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":$t,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/\bxml\b/,html:/\bhtml/,json:/\bjson\b/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":JSON.parse,"text xml":k.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(e,t){return t?zt(zt(e,k.ajaxSettings),t):zt(k.ajaxSettings,e)},ajaxPrefilter:Bt(It),ajaxTransport:Bt(Wt),ajax:function(e,t){"object"==typeof e&&(t=e,e=void 0),t=t||{};var c,f,p,n,d,r,h,g,i,o,v=k.ajaxSetup({},t),y=v.context||v,m=v.context&&(y.nodeType||y.jquery)?k(y):k.event,x=k.Deferred(),b=k.Callbacks("once memory"),w=v.statusCode||{},a={},s={},u="canceled",T={readyState:0,getResponseHeader:function(e){var t;if(h){if(!n){n={};while(t=Pt.exec(p))n[t[1].toLowerCase()+" "]=(n[t[1].toLowerCase()+" "]||[]).concat(t[2])}t=n[e.toLowerCase()+" "]}return null==t?null:t.join(", ")},getAllResponseHeaders:function(){return h?p:null},setRequestHeader:function(e,t){return null==h&&(e=s[e.toLowerCase()]=s[e.toLowerCase()]||e,a[e]=t),this},overrideMimeType:function(e){return null==h&&(v.mimeType=e),this},statusCode:function(e){var t;if(e)if(h)T.always(e[T.status]);else for(t in e)w[t]=[w[t],e[t]];return this},abort:function(e){var t=e||u;return c&&c.abort(t),l(0,t),this}};if(x.promise(T),v.url=((e||v.url||Et.href)+"").replace(Mt,Et.protocol+"//"),v.type=t.method||t.type||v.method||v.type,v.dataTypes=(v.dataType||"*").toLowerCase().match(R)||[""],null==v.crossDomain){r=E.createElement("a");try{r.href=v.url,r.href=r.href,v.crossDomain=Ft.protocol+"//"+Ft.host!=r.protocol+"//"+r.host}catch(e){v.crossDomain=!0}}if(v.data&&v.processData&&"string"!=typeof v.data&&(v.data=k.param(v.data,v.traditional)),_t(It,v,t,T),h)return T;for(i in(g=k.event&&v.global)&&0==k.active++&&k.event.trigger("ajaxStart"),v.type=v.type.toUpperCase(),v.hasContent=!Rt.test(v.type),f=v.url.replace(Ht,""),v.hasContent?v.data&&v.processData&&0===(v.contentType||"").indexOf("application/x-www-form-urlencoded")&&(v.data=v.data.replace(Lt,"+")):(o=v.url.slice(f.length),v.data&&(v.processData||"string"==typeof v.data)&&(f+=(St.test(f)?"&":"?")+v.data,delete v.data),!1===v.cache&&(f=f.replace(Ot,"$1"),o=(St.test(f)?"&":"?")+"_="+kt+++o),v.url=f+o),v.ifModified&&(k.lastModified[f]&&T.setRequestHeader("If-Modified-Since",k.lastModified[f]),k.etag[f]&&T.setRequestHeader("If-None-Match",k.etag[f])),(v.data&&v.hasContent&&!1!==v.contentType||t.contentType)&&T.setRequestHeader("Content-Type",v.contentType),T.setRequestHeader("Accept",v.dataTypes[0]&&v.accepts[v.dataTypes[0]]?v.accepts[v.dataTypes[0]]+("*"!==v.dataTypes[0]?", "+$t+"; q=0.01":""):v.accepts["*"]),v.headers)T.setRequestHeader(i,v.headers[i]);if(v.beforeSend&&(!1===v.beforeSend.call(y,T,v)||h))return T.abort();if(u="abort",b.add(v.complete),T.done(v.success),T.fail(v.error),c=_t(Wt,v,t,T)){if(T.readyState=1,g&&m.trigger("ajaxSend",[T,v]),h)return T;v.async&&0<v.timeout&&(d=C.setTimeout(function(){T.abort("timeout")},v.timeout));try{h=!1,c.send(a,l)}catch(e){if(h)throw e;l(-1,e)}}else l(-1,"No Transport");function l(e,t,n,r){var i,o,a,s,u,l=t;h||(h=!0,d&&C.clearTimeout(d),c=void 0,p=r||"",T.readyState=0<e?4:0,i=200<=e&&e<300||304===e,n&&(s=function(e,t,n){var r,i,o,a,s=e.contents,u=e.dataTypes;while("*"===u[0])u.shift(),void 0===r&&(r=e.mimeType||t.getResponseHeader("Content-Type"));if(r)for(i in s)if(s[i]&&s[i].test(r)){u.unshift(i);break}if(u[0]in n)o=u[0];else{for(i in n){if(!u[0]||e.converters[i+" "+u[0]]){o=i;break}a||(a=i)}o=o||a}if(o)return o!==u[0]&&u.unshift(o),n[o]}(v,T,n)),s=function(e,t,n,r){var i,o,a,s,u,l={},c=e.dataTypes.slice();if(c[1])for(a in e.converters)l[a.toLowerCase()]=e.converters[a];o=c.shift();while(o)if(e.responseFields[o]&&(n[e.responseFields[o]]=t),!u&&r&&e.dataFilter&&(t=e.dataFilter(t,e.dataType)),u=o,o=c.shift())if("*"===o)o=u;else if("*"!==u&&u!==o){if(!(a=l[u+" "+o]||l["* "+o]))for(i in l)if((s=i.split(" "))[1]===o&&(a=l[u+" "+s[0]]||l["* "+s[0]])){!0===a?a=l[i]:!0!==l[i]&&(o=s[0],c.unshift(s[1]));break}if(!0!==a)if(a&&e["throws"])t=a(t);else try{t=a(t)}catch(e){return{state:"parsererror",error:a?e:"No conversion from "+u+" to "+o}}}return{state:"success",data:t}}(v,s,T,i),i?(v.ifModified&&((u=T.getResponseHeader("Last-Modified"))&&(k.lastModified[f]=u),(u=T.getResponseHeader("etag"))&&(k.etag[f]=u)),204===e||"HEAD"===v.type?l="nocontent":304===e?l="notmodified":(l=s.state,o=s.data,i=!(a=s.error))):(a=l,!e&&l||(l="error",e<0&&(e=0))),T.status=e,T.statusText=(t||l)+"",i?x.resolveWith(y,[o,l,T]):x.rejectWith(y,[T,l,a]),T.statusCode(w),w=void 0,g&&m.trigger(i?"ajaxSuccess":"ajaxError",[T,v,i?o:a]),b.fireWith(y,[T,l]),g&&(m.trigger("ajaxComplete",[T,v]),--k.active||k.event.trigger("ajaxStop")))}return T},getJSON:function(e,t,n){return k.get(e,t,n,"json")},getScript:function(e,t){return k.get(e,void 0,t,"script")}}),k.each(["get","post"],function(e,i){k[i]=function(e,t,n,r){return m(t)&&(r=r||n,n=t,t=void 0),k.ajax(k.extend({url:e,type:i,dataType:r,data:t,success:n},k.isPlainObject(e)&&e))}}),k._evalUrl=function(e,t){return k.ajax({url:e,type:"GET",dataType:"script",cache:!0,async:!1,global:!1,converters:{"text script":function(){}},dataFilter:function(e){k.globalEval(e,t)}})},k.fn.extend({wrapAll:function(e){var t;return this[0]&&(m(e)&&(e=e.call(this[0])),t=k(e,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&t.insertBefore(this[0]),t.map(function(){var e=this;while(e.firstElementChild)e=e.firstElementChild;return e}).append(this)),this},wrapInner:function(n){return m(n)?this.each(function(e){k(this).wrapInner(n.call(this,e))}):this.each(function(){var e=k(this),t=e.contents();t.length?t.wrapAll(n):e.append(n)})},wrap:function(t){var n=m(t);return this.each(function(e){k(this).wrapAll(n?t.call(this,e):t)})},unwrap:function(e){return this.parent(e).not("body").each(function(){k(this).replaceWith(this.childNodes)}),this}}),k.expr.pseudos.hidden=function(e){return!k.expr.pseudos.visible(e)},k.expr.pseudos.visible=function(e){return!!(e.offsetWidth||e.offsetHeight||e.getClientRects().length)},k.ajaxSettings.xhr=function(){try{return new C.XMLHttpRequest}catch(e){}};var Ut={0:200,1223:204},Xt=k.ajaxSettings.xhr();y.cors=!!Xt&&"withCredentials"in Xt,y.ajax=Xt=!!Xt,k.ajaxTransport(function(i){var o,a;if(y.cors||Xt&&!i.crossDomain)return{send:function(e,t){var n,r=i.xhr();if(r.open(i.type,i.url,i.async,i.username,i.password),i.xhrFields)for(n in i.xhrFields)r[n]=i.xhrFields[n];for(n in i.mimeType&&r.overrideMimeType&&r.overrideMimeType(i.mimeType),i.crossDomain||e["X-Requested-With"]||(e["X-Requested-With"]="XMLHttpRequest"),e)r.setRequestHeader(n,e[n]);o=function(e){return function(){o&&(o=a=r.onload=r.onerror=r.onabort=r.ontimeout=r.onreadystatechange=null,"abort"===e?r.abort():"error"===e?"number"!=typeof r.status?t(0,"error"):t(r.status,r.statusText):t(Ut[r.status]||r.status,r.statusText,"text"!==(r.responseType||"text")||"string"!=typeof r.responseText?{binary:r.response}:{text:r.responseText},r.getAllResponseHeaders()))}},r.onload=o(),a=r.onerror=r.ontimeout=o("error"),void 0!==r.onabort?r.onabort=a:r.onreadystatechange=function(){4===r.readyState&&C.setTimeout(function(){o&&a()})},o=o("abort");try{r.send(i.hasContent&&i.data||null)}catch(e){if(o)throw e}},abort:function(){o&&o()}}}),k.ajaxPrefilter(function(e){e.crossDomain&&(e.contents.script=!1)}),k.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/\b(?:java|ecma)script\b/},converters:{"text script":function(e){return k.globalEval(e),e}}}),k.ajaxPrefilter("script",function(e){void 0===e.cache&&(e.cache=!1),e.crossDomain&&(e.type="GET")}),k.ajaxTransport("script",function(n){var r,i;if(n.crossDomain||n.scriptAttrs)return{send:function(e,t){r=k("<script>").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on("load error",i=function(e){r.remove(),i=null,e&&t("error"===e.type?404:200,e.type)}),E.head.appendChild(r[0])},abort:function(){i&&i()}}});var Vt,Gt=[],Yt=/(=)\?(?=&|$)|\?\?/;k.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=Gt.pop()||k.expando+"_"+kt++;return this[e]=!0,e}}),k.ajaxPrefilter("json jsonp",function(e,t,n){var r,i,o,a=!1!==e.jsonp&&(Yt.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Yt.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return r=e.jsonpCallback=m(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Yt,"$1"+r):!1!==e.jsonp&&(e.url+=(St.test(e.url)?"&":"?")+e.jsonp+"="+r),e.converters["script json"]=function(){return o||k.error(r+" was not called"),o[0]},e.dataTypes[0]="json",i=C[r],C[r]=function(){o=arguments},n.always(function(){void 0===i?k(C).removeProp(r):C[r]=i,e[r]&&(e.jsonpCallback=t.jsonpCallback,Gt.push(r)),o&&m(i)&&i(o[0]),o=i=void 0}),"script"}),y.createHTMLDocument=((Vt=E.implementation.createHTMLDocument("").body).innerHTML="<form></form><form></form>",2===Vt.childNodes.length),k.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(y.createHTMLDocument?((r=(t=E.implementation.createHTMLDocument("")).createElement("base")).href=E.location.href,t.head.appendChild(r)):t=E),o=!n&&[],(i=D.exec(e))?[t.createElement(i[1])]:(i=we([e],t,o),o&&o.length&&k(o).remove(),k.merge([],i.childNodes)));var r,i,o},k.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return-1<s&&(r=mt(e.slice(s)),e=e.slice(0,s)),m(t)?(n=t,t=void 0):t&&"object"==typeof t&&(i="POST"),0<a.length&&k.ajax({url:e,type:i||"GET",dataType:"html",data:t}).done(function(e){o=arguments,a.html(r?k("<div>").append(k.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},k.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){k.fn[t]=function(e){return this.on(t,e)}}),k.expr.pseudos.animated=function(t){return k.grep(k.timers,function(e){return t===e.elem}).length},k.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=k.css(e,"position"),c=k(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=k.css(e,"top"),u=k.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),m(t)&&(t=t.call(e,n,k.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):c.css(f)}},k.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){k.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===k.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===k.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=k(e).offset()).top+=k.css(e,"borderTopWidth",!0),i.left+=k.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-k.css(r,"marginTop",!0),left:t.left-i.left-k.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===k.css(e,"position"))e=e.offsetParent;return e||ie})}}),k.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;k.fn[t]=function(e){return _(this,function(e,t,n){var r;if(x(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),k.each(["top","left"],function(e,n){k.cssHooks[n]=ze(y.pixelPosition,function(e,t){if(t)return t=_e(e,n),$e.test(t)?k(e).position()[n]+"px":t})}),k.each({Height:"height",Width:"width"},function(a,s){k.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){k.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return _(this,function(e,t,n){var r;return x(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?k.css(e,t,i):k.style(e,t,n,i)},s,n?e:void 0,n)}})}),k.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){k.fn[n]=function(e,t){return 0<arguments.length?this.on(n,null,e,t):this.trigger(n)}}),k.fn.extend({hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),k.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)}}),k.proxy=function(e,t){var n,r,i;if("string"==typeof t&&(n=e[t],t=e,e=n),m(e))return r=s.call(arguments,2),(i=function(){return e.apply(t||this,r.concat(s.call(arguments)))}).guid=e.guid=e.guid||k.guid++,i},k.holdReady=function(e){e?k.readyWait++:k.ready(!0)},k.isArray=Array.isArray,k.parseJSON=JSON.parse,k.nodeName=A,k.isFunction=m,k.isWindow=x,k.camelCase=V,k.type=w,k.now=Date.now,k.isNumeric=function(e){var t=k.type(e);return("number"===t||"string"===t)&&!isNaN(e-parseFloat(e))},"function"==typeof define&&define.amd&&define("jquery",[],function(){return k});var Qt=C.jQuery,Jt=C.$;return k.noConflict=function(e){return C.$===k&&(C.$=Jt),e&&C.jQuery===k&&(C.jQuery=Qt),k},e||(C.jQuery=C.$=k),k});
(-)a/koha-tmpl/opac-tmpl/bootstrap/lib/jquery/jquery-3.6.0.min.js (+2 lines)
Line 0 Link Here
1
/*! jQuery v3.6.0 | (c) OpenJS Foundation and other contributors | jquery.org/license */
2
!function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(C,e){"use strict";var t=[],r=Object.getPrototypeOf,s=t.slice,g=t.flat?function(e){return t.flat.call(e)}:function(e){return t.concat.apply([],e)},u=t.push,i=t.indexOf,n={},o=n.toString,v=n.hasOwnProperty,a=v.toString,l=a.call(Object),y={},m=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType&&"function"!=typeof e.item},x=function(e){return null!=e&&e===e.window},E=C.document,c={type:!0,src:!0,nonce:!0,noModule:!0};function b(e,t,n){var r,i,o=(n=n||E).createElement("script");if(o.text=e,t)for(r in c)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function w(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?n[o.call(e)]||"object":typeof e}var f="3.6.0",S=function(e,t){return new S.fn.init(e,t)};function p(e){var t=!!e&&"length"in e&&e.length,n=w(e);return!m(e)&&!x(e)&&("array"===n||0===t||"number"==typeof t&&0<t&&t-1 in e)}S.fn=S.prototype={jquery:f,constructor:S,length:0,toArray:function(){return s.call(this)},get:function(e){return null==e?s.call(this):e<0?this[e+this.length]:this[e]},pushStack:function(e){var t=S.merge(this.constructor(),e);return t.prevObject=this,t},each:function(e){return S.each(this,e)},map:function(n){return this.pushStack(S.map(this,function(e,t){return n.call(e,t,e)}))},slice:function(){return this.pushStack(s.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},even:function(){return this.pushStack(S.grep(this,function(e,t){return(t+1)%2}))},odd:function(){return this.pushStack(S.grep(this,function(e,t){return t%2}))},eq:function(e){var t=this.length,n=+e+(e<0?t:0);return this.pushStack(0<=n&&n<t?[this[n]]:[])},end:function(){return this.prevObject||this.constructor()},push:u,sort:t.sort,splice:t.splice},S.extend=S.fn.extend=function(){var e,t,n,r,i,o,a=arguments[0]||{},s=1,u=arguments.length,l=!1;for("boolean"==typeof a&&(l=a,a=arguments[s]||{},s++),"object"==typeof a||m(a)||(a={}),s===u&&(a=this,s--);s<u;s++)if(null!=(e=arguments[s]))for(t in e)r=e[t],"__proto__"!==t&&a!==r&&(l&&r&&(S.isPlainObject(r)||(i=Array.isArray(r)))?(n=a[t],o=i&&!Array.isArray(n)?[]:i||S.isPlainObject(n)?n:{},i=!1,a[t]=S.extend(l,o,r)):void 0!==r&&(a[t]=r));return a},S.extend({expando:"jQuery"+(f+Math.random()).replace(/\D/g,""),isReady:!0,error:function(e){throw new Error(e)},noop:function(){},isPlainObject:function(e){var t,n;return!(!e||"[object Object]"!==o.call(e))&&(!(t=r(e))||"function"==typeof(n=v.call(t,"constructor")&&t.constructor)&&a.call(n)===l)},isEmptyObject:function(e){var t;for(t in e)return!1;return!0},globalEval:function(e,t,n){b(e,{nonce:t&&t.nonce},n)},each:function(e,t){var n,r=0;if(p(e)){for(n=e.length;r<n;r++)if(!1===t.call(e[r],r,e[r]))break}else for(r in e)if(!1===t.call(e[r],r,e[r]))break;return e},makeArray:function(e,t){var n=t||[];return null!=e&&(p(Object(e))?S.merge(n,"string"==typeof e?[e]:e):u.call(n,e)),n},inArray:function(e,t,n){return null==t?-1:i.call(t,e,n)},merge:function(e,t){for(var n=+t.length,r=0,i=e.length;r<n;r++)e[i++]=t[r];return e.length=i,e},grep:function(e,t,n){for(var r=[],i=0,o=e.length,a=!n;i<o;i++)!t(e[i],i)!==a&&r.push(e[i]);return r},map:function(e,t,n){var r,i,o=0,a=[];if(p(e))for(r=e.length;o<r;o++)null!=(i=t(e[o],o,n))&&a.push(i);else for(o in e)null!=(i=t(e[o],o,n))&&a.push(i);return g(a)},guid:1,support:y}),"function"==typeof Symbol&&(S.fn[Symbol.iterator]=t[Symbol.iterator]),S.each("Boolean Number String Function Array Date RegExp Object Error Symbol".split(" "),function(e,t){n["[object "+t+"]"]=t.toLowerCase()});var d=function(n){var e,d,b,o,i,h,f,g,w,u,l,T,C,a,E,v,s,c,y,S="sizzle"+1*new Date,p=n.document,k=0,r=0,m=ue(),x=ue(),A=ue(),N=ue(),j=function(e,t){return e===t&&(l=!0),0},D={}.hasOwnProperty,t=[],q=t.pop,L=t.push,H=t.push,O=t.slice,P=function(e,t){for(var n=0,r=e.length;n<r;n++)if(e[n]===t)return n;return-1},R="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",M="[\\x20\\t\\r\\n\\f]",I="(?:\\\\[\\da-fA-F]{1,6}"+M+"?|\\\\[^\\r\\n\\f]|[\\w-]|[^\0-\\x7f])+",W="\\["+M+"*("+I+")(?:"+M+"*([*^$|!~]?=)"+M+"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|("+I+"))|)"+M+"*\\]",F=":("+I+")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|"+W+")*)|.*)\\)|)",B=new RegExp(M+"+","g"),$=new RegExp("^"+M+"+|((?:^|[^\\\\])(?:\\\\.)*)"+M+"+$","g"),_=new RegExp("^"+M+"*,"+M+"*"),z=new RegExp("^"+M+"*([>+~]|"+M+")"+M+"*"),U=new RegExp(M+"|>"),X=new RegExp(F),V=new RegExp("^"+I+"$"),G={ID:new RegExp("^#("+I+")"),CLASS:new RegExp("^\\.("+I+")"),TAG:new RegExp("^("+I+"|[*])"),ATTR:new RegExp("^"+W),PSEUDO:new RegExp("^"+F),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+R+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/HTML$/i,Q=/^(?:input|select|textarea|button)$/i,J=/^h\d$/i,K=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\[\\da-fA-F]{1,6}"+M+"?|\\\\([^\\r\\n\\f])","g"),ne=function(e,t){var n="0x"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){T()},ae=be(function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()},{dir:"parentNode",next:"legend"});try{H.apply(t=O.call(p.childNodes),p.childNodes),t[p.childNodes.length].nodeType}catch(e){H={apply:t.length?function(e,t){L.apply(e,O.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function se(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==p&&9!==p&&11!==p)return n;if(!r&&(T(e),e=e||C,E)){if(11!==p&&(u=Z.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return n.push(a),n}else if(f&&(a=f.getElementById(i))&&y(e,a)&&a.id===i)return n.push(a),n}else{if(u[2])return H.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&d.getElementsByClassName&&e.getElementsByClassName)return H.apply(n,e.getElementsByClassName(i)),n}if(d.qsa&&!N[t+" "]&&(!v||!v.test(t))&&(1!==p||"object"!==e.nodeName.toLowerCase())){if(c=t,f=e,1===p&&(U.test(t)||z.test(t))){(f=ee.test(t)&&ye(e.parentNode)||e)===e&&d.scope||((s=e.getAttribute("id"))?s=s.replace(re,ie):e.setAttribute("id",s=S)),o=(l=h(t)).length;while(o--)l[o]=(s?"#"+s:":scope")+" "+xe(l[o]);c=l.join(",")}try{return H.apply(n,f.querySelectorAll(c)),n}catch(e){N(t,!0)}finally{s===S&&e.removeAttribute("id")}}}return g(t.replace($,"$1"),e,n,r)}function ue(){var r=[];return function e(t,n){return r.push(t+" ")>b.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function le(e){return e[S]=!0,e}function ce(e){var t=C.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){var n=e.split("|"),r=n.length;while(r--)b.attrHandle[n[r]]=t}function pe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function de(t){return function(e){return"input"===e.nodeName.toLowerCase()&&e.type===t}}function he(n){return function(e){var t=e.nodeName.toLowerCase();return("input"===t||"button"===t)&&e.type===n}}function ge(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&ae(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function ve(a){return le(function(o){return o=+o,le(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function ye(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}for(e in d=se.support={},i=se.isXML=function(e){var t=e&&e.namespaceURI,n=e&&(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||"HTML")},T=se.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:p;return r!=C&&9===r.nodeType&&r.documentElement&&(a=(C=r).documentElement,E=!i(C),p!=C&&(n=C.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",oe,!1):n.attachEvent&&n.attachEvent("onunload",oe)),d.scope=ce(function(e){return a.appendChild(e).appendChild(C.createElement("div")),"undefined"!=typeof e.querySelectorAll&&!e.querySelectorAll(":scope fieldset div").length}),d.attributes=ce(function(e){return e.className="i",!e.getAttribute("className")}),d.getElementsByTagName=ce(function(e){return e.appendChild(C.createComment("")),!e.getElementsByTagName("*").length}),d.getElementsByClassName=K.test(C.getElementsByClassName),d.getById=ce(function(e){return a.appendChild(e).id=S,!C.getElementsByName||!C.getElementsByName(S).length}),d.getById?(b.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(te,ne);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),b.find.TAG=d.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):d.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},b.find.CLASS=d.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&E)return t.getElementsByClassName(e)},s=[],v=[],(d.qsa=K.test(C.querySelectorAll))&&(ce(function(e){var t;a.appendChild(e).innerHTML="<a id='"+S+"'></a><select id='"+S+"-\r\\' msallowcapture=''><option selected=''></option></select>",e.querySelectorAll("[msallowcapture^='']").length&&v.push("[*^$]="+M+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||v.push("\\["+M+"*(?:value|"+R+")"),e.querySelectorAll("[id~="+S+"-]").length||v.push("~="),(t=C.createElement("input")).setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name='']").length||v.push("\\["+M+"*name"+M+"*="+M+"*(?:''|\"\")"),e.querySelectorAll(":checked").length||v.push(":checked"),e.querySelectorAll("a#"+S+"+*").length||v.push(".#.+[+~]"),e.querySelectorAll("\\\f"),v.push("[\\r\\n\\f]")}),ce(function(e){e.innerHTML="<a href='' disabled='disabled'></a><select disabled='disabled'><option/></select>";var t=C.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&v.push("name"+M+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&v.push(":enabled",":disabled"),a.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&v.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),v.push(",.*:")})),(d.matchesSelector=K.test(c=a.matches||a.webkitMatchesSelector||a.mozMatchesSelector||a.oMatchesSelector||a.msMatchesSelector))&&ce(function(e){d.disconnectedMatch=c.call(e,"*"),c.call(e,"[s!='']:x"),s.push("!=",F)}),v=v.length&&new RegExp(v.join("|")),s=s.length&&new RegExp(s.join("|")),t=K.test(a.compareDocumentPosition),y=t||K.test(a.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},j=t?function(e,t){if(e===t)return l=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!d.sortDetached&&t.compareDocumentPosition(e)===n?e==C||e.ownerDocument==p&&y(p,e)?-1:t==C||t.ownerDocument==p&&y(p,t)?1:u?P(u,e)-P(u,t):0:4&n?-1:1)}:function(e,t){if(e===t)return l=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e==C?-1:t==C?1:i?-1:o?1:u?P(u,e)-P(u,t):0;if(i===o)return pe(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(a[r]===s[r])r++;return r?pe(a[r],s[r]):a[r]==p?-1:s[r]==p?1:0}),C},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if(T(e),d.matchesSelector&&E&&!N[t+" "]&&(!s||!s.test(t))&&(!v||!v.test(t)))try{var n=c.call(e,t);if(n||d.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){N(t,!0)}return 0<se(t,C,null,[e]).length},se.contains=function(e,t){return(e.ownerDocument||e)!=C&&T(e),y(e,t)},se.attr=function(e,t){(e.ownerDocument||e)!=C&&T(e);var n=b.attrHandle[t.toLowerCase()],r=n&&D.call(b.attrHandle,t.toLowerCase())?n(e,t,!E):void 0;return void 0!==r?r:d.attributes||!E?e.getAttribute(t):(r=e.getAttributeNode(t))&&r.specified?r.value:null},se.escape=function(e){return(e+"").replace(re,ie)},se.error=function(e){throw new Error("Syntax error, unrecognized expression: "+e)},se.uniqueSort=function(e){var t,n=[],r=0,i=0;if(l=!d.detectDuplicates,u=!d.sortStable&&e.slice(0),e.sort(j),l){while(t=e[i++])t===e[i]&&(r=n.push(i));while(r--)e.splice(n[r],1)}return u=null,e},o=se.getText=function(e){var t,n="",r=0,i=e.nodeType;if(i){if(1===i||9===i||11===i){if("string"==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=o(e)}else if(3===i||4===i)return e.nodeValue}else while(t=e[r++])n+=o(t);return n},(b=se.selectors={cacheLength:50,createPseudo:le,match:G,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return G.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&X.test(n)&&(t=h(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=m[e+" "];return t||(t=new RegExp("(^|"+M+")"+e+"("+M+"|$)"))&&m(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=se.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1<t.indexOf(i):"$="===r?i&&t.slice(-i.length)===i:"~="===r?-1<(" "+t.replace(B," ")+" ").indexOf(i):"|="===r&&(t===i||t.slice(0,i.length+1)===i+"-"))}},CHILD:function(h,e,t,g,v){var y="nth"!==h.slice(0,3),m="last"!==h.slice(-4),x="of-type"===e;return 1===g&&0===v?function(e){return!!e.parentNode}:function(e,t,n){var r,i,o,a,s,u,l=y!==m?"nextSibling":"previousSibling",c=e.parentNode,f=x&&e.nodeName.toLowerCase(),p=!n&&!x,d=!1;if(c){if(y){while(l){a=e;while(a=a[l])if(x?a.nodeName.toLowerCase()===f:1===a.nodeType)return!1;u=l="only"===h&&!u&&"nextSibling"}return!0}if(u=[m?c.firstChild:c.lastChild],m&&p){d=(s=(r=(i=(o=(a=c)[S]||(a[S]={}))[a.uniqueID]||(o[a.uniqueID]={}))[h]||[])[0]===k&&r[1])&&r[2],a=s&&c.childNodes[s];while(a=++s&&a&&a[l]||(d=s=0)||u.pop())if(1===a.nodeType&&++d&&a===e){i[h]=[k,s,d];break}}else if(p&&(d=s=(r=(i=(o=(a=e)[S]||(a[S]={}))[a.uniqueID]||(o[a.uniqueID]={}))[h]||[])[0]===k&&r[1]),!1===d)while(a=++s&&a&&a[l]||(d=s=0)||u.pop())if((x?a.nodeName.toLowerCase()===f:1===a.nodeType)&&++d&&(p&&((i=(o=a[S]||(a[S]={}))[a.uniqueID]||(o[a.uniqueID]={}))[h]=[k,d]),a===e))break;return(d-=v)===g||d%g==0&&0<=d/g}}},PSEUDO:function(e,o){var t,a=b.pseudos[e]||b.setFilters[e.toLowerCase()]||se.error("unsupported pseudo: "+e);return a[S]?a(o):1<a.length?(t=[e,e,"",o],b.setFilters.hasOwnProperty(e.toLowerCase())?le(function(e,t){var n,r=a(e,o),i=r.length;while(i--)e[n=P(e,r[i])]=!(t[n]=r[i])}):function(e){return a(e,0,t)}):a}},pseudos:{not:le(function(e){var r=[],i=[],s=f(e.replace($,"$1"));return s[S]?le(function(e,t,n,r){var i,o=s(e,null,r,[]),a=e.length;while(a--)(i=o[a])&&(e[a]=!(t[a]=i))}):function(e,t,n){return r[0]=e,s(r,null,n,i),r[0]=null,!i.pop()}}),has:le(function(t){return function(e){return 0<se(t,e).length}}),contains:le(function(t){return t=t.replace(te,ne),function(e){return-1<(e.textContent||o(e)).indexOf(t)}}),lang:le(function(n){return V.test(n||"")||se.error("unsupported lang: "+n),n=n.replace(te,ne).toLowerCase(),function(e){var t;do{if(t=E?e.lang:e.getAttribute("xml:lang")||e.getAttribute("lang"))return(t=t.toLowerCase())===n||0===t.indexOf(n+"-")}while((e=e.parentNode)&&1===e.nodeType);return!1}}),target:function(e){var t=n.location&&n.location.hash;return t&&t.slice(1)===e.id},root:function(e){return e===a},focus:function(e){return e===C.activeElement&&(!C.hasFocus||C.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:ge(!1),disabled:ge(!0),checked:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&!!e.checked||"option"===t&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,!0===e.selected},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeType<6)return!1;return!0},parent:function(e){return!b.pseudos.empty(e)},header:function(e){return J.test(e.nodeName)},input:function(e){return Q.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&"button"===e.type||"button"===t},text:function(e){var t;return"input"===e.nodeName.toLowerCase()&&"text"===e.type&&(null==(t=e.getAttribute("type"))||"text"===t.toLowerCase())},first:ve(function(){return[0]}),last:ve(function(e,t){return[t-1]}),eq:ve(function(e,t,n){return[n<0?n+t:n]}),even:ve(function(e,t){for(var n=0;n<t;n+=2)e.push(n);return e}),odd:ve(function(e,t){for(var n=1;n<t;n+=2)e.push(n);return e}),lt:ve(function(e,t,n){for(var r=n<0?n+t:t<n?t:n;0<=--r;)e.push(r);return e}),gt:ve(function(e,t,n){for(var r=n<0?n+t:n;++r<t;)e.push(r);return e})}}).pseudos.nth=b.pseudos.eq,{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})b.pseudos[e]=de(e);for(e in{submit:!0,reset:!0})b.pseudos[e]=he(e);function me(){}function xe(e){for(var t=0,n=e.length,r="";t<n;t++)r+=e[t].value;return r}function be(s,e,t){var u=e.dir,l=e.next,c=l||u,f=t&&"parentNode"===c,p=r++;return e.first?function(e,t,n){while(e=e[u])if(1===e.nodeType||f)return s(e,t,n);return!1}:function(e,t,n){var r,i,o,a=[k,p];if(n){while(e=e[u])if((1===e.nodeType||f)&&s(e,t,n))return!0}else while(e=e[u])if(1===e.nodeType||f)if(i=(o=e[S]||(e[S]={}))[e.uniqueID]||(o[e.uniqueID]={}),l&&l===e.nodeName.toLowerCase())e=e[u]||e;else{if((r=i[c])&&r[0]===k&&r[1]===p)return a[2]=r[2];if((i[c]=a)[2]=s(e,t,n))return!0}return!1}}function we(i){return 1<i.length?function(e,t,n){var r=i.length;while(r--)if(!i[r](e,t,n))return!1;return!0}:i[0]}function Te(e,t,n,r,i){for(var o,a=[],s=0,u=e.length,l=null!=t;s<u;s++)(o=e[s])&&(n&&!n(o,r,i)||(a.push(o),l&&t.push(s)));return a}function Ce(d,h,g,v,y,e){return v&&!v[S]&&(v=Ce(v)),y&&!y[S]&&(y=Ce(y,e)),le(function(e,t,n,r){var i,o,a,s=[],u=[],l=t.length,c=e||function(e,t,n){for(var r=0,i=t.length;r<i;r++)se(e,t[r],n);return n}(h||"*",n.nodeType?[n]:n,[]),f=!d||!e&&h?c:Te(c,s,d,n,r),p=g?y||(e?d:l||v)?[]:t:f;if(g&&g(f,p,n,r),v){i=Te(p,u),v(i,[],n,r),o=i.length;while(o--)(a=i[o])&&(p[u[o]]=!(f[u[o]]=a))}if(e){if(y||d){if(y){i=[],o=p.length;while(o--)(a=p[o])&&i.push(f[o]=a);y(null,p=[],i,r)}o=p.length;while(o--)(a=p[o])&&-1<(i=y?P(e,a):s[o])&&(e[i]=!(t[i]=a))}}else p=Te(p===t?p.splice(l,p.length):p),y?y(null,t,p,r):H.apply(t,p)})}function Ee(e){for(var i,t,n,r=e.length,o=b.relative[e[0].type],a=o||b.relative[" "],s=o?1:0,u=be(function(e){return e===i},a,!0),l=be(function(e){return-1<P(i,e)},a,!0),c=[function(e,t,n){var r=!o&&(n||t!==w)||((i=t).nodeType?u(e,t,n):l(e,t,n));return i=null,r}];s<r;s++)if(t=b.relative[e[s].type])c=[be(we(c),t)];else{if((t=b.filter[e[s].type].apply(null,e[s].matches))[S]){for(n=++s;n<r;n++)if(b.relative[e[n].type])break;return Ce(1<s&&we(c),1<s&&xe(e.slice(0,s-1).concat({value:" "===e[s-2].type?"*":""})).replace($,"$1"),t,s<n&&Ee(e.slice(s,n)),n<r&&Ee(e=e.slice(n)),n<r&&xe(e))}c.push(t)}return we(c)}return me.prototype=b.filters=b.pseudos,b.setFilters=new me,h=se.tokenize=function(e,t){var n,r,i,o,a,s,u,l=x[e+" "];if(l)return t?0:l.slice(0);a=e,s=[],u=b.preFilter;while(a){for(o in n&&!(r=_.exec(a))||(r&&(a=a.slice(r[0].length)||a),s.push(i=[])),n=!1,(r=z.exec(a))&&(n=r.shift(),i.push({value:n,type:r[0].replace($," ")}),a=a.slice(n.length)),b.filter)!(r=G[o].exec(a))||u[o]&&!(r=u[o](r))||(n=r.shift(),i.push({value:n,type:o,matches:r}),a=a.slice(n.length));if(!n)break}return t?a.length:a?se.error(e):x(e,s).slice(0)},f=se.compile=function(e,t){var n,v,y,m,x,r,i=[],o=[],a=A[e+" "];if(!a){t||(t=h(e)),n=t.length;while(n--)(a=Ee(t[n]))[S]?i.push(a):o.push(a);(a=A(e,(v=o,m=0<(y=i).length,x=0<v.length,r=function(e,t,n,r,i){var o,a,s,u=0,l="0",c=e&&[],f=[],p=w,d=e||x&&b.find.TAG("*",i),h=k+=null==p?1:Math.random()||.1,g=d.length;for(i&&(w=t==C||t||i);l!==g&&null!=(o=d[l]);l++){if(x&&o){a=0,t||o.ownerDocument==C||(T(o),n=!E);while(s=v[a++])if(s(o,t||C,n)){r.push(o);break}i&&(k=h)}m&&((o=!s&&o)&&u--,e&&c.push(o))}if(u+=l,m&&l!==u){a=0;while(s=y[a++])s(c,f,t,n);if(e){if(0<u)while(l--)c[l]||f[l]||(f[l]=q.call(r));f=Te(f)}H.apply(r,f),i&&!e&&0<f.length&&1<u+y.length&&se.uniqueSort(r)}return i&&(k=h,w=p),c},m?le(r):r))).selector=e}return a},g=se.select=function(e,t,n,r){var i,o,a,s,u,l="function"==typeof e&&e,c=!r&&h(e=l.selector||e);if(n=n||[],1===c.length){if(2<(o=c[0]=c[0].slice(0)).length&&"ID"===(a=o[0]).type&&9===t.nodeType&&E&&b.relative[o[1].type]){if(!(t=(b.find.ID(a.matches[0].replace(te,ne),t)||[])[0]))return n;l&&(t=t.parentNode),e=e.slice(o.shift().value.length)}i=G.needsContext.test(e)?0:o.length;while(i--){if(a=o[i],b.relative[s=a.type])break;if((u=b.find[s])&&(r=u(a.matches[0].replace(te,ne),ee.test(o[0].type)&&ye(t.parentNode)||t))){if(o.splice(i,1),!(e=r.length&&xe(o)))return H.apply(n,r),n;break}}}return(l||f(e,c))(r,t,!E,n,!t||ee.test(e)&&ye(t.parentNode)||t),n},d.sortStable=S.split("").sort(j).join("")===S,d.detectDuplicates=!!l,T(),d.sortDetached=ce(function(e){return 1&e.compareDocumentPosition(C.createElement("fieldset"))}),ce(function(e){return e.innerHTML="<a href='#'></a>","#"===e.firstChild.getAttribute("href")})||fe("type|href|height|width",function(e,t,n){if(!n)return e.getAttribute(t,"type"===t.toLowerCase()?1:2)}),d.attributes&&ce(function(e){return e.innerHTML="<input/>",e.firstChild.setAttribute("value",""),""===e.firstChild.getAttribute("value")})||fe("value",function(e,t,n){if(!n&&"input"===e.nodeName.toLowerCase())return e.defaultValue}),ce(function(e){return null==e.getAttribute("disabled")})||fe(R,function(e,t,n){var r;if(!n)return!0===e[t]?t.toLowerCase():(r=e.getAttributeNode(t))&&r.specified?r.value:null}),se}(C);S.find=d,S.expr=d.selectors,S.expr[":"]=S.expr.pseudos,S.uniqueSort=S.unique=d.uniqueSort,S.text=d.getText,S.isXMLDoc=d.isXML,S.contains=d.contains,S.escapeSelector=d.escape;var h=function(e,t,n){var r=[],i=void 0!==n;while((e=e[t])&&9!==e.nodeType)if(1===e.nodeType){if(i&&S(e).is(n))break;r.push(e)}return r},T=function(e,t){for(var n=[];e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n},k=S.expr.match.needsContext;function A(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()}var N=/^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function j(e,n,r){return m(n)?S.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?S.grep(e,function(e){return e===n!==r}):"string"!=typeof n?S.grep(e,function(e){return-1<i.call(n,e)!==r}):S.filter(n,e,r)}S.filter=function(e,t,n){var r=t[0];return n&&(e=":not("+e+")"),1===t.length&&1===r.nodeType?S.find.matchesSelector(r,e)?[r]:[]:S.find.matches(e,S.grep(t,function(e){return 1===e.nodeType}))},S.fn.extend({find:function(e){var t,n,r=this.length,i=this;if("string"!=typeof e)return this.pushStack(S(e).filter(function(){for(t=0;t<r;t++)if(S.contains(i[t],this))return!0}));for(n=this.pushStack([]),t=0;t<r;t++)S.find(e,i[t],n);return 1<r?S.uniqueSort(n):n},filter:function(e){return this.pushStack(j(this,e||[],!1))},not:function(e){return this.pushStack(j(this,e||[],!0))},is:function(e){return!!j(this,"string"==typeof e&&k.test(e)?S(e):e||[],!1).length}});var D,q=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/;(S.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||D,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:q.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof S?t[0]:t,S.merge(this,S.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:E,!0)),N.test(r[1])&&S.isPlainObject(t))for(r in t)m(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=E.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):m(e)?void 0!==n.ready?n.ready(e):e(S):S.makeArray(e,this)}).prototype=S.fn,D=S(E);var L=/^(?:parents|prev(?:Until|All))/,H={children:!0,contents:!0,next:!0,prev:!0};function O(e,t){while((e=e[t])&&1!==e.nodeType);return e}S.fn.extend({has:function(e){var t=S(e,this),n=t.length;return this.filter(function(){for(var e=0;e<n;e++)if(S.contains(this,t[e]))return!0})},closest:function(e,t){var n,r=0,i=this.length,o=[],a="string"!=typeof e&&S(e);if(!k.test(e))for(;r<i;r++)for(n=this[r];n&&n!==t;n=n.parentNode)if(n.nodeType<11&&(a?-1<a.index(n):1===n.nodeType&&S.find.matchesSelector(n,e))){o.push(n);break}return this.pushStack(1<o.length?S.uniqueSort(o):o)},index:function(e){return e?"string"==typeof e?i.call(S(e),this[0]):i.call(this,e.jquery?e[0]:e):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){return this.pushStack(S.uniqueSort(S.merge(this.get(),S(e,t))))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}}),S.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return h(e,"parentNode")},parentsUntil:function(e,t,n){return h(e,"parentNode",n)},next:function(e){return O(e,"nextSibling")},prev:function(e){return O(e,"previousSibling")},nextAll:function(e){return h(e,"nextSibling")},prevAll:function(e){return h(e,"previousSibling")},nextUntil:function(e,t,n){return h(e,"nextSibling",n)},prevUntil:function(e,t,n){return h(e,"previousSibling",n)},siblings:function(e){return T((e.parentNode||{}).firstChild,e)},children:function(e){return T(e.firstChild)},contents:function(e){return null!=e.contentDocument&&r(e.contentDocument)?e.contentDocument:(A(e,"template")&&(e=e.content||e),S.merge([],e.childNodes))}},function(r,i){S.fn[r]=function(e,t){var n=S.map(this,i,e);return"Until"!==r.slice(-5)&&(t=e),t&&"string"==typeof t&&(n=S.filter(t,n)),1<this.length&&(H[r]||S.uniqueSort(n),L.test(r)&&n.reverse()),this.pushStack(n)}});var P=/[^\x20\t\r\n\f]+/g;function R(e){return e}function M(e){throw e}function I(e,t,n,r){var i;try{e&&m(i=e.promise)?i.call(e).done(t).fail(n):e&&m(i=e.then)?i.call(e,t,n):t.apply(void 0,[e].slice(r))}catch(e){n.apply(void 0,[e])}}S.Callbacks=function(r){var e,n;r="string"==typeof r?(e=r,n={},S.each(e.match(P)||[],function(e,t){n[t]=!0}),n):S.extend({},r);var i,t,o,a,s=[],u=[],l=-1,c=function(){for(a=a||r.once,o=i=!0;u.length;l=-1){t=u.shift();while(++l<s.length)!1===s[l].apply(t[0],t[1])&&r.stopOnFalse&&(l=s.length,t=!1)}r.memory||(t=!1),i=!1,a&&(s=t?[]:"")},f={add:function(){return s&&(t&&!i&&(l=s.length-1,u.push(t)),function n(e){S.each(e,function(e,t){m(t)?r.unique&&f.has(t)||s.push(t):t&&t.length&&"string"!==w(t)&&n(t)})}(arguments),t&&!i&&c()),this},remove:function(){return S.each(arguments,function(e,t){var n;while(-1<(n=S.inArray(t,s,n)))s.splice(n,1),n<=l&&l--}),this},has:function(e){return e?-1<S.inArray(e,s):0<s.length},empty:function(){return s&&(s=[]),this},disable:function(){return a=u=[],s=t="",this},disabled:function(){return!s},lock:function(){return a=u=[],t||i||(s=t=""),this},locked:function(){return!!a},fireWith:function(e,t){return a||(t=[e,(t=t||[]).slice?t.slice():t],u.push(t),i||c()),this},fire:function(){return f.fireWith(this,arguments),this},fired:function(){return!!o}};return f},S.extend({Deferred:function(e){var o=[["notify","progress",S.Callbacks("memory"),S.Callbacks("memory"),2],["resolve","done",S.Callbacks("once memory"),S.Callbacks("once memory"),0,"resolved"],["reject","fail",S.Callbacks("once memory"),S.Callbacks("once memory"),1,"rejected"]],i="pending",a={state:function(){return i},always:function(){return s.done(arguments).fail(arguments),this},"catch":function(e){return a.then(null,e)},pipe:function(){var i=arguments;return S.Deferred(function(r){S.each(o,function(e,t){var n=m(i[t[4]])&&i[t[4]];s[t[1]](function(){var e=n&&n.apply(this,arguments);e&&m(e.promise)?e.promise().progress(r.notify).done(r.resolve).fail(r.reject):r[t[0]+"With"](this,n?[e]:arguments)})}),i=null}).promise()},then:function(t,n,r){var u=0;function l(i,o,a,s){return function(){var n=this,r=arguments,e=function(){var e,t;if(!(i<u)){if((e=a.apply(n,r))===o.promise())throw new TypeError("Thenable self-resolution");t=e&&("object"==typeof e||"function"==typeof e)&&e.then,m(t)?s?t.call(e,l(u,o,R,s),l(u,o,M,s)):(u++,t.call(e,l(u,o,R,s),l(u,o,M,s),l(u,o,R,o.notifyWith))):(a!==R&&(n=void 0,r=[e]),(s||o.resolveWith)(n,r))}},t=s?e:function(){try{e()}catch(e){S.Deferred.exceptionHook&&S.Deferred.exceptionHook(e,t.stackTrace),u<=i+1&&(a!==M&&(n=void 0,r=[e]),o.rejectWith(n,r))}};i?t():(S.Deferred.getStackHook&&(t.stackTrace=S.Deferred.getStackHook()),C.setTimeout(t))}}return S.Deferred(function(e){o[0][3].add(l(0,e,m(r)?r:R,e.notifyWith)),o[1][3].add(l(0,e,m(t)?t:R)),o[2][3].add(l(0,e,m(n)?n:M))}).promise()},promise:function(e){return null!=e?S.extend(e,a):a}},s={};return S.each(o,function(e,t){var n=t[2],r=t[5];a[t[1]]=n.add,r&&n.add(function(){i=r},o[3-e][2].disable,o[3-e][3].disable,o[0][2].lock,o[0][3].lock),n.add(t[3].fire),s[t[0]]=function(){return s[t[0]+"With"](this===s?void 0:this,arguments),this},s[t[0]+"With"]=n.fireWith}),a.promise(s),e&&e.call(s,s),s},when:function(e){var n=arguments.length,t=n,r=Array(t),i=s.call(arguments),o=S.Deferred(),a=function(t){return function(e){r[t]=this,i[t]=1<arguments.length?s.call(arguments):e,--n||o.resolveWith(r,i)}};if(n<=1&&(I(e,o.done(a(t)).resolve,o.reject,!n),"pending"===o.state()||m(i[t]&&i[t].then)))return o.then();while(t--)I(i[t],a(t),o.reject);return o.promise()}});var W=/^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;S.Deferred.exceptionHook=function(e,t){C.console&&C.console.warn&&e&&W.test(e.name)&&C.console.warn("jQuery.Deferred exception: "+e.message,e.stack,t)},S.readyException=function(e){C.setTimeout(function(){throw e})};var F=S.Deferred();function B(){E.removeEventListener("DOMContentLoaded",B),C.removeEventListener("load",B),S.ready()}S.fn.ready=function(e){return F.then(e)["catch"](function(e){S.readyException(e)}),this},S.extend({isReady:!1,readyWait:1,ready:function(e){(!0===e?--S.readyWait:S.isReady)||(S.isReady=!0)!==e&&0<--S.readyWait||F.resolveWith(E,[S])}}),S.ready.then=F.then,"complete"===E.readyState||"loading"!==E.readyState&&!E.documentElement.doScroll?C.setTimeout(S.ready):(E.addEventListener("DOMContentLoaded",B),C.addEventListener("load",B));var $=function(e,t,n,r,i,o,a){var s=0,u=e.length,l=null==n;if("object"===w(n))for(s in i=!0,n)$(e,t,s,n[s],!0,o,a);else if(void 0!==r&&(i=!0,m(r)||(a=!0),l&&(a?(t.call(e,r),t=null):(l=t,t=function(e,t,n){return l.call(S(e),n)})),t))for(;s<u;s++)t(e[s],n,a?r:r.call(e[s],s,t(e[s],n)));return i?e:l?t.call(e):u?t(e[0],n):o},_=/^-ms-/,z=/-([a-z])/g;function U(e,t){return t.toUpperCase()}function X(e){return e.replace(_,"ms-").replace(z,U)}var V=function(e){return 1===e.nodeType||9===e.nodeType||!+e.nodeType};function G(){this.expando=S.expando+G.uid++}G.uid=1,G.prototype={cache:function(e){var t=e[this.expando];return t||(t={},V(e)&&(e.nodeType?e[this.expando]=t:Object.defineProperty(e,this.expando,{value:t,configurable:!0}))),t},set:function(e,t,n){var r,i=this.cache(e);if("string"==typeof t)i[X(t)]=n;else for(r in t)i[X(r)]=t[r];return i},get:function(e,t){return void 0===t?this.cache(e):e[this.expando]&&e[this.expando][X(t)]},access:function(e,t,n){return void 0===t||t&&"string"==typeof t&&void 0===n?this.get(e,t):(this.set(e,t,n),void 0!==n?n:t)},remove:function(e,t){var n,r=e[this.expando];if(void 0!==r){if(void 0!==t){n=(t=Array.isArray(t)?t.map(X):(t=X(t))in r?[t]:t.match(P)||[]).length;while(n--)delete r[t[n]]}(void 0===t||S.isEmptyObject(r))&&(e.nodeType?e[this.expando]=void 0:delete e[this.expando])}},hasData:function(e){var t=e[this.expando];return void 0!==t&&!S.isEmptyObject(t)}};var Y=new G,Q=new G,J=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,K=/[A-Z]/g;function Z(e,t,n){var r,i;if(void 0===n&&1===e.nodeType)if(r="data-"+t.replace(K,"-$&").toLowerCase(),"string"==typeof(n=e.getAttribute(r))){try{n="true"===(i=n)||"false"!==i&&("null"===i?null:i===+i+""?+i:J.test(i)?JSON.parse(i):i)}catch(e){}Q.set(e,t,n)}else n=void 0;return n}S.extend({hasData:function(e){return Q.hasData(e)||Y.hasData(e)},data:function(e,t,n){return Q.access(e,t,n)},removeData:function(e,t){Q.remove(e,t)},_data:function(e,t,n){return Y.access(e,t,n)},_removeData:function(e,t){Y.remove(e,t)}}),S.fn.extend({data:function(n,e){var t,r,i,o=this[0],a=o&&o.attributes;if(void 0===n){if(this.length&&(i=Q.get(o),1===o.nodeType&&!Y.get(o,"hasDataAttrs"))){t=a.length;while(t--)a[t]&&0===(r=a[t].name).indexOf("data-")&&(r=X(r.slice(5)),Z(o,r,i[r]));Y.set(o,"hasDataAttrs",!0)}return i}return"object"==typeof n?this.each(function(){Q.set(this,n)}):$(this,function(e){var t;if(o&&void 0===e)return void 0!==(t=Q.get(o,n))?t:void 0!==(t=Z(o,n))?t:void 0;this.each(function(){Q.set(this,n,e)})},null,e,1<arguments.length,null,!0)},removeData:function(e){return this.each(function(){Q.remove(this,e)})}}),S.extend({queue:function(e,t,n){var r;if(e)return t=(t||"fx")+"queue",r=Y.get(e,t),n&&(!r||Array.isArray(n)?r=Y.access(e,t,S.makeArray(n)):r.push(n)),r||[]},dequeue:function(e,t){t=t||"fx";var n=S.queue(e,t),r=n.length,i=n.shift(),o=S._queueHooks(e,t);"inprogress"===i&&(i=n.shift(),r--),i&&("fx"===t&&n.unshift("inprogress"),delete o.stop,i.call(e,function(){S.dequeue(e,t)},o)),!r&&o&&o.empty.fire()},_queueHooks:function(e,t){var n=t+"queueHooks";return Y.get(e,n)||Y.access(e,n,{empty:S.Callbacks("once memory").add(function(){Y.remove(e,[t+"queue",n])})})}}),S.fn.extend({queue:function(t,n){var e=2;return"string"!=typeof t&&(n=t,t="fx",e--),arguments.length<e?S.queue(this[0],t):void 0===n?this:this.each(function(){var e=S.queue(this,t,n);S._queueHooks(this,t),"fx"===t&&"inprogress"!==e[0]&&S.dequeue(this,t)})},dequeue:function(e){return this.each(function(){S.dequeue(this,e)})},clearQueue:function(e){return this.queue(e||"fx",[])},promise:function(e,t){var n,r=1,i=S.Deferred(),o=this,a=this.length,s=function(){--r||i.resolveWith(o,[o])};"string"!=typeof e&&(t=e,e=void 0),e=e||"fx";while(a--)(n=Y.get(o[a],e+"queueHooks"))&&n.empty&&(r++,n.empty.add(s));return s(),i.promise(t)}});var ee=/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source,te=new RegExp("^(?:([+-])=|)("+ee+")([a-z%]*)$","i"),ne=["Top","Right","Bottom","Left"],re=E.documentElement,ie=function(e){return S.contains(e.ownerDocument,e)},oe={composed:!0};re.getRootNode&&(ie=function(e){return S.contains(e.ownerDocument,e)||e.getRootNode(oe)===e.ownerDocument});var ae=function(e,t){return"none"===(e=t||e).style.display||""===e.style.display&&ie(e)&&"none"===S.css(e,"display")};function se(e,t,n,r){var i,o,a=20,s=r?function(){return r.cur()}:function(){return S.css(e,t,"")},u=s(),l=n&&n[3]||(S.cssNumber[t]?"":"px"),c=e.nodeType&&(S.cssNumber[t]||"px"!==l&&+u)&&te.exec(S.css(e,t));if(c&&c[3]!==l){u/=2,l=l||c[3],c=+u||1;while(a--)S.style(e,t,c+l),(1-o)*(1-(o=s()/u||.5))<=0&&(a=0),c/=o;c*=2,S.style(e,t,c+l),n=n||[]}return n&&(c=+c||+u||0,i=n[1]?c+(n[1]+1)*n[2]:+n[2],r&&(r.unit=l,r.start=c,r.end=i)),i}var ue={};function le(e,t){for(var n,r,i,o,a,s,u,l=[],c=0,f=e.length;c<f;c++)(r=e[c]).style&&(n=r.style.display,t?("none"===n&&(l[c]=Y.get(r,"display")||null,l[c]||(r.style.display="")),""===r.style.display&&ae(r)&&(l[c]=(u=a=o=void 0,a=(i=r).ownerDocument,s=i.nodeName,(u=ue[s])||(o=a.body.appendChild(a.createElement(s)),u=S.css(o,"display"),o.parentNode.removeChild(o),"none"===u&&(u="block"),ue[s]=u)))):"none"!==n&&(l[c]="none",Y.set(r,"display",n)));for(c=0;c<f;c++)null!=l[c]&&(e[c].style.display=l[c]);return e}S.fn.extend({show:function(){return le(this,!0)},hide:function(){return le(this)},toggle:function(e){return"boolean"==typeof e?e?this.show():this.hide():this.each(function(){ae(this)?S(this).show():S(this).hide()})}});var ce,fe,pe=/^(?:checkbox|radio)$/i,de=/<([a-z][^\/\0>\x20\t\r\n\f]*)/i,he=/^$|^module$|\/(?:java|ecma)script/i;ce=E.createDocumentFragment().appendChild(E.createElement("div")),(fe=E.createElement("input")).setAttribute("type","radio"),fe.setAttribute("checked","checked"),fe.setAttribute("name","t"),ce.appendChild(fe),y.checkClone=ce.cloneNode(!0).cloneNode(!0).lastChild.checked,ce.innerHTML="<textarea>x</textarea>",y.noCloneChecked=!!ce.cloneNode(!0).lastChild.defaultValue,ce.innerHTML="<option></option>",y.option=!!ce.lastChild;var ge={thead:[1,"<table>","</table>"],col:[2,"<table><colgroup>","</colgroup></table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],_default:[0,"",""]};function ve(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&A(e,t)?S.merge([e],n):n}function ye(e,t){for(var n=0,r=e.length;n<r;n++)Y.set(e[n],"globalEval",!t||Y.get(t[n],"globalEval"))}ge.tbody=ge.tfoot=ge.colgroup=ge.caption=ge.thead,ge.th=ge.td,y.option||(ge.optgroup=ge.option=[1,"<select multiple='multiple'>","</select>"]);var me=/<|&#?\w+;/;function xe(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),p=[],d=0,h=e.length;d<h;d++)if((o=e[d])||0===o)if("object"===w(o))S.merge(p,o.nodeType?[o]:o);else if(me.test(o)){a=a||f.appendChild(t.createElement("div")),s=(de.exec(o)||["",""])[1].toLowerCase(),u=ge[s]||ge._default,a.innerHTML=u[1]+S.htmlPrefilter(o)+u[2],c=u[0];while(c--)a=a.lastChild;S.merge(p,a.childNodes),(a=f.firstChild).textContent=""}else p.push(t.createTextNode(o));f.textContent="",d=0;while(o=p[d++])if(r&&-1<S.inArray(o,r))i&&i.push(o);else if(l=ie(o),a=ve(f.appendChild(o),"script"),l&&ye(a),n){c=0;while(o=a[c++])he.test(o.type||"")&&n.push(o)}return f}var be=/^([^.]*)(?:\.(.+)|)/;function we(){return!0}function Te(){return!1}function Ce(e,t){return e===function(){try{return E.activeElement}catch(e){}}()==("focus"===t)}function Ee(e,t,n,r,i,o){var a,s;if("object"==typeof t){for(s in"string"!=typeof n&&(r=r||n,n=void 0),t)Ee(e,s,n,r,t[s],o);return e}if(null==r&&null==i?(i=n,r=n=void 0):null==i&&("string"==typeof n?(i=r,r=void 0):(i=r,r=n,n=void 0)),!1===i)i=Te;else if(!i)return e;return 1===o&&(a=i,(i=function(e){return S().off(e),a.apply(this,arguments)}).guid=a.guid||(a.guid=S.guid++)),e.each(function(){S.event.add(this,t,i,r,n)})}function Se(e,i,o){o?(Y.set(e,i,!1),S.event.add(e,i,{namespace:!1,handler:function(e){var t,n,r=Y.get(this,i);if(1&e.isTrigger&&this[i]){if(r.length)(S.event.special[i]||{}).delegateType&&e.stopPropagation();else if(r=s.call(arguments),Y.set(this,i,r),t=o(this,i),this[i](),r!==(n=Y.get(this,i))||t?Y.set(this,i,!1):n={},r!==n)return e.stopImmediatePropagation(),e.preventDefault(),n&&n.value}else r.length&&(Y.set(this,i,{value:S.event.trigger(S.extend(r[0],S.Event.prototype),r.slice(1),this)}),e.stopImmediatePropagation())}})):void 0===Y.get(e,i)&&S.event.add(e,i,we)}S.event={global:{},add:function(t,e,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,v=Y.get(t);if(V(t)){n.handler&&(n=(o=n).handler,i=o.selector),i&&S.find.matchesSelector(re,i),n.guid||(n.guid=S.guid++),(u=v.events)||(u=v.events=Object.create(null)),(a=v.handle)||(a=v.handle=function(e){return"undefined"!=typeof S&&S.event.triggered!==e.type?S.event.dispatch.apply(t,arguments):void 0}),l=(e=(e||"").match(P)||[""]).length;while(l--)d=g=(s=be.exec(e[l])||[])[1],h=(s[2]||"").split(".").sort(),d&&(f=S.event.special[d]||{},d=(i?f.delegateType:f.bindType)||d,f=S.event.special[d]||{},c=S.extend({type:d,origType:g,data:r,handler:n,guid:n.guid,selector:i,needsContext:i&&S.expr.match.needsContext.test(i),namespace:h.join(".")},o),(p=u[d])||((p=u[d]=[]).delegateCount=0,f.setup&&!1!==f.setup.call(t,r,h,a)||t.addEventListener&&t.addEventListener(d,a)),f.add&&(f.add.call(t,c),c.handler.guid||(c.handler.guid=n.guid)),i?p.splice(p.delegateCount++,0,c):p.push(c),S.event.global[d]=!0)}},remove:function(e,t,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,v=Y.hasData(e)&&Y.get(e);if(v&&(u=v.events)){l=(t=(t||"").match(P)||[""]).length;while(l--)if(d=g=(s=be.exec(t[l])||[])[1],h=(s[2]||"").split(".").sort(),d){f=S.event.special[d]||{},p=u[d=(r?f.delegateType:f.bindType)||d]||[],s=s[2]&&new RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"),a=o=p.length;while(o--)c=p[o],!i&&g!==c.origType||n&&n.guid!==c.guid||s&&!s.test(c.namespace)||r&&r!==c.selector&&("**"!==r||!c.selector)||(p.splice(o,1),c.selector&&p.delegateCount--,f.remove&&f.remove.call(e,c));a&&!p.length&&(f.teardown&&!1!==f.teardown.call(e,h,v.handle)||S.removeEvent(e,d,v.handle),delete u[d])}else for(d in u)S.event.remove(e,d+t[l],n,r,!0);S.isEmptyObject(u)&&Y.remove(e,"handle events")}},dispatch:function(e){var t,n,r,i,o,a,s=new Array(arguments.length),u=S.event.fix(e),l=(Y.get(this,"events")||Object.create(null))[u.type]||[],c=S.event.special[u.type]||{};for(s[0]=u,t=1;t<arguments.length;t++)s[t]=arguments[t];if(u.delegateTarget=this,!c.preDispatch||!1!==c.preDispatch.call(this,u)){a=S.event.handlers.call(this,u,l),t=0;while((i=a[t++])&&!u.isPropagationStopped()){u.currentTarget=i.elem,n=0;while((o=i.handlers[n++])&&!u.isImmediatePropagationStopped())u.rnamespace&&!1!==o.namespace&&!u.rnamespace.test(o.namespace)||(u.handleObj=o,u.data=o.data,void 0!==(r=((S.event.special[o.origType]||{}).handle||o.handler).apply(i.elem,s))&&!1===(u.result=r)&&(u.preventDefault(),u.stopPropagation()))}return c.postDispatch&&c.postDispatch.call(this,u),u.result}},handlers:function(e,t){var n,r,i,o,a,s=[],u=t.delegateCount,l=e.target;if(u&&l.nodeType&&!("click"===e.type&&1<=e.button))for(;l!==this;l=l.parentNode||this)if(1===l.nodeType&&("click"!==e.type||!0!==l.disabled)){for(o=[],a={},n=0;n<u;n++)void 0===a[i=(r=t[n]).selector+" "]&&(a[i]=r.needsContext?-1<S(i,this).index(l):S.find(i,this,null,[l]).length),a[i]&&o.push(r);o.length&&s.push({elem:l,handlers:o})}return l=this,u<t.length&&s.push({elem:l,handlers:t.slice(u)}),s},addProp:function(t,e){Object.defineProperty(S.Event.prototype,t,{enumerable:!0,configurable:!0,get:m(e)?function(){if(this.originalEvent)return e(this.originalEvent)}:function(){if(this.originalEvent)return this.originalEvent[t]},set:function(e){Object.defineProperty(this,t,{enumerable:!0,configurable:!0,writable:!0,value:e})}})},fix:function(e){return e[S.expando]?e:new S.Event(e)},special:{load:{noBubble:!0},click:{setup:function(e){var t=this||e;return pe.test(t.type)&&t.click&&A(t,"input")&&Se(t,"click",we),!1},trigger:function(e){var t=this||e;return pe.test(t.type)&&t.click&&A(t,"input")&&Se(t,"click"),!0},_default:function(e){var t=e.target;return pe.test(t.type)&&t.click&&A(t,"input")&&Y.get(t,"click")||A(t,"a")}},beforeunload:{postDispatch:function(e){void 0!==e.result&&e.originalEvent&&(e.originalEvent.returnValue=e.result)}}}},S.removeEvent=function(e,t,n){e.removeEventListener&&e.removeEventListener(t,n)},S.Event=function(e,t){if(!(this instanceof S.Event))return new S.Event(e,t);e&&e.type?(this.originalEvent=e,this.type=e.type,this.isDefaultPrevented=e.defaultPrevented||void 0===e.defaultPrevented&&!1===e.returnValue?we:Te,this.target=e.target&&3===e.target.nodeType?e.target.parentNode:e.target,this.currentTarget=e.currentTarget,this.relatedTarget=e.relatedTarget):this.type=e,t&&S.extend(this,t),this.timeStamp=e&&e.timeStamp||Date.now(),this[S.expando]=!0},S.Event.prototype={constructor:S.Event,isDefaultPrevented:Te,isPropagationStopped:Te,isImmediatePropagationStopped:Te,isSimulated:!1,preventDefault:function(){var e=this.originalEvent;this.isDefaultPrevented=we,e&&!this.isSimulated&&e.preventDefault()},stopPropagation:function(){var e=this.originalEvent;this.isPropagationStopped=we,e&&!this.isSimulated&&e.stopPropagation()},stopImmediatePropagation:function(){var e=this.originalEvent;this.isImmediatePropagationStopped=we,e&&!this.isSimulated&&e.stopImmediatePropagation(),this.stopPropagation()}},S.each({altKey:!0,bubbles:!0,cancelable:!0,changedTouches:!0,ctrlKey:!0,detail:!0,eventPhase:!0,metaKey:!0,pageX:!0,pageY:!0,shiftKey:!0,view:!0,"char":!0,code:!0,charCode:!0,key:!0,keyCode:!0,button:!0,buttons:!0,clientX:!0,clientY:!0,offsetX:!0,offsetY:!0,pointerId:!0,pointerType:!0,screenX:!0,screenY:!0,targetTouches:!0,toElement:!0,touches:!0,which:!0},S.event.addProp),S.each({focus:"focusin",blur:"focusout"},function(e,t){S.event.special[e]={setup:function(){return Se(this,e,Ce),!1},trigger:function(){return Se(this,e),!0},_default:function(){return!0},delegateType:t}}),S.each({mouseenter:"mouseover",mouseleave:"mouseout",pointerenter:"pointerover",pointerleave:"pointerout"},function(e,i){S.event.special[e]={delegateType:i,bindType:i,handle:function(e){var t,n=e.relatedTarget,r=e.handleObj;return n&&(n===this||S.contains(this,n))||(e.type=r.origType,t=r.handler.apply(this,arguments),e.type=i),t}}}),S.fn.extend({on:function(e,t,n,r){return Ee(this,e,t,n,r)},one:function(e,t,n,r){return Ee(this,e,t,n,r,1)},off:function(e,t,n){var r,i;if(e&&e.preventDefault&&e.handleObj)return r=e.handleObj,S(e.delegateTarget).off(r.namespace?r.origType+"."+r.namespace:r.origType,r.selector,r.handler),this;if("object"==typeof e){for(i in e)this.off(i,t,e[i]);return this}return!1!==t&&"function"!=typeof t||(n=t,t=void 0),!1===n&&(n=Te),this.each(function(){S.event.remove(this,e,n,t)})}});var ke=/<script|<style|<link/i,Ae=/checked\s*(?:[^=]|=\s*.checked.)/i,Ne=/^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g;function je(e,t){return A(e,"table")&&A(11!==t.nodeType?t:t.firstChild,"tr")&&S(e).children("tbody")[0]||e}function De(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function qe(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Le(e,t){var n,r,i,o,a,s;if(1===t.nodeType){if(Y.hasData(e)&&(s=Y.get(e).events))for(i in Y.remove(t,"handle events"),s)for(n=0,r=s[i].length;n<r;n++)S.event.add(t,i,s[i][n]);Q.hasData(e)&&(o=Q.access(e),a=S.extend({},o),Q.set(t,a))}}function He(n,r,i,o){r=g(r);var e,t,a,s,u,l,c=0,f=n.length,p=f-1,d=r[0],h=m(d);if(h||1<f&&"string"==typeof d&&!y.checkClone&&Ae.test(d))return n.each(function(e){var t=n.eq(e);h&&(r[0]=d.call(this,e,t.html())),He(t,r,i,o)});if(f&&(t=(e=xe(r,n[0].ownerDocument,!1,n,o)).firstChild,1===e.childNodes.length&&(e=t),t||o)){for(s=(a=S.map(ve(e,"script"),De)).length;c<f;c++)u=e,c!==p&&(u=S.clone(u,!0,!0),s&&S.merge(a,ve(u,"script"))),i.call(n[c],u,c);if(s)for(l=a[a.length-1].ownerDocument,S.map(a,qe),c=0;c<s;c++)u=a[c],he.test(u.type||"")&&!Y.access(u,"globalEval")&&S.contains(l,u)&&(u.src&&"module"!==(u.type||"").toLowerCase()?S._evalUrl&&!u.noModule&&S._evalUrl(u.src,{nonce:u.nonce||u.getAttribute("nonce")},l):b(u.textContent.replace(Ne,""),u,l))}return n}function Oe(e,t,n){for(var r,i=t?S.filter(t,e):e,o=0;null!=(r=i[o]);o++)n||1!==r.nodeType||S.cleanData(ve(r)),r.parentNode&&(n&&ie(r)&&ye(ve(r,"script")),r.parentNode.removeChild(r));return e}S.extend({htmlPrefilter:function(e){return e},clone:function(e,t,n){var r,i,o,a,s,u,l,c=e.cloneNode(!0),f=ie(e);if(!(y.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||S.isXMLDoc(e)))for(a=ve(c),r=0,i=(o=ve(e)).length;r<i;r++)s=o[r],u=a[r],void 0,"input"===(l=u.nodeName.toLowerCase())&&pe.test(s.type)?u.checked=s.checked:"input"!==l&&"textarea"!==l||(u.defaultValue=s.defaultValue);if(t)if(n)for(o=o||ve(e),a=a||ve(c),r=0,i=o.length;r<i;r++)Le(o[r],a[r]);else Le(e,c);return 0<(a=ve(c,"script")).length&&ye(a,!f&&ve(e,"script")),c},cleanData:function(e){for(var t,n,r,i=S.event.special,o=0;void 0!==(n=e[o]);o++)if(V(n)){if(t=n[Y.expando]){if(t.events)for(r in t.events)i[r]?S.event.remove(n,r):S.removeEvent(n,r,t.handle);n[Y.expando]=void 0}n[Q.expando]&&(n[Q.expando]=void 0)}}}),S.fn.extend({detach:function(e){return Oe(this,e,!0)},remove:function(e){return Oe(this,e)},text:function(e){return $(this,function(e){return void 0===e?S.text(this):this.empty().each(function(){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||(this.textContent=e)})},null,e,arguments.length)},append:function(){return He(this,arguments,function(e){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||je(this,e).appendChild(e)})},prepend:function(){return He(this,arguments,function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=je(this,e);t.insertBefore(e,t.firstChild)}})},before:function(){return He(this,arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this)})},after:function(){return He(this,arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)})},empty:function(){for(var e,t=0;null!=(e=this[t]);t++)1===e.nodeType&&(S.cleanData(ve(e,!1)),e.textContent="");return this},clone:function(e,t){return e=null!=e&&e,t=null==t?e:t,this.map(function(){return S.clone(this,e,t)})},html:function(e){return $(this,function(e){var t=this[0]||{},n=0,r=this.length;if(void 0===e&&1===t.nodeType)return t.innerHTML;if("string"==typeof e&&!ke.test(e)&&!ge[(de.exec(e)||["",""])[1].toLowerCase()]){e=S.htmlPrefilter(e);try{for(;n<r;n++)1===(t=this[n]||{}).nodeType&&(S.cleanData(ve(t,!1)),t.innerHTML=e);t=0}catch(e){}}t&&this.empty().append(e)},null,e,arguments.length)},replaceWith:function(){var n=[];return He(this,arguments,function(e){var t=this.parentNode;S.inArray(this,n)<0&&(S.cleanData(ve(this)),t&&t.replaceChild(e,this))},n)}}),S.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(e,a){S.fn[e]=function(e){for(var t,n=[],r=S(e),i=r.length-1,o=0;o<=i;o++)t=o===i?this:this.clone(!0),S(r[o])[a](t),u.apply(n,t.get());return this.pushStack(n)}});var Pe=new RegExp("^("+ee+")(?!px)[a-z%]+$","i"),Re=function(e){var t=e.ownerDocument.defaultView;return t&&t.opener||(t=C),t.getComputedStyle(e)},Me=function(e,t,n){var r,i,o={};for(i in t)o[i]=e.style[i],e.style[i]=t[i];for(i in r=n.call(e),t)e.style[i]=o[i];return r},Ie=new RegExp(ne.join("|"),"i");function We(e,t,n){var r,i,o,a,s=e.style;return(n=n||Re(e))&&(""!==(a=n.getPropertyValue(t)||n[t])||ie(e)||(a=S.style(e,t)),!y.pixelBoxStyles()&&Pe.test(a)&&Ie.test(t)&&(r=s.width,i=s.minWidth,o=s.maxWidth,s.minWidth=s.maxWidth=s.width=a,a=n.width,s.width=r,s.minWidth=i,s.maxWidth=o)),void 0!==a?a+"":a}function Fe(e,t){return{get:function(){if(!e())return(this.get=t).apply(this,arguments);delete this.get}}}!function(){function e(){if(l){u.style.cssText="position:absolute;left:-11111px;width:60px;margin-top:1px;padding:0;border:0",l.style.cssText="position:relative;display:block;box-sizing:border-box;overflow:scroll;margin:auto;border:1px;padding:1px;width:60%;top:1%",re.appendChild(u).appendChild(l);var e=C.getComputedStyle(l);n="1%"!==e.top,s=12===t(e.marginLeft),l.style.right="60%",o=36===t(e.right),r=36===t(e.width),l.style.position="absolute",i=12===t(l.offsetWidth/3),re.removeChild(u),l=null}}function t(e){return Math.round(parseFloat(e))}var n,r,i,o,a,s,u=E.createElement("div"),l=E.createElement("div");l.style&&(l.style.backgroundClip="content-box",l.cloneNode(!0).style.backgroundClip="",y.clearCloneStyle="content-box"===l.style.backgroundClip,S.extend(y,{boxSizingReliable:function(){return e(),r},pixelBoxStyles:function(){return e(),o},pixelPosition:function(){return e(),n},reliableMarginLeft:function(){return e(),s},scrollboxSize:function(){return e(),i},reliableTrDimensions:function(){var e,t,n,r;return null==a&&(e=E.createElement("table"),t=E.createElement("tr"),n=E.createElement("div"),e.style.cssText="position:absolute;left:-11111px;border-collapse:separate",t.style.cssText="border:1px solid",t.style.height="1px",n.style.height="9px",n.style.display="block",re.appendChild(e).appendChild(t).appendChild(n),r=C.getComputedStyle(t),a=parseInt(r.height,10)+parseInt(r.borderTopWidth,10)+parseInt(r.borderBottomWidth,10)===t.offsetHeight,re.removeChild(e)),a}}))}();var Be=["Webkit","Moz","ms"],$e=E.createElement("div").style,_e={};function ze(e){var t=S.cssProps[e]||_e[e];return t||(e in $e?e:_e[e]=function(e){var t=e[0].toUpperCase()+e.slice(1),n=Be.length;while(n--)if((e=Be[n]+t)in $e)return e}(e)||e)}var Ue=/^(none|table(?!-c[ea]).+)/,Xe=/^--/,Ve={position:"absolute",visibility:"hidden",display:"block"},Ge={letterSpacing:"0",fontWeight:"400"};function Ye(e,t,n){var r=te.exec(t);return r?Math.max(0,r[2]-(n||0))+(r[3]||"px"):t}function Qe(e,t,n,r,i,o){var a="width"===t?1:0,s=0,u=0;if(n===(r?"border":"content"))return 0;for(;a<4;a+=2)"margin"===n&&(u+=S.css(e,n+ne[a],!0,i)),r?("content"===n&&(u-=S.css(e,"padding"+ne[a],!0,i)),"margin"!==n&&(u-=S.css(e,"border"+ne[a]+"Width",!0,i))):(u+=S.css(e,"padding"+ne[a],!0,i),"padding"!==n?u+=S.css(e,"border"+ne[a]+"Width",!0,i):s+=S.css(e,"border"+ne[a]+"Width",!0,i));return!r&&0<=o&&(u+=Math.max(0,Math.ceil(e["offset"+t[0].toUpperCase()+t.slice(1)]-o-u-s-.5))||0),u}function Je(e,t,n){var r=Re(e),i=(!y.boxSizingReliable()||n)&&"border-box"===S.css(e,"boxSizing",!1,r),o=i,a=We(e,t,r),s="offset"+t[0].toUpperCase()+t.slice(1);if(Pe.test(a)){if(!n)return a;a="auto"}return(!y.boxSizingReliable()&&i||!y.reliableTrDimensions()&&A(e,"tr")||"auto"===a||!parseFloat(a)&&"inline"===S.css(e,"display",!1,r))&&e.getClientRects().length&&(i="border-box"===S.css(e,"boxSizing",!1,r),(o=s in e)&&(a=e[s])),(a=parseFloat(a)||0)+Qe(e,t,n||(i?"border":"content"),o,r,a)+"px"}function Ke(e,t,n,r,i){return new Ke.prototype.init(e,t,n,r,i)}S.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=We(e,"opacity");return""===n?"1":n}}}},cssNumber:{animationIterationCount:!0,columnCount:!0,fillOpacity:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,gridArea:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnStart:!0,gridRow:!0,gridRowEnd:!0,gridRowStart:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{},style:function(e,t,n,r){if(e&&3!==e.nodeType&&8!==e.nodeType&&e.style){var i,o,a,s=X(t),u=Xe.test(t),l=e.style;if(u||(t=ze(s)),a=S.cssHooks[t]||S.cssHooks[s],void 0===n)return a&&"get"in a&&void 0!==(i=a.get(e,!1,r))?i:l[t];"string"===(o=typeof n)&&(i=te.exec(n))&&i[1]&&(n=se(e,t,i),o="number"),null!=n&&n==n&&("number"!==o||u||(n+=i&&i[3]||(S.cssNumber[s]?"":"px")),y.clearCloneStyle||""!==n||0!==t.indexOf("background")||(l[t]="inherit"),a&&"set"in a&&void 0===(n=a.set(e,n,r))||(u?l.setProperty(t,n):l[t]=n))}},css:function(e,t,n,r){var i,o,a,s=X(t);return Xe.test(t)||(t=ze(s)),(a=S.cssHooks[t]||S.cssHooks[s])&&"get"in a&&(i=a.get(e,!0,n)),void 0===i&&(i=We(e,t,r)),"normal"===i&&t in Ge&&(i=Ge[t]),""===n||n?(o=parseFloat(i),!0===n||isFinite(o)?o||0:i):i}}),S.each(["height","width"],function(e,u){S.cssHooks[u]={get:function(e,t,n){if(t)return!Ue.test(S.css(e,"display"))||e.getClientRects().length&&e.getBoundingClientRect().width?Je(e,u,n):Me(e,Ve,function(){return Je(e,u,n)})},set:function(e,t,n){var r,i=Re(e),o=!y.scrollboxSize()&&"absolute"===i.position,a=(o||n)&&"border-box"===S.css(e,"boxSizing",!1,i),s=n?Qe(e,u,n,a,i):0;return a&&o&&(s-=Math.ceil(e["offset"+u[0].toUpperCase()+u.slice(1)]-parseFloat(i[u])-Qe(e,u,"border",!1,i)-.5)),s&&(r=te.exec(t))&&"px"!==(r[3]||"px")&&(e.style[u]=t,t=S.css(e,u)),Ye(0,t,s)}}}),S.cssHooks.marginLeft=Fe(y.reliableMarginLeft,function(e,t){if(t)return(parseFloat(We(e,"marginLeft"))||e.getBoundingClientRect().left-Me(e,{marginLeft:0},function(){return e.getBoundingClientRect().left}))+"px"}),S.each({margin:"",padding:"",border:"Width"},function(i,o){S.cssHooks[i+o]={expand:function(e){for(var t=0,n={},r="string"==typeof e?e.split(" "):[e];t<4;t++)n[i+ne[t]+o]=r[t]||r[t-2]||r[0];return n}},"margin"!==i&&(S.cssHooks[i+o].set=Ye)}),S.fn.extend({css:function(e,t){return $(this,function(e,t,n){var r,i,o={},a=0;if(Array.isArray(t)){for(r=Re(e),i=t.length;a<i;a++)o[t[a]]=S.css(e,t[a],!1,r);return o}return void 0!==n?S.style(e,t,n):S.css(e,t)},e,t,1<arguments.length)}}),((S.Tween=Ke).prototype={constructor:Ke,init:function(e,t,n,r,i,o){this.elem=e,this.prop=n,this.easing=i||S.easing._default,this.options=t,this.start=this.now=this.cur(),this.end=r,this.unit=o||(S.cssNumber[n]?"":"px")},cur:function(){var e=Ke.propHooks[this.prop];return e&&e.get?e.get(this):Ke.propHooks._default.get(this)},run:function(e){var t,n=Ke.propHooks[this.prop];return this.options.duration?this.pos=t=S.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration):this.pos=t=e,this.now=(this.end-this.start)*t+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),n&&n.set?n.set(this):Ke.propHooks._default.set(this),this}}).init.prototype=Ke.prototype,(Ke.propHooks={_default:{get:function(e){var t;return 1!==e.elem.nodeType||null!=e.elem[e.prop]&&null==e.elem.style[e.prop]?e.elem[e.prop]:(t=S.css(e.elem,e.prop,""))&&"auto"!==t?t:0},set:function(e){S.fx.step[e.prop]?S.fx.step[e.prop](e):1!==e.elem.nodeType||!S.cssHooks[e.prop]&&null==e.elem.style[ze(e.prop)]?e.elem[e.prop]=e.now:S.style(e.elem,e.prop,e.now+e.unit)}}}).scrollTop=Ke.propHooks.scrollLeft={set:function(e){e.elem.nodeType&&e.elem.parentNode&&(e.elem[e.prop]=e.now)}},S.easing={linear:function(e){return e},swing:function(e){return.5-Math.cos(e*Math.PI)/2},_default:"swing"},S.fx=Ke.prototype.init,S.fx.step={};var Ze,et,tt,nt,rt=/^(?:toggle|show|hide)$/,it=/queueHooks$/;function ot(){et&&(!1===E.hidden&&C.requestAnimationFrame?C.requestAnimationFrame(ot):C.setTimeout(ot,S.fx.interval),S.fx.tick())}function at(){return C.setTimeout(function(){Ze=void 0}),Ze=Date.now()}function st(e,t){var n,r=0,i={height:e};for(t=t?1:0;r<4;r+=2-t)i["margin"+(n=ne[r])]=i["padding"+n]=e;return t&&(i.opacity=i.width=e),i}function ut(e,t,n){for(var r,i=(lt.tweeners[t]||[]).concat(lt.tweeners["*"]),o=0,a=i.length;o<a;o++)if(r=i[o].call(n,t,e))return r}function lt(o,e,t){var n,a,r=0,i=lt.prefilters.length,s=S.Deferred().always(function(){delete u.elem}),u=function(){if(a)return!1;for(var e=Ze||at(),t=Math.max(0,l.startTime+l.duration-e),n=1-(t/l.duration||0),r=0,i=l.tweens.length;r<i;r++)l.tweens[r].run(n);return s.notifyWith(o,[l,n,t]),n<1&&i?t:(i||s.notifyWith(o,[l,1,0]),s.resolveWith(o,[l]),!1)},l=s.promise({elem:o,props:S.extend({},e),opts:S.extend(!0,{specialEasing:{},easing:S.easing._default},t),originalProperties:e,originalOptions:t,startTime:Ze||at(),duration:t.duration,tweens:[],createTween:function(e,t){var n=S.Tween(o,l.opts,e,t,l.opts.specialEasing[e]||l.opts.easing);return l.tweens.push(n),n},stop:function(e){var t=0,n=e?l.tweens.length:0;if(a)return this;for(a=!0;t<n;t++)l.tweens[t].run(1);return e?(s.notifyWith(o,[l,1,0]),s.resolveWith(o,[l,e])):s.rejectWith(o,[l,e]),this}}),c=l.props;for(!function(e,t){var n,r,i,o,a;for(n in e)if(i=t[r=X(n)],o=e[n],Array.isArray(o)&&(i=o[1],o=e[n]=o[0]),n!==r&&(e[r]=o,delete e[n]),(a=S.cssHooks[r])&&"expand"in a)for(n in o=a.expand(o),delete e[r],o)n in e||(e[n]=o[n],t[n]=i);else t[r]=i}(c,l.opts.specialEasing);r<i;r++)if(n=lt.prefilters[r].call(l,o,c,l.opts))return m(n.stop)&&(S._queueHooks(l.elem,l.opts.queue).stop=n.stop.bind(n)),n;return S.map(c,ut,l),m(l.opts.start)&&l.opts.start.call(o,l),l.progress(l.opts.progress).done(l.opts.done,l.opts.complete).fail(l.opts.fail).always(l.opts.always),S.fx.timer(S.extend(u,{elem:o,anim:l,queue:l.opts.queue})),l}S.Animation=S.extend(lt,{tweeners:{"*":[function(e,t){var n=this.createTween(e,t);return se(n.elem,e,te.exec(t),n),n}]},tweener:function(e,t){m(e)?(t=e,e=["*"]):e=e.match(P);for(var n,r=0,i=e.length;r<i;r++)n=e[r],lt.tweeners[n]=lt.tweeners[n]||[],lt.tweeners[n].unshift(t)},prefilters:[function(e,t,n){var r,i,o,a,s,u,l,c,f="width"in t||"height"in t,p=this,d={},h=e.style,g=e.nodeType&&ae(e),v=Y.get(e,"fxshow");for(r in n.queue||(null==(a=S._queueHooks(e,"fx")).unqueued&&(a.unqueued=0,s=a.empty.fire,a.empty.fire=function(){a.unqueued||s()}),a.unqueued++,p.always(function(){p.always(function(){a.unqueued--,S.queue(e,"fx").length||a.empty.fire()})})),t)if(i=t[r],rt.test(i)){if(delete t[r],o=o||"toggle"===i,i===(g?"hide":"show")){if("show"!==i||!v||void 0===v[r])continue;g=!0}d[r]=v&&v[r]||S.style(e,r)}if((u=!S.isEmptyObject(t))||!S.isEmptyObject(d))for(r in f&&1===e.nodeType&&(n.overflow=[h.overflow,h.overflowX,h.overflowY],null==(l=v&&v.display)&&(l=Y.get(e,"display")),"none"===(c=S.css(e,"display"))&&(l?c=l:(le([e],!0),l=e.style.display||l,c=S.css(e,"display"),le([e]))),("inline"===c||"inline-block"===c&&null!=l)&&"none"===S.css(e,"float")&&(u||(p.done(function(){h.display=l}),null==l&&(c=h.display,l="none"===c?"":c)),h.display="inline-block")),n.overflow&&(h.overflow="hidden",p.always(function(){h.overflow=n.overflow[0],h.overflowX=n.overflow[1],h.overflowY=n.overflow[2]})),u=!1,d)u||(v?"hidden"in v&&(g=v.hidden):v=Y.access(e,"fxshow",{display:l}),o&&(v.hidden=!g),g&&le([e],!0),p.done(function(){for(r in g||le([e]),Y.remove(e,"fxshow"),d)S.style(e,r,d[r])})),u=ut(g?v[r]:0,r,p),r in v||(v[r]=u.start,g&&(u.end=u.start,u.start=0))}],prefilter:function(e,t){t?lt.prefilters.unshift(e):lt.prefilters.push(e)}}),S.speed=function(e,t,n){var r=e&&"object"==typeof e?S.extend({},e):{complete:n||!n&&t||m(e)&&e,duration:e,easing:n&&t||t&&!m(t)&&t};return S.fx.off?r.duration=0:"number"!=typeof r.duration&&(r.duration in S.fx.speeds?r.duration=S.fx.speeds[r.duration]:r.duration=S.fx.speeds._default),null!=r.queue&&!0!==r.queue||(r.queue="fx"),r.old=r.complete,r.complete=function(){m(r.old)&&r.old.call(this),r.queue&&S.dequeue(this,r.queue)},r},S.fn.extend({fadeTo:function(e,t,n,r){return this.filter(ae).css("opacity",0).show().end().animate({opacity:t},e,n,r)},animate:function(t,e,n,r){var i=S.isEmptyObject(t),o=S.speed(e,n,r),a=function(){var e=lt(this,S.extend({},t),o);(i||Y.get(this,"finish"))&&e.stop(!0)};return a.finish=a,i||!1===o.queue?this.each(a):this.queue(o.queue,a)},stop:function(i,e,o){var a=function(e){var t=e.stop;delete e.stop,t(o)};return"string"!=typeof i&&(o=e,e=i,i=void 0),e&&this.queue(i||"fx",[]),this.each(function(){var e=!0,t=null!=i&&i+"queueHooks",n=S.timers,r=Y.get(this);if(t)r[t]&&r[t].stop&&a(r[t]);else for(t in r)r[t]&&r[t].stop&&it.test(t)&&a(r[t]);for(t=n.length;t--;)n[t].elem!==this||null!=i&&n[t].queue!==i||(n[t].anim.stop(o),e=!1,n.splice(t,1));!e&&o||S.dequeue(this,i)})},finish:function(a){return!1!==a&&(a=a||"fx"),this.each(function(){var e,t=Y.get(this),n=t[a+"queue"],r=t[a+"queueHooks"],i=S.timers,o=n?n.length:0;for(t.finish=!0,S.queue(this,a,[]),r&&r.stop&&r.stop.call(this,!0),e=i.length;e--;)i[e].elem===this&&i[e].queue===a&&(i[e].anim.stop(!0),i.splice(e,1));for(e=0;e<o;e++)n[e]&&n[e].finish&&n[e].finish.call(this);delete t.finish})}}),S.each(["toggle","show","hide"],function(e,r){var i=S.fn[r];S.fn[r]=function(e,t,n){return null==e||"boolean"==typeof e?i.apply(this,arguments):this.animate(st(r,!0),e,t,n)}}),S.each({slideDown:st("show"),slideUp:st("hide"),slideToggle:st("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(e,r){S.fn[e]=function(e,t,n){return this.animate(r,e,t,n)}}),S.timers=[],S.fx.tick=function(){var e,t=0,n=S.timers;for(Ze=Date.now();t<n.length;t++)(e=n[t])()||n[t]!==e||n.splice(t--,1);n.length||S.fx.stop(),Ze=void 0},S.fx.timer=function(e){S.timers.push(e),S.fx.start()},S.fx.interval=13,S.fx.start=function(){et||(et=!0,ot())},S.fx.stop=function(){et=null},S.fx.speeds={slow:600,fast:200,_default:400},S.fn.delay=function(r,e){return r=S.fx&&S.fx.speeds[r]||r,e=e||"fx",this.queue(e,function(e,t){var n=C.setTimeout(e,r);t.stop=function(){C.clearTimeout(n)}})},tt=E.createElement("input"),nt=E.createElement("select").appendChild(E.createElement("option")),tt.type="checkbox",y.checkOn=""!==tt.value,y.optSelected=nt.selected,(tt=E.createElement("input")).value="t",tt.type="radio",y.radioValue="t"===tt.value;var ct,ft=S.expr.attrHandle;S.fn.extend({attr:function(e,t){return $(this,S.attr,e,t,1<arguments.length)},removeAttr:function(e){return this.each(function(){S.removeAttr(this,e)})}}),S.extend({attr:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o)return"undefined"==typeof e.getAttribute?S.prop(e,t,n):(1===o&&S.isXMLDoc(e)||(i=S.attrHooks[t.toLowerCase()]||(S.expr.match.bool.test(t)?ct:void 0)),void 0!==n?null===n?void S.removeAttr(e,t):i&&"set"in i&&void 0!==(r=i.set(e,n,t))?r:(e.setAttribute(t,n+""),n):i&&"get"in i&&null!==(r=i.get(e,t))?r:null==(r=S.find.attr(e,t))?void 0:r)},attrHooks:{type:{set:function(e,t){if(!y.radioValue&&"radio"===t&&A(e,"input")){var n=e.value;return e.setAttribute("type",t),n&&(e.value=n),t}}}},removeAttr:function(e,t){var n,r=0,i=t&&t.match(P);if(i&&1===e.nodeType)while(n=i[r++])e.removeAttribute(n)}}),ct={set:function(e,t,n){return!1===t?S.removeAttr(e,n):e.setAttribute(n,n),n}},S.each(S.expr.match.bool.source.match(/\w+/g),function(e,t){var a=ft[t]||S.find.attr;ft[t]=function(e,t,n){var r,i,o=t.toLowerCase();return n||(i=ft[o],ft[o]=r,r=null!=a(e,t,n)?o:null,ft[o]=i),r}});var pt=/^(?:input|select|textarea|button)$/i,dt=/^(?:a|area)$/i;function ht(e){return(e.match(P)||[]).join(" ")}function gt(e){return e.getAttribute&&e.getAttribute("class")||""}function vt(e){return Array.isArray(e)?e:"string"==typeof e&&e.match(P)||[]}S.fn.extend({prop:function(e,t){return $(this,S.prop,e,t,1<arguments.length)},removeProp:function(e){return this.each(function(){delete this[S.propFix[e]||e]})}}),S.extend({prop:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o)return 1===o&&S.isXMLDoc(e)||(t=S.propFix[t]||t,i=S.propHooks[t]),void 0!==n?i&&"set"in i&&void 0!==(r=i.set(e,n,t))?r:e[t]=n:i&&"get"in i&&null!==(r=i.get(e,t))?r:e[t]},propHooks:{tabIndex:{get:function(e){var t=S.find.attr(e,"tabindex");return t?parseInt(t,10):pt.test(e.nodeName)||dt.test(e.nodeName)&&e.href?0:-1}}},propFix:{"for":"htmlFor","class":"className"}}),y.optSelected||(S.propHooks.selected={get:function(e){var t=e.parentNode;return t&&t.parentNode&&t.parentNode.selectedIndex,null},set:function(e){var t=e.parentNode;t&&(t.selectedIndex,t.parentNode&&t.parentNode.selectedIndex)}}),S.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){S.propFix[this.toLowerCase()]=this}),S.fn.extend({addClass:function(t){var e,n,r,i,o,a,s,u=0;if(m(t))return this.each(function(e){S(this).addClass(t.call(this,e,gt(this)))});if((e=vt(t)).length)while(n=this[u++])if(i=gt(n),r=1===n.nodeType&&" "+ht(i)+" "){a=0;while(o=e[a++])r.indexOf(" "+o+" ")<0&&(r+=o+" ");i!==(s=ht(r))&&n.setAttribute("class",s)}return this},removeClass:function(t){var e,n,r,i,o,a,s,u=0;if(m(t))return this.each(function(e){S(this).removeClass(t.call(this,e,gt(this)))});if(!arguments.length)return this.attr("class","");if((e=vt(t)).length)while(n=this[u++])if(i=gt(n),r=1===n.nodeType&&" "+ht(i)+" "){a=0;while(o=e[a++])while(-1<r.indexOf(" "+o+" "))r=r.replace(" "+o+" "," ");i!==(s=ht(r))&&n.setAttribute("class",s)}return this},toggleClass:function(i,t){var o=typeof i,a="string"===o||Array.isArray(i);return"boolean"==typeof t&&a?t?this.addClass(i):this.removeClass(i):m(i)?this.each(function(e){S(this).toggleClass(i.call(this,e,gt(this),t),t)}):this.each(function(){var e,t,n,r;if(a){t=0,n=S(this),r=vt(i);while(e=r[t++])n.hasClass(e)?n.removeClass(e):n.addClass(e)}else void 0!==i&&"boolean"!==o||((e=gt(this))&&Y.set(this,"__className__",e),this.setAttribute&&this.setAttribute("class",e||!1===i?"":Y.get(this,"__className__")||""))})},hasClass:function(e){var t,n,r=0;t=" "+e+" ";while(n=this[r++])if(1===n.nodeType&&-1<(" "+ht(gt(n))+" ").indexOf(t))return!0;return!1}});var yt=/\r/g;S.fn.extend({val:function(n){var r,e,i,t=this[0];return arguments.length?(i=m(n),this.each(function(e){var t;1===this.nodeType&&(null==(t=i?n.call(this,e,S(this).val()):n)?t="":"number"==typeof t?t+="":Array.isArray(t)&&(t=S.map(t,function(e){return null==e?"":e+""})),(r=S.valHooks[this.type]||S.valHooks[this.nodeName.toLowerCase()])&&"set"in r&&void 0!==r.set(this,t,"value")||(this.value=t))})):t?(r=S.valHooks[t.type]||S.valHooks[t.nodeName.toLowerCase()])&&"get"in r&&void 0!==(e=r.get(t,"value"))?e:"string"==typeof(e=t.value)?e.replace(yt,""):null==e?"":e:void 0}}),S.extend({valHooks:{option:{get:function(e){var t=S.find.attr(e,"value");return null!=t?t:ht(S.text(e))}},select:{get:function(e){var t,n,r,i=e.options,o=e.selectedIndex,a="select-one"===e.type,s=a?null:[],u=a?o+1:i.length;for(r=o<0?u:a?o:0;r<u;r++)if(((n=i[r]).selected||r===o)&&!n.disabled&&(!n.parentNode.disabled||!A(n.parentNode,"optgroup"))){if(t=S(n).val(),a)return t;s.push(t)}return s},set:function(e,t){var n,r,i=e.options,o=S.makeArray(t),a=i.length;while(a--)((r=i[a]).selected=-1<S.inArray(S.valHooks.option.get(r),o))&&(n=!0);return n||(e.selectedIndex=-1),o}}}}),S.each(["radio","checkbox"],function(){S.valHooks[this]={set:function(e,t){if(Array.isArray(t))return e.checked=-1<S.inArray(S(e).val(),t)}},y.checkOn||(S.valHooks[this].get=function(e){return null===e.getAttribute("value")?"on":e.value})}),y.focusin="onfocusin"in C;var mt=/^(?:focusinfocus|focusoutblur)$/,xt=function(e){e.stopPropagation()};S.extend(S.event,{trigger:function(e,t,n,r){var i,o,a,s,u,l,c,f,p=[n||E],d=v.call(e,"type")?e.type:e,h=v.call(e,"namespace")?e.namespace.split("."):[];if(o=f=a=n=n||E,3!==n.nodeType&&8!==n.nodeType&&!mt.test(d+S.event.triggered)&&(-1<d.indexOf(".")&&(d=(h=d.split(".")).shift(),h.sort()),u=d.indexOf(":")<0&&"on"+d,(e=e[S.expando]?e:new S.Event(d,"object"==typeof e&&e)).isTrigger=r?2:3,e.namespace=h.join("."),e.rnamespace=e.namespace?new RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,e.result=void 0,e.target||(e.target=n),t=null==t?[e]:S.makeArray(t,[e]),c=S.event.special[d]||{},r||!c.trigger||!1!==c.trigger.apply(n,t))){if(!r&&!c.noBubble&&!x(n)){for(s=c.delegateType||d,mt.test(s+d)||(o=o.parentNode);o;o=o.parentNode)p.push(o),a=o;a===(n.ownerDocument||E)&&p.push(a.defaultView||a.parentWindow||C)}i=0;while((o=p[i++])&&!e.isPropagationStopped())f=o,e.type=1<i?s:c.bindType||d,(l=(Y.get(o,"events")||Object.create(null))[e.type]&&Y.get(o,"handle"))&&l.apply(o,t),(l=u&&o[u])&&l.apply&&V(o)&&(e.result=l.apply(o,t),!1===e.result&&e.preventDefault());return e.type=d,r||e.isDefaultPrevented()||c._default&&!1!==c._default.apply(p.pop(),t)||!V(n)||u&&m(n[d])&&!x(n)&&((a=n[u])&&(n[u]=null),S.event.triggered=d,e.isPropagationStopped()&&f.addEventListener(d,xt),n[d](),e.isPropagationStopped()&&f.removeEventListener(d,xt),S.event.triggered=void 0,a&&(n[u]=a)),e.result}},simulate:function(e,t,n){var r=S.extend(new S.Event,n,{type:e,isSimulated:!0});S.event.trigger(r,null,t)}}),S.fn.extend({trigger:function(e,t){return this.each(function(){S.event.trigger(e,t,this)})},triggerHandler:function(e,t){var n=this[0];if(n)return S.event.trigger(e,t,n,!0)}}),y.focusin||S.each({focus:"focusin",blur:"focusout"},function(n,r){var i=function(e){S.event.simulate(r,e.target,S.event.fix(e))};S.event.special[r]={setup:function(){var e=this.ownerDocument||this.document||this,t=Y.access(e,r);t||e.addEventListener(n,i,!0),Y.access(e,r,(t||0)+1)},teardown:function(){var e=this.ownerDocument||this.document||this,t=Y.access(e,r)-1;t?Y.access(e,r,t):(e.removeEventListener(n,i,!0),Y.remove(e,r))}}});var bt=C.location,wt={guid:Date.now()},Tt=/\?/;S.parseXML=function(e){var t,n;if(!e||"string"!=typeof e)return null;try{t=(new C.DOMParser).parseFromString(e,"text/xml")}catch(e){}return n=t&&t.getElementsByTagName("parsererror")[0],t&&!n||S.error("Invalid XML: "+(n?S.map(n.childNodes,function(e){return e.textContent}).join("\n"):e)),t};var Ct=/\[\]$/,Et=/\r?\n/g,St=/^(?:submit|button|image|reset|file)$/i,kt=/^(?:input|select|textarea|keygen)/i;function At(n,e,r,i){var t;if(Array.isArray(e))S.each(e,function(e,t){r||Ct.test(n)?i(n,t):At(n+"["+("object"==typeof t&&null!=t?e:"")+"]",t,r,i)});else if(r||"object"!==w(e))i(n,e);else for(t in e)At(n+"["+t+"]",e[t],r,i)}S.param=function(e,t){var n,r=[],i=function(e,t){var n=m(t)?t():t;r[r.length]=encodeURIComponent(e)+"="+encodeURIComponent(null==n?"":n)};if(null==e)return"";if(Array.isArray(e)||e.jquery&&!S.isPlainObject(e))S.each(e,function(){i(this.name,this.value)});else for(n in e)At(n,e[n],t,i);return r.join("&")},S.fn.extend({serialize:function(){return S.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var e=S.prop(this,"elements");return e?S.makeArray(e):this}).filter(function(){var e=this.type;return this.name&&!S(this).is(":disabled")&&kt.test(this.nodeName)&&!St.test(e)&&(this.checked||!pe.test(e))}).map(function(e,t){var n=S(this).val();return null==n?null:Array.isArray(n)?S.map(n,function(e){return{name:t.name,value:e.replace(Et,"\r\n")}}):{name:t.name,value:n.replace(Et,"\r\n")}}).get()}});var Nt=/%20/g,jt=/#.*$/,Dt=/([?&])_=[^&]*/,qt=/^(.*?):[ \t]*([^\r\n]*)$/gm,Lt=/^(?:GET|HEAD)$/,Ht=/^\/\//,Ot={},Pt={},Rt="*/".concat("*"),Mt=E.createElement("a");function It(o){return function(e,t){"string"!=typeof e&&(t=e,e="*");var n,r=0,i=e.toLowerCase().match(P)||[];if(m(t))while(n=i[r++])"+"===n[0]?(n=n.slice(1)||"*",(o[n]=o[n]||[]).unshift(t)):(o[n]=o[n]||[]).push(t)}}function Wt(t,i,o,a){var s={},u=t===Pt;function l(e){var r;return s[e]=!0,S.each(t[e]||[],function(e,t){var n=t(i,o,a);return"string"!=typeof n||u||s[n]?u?!(r=n):void 0:(i.dataTypes.unshift(n),l(n),!1)}),r}return l(i.dataTypes[0])||!s["*"]&&l("*")}function Ft(e,t){var n,r,i=S.ajaxSettings.flatOptions||{};for(n in t)void 0!==t[n]&&((i[n]?e:r||(r={}))[n]=t[n]);return r&&S.extend(!0,e,r),e}Mt.href=bt.href,S.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:bt.href,type:"GET",isLocal:/^(?:about|app|app-storage|.+-extension|file|res|widget):$/.test(bt.protocol),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":Rt,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/\bxml\b/,html:/\bhtml/,json:/\bjson\b/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":JSON.parse,"text xml":S.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(e,t){return t?Ft(Ft(e,S.ajaxSettings),t):Ft(S.ajaxSettings,e)},ajaxPrefilter:It(Ot),ajaxTransport:It(Pt),ajax:function(e,t){"object"==typeof e&&(t=e,e=void 0),t=t||{};var c,f,p,n,d,r,h,g,i,o,v=S.ajaxSetup({},t),y=v.context||v,m=v.context&&(y.nodeType||y.jquery)?S(y):S.event,x=S.Deferred(),b=S.Callbacks("once memory"),w=v.statusCode||{},a={},s={},u="canceled",T={readyState:0,getResponseHeader:function(e){var t;if(h){if(!n){n={};while(t=qt.exec(p))n[t[1].toLowerCase()+" "]=(n[t[1].toLowerCase()+" "]||[]).concat(t[2])}t=n[e.toLowerCase()+" "]}return null==t?null:t.join(", ")},getAllResponseHeaders:function(){return h?p:null},setRequestHeader:function(e,t){return null==h&&(e=s[e.toLowerCase()]=s[e.toLowerCase()]||e,a[e]=t),this},overrideMimeType:function(e){return null==h&&(v.mimeType=e),this},statusCode:function(e){var t;if(e)if(h)T.always(e[T.status]);else for(t in e)w[t]=[w[t],e[t]];return this},abort:function(e){var t=e||u;return c&&c.abort(t),l(0,t),this}};if(x.promise(T),v.url=((e||v.url||bt.href)+"").replace(Ht,bt.protocol+"//"),v.type=t.method||t.type||v.method||v.type,v.dataTypes=(v.dataType||"*").toLowerCase().match(P)||[""],null==v.crossDomain){r=E.createElement("a");try{r.href=v.url,r.href=r.href,v.crossDomain=Mt.protocol+"//"+Mt.host!=r.protocol+"//"+r.host}catch(e){v.crossDomain=!0}}if(v.data&&v.processData&&"string"!=typeof v.data&&(v.data=S.param(v.data,v.traditional)),Wt(Ot,v,t,T),h)return T;for(i in(g=S.event&&v.global)&&0==S.active++&&S.event.trigger("ajaxStart"),v.type=v.type.toUpperCase(),v.hasContent=!Lt.test(v.type),f=v.url.replace(jt,""),v.hasContent?v.data&&v.processData&&0===(v.contentType||"").indexOf("application/x-www-form-urlencoded")&&(v.data=v.data.replace(Nt,"+")):(o=v.url.slice(f.length),v.data&&(v.processData||"string"==typeof v.data)&&(f+=(Tt.test(f)?"&":"?")+v.data,delete v.data),!1===v.cache&&(f=f.replace(Dt,"$1"),o=(Tt.test(f)?"&":"?")+"_="+wt.guid+++o),v.url=f+o),v.ifModified&&(S.lastModified[f]&&T.setRequestHeader("If-Modified-Since",S.lastModified[f]),S.etag[f]&&T.setRequestHeader("If-None-Match",S.etag[f])),(v.data&&v.hasContent&&!1!==v.contentType||t.contentType)&&T.setRequestHeader("Content-Type",v.contentType),T.setRequestHeader("Accept",v.dataTypes[0]&&v.accepts[v.dataTypes[0]]?v.accepts[v.dataTypes[0]]+("*"!==v.dataTypes[0]?", "+Rt+"; q=0.01":""):v.accepts["*"]),v.headers)T.setRequestHeader(i,v.headers[i]);if(v.beforeSend&&(!1===v.beforeSend.call(y,T,v)||h))return T.abort();if(u="abort",b.add(v.complete),T.done(v.success),T.fail(v.error),c=Wt(Pt,v,t,T)){if(T.readyState=1,g&&m.trigger("ajaxSend",[T,v]),h)return T;v.async&&0<v.timeout&&(d=C.setTimeout(function(){T.abort("timeout")},v.timeout));try{h=!1,c.send(a,l)}catch(e){if(h)throw e;l(-1,e)}}else l(-1,"No Transport");function l(e,t,n,r){var i,o,a,s,u,l=t;h||(h=!0,d&&C.clearTimeout(d),c=void 0,p=r||"",T.readyState=0<e?4:0,i=200<=e&&e<300||304===e,n&&(s=function(e,t,n){var r,i,o,a,s=e.contents,u=e.dataTypes;while("*"===u[0])u.shift(),void 0===r&&(r=e.mimeType||t.getResponseHeader("Content-Type"));if(r)for(i in s)if(s[i]&&s[i].test(r)){u.unshift(i);break}if(u[0]in n)o=u[0];else{for(i in n){if(!u[0]||e.converters[i+" "+u[0]]){o=i;break}a||(a=i)}o=o||a}if(o)return o!==u[0]&&u.unshift(o),n[o]}(v,T,n)),!i&&-1<S.inArray("script",v.dataTypes)&&S.inArray("json",v.dataTypes)<0&&(v.converters["text script"]=function(){}),s=function(e,t,n,r){var i,o,a,s,u,l={},c=e.dataTypes.slice();if(c[1])for(a in e.converters)l[a.toLowerCase()]=e.converters[a];o=c.shift();while(o)if(e.responseFields[o]&&(n[e.responseFields[o]]=t),!u&&r&&e.dataFilter&&(t=e.dataFilter(t,e.dataType)),u=o,o=c.shift())if("*"===o)o=u;else if("*"!==u&&u!==o){if(!(a=l[u+" "+o]||l["* "+o]))for(i in l)if((s=i.split(" "))[1]===o&&(a=l[u+" "+s[0]]||l["* "+s[0]])){!0===a?a=l[i]:!0!==l[i]&&(o=s[0],c.unshift(s[1]));break}if(!0!==a)if(a&&e["throws"])t=a(t);else try{t=a(t)}catch(e){return{state:"parsererror",error:a?e:"No conversion from "+u+" to "+o}}}return{state:"success",data:t}}(v,s,T,i),i?(v.ifModified&&((u=T.getResponseHeader("Last-Modified"))&&(S.lastModified[f]=u),(u=T.getResponseHeader("etag"))&&(S.etag[f]=u)),204===e||"HEAD"===v.type?l="nocontent":304===e?l="notmodified":(l=s.state,o=s.data,i=!(a=s.error))):(a=l,!e&&l||(l="error",e<0&&(e=0))),T.status=e,T.statusText=(t||l)+"",i?x.resolveWith(y,[o,l,T]):x.rejectWith(y,[T,l,a]),T.statusCode(w),w=void 0,g&&m.trigger(i?"ajaxSuccess":"ajaxError",[T,v,i?o:a]),b.fireWith(y,[T,l]),g&&(m.trigger("ajaxComplete",[T,v]),--S.active||S.event.trigger("ajaxStop")))}return T},getJSON:function(e,t,n){return S.get(e,t,n,"json")},getScript:function(e,t){return S.get(e,void 0,t,"script")}}),S.each(["get","post"],function(e,i){S[i]=function(e,t,n,r){return m(t)&&(r=r||n,n=t,t=void 0),S.ajax(S.extend({url:e,type:i,dataType:r,data:t,success:n},S.isPlainObject(e)&&e))}}),S.ajaxPrefilter(function(e){var t;for(t in e.headers)"content-type"===t.toLowerCase()&&(e.contentType=e.headers[t]||"")}),S._evalUrl=function(e,t,n){return S.ajax({url:e,type:"GET",dataType:"script",cache:!0,async:!1,global:!1,converters:{"text script":function(){}},dataFilter:function(e){S.globalEval(e,t,n)}})},S.fn.extend({wrapAll:function(e){var t;return this[0]&&(m(e)&&(e=e.call(this[0])),t=S(e,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&t.insertBefore(this[0]),t.map(function(){var e=this;while(e.firstElementChild)e=e.firstElementChild;return e}).append(this)),this},wrapInner:function(n){return m(n)?this.each(function(e){S(this).wrapInner(n.call(this,e))}):this.each(function(){var e=S(this),t=e.contents();t.length?t.wrapAll(n):e.append(n)})},wrap:function(t){var n=m(t);return this.each(function(e){S(this).wrapAll(n?t.call(this,e):t)})},unwrap:function(e){return this.parent(e).not("body").each(function(){S(this).replaceWith(this.childNodes)}),this}}),S.expr.pseudos.hidden=function(e){return!S.expr.pseudos.visible(e)},S.expr.pseudos.visible=function(e){return!!(e.offsetWidth||e.offsetHeight||e.getClientRects().length)},S.ajaxSettings.xhr=function(){try{return new C.XMLHttpRequest}catch(e){}};var Bt={0:200,1223:204},$t=S.ajaxSettings.xhr();y.cors=!!$t&&"withCredentials"in $t,y.ajax=$t=!!$t,S.ajaxTransport(function(i){var o,a;if(y.cors||$t&&!i.crossDomain)return{send:function(e,t){var n,r=i.xhr();if(r.open(i.type,i.url,i.async,i.username,i.password),i.xhrFields)for(n in i.xhrFields)r[n]=i.xhrFields[n];for(n in i.mimeType&&r.overrideMimeType&&r.overrideMimeType(i.mimeType),i.crossDomain||e["X-Requested-With"]||(e["X-Requested-With"]="XMLHttpRequest"),e)r.setRequestHeader(n,e[n]);o=function(e){return function(){o&&(o=a=r.onload=r.onerror=r.onabort=r.ontimeout=r.onreadystatechange=null,"abort"===e?r.abort():"error"===e?"number"!=typeof r.status?t(0,"error"):t(r.status,r.statusText):t(Bt[r.status]||r.status,r.statusText,"text"!==(r.responseType||"text")||"string"!=typeof r.responseText?{binary:r.response}:{text:r.responseText},r.getAllResponseHeaders()))}},r.onload=o(),a=r.onerror=r.ontimeout=o("error"),void 0!==r.onabort?r.onabort=a:r.onreadystatechange=function(){4===r.readyState&&C.setTimeout(function(){o&&a()})},o=o("abort");try{r.send(i.hasContent&&i.data||null)}catch(e){if(o)throw e}},abort:function(){o&&o()}}}),S.ajaxPrefilter(function(e){e.crossDomain&&(e.contents.script=!1)}),S.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/\b(?:java|ecma)script\b/},converters:{"text script":function(e){return S.globalEval(e),e}}}),S.ajaxPrefilter("script",function(e){void 0===e.cache&&(e.cache=!1),e.crossDomain&&(e.type="GET")}),S.ajaxTransport("script",function(n){var r,i;if(n.crossDomain||n.scriptAttrs)return{send:function(e,t){r=S("<script>").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on("load error",i=function(e){r.remove(),i=null,e&&t("error"===e.type?404:200,e.type)}),E.head.appendChild(r[0])},abort:function(){i&&i()}}});var _t,zt=[],Ut=/(=)\?(?=&|$)|\?\?/;S.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=zt.pop()||S.expando+"_"+wt.guid++;return this[e]=!0,e}}),S.ajaxPrefilter("json jsonp",function(e,t,n){var r,i,o,a=!1!==e.jsonp&&(Ut.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Ut.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return r=e.jsonpCallback=m(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Ut,"$1"+r):!1!==e.jsonp&&(e.url+=(Tt.test(e.url)?"&":"?")+e.jsonp+"="+r),e.converters["script json"]=function(){return o||S.error(r+" was not called"),o[0]},e.dataTypes[0]="json",i=C[r],C[r]=function(){o=arguments},n.always(function(){void 0===i?S(C).removeProp(r):C[r]=i,e[r]&&(e.jsonpCallback=t.jsonpCallback,zt.push(r)),o&&m(i)&&i(o[0]),o=i=void 0}),"script"}),y.createHTMLDocument=((_t=E.implementation.createHTMLDocument("").body).innerHTML="<form></form><form></form>",2===_t.childNodes.length),S.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(y.createHTMLDocument?((r=(t=E.implementation.createHTMLDocument("")).createElement("base")).href=E.location.href,t.head.appendChild(r)):t=E),o=!n&&[],(i=N.exec(e))?[t.createElement(i[1])]:(i=xe([e],t,o),o&&o.length&&S(o).remove(),S.merge([],i.childNodes)));var r,i,o},S.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return-1<s&&(r=ht(e.slice(s)),e=e.slice(0,s)),m(t)?(n=t,t=void 0):t&&"object"==typeof t&&(i="POST"),0<a.length&&S.ajax({url:e,type:i||"GET",dataType:"html",data:t}).done(function(e){o=arguments,a.html(r?S("<div>").append(S.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},S.expr.pseudos.animated=function(t){return S.grep(S.timers,function(e){return t===e.elem}).length},S.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=S.css(e,"position"),c=S(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=S.css(e,"top"),u=S.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),m(t)&&(t=t.call(e,n,S.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):c.css(f)}},S.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){S.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===S.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===S.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=S(e).offset()).top+=S.css(e,"borderTopWidth",!0),i.left+=S.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-S.css(r,"marginTop",!0),left:t.left-i.left-S.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===S.css(e,"position"))e=e.offsetParent;return e||re})}}),S.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;S.fn[t]=function(e){return $(this,function(e,t,n){var r;if(x(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),S.each(["top","left"],function(e,n){S.cssHooks[n]=Fe(y.pixelPosition,function(e,t){if(t)return t=We(e,n),Pe.test(t)?S(e).position()[n]+"px":t})}),S.each({Height:"height",Width:"width"},function(a,s){S.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){S.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return $(this,function(e,t,n){var r;return x(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?S.css(e,t,i):S.style(e,t,n,i)},s,n?e:void 0,n)}})}),S.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){S.fn[t]=function(e){return this.on(t,e)}}),S.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)},hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),S.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){S.fn[n]=function(e,t){return 0<arguments.length?this.on(n,null,e,t):this.trigger(n)}});var Xt=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g;S.proxy=function(e,t){var n,r,i;if("string"==typeof t&&(n=e[t],t=e,e=n),m(e))return r=s.call(arguments,2),(i=function(){return e.apply(t||this,r.concat(s.call(arguments)))}).guid=e.guid=e.guid||S.guid++,i},S.holdReady=function(e){e?S.readyWait++:S.ready(!0)},S.isArray=Array.isArray,S.parseJSON=JSON.parse,S.nodeName=A,S.isFunction=m,S.isWindow=x,S.camelCase=X,S.type=w,S.now=Date.now,S.isNumeric=function(e){var t=S.type(e);return("number"===t||"string"===t)&&!isNaN(e-parseFloat(e))},S.trim=function(e){return null==e?"":(e+"").replace(Xt,"")},"function"==typeof define&&define.amd&&define("jquery",[],function(){return S});var Vt=C.jQuery,Gt=C.$;return S.noConflict=function(e){return C.$===S&&(C.$=Gt),e&&C.jQuery===S&&(C.jQuery=Vt),S},"undefined"==typeof e&&(C.jQuery=C.$=S),S});
(-)a/koha-tmpl/opac-tmpl/bootstrap/lib/jquery/jquery-migrate-3.1.0.min.js (-2 lines)
Lines 1-2 Link Here
1
/*! jQuery Migrate v3.1.0 | (c) OpenJS Foundation and other contributors | jquery.org/license */
2
"undefined"==typeof jQuery.migrateMute&&(jQuery.migrateMute=!0),function(t){"function"==typeof define&&define.amd?define(["jquery"],function(e){return t(e,window)}):"object"==typeof module&&module.exports?module.exports=t(require("jquery"),window):t(jQuery,window)}(function(s,n){"use strict";function e(e){return 0<=function(e,t){for(var r=/^(\d+)\.(\d+)\.(\d+)/,n=r.exec(e)||[],o=r.exec(t)||[],i=1;i<=3;i++){if(+n[i]>+o[i])return 1;if(+n[i]<+o[i])return-1}return 0}(s.fn.jquery,e)}s.migrateVersion="3.1.0",n.console&&n.console.log&&(s&&e("3.0.0")||n.console.log("JQMIGRATE: jQuery 3.0.0+ REQUIRED"),s.migrateWarnings&&n.console.log("JQMIGRATE: Migrate plugin loaded multiple times"),n.console.log("JQMIGRATE: Migrate is installed"+(s.migrateMute?"":" with logging active")+", version "+s.migrateVersion));var r={};function u(e){var t=n.console;r[e]||(r[e]=!0,s.migrateWarnings.push(e),t&&t.warn&&!s.migrateMute&&(t.warn("JQMIGRATE: "+e),s.migrateTrace&&t.trace&&t.trace()))}function t(e,t,r,n){Object.defineProperty(e,t,{configurable:!0,enumerable:!0,get:function(){return u(n),r},set:function(e){u(n),r=e}})}function o(e,t,r,n){e[t]=function(){return u(n),r.apply(this,arguments)}}s.migrateWarnings=[],void 0===s.migrateTrace&&(s.migrateTrace=!0),s.migrateReset=function(){r={},s.migrateWarnings.length=0},"BackCompat"===n.document.compatMode&&u("jQuery is not compatible with Quirks Mode");var i,a=s.fn.init,c=s.isNumeric,d=s.find,l=/\[(\s*[-\w]+\s*)([~|^$*]?=)\s*([-\w#]*?#[-\w#]*)\s*\]/,p=/\[(\s*[-\w]+\s*)([~|^$*]?=)\s*([-\w#]*?#[-\w#]*)\s*\]/g;for(i in s.fn.init=function(e){var t=Array.prototype.slice.call(arguments);return"string"==typeof e&&"#"===e&&(u("jQuery( '#' ) is not a valid selector"),t[0]=[]),a.apply(this,t)},s.fn.init.prototype=s.fn,s.find=function(t){var r=Array.prototype.slice.call(arguments);if("string"==typeof t&&l.test(t))try{n.document.querySelector(t)}catch(e){t=t.replace(p,function(e,t,r,n){return"["+t+r+'"'+n+'"]'});try{n.document.querySelector(t),u("Attribute selector with '#' must be quoted: "+r[0]),r[0]=t}catch(e){u("Attribute selector with '#' was not fixed: "+r[0])}}return d.apply(this,r)},d)Object.prototype.hasOwnProperty.call(d,i)&&(s.find[i]=d[i]);s.fn.size=function(){return u("jQuery.fn.size() is deprecated and removed; use the .length property"),this.length},s.parseJSON=function(){return u("jQuery.parseJSON is deprecated; use JSON.parse"),JSON.parse.apply(null,arguments)},s.isNumeric=function(e){var t,r,n=c(e),o=(r=(t=e)&&t.toString(),!s.isArray(t)&&0<=r-parseFloat(r)+1);return n!==o&&u("jQuery.isNumeric() should not be called on constructed objects"),o},e("3.3.0")&&o(s,"isWindow",function(e){return null!=e&&e===e.window},"jQuery.isWindow() is deprecated"),o(s,"holdReady",s.holdReady,"jQuery.holdReady is deprecated"),o(s,"unique",s.uniqueSort,"jQuery.unique is deprecated; use jQuery.uniqueSort"),t(s.expr,"filters",s.expr.pseudos,"jQuery.expr.filters is deprecated; use jQuery.expr.pseudos"),t(s.expr,":",s.expr.pseudos,"jQuery.expr[':'] is deprecated; use jQuery.expr.pseudos"),e("3.2.0")&&o(s,"nodeName",s.nodeName,"jQuery.nodeName is deprecated");var f=s.ajax;s.ajax=function(){var e=f.apply(this,arguments);return e.promise&&(o(e,"success",e.done,"jQXHR.success is deprecated and removed"),o(e,"error",e.fail,"jQXHR.error is deprecated and removed"),o(e,"complete",e.always,"jQXHR.complete is deprecated and removed")),e};var y=s.fn.removeAttr,m=s.fn.toggleClass,h=/\S+/g;s.fn.removeAttr=function(e){var r=this;return s.each(e.match(h),function(e,t){s.expr.match.bool.test(t)&&(u("jQuery.fn.removeAttr no longer sets boolean properties: "+t),r.prop(t,!1))}),y.apply(this,arguments)};var g=!(s.fn.toggleClass=function(t){return void 0!==t&&"boolean"!=typeof t?m.apply(this,arguments):(u("jQuery.fn.toggleClass( boolean ) is deprecated"),this.each(function(){var e=this.getAttribute&&this.getAttribute("class")||"";e&&s.data(this,"__className__",e),this.setAttribute&&this.setAttribute("class",e||!1===t?"":s.data(this,"__className__")||"")}))});s.swap&&s.each(["height","width","reliableMarginRight"],function(e,t){var r=s.cssHooks[t]&&s.cssHooks[t].get;r&&(s.cssHooks[t].get=function(){var e;return g=!0,e=r.apply(this,arguments),g=!1,e})}),s.swap=function(e,t,r,n){var o,i,a={};for(i in g||u("jQuery.swap() is undocumented and deprecated"),t)a[i]=e.style[i],e.style[i]=t[i];for(i in o=r.apply(e,n||[]),t)e.style[i]=a[i];return o};var v=s.data;s.data=function(e,t,r){var n;if(t&&"object"==typeof t&&2===arguments.length){n=s.hasData(e)&&v.call(this,e);var o={};for(var i in t)i!==s.camelCase(i)?(u("jQuery.data() always sets/gets camelCased names: "+i),n[i]=t[i]):o[i]=t[i];return v.call(this,e,o),t}return t&&"string"==typeof t&&t!==s.camelCase(t)&&(n=s.hasData(e)&&v.call(this,e))&&t in n?(u("jQuery.data() always sets/gets camelCased names: "+t),2<arguments.length&&(n[t]=r),n[t]):v.apply(this,arguments)};function j(e){return e}var Q=s.Tween.prototype.run;s.Tween.prototype.run=function(){1<s.easing[this.easing].length&&(u("'jQuery.easing."+this.easing.toString()+"' should use only one argument"),s.easing[this.easing]=j),Q.apply(this,arguments)};var w=s.fx.interval||13,b="jQuery.fx.interval is deprecated";n.requestAnimationFrame&&Object.defineProperty(s.fx,"interval",{configurable:!0,enumerable:!0,get:function(){return n.document.hidden||u(b),w},set:function(e){u(b),w=e}});var x=s.fn.load,k=s.event.add,A=s.event.fix;s.event.props=[],s.event.fixHooks={},t(s.event.props,"concat",s.event.props.concat,"jQuery.event.props.concat() is deprecated and removed"),s.event.fix=function(e){var t,r=e.type,n=this.fixHooks[r],o=s.event.props;if(o.length){u("jQuery.event.props are deprecated and removed: "+o.join());while(o.length)s.event.addProp(o.pop())}if(n&&!n._migrated_&&(n._migrated_=!0,u("jQuery.event.fixHooks are deprecated and removed: "+r),(o=n.props)&&o.length))while(o.length)s.event.addProp(o.pop());return t=A.call(this,e),n&&n.filter?n.filter(t,e):t},s.event.add=function(e,t){return e===n&&"load"===t&&"complete"===n.document.readyState&&u("jQuery(window).on('load'...) called after load event occurred"),k.apply(this,arguments)},s.each(["load","unload","error"],function(e,t){s.fn[t]=function(){var e=Array.prototype.slice.call(arguments,0);return"load"===t&&"string"==typeof e[0]?x.apply(this,e):(u("jQuery.fn."+t+"() is deprecated"),e.splice(0,0,t),arguments.length?this.on.apply(this,e):(this.triggerHandler.apply(this,e),this))}}),s.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,r){s.fn[r]=function(e,t){return u("jQuery.fn."+r+"() event shorthand is deprecated"),0<arguments.length?this.on(r,null,e,t):this.trigger(r)}}),s(function(){s(n.document).triggerHandler("ready")}),s.event.special.ready={setup:function(){this===n.document&&u("'ready' event is deprecated")}},s.fn.extend({bind:function(e,t,r){return u("jQuery.fn.bind() is deprecated"),this.on(e,null,t,r)},unbind:function(e,t){return u("jQuery.fn.unbind() is deprecated"),this.off(e,null,t)},delegate:function(e,t,r,n){return u("jQuery.fn.delegate() is deprecated"),this.on(t,e,r,n)},undelegate:function(e,t,r){return u("jQuery.fn.undelegate() is deprecated"),1===arguments.length?this.off(e,"**"):this.off(t,e||"**",r)},hover:function(e,t){return u("jQuery.fn.hover() is deprecated"),this.on("mouseenter",e).on("mouseleave",t||e)}});var S=s.fn.offset;s.fn.offset=function(){var e,t=this[0],r={top:0,left:0};return t&&t.nodeType?(e=(t.ownerDocument||n.document).documentElement,s.contains(e,t)?S.apply(this,arguments):(u("jQuery.fn.offset() requires an element connected to a document"),r)):(u("jQuery.fn.offset() requires a valid DOM element"),r)};var q=s.param;s.param=function(e,t){var r=s.ajaxSettings&&s.ajaxSettings.traditional;return void 0===t&&r&&(u("jQuery.param() no longer uses jQuery.ajaxSettings.traditional"),t=r),q.call(this,e,t)};var C=s.fn.andSelf||s.fn.addBack;s.fn.andSelf=function(){return u("jQuery.fn.andSelf() is deprecated and removed, use jQuery.fn.addBack()"),C.apply(this,arguments)};var M=s.Deferred,R=[["resolve","done",s.Callbacks("once memory"),s.Callbacks("once memory"),"resolved"],["reject","fail",s.Callbacks("once memory"),s.Callbacks("once memory"),"rejected"],["notify","progress",s.Callbacks("memory"),s.Callbacks("memory")]];return s.Deferred=function(e){var i=M(),a=i.promise();return i.pipe=a.pipe=function(){var o=arguments;return u("deferred.pipe() is deprecated"),s.Deferred(function(n){s.each(R,function(e,t){var r=s.isFunction(o[e])&&o[e];i[t[1]](function(){var e=r&&r.apply(this,arguments);e&&s.isFunction(e.promise)?e.promise().done(n.resolve).fail(n.reject).progress(n.notify):n[t[0]+"With"](this===a?n.promise():this,r?[e]:arguments)})}),o=null}).promise()},e&&e.call(i,i),i},s.Deferred.exceptionHook=M.exceptionHook,s});
(-)a/koha-tmpl/opac-tmpl/bootstrap/lib/jquery/jquery-migrate-3.3.2.min.js (-1 / +2 lines)
Line 0 Link Here
0
- 
1
/*! jQuery Migrate v3.3.2 | (c) OpenJS Foundation and other contributors | jquery.org/license */
2
"undefined"==typeof jQuery.migrateMute&&(jQuery.migrateMute=!0),function(t){"use strict";"function"==typeof define&&define.amd?define(["jquery"],function(e){return t(e,window)}):"object"==typeof module&&module.exports?module.exports=t(require("jquery"),window):t(jQuery,window)}(function(s,n){"use strict";function e(e){return 0<=function(e,t){for(var r=/^(\d+)\.(\d+)\.(\d+)/,n=r.exec(e)||[],o=r.exec(t)||[],i=1;i<=3;i++){if(+o[i]<+n[i])return 1;if(+n[i]<+o[i])return-1}return 0}(s.fn.jquery,e)}s.migrateVersion="3.3.2",n.console&&n.console.log&&(s&&e("3.0.0")||n.console.log("JQMIGRATE: jQuery 3.0.0+ REQUIRED"),s.migrateWarnings&&n.console.log("JQMIGRATE: Migrate plugin loaded multiple times"),n.console.log("JQMIGRATE: Migrate is installed"+(s.migrateMute?"":" with logging active")+", version "+s.migrateVersion));var r={};function u(e){var t=n.console;s.migrateDeduplicateWarnings&&r[e]||(r[e]=!0,s.migrateWarnings.push(e),t&&t.warn&&!s.migrateMute&&(t.warn("JQMIGRATE: "+e),s.migrateTrace&&t.trace&&t.trace()))}function t(e,t,r,n){Object.defineProperty(e,t,{configurable:!0,enumerable:!0,get:function(){return u(n),r},set:function(e){u(n),r=e}})}function o(e,t,r,n){e[t]=function(){return u(n),r.apply(this,arguments)}}s.migrateDeduplicateWarnings=!0,s.migrateWarnings=[],void 0===s.migrateTrace&&(s.migrateTrace=!0),s.migrateReset=function(){r={},s.migrateWarnings.length=0},"BackCompat"===n.document.compatMode&&u("jQuery is not compatible with Quirks Mode");var i,a,c,d={},l=s.fn.init,p=s.find,f=/\[(\s*[-\w]+\s*)([~|^$*]?=)\s*([-\w#]*?#[-\w#]*)\s*\]/,y=/\[(\s*[-\w]+\s*)([~|^$*]?=)\s*([-\w#]*?#[-\w#]*)\s*\]/g,m=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g;for(i in s.fn.init=function(e){var t=Array.prototype.slice.call(arguments);return"string"==typeof e&&"#"===e&&(u("jQuery( '#' ) is not a valid selector"),t[0]=[]),l.apply(this,t)},s.fn.init.prototype=s.fn,s.find=function(t){var r=Array.prototype.slice.call(arguments);if("string"==typeof t&&f.test(t))try{n.document.querySelector(t)}catch(e){t=t.replace(y,function(e,t,r,n){return"["+t+r+'"'+n+'"]'});try{n.document.querySelector(t),u("Attribute selector with '#' must be quoted: "+r[0]),r[0]=t}catch(e){u("Attribute selector with '#' was not fixed: "+r[0])}}return p.apply(this,r)},p)Object.prototype.hasOwnProperty.call(p,i)&&(s.find[i]=p[i]);o(s.fn,"size",function(){return this.length},"jQuery.fn.size() is deprecated and removed; use the .length property"),o(s,"parseJSON",function(){return JSON.parse.apply(null,arguments)},"jQuery.parseJSON is deprecated; use JSON.parse"),o(s,"holdReady",s.holdReady,"jQuery.holdReady is deprecated"),o(s,"unique",s.uniqueSort,"jQuery.unique is deprecated; use jQuery.uniqueSort"),t(s.expr,"filters",s.expr.pseudos,"jQuery.expr.filters is deprecated; use jQuery.expr.pseudos"),t(s.expr,":",s.expr.pseudos,"jQuery.expr[':'] is deprecated; use jQuery.expr.pseudos"),e("3.1.1")&&o(s,"trim",function(e){return null==e?"":(e+"").replace(m,"")},"jQuery.trim is deprecated; use String.prototype.trim"),e("3.2.0")&&(o(s,"nodeName",function(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()},"jQuery.nodeName is deprecated"),o(s,"isArray",Array.isArray,"jQuery.isArray is deprecated; use Array.isArray")),e("3.3.0")&&(o(s,"isNumeric",function(e){var t=typeof e;return("number"==t||"string"==t)&&!isNaN(e-parseFloat(e))},"jQuery.isNumeric() is deprecated"),s.each("Boolean Number String Function Array Date RegExp Object Error Symbol".split(" "),function(e,t){d["[object "+t+"]"]=t.toLowerCase()}),o(s,"type",function(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?d[Object.prototype.toString.call(e)]||"object":typeof e},"jQuery.type is deprecated"),o(s,"isFunction",function(e){return"function"==typeof e},"jQuery.isFunction() is deprecated"),o(s,"isWindow",function(e){return null!=e&&e===e.window},"jQuery.isWindow() is deprecated")),s.ajax&&(a=s.ajax,c=/(=)\?(?=&|$)|\?\?/,s.ajax=function(){var e=a.apply(this,arguments);return e.promise&&(o(e,"success",e.done,"jQXHR.success is deprecated and removed"),o(e,"error",e.fail,"jQXHR.error is deprecated and removed"),o(e,"complete",e.always,"jQXHR.complete is deprecated and removed")),e},e("4.0.0")||s.ajaxPrefilter("+json",function(e){!1!==e.jsonp&&(c.test(e.url)||"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&c.test(e.data))&&u("JSON-to-JSONP auto-promotion is deprecated")}));var g=s.fn.removeAttr,h=s.fn.toggleClass,v=/\S+/g;function j(e){return e.replace(/-([a-z])/g,function(e,t){return t.toUpperCase()})}s.fn.removeAttr=function(e){var r=this;return s.each(e.match(v),function(e,t){s.expr.match.bool.test(t)&&(u("jQuery.fn.removeAttr no longer sets boolean properties: "+t),r.prop(t,!1))}),g.apply(this,arguments)};var Q,b=!(s.fn.toggleClass=function(t){return void 0!==t&&"boolean"!=typeof t?h.apply(this,arguments):(u("jQuery.fn.toggleClass( boolean ) is deprecated"),this.each(function(){var e=this.getAttribute&&this.getAttribute("class")||"";e&&s.data(this,"__className__",e),this.setAttribute&&this.setAttribute("class",!e&&!1!==t&&s.data(this,"__className__")||"")}))}),w=/^[a-z]/,x=/^(?:Border(?:Top|Right|Bottom|Left)?(?:Width|)|(?:Margin|Padding)?(?:Top|Right|Bottom|Left)?|(?:Min|Max)?(?:Width|Height))$/;s.swap&&s.each(["height","width","reliableMarginRight"],function(e,t){var r=s.cssHooks[t]&&s.cssHooks[t].get;r&&(s.cssHooks[t].get=function(){var e;return b=!0,e=r.apply(this,arguments),b=!1,e})}),s.swap=function(e,t,r,n){var o,i,a={};for(i in b||u("jQuery.swap() is undocumented and deprecated"),t)a[i]=e.style[i],e.style[i]=t[i];for(i in o=r.apply(e,n||[]),t)e.style[i]=a[i];return o},e("3.4.0")&&"undefined"!=typeof Proxy&&(s.cssProps=new Proxy(s.cssProps||{},{set:function(){return u("JQMIGRATE: jQuery.cssProps is deprecated"),Reflect.set.apply(this,arguments)}})),s.cssNumber||(s.cssNumber={}),Q=s.fn.css,s.fn.css=function(e,t){var r,n,o=this;return e&&"object"==typeof e&&!Array.isArray(e)?(s.each(e,function(e,t){s.fn.css.call(o,e,t)}),this):("number"==typeof t&&(r=j(e),n=r,w.test(n)&&x.test(n[0].toUpperCase()+n.slice(1))||s.cssNumber[r]||u('Number-typed values are deprecated for jQuery.fn.css( "'+e+'", value )')),Q.apply(this,arguments))};var A,k,S,M,N=s.data;s.data=function(e,t,r){var n,o,i;if(t&&"object"==typeof t&&2===arguments.length){for(i in n=s.hasData(e)&&N.call(this,e),o={},t)i!==j(i)?(u("jQuery.data() always sets/gets camelCased names: "+i),n[i]=t[i]):o[i]=t[i];return N.call(this,e,o),t}return t&&"string"==typeof t&&t!==j(t)&&(n=s.hasData(e)&&N.call(this,e))&&t in n?(u("jQuery.data() always sets/gets camelCased names: "+t),2<arguments.length&&(n[t]=r),n[t]):N.apply(this,arguments)},s.fx&&(S=s.Tween.prototype.run,M=function(e){return e},s.Tween.prototype.run=function(){1<s.easing[this.easing].length&&(u("'jQuery.easing."+this.easing.toString()+"' should use only one argument"),s.easing[this.easing]=M),S.apply(this,arguments)},A=s.fx.interval||13,k="jQuery.fx.interval is deprecated",n.requestAnimationFrame&&Object.defineProperty(s.fx,"interval",{configurable:!0,enumerable:!0,get:function(){return n.document.hidden||u(k),A},set:function(e){u(k),A=e}}));var R=s.fn.load,H=s.event.add,C=s.event.fix;s.event.props=[],s.event.fixHooks={},t(s.event.props,"concat",s.event.props.concat,"jQuery.event.props.concat() is deprecated and removed"),s.event.fix=function(e){var t,r=e.type,n=this.fixHooks[r],o=s.event.props;if(o.length){u("jQuery.event.props are deprecated and removed: "+o.join());while(o.length)s.event.addProp(o.pop())}if(n&&!n._migrated_&&(n._migrated_=!0,u("jQuery.event.fixHooks are deprecated and removed: "+r),(o=n.props)&&o.length))while(o.length)s.event.addProp(o.pop());return t=C.call(this,e),n&&n.filter?n.filter(t,e):t},s.event.add=function(e,t){return e===n&&"load"===t&&"complete"===n.document.readyState&&u("jQuery(window).on('load'...) called after load event occurred"),H.apply(this,arguments)},s.each(["load","unload","error"],function(e,t){s.fn[t]=function(){var e=Array.prototype.slice.call(arguments,0);return"load"===t&&"string"==typeof e[0]?R.apply(this,e):(u("jQuery.fn."+t+"() is deprecated"),e.splice(0,0,t),arguments.length?this.on.apply(this,e):(this.triggerHandler.apply(this,e),this))}}),s.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,r){s.fn[r]=function(e,t){return u("jQuery.fn."+r+"() event shorthand is deprecated"),0<arguments.length?this.on(r,null,e,t):this.trigger(r)}}),s(function(){s(n.document).triggerHandler("ready")}),s.event.special.ready={setup:function(){this===n.document&&u("'ready' event is deprecated")}},s.fn.extend({bind:function(e,t,r){return u("jQuery.fn.bind() is deprecated"),this.on(e,null,t,r)},unbind:function(e,t){return u("jQuery.fn.unbind() is deprecated"),this.off(e,null,t)},delegate:function(e,t,r,n){return u("jQuery.fn.delegate() is deprecated"),this.on(t,e,r,n)},undelegate:function(e,t,r){return u("jQuery.fn.undelegate() is deprecated"),1===arguments.length?this.off(e,"**"):this.off(t,e||"**",r)},hover:function(e,t){return u("jQuery.fn.hover() is deprecated"),this.on("mouseenter",e).on("mouseleave",t||e)}});function T(e){var t=n.document.implementation.createHTMLDocument("");return t.body.innerHTML=e,t.body&&t.body.innerHTML}function P(e){var t=e.replace(O,"<$1></$2>");t!==e&&T(e)!==T(t)&&u("HTML tags must be properly nested and closed: "+e)}var O=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>\x20\t\r\n\f]*)[^>]*)\/>/gi,q=s.htmlPrefilter;s.UNSAFE_restoreLegacyHtmlPrefilter=function(){s.htmlPrefilter=function(e){return P(e),e.replace(O,"<$1></$2>")}},s.htmlPrefilter=function(e){return P(e),q(e)};var D,_=s.fn.offset;s.fn.offset=function(){var e=this[0];return!e||e.nodeType&&e.getBoundingClientRect?_.apply(this,arguments):(u("jQuery.fn.offset() requires a valid DOM element"),arguments.length?this:void 0)},s.ajax&&(D=s.param,s.param=function(e,t){var r=s.ajaxSettings&&s.ajaxSettings.traditional;return void 0===t&&r&&(u("jQuery.param() no longer uses jQuery.ajaxSettings.traditional"),t=r),D.call(this,e,t)});var E,F,J=s.fn.andSelf||s.fn.addBack;return s.fn.andSelf=function(){return u("jQuery.fn.andSelf() is deprecated and removed, use jQuery.fn.addBack()"),J.apply(this,arguments)},s.Deferred&&(E=s.Deferred,F=[["resolve","done",s.Callbacks("once memory"),s.Callbacks("once memory"),"resolved"],["reject","fail",s.Callbacks("once memory"),s.Callbacks("once memory"),"rejected"],["notify","progress",s.Callbacks("memory"),s.Callbacks("memory")]],s.Deferred=function(e){var i=E(),a=i.promise();return i.pipe=a.pipe=function(){var o=arguments;return u("deferred.pipe() is deprecated"),s.Deferred(function(n){s.each(F,function(e,t){var r="function"==typeof o[e]&&o[e];i[t[1]](function(){var e=r&&r.apply(this,arguments);e&&"function"==typeof e.promise?e.promise().done(n.resolve).fail(n.reject).progress(n.notify):n[t[0]+"With"](this===a?n.promise():this,r?[e]:arguments)})}),o=null}).promise()},e&&e.call(i,i),i},s.Deferred.exceptionHook=E.exceptionHook),s});

Return to bug 29155