From 51f9ad485a2c062baa6edbfa35197cf8cfcf47d8 Mon Sep 17 00:00:00 2001 From: Chuck Scott Date: Thu, 4 Aug 2016 14:07:03 -0400 Subject: [PATCH] Added member url click-throughs and page views data collection, Added reports for this data on the member dashboard, Added a jquery lib to print portions of a page, Added a simple php library to create graphs, Added code to produce graphs from the url click-through and page view counte, Cleaned up issue with the drop_database... script not having been updated, Other minor issues and fixes. --- assets/graph.png | Bin 0 -> 286 bytes classes/data/dataMemberInfo.php | 35 + controllers/admin.php | 5 + defines.php | 3 +- index.php | 2 +- js/PrintArea/PrintArea.jquery.json | 15 + js/PrintArea/ReadMe.txt | 31 + js/PrintArea/demo/FoesEnd.jpg | Bin 0 -> 52747 bytes js/PrintArea/demo/PrintArea.css | 45 + js/PrintArea/demo/PrintArea.html | 189 + .../ui-lightness/images/animated-overlay.gif | Bin 0 -> 1738 bytes .../ui-bg_diagonals-thick_18_b81900_40x40.png | Bin 0 -> 418 bytes .../ui-bg_diagonals-thick_20_666666_40x40.png | Bin 0 -> 312 bytes .../images/ui-bg_flat_10_000000_40x100.png | Bin 0 -> 205 bytes .../images/ui-bg_glass_100_f6f6f6_1x400.png | Bin 0 -> 262 bytes .../images/ui-bg_glass_100_fdf5ce_1x400.png | Bin 0 -> 348 bytes .../images/ui-bg_glass_65_ffffff_1x400.png | Bin 0 -> 207 bytes .../ui-bg_gloss-wave_35_f6a828_500x100.png | Bin 0 -> 5815 bytes .../ui-bg_highlight-soft_100_eeeeee_1x100.png | Bin 0 -> 278 bytes .../ui-bg_highlight-soft_75_ffe45c_1x100.png | Bin 0 -> 328 bytes .../images/ui-icons_222222_256x240.png | Bin 0 -> 6922 bytes .../images/ui-icons_228ef1_256x240.png | Bin 0 -> 4549 bytes .../images/ui-icons_ef8c08_256x240.png | Bin 0 -> 4549 bytes .../images/ui-icons_ffd27a_256x240.png | Bin 0 -> 4549 bytes .../images/ui-icons_ffffff_256x240.png | Bin 0 -> 6299 bytes .../ui-lightness/jquery-ui-1.10.4.custom.css | 1178 ++ .../jquery-ui-1.10.4.custom.min.css | 7 + js/PrintArea/demo/jquery-1.10.1.js | 9807 ++++++++++ js/PrintArea/demo/jquery-1.10.2.js | 9789 ++++++++++ js/PrintArea/demo/jquery-1.11.0.js | 10337 +++++++++++ js/PrintArea/demo/jquery-1.9.0.js | 9555 ++++++++++ js/PrintArea/demo/jquery-2.1.0.js | 9111 ++++++++++ js/PrintArea/demo/jquery-ui-1.10.4.custom.js | 15008 ++++++++++++++++ .../demo/jquery-ui-1.10.4.custom.min.js | 7 + js/PrintArea/demo/jquery.PrintArea.js | 193 + js/PrintArea/jquery.PrintArea.js | 193 + js/PrintArea/license.txt | 4 + lib/phpgraphlib-master/LICENSE.txt | 33 + lib/phpgraphlib-master/README.md | 29 + lib/phpgraphlib-master/composer.json | 11 + lib/phpgraphlib-master/examples/example1.php | 9 + lib/phpgraphlib-master/examples/example10.php | 16 + lib/phpgraphlib-master/examples/example11.php | 36 + lib/phpgraphlib-master/examples/example2.php | 11 + lib/phpgraphlib-master/examples/example3.php | 22 + lib/phpgraphlib-master/examples/example4.php | 20 + lib/phpgraphlib-master/examples/example5.php | 13 + lib/phpgraphlib-master/examples/example6.php | 17 + lib/phpgraphlib-master/examples/example7.php | 18 + lib/phpgraphlib-master/examples/example8.php | 11 + lib/phpgraphlib-master/examples/example9.php | 19 + lib/phpgraphlib-master/examples/index.html | 94 + lib/phpgraphlib-master/phpgraphlib.php | 1623 ++ lib/phpgraphlib-master/phpgraphlib_pie.php | 383 + .../phpgraphlib_stacked.php | 213 + models/admin/ajax/memberClickThrough.php | 147 + models/admin/ajax/memberDetailClick.php | 147 + models/admin/ajax/memberGraphs.php | 177 + models/admin/ajax/membersListExport.php | 39 + models/admin/member/index.php | 71 +- models/admin/members/list.php | 12 +- models/front/members/detail.php | 9 +- ...1.1.11.sql => create_database_V1.1.12.sql} | 28 + setup/databaseScripts/dbVersions.php | 1 + ...e_V1.1.9.sql => drop_database_V1.1.12.sql} | 2 + .../update_database_V1.1.12.sql | 33 + setup/standardTemplateParams.php | 1 + setup/validActions.php | 21 +- views/admin/ajax/membersListExport.html | 118 +- views/admin/ajax/membersListExportCsv.html | 42 +- views/admin/member/index.html | 73 +- views/admin/members/list.html | 118 +- views/front/members/detail.html | 213 +- views/front/members/list.html | 25 +- 74 files changed, 69195 insertions(+), 174 deletions(-) create mode 100644 assets/graph.png create mode 100755 js/PrintArea/PrintArea.jquery.json create mode 100755 js/PrintArea/ReadMe.txt create mode 100755 js/PrintArea/demo/FoesEnd.jpg create mode 100755 js/PrintArea/demo/PrintArea.css create mode 100755 js/PrintArea/demo/PrintArea.html create mode 100755 js/PrintArea/demo/css/ui-lightness/images/animated-overlay.gif create mode 100755 js/PrintArea/demo/css/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png create mode 100755 js/PrintArea/demo/css/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png create mode 100755 js/PrintArea/demo/css/ui-lightness/images/ui-bg_flat_10_000000_40x100.png create mode 100755 js/PrintArea/demo/css/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png create mode 100755 js/PrintArea/demo/css/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png create mode 100755 js/PrintArea/demo/css/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png create mode 100755 js/PrintArea/demo/css/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png create mode 100755 js/PrintArea/demo/css/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png create mode 100755 js/PrintArea/demo/css/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png create mode 100755 js/PrintArea/demo/css/ui-lightness/images/ui-icons_222222_256x240.png create mode 100755 js/PrintArea/demo/css/ui-lightness/images/ui-icons_228ef1_256x240.png create mode 100755 js/PrintArea/demo/css/ui-lightness/images/ui-icons_ef8c08_256x240.png create mode 100755 js/PrintArea/demo/css/ui-lightness/images/ui-icons_ffd27a_256x240.png create mode 100755 js/PrintArea/demo/css/ui-lightness/images/ui-icons_ffffff_256x240.png create mode 100755 js/PrintArea/demo/css/ui-lightness/jquery-ui-1.10.4.custom.css create mode 100755 js/PrintArea/demo/css/ui-lightness/jquery-ui-1.10.4.custom.min.css create mode 100755 js/PrintArea/demo/jquery-1.10.1.js create mode 100755 js/PrintArea/demo/jquery-1.10.2.js create mode 100755 js/PrintArea/demo/jquery-1.11.0.js create mode 100755 js/PrintArea/demo/jquery-1.9.0.js create mode 100755 js/PrintArea/demo/jquery-2.1.0.js create mode 100755 js/PrintArea/demo/jquery-ui-1.10.4.custom.js create mode 100755 js/PrintArea/demo/jquery-ui-1.10.4.custom.min.js create mode 100755 js/PrintArea/demo/jquery.PrintArea.js create mode 100755 js/PrintArea/jquery.PrintArea.js create mode 100755 js/PrintArea/license.txt create mode 100644 lib/phpgraphlib-master/LICENSE.txt create mode 100644 lib/phpgraphlib-master/README.md create mode 100644 lib/phpgraphlib-master/composer.json create mode 100644 lib/phpgraphlib-master/examples/example1.php create mode 100644 lib/phpgraphlib-master/examples/example10.php create mode 100644 lib/phpgraphlib-master/examples/example11.php create mode 100644 lib/phpgraphlib-master/examples/example2.php create mode 100644 lib/phpgraphlib-master/examples/example3.php create mode 100644 lib/phpgraphlib-master/examples/example4.php create mode 100644 lib/phpgraphlib-master/examples/example5.php create mode 100644 lib/phpgraphlib-master/examples/example6.php create mode 100644 lib/phpgraphlib-master/examples/example7.php create mode 100644 lib/phpgraphlib-master/examples/example8.php create mode 100644 lib/phpgraphlib-master/examples/example9.php create mode 100644 lib/phpgraphlib-master/examples/index.html create mode 100644 lib/phpgraphlib-master/phpgraphlib.php create mode 100644 lib/phpgraphlib-master/phpgraphlib_pie.php create mode 100644 lib/phpgraphlib-master/phpgraphlib_stacked.php create mode 100644 models/admin/ajax/memberClickThrough.php create mode 100644 models/admin/ajax/memberDetailClick.php create mode 100644 models/admin/ajax/memberGraphs.php rename setup/databaseScripts/{create_database_V1.1.11.sql => create_database_V1.1.12.sql} (94%) rename setup/databaseScripts/{drop_database_V1.1.9.sql => drop_database_V1.1.12.sql} (90%) create mode 100644 setup/databaseScripts/update_database_V1.1.12.sql diff --git a/assets/graph.png b/assets/graph.png new file mode 100644 index 0000000000000000000000000000000000000000..e57a2c08a27b884118516f396078fd36cd6bfa2b GIT binary patch literal 286 zcmV+(0pb3MP)901@4cMSd{gF#=zr3}ibOgAVZ3w9*iEwW(X1z067!ER)e0h>Zz0fTg#4*B_T zPSkboc?d~k1J?8ql6sv=PG!pEG*U67h$~vvbh~t|U(JV1S?0=@kT5NT10AZil#QA- zPm3_9*Rfl7rsV7!wq(+Usy;&UU{_V%wh(sEZrQm#LQ+D(F!FA^Dx%eyuue!Qc=2uw zIo+xjJ=-urND5Ab@aD*Zc6l=@=6nmulS326jo5YX$)m98M@WkPv{@BG(T|YSTe0d_ kNSerDNSFUai_lE=39G+HVu$=rh5!Hn07*qoM6N<$g2w`TIsgCw literal 0 HcmV?d00001 diff --git a/classes/data/dataMemberInfo.php b/classes/data/dataMemberInfo.php index 1c782ca1..86f2fd41 100644 --- a/classes/data/dataMemberInfo.php +++ b/classes/data/dataMemberInfo.php @@ -55,6 +55,14 @@ class GlmDataMemberInfo extends GlmDataAbstract * @access public */ public $doPostProcessing = true; + /** + * Post Processing Primary Contact flag + * + * @var $doPostProcessing + * @access public + */ + public $postProcessPrimaryContact = false; + /** * Field definitions @@ -121,6 +129,18 @@ class GlmDataMemberInfo extends GlmDataAbstract 'use' => 'a' ), + // Old Member ID + 'old_id' => array ( + 'field' => 'member', + 'as' => 'old_id', + 'type' => 'pointer', + 'p_table' => GLM_MEMBERS_PLUGIN_DB_PREFIX . 'members', + 'p_field' => 'old_member_id', + 'p_static' => true, + 'required' => true, + 'use' => 'a' + ), + // Member Pointer 'member' => array ( 'field' => 'member', @@ -447,6 +467,21 @@ class GlmDataMemberInfo extends GlmDataAbstract $formattedStr = trim(preg_replace('/\s\s+/', ' ', $r['short_descr'])); $r['short_descr'] = substr($formattedStr, 0, 120).$dotdotdot; + // If post processing primary contact - Yes, we're cheating here and referencing an add-on directly + if (isset($this->config['addOns']['glm-member-db-contacts']) && $this->postProcessPrimaryContact) { + + // Get basic primary contact information + $sql = " + SELECT id, fname, lname, email + FROM ".GLM_MEMBERS_CONTACTS_PLUGIN_DB_PREFIX. "contacts + WHERE ref_type = ".$this->config['ref_type_numb']['Member']." + AND ref_dest = ".$r['member_pointer']." + AND primary_contact + "; + $r['primary_contact'] = current($this->wpdb->get_results($sql, ARRAY_A)); + + } + return $r; } diff --git a/controllers/admin.php b/controllers/admin.php index f0e6fbc5..ddf04f5d 100644 --- a/controllers/admin.php +++ b/controllers/admin.php @@ -282,6 +282,11 @@ class glmMembersAdmin extends GlmPluginSupport $results = $model->modelAction(); + // If no results array were passed back (no need for template output), die here + if (!isarray($results)) { + wp_die(); + } + } } diff --git a/defines.php b/defines.php index 762840c7..42d0cbac 100644 --- a/defines.php +++ b/defines.php @@ -41,7 +41,8 @@ define('GLM_MEMBERS_SITE_BASE_URL', home_url('/') ); define('GLM_MEMBERS_PLUGIN_URL', plugin_dir_url(__FILE__)); define('GLM_MEMBERS_PLUGIN_ADMIN_URL', admin_url('admin.php')); define('GLM_MEMBERS_PLUGIN_ADMIN_AJAX_URL', admin_url('admin-ajax.php')); -define('GLM_MEMBERS_PLUGIN_ASSETS_URL', GLM_MEMBERS_PLUGIN_URL.'/assets'); +define('GLM_MEMBERS_PLUGIN_ASSETS_URL', GLM_MEMBERS_PLUGIN_URL.'assets'); +define('GLM_MEMBERS_PLUGIN_JS_URL', GLM_MEMBERS_PLUGIN_URL.'js'); define('GLM_MEMBERS_PLUGIN_BASE_URL', WP_PLUGIN_URL.'/'.GLM_MEMBERS_PLUGIN_SLUG); define('GLM_MEMBERS_PLUGIN_CURRENT_URL', $urlParts['scheme'].'://'.$urlParts['host'].$pageUri[0]); define('GLM_MEMBERS_PLUGIN_MEDIA_URL', $WPUploadDir['baseurl'].'/'.GLM_MEMBERS_PLUGIN_SLUG); diff --git a/index.php b/index.php index e6da298a..49825d7f 100644 --- a/index.php +++ b/index.php @@ -39,7 +39,7 @@ */ define('GLM_MEMBERS_PLUGIN_VERSION', '2.3.2'); -define('GLM_MEMBERS_PLUGIN_DB_VERSION', '1.1.11'); +define('GLM_MEMBERS_PLUGIN_DB_VERSION', '1.1.12'); // Check if plugin version is not current in WordPress option and if needed updated it if (GLM_MEMBERS_PLUGIN_VERSION != get_option('glmMembersDatabasePluginVersion')) { diff --git a/js/PrintArea/PrintArea.jquery.json b/js/PrintArea/PrintArea.jquery.json new file mode 100755 index 00000000..df80405d --- /dev/null +++ b/js/PrintArea/PrintArea.jquery.json @@ -0,0 +1,15 @@ +{ +"name": "PrintArea", +"title": "PrintArea", +"description": "Prints a specific area of the page. Using json settings, the printed area is either opened in a popup or in a hidden iframe. Minimal setup and easy to use. See the demo for examples and usage of the options.", +"keywords": ["print", "printing"], +"version": "2.4.0", +"author": { "name": "Chris Ritschard" }, +"licenses": [ + { + "type": "MIT", + "url": "http://www.opensource.org/licenses/mit-license.php" + } +], +"dependencies": { "jquery": ">=1.9" } +} \ No newline at end of file diff --git a/js/PrintArea/ReadMe.txt b/js/PrintArea/ReadMe.txt new file mode 100755 index 00000000..fb14edc6 --- /dev/null +++ b/js/PrintArea/ReadMe.txt @@ -0,0 +1,31 @@ +This software is licensed under the MIT agreement. Please see license.txt for any additional requests. + +Update 2.4.0 + - Issue reported in IE (specifically 11) that the iframe mode is printing the whole page. + * After some investigation the demo seemed to break when the external css was not completely loaded from the external site in the iframe. + + - Notes: + * Minor version increased. + * Added jquery ui dialog to demo (jquery-ui-1.10.4) + * Demo is using jquery-1.10.2 + +Update 2.3.3 + + - Issue reported that when using Chrome, css not being applied correctly. Added delay to allow css to be applied correctly to print document. + Thanks jer-gallagher-oe for supplying the fix! + +Update 2.3.2 + + - Fixed bug in IE8 browsers and jquery 1.7 (as reported in issues). Switch from for-in to for-each. + +Update 2.3.1 + + - Important Changes: + * In this version, the document standard is no longer set by the option 'strict'. + To accomodate different standards, you can specify one of [strict, loose, html5] as the new 'standard' option. + * HTML5 is the default standard for the doc type. + + - Notes: + * For elements, you MUST include the 'rel' attribute with a value of 'stylesheet'. Otherwise the stylesheet will not be included in the printed element. + * New option : 'extraHead' this is a comma delimited string of additional elements that is added to the head of the printed document. + An example of this might be: ',' diff --git a/js/PrintArea/demo/FoesEnd.jpg b/js/PrintArea/demo/FoesEnd.jpg new file mode 100755 index 0000000000000000000000000000000000000000..1b02a3f5949a6b8fdef08bcf8da13c036097554b GIT binary patch literal 52747 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 literal 0 HcmV?d00001 diff --git a/js/PrintArea/demo/PrintArea.css b/js/PrintArea/demo/PrintArea.css new file mode 100755 index 00000000..21a62f34 --- /dev/null +++ b/js/PrintArea/demo/PrintArea.css @@ -0,0 +1,45 @@ + +.PrintArea { + margin: 20px 5px; + padding: 10px; + width: 400px; +} +.buttonBar { + height: 30px; +} +.buttonBar div { + display: inline-block; + float: left; + margin-right: 10px; + padding: 3px 12px; + cursor: pointer; +} +.button { + background: none repeat scroll 0 0 #999999; + border: 1px solid blue; + color: #EEEEEE; + text-align: center; +} + +div.settingName { display: inline-block; vertical-align: top; } +div.settingVals { display: inline-block; padding-left: 10px; } + +span.test { + color: red; +} + +#Retain.PrintArea.area1 { + border: 1px solid #999; +} + +.PrintArea.area1 { + border: solid 1px #ffb40f; +} + +.PrintArea.area2 { + border: solid 1px #20ff58; +} + +.PrintArea.area3 { + border: solid 1px #999; +} diff --git a/js/PrintArea/demo/PrintArea.html b/js/PrintArea/demo/PrintArea.html new file mode 100755 index 00000000..d9135557 --- /dev/null +++ b/js/PrintArea/demo/PrintArea.html @@ -0,0 +1,189 @@ + + + + + + + + + + + + + + + + + + +

+ +
+
+ This is Print Area 3 +
+
+ +
+
+
+
Print
+
open dialog
+
+ +
Settings
+ + + + + + + + + + + + + + + + + + + + + + + +
Popup
Close popup
IFrame
Extra css:
Print area:
+
+ Area 1
+ Area 2
+ Area 3
+
+
Retain Attributes:
+
+ Class +
+ ID +
+ Style +
+
Add to head : + +
<meta charset="utf-8" />
<http-equiv="X-UA-Compatible" content="IE=edge"/>
+
+
+
+
+ + + + \ No newline at end of file diff --git a/js/PrintArea/demo/css/ui-lightness/images/animated-overlay.gif b/js/PrintArea/demo/css/ui-lightness/images/animated-overlay.gif new file mode 100755 index 0000000000000000000000000000000000000000..d441f75ebfbdf26a265dfccd670120d25c0a341c GIT binary patch literal 1738 zcmZ|OX;ji_6b5ixNYt8>l?gOuO)6lU%W(mxn(`>1S(XO;u`D+P%xqBvMr|w-Vyr1s z7R|Cn0b8|Hu<=Zmv1mFqh9Fj!NuZfKB2MP$e75`XJ@>=!y!Ux9xR3x;EW!q1^V>X| znVFuRUN`NqJ2)ybXh%e__h!!pv(M|S3+?9F%(K}zyE40MGyhWF5-IDgL&=%2-9`Nk z!1@8uk4t%_{(K~>N;sK&dzJbwJ=$kYTlL=$%#0Pfh>U{%i@~wWbvYsD_K-D`&+u1( z#Ma`>%q<^UhzGvi(hyE`zCD{-=2|zL5>wnB=DE!U?(CZG%q4@lDnCq_%&3DCla#(X zmBhDD+RN$aMWWHm?ig*>1Onn6~r?Ma~N2JKAxN>H%UtRyRqS)6Um!-Tz%-r=& zQmTb^JFIe3W^-kAm`}`2P|niMh>RYyd)S^f(dbrx965?rzbhP|XeP}o&&DSZ4|oYQ z)I{f!SfycYw?3=9W;o-B%U5xs(pP267X~9-7L|4WzaYexC0GtG8wWygm63rF{llCEraxzkc=IxvFQ-y37=_;e5 zJLq^gsSO0Ayz?a>E_?{dmUc+t#qv$)XN8$<<}rQ#)lsiw+pmL&J>~+hgpo>i$m+;l zZIa_ZRIfSeT$~v5d`EBV&*k`apPgjv&B|+d`Q!nyu{L4rs%ZfoF0*Kq8I%ByOcFpL zK=>wzofZo<+0GZLCnWM3oQ^pb(gRSf02;~cEn@LJ>~XB9IkEX{$N#Z`m%>S!U{uPx zloI%bLdo$Adxlh(Uv^yX7s5G&C zLwNRG>~T?G{kzupp8EcyLGPoPf)@&9Wqfw_l&uU-6cexk%5;uQg%wb=0k_733{i#& z1a2p)gV3S2+QG1-K9tZ}E~I<(P0r2aFFY-c{o?TUOz3Xjod#TLE2A_c?*T7t z=1>~%YW450{Qqno4t`}gvLnuMrcu8+#xEBoY%2_+Mb#Z6S38+r*M4O`-+!zl(@m`D zQsi|GA2l3gEy}LFe<#Hv8?$_L#u8E|3-bP$*La*E>B{X!Sy4i6?TKam!49aXCAW4S*P_O^H4^*DpiA40o}Uqw~Eo&veh1`|8i zD2$x+>_b^bXE4N;AW=5>iYak2%!JAh0j1*k1{p#iRCjbB7!cSws~U{1IA@acLII$t z$>X#A+^s6iJ5~DFG!xa?>z{=lxtdi1rzbM-(nqAu3D8h-&64xo6|E!p?pK0xT;qoK z`6%+SpBk+~M?nO}>2mTw!A{yZ6O>Z@kwSd4;8aWU5z!P~tQl?u==^+R`{OmOS}oZh zOXQ3{6kuz?Is^n^L7;9ieB9C+8B{>t+pDrlq4xGDDn#T#3T5$l1g`FTQkU;b-981j zNm{zC`$wn7etklM#qHI4=3m5gwa6DNS{?Z!vSObi_od{4eUo=_S2BKNpkSdiqe(k9WtkeM79;2-%CFbb)aB=&H1?i1}uwFzoZQ(38Kn1zBP ORn*B%u*Wk|4g3!*Rv{Mv literal 0 HcmV?d00001 diff --git a/js/PrintArea/demo/css/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png b/js/PrintArea/demo/css/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png new file mode 100755 index 0000000000000000000000000000000000000000..e9696fc7a972a52b42c0de44d086878b0c8f1d91 GIT binary patch literal 418 zcmeAS@N?(olHy`uVBq!ia0vp^8Xzpd1SErbK34)Mwj^(Nm;YeE8S(uNP=vFJ#Am<$En9-cLebC{re^wgoll|t(`&s7)9J{YxO^N-aI z$5L3jD^ISzl+wQbw$Cm(|Mhq4jH=@2wI8o7+Gd%b|IIx5*Zn&?>lgCSXrXO^WskXw=UX3LH%8!s;k z#x%*aEGp*Jjm(QM&8zq~)!)n5QqVsS=vUPe*NBpo#FA922>S z4={E+nQaGTRC&5MhIkx*d-b$ng949h;3{8svn*F5o}?c;Kir+G=xvlfb9Ucnx!LzV zKYw1UzcGecb6t~6xWlB=3a51)dX2qx%p0t(H?ll;Xvl-Ua7M6%M)vm*~w}RD4lnZuhbmcl2i$G2U9fNc+T-xj%reP%UwdC`m~y zNwrEYN(E93Mh1o^x(3F&M#dqAmR6>wRt7+>xs`!|SG;TuiiX_$l+3hB+#0NzmL33V OVDNPHb6Mw<&;$U4C1}b3 literal 0 HcmV?d00001 diff --git a/js/PrintArea/demo/css/ui-lightness/images/ui-bg_flat_10_000000_40x100.png b/js/PrintArea/demo/css/ui-lightness/images/ui-bg_flat_10_000000_40x100.png new file mode 100755 index 0000000000000000000000000000000000000000..c3d2adc6f03cc7678107d64ef509943e68180223 GIT binary patch literal 205 zcmeAS@N?(olHy`uVBq!ia0vp^8bF-F2qYNp$opRhQcOwS?k)_Bce{j_0C}7R9+AaB z+5?Q;PG;Ky8T_6ujv*T7lM^IZ7dQL@YKdTAEH!H@2TG}yxJHzuB$lLFB^RXvDF!10 zLla#CV_hTT5JO8VQ&TGgOI-tVD+2@Vj+#9v8glbfGSez?Ylymf1gM^Y!PC{xWt~$( F695hNFzNsR literal 0 HcmV?d00001 diff --git a/js/PrintArea/demo/css/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png b/js/PrintArea/demo/css/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png new file mode 100755 index 0000000000000000000000000000000000000000..42f6a828e8955ee2b40790a1448e77b3e7240388 GIT binary patch literal 262 zcmeAS@N?(olHy`uVBq!ia0vp^j6gI&0LWmFTHNUZq?nSt-Ch3w7g=q17Rci)@Q5r1 z(jH*!b~4)z#PD=+46!(!{KIr+qDZgOs>S*DCH8q6)|^lLQ8(vdyV&7=Rv!DK5_Nv5 zKU5EWSl#{5ocZwkn6~@klK(Ue|8%DOm~7JJCTPgP@M)6!J>`Xd0YEcVOI#yLQW8s2 zt&)pUffR$0fuV`6fw8WUafqR%m8q!}kZoXYWnj?%L-`YmhTQy=%(P0}8vZSv?FZDr N;OXk;vd$@?2>`P5QIr4x literal 0 HcmV?d00001 diff --git a/js/PrintArea/demo/css/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png b/js/PrintArea/demo/css/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png new file mode 100755 index 0000000000000000000000000000000000000000..2d9c852558ad9638cd2be6714fab884767102d08 GIT binary patch literal 348 zcmeAS@N?(olHy`uVBq!ia0vp^j6gI&fCnc6a#?2AmP!?*K(O3p^r= zfwTu0yPeFo12SfLx;Tb-9DjS>o|}bBPw4YFRSXO})J!^(4ctv-3U*RGnKs-FC}~_u@4H00)|WTsW()?m%F^Z-x;gQu&X%Q~loCIGPTde;B| literal 0 HcmV?d00001 diff --git a/js/PrintArea/demo/css/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png b/js/PrintArea/demo/css/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png new file mode 100755 index 0000000000000000000000000000000000000000..7025db77267ee9f79addbd91fd9eba3e3c65d77e GIT binary patch literal 207 zcmeAS@N?(olHy`uVBq!ia0vp^j6gI2NH8$CE1Q=ADW)WEcNYf6yIsOdfIQ9ukH}&m z?E%JaC$sH<3_(v9#}JM4$r%X}t&0mp9yKsb%{ak$*<@oTP*SzTHKHUXu_Vlzt{7+PAHnpy$b2If`<2K_&jKcQ&I%}>cptHiD0-_qHBKn)C@u6{1- HoD!M4GUOLue3U4O6>XlZbS>P!v;ZRnbZ@ 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 awm;%OFEIUAY4hG+UbnQnhQH!<@4o;;Ev8cd literal 0 HcmV?d00001 diff --git a/js/PrintArea/demo/css/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png b/js/PrintArea/demo/css/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png new file mode 100755 index 0000000000000000000000000000000000000000..d7c9854ee3ac6c347c6affce40944a2c242d06dd GIT binary patch literal 278 zcmeAS@N?(olHy`uVBq!ia0vp^j6j?s03;ZUuHXC*q?nSt-Ch3w7g=q17Rci)@Q5r1 z(jH*!b~4)z$cXTCaSV~TeDu&>UIzz;hKv1@CM62OC7#SFv=o%R78X1QeT3VT!S^?Px=2iv<{XdjH ep=ij>PsvQH#I51q(%F7M4Gf;HelF{r5}E+S##U(n literal 0 HcmV?d00001 diff --git a/js/PrintArea/demo/css/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png b/js/PrintArea/demo/css/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png new file mode 100755 index 0000000000000000000000000000000000000000..daea1f30e06b82fb1b78a715f357a61142fc9c8a GIT binary patch literal 328 zcmeAS@N?(olHy`uVBq!ia0vp^j6j?szyu^`+!HJTQfx`y?k@kqfHUIz9iRwjfk$L9 zkoEv$x0Bg+Kt`LVi(`n!`KJ>Mxef&gxX1@bahq-QJ@-iVjABv8k}dz1cpvckAS5Q| zCa~sgnvR`g{(^+B71o<|biO4QZ((@QU$9to$Nb3+c9+^q0~7AA&s1G7ldW;K1nZSx z%@1{}Sk7(ZdA*`2jO&K2|NFg5Zyr%7kiMO>_`pxASP`akpQ9dh^WXn}$^S9yv#0i* zg_~-mfG$!kag8WRNi0dVN-jzTQVd20h9P#rlwW~K(4u!fq_@NYz>Nr c-29Zxv`X9>teKV`0BT_HboFyt=akR{0AyHl*Z=?k literal 0 HcmV?d00001 diff --git a/js/PrintArea/demo/css/ui-lightness/images/ui-icons_222222_256x240.png b/js/PrintArea/demo/css/ui-lightness/images/ui-icons_222222_256x240.png new file mode 100755 index 0000000000000000000000000000000000000000..c1cb1170c8b3795835b8831ab81fa9ae63b606b1 GIT binary patch literal 6922 zcmZ`;WmH_vmTkHN1c$~6PLSXdG!Wd~-644J0KpoEKyY{W4-dg<+(RQB2-YOHH692$ zJef7`y_xw@_uN|doK?4Wtva>Ot{4q9c^pg%OaK6Yqo^RG1puHty#h|2KYM!0=6gsy z8K9N2ybORo_{i$}QxC&U!O-)`D*V04jXAvq04SIhWh8ZcmyYuM?QKT_N5t*AU(|QC z`lq$EU`=GRI-njZ~u1-;J zSpxW8s+8ZMNsT7C(ScC@%+dXT2`5OBK{NYzHIl}|fVm<#cVSZaTx4gZ#=ndYA?trE z*6TOz8pLN8)cZ%(jWU6016qi+&ST(E3poFxz)GO7?ns4Wd{sg6kxQTmL$*&wk(S=K$M@P?Munwuq zWpM@@uUSqtb(TBVY*0%vp-ci{#N|Bp1#gR2R88&G%GMTNt4dmpUv5q&(y??C+EdGx z^JMZn!W*sC`$Pq%Yy~Hv?6x_%KeSn<0q?>=uGu^SY6-q%nd(JuwichK;boIJ_-fyGyo^c4iY)A4BFhl?YQfV)08Q5_obCJr8fY>U@@(?vtN5m8P`}$qD`_kA>55yU-@P^ZRLJ_laU~!}(Rt(~B z*Pf<2{k90cRH&ln57cc5VTw3tSO#TgPA~;0XZw3MpoF>RcKil}aXxZB{o!lMAco5S zcLq5TI|R6H8NCl?4tr-bwWQr#pSefD;oreJ`lvswaSON4i10%-7mk0?(AG-4immor z9H;RPv``uPMyYGv35PQ3#I&K80$TUcafx9gc$5^QWtc^hKQ^>_pb{zK6I)3dha47l zMOh(I%FYcqR#kVuh}Mk)^S;D)Cxuc!zlK%Dv`iIyE8&+nf*5rtP1BTlyDn^><9K;4 z86HgzNU+-iY)M0k26h`GJbr$2v|jnk6BISCO0}8%9!|oIBbm{1ob>!^6i=MlT|7=*X+;ne9tR&Tj43aU9ArmELhOGSph*ju7e0 zYHszpZ43?at3oE&I`=O4aO;k3@bXQ_KNgrzV&Erv;lH7G_7gT}xW8_3g}$cV)&hx@ zYcUdC{$amhqC{s6*|bQF?YwftfxXdDp3w97O2XZqJ=NlFU1lx+aeT9&2iH2yn07J^ ztU-gzPxI4j#y;Uy{$)I>mqUAdBrF5*7pj+E+*bTTeA=fxIFu=5pGuXB5|)+_+1{r8 zm8$PM6~1?KX=8>&M*M0-XZPlN+&wr&nAHNBaL18_-*@5a^O&O4CPT|wZ3FZnZd-C_ zH%chjeO1Zgy;R2Ck=^a(pJl6MGUyuGHf{?aBrD`Kwg!@e)(OJO8Y`h7o%fL?F#D`N zw01>z0l$1@#M+TJtVZm4=9#)x^#Y(Zl@Ebaem?a_E4>Asn;+5z;n78y2x$|mIz;O> z=LA-DK)*rCDV(<`6`a%5`f$pTt4j6V?re;<6#zlcYS=z~zbMxCn4|Aq`ybn;`Yu(M zRQ7aw=ZAaHH2QDR@p;~L^Ee>-Xs`)p+LnQLdTty4iF-cE$Ip`0&1|%;cot!b=382q zjoCNIppu|H;KaMDM0mG7o<*plHL^)L)BbRn3O93K^U5vlkFT$V*n{J-g=v8HK1iyS zkcDIddGxjI2MhJ*+7Gv159IhVUw>#_3=zn^)~PspO+}59SBd0bC9Yfmh?IbudsuTQ zs>wKH7)IU;lwDck|EfN~QWDkOsu@QFHTkh5@jz->*n>j?y!t-Q25xPj+jMj}qE|L^ zdz)(LOe}E7P|?r?N(=*viyJWUmfwRL*o+Up#fQ*J&V!{MbRu@ASoF4Nl@p4R2!9bJ zR!QjqMZqUY?HLrta{d5Pm)=#eaPlk;$Wm$l%EgbDrB|HE;n+%AL-@KljyJ$BA_iaM zP)Kd7-V-ch+1BL1t>6*m6ZBwdjNj|Fyld1F!?5V>)ldXR>P!Rj3LED89~o@qgh#^3 zKtM4kL=@Dv*QCmt1Bup$INwW$t zL+1r$`czGIu8vi{pV4iS$b6q#J&lwt4t|X@10PiH(e5m&>|mPY|Y-yP{%yD$l=)8rL4gJOpu`d(OFrMe~mjf(@;A$NnP)fU0ZrvGrh5_ zR+kH}c)V1D6I!>%^(53m>chfOlFRwCR6=|mLMblmWoE|kgs%d~H)HWXF|MSZ;o2_} zXoxip6j`P0QN=B~cDr@!Ny#S|(6ZMufMpw&*m_O!&Dzsk0pne$HmbGFW6h>xHpL0$ z^PKoZn-a8}b=lFAzh#=Z&GFFT%|`1$BYV{nbjK7gUq#u^DBp_(fwj`7A>Q4e3i$5gx_ar5~?}| z$Ub&(Fa@w&P3KB4DbMsJCZe}JYcT)=?domj_Rh)E`4#PU_DO`Cgba05#QNE}FioF( z=4Md%aF7NiUxK~b!>ebhc5L^qFwByIXttRI$WT7mp9ikZw?ahlNbP2Ca>QLStmNsM z(!auaRz=i>{(u2B*`{rbsA09d5x7{{z_?Px2h0}Pe2D~p`VlaJ0ES_Thk>=0Rmd3S zYJ5h-tSsZ?2*M(q0V*^3yu+ivH1wBIwn)Zw4qcOPwpKsj#c73oBpt~g@JZl@xaF3p zjp^nk{3z_k9p5BBP@tTLBoD(FE5thlRi{Ke`0dw4x+q_U`=IV7Z27i)h!b{M*PH~O zvP84UTa8k!_`Ve6qw0fXK<<>SsWK2@SAj3bDK!WviJbS^KywBI^3@G#Z6bGw>A)l` zAA-a6kj(}iFX9+o&KZz^9z|pFU@9#Vtqcp^be)t4j2eVO$DsA#jGtLC8C)q?tUev<+IIJeJw3T9Jq6P!x9#p1GC%eb8^%g7!6 z?OZ}**`n3EA`CDV)#}py(4D`5*ptAEAD}=RshDW-m-R z`F&t(TUAhng?~RKl(X|XU0jvrKIhxaj;9yAJf)IDd<|U$T420XAzk6oX*$Au{cOQd zYKnKl`Aj+h$9cvUY@ofkUGFB}1-j%`rnFWpY77eX{szQS;pUo|@Pny%-FjRr_Ph}P ztkuc*^^$OJfH0S1&<8&9HN<|S;_Bk13Sd&{H!grmkE{$UZg#4-ey$jc{p8tsF6!2w z7`t{H-*|Ju7Nm1m*6R`0`WS3{@8D8ZwkC;DU!-W@kL7`q^KhCi_qXF4qELoxv}}t! zhjdI4vD4iOR`iU6<=!d(_Q6*VG3ImELiV0niI9|tyq-8*vfX;O2x&_F*_7=95Q%cD zg_NlR{D?lVr!d@H16ixqJV-g=MHu!%lPcG_qK?OKOf%M=t?)bL+BlQ=I>I-PlwYI| z<9nv1Va@DcVZA$ICZ$ud@3&~a6cu-0v?g&L8;-XXHxMf&#`VZDdh0my=WRtSE&Y;< zVg_7+N=`2pt=<@ea??J{Eo8pV^xkcl5-{y>cEat<*1+zqU+dD*-Jg1CAKeS$qcHW@o|oG89!xPQPd zU=J4_*A#&=u=9@msmvJUmw0|kA;Abe(w2}A7>H21@&B*2Xv#@1)UZ_1d$xdR=0Du(XO=y~j*0KU{3=idQ*cV;P@94qdtTkab}qSRStk zo+LnSpdmLX9#Z+hF1a+r2!UVIgkoiOtHEa4+i+h@1;_N`br*+EPYDDIvIAL;9`fgW zv`3n!m25FWgg%{relJHjtU51_W2G0p+ww`G-U@Nn^$)AGn5R;YH}- zkx2bCjV%Q>D-`$(=xy7mye}|whf8=0p*U|y;s@c3{nM893||#oww%UZ zKGQqQ0mNF-f;|?j+jiJYOcP>u+`YlenadQp5O%s6&_VJyM7x9xowxNLpArM|3nz$W zqvav(0Vew1Cu7%_BPEDk2{Vvh=OCW-FRIfDQR;xNSZ=Uqww6=-hw$Jeo>+WT0KnmlNYsak$hb_KIdXVRrq|4 zc?l!EgE{dGxxYZ+E8~BK2SBtVuHRh|`#D8+iAg8D$Ko*^l`dx{Rx}5xH}$awqp;5^ z!Sjb?OiUDikL(Ag%PyI0zkKmYHH~FQ7P)QGg{VW|i4WHh`CulLA`rhuK6S%n^Q~e8 zGB&(6yFYe{h|U~)r+u3!T?^r}}eT&_*XZsk)gDqoI#goBdqU$eB&8 zADcQBiq`C0s8z}2f24R-qf;lpq5g&SMm1;>_sw1A*VKy&12j49ya&fUirm5+vlz`( zPz+V7TI72^(gP#-&3A4!TVRXUwP_sRH=)Ng(b1O@qu3L<)|}g3&0?{f{sgw05M(5f zfEl$_N3qf~^pkf|C)P#RTMlulrarg046JtX@ezPQ8Au7^WxnrUKcf;<}H4s$6v(9)V1%S6QX+2kM5j_wN&$+H&Ll?PU?h`gC3q=8_Gr}pfn6( zD^qHZLJ|)R9Ni^U0gpI$sh~Sbt`oNlgH*tB%dc|dBJI9SEbHfjVa(dN0vIQ<5489B zUt?1`&EX-;?dI2)ugv&1>#Q2=;~t(t*o-g=&*_OgR6bIl8A$@8&lqNp(u_eX*mukT z@kt{=LVp({=X0XDT9{_0j4hklmuc72Dpr}qTf6dVkHzRWT(_L`dk+e7E5prT{=J7+ zau}%_SG)z*oDcekL5mhi=#Z!wJqlUp=BdY1fjX`H^@0|m#kO=Ozci8%WR%*YFaDk{WIi==sHQdKM-E@nZ~$zoYV{Z$zAr@SXm=Ieg4AiPmFfNJjWYzvFdG zA&;;NZ(4#%_Mm0Y6z5<**tK(1@Fz^J9=6KaPtb7id=(!4(3LBi=!pTkIsw-=m${TB z(u#26e%y8`PZas8ha=O(#@(E-<;+P8}A(sQ|tN^1Y-XY_6{ z4i@bvxR}9%cAo0U4bL#nF8RP{@Vb}iO@(kCmbcx~{SVw#yEH9}&#-l-Q@BB>SM63) z)M8*Q#?r;=@5^PuXzT_+9Iw);!3epn349KNTgXw2BDl^#39d=z40T?)ZeH?j#TWR< zV#2R^_)Br>O6;>UrqGn&SbXGapKO)o>qac~!#5!uLw%~`V?2s}8z1z}lKspGrb(>Q zW!28Hzj|t>gyu;57~@?)?sZ--dTUOT zgPs0iapE~VL7vqWW~T1ynETw ze|$G{1Wj+g$^n`e7_2wkNYt{pviHdQwo*m1pLa=ghj3e}7EV^h=0K($(9ZvciWCNbHa4$!5H} z@Uag+U45D?uq;cWYMb%vf!|+SckQdvN`Hz*nZG)Wu|iV6Eht%=ASH4asU_QSO%V&> zK)P9&^FpxR+ldG$hmRQOv6p6t4D&)pdcqgb1pb9FMGpL3kf2S7AIf>8_5@gljRK0a zuo8%h_4TE&G3_|i8s5kmN5sREEvF^ZpV&;TN}=4aD2EFsm7bNVbW|D;YwS?4zHnOk zRh2=*`eU(1sNXiurRQ-FX-&CUNLT&(^BU3Gm1MX-A#Ry3-5;_0%2QzBK$!bRmR9DD za|pF*NMS730`zczmK)~$ig`Y;iJ{UA_P=mTvIEThFi!YeO={FwGykGpbHhn|wppyS=;NW{OKezi zj!2ZSoc@n7mvY}Y^gR(1mL&a*$(=g3OoVMm6xx^^OnCd6{fh7mACHiAl}_HiQD$Uc zrFFMj=+XE?>Z0qD4*{rUx2f;dx@5j(nsN*OS8cAdS7z1`@!P;TmfUguONB$VdwhK% zos$YG4>4D_?sYd))nMrZb@Ae(!C=;edumLXZ^h~WQh*iL8L7QzF?Z-vu2qt7JdbpS zFf~Wo-1403{&H{q=g0Ys=>hLk#IokWMm?&W^-bk*fc_?<#IrBY6r}2ShlICVkcn{c zdPW(7i&(}tc#oPw25ga|D>6A8Rc`0dT-}~TZxP8Df0p_)yc-j%EA_U!r^X8pCt23Q zi)I*&v@KR({{@KG3Gzy#Qg&#jSDk(PxA>sb2K6WNXBmF>EL?FXyPz(yCvnUh<==#| zQ8MTU8VS>zBhlVdeTVXCxM#c!iv++wbZS7eNcIu#53%vURlwJ;_@D zBDxn|woIw|J7?|q1}EDLG((i=_duGUnx`2+m{fttG2`%ejStF5eEX@wrz&{?7KV8` z&9YImZ&%Z6@NjmzP!{IUan00WfazVIDzm0ryF}hHmFB!n`==y5?-{3R zb-DvwqBJ)Q9&0F+DLhI89+Z}Y#^$uUB-C-MVz6ls7GhBwW>WkFa}wYM}(!*H8ZZ;s71H_{Q&d>X1aCe{>Lo>BgRnjU+x#Iub%bWrCk?Eo8)94 zGN3I@nIw1gGVfjzabx9H+z@G)4<1bDs}yBF7c4twl5_?uWjy}f1szOl^lS+Uaw|cA z*qg|L3HN?s8CLqSeKTRPHf>}sncYz2z-S9R@^7mEAOTC?iE=`egZF42l9-R z2qCk%SD^mlA^bv9^gf%_4@ayP|1p%er#h(hCU%SKh4^t-H9J*ecyEWk(ywYw zi2gO++su-c3H`Za?>+JL;5G*N-UO~Aif+W^i`U&~^k@*}+NLT0jf#X*W_HD&`?Cc* zon5kT9xfLGw084X3;(gEk%G@1gt`R&Z*ja5+oM-BP-u^unAQm-KkNEt9Ok`8EgkiX zNTdGXL+z`l-6wfOB>Hlb9Qr-v%^}%dj6WKcGgamJRvv9_<-rwdBPI&i-=o`j##)=IO5~R!mtE2BOMpe$Ck|v1uyKkgw0yCudF6`J zk$H>43vwO~4vTQ{x8vLxM?C%%nFGj+fEobk8aA1U^E@sd%qN-bCDeC`f6QE%u1n8X%chuzE|55OZ1tEqgxVtWCFJ-41*!|2 zkGcm&d8~?;W9(>R)`2YqEs{B_kylO->cRzZp}AgX3~W01<9zrP9?b2~)D$AGe)9NP z#X#Drknh{m-4Uagtbvz}rI)RUwTJDK0q}D3@NsbSa&YtLaPy1s@rm$ob8riZaC5)1 zfF}Q2fQze*!#ltKKfplDm-8ur{BI*@yT0@CvGlM7NZPns+0rVySlZcY*;?B8xsTb3 QJ~;stWz}Trq%1=J3#jBGg8%>k literal 0 HcmV?d00001 diff --git a/js/PrintArea/demo/css/ui-lightness/images/ui-icons_228ef1_256x240.png b/js/PrintArea/demo/css/ui-lightness/images/ui-icons_228ef1_256x240.png new file mode 100755 index 0000000000000000000000000000000000000000..3a0140cff67999e0b6daf269723e019335f5fee6 GIT binary patch literal 4549 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 F{Rh^YY-Iod literal 0 HcmV?d00001 diff --git a/js/PrintArea/demo/css/ui-lightness/images/ui-icons_ef8c08_256x240.png b/js/PrintArea/demo/css/ui-lightness/images/ui-icons_ef8c08_256x240.png new file mode 100755 index 0000000000000000000000000000000000000000..036ee072d4aea1db3a78cbede62f8a0ba31972dc GIT binary patch literal 4549 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 C(P9<= literal 0 HcmV?d00001 diff --git a/js/PrintArea/demo/css/ui-lightness/images/ui-icons_ffd27a_256x240.png b/js/PrintArea/demo/css/ui-lightness/images/ui-icons_ffd27a_256x240.png new file mode 100755 index 0000000000000000000000000000000000000000..8b6c05868b55d63ff932afa2efbd9d7cedd5909a GIT binary patch literal 4549 zcmeHK_fr#0w@yL`gaFc{D^V0dT4;jQP=bNbK{_u%ib`*aLVzGu=~4s~gjcE{M5IZP zPy{IvFf^q_1nEVZw2%+IGvCbp;r<8rnVmgnclMdH`|Qk_a~_)*-C$wjX955KEP7}i zGXMa1>H;&Kf@9sdo;L|NJ@)0=$K}p#zAcKZibDKz-3R0jKtl zj|S-Wc&GyaXI%7jG%X%{TXTRpPt>tPdeE*k7H-28G zjA^tnm-csXXi2bf8G!DDBm`#UP=o;$piK+pXK4*qcaCAubs*F$In}5NE{xCnERM}i z1M*?l>dPs53(QPUCmb6k17=AzHxaO(hJ`#?c5%O%0$`i+*at8|T6@l-Fg};1Uq`iw zlT$E^c^sdNX@Lz&$sapl7aEq5OmzODGtO@*kCH^qk3xAMbALzWX}%KxhP7YaBry=6 z7i$|H^;ApZiCpk>F!Qx@L`my$ z&(XNiYguQ|{aq1g13+cMm$h!X(J>(($ksQM#oW$}c&#B#c)j7gm_ zrk3Zg1MMFR3=ed;GO`n|;E7e5`+>&X=55M~+3#fEkwGoTHUSR|KTSkLk+c|pWRj^O z{FMdq!ENf^U$wy}JIKd#{>aTo;Hv@VTXtxG;{T;GMvUWOAC?X5}u-S}s%ow8G$Sz(CwuOfoptc2QtTbdGrbvi#*Q(4|> z(yf+R#^^2W;Nn>tjBkSp+?zkMmuljpp#(+ZL#U#@8}Qw8z{)pe$AX}L0HgG19_W2w zh_vyG>%1M)B%o^YM`Dx>9xJ{B1bu>|&At-2a@q=Z?J83>zD_eSL_7y?0AZBuZZ#po z%7XL7ztBzWYl#oI5v_XF2{DORkh zM!IotKXOpTsEC?zEQ5V027+aR2_Noofc9jMI4EHsnhdsZ8h9`D4*M#%wOx7!(tC<> z=n7c=dvQFzlY@1;IAm5V&)Y5+@|5YMpMYZGz`$%8VBxZa6 zA7}4VXmzaX=BGlew@0;ncl?)@l?kfolPLb30kNXHa5*{{bwRh5x4ljZ##JSH(;RJz zaOnyXv*6C(hOKZY3HwS+K_2XA)sJDQiHrSkz*UZf2boW-XTV)3yz4fj}2$K#x;yfnIIKpbW8E(@p+o)r1Rr zKiT=yjRW&0E$l%df)eC2wjYqI=u1c36l~oy~dxe4TO7K^z$ek zHFW*qX6~5u8jP$QjReNC8S?dDKF1WvE8VALZ&yu`Umc)V?mjHMKmaL1e6U3 z+G7D}mL;*GwKxpWBgnK(XZmOKM6N-hn|^8#fP4PX?2oM-XG7u;!%?d&V?)3K>%{qu z%pRaV{tHdp0DspEzRO@_`lOgjNqR&Ev1TkI)P}bKHg{=~z}GnWkCtakVCfE&b%#m% zOs#)F2h({e8C8zxQ}SNRnJMt4IlSuAOR-QUC(7Jhry7J<;DTIEhKh#Uf_gRC*nJ&y zLup|Flu~|ha-8xa*a#4!qs<0VZ{OzJ{^)h^PXlBA+4e||(snZ0d{CrU0ZqCYl3mLIeSZJmLHnVRD3DVNz{`yoI}BmG6MxhImU*v-0o3AG z2|59fvzXlzavu#{*=}xu%^6bPlR-+r0x3MXT!wH*t{&{-7V71fAq3cfGQ`nGc}Lz1 z`T0}Opx9@Mc$Sqp7-p}gfrN_kiFWR#xW;pw!>M%@EHy^G)2_N(M18X?^e1h~_^aX; zjg8w>s#vfShv<|g-`}PWp9c@e-6KqOjc?oL)h}39_MCK8v$bAW6Knphz~^-?O?#^@ zad$wLL^ODqdi#KjUZuKcyJa->omuMAk7ReNW+!A`1=2FdU_ivGlG5dWPtBHvX}-T` ztwrtTU?-d3y7R2WCZAaDUI^y^NBJU-jE~i>9QJ1eAb-9|*0)JljJp8CajX zLDtQ#*WuD)RlQj}s!#@Cg|EFCW$Uul1Mg9iG2-k)OfMmyjZ8(f*H| z^SgzM`RD0V=mm){zZZC?3=0{4jh3WH&vO2J`V3Wi2zQ-G5m&#NP_x5y&If- zMbD^Kvk{Sakw#1+g#Cz}_owKYv@#``S(Fx1msjMlUge?zDCPLzN|0O7$uE?o(6x_i zJ|fcn00nUAl z>1n2SI<&98E_-5e^esClSre>k?s2c7z4q1=3cw=$zVT9v?G%~2R?78Fxckr8FQdOF z$d0{*eEwEWTGw2%7M`u-i_(=6&AS3Xc0^p#@A8H63?^v>pjmiCF;Vn~yfq=dvvXok z@fv=osuC*)!9k8VHmgY{TwMpgt5+!KFjX@R!)jTA*b6ueKD6@gcI<$q?WXVpupuz%BPiEw$@9rG!|2T~0jSFDTaw{KU zvdjVo3ry}gP~PTbjjR2Q600|nTZt71!3ri-qX}b)BXaVHJHpPT8 z!qI&mw1!`F5+Ps`yQOVkyhURA!1Lj74ZZ%Vd+hV2rkFGX!zEWzOyYVNaoulcd4!#V zhv7;2&ci-lFT})kzSGvoQpn?mt&!gclAo;F*ptB!-k4_<*vyTH@#py|5naTC~WVJ1VUU2r}_ zDKqAtv14#wtIp&bt`G57ODY*WjP=iOeG>%ch*h{XKXP}_psYjOkSLyBw#kDhha>|#bUgwG zLtcL@QR2M*7=hg+A4$PG@!AwKar;`zzwFY4q(Ek(*<0$=f(pxMxCOa-bF15-&dK22 z*}nxW`?CZPZq}8~tuyuOBJ{EP_{6Kj$Q#W#5Z(mKW>Q?Fq%DIPd7i2n-JhshCHuZ( z;?e$RdQ6Oev?mf|z+?b=T~kMzpHE#LVuk>faygNaD0M!pch|WnKr>$!hlx@6aH0gQ z-}m_na~3`uRYK^BX&}*r2<$*QTcR$Q*%R221msc?qJw;ZZ5||@o1xdmPaOjPUQJQp zWZ_e#$`=~b{!&0qka@7!ZNb|_%^cw%Obrd!8;;Obw~(e%L#{fU*JHh*kGu=ySlEA3 z?&svSYNQLsnHDJgO4?dPh;Kx|Y8FtCSLRCD%8U*7BeAT$VfT|_sqV^Jv4wyysXIysKQV?%VdS5mApP9}u05g#HyYvI>?c%mQe+DUZY1};zNS`J3weR)h~ zK8$?q)OG-CfrFdU;Rj_BeAcxGk@*7*){t5^w&6(LbA|ZcbhstJu9oM7AFAnp6l!=RDJmcQ|{ma}?cuyPe z%Yi8CKo_S#S7m2^*HZ(KMaalWB4i~IG8PC0WjQ%z8H6N4Ng06~q<7|})-qC`T7E_%u6y(b|`hD3`#dL6w769geLq6a~ummm_IAZic< z!$cQ#m~g%C_ucRJ-ut`vk8{@9=j`>{d#%0Cv!C_E8|rINl3yhU0Dw|UQ`Hy%K$nle zE*bIVUG23e{L+9Q>u9I~7qKaW?Uya6hvq}CORM?!rQYYP2mnltTB=I-{AaeTtm1C= z_?!oRthaygsH6uRE$8x~{Nb~uJQ49`qWA0(+dO1^8;~DXhU^sKEg8(bpydhN5-x)7`yysb6xTMG_D^)`@Ac=jCOJK4r~k z^G$c}BgDOSwoH81*Mjf=uqr8&2*xrIEf4@;-p$^yKJz;xz#Vg-xPq z>Ui)nPshQm0k!Lnv-o~hr+T>Z{=tB>I*u4E2j{1TRvtY`F$h>!aAr20iH6O-;1s`5 z(g$hngAZZ+pzcvnrSFL07r_}DFYov(H#9wfMF2{xzAuo;hKGPB1b5{vWwS8H!}V0Co#2m|VsEIigx`jPJ%!e? z98VL2mTR?knd>al89iJ4%CCvK;!exy%O+(naBtpQQ$6alcTgTg1o_aI@G`Tg8+cGI za2j!Azxl6Vmo%*xV?*9(esfU_!$5Q^m0Q9e2rh*9v<&WiYjY2tsS_S_2|EoAqc|Gf zy`H|}UNd0zK4g_hvnkEQuP0NfX?w|wD{mOG*tQ|PyH0WNMc zG(8s|ImhTz{1k3{YK+$J{A>-K|b#{ABL?|BK{}575DUVb&4Dx9m%6PGkr{p z(sIJH2Z$X5=``8j^)U3u=5Eb2VvuyyTdCo}2lekjZ=t6+-zg=%`4!RX^`&6tJ+Y=M z-r{DHKi41sX?8Td;#suqMfaW2EujT#PNnPTfinQ@=b{pOdZjryJ-$5e_ zZAc{N;`tIkKZ<#@ag~!h6FBL5^P5(mBgHpGMoN)<+8ggmX*1l8pq&1OV;OJ`N_uR1 z)8i2SBcphV5x1`LNpbdVONR9;SD*SK?R*wP78q>H{gHW6Zc@@pKRjc2Y$iMDzauy-Jtn7d+v&%oS79I}S3$cEMp!wnL z;m;F<9rXG03snTOgJzf3EV|U$TY;Et0Jr( zpWPQmP_;XI9P_!RzCIGJLoN_i$L)je9lUbaHJASDkCCQlyF`uu?7hDeZatS()5Gtj z7u1e^qA$QfV^)x`xV_STyvxLBlg$QneEM# zE{VcVF|=jjoDvq>KTsQyN$cNwecdmPt~rw4NXfnJ`ZsMeZs@o%cmE8{A$s z9tlce5p737rEiIM`7Az!VDyfckepv3yL(414Y6pWA(F+Cd%gD&R#BTRiS%4)F~$#NrJUbyB^3|r-2fm;4&9B4aog6{#K$B!nEpy58#&eg z!XwcjVoiqui+Y?0ba8DU!%}kPW?i%<(qF(}X>1;1V?W~3;*Z%Xq^t1m9p)lWEqvTq zZ!u|VmM0bF7p@Nkq?@yE37PvOsAPceQKkQOKK@V{T10_#j7J1JH@t10IXn62g!*Iz zgD-4nnHswH{WlpG1A*1RttX^36g?3r8 z=HQ2#r0s>5P6cz{=?r?T9>Km@e2t8dy(ysdLzidMgoVJPI?emyCGiKnzC|zGjG_|n zNyJBR+m$jV_0s$H3)Wx$OkP=-(w<&nAu09cFp`eITj380C#{m#!9c^^u!a7^X2kqQ zm82U(ZtPf^=K3!imY`!QQpqEB=A*0<@shBHp~aus^)-(>aFb8)V0N$wUTkyD@#9%zotSe`>`!H)4O~j>Kb* zAndV%q;ET&g8q`JKfQ)@XTb@BPI#O6v2&C6P-=|Tb^=u1fz6Y=dyXo<{7xQ-QcI1Y zUiR({Gb;YO4Rwu9WRHS;pOseiX=K+L@SG;C1X4B4y<^#%qQKL>qZ_3agpJAyLM1v% zjAHMpoYP8tsrO?Updm@y0Rh`)JYI9%nMi7Q!YsB)uF=|VnMr^PtB}Lc*BL_c6x< zJ4MA2!12C;&()Z0Y!HBo;zrgF8=nV!zPePPym{N7dNzWPx~kn)Xej!5mYk%1x1Q@} zX`(ouA%>$%xPJ#@y}!$;7*1RgW%-ESwpb%Ib6+@5pILB->`~SQ_3rTcuXS@@oZ&7v z+e9bsVJ}(rb;p`I){Y4x!2Jb1r)8&wZd?S|XWv0HX*h5jWi|MV^qe)6Y?0&rr|wYJ zTYO*EtZ(nUJ(ypYHq5$6sje{TI7VfNhkgWunhN@7z8XAySq`~%3rNI2FQMAdn-5qX z`$CI)9V$1V$?>ISx+4T&^=G2~c|p-6bLH)pn2Ddp4*8x8L2t{_{#P_A$QK%j;Ld*Lo(2BB zu zf2EE_SF-2D5^=hpL39s~C1f`B`NOV~7X)p&)jzZrh#pYRX3y zl{VMjCMDhpi#AD+3_vIz*kv5i%7TOoqYdVfX_ymr~g)%A zPEpE?)*1SlJtwO=8`bK~S8yf-gZ*G|ZeZ5EIw}KJGRVWEyqTDwJG`0{iS(oy#b85C z-!Y7rxPY}6@;Nf-ElGL6f8@fqVYr1jjF?jGYn@3F8CCpK^ZYT!0HZ(LS0ySxfoCg% zTNs0K^g=aNxwXrmt4>_Al;%6Go^UE)^r-}PWP-tGC!(k@%(6nFL3N6PWhd){OgAP1 z9g1n;Gih5a@2>Eq;dissm|Igl0zQNftGpE=oq9m;#ni@*;aOKC#uYiaOaTN#JG4;& zx_h90_Qe>{?D-Pbq#&R!vgQyljmHVc;TYZjyExK zOPe2ZC)UHqB{*NWS%5o`hOd*x#pT@>+wQm7-4i*cM`x(5K_By4$Mmo@ZCsE2Oi&a$ zjsWv<2PG&Dx)bVusRSl)b={&!L|#)3O?Cwv&Mw4cojD z`u%*2P}$Rw0DgP($P0VC=JfuZ0=i1h|Ju$e$unFWC@*NUCkh5EW(3H7g^;n0GW}J- z{D+JDgmHSYQZx7E1xp5wtE9L}b;-1pKY&(0de9N*9CD|QUsGwiuYIROvizrcTd8-0 zdiX+*kkGQ2Vzj}}*b{F-`v-ES`-tzai`LuLa!v%u3>Kj@iitz!!2xFpHd~)iICP6L zh4WKpZushVpX)P4T$I1i{3Q^nMJ`Hvw7BZolk_#`+-vvxs#Wr?ISVEHM0;%-PQCqo z!Ys$wtnyhN^71t(tu2JDYS*|h!$t(J%OF>W>+8OH)+7bd#g8*@booiZCAC{sRAV1- z>!$%-W{enho1^ub%AeWNlK~Nm%Fvq!FxgL6Z8bUbm41z_dGgZ14`Z`#XNtLNwpT36 zg7Sv)OX)brnyr%iJc*@M%JH9Qtg}p)spOV>)Bw*1;j@jN1Ru5TLqoZQSK^`k>%7|i zPm;9$1hPA4au^r69HW;Oq1FbNeiqYKQvQ%vD&X8FP#_uz#(dDvseO2Qn+3eNa=*s_ z?ZymANO*by$%x_`3=?p#gSv>?2t^6C{WGgFkg~ z&jfT1Q#2_ea6D};gERg0yTd#K+oH30I(En|0tmaf=VZEJP5o3;Wv1wRD^$Ro1Jf-v zFp2qD32VSKoQ;=-*0{*6O^^HG_>JbN{Fnod@Mx_1@GHkB^$R^X(dG8J&^zrAW@C)x z(=^F=#~KvWui}RY-ShO*}8*iHV-0+w~DepKf zEd7kasy_WLiS5OZD{h@wluwMl$mv(Dn7UteLhLSW7}MU}3hyX}xxoc{^it@a^Gpt< z<*{a1+e_??RfPulWsyjBNsiud{j21qN&{3jP(PWF<*jd8Z@R@_6*U-Pr+1@+jk>Oa zRuk)D(Zc#z8)5b*isKx^>D?jSWWGj0fdU@SjT$vngCoS}~DKtHyn|ucgIe~6G z@UYo?C$9z-7bP-)Dp7K5c;1Xi)C7S|Yi^+2lFQOF|D$K4W6Fy&Y-n=w`i6LR_@QD) zOffMKZq@iuD)b}9aBA{5sdqFpY;>$v)xbjHt>)=|E+Hi181?%kQqMm}qwEaCdO|5r!YN z)=zdj#F}mL)VkCbm)mSk!EgG`(#uPx!o7RZ81zp z+@3Pj%im^}IebphJ|K!RAZd$c6akCFsr4Uq)g`f)EIsO+C~e*FyD-DU1ArS$iqY5t8YO~M=c!J8@Cz8!Ya*Mw7oqLFdcjpat3l}z< zFXW#76^CiH&P4t%*j`SfZQJf<2t$2l|McnrZilgISSq_#o;{;rm(+geb7P9so`7UW z`}2ZqN)M3rT)xu=qFSOhF|q$zYqB#wa*?%>5y8koz7%{Zdxe1hse&27It~@XDu44L zKc*vk(t3n2-uPlc_e9H*jS#>JTj{#WBlxdZA+{V$@hX3H_MB2rOUp254j#+!lm4L7 zf&HMOnGS0m7?fftCPd4-MKDp|YZ6c*4jAmX#fnzqN#^$xOS~o4bbmqqd{#4^rv4<= za)`wJMNBVgMA>Lw;gL?J7YpACG;9sjTA9m&L19kZ{y4=I@6qjE87%$eZd^N#4Fv-y z&dz@r9HjQBx<6>@-3&VyS`Q?(^jsuqrCJPV<#|y3E@JMK?m|KQ^lwZ(4 zm!3BoyvqoFwOOhB>GDuo<#b5lRIy5)S69gou8%ihM_RdkxXWOhvi#cq{Jr&DW*98Y z!Z8$zo9~+4H=P=(ypnlvcF0-D-k)*4+*tB5ltKaSOLxM5JLmwK@Z$k+TFsC6+w~15BYa;V3N4BVjN);kPw|BVQmz35-1=ltwoz8*e-fU5qebc0 zyyh{Zo{9l(bNDf-Q07AN^oSJ}CLViwGcV^?@~f-Ob#sL^F=UiHAWKsD&gZuf-Os;K zkN*_Qlf9WhRCjQwVP;Kh%|b)j_{`1-6=nCFlQ^JLb^A^A^-4K*@%79wETj3s^oJO? zttqvc^acs%g&!j&l{uo$zwH0`toVTU zwKgyUt33EOcI0=ooYgo+W*U)<@=HK*IGxN5!@wStF;%Rqj05K6!aX}F= zK@rh=A`-IV; type pairs + class2type = {}, + + // List of deleted data cache ids, so we can reuse them + core_deletedIds = [], + + core_version = "1.10.1", + + // Save a reference to some core methods + core_concat = core_deletedIds.concat, + core_push = core_deletedIds.push, + core_slice = core_deletedIds.slice, + core_indexOf = core_deletedIds.indexOf, + core_toString = class2type.toString, + core_hasOwn = class2type.hasOwnProperty, + core_trim = core_version.trim, + + // Define a local copy of jQuery + jQuery = function( selector, context ) { + // The jQuery object is actually just the init constructor 'enhanced' + return new jQuery.fn.init( selector, context, rootjQuery ); + }, + + // Used for matching numbers + core_pnum = /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source, + + // Used for splitting on whitespace + core_rnotwhite = /\S+/g, + + // Make sure we trim BOM and NBSP (here's looking at you, Safari 5.0 and IE) + rtrim = /^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g, + + // A simple way to check for HTML strings + // Prioritize #id over to avoid XSS via location.hash (#9521) + // Strict HTML recognition (#11290: must start with <) + rquickExpr = /^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/, + + // Match a standalone tag + rsingleTag = /^<(\w+)\s*\/?>(?:<\/\1>|)$/, + + // JSON RegExp + rvalidchars = /^[\],:{}\s]*$/, + rvalidbraces = /(?:^|:|,)(?:\s*\[)+/g, + rvalidescape = /\\(?:["\\\/bfnrt]|u[\da-fA-F]{4})/g, + rvalidtokens = /"[^"\\\r\n]*"|true|false|null|-?(?:\d+\.|)\d+(?:[eE][+-]?\d+|)/g, + + // Matches dashed string for camelizing + rmsPrefix = /^-ms-/, + rdashAlpha = /-([\da-z])/gi, + + // Used by jQuery.camelCase as callback to replace() + fcamelCase = function( all, letter ) { + return letter.toUpperCase(); + }, + + // The ready event handler + completed = function( event ) { + + // readyState === "complete" is good enough for us to call the dom ready in oldIE + if ( document.addEventListener || event.type === "load" || document.readyState === "complete" ) { + detach(); + jQuery.ready(); + } + }, + // Clean-up method for dom ready events + detach = function() { + if ( document.addEventListener ) { + document.removeEventListener( "DOMContentLoaded", completed, false ); + window.removeEventListener( "load", completed, false ); + + } else { + document.detachEvent( "onreadystatechange", completed ); + window.detachEvent( "onload", completed ); + } + }; + +jQuery.fn = jQuery.prototype = { + // The current version of jQuery being used + jquery: core_version, + + constructor: jQuery, + init: function( selector, context, rootjQuery ) { + var match, elem; + + // HANDLE: $(""), $(null), $(undefined), $(false) + if ( !selector ) { + return this; + } + + // Handle HTML strings + if ( typeof selector === "string" ) { + if ( selector.charAt(0) === "<" && selector.charAt( selector.length - 1 ) === ">" && selector.length >= 3 ) { + // Assume that strings that start and end with <> are HTML and skip the regex check + match = [ null, selector, null ]; + + } else { + match = rquickExpr.exec( selector ); + } + + // Match html or make sure no context is specified for #id + if ( match && (match[1] || !context) ) { + + // HANDLE: $(html) -> $(array) + if ( match[1] ) { + context = context instanceof jQuery ? context[0] : context; + + // scripts is true for back-compat + jQuery.merge( this, jQuery.parseHTML( + match[1], + context && context.nodeType ? context.ownerDocument || context : document, + true + ) ); + + // HANDLE: $(html, props) + if ( rsingleTag.test( match[1] ) && jQuery.isPlainObject( context ) ) { + for ( match in context ) { + // Properties of context are called as methods if possible + if ( jQuery.isFunction( this[ match ] ) ) { + this[ match ]( context[ match ] ); + + // ...and otherwise set as attributes + } else { + this.attr( match, context[ match ] ); + } + } + } + + return this; + + // HANDLE: $(#id) + } else { + elem = document.getElementById( match[2] ); + + // Check parentNode to catch when Blackberry 4.6 returns + // nodes that are no longer in the document #6963 + if ( elem && elem.parentNode ) { + // Handle the case where IE and Opera return items + // by name instead of ID + if ( elem.id !== match[2] ) { + return rootjQuery.find( selector ); + } + + // Otherwise, we inject the element directly into the jQuery object + this.length = 1; + this[0] = elem; + } + + this.context = document; + this.selector = selector; + return this; + } + + // HANDLE: $(expr, $(...)) + } else if ( !context || context.jquery ) { + return ( context || rootjQuery ).find( selector ); + + // HANDLE: $(expr, context) + // (which is just equivalent to: $(context).find(expr) + } else { + return this.constructor( context ).find( selector ); + } + + // HANDLE: $(DOMElement) + } else if ( selector.nodeType ) { + this.context = this[0] = selector; + this.length = 1; + return this; + + // HANDLE: $(function) + // Shortcut for document ready + } else if ( jQuery.isFunction( selector ) ) { + return rootjQuery.ready( selector ); + } + + if ( selector.selector !== undefined ) { + this.selector = selector.selector; + this.context = selector.context; + } + + return jQuery.makeArray( selector, this ); + }, + + // Start with an empty selector + selector: "", + + // The default length of a jQuery object is 0 + length: 0, + + toArray: function() { + return core_slice.call( this ); + }, + + // Get the Nth element in the matched element set OR + // Get the whole matched element set as a clean array + get: function( num ) { + return num == null ? + + // Return a 'clean' array + this.toArray() : + + // Return just the object + ( num < 0 ? this[ this.length + num ] : this[ num ] ); + }, + + // Take an array of elements and push it onto the stack + // (returning the new matched element set) + pushStack: function( elems ) { + + // Build a new jQuery matched element set + var ret = jQuery.merge( this.constructor(), elems ); + + // Add the old object onto the stack (as a reference) + ret.prevObject = this; + ret.context = this.context; + + // Return the newly-formed element set + return ret; + }, + + // Execute a callback for every element in the matched set. + // (You can seed the arguments with an array of args, but this is + // only used internally.) + each: function( callback, args ) { + return jQuery.each( this, callback, args ); + }, + + ready: function( fn ) { + // Add the callback + jQuery.ready.promise().done( fn ); + + return this; + }, + + slice: function() { + return this.pushStack( core_slice.apply( this, arguments ) ); + }, + + first: function() { + return this.eq( 0 ); + }, + + last: function() { + return this.eq( -1 ); + }, + + eq: function( i ) { + var len = this.length, + j = +i + ( i < 0 ? len : 0 ); + return this.pushStack( j >= 0 && j < len ? [ this[j] ] : [] ); + }, + + map: function( callback ) { + return this.pushStack( jQuery.map(this, function( elem, i ) { + return callback.call( elem, i, elem ); + })); + }, + + end: function() { + return this.prevObject || this.constructor(null); + }, + + // For internal use only. + // Behaves like an Array's method, not like a jQuery method. + push: core_push, + sort: [].sort, + splice: [].splice +}; + +// Give the init function the jQuery prototype for later instantiation +jQuery.fn.init.prototype = jQuery.fn; + +jQuery.extend = jQuery.fn.extend = function() { + var src, copyIsArray, copy, name, options, clone, + target = arguments[0] || {}, + i = 1, + length = arguments.length, + deep = false; + + // Handle a deep copy situation + if ( typeof target === "boolean" ) { + deep = target; + target = arguments[1] || {}; + // skip the boolean and the target + i = 2; + } + + // Handle case when target is a string or something (possible in deep copy) + if ( typeof target !== "object" && !jQuery.isFunction(target) ) { + target = {}; + } + + // extend jQuery itself if only one argument is passed + if ( length === i ) { + target = this; + --i; + } + + for ( ; i < length; i++ ) { + // Only deal with non-null/undefined values + if ( (options = arguments[ i ]) != null ) { + // Extend the base object + for ( name in options ) { + src = target[ name ]; + copy = options[ name ]; + + // Prevent never-ending loop + if ( target === copy ) { + continue; + } + + // Recurse if we're merging plain objects or arrays + if ( deep && copy && ( jQuery.isPlainObject(copy) || (copyIsArray = jQuery.isArray(copy)) ) ) { + if ( copyIsArray ) { + copyIsArray = false; + clone = src && jQuery.isArray(src) ? src : []; + + } else { + clone = src && jQuery.isPlainObject(src) ? src : {}; + } + + // Never move original objects, clone them + target[ name ] = jQuery.extend( deep, clone, copy ); + + // Don't bring in undefined values + } else if ( copy !== undefined ) { + target[ name ] = copy; + } + } + } + } + + // Return the modified object + return target; +}; + +jQuery.extend({ + // Unique for each copy of jQuery on the page + // Non-digits removed to match rinlinejQuery + expando: "jQuery" + ( core_version + Math.random() ).replace( /\D/g, "" ), + + noConflict: function( deep ) { + if ( window.$ === jQuery ) { + window.$ = _$; + } + + if ( deep && window.jQuery === jQuery ) { + window.jQuery = _jQuery; + } + + return jQuery; + }, + + // Is the DOM ready to be used? Set to true once it occurs. + isReady: false, + + // A counter to track how many items to wait for before + // the ready event fires. See #6781 + readyWait: 1, + + // Hold (or release) the ready event + holdReady: function( hold ) { + if ( hold ) { + jQuery.readyWait++; + } else { + jQuery.ready( true ); + } + }, + + // Handle when the DOM is ready + ready: function( wait ) { + + // Abort if there are pending holds or we're already ready + if ( wait === true ? --jQuery.readyWait : jQuery.isReady ) { + return; + } + + // Make sure body exists, at least, in case IE gets a little overzealous (ticket #5443). + if ( !document.body ) { + return setTimeout( jQuery.ready ); + } + + // Remember that the DOM is ready + jQuery.isReady = true; + + // If a normal DOM Ready event fired, decrement, and wait if need be + if ( wait !== true && --jQuery.readyWait > 0 ) { + return; + } + + // If there are functions bound, to execute + readyList.resolveWith( document, [ jQuery ] ); + + // Trigger any bound ready events + if ( jQuery.fn.trigger ) { + jQuery( document ).trigger("ready").off("ready"); + } + }, + + // See test/unit/core.js for details concerning isFunction. + // Since version 1.3, DOM methods and functions like alert + // aren't supported. They return false on IE (#2968). + isFunction: function( obj ) { + return jQuery.type(obj) === "function"; + }, + + isArray: Array.isArray || function( obj ) { + return jQuery.type(obj) === "array"; + }, + + isWindow: function( obj ) { + /* jshint eqeqeq: false */ + return obj != null && obj == obj.window; + }, + + isNumeric: function( obj ) { + return !isNaN( parseFloat(obj) ) && isFinite( obj ); + }, + + type: function( obj ) { + if ( obj == null ) { + return String( obj ); + } + return typeof obj === "object" || typeof obj === "function" ? + class2type[ core_toString.call(obj) ] || "object" : + typeof obj; + }, + + isPlainObject: function( obj ) { + var key; + + // Must be an Object. + // Because of IE, we also have to check the presence of the constructor property. + // Make sure that DOM nodes and window objects don't pass through, as well + if ( !obj || jQuery.type(obj) !== "object" || obj.nodeType || jQuery.isWindow( obj ) ) { + return false; + } + + try { + // Not own constructor property must be Object + if ( obj.constructor && + !core_hasOwn.call(obj, "constructor") && + !core_hasOwn.call(obj.constructor.prototype, "isPrototypeOf") ) { + return false; + } + } catch ( e ) { + // IE8,9 Will throw exceptions on certain host objects #9897 + return false; + } + + // Support: IE<9 + // Handle iteration over inherited properties before own properties. + if ( jQuery.support.ownLast ) { + for ( key in obj ) { + return core_hasOwn.call( obj, key ); + } + } + + // Own properties are enumerated firstly, so to speed up, + // if last one is own, then all properties are own. + for ( key in obj ) {} + + return key === undefined || core_hasOwn.call( obj, key ); + }, + + isEmptyObject: function( obj ) { + var name; + for ( name in obj ) { + return false; + } + return true; + }, + + error: function( msg ) { + throw new Error( msg ); + }, + + // data: string of html + // context (optional): If specified, the fragment will be created in this context, defaults to document + // keepScripts (optional): If true, will include scripts passed in the html string + parseHTML: function( data, context, keepScripts ) { + if ( !data || typeof data !== "string" ) { + return null; + } + if ( typeof context === "boolean" ) { + keepScripts = context; + context = false; + } + context = context || document; + + var parsed = rsingleTag.exec( data ), + scripts = !keepScripts && []; + + // Single tag + if ( parsed ) { + return [ context.createElement( parsed[1] ) ]; + } + + parsed = jQuery.buildFragment( [ data ], context, scripts ); + if ( scripts ) { + jQuery( scripts ).remove(); + } + return jQuery.merge( [], parsed.childNodes ); + }, + + parseJSON: function( data ) { + // Attempt to parse using the native JSON parser first + if ( window.JSON && window.JSON.parse ) { + return window.JSON.parse( data ); + } + + if ( data === null ) { + return data; + } + + if ( typeof data === "string" ) { + + // Make sure leading/trailing whitespace is removed (IE can't handle it) + data = jQuery.trim( data ); + + if ( data ) { + // Make sure the incoming data is actual JSON + // Logic borrowed from http://json.org/json2.js + if ( rvalidchars.test( data.replace( rvalidescape, "@" ) + .replace( rvalidtokens, "]" ) + .replace( rvalidbraces, "")) ) { + + return ( new Function( "return " + data ) )(); + } + } + } + + jQuery.error( "Invalid JSON: " + data ); + }, + + // Cross-browser xml parsing + parseXML: function( data ) { + var xml, tmp; + if ( !data || typeof data !== "string" ) { + return null; + } + try { + if ( window.DOMParser ) { // Standard + tmp = new DOMParser(); + xml = tmp.parseFromString( data , "text/xml" ); + } else { // IE + xml = new ActiveXObject( "Microsoft.XMLDOM" ); + xml.async = "false"; + xml.loadXML( data ); + } + } catch( e ) { + xml = undefined; + } + if ( !xml || !xml.documentElement || xml.getElementsByTagName( "parsererror" ).length ) { + jQuery.error( "Invalid XML: " + data ); + } + return xml; + }, + + noop: function() {}, + + // Evaluates a script in a global context + // Workarounds based on findings by Jim Driscoll + // http://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context + globalEval: function( data ) { + if ( data && jQuery.trim( data ) ) { + // We use execScript on Internet Explorer + // We use an anonymous function so that context is window + // rather than jQuery in Firefox + ( window.execScript || function( data ) { + window[ "eval" ].call( window, data ); + } )( data ); + } + }, + + // Convert dashed to camelCase; used by the css and data modules + // Microsoft forgot to hump their vendor prefix (#9572) + camelCase: function( string ) { + return string.replace( rmsPrefix, "ms-" ).replace( rdashAlpha, fcamelCase ); + }, + + nodeName: function( elem, name ) { + return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase(); + }, + + // args is for internal usage only + each: function( obj, callback, args ) { + var value, + i = 0, + length = obj.length, + isArray = isArraylike( obj ); + + if ( args ) { + if ( isArray ) { + for ( ; i < length; i++ ) { + value = callback.apply( obj[ i ], args ); + + if ( value === false ) { + break; + } + } + } else { + for ( i in obj ) { + value = callback.apply( obj[ i ], args ); + + if ( value === false ) { + break; + } + } + } + + // A special, fast, case for the most common use of each + } else { + if ( isArray ) { + for ( ; i < length; i++ ) { + value = callback.call( obj[ i ], i, obj[ i ] ); + + if ( value === false ) { + break; + } + } + } else { + for ( i in obj ) { + value = callback.call( obj[ i ], i, obj[ i ] ); + + if ( value === false ) { + break; + } + } + } + } + + return obj; + }, + + // Use native String.trim function wherever possible + trim: core_trim && !core_trim.call("\uFEFF\xA0") ? + function( text ) { + return text == null ? + "" : + core_trim.call( text ); + } : + + // Otherwise use our own trimming functionality + function( text ) { + return text == null ? + "" : + ( text + "" ).replace( rtrim, "" ); + }, + + // results is for internal usage only + makeArray: function( arr, results ) { + var ret = results || []; + + if ( arr != null ) { + if ( isArraylike( Object(arr) ) ) { + jQuery.merge( ret, + typeof arr === "string" ? + [ arr ] : arr + ); + } else { + core_push.call( ret, arr ); + } + } + + return ret; + }, + + inArray: function( elem, arr, i ) { + var len; + + if ( arr ) { + if ( core_indexOf ) { + return core_indexOf.call( arr, elem, i ); + } + + len = arr.length; + i = i ? i < 0 ? Math.max( 0, len + i ) : i : 0; + + for ( ; i < len; i++ ) { + // Skip accessing in sparse arrays + if ( i in arr && arr[ i ] === elem ) { + return i; + } + } + } + + return -1; + }, + + merge: function( first, second ) { + var l = second.length, + i = first.length, + j = 0; + + if ( typeof l === "number" ) { + for ( ; j < l; j++ ) { + first[ i++ ] = second[ j ]; + } + } else { + while ( second[j] !== undefined ) { + first[ i++ ] = second[ j++ ]; + } + } + + first.length = i; + + return first; + }, + + grep: function( elems, callback, inv ) { + var retVal, + ret = [], + i = 0, + length = elems.length; + inv = !!inv; + + // Go through the array, only saving the items + // that pass the validator function + for ( ; i < length; i++ ) { + retVal = !!callback( elems[ i ], i ); + if ( inv !== retVal ) { + ret.push( elems[ i ] ); + } + } + + return ret; + }, + + // arg is for internal usage only + map: function( elems, callback, arg ) { + var value, + i = 0, + length = elems.length, + isArray = isArraylike( elems ), + ret = []; + + // Go through the array, translating each of the items to their + if ( isArray ) { + for ( ; i < length; i++ ) { + value = callback( elems[ i ], i, arg ); + + if ( value != null ) { + ret[ ret.length ] = value; + } + } + + // Go through every key on the object, + } else { + for ( i in elems ) { + value = callback( elems[ i ], i, arg ); + + if ( value != null ) { + ret[ ret.length ] = value; + } + } + } + + // Flatten any nested arrays + return core_concat.apply( [], ret ); + }, + + // A global GUID counter for objects + guid: 1, + + // Bind a function to a context, optionally partially applying any + // arguments. + proxy: function( fn, context ) { + var args, proxy, tmp; + + if ( typeof context === "string" ) { + tmp = fn[ context ]; + context = fn; + fn = tmp; + } + + // Quick check to determine if target is callable, in the spec + // this throws a TypeError, but we will just return undefined. + if ( !jQuery.isFunction( fn ) ) { + return undefined; + } + + // Simulated bind + args = core_slice.call( arguments, 2 ); + proxy = function() { + return fn.apply( context || this, args.concat( core_slice.call( arguments ) ) ); + }; + + // Set the guid of unique handler to the same of original handler, so it can be removed + proxy.guid = fn.guid = fn.guid || jQuery.guid++; + + return proxy; + }, + + // Multifunctional method to get and set values of a collection + // The value/s can optionally be executed if it's a function + access: function( elems, fn, key, value, chainable, emptyGet, raw ) { + var i = 0, + length = elems.length, + bulk = key == null; + + // Sets many values + if ( jQuery.type( key ) === "object" ) { + chainable = true; + for ( i in key ) { + jQuery.access( elems, fn, i, key[i], true, emptyGet, raw ); + } + + // Sets one value + } else if ( value !== undefined ) { + chainable = true; + + if ( !jQuery.isFunction( value ) ) { + raw = true; + } + + if ( bulk ) { + // Bulk operations run against the entire set + if ( raw ) { + fn.call( elems, value ); + fn = null; + + // ...except when executing function values + } else { + bulk = fn; + fn = function( elem, key, value ) { + return bulk.call( jQuery( elem ), value ); + }; + } + } + + if ( fn ) { + for ( ; i < length; i++ ) { + fn( elems[i], key, raw ? value : value.call( elems[i], i, fn( elems[i], key ) ) ); + } + } + } + + return chainable ? + elems : + + // Gets + bulk ? + fn.call( elems ) : + length ? fn( elems[0], key ) : emptyGet; + }, + + now: function() { + return ( new Date() ).getTime(); + }, + + // A method for quickly swapping in/out CSS properties to get correct calculations. + // Note: this method belongs to the css module but it's needed here for the support module. + // If support gets modularized, this method should be moved back to the css module. + swap: function( elem, options, callback, args ) { + var ret, name, + old = {}; + + // Remember the old values, and insert the new ones + for ( name in options ) { + old[ name ] = elem.style[ name ]; + elem.style[ name ] = options[ name ]; + } + + ret = callback.apply( elem, args || [] ); + + // Revert the old values + for ( name in options ) { + elem.style[ name ] = old[ name ]; + } + + return ret; + } +}); + +jQuery.ready.promise = function( obj ) { + if ( !readyList ) { + + readyList = jQuery.Deferred(); + + // Catch cases where $(document).ready() is called after the browser event has already occurred. + // we once tried to use readyState "interactive" here, but it caused issues like the one + // discovered by ChrisS here: http://bugs.jquery.com/ticket/12282#comment:15 + if ( document.readyState === "complete" ) { + // Handle it asynchronously to allow scripts the opportunity to delay ready + setTimeout( jQuery.ready ); + + // Standards-based browsers support DOMContentLoaded + } else if ( document.addEventListener ) { + // Use the handy event callback + document.addEventListener( "DOMContentLoaded", completed, false ); + + // A fallback to window.onload, that will always work + window.addEventListener( "load", completed, false ); + + // If IE event model is used + } else { + // Ensure firing before onload, maybe late but safe also for iframes + document.attachEvent( "onreadystatechange", completed ); + + // A fallback to window.onload, that will always work + window.attachEvent( "onload", completed ); + + // If IE and not a frame + // continually check to see if the document is ready + var top = false; + + try { + top = window.frameElement == null && document.documentElement; + } catch(e) {} + + if ( top && top.doScroll ) { + (function doScrollCheck() { + if ( !jQuery.isReady ) { + + try { + // Use the trick by Diego Perini + // http://javascript.nwbox.com/IEContentLoaded/ + top.doScroll("left"); + } catch(e) { + return setTimeout( doScrollCheck, 50 ); + } + + // detach all dom ready events + detach(); + + // and execute any waiting functions + jQuery.ready(); + } + })(); + } + } + } + return readyList.promise( obj ); +}; + +// Populate the class2type map +jQuery.each("Boolean Number String Function Array Date RegExp Object Error".split(" "), function(i, name) { + class2type[ "[object " + name + "]" ] = name.toLowerCase(); +}); + +function isArraylike( obj ) { + var length = obj.length, + type = jQuery.type( obj ); + + if ( jQuery.isWindow( obj ) ) { + return false; + } + + if ( obj.nodeType === 1 && length ) { + return true; + } + + return type === "array" || type !== "function" && + ( length === 0 || + typeof length === "number" && length > 0 && ( length - 1 ) in obj ); +} + +// All jQuery objects should point back to these +rootjQuery = jQuery(document); +/*! + * Sizzle CSS Selector Engine v1.9.4-pre + * http://sizzlejs.com/ + * + * Copyright 2013 jQuery Foundation, Inc. and other contributors + * Released under the MIT license + * http://jquery.org/license + * + * Date: 2013-05-27 + */ +(function( window, undefined ) { + +var i, + support, + cachedruns, + Expr, + getText, + isXML, + compile, + outermostContext, + sortInput, + + // Local document vars + setDocument, + document, + docElem, + documentIsHTML, + rbuggyQSA, + rbuggyMatches, + matches, + contains, + + // Instance-specific data + expando = "sizzle" + -(new Date()), + preferredDoc = window.document, + dirruns = 0, + done = 0, + classCache = createCache(), + tokenCache = createCache(), + compilerCache = createCache(), + hasDuplicate = false, + sortOrder = function() { return 0; }, + + // General-purpose constants + strundefined = typeof undefined, + MAX_NEGATIVE = 1 << 31, + + // Instance methods + hasOwn = ({}).hasOwnProperty, + arr = [], + pop = arr.pop, + push_native = arr.push, + push = arr.push, + slice = arr.slice, + // Use a stripped-down indexOf if we can't use a native one + indexOf = arr.indexOf || function( elem ) { + var i = 0, + len = this.length; + for ( ; i < len; i++ ) { + if ( this[i] === elem ) { + return i; + } + } + return -1; + }, + + booleans = "checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped", + + // Regular expressions + + // Whitespace characters http://www.w3.org/TR/css3-selectors/#whitespace + whitespace = "[\\x20\\t\\r\\n\\f]", + // http://www.w3.org/TR/css3-syntax/#characters + characterEncoding = "(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+", + + // Loosely modeled on CSS identifier characters + // An unquoted value should be a CSS identifier http://www.w3.org/TR/css3-selectors/#attribute-selectors + // Proper syntax: http://www.w3.org/TR/CSS21/syndata.html#value-def-identifier + identifier = characterEncoding.replace( "w", "w#" ), + + // Acceptable operators http://www.w3.org/TR/selectors/#attribute-selectors + attributes = "\\[" + whitespace + "*(" + characterEncoding + ")" + whitespace + + "*(?:([*^$|!~]?=)" + whitespace + "*(?:(['\"])((?:\\\\.|[^\\\\])*?)\\3|(" + identifier + ")|)|)" + whitespace + "*\\]", + + // Prefer arguments quoted, + // then not containing pseudos/brackets, + // then attribute selectors/non-parenthetical expressions, + // then anything else + // These preferences are here to reduce the number of selectors + // needing tokenize in the PSEUDO preFilter + pseudos = ":(" + characterEncoding + ")(?:\\(((['\"])((?:\\\\.|[^\\\\])*?)\\3|((?:\\\\.|[^\\\\()[\\]]|" + attributes.replace( 3, 8 ) + ")*)|.*)\\)|)", + + // Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter + rtrim = new RegExp( "^" + whitespace + "+|((?:^|[^\\\\])(?:\\\\.)*)" + whitespace + "+$", "g" ), + + rcomma = new RegExp( "^" + whitespace + "*," + whitespace + "*" ), + rcombinators = new RegExp( "^" + whitespace + "*([>+~]|" + whitespace + ")" + whitespace + "*" ), + + rsibling = new RegExp( whitespace + "*[+~]" ), + rattributeQuotes = new RegExp( "=" + whitespace + "*([^\\]'\"]*)" + whitespace + "*\\]", "g" ), + + rpseudo = new RegExp( pseudos ), + ridentifier = new RegExp( "^" + identifier + "$" ), + + matchExpr = { + "ID": new RegExp( "^#(" + characterEncoding + ")" ), + "CLASS": new RegExp( "^\\.(" + characterEncoding + ")" ), + "TAG": new RegExp( "^(" + characterEncoding.replace( "w", "w*" ) + ")" ), + "ATTR": new RegExp( "^" + attributes ), + "PSEUDO": new RegExp( "^" + pseudos ), + "CHILD": new RegExp( "^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\(" + whitespace + + "*(even|odd|(([+-]|)(\\d*)n|)" + whitespace + "*(?:([+-]|)" + whitespace + + "*(\\d+)|))" + whitespace + "*\\)|)", "i" ), + "bool": new RegExp( "^(?:" + booleans + ")$", "i" ), + // For use in libraries implementing .is() + // We use this for POS matching in `select` + "needsContext": new RegExp( "^" + whitespace + "*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\(" + + whitespace + "*((?:-\\d)?\\d*)" + whitespace + "*\\)|)(?=[^-]|$)", "i" ) + }, + + rnative = /^[^{]+\{\s*\[native \w/, + + // Easily-parseable/retrievable ID or TAG or CLASS selectors + rquickExpr = /^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/, + + rinputs = /^(?:input|select|textarea|button)$/i, + rheader = /^h\d$/i, + + rescape = /'|\\/g, + + // CSS escapes http://www.w3.org/TR/CSS21/syndata.html#escaped-characters + runescape = new RegExp( "\\\\([\\da-f]{1,6}" + whitespace + "?|(" + whitespace + ")|.)", "ig" ), + funescape = function( _, escaped, escapedWhitespace ) { + var high = "0x" + escaped - 0x10000; + // NaN means non-codepoint + // Support: Firefox + // Workaround erroneous numeric interpretation of +"0x" + return high !== high || escapedWhitespace ? + escaped : + // BMP codepoint + high < 0 ? + String.fromCharCode( high + 0x10000 ) : + // Supplemental Plane codepoint (surrogate pair) + String.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 ); + }; + +// Optimize for push.apply( _, NodeList ) +try { + push.apply( + (arr = slice.call( preferredDoc.childNodes )), + preferredDoc.childNodes + ); + // Support: Android<4.0 + // Detect silently failing push.apply + arr[ preferredDoc.childNodes.length ].nodeType; +} catch ( e ) { + push = { apply: arr.length ? + + // Leverage slice if possible + function( target, els ) { + push_native.apply( target, slice.call(els) ); + } : + + // Support: IE<9 + // Otherwise append directly + function( target, els ) { + var j = target.length, + i = 0; + // Can't trust NodeList.length + while ( (target[j++] = els[i++]) ) {} + target.length = j - 1; + } + }; +} + +function Sizzle( selector, context, results, seed ) { + var match, elem, m, nodeType, + // QSA vars + i, groups, old, nid, newContext, newSelector; + + if ( ( context ? context.ownerDocument || context : preferredDoc ) !== document ) { + setDocument( context ); + } + + context = context || document; + results = results || []; + + if ( !selector || typeof selector !== "string" ) { + return results; + } + + if ( (nodeType = context.nodeType) !== 1 && nodeType !== 9 ) { + return []; + } + + if ( documentIsHTML && !seed ) { + + // Shortcuts + if ( (match = rquickExpr.exec( selector )) ) { + // Speed-up: Sizzle("#ID") + if ( (m = match[1]) ) { + if ( nodeType === 9 ) { + elem = context.getElementById( m ); + // Check parentNode to catch when Blackberry 4.6 returns + // nodes that are no longer in the document #6963 + if ( elem && elem.parentNode ) { + // Handle the case where IE, Opera, and Webkit return items + // by name instead of ID + if ( elem.id === m ) { + results.push( elem ); + return results; + } + } else { + return results; + } + } else { + // Context is not a document + if ( context.ownerDocument && (elem = context.ownerDocument.getElementById( m )) && + contains( context, elem ) && elem.id === m ) { + results.push( elem ); + return results; + } + } + + // Speed-up: Sizzle("TAG") + } else if ( match[2] ) { + push.apply( results, context.getElementsByTagName( selector ) ); + return results; + + // Speed-up: Sizzle(".CLASS") + } else if ( (m = match[3]) && support.getElementsByClassName && context.getElementsByClassName ) { + push.apply( results, context.getElementsByClassName( m ) ); + return results; + } + } + + // QSA path + if ( support.qsa && (!rbuggyQSA || !rbuggyQSA.test( selector )) ) { + nid = old = expando; + newContext = context; + newSelector = nodeType === 9 && selector; + + // qSA works strangely on Element-rooted queries + // We can work around this by specifying an extra ID on the root + // and working up from there (Thanks to Andrew Dupont for the technique) + // IE 8 doesn't work on object elements + if ( nodeType === 1 && context.nodeName.toLowerCase() !== "object" ) { + groups = tokenize( selector ); + + if ( (old = context.getAttribute("id")) ) { + nid = old.replace( rescape, "\\$&" ); + } else { + context.setAttribute( "id", nid ); + } + nid = "[id='" + nid + "'] "; + + i = groups.length; + while ( i-- ) { + groups[i] = nid + toSelector( groups[i] ); + } + newContext = rsibling.test( selector ) && context.parentNode || context; + newSelector = groups.join(","); + } + + if ( newSelector ) { + try { + push.apply( results, + newContext.querySelectorAll( newSelector ) + ); + return results; + } catch(qsaError) { + } finally { + if ( !old ) { + context.removeAttribute("id"); + } + } + } + } + } + + // All others + return select( selector.replace( rtrim, "$1" ), context, results, seed ); +} + +/** + * For feature detection + * @param {Function} fn The function to test for native support + */ +function isNative( fn ) { + return rnative.test( fn + "" ); +} + +/** + * Create key-value caches of limited size + * @returns {Function(string, Object)} Returns the Object data after storing it on itself with + * property name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength) + * deleting the oldest entry + */ +function createCache() { + var keys = []; + + function cache( key, value ) { + // Use (key + " ") to avoid collision with native prototype properties (see Issue #157) + if ( keys.push( key += " " ) > Expr.cacheLength ) { + // Only keep the most recent entries + delete cache[ keys.shift() ]; + } + return (cache[ key ] = value); + } + return cache; +} + +/** + * Mark a function for special use by Sizzle + * @param {Function} fn The function to mark + */ +function markFunction( fn ) { + fn[ expando ] = true; + return fn; +} + +/** + * Support testing using an element + * @param {Function} fn Passed the created div and expects a boolean result + */ +function assert( fn ) { + var div = document.createElement("div"); + + try { + return !!fn( div ); + } catch (e) { + return false; + } finally { + // Remove from its parent by default + if ( div.parentNode ) { + div.parentNode.removeChild( div ); + } + // release memory in IE + div = null; + } +} + +/** + * Adds the same handler for all of the specified attrs + * @param {String} attrs Pipe-separated list of attributes + * @param {Function} handler The method that will be applied if the test fails + * @param {Boolean} test The result of a test. If true, null will be set as the handler in leiu of the specified handler + */ +function addHandle( attrs, handler, test ) { + attrs = attrs.split("|"); + var current, + i = attrs.length, + setHandle = test ? null : handler; + + while ( i-- ) { + // Don't override a user's handler + if ( !(current = Expr.attrHandle[ attrs[i] ]) || current === handler ) { + Expr.attrHandle[ attrs[i] ] = setHandle; + } + } +} + +/** + * Fetches boolean attributes by node + * @param {Element} elem + * @param {String} name + */ +function boolHandler( elem, name ) { + // XML does not need to be checked as this will not be assigned for XML documents + var val = elem.getAttributeNode( name ); + return val && val.specified ? + val.value : + elem[ name ] === true ? name.toLowerCase() : null; +} + +/** + * Fetches attributes without interpolation + * http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx + * @param {Element} elem + * @param {String} name + */ +function interpolationHandler( elem, name ) { + // XML does not need to be checked as this will not be assigned for XML documents + return elem.getAttribute( name, name.toLowerCase() === "type" ? 1 : 2 ); +} + +/** + * Uses defaultValue to retrieve value in IE6/7 + * @param {Element} elem + * @param {String} name + */ +function valueHandler( elem ) { + // Ignore the value *property* on inputs by using defaultValue + // Fallback to Sizzle.attr by returning undefined where appropriate + // XML does not need to be checked as this will not be assigned for XML documents + if ( elem.nodeName.toLowerCase() === "input" ) { + return elem.defaultValue; + } +} + +/** + * Checks document order of two siblings + * @param {Element} a + * @param {Element} b + * @returns Returns -1 if a precedes b, 1 if a follows b + */ +function siblingCheck( a, b ) { + var cur = b && a, + diff = cur && a.nodeType === 1 && b.nodeType === 1 && + ( ~b.sourceIndex || MAX_NEGATIVE ) - + ( ~a.sourceIndex || MAX_NEGATIVE ); + + // Use IE sourceIndex if available on both nodes + if ( diff ) { + return diff; + } + + // Check if b follows a + if ( cur ) { + while ( (cur = cur.nextSibling) ) { + if ( cur === b ) { + return -1; + } + } + } + + return a ? 1 : -1; +} + +/** + * Returns a function to use in pseudos for input types + * @param {String} type + */ +function createInputPseudo( type ) { + return function( elem ) { + var name = elem.nodeName.toLowerCase(); + return name === "input" && elem.type === type; + }; +} + +/** + * Returns a function to use in pseudos for buttons + * @param {String} type + */ +function createButtonPseudo( type ) { + return function( elem ) { + var name = elem.nodeName.toLowerCase(); + return (name === "input" || name === "button") && elem.type === type; + }; +} + +/** + * Returns a function to use in pseudos for positionals + * @param {Function} fn + */ +function createPositionalPseudo( fn ) { + return markFunction(function( argument ) { + argument = +argument; + return markFunction(function( seed, matches ) { + var j, + matchIndexes = fn( [], seed.length, argument ), + i = matchIndexes.length; + + // Match elements found at the specified indexes + while ( i-- ) { + if ( seed[ (j = matchIndexes[i]) ] ) { + seed[j] = !(matches[j] = seed[j]); + } + } + }); + }); +} + +/** + * Detect xml + * @param {Element|Object} elem An element or a document + */ +isXML = Sizzle.isXML = function( elem ) { + // documentElement is verified for cases where it doesn't yet exist + // (such as loading iframes in IE - #4833) + var documentElement = elem && (elem.ownerDocument || elem).documentElement; + return documentElement ? documentElement.nodeName !== "HTML" : false; +}; + +// Expose support vars for convenience +support = Sizzle.support = {}; + +/** + * Sets document-related variables once based on the current document + * @param {Element|Object} [doc] An element or document object to use to set the document + * @returns {Object} Returns the current document + */ +setDocument = Sizzle.setDocument = function( node ) { + var doc = node ? node.ownerDocument || node : preferredDoc, + parent = doc.parentWindow; + + // If no document and documentElement is available, return + if ( doc === document || doc.nodeType !== 9 || !doc.documentElement ) { + return document; + } + + // Set our document + document = doc; + docElem = doc.documentElement; + + // Support tests + documentIsHTML = !isXML( doc ); + + // Support: IE>8 + // If iframe document is assigned to "document" variable and if iframe has been reloaded, + // IE will throw "permission denied" error when accessing "document" variable, see jQuery #13936 + if ( parent && parent.frameElement ) { + parent.attachEvent( "onbeforeunload", function() { + setDocument(); + }); + } + + /* Attributes + ---------------------------------------------------------------------- */ + + // Support: IE<8 + // Verify that getAttribute really returns attributes and not properties (excepting IE8 booleans) + support.attributes = assert(function( div ) { + + // Support: IE<8 + // Prevent attribute/property "interpolation" + div.innerHTML = ""; + addHandle( "type|href|height|width", interpolationHandler, div.firstChild.getAttribute("href") === "#" ); + + // Support: IE<9 + // Use getAttributeNode to fetch booleans when getAttribute lies + addHandle( booleans, boolHandler, div.getAttribute("disabled") == null ); + + div.className = "i"; + return !div.getAttribute("className"); + }); + + // Support: IE<9 + // Retrieving value should defer to defaultValue + support.input = assert(function( div ) { + div.innerHTML = ""; + div.firstChild.setAttribute( "value", "" ); + return div.firstChild.getAttribute( "value" ) === ""; + }); + + // IE6/7 still return empty string for value, + // but are actually retrieving the property + addHandle( "value", valueHandler, support.attributes && support.input ); + + /* getElement(s)By* + ---------------------------------------------------------------------- */ + + // Check if getElementsByTagName("*") returns only elements + support.getElementsByTagName = assert(function( div ) { + div.appendChild( doc.createComment("") ); + return !div.getElementsByTagName("*").length; + }); + + // Check if getElementsByClassName can be trusted + support.getElementsByClassName = assert(function( div ) { + div.innerHTML = "
"; + + // Support: Safari<4 + // Catch class over-caching + div.firstChild.className = "i"; + // Support: Opera<10 + // Catch gEBCN failure to find non-leading classes + return div.getElementsByClassName("i").length === 2; + }); + + // Support: IE<10 + // Check if getElementById returns elements by name + // The broken getElementById methods don't pick up programatically-set names, + // so use a roundabout getElementsByName test + support.getById = assert(function( div ) { + docElem.appendChild( div ).id = expando; + return !doc.getElementsByName || !doc.getElementsByName( expando ).length; + }); + + // ID find and filter + if ( support.getById ) { + Expr.find["ID"] = function( id, context ) { + if ( typeof context.getElementById !== strundefined && documentIsHTML ) { + var m = context.getElementById( id ); + // Check parentNode to catch when Blackberry 4.6 returns + // nodes that are no longer in the document #6963 + return m && m.parentNode ? [m] : []; + } + }; + Expr.filter["ID"] = function( id ) { + var attrId = id.replace( runescape, funescape ); + return function( elem ) { + return elem.getAttribute("id") === attrId; + }; + }; + } else { + // Support: IE6/7 + // getElementById is not reliable as a find shortcut + delete Expr.find["ID"]; + + Expr.filter["ID"] = function( id ) { + var attrId = id.replace( runescape, funescape ); + return function( elem ) { + var node = typeof elem.getAttributeNode !== strundefined && elem.getAttributeNode("id"); + return node && node.value === attrId; + }; + }; + } + + // Tag + Expr.find["TAG"] = support.getElementsByTagName ? + function( tag, context ) { + if ( typeof context.getElementsByTagName !== strundefined ) { + return context.getElementsByTagName( tag ); + } + } : + function( tag, context ) { + var elem, + tmp = [], + i = 0, + results = context.getElementsByTagName( tag ); + + // Filter out possible comments + if ( tag === "*" ) { + while ( (elem = results[i++]) ) { + if ( elem.nodeType === 1 ) { + tmp.push( elem ); + } + } + + return tmp; + } + return results; + }; + + // Class + Expr.find["CLASS"] = support.getElementsByClassName && function( className, context ) { + if ( typeof context.getElementsByClassName !== strundefined && documentIsHTML ) { + return context.getElementsByClassName( className ); + } + }; + + /* QSA/matchesSelector + ---------------------------------------------------------------------- */ + + // QSA and matchesSelector support + + // matchesSelector(:active) reports false when true (IE9/Opera 11.5) + rbuggyMatches = []; + + // qSa(:focus) reports false when true (Chrome 21) + // We allow this because of a bug in IE8/9 that throws an error + // whenever `document.activeElement` is accessed on an iframe + // So, we allow :focus to pass through QSA all the time to avoid the IE error + // See http://bugs.jquery.com/ticket/13378 + rbuggyQSA = []; + + if ( (support.qsa = isNative(doc.querySelectorAll)) ) { + // Build QSA regex + // Regex strategy adopted from Diego Perini + assert(function( div ) { + // Select is set to empty string on purpose + // This is to test IE's treatment of not explicitly + // setting a boolean content attribute, + // since its presence should be enough + // http://bugs.jquery.com/ticket/12359 + div.innerHTML = ""; + + // Support: IE8 + // Boolean attributes and "value" are not treated correctly + if ( !div.querySelectorAll("[selected]").length ) { + rbuggyQSA.push( "\\[" + whitespace + "*(?:value|" + booleans + ")" ); + } + + // Webkit/Opera - :checked should return selected option elements + // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked + // IE8 throws error here and will not see later tests + if ( !div.querySelectorAll(":checked").length ) { + rbuggyQSA.push(":checked"); + } + }); + + assert(function( div ) { + + // Support: Opera 10-12/IE8 + // ^= $= *= and empty values + // Should not select anything + // Support: Windows 8 Native Apps + // The type attribute is restricted during .innerHTML assignment + var input = doc.createElement("input"); + input.setAttribute( "type", "hidden" ); + div.appendChild( input ).setAttribute( "t", "" ); + + if ( div.querySelectorAll("[t^='']").length ) { + rbuggyQSA.push( "[*^$]=" + whitespace + "*(?:''|\"\")" ); + } + + // FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled) + // IE8 throws error here and will not see later tests + if ( !div.querySelectorAll(":enabled").length ) { + rbuggyQSA.push( ":enabled", ":disabled" ); + } + + // Opera 10-11 does not throw on post-comma invalid pseudos + div.querySelectorAll("*,:x"); + rbuggyQSA.push(",.*:"); + }); + } + + if ( (support.matchesSelector = isNative( (matches = docElem.webkitMatchesSelector || + docElem.mozMatchesSelector || + docElem.oMatchesSelector || + docElem.msMatchesSelector) )) ) { + + assert(function( div ) { + // Check to see if it's possible to do matchesSelector + // on a disconnected node (IE 9) + support.disconnectedMatch = matches.call( div, "div" ); + + // This should fail with an exception + // Gecko does not error, returns false instead + matches.call( div, "[s!='']:x" ); + rbuggyMatches.push( "!=", pseudos ); + }); + } + + rbuggyQSA = rbuggyQSA.length && new RegExp( rbuggyQSA.join("|") ); + rbuggyMatches = rbuggyMatches.length && new RegExp( rbuggyMatches.join("|") ); + + /* Contains + ---------------------------------------------------------------------- */ + + // Element contains another + // Purposefully does not implement inclusive descendent + // As in, an element does not contain itself + contains = isNative(docElem.contains) || docElem.compareDocumentPosition ? + function( a, b ) { + var adown = a.nodeType === 9 ? a.documentElement : a, + bup = b && b.parentNode; + return a === bup || !!( bup && bup.nodeType === 1 && ( + adown.contains ? + adown.contains( bup ) : + a.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16 + )); + } : + function( a, b ) { + if ( b ) { + while ( (b = b.parentNode) ) { + if ( b === a ) { + return true; + } + } + } + return false; + }; + + /* Sorting + ---------------------------------------------------------------------- */ + + // Support: Webkit<537.32 - Safari 6.0.3/Chrome 25 (fixed in Chrome 27) + // Detached nodes confoundingly follow *each other* + support.sortDetached = assert(function( div1 ) { + // Should return 1, but returns 4 (following) + return div1.compareDocumentPosition( doc.createElement("div") ) & 1; + }); + + // Document order sorting + sortOrder = docElem.compareDocumentPosition ? + function( a, b ) { + + // Flag for duplicate removal + if ( a === b ) { + hasDuplicate = true; + return 0; + } + + var compare = b.compareDocumentPosition && a.compareDocumentPosition && a.compareDocumentPosition( b ); + + if ( compare ) { + // Disconnected nodes + if ( compare & 1 || + (!support.sortDetached && b.compareDocumentPosition( a ) === compare) ) { + + // Choose the first element that is related to our preferred document + if ( a === doc || contains(preferredDoc, a) ) { + return -1; + } + if ( b === doc || contains(preferredDoc, b) ) { + return 1; + } + + // Maintain original order + return sortInput ? + ( indexOf.call( sortInput, a ) - indexOf.call( sortInput, b ) ) : + 0; + } + + return compare & 4 ? -1 : 1; + } + + // Not directly comparable, sort on existence of method + return a.compareDocumentPosition ? -1 : 1; + } : + function( a, b ) { + var cur, + i = 0, + aup = a.parentNode, + bup = b.parentNode, + ap = [ a ], + bp = [ b ]; + + // Exit early if the nodes are identical + if ( a === b ) { + hasDuplicate = true; + return 0; + + // Parentless nodes are either documents or disconnected + } else if ( !aup || !bup ) { + return a === doc ? -1 : + b === doc ? 1 : + aup ? -1 : + bup ? 1 : + sortInput ? + ( indexOf.call( sortInput, a ) - indexOf.call( sortInput, b ) ) : + 0; + + // If the nodes are siblings, we can do a quick check + } else if ( aup === bup ) { + return siblingCheck( a, b ); + } + + // Otherwise we need full lists of their ancestors for comparison + cur = a; + while ( (cur = cur.parentNode) ) { + ap.unshift( cur ); + } + cur = b; + while ( (cur = cur.parentNode) ) { + bp.unshift( cur ); + } + + // Walk down the tree looking for a discrepancy + while ( ap[i] === bp[i] ) { + i++; + } + + return i ? + // Do a sibling check if the nodes have a common ancestor + siblingCheck( ap[i], bp[i] ) : + + // Otherwise nodes in our document sort first + ap[i] === preferredDoc ? -1 : + bp[i] === preferredDoc ? 1 : + 0; + }; + + return doc; +}; + +Sizzle.matches = function( expr, elements ) { + return Sizzle( expr, null, null, elements ); +}; + +Sizzle.matchesSelector = function( elem, expr ) { + // Set document vars if needed + if ( ( elem.ownerDocument || elem ) !== document ) { + setDocument( elem ); + } + + // Make sure that attribute selectors are quoted + expr = expr.replace( rattributeQuotes, "='$1']" ); + + if ( support.matchesSelector && documentIsHTML && + ( !rbuggyMatches || !rbuggyMatches.test( expr ) ) && + ( !rbuggyQSA || !rbuggyQSA.test( expr ) ) ) { + + try { + var ret = matches.call( elem, expr ); + + // IE 9's matchesSelector returns false on disconnected nodes + if ( ret || support.disconnectedMatch || + // As well, disconnected nodes are said to be in a document + // fragment in IE 9 + elem.document && elem.document.nodeType !== 11 ) { + return ret; + } + } catch(e) {} + } + + return Sizzle( expr, document, null, [elem] ).length > 0; +}; + +Sizzle.contains = function( context, elem ) { + // Set document vars if needed + if ( ( context.ownerDocument || context ) !== document ) { + setDocument( context ); + } + return contains( context, elem ); +}; + +Sizzle.attr = function( elem, name ) { + // Set document vars if needed + if ( ( elem.ownerDocument || elem ) !== document ) { + setDocument( elem ); + } + + var fn = Expr.attrHandle[ name.toLowerCase() ], + // Don't get fooled by Object.prototype properties (jQuery #13807) + val = ( fn && hasOwn.call( Expr.attrHandle, name.toLowerCase() ) ? + fn( elem, name, !documentIsHTML ) : + undefined ); + + return val === undefined ? + support.attributes || !documentIsHTML ? + elem.getAttribute( name ) : + (val = elem.getAttributeNode(name)) && val.specified ? + val.value : + null : + val; +}; + +Sizzle.error = function( msg ) { + throw new Error( "Syntax error, unrecognized expression: " + msg ); +}; + +/** + * Document sorting and removing duplicates + * @param {ArrayLike} results + */ +Sizzle.uniqueSort = function( results ) { + var elem, + duplicates = [], + j = 0, + i = 0; + + // Unless we *know* we can detect duplicates, assume their presence + hasDuplicate = !support.detectDuplicates; + sortInput = !support.sortStable && results.slice( 0 ); + results.sort( sortOrder ); + + if ( hasDuplicate ) { + while ( (elem = results[i++]) ) { + if ( elem === results[ i ] ) { + j = duplicates.push( i ); + } + } + while ( j-- ) { + results.splice( duplicates[ j ], 1 ); + } + } + + return results; +}; + +/** + * Utility function for retrieving the text value of an array of DOM nodes + * @param {Array|Element} elem + */ +getText = Sizzle.getText = function( elem ) { + var node, + ret = "", + i = 0, + nodeType = elem.nodeType; + + if ( !nodeType ) { + // If no nodeType, this is expected to be an array + for ( ; (node = elem[i]); i++ ) { + // Do not traverse comment nodes + ret += getText( node ); + } + } else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) { + // Use textContent for elements + // innerText usage removed for consistency of new lines (see #11153) + if ( typeof elem.textContent === "string" ) { + return elem.textContent; + } else { + // Traverse its children + for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { + ret += getText( elem ); + } + } + } else if ( nodeType === 3 || nodeType === 4 ) { + return elem.nodeValue; + } + // Do not include comment or processing instruction nodes + + return ret; +}; + +Expr = Sizzle.selectors = { + + // Can be adjusted by the user + cacheLength: 50, + + createPseudo: markFunction, + + match: matchExpr, + + attrHandle: {}, + + find: {}, + + relative: { + ">": { dir: "parentNode", first: true }, + " ": { dir: "parentNode" }, + "+": { dir: "previousSibling", first: true }, + "~": { dir: "previousSibling" } + }, + + preFilter: { + "ATTR": function( match ) { + match[1] = match[1].replace( runescape, funescape ); + + // Move the given value to match[3] whether quoted or unquoted + match[3] = ( match[4] || match[5] || "" ).replace( runescape, funescape ); + + if ( match[2] === "~=" ) { + match[3] = " " + match[3] + " "; + } + + return match.slice( 0, 4 ); + }, + + "CHILD": function( match ) { + /* matches from matchExpr["CHILD"] + 1 type (only|nth|...) + 2 what (child|of-type) + 3 argument (even|odd|\d*|\d*n([+-]\d+)?|...) + 4 xn-component of xn+y argument ([+-]?\d*n|) + 5 sign of xn-component + 6 x of xn-component + 7 sign of y-component + 8 y of y-component + */ + match[1] = match[1].toLowerCase(); + + if ( match[1].slice( 0, 3 ) === "nth" ) { + // nth-* requires argument + if ( !match[3] ) { + Sizzle.error( match[0] ); + } + + // numeric x and y parameters for Expr.filter.CHILD + // remember that false/true cast respectively to 0/1 + match[4] = +( match[4] ? match[5] + (match[6] || 1) : 2 * ( match[3] === "even" || match[3] === "odd" ) ); + match[5] = +( ( match[7] + match[8] ) || match[3] === "odd" ); + + // other types prohibit arguments + } else if ( match[3] ) { + Sizzle.error( match[0] ); + } + + return match; + }, + + "PSEUDO": function( match ) { + var excess, + unquoted = !match[5] && match[2]; + + if ( matchExpr["CHILD"].test( match[0] ) ) { + return null; + } + + // Accept quoted arguments as-is + if ( match[3] && match[4] !== undefined ) { + match[2] = match[4]; + + // Strip excess characters from unquoted arguments + } else if ( unquoted && rpseudo.test( unquoted ) && + // Get excess from tokenize (recursively) + (excess = tokenize( unquoted, true )) && + // advance to the next closing parenthesis + (excess = unquoted.indexOf( ")", unquoted.length - excess ) - unquoted.length) ) { + + // excess is a negative index + match[0] = match[0].slice( 0, excess ); + match[2] = unquoted.slice( 0, excess ); + } + + // Return only captures needed by the pseudo filter method (type and argument) + return match.slice( 0, 3 ); + } + }, + + filter: { + + "TAG": function( nodeNameSelector ) { + var nodeName = nodeNameSelector.replace( runescape, funescape ).toLowerCase(); + return nodeNameSelector === "*" ? + function() { return true; } : + function( elem ) { + return elem.nodeName && elem.nodeName.toLowerCase() === nodeName; + }; + }, + + "CLASS": function( className ) { + var pattern = classCache[ className + " " ]; + + return pattern || + (pattern = new RegExp( "(^|" + whitespace + ")" + className + "(" + whitespace + "|$)" )) && + classCache( className, function( elem ) { + return pattern.test( typeof elem.className === "string" && elem.className || typeof elem.getAttribute !== strundefined && elem.getAttribute("class") || "" ); + }); + }, + + "ATTR": function( name, operator, check ) { + return function( elem ) { + var result = Sizzle.attr( elem, name ); + + if ( result == null ) { + return operator === "!="; + } + if ( !operator ) { + return true; + } + + result += ""; + + return operator === "=" ? result === check : + operator === "!=" ? result !== check : + operator === "^=" ? check && result.indexOf( check ) === 0 : + operator === "*=" ? check && result.indexOf( check ) > -1 : + operator === "$=" ? check && result.slice( -check.length ) === check : + operator === "~=" ? ( " " + result + " " ).indexOf( check ) > -1 : + operator === "|=" ? result === check || result.slice( 0, check.length + 1 ) === check + "-" : + false; + }; + }, + + "CHILD": function( type, what, argument, first, last ) { + var simple = type.slice( 0, 3 ) !== "nth", + forward = type.slice( -4 ) !== "last", + ofType = what === "of-type"; + + return first === 1 && last === 0 ? + + // Shortcut for :nth-*(n) + function( elem ) { + return !!elem.parentNode; + } : + + function( elem, context, xml ) { + var cache, outerCache, node, diff, nodeIndex, start, + dir = simple !== forward ? "nextSibling" : "previousSibling", + parent = elem.parentNode, + name = ofType && elem.nodeName.toLowerCase(), + useCache = !xml && !ofType; + + if ( parent ) { + + // :(first|last|only)-(child|of-type) + if ( simple ) { + while ( dir ) { + node = elem; + while ( (node = node[ dir ]) ) { + if ( ofType ? node.nodeName.toLowerCase() === name : node.nodeType === 1 ) { + return false; + } + } + // Reverse direction for :only-* (if we haven't yet done so) + start = dir = type === "only" && !start && "nextSibling"; + } + return true; + } + + start = [ forward ? parent.firstChild : parent.lastChild ]; + + // non-xml :nth-child(...) stores cache data on `parent` + if ( forward && useCache ) { + // Seek `elem` from a previously-cached index + outerCache = parent[ expando ] || (parent[ expando ] = {}); + cache = outerCache[ type ] || []; + nodeIndex = cache[0] === dirruns && cache[1]; + diff = cache[0] === dirruns && cache[2]; + node = nodeIndex && parent.childNodes[ nodeIndex ]; + + while ( (node = ++nodeIndex && node && node[ dir ] || + + // Fallback to seeking `elem` from the start + (diff = nodeIndex = 0) || start.pop()) ) { + + // When found, cache indexes on `parent` and break + if ( node.nodeType === 1 && ++diff && node === elem ) { + outerCache[ type ] = [ dirruns, nodeIndex, diff ]; + break; + } + } + + // Use previously-cached element index if available + } else if ( useCache && (cache = (elem[ expando ] || (elem[ expando ] = {}))[ type ]) && cache[0] === dirruns ) { + diff = cache[1]; + + // xml :nth-child(...) or :nth-last-child(...) or :nth(-last)?-of-type(...) + } else { + // Use the same loop as above to seek `elem` from the start + while ( (node = ++nodeIndex && node && node[ dir ] || + (diff = nodeIndex = 0) || start.pop()) ) { + + if ( ( ofType ? node.nodeName.toLowerCase() === name : node.nodeType === 1 ) && ++diff ) { + // Cache the index of each encountered element + if ( useCache ) { + (node[ expando ] || (node[ expando ] = {}))[ type ] = [ dirruns, diff ]; + } + + if ( node === elem ) { + break; + } + } + } + } + + // Incorporate the offset, then check against cycle size + diff -= last; + return diff === first || ( diff % first === 0 && diff / first >= 0 ); + } + }; + }, + + "PSEUDO": function( pseudo, argument ) { + // pseudo-class names are case-insensitive + // http://www.w3.org/TR/selectors/#pseudo-classes + // Prioritize by case sensitivity in case custom pseudos are added with uppercase letters + // Remember that setFilters inherits from pseudos + var args, + fn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] || + Sizzle.error( "unsupported pseudo: " + pseudo ); + + // The user may use createPseudo to indicate that + // arguments are needed to create the filter function + // just as Sizzle does + if ( fn[ expando ] ) { + return fn( argument ); + } + + // But maintain support for old signatures + if ( fn.length > 1 ) { + args = [ pseudo, pseudo, "", argument ]; + return Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ? + markFunction(function( seed, matches ) { + var idx, + matched = fn( seed, argument ), + i = matched.length; + while ( i-- ) { + idx = indexOf.call( seed, matched[i] ); + seed[ idx ] = !( matches[ idx ] = matched[i] ); + } + }) : + function( elem ) { + return fn( elem, 0, args ); + }; + } + + return fn; + } + }, + + pseudos: { + // Potentially complex pseudos + "not": markFunction(function( selector ) { + // Trim the selector passed to compile + // to avoid treating leading and trailing + // spaces as combinators + var input = [], + results = [], + matcher = compile( selector.replace( rtrim, "$1" ) ); + + return matcher[ expando ] ? + markFunction(function( seed, matches, context, xml ) { + var elem, + unmatched = matcher( seed, null, xml, [] ), + i = seed.length; + + // Match elements unmatched by `matcher` + while ( i-- ) { + if ( (elem = unmatched[i]) ) { + seed[i] = !(matches[i] = elem); + } + } + }) : + function( elem, context, xml ) { + input[0] = elem; + matcher( input, null, xml, results ); + return !results.pop(); + }; + }), + + "has": markFunction(function( selector ) { + return function( elem ) { + return Sizzle( selector, elem ).length > 0; + }; + }), + + "contains": markFunction(function( text ) { + return function( elem ) { + return ( elem.textContent || elem.innerText || getText( elem ) ).indexOf( text ) > -1; + }; + }), + + // "Whether an element is represented by a :lang() selector + // is based solely on the element's language value + // being equal to the identifier C, + // or beginning with the identifier C immediately followed by "-". + // The matching of C against the element's language value is performed case-insensitively. + // The identifier C does not have to be a valid language name." + // http://www.w3.org/TR/selectors/#lang-pseudo + "lang": markFunction( function( lang ) { + // lang value must be a valid identifier + if ( !ridentifier.test(lang || "") ) { + Sizzle.error( "unsupported lang: " + lang ); + } + lang = lang.replace( runescape, funescape ).toLowerCase(); + return function( elem ) { + var elemLang; + do { + if ( (elemLang = documentIsHTML ? + elem.lang : + elem.getAttribute("xml:lang") || elem.getAttribute("lang")) ) { + + elemLang = elemLang.toLowerCase(); + return elemLang === lang || elemLang.indexOf( lang + "-" ) === 0; + } + } while ( (elem = elem.parentNode) && elem.nodeType === 1 ); + return false; + }; + }), + + // Miscellaneous + "target": function( elem ) { + var hash = window.location && window.location.hash; + return hash && hash.slice( 1 ) === elem.id; + }, + + "root": function( elem ) { + return elem === docElem; + }, + + "focus": function( elem ) { + return elem === document.activeElement && (!document.hasFocus || document.hasFocus()) && !!(elem.type || elem.href || ~elem.tabIndex); + }, + + // Boolean properties + "enabled": function( elem ) { + return elem.disabled === false; + }, + + "disabled": function( elem ) { + return elem.disabled === true; + }, + + "checked": function( elem ) { + // In CSS3, :checked should return both checked and selected elements + // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked + var nodeName = elem.nodeName.toLowerCase(); + return (nodeName === "input" && !!elem.checked) || (nodeName === "option" && !!elem.selected); + }, + + "selected": function( elem ) { + // Accessing this property makes selected-by-default + // options in Safari work properly + if ( elem.parentNode ) { + elem.parentNode.selectedIndex; + } + + return elem.selected === true; + }, + + // Contents + "empty": function( elem ) { + // http://www.w3.org/TR/selectors/#empty-pseudo + // :empty is only affected by element nodes and content nodes(including text(3), cdata(4)), + // not comment, processing instructions, or others + // Thanks to Diego Perini for the nodeName shortcut + // Greater than "@" means alpha characters (specifically not starting with "#" or "?") + for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { + if ( elem.nodeName > "@" || elem.nodeType === 3 || elem.nodeType === 4 ) { + return false; + } + } + return true; + }, + + "parent": function( elem ) { + return !Expr.pseudos["empty"]( elem ); + }, + + // Element/input types + "header": function( elem ) { + return rheader.test( elem.nodeName ); + }, + + "input": function( elem ) { + return rinputs.test( elem.nodeName ); + }, + + "button": function( elem ) { + var name = elem.nodeName.toLowerCase(); + return name === "input" && elem.type === "button" || name === "button"; + }, + + "text": function( elem ) { + var attr; + // IE6 and 7 will map elem.type to 'text' for new HTML5 types (search, etc) + // use getAttribute instead to test this case + return elem.nodeName.toLowerCase() === "input" && + elem.type === "text" && + ( (attr = elem.getAttribute("type")) == null || attr.toLowerCase() === elem.type ); + }, + + // Position-in-collection + "first": createPositionalPseudo(function() { + return [ 0 ]; + }), + + "last": createPositionalPseudo(function( matchIndexes, length ) { + return [ length - 1 ]; + }), + + "eq": createPositionalPseudo(function( matchIndexes, length, argument ) { + return [ argument < 0 ? argument + length : argument ]; + }), + + "even": createPositionalPseudo(function( matchIndexes, length ) { + var i = 0; + for ( ; i < length; i += 2 ) { + matchIndexes.push( i ); + } + return matchIndexes; + }), + + "odd": createPositionalPseudo(function( matchIndexes, length ) { + var i = 1; + for ( ; i < length; i += 2 ) { + matchIndexes.push( i ); + } + return matchIndexes; + }), + + "lt": createPositionalPseudo(function( matchIndexes, length, argument ) { + var i = argument < 0 ? argument + length : argument; + for ( ; --i >= 0; ) { + matchIndexes.push( i ); + } + return matchIndexes; + }), + + "gt": createPositionalPseudo(function( matchIndexes, length, argument ) { + var i = argument < 0 ? argument + length : argument; + for ( ; ++i < length; ) { + matchIndexes.push( i ); + } + return matchIndexes; + }) + } +}; + +// Add button/input type pseudos +for ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) { + Expr.pseudos[ i ] = createInputPseudo( i ); +} +for ( i in { submit: true, reset: true } ) { + Expr.pseudos[ i ] = createButtonPseudo( i ); +} + +function tokenize( selector, parseOnly ) { + var matched, match, tokens, type, + soFar, groups, preFilters, + cached = tokenCache[ selector + " " ]; + + if ( cached ) { + return parseOnly ? 0 : cached.slice( 0 ); + } + + soFar = selector; + groups = []; + preFilters = Expr.preFilter; + + while ( soFar ) { + + // Comma and first run + if ( !matched || (match = rcomma.exec( soFar )) ) { + if ( match ) { + // Don't consume trailing commas as valid + soFar = soFar.slice( match[0].length ) || soFar; + } + groups.push( tokens = [] ); + } + + matched = false; + + // Combinators + if ( (match = rcombinators.exec( soFar )) ) { + matched = match.shift(); + tokens.push({ + value: matched, + // Cast descendant combinators to space + type: match[0].replace( rtrim, " " ) + }); + soFar = soFar.slice( matched.length ); + } + + // Filters + for ( type in Expr.filter ) { + if ( (match = matchExpr[ type ].exec( soFar )) && (!preFilters[ type ] || + (match = preFilters[ type ]( match ))) ) { + matched = match.shift(); + tokens.push({ + value: matched, + type: type, + matches: match + }); + soFar = soFar.slice( matched.length ); + } + } + + if ( !matched ) { + break; + } + } + + // Return the length of the invalid excess + // if we're just parsing + // Otherwise, throw an error or return tokens + return parseOnly ? + soFar.length : + soFar ? + Sizzle.error( selector ) : + // Cache the tokens + tokenCache( selector, groups ).slice( 0 ); +} + +function toSelector( tokens ) { + var i = 0, + len = tokens.length, + selector = ""; + for ( ; i < len; i++ ) { + selector += tokens[i].value; + } + return selector; +} + +function addCombinator( matcher, combinator, base ) { + var dir = combinator.dir, + checkNonElements = base && dir === "parentNode", + doneName = done++; + + return combinator.first ? + // Check against closest ancestor/preceding element + function( elem, context, xml ) { + while ( (elem = elem[ dir ]) ) { + if ( elem.nodeType === 1 || checkNonElements ) { + return matcher( elem, context, xml ); + } + } + } : + + // Check against all ancestor/preceding elements + function( elem, context, xml ) { + var data, cache, outerCache, + dirkey = dirruns + " " + doneName; + + // We can't set arbitrary data on XML nodes, so they don't benefit from dir caching + if ( xml ) { + while ( (elem = elem[ dir ]) ) { + if ( elem.nodeType === 1 || checkNonElements ) { + if ( matcher( elem, context, xml ) ) { + return true; + } + } + } + } else { + while ( (elem = elem[ dir ]) ) { + if ( elem.nodeType === 1 || checkNonElements ) { + outerCache = elem[ expando ] || (elem[ expando ] = {}); + if ( (cache = outerCache[ dir ]) && cache[0] === dirkey ) { + if ( (data = cache[1]) === true || data === cachedruns ) { + return data === true; + } + } else { + cache = outerCache[ dir ] = [ dirkey ]; + cache[1] = matcher( elem, context, xml ) || cachedruns; + if ( cache[1] === true ) { + return true; + } + } + } + } + } + }; +} + +function elementMatcher( matchers ) { + return matchers.length > 1 ? + function( elem, context, xml ) { + var i = matchers.length; + while ( i-- ) { + if ( !matchers[i]( elem, context, xml ) ) { + return false; + } + } + return true; + } : + matchers[0]; +} + +function condense( unmatched, map, filter, context, xml ) { + var elem, + newUnmatched = [], + i = 0, + len = unmatched.length, + mapped = map != null; + + for ( ; i < len; i++ ) { + if ( (elem = unmatched[i]) ) { + if ( !filter || filter( elem, context, xml ) ) { + newUnmatched.push( elem ); + if ( mapped ) { + map.push( i ); + } + } + } + } + + return newUnmatched; +} + +function setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) { + if ( postFilter && !postFilter[ expando ] ) { + postFilter = setMatcher( postFilter ); + } + if ( postFinder && !postFinder[ expando ] ) { + postFinder = setMatcher( postFinder, postSelector ); + } + return markFunction(function( seed, results, context, xml ) { + var temp, i, elem, + preMap = [], + postMap = [], + preexisting = results.length, + + // Get initial elements from seed or context + elems = seed || multipleContexts( selector || "*", context.nodeType ? [ context ] : context, [] ), + + // Prefilter to get matcher input, preserving a map for seed-results synchronization + matcherIn = preFilter && ( seed || !selector ) ? + condense( elems, preMap, preFilter, context, xml ) : + elems, + + matcherOut = matcher ? + // If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results, + postFinder || ( seed ? preFilter : preexisting || postFilter ) ? + + // ...intermediate processing is necessary + [] : + + // ...otherwise use results directly + results : + matcherIn; + + // Find primary matches + if ( matcher ) { + matcher( matcherIn, matcherOut, context, xml ); + } + + // Apply postFilter + if ( postFilter ) { + temp = condense( matcherOut, postMap ); + postFilter( temp, [], context, xml ); + + // Un-match failing elements by moving them back to matcherIn + i = temp.length; + while ( i-- ) { + if ( (elem = temp[i]) ) { + matcherOut[ postMap[i] ] = !(matcherIn[ postMap[i] ] = elem); + } + } + } + + if ( seed ) { + if ( postFinder || preFilter ) { + if ( postFinder ) { + // Get the final matcherOut by condensing this intermediate into postFinder contexts + temp = []; + i = matcherOut.length; + while ( i-- ) { + if ( (elem = matcherOut[i]) ) { + // Restore matcherIn since elem is not yet a final match + temp.push( (matcherIn[i] = elem) ); + } + } + postFinder( null, (matcherOut = []), temp, xml ); + } + + // Move matched elements from seed to results to keep them synchronized + i = matcherOut.length; + while ( i-- ) { + if ( (elem = matcherOut[i]) && + (temp = postFinder ? indexOf.call( seed, elem ) : preMap[i]) > -1 ) { + + seed[temp] = !(results[temp] = elem); + } + } + } + + // Add elements to results, through postFinder if defined + } else { + matcherOut = condense( + matcherOut === results ? + matcherOut.splice( preexisting, matcherOut.length ) : + matcherOut + ); + if ( postFinder ) { + postFinder( null, results, matcherOut, xml ); + } else { + push.apply( results, matcherOut ); + } + } + }); +} + +function matcherFromTokens( tokens ) { + var checkContext, matcher, j, + len = tokens.length, + leadingRelative = Expr.relative[ tokens[0].type ], + implicitRelative = leadingRelative || Expr.relative[" "], + i = leadingRelative ? 1 : 0, + + // The foundational matcher ensures that elements are reachable from top-level context(s) + matchContext = addCombinator( function( elem ) { + return elem === checkContext; + }, implicitRelative, true ), + matchAnyContext = addCombinator( function( elem ) { + return indexOf.call( checkContext, elem ) > -1; + }, implicitRelative, true ), + matchers = [ function( elem, context, xml ) { + return ( !leadingRelative && ( xml || context !== outermostContext ) ) || ( + (checkContext = context).nodeType ? + matchContext( elem, context, xml ) : + matchAnyContext( elem, context, xml ) ); + } ]; + + for ( ; i < len; i++ ) { + if ( (matcher = Expr.relative[ tokens[i].type ]) ) { + matchers = [ addCombinator(elementMatcher( matchers ), matcher) ]; + } else { + matcher = Expr.filter[ tokens[i].type ].apply( null, tokens[i].matches ); + + // Return special upon seeing a positional matcher + if ( matcher[ expando ] ) { + // Find the next relative operator (if any) for proper handling + j = ++i; + for ( ; j < len; j++ ) { + if ( Expr.relative[ tokens[j].type ] ) { + break; + } + } + return setMatcher( + i > 1 && elementMatcher( matchers ), + i > 1 && toSelector( + // If the preceding token was a descendant combinator, insert an implicit any-element `*` + tokens.slice( 0, i - 1 ).concat({ value: tokens[ i - 2 ].type === " " ? "*" : "" }) + ).replace( rtrim, "$1" ), + matcher, + i < j && matcherFromTokens( tokens.slice( i, j ) ), + j < len && matcherFromTokens( (tokens = tokens.slice( j )) ), + j < len && toSelector( tokens ) + ); + } + matchers.push( matcher ); + } + } + + return elementMatcher( matchers ); +} + +function matcherFromGroupMatchers( elementMatchers, setMatchers ) { + // A counter to specify which element is currently being matched + var matcherCachedRuns = 0, + bySet = setMatchers.length > 0, + byElement = elementMatchers.length > 0, + superMatcher = function( seed, context, xml, results, expandContext ) { + var elem, j, matcher, + setMatched = [], + matchedCount = 0, + i = "0", + unmatched = seed && [], + outermost = expandContext != null, + contextBackup = outermostContext, + // We must always have either seed elements or context + elems = seed || byElement && Expr.find["TAG"]( "*", expandContext && context.parentNode || context ), + // Use integer dirruns iff this is the outermost matcher + dirrunsUnique = (dirruns += contextBackup == null ? 1 : Math.random() || 0.1); + + if ( outermost ) { + outermostContext = context !== document && context; + cachedruns = matcherCachedRuns; + } + + // Add elements passing elementMatchers directly to results + // Keep `i` a string if there are no elements so `matchedCount` will be "00" below + for ( ; (elem = elems[i]) != null; i++ ) { + if ( byElement && elem ) { + j = 0; + while ( (matcher = elementMatchers[j++]) ) { + if ( matcher( elem, context, xml ) ) { + results.push( elem ); + break; + } + } + if ( outermost ) { + dirruns = dirrunsUnique; + cachedruns = ++matcherCachedRuns; + } + } + + // Track unmatched elements for set filters + if ( bySet ) { + // They will have gone through all possible matchers + if ( (elem = !matcher && elem) ) { + matchedCount--; + } + + // Lengthen the array for every element, matched or not + if ( seed ) { + unmatched.push( elem ); + } + } + } + + // Apply set filters to unmatched elements + matchedCount += i; + if ( bySet && i !== matchedCount ) { + j = 0; + while ( (matcher = setMatchers[j++]) ) { + matcher( unmatched, setMatched, context, xml ); + } + + if ( seed ) { + // Reintegrate element matches to eliminate the need for sorting + if ( matchedCount > 0 ) { + while ( i-- ) { + if ( !(unmatched[i] || setMatched[i]) ) { + setMatched[i] = pop.call( results ); + } + } + } + + // Discard index placeholder values to get only actual matches + setMatched = condense( setMatched ); + } + + // Add matches to results + push.apply( results, setMatched ); + + // Seedless set matches succeeding multiple successful matchers stipulate sorting + if ( outermost && !seed && setMatched.length > 0 && + ( matchedCount + setMatchers.length ) > 1 ) { + + Sizzle.uniqueSort( results ); + } + } + + // Override manipulation of globals by nested matchers + if ( outermost ) { + dirruns = dirrunsUnique; + outermostContext = contextBackup; + } + + return unmatched; + }; + + return bySet ? + markFunction( superMatcher ) : + superMatcher; +} + +compile = Sizzle.compile = function( selector, group /* Internal Use Only */ ) { + var i, + setMatchers = [], + elementMatchers = [], + cached = compilerCache[ selector + " " ]; + + if ( !cached ) { + // Generate a function of recursive functions that can be used to check each element + if ( !group ) { + group = tokenize( selector ); + } + i = group.length; + while ( i-- ) { + cached = matcherFromTokens( group[i] ); + if ( cached[ expando ] ) { + setMatchers.push( cached ); + } else { + elementMatchers.push( cached ); + } + } + + // Cache the compiled function + cached = compilerCache( selector, matcherFromGroupMatchers( elementMatchers, setMatchers ) ); + } + return cached; +}; + +function multipleContexts( selector, contexts, results ) { + var i = 0, + len = contexts.length; + for ( ; i < len; i++ ) { + Sizzle( selector, contexts[i], results ); + } + return results; +} + +function select( selector, context, results, seed ) { + var i, tokens, token, type, find, + match = tokenize( selector ); + + if ( !seed ) { + // Try to minimize operations if there is only one group + if ( match.length === 1 ) { + + // Take a shortcut and set the context if the root selector is an ID + tokens = match[0] = match[0].slice( 0 ); + if ( tokens.length > 2 && (token = tokens[0]).type === "ID" && + support.getById && context.nodeType === 9 && documentIsHTML && + Expr.relative[ tokens[1].type ] ) { + + context = ( Expr.find["ID"]( token.matches[0].replace(runescape, funescape), context ) || [] )[0]; + if ( !context ) { + return results; + } + selector = selector.slice( tokens.shift().value.length ); + } + + // Fetch a seed set for right-to-left matching + i = matchExpr["needsContext"].test( selector ) ? 0 : tokens.length; + while ( i-- ) { + token = tokens[i]; + + // Abort if we hit a combinator + if ( Expr.relative[ (type = token.type) ] ) { + break; + } + if ( (find = Expr.find[ type ]) ) { + // Search, expanding context for leading sibling combinators + if ( (seed = find( + token.matches[0].replace( runescape, funescape ), + rsibling.test( tokens[0].type ) && context.parentNode || context + )) ) { + + // If seed is empty or no tokens remain, we can return early + tokens.splice( i, 1 ); + selector = seed.length && toSelector( tokens ); + if ( !selector ) { + push.apply( results, seed ); + return results; + } + + break; + } + } + } + } + } + + // Compile and execute a filtering function + // Provide `match` to avoid retokenization if we modified the selector above + compile( selector, match )( + seed, + context, + !documentIsHTML, + results, + rsibling.test( selector ) + ); + return results; +} + +// Deprecated +Expr.pseudos["nth"] = Expr.pseudos["eq"]; + +// Easy API for creating new setFilters +function setFilters() {} +setFilters.prototype = Expr.filters = Expr.pseudos; +Expr.setFilters = new setFilters(); + +// One-time assignments + +// Sort stability +support.sortStable = expando.split("").sort( sortOrder ).join("") === expando; + +// Initialize against the default document +setDocument(); + +// Support: Chrome<<14 +// Always assume duplicates if they aren't passed to the comparison function +[0, 0].sort( sortOrder ); +support.detectDuplicates = hasDuplicate; + +jQuery.find = Sizzle; +jQuery.expr = Sizzle.selectors; +jQuery.expr[":"] = jQuery.expr.pseudos; +jQuery.unique = Sizzle.uniqueSort; +jQuery.text = Sizzle.getText; +jQuery.isXMLDoc = Sizzle.isXML; +jQuery.contains = Sizzle.contains; + + +})( window ); +// String to Object options format cache +var optionsCache = {}; + +// Convert String-formatted options into Object-formatted ones and store in cache +function createOptions( options ) { + var object = optionsCache[ options ] = {}; + jQuery.each( options.match( core_rnotwhite ) || [], function( _, flag ) { + object[ flag ] = true; + }); + return object; +} + +/* + * Create a callback list using the following parameters: + * + * options: an optional list of space-separated options that will change how + * the callback list behaves or a more traditional option object + * + * By default a callback list will act like an event callback list and can be + * "fired" multiple times. + * + * Possible options: + * + * once: will ensure the callback list can only be fired once (like a Deferred) + * + * memory: will keep track of previous values and will call any callback added + * after the list has been fired right away with the latest "memorized" + * values (like a Deferred) + * + * unique: will ensure a callback can only be added once (no duplicate in the list) + * + * stopOnFalse: interrupt callings when a callback returns false + * + */ +jQuery.Callbacks = function( options ) { + + // Convert options from String-formatted to Object-formatted if needed + // (we check in cache first) + options = typeof options === "string" ? + ( optionsCache[ options ] || createOptions( options ) ) : + jQuery.extend( {}, options ); + + var // Flag to know if list is currently firing + firing, + // Last fire value (for non-forgettable lists) + memory, + // Flag to know if list was already fired + fired, + // End of the loop when firing + firingLength, + // Index of currently firing callback (modified by remove if needed) + firingIndex, + // First callback to fire (used internally by add and fireWith) + firingStart, + // Actual callback list + list = [], + // Stack of fire calls for repeatable lists + stack = !options.once && [], + // Fire callbacks + fire = function( data ) { + memory = options.memory && data; + fired = true; + firingIndex = firingStart || 0; + firingStart = 0; + firingLength = list.length; + firing = true; + for ( ; list && firingIndex < firingLength; firingIndex++ ) { + if ( list[ firingIndex ].apply( data[ 0 ], data[ 1 ] ) === false && options.stopOnFalse ) { + memory = false; // To prevent further calls using add + break; + } + } + firing = false; + if ( list ) { + if ( stack ) { + if ( stack.length ) { + fire( stack.shift() ); + } + } else if ( memory ) { + list = []; + } else { + self.disable(); + } + } + }, + // Actual Callbacks object + self = { + // Add a callback or a collection of callbacks to the list + add: function() { + if ( list ) { + // First, we save the current length + var start = list.length; + (function add( args ) { + jQuery.each( args, function( _, arg ) { + var type = jQuery.type( arg ); + if ( type === "function" ) { + if ( !options.unique || !self.has( arg ) ) { + list.push( arg ); + } + } else if ( arg && arg.length && type !== "string" ) { + // Inspect recursively + add( arg ); + } + }); + })( arguments ); + // Do we need to add the callbacks to the + // current firing batch? + if ( firing ) { + firingLength = list.length; + // With memory, if we're not firing then + // we should call right away + } else if ( memory ) { + firingStart = start; + fire( memory ); + } + } + return this; + }, + // Remove a callback from the list + remove: function() { + if ( list ) { + jQuery.each( arguments, function( _, arg ) { + var index; + while( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) { + list.splice( index, 1 ); + // Handle firing indexes + if ( firing ) { + if ( index <= firingLength ) { + firingLength--; + } + if ( index <= firingIndex ) { + firingIndex--; + } + } + } + }); + } + return this; + }, + // Check if a given callback is in the list. + // If no argument is given, return whether or not list has callbacks attached. + has: function( fn ) { + return fn ? jQuery.inArray( fn, list ) > -1 : !!( list && list.length ); + }, + // Remove all callbacks from the list + empty: function() { + list = []; + firingLength = 0; + return this; + }, + // Have the list do nothing anymore + disable: function() { + list = stack = memory = undefined; + return this; + }, + // Is it disabled? + disabled: function() { + return !list; + }, + // Lock the list in its current state + lock: function() { + stack = undefined; + if ( !memory ) { + self.disable(); + } + return this; + }, + // Is it locked? + locked: function() { + return !stack; + }, + // Call all callbacks with the given context and arguments + fireWith: function( context, args ) { + args = args || []; + args = [ context, args.slice ? args.slice() : args ]; + if ( list && ( !fired || stack ) ) { + if ( firing ) { + stack.push( args ); + } else { + fire( args ); + } + } + return this; + }, + // Call all the callbacks with the given arguments + fire: function() { + self.fireWith( this, arguments ); + return this; + }, + // To know if the callbacks have already been called at least once + fired: function() { + return !!fired; + } + }; + + return self; +}; +jQuery.extend({ + + Deferred: function( func ) { + var tuples = [ + // action, add listener, listener list, final state + [ "resolve", "done", jQuery.Callbacks("once memory"), "resolved" ], + [ "reject", "fail", jQuery.Callbacks("once memory"), "rejected" ], + [ "notify", "progress", jQuery.Callbacks("memory") ] + ], + state = "pending", + promise = { + state: function() { + return state; + }, + always: function() { + deferred.done( arguments ).fail( arguments ); + return this; + }, + then: function( /* fnDone, fnFail, fnProgress */ ) { + var fns = arguments; + return jQuery.Deferred(function( newDefer ) { + jQuery.each( tuples, function( i, tuple ) { + var action = tuple[ 0 ], + fn = jQuery.isFunction( fns[ i ] ) && fns[ i ]; + // deferred[ done | fail | progress ] for forwarding actions to newDefer + deferred[ tuple[1] ](function() { + var returned = fn && fn.apply( this, arguments ); + if ( returned && jQuery.isFunction( returned.promise ) ) { + returned.promise() + .done( newDefer.resolve ) + .fail( newDefer.reject ) + .progress( newDefer.notify ); + } else { + newDefer[ action + "With" ]( this === promise ? newDefer.promise() : this, fn ? [ returned ] : arguments ); + } + }); + }); + fns = null; + }).promise(); + }, + // Get a promise for this deferred + // If obj is provided, the promise aspect is added to the object + promise: function( obj ) { + return obj != null ? jQuery.extend( obj, promise ) : promise; + } + }, + deferred = {}; + + // Keep pipe for back-compat + promise.pipe = promise.then; + + // Add list-specific methods + jQuery.each( tuples, function( i, tuple ) { + var list = tuple[ 2 ], + stateString = tuple[ 3 ]; + + // promise[ done | fail | progress ] = list.add + promise[ tuple[1] ] = list.add; + + // Handle state + if ( stateString ) { + list.add(function() { + // state = [ resolved | rejected ] + state = stateString; + + // [ reject_list | resolve_list ].disable; progress_list.lock + }, tuples[ i ^ 1 ][ 2 ].disable, tuples[ 2 ][ 2 ].lock ); + } + + // deferred[ resolve | reject | notify ] + deferred[ tuple[0] ] = function() { + deferred[ tuple[0] + "With" ]( this === deferred ? promise : this, arguments ); + return this; + }; + deferred[ tuple[0] + "With" ] = list.fireWith; + }); + + // Make the deferred a promise + promise.promise( deferred ); + + // Call given func if any + if ( func ) { + func.call( deferred, deferred ); + } + + // All done! + return deferred; + }, + + // Deferred helper + when: function( subordinate /* , ..., subordinateN */ ) { + var i = 0, + resolveValues = core_slice.call( arguments ), + length = resolveValues.length, + + // the count of uncompleted subordinates + remaining = length !== 1 || ( subordinate && jQuery.isFunction( subordinate.promise ) ) ? length : 0, + + // the master Deferred. If resolveValues consist of only a single Deferred, just use that. + deferred = remaining === 1 ? subordinate : jQuery.Deferred(), + + // Update function for both resolve and progress values + updateFunc = function( i, contexts, values ) { + return function( value ) { + contexts[ i ] = this; + values[ i ] = arguments.length > 1 ? core_slice.call( arguments ) : value; + if( values === progressValues ) { + deferred.notifyWith( contexts, values ); + } else if ( !( --remaining ) ) { + deferred.resolveWith( contexts, values ); + } + }; + }, + + progressValues, progressContexts, resolveContexts; + + // add listeners to Deferred subordinates; treat others as resolved + if ( length > 1 ) { + progressValues = new Array( length ); + progressContexts = new Array( length ); + resolveContexts = new Array( length ); + for ( ; i < length; i++ ) { + if ( resolveValues[ i ] && jQuery.isFunction( resolveValues[ i ].promise ) ) { + resolveValues[ i ].promise() + .done( updateFunc( i, resolveContexts, resolveValues ) ) + .fail( deferred.reject ) + .progress( updateFunc( i, progressContexts, progressValues ) ); + } else { + --remaining; + } + } + } + + // if we're not waiting on anything, resolve the master + if ( !remaining ) { + deferred.resolveWith( resolveContexts, resolveValues ); + } + + return deferred.promise(); + } +}); +jQuery.support = (function( support ) { + + var all, a, input, select, fragment, opt, eventName, isSupported, i, + div = document.createElement("div"); + + // Setup + div.setAttribute( "className", "t" ); + div.innerHTML = "
a"; + + // Finish early in limited (non-browser) environments + all = div.getElementsByTagName("*") || []; + a = div.getElementsByTagName("a")[ 0 ]; + if ( !a || !a.style || !all.length ) { + return support; + } + + // First batch of tests + select = document.createElement("select"); + opt = select.appendChild( document.createElement("option") ); + input = div.getElementsByTagName("input")[ 0 ]; + + a.style.cssText = "top:1px;float:left;opacity:.5"; + + // Test setAttribute on camelCase class. If it works, we need attrFixes when doing get/setAttribute (ie6/7) + support.getSetAttribute = div.className !== "t"; + + // IE strips leading whitespace when .innerHTML is used + support.leadingWhitespace = div.firstChild.nodeType === 3; + + // Make sure that tbody elements aren't automatically inserted + // IE will insert them into empty tables + support.tbody = !div.getElementsByTagName("tbody").length; + + // Make sure that link elements get serialized correctly by innerHTML + // This requires a wrapper element in IE + support.htmlSerialize = !!div.getElementsByTagName("link").length; + + // Get the style information from getAttribute + // (IE uses .cssText instead) + support.style = /top/.test( a.getAttribute("style") ); + + // Make sure that URLs aren't manipulated + // (IE normalizes it by default) + support.hrefNormalized = a.getAttribute("href") === "/a"; + + // Make sure that element opacity exists + // (IE uses filter instead) + // Use a regex to work around a WebKit issue. See #5145 + support.opacity = /^0.5/.test( a.style.opacity ); + + // Verify style float existence + // (IE uses styleFloat instead of cssFloat) + support.cssFloat = !!a.style.cssFloat; + + // Check the default checkbox/radio value ("" on WebKit; "on" elsewhere) + support.checkOn = !!input.value; + + // Make sure that a selected-by-default option has a working selected property. + // (WebKit defaults to false instead of true, IE too, if it's in an optgroup) + support.optSelected = opt.selected; + + // Tests for enctype support on a form (#6743) + support.enctype = !!document.createElement("form").enctype; + + // Makes sure cloning an html5 element does not cause problems + // Where outerHTML is undefined, this still works + support.html5Clone = document.createElement("nav").cloneNode( true ).outerHTML !== "<:nav>"; + + // Will be defined later + support.inlineBlockNeedsLayout = false; + support.shrinkWrapBlocks = false; + support.pixelPosition = false; + support.deleteExpando = true; + support.noCloneEvent = true; + support.reliableMarginRight = true; + support.boxSizingReliable = true; + + // Make sure checked status is properly cloned + input.checked = true; + support.noCloneChecked = input.cloneNode( true ).checked; + + // Make sure that the options inside disabled selects aren't marked as disabled + // (WebKit marks them as disabled) + select.disabled = true; + support.optDisabled = !opt.disabled; + + // Support: IE<9 + try { + delete div.test; + } catch( e ) { + support.deleteExpando = false; + } + + // Check if we can trust getAttribute("value") + input = document.createElement("input"); + input.setAttribute( "value", "" ); + support.input = input.getAttribute( "value" ) === ""; + + // Check if an input maintains its value after becoming a radio + input.value = "t"; + input.setAttribute( "type", "radio" ); + support.radioValue = input.value === "t"; + + // #11217 - WebKit loses check when the name is after the checked attribute + input.setAttribute( "checked", "t" ); + input.setAttribute( "name", "t" ); + + fragment = document.createDocumentFragment(); + fragment.appendChild( input ); + + // Check if a disconnected checkbox will retain its checked + // value of true after appended to the DOM (IE6/7) + support.appendChecked = input.checked; + + // WebKit doesn't clone checked state correctly in fragments + support.checkClone = fragment.cloneNode( true ).cloneNode( true ).lastChild.checked; + + // Support: IE<9 + // Opera does not clone events (and typeof div.attachEvent === undefined). + // IE9-10 clones events bound via attachEvent, but they don't trigger with .click() + if ( div.attachEvent ) { + div.attachEvent( "onclick", function() { + support.noCloneEvent = false; + }); + + div.cloneNode( true ).click(); + } + + // Support: IE<9 (lack submit/change bubble), Firefox 17+ (lack focusin event) + // Beware of CSP restrictions (https://developer.mozilla.org/en/Security/CSP) + for ( i in { submit: true, change: true, focusin: true }) { + div.setAttribute( eventName = "on" + i, "t" ); + + support[ i + "Bubbles" ] = eventName in window || div.attributes[ eventName ].expando === false; + } + + div.style.backgroundClip = "content-box"; + div.cloneNode( true ).style.backgroundClip = ""; + support.clearCloneStyle = div.style.backgroundClip === "content-box"; + + // Support: IE<9 + // Iteration over object's inherited properties before its own. + for ( i in jQuery( support ) ) { + break; + } + support.ownLast = i !== "0"; + + // Run tests that need a body at doc ready + jQuery(function() { + var container, marginDiv, tds, + divReset = "padding:0;margin:0;border:0;display:block;box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;", + body = document.getElementsByTagName("body")[0]; + + if ( !body ) { + // Return for frameset docs that don't have a body + return; + } + + container = document.createElement("div"); + container.style.cssText = "border:0;width:0;height:0;position:absolute;top:0;left:-9999px;margin-top:1px"; + + body.appendChild( container ).appendChild( div ); + + // Support: IE8 + // Check if table cells still have offsetWidth/Height when they are set + // to display:none and there are still other visible table cells in a + // table row; if so, offsetWidth/Height are not reliable for use when + // determining if an element has been hidden directly using + // display:none (it is still safe to use offsets if a parent element is + // hidden; don safety goggles and see bug #4512 for more information). + div.innerHTML = "
t
"; + tds = div.getElementsByTagName("td"); + tds[ 0 ].style.cssText = "padding:0;margin:0;border:0;display:none"; + isSupported = ( tds[ 0 ].offsetHeight === 0 ); + + tds[ 0 ].style.display = ""; + tds[ 1 ].style.display = "none"; + + // Support: IE8 + // Check if empty table cells still have offsetWidth/Height + support.reliableHiddenOffsets = isSupported && ( tds[ 0 ].offsetHeight === 0 ); + + // Check box-sizing and margin behavior. + div.innerHTML = ""; + div.style.cssText = "box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding:1px;border:1px;display:block;width:4px;margin-top:1%;position:absolute;top:1%;"; + + // Workaround failing boxSizing test due to offsetWidth returning wrong value + // with some non-1 values of body zoom, ticket #13543 + jQuery.swap( body, body.style.zoom != null ? { zoom: 1 } : {}, function() { + support.boxSizing = div.offsetWidth === 4; + }); + + // Use window.getComputedStyle because jsdom on node.js will break without it. + if ( window.getComputedStyle ) { + support.pixelPosition = ( window.getComputedStyle( div, null ) || {} ).top !== "1%"; + support.boxSizingReliable = ( window.getComputedStyle( div, null ) || { width: "4px" } ).width === "4px"; + + // Check if div with explicit width and no margin-right incorrectly + // gets computed margin-right based on width of container. (#3333) + // Fails in WebKit before Feb 2011 nightlies + // WebKit Bug 13343 - getComputedStyle returns wrong value for margin-right + marginDiv = div.appendChild( document.createElement("div") ); + marginDiv.style.cssText = div.style.cssText = divReset; + marginDiv.style.marginRight = marginDiv.style.width = "0"; + div.style.width = "1px"; + + support.reliableMarginRight = + !parseFloat( ( window.getComputedStyle( marginDiv, null ) || {} ).marginRight ); + } + + if ( typeof div.style.zoom !== core_strundefined ) { + // Support: IE<8 + // Check if natively block-level elements act like inline-block + // elements when setting their display to 'inline' and giving + // them layout + div.innerHTML = ""; + div.style.cssText = divReset + "width:1px;padding:1px;display:inline;zoom:1"; + support.inlineBlockNeedsLayout = ( div.offsetWidth === 3 ); + + // Support: IE6 + // Check if elements with layout shrink-wrap their children + div.style.display = "block"; + div.innerHTML = "
"; + div.firstChild.style.width = "5px"; + support.shrinkWrapBlocks = ( div.offsetWidth !== 3 ); + + if ( support.inlineBlockNeedsLayout ) { + // Prevent IE 6 from affecting layout for positioned elements #11048 + // Prevent IE from shrinking the body in IE 7 mode #12869 + // Support: IE<8 + body.style.zoom = 1; + } + } + + body.removeChild( container ); + + // Null elements to avoid leaks in IE + container = div = tds = marginDiv = null; + }); + + // Null elements to avoid leaks in IE + all = select = fragment = opt = a = input = null; + + return support; +})({}); + +var rbrace = /(?:\{[\s\S]*\}|\[[\s\S]*\])$/, + rmultiDash = /([A-Z])/g; + +function internalData( elem, name, data, pvt /* Internal Use Only */ ){ + if ( !jQuery.acceptData( elem ) ) { + return; + } + + var ret, thisCache, + internalKey = jQuery.expando, + + // We have to handle DOM nodes and JS objects differently because IE6-7 + // can't GC object references properly across the DOM-JS boundary + isNode = elem.nodeType, + + // Only DOM nodes need the global jQuery cache; JS object data is + // attached directly to the object so GC can occur automatically + cache = isNode ? jQuery.cache : elem, + + // Only defining an ID for JS objects if its cache already exists allows + // the code to shortcut on the same path as a DOM node with no cache + id = isNode ? elem[ internalKey ] : elem[ internalKey ] && internalKey; + + // Avoid doing any more work than we need to when trying to get data on an + // object that has no data at all + if ( (!id || !cache[id] || (!pvt && !cache[id].data)) && data === undefined && typeof name === "string" ) { + return; + } + + if ( !id ) { + // Only DOM nodes need a new unique ID for each element since their data + // ends up in the global cache + if ( isNode ) { + id = elem[ internalKey ] = core_deletedIds.pop() || jQuery.guid++; + } else { + id = internalKey; + } + } + + if ( !cache[ id ] ) { + // Avoid exposing jQuery metadata on plain JS objects when the object + // is serialized using JSON.stringify + cache[ id ] = isNode ? {} : { toJSON: jQuery.noop }; + } + + // An object can be passed to jQuery.data instead of a key/value pair; this gets + // shallow copied over onto the existing cache + if ( typeof name === "object" || typeof name === "function" ) { + if ( pvt ) { + cache[ id ] = jQuery.extend( cache[ id ], name ); + } else { + cache[ id ].data = jQuery.extend( cache[ id ].data, name ); + } + } + + thisCache = cache[ id ]; + + // jQuery data() is stored in a separate object inside the object's internal data + // cache in order to avoid key collisions between internal data and user-defined + // data. + if ( !pvt ) { + if ( !thisCache.data ) { + thisCache.data = {}; + } + + thisCache = thisCache.data; + } + + if ( data !== undefined ) { + thisCache[ jQuery.camelCase( name ) ] = data; + } + + // Check for both converted-to-camel and non-converted data property names + // If a data property was specified + if ( typeof name === "string" ) { + + // First Try to find as-is property data + ret = thisCache[ name ]; + + // Test for null|undefined property data + if ( ret == null ) { + + // Try to find the camelCased property + ret = thisCache[ jQuery.camelCase( name ) ]; + } + } else { + ret = thisCache; + } + + return ret; +} + +function internalRemoveData( elem, name, pvt ) { + if ( !jQuery.acceptData( elem ) ) { + return; + } + + var thisCache, i, + isNode = elem.nodeType, + + // See jQuery.data for more information + cache = isNode ? jQuery.cache : elem, + id = isNode ? elem[ jQuery.expando ] : jQuery.expando; + + // If there is already no cache entry for this object, there is no + // purpose in continuing + if ( !cache[ id ] ) { + return; + } + + if ( name ) { + + thisCache = pvt ? cache[ id ] : cache[ id ].data; + + if ( thisCache ) { + + // Support array or space separated string names for data keys + if ( !jQuery.isArray( name ) ) { + + // try the string as a key before any manipulation + if ( name in thisCache ) { + name = [ name ]; + } else { + + // split the camel cased version by spaces unless a key with the spaces exists + name = jQuery.camelCase( name ); + if ( name in thisCache ) { + name = [ name ]; + } else { + name = name.split(" "); + } + } + } else { + // If "name" is an array of keys... + // When data is initially created, via ("key", "val") signature, + // keys will be converted to camelCase. + // Since there is no way to tell _how_ a key was added, remove + // both plain key and camelCase key. #12786 + // This will only penalize the array argument path. + name = name.concat( jQuery.map( name, jQuery.camelCase ) ); + } + + i = name.length; + while ( i-- ) { + delete thisCache[ name[i] ]; + } + + // If there is no data left in the cache, we want to continue + // and let the cache object itself get destroyed + if ( pvt ? !isEmptyDataObject(thisCache) : !jQuery.isEmptyObject(thisCache) ) { + return; + } + } + } + + // See jQuery.data for more information + if ( !pvt ) { + delete cache[ id ].data; + + // Don't destroy the parent cache unless the internal data object + // had been the only thing left in it + if ( !isEmptyDataObject( cache[ id ] ) ) { + return; + } + } + + // Destroy the cache + if ( isNode ) { + jQuery.cleanData( [ elem ], true ); + + // Use delete when supported for expandos or `cache` is not a window per isWindow (#10080) + /* jshint eqeqeq: false */ + } else if ( jQuery.support.deleteExpando || cache != cache.window ) { + /* jshint eqeqeq: true */ + delete cache[ id ]; + + // When all else fails, null + } else { + cache[ id ] = null; + } +} + +jQuery.extend({ + cache: {}, + + // The following elements throw uncatchable exceptions if you + // attempt to add expando properties to them. + noData: { + "applet": true, + "embed": true, + // Ban all objects except for Flash (which handle expandos) + "object": "clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" + }, + + hasData: function( elem ) { + elem = elem.nodeType ? jQuery.cache[ elem[jQuery.expando] ] : elem[ jQuery.expando ]; + return !!elem && !isEmptyDataObject( elem ); + }, + + data: function( elem, name, data ) { + return internalData( elem, name, data ); + }, + + removeData: function( elem, name ) { + return internalRemoveData( elem, name ); + }, + + // For internal use only. + _data: function( elem, name, data ) { + return internalData( elem, name, data, true ); + }, + + _removeData: function( elem, name ) { + return internalRemoveData( elem, name, true ); + }, + + // A method for determining if a DOM node can handle the data expando + acceptData: function( elem ) { + // Do not set data on non-element because it will not be cleared (#8335). + if ( elem.nodeType && elem.nodeType !== 1 && elem.nodeType !== 9 ) { + return false; + } + + var noData = elem.nodeName && jQuery.noData[ elem.nodeName.toLowerCase() ]; + + // nodes accept data unless otherwise specified; rejection can be conditional + return !noData || noData !== true && elem.getAttribute("classid") === noData; + } +}); + +jQuery.fn.extend({ + data: function( key, value ) { + var attrs, name, + data = null, + i = 0, + elem = this[0]; + + // Special expections of .data basically thwart jQuery.access, + // so implement the relevant behavior ourselves + + // Gets all values + if ( key === undefined ) { + if ( this.length ) { + data = jQuery.data( elem ); + + if ( elem.nodeType === 1 && !jQuery._data( elem, "parsedAttrs" ) ) { + attrs = elem.attributes; + for ( ; i < attrs.length; i++ ) { + name = attrs[i].name; + + if ( name.indexOf("data-") === 0 ) { + name = jQuery.camelCase( name.slice(5) ); + + dataAttr( elem, name, data[ name ] ); + } + } + jQuery._data( elem, "parsedAttrs", true ); + } + } + + return data; + } + + // Sets multiple values + if ( typeof key === "object" ) { + return this.each(function() { + jQuery.data( this, key ); + }); + } + + return arguments.length > 1 ? + + // Sets one value + this.each(function() { + jQuery.data( this, key, value ); + }) : + + // Gets one value + // Try to fetch any internally stored data first + elem ? dataAttr( elem, key, jQuery.data( elem, key ) ) : null; + }, + + removeData: function( key ) { + return this.each(function() { + jQuery.removeData( this, key ); + }); + } +}); + +function dataAttr( elem, key, data ) { + // If nothing was found internally, try to fetch any + // data from the HTML5 data-* attribute + if ( data === undefined && elem.nodeType === 1 ) { + + var name = "data-" + key.replace( rmultiDash, "-$1" ).toLowerCase(); + + data = elem.getAttribute( name ); + + if ( typeof data === "string" ) { + try { + data = data === "true" ? true : + data === "false" ? false : + data === "null" ? null : + // Only convert to a number if it doesn't change the string + +data + "" === data ? +data : + rbrace.test( data ) ? jQuery.parseJSON( data ) : + data; + } catch( e ) {} + + // Make sure we set the data so it isn't changed later + jQuery.data( elem, key, data ); + + } else { + data = undefined; + } + } + + return data; +} + +// checks a cache object for emptiness +function isEmptyDataObject( obj ) { + var name; + for ( name in obj ) { + + // if the public data object is empty, the private is still empty + if ( name === "data" && jQuery.isEmptyObject( obj[name] ) ) { + continue; + } + if ( name !== "toJSON" ) { + return false; + } + } + + return true; +} +jQuery.extend({ + queue: function( elem, type, data ) { + var queue; + + if ( elem ) { + type = ( type || "fx" ) + "queue"; + queue = jQuery._data( elem, type ); + + // Speed up dequeue by getting out quickly if this is just a lookup + if ( data ) { + if ( !queue || jQuery.isArray(data) ) { + queue = jQuery._data( elem, type, jQuery.makeArray(data) ); + } else { + queue.push( data ); + } + } + return queue || []; + } + }, + + dequeue: function( elem, type ) { + type = type || "fx"; + + var queue = jQuery.queue( elem, type ), + startLength = queue.length, + fn = queue.shift(), + hooks = jQuery._queueHooks( elem, type ), + next = function() { + jQuery.dequeue( elem, type ); + }; + + // If the fx queue is dequeued, always remove the progress sentinel + if ( fn === "inprogress" ) { + fn = queue.shift(); + startLength--; + } + + if ( fn ) { + + // Add a progress sentinel to prevent the fx queue from being + // automatically dequeued + if ( type === "fx" ) { + queue.unshift( "inprogress" ); + } + + // clear up the last queue stop function + delete hooks.stop; + fn.call( elem, next, hooks ); + } + + if ( !startLength && hooks ) { + hooks.empty.fire(); + } + }, + + // not intended for public consumption - generates a queueHooks object, or returns the current one + _queueHooks: function( elem, type ) { + var key = type + "queueHooks"; + return jQuery._data( elem, key ) || jQuery._data( elem, key, { + empty: jQuery.Callbacks("once memory").add(function() { + jQuery._removeData( elem, type + "queue" ); + jQuery._removeData( elem, key ); + }) + }); + } +}); + +jQuery.fn.extend({ + queue: function( type, data ) { + var setter = 2; + + if ( typeof type !== "string" ) { + data = type; + type = "fx"; + setter--; + } + + if ( arguments.length < setter ) { + return jQuery.queue( this[0], type ); + } + + return data === undefined ? + this : + this.each(function() { + var queue = jQuery.queue( this, type, data ); + + // ensure a hooks for this queue + jQuery._queueHooks( this, type ); + + if ( type === "fx" && queue[0] !== "inprogress" ) { + jQuery.dequeue( this, type ); + } + }); + }, + dequeue: function( type ) { + return this.each(function() { + jQuery.dequeue( this, type ); + }); + }, + // Based off of the plugin by Clint Helfers, with permission. + // http://blindsignals.com/index.php/2009/07/jquery-delay/ + delay: function( time, type ) { + time = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time; + type = type || "fx"; + + return this.queue( type, function( next, hooks ) { + var timeout = setTimeout( next, time ); + hooks.stop = function() { + clearTimeout( timeout ); + }; + }); + }, + clearQueue: function( type ) { + return this.queue( type || "fx", [] ); + }, + // Get a promise resolved when queues of a certain type + // are emptied (fx is the type by default) + promise: function( type, obj ) { + var tmp, + count = 1, + defer = jQuery.Deferred(), + elements = this, + i = this.length, + resolve = function() { + if ( !( --count ) ) { + defer.resolveWith( elements, [ elements ] ); + } + }; + + if ( typeof type !== "string" ) { + obj = type; + type = undefined; + } + type = type || "fx"; + + while( i-- ) { + tmp = jQuery._data( elements[ i ], type + "queueHooks" ); + if ( tmp && tmp.empty ) { + count++; + tmp.empty.add( resolve ); + } + } + resolve(); + return defer.promise( obj ); + } +}); +var nodeHook, boolHook, + rclass = /[\t\r\n\f]/g, + rreturn = /\r/g, + rfocusable = /^(?:input|select|textarea|button|object)$/i, + rclickable = /^(?:a|area)$/i, + ruseDefault = /^(?:checked|selected)$/i, + getSetAttribute = jQuery.support.getSetAttribute, + getSetInput = jQuery.support.input; + +jQuery.fn.extend({ + attr: function( name, value ) { + return jQuery.access( this, jQuery.attr, name, value, arguments.length > 1 ); + }, + + removeAttr: function( name ) { + return this.each(function() { + jQuery.removeAttr( this, name ); + }); + }, + + prop: function( name, value ) { + return jQuery.access( this, jQuery.prop, name, value, arguments.length > 1 ); + }, + + removeProp: function( name ) { + name = jQuery.propFix[ name ] || name; + return this.each(function() { + // try/catch handles cases where IE balks (such as removing a property on window) + try { + this[ name ] = undefined; + delete this[ name ]; + } catch( e ) {} + }); + }, + + addClass: function( value ) { + var classes, elem, cur, clazz, j, + i = 0, + len = this.length, + proceed = typeof value === "string" && value; + + if ( jQuery.isFunction( value ) ) { + return this.each(function( j ) { + jQuery( this ).addClass( value.call( this, j, this.className ) ); + }); + } + + if ( proceed ) { + // The disjunction here is for better compressibility (see removeClass) + classes = ( value || "" ).match( core_rnotwhite ) || []; + + for ( ; i < len; i++ ) { + elem = this[ i ]; + cur = elem.nodeType === 1 && ( elem.className ? + ( " " + elem.className + " " ).replace( rclass, " " ) : + " " + ); + + if ( cur ) { + j = 0; + while ( (clazz = classes[j++]) ) { + if ( cur.indexOf( " " + clazz + " " ) < 0 ) { + cur += clazz + " "; + } + } + elem.className = jQuery.trim( cur ); + + } + } + } + + return this; + }, + + removeClass: function( value ) { + var classes, elem, cur, clazz, j, + i = 0, + len = this.length, + proceed = arguments.length === 0 || typeof value === "string" && value; + + if ( jQuery.isFunction( value ) ) { + return this.each(function( j ) { + jQuery( this ).removeClass( value.call( this, j, this.className ) ); + }); + } + if ( proceed ) { + classes = ( value || "" ).match( core_rnotwhite ) || []; + + for ( ; i < len; i++ ) { + elem = this[ i ]; + // This expression is here for better compressibility (see addClass) + cur = elem.nodeType === 1 && ( elem.className ? + ( " " + elem.className + " " ).replace( rclass, " " ) : + "" + ); + + if ( cur ) { + j = 0; + while ( (clazz = classes[j++]) ) { + // Remove *all* instances + while ( cur.indexOf( " " + clazz + " " ) >= 0 ) { + cur = cur.replace( " " + clazz + " ", " " ); + } + } + elem.className = value ? jQuery.trim( cur ) : ""; + } + } + } + + return this; + }, + + toggleClass: function( value, stateVal ) { + var type = typeof value, + isBool = typeof stateVal === "boolean"; + + if ( jQuery.isFunction( value ) ) { + return this.each(function( i ) { + jQuery( this ).toggleClass( value.call(this, i, this.className, stateVal), stateVal ); + }); + } + + return this.each(function() { + if ( type === "string" ) { + // toggle individual class names + var className, + i = 0, + self = jQuery( this ), + state = stateVal, + classNames = value.match( core_rnotwhite ) || []; + + while ( (className = classNames[ i++ ]) ) { + // check each className given, space separated list + state = isBool ? state : !self.hasClass( className ); + self[ state ? "addClass" : "removeClass" ]( className ); + } + + // Toggle whole class name + } else if ( type === core_strundefined || type === "boolean" ) { + if ( this.className ) { + // store className if set + jQuery._data( this, "__className__", this.className ); + } + + // If the element has a class name or if we're passed "false", + // then remove the whole classname (if there was one, the above saved it). + // Otherwise bring back whatever was previously saved (if anything), + // falling back to the empty string if nothing was stored. + this.className = this.className || value === false ? "" : jQuery._data( this, "__className__" ) || ""; + } + }); + }, + + hasClass: function( selector ) { + var className = " " + selector + " ", + i = 0, + l = this.length; + for ( ; i < l; i++ ) { + if ( this[i].nodeType === 1 && (" " + this[i].className + " ").replace(rclass, " ").indexOf( className ) >= 0 ) { + return true; + } + } + + return false; + }, + + val: function( value ) { + var ret, hooks, isFunction, + elem = this[0]; + + if ( !arguments.length ) { + if ( elem ) { + hooks = jQuery.valHooks[ elem.type ] || jQuery.valHooks[ elem.nodeName.toLowerCase() ]; + + if ( hooks && "get" in hooks && (ret = hooks.get( elem, "value" )) !== undefined ) { + return ret; + } + + ret = elem.value; + + return typeof ret === "string" ? + // handle most common string cases + ret.replace(rreturn, "") : + // handle cases where value is null/undef or number + ret == null ? "" : ret; + } + + return; + } + + isFunction = jQuery.isFunction( value ); + + return this.each(function( i ) { + var val; + + if ( this.nodeType !== 1 ) { + return; + } + + if ( isFunction ) { + val = value.call( this, i, jQuery( this ).val() ); + } else { + val = value; + } + + // Treat null/undefined as ""; convert numbers to string + if ( val == null ) { + val = ""; + } else if ( typeof val === "number" ) { + val += ""; + } else if ( jQuery.isArray( val ) ) { + val = jQuery.map(val, function ( value ) { + return value == null ? "" : value + ""; + }); + } + + hooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ]; + + // If set returns undefined, fall back to normal setting + if ( !hooks || !("set" in hooks) || hooks.set( this, val, "value" ) === undefined ) { + this.value = val; + } + }); + } +}); + +jQuery.extend({ + valHooks: { + option: { + get: function( elem ) { + // Use proper attribute retrieval(#6932, #12072) + var val = jQuery.find.attr( elem, "value" ); + return val != null ? + val : + elem.text; + } + }, + select: { + get: function( elem ) { + var value, option, + options = elem.options, + index = elem.selectedIndex, + one = elem.type === "select-one" || index < 0, + values = one ? null : [], + max = one ? index + 1 : options.length, + i = index < 0 ? + max : + one ? index : 0; + + // Loop through all the selected options + for ( ; i < max; i++ ) { + option = options[ i ]; + + // oldIE doesn't update selected after form reset (#2551) + if ( ( option.selected || i === index ) && + // Don't return options that are disabled or in a disabled optgroup + ( jQuery.support.optDisabled ? !option.disabled : option.getAttribute("disabled") === null ) && + ( !option.parentNode.disabled || !jQuery.nodeName( option.parentNode, "optgroup" ) ) ) { + + // Get the specific value for the option + value = jQuery( option ).val(); + + // We don't need an array for one selects + if ( one ) { + return value; + } + + // Multi-Selects return an array + values.push( value ); + } + } + + return values; + }, + + set: function( elem, value ) { + var optionSet, option, + options = elem.options, + values = jQuery.makeArray( value ), + i = options.length; + + while ( i-- ) { + option = options[ i ]; + if ( (option.selected = jQuery.inArray( jQuery(option).val(), values ) >= 0) ) { + optionSet = true; + } + } + + // force browsers to behave consistently when non-matching value is set + if ( !optionSet ) { + elem.selectedIndex = -1; + } + return values; + } + } + }, + + attr: function( elem, name, value ) { + var hooks, ret, + nType = elem.nodeType; + + // don't get/set attributes on text, comment and attribute nodes + if ( !elem || nType === 3 || nType === 8 || nType === 2 ) { + return; + } + + // Fallback to prop when attributes are not supported + if ( typeof elem.getAttribute === core_strundefined ) { + return jQuery.prop( elem, name, value ); + } + + // All attributes are lowercase + // Grab necessary hook if one is defined + if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) { + name = name.toLowerCase(); + hooks = jQuery.attrHooks[ name ] || + ( jQuery.expr.match.bool.test( name ) ? boolHook : nodeHook ); + } + + if ( value !== undefined ) { + + if ( value === null ) { + jQuery.removeAttr( elem, name ); + + } else if ( hooks && "set" in hooks && (ret = hooks.set( elem, value, name )) !== undefined ) { + return ret; + + } else { + elem.setAttribute( name, value + "" ); + return value; + } + + } else if ( hooks && "get" in hooks && (ret = hooks.get( elem, name )) !== null ) { + return ret; + + } else { + ret = jQuery.find.attr( elem, name ); + + // Non-existent attributes return null, we normalize to undefined + return ret == null ? + undefined : + ret; + } + }, + + removeAttr: function( elem, value ) { + var name, propName, + i = 0, + attrNames = value && value.match( core_rnotwhite ); + + if ( attrNames && elem.nodeType === 1 ) { + while ( (name = attrNames[i++]) ) { + propName = jQuery.propFix[ name ] || name; + + // Boolean attributes get special treatment (#10870) + if ( jQuery.expr.match.bool.test( name ) ) { + // Set corresponding property to false + if ( getSetInput && getSetAttribute || !ruseDefault.test( name ) ) { + elem[ propName ] = false; + // Support: IE<9 + // Also clear defaultChecked/defaultSelected (if appropriate) + } else { + elem[ jQuery.camelCase( "default-" + name ) ] = + elem[ propName ] = false; + } + + // See #9699 for explanation of this approach (setting first, then removal) + } else { + jQuery.attr( elem, name, "" ); + } + + elem.removeAttribute( getSetAttribute ? name : propName ); + } + } + }, + + attrHooks: { + type: { + set: function( elem, value ) { + if ( !jQuery.support.radioValue && value === "radio" && jQuery.nodeName(elem, "input") ) { + // Setting the type on a radio button after the value resets the value in IE6-9 + // Reset value to default in case type is set after value during creation + var val = elem.value; + elem.setAttribute( "type", value ); + if ( val ) { + elem.value = val; + } + return value; + } + } + } + }, + + propFix: { + "for": "htmlFor", + "class": "className" + }, + + prop: function( elem, name, value ) { + var ret, hooks, notxml, + nType = elem.nodeType; + + // don't get/set properties on text, comment and attribute nodes + if ( !elem || nType === 3 || nType === 8 || nType === 2 ) { + return; + } + + notxml = nType !== 1 || !jQuery.isXMLDoc( elem ); + + if ( notxml ) { + // Fix name and attach hooks + name = jQuery.propFix[ name ] || name; + hooks = jQuery.propHooks[ name ]; + } + + if ( value !== undefined ) { + return hooks && "set" in hooks && (ret = hooks.set( elem, value, name )) !== undefined ? + ret : + ( elem[ name ] = value ); + + } else { + return hooks && "get" in hooks && (ret = hooks.get( elem, name )) !== null ? + ret : + elem[ name ]; + } + }, + + propHooks: { + tabIndex: { + get: function( elem ) { + // elem.tabIndex doesn't always return the correct value when it hasn't been explicitly set + // http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ + // Use proper attribute retrieval(#12072) + var tabindex = jQuery.find.attr( elem, "tabindex" ); + + return tabindex ? + parseInt( tabindex, 10 ) : + rfocusable.test( elem.nodeName ) || rclickable.test( elem.nodeName ) && elem.href ? + 0 : + -1; + } + } + } +}); + +// Hooks for boolean attributes +boolHook = { + set: function( elem, value, name ) { + if ( value === false ) { + // Remove boolean attributes when set to false + jQuery.removeAttr( elem, name ); + } else if ( getSetInput && getSetAttribute || !ruseDefault.test( name ) ) { + // IE<8 needs the *property* name + elem.setAttribute( !getSetAttribute && jQuery.propFix[ name ] || name, name ); + + // Use defaultChecked and defaultSelected for oldIE + } else { + elem[ jQuery.camelCase( "default-" + name ) ] = elem[ name ] = true; + } + + return name; + } +}; +jQuery.each( jQuery.expr.match.bool.source.match( /\w+/g ), function( i, name ) { + var getter = jQuery.expr.attrHandle[ name ] || jQuery.find.attr; + + jQuery.expr.attrHandle[ name ] = getSetInput && getSetAttribute || !ruseDefault.test( name ) ? + function( elem, name, isXML ) { + var fn = jQuery.expr.attrHandle[ name ], + ret = isXML ? + undefined : + /* jshint eqeqeq: false */ + (jQuery.expr.attrHandle[ name ] = undefined) != + getter( elem, name, isXML ) ? + + name.toLowerCase() : + null; + jQuery.expr.attrHandle[ name ] = fn; + return ret; + } : + function( elem, name, isXML ) { + return isXML ? + undefined : + elem[ jQuery.camelCase( "default-" + name ) ] ? + name.toLowerCase() : + null; + }; +}); + +// fix oldIE attroperties +if ( !getSetInput || !getSetAttribute ) { + jQuery.attrHooks.value = { + set: function( elem, value, name ) { + if ( jQuery.nodeName( elem, "input" ) ) { + // Does not return so that setAttribute is also used + elem.defaultValue = value; + } else { + // Use nodeHook if defined (#1954); otherwise setAttribute is fine + return nodeHook && nodeHook.set( elem, value, name ); + } + } + }; +} + +// IE6/7 do not support getting/setting some attributes with get/setAttribute +if ( !getSetAttribute ) { + + // Use this for any attribute in IE6/7 + // This fixes almost every IE6/7 issue + nodeHook = { + set: function( elem, value, name ) { + // Set the existing or create a new attribute node + var ret = elem.getAttributeNode( name ); + if ( !ret ) { + elem.setAttributeNode( + (ret = elem.ownerDocument.createAttribute( name )) + ); + } + + ret.value = value += ""; + + // Break association with cloned elements by also using setAttribute (#9646) + return name === "value" || value === elem.getAttribute( name ) ? + value : + undefined; + } + }; + jQuery.expr.attrHandle.id = jQuery.expr.attrHandle.name = jQuery.expr.attrHandle.coords = + // Some attributes are constructed with empty-string values when not defined + function( elem, name, isXML ) { + var ret; + return isXML ? + undefined : + (ret = elem.getAttributeNode( name )) && ret.value !== "" ? + ret.value : + null; + }; + jQuery.valHooks.button = { + get: function( elem, name ) { + var ret = elem.getAttributeNode( name ); + return ret && ret.specified ? + ret.value : + undefined; + }, + set: nodeHook.set + }; + + // Set contenteditable to false on removals(#10429) + // Setting to empty string throws an error as an invalid value + jQuery.attrHooks.contenteditable = { + set: function( elem, value, name ) { + nodeHook.set( elem, value === "" ? false : value, name ); + } + }; + + // Set width and height to auto instead of 0 on empty string( Bug #8150 ) + // This is for removals + jQuery.each([ "width", "height" ], function( i, name ) { + jQuery.attrHooks[ name ] = { + set: function( elem, value ) { + if ( value === "" ) { + elem.setAttribute( name, "auto" ); + return value; + } + } + }; + }); +} + + +// Some attributes require a special call on IE +// http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx +if ( !jQuery.support.hrefNormalized ) { + // href/src property should get the full normalized URL (#10299/#12915) + jQuery.each([ "href", "src" ], function( i, name ) { + jQuery.propHooks[ name ] = { + get: function( elem ) { + return elem.getAttribute( name, 4 ); + } + }; + }); +} + +if ( !jQuery.support.style ) { + jQuery.attrHooks.style = { + get: function( elem ) { + // Return undefined in the case of empty string + // Note: IE uppercases css property names, but if we were to .toLowerCase() + // .cssText, that would destroy case senstitivity in URL's, like in "background" + return elem.style.cssText || undefined; + }, + set: function( elem, value ) { + return ( elem.style.cssText = value + "" ); + } + }; +} + +// Safari mis-reports the default selected property of an option +// Accessing the parent's selectedIndex property fixes it +if ( !jQuery.support.optSelected ) { + jQuery.propHooks.selected = { + get: function( elem ) { + var parent = elem.parentNode; + + if ( parent ) { + parent.selectedIndex; + + // Make sure that it also works with optgroups, see #5701 + if ( parent.parentNode ) { + parent.parentNode.selectedIndex; + } + } + return null; + } + }; +} + +jQuery.each([ + "tabIndex", + "readOnly", + "maxLength", + "cellSpacing", + "cellPadding", + "rowSpan", + "colSpan", + "useMap", + "frameBorder", + "contentEditable" +], function() { + jQuery.propFix[ this.toLowerCase() ] = this; +}); + +// IE6/7 call enctype encoding +if ( !jQuery.support.enctype ) { + jQuery.propFix.enctype = "encoding"; +} + +// Radios and checkboxes getter/setter +jQuery.each([ "radio", "checkbox" ], function() { + jQuery.valHooks[ this ] = { + set: function( elem, value ) { + if ( jQuery.isArray( value ) ) { + return ( elem.checked = jQuery.inArray( jQuery(elem).val(), value ) >= 0 ); + } + } + }; + if ( !jQuery.support.checkOn ) { + jQuery.valHooks[ this ].get = function( elem ) { + // Support: Webkit + // "" is returned instead of "on" if a value isn't specified + return elem.getAttribute("value") === null ? "on" : elem.value; + }; + } +}); +var rformElems = /^(?:input|select|textarea)$/i, + rkeyEvent = /^key/, + rmouseEvent = /^(?:mouse|contextmenu)|click/, + rfocusMorph = /^(?:focusinfocus|focusoutblur)$/, + rtypenamespace = /^([^.]*)(?:\.(.+)|)$/; + +function returnTrue() { + return true; +} + +function returnFalse() { + return false; +} + +function safeActiveElement() { + try { + return document.activeElement; + } catch ( err ) { } +} + +/* + * Helper functions for managing events -- not part of the public interface. + * Props to Dean Edwards' addEvent library for many of the ideas. + */ +jQuery.event = { + + global: {}, + + add: function( elem, types, handler, data, selector ) { + var tmp, events, t, handleObjIn, + special, eventHandle, handleObj, + handlers, type, namespaces, origType, + elemData = jQuery._data( elem ); + + // Don't attach events to noData or text/comment nodes (but allow plain objects) + if ( !elemData ) { + return; + } + + // Caller can pass in an object of custom data in lieu of the handler + if ( handler.handler ) { + handleObjIn = handler; + handler = handleObjIn.handler; + selector = handleObjIn.selector; + } + + // Make sure that the handler has a unique ID, used to find/remove it later + if ( !handler.guid ) { + handler.guid = jQuery.guid++; + } + + // Init the element's event structure and main handler, if this is the first + if ( !(events = elemData.events) ) { + events = elemData.events = {}; + } + if ( !(eventHandle = elemData.handle) ) { + eventHandle = elemData.handle = function( e ) { + // Discard the second event of a jQuery.event.trigger() and + // when an event is called after a page has unloaded + return typeof jQuery !== core_strundefined && (!e || jQuery.event.triggered !== e.type) ? + jQuery.event.dispatch.apply( eventHandle.elem, arguments ) : + undefined; + }; + // Add elem as a property of the handle fn to prevent a memory leak with IE non-native events + eventHandle.elem = elem; + } + + // Handle multiple events separated by a space + types = ( types || "" ).match( core_rnotwhite ) || [""]; + t = types.length; + while ( t-- ) { + tmp = rtypenamespace.exec( types[t] ) || []; + type = origType = tmp[1]; + namespaces = ( tmp[2] || "" ).split( "." ).sort(); + + // There *must* be a type, no attaching namespace-only handlers + if ( !type ) { + continue; + } + + // If event changes its type, use the special event handlers for the changed type + special = jQuery.event.special[ type ] || {}; + + // If selector defined, determine special event api type, otherwise given type + type = ( selector ? special.delegateType : special.bindType ) || type; + + // Update special based on newly reset type + special = jQuery.event.special[ type ] || {}; + + // handleObj is passed to all event handlers + handleObj = jQuery.extend({ + type: type, + origType: origType, + data: data, + handler: handler, + guid: handler.guid, + selector: selector, + needsContext: selector && jQuery.expr.match.needsContext.test( selector ), + namespace: namespaces.join(".") + }, handleObjIn ); + + // Init the event handler queue if we're the first + if ( !(handlers = events[ type ]) ) { + handlers = events[ type ] = []; + handlers.delegateCount = 0; + + // Only use addEventListener/attachEvent if the special events handler returns false + if ( !special.setup || special.setup.call( elem, data, namespaces, eventHandle ) === false ) { + // Bind the global event handler to the element + if ( elem.addEventListener ) { + elem.addEventListener( type, eventHandle, false ); + + } else if ( elem.attachEvent ) { + elem.attachEvent( "on" + type, eventHandle ); + } + } + } + + if ( special.add ) { + special.add.call( elem, handleObj ); + + if ( !handleObj.handler.guid ) { + handleObj.handler.guid = handler.guid; + } + } + + // Add to the element's handler list, delegates in front + if ( selector ) { + handlers.splice( handlers.delegateCount++, 0, handleObj ); + } else { + handlers.push( handleObj ); + } + + // Keep track of which events have ever been used, for event optimization + jQuery.event.global[ type ] = true; + } + + // Nullify elem to prevent memory leaks in IE + elem = null; + }, + + // Detach an event or set of events from an element + remove: function( elem, types, handler, selector, mappedTypes ) { + var j, handleObj, tmp, + origCount, t, events, + special, handlers, type, + namespaces, origType, + elemData = jQuery.hasData( elem ) && jQuery._data( elem ); + + if ( !elemData || !(events = elemData.events) ) { + return; + } + + // Once for each type.namespace in types; type may be omitted + types = ( types || "" ).match( core_rnotwhite ) || [""]; + t = types.length; + while ( t-- ) { + tmp = rtypenamespace.exec( types[t] ) || []; + type = origType = tmp[1]; + namespaces = ( tmp[2] || "" ).split( "." ).sort(); + + // Unbind all events (on this namespace, if provided) for the element + if ( !type ) { + for ( type in events ) { + jQuery.event.remove( elem, type + types[ t ], handler, selector, true ); + } + continue; + } + + special = jQuery.event.special[ type ] || {}; + type = ( selector ? special.delegateType : special.bindType ) || type; + handlers = events[ type ] || []; + tmp = tmp[2] && new RegExp( "(^|\\.)" + namespaces.join("\\.(?:.*\\.|)") + "(\\.|$)" ); + + // Remove matching events + origCount = j = handlers.length; + while ( j-- ) { + handleObj = handlers[ j ]; + + if ( ( mappedTypes || origType === handleObj.origType ) && + ( !handler || handler.guid === handleObj.guid ) && + ( !tmp || tmp.test( handleObj.namespace ) ) && + ( !selector || selector === handleObj.selector || selector === "**" && handleObj.selector ) ) { + handlers.splice( j, 1 ); + + if ( handleObj.selector ) { + handlers.delegateCount--; + } + if ( special.remove ) { + special.remove.call( elem, handleObj ); + } + } + } + + // Remove generic event handler if we removed something and no more handlers exist + // (avoids potential for endless recursion during removal of special event handlers) + if ( origCount && !handlers.length ) { + if ( !special.teardown || special.teardown.call( elem, namespaces, elemData.handle ) === false ) { + jQuery.removeEvent( elem, type, elemData.handle ); + } + + delete events[ type ]; + } + } + + // Remove the expando if it's no longer used + if ( jQuery.isEmptyObject( events ) ) { + delete elemData.handle; + + // removeData also checks for emptiness and clears the expando if empty + // so use it instead of delete + jQuery._removeData( elem, "events" ); + } + }, + + trigger: function( event, data, elem, onlyHandlers ) { + var handle, ontype, cur, + bubbleType, special, tmp, i, + eventPath = [ elem || document ], + type = core_hasOwn.call( event, "type" ) ? event.type : event, + namespaces = core_hasOwn.call( event, "namespace" ) ? event.namespace.split(".") : []; + + cur = tmp = elem = elem || document; + + // Don't do events on text and comment nodes + if ( elem.nodeType === 3 || elem.nodeType === 8 ) { + return; + } + + // focus/blur morphs to focusin/out; ensure we're not firing them right now + if ( rfocusMorph.test( type + jQuery.event.triggered ) ) { + return; + } + + if ( type.indexOf(".") >= 0 ) { + // Namespaced trigger; create a regexp to match event type in handle() + namespaces = type.split("."); + type = namespaces.shift(); + namespaces.sort(); + } + ontype = type.indexOf(":") < 0 && "on" + type; + + // Caller can pass in a jQuery.Event object, Object, or just an event type string + event = event[ jQuery.expando ] ? + event : + new jQuery.Event( type, typeof event === "object" && event ); + + // Trigger bitmask: & 1 for native handlers; & 2 for jQuery (always true) + event.isTrigger = onlyHandlers ? 2 : 3; + event.namespace = namespaces.join("."); + event.namespace_re = event.namespace ? + new RegExp( "(^|\\.)" + namespaces.join("\\.(?:.*\\.|)") + "(\\.|$)" ) : + null; + + // Clean up the event in case it is being reused + event.result = undefined; + if ( !event.target ) { + event.target = elem; + } + + // Clone any incoming data and prepend the event, creating the handler arg list + data = data == null ? + [ event ] : + jQuery.makeArray( data, [ event ] ); + + // Allow special events to draw outside the lines + special = jQuery.event.special[ type ] || {}; + if ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) { + return; + } + + // Determine event propagation path in advance, per W3C events spec (#9951) + // Bubble up to document, then to window; watch for a global ownerDocument var (#9724) + if ( !onlyHandlers && !special.noBubble && !jQuery.isWindow( elem ) ) { + + bubbleType = special.delegateType || type; + if ( !rfocusMorph.test( bubbleType + type ) ) { + cur = cur.parentNode; + } + for ( ; cur; cur = cur.parentNode ) { + eventPath.push( cur ); + tmp = cur; + } + + // Only add window if we got to document (e.g., not plain obj or detached DOM) + if ( tmp === (elem.ownerDocument || document) ) { + eventPath.push( tmp.defaultView || tmp.parentWindow || window ); + } + } + + // Fire handlers on the event path + i = 0; + while ( (cur = eventPath[i++]) && !event.isPropagationStopped() ) { + + event.type = i > 1 ? + bubbleType : + special.bindType || type; + + // jQuery handler + handle = ( jQuery._data( cur, "events" ) || {} )[ event.type ] && jQuery._data( cur, "handle" ); + if ( handle ) { + handle.apply( cur, data ); + } + + // Native handler + handle = ontype && cur[ ontype ]; + if ( handle && jQuery.acceptData( cur ) && handle.apply && handle.apply( cur, data ) === false ) { + event.preventDefault(); + } + } + event.type = type; + + // If nobody prevented the default action, do it now + if ( !onlyHandlers && !event.isDefaultPrevented() ) { + + if ( (!special._default || special._default.apply( eventPath.pop(), data ) === false) && + jQuery.acceptData( elem ) ) { + + // Call a native DOM method on the target with the same name name as the event. + // Can't use an .isFunction() check here because IE6/7 fails that test. + // Don't do default actions on window, that's where global variables be (#6170) + if ( ontype && elem[ type ] && !jQuery.isWindow( elem ) ) { + + // Don't re-trigger an onFOO event when we call its FOO() method + tmp = elem[ ontype ]; + + if ( tmp ) { + elem[ ontype ] = null; + } + + // Prevent re-triggering of the same event, since we already bubbled it above + jQuery.event.triggered = type; + try { + elem[ type ](); + } catch ( e ) { + // IE<9 dies on focus/blur to hidden element (#1486,#12518) + // only reproducible on winXP IE8 native, not IE9 in IE8 mode + } + jQuery.event.triggered = undefined; + + if ( tmp ) { + elem[ ontype ] = tmp; + } + } + } + } + + return event.result; + }, + + dispatch: function( event ) { + + // Make a writable jQuery.Event from the native event object + event = jQuery.event.fix( event ); + + var i, ret, handleObj, matched, j, + handlerQueue = [], + args = core_slice.call( arguments ), + handlers = ( jQuery._data( this, "events" ) || {} )[ event.type ] || [], + special = jQuery.event.special[ event.type ] || {}; + + // Use the fix-ed jQuery.Event rather than the (read-only) native event + args[0] = event; + event.delegateTarget = this; + + // Call the preDispatch hook for the mapped type, and let it bail if desired + if ( special.preDispatch && special.preDispatch.call( this, event ) === false ) { + return; + } + + // Determine handlers + handlerQueue = jQuery.event.handlers.call( this, event, handlers ); + + // Run delegates first; they may want to stop propagation beneath us + i = 0; + while ( (matched = handlerQueue[ i++ ]) && !event.isPropagationStopped() ) { + event.currentTarget = matched.elem; + + j = 0; + while ( (handleObj = matched.handlers[ j++ ]) && !event.isImmediatePropagationStopped() ) { + + // Triggered event must either 1) have no namespace, or + // 2) have namespace(s) a subset or equal to those in the bound event (both can have no namespace). + if ( !event.namespace_re || event.namespace_re.test( handleObj.namespace ) ) { + + event.handleObj = handleObj; + event.data = handleObj.data; + + ret = ( (jQuery.event.special[ handleObj.origType ] || {}).handle || handleObj.handler ) + .apply( matched.elem, args ); + + if ( ret !== undefined ) { + if ( (event.result = ret) === false ) { + event.preventDefault(); + event.stopPropagation(); + } + } + } + } + } + + // Call the postDispatch hook for the mapped type + if ( special.postDispatch ) { + special.postDispatch.call( this, event ); + } + + return event.result; + }, + + handlers: function( event, handlers ) { + var sel, handleObj, matches, i, + handlerQueue = [], + delegateCount = handlers.delegateCount, + cur = event.target; + + // Find delegate handlers + // Black-hole SVG instance trees (#13180) + // Avoid non-left-click bubbling in Firefox (#3861) + if ( delegateCount && cur.nodeType && (!event.button || event.type !== "click") ) { + + /* jshint eqeqeq: false */ + for ( ; cur != this; cur = cur.parentNode || this ) { + /* jshint eqeqeq: true */ + + // Don't check non-elements (#13208) + // Don't process clicks on disabled elements (#6911, #8165, #11382, #11764) + if ( cur.nodeType === 1 && (cur.disabled !== true || event.type !== "click") ) { + matches = []; + for ( i = 0; i < delegateCount; i++ ) { + handleObj = handlers[ i ]; + + // Don't conflict with Object.prototype properties (#13203) + sel = handleObj.selector + " "; + + if ( matches[ sel ] === undefined ) { + matches[ sel ] = handleObj.needsContext ? + jQuery( sel, this ).index( cur ) >= 0 : + jQuery.find( sel, this, null, [ cur ] ).length; + } + if ( matches[ sel ] ) { + matches.push( handleObj ); + } + } + if ( matches.length ) { + handlerQueue.push({ elem: cur, handlers: matches }); + } + } + } + } + + // Add the remaining (directly-bound) handlers + if ( delegateCount < handlers.length ) { + handlerQueue.push({ elem: this, handlers: handlers.slice( delegateCount ) }); + } + + return handlerQueue; + }, + + fix: function( event ) { + if ( event[ jQuery.expando ] ) { + return event; + } + + // Create a writable copy of the event object and normalize some properties + var i, prop, copy, + type = event.type, + originalEvent = event, + fixHook = this.fixHooks[ type ]; + + if ( !fixHook ) { + this.fixHooks[ type ] = fixHook = + rmouseEvent.test( type ) ? this.mouseHooks : + rkeyEvent.test( type ) ? this.keyHooks : + {}; + } + copy = fixHook.props ? this.props.concat( fixHook.props ) : this.props; + + event = new jQuery.Event( originalEvent ); + + i = copy.length; + while ( i-- ) { + prop = copy[ i ]; + event[ prop ] = originalEvent[ prop ]; + } + + // Support: IE<9 + // Fix target property (#1925) + if ( !event.target ) { + event.target = originalEvent.srcElement || document; + } + + // Support: Chrome 23+, Safari? + // Target should not be a text node (#504, #13143) + if ( event.target.nodeType === 3 ) { + event.target = event.target.parentNode; + } + + // Support: IE<9 + // For mouse/key events, metaKey==false if it's undefined (#3368, #11328) + event.metaKey = !!event.metaKey; + + return fixHook.filter ? fixHook.filter( event, originalEvent ) : event; + }, + + // Includes some event props shared by KeyEvent and MouseEvent + props: "altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "), + + fixHooks: {}, + + keyHooks: { + props: "char charCode key keyCode".split(" "), + filter: function( event, original ) { + + // Add which for key events + if ( event.which == null ) { + event.which = original.charCode != null ? original.charCode : original.keyCode; + } + + return event; + } + }, + + mouseHooks: { + props: "button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "), + filter: function( event, original ) { + var body, eventDoc, doc, + button = original.button, + fromElement = original.fromElement; + + // Calculate pageX/Y if missing and clientX/Y available + if ( event.pageX == null && original.clientX != null ) { + eventDoc = event.target.ownerDocument || document; + doc = eventDoc.documentElement; + body = eventDoc.body; + + event.pageX = original.clientX + ( doc && doc.scrollLeft || body && body.scrollLeft || 0 ) - ( doc && doc.clientLeft || body && body.clientLeft || 0 ); + event.pageY = original.clientY + ( doc && doc.scrollTop || body && body.scrollTop || 0 ) - ( doc && doc.clientTop || body && body.clientTop || 0 ); + } + + // Add relatedTarget, if necessary + if ( !event.relatedTarget && fromElement ) { + event.relatedTarget = fromElement === event.target ? original.toElement : fromElement; + } + + // Add which for click: 1 === left; 2 === middle; 3 === right + // Note: button is not normalized, so don't use it + if ( !event.which && button !== undefined ) { + event.which = ( button & 1 ? 1 : ( button & 2 ? 3 : ( button & 4 ? 2 : 0 ) ) ); + } + + return event; + } + }, + + special: { + load: { + // Prevent triggered image.load events from bubbling to window.load + noBubble: true + }, + focus: { + // Fire native event if possible so blur/focus sequence is correct + trigger: function() { + if ( this !== safeActiveElement() && this.focus ) { + try { + this.focus(); + return false; + } catch ( e ) { + // Support: IE<9 + // If we error on focus to hidden element (#1486, #12518), + // let .trigger() run the handlers + } + } + }, + delegateType: "focusin" + }, + blur: { + trigger: function() { + if ( this === safeActiveElement() && this.blur ) { + this.blur(); + return false; + } + }, + delegateType: "focusout" + }, + click: { + // For checkbox, fire native event so checked state will be right + trigger: function() { + if ( jQuery.nodeName( this, "input" ) && this.type === "checkbox" && this.click ) { + this.click(); + return false; + } + }, + + // For cross-browser consistency, don't fire native .click() on links + _default: function( event ) { + return jQuery.nodeName( event.target, "a" ); + } + }, + + beforeunload: { + postDispatch: function( event ) { + + // Even when returnValue equals to undefined Firefox will still show alert + if ( event.result !== undefined ) { + event.originalEvent.returnValue = event.result; + } + } + } + }, + + simulate: function( type, elem, event, bubble ) { + // Piggyback on a donor event to simulate a different one. + // Fake originalEvent to avoid donor's stopPropagation, but if the + // simulated event prevents default then we do the same on the donor. + var e = jQuery.extend( + new jQuery.Event(), + event, + { + type: type, + isSimulated: true, + originalEvent: {} + } + ); + if ( bubble ) { + jQuery.event.trigger( e, null, elem ); + } else { + jQuery.event.dispatch.call( elem, e ); + } + if ( e.isDefaultPrevented() ) { + event.preventDefault(); + } + } +}; + +jQuery.removeEvent = document.removeEventListener ? + function( elem, type, handle ) { + if ( elem.removeEventListener ) { + elem.removeEventListener( type, handle, false ); + } + } : + function( elem, type, handle ) { + var name = "on" + type; + + if ( elem.detachEvent ) { + + // #8545, #7054, preventing memory leaks for custom events in IE6-8 + // detachEvent needed property on element, by name of that event, to properly expose it to GC + if ( typeof elem[ name ] === core_strundefined ) { + elem[ name ] = null; + } + + elem.detachEvent( name, handle ); + } + }; + +jQuery.Event = function( src, props ) { + // Allow instantiation without the 'new' keyword + if ( !(this instanceof jQuery.Event) ) { + return new jQuery.Event( src, props ); + } + + // Event object + if ( src && src.type ) { + this.originalEvent = src; + this.type = src.type; + + // Events bubbling up the document may have been marked as prevented + // by a handler lower down the tree; reflect the correct value. + this.isDefaultPrevented = ( src.defaultPrevented || src.returnValue === false || + src.getPreventDefault && src.getPreventDefault() ) ? returnTrue : returnFalse; + + // Event type + } else { + this.type = src; + } + + // Put explicitly provided properties onto the event object + if ( props ) { + jQuery.extend( this, props ); + } + + // Create a timestamp if incoming event doesn't have one + this.timeStamp = src && src.timeStamp || jQuery.now(); + + // Mark it as fixed + this[ jQuery.expando ] = true; +}; + +// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding +// http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html +jQuery.Event.prototype = { + isDefaultPrevented: returnFalse, + isPropagationStopped: returnFalse, + isImmediatePropagationStopped: returnFalse, + + preventDefault: function() { + var e = this.originalEvent; + + this.isDefaultPrevented = returnTrue; + if ( !e ) { + return; + } + + // If preventDefault exists, run it on the original event + if ( e.preventDefault ) { + e.preventDefault(); + + // Support: IE + // Otherwise set the returnValue property of the original event to false + } else { + e.returnValue = false; + } + }, + stopPropagation: function() { + var e = this.originalEvent; + + this.isPropagationStopped = returnTrue; + if ( !e ) { + return; + } + // If stopPropagation exists, run it on the original event + if ( e.stopPropagation ) { + e.stopPropagation(); + } + + // Support: IE + // Set the cancelBubble property of the original event to true + e.cancelBubble = true; + }, + stopImmediatePropagation: function() { + this.isImmediatePropagationStopped = returnTrue; + this.stopPropagation(); + } +}; + +// Create mouseenter/leave events using mouseover/out and event-time checks +jQuery.each({ + mouseenter: "mouseover", + mouseleave: "mouseout" +}, function( orig, fix ) { + jQuery.event.special[ orig ] = { + delegateType: fix, + bindType: fix, + + handle: function( event ) { + var ret, + target = this, + related = event.relatedTarget, + handleObj = event.handleObj; + + // For mousenter/leave call the handler if related is outside the target. + // NB: No relatedTarget if the mouse left/entered the browser window + if ( !related || (related !== target && !jQuery.contains( target, related )) ) { + event.type = handleObj.origType; + ret = handleObj.handler.apply( this, arguments ); + event.type = fix; + } + return ret; + } + }; +}); + +// IE submit delegation +if ( !jQuery.support.submitBubbles ) { + + jQuery.event.special.submit = { + setup: function() { + // Only need this for delegated form submit events + if ( jQuery.nodeName( this, "form" ) ) { + return false; + } + + // Lazy-add a submit handler when a descendant form may potentially be submitted + jQuery.event.add( this, "click._submit keypress._submit", function( e ) { + // Node name check avoids a VML-related crash in IE (#9807) + var elem = e.target, + form = jQuery.nodeName( elem, "input" ) || jQuery.nodeName( elem, "button" ) ? elem.form : undefined; + if ( form && !jQuery._data( form, "submitBubbles" ) ) { + jQuery.event.add( form, "submit._submit", function( event ) { + event._submit_bubble = true; + }); + jQuery._data( form, "submitBubbles", true ); + } + }); + // return undefined since we don't need an event listener + }, + + postDispatch: function( event ) { + // If form was submitted by the user, bubble the event up the tree + if ( event._submit_bubble ) { + delete event._submit_bubble; + if ( this.parentNode && !event.isTrigger ) { + jQuery.event.simulate( "submit", this.parentNode, event, true ); + } + } + }, + + teardown: function() { + // Only need this for delegated form submit events + if ( jQuery.nodeName( this, "form" ) ) { + return false; + } + + // Remove delegated handlers; cleanData eventually reaps submit handlers attached above + jQuery.event.remove( this, "._submit" ); + } + }; +} + +// IE change delegation and checkbox/radio fix +if ( !jQuery.support.changeBubbles ) { + + jQuery.event.special.change = { + + setup: function() { + + if ( rformElems.test( this.nodeName ) ) { + // IE doesn't fire change on a check/radio until blur; trigger it on click + // after a propertychange. Eat the blur-change in special.change.handle. + // This still fires onchange a second time for check/radio after blur. + if ( this.type === "checkbox" || this.type === "radio" ) { + jQuery.event.add( this, "propertychange._change", function( event ) { + if ( event.originalEvent.propertyName === "checked" ) { + this._just_changed = true; + } + }); + jQuery.event.add( this, "click._change", function( event ) { + if ( this._just_changed && !event.isTrigger ) { + this._just_changed = false; + } + // Allow triggered, simulated change events (#11500) + jQuery.event.simulate( "change", this, event, true ); + }); + } + return false; + } + // Delegated event; lazy-add a change handler on descendant inputs + jQuery.event.add( this, "beforeactivate._change", function( e ) { + var elem = e.target; + + if ( rformElems.test( elem.nodeName ) && !jQuery._data( elem, "changeBubbles" ) ) { + jQuery.event.add( elem, "change._change", function( event ) { + if ( this.parentNode && !event.isSimulated && !event.isTrigger ) { + jQuery.event.simulate( "change", this.parentNode, event, true ); + } + }); + jQuery._data( elem, "changeBubbles", true ); + } + }); + }, + + handle: function( event ) { + var elem = event.target; + + // Swallow native change events from checkbox/radio, we already triggered them above + if ( this !== elem || event.isSimulated || event.isTrigger || (elem.type !== "radio" && elem.type !== "checkbox") ) { + return event.handleObj.handler.apply( this, arguments ); + } + }, + + teardown: function() { + jQuery.event.remove( this, "._change" ); + + return !rformElems.test( this.nodeName ); + } + }; +} + +// Create "bubbling" focus and blur events +if ( !jQuery.support.focusinBubbles ) { + jQuery.each({ focus: "focusin", blur: "focusout" }, function( orig, fix ) { + + // Attach a single capturing handler while someone wants focusin/focusout + var attaches = 0, + handler = function( event ) { + jQuery.event.simulate( fix, event.target, jQuery.event.fix( event ), true ); + }; + + jQuery.event.special[ fix ] = { + setup: function() { + if ( attaches++ === 0 ) { + document.addEventListener( orig, handler, true ); + } + }, + teardown: function() { + if ( --attaches === 0 ) { + document.removeEventListener( orig, handler, true ); + } + } + }; + }); +} + +jQuery.fn.extend({ + + on: function( types, selector, data, fn, /*INTERNAL*/ one ) { + var type, origFn; + + // Types can be a map of types/handlers + if ( typeof types === "object" ) { + // ( types-Object, selector, data ) + if ( typeof selector !== "string" ) { + // ( types-Object, data ) + data = data || selector; + selector = undefined; + } + for ( type in types ) { + this.on( type, selector, data, types[ type ], one ); + } + return this; + } + + if ( data == null && fn == null ) { + // ( types, fn ) + fn = selector; + data = selector = undefined; + } else if ( fn == null ) { + if ( typeof selector === "string" ) { + // ( types, selector, fn ) + fn = data; + data = undefined; + } else { + // ( types, data, fn ) + fn = data; + data = selector; + selector = undefined; + } + } + if ( fn === false ) { + fn = returnFalse; + } else if ( !fn ) { + return this; + } + + if ( one === 1 ) { + origFn = fn; + fn = function( event ) { + // Can use an empty set, since event contains the info + jQuery().off( event ); + return origFn.apply( this, arguments ); + }; + // Use same guid so caller can remove using origFn + fn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ ); + } + return this.each( function() { + jQuery.event.add( this, types, fn, data, selector ); + }); + }, + one: function( types, selector, data, fn ) { + return this.on( types, selector, data, fn, 1 ); + }, + off: function( types, selector, fn ) { + var handleObj, type; + if ( types && types.preventDefault && types.handleObj ) { + // ( event ) dispatched jQuery.Event + handleObj = types.handleObj; + jQuery( types.delegateTarget ).off( + handleObj.namespace ? handleObj.origType + "." + handleObj.namespace : handleObj.origType, + handleObj.selector, + handleObj.handler + ); + return this; + } + if ( typeof types === "object" ) { + // ( types-object [, selector] ) + for ( type in types ) { + this.off( type, selector, types[ type ] ); + } + return this; + } + if ( selector === false || typeof selector === "function" ) { + // ( types [, fn] ) + fn = selector; + selector = undefined; + } + if ( fn === false ) { + fn = returnFalse; + } + return this.each(function() { + jQuery.event.remove( this, types, fn, selector ); + }); + }, + + trigger: function( type, data ) { + return this.each(function() { + jQuery.event.trigger( type, data, this ); + }); + }, + triggerHandler: function( type, data ) { + var elem = this[0]; + if ( elem ) { + return jQuery.event.trigger( type, data, elem, true ); + } + } +}); +var isSimple = /^.[^:#\[\.,]*$/, + rparentsprev = /^(?:parents|prev(?:Until|All))/, + rneedsContext = jQuery.expr.match.needsContext, + // methods guaranteed to produce a unique set when starting from a unique set + guaranteedUnique = { + children: true, + contents: true, + next: true, + prev: true + }; + +jQuery.fn.extend({ + find: function( selector ) { + var i, + ret = [], + self = this, + len = self.length; + + if ( typeof selector !== "string" ) { + return this.pushStack( jQuery( selector ).filter(function() { + for ( i = 0; i < len; i++ ) { + if ( jQuery.contains( self[ i ], this ) ) { + return true; + } + } + }) ); + } + + for ( i = 0; i < len; i++ ) { + jQuery.find( selector, self[ i ], ret ); + } + + // Needed because $( selector, context ) becomes $( context ).find( selector ) + ret = this.pushStack( len > 1 ? jQuery.unique( ret ) : ret ); + ret.selector = this.selector ? this.selector + " " + selector : selector; + return ret; + }, + + has: function( target ) { + var i, + targets = jQuery( target, this ), + len = targets.length; + + return this.filter(function() { + for ( i = 0; i < len; i++ ) { + if ( jQuery.contains( this, targets[i] ) ) { + return true; + } + } + }); + }, + + not: function( selector ) { + return this.pushStack( winnow(this, selector || [], true) ); + }, + + filter: function( selector ) { + return this.pushStack( winnow(this, selector || [], false) ); + }, + + is: function( selector ) { + return !!winnow( + this, + + // If this is a positional/relative selector, check membership in the returned set + // so $("p:first").is("p:last") won't return true for a doc with two "p". + typeof selector === "string" && rneedsContext.test( selector ) ? + jQuery( selector ) : + selector || [], + false + ).length; + }, + + closest: function( selectors, context ) { + var cur, + i = 0, + l = this.length, + ret = [], + pos = rneedsContext.test( selectors ) || typeof selectors !== "string" ? + jQuery( selectors, context || this.context ) : + 0; + + for ( ; i < l; i++ ) { + for ( cur = this[i]; cur && cur !== context; cur = cur.parentNode ) { + // Always skip document fragments + if ( cur.nodeType < 11 && (pos ? + pos.index(cur) > -1 : + + // Don't pass non-elements to Sizzle + cur.nodeType === 1 && + jQuery.find.matchesSelector(cur, selectors)) ) { + + cur = ret.push( cur ); + break; + } + } + } + + return this.pushStack( ret.length > 1 ? jQuery.unique( ret ) : ret ); + }, + + // Determine the position of an element within + // the matched set of elements + index: function( elem ) { + + // No argument, return index in parent + if ( !elem ) { + return ( this[0] && this[0].parentNode ) ? this.first().prevAll().length : -1; + } + + // index in selector + if ( typeof elem === "string" ) { + return jQuery.inArray( this[0], jQuery( elem ) ); + } + + // Locate the position of the desired element + return jQuery.inArray( + // If it receives a jQuery object, the first element is used + elem.jquery ? elem[0] : elem, this ); + }, + + add: function( selector, context ) { + var set = typeof selector === "string" ? + jQuery( selector, context ) : + jQuery.makeArray( selector && selector.nodeType ? [ selector ] : selector ), + all = jQuery.merge( this.get(), set ); + + return this.pushStack( jQuery.unique(all) ); + }, + + addBack: function( selector ) { + return this.add( selector == null ? + this.prevObject : this.prevObject.filter(selector) + ); + } +}); + +function sibling( cur, dir ) { + do { + cur = cur[ dir ]; + } while ( cur && cur.nodeType !== 1 ); + + return cur; +} + +jQuery.each({ + parent: function( elem ) { + var parent = elem.parentNode; + return parent && parent.nodeType !== 11 ? parent : null; + }, + parents: function( elem ) { + return jQuery.dir( elem, "parentNode" ); + }, + parentsUntil: function( elem, i, until ) { + return jQuery.dir( elem, "parentNode", until ); + }, + next: function( elem ) { + return sibling( elem, "nextSibling" ); + }, + prev: function( elem ) { + return sibling( elem, "previousSibling" ); + }, + nextAll: function( elem ) { + return jQuery.dir( elem, "nextSibling" ); + }, + prevAll: function( elem ) { + return jQuery.dir( elem, "previousSibling" ); + }, + nextUntil: function( elem, i, until ) { + return jQuery.dir( elem, "nextSibling", until ); + }, + prevUntil: function( elem, i, until ) { + return jQuery.dir( elem, "previousSibling", until ); + }, + siblings: function( elem ) { + return jQuery.sibling( ( elem.parentNode || {} ).firstChild, elem ); + }, + children: function( elem ) { + return jQuery.sibling( elem.firstChild ); + }, + contents: function( elem ) { + return jQuery.nodeName( elem, "iframe" ) ? + elem.contentDocument || elem.contentWindow.document : + jQuery.merge( [], elem.childNodes ); + } +}, function( name, fn ) { + jQuery.fn[ name ] = function( until, selector ) { + var ret = jQuery.map( this, fn, until ); + + if ( name.slice( -5 ) !== "Until" ) { + selector = until; + } + + if ( selector && typeof selector === "string" ) { + ret = jQuery.filter( selector, ret ); + } + + if ( this.length > 1 ) { + // Remove duplicates + if ( !guaranteedUnique[ name ] ) { + ret = jQuery.unique( ret ); + } + + // Reverse order for parents* and prev-derivatives + if ( rparentsprev.test( name ) ) { + ret = ret.reverse(); + } + } + + return this.pushStack( ret ); + }; +}); + +jQuery.extend({ + filter: function( expr, elems, not ) { + var elem = elems[ 0 ]; + + if ( not ) { + expr = ":not(" + expr + ")"; + } + + return elems.length === 1 && elem.nodeType === 1 ? + jQuery.find.matchesSelector( elem, expr ) ? [ elem ] : [] : + jQuery.find.matches( expr, jQuery.grep( elems, function( elem ) { + return elem.nodeType === 1; + })); + }, + + dir: function( elem, dir, until ) { + var matched = [], + cur = elem[ dir ]; + + while ( cur && cur.nodeType !== 9 && (until === undefined || cur.nodeType !== 1 || !jQuery( cur ).is( until )) ) { + if ( cur.nodeType === 1 ) { + matched.push( cur ); + } + cur = cur[dir]; + } + return matched; + }, + + sibling: function( n, elem ) { + var r = []; + + for ( ; n; n = n.nextSibling ) { + if ( n.nodeType === 1 && n !== elem ) { + r.push( n ); + } + } + + return r; + } +}); + +// Implement the identical functionality for filter and not +function winnow( elements, qualifier, not ) { + if ( jQuery.isFunction( qualifier ) ) { + return jQuery.grep( elements, function( elem, i ) { + /* jshint -W018 */ + return !!qualifier.call( elem, i, elem ) !== not; + }); + + } + + if ( qualifier.nodeType ) { + return jQuery.grep( elements, function( elem ) { + return ( elem === qualifier ) !== not; + }); + + } + + if ( typeof qualifier === "string" ) { + if ( isSimple.test( qualifier ) ) { + return jQuery.filter( qualifier, elements, not ); + } + + qualifier = jQuery.filter( qualifier, elements ); + } + + return jQuery.grep( elements, function( elem ) { + return ( jQuery.inArray( elem, qualifier ) >= 0 ) !== not; + }); +} +function createSafeFragment( document ) { + var list = nodeNames.split( "|" ), + safeFrag = document.createDocumentFragment(); + + if ( safeFrag.createElement ) { + while ( list.length ) { + safeFrag.createElement( + list.pop() + ); + } + } + return safeFrag; +} + +var nodeNames = "abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|" + + "header|hgroup|mark|meter|nav|output|progress|section|summary|time|video", + rinlinejQuery = / jQuery\d+="(?:null|\d+)"/g, + rnoshimcache = new RegExp("<(?:" + nodeNames + ")[\\s/>]", "i"), + rleadingWhitespace = /^\s+/, + rxhtmlTag = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi, + rtagName = /<([\w:]+)/, + rtbody = /\s*$/g, + + // We have to close these tags to support XHTML (#13200) + wrapMap = { + option: [ 1, "" ], + legend: [ 1, "
", "
" ], + area: [ 1, "", "" ], + param: [ 1, "", "" ], + thead: [ 1, "", "
" ], + tr: [ 2, "", "
" ], + col: [ 2, "", "
" ], + td: [ 3, "", "
" ], + + // IE6-8 can't serialize link, script, style, or any html5 (NoScope) tags, + // unless wrapped in a div with non-breaking characters in front of it. + _default: jQuery.support.htmlSerialize ? [ 0, "", "" ] : [ 1, "X
", "
" ] + }, + safeFragment = createSafeFragment( document ), + fragmentDiv = safeFragment.appendChild( document.createElement("div") ); + +wrapMap.optgroup = wrapMap.option; +wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead; +wrapMap.th = wrapMap.td; + +jQuery.fn.extend({ + text: function( value ) { + return jQuery.access( this, function( value ) { + return value === undefined ? + jQuery.text( this ) : + this.empty().append( ( this[0] && this[0].ownerDocument || document ).createTextNode( value ) ); + }, null, value, arguments.length ); + }, + + append: function() { + return this.domManip( arguments, function( elem ) { + if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { + var target = manipulationTarget( this, elem ); + target.appendChild( elem ); + } + }); + }, + + prepend: function() { + return this.domManip( arguments, function( elem ) { + if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { + var target = manipulationTarget( this, elem ); + target.insertBefore( elem, target.firstChild ); + } + }); + }, + + before: function() { + return this.domManip( arguments, function( elem ) { + if ( this.parentNode ) { + this.parentNode.insertBefore( elem, this ); + } + }); + }, + + after: function() { + return this.domManip( arguments, function( elem ) { + if ( this.parentNode ) { + this.parentNode.insertBefore( elem, this.nextSibling ); + } + }); + }, + + // keepData is for internal use only--do not document + remove: function( selector, keepData ) { + var elem, + elems = selector ? jQuery.filter( selector, this ) : this, + i = 0; + + for ( ; (elem = elems[i]) != null; i++ ) { + + if ( !keepData && elem.nodeType === 1 ) { + jQuery.cleanData( getAll( elem ) ); + } + + if ( elem.parentNode ) { + if ( keepData && jQuery.contains( elem.ownerDocument, elem ) ) { + setGlobalEval( getAll( elem, "script" ) ); + } + elem.parentNode.removeChild( elem ); + } + } + + return this; + }, + + empty: function() { + var elem, + i = 0; + + for ( ; (elem = this[i]) != null; i++ ) { + // Remove element nodes and prevent memory leaks + if ( elem.nodeType === 1 ) { + jQuery.cleanData( getAll( elem, false ) ); + } + + // Remove any remaining nodes + while ( elem.firstChild ) { + elem.removeChild( elem.firstChild ); + } + + // If this is a select, ensure that it displays empty (#12336) + // Support: IE<9 + if ( elem.options && jQuery.nodeName( elem, "select" ) ) { + elem.options.length = 0; + } + } + + return this; + }, + + clone: function( dataAndEvents, deepDataAndEvents ) { + dataAndEvents = dataAndEvents == null ? false : dataAndEvents; + deepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents; + + return this.map( function () { + return jQuery.clone( this, dataAndEvents, deepDataAndEvents ); + }); + }, + + html: function( value ) { + return jQuery.access( this, function( value ) { + var elem = this[0] || {}, + i = 0, + l = this.length; + + if ( value === undefined ) { + return elem.nodeType === 1 ? + elem.innerHTML.replace( rinlinejQuery, "" ) : + undefined; + } + + // See if we can take a shortcut and just use innerHTML + if ( typeof value === "string" && !rnoInnerhtml.test( value ) && + ( jQuery.support.htmlSerialize || !rnoshimcache.test( value ) ) && + ( jQuery.support.leadingWhitespace || !rleadingWhitespace.test( value ) ) && + !wrapMap[ ( rtagName.exec( value ) || ["", ""] )[1].toLowerCase() ] ) { + + value = value.replace( rxhtmlTag, "<$1>" ); + + try { + for (; i < l; i++ ) { + // Remove element nodes and prevent memory leaks + elem = this[i] || {}; + if ( elem.nodeType === 1 ) { + jQuery.cleanData( getAll( elem, false ) ); + elem.innerHTML = value; + } + } + + elem = 0; + + // If using innerHTML throws an exception, use the fallback method + } catch(e) {} + } + + if ( elem ) { + this.empty().append( value ); + } + }, null, value, arguments.length ); + }, + + replaceWith: function() { + var + // Snapshot the DOM in case .domManip sweeps something relevant into its fragment + args = jQuery.map( this, function( elem ) { + return [ elem.nextSibling, elem.parentNode ]; + }), + i = 0; + + // Make the changes, replacing each context element with the new content + this.domManip( arguments, function( elem ) { + var next = args[ i++ ], + parent = args[ i++ ]; + + if ( parent ) { + // Don't use the snapshot next if it has moved (#13810) + if ( next && next.parentNode !== parent ) { + next = this.nextSibling; + } + jQuery( this ).remove(); + parent.insertBefore( elem, next ); + } + // Allow new content to include elements from the context set + }, true ); + + // Force removal if there was no new content (e.g., from empty arguments) + return i ? this : this.remove(); + }, + + detach: function( selector ) { + return this.remove( selector, true ); + }, + + domManip: function( args, callback, allowIntersection ) { + + // Flatten any nested arrays + args = core_concat.apply( [], args ); + + var first, node, hasScripts, + scripts, doc, fragment, + i = 0, + l = this.length, + set = this, + iNoClone = l - 1, + value = args[0], + isFunction = jQuery.isFunction( value ); + + // We can't cloneNode fragments that contain checked, in WebKit + if ( isFunction || !( l <= 1 || typeof value !== "string" || jQuery.support.checkClone || !rchecked.test( value ) ) ) { + return this.each(function( index ) { + var self = set.eq( index ); + if ( isFunction ) { + args[0] = value.call( this, index, self.html() ); + } + self.domManip( args, callback, allowIntersection ); + }); + } + + if ( l ) { + fragment = jQuery.buildFragment( args, this[ 0 ].ownerDocument, false, !allowIntersection && this ); + first = fragment.firstChild; + + if ( fragment.childNodes.length === 1 ) { + fragment = first; + } + + if ( first ) { + scripts = jQuery.map( getAll( fragment, "script" ), disableScript ); + hasScripts = scripts.length; + + // Use the original fragment for the last item instead of the first because it can end up + // being emptied incorrectly in certain situations (#8070). + for ( ; i < l; i++ ) { + node = fragment; + + if ( i !== iNoClone ) { + node = jQuery.clone( node, true, true ); + + // Keep references to cloned scripts for later restoration + if ( hasScripts ) { + jQuery.merge( scripts, getAll( node, "script" ) ); + } + } + + callback.call( this[i], node, i ); + } + + if ( hasScripts ) { + doc = scripts[ scripts.length - 1 ].ownerDocument; + + // Reenable scripts + jQuery.map( scripts, restoreScript ); + + // Evaluate executable scripts on first document insertion + for ( i = 0; i < hasScripts; i++ ) { + node = scripts[ i ]; + if ( rscriptType.test( node.type || "" ) && + !jQuery._data( node, "globalEval" ) && jQuery.contains( doc, node ) ) { + + if ( node.src ) { + // Hope ajax is available... + jQuery._evalUrl( node.src ); + } else { + jQuery.globalEval( ( node.text || node.textContent || node.innerHTML || "" ).replace( rcleanScript, "" ) ); + } + } + } + } + + // Fix #11809: Avoid leaking memory + fragment = first = null; + } + } + + return this; + } +}); + +// Support: IE<8 +// Manipulating tables requires a tbody +function manipulationTarget( elem, content ) { + return jQuery.nodeName( elem, "table" ) && + jQuery.nodeName( content.nodeType === 1 ? content : content.firstChild, "tr" ) ? + + elem.getElementsByTagName("tbody")[0] || + elem.appendChild( elem.ownerDocument.createElement("tbody") ) : + elem; +} + +// Replace/restore the type attribute of script elements for safe DOM manipulation +function disableScript( elem ) { + elem.type = (jQuery.find.attr( elem, "type" ) !== null) + "/" + elem.type; + return elem; +} +function restoreScript( elem ) { + var match = rscriptTypeMasked.exec( elem.type ); + if ( match ) { + elem.type = match[1]; + } else { + elem.removeAttribute("type"); + } + return elem; +} + +// Mark scripts as having already been evaluated +function setGlobalEval( elems, refElements ) { + var elem, + i = 0; + for ( ; (elem = elems[i]) != null; i++ ) { + jQuery._data( elem, "globalEval", !refElements || jQuery._data( refElements[i], "globalEval" ) ); + } +} + +function cloneCopyEvent( src, dest ) { + + if ( dest.nodeType !== 1 || !jQuery.hasData( src ) ) { + return; + } + + var type, i, l, + oldData = jQuery._data( src ), + curData = jQuery._data( dest, oldData ), + events = oldData.events; + + if ( events ) { + delete curData.handle; + curData.events = {}; + + for ( type in events ) { + for ( i = 0, l = events[ type ].length; i < l; i++ ) { + jQuery.event.add( dest, type, events[ type ][ i ] ); + } + } + } + + // make the cloned public data object a copy from the original + if ( curData.data ) { + curData.data = jQuery.extend( {}, curData.data ); + } +} + +function fixCloneNodeIssues( src, dest ) { + var nodeName, e, data; + + // We do not need to do anything for non-Elements + if ( dest.nodeType !== 1 ) { + return; + } + + nodeName = dest.nodeName.toLowerCase(); + + // IE6-8 copies events bound via attachEvent when using cloneNode. + if ( !jQuery.support.noCloneEvent && dest[ jQuery.expando ] ) { + data = jQuery._data( dest ); + + for ( e in data.events ) { + jQuery.removeEvent( dest, e, data.handle ); + } + + // Event data gets referenced instead of copied if the expando gets copied too + dest.removeAttribute( jQuery.expando ); + } + + // IE blanks contents when cloning scripts, and tries to evaluate newly-set text + if ( nodeName === "script" && dest.text !== src.text ) { + disableScript( dest ).text = src.text; + restoreScript( dest ); + + // IE6-10 improperly clones children of object elements using classid. + // IE10 throws NoModificationAllowedError if parent is null, #12132. + } else if ( nodeName === "object" ) { + if ( dest.parentNode ) { + dest.outerHTML = src.outerHTML; + } + + // This path appears unavoidable for IE9. When cloning an object + // element in IE9, the outerHTML strategy above is not sufficient. + // If the src has innerHTML and the destination does not, + // copy the src.innerHTML into the dest.innerHTML. #10324 + if ( jQuery.support.html5Clone && ( src.innerHTML && !jQuery.trim(dest.innerHTML) ) ) { + dest.innerHTML = src.innerHTML; + } + + } else if ( nodeName === "input" && manipulation_rcheckableType.test( src.type ) ) { + // IE6-8 fails to persist the checked state of a cloned checkbox + // or radio button. Worse, IE6-7 fail to give the cloned element + // a checked appearance if the defaultChecked value isn't also set + + dest.defaultChecked = dest.checked = src.checked; + + // IE6-7 get confused and end up setting the value of a cloned + // checkbox/radio button to an empty string instead of "on" + if ( dest.value !== src.value ) { + dest.value = src.value; + } + + // IE6-8 fails to return the selected option to the default selected + // state when cloning options + } else if ( nodeName === "option" ) { + dest.defaultSelected = dest.selected = src.defaultSelected; + + // IE6-8 fails to set the defaultValue to the correct value when + // cloning other types of input fields + } else if ( nodeName === "input" || nodeName === "textarea" ) { + dest.defaultValue = src.defaultValue; + } +} + +jQuery.each({ + appendTo: "append", + prependTo: "prepend", + insertBefore: "before", + insertAfter: "after", + replaceAll: "replaceWith" +}, function( name, original ) { + jQuery.fn[ name ] = function( selector ) { + var elems, + i = 0, + ret = [], + insert = jQuery( selector ), + last = insert.length - 1; + + for ( ; i <= last; i++ ) { + elems = i === last ? this : this.clone(true); + jQuery( insert[i] )[ original ]( elems ); + + // Modern browsers can apply jQuery collections as arrays, but oldIE needs a .get() + core_push.apply( ret, elems.get() ); + } + + return this.pushStack( ret ); + }; +}); + +function getAll( context, tag ) { + var elems, elem, + i = 0, + found = typeof context.getElementsByTagName !== core_strundefined ? context.getElementsByTagName( tag || "*" ) : + typeof context.querySelectorAll !== core_strundefined ? context.querySelectorAll( tag || "*" ) : + undefined; + + if ( !found ) { + for ( found = [], elems = context.childNodes || context; (elem = elems[i]) != null; i++ ) { + if ( !tag || jQuery.nodeName( elem, tag ) ) { + found.push( elem ); + } else { + jQuery.merge( found, getAll( elem, tag ) ); + } + } + } + + return tag === undefined || tag && jQuery.nodeName( context, tag ) ? + jQuery.merge( [ context ], found ) : + found; +} + +// Used in buildFragment, fixes the defaultChecked property +function fixDefaultChecked( elem ) { + if ( manipulation_rcheckableType.test( elem.type ) ) { + elem.defaultChecked = elem.checked; + } +} + +jQuery.extend({ + clone: function( elem, dataAndEvents, deepDataAndEvents ) { + var destElements, node, clone, i, srcElements, + inPage = jQuery.contains( elem.ownerDocument, elem ); + + if ( jQuery.support.html5Clone || jQuery.isXMLDoc(elem) || !rnoshimcache.test( "<" + elem.nodeName + ">" ) ) { + clone = elem.cloneNode( true ); + + // IE<=8 does not properly clone detached, unknown element nodes + } else { + fragmentDiv.innerHTML = elem.outerHTML; + fragmentDiv.removeChild( clone = fragmentDiv.firstChild ); + } + + if ( (!jQuery.support.noCloneEvent || !jQuery.support.noCloneChecked) && + (elem.nodeType === 1 || elem.nodeType === 11) && !jQuery.isXMLDoc(elem) ) { + + // We eschew Sizzle here for performance reasons: http://jsperf.com/getall-vs-sizzle/2 + destElements = getAll( clone ); + srcElements = getAll( elem ); + + // Fix all IE cloning issues + for ( i = 0; (node = srcElements[i]) != null; ++i ) { + // Ensure that the destination node is not null; Fixes #9587 + if ( destElements[i] ) { + fixCloneNodeIssues( node, destElements[i] ); + } + } + } + + // Copy the events from the original to the clone + if ( dataAndEvents ) { + if ( deepDataAndEvents ) { + srcElements = srcElements || getAll( elem ); + destElements = destElements || getAll( clone ); + + for ( i = 0; (node = srcElements[i]) != null; i++ ) { + cloneCopyEvent( node, destElements[i] ); + } + } else { + cloneCopyEvent( elem, clone ); + } + } + + // Preserve script evaluation history + destElements = getAll( clone, "script" ); + if ( destElements.length > 0 ) { + setGlobalEval( destElements, !inPage && getAll( elem, "script" ) ); + } + + destElements = srcElements = node = null; + + // Return the cloned set + return clone; + }, + + buildFragment: function( elems, context, scripts, selection ) { + var j, elem, contains, + tmp, tag, tbody, wrap, + l = elems.length, + + // Ensure a safe fragment + safe = createSafeFragment( context ), + + nodes = [], + i = 0; + + for ( ; i < l; i++ ) { + elem = elems[ i ]; + + if ( elem || elem === 0 ) { + + // Add nodes directly + if ( jQuery.type( elem ) === "object" ) { + jQuery.merge( nodes, elem.nodeType ? [ elem ] : elem ); + + // Convert non-html into a text node + } else if ( !rhtml.test( elem ) ) { + nodes.push( context.createTextNode( elem ) ); + + // Convert html into DOM nodes + } else { + tmp = tmp || safe.appendChild( context.createElement("div") ); + + // Deserialize a standard representation + tag = ( rtagName.exec( elem ) || ["", ""] )[1].toLowerCase(); + wrap = wrapMap[ tag ] || wrapMap._default; + + tmp.innerHTML = wrap[1] + elem.replace( rxhtmlTag, "<$1>" ) + wrap[2]; + + // Descend through wrappers to the right content + j = wrap[0]; + while ( j-- ) { + tmp = tmp.lastChild; + } + + // Manually add leading whitespace removed by IE + if ( !jQuery.support.leadingWhitespace && rleadingWhitespace.test( elem ) ) { + nodes.push( context.createTextNode( rleadingWhitespace.exec( elem )[0] ) ); + } + + // Remove IE's autoinserted from table fragments + if ( !jQuery.support.tbody ) { + + // String was a , *may* have spurious + elem = tag === "table" && !rtbody.test( elem ) ? + tmp.firstChild : + + // String was a bare or + wrap[1] === "
" && !rtbody.test( elem ) ? + tmp : + 0; + + j = elem && elem.childNodes.length; + while ( j-- ) { + if ( jQuery.nodeName( (tbody = elem.childNodes[j]), "tbody" ) && !tbody.childNodes.length ) { + elem.removeChild( tbody ); + } + } + } + + jQuery.merge( nodes, tmp.childNodes ); + + // Fix #12392 for WebKit and IE > 9 + tmp.textContent = ""; + + // Fix #12392 for oldIE + while ( tmp.firstChild ) { + tmp.removeChild( tmp.firstChild ); + } + + // Remember the top-level container for proper cleanup + tmp = safe.lastChild; + } + } + } + + // Fix #11356: Clear elements from fragment + if ( tmp ) { + safe.removeChild( tmp ); + } + + // Reset defaultChecked for any radios and checkboxes + // about to be appended to the DOM in IE 6/7 (#8060) + if ( !jQuery.support.appendChecked ) { + jQuery.grep( getAll( nodes, "input" ), fixDefaultChecked ); + } + + i = 0; + while ( (elem = nodes[ i++ ]) ) { + + // #4087 - If origin and destination elements are the same, and this is + // that element, do not do anything + if ( selection && jQuery.inArray( elem, selection ) !== -1 ) { + continue; + } + + contains = jQuery.contains( elem.ownerDocument, elem ); + + // Append to fragment + tmp = getAll( safe.appendChild( elem ), "script" ); + + // Preserve script evaluation history + if ( contains ) { + setGlobalEval( tmp ); + } + + // Capture executables + if ( scripts ) { + j = 0; + while ( (elem = tmp[ j++ ]) ) { + if ( rscriptType.test( elem.type || "" ) ) { + scripts.push( elem ); + } + } + } + } + + tmp = null; + + return safe; + }, + + cleanData: function( elems, /* internal */ acceptData ) { + var elem, type, id, data, + i = 0, + internalKey = jQuery.expando, + cache = jQuery.cache, + deleteExpando = jQuery.support.deleteExpando, + special = jQuery.event.special; + + for ( ; (elem = elems[i]) != null; i++ ) { + + if ( acceptData || jQuery.acceptData( elem ) ) { + + id = elem[ internalKey ]; + data = id && cache[ id ]; + + if ( data ) { + if ( data.events ) { + for ( type in data.events ) { + if ( special[ type ] ) { + jQuery.event.remove( elem, type ); + + // This is a shortcut to avoid jQuery.event.remove's overhead + } else { + jQuery.removeEvent( elem, type, data.handle ); + } + } + } + + // Remove cache only if it was not already removed by jQuery.event.remove + if ( cache[ id ] ) { + + delete cache[ id ]; + + // IE does not allow us to delete expando properties from nodes, + // nor does it have a removeAttribute function on Document nodes; + // we must handle all of these cases + if ( deleteExpando ) { + delete elem[ internalKey ]; + + } else if ( typeof elem.removeAttribute !== core_strundefined ) { + elem.removeAttribute( internalKey ); + + } else { + elem[ internalKey ] = null; + } + + core_deletedIds.push( id ); + } + } + } + } + }, + + _evalUrl: function( url ) { + return jQuery.ajax({ + url: url, + type: "GET", + dataType: "script", + async: false, + global: false, + "throws": true + }); + } +}); +jQuery.fn.extend({ + wrapAll: function( html ) { + if ( jQuery.isFunction( html ) ) { + return this.each(function(i) { + jQuery(this).wrapAll( html.call(this, i) ); + }); + } + + if ( this[0] ) { + // The elements to wrap the target around + var wrap = jQuery( html, this[0].ownerDocument ).eq(0).clone(true); + + if ( this[0].parentNode ) { + wrap.insertBefore( this[0] ); + } + + wrap.map(function() { + var elem = this; + + while ( elem.firstChild && elem.firstChild.nodeType === 1 ) { + elem = elem.firstChild; + } + + return elem; + }).append( this ); + } + + return this; + }, + + wrapInner: function( html ) { + if ( jQuery.isFunction( html ) ) { + return this.each(function(i) { + jQuery(this).wrapInner( html.call(this, i) ); + }); + } + + return this.each(function() { + var self = jQuery( this ), + contents = self.contents(); + + if ( contents.length ) { + contents.wrapAll( html ); + + } else { + self.append( html ); + } + }); + }, + + wrap: function( html ) { + var isFunction = jQuery.isFunction( html ); + + return this.each(function(i) { + jQuery( this ).wrapAll( isFunction ? html.call(this, i) : html ); + }); + }, + + unwrap: function() { + return this.parent().each(function() { + if ( !jQuery.nodeName( this, "body" ) ) { + jQuery( this ).replaceWith( this.childNodes ); + } + }).end(); + } +}); +var iframe, getStyles, curCSS, + ralpha = /alpha\([^)]*\)/i, + ropacity = /opacity\s*=\s*([^)]*)/, + rposition = /^(top|right|bottom|left)$/, + // swappable if display is none or starts with table except "table", "table-cell", or "table-caption" + // see here for display values: https://developer.mozilla.org/en-US/docs/CSS/display + rdisplayswap = /^(none|table(?!-c[ea]).+)/, + rmargin = /^margin/, + rnumsplit = new RegExp( "^(" + core_pnum + ")(.*)$", "i" ), + rnumnonpx = new RegExp( "^(" + core_pnum + ")(?!px)[a-z%]+$", "i" ), + rrelNum = new RegExp( "^([+-])=(" + core_pnum + ")", "i" ), + elemdisplay = { BODY: "block" }, + + cssShow = { position: "absolute", visibility: "hidden", display: "block" }, + cssNormalTransform = { + letterSpacing: 0, + fontWeight: 400 + }, + + cssExpand = [ "Top", "Right", "Bottom", "Left" ], + cssPrefixes = [ "Webkit", "O", "Moz", "ms" ]; + +// return a css property mapped to a potentially vendor prefixed property +function vendorPropName( style, name ) { + + // shortcut for names that are not vendor prefixed + if ( name in style ) { + return name; + } + + // check for vendor prefixed names + var capName = name.charAt(0).toUpperCase() + name.slice(1), + origName = name, + i = cssPrefixes.length; + + while ( i-- ) { + name = cssPrefixes[ i ] + capName; + if ( name in style ) { + return name; + } + } + + return origName; +} + +function isHidden( elem, el ) { + // isHidden might be called from jQuery#filter function; + // in that case, element will be second argument + elem = el || elem; + return jQuery.css( elem, "display" ) === "none" || !jQuery.contains( elem.ownerDocument, elem ); +} + +function showHide( elements, show ) { + var display, elem, hidden, + values = [], + index = 0, + length = elements.length; + + for ( ; index < length; index++ ) { + elem = elements[ index ]; + if ( !elem.style ) { + continue; + } + + values[ index ] = jQuery._data( elem, "olddisplay" ); + display = elem.style.display; + if ( show ) { + // Reset the inline display of this element to learn if it is + // being hidden by cascaded rules or not + if ( !values[ index ] && display === "none" ) { + elem.style.display = ""; + } + + // Set elements which have been overridden with display: none + // in a stylesheet to whatever the default browser style is + // for such an element + if ( elem.style.display === "" && isHidden( elem ) ) { + values[ index ] = jQuery._data( elem, "olddisplay", css_defaultDisplay(elem.nodeName) ); + } + } else { + + if ( !values[ index ] ) { + hidden = isHidden( elem ); + + if ( display && display !== "none" || !hidden ) { + jQuery._data( elem, "olddisplay", hidden ? display : jQuery.css( elem, "display" ) ); + } + } + } + } + + // Set the display of most of the elements in a second loop + // to avoid the constant reflow + for ( index = 0; index < length; index++ ) { + elem = elements[ index ]; + if ( !elem.style ) { + continue; + } + if ( !show || elem.style.display === "none" || elem.style.display === "" ) { + elem.style.display = show ? values[ index ] || "" : "none"; + } + } + + return elements; +} + +jQuery.fn.extend({ + css: function( name, value ) { + return jQuery.access( this, function( elem, name, value ) { + var len, styles, + map = {}, + i = 0; + + if ( jQuery.isArray( name ) ) { + styles = getStyles( elem ); + len = name.length; + + for ( ; i < len; i++ ) { + map[ name[ i ] ] = jQuery.css( elem, name[ i ], false, styles ); + } + + return map; + } + + return value !== undefined ? + jQuery.style( elem, name, value ) : + jQuery.css( elem, name ); + }, name, value, arguments.length > 1 ); + }, + show: function() { + return showHide( this, true ); + }, + hide: function() { + return showHide( this ); + }, + toggle: function( state ) { + var bool = typeof state === "boolean"; + + return this.each(function() { + if ( bool ? state : isHidden( this ) ) { + jQuery( this ).show(); + } else { + jQuery( this ).hide(); + } + }); + } +}); + +jQuery.extend({ + // Add in style property hooks for overriding the default + // behavior of getting and setting a style property + cssHooks: { + opacity: { + get: function( elem, computed ) { + if ( computed ) { + // We should always get a number back from opacity + var ret = curCSS( elem, "opacity" ); + return ret === "" ? "1" : ret; + } + } + } + }, + + // Don't automatically add "px" to these possibly-unitless properties + cssNumber: { + "columnCount": true, + "fillOpacity": true, + "fontWeight": true, + "lineHeight": true, + "opacity": true, + "orphans": true, + "widows": true, + "zIndex": true, + "zoom": true + }, + + // Add in properties whose names you wish to fix before + // setting or getting the value + cssProps: { + // normalize float css property + "float": jQuery.support.cssFloat ? "cssFloat" : "styleFloat" + }, + + // Get and set the style property on a DOM Node + style: function( elem, name, value, extra ) { + // Don't set styles on text and comment nodes + if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) { + return; + } + + // Make sure that we're working with the right name + var ret, type, hooks, + origName = jQuery.camelCase( name ), + style = elem.style; + + name = jQuery.cssProps[ origName ] || ( jQuery.cssProps[ origName ] = vendorPropName( style, origName ) ); + + // gets hook for the prefixed version + // followed by the unprefixed version + hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; + + // Check if we're setting a value + if ( value !== undefined ) { + type = typeof value; + + // convert relative number strings (+= or -=) to relative numbers. #7345 + if ( type === "string" && (ret = rrelNum.exec( value )) ) { + value = ( ret[1] + 1 ) * ret[2] + parseFloat( jQuery.css( elem, name ) ); + // Fixes bug #9237 + type = "number"; + } + + // Make sure that NaN and null values aren't set. See: #7116 + if ( value == null || type === "number" && isNaN( value ) ) { + return; + } + + // If a number was passed in, add 'px' to the (except for certain CSS properties) + if ( type === "number" && !jQuery.cssNumber[ origName ] ) { + value += "px"; + } + + // Fixes #8908, it can be done more correctly by specifing setters in cssHooks, + // but it would mean to define eight (for every problematic property) identical functions + if ( !jQuery.support.clearCloneStyle && value === "" && name.indexOf("background") === 0 ) { + style[ name ] = "inherit"; + } + + // If a hook was provided, use that value, otherwise just set the specified value + if ( !hooks || !("set" in hooks) || (value = hooks.set( elem, value, extra )) !== undefined ) { + + // Wrapped to prevent IE from throwing errors when 'invalid' values are provided + // Fixes bug #5509 + try { + style[ name ] = value; + } catch(e) {} + } + + } else { + // If a hook was provided get the non-computed value from there + if ( hooks && "get" in hooks && (ret = hooks.get( elem, false, extra )) !== undefined ) { + return ret; + } + + // Otherwise just get the value from the style object + return style[ name ]; + } + }, + + css: function( elem, name, extra, styles ) { + var num, val, hooks, + origName = jQuery.camelCase( name ); + + // Make sure that we're working with the right name + name = jQuery.cssProps[ origName ] || ( jQuery.cssProps[ origName ] = vendorPropName( elem.style, origName ) ); + + // gets hook for the prefixed version + // followed by the unprefixed version + hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; + + // If a hook was provided get the computed value from there + if ( hooks && "get" in hooks ) { + val = hooks.get( elem, true, extra ); + } + + // Otherwise, if a way to get the computed value exists, use that + if ( val === undefined ) { + val = curCSS( elem, name, styles ); + } + + //convert "normal" to computed value + if ( val === "normal" && name in cssNormalTransform ) { + val = cssNormalTransform[ name ]; + } + + // Return, converting to number if forced or a qualifier was provided and val looks numeric + if ( extra === "" || extra ) { + num = parseFloat( val ); + return extra === true || jQuery.isNumeric( num ) ? num || 0 : val; + } + return val; + } +}); + +// NOTE: we've included the "window" in window.getComputedStyle +// because jsdom on node.js will break without it. +if ( window.getComputedStyle ) { + getStyles = function( elem ) { + return window.getComputedStyle( elem, null ); + }; + + curCSS = function( elem, name, _computed ) { + var width, minWidth, maxWidth, + computed = _computed || getStyles( elem ), + + // getPropertyValue is only needed for .css('filter') in IE9, see #12537 + ret = computed ? computed.getPropertyValue( name ) || computed[ name ] : undefined, + style = elem.style; + + if ( computed ) { + + if ( ret === "" && !jQuery.contains( elem.ownerDocument, elem ) ) { + ret = jQuery.style( elem, name ); + } + + // A tribute to the "awesome hack by Dean Edwards" + // Chrome < 17 and Safari 5.0 uses "computed value" instead of "used value" for margin-right + // Safari 5.1.7 (at least) returns percentage for a larger set of values, but width seems to be reliably pixels + // this is against the CSSOM draft spec: http://dev.w3.org/csswg/cssom/#resolved-values + if ( rnumnonpx.test( ret ) && rmargin.test( name ) ) { + + // Remember the original values + width = style.width; + minWidth = style.minWidth; + maxWidth = style.maxWidth; + + // Put in the new values to get a computed value out + style.minWidth = style.maxWidth = style.width = ret; + ret = computed.width; + + // Revert the changed values + style.width = width; + style.minWidth = minWidth; + style.maxWidth = maxWidth; + } + } + + return ret; + }; +} else if ( document.documentElement.currentStyle ) { + getStyles = function( elem ) { + return elem.currentStyle; + }; + + curCSS = function( elem, name, _computed ) { + var left, rs, rsLeft, + computed = _computed || getStyles( elem ), + ret = computed ? computed[ name ] : undefined, + style = elem.style; + + // Avoid setting ret to empty string here + // so we don't default to auto + if ( ret == null && style && style[ name ] ) { + ret = style[ name ]; + } + + // From the awesome hack by Dean Edwards + // http://erik.eae.net/archives/2007/07/27/18.54.15/#comment-102291 + + // If we're not dealing with a regular pixel number + // but a number that has a weird ending, we need to convert it to pixels + // but not position css attributes, as those are proportional to the parent element instead + // and we can't measure the parent instead because it might trigger a "stacking dolls" problem + if ( rnumnonpx.test( ret ) && !rposition.test( name ) ) { + + // Remember the original values + left = style.left; + rs = elem.runtimeStyle; + rsLeft = rs && rs.left; + + // Put in the new values to get a computed value out + if ( rsLeft ) { + rs.left = elem.currentStyle.left; + } + style.left = name === "fontSize" ? "1em" : ret; + ret = style.pixelLeft + "px"; + + // Revert the changed values + style.left = left; + if ( rsLeft ) { + rs.left = rsLeft; + } + } + + return ret === "" ? "auto" : ret; + }; +} + +function setPositiveNumber( elem, value, subtract ) { + var matches = rnumsplit.exec( value ); + return matches ? + // Guard against undefined "subtract", e.g., when used as in cssHooks + Math.max( 0, matches[ 1 ] - ( subtract || 0 ) ) + ( matches[ 2 ] || "px" ) : + value; +} + +function augmentWidthOrHeight( elem, name, extra, isBorderBox, styles ) { + var i = extra === ( isBorderBox ? "border" : "content" ) ? + // If we already have the right measurement, avoid augmentation + 4 : + // Otherwise initialize for horizontal or vertical properties + name === "width" ? 1 : 0, + + val = 0; + + for ( ; i < 4; i += 2 ) { + // both box models exclude margin, so add it if we want it + if ( extra === "margin" ) { + val += jQuery.css( elem, extra + cssExpand[ i ], true, styles ); + } + + if ( isBorderBox ) { + // border-box includes padding, so remove it if we want content + if ( extra === "content" ) { + val -= jQuery.css( elem, "padding" + cssExpand[ i ], true, styles ); + } + + // at this point, extra isn't border nor margin, so remove border + if ( extra !== "margin" ) { + val -= jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); + } + } else { + // at this point, extra isn't content, so add padding + val += jQuery.css( elem, "padding" + cssExpand[ i ], true, styles ); + + // at this point, extra isn't content nor padding, so add border + if ( extra !== "padding" ) { + val += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); + } + } + } + + return val; +} + +function getWidthOrHeight( elem, name, extra ) { + + // Start with offset property, which is equivalent to the border-box value + var valueIsBorderBox = true, + val = name === "width" ? elem.offsetWidth : elem.offsetHeight, + styles = getStyles( elem ), + isBorderBox = jQuery.support.boxSizing && jQuery.css( elem, "boxSizing", false, styles ) === "border-box"; + + // some non-html elements return undefined for offsetWidth, so check for null/undefined + // svg - https://bugzilla.mozilla.org/show_bug.cgi?id=649285 + // MathML - https://bugzilla.mozilla.org/show_bug.cgi?id=491668 + if ( val <= 0 || val == null ) { + // Fall back to computed then uncomputed css if necessary + val = curCSS( elem, name, styles ); + if ( val < 0 || val == null ) { + val = elem.style[ name ]; + } + + // Computed unit is not pixels. Stop here and return. + if ( rnumnonpx.test(val) ) { + return val; + } + + // we need the check for style in case a browser which returns unreliable values + // for getComputedStyle silently falls back to the reliable elem.style + valueIsBorderBox = isBorderBox && ( jQuery.support.boxSizingReliable || val === elem.style[ name ] ); + + // Normalize "", auto, and prepare for extra + val = parseFloat( val ) || 0; + } + + // use the active box-sizing model to add/subtract irrelevant styles + return ( val + + augmentWidthOrHeight( + elem, + name, + extra || ( isBorderBox ? "border" : "content" ), + valueIsBorderBox, + styles + ) + ) + "px"; +} + +// Try to determine the default display value of an element +function css_defaultDisplay( nodeName ) { + var doc = document, + display = elemdisplay[ nodeName ]; + + if ( !display ) { + display = actualDisplay( nodeName, doc ); + + // If the simple way fails, read from inside an iframe + if ( display === "none" || !display ) { + // Use the already-created iframe if possible + iframe = ( iframe || + jQuery("'; @@ -314,10 +314,13 @@ class GlmMembersFront_members_detail extends GlmDataMemberInfo } else { $memberData['video_embed'] = "Could not find video"; } - + } - $expanded = htmlspecialchars($_GET['expanded']); + $expanded = false; + if (isset($_GET['expanded'])) { + $expanded = htmlspecialchars($_GET['expanded']); + } // Since the ID we recieved with the member data is the pointer to the member info record, replace it with member ID $memberData['id'] = $memberData['member_pointer']; diff --git a/setup/databaseScripts/create_database_V1.1.11.sql b/setup/databaseScripts/create_database_V1.1.12.sql similarity index 94% rename from setup/databaseScripts/create_database_V1.1.11.sql rename to setup/databaseScripts/create_database_V1.1.12.sql index 65645bdb..7460e492 100644 --- a/setup/databaseScripts/create_database_V1.1.11.sql +++ b/setup/databaseScripts/create_database_V1.1.12.sql @@ -96,6 +96,20 @@ CREATE TABLE {prefix}cities ( ---- +-- Member Click Through Stats Data - Totals of URL click-throughs - Preserved for 2 years +CREATE TABLE {prefix}clickthrough_stats ( + member INT NULL, -- ID of member + stat_type INT NULL, -- Type of stat 1 = day, 2 = week, 3 = month + stat_date DATE NULL, -- Date for which these stats are accumulated (date or first date of week or month) + clicks INT NULL, -- Number of Clicks + PRIMARY KEY (member, stat_type, stat_date), + INDEX (member), + INDEX (stat_type), + INDEX (stat_date) +); + +---- + -- Files - Files are stored under /wp-content/uploads/glm-member-db/files/ CREATE TABLE {prefix}files ( id INT NOT NULL AUTO_INCREMENT, @@ -155,6 +169,20 @@ CREATE TABLE {prefix}members ( ---- +-- Member Detail Display Stats Data - Totals of times detail page is displayed - Preserved for 2 years +CREATE TABLE {prefix}member_detail_stats ( + member INT NULL, -- ID of member + stat_type INT NULL, -- Type of stat 1 = day, 2 = week, 3 = month + stat_date DATE NULL, -- Date for which these stats are accumulated (date or first date of week or month) + clicks INT NULL, -- Number of Clicks + PRIMARY KEY (member, stat_type, stat_date), + INDEX (member), + INDEX (stat_type), + INDEX (stat_date) +); + +---- + -- Member information version record - May be multiples per member - Only one with stauts "Active" for a distinct date range CREATE TABLE {prefix}member_info ( id INT NOT NULL AUTO_INCREMENT, diff --git a/setup/databaseScripts/dbVersions.php b/setup/databaseScripts/dbVersions.php index 76a145c3..29e4f4cb 100644 --- a/setup/databaseScripts/dbVersions.php +++ b/setup/databaseScripts/dbVersions.php @@ -43,6 +43,7 @@ $glmMembersDbVersions = array( '1.1.9' => array('version' => '1.1.9', 'tables' => 16, 'date' => '6/13/16'), '1.1.10' => array('version' => '1.1.10', 'tables' => 16, 'date' => '6/16/16'), '1.1.11' => array('version' => '1.1.11', 'tables' => 16, 'date' => '6/21/16'), + '1.1.12' => array('version' => '1.1.12', 'tables' => 18, 'date' => '8/1/16'), ); diff --git a/setup/databaseScripts/drop_database_V1.1.9.sql b/setup/databaseScripts/drop_database_V1.1.12.sql similarity index 90% rename from setup/databaseScripts/drop_database_V1.1.9.sql rename to setup/databaseScripts/drop_database_V1.1.12.sql index 27d4c877..8d5d29f2 100644 --- a/setup/databaseScripts/drop_database_V1.1.9.sql +++ b/setup/databaseScripts/drop_database_V1.1.12.sql @@ -9,9 +9,11 @@ DROP TABLE IF EXISTS {prefix}amenity_ref, {prefix}category_member_info, {prefix}cities, + {prefix}clickthrough_stats, {prefix}images, {prefix}files, {prefix}members, + {prefix}member_detail_stats, {prefix}member_info, {prefix}member_type, {prefix}regions, diff --git a/setup/databaseScripts/update_database_V1.1.12.sql b/setup/databaseScripts/update_database_V1.1.12.sql new file mode 100644 index 00000000..0b103e6c --- /dev/null +++ b/setup/databaseScripts/update_database_V1.1.12.sql @@ -0,0 +1,33 @@ +-- Gaslight Media Members Database +-- File Created: 6/21/16 15:19:15 +-- Database Version: 1.1.12 +-- Database Update From Previous Version Script +-- +-- To permit each query below to be executed separately, +-- all queries must be separated by a line with four dashses + +-- Member Click Through Stats Data - Totals of URL click-throughs - Preserved for 2 years +CREATE TABLE {prefix}clickthrough_stats ( + member INT NULL, -- ID of member + stat_type INT NULL, -- Type of stat 1 = day, 2 = week, 3 = month + stat_date DATE NULL, -- Date for which these stats are accumulated (date or first date of week or month) + clicks INT NULL, -- Number of Clicks + PRIMARY KEY (member, stat_type, stat_date), + INDEX (member), + INDEX (stat_type), + INDEX (stat_date) +); + +---- + +-- Member Detail Display Stats Data - Totals of times detail page is displayed - Preserved for 2 years +CREATE TABLE {prefix}member_detail_stats ( + member INT NULL, -- ID of member + stat_type INT NULL, -- Type of stat 1 = day, 2 = week, 3 = month + stat_date DATE NULL, -- Date for which these stats are accumulated (date or first date of week or month) + clicks INT NULL, -- Number of Clicks + PRIMARY KEY (member, stat_type, stat_date), + INDEX (member), + INDEX (stat_type), + INDEX (stat_date) +); \ No newline at end of file diff --git a/setup/standardTemplateParams.php b/setup/standardTemplateParams.php index 981c2a57..0d2a9298 100644 --- a/setup/standardTemplateParams.php +++ b/setup/standardTemplateParams.php @@ -26,6 +26,7 @@ $smarty->templateAssign('glmPluginName', GLM_MEMBERS_PLUGIN_NAME ); $smarty->templateAssign('siteBaseUrl', GLM_MEMBERS_SITE_BASE_URL); $smarty->templateAssign('assetsUrl', GLM_MEMBERS_PLUGIN_ASSETS_URL); +$smarty->templateAssign('jsUrl', GLM_MEMBERS_PLUGIN_JS_URL); $smarty->templateAssign('baseUrl', GLM_MEMBERS_PLUGIN_BASE_URL); $smarty->templateAssign('thisUrl', GLM_MEMBERS_PLUGIN_CURRENT_URL ); $smarty->templateAssign('ajaxUrl', GLM_MEMBERS_PLUGIN_ADMIN_AJAX_URL ); diff --git a/setup/validActions.php b/setup/validActions.php index 6f71eedc..4db1dbb3 100644 --- a/setup/validActions.php +++ b/setup/validActions.php @@ -35,22 +35,25 @@ $glmMembersValidActions = array( 'ajax' => array( 'imageUpload' => 'glm-member-db', 'newOldMemberIdsCsv' => 'glm-member-db', - 'membersListExport' => 'glm-member-db' + 'membersListExport' => 'glm-member-db', + 'memberClickThrough' => 'glm-member-db', + 'memberDetailClick' => 'glm-member-db', + 'memberGraphs' => 'glm-member-db' ), 'dashboardWidget' => array( - 'index' => 'glm-member-db', + 'index' => 'glm-member-db' ), 'members' => array( 'index' => 'glm-member-db', // member list 'list' => 'glm-member-db', 'reports' => 'glm-member-db', - 'other' => 'glm-member-db', + 'other' => 'glm-member-db' ), 'member' => array( 'index' => 'glm-member-db', // Member Dashboard 'memberInfo' => 'glm-member-db', 'memberEdit' => 'glm-member-db', - 'locations' => 'glm-member-db', + 'locations' => 'glm-member-db' ) , 'settings' => array( @@ -58,7 +61,7 @@ $glmMembersValidActions = array( 'categories' => 'glm-member-db', 'cities' => 'glm-member-db', 'regions' => 'glm-member-db', - 'amenities' => 'glm-member-db', + 'amenities' => 'glm-member-db' ), 'management' => array( 'index' => 'glm-member-db', // General Options @@ -68,24 +71,24 @@ $glmMembersValidActions = array( 'theme' => 'glm-member-db', 'import' => 'glm-member-db', 'addons' => 'glm-member-db', - 'hooks' => 'glm-member-db', + 'hooks' => 'glm-member-db' ), 'shortcodes' => array( 'index' => 'glm-member-db' ), 'error' => array( 'index' => 'glm-member-db', - 'badAction' => 'glm-member-db', + 'badAction' => 'glm-member-db' ) ), 'frontActions' => array( 'members' => array( 'list' => 'glm-member-db', - 'detail' => 'glm-member-db', + 'detail' => 'glm-member-db' ), 'error' => array( 'index' => 'glm-member-db', - 'badAction' => 'glm-member-db', + 'badAction' => 'glm-member-db' ) ) ); diff --git a/views/admin/ajax/membersListExport.html b/views/admin/ajax/membersListExport.html index 9bca5631..3a60d599 100644 --- a/views/admin/ajax/membersListExport.html +++ b/views/admin/ajax/membersListExport.html @@ -1,56 +1,66 @@ + + + + - -

List of {$terms.term_member_plur_cap}

-
- -

Total found: {$memberCount}  

+ Total found: {$memberCount}   + List of {$terms.term_member_plur_cap} +
+ - -
- - - - - - - - - - - - - - - - - - -{if $haveMembers} - {foreach $members as $m} - - - - - - - - - - - - - - - - - {/foreach} -{else} - -{/if} - -
ID{$terms.term_member_cap} NameCurrent ProfileAddressAddr Line #2CityStateZIP/PostalPhoneToll FreeE-MailWeb AddressCategories
{$m.id}{$m.member}{$m.reference_name}{$m.addr1}{$m.addr2}{$m.city}{$m.state.value}{$m.zip}{$m.phone}{$m.toll_free}{$m.email}{$m.url} - {foreach $m.categories as $t} - {$t.name}, - {/foreach} -
(no {$terms.term_member_plur} listed)
- \ No newline at end of file + + + + {if $select.exportId}{/if} + {if $select.exportOldId}{/if} + {if $select.exportMember}{/if} + {if $select.exportReferenceName}{/if} + {if $select.exportAddr1}{/if} + {if $select.exportAddr2}{/if} + {if $select.exportCity}{/if} + {if $select.exportState}{/if} + {if $select.exportZip}{/if} + {if $select.exportPhone}{/if} + {if $select.exportTollFree}{/if} + {if $select.exportEmail}{/if} + {if $select.exportPriContactName}{/if} + {if $select.exportPriContactEmail}{/if} + {if $select.exportUrl}{/if} + {if $select.exportCategories}{/if} + + + + {if $haveMembers} + {foreach $members as $m} + + {if $select.exportId}{/if} + {if $select.exportOldId}{/if} + {if $select.exportMember}{/if} + {if $select.exportReferenceName}{/if} + {if $select.exportAddr1}{/if} + {if $select.exportAddr2}{/if} + {if $select.exportCity}{/if} + {if $select.exportState}{/if} + {if $select.exportZip}{/if} + {if $select.exportPhone}{/if} + {if $select.exportTollFree}{/if} + {if $select.exportEmail}{/if} + {if $select.exportPriContactName}{/if} + {if $select.exportPriContactEmail}{/if} + {if $select.exportUrl}{/if} + {if $select.exportCategories}{/if} + + + {/foreach} + {else} + + {/if} + +
IDOld ID{$terms.term_member_cap} NameActive ProfileAddressAddr Line #2CityStateZIPPhoneToll FreeE-MailPrimary ContactPrimary Contact E-MailWeb AddressCategories
{$m.id}{$m.old_id}{$m.member}{$m.reference_name}{$m.addr1}{$m.addr2}{$m.city}{$m.state.value}{$m.zip}{$m.phone}{$m.toll_free}{$m.email}{if $m.primary_contact}{$m.primary_contact.fname} {$m.primary_contact.lname}{/if}{if $m.primary_contact}{$m.primary_contact.email}{/if}{$m.url} + {foreach $m.categories as $t} + {$t.name}, + {/foreach} +
(no {$terms.term_member_plur} listed)
+ + + \ No newline at end of file diff --git a/views/admin/ajax/membersListExportCsv.html b/views/admin/ajax/membersListExportCsv.html index 60182a7f..f2e9d880 100644 --- a/views/admin/ajax/membersListExportCsv.html +++ b/views/admin/ajax/membersListExportCsv.html @@ -1,5 +1,39 @@ -{if $haveMembers}List of {$terms.term_member_plur_cap} - Number listed: {$memberCount} +{if $haveMembers} -"ID","{$terms.term_member_cap} Name","Current Profile","Address","Addr Line #2","City","State","ZIP/Postal","Phone","Toll Free","E-Mail","Web Address","Categories" -{foreach $members as $m}"{$m.id}","{$m.member}","{$m.reference_name}","{$m.addr1}","{$m.addr2}","{$m.city}","{$m.state.value}","{$m.zip}","{$m.phone}","{$m.toll_free}","{$m.email}", "{$m.url}","{foreach $m.categories as $t}{$t.name},{/foreach}" -{/foreach}{else}No {$terms.term_member_plur_cap} Selected{/if} \ No newline at end of file +{if $select.exportId}"ID",{/if} +{if $select.exportOldId}"Old ID",{/if} +{if $select.exportMember}"{$terms.term_member_cap} Name",{/if} +{if $select.exportReferenceName}"Current Profile",{/if} +{if $select.exportAddr1}"Address",{/if} +{if $select.exportAddr2}"Addr Line #2",{/if} +{if $select.exportCity}"City",{/if} +{if $select.exportState}"State",{/if} +{if $select.exportZip}"ZIP/Postal",{/if} +{if $select.exportPhone}"Phone",{/if} +{if $select.exportTollFree}"Toll Free",{/if} +{if $select.exportEmail}"E-Mail",{/if} +{if $select.exportPriContactName}"Pri Contact",{/if} +{if $select.exportPriContactEmail}"Pri Contact E-Mail",{/if} +{if $select.exportUrl}"Web Address",{/if} +{if $select.exportCategories}"Categories"{/if} + +{foreach $members as $m} +{if $select.exportId}"{$m.id}",{/if} +{if $select.exportOldId}"{$m.old_id}",{/if} +{if $select.exportMember}"{$m.member}",{/if} +{if $select.exportReferenceName}"{$m.reference_name}",{/if} +{if $select.exportAddr1}"{$m.addr1}",{/if} +{if $select.exportAddr2}"{$m.addr2}",{/if} +{if $select.exportCity}"{$m.city}",{/if} +{if $select.exportState}"{$m.state.value}",{/if} +{if $select.exportZip}"{$m.zip}",{/if} +{if $select.exportPhone}"{$m.phone}",{/if} +{if $select.exportTollFree}"{$m.toll_free}",{/if} +{if $select.exportEmail}"{$m.email}",{/if} +{if $select.exportPriContactName}"{if $m.primary_contact}{$m.primary_contact.fname} {$m.primary_contact.lname}{/if}",{/if} +{if $select.exportPriContactEmail}"{if $m.primary_contact}{$m.primary_contact.email}{/if}",{/if} +{if $select.exportUrl}"{$m.url}",{/if} +{if $select.exportCategories}"{foreach $m.categories as $t}{$t.name},{/foreach}"{/if} + +{/foreach} +{else}No {$terms.term_member_plur_cap} Selected{/if} \ No newline at end of file diff --git a/views/admin/member/index.html b/views/admin/member/index.html index 9427ccd9..b51df2bd 100644 --- a/views/admin/member/index.html +++ b/views/admin/member/index.html @@ -19,6 +19,10 @@ {$member.fieldData.member_slug} Date created:{$member.fieldData.created.date} + + URL CLick Counts + Today: {$clickThroughCounts.day}    + @@ -31,6 +35,10 @@ {$terms.term_member_cap} Type: {$member.fieldData.member_type.name} + + Detail Page View Counts + Today: {$detailViewCounts.day}    + @@ -44,6 +52,34 @@

No {$terms.term_member} information available.

{/if} + + + +
+
+ {$member.fieldData.name} +
+ {$thisDate} + URL Click-Through Counts for Past Month +
+ +
+
Print
+
+ + +
+
+ {$member.fieldData.name} +
+ {$thisDate} + Detail Page Views for Past Month +
+ +
+
Print
+
+

 

{if $haveMember} @@ -122,7 +158,42 @@ {else} diff --git a/views/front/members/list.html b/views/front/members/list.html index db6e48a1..679eb3e1 100644 --- a/views/front/members/list.html +++ b/views/front/members/list.html @@ -261,7 +261,7 @@ @@ -400,7 +400,9 @@ {/if} {*list_show_list*} -- 2.17.1