├── .bowerrc ├── .gitignore ├── README.md ├── app ├── fonts │ ├── icomoon.eot │ ├── icomoon.svg │ ├── icomoon.ttf │ └── icomoon.woff ├── images │ ├── Chong_Wu.png │ └── wechat.png ├── index.html ├── pdf │ └── CV.pdf ├── scripts │ └── main.js └── styles │ ├── _common.scss │ ├── _eduction.scss │ ├── _experiences.scss │ ├── _font.scss │ ├── _info.scss │ ├── _reset.scss │ ├── _skills.scss │ ├── _variables.scss │ └── main.scss ├── bower.json ├── docs ├── fonts │ ├── icomoon.eot │ ├── icomoon.svg │ ├── icomoon.ttf │ └── icomoon.woff ├── images │ ├── Chong_Wu.png │ └── wechat.png ├── index.html ├── pdf │ └── CV.pdf ├── scripts │ ├── main.js │ └── vendor.js └── styles │ ├── main.css │ └── vendor.css ├── gulpfile.js └── package.json /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "app/libs" 3 | } -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | __MACOSX/ 2 | .DS_Store 3 | .idea/ 4 | app/libs 5 | app/styles/main.css 6 | node_modules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## 安装 2 | 使用以下命令安装相关的npm和bower包: 3 | ``` 4 | npm install 5 | bower install 6 | ``` 7 | 8 | ## 主要gulp任务 9 | - gulp serve/gulp: 开发时环境(在本地3000启动一个静态服务器, 当相关文件改变时实时更新页面) 10 | - gulp build: 构建线上相关文件到docs目录, 供github pages使用 11 | 12 | PS: 具体任务请参考gulpfile.js文件 13 | 14 | ## 开发及发布流程 15 | local develop -> local test -> gulp build -> git commit and push 16 | 17 | ## 线上demo 18 | [DEMO](https://simonwoo.github.io/cv/) 19 | 20 | ## 设计思路 21 | [设计思路](https://segmentfault.com/a/1190000007399804) 22 | 23 | 24 | -------------------------------------------------------------------------------- /app/fonts/icomoon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonwoo/cv/b03d5e1b3636d4bd4961ee01543bdc8a3cf49da1/app/fonts/icomoon.eot -------------------------------------------------------------------------------- /app/fonts/icomoon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Generated by IcoMoon 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /app/fonts/icomoon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonwoo/cv/b03d5e1b3636d4bd4961ee01543bdc8a3cf49da1/app/fonts/icomoon.ttf -------------------------------------------------------------------------------- /app/fonts/icomoon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonwoo/cv/b03d5e1b3636d4bd4961ee01543bdc8a3cf49da1/app/fonts/icomoon.woff -------------------------------------------------------------------------------- /app/images/Chong_Wu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonwoo/cv/b03d5e1b3636d4bd4961ee01543bdc8a3cf49da1/app/images/Chong_Wu.png -------------------------------------------------------------------------------- /app/images/wechat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonwoo/cv/b03d5e1b3636d4bd4961ee01543bdc8a3cf49da1/app/images/wechat.png -------------------------------------------------------------------------------- /app/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 吴冲简历 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 29 | 30 | 31 | 32 |
33 |
34 |
35 |
36 |
吴冲
37 |
前端工程师@阿里巴巴
38 |
39 | 40 | 45 | 46 | WU_CHONG_CV.pdf 47 |
48 | 49 |
50 |

教育背景

51 | 68 |
69 | 70 |
71 |

工作经历

72 | 131 |
132 | 133 |
134 |

专业技能

135 |
136 |
137 | HTML5 138 | CSS3 139 | ES5/6 140 | Lodash 141 | JQuery 142 | Zepto 143 | Vue 144 | Grunt 145 | Gulp 146 | 前端工程化 147 | Node/Express 148 | Java 149 | Restful 150 | HTTP 151 | Git 152 | Linux 153 |
154 |
155 |
156 |
157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | -------------------------------------------------------------------------------- /app/pdf/CV.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonwoo/cv/b03d5e1b3636d4bd4961ee01543bdc8a3cf49da1/app/pdf/CV.pdf -------------------------------------------------------------------------------- /app/scripts/main.js: -------------------------------------------------------------------------------- 1 | $(document).ready(function () { 2 | console.log('成为全宇宙最屌的前端工程师!!!'); 3 | 4 | $('#fullpage').fullpage({ 5 | navigation: true, 6 | navigationPosition: "right" 7 | }); 8 | }); -------------------------------------------------------------------------------- /app/styles/_common.scss: -------------------------------------------------------------------------------- 1 | ////////////////////////////// 2 | // common CSS 3 | ////////////////////////////// 4 | .section { 5 | background-color: $white_smoke; 6 | text-align: center; 7 | } 8 | 9 | h1 { 10 | margin-bottom: 3rem; 11 | 12 | font-size: 2.5rem; 13 | font-weight: bold; 14 | color: $yankees_blue; 15 | } 16 | 17 | //IOS: 320/480, 320/568 -> 2, 375/667 -> 2, 414/736 -> 3 18 | @media screen and (max-width: $screen-phone) { 19 | html { 20 | font-size: 16px; 21 | } 22 | 23 | #fp-nav { 24 | display: none; 25 | } 26 | } 27 | 28 | @media screen and (min-width: $screen-phone + 1) and (max-width: $screen-tablet - 1) { 29 | html { 30 | font-size: 20px; 31 | } 32 | 33 | #fp-nav { 34 | display: none; 35 | } 36 | 37 | .wechat { 38 | display: none; 39 | } 40 | } 41 | 42 | @media screen and (min-width: $screen-tablet) { 43 | html { 44 | font-size: 24px; 45 | } 46 | } 47 | -------------------------------------------------------------------------------- /app/styles/_eduction.scss: -------------------------------------------------------------------------------- 1 | .education { 2 | li { 3 | margin-top: 1.87rem; 4 | } 5 | 6 | time { 7 | font-size: .75rem; 8 | color: $gunmetal; 9 | } 10 | 11 | .school { 12 | font-size: .95rem; 13 | color: $silver; 14 | } 15 | 16 | .major { 17 | font-size: .85rem; 18 | color: $yankees_blue; 19 | } 20 | } -------------------------------------------------------------------------------- /app/styles/_experiences.scss: -------------------------------------------------------------------------------- 1 | .experiences { 2 | 3 | padding-left: 1.5rem; 4 | padding-right: 1.5rem; 5 | 6 | .works { 7 | display: inline-block; 8 | padding-left: .83rem; 9 | text-align: left; 10 | } 11 | 12 | .work { 13 | position: relative; 14 | border-left: solid $yankees_blue .25rem; 15 | padding-left: 1.67rem; 16 | padding-right: 1rem; 17 | padding-bottom: .5rem; 18 | 19 | .target-border { 20 | position: absolute; 21 | top: -.25rem; 22 | left: -1.21rem; 23 | 24 | width: 1.67rem; 25 | height: 1.67rem; 26 | border: .25rem solid $white_smoke; 27 | border-radius: 50%; 28 | background-color: $yankees_blue; 29 | 30 | .target-dot { 31 | width: .25rem; 32 | height: .25rem; 33 | border: .46rem solid $white_smoke; 34 | border-radius: 50%; 35 | margin: .25rem; 36 | } 37 | } 38 | 39 | .company { 40 | font-size: 1rem; 41 | font-weight: bold; 42 | color: $deep-space-sparkle; 43 | min-height: 1.67rem; 44 | line-height: 1.67rem; 45 | } 46 | 47 | .title { 48 | font-size: .67rem; 49 | line-height: normal; 50 | color: $silver; 51 | } 52 | 53 | time { 54 | display: block; 55 | font-size: .5rem; 56 | color: $gunmetal; 57 | } 58 | 59 | .tech-stack { 60 | margin-top: .2rem; 61 | font-size: .6rem; 62 | color: $gray; 63 | } 64 | 65 | .description { 66 | list-style: initial; 67 | margin-top: .4rem; 68 | padding-left: 1rem; 69 | font-size: .6rem; 70 | line-height: .8rem; 71 | color: #000; 72 | 73 | } 74 | } 75 | 76 | @media screen and (max-width: $screen-phone) { 77 | 78 | .work { 79 | position: relative; 80 | border-left: none; 81 | padding-left: 0; 82 | 83 | .target-border { 84 | display: none; 85 | } 86 | 87 | .company { 88 | &::before { 89 | position: absolute; 90 | left: -1.2rem; 91 | content: '-'; 92 | } 93 | } 94 | 95 | .title { 96 | display: block; 97 | } 98 | 99 | // .description { 100 | // display: none; 101 | // } 102 | } 103 | } 104 | 105 | @media screen and (min-width: $screen-tablet) { 106 | h1 { 107 | margin-bottom: 1rem; 108 | } 109 | } 110 | 111 | } 112 | -------------------------------------------------------------------------------- /app/styles/_font.scss: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: 'icomoon'; 3 | src: url('../fonts/icomoon.eot?g9gkcz'); 4 | src: url('../fonts/icomoon.eot?g9gkcz#iefix') format('embedded-opentype'), 5 | url('../fonts/icomoon.ttf?g9gkcz') format('truetype'), 6 | url('../fonts/icomoon.woff?g9gkcz') format('woff'), 7 | url('../fonts/icomoon.svg?g9gkcz#icomoon') format('svg'); 8 | font-weight: normal; 9 | font-style: normal; 10 | } 11 | 12 | [class^="icon-"], [class*=" icon-"] { 13 | /* use !important to prevent issues with browser extensions that change fonts */ 14 | font-family: 'icomoon' !important; 15 | speak: none; 16 | font-style: normal; 17 | font-weight: normal; 18 | font-variant: normal; 19 | text-transform: none; 20 | line-height: 1; 21 | 22 | /* Better Font Rendering =========== */ 23 | -webkit-font-smoothing: antialiased; 24 | -moz-osx-font-smoothing: grayscale; 25 | } 26 | 27 | .icon-wechat:before { 28 | content: "\e900"; 29 | } 30 | 31 | .icon-envelop:before { 32 | content: "\e945"; 33 | } 34 | 35 | .icon-github:before { 36 | content: "\eab0"; 37 | } 38 | 39 | -------------------------------------------------------------------------------- /app/styles/_info.scss: -------------------------------------------------------------------------------- 1 | .info { 2 | .avatar { 3 | width: 8rem; 4 | height: 8rem; 5 | // border-radius: 50%; 6 | // box-shadow: 0 0 0 0.25rem $white_smoke, 0 0 0 0.25rem #999, 0 0.125rem 0.25rem 0.25rem rgba(0, 0, 0, .2); 7 | margin: 1.5rem auto; 8 | background: url('../images/Chong_Wu.png') center; 9 | background-size: cover; 10 | } 11 | 12 | .name { 13 | font-size: 2.5rem; 14 | font-weight: bold; 15 | color: $yankees_blue; 16 | } 17 | 18 | .title { 19 | font-size: 1.2rem; 20 | font-weight: bold; 21 | color: $gunmetal; 22 | 23 | .title-company { 24 | font-size: 1rem; 25 | font-weight: normal; 26 | font-style: italic; 27 | color: $silver; 28 | } 29 | } 30 | 31 | .contacts { 32 | color: $silver; 33 | font-size: 1rem; 34 | font-weight: bolder; 35 | margin-top: 1rem; 36 | 37 | .contact { 38 | display: inline-block; 39 | position: relative; 40 | @media screen and (max-width: $screen-phone) { 41 | margin-right: 0.5rem; 42 | } 43 | } 44 | 45 | .icon-wechat { 46 | .wechat { 47 | display: none; 48 | } 49 | 50 | &:hover { 51 | cursor: pointer; 52 | 53 | .wechat { 54 | position: absolute; 55 | top: -5.1rem; 56 | right: -1.75rem; 57 | 58 | display: inline-block; 59 | width: 4.5rem; 60 | height: 4.5rem; 61 | background: url("../images/wechat.png") no-repeat; 62 | background-size: cover; 63 | border: 0.1rem solid #000; 64 | 65 | &::after, 66 | &::before { 67 | position: absolute; 68 | content: ""; 69 | width: 0; 70 | height: 0; 71 | } 72 | 73 | &:before { 74 | bottom: -1rem; 75 | right: 1.75rem; 76 | border: 0.5rem transparent solid; 77 | border-top-color: #000; 78 | } 79 | 80 | &::after { 81 | bottom: -0.75rem; 82 | right: 1.85rem; 83 | border: 0.4rem transparent solid; 84 | border-top-color: #fff; 85 | } 86 | } 87 | } 88 | } 89 | } 90 | 91 | .pdf { 92 | display: inline-block; 93 | margin-top: 4rem; 94 | 95 | font-size: .6rem; 96 | color: $yankees_blue; 97 | text-decoration: underline; 98 | } 99 | } 100 | -------------------------------------------------------------------------------- /app/styles/_reset.scss: -------------------------------------------------------------------------------- 1 | ////////////////////////////// 2 | // Reset CSS 3 | ////////////////////////////// 4 | html, body, div, span, h1, h2, h3, a, em, img, small, strong, dl, dt, dd, ol, ul, li, time { 5 | margin: 0; 6 | padding: 0; 7 | border: 0; 8 | } 9 | 10 | html { 11 | font-family: monospace, "Microsoft Yahei", "微软雅黑", STXihei, "华文细黑", sans-serif; /* 1 */ 12 | line-height: 1.15; /* 2 */ 13 | -ms-text-size-adjust: 100%; /* 3 */ 14 | -webkit-text-size-adjust: 100%; /* 3 */ 15 | } 16 | 17 | body { 18 | margin: 0; 19 | } 20 | 21 | ul { 22 | list-style: none; 23 | } 24 | 25 | a { 26 | text-decoration: none; 27 | color: inherit; 28 | } 29 | -------------------------------------------------------------------------------- /app/styles/_skills.scss: -------------------------------------------------------------------------------- 1 | .skills { 2 | .skill-container { 3 | display: inline-block; 4 | max-width: 80%; 5 | text-align: left; 6 | } 7 | span { 8 | display: inline-block; 9 | margin: .125rem; 10 | padding: .375rem; 11 | font-weight: bold; 12 | color: #fff; 13 | border-radius: .25rem; 14 | background-color: $silver; 15 | } 16 | } -------------------------------------------------------------------------------- /app/styles/_variables.scss: -------------------------------------------------------------------------------- 1 | $gunmetal: #2E3338; 2 | $gray: #888888; 3 | $silver: #727582; 4 | $white_smoke: #F4F7F9; 5 | $yankees_blue: #14213D; 6 | $deep-space-sparkle: #4C5C68; 7 | 8 | // Extra screen phone 9 | $screen-phone: 480px; 10 | 11 | // Extra screen tablets 12 | $screen-tablet: 768px; -------------------------------------------------------------------------------- /app/styles/main.scss: -------------------------------------------------------------------------------- 1 | @import "reset"; 2 | @import "variables"; 3 | @import "common"; 4 | @import "font"; 5 | 6 | @import "info"; 7 | @import "eduction"; 8 | @import "experiences"; 9 | @import "skills"; -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "wu_chong_cv", 3 | "version": "0.0.0", 4 | "dependencies": { 5 | "jquery": "3.1.1", 6 | "fullpage.js": "^2.8.8" 7 | }, 8 | "devDependencies": { 9 | }, 10 | "overrides": { 11 | "jquery": { 12 | "main": [ 13 | "dist/jquery.min.js" 14 | ] 15 | }, 16 | "fullpage.js": { 17 | "main": [ 18 | "dist/jquery.fullpage.min.css", 19 | "dist/jquery.fullpage.min.js" 20 | ] 21 | } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /docs/fonts/icomoon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonwoo/cv/b03d5e1b3636d4bd4961ee01543bdc8a3cf49da1/docs/fonts/icomoon.eot -------------------------------------------------------------------------------- /docs/fonts/icomoon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Generated by IcoMoon 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /docs/fonts/icomoon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonwoo/cv/b03d5e1b3636d4bd4961ee01543bdc8a3cf49da1/docs/fonts/icomoon.ttf -------------------------------------------------------------------------------- /docs/fonts/icomoon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonwoo/cv/b03d5e1b3636d4bd4961ee01543bdc8a3cf49da1/docs/fonts/icomoon.woff -------------------------------------------------------------------------------- /docs/images/Chong_Wu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonwoo/cv/b03d5e1b3636d4bd4961ee01543bdc8a3cf49da1/docs/images/Chong_Wu.png -------------------------------------------------------------------------------- /docs/images/wechat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonwoo/cv/b03d5e1b3636d4bd4961ee01543bdc8a3cf49da1/docs/images/wechat.png -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- 1 | 吴冲简历
吴冲
前端工程师@阿里巴巴
WU_CHONG_CV.pdf

教育背景

工作经历

专业技能

HTML5 CSS3 ES5/6 Lodash JQuery Zepto Vue Grunt Gulp 前端工程化 Node/Express Java Restful HTTP Git Linux
-------------------------------------------------------------------------------- /docs/pdf/CV.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonwoo/cv/b03d5e1b3636d4bd4961ee01543bdc8a3cf49da1/docs/pdf/CV.pdf -------------------------------------------------------------------------------- /docs/scripts/main.js: -------------------------------------------------------------------------------- 1 | $(document).ready(function(){console.log("成为全宇宙最屌的前端工程师!!!"),$("#fullpage").fullpage({navigation:!0,navigationPosition:"right"})}); -------------------------------------------------------------------------------- /docs/scripts/vendor.js: -------------------------------------------------------------------------------- 1 | !function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(e,t){"use strict";function n(e,t){t=t||te;var n=t.createElement("script");n.text=e,t.head.appendChild(n).parentNode.removeChild(n)}function o(e){var t=!!e&&"length"in e&&e.length,n=he.type(e);return"function"!==n&&!he.isWindow(e)&&("array"===n||0===t||"number"==typeof t&&t>0&&t-1 in e)}function i(e,t,n){return he.isFunction(t)?he.grep(e,function(e,o){return!!t.call(e,o,e)!==n}):t.nodeType?he.grep(e,function(e){return e===t!==n}):"string"!=typeof t?he.grep(e,function(e){return ae.call(t,e)>-1!==n}):Se.test(t)?he.filter(t,e,n):(t=he.filter(t,e),he.grep(e,function(e){return ae.call(t,e)>-1!==n&&1===e.nodeType}))}function r(e,t){for(;(e=e[t])&&1!==e.nodeType;);return e}function a(e){var t={};return he.each(e.match(De)||[],function(e,n){t[n]=!0}),t}function s(e){return e}function l(e){throw e}function c(e,t,n){var o;try{e&&he.isFunction(o=e.promise)?o.call(e).done(t).fail(n):e&&he.isFunction(o=e.then)?o.call(e,t,n):t.call(void 0,e)}catch(e){n.call(void 0,e)}}function u(){te.removeEventListener("DOMContentLoaded",u),e.removeEventListener("load",u),he.ready()}function f(){this.expando=he.expando+f.uid++}function d(e){return"true"===e||"false"!==e&&("null"===e?null:e===+e+""?+e:Re.test(e)?JSON.parse(e):e)}function p(e,t,n){var o;if(void 0===n&&1===e.nodeType)if(o="data-"+t.replace(Ie,"-$&").toLowerCase(),"string"==typeof(n=e.getAttribute(o))){try{n=d(n)}catch(e){}Fe.set(e,t,n)}else n=void 0;return n}function h(e,t,n,o){var i,r=1,a=20,s=o?function(){return o.cur()}:function(){return he.css(e,t,"")},l=s(),c=n&&n[3]||(he.cssNumber[t]?"":"px"),u=(he.cssNumber[t]||"px"!==c&&+l)&&Pe.exec(he.css(e,t));if(u&&u[3]!==c){c=c||u[3],n=n||[],u=+l||1;do{r=r||".5",u/=r,he.style(e,t,u+c)}while(r!==(r=s()/l)&&1!==r&&--a)}return n&&(u=+u||+l||0,i=n[1]?u+(n[1]+1)*n[2]:+n[2],o&&(o.unit=c,o.start=u,o.end=i)),i}function v(e){var t,n=e.ownerDocument,o=e.nodeName,i=$e[o];return i||(t=n.body.appendChild(n.createElement(o)),i=he.css(t,"display"),t.parentNode.removeChild(t),"none"===i&&(i="block"),$e[o]=i,i)}function g(e,t){for(var n,o,i=[],r=0,a=e.length;r-1)i&&i.push(r);else if(c=he.contains(r.ownerDocument,r),a=m(f.appendChild(r),"script"),c&&y(a),n)for(u=0;r=a[u++];)Ve.test(r.type||"")&&n.push(r);return f}function b(){return!0}function w(){return!1}function T(){try{return te.activeElement}catch(e){}}function C(e,t,n,o,i,r){var a,s;if("object"==typeof t){"string"!=typeof n&&(o=o||n,n=void 0);for(s in t)C(e,s,n,o,t[s],r);return e}if(null==o&&null==i?(i=n,o=n=void 0):null==i&&("string"==typeof n?(i=o,o=void 0):(i=o,o=n,n=void 0)),!1===i)i=w;else if(!i)return e;return 1===r&&(a=i,i=function(e){return he().off(e),a.apply(this,arguments)},i.guid=a.guid||(a.guid=he.guid++)),e.each(function(){he.event.add(this,t,i,o,n)})}function S(e,t){return he.nodeName(e,"table")&&he.nodeName(11!==t.nodeType?t:t.firstChild,"tr")?e.getElementsByTagName("tbody")[0]||e:e}function k(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function E(e){var t=nt.exec(e.type);return t?e.type=t[1]:e.removeAttribute("type"),e}function A(e,t){var n,o,i,r,a,s,l,c;if(1===t.nodeType){if(He.hasData(e)&&(r=He.access(e),a=He.set(t,r),c=r.events)){delete a.handle,a.events={};for(i in c)for(n=0,o=c[i].length;n1&&"string"==typeof h&&!de.checkClone&&tt.test(h))return e.each(function(n){var r=e.eq(n);v&&(t[0]=h.call(this,n,r.html())),D(r,t,o,i)});if(d&&(r=x(t,e[0].ownerDocument,!1,e,i),a=r.firstChild,1===r.childNodes.length&&(r=a),a||i)){for(s=he.map(m(r,"script"),k),l=s.length;f=0&&nw.cacheLength&&delete e[t.shift()],e[n+" "]=o}var t=[];return e}function o(e){return e[M]=!0,e}function i(e){var t=L.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function r(e,t){for(var n=e.split("|"),o=n.length;o--;)w.attrHandle[n[o]]=t}function a(e,t){var n=t&&e,o=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(o)return o;if(n)for(;n=n.nextSibling;)if(n===t)return-1;return e?1:-1}function s(e){return function(t){return"form"in t?t.parentNode&&!1===t.disabled?"label"in t?"label"in t.parentNode?t.parentNode.disabled===e:t.disabled===e:t.isDisabled===e||t.isDisabled!==!e&&Te(t)===e:t.disabled===e:"label"in t&&t.disabled===e}}function l(e){return o(function(t){return t=+t,o(function(n,o){for(var i,r=e([],n.length,t),a=r.length;a--;)n[i=r[a]]&&(n[i]=!(o[i]=n[i]))})})}function c(e){return e&&void 0!==e.getElementsByTagName&&e}function u(){}function f(e){for(var t=0,n=e.length,o="";t1?function(t,n,o){for(var i=e.length;i--;)if(!e[i](t,n,o))return!1;return!0}:e[0]}function h(e,n,o){for(var i=0,r=n.length;i-1&&(o[c]=!(a[c]=f))}}else x=v(x===a?x.splice(g,x.length):x),r?r(null,a,x,l):K.apply(a,x)})}function m(e){for(var t,n,o,i=e.length,r=w.relative[e[0].type],a=r||w.relative[" "],s=r?1:0,l=d(function(e){return e===t},a,!0),c=d(function(e){return J(t,e)>-1},a,!0),u=[function(e,n,o){var i=!r&&(o||n!==A)||((t=n).nodeType?l(e,n,o):c(e,n,o));return t=null,i}];s1&&p(u),s>1&&f(e.slice(0,s-1).concat({value:" "===e[s-2].type?"*":""})).replace(re,"$1"),n,s0,r=e.length>0,a=function(o,a,s,l,c){var u,f,d,p=0,h="0",g=o&&[],m=[],y=A,x=o||r&&w.find.TAG("*",c),b=B+=null==y?1:Math.random()||.1,T=x.length;for(c&&(A=a===L||a||c);h!==T&&null!=(u=x[h]);h++){if(r&&u){for(f=0,a||u.ownerDocument===L||(j(u),s=!O);d=e[f++];)if(d(u,a||L,s)){l.push(u);break}c&&(B=b)}i&&((u=!d&&u)&&p--,o&&g.push(u))}if(p+=h,i&&h!==p){for(f=0;d=n[f++];)d(g,m,a,s);if(o){if(p>0)for(;h--;)g[h]||m[h]||(m[h]=Y.call(l));m=v(m)}K.apply(l,m),c&&!o&&m.length>0&&p+n.length>1&&t.uniqueSort(l)}return c&&(B=b,A=y),g};return i?o(a):a}var x,b,w,T,C,S,k,E,A,N,D,j,L,q,O,H,F,R,I,M="sizzle"+1*new Date,P=e.document,B=0,W=0,z=n(),$=n(),_=n(),X=function(e,t){return e===t&&(D=!0),0},V={}.hasOwnProperty,U=[],Y=U.pop,G=U.push,K=U.push,Q=U.slice,J=function(e,t){for(var n=0,o=e.length;n+~]|"+ee+")"+ee+"*"),le=new RegExp("="+ee+"*([^\\]'\"]*?)"+ee+"*\\]","g"),ce=new RegExp(oe),ue=new RegExp("^"+te+"$"),fe={ID:new RegExp("^#("+te+")"),CLASS:new RegExp("^\\.("+te+")"),TAG:new RegExp("^("+te+"|[*])"),ATTR:new RegExp("^"+ne),PSEUDO:new RegExp("^"+oe),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+ee+"*(even|odd|(([+-]|)(\\d*)n|)"+ee+"*(?:([+-]|)"+ee+"*(\\d+)|))"+ee+"*\\)|)","i"),bool:new RegExp("^(?:"+Z+")$","i"),needsContext:new RegExp("^"+ee+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+ee+"*((?:-\\d)?\\d*)"+ee+"*\\)|)(?=[^-]|$)","i")},de=/^(?:input|select|textarea|button)$/i,pe=/^h\d$/i,he=/^[^{]+\{\s*\[native \w/,ve=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ge=/[+~]/,me=new RegExp("\\\\([\\da-f]{1,6}"+ee+"?|("+ee+")|.)","ig"),ye=function(e,t,n){var o="0x"+t-65536;return o!==o||n?t:o<0?String.fromCharCode(o+65536):String.fromCharCode(o>>10|55296,1023&o|56320)},xe=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,be=function(e,t){return t?"\0"===e?"�":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},we=function(){j()},Te=d(function(e){return!0===e.disabled&&("form"in e||"label"in e)},{dir:"parentNode",next:"legend"});try{K.apply(U=Q.call(P.childNodes),P.childNodes),U[P.childNodes.length].nodeType}catch(e){K={apply:U.length?function(e,t){G.apply(e,Q.call(t))}:function(e,t){for(var n=e.length,o=0;e[n++]=t[o++];);e.length=n-1}}}b=t.support={},C=t.isXML=function(e){var t=e&&(e.ownerDocument||e).documentElement;return!!t&&"HTML"!==t.nodeName},j=t.setDocument=function(e){var t,n,o=e?e.ownerDocument||e:P;return o!==L&&9===o.nodeType&&o.documentElement?(L=o,q=L.documentElement,O=!C(L),P!==L&&(n=L.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",we,!1):n.attachEvent&&n.attachEvent("onunload",we)),b.attributes=i(function(e){return e.className="i",!e.getAttribute("className")}),b.getElementsByTagName=i(function(e){return e.appendChild(L.createComment("")),!e.getElementsByTagName("*").length}),b.getElementsByClassName=he.test(L.getElementsByClassName),b.getById=i(function(e){return q.appendChild(e).id=M,!L.getElementsByName||!L.getElementsByName(M).length}),b.getById?(w.filter.ID=function(e){var t=e.replace(me,ye);return function(e){return e.getAttribute("id")===t}},w.find.ID=function(e,t){if(void 0!==t.getElementById&&O){var n=t.getElementById(e);return n?[n]:[]}}):(w.filter.ID=function(e){var t=e.replace(me,ye);return function(e){var n=void 0!==e.getAttributeNode&&e.getAttributeNode("id");return n&&n.value===t}},w.find.ID=function(e,t){if(void 0!==t.getElementById&&O){var n,o,i,r=t.getElementById(e);if(r){if((n=r.getAttributeNode("id"))&&n.value===e)return[r];for(i=t.getElementsByName(e),o=0;r=i[o++];)if((n=r.getAttributeNode("id"))&&n.value===e)return[r]}return[]}}),w.find.TAG=b.getElementsByTagName?function(e,t){return void 0!==t.getElementsByTagName?t.getElementsByTagName(e):b.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,o=[],i=0,r=t.getElementsByTagName(e);if("*"===e){for(;n=r[i++];)1===n.nodeType&&o.push(n);return o}return r},w.find.CLASS=b.getElementsByClassName&&function(e,t){if(void 0!==t.getElementsByClassName&&O)return t.getElementsByClassName(e)},F=[],H=[],(b.qsa=he.test(L.querySelectorAll))&&(i(function(e){q.appendChild(e).innerHTML="",e.querySelectorAll("[msallowcapture^='']").length&&H.push("[*^$]="+ee+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||H.push("\\["+ee+"*(?:value|"+Z+")"),e.querySelectorAll("[id~="+M+"-]").length||H.push("~="),e.querySelectorAll(":checked").length||H.push(":checked"),e.querySelectorAll("a#"+M+"+*").length||H.push(".#.+[+~]")}),i(function(e){e.innerHTML="";var t=L.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&H.push("name"+ee+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&H.push(":enabled",":disabled"),q.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&H.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),H.push(",.*:")})),(b.matchesSelector=he.test(R=q.matches||q.webkitMatchesSelector||q.mozMatchesSelector||q.oMatchesSelector||q.msMatchesSelector))&&i(function(e){b.disconnectedMatch=R.call(e,"*"),R.call(e,"[s!='']:x"),F.push("!=",oe)}),H=H.length&&new RegExp(H.join("|")),F=F.length&&new RegExp(F.join("|")),t=he.test(q.compareDocumentPosition),I=t||he.test(q.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,o=t&&t.parentNode;return e===o||!(!o||1!==o.nodeType||!(n.contains?n.contains(o):e.compareDocumentPosition&&16&e.compareDocumentPosition(o)))}:function(e,t){if(t)for(;t=t.parentNode;)if(t===e)return!0;return!1},X=t?function(e,t){if(e===t)return D=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(n=(e.ownerDocument||e)===(t.ownerDocument||t)?e.compareDocumentPosition(t):1,1&n||!b.sortDetached&&t.compareDocumentPosition(e)===n?e===L||e.ownerDocument===P&&I(P,e)?-1:t===L||t.ownerDocument===P&&I(P,t)?1:N?J(N,e)-J(N,t):0:4&n?-1:1)}:function(e,t){if(e===t)return D=!0,0;var n,o=0,i=e.parentNode,r=t.parentNode,s=[e],l=[t];if(!i||!r)return e===L?-1:t===L?1:i?-1:r?1:N?J(N,e)-J(N,t):0;if(i===r)return a(e,t);for(n=e;n=n.parentNode;)s.unshift(n);for(n=t;n=n.parentNode;)l.unshift(n);for(;s[o]===l[o];)o++;return o?a(s[o],l[o]):s[o]===P?-1:l[o]===P?1:0},L):L},t.matches=function(e,n){return t(e,null,null,n)},t.matchesSelector=function(e,n){if((e.ownerDocument||e)!==L&&j(e),n=n.replace(le,"='$1']"),b.matchesSelector&&O&&!_[n+" "]&&(!F||!F.test(n))&&(!H||!H.test(n)))try{var o=R.call(e,n);if(o||b.disconnectedMatch||e.document&&11!==e.document.nodeType)return o}catch(e){}return t(n,L,null,[e]).length>0},t.contains=function(e,t){return(e.ownerDocument||e)!==L&&j(e),I(e,t)},t.attr=function(e,t){(e.ownerDocument||e)!==L&&j(e);var n=w.attrHandle[t.toLowerCase()],o=n&&V.call(w.attrHandle,t.toLowerCase())?n(e,t,!O):void 0;return void 0!==o?o:b.attributes||!O?e.getAttribute(t):(o=e.getAttributeNode(t))&&o.specified?o.value:null},t.escape=function(e){return(e+"").replace(xe,be)},t.error=function(e){throw new Error("Syntax error, unrecognized expression: "+e)},t.uniqueSort=function(e){var t,n=[],o=0,i=0;if(D=!b.detectDuplicates,N=!b.sortStable&&e.slice(0),e.sort(X),D){for(;t=e[i++];)t===e[i]&&(o=n.push(i));for(;o--;)e.splice(n[o],1)}return N=null,e},T=t.getText=function(e){var t,n="",o=0,i=e.nodeType;if(i){if(1===i||9===i||11===i){if("string"==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=T(e)}else if(3===i||4===i)return e.nodeValue}else for(;t=e[o++];)n+=T(t);return n},w=t.selectors={cacheLength:50,createPseudo:o,match:fe,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(me,ye),e[3]=(e[3]||e[4]||e[5]||"").replace(me,ye),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||t.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&t.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return fe.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&ce.test(n)&&(t=S(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(me,ye).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=z[e+" "];return t||(t=new RegExp("(^|"+ee+")"+e+"("+ee+"|$)"))&&z(e,function(e){return t.test("string"==typeof e.className&&e.className||void 0!==e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(e,n,o){return function(i){var r=t.attr(i,e);return null==r?"!="===n:!n||(r+="","="===n?r===o:"!="===n?r!==o:"^="===n?o&&0===r.indexOf(o):"*="===n?o&&r.indexOf(o)>-1:"$="===n?o&&r.slice(-o.length)===o:"~="===n?(" "+r.replace(ie," ")+" ").indexOf(o)>-1:"|="===n&&(r===o||r.slice(0,o.length+1)===o+"-"))}},CHILD:function(e,t,n,o,i){var r="nth"!==e.slice(0,3),a="last"!==e.slice(-4),s="of-type"===t;return 1===o&&0===i?function(e){return!!e.parentNode}:function(t,n,l){var c,u,f,d,p,h,v=r!==a?"nextSibling":"previousSibling",g=t.parentNode,m=s&&t.nodeName.toLowerCase(),y=!l&&!s,x=!1;if(g){if(r){for(;v;){for(d=t;d=d[v];)if(s?d.nodeName.toLowerCase()===m:1===d.nodeType)return!1;h=v="only"===e&&!h&&"nextSibling"}return!0}if(h=[a?g.firstChild:g.lastChild],a&&y){for(d=g,f=d[M]||(d[M]={}),u=f[d.uniqueID]||(f[d.uniqueID]={}),c=u[e]||[],p=c[0]===B&&c[1],x=p&&c[2],d=p&&g.childNodes[p];d=++p&&d&&d[v]||(x=p=0)||h.pop();)if(1===d.nodeType&&++x&&d===t){u[e]=[B,p,x];break}}else if(y&&(d=t,f=d[M]||(d[M]={}),u=f[d.uniqueID]||(f[d.uniqueID]={}),c=u[e]||[],p=c[0]===B&&c[1],x=p),!1===x)for(;(d=++p&&d&&d[v]||(x=p=0)||h.pop())&&((s?d.nodeName.toLowerCase()!==m:1!==d.nodeType)||!++x||(y&&(f=d[M]||(d[M]={}),u=f[d.uniqueID]||(f[d.uniqueID]={}),u[e]=[B,x]),d!==t)););return(x-=i)===o||x%o==0&&x/o>=0}}},PSEUDO:function(e,n){var i,r=w.pseudos[e]||w.setFilters[e.toLowerCase()]||t.error("unsupported pseudo: "+e);return r[M]?r(n):r.length>1?(i=[e,e,"",n],w.setFilters.hasOwnProperty(e.toLowerCase())?o(function(e,t){for(var o,i=r(e,n),a=i.length;a--;)o=J(e,i[a]),e[o]=!(t[o]=i[a])}):function(e){return r(e,0,i)}):r}},pseudos:{not:o(function(e){var t=[],n=[],i=k(e.replace(re,"$1"));return i[M]?o(function(e,t,n,o){for(var r,a=i(e,null,o,[]),s=e.length;s--;)(r=a[s])&&(e[s]=!(t[s]=r))}):function(e,o,r){return t[0]=e,i(t,null,r,n),t[0]=null,!n.pop()}}),has:o(function(e){return function(n){return t(e,n).length>0}}),contains:o(function(e){return e=e.replace(me,ye),function(t){return(t.textContent||t.innerText||T(t)).indexOf(e)>-1}}),lang:o(function(e){return ue.test(e||"")||t.error("unsupported lang: "+e),e=e.replace(me,ye).toLowerCase(),function(t){var n;do{if(n=O?t.lang:t.getAttribute("xml:lang")||t.getAttribute("lang"))return(n=n.toLowerCase())===e||0===n.indexOf(e+"-")}while((t=t.parentNode)&&1===t.nodeType);return!1}}),target:function(t){var n=e.location&&e.location.hash;return n&&n.slice(1)===t.id},root:function(e){return e===q},focus:function(e){return e===L.activeElement&&(!L.hasFocus||L.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:s(!1),disabled:s(!0),checked:function(e){var t=e.nodeName.toLowerCase() 2 | ;return"input"===t&&!!e.checked||"option"===t&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,!0===e.selected},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeType<6)return!1;return!0},parent:function(e){return!w.pseudos.empty(e)},header:function(e){return pe.test(e.nodeName)},input:function(e){return de.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&"button"===e.type||"button"===t},text:function(e){var t;return"input"===e.nodeName.toLowerCase()&&"text"===e.type&&(null==(t=e.getAttribute("type"))||"text"===t.toLowerCase())},first:l(function(){return[0]}),last:l(function(e,t){return[t-1]}),eq:l(function(e,t,n){return[n<0?n+t:n]}),even:l(function(e,t){for(var n=0;n=0;)e.push(o);return e}),gt:l(function(e,t,n){for(var o=n<0?n+t:n;++o2&&"ID"===(a=r[0]).type&&9===t.nodeType&&O&&w.relative[r[1].type]){if(!(t=(w.find.ID(a.matches[0].replace(me,ye),t)||[])[0]))return n;u&&(t=t.parentNode),e=e.slice(r.shift().value.length)}for(i=fe.needsContext.test(e)?0:r.length;i--&&(a=r[i],!w.relative[s=a.type]);)if((l=w.find[s])&&(o=l(a.matches[0].replace(me,ye),ge.test(r[0].type)&&c(t.parentNode)||t))){if(r.splice(i,1),!(e=o.length&&f(r)))return K.apply(n,o),n;break}}return(u||k(e,d))(o,t,!O,n,!t||ge.test(e)&&c(t.parentNode)||t),n},b.sortStable=M.split("").sort(X).join("")===M,b.detectDuplicates=!!D,j(),b.sortDetached=i(function(e){return 1&e.compareDocumentPosition(L.createElement("fieldset"))}),i(function(e){return e.innerHTML="","#"===e.firstChild.getAttribute("href")})||r("type|href|height|width",function(e,t,n){if(!n)return e.getAttribute(t,"type"===t.toLowerCase()?1:2)}),b.attributes&&i(function(e){return e.innerHTML="",e.firstChild.setAttribute("value",""),""===e.firstChild.getAttribute("value")})||r("value",function(e,t,n){if(!n&&"input"===e.nodeName.toLowerCase())return e.defaultValue}),i(function(e){return null==e.getAttribute("disabled")})||r(Z,function(e,t,n){var o;if(!n)return!0===e[t]?t.toLowerCase():(o=e.getAttributeNode(t))&&o.specified?o.value:null}),t}(e);he.find=xe,he.expr=xe.selectors,he.expr[":"]=he.expr.pseudos,he.uniqueSort=he.unique=xe.uniqueSort,he.text=xe.getText,he.isXMLDoc=xe.isXML,he.contains=xe.contains,he.escapeSelector=xe.escape;var be=function(e,t,n){for(var o=[],i=void 0!==n;(e=e[t])&&9!==e.nodeType;)if(1===e.nodeType){if(i&&he(e).is(n))break;o.push(e)}return o},we=function(e,t){for(var n=[];e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n},Te=he.expr.match.needsContext,Ce=/^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i,Se=/^.[^:#\[\.,]*$/;he.filter=function(e,t,n){var o=t[0];return n&&(e=":not("+e+")"),1===t.length&&1===o.nodeType?he.find.matchesSelector(o,e)?[o]:[]:he.find.matches(e,he.grep(t,function(e){return 1===e.nodeType}))},he.fn.extend({find:function(e){var t,n,o=this.length,i=this;if("string"!=typeof e)return this.pushStack(he(e).filter(function(){for(t=0;t1?he.uniqueSort(n):n},filter:function(e){return this.pushStack(i(this,e||[],!1))},not:function(e){return this.pushStack(i(this,e||[],!0))},is:function(e){return!!i(this,"string"==typeof e&&Te.test(e)?he(e):e||[],!1).length}});var ke,Ee=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/;(he.fn.init=function(e,t,n){var o,i;if(!e)return this;if(n=n||ke,"string"==typeof e){if(!(o="<"===e[0]&&">"===e[e.length-1]&&e.length>=3?[null,e,null]:Ee.exec(e))||!o[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(o[1]){if(t=t instanceof he?t[0]:t,he.merge(this,he.parseHTML(o[1],t&&t.nodeType?t.ownerDocument||t:te,!0)),Ce.test(o[1])&&he.isPlainObject(t))for(o in t)he.isFunction(this[o])?this[o](t[o]):this.attr(o,t[o]);return this}return i=te.getElementById(o[2]),i&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):he.isFunction(e)?void 0!==n.ready?n.ready(e):e(he):he.makeArray(e,this)}).prototype=he.fn,ke=he(te);var Ae=/^(?:parents|prev(?:Until|All))/,Ne={children:!0,contents:!0,next:!0,prev:!0};he.fn.extend({has:function(e){var t=he(e,this),n=t.length;return this.filter(function(){for(var e=0;e-1:1===n.nodeType&&he.find.matchesSelector(n,e))){r.push(n);break}return this.pushStack(r.length>1?he.uniqueSort(r):r)},index:function(e){return e?"string"==typeof e?ae.call(he(e),this[0]):ae.call(this,e.jquery?e[0]:e):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){return this.pushStack(he.uniqueSort(he.merge(this.get(),he(e,t))))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}}),he.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return be(e,"parentNode")},parentsUntil:function(e,t,n){return be(e,"parentNode",n)},next:function(e){return r(e,"nextSibling")},prev:function(e){return r(e,"previousSibling")},nextAll:function(e){return be(e,"nextSibling")},prevAll:function(e){return be(e,"previousSibling")},nextUntil:function(e,t,n){return be(e,"nextSibling",n)},prevUntil:function(e,t,n){return be(e,"previousSibling",n)},siblings:function(e){return we((e.parentNode||{}).firstChild,e)},children:function(e){return we(e.firstChild)},contents:function(e){return e.contentDocument||he.merge([],e.childNodes)}},function(e,t){he.fn[e]=function(n,o){var i=he.map(this,t,n);return"Until"!==e.slice(-5)&&(o=n),o&&"string"==typeof o&&(i=he.filter(o,i)),this.length>1&&(Ne[e]||he.uniqueSort(i),Ae.test(e)&&i.reverse()),this.pushStack(i)}});var De=/[^\x20\t\r\n\f]+/g;he.Callbacks=function(e){e="string"==typeof e?a(e):he.extend({},e);var t,n,o,i,r=[],s=[],l=-1,c=function(){for(i=e.once,o=t=!0;s.length;l=-1)for(n=s.shift();++l-1;)r.splice(n,1),n<=l&&l--}),this},has:function(e){return e?he.inArray(e,r)>-1:r.length>0},empty:function(){return r&&(r=[]),this},disable:function(){return i=s=[],r=n="",this},disabled:function(){return!r},lock:function(){return i=s=[],n||t||(r=n=""),this},locked:function(){return!!i},fireWith:function(e,n){return i||(n=n||[],n=[e,n.slice?n.slice():n],s.push(n),t||c()),this},fire:function(){return u.fireWith(this,arguments),this},fired:function(){return!!o}};return u},he.extend({Deferred:function(t){var n=[["notify","progress",he.Callbacks("memory"),he.Callbacks("memory"),2],["resolve","done",he.Callbacks("once memory"),he.Callbacks("once memory"),0,"resolved"],["reject","fail",he.Callbacks("once memory"),he.Callbacks("once memory"),1,"rejected"]],o="pending",i={state:function(){return o},always:function(){return r.done(arguments).fail(arguments),this},catch:function(e){return i.then(null,e)},pipe:function(){var e=arguments;return he.Deferred(function(t){he.each(n,function(n,o){var i=he.isFunction(e[o[4]])&&e[o[4]];r[o[1]](function(){var e=i&&i.apply(this,arguments);e&&he.isFunction(e.promise)?e.promise().progress(t.notify).done(t.resolve).fail(t.reject):t[o[0]+"With"](this,i?[e]:arguments)})}),e=null}).promise()},then:function(t,o,i){function r(t,n,o,i){return function(){var c=this,u=arguments,f=function(){var e,f;if(!(t=a&&(o!==l&&(c=void 0,u=[e]),n.rejectWith(c,u))}};t?d():(he.Deferred.getStackHook&&(d.stackTrace=he.Deferred.getStackHook()),e.setTimeout(d))}}var a=0;return he.Deferred(function(e){n[0][3].add(r(0,e,he.isFunction(i)?i:s,e.notifyWith)),n[1][3].add(r(0,e,he.isFunction(t)?t:s)),n[2][3].add(r(0,e,he.isFunction(o)?o:l))}).promise()},promise:function(e){return null!=e?he.extend(e,i):i}},r={};return he.each(n,function(e,t){var a=t[2],s=t[5];i[t[1]]=a.add,s&&a.add(function(){o=s},n[3-e][2].disable,n[0][2].lock),a.add(t[3].fire),r[t[0]]=function(){return r[t[0]+"With"](this===r?void 0:this,arguments),this},r[t[0]+"With"]=a.fireWith}),i.promise(r),t&&t.call(r,r),r},when:function(e){var t=arguments.length,n=t,o=Array(n),i=oe.call(arguments),r=he.Deferred(),a=function(e){return function(n){o[e]=this,i[e]=arguments.length>1?oe.call(arguments):n,--t||r.resolveWith(o,i)}};if(t<=1&&(c(e,r.done(a(n)).resolve,r.reject),"pending"===r.state()||he.isFunction(i[n]&&i[n].then)))return r.then();for(;n--;)c(i[n],a(n),r.reject);return r.promise()}});var je=/^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;he.Deferred.exceptionHook=function(t,n){e.console&&e.console.warn&&t&&je.test(t.name)&&e.console.warn("jQuery.Deferred exception: "+t.message,t.stack,n)},he.readyException=function(t){e.setTimeout(function(){throw t})};var Le=he.Deferred();he.fn.ready=function(e){return Le.then(e).catch(function(e){he.readyException(e)}),this},he.extend({isReady:!1,readyWait:1,holdReady:function(e){e?he.readyWait++:he.ready(!0)},ready:function(e){(!0===e?--he.readyWait:he.isReady)||(he.isReady=!0,!0!==e&&--he.readyWait>0||Le.resolveWith(te,[he]))}}),he.ready.then=Le.then,"complete"===te.readyState||"loading"!==te.readyState&&!te.documentElement.doScroll?e.setTimeout(he.ready):(te.addEventListener("DOMContentLoaded",u),e.addEventListener("load",u));var qe=function(e,t,n,o,i,r,a){var s=0,l=e.length,c=null==n;if("object"===he.type(n)){i=!0;for(s in n)qe(e,t,s,n[s],!0,r,a)}else if(void 0!==o&&(i=!0,he.isFunction(o)||(a=!0),c&&(a?(t.call(e,o),t=null):(c=t,t=function(e,t,n){return c.call(he(e),n)})),t))for(;s1,null,!0)},removeData:function(e){return this.each(function(){Fe.remove(this,e)})}}),he.extend({queue:function(e,t,n){var o;if(e)return t=(t||"fx")+"queue",o=He.get(e,t),n&&(!o||he.isArray(n)?o=He.access(e,t,he.makeArray(n)):o.push(n)),o||[]},dequeue:function(e,t){t=t||"fx";var n=he.queue(e,t),o=n.length,i=n.shift(),r=he._queueHooks(e,t),a=function(){he.dequeue(e,t)};"inprogress"===i&&(i=n.shift(),o--),i&&("fx"===t&&n.unshift("inprogress"),delete r.stop,i.call(e,a,r)),!o&&r&&r.empty.fire()},_queueHooks:function(e,t){var n=t+"queueHooks";return He.get(e,n)||He.access(e,n,{empty:he.Callbacks("once memory").add(function(){He.remove(e,[t+"queue",n])})})}}),he.fn.extend({queue:function(e,t){var n=2;return"string"!=typeof e&&(t=e,e="fx",n--),arguments.length\x20\t\r\n\f]+)/i,Ve=/^$|\/(?:java|ecma)script/i,Ue={option:[1,""],thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};Ue.optgroup=Ue.option,Ue.tbody=Ue.tfoot=Ue.colgroup=Ue.caption=Ue.thead,Ue.th=Ue.td;var Ye=/<|&#?\w+;/;!function(){var e=te.createDocumentFragment(),t=e.appendChild(te.createElement("div")),n=te.createElement("input");n.setAttribute("type","radio"),n.setAttribute("checked","checked"),n.setAttribute("name","t"),t.appendChild(n),de.checkClone=t.cloneNode(!0).cloneNode(!0).lastChild.checked,t.innerHTML="",de.noCloneChecked=!!t.cloneNode(!0).lastChild.defaultValue}();var Ge=te.documentElement,Ke=/^key/,Qe=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,Je=/^([^.]*)(?:\.(.+)|)/;he.event={global:{},add:function(e,t,n,o,i){var r,a,s,l,c,u,f,d,p,h,v,g=He.get(e);if(g)for(n.handler&&(r=n,n=r.handler,i=r.selector),i&&he.find.matchesSelector(Ge,i),n.guid||(n.guid=he.guid++),(l=g.events)||(l=g.events={}),(a=g.handle)||(a=g.handle=function(t){return void 0!==he&&he.event.triggered!==t.type?he.event.dispatch.apply(e,arguments):void 0}),t=(t||"").match(De)||[""],c=t.length;c--;)s=Je.exec(t[c])||[],p=v=s[1],h=(s[2]||"").split(".").sort(),p&&(f=he.event.special[p]||{},p=(i?f.delegateType:f.bindType)||p,f=he.event.special[p]||{},u=he.extend({type:p,origType:v,data:o,handler:n,guid:n.guid,selector:i,needsContext:i&&he.expr.match.needsContext.test(i),namespace:h.join(".")},r),(d=l[p])||(d=l[p]=[],d.delegateCount=0,f.setup&&!1!==f.setup.call(e,o,h,a)||e.addEventListener&&e.addEventListener(p,a)),f.add&&(f.add.call(e,u),u.handler.guid||(u.handler.guid=n.guid)),i?d.splice(d.delegateCount++,0,u):d.push(u),he.event.global[p]=!0)},remove:function(e,t,n,o,i){var r,a,s,l,c,u,f,d,p,h,v,g=He.hasData(e)&&He.get(e);if(g&&(l=g.events)){for(t=(t||"").match(De)||[""],c=t.length;c--;)if(s=Je.exec(t[c])||[],p=v=s[1],h=(s[2]||"").split(".").sort(),p){for(f=he.event.special[p]||{},p=(o?f.delegateType:f.bindType)||p,d=l[p]||[],s=s[2]&&new RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"),a=r=d.length;r--;)u=d[r],!i&&v!==u.origType||n&&n.guid!==u.guid||s&&!s.test(u.namespace)||o&&o!==u.selector&&("**"!==o||!u.selector)||(d.splice(r,1),u.selector&&d.delegateCount--,f.remove&&f.remove.call(e,u));a&&!d.length&&(f.teardown&&!1!==f.teardown.call(e,h,g.handle)||he.removeEvent(e,p,g.handle),delete l[p])}else for(p in l)he.event.remove(e,p+t[c],n,o,!0);he.isEmptyObject(l)&&He.remove(e,"handle events")}},dispatch:function(e){var t,n,o,i,r,a,s=he.event.fix(e),l=new Array(arguments.length),c=(He.get(this,"events")||{})[s.type]||[],u=he.event.special[s.type]||{};for(l[0]=s,t=1;t=1))for(;c!==this;c=c.parentNode||this)if(1===c.nodeType&&("click"!==e.type||!0!==c.disabled)){for(r=[],a={},n=0;n-1:he.find(i,this,null,[c]).length),a[i]&&r.push(o);r.length&&s.push({elem:c,handlers:r})}return c=this,l\x20\t\r\n\f]*)[^>]*)\/>/gi,et=/\s*$/g;he.extend({htmlPrefilter:function(e){return e.replace(Ze,"<$1>")},clone:function(e,t,n){var o,i,r,a,s=e.cloneNode(!0),l=he.contains(e.ownerDocument,e);if(!(de.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||he.isXMLDoc(e)))for(a=m(s),r=m(e),o=0,i=r.length;o0&&y(a,!l&&m(e,"script")),s},cleanData:function(e){for(var t,n,o,i=he.event.special,r=0;void 0!==(n=e[r]);r++)if(Oe(n)){if(t=n[He.expando]){if(t.events)for(o in t.events)i[o]?he.event.remove(n,o):he.removeEvent(n,o,t.handle);n[He.expando]=void 0}n[Fe.expando]&&(n[Fe.expando]=void 0)}}}),he.fn.extend({detach:function(e){return j(this,e,!0)},remove:function(e){return j(this,e)},text:function(e){return qe(this,function(e){return void 0===e?he.text(this):this.empty().each(function(){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||(this.textContent=e)})},null,e,arguments.length)},append:function(){return D(this,arguments,function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){S(this,e).appendChild(e)}})},prepend:function(){return D(this,arguments,function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=S(this,e);t.insertBefore(e,t.firstChild)}})},before:function(){return D(this,arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this)})},after:function(){return D(this,arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)})},empty:function(){for(var e,t=0;null!=(e=this[t]);t++)1===e.nodeType&&(he.cleanData(m(e,!1)),e.textContent="");return this},clone:function(e,t){return e=null!=e&&e,t=null==t?e:t,this.map(function(){return he.clone(this,e,t)})},html:function(e){return qe(this,function(e){var t=this[0]||{},n=0,o=this.length;if(void 0===e&&1===t.nodeType)return t.innerHTML;if("string"==typeof e&&!et.test(e)&&!Ue[(Xe.exec(e)||["",""])[1].toLowerCase()]){e=he.htmlPrefilter(e);try{for(;n1)}}),he.Tween=I,I.prototype={constructor:I,init:function(e,t,n,o,i,r){this.elem=e,this.prop=n,this.easing=i||he.easing._default,this.options=t,this.start=this.now=this.cur(),this.end=o,this.unit=r||(he.cssNumber[n]?"":"px")},cur:function(){var e=I.propHooks[this.prop];return e&&e.get?e.get(this):I.propHooks._default.get(this)},run:function(e){var t,n=I.propHooks[this.prop];return this.options.duration?this.pos=t=he.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration):this.pos=t=e,this.now=(this.end-this.start)*t+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),n&&n.set?n.set(this):I.propHooks._default.set(this),this}},I.prototype.init.prototype=I.prototype,I.propHooks={_default:{get:function(e){var t;return 1!==e.elem.nodeType||null!=e.elem[e.prop]&&null==e.elem.style[e.prop]?e.elem[e.prop]:(t=he.css(e.elem,e.prop,""),t&&"auto"!==t?t:0)},set:function(e){he.fx.step[e.prop]?he.fx.step[e.prop](e):1!==e.elem.nodeType||null==e.elem.style[he.cssProps[e.prop]]&&!he.cssHooks[e.prop]?e.elem[e.prop]=e.now:he.style(e.elem,e.prop,e.now+e.unit)}}},I.propHooks.scrollTop=I.propHooks.scrollLeft={set:function(e){e.elem.nodeType&&e.elem.parentNode&&(e.elem[e.prop]=e.now)}},he.easing={linear:function(e){return e},swing:function(e){return.5-Math.cos(e*Math.PI)/2},_default:"swing"},he.fx=I.prototype.init,he.fx.step={};var dt,pt,ht=/^(?:toggle|show|hide)$/,vt=/queueHooks$/;he.Animation=he.extend(_,{tweeners:{"*":[function(e,t){var n=this.createTween(e,t);return h(n.elem,e,Pe.exec(t),n),n}]},tweener:function(e,t){he.isFunction(e)?(t=e,e=["*"]):e=e.match(De);for(var n,o=0,i=e.length;o1)},removeAttr:function(e){return this.each(function(){he.removeAttr(this,e)})}}),he.extend({attr:function(e,t,n){var o,i,r=e.nodeType;if(3!==r&&8!==r&&2!==r)return void 0===e.getAttribute?he.prop(e,t,n):(1===r&&he.isXMLDoc(e)||(i=he.attrHooks[t.toLowerCase()]||(he.expr.match.bool.test(t)?gt:void 0)),void 0!==n?null===n?void he.removeAttr(e,t):i&&"set"in i&&void 0!==(o=i.set(e,n,t))?o:(e.setAttribute(t,n+""),n):i&&"get"in i&&null!==(o=i.get(e,t))?o:(o=he.find.attr(e,t),null==o?void 0:o))},attrHooks:{type:{set:function(e,t){if(!de.radioValue&&"radio"===t&&he.nodeName(e,"input")){var n=e.value;return e.setAttribute("type",t),n&&(e.value=n),t}}}},removeAttr:function(e,t){var n,o=0,i=t&&t.match(De);if(i&&1===e.nodeType)for(;n=i[o++];)e.removeAttribute(n)}}),gt={set:function(e,t,n){return!1===t?he.removeAttr(e,n):e.setAttribute(n,n),n}},he.each(he.expr.match.bool.source.match(/\w+/g),function(e,t){var n=mt[t]||he.find.attr;mt[t]=function(e,t,o){var i,r,a=t.toLowerCase();return o||(r=mt[a],mt[a]=i,i=null!=n(e,t,o)?a:null,mt[a]=r),i}});var yt=/^(?:input|select|textarea|button)$/i,xt=/^(?:a|area)$/i;he.fn.extend({prop:function(e,t){return qe(this,he.prop,e,t,arguments.length>1)},removeProp:function(e){return this.each(function(){delete this[he.propFix[e]||e]})}}),he.extend({prop:function(e,t,n){var o,i,r=e.nodeType;if(3!==r&&8!==r&&2!==r)return 1===r&&he.isXMLDoc(e)||(t=he.propFix[t]||t,i=he.propHooks[t]),void 0!==n?i&&"set"in i&&void 0!==(o=i.set(e,n,t))?o:e[t]=n:i&&"get"in i&&null!==(o=i.get(e,t))?o:e[t]},propHooks:{tabIndex:{get:function(e){var t=he.find.attr(e,"tabindex");return t?parseInt(t,10):yt.test(e.nodeName)||xt.test(e.nodeName)&&e.href?0:-1}}},propFix:{for:"htmlFor",class:"className"}}),de.optSelected||(he.propHooks.selected={get:function(e){var t=e.parentNode;return t&&t.parentNode&&t.parentNode.selectedIndex,null},set:function(e){var t=e.parentNode;t&&(t.selectedIndex,t.parentNode&&t.parentNode.selectedIndex)}}),he.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){he.propFix[this.toLowerCase()]=this}),he.fn.extend({addClass:function(e){var t,n,o,i,r,a,s,l=0;if(he.isFunction(e))return this.each(function(t){he(this).addClass(e.call(this,t,V(this)))});if("string"==typeof e&&e)for(t=e.match(De)||[];n=this[l++];)if(i=V(n),o=1===n.nodeType&&" "+X(i)+" "){for(a=0;r=t[a++];)o.indexOf(" "+r+" ")<0&&(o+=r+" ");s=X(o),i!==s&&n.setAttribute("class",s)}return this},removeClass:function(e){var t,n,o,i,r,a,s,l=0;if(he.isFunction(e))return this.each(function(t){he(this).removeClass(e.call(this,t,V(this)))});if(!arguments.length)return this.attr("class","");if("string"==typeof e&&e)for(t=e.match(De)||[];n=this[l++];)if(i=V(n),o=1===n.nodeType&&" "+X(i)+" "){for(a=0;r=t[a++];)for(;o.indexOf(" "+r+" ")>-1;)o=o.replace(" "+r+" "," ");s=X(o),i!==s&&n.setAttribute("class",s)}return this},toggleClass:function(e,t){var n=typeof e;return"boolean"==typeof t&&"string"===n?t?this.addClass(e):this.removeClass(e):he.isFunction(e)?this.each(function(n){he(this).toggleClass(e.call(this,n,V(this),t),t)}):this.each(function(){var t,o,i,r;if("string"===n)for(o=0,i=he(this),r=e.match(De)||[];t=r[o++];)i.hasClass(t)?i.removeClass(t):i.addClass(t);else void 0!==e&&"boolean"!==n||(t=V(this),t&&He.set(this,"__className__",t),this.setAttribute&&this.setAttribute("class",t||!1===e?"":He.get(this,"__className__")||""))})},hasClass:function(e){var t,n,o=0;for(t=" "+e+" ";n=this[o++];)if(1===n.nodeType&&(" "+X(V(n))+" ").indexOf(t)>-1)return!0;return!1}});var bt=/\r/g;he.fn.extend({val:function(e){var t,n,o,i=this[0];return arguments.length?(o=he.isFunction(e),this.each(function(n){var i;1===this.nodeType&&(i=o?e.call(this,n,he(this).val()):e,null==i?i="":"number"==typeof i?i+="":he.isArray(i)&&(i=he.map(i,function(e){return null==e?"":e+""})),(t=he.valHooks[this.type]||he.valHooks[this.nodeName.toLowerCase()])&&"set"in t&&void 0!==t.set(this,i,"value")||(this.value=i))})):i?(t=he.valHooks[i.type]||he.valHooks[i.nodeName.toLowerCase()],t&&"get"in t&&void 0!==(n=t.get(i,"value"))?n:(n=i.value,"string"==typeof n?n.replace(bt,""):null==n?"":n)):void 0}}),he.extend({valHooks:{option:{get:function(e){var t=he.find.attr(e,"value");return null!=t?t:X(he.text(e))}},select:{get:function(e){var t,n,o,i=e.options,r=e.selectedIndex,a="select-one"===e.type,s=a?null:[],l=a?r+1:i.length;for(o=r<0?l:a?r:0;o-1)&&(n=!0);return n||(e.selectedIndex=-1),r}}}}),he.each(["radio","checkbox"],function(){he.valHooks[this]={set:function(e,t){if(he.isArray(t))return e.checked=he.inArray(he(e).val(),t)>-1}},de.checkOn||(he.valHooks[this].get=function(e){return null===e.getAttribute("value")?"on":e.value})});var wt=/^(?:focusinfocus|focusoutblur)$/;he.extend(he.event,{trigger:function(t,n,o,i){var r,a,s,l,c,u,f,d=[o||te],p=ce.call(t,"type")?t.type:t,h=ce.call(t,"namespace")?t.namespace.split("."):[];if(a=s=o=o||te,3!==o.nodeType&&8!==o.nodeType&&!wt.test(p+he.event.triggered)&&(p.indexOf(".")>-1&&(h=p.split("."),p=h.shift(),h.sort()),c=p.indexOf(":")<0&&"on"+p,t=t[he.expando]?t:new he.Event(p,"object"==typeof t&&t),t.isTrigger=i?2:3,t.namespace=h.join("."),t.rnamespace=t.namespace?new RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,t.result=void 0,t.target||(t.target=o),n=null==n?[t]:he.makeArray(n,[t]),f=he.event.special[p]||{},i||!f.trigger||!1!==f.trigger.apply(o,n))){if(!i&&!f.noBubble&&!he.isWindow(o)){for(l=f.delegateType||p,wt.test(l+p)||(a=a.parentNode);a;a=a.parentNode)d.push(a),s=a;s===(o.ownerDocument||te)&&d.push(s.defaultView||s.parentWindow||e)}for(r=0;(a=d[r++])&&!t.isPropagationStopped();)t.type=r>1?l:f.bindType||p,u=(He.get(a,"events")||{})[t.type]&&He.get(a,"handle"),u&&u.apply(a,n),(u=c&&a[c])&&u.apply&&Oe(a)&&(t.result=u.apply(a,n),!1===t.result&&t.preventDefault());return t.type=p,i||t.isDefaultPrevented()||f._default&&!1!==f._default.apply(d.pop(),n)||!Oe(o)||c&&he.isFunction(o[p])&&!he.isWindow(o)&&(s=o[c],s&&(o[c]=null),he.event.triggered=p,o[p](),he.event.triggered=void 0,s&&(o[c]=s)),t.result}},simulate:function(e,t,n){var o=he.extend(new he.Event,n,{type:e,isSimulated:!0});he.event.trigger(o,null,t)}}),he.fn.extend({trigger:function(e,t){return this.each(function(){he.event.trigger(e,t,this)})},triggerHandler:function(e,t){var n=this[0];if(n)return he.event.trigger(e,t,n,!0)}}),he.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,t){he.fn[t]=function(e,n){return arguments.length>0?this.on(t,null,e,n):this.trigger(t)}}),he.fn.extend({hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),de.focusin="onfocusin"in e,de.focusin||he.each({focus:"focusin",blur:"focusout"},function(e,t){var n=function(e){he.event.simulate(t,e.target,he.event.fix(e))};he.event.special[t]={setup:function(){var o=this.ownerDocument||this,i=He.access(o,t);i||o.addEventListener(e,n,!0),He.access(o,t,(i||0)+1)},teardown:function(){var o=this.ownerDocument||this,i=He.access(o,t)-1;i?He.access(o,t,i):(o.removeEventListener(e,n,!0),He.remove(o,t))}}});var Tt=e.location,Ct=he.now(),St=/\?/;he.parseXML=function(t){var n;if(!t||"string"!=typeof t)return null;try{n=(new e.DOMParser).parseFromString(t,"text/xml")}catch(e){n=void 0}return n&&!n.getElementsByTagName("parsererror").length||he.error("Invalid XML: "+t),n};var kt=/\[\]$/,Et=/\r?\n/g,At=/^(?:submit|button|image|reset|file)$/i,Nt=/^(?:input|select|textarea|keygen)/i;he.param=function(e,t){var n,o=[],i=function(e,t){var n=he.isFunction(t)?t():t;o[o.length]=encodeURIComponent(e)+"="+encodeURIComponent(null==n?"":n)};if(he.isArray(e)||e.jquery&&!he.isPlainObject(e))he.each(e,function(){i(this.name,this.value)});else for(n in e)U(n,e[n],t,i);return o.join("&")},he.fn.extend({serialize:function(){return he.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var e=he.prop(this,"elements");return e?he.makeArray(e):this}).filter(function(){var e=this.type;return this.name&&!he(this).is(":disabled")&&Nt.test(this.nodeName)&&!At.test(e)&&(this.checked||!_e.test(e))}).map(function(e,t){var n=he(this).val();return null==n?null:he.isArray(n)?he.map(n,function(e){return{name:t.name,value:e.replace(Et,"\r\n")}}):{name:t.name,value:n.replace(Et,"\r\n")}}).get()}});var Dt=/%20/g,jt=/#.*$/,Lt=/([?&])_=[^&]*/,qt=/^(.*?):[ \t]*([^\r\n]*)$/gm,Ot=/^(?:about|app|app-storage|.+-extension|file|res|widget):$/,Ht=/^(?:GET|HEAD)$/,Ft=/^\/\//,Rt={},It={},Mt="*/".concat("*"),Pt=te.createElement("a");Pt.href=Tt.href,he.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:Tt.href,type:"GET",isLocal:Ot.test(Tt.protocol),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":Mt,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/\bxml\b/,html:/\bhtml/,json:/\bjson\b/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":JSON.parse,"text xml":he.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(e,t){return t?K(K(e,he.ajaxSettings),t):K(he.ajaxSettings,e)},ajaxPrefilter:Y(Rt),ajaxTransport:Y(It),ajax:function(t,n){function o(t,n,o,s){var c,d,p,b,w,T=n;u||(u=!0,l&&e.clearTimeout(l),i=void 0,a=s||"",C.readyState=t>0?4:0,c=t>=200&&t<300||304===t,o&&(b=Q(h,C,o)),b=J(h,b,C,c),c?(h.ifModified&&(w=C.getResponseHeader("Last-Modified"),w&&(he.lastModified[r]=w),(w=C.getResponseHeader("etag"))&&(he.etag[r]=w)),204===t||"HEAD"===h.type?T="nocontent":304===t?T="notmodified":(T=b.state,d=b.data,p=b.error,c=!p)):(p=T,!t&&T||(T="error",t<0&&(t=0))),C.status=t,C.statusText=(n||T)+"",c?m.resolveWith(v,[d,T,C]):m.rejectWith(v,[C,T,p]),C.statusCode(x),x=void 0,f&&g.trigger(c?"ajaxSuccess":"ajaxError",[C,h,c?d:p]),y.fireWith(v,[C,T]),f&&(g.trigger("ajaxComplete",[C,h]),--he.active||he.event.trigger("ajaxStop")))}"object"==typeof t&&(n=t,t=void 0),n=n||{};var i,r,a,s,l,c,u,f,d,p,h=he.ajaxSetup({},n),v=h.context||h,g=h.context&&(v.nodeType||v.jquery)?he(v):he.event,m=he.Deferred(),y=he.Callbacks("once memory"),x=h.statusCode||{},b={},w={},T="canceled",C={readyState:0,getResponseHeader:function(e){var t;if(u){if(!s)for(s={};t=qt.exec(a);)s[t[1].toLowerCase()]=t[2];t=s[e.toLowerCase()]}return null==t?null:t},getAllResponseHeaders:function(){return u?a:null},setRequestHeader:function(e,t){return null==u&&(e=w[e.toLowerCase()]=w[e.toLowerCase()]||e,b[e]=t),this},overrideMimeType:function(e){return null==u&&(h.mimeType=e),this},statusCode:function(e){var t;if(e)if(u)C.always(e[C.status]);else for(t in e)x[t]=[x[t],e[t]];return this},abort:function(e){var t=e||T;return i&&i.abort(t),o(0,t),this}};if(m.promise(C),h.url=((t||h.url||Tt.href)+"").replace(Ft,Tt.protocol+"//"),h.type=n.method||n.type||h.method||h.type,h.dataTypes=(h.dataType||"*").toLowerCase().match(De)||[""],null==h.crossDomain){c=te.createElement("a");try{c.href=h.url,c.href=c.href,h.crossDomain=Pt.protocol+"//"+Pt.host!=c.protocol+"//"+c.host}catch(e){h.crossDomain=!0}}if(h.data&&h.processData&&"string"!=typeof h.data&&(h.data=he.param(h.data,h.traditional)),G(Rt,h,n,C),u)return C;f=he.event&&h.global,f&&0==he.active++&&he.event.trigger("ajaxStart"),h.type=h.type.toUpperCase(),h.hasContent=!Ht.test(h.type),r=h.url.replace(jt,""),h.hasContent?h.data&&h.processData&&0===(h.contentType||"").indexOf("application/x-www-form-urlencoded")&&(h.data=h.data.replace(Dt,"+")):(p=h.url.slice(r.length),h.data&&(r+=(St.test(r)?"&":"?")+h.data,delete h.data),!1===h.cache&&(r=r.replace(Lt,"$1"),p=(St.test(r)?"&":"?")+"_="+Ct+++p),h.url=r+p),h.ifModified&&(he.lastModified[r]&&C.setRequestHeader("If-Modified-Since",he.lastModified[r]),he.etag[r]&&C.setRequestHeader("If-None-Match",he.etag[r])),(h.data&&h.hasContent&&!1!==h.contentType||n.contentType)&&C.setRequestHeader("Content-Type",h.contentType),C.setRequestHeader("Accept",h.dataTypes[0]&&h.accepts[h.dataTypes[0]]?h.accepts[h.dataTypes[0]]+("*"!==h.dataTypes[0]?", "+Mt+"; q=0.01":""):h.accepts["*"]);for(d in h.headers)C.setRequestHeader(d,h.headers[d]);if(h.beforeSend&&(!1===h.beforeSend.call(v,C,h)||u))return C.abort();if(T="abort",y.add(h.complete),C.done(h.success),C.fail(h.error),i=G(It,h,n,C)){if(C.readyState=1,f&&g.trigger("ajaxSend",[C,h]),u)return C;h.async&&h.timeout>0&&(l=e.setTimeout(function(){C.abort("timeout")},h.timeout));try{u=!1,i.send(b,o)}catch(e){if(u)throw e;o(-1,e)}}else o(-1,"No Transport");return C},getJSON:function(e,t,n){return he.get(e,t,n,"json")},getScript:function(e,t){return he.get(e,void 0,t,"script")}}),he.each(["get","post"],function(e,t){he[t]=function(e,n,o,i){return he.isFunction(n)&&(i=i||o,o=n,n=void 0),he.ajax(he.extend({url:e,type:t,dataType:i,data:n,success:o},he.isPlainObject(e)&&e))}}),he._evalUrl=function(e){return he.ajax({url:e,type:"GET",dataType:"script",cache:!0,async:!1,global:!1,throws:!0})},he.fn.extend({wrapAll:function(e){var t;return this[0]&&(he.isFunction(e)&&(e=e.call(this[0])),t=he(e,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&t.insertBefore(this[0]),t.map(function(){for(var e=this;e.firstElementChild;)e=e.firstElementChild;return e}).append(this)),this},wrapInner:function(e){return he.isFunction(e)?this.each(function(t){he(this).wrapInner(e.call(this,t))}):this.each(function(){var t=he(this),n=t.contents();n.length?n.wrapAll(e):t.append(e)})},wrap:function(e){var t=he.isFunction(e);return this.each(function(n){he(this).wrapAll(t?e.call(this,n):e)})},unwrap:function(e){return this.parent(e).not("body").each(function(){he(this).replaceWith(this.childNodes)}),this}}),he.expr.pseudos.hidden=function(e){return!he.expr.pseudos.visible(e)},he.expr.pseudos.visible=function(e){return!!(e.offsetWidth||e.offsetHeight||e.getClientRects().length)},he.ajaxSettings.xhr=function(){try{return new e.XMLHttpRequest}catch(e){}};var Bt={0:200,1223:204},Wt=he.ajaxSettings.xhr();de.cors=!!Wt&&"withCredentials"in Wt,de.ajax=Wt=!!Wt,he.ajaxTransport(function(t){var n,o;if(de.cors||Wt&&!t.crossDomain)return{send:function(i,r){var a,s=t.xhr();if(s.open(t.type,t.url,t.async,t.username,t.password),t.xhrFields)for(a in t.xhrFields)s[a]=t.xhrFields[a];t.mimeType&&s.overrideMimeType&&s.overrideMimeType(t.mimeType),t.crossDomain||i["X-Requested-With"]||(i["X-Requested-With"]="XMLHttpRequest");for(a in i)s.setRequestHeader(a,i[a]);n=function(e){return function(){n&&(n=o=s.onload=s.onerror=s.onabort=s.onreadystatechange=null,"abort"===e?s.abort():"error"===e?"number"!=typeof s.status?r(0,"error"):r(s.status,s.statusText):r(Bt[s.status]||s.status,s.statusText,"text"!==(s.responseType||"text")||"string"!=typeof s.responseText?{binary:s.response}:{text:s.responseText},s.getAllResponseHeaders()))}},s.onload=n(),o=s.onerror=n("error"),void 0!==s.onabort?s.onabort=o:s.onreadystatechange=function(){4===s.readyState&&e.setTimeout(function(){n&&o()})},n=n("abort");try{s.send(t.hasContent&&t.data||null)}catch(e){if(n)throw e}},abort:function(){n&&n()}}}),he.ajaxPrefilter(function(e){e.crossDomain&&(e.contents.script=!1)}),he.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/\b(?:java|ecma)script\b/},converters:{"text script":function(e){return he.globalEval(e),e}}}),he.ajaxPrefilter("script",function(e){void 0===e.cache&&(e.cache=!1),e.crossDomain&&(e.type="GET")}),he.ajaxTransport("script",function(e){if(e.crossDomain){var t,n;return{send:function(o,i){t=he("