From 096822ce50d94a66b237adf6c65709b9c3be2f40 Mon Sep 17 00:00:00 2001 From: HuangHai <10402852@qq.com> Date: Wed, 10 Sep 2025 15:36:46 +0800 Subject: [PATCH] 'commit' --- Routes/BigScreen.py | 30 ++- Routes/__pycache__/BigScreen.cpython-310.pyc | Bin 5652 -> 5896 bytes static/css/style.css | 79 ++++++ static/index.html | 240 +------------------ static/js/jquery-3.7.1.min.js | 2 + static/js/script.js | 77 ++++++ 6 files changed, 186 insertions(+), 242 deletions(-) create mode 100644 static/css/style.css create mode 100644 static/js/jquery-3.7.1.min.js create mode 100644 static/js/script.js diff --git a/Routes/BigScreen.py b/Routes/BigScreen.py index a9bc1b4..489cf85 100644 --- a/Routes/BigScreen.py +++ b/Routes/BigScreen.py @@ -72,8 +72,8 @@ def generate_population_chart_config(year="2024"): population_data = load_population_data() # 筛选出州市级数据(排除县级数据) - # 正确的格式是 9 位数字,且以 000 结尾但不以 000000 结尾 - cities = [item for item in population_data if len(item["area_code"]) == 9 and item["area_code"].endswith("000") and not item["area_code"].endswith("000000")] + # 正确的格式是9位数字,以000结尾且第5-6位为00(表示州市级) + cities = [item for item in population_data if len(item["area_code"]) == 9 and item["area_code"].endswith("000") and item["area_code"][4:6] == "00"] # 提取城市名称和人口数据 city_names = [city["area_name"] for city in cities] @@ -89,12 +89,19 @@ def generate_population_chart_config(year="2024"): .add_yaxis("城镇人口", urban_populations, stack="stack1") .add_yaxis("农村人口", rural_populations, stack="stack1") .set_global_opts( - title_opts=opts.TitleOpts(title=f"云南省各州市人口分布图({year}年)"), + title_opts=opts.TitleOpts( + title=f"云南省各州市人口分布图({year}年)", + pos_top="1%", # 调整标题位置到顶部1% + pos_left="center" + ), tooltip_opts=opts.TooltipOpts( trigger="axis", axis_pointer_type="shadow" ), - legend_opts=opts.LegendOpts(pos_top="5%"), + legend_opts=opts.LegendOpts( + pos_top="8%", # 调整图例位置到标题下方 + pos_right="5%" + ), datazoom_opts=[opts.DataZoomOpts()], xaxis_opts=opts.AxisOpts( axislabel_opts=opts.LabelOpts(rotate=45) @@ -127,8 +134,8 @@ def generate_urbanization_rate_chart_config(): population_data = load_population_data() # 筛选出州市级数据(排除县级数据) - # 正确的格式是 9 位数字,且以 000 结尾但不以 000000 结尾 - cities = [item for item in population_data if len(item["area_code"]) == 9 and item["area_code"].endswith("000") and not item["area_code"].endswith("000000")] + # 排除省级数据(如云南省530000000)和县级数据,只保留州市级数据 + cities = [item for item in population_data if len(item["area_code"]) == 9 and item["area_code"].endswith("000") and item["area_code"][4:6] == "00" and item["area_code"][2:8] != "000000"] # 提取城市名称和城镇化率数据 city_names = [city["area_name"] for city in cities] @@ -147,9 +154,16 @@ def generate_urbanization_rate_chart_config(): markpoint_opts=opts.MarkPointOpts(data=[opts.MarkPointItem(type_="max")])) line.set_global_opts( - title_opts=opts.TitleOpts(title="云南省各州市城镇化率变化趋势"), + title_opts=opts.TitleOpts( + title="云南省各州市城镇化率变化趋势", + pos_top="1%", # 调整标题位置到顶部1% + pos_left="center" + ), tooltip_opts=opts.TooltipOpts(trigger="axis"), - legend_opts=opts.LegendOpts(pos_top="5%"), + legend_opts=opts.LegendOpts( + pos_top="8%", # 调整图例位置到标题下方 + pos_right="5%" + ), datazoom_opts=[opts.DataZoomOpts()], xaxis_opts=opts.AxisOpts( axislabel_opts=opts.LabelOpts(rotate=45) diff --git a/Routes/__pycache__/BigScreen.cpython-310.pyc b/Routes/__pycache__/BigScreen.cpython-310.pyc index 5afa766f5fc581a724496911ba5617b71d0a9502..858b390b29ca58fa6530574955d7c86ca08ae521 100644 GIT binary patch delta 1771 zcmai!OKclO7{_;Z$LsYve%qX|u+7+^ zNlBU{)ELPW8XI-CdlNDX8TV`G0xmgeEW%0T?O;{hyOVrg>`-*+Tb4yt@YTgas ziulkllgWuZ!57&%RJht;WMEW}1E!S~L}9i$m8&b{UG;S}qonkP z!{P-imoKwI(*aW&S~{I>Qm~pjx~k}LjOtZveOweA*E&vsm8JP&ZJD=$*@6qLlVaOZ z43C4kNg8yyVDWz>*USNOMto$(5-(yk*736l*{0P2+?OzPPEo`=X2-EJ;H1>7moIW_ zK36GM7U!*6v0UQ#+We7yWb1R{dFN8{o_ZkB(DQ{-t-v=m?t!@td!<~>)ykEufyR7c zswTd1?hhYK+*5}Wn<{?=in0#O@#6GMO>8?SNKlNobrG*vXd5Fw@o8IMI*5-ELhJ#g z{QNN5`1N=g5kYhyqKKGqxQ3HmXm%pH5j}`rL>$ovNSQn%m}@eWz(^9&kC0#LtoXq- zL@o=byJwOTlc;dgKdDV#w<&F14T?E>pK9pKil!Qa2ytWdNA8wMlo`7XOP(9snN~KfKF`aec3IN5ngO(wJx@VD=-s?6N z6XTwaWalGfdmip8W!sOkUE3{NrhtTXW|vYn=Cp^T?BJs?mmftujW~wDWx$^SG*QA$ ze7UR+5{H97i@7nxZY4wPCXA{LC!H5to(ua9k7;$Rm=FiOo!XI>h%fGl z*tf_hty1x-6mX7PAjbb!@%z{gR)eyLzvHJbK51wR)>4Y_8BB!49q)6)_{sRohzp1; z017Um{VL)T;x$ALaTzfw4*88t1uSP_Q{0*3WH9Yk91~QbNv3PChP28ncVX@uyTL!L#lnTx- zfw0H~qQ0;2p12FD>jvD3UlHqpr$|bC9vIfKBY#Z%7I@P6Et>lfOX7)O)zc0p`~chv z;Ibe-3-*WafV0y|w;6;lw~|N1@4-G26?;PydK^MLElQ!t<8lvlqd$NcM97^5ACcp& c8(Ou-`4x1R5X<7r(70>V81WOsFk!gKUr5_uu>b%7 delta 1465 zcmaizOKcle6o!3f#^dqWGqxwT<2bSNc4O2eE)XiAG)0JzgyunG9>Jm*C)Z75sc~}S zid1q6QYF+Dc@Z6UEO1zW0;m-#3t-nx7l;+htXP0VSRqA12t>;{ld3310$cw4-~XI@ z=gysft_{6^+^$-d>7mcn%$*B&+rO}%R$=${lzI&yi{ERD#1Zc#4Bo!tJp<5(-|7?4 zijFT2r|`V57m|3x_rco@sCg?s5fWh$X(*%(;fNM?oBkcoGFMId1w>TD8X)3szbRTp zLbQowLlx}}y%KagIz-B?S~RjnT6Bu8hO!Kzo96X2lr3M~*9`4=wv1Z18L1mPu;s6N z{drHe7jGHKz`-cp%d)5LIhVvALYcuP2z3WGlsarH>q_3Us}=kuSuPcqs-nE_r{;p1 z%jF6>A%{=+$Mge*%u#&Hf2I9-E^A9GwaYR{@(>oQNer7SiD{C%u%}%vm*kP+wmAT^ z_>GzBo#SrqlV=(3GKVYB(6#b76iHEcBJe-m^SnSF7Xq7J86u6p1%|AV{#_{e)~XxD zT6GOagR>CB_kx`e!Owyd;NU^9FBjv9aYllWb>u158l#PoWOOi6j5JPIBbhFios4cq z52KgS$LJ?yO*xMrS&Oj@JI5FU4EG+-Vw*h-^EhR9KjnZ13VpSEre=^fLA$T1?2z}D z_Nx*n2W)nKR_+^Jrm88jf;a6H{D|M#*Po+6XcfP(gzYMmgT|^EaKoihbhL^kBEq4N zaO}w8sEPPt#2Q|a#1BL5(9Rjj$`&1_-v}=ZzQBVs4?CwH zs-tt>Wq$@kku;1wc(Buv^yq)aV4LUU371sDPhWqzr(P^=W(ipvdl`85kjv~|V65OTPJj4c`RHspF||eYjWL3**qW_s znhwf6LpQ*oI7Gpqn3xn76CRC?8=XJ(-wnqN%PM}-lBTrXZ7Eq5S}v#!q9% z5_f3uU?tsafLuQ;j^Tc+4^n8yXXoA5;{^G8x~yKRm1Q9?H#8i| nS;ioPFClr`a+R>BZq%f#@^Fo@jyK~o)=A@W2MmKw!m#0QBE%qk diff --git a/static/css/style.css b/static/css/style.css new file mode 100644 index 0000000..3da218b --- /dev/null +++ b/static/css/style.css @@ -0,0 +1,79 @@ +body { + margin: 0; + padding: 20px; + font-family: 'Microsoft YaHei', sans-serif; + background-color: #f5f7fa; +} +.header { + text-align: center; + margin-bottom: 30px; +} +.header h1 { + color: #2c3e50; + margin-bottom: 10px; +} +.chart-container { + width: 100%; + max-width: 1200px; + margin: 0 auto 30px; + background-color: #fff; + border-radius: 8px; + box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1); + padding: 20px; +} +.chart { + width: 100%; + height: 400px; +} +.controls { + margin-bottom: 20px; + text-align: center; +} +.controls select, .controls input { + padding: 8px 12px; + border: 1px solid #ddd; + border-radius: 4px; + margin-right: 10px; +} +.controls button { + padding: 8px 16px; + background-color: #409eff; + color: white; + border: none; + border-radius: 4px; + cursor: pointer; + margin-right: 10px; +} +.controls button:hover { + background-color: #66b1ff; +} +.message { + text-align: center; + color: #666; + margin: 20px 0; +} +.tabs { + display: flex; + margin-bottom: 20px; + border-bottom: 1px solid #ddd; +} +.tab { + padding: 10px 20px; + cursor: pointer; + background-color: #f5f7fa; + border: 1px solid #ddd; + border-bottom: none; + border-radius: 4px 4px 0 0; + margin-right: 5px; +} +.tab.active { + background-color: #fff; + border-bottom: 1px solid #fff; + margin-bottom: -1px; +} +.tab-content { + display: none; +} +.tab-content.active { + display: block; +} \ No newline at end of file diff --git a/static/index.html b/static/index.html index 5a49cda..6a9f4bc 100644 --- a/static/index.html +++ b/static/index.html @@ -4,89 +4,9 @@ 云南教育决策研究服务系统 - + - +
@@ -98,7 +18,6 @@
人口数据图表
城镇化率图表
-
示例图表
@@ -114,7 +33,7 @@
-
点击"加载图表"按钮获取数据
+
@@ -125,157 +44,10 @@
点击"加载图表"按钮获取数据
- -
-

柱状图示例

-
- - -
-
-
点击"加载图表"按钮获取数据
-
- + + + \ No newline at end of file diff --git a/static/js/jquery-3.7.1.min.js b/static/js/jquery-3.7.1.min.js new file mode 100644 index 0000000..7f37b5d --- /dev/null +++ b/static/js/jquery-3.7.1.min.js @@ -0,0 +1,2 @@ +/*! jQuery v3.7.1 | (c) OpenJS Foundation and other contributors | jquery.org/license */ +!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(ie,e){"use strict";var oe=[],r=Object.getPrototypeOf,ae=oe.slice,g=oe.flat?function(e){return oe.flat.call(e)}:function(e){return oe.concat.apply([],e)},s=oe.push,se=oe.indexOf,n={},i=n.toString,ue=n.hasOwnProperty,o=ue.toString,a=o.call(Object),le={},v=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType&&"function"!=typeof e.item},y=function(e){return null!=e&&e===e.window},C=ie.document,u={type:!0,src:!0,nonce:!0,noModule:!0};function m(e,t,n){var r,i,o=(n=n||C).createElement("script");if(o.text=e,t)for(r in u)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function x(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?n[i.call(e)]||"object":typeof e}var t="3.7.1",l=/HTML$/i,ce=function(e,t){return new ce.fn.init(e,t)};function c(e){var t=!!e&&"length"in e&&e.length,n=x(e);return!v(e)&&!y(e)&&("array"===n||0===t||"number"==typeof t&&0+~]|"+ge+")"+ge+"*"),x=new RegExp(ge+"|>"),j=new RegExp(g),A=new RegExp("^"+t+"$"),D={ID:new RegExp("^#("+t+")"),CLASS:new RegExp("^\\.("+t+")"),TAG:new RegExp("^("+t+"|[*])"),ATTR:new RegExp("^"+p),PSEUDO:new RegExp("^"+g),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+ge+"*(even|odd|(([+-]|)(\\d*)n|)"+ge+"*(?:([+-]|)"+ge+"*(\\d+)|))"+ge+"*\\)|)","i"),bool:new RegExp("^(?:"+f+")$","i"),needsContext:new RegExp("^"+ge+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+ge+"*((?:-\\d)?\\d*)"+ge+"*\\)|)(?=[^-]|$)","i")},N=/^(?:input|select|textarea|button)$/i,q=/^h\d$/i,L=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,H=/[+~]/,O=new RegExp("\\\\[\\da-fA-F]{1,6}"+ge+"?|\\\\([^\\r\\n\\f])","g"),P=function(e,t){var n="0x"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},M=function(){V()},R=J(function(e){return!0===e.disabled&&fe(e,"fieldset")},{dir:"parentNode",next:"legend"});try{k.apply(oe=ae.call(ye.childNodes),ye.childNodes),oe[ye.childNodes.length].nodeType}catch(e){k={apply:function(e,t){me.apply(e,ae.call(t))},call:function(e){me.apply(e,ae.call(arguments,1))}}}function I(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==p&&9!==p&&11!==p)return n;if(!r&&(V(e),e=e||T,C)){if(11!==p&&(u=L.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return k.call(n,a),n}else if(f&&(a=f.getElementById(i))&&I.contains(e,a)&&a.id===i)return k.call(n,a),n}else{if(u[2])return k.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&e.getElementsByClassName)return k.apply(n,e.getElementsByClassName(i)),n}if(!(h[t+" "]||d&&d.test(t))){if(c=t,f=e,1===p&&(x.test(t)||m.test(t))){(f=H.test(t)&&U(e.parentNode)||e)==e&&le.scope||((s=e.getAttribute("id"))?s=ce.escapeSelector(s):e.setAttribute("id",s=S)),o=(l=Y(t)).length;while(o--)l[o]=(s?"#"+s:":scope")+" "+Q(l[o]);c=l.join(",")}try{return k.apply(n,f.querySelectorAll(c)),n}catch(e){h(t,!0)}finally{s===S&&e.removeAttribute("id")}}}return re(t.replace(ve,"$1"),e,n,r)}function W(){var r=[];return function e(t,n){return r.push(t+" ")>b.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function F(e){return e[S]=!0,e}function $(e){var t=T.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function B(t){return function(e){return fe(e,"input")&&e.type===t}}function _(t){return function(e){return(fe(e,"input")||fe(e,"button"))&&e.type===t}}function z(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&R(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function X(a){return F(function(o){return o=+o,F(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function U(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}function V(e){var t,n=e?e.ownerDocument||e:ye;return n!=T&&9===n.nodeType&&n.documentElement&&(r=(T=n).documentElement,C=!ce.isXMLDoc(T),i=r.matches||r.webkitMatchesSelector||r.msMatchesSelector,r.msMatchesSelector&&ye!=T&&(t=T.defaultView)&&t.top!==t&&t.addEventListener("unload",M),le.getById=$(function(e){return r.appendChild(e).id=ce.expando,!T.getElementsByName||!T.getElementsByName(ce.expando).length}),le.disconnectedMatch=$(function(e){return i.call(e,"*")}),le.scope=$(function(){return T.querySelectorAll(":scope")}),le.cssHas=$(function(){try{return T.querySelector(":has(*,:jqfake)"),!1}catch(e){return!0}}),le.getById?(b.filter.ID=function(e){var t=e.replace(O,P);return function(e){return e.getAttribute("id")===t}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&C){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(O,P);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&C){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),b.find.TAG=function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):t.querySelectorAll(e)},b.find.CLASS=function(e,t){if("undefined"!=typeof t.getElementsByClassName&&C)return t.getElementsByClassName(e)},d=[],$(function(e){var t;r.appendChild(e).innerHTML="",e.querySelectorAll("[selected]").length||d.push("\\["+ge+"*(?:value|"+f+")"),e.querySelectorAll("[id~="+S+"-]").length||d.push("~="),e.querySelectorAll("a#"+S+"+*").length||d.push(".#.+[+~]"),e.querySelectorAll(":checked").length||d.push(":checked"),(t=T.createElement("input")).setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),r.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&d.push(":enabled",":disabled"),(t=T.createElement("input")).setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name='']").length||d.push("\\["+ge+"*name"+ge+"*="+ge+"*(?:''|\"\")")}),le.cssHas||d.push(":has"),d=d.length&&new RegExp(d.join("|")),l=function(e,t){if(e===t)return a=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!le.sortDetached&&t.compareDocumentPosition(e)===n?e===T||e.ownerDocument==ye&&I.contains(ye,e)?-1:t===T||t.ownerDocument==ye&&I.contains(ye,t)?1:o?se.call(o,e)-se.call(o,t):0:4&n?-1:1)}),T}for(e in I.matches=function(e,t){return I(e,null,null,t)},I.matchesSelector=function(e,t){if(V(e),C&&!h[t+" "]&&(!d||!d.test(t)))try{var n=i.call(e,t);if(n||le.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){h(t,!0)}return 0":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(O,P),e[3]=(e[3]||e[4]||e[5]||"").replace(O,P),"~="===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]||I.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]&&I.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return D.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&j.test(n)&&(t=Y(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(O,P).toLowerCase();return"*"===e?function(){return!0}:function(e){return fe(e,t)}},CLASS:function(e){var t=s[e+" "];return t||(t=new RegExp("(^|"+ge+")"+e+"("+ge+"|$)"))&&s(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=I.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function T(e,n,r){return v(n)?ce.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?ce.grep(e,function(e){return e===n!==r}):"string"!=typeof n?ce.grep(e,function(e){return-1)[^>]*|#([\w-]+))$/;(ce.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||k,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:S.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof ce?t[0]:t,ce.merge(this,ce.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:C,!0)),w.test(r[1])&&ce.isPlainObject(t))for(r in t)v(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=C.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):v(e)?void 0!==n.ready?n.ready(e):e(ce):ce.makeArray(e,this)}).prototype=ce.fn,k=ce(C);var E=/^(?:parents|prev(?:Until|All))/,j={children:!0,contents:!0,next:!0,prev:!0};function A(e,t){while((e=e[t])&&1!==e.nodeType);return e}ce.fn.extend({has:function(e){var t=ce(e,this),n=t.length;return this.filter(function(){for(var e=0;e\x20\t\r\n\f]*)/i,Ce=/^$|^module$|\/(?:java|ecma)script/i;xe=C.createDocumentFragment().appendChild(C.createElement("div")),(be=C.createElement("input")).setAttribute("type","radio"),be.setAttribute("checked","checked"),be.setAttribute("name","t"),xe.appendChild(be),le.checkClone=xe.cloneNode(!0).cloneNode(!0).lastChild.checked,xe.innerHTML="",le.noCloneChecked=!!xe.cloneNode(!0).lastChild.defaultValue,xe.innerHTML="",le.option=!!xe.lastChild;var ke={thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};function Se(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&fe(e,t)?ce.merge([e],n):n}function Ee(e,t){for(var n=0,r=e.length;n",""]);var je=/<|&#?\w+;/;function Ae(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),p=[],d=0,h=e.length;d\s*$/g;function Re(e,t){return fe(e,"table")&&fe(11!==t.nodeType?t:t.firstChild,"tr")&&ce(e).children("tbody")[0]||e}function Ie(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function We(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Fe(e,t){var n,r,i,o,a,s;if(1===t.nodeType){if(_.hasData(e)&&(s=_.get(e).events))for(i in _.remove(t,"handle events"),s)for(n=0,r=s[i].length;n").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on("load error",i=function(e){r.remove(),i=null,e&&t("error"===e.type?404:200,e.type)}),C.head.appendChild(r[0])},abort:function(){i&&i()}}});var Jt,Kt=[],Zt=/(=)\?(?=&|$)|\?\?/;ce.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=Kt.pop()||ce.expando+"_"+jt.guid++;return this[e]=!0,e}}),ce.ajaxPrefilter("json jsonp",function(e,t,n){var r,i,o,a=!1!==e.jsonp&&(Zt.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Zt.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return r=e.jsonpCallback=v(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Zt,"$1"+r):!1!==e.jsonp&&(e.url+=(At.test(e.url)?"&":"?")+e.jsonp+"="+r),e.converters["script json"]=function(){return o||ce.error(r+" was not called"),o[0]},e.dataTypes[0]="json",i=ie[r],ie[r]=function(){o=arguments},n.always(function(){void 0===i?ce(ie).removeProp(r):ie[r]=i,e[r]&&(e.jsonpCallback=t.jsonpCallback,Kt.push(r)),o&&v(i)&&i(o[0]),o=i=void 0}),"script"}),le.createHTMLDocument=((Jt=C.implementation.createHTMLDocument("").body).innerHTML="
",2===Jt.childNodes.length),ce.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(le.createHTMLDocument?((r=(t=C.implementation.createHTMLDocument("")).createElement("base")).href=C.location.href,t.head.appendChild(r)):t=C),o=!n&&[],(i=w.exec(e))?[t.createElement(i[1])]:(i=Ae([e],t,o),o&&o.length&&ce(o).remove(),ce.merge([],i.childNodes)));var r,i,o},ce.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return-1").append(ce.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},ce.expr.pseudos.animated=function(t){return ce.grep(ce.timers,function(e){return t===e.elem}).length},ce.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=ce.css(e,"position"),c=ce(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=ce.css(e,"top"),u=ce.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),v(t)&&(t=t.call(e,n,ce.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):c.css(f)}},ce.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){ce.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===ce.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===ce.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=ce(e).offset()).top+=ce.css(e,"borderTopWidth",!0),i.left+=ce.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-ce.css(r,"marginTop",!0),left:t.left-i.left-ce.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===ce.css(e,"position"))e=e.offsetParent;return e||J})}}),ce.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;ce.fn[t]=function(e){return M(this,function(e,t,n){var r;if(y(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),ce.each(["top","left"],function(e,n){ce.cssHooks[n]=Ye(le.pixelPosition,function(e,t){if(t)return t=Ge(e,n),_e.test(t)?ce(e).position()[n]+"px":t})}),ce.each({Height:"height",Width:"width"},function(a,s){ce.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){ce.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return M(this,function(e,t,n){var r;return y(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?ce.css(e,t,i):ce.style(e,t,n,i)},s,n?e:void 0,n)}})}),ce.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){ce.fn[t]=function(e){return this.on(t,e)}}),ce.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)},hover:function(e,t){return this.on("mouseenter",e).on("mouseleave",t||e)}}),ce.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){ce.fn[n]=function(e,t){return 0