diff --git a/app/Http/Controllers/Client/Protocols/Clash.php b/app/Http/Controllers/Client/Protocols/Clash.php index bb0c0484..5d45390b 100644 --- a/app/Http/Controllers/Client/Protocols/Clash.php +++ b/app/Http/Controllers/Client/Protocols/Clash.php @@ -97,7 +97,7 @@ class Clash $array['server'] = $server['host']; $array['port'] = $server['port']; $array['uuid'] = $uuid; - $array['alterId'] = $server['alter_id']; + $array['alterId'] = 0; $array['cipher'] = 'auto'; $array['udp'] = true; diff --git a/app/Http/Controllers/Client/Protocols/Passwall.php b/app/Http/Controllers/Client/Protocols/Passwall.php index 241fe050..4b191adf 100644 --- a/app/Http/Controllers/Client/Protocols/Passwall.php +++ b/app/Http/Controllers/Client/Protocols/Passwall.php @@ -54,7 +54,7 @@ class Passwall "add" => $server['host'], "port" => (string)$server['port'], "id" => $uuid, - "aid" => (string)$server['alter_id'], + "aid" => '0', "net" => $server['network'], "type" => "none", "host" => "", diff --git a/app/Http/Controllers/Client/Protocols/SSRPlus.php b/app/Http/Controllers/Client/Protocols/SSRPlus.php index 369be688..bf5ab830 100644 --- a/app/Http/Controllers/Client/Protocols/SSRPlus.php +++ b/app/Http/Controllers/Client/Protocols/SSRPlus.php @@ -54,7 +54,7 @@ class SSRPlus "add" => $server['host'], "port" => (string)$server['port'], "id" => $uuid, - "aid" => (string)$server['alter_id'], + "aid" => '0', "net" => $server['network'], "type" => "none", "host" => "", diff --git a/app/Http/Controllers/Client/Protocols/Shadowrocket.php b/app/Http/Controllers/Client/Protocols/Shadowrocket.php index 3e54fd51..67cceec4 100644 --- a/app/Http/Controllers/Client/Protocols/Shadowrocket.php +++ b/app/Http/Controllers/Client/Protocols/Shadowrocket.php @@ -58,7 +58,7 @@ class Shadowrocket $config = [ 'tfo' => 1, 'remark' => $server['name'], - 'alterId' => $server['alter_id'] + 'alterId' => 0 ]; if ($server['tls']) { $config['tls'] = 1; diff --git a/app/Http/Controllers/Client/Protocols/Stash.php b/app/Http/Controllers/Client/Protocols/Stash.php index 34b9b728..05d395c6 100644 --- a/app/Http/Controllers/Client/Protocols/Stash.php +++ b/app/Http/Controllers/Client/Protocols/Stash.php @@ -98,7 +98,7 @@ class Stash $array['server'] = $server['host']; $array['port'] = $server['port']; $array['uuid'] = $uuid; - $array['alterId'] = $server['alter_id']; + $array['alterId'] = 0; $array['cipher'] = 'auto'; $array['udp'] = true; diff --git a/app/Http/Controllers/Client/Protocols/V2rayN.php b/app/Http/Controllers/Client/Protocols/V2rayN.php index fccd6389..851822f6 100644 --- a/app/Http/Controllers/Client/Protocols/V2rayN.php +++ b/app/Http/Controllers/Client/Protocols/V2rayN.php @@ -54,7 +54,7 @@ class V2rayN "add" => $server['host'], "port" => (string)$server['port'], "id" => $uuid, - "aid" => (string)$server['alter_id'], + "aid" => '0', "net" => $server['network'], "type" => "none", "host" => "", diff --git a/app/Http/Controllers/Client/Protocols/V2rayNG.php b/app/Http/Controllers/Client/Protocols/V2rayNG.php index b010759b..c7ab6bfd 100644 --- a/app/Http/Controllers/Client/Protocols/V2rayNG.php +++ b/app/Http/Controllers/Client/Protocols/V2rayNG.php @@ -54,7 +54,7 @@ class V2rayNG "add" => $server['host'], "port" => (string)$server['port'], "id" => $uuid, - "aid" => (string)$server['alter_id'], + "aid" => '0', "net" => $server['network'], "type" => "none", "host" => "", diff --git a/app/Http/Controllers/Server/DeepbworkController.php b/app/Http/Controllers/Server/DeepbworkController.php index e5a97a1f..b5905023 100644 --- a/app/Http/Controllers/Server/DeepbworkController.php +++ b/app/Http/Controllers/Server/DeepbworkController.php @@ -47,7 +47,7 @@ class DeepbworkController extends Controller $user->v2ray_user = [ "uuid" => $user->uuid, "email" => sprintf("%s@v2board.user", $user->uuid), - "alter_id" => $server->alter_id, + "alter_id" => 0, "level" => 0, ]; unset($user['uuid']); diff --git a/app/Http/Controllers/User/ServerController.php b/app/Http/Controllers/User/ServerController.php index 497cfe88..aa6d4b1a 100644 --- a/app/Http/Controllers/User/ServerController.php +++ b/app/Http/Controllers/User/ServerController.php @@ -13,6 +13,7 @@ use App\Models\ServerLog; use App\Models\User; use App\Utils\Helper; +use Illuminate\Support\Facades\DB; class ServerController extends Controller { @@ -35,7 +36,15 @@ class ServerController extends Controller $type = $request->input('type') ? $request->input('type') : 0; $current = $request->input('current') ? $request->input('current') : 1; $pageSize = $request->input('pageSize') >= 10 ? $request->input('pageSize') : 10; - $serverLogModel = ServerLog::where('user_id', $request->session()->get('id')) + $serverLogModel = ServerLog::select([ + DB::raw('sum(u) as u'), + DB::raw('sum(d) as d'), + 'log_at', + 'user_id', + 'updated_at' + ]) + ->where('user_id', $request->session()->get('id')) + ->groupBy('log_at', 'user_id') ->orderBy('log_at', 'DESC'); switch ($type) { case 0: diff --git a/app/Http/Requests/Admin/ServerV2raySave.php b/app/Http/Requests/Admin/ServerV2raySave.php index e3823f4c..e6c001c2 100755 --- a/app/Http/Requests/Admin/ServerV2raySave.php +++ b/app/Http/Requests/Admin/ServerV2raySave.php @@ -24,7 +24,6 @@ class ServerV2raySave extends FormRequest 'tls' => 'required', 'tags' => 'nullable|array', 'rate' => 'required|numeric', - 'alter_id' => 'required|integer', 'network' => 'required|in:tcp,kcp,ws,http,domainsocket,quic,grpc', 'networkSettings' => 'nullable|array', 'ruleSettings' => 'nullable|array', diff --git a/config/app.php b/config/app.php index 83e19dbd..3d3b3563 100755 --- a/config/app.php +++ b/config/app.php @@ -237,5 +237,5 @@ return [ | The only modification by laravel config | */ - 'version' => '1.5.4.1640966110216' + 'version' => '1.5.5.1641274817595' ]; diff --git a/database/install.sql b/database/install.sql index b990af53..24440d75 100644 --- a/database/install.sql +++ b/database/install.sql @@ -257,7 +257,6 @@ CREATE TABLE `v2_server_v2ray` ( `tags` varchar(255) DEFAULT NULL, `rate` varchar(11) NOT NULL, `network` text NOT NULL, - `alter_id` int(11) NOT NULL DEFAULT '1', `settings` text, `rules` text, `networkSettings` text, @@ -370,4 +369,4 @@ CREATE TABLE `v2_user` ( ) ENGINE=InnoDB DEFAULT CHARSET=utf8; --- 2021-12-27 17:37:09 +-- 2022-01-04 05:39:52 diff --git a/database/update.sql b/database/update.sql index de39fcd8..eccd5f0b 100644 --- a/database/update.sql +++ b/database/update.sql @@ -471,3 +471,6 @@ ALTER TABLE `v2_coupon` ALTER TABLE `v2_order` CHANGE `cycle` `period` varchar(255) COLLATE 'utf8_general_ci' NOT NULL AFTER `type`; + +ALTER TABLE `v2_server_v2ray` +DROP `alter_id`; diff --git a/public/assets/admin/components.async.js b/public/assets/admin/components.async.js index 424d32c4..5153e9e6 100644 --- a/public/assets/admin/components.async.js +++ b/public/assets/admin/components.async.js @@ -1 +1 @@ -(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([[0],{"+BJd":function(e,t,n){"use strict";n("cIOH"),n("6MrE")},"+Gva":function(e,t,n){"use strict";var c=n("N2Kk"),r=n("L9pr"),o={placeholder:"\u8bf7\u9009\u62e9\u65f6\u95f4"},a=o;function l(){return l=Object.assign||function(e){for(var t=1;t0?n:null}}]),c}(o["Component"]);return t.defaultProps={allowClear:!0,showToday:!0},Object(l["polyfill"])(t),t}var E=n("wgp+"),j=n("61s2"),_=n("YMnH"),T=n("5lmr"),N=n("RlXo");function R(e){"@babel/helpers - typeof";return R="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},R(e)}function A(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function F(){return F=Object.assign||function(e){for(var t=1;t-1||e.indexOf("h")>-1||e.indexOf("k")>-1,showMinute:e.indexOf("m")>-1,showSecond:e.indexOf("s")>-1}}var J=function(e){K(n,e);var t=q(n);function n(e){var c;D(this,n),c=t.call(this,e),c.getDefaultLocale=function(){var e=F(F({},N["a"]),c.props.locale);return e},c.handleOpenClose=function(e){var t=e.open,n=c.props.onOpenChange;n&&n(t)},c.saveTimePicker=function(e){c.timePickerRef=e},c.handleChange=function(e){"value"in c.props||c.setState({value:e});var t=c.props,n=t.onChange,r=t.format,o=void 0===r?"HH:mm:ss":r;n&&n(e,e&&e.format(o)||"")},c.renderTimePicker=function(e){return o["createElement"](p["a"],null,function(t){var n=t.getPopupContainer,r=t.getPrefixCls,a=c.props,l=a.getPopupContainer,i=a.prefixCls,u=a.className,h=a.addon,p=a.placeholder,v=X(a,["getPopupContainer","prefixCls","className","addon","placeholder"]),d=v.size,m=Object(f["a"])(v,["defaultValue","suffixIcon","allowEmpty","allowClear"]),y=c.getDefaultFormat(),b=r("time-picker",i),z=s()(u,A({},"".concat(b,"-").concat(d),!!d)),g=function(e){return h?o["createElement"]("div",{className:"".concat(b,"-panel-addon")},h(e)):null};return o["createElement"](T["a"],F({},Z(y),m,{allowEmpty:c.getAllowClear(),prefixCls:b,getPopupContainer:l||n,ref:c.saveTimePicker,format:y,className:z,value:c.state.value,placeholder:void 0===p?e.placeholder:p,onChange:c.handleChange,onOpen:c.handleOpenClose,onClose:c.handleOpenClose,addon:g,inputIcon:c.renderInputIcon(b),clearIcon:c.renderClearIcon(b)}))})};var r=e.value||e.defaultValue;if(r&&!Object(d["a"])(a).isMoment(r))throw new Error("The value/defaultValue of TimePicker must be a moment object after `antd@2.0`, see: https://u.ant.design/time-picker-value");return c.state={value:r},Object(v["a"])(!("allowEmpty"in e),"TimePicker","`allowEmpty` is deprecated. Please use `allowClear` instead."),c}return U(n,[{key:"getDefaultFormat",value:function(){var e=this.props,t=e.format,n=e.use12Hours;return t||(n?"h:mm:ss a":"HH:mm:ss")}},{key:"getAllowClear",value:function(){var e=this.props,t=e.allowClear,n=e.allowEmpty;return"allowClear"in this.props?t:n}},{key:"focus",value:function(){this.timePickerRef.focus()}},{key:"blur",value:function(){this.timePickerRef.blur()}},{key:"renderInputIcon",value:function(e){var t=this.props.suffixIcon,n=t&&o["isValidElement"](t)&&o["cloneElement"](t,{className:s()(t.props.className,"".concat(e,"-clock-icon"))})||o["createElement"](h["a"],{type:"clock-circle",className:"".concat(e,"-clock-icon")});return o["createElement"]("span",{className:"".concat(e,"-icon")},n)}},{key:"renderClearIcon",value:function(e){var t=this.props.clearIcon,n="".concat(e,"-clear");return t&&o["isValidElement"](t)?o["cloneElement"](t,{className:s()(t.props.className,n)}):o["createElement"](h["a"],{type:"close-circle",className:n,theme:"filled"})}},{key:"render",value:function(){return o["createElement"](_["a"],{componentName:"TimePicker",defaultLocale:this.getDefaultLocale()},this.renderTimePicker)}}],[{key:"getDerivedStateFromProps",value:function(e){return"value"in e?{value:e.value}:null}}]),n}(o["Component"]);J.defaultProps={align:{offset:[0,-2]},disabledHours:void 0,disabledMinutes:void 0,disabledSeconds:void 0,hideDisabledOptions:!1,placement:"bottomLeft",transitionName:"slide-up",focusOnOpen:!0},Object(l["polyfill"])(J);function $(e){"@babel/helpers - typeof";return $="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},$(e)}function ee(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function te(){return te=Object.assign||function(e){for(var t=1;te.length)&&(t=e.length);for(var n=0,c=new Array(t);n0&&(e[1]=void 0);var r=Ne(e,2),o=r[0],a=r[1];"function"===typeof n.onChange&&n.onChange(e,[y(o,n.format),y(a,n.format)])},c.handleOpenChange=function(e){"open"in c.props||c.setState({open:e}),!1===e&&c.clearHoverValue();var t=c.props.onOpenChange;t&&t(e)},c.handleShowDateChange=function(e){return c.setState({showDate:e})},c.handleHoverChange=function(e){return c.setState({hoverValue:e})},c.handleRangeMouseLeave=function(){c.state.open&&c.clearHoverValue()},c.handleCalendarInputSelect=function(e){var t=Ne(e,1),n=t[0];n&&c.setState(function(t){var n=t.showDate;return{value:e,showDate:Ue(e)||n}})},c.handleRangeClick=function(e){"function"===typeof e&&(e=e()),c.setValue(e,!0);var t=c.props,n=t.onOk,r=t.onOpenChange;n&&n(e),r&&r(!1)},c.renderFooter=function(){var e=c.props,t=e.ranges,n=e.renderExtraFooter,r=je(c),a=r.prefixCls,l=r.tagPrefixCls;if(!t&&!n)return null;var i=n?o["createElement"]("div",{className:"".concat(a,"-footer-extra"),key:"extra"},n()):null,u=t&&Object.keys(t).map(function(e){var n=t[e],r="function"===typeof n?n.call(je(c)):n;return o["createElement"](ge["a"],{key:e,prefixCls:l,color:"blue",onClick:function(){return c.handleRangeClick(n)},onMouseEnter:function(){return c.setState({hoverValue:r})},onMouseLeave:c.handleRangeMouseLeave},e)}),s=u&&u.length>0?o["createElement"]("div",{className:"".concat(a,"-footer-extra ").concat(a,"-range-quick-selector"),key:"range"},u):null;return[s,i]},c.renderRangePicker=function(e){var t,n=e.getPrefixCls,r=je(c),a=r.state,l=r.props,u=a.value,f=a.showDate,p=a.hoverValue,d=a.open,m=l.prefixCls,b=l.tagPrefixCls,z=l.popupStyle,g=l.style,M=l.disabledDate,C=l.disabledTime,O=l.showTime,H=l.showToday,V=l.ranges,w=l.onOk,S=l.locale,L=l.localeCode,P=l.format,k=l.dateRender,x=l.onCalendarChange,E=l.suffixIcon,j=l.separator,_=n("calendar",m),T=n("tag",b);c.prefixCls=_,c.tagPrefixCls=T,qe(u,L),qe(f,L),Object(v["a"])(!("onOK"in l),"RangePicker","It should be `RangePicker[onOk]`, instead of `onOK`!");var N=s()((t={},Ve(t,"".concat(_,"-time"),O),Ve(t,"".concat(_,"-range-with-ranges"),V),t)),R={onChange:c.handleChange},A={onOk:c.handleChange};l.timePicker?R.onChange=function(e){return c.handleChange(e)}:A={},"mode"in l&&(A.mode=l.mode);var F=Array.isArray(l.placeholder)?l.placeholder[0]:S.lang.rangePlaceholder[0],D=Array.isArray(l.placeholder)?l.placeholder[1]:S.lang.rangePlaceholder[1],I=o["createElement"](ye["a"],He({},A,{seperator:j,onChange:x,format:P,prefixCls:_,className:N,renderFooter:c.renderFooter,timePicker:l.timePicker,disabledDate:M,disabledTime:C,dateInputPlaceholder:[F,D],locale:S.lang,onOk:w,dateRender:k,value:f,onValueChange:c.handleShowDateChange,hoverValue:p,onHoverChange:c.handleHoverChange,onPanelChange:l.onPanelChange,showToday:H,onInputSelect:c.handleCalendarInputSelect})),U={};l.showTime&&(U.width=g&&g.width||350);var K=Ne(u,2),B=K[0],q=K[1],W=!l.disabled&&l.allowClear&&u&&(B||q)?o["createElement"](h["a"],{type:"close-circle",className:"".concat(_,"-picker-clear"),onClick:c.clearSelection,theme:"filled"}):null,G=o["createElement"](Ce,{suffixIcon:E,prefixCls:_}),Q=function(e){var t=e.value,n=Ne(t,2),c=n[0],r=n[1];return o["createElement"]("span",{className:l.pickerInputClass},o["createElement"]("input",{disabled:l.disabled,readOnly:!0,value:y(c,l.format),placeholder:F,className:"".concat(_,"-range-picker-input"),tabIndex:-1}),o["createElement"]("span",{className:"".concat(_,"-range-picker-separator")}," ",j," "),o["createElement"]("input",{disabled:l.disabled,readOnly:!0,value:y(r,l.format),placeholder:D,className:"".concat(_,"-range-picker-input"),tabIndex:-1}),W,G)};return o["createElement"]("span",{ref:c.savePicker,id:"number"===typeof l.id?l.id.toString():l.id,className:s()(l.className,l.pickerClass),style:He(He({},g),U),tabIndex:l.disabled?-1:0,onFocus:l.onFocus,onBlur:l.onBlur,onMouseEnter:l.onMouseEnter,onMouseLeave:l.onMouseLeave},o["createElement"](i["a"],He({},l,R,{calendar:I,value:u,open:d,onOpenChange:c.handleOpenChange,prefixCls:"".concat(_,"-picker-container"),style:z}),Q))};var r=e.value||e.defaultValue||[],l=Ne(r,2),u=l[0],f=l[1];if(u&&!Object(d["a"])(a).isMoment(u)||f&&!Object(d["a"])(a).isMoment(f))throw new Error("The value/defaultValue of RangePicker must be a moment object array after `antd@2.0`, see: https://u.ant.design/date-picker-value");var p=!r||Be(r)?e.defaultPickerValue:r;return c.state={value:r,showDate:Ke(p||Object(d["a"])(a)()),open:e.open,hoverValue:[]},c}return Le(n,[{key:"componentDidUpdate",value:function(e,t){"open"in this.props||!t.open||this.state.open||this.focus()}},{key:"setValue",value:function(e,t){this.handleChange(e),!t&&this.props.showTime||"open"in this.props||this.setState({open:!1})}},{key:"focus",value:function(){this.picker.focus()}},{key:"blur",value:function(){this.picker.blur()}},{key:"render",value:function(){return o["createElement"](p["a"],null,this.renderRangePicker)}}],[{key:"getDerivedStateFromProps",value:function(e,t){var n=null;if("value"in e){var c=e.value||[];n={value:c},ze()(e.value,t.value)||(n=He(He({},n),{showDate:Ue(c,e.mode)||t.showDate}))}return"open"in e&&t.open!==e.open&&(n=He(He({},n),{open:e.open})),n}}]),n}(o["Component"]);We.defaultProps={allowClear:!0,showToday:!1,separator:"~"},Object(l["polyfill"])(We);var Ge=We;function Qe(e){"@babel/helpers - typeof";return Qe="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Qe(e)}function Ye(){return Ye=Object.assign||function(e){for(var t=1;t0?{paddingLeft:t[0]/2,paddingRight:t[0]/2}:{}),t[1]>0?{paddingTop:t[1]/2,paddingBottom:t[1]/2}:{}),n)),c["createElement"]("div",s({},M,{style:n,className:V}),g)})},e}return v(n,[{key:"render",value:function(){return c["createElement"](i["a"],null,this.renderCol)}}]),n}(c["Component"]);H.propTypes={span:r["number"],order:r["number"],offset:r["number"],push:r["number"],pull:r["number"],className:r["string"],children:r["node"],xs:O,sm:O,md:O,lg:O,xl:O,xxl:O}},"/wGt":function(e,t,n){"use strict";var c=n("q1tI"),r=n("fcSX"),o=n("foW8"),a=n.n(o),l=n("TSYQ"),i=n.n(l),u=n("BGR+"),s=n("6CfX"),f=n("CtXQ"),h=n("H84U"),p=n("CWQg");function v(e){"@babel/helpers - typeof";return v="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},v(e)}function d(){return d=Object.assign||function(e){for(var t=1;t0&&void 0!==arguments[0]?arguments[0]:{},t=e.arrowWidth,n=void 0===t?5:t,c=e.horizontalArrowShift,r=void 0===c?16:c,o=e.verticalArrowShift,a=void 0===o?12:o,l=e.autoAdjustOverflow,s=void 0===l||l,f={left:{points:["cr","cl"],offset:[-4,0]},right:{points:["cl","cr"],offset:[4,0]},top:{points:["bc","tc"],offset:[0,-4]},bottom:{points:["tc","bc"],offset:[0,4]},topLeft:{points:["bl","tc"],offset:[-(r+n),-4]},leftTop:{points:["tr","cl"],offset:[-4,-(a+n)]},topRight:{points:["br","tc"],offset:[r+n,-4]},rightTop:{points:["tl","cr"],offset:[4,-(a+n)]},bottomRight:{points:["tr","bc"],offset:[r+n,4]},rightBottom:{points:["bl","cr"],offset:[4,a+n]},bottomLeft:{points:["tl","bc"],offset:[-(r+n),4]},leftBottom:{points:["br","cl"],offset:[-4,a+n]}};return Object.keys(f).forEach(function(t){f[t]=e.arrowPointAtCenter?u(u({},f[t]),{overflow:p(s),targetOffset:h}):u(u({},i["a"][t]),{overflow:p(s)}),f[t].ignoreShake=!0}),f}var d=n("H84U");function m(e){"@babel/helpers - typeof";return m="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},m(e)}function y(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function b(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function z(e,t){for(var n=0;n=0||c.indexOf("Bottom")>=0?a.top="".concat(o.height-t.offset[1],"px"):(c.indexOf("Top")>=0||c.indexOf("bottom")>=0)&&(a.top="".concat(-t.offset[1],"px")),c.indexOf("left")>=0||c.indexOf("Right")>=0?a.left="".concat(o.width-t.offset[0],"px"):(c.indexOf("right")>=0||c.indexOf("Left")>=0)&&(a.left="".concat(-t.offset[0],"px")),e.style.transformOrigin="".concat(a.left," ").concat(a.top)}},r.renderTooltip=function(e){var t=e.getPopupContainer,n=e.getPrefixCls,a=V(r),i=a.props,u=a.state,s=i.prefixCls,f=i.openClassName,h=i.getPopupContainer,p=i.getTooltipContainer,v=i.children,d=n("tooltip",s),m=u.visible;"visible"in i||!r.isNoTitle()||(m=!1);var b=k(c["isValidElement"](v)?v:c["createElement"]("span",null,v)),z=b.props,g=l()(z.className,y({},f||"".concat(d,"-open"),!0));return c["createElement"](o["a"],L({},r.props,{prefixCls:d,getTooltipContainer:h||p||t,ref:r.saveTooltip,builtinPlacements:r.getPlacements(),overlay:r.getOverlay(),visible:m,onVisibleChange:r.onVisibleChange,onPopupAlign:r.onPopupAlign}),m?c["cloneElement"](b,{className:g}):b)},r.state={visible:!!e.visible||!!e.defaultVisible},r}return g(n,[{key:"getPopupDomNode",value:function(){return this.tooltip.getPopupDomNode()}},{key:"getPlacements",value:function(){var e=this.props,t=e.builtinPlacements,n=e.arrowPointAtCenter,c=e.autoAdjustOverflow;return t||v({arrowPointAtCenter:n,verticalArrowShift:8,autoAdjustOverflow:c})}},{key:"isNoTitle",value:function(){var e=this.props,t=e.title,n=e.overlay;return!t&&!n&&0!==t}},{key:"getOverlay",value:function(){var e=this.props,t=e.title,n=e.overlay;return 0===t?t:n||t||""}},{key:"render",value:function(){return c["createElement"](d["a"],null,this.renderTooltip)}}],[{key:"getDerivedStateFromProps",value:function(e){return"visible"in e?{visible:e.visible}:null}}]),n}(c["Component"]);x.defaultProps={placement:"top",transitionName:"zoom-big-fast",mouseEnterDelay:.1,mouseLeaveDelay:.1,arrowPointAtCenter:!1,autoAdjustOverflow:!0},Object(r["polyfill"])(x);t["a"]=x},"3wW7":function(e,t,n){},"56rK":function(e,t,n){!function(t,c){e.exports=c(n("q1tI"))}(window,function(e){return function(e){var t={};function n(c){if(t[c])return t[c].exports;var r=t[c]={i:c,l:!1,exports:{}};return e[c].call(r.exports,r,r.exports,n),r.l=!0,r.exports}return n.m=e,n.c=t,n.d=function(e,t,c){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:c})},n.r=function(e){"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"===typeof e&&e&&e.__esModule)return e;var c=Object.create(null);if(n.r(c),Object.defineProperty(c,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var r in e)n.d(c,r,function(t){return e[t]}.bind(null,r));return c},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=9)}([function(t,n){t.exports=e},function(e,t,n){"use strict";var c,r=this&&this.__extends||(c=function(e,t){return(c=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])})(e,t)},function(e,t){function n(){this.constructor=e}c(e,t),e.prototype=null===t?Object.create(t):(n.prototype=t.prototype,new n)});Object.defineProperty(t,"__esModule",{value:!0}),t.PluginComponent=void 0;var o=function(e){function t(t){return e.call(this,t)||this}return r(t,e),Object.defineProperty(t.prototype,"editor",{get:function(){return this.props.editor},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"editorConfig",{get:function(){return this.props.editorConfig},enumerable:!1,configurable:!0}),t.prototype.getConfig=function(e,t){return"undefined"!==typeof this.props.config[e]&&null!==this.props.config[e]?this.props.config[e]:t},t.pluginName="",t.align="left",t.defaultConfig={},t}(n(0).Component);t.PluginComponent=o},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var c=n(0);n(11),t.default=function(e){return c.createElement("i",{className:"rmel-iconfont rmel-icon-"+e.type})}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var c=n(7),r=n(17),o=n(18),a=new(function(){function e(){this.langs={enUS:r.default,zhCN:o.default},this.current="enUS",this.setUp()}return e.prototype.setUp=function(){if("undefined"!==typeof window){var e="enUS";if(navigator.language){var t=navigator.language.split("-");e=t[0],1!==t.length&&(e+=t[t.length-1].toUpperCase())}if(navigator.browserLanguage){var n=navigator.browserLanguage.split("-");e=n[0],n[1]&&(e+=n[1].toUpperCase())}this.current!==e&&this.isAvaliable(e)&&(this.current=e,c.default.emit(c.default.EVENT_LANG_CHANGE,this,e,this.langs[e]))}},e.prototype.isAvaliable=function(e){return"undefined"!==typeof this.langs[e]},e.prototype.add=function(e,t){this.langs[e]=t},e.prototype.setCurrent=function(e){if(!this.isAvaliable(e))throw new Error("Language "+e+" is not exists");this.current!==e&&(this.current=e,c.default.emit(c.default.EVENT_LANG_CHANGE,this,e,this.langs[e]))},e.prototype.get=function(e,t){var n=this.langs[this.current][e]||"";return t&&Object.keys(t).forEach(function(e){n=n.replace(new RegExp("\\{"+e+"\\}","g"),t[e])}),n},e.prototype.getCurrent=function(){return this.current},e}());t.default=a},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.isKeyMatch=t.repeat=t.isPromise=t.isEmpty=t.deepClone=void 0,t.deepClone=function e(t){if(!t||"object"!==typeof t)return t;var n=Array.isArray(t)?[]:{};if(t&&"object"===typeof t)for(var c in t)Object.prototype.hasOwnProperty.call(t,c)&&(t[c]&&"object"===typeof t[c]?n[c]=e(t[c]):n[c]=t[c]);return n},t.isEmpty=function(e){return"undefined"===typeof e||null===e||""===e},t.isPromise=function(e){return e&&(e instanceof Promise||("object"===typeof e||"function"===typeof e)&&"function"===typeof e.then)},t.repeat=function(e,t){for(var n="",c=t;c--;)n+=e;return n},t.isKeyMatch=function(e,t,n,c){if(c&&c.length>0)for(var r=0,o=c;r ","\n"],inlinecode:["`","`"],code:["\n```\n","\n```\n"]},o=1;o<=6;o++)r["h"+o]=["\n"+c.repeat("#",o)+" ","\n"];function a(e){for(var t=e.row,n=void 0===t?2:t,c=e.col,r=void 0===c?2:c,o=["|"],a=["|"],l=["|"],i="",u=1;u<=r;u++)o.push(" Head |"),l.push(" --- |"),a.push(" Data |");for(var s=1;s<=n;s++)i+="\n"+a.join("");return"\n"+o.join("")+"\n"+l.join("")+i+"\n"}function l(e,t){var n=t;if(0!==n.indexOf("\n")&&(n="\n"+n),"unordered"===e)return n.replace(/\n/g,"\n* ")+"\n";var c=1;return n.replace(/\n/g,function(){return"\n"+c+++". "})+"\n"}t.default=function(e,t,n){if("undefined"!==typeof r[t])return{text:""+r[t][0]+e+r[t][1],selection:{start:r[t][0].length,end:r[t][0].length+e.length}};switch(t){case"unordered":return{text:l("unordered",e)};case"order":return{text:l("order",e)};case"hr":return{text:"\n---\n"};case"table":return{text:a(n)};case"image":return{text:"!["+(e||n.target)+"]("+(n.imageUrl||"")+")",selection:{start:2,end:e.length+2}};case"link":return{text:"["+e+"]("+(n.linkUrl||"")+")",selection:{start:1,end:e.length+1}}}return{text:e,selection:{start:0,end:e.length}}}},function(e,t,n){"use strict";var c,r=this&&this.__extends||(c=function(e,t){return(c=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])})(e,t)},function(e,t){function n(){this.constructor=e}c(e,t),e.prototype=null===t?Object.create(t):(n.prototype=t.prototype,new n)});Object.defineProperty(t,"__esModule",{value:!0});var o=n(0);n(39);var a=function(e){function t(t){var n=e.call(this,t)||this;return n.handleClose=n.handleClose.bind(n),n}return r(t,e),t.prototype.handleClose=function(e){e.stopPropagation();var t=this.props.onClose;"function"===typeof t&&t()},t.prototype.render=function(){return o.createElement("div",{className:"drop-wrap "+(this.props.show?"show":"hidden"),onClick:this.handleClose},this.props.children)},t}(o.Component);t.default=a},function(e,t,n){"use strict";var c,r=this&&this.__extends||(c=function(e,t){return(c=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])})(e,t)},function(e,t){function n(){this.constructor=e}c(e,t),e.prototype=null===t?Object.create(t):(n.prototype=t.prototype,new n)});Object.defineProperty(t,"__esModule",{value:!0});var o=new(function(e){function t(){var t=null!==e&&e.apply(this,arguments)||this;return t.EVENT_CHANGE="a1",t.EVENT_FULL_SCREEN="a2",t.EVENT_VIEW_CHANGE="a3",t.EVENT_KEY_DOWN="a4",t.EVENT_FOCUS="a5",t.EVENT_BLUR="a6",t.EVENT_SCROLL="a7",t.EVENT_LANG_CHANGE="b1",t}return r(t,e),t}(n(16).EventEmitter));t.default=o},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var c=n(21),r=n(5),o=n(4);t.default=function(e,t){return{placeholder:r.default("","image",{target:"Uploading_"+c(),imageUrl:""}).text,uploaded:new Promise(function(n){var c=function(t){n(r.default("","image",{target:e.name,imageUrl:t}).text)},a=t(e,c);o.isPromise(a)&&a.then(c)})}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Plugins=void 0;var c=n(10),r=n(27),o=n(28),a=n(29),l=n(30),i=n(31),u=n(32),s=n(33),f=n(34),h=n(35),p=n(36),v=n(37),d=n(38),m=n(42),y=n(44),b=n(45),z=n(46),g=n(47),M=n(49),C=n(50);c.default.use(d.default),c.default.use(s.default),c.default.use(f.default),c.default.use(p.default),c.default.use(h.default),c.default.use(z.default),c.default.use(b.default),c.default.use(l.default),c.default.use(i.default),c.default.use(a.default),c.default.use(o.default),c.default.use(C.default),c.default.use(m.default),c.default.use(y.default),c.default.use(u.default),c.default.use(g.default),c.default.use(M.default),c.default.use(v.default);var O=n(6);Object.defineProperty(t,"DropList",{enumerable:!0,get:function(){return O.default}});var H=n(1);Object.defineProperty(t,"PluginComponent",{enumerable:!0,get:function(){return H.PluginComponent}});var V=n(5);Object.defineProperty(t,"getDecorated",{enumerable:!0,get:function(){return V.default}}),t.Plugins={Header:d.default,FontBold:s.default,FontItalic:f.default,FontUnderline:p.default,FontStrikethrough:h.default,ListUnordered:z.default,ListOrdered:b.default,BlockQuote:l.default,BlockWrap:i.default,BlockCodeInline:a.default,BlockCodeBlock:o.default,Table:C.default,Image:m.default,Link:y.default,Clear:u.default,Logger:g.default,ModeToggle:M.default,FullScreen:v.default,AutoResize:r.default},t.default=c.default},function(e,t,n){"use strict";var c,r=this&&this.__extends||(c=function(e,t){return(c=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])})(e,t)},function(e,t){function n(){this.constructor=e}c(e,t),e.prototype=null===t?Object.create(t):(n.prototype=t.prototype,new n)}),o=this&&this.__assign||function(){return(o=Object.assign||function(e){for(var t,n=1,c=arguments.length;n=0&&this.keyboardListeners.splice(t,1)},t.prototype.handleKeyDown=function(e){for(var t=0,n=this.keyboardListeners;t>>((3&t)<<3)&255;return r}}},function(e,t){for(var n=[],c=0;c<256;++c)n[c]=(c+256).toString(16).substr(1);e.exports=function(e,t){var c=t||0,r=n;return[r[e[c++]],r[e[c++]],r[e[c++]],r[e[c++]],"-",r[e[c++]],r[e[c++]],"-",r[e[c++]],r[e[c++]],"-",r[e[c++]],r[e[c++]],"-",r[e[c++]],r[e[c++]],r[e[c++]],r[e[c++]],r[e[c++]],r[e[c++]]].join("")}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var c={theme:"default",view:{menu:!0,md:!0,html:!0},canView:{menu:!0,md:!0,html:!0,fullScreen:!0,hideMenu:!0},htmlClass:"",markdownClass:"",syncScrollMode:["rightFollowLeft","leftFollowRight"],imageUrl:"",imageAccept:"",linkUrl:"",table:{maxRow:4,maxCol:6},allowPasteImage:!0,onImageUpload:void 0,onCustomImageUpload:void 0,shortcuts:!0};t.default=c},function(e,t,n){},function(e,t,n){"use strict";var c,r=this&&this.__extends||(c=function(e,t){return(c=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])})(e,t)},function(e,t){function n(){this.constructor=e}c(e,t),e.prototype=null===t?Object.create(t):(n.prototype=t.prototype,new n)});Object.defineProperty(t,"__esModule",{value:!0}),t.HtmlRender=t.Preview=void 0;var o=n(0),a=function(e){function t(t){var n=e.call(this,t)||this;return n.el=o.createRef(),n}return r(t,e),t.prototype.getElement=function(){return this.el.current},t.prototype.getHeight=function(){return this.el.current?this.el.current.offsetHeight:0},t}(o.Component);t.Preview=a;var l=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return r(t,e),t.prototype.getHtml=function(){return"string"===typeof this.props.html?this.props.html:this.el.current?this.el.current.innerHTML:""},t.prototype.render=function(){return"string"===typeof this.props.html?o.createElement("div",{ref:this.el,dangerouslySetInnerHTML:{__html:this.props.html},className:this.props.className||"custom-html-style"}):o.createElement("div",{ref:this.el,className:this.props.className||"custom-html-style"},this.props.html)},t}(a);t.HtmlRender=l,t.default=l},function(e,t,n){"use strict";var c,r=this&&this.__extends||(c=function(e,t){return(c=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])})(e,t)},function(e,t){function n(){this.constructor=e}c(e,t),e.prototype=null===t?Object.create(t):(n.prototype=t.prototype,new n)});Object.defineProperty(t,"__esModule",{value:!0});var o=n(0),a=function(e){function t(t){var n=e.call(this,t)||this;return n.timer=null,n.useTimer=n.getConfig("useTimer")||"undefined"===typeof requestAnimationFrame,n.handleChange=n.handleChange.bind(n),n.doResize=n.doResize.bind(n),n}return r(t,e),t.prototype.doResize=function(){var e=this,t=function(t){t.style.height="auto";var n=Math.min(Math.max(e.getConfig("min"),t.scrollHeight),e.getConfig("max"));return t.style.height=n+"px",n};this.timer=null;var n=this.editor.getView(),c=this.editor.getMdElement(),r=this.editor.getHtmlElement();if(c&&n.md){var o=t(c);r&&(r.style.height=o+"px")}else r&&n.html&&t(r)},t.prototype.handleChange=function(){null===this.timer&&(this.useTimer?this.timer=window.setTimeout(this.doResize):this.timer=requestAnimationFrame(this.doResize))},t.prototype.componentDidMount=function(){this.editor.on("change",this.handleChange),this.editor.on("viewchange",this.handleChange),this.handleChange()},t.prototype.componentWillUnmount=function(){this.editor.off("change",this.handleChange),this.editor.off("viewchange",this.handleChange),null!==this.timer&&this.useTimer&&(window.clearTimeout(this.timer),this.timer=null)},t.prototype.render=function(){return o.createElement("span",null)},t.pluginName="auto-resize",t.align="left",t.defaultConfig={min:200,max:1/0,useTimer:!1},t}(n(1).PluginComponent);t.default=a},function(e,t,n){"use strict";var c,r=this&&this.__extends||(c=function(e,t){return(c=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])})(e,t)},function(e,t){function n(){this.constructor=e}c(e,t),e.prototype=null===t?Object.create(t):(n.prototype=t.prototype,new n)});Object.defineProperty(t,"__esModule",{value:!0});var o=n(0),a=n(2),l=n(3),i=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return r(t,e),t.prototype.render=function(){var e=this;return o.createElement("span",{className:"button button-type-code-block",title:l.default.get("btnCode"),onClick:function(){return e.editor.insertMarkdown("code")}},o.createElement(a.default,{type:"code-block"}))},t.pluginName="block-code-block",t}(n(1).PluginComponent);t.default=i},function(e,t,n){"use strict";var c,r=this&&this.__extends||(c=function(e,t){return(c=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])})(e,t)},function(e,t){function n(){this.constructor=e}c(e,t),e.prototype=null===t?Object.create(t):(n.prototype=t.prototype,new n)});Object.defineProperty(t,"__esModule",{value:!0});var o=n(0),a=n(2),l=n(3),i=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return r(t,e),t.prototype.render=function(){var e=this;return o.createElement("span",{className:"button button-type-code-inline",title:l.default.get("btnInlineCode"),onClick:function(){return e.editor.insertMarkdown("inlinecode")}},o.createElement(a.default,{type:"code"}))},t.pluginName="block-code-inline",t}(n(1).PluginComponent);t.default=i},function(e,t,n){"use strict";var c,r=this&&this.__extends||(c=function(e,t){return(c=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])})(e,t)},function(e,t){function n(){this.constructor=e}c(e,t),e.prototype=null===t?Object.create(t):(n.prototype=t.prototype,new n)});Object.defineProperty(t,"__esModule",{value:!0});var o=n(0),a=n(2),l=n(3),i=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return r(t,e),t.prototype.render=function(){var e=this;return o.createElement("span",{className:"button button-type-quote",title:l.default.get("btnQuote"),onClick:function(){return e.editor.insertMarkdown("quote")}},o.createElement(a.default,{type:"quote"}))},t.pluginName="block-quote",t}(n(1).PluginComponent);t.default=i},function(e,t,n){"use strict";var c,r=this&&this.__extends||(c=function(e,t){return(c=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])})(e,t)},function(e,t){function n(){this.constructor=e}c(e,t),e.prototype=null===t?Object.create(t):(n.prototype=t.prototype,new n)});Object.defineProperty(t,"__esModule",{value:!0});var o=n(0),a=n(2),l=n(3),i=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return r(t,e),t.prototype.render=function(){var e=this;return o.createElement("span",{className:"button button-type-wrap",title:l.default.get("btnLineBreak"),onClick:function(){return e.editor.insertMarkdown("hr")}},o.createElement(a.default,{type:"wrap"}))},t.pluginName="block-wrap",t}(n(1).PluginComponent);t.default=i},function(e,t,n){"use strict";var c,r=this&&this.__extends||(c=function(e,t){return(c=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])})(e,t)},function(e,t){function n(){this.constructor=e}c(e,t),e.prototype=null===t?Object.create(t):(n.prototype=t.prototype,new n)});Object.defineProperty(t,"__esModule",{value:!0});var o=n(0),a=n(2),l=n(3),i=function(e){function t(t){var n=e.call(this,t)||this;return n.handleClick=n.handleClick.bind(n),n}return r(t,e),t.prototype.handleClick=function(){""!==this.editor.getMdValue()&&window.confirm&&"function"===typeof window.confirm&&window.confirm(l.default.get("clearTip"))&&this.editor.setText("")},t.prototype.render=function(){return o.createElement("span",{className:"button button-type-clear",title:l.default.get("btnClear"),onClick:this.handleClick},o.createElement(a.default,{type:"delete"}))},t.pluginName="clear",t}(n(1).PluginComponent);t.default=i},function(e,t,n){"use strict";var c,r=this&&this.__extends||(c=function(e,t){return(c=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])})(e,t)},function(e,t){function n(){this.constructor=e}c(e,t),e.prototype=null===t?Object.create(t):(n.prototype=t.prototype,new n)});Object.defineProperty(t,"__esModule",{value:!0});var o=n(0),a=n(2),l=n(3),i=function(e){function t(t){var n=e.call(this,t)||this;return n.handleKeyboard={key:"b",keyCode:66,withKey:["ctrlKey"],callback:function(){return n.editor.insertMarkdown("bold")}},n}return r(t,e),t.prototype.componentDidMount=function(){this.editorConfig.shortcuts&&this.editor.onKeyboard(this.handleKeyboard)},t.prototype.componentWillUnmount=function(){this.editor.offKeyboard(this.handleKeyboard)},t.prototype.render=function(){var e=this;return o.createElement("span",{className:"button button-type-bold",title:l.default.get("btnBold"),onClick:function(){return e.editor.insertMarkdown("bold")}},o.createElement(a.default,{type:"bold"}))},t.pluginName="font-bold",t}(n(1).PluginComponent);t.default=i},function(e,t,n){"use strict";var c,r=this&&this.__extends||(c=function(e,t){return(c=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])})(e,t)},function(e,t){function n(){this.constructor=e}c(e,t),e.prototype=null===t?Object.create(t):(n.prototype=t.prototype,new n)});Object.defineProperty(t,"__esModule",{value:!0});var o=n(0),a=n(2),l=n(3),i=function(e){function t(t){var n=e.call(this,t)||this;return n.handleKeyboard={key:"i",keyCode:73,withKey:["ctrlKey"],callback:function(){return n.editor.insertMarkdown("italic")}},n}return r(t,e),t.prototype.componentDidMount=function(){this.editorConfig.shortcuts&&this.editor.onKeyboard(this.handleKeyboard)},t.prototype.componentWillUnmount=function(){this.editor.offKeyboard(this.handleKeyboard)},t.prototype.render=function(){var e=this;return o.createElement("span",{className:"button button-type-italic",title:l.default.get("btnItalic"),onClick:function(){return e.editor.insertMarkdown("italic")}},o.createElement(a.default,{type:"italic"}))},t.pluginName="font-italic",t}(n(1).PluginComponent);t.default=i},function(e,t,n){"use strict";var c,r=this&&this.__extends||(c=function(e,t){return(c=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])})(e,t)},function(e,t){function n(){this.constructor=e}c(e,t),e.prototype=null===t?Object.create(t):(n.prototype=t.prototype,new n)});Object.defineProperty(t,"__esModule",{value:!0});var o=n(0),a=n(2),l=n(3),i=function(e){function t(t){var n=e.call(this,t)||this;return n.handleKeyboard={key:"d",keyCode:68,withKey:["ctrlKey"],callback:function(){return n.editor.insertMarkdown("strikethrough")}},n}return r(t,e),t.prototype.componentDidMount=function(){this.editorConfig.shortcuts&&this.editor.onKeyboard(this.handleKeyboard)},t.prototype.componentWillUnmount=function(){this.editor.offKeyboard(this.handleKeyboard)},t.prototype.render=function(){var e=this;return o.createElement("span",{className:"button button-type-strikethrough",title:l.default.get("btnStrikethrough"),onClick:function(){return e.editor.insertMarkdown("strikethrough")}},o.createElement(a.default,{type:"strikethrough"}))},t.pluginName="font-strikethrough",t}(n(1).PluginComponent);t.default=i},function(e,t,n){"use strict";var c,r=this&&this.__extends||(c=function(e,t){return(c=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])})(e,t)},function(e,t){function n(){this.constructor=e}c(e,t),e.prototype=null===t?Object.create(t):(n.prototype=t.prototype,new n)});Object.defineProperty(t,"__esModule",{value:!0});var o=n(0),a=n(2),l=n(3),i=function(e){function t(t){var n=e.call(this,t)||this;return n.handleKeyboard={key:"u",keyCode:85,withKey:["ctrlKey"],callback:function(){return n.editor.insertMarkdown("underline")}},n}return r(t,e),t.prototype.componentDidMount=function(){this.editorConfig.shortcuts&&this.editor.onKeyboard(this.handleKeyboard)},t.prototype.componentWillUnmount=function(){this.editor.offKeyboard(this.handleKeyboard)},t.prototype.render=function(){var e=this;return o.createElement("span",{className:"button button-type-underline",title:l.default.get("btnUnderline"),onClick:function(){return e.editor.insertMarkdown("underline")}},o.createElement(a.default,{type:"underline"}))},t.pluginName="font-underline",t}(n(1).PluginComponent);t.default=i},function(e,t,n){"use strict";var c,r=this&&this.__extends||(c=function(e,t){return(c=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])})(e,t)},function(e,t){function n(){this.constructor=e}c(e,t),e.prototype=null===t?Object.create(t):(n.prototype=t.prototype,new n)});Object.defineProperty(t,"__esModule",{value:!0});var o=n(0),a=n(2),l=n(3),i=function(e){function t(t){var n=e.call(this,t)||this;return n.handleClick=n.handleClick.bind(n),n.handleChange=n.handleChange.bind(n),n.state={enable:n.editor.isFullScreen()},n}return r(t,e),t.prototype.handleClick=function(){this.editor.fullScreen(!this.state.enable)},t.prototype.handleChange=function(e){this.setState({enable:e})},t.prototype.componentDidMount=function(){this.editor.on("fullscreen",this.handleChange)},t.prototype.componentWillUnmount=function(){this.editor.off("fullscreen",this.handleChange)},t.prototype.render=function(){if(this.editorConfig.canView&&this.editorConfig.canView.fullScreen){var e=this.state.enable;return o.createElement("span",{className:"button button-type-fullscreen",title:l.default.get(e?"btnExitFullScreen":"btnFullScreen"),onClick:this.handleClick},o.createElement(a.default,{type:e?"fullscreen-exit":"fullscreen"}))}return null},t.pluginName="full-screen",t.align="right",t}(n(1).PluginComponent);t.default=i},function(e,t,n){"use strict";var c,r=this&&this.__extends||(c=function(e,t){return(c=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])})(e,t)},function(e,t){function n(){this.constructor=e}c(e,t),e.prototype=null===t?Object.create(t):(n.prototype=t.prototype,new n)});Object.defineProperty(t,"__esModule",{value:!0});var o=n(0),a=n(6),l=n(2),i=n(3),u=n(1),s=n(40),f=function(e){function t(t){var n=e.call(this,t)||this;return n.show=n.show.bind(n),n.hide=n.hide.bind(n),n.state={show:!1},n}return r(t,e),t.prototype.show=function(){this.setState({show:!0})},t.prototype.hide=function(){this.setState({show:!1})},t.prototype.render=function(){var e=this;return o.createElement("span",{className:"button button-type-header",title:i.default.get("btnHeader"),onMouseEnter:this.show,onMouseLeave:this.hide},o.createElement(l.default,{type:"font-size"}),o.createElement(a.default,{show:this.state.show,onClose:this.hide},o.createElement(s.default,{onSelectHeader:function(t){return e.editor.insertMarkdown(t)}})))},t.pluginName="header",t}(u.PluginComponent);t.default=f},function(e,t,n){},function(e,t,n){"use strict";var c,r=this&&this.__extends||(c=function(e,t){return(c=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])})(e,t)},function(e,t){function n(){this.constructor=e}c(e,t),e.prototype=null===t?Object.create(t):(n.prototype=t.prototype,new n)});Object.defineProperty(t,"__esModule",{value:!0});var o=n(0);n(41);var a=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return r(t,e),t.prototype.handleHeader=function(e){var t=this.props.onSelectHeader;"function"===typeof t&&t(e)},t.prototype.render=function(){return o.createElement("ul",{className:"header-list"},o.createElement("li",{className:"list-item"},o.createElement("h1",{onClick:this.handleHeader.bind(this,"h1")},"H1")),o.createElement("li",{className:"list-item"},o.createElement("h2",{onClick:this.handleHeader.bind(this,"h2")},"H2")),o.createElement("li",{className:"list-item"},o.createElement("h3",{onClick:this.handleHeader.bind(this,"h3")},"H3")),o.createElement("li",{className:"list-item"},o.createElement("h4",{onClick:this.handleHeader.bind(this,"h4")},"H4")),o.createElement("li",{className:"list-item"},o.createElement("h5",{onClick:this.handleHeader.bind(this,"h5")},"H5")),o.createElement("li",{className:"list-item"},o.createElement("h6",{onClick:this.handleHeader.bind(this,"h6")},"H6")))},t}(o.Component);t.default=a},function(e,t,n){},function(e,t,n){"use strict";var c,r=this&&this.__extends||(c=function(e,t){return(c=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])})(e,t)},function(e,t){function n(){this.constructor=e}c(e,t),e.prototype=null===t?Object.create(t):(n.prototype=t.prototype,new n)});Object.defineProperty(t,"__esModule",{value:!0});var o=n(0),a=n(2),l=n(3),i=n(1),u=n(4),s=n(8),f=n(43),h=function(e){function t(t){var n=e.call(this,t)||this;return n.inputFile=o.createRef(),n.onImageChanged=n.onImageChanged.bind(n),n.handleCustomImageUpload=n.handleCustomImageUpload.bind(n),n.handleImageUpload=n.handleImageUpload.bind(n),n.state={show:!1},n}return r(t,e),t.prototype.handleImageUpload=function(){"function"===typeof this.editorConfig.onImageUpload?this.inputFile.current&&this.inputFile.current.click():this.editor.insertMarkdown("image")},t.prototype.onImageChanged=function(e){var t=this.editorConfig.onImageUpload;if(t){var n=s.default(e,t);this.editor.insertPlaceholder(n.placeholder,n.uploaded)}},t.prototype.handleCustomImageUpload=function(e){var t=this,n=this.editorConfig.onCustomImageUpload;if(n){var c=n.call(this,e);u.isPromise(c)&&c.then(function(e){e&&e.url&&t.editor.insertMarkdown("image",{target:e.text,imageUrl:e.url})})}},t.prototype.render=function(){var e=this;return this.editorConfig.onCustomImageUpload?o.createElement("span",{className:"button button-type-image",title:l.default.get("btnImage"),onClick:this.handleCustomImageUpload},o.createElement(a.default,{type:"image"})):o.createElement("span",{className:"button button-type-image",title:l.default.get("btnImage"),onClick:this.handleImageUpload,style:{position:"relative"}},o.createElement(a.default,{type:"image"}),o.createElement(f.default,{accept:this.editorConfig.imageAccept||"",ref:this.inputFile,onChange:function(t){t.persist(),t.target.files&&t.target.files.length>0&&e.onImageChanged(t.target.files[0])}}))},t.pluginName="image",t}(i.PluginComponent);t.default=h},function(e,t,n){"use strict";var c,r=this&&this.__extends||(c=function(e,t){return(c=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])})(e,t)},function(e,t){function n(){this.constructor=e}c(e,t),e.prototype=null===t?Object.create(t):(n.prototype=t.prototype,new n)});Object.defineProperty(t,"__esModule",{value:!0});var o=n(0),a=function(e){function t(t){var n=e.call(this,t)||this;return n.timerId=void 0,n.locked=!1,n.input=o.createRef(),n}return r(t,e),t.prototype.click=function(){var e=this;!this.locked&&this.input.current&&(this.locked=!0,this.input.current.value="",this.input.current.click(),this.timerId&&window.clearTimeout(this.timerId),this.timerId=window.setTimeout(function(){e.locked=!1,window.clearTimeout(e.timerId),e.timerId=void 0},200))},t.prototype.componentWillUnmount=function(){this.timerId&&window.clearTimeout(this.timerId)},t.prototype.render=function(){return o.createElement("input",{type:"file",ref:this.input,accept:this.props.accept,style:{position:"absolute",zIndex:-1,left:0,top:0,width:0,height:0,opacity:0},onChange:this.props.onChange})},t}(o.Component);t.default=a},function(e,t,n){"use strict";var c,r=this&&this.__extends||(c=function(e,t){return(c=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])})(e,t)},function(e,t){function n(){this.constructor=e}c(e,t),e.prototype=null===t?Object.create(t):(n.prototype=t.prototype,new n)});Object.defineProperty(t,"__esModule",{value:!0});var o=n(0),a=n(2),l=n(3),i=function(e){function t(t){var n=e.call(this,t)||this;return n.handleKeyboard={key:"k",keyCode:75,withKey:["ctrlKey"],callback:function(){return n.editor.insertMarkdown("link")}},n}return r(t,e),t.prototype.componentDidMount=function(){this.editorConfig.shortcuts&&this.editor.onKeyboard(this.handleKeyboard)},t.prototype.componentWillUnmount=function(){this.editor.offKeyboard(this.handleKeyboard)},t.prototype.render=function(){var e=this;return o.createElement("span",{className:"button button-type-link",title:l.default.get("btnLink"),onClick:function(){return e.editor.insertMarkdown("link")}},o.createElement(a.default,{type:"link"}))},t.pluginName="link",t}(n(1).PluginComponent);t.default=i},function(e,t,n){"use strict";var c,r=this&&this.__extends||(c=function(e,t){return(c=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])})(e,t)},function(e,t){function n(){this.constructor=e}c(e,t),e.prototype=null===t?Object.create(t):(n.prototype=t.prototype,new n)});Object.defineProperty(t,"__esModule",{value:!0});var o=n(0),a=n(2),l=n(3),i=function(e){function t(t){var n=e.call(this,t)||this;return n.handleKeyboard={key:"7",keyCode:55,withKey:["ctrlKey","shiftKey"],callback:function(){return n.editor.insertMarkdown("order")}},n}return r(t,e),t.prototype.componentDidMount=function(){this.editorConfig.shortcuts&&this.editor.onKeyboard(this.handleKeyboard)},t.prototype.componentWillUnmount=function(){this.editor.offKeyboard(this.handleKeyboard)},t.prototype.render=function(){var e=this;return o.createElement("span",{className:"button button-type-ordered",title:l.default.get("btnOrdered"),onClick:function(){return e.editor.insertMarkdown("order")}},o.createElement(a.default,{type:"list-ordered"}))},t.pluginName="list-ordered",t}(n(1).PluginComponent);t.default=i},function(e,t,n){"use strict";var c,r=this&&this.__extends||(c=function(e,t){return(c=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])})(e,t)},function(e,t){function n(){this.constructor=e}c(e,t),e.prototype=null===t?Object.create(t):(n.prototype=t.prototype,new n)});Object.defineProperty(t,"__esModule",{value:!0});var o=n(0),a=n(2),l=n(3),i=function(e){function t(t){var n=e.call(this,t)||this;return n.handleKeyboard={key:"8",keyCode:56,withKey:["ctrlKey","shiftKey"],callback:function(){return n.editor.insertMarkdown("unordered")}},n}return r(t,e),t.prototype.componentDidMount=function(){this.editorConfig.shortcuts&&this.editor.onKeyboard(this.handleKeyboard)},t.prototype.componentWillUnmount=function(){this.editor.offKeyboard(this.handleKeyboard)},t.prototype.render=function(){var e=this;return o.createElement("span",{className:"button button-type-unordered",title:l.default.get("btnUnordered"),onClick:function(){return e.editor.insertMarkdown("unordered")}},o.createElement(a.default,{type:"list-unordered"}))},t.pluginName="list-unordered",t}(n(1).PluginComponent);t.default=i},function(e,t,n){"use strict";var c,r=this&&this.__extends||(c=function(e,t){return(c=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])})(e,t)},function(e,t){function n(){this.constructor=e}c(e,t),e.prototype=null===t?Object.create(t):(n.prototype=t.prototype,new n)});Object.defineProperty(t,"__esModule",{value:!0});var o=n(0),a=n(2),l=n(3),i=n(1),u=n(48),s=function(e){function t(t){var n=e.call(this,t)||this;return n.handleKeyboards=[],n.lastPop=null,n.handleChange=n.handleChange.bind(n),n.handleRedo=n.handleRedo.bind(n),n.handleUndo=n.handleUndo.bind(n),n.handleKeyboards=[{key:"y",keyCode:89,withKey:["ctrlKey"],callback:n.handleRedo},{key:"z",keyCode:90,withKey:["metaKey","shiftKey"],callback:n.handleRedo},{key:"z",keyCode:90,withKey:["ctrlKey"],callback:n.handleUndo},{key:"z",keyCode:90,withKey:["metaKey"],callback:n.handleUndo}],n.logger=new u.default,n}return r(t,e),t.prototype.handleUndo=function(){var e=this.logger.undo(this.editor.getMdValue());"undefined"!==typeof e&&(this.pause(),this.lastPop=e,this.editor.setText(e),this.forceUpdate())},t.prototype.handleRedo=function(){var e=this.logger.redo();"undefined"!==typeof e&&(this.lastPop=e,this.editor.setText(e),this.forceUpdate())},t.prototype.handleChange=function(e,t,n){var c=this;if(this.logger.getLast()!==e&&(null===this.lastPop||this.lastPop!==e)){if(this.logger.cleanRedo(),n)return this.logger.push(e),this.lastPop=null,void this.forceUpdate();this.timerId&&(window.clearTimeout(this.timerId),this.timerId=0),this.timerId=window.setTimeout(function(){c.logger.getLast()!==e&&(c.logger.push(e),c.lastPop=null,c.forceUpdate()),window.clearTimeout(c.timerId),c.timerId=0},600)}},t.prototype.componentDidMount=function(){var e=this;this.editor.on("change",this.handleChange),this.handleKeyboards.forEach(function(t){return e.editor.onKeyboard(t)}),this.logger.initValue=this.editor.getMdValue(),this.forceUpdate()},t.prototype.componentWillUnmount=function(){var e=this;this.editor.off("change",this.handleChange),this.handleKeyboards.forEach(function(t){return e.editor.offKeyboard(t)})},t.prototype.pause=function(){this.timerId&&(clearInterval(this.timerId),this.timerId=void 0)},t.prototype.render=function(){var e=this.logger.getUndoCount()>1||this.logger.initValue!==this.editor.getMdValue(),t=this.logger.getRedoCount()>0;return o.createElement(o.Fragment,null,o.createElement("span",{className:"button button-type-undo "+(e?"":"disabled"),title:l.default.get("btnUndo"),onClick:this.handleUndo},o.createElement(a.default,{type:"undo"})),o.createElement("span",{className:"button button-type-redo "+(t?"":"disabled"),title:l.default.get("btnRedo"),onClick:this.handleRedo},o.createElement(a.default,{type:"redo"})))},t.pluginName="logger",t}(i.PluginComponent);t.default=s},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var c=function(){function e(){this.record=[],this.recycle=[],this.initValue=""}return e.prototype.push=function(e){for(var t=this.record.push(e);this.record.length>100;)this.record.shift();return t},e.prototype.get=function(){return this.record},e.prototype.getLast=function(){var e=this.record.length;return this.record[e-1]},e.prototype.undo=function(e){var t=this.record.pop();if("undefined"===typeof t)return this.initValue;if(t!==e)return this.recycle.push(t),t;var n=this.record.pop();return"undefined"===typeof n?(this.recycle.push(t),this.initValue):(this.recycle.push(t),n)},e.prototype.redo=function(){var e=this.recycle.pop();if("undefined"!==typeof e)return this.push(e),e},e.prototype.cleanRedo=function(){this.recycle=[]},e.prototype.getUndoCount=function(){return this.undo.length},e.prototype.getRedoCount=function(){return this.recycle.length},e}();t.default=c},function(e,t,n){"use strict";var c,r=this&&this.__extends||(c=function(e,t){return(c=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])})(e,t)},function(e,t){function n(){this.constructor=e}c(e,t),e.prototype=null===t?Object.create(t):(n.prototype=t.prototype,new n)});Object.defineProperty(t,"__esModule",{value:!0});var o,a=n(0),l=n(2),i=n(3),u=n(1);!function(e){e[e.SHOW_ALL=0]="SHOW_ALL",e[e.SHOW_MD=1]="SHOW_MD",e[e.SHOW_HTML=2]="SHOW_HTML"}(o||(o={}));var s=function(e){function t(t){var n=e.call(this,t)||this;return n.handleClick=n.handleClick.bind(n),n.handleChange=n.handleChange.bind(n),n.state={view:n.editor.getView()},n}return r(t,e),Object.defineProperty(t.prototype,"isDisplay",{get:function(){return!!this.editorConfig.canView&&this.editorConfig.canView.html&&this.editorConfig.canView.md},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"next",{get:function(){var e=this.state.view;return e.html&&e.md?o.SHOW_MD:this.state.view.html?o.SHOW_ALL:o.SHOW_HTML},enumerable:!1,configurable:!0}),t.prototype.handleClick=function(){switch(this.next){case o.SHOW_ALL:this.editor.setView({html:!0,md:!0});break;case o.SHOW_HTML:this.editor.setView({html:!0,md:!1});break;case o.SHOW_MD:this.editor.setView({html:!1,md:!0})}},t.prototype.handleChange=function(e){this.setState({view:e})},t.prototype.componentDidMount=function(){this.editor.on("viewchange",this.handleChange)},t.prototype.componentWillUnmount=function(){this.editor.off("viewchange",this.handleChange)},t.prototype.getDisplayInfo=function(){switch(this.next){case o.SHOW_ALL:return{icon:"view-split",title:"All"};case o.SHOW_HTML:return{icon:"visibility",title:"Preview"};default:return{icon:"keyboard",title:"Editor"}}},t.prototype.render=function(){if(this.isDisplay){var e=this.getDisplayInfo();return a.createElement("span",{className:"button button-type-mode",title:i.default.get("btnMode"+e.title),onClick:this.handleClick},a.createElement(l.default,{type:e.icon}))}return null},t.pluginName="mode-toggle",t.align="right",t}(u.PluginComponent);t.default=s},function(e,t,n){"use strict";var c,r=this&&this.__extends||(c=function(e,t){return(c=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])})(e,t)},function(e,t){function n(){this.constructor=e}c(e,t),e.prototype=null===t?Object.create(t):(n.prototype=t.prototype,new n)});Object.defineProperty(t,"__esModule",{value:!0});var o=n(0),a=n(6),l=n(2),i=n(3),u=n(1),s=n(51),f=function(e){function t(t){var n=e.call(this,t)||this;return n.show=n.show.bind(n),n.hide=n.hide.bind(n),n.state={show:!1},n}return r(t,e),t.prototype.show=function(){this.setState({show:!0})},t.prototype.hide=function(){this.setState({show:!1})},t.prototype.render=function(){var e=this,t=this.editorConfig.table||this.props.config;return o.createElement("span",{className:"button button-type-table",title:i.default.get("btnTable"),onMouseEnter:this.show,onMouseLeave:this.hide},o.createElement(l.default,{type:"grid"}),o.createElement(a.default,{show:this.state.show,onClose:this.hide},o.createElement(s.default,{visiblity:this.state.show,maxRow:t.maxRow,maxCol:t.maxCol,onSetTable:function(t){return e.editor.insertMarkdown("table",t)}})))},t.pluginName="table",t.defaultConfig={maxRow:6,maxCol:6},t}(u.PluginComponent);t.default=f},function(e,t,n){"use strict";var c,r=this&&this.__extends||(c=function(e,t){return(c=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])})(e,t)},function(e,t){function n(){this.constructor=e}c(e,t),e.prototype=null===t?Object.create(t):(n.prototype=t.prototype,new n)});Object.defineProperty(t,"__esModule",{value:!0});var o=n(0);n(52);var a=function(e){function t(t){var n=e.call(this,t)||this;n.config={padding:3,width:20,height:20};var c=t.maxRow,r=void 0===c?5:c,o=t.maxCol,a=void 0===o?6:o;return n.state={maxRow:r,maxCol:a,list:n.formatTableModel(r,a)},n}return r(t,e),t.prototype.formatTableModel=function(e,t){return void 0===e&&(e=0),void 0===t&&(t=0),new Array(e).fill(void 0).map(function(e){return new Array(t).fill(0)})},t.prototype.calcWrapStyle=function(){var e=this.state,t=e.maxRow,n=e.maxCol,c=this.config,r=c.width,o=c.height,a=c.padding;return{width:(r+a)*n-a+"px",height:(o+a)*t-a+"px"}},t.prototype.calcItemStyle=function(e,t){void 0===e&&(e=0),void 0===t&&(t=0);var n=this.config,c=n.width,r=n.height,o=n.padding;return{top:(r+o)*e+"px",left:(c+o)*t+"px"}},t.prototype.getList=function(e,t){return this.state.list.map(function(n,c){return n.map(function(n,r){return c<=e&&r<=t?1:0})})},t.prototype.handleHover=function(e,t){this.setState({list:this.getList(e,t)})},t.prototype.handleSetTable=function(e,t){var n=this.props.onSetTable;"function"===typeof n&&n({row:e+1,col:t+1})},t.prototype.componentDidUpdate=function(e){!1===this.props.visiblity&&e.visiblity!==this.props.visiblity&&this.setState({list:this.getList(-1,-1)})},t.prototype.render=function(){var e=this;return o.createElement("ul",{className:"table-list wrap",style:this.calcWrapStyle()},this.state.list.map(function(t,n){return t.map(function(t,c){return o.createElement("li",{className:"list-item "+(1===t?"active":""),key:n+"-"+c,style:e.calcItemStyle(n,c),onMouseOver:e.handleHover.bind(e,n,c),onClick:e.handleSetTable.bind(e,n,c)})})}))},t}(o.Component);t.default=a},function(e,t,n){}])})},"5Dmo":function(e,t,n){"use strict";n("cIOH"),n("5YgA")},"5NDa":function(e,t,n){"use strict";n("cIOH"),n("OnYD"),n("+L6B")},"5YgA":function(e,t,n){},"5rEg":function(e,t,n){"use strict";var c=n("q1tI"),r=n("17x9"),o=n("VCL8"),a=n("TSYQ"),l=n.n(a),i=n("BGR+"),u=n("CWQg"),s=n("CtXQ");function f(e){"@babel/helpers - typeof";return f="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},f(e)}function h(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function p(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function v(e,t){for(var n=0;n1&&void 0!==arguments[1]&&arguments[1],n=e.getAttribute("id")||e.getAttribute("data-reactid")||e.getAttribute("name");if(t&&ze[n])return ze[n];var c=window.getComputedStyle(e),r=c.getPropertyValue("box-sizing")||c.getPropertyValue("-moz-box-sizing")||c.getPropertyValue("-webkit-box-sizing"),o=parseFloat(c.getPropertyValue("padding-bottom"))+parseFloat(c.getPropertyValue("padding-top")),a=parseFloat(c.getPropertyValue("border-bottom-width"))+parseFloat(c.getPropertyValue("border-top-width")),l=be.map(function(e){return"".concat(e,":").concat(c.getPropertyValue(e))}).join(";"),i={sizingStyle:l,paddingSize:o,borderSize:a,boxSizing:r};return t&&n&&(ze[n]=i),i}function Me(e){var t=arguments.length>1&&void 0!==arguments[1]&&arguments[1],n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null,c=arguments.length>3&&void 0!==arguments[3]?arguments[3]:null;ve||(ve=document.createElement("textarea"),document.body.appendChild(ve)),e.getAttribute("wrap")?ve.setAttribute("wrap",e.getAttribute("wrap")):ve.removeAttribute("wrap");var r=ge(e,t),o=r.paddingSize,a=r.borderSize,l=r.boxSizing,i=r.sizingStyle;ve.setAttribute("style","".concat(i,";").concat(ye)),ve.value=e.value||e.placeholder||"";var u,s=Number.MIN_SAFE_INTEGER,f=Number.MAX_SAFE_INTEGER,h=ve.scrollHeight;if("border-box"===l?h+=a:"content-box"===l&&(h-=o),null!==n||null!==c){ve.value=" ";var p=ve.scrollHeight-o;null!==n&&(s=p*n,"border-box"===l&&(s=s+o+a),h=Math.max(s,h)),null!==c&&(f=p*c,"border-box"===l&&(f=f+o+a),u=h>f?"":"hidden",h=Math.min(f,h))}return{height:h,minHeight:s,maxHeight:f,overflowY:u}}var Ce=n("oHiP");function Oe(e){"@babel/helpers - typeof";return Oe="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Oe(e)}function He(){return He=Object.assign||function(e){for(var t=1;t0&&(d=s.map(function(e){return"string"===typeof e?c["createElement"](V,{key:e,prefixCls:h,disabled:r.props.disabled,value:e,checked:r.state.value===e},e):c["createElement"](V,{key:"radio-group-value-options-".concat(e.value),prefixCls:h,disabled:e.disabled||r.props.disabled,value:e.value,checked:r.state.value===e.value},e.label)})),c["createElement"]("div",{className:v,style:o.style,onMouseEnter:o.onMouseEnter,onMouseLeave:o.onMouseLeave,id:o.id},d)},"value"in e)o=e.value;else if("defaultValue"in e)o=e.defaultValue;else{var a=F(e.children);o=a&&a.value}return r.state={value:o},r}return x(n,[{key:"getChildContext",value:function(){return{radioGroup:{onChange:this.onRadioChange,value:this.state.value,disabled:this.props.disabled,name:this.props.name}}}},{key:"shouldComponentUpdate",value:function(e,t){return!u()(this.props,e)||!u()(this.state,t)}},{key:"render",value:function(){return c["createElement"](s["a"],null,this.renderGroup)}}],[{key:"getDerivedStateFromProps",value:function(e){if("value"in e)return{value:e.value};var t=F(e.children);return t?{value:t.value}:null}}]),n}(c["Component"]);D.defaultProps={buttonStyle:"outline"},D.childContextTypes={radioGroup:r["any"]},Object(w["polyfill"])(D);var I=D;function U(e){"@babel/helpers - typeof";return U="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},U(e)}function K(){return K=Object.assign||function(e){for(var t=1;te.length)&&(t=e.length);for(var n=0,c=new Array(t);n0));return c["createElement"](X.Provider,{value:{siderHook:this.getSiderHook()}},c["createElement"](l,A({className:u},i),r))}}]),n}(c["Component"]),ee=Z({suffixCls:"layout",tagName:"section",displayName:"Layout"})($),te=Z({suffixCls:"layout-header",tagName:"header",displayName:"Header"})(J),ne=Z({suffixCls:"layout-footer",tagName:"footer",displayName:"Footer"})(J),ce=Z({suffixCls:"layout-content",tagName:"main",displayName:"Content"})(J);ee.Header=te,ee.Footer=ne,ee.Content=ce;var re=n("CtXQ"),oe=function(e){return!isNaN(parseFloat(e))&&isFinite(e)},ae=oe;function le(e){"@babel/helpers - typeof";return le="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},le(e)}function ie(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function ue(){return ue=Object.assign||function(e){for(var t=1;t0&&void 0!==arguments[0]?arguments[0]:"";return e+=1,"".concat(t).concat(e)}}(),Ve=function(e){pe(n,e);var t=de(n);function n(e){var r,o,i;return se(this,n),r=t.call(this,e),r.responsiveHandler=function(e){r.setState({below:e.matches});var t=r.props.onBreakpoint;t&&t(e.matches),r.state.collapsed!==e.matches&&r.setCollapsed(e.matches,"responsive")},r.setCollapsed=function(e,t){"collapsed"in r.props||r.setState({collapsed:e});var n=r.props.onCollapse;n&&n(e,t)},r.toggle=function(){var e=!r.state.collapsed;r.setCollapsed(e,"clickTrigger")},r.belowShowChange=function(){r.setState(function(e){var t=e.belowShow;return{belowShow:!t}})},r.renderSider=function(e){var t,n=e.getPrefixCls,o=r.props,i=o.prefixCls,u=o.className,s=o.theme,f=o.collapsible,h=o.reverseArrow,p=o.trigger,v=o.style,d=o.width,m=o.collapsedWidth,y=o.zeroWidthTriggerStyle,b=ge(o,["prefixCls","className","theme","collapsible","reverseArrow","trigger","style","width","collapsedWidth","zeroWidthTriggerStyle"]),z=n("layout-sider",i),g=Object(l["a"])(b,["collapsed","defaultCollapsed","onCollapse","breakpoint","onBreakpoint","siderHook","zeroWidthTriggerStyle"]),M=r.state.collapsed?m:d,C=ae(M)?"".concat(M,"px"):String(M),O=0===parseFloat(String(m||0))?c["createElement"]("span",{onClick:r.toggle,className:"".concat(z,"-zero-width-trigger ").concat(z,"-zero-width-trigger-").concat(h?"right":"left"),style:y},c["createElement"](re["a"],{type:"bars"})):null,H={expanded:h?c["createElement"](re["a"],{type:"right"}):c["createElement"](re["a"],{type:"left"}),collapsed:h?c["createElement"](re["a"],{type:"left"}):c["createElement"](re["a"],{type:"right"})},V=r.state.collapsed?"collapsed":"expanded",w=H[V],S=null!==p?O||c["createElement"]("div",{className:"".concat(z,"-trigger"),onClick:r.toggle,style:{width:C}},p||w):null,L=ue(ue({},v),{flex:"0 0 ".concat(C),maxWidth:C,minWidth:C,width:C}),P=a()(u,z,"".concat(z,"-").concat(s),(t={},ie(t,"".concat(z,"-collapsed"),!!r.state.collapsed),ie(t,"".concat(z,"-has-trigger"),f&&null!==p&&!O),ie(t,"".concat(z,"-below"),!!r.state.below),ie(t,"".concat(z,"-zero-width"),0===parseFloat(C)),t));return c["createElement"]("aside",ue({className:P},g,{style:L}),c["createElement"]("div",{className:"".concat(z,"-children")},r.props.children),f||r.state.below&&O?S:null)},r.uniqueId=He("ant-sider-"),"undefined"!==typeof window&&(o=window.matchMedia),o&&e.breakpoint&&e.breakpoint in Ce&&(r.mql=o("(max-width: ".concat(Ce[e.breakpoint],")"))),i="collapsed"in e?e.collapsed:e.defaultCollapsed,r.state={collapsed:i,below:!1},r}return he(n,[{key:"componentDidMount",value:function(){this.mql&&(this.mql.addListener(this.responsiveHandler),this.responsiveHandler(this.mql)),this.props.siderHook&&this.props.siderHook.addSider(this.uniqueId)}},{key:"componentWillUnmount",value:function(){this.mql&&this.mql.removeListener(this.responsiveHandler),this.props.siderHook&&this.props.siderHook.removeSider(this.uniqueId)}},{key:"render",value:function(){var e=this.state.collapsed,t=this.props.collapsedWidth;return c["createElement"](Oe.Provider,{value:{siderCollapsed:e,collapsedWidth:t}},c["createElement"](P["a"],null,this.renderSider))}}],[{key:"getDerivedStateFromProps",value:function(e){return"collapsed"in e?{collapsed:e.collapsed}:null}}]),n}(c["Component"]);Ve.defaultProps={collapsible:!1,defaultCollapsed:!1,reverseArrow:!1,width:200,collapsedWidth:80,style:{},theme:"dark"},Object(i["polyfill"])(Ve);c["Component"];function we(e){"@babel/helpers - typeof";return we="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},we(e)}function Se(){return Se=Object.assign||function(e){for(var t=1;t=0;(t||r)&&o.restoreModeVerticalFromInline()},o.handleClick=function(e){o.handleOpenChange([]);var t=o.props.onClick;t&&t(e)},o.handleOpenChange=function(e){o.setOpenKeys(e);var t=o.props.onOpenChange;t&&t(e)},o.renderMenu=function(e){var t=e.getPopupContainer,n=e.getPrefixCls,i=o.props,u=i.prefixCls,s=i.className,f=i.theme,h=i.collapsedWidth,p=Object(l["a"])(o.props,["collapsedWidth","siderCollapsed"]),v=o.getRealMenuMode(),d=o.getOpenMotionProps(v),m=n("menu",u),y=a()(s,"".concat(m,"-").concat(f),Ye({},"".concat(m,"-inline-collapsed"),o.getInlineCollapsed())),b=Qe({openKeys:o.state.openKeys,onOpenChange:o.handleOpenChange,className:y,mode:v},d);"inline"!==v&&(b.onClick=o.handleClick);var z=o.getInlineCollapsed()&&(0===h||"0"===h||"0px"===h);return z&&(b.openKeys=[]),c["createElement"](r["e"],Qe({getPopupContainer:t},p,b,{prefixCls:m,onTransitionEnd:o.handleTransitionEnd,onMouseEnter:o.handleMouseEnter}))},Object(De["a"])(!("onOpen"in e||"onClose"in e),"Menu","`onOpen` and `onClose` are removed, please use `onOpenChange` instead, see: https://u.ant.design/menu-on-open-change."),Object(De["a"])(!("inlineCollapsed"in e&&"inline"!==e.mode),"Menu","`inlineCollapsed` should only be used when `mode` is inline."),Object(De["a"])(!(void 0!==e.siderCollapsed&&"inlineCollapsed"in e),"Menu","`inlineCollapsed` not control Menu under Sider. Should set `collapsed` on Sider instead."),"openKeys"in e?i=e.openKeys:"defaultOpenKeys"in e&&(i=e.defaultOpenKeys),o.state={openKeys:i||[],switchingModeFromInline:!1,inlineOpenKeys:[],prevProps:e},o}return Je(n,[{key:"componentWillUnmount",value:function(){Ie["a"].cancel(this.mountRafId)}},{key:"setOpenKeys",value:function(e){"openKeys"in this.props||this.setState({openKeys:e})}},{key:"getRealMenuMode",value:function(){var e=this.getInlineCollapsed();if(this.state.switchingModeFromInline&&e)return"inline";var t=this.props.mode;return e?"vertical":t}},{key:"getInlineCollapsed",value:function(){var e=this.props.inlineCollapsed;return void 0!==this.props.siderCollapsed?this.props.siderCollapsed:e}},{key:"getOpenMotionProps",value:function(e){var t=this.props,n=t.openTransitionName,c=t.openAnimation,r=t.motion;return r?{motion:r}:c?(Object(De["a"])("string"===typeof c,"Menu","`openAnimation` do not support object. Please use `motion` instead."),{openAnimation:c}):n?{openTransitionName:n}:"horizontal"===e?{motion:{motionName:"slide-up"}}:"inline"===e?{motion:We}:{motion:{motionName:this.state.switchingModeFromInline?"":"zoom-big"}}}},{key:"restoreModeVerticalFromInline",value:function(){var e=this.state.switchingModeFromInline;e&&this.setState({switchingModeFromInline:!1})}},{key:"render",value:function(){return c["createElement"](p.Provider,{value:{inlineCollapsed:this.getInlineCollapsed()||!1,antdMenuTheme:this.props.theme}},c["createElement"](P["a"],null,this.renderMenu))}}],[{key:"getDerivedStateFromProps",value:function(e,t){var n=t.prevProps,c={prevProps:e};return"inline"===n.mode&&"inline"!==e.mode&&(c.switchingModeFromInline=!0),"openKeys"in e?c.openKeys=e.openKeys:((e.inlineCollapsed&&!n.inlineCollapsed||e.siderCollapsed&&!n.siderCollapsed)&&(c.switchingModeFromInline=!0,c.inlineOpenKeys=t.openKeys,c.openKeys=[]),(!e.inlineCollapsed&&n.inlineCollapsed||!e.siderCollapsed&&n.siderCollapsed)&&(c.openKeys=t.inlineOpenKeys,c.inlineOpenKeys=[])),c}}]),n}(c["Component"]);at.defaultProps={className:"",theme:"light",focusable:!1},Object(i["polyfill"])(at);var lt=function(e){$e(n,e);var t=tt(n);function n(){return Xe(this,n),t.apply(this,arguments)}return Je(n,[{key:"render",value:function(){var e=this;return c["createElement"](Oe.Consumer,null,function(t){return c["createElement"](at,Qe({},e.props,t))})}}]),n}(c["Component"]);lt.Divider=r["a"],lt.Item=Fe,lt.SubMenu=S,lt.ItemGroup=r["c"]},"CWI+":function(e,t,n){},CWQg:function(e,t,n){"use strict";n.d(t,"a",function(){return c});var c=function(){for(var e=arguments.length,t=new Array(e),n=0;n1&&void 0!==arguments[1]?arguments[1]:C;if(e){var n=this.definitions.get(e);return n&&"function"===typeof n.icon&&(n=s()({},n,{icon:n.icon(t.primaryColor,t.secondaryColor)})),n}}},{key:"setTwoToneColors",value:function(e){var t=e.primaryColor,n=e.secondaryColor;C.primaryColor=t,C.secondaryColor=n||Object(M["c"])(t)}},{key:"getTwoToneColors",value:function(){return s()({},C)}}]),t}(c["Component"]);O.displayName="IconReact",O.definitions=new M["a"];var H=O;function V(){return V=Object.assign||function(e){for(var t=1;t0&&void 0!==arguments[0]?arguments[0]:{},t=e.scriptUrl,n=e.extraCommonProps,r=void 0===n?{}:n;if("undefined"!==typeof document&&"undefined"!==typeof window&&"function"===typeof document.createElement&&"string"===typeof t&&t.length&&!S.has(t)){var o=document.createElement("script");o.setAttribute("src",t),o.setAttribute("data-namespace",t),S.add(t),document.body.appendChild(o)}var a=function(e){var t=e.type,n=e.children,o=w(e,["type","children"]),a=null;return e.type&&(a=c["createElement"]("use",{xlinkHref:"#".concat(t)})),n&&(a=n),c["createElement"]($,V({},r,o),a)};return a.displayName="Iconfont",a}var P=n("6CfX"),k={width:"1em",height:"1em",fill:"currentColor","aria-hidden":!0,focusable:"false"},x=/-fill$/,E=/-o$/,j=/-twotone$/;function _(e){var t=null;return x.test(e)?t="filled":E.test(e)?t="outlined":j.test(e)&&(t="twoTone"),t}function T(e){return e.replace(x,"").replace(E,"").replace(j,"")}function N(e,t){var n=e;return"filled"===t?n+="-fill":"outlined"===t?n+="-o":"twoTone"===t?n+="-twotone":Object(P["a"])(!1,"Icon","This icon '".concat(e,"' has unknown theme '").concat(t,"'")),n}function R(e){var t=e;switch(e){case"cross":t="close";break;case"interation":t="interaction";break;case"canlendar":t="calendar";break;case"colum-height":t="column-height";break;default:}return Object(P["a"])(t===e,"Icon","Icon '".concat(e,"' was a typo and is now deprecated, please use '").concat(t,"' instead.")),t}var A=n("YMnH");function F(e){return H.setTwoToneColors({primaryColor:e})}function D(){var e=H.getTwoToneColors();return e.primaryColor}function I(){return I=Object.assign||function(e){for(var t=1;te.length)&&(t=e.length);for(var n=0,c=new Array(t);nr?o>=a?10+e:20+e:o<=a?10+e:e}},{key:"renderCurrentNumber",value:function(e,t,n){if("number"===typeof t){var r=this.getPositionByNum(t,n),o=this.state.animateStarted||void 0===O(this.lastCount)[n];return c["createElement"]("span",{className:"".concat(e,"-only"),style:{transition:o?"none":void 0,msTransform:"translateY(".concat(100*-r,"%)"),WebkitTransform:"translateY(".concat(100*-r,"%)"),transform:"translateY(".concat(100*-r,"%)")},key:n},H(r,"".concat(e,"-only-unit")))}return c["createElement"]("span",{key:"symbol",className:"".concat(e,"-symbol")},t)}},{key:"renderNumberElement",value:function(e){var t=this,n=this.state.count;return n&&Number(n)%1===0?O(n).map(function(n,c){return t.renderCurrentNumber(e,n,c)}).reverse():n}},{key:"render",value:function(){return c["createElement"](s["a"],null,this.renderScrollNumber)}},{key:"clearTimeout",value:function(e){function t(){return e.apply(this,arguments)}return t.toString=function(){return e.toString()},t}(function(){this.timeout&&(clearTimeout(this.timeout),this.timeout=void 0)})}],[{key:"getDerivedStateFromProps",value:function(e,t){return"count"in e?t.count===e.count?null:{animateStarted:!0}:null}}]),n}(c["Component"]);V.defaultProps={count:null,onAnimated:function(){}},Object(u["polyfill"])(V);var w=V,S=n("09Wf");function L(e){"@babel/helpers - typeof";return L="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},L(e)}function P(){return P=Object.assign||function(e){for(var t=1;tn?"".concat(n,"+"):t;return c}},{key:"getDispayCount",value:function(){var e=this.isDot();return e?"":this.getNumberedDispayCount()}},{key:"getScrollNumberTitle",value:function(){var e=this.props,t=e.title,n=e.count;return t||("string"===typeof n||"number"===typeof n?n:void 0)}},{key:"getStyleWithOffset",value:function(){var e=this.props,t=e.offset,n=e.style;return t?P({right:-parseInt(t[0],10),marginTop:t[1]},n):n}},{key:"getBadgeClassName",value:function(e){var t,n=this.props,c=n.className,r=n.children;return i()(c,e,(t={},k(t,"".concat(e,"-status"),this.hasStatus()),k(t,"".concat(e,"-not-a-wrapper"),!r),t))}},{key:"hasStatus",value:function(){var e=this.props,t=e.status,n=e.color;return!!t||!!n}},{key:"isZero",value:function(){var e=this.getNumberedDispayCount();return"0"===e||0===e}},{key:"isDot",value:function(){var e=this.props.dot,t=this.isZero();return e&&!t||this.hasStatus()}},{key:"isHidden",value:function(){var e=this.props.showZero,t=this.getDispayCount(),n=this.isZero(),c=this.isDot(),r=null===t||void 0===t||""===t;return(r||n&&!e)&&!c}},{key:"renderStatusText",value:function(e){var t=this.props.text,n=this.isHidden();return n||!t?null:c["createElement"]("span",{className:"".concat(e,"-status-text")},t)}},{key:"renderDispayComponent",value:function(){var e=this.props.count,t=e;if(t&&"object"===L(t))return c["cloneElement"](t,{style:P(P({},this.getStyleWithOffset()),t.props&&t.props.style)})}},{key:"renderBadgeNumber",value:function(e,t){var n,r=this.props,o=r.status,a=r.count,l=r.color,u=this.getDispayCount(),s=this.isDot(),f=this.isHidden(),h=i()((n={},k(n,"".concat(e,"-dot"),s),k(n,"".concat(e,"-count"),!s),k(n,"".concat(e,"-multiple-words"),!s&&a&&a.toString&&a.toString().length>1),k(n,"".concat(e,"-status-").concat(o),!!o),k(n,"".concat(e,"-status-").concat(l),U(l)),n)),p=this.getStyleWithOffset();return l&&!U(l)&&(p=p||{},p.background=l),f?null:c["createElement"](w,{prefixCls:t,"data-show":!f,className:h,count:u,displayComponent:this.renderDispayComponent(),title:this.getScrollNumberTitle(),style:p,key:"scrollNumber"})}},{key:"render",value:function(){return c["createElement"](s["a"],null,this.renderBadge)}}]),n}(c["Component"]);K.defaultProps={count:null,showZero:!1,dot:!1,overflowCount:99},K.propTypes={count:r["node"],showZero:r["bool"],dot:r["bool"],overflowCount:r["number"]}},Mwp2:function(e,t,n){"use strict";n("cIOH"),n("3wW7"),n("R9oj"),n("T2oS"),n("DjyN"),n("1GLa")},NUBc:function(e,t,n){"use strict";var c=n("q1tI"),r=n("6+eU"),o=n("H4fg"),a=n("TSYQ"),l=n.n(a),i=n("2fM7");function u(e){"@babel/helpers - typeof";return u="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},u(e)}function s(){return s=Object.assign||function(e){for(var t=1;t0?"-".concat(p):p,g=o()(v,b,"".concat(b,"-").concat(f),(n={},i(n,"".concat(b,"-with-text").concat(z),d),i(n,"".concat(b,"-dashed"),!!m),n));return c["createElement"]("div",l({className:g},y,{role:"separator"}),d&&c["createElement"]("span",{className:"".concat(b,"-inner-text")},d))})};t["a"]=s},PQMj:function(e,t,n){},Pwec:function(e,t,n){"use strict";n("cIOH"),n("WtSK")},R9oj:function(e,t,n){"use strict";n("cIOH"),n("pwpV")},RlXo:function(e,t,n){"use strict";var c={placeholder:"Select time"};t["a"]=c},Sdc0:function(e,t,n){"use strict";n.d(t,"a",function(){return S});var c=n("q1tI"),r=n("17x9"),o=n("XIdC"),a=n.n(o),l=n("TSYQ"),i=n.n(l),u=n("BGR+"),s=n("g0mS"),f=n("CtXQ"),h=n("H84U"),p=n("6CfX");function v(e){"@babel/helpers - typeof";return v="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},v(e)}function d(){return d=Object.assign||function(e){for(var t=1;t1&&void 0!==arguments[1]?arguments[1]:f,c=arguments.length>2&&void 0!==arguments[2]?arguments[2]:h;switch(e){case"topLeft":t={left:0,top:n,bottom:"auto"};break;case"topRight":t={right:0,top:n,bottom:"auto"};break;case"bottomLeft":t={left:0,top:"auto",bottom:c};break;default:t={right:0,top:"auto",bottom:c};break}return t}function m(e,t){var n=e.prefixCls,a=e.placement,s=void 0===a?p:a,f=e.getContainer,h=void 0===f?l:f,v=e.top,m=e.bottom,y=e.closeIcon,b=void 0===y?i:y,z="".concat(n,"-").concat(s);if(u[z])t(u[z]);else{var g=c["createElement"]("span",{className:"".concat(n,"-close-x")},b||c["createElement"](o["a"],{className:"".concat(n,"-close-icon"),type:"close"}));r["a"].newInstance({prefixCls:n,className:"".concat(n,"-").concat(s),style:d(s,v,m),getContainer:h,closeIcon:g},function(e){u[z]=e,t(e)})}}var y={success:"check-circle-o",info:"info-circle-o",error:"close-circle-o",warning:"exclamation-circle-o"};function b(e){var t=e.prefixCls||"ant-notification",n="".concat(t,"-notice"),r=void 0===e.duration?s:e.duration,a=null;if(e.icon)a=c["createElement"]("span",{className:"".concat(n,"-icon")},e.icon);else if(e.type){var l=y[e.type];a=c["createElement"](o["a"],{className:"".concat(n,"-icon ").concat(n,"-icon-").concat(e.type),type:l})}var i=!e.description&&a?c["createElement"]("span",{className:"".concat(n,"-message-single-line-auto-margin")}):null,u=e.placement,f=e.top,h=e.bottom,p=e.getContainer,v=e.closeIcon;m({prefixCls:t,placement:u,top:f,bottom:h,getContainer:p,closeIcon:v},function(t){t.notice({content:c["createElement"]("div",{className:a?"".concat(n,"-with-icon"):""},a,c["createElement"]("div",{className:"".concat(n,"-message")},i,e.message),c["createElement"]("div",{className:"".concat(n,"-description")},e.description),e.btn?c["createElement"]("span",{className:"".concat(n,"-btn")},e.btn):null),duration:r,closable:!0,onClose:e.onClose,onClick:e.onClick,key:e.key,style:e.style||{},className:e.className})})}var z={open:b,close:function(e){Object.keys(u).forEach(function(t){return u[t].removeNotice(e)})},config:v,destroy:function(){Object.keys(u).forEach(function(e){u[e].destroy(),delete u[e]})}};["success","info","warning","error"].forEach(function(e){z[e]=function(t){return z.open(a(a({},t),{type:e}))}}),z.warn=z.warning,t["a"]=z},Urep:function(e,t,n){},VXEj:function(e,t,n){"use strict";var c=n("q1tI"),r=n("17x9"),o=n("TSYQ"),a=n.n(o),l=n("BGR+"),i=n("W9HT"),u=n("H84U"),s=n("NUBc"),f=n("qrJ5"),h=n("/kpp");function p(e){if(!c["isValidElement"](e))return e;for(var t=arguments.length,n=new Array(t>1?t-1:0),r=1;r0&&c["createElement"]("ul",{className:"".concat(b,"-item-action"),key:"actions"},f.map(function(e,t){return c["createElement"]("li",{key:"".concat(b,"-item-action-").concat(t)},e,t!==f.length-1&&c["createElement"]("em",{className:"".concat(b,"-item-action-split")}))})),g=o?"div":"li",M=c["createElement"](g,w({},y,{className:a()("".concat(b,"-item"),m,d({},"".concat(b,"-item-no-flex"),!e.isFlexMode()))}),"vertical"===l&&v?[c["createElement"]("div",{className:"".concat(b,"-item-main"),key:"content"},s,z),c["createElement"]("div",{className:"".concat(b,"-item-extra"),key:"extra"},v)]:[s,z,p(v,{key:"extra"})]);return o?c["createElement"](h["a"],{span:P(o,"column"),xs:P(o,"xs"),sm:P(o,"sm"),md:P(o,"md"),lg:P(o,"lg"),xl:P(o,"xl"),xxl:P(o,"xxl")},M):M},e}return b(n,[{key:"isItemContainsTextNodeAndNotSingular",value:function(){var e,t=this.props.children;return c["Children"].forEach(t,function(t){"string"===typeof t&&(e=!0)}),e&&c["Children"].count(t)>1}},{key:"isFlexMode",value:function(){var e=this.props.extra,t=this.context.itemLayout;return"vertical"===t?!!e:!this.isItemContainsTextNodeAndNotSingular()}},{key:"render",value:function(){return c["createElement"](u["a"],null,this.renderItem)}}]),n}(c["Component"]);function x(e){"@babel/helpers - typeof";return x="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},x(e)}function E(e){return N(e)||T(e)||_(e)||j()}function j(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function _(e,t){if(e){if("string"===typeof e)return R(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?R(e,t):void 0}}function T(e){if("undefined"!==typeof Symbol&&Symbol.iterator in Object(e))return Array.from(e)}function N(e){if(Array.isArray(e))return R(e)}function R(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,c=new Array(t);nD&&(R.current=D);var I,U=C?c["createElement"]("div",{className:"".concat(x,"-pagination")},c["createElement"](s["a"],A({},R,{onChange:r.onPaginationChange,onShowSizeChange:r.onPaginationShowSizeChange}))):null,K=E(V);if(C&&V.length>(R.current-1)*R.pageSize&&(K=E(V).splice((R.current-1)*R.pageSize,R.pageSize)),I=_&&c["createElement"]("div",{style:{minHeight:53}}),K.length>0){var B=K.map(function(e,t){return r.renderItem(e,t)}),q=[];c["Children"].forEach(B,function(e,t){q.push(c["cloneElement"](e,{key:r.keys[t]}))}),I=O?c["createElement"](f["a"],{gutter:O.gutter},q):c["createElement"]("ul",{className:"".concat(x,"-items")},q)}else z||_||(I=r.renderEmpty(x,o));var W=R.position||"bottom";return c["createElement"]("div",A({className:N},Object(l["a"])(k,["rowKey","renderItem","locale"])),("top"===W||"both"===W)&&U,S&&c["createElement"]("div",{className:"".concat(x,"-header")},S),c["createElement"](i["a"],j,I,z),L&&c["createElement"]("div",{className:"".concat(x,"-footer")},L),M||("bottom"===W||"both"===W)&&U)};var o=e.pagination,u=o&&"object"===x(o)?o:{};return r.state={paginationCurrent:u.defaultCurrent||1,paginationSize:u.defaultPageSize||10},r}return U(n,[{key:"getChildContext",value:function(){return{grid:this.props.grid,itemLayout:this.props.itemLayout}}},{key:"triggerPaginationEvent",value:function(e){var t=this;return function(n,c){var r=t.props.pagination;t.setState({paginationCurrent:n,paginationSize:c}),r&&r[e]&&r[e](n,c)}}},{key:"isSomethingAfterLastItem",value:function(){var e=this.props,t=e.loadMore,n=e.pagination,c=e.footer;return!!(t||n||c)}},{key:"render",value:function(){return c["createElement"](u["a"],null,this.renderList)}}]),n}(c["Component"]);Z.Item=k,Z.childContextTypes={grid:r["any"],itemLayout:r["string"]},Z.defaultProps={dataSource:[],bordered:!1,split:!0,loading:!1,pagination:!1}},W9HT:function(e,t,n){"use strict";var c=n("q1tI"),r=n("17x9"),o=n("TSYQ"),a=n.n(o),l=n("BGR+"),i=n("sEfC"),u=n.n(i),s=n("H84U"),f=n("CWQg");function h(e){"@babel/helpers - typeof";return h="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},h(e)}function p(){return p=Object.assign||function(e){for(var t=1;t=0),e),m),w=h(h({},this.props),{children:null,inkBarAnimated:z,extraContent:l,style:r,prevIcon:O,nextIcon:H,className:V});return t=a?a(w,s["a"]):c["createElement"](s["a"],w),c["cloneElement"](t)}}]),n}(c["Component"]);V.defaultProps={animated:!0,type:"line"};var w=n("H84U"),S=n("6CfX"),L=function(e){if("undefined"!==typeof window&&window.document&&window.document.documentElement){var t=Array.isArray(e)?e:[e],n=window.document.documentElement;return t.some(function(e){return e in n.style})}return!1},P=L(["flex","webkitFlex","Flex","msFlex"]);function k(){return k=Object.assign||function(e){for(var t=1;t=0&&("small"===v||"large"===v)),"Tabs","`type=card|editable-card` doesn't have small or large size, it's by design.");var H=r("tabs",s),w=i()(p,(n={},x(n,"".concat(H,"-vertical"),"left"===y||"right"===y),x(n,"".concat(H,"-").concat(v),!!v),x(n,"".concat(H,"-card"),m.indexOf("card")>=0),x(n,"".concat(H,"-").concat(m),!0),x(n,"".concat(H,"-no-animation"),!O),n)),L=[];"editable-card"===m&&(L=[],c["Children"].forEach(b,function(t,n){if(!c["isValidElement"](t))return t;var r=t.props.closable;r="undefined"===typeof r||r;var o=r?c["createElement"](f["a"],{type:"close",className:"".concat(H,"-close-x"),onClick:function(n){return e.removeTab(t.key,n)}}):null;L.push(c["cloneElement"](t,{tab:c["createElement"]("div",{className:r?void 0:"".concat(H,"-tab-unclosable")},t.props.tab,o),key:t.key||n}))}),M||(C=c["createElement"]("span",null,c["createElement"](f["a"],{type:"plus",className:"".concat(H,"-new-tab"),onClick:e.createNewTab}),C))),C=C?c["createElement"]("div",{className:"".concat(H,"-extra-content")},C):null;var P=K(e.props,[]),j=i()("".concat(H,"-").concat(y,"-content"),m.indexOf("card")>=0&&"".concat(H,"-card-content"));return c["createElement"](o["b"],k({},e.props,{prefixCls:H,className:w,tabBarPosition:y,renderTabBar:function(){return c["createElement"](V,k({},Object(u["a"])(P,["className"]),{tabBarExtraContent:C}))},renderTabContent:function(){return c["createElement"](a["a"],{className:j,animated:O,animatedWithMargin:!0})},onChange:e.handleChange}),L.length>0?L:b)},e}return T(n,[{key:"componentDidMount",value:function(){var e=" no-flex",t=r["findDOMNode"](this);t&&!P&&-1===t.className.indexOf(e)&&(t.className+=e)}},{key:"render",value:function(){return c["createElement"](w["a"],null,this.renderTabs)}}]),n}(c["Component"]);B.TabPane=o["a"],B.defaultProps={hideAdd:!1,tabPosition:"top"}},ZTW2:function(e,t,n){},"Znn+":function(e,t,n){"use strict";n("cIOH"),n("9ama")},ZvpZ:function(e,t,n){"use strict";var c=n("H4fg"),r=n("61s2"),o=n("RlXo"),a=r["a"];t["a"]={locale:"en",Pagination:c["a"],DatePicker:r["a"],TimePicker:o["a"],Calendar:a,global:{placeholder:"Please select"},Table:{filterTitle:"Filter menu",filterConfirm:"OK",filterReset:"Reset",selectAll:"Select current page",selectInvert:"Invert current page",sortTitle:"Sort",expand:"Expand row",collapse:"Collapse row"},Modal:{okText:"OK",cancelText:"Cancel",justOkText:"OK"},Popconfirm:{okText:"OK",cancelText:"Cancel"},Transfer:{titles:["",""],searchPlaceholder:"Search here",itemUnit:"item",itemsUnit:"items"},Upload:{uploading:"Uploading...",removeFile:"Remove file",uploadError:"Upload error",previewFile:"Preview file",downloadFile:"Download file"},Empty:{description:"No Data"},Icon:{icon:"icon"},Text:{edit:"Edit",copy:"Copy",copied:"Copied",expand:"Expand"},PageHeader:{back:"Back"}}},bE4E:function(e,t,n){},bKJz:function(e,t,n){},bXwC:function(e,t,n){},bac3:function(e,t,n){"use strict";(function(e){n.d(t,"e",function(){return f}),n.d(t,"d",function(){return h}),n.d(t,"a",function(){return v}),n.d(t,"b",function(){return d}),n.d(t,"c",function(){return m}),n.d(t,"f",function(){return y});var c=n("QbLZ"),r=n.n(c),o=n("iCc5"),a=n.n(o),l=n("V7oC"),i=n.n(l),u=n("HXN9"),s=n("q1tI");function f(t){e&&Object({NODE_ENV:"production"})||console.error("[@ant-design/icons-react]: "+t+".")}function h(e){return"object"===typeof e&&"string"===typeof e.name&&"string"===typeof e.theme&&("object"===typeof e.icon||"function"===typeof e.icon)}function p(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return Object.keys(e).reduce(function(t,n){var c=e[n];switch(n){case"class":t.className=c,delete t["class"];break;default:t[n]=c}return t},{})}var v=function(){function e(){a()(this,e),this.collection={}}return i()(e,[{key:"clear",value:function(){this.collection={}}},{key:"delete",value:function(e){return delete this.collection[e]}},{key:"get",value:function(e){return this.collection[e]}},{key:"has",value:function(e){return Boolean(this.collection[e])}},{key:"set",value:function(e,t){return this.collection[e]=t,this}},{key:"size",get:function(){return Object.keys(this.collection).length}}]),e}();function d(e,t,n){return n?s["createElement"](e.tag,r()({key:t},p(e.attrs),n),(e.children||[]).map(function(n,c){return d(n,t+"-"+e.tag+"-"+c)})):s["createElement"](e.tag,r()({key:t},p(e.attrs)),(e.children||[]).map(function(n,c){return d(n,t+"-"+e.tag+"-"+c)}))}function m(e){return Object(u["generate"])(e)[0]}function y(e,t){switch(t){case"fill":return e+"-fill";case"outline":return e+"-o";case"twotone":return e+"-twotone";default:throw new TypeError("Unknown theme type: "+t+", name: "+e)}}}).call(this,n("Q2Ig"))},bbsP:function(e,t,n){"use strict";n("cIOH"),n("CWI+")},cIOH:function(e,t,n){},czTT:function(e,t,n){},d0bx:function(e,t,n){"use strict";var c=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});var r=c(n("Zss7")),o=2,a=16,l=5,i=5,u=15,s=5,f=4;function h(e,t,n){var c;return c=Math.round(e.h)>=60&&Math.round(e.h)<=240?n?Math.round(e.h)-o*t:Math.round(e.h)+o*t:n?Math.round(e.h)+o*t:Math.round(e.h)-o*t,c<0?c+=360:c>=360&&(c-=360),c}function p(e,t,n){return 0===e.h&&0===e.s?e.s:(c=n?Math.round(100*e.s)-a*t:t===f?Math.round(100*e.s)+a:Math.round(100*e.s)+l*t,c>100&&(c=100),n&&t===s&&c>10&&(c=10),c<6&&(c=6),c);var c}function v(e,t,n){return n?Math.round(100*e.v)+i*t:Math.round(100*e.v)-u*t}function d(e){for(var t=[],n=r.default(e),c=s;c>0;c-=1){var o=n.toHsv(),a=r.default({h:h(o,c,!0),s:p(o,c,!0),v:v(o,c,!0)}).toHexString();t.push(a)}t.push(n.toHexString());for(c=1;c<=f;c+=1){o=n.toHsv(),a=r.default({h:h(o,c),s:p(o,c),v:v(o,c)}).toHexString();t.push(a)}return t}t.default=d},foW8:function(e,t,n){"use strict";t.__esModule=!0;var c=n("q1tI"),r=l(c),o=n("mdmE"),a=l(o);function l(e){return e&&e.__esModule?e:{default:e}}t.default=r.default.createContext||a.default,e.exports=t["default"]},g0mS:function(e,t,n){"use strict";n.d(t,"a",function(){return C});var c,r=n("q1tI"),o=n("i8i4"),a=n("/dDc"),l=n("oHiP"),i=n("H84U");function u(e){"@babel/helpers - typeof";return u="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},u(e)}function s(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function f(e,t){for(var n=0;n=0)){var r=e.props.insertExtraNode;e.extraNode=document.createElement("div");var o=y(e),l=o.extraNode;l.className="ant-click-animating-node";var i=e.getAttributeName();t.setAttribute(i,"true"),c=c||document.createElement("style"),n&&"#ffffff"!==n&&"rgb(255, 255, 255)"!==n&&M(n)&&!/rgba\(\d*, \d*, \d*, 0\)/.test(n)&&"transparent"!==n&&(e.csp&&e.csp.nonce&&(c.nonce=e.csp.nonce),l.style.borderColor=n,c.innerHTML="\n [ant-click-animating-without-extra-node='true']::after, .ant-click-animating-node {\n --antd-wave-shadow-color: ".concat(n,";\n }"),document.body.contains(c)||document.body.appendChild(c)),r&&t.appendChild(l),a["a"].addStartEventListener(t,e.onTransitionStart),a["a"].addEndEventListener(t,e.onTransitionEnd)}},e.onTransitionStart=function(t){if(!e.destroy){var n=Object(o["findDOMNode"])(y(e));t&&t.target===n&&(e.animationStart||e.resetEffect(n))}},e.onTransitionEnd=function(t){t&&"fadeEffect"===t.animationName&&e.resetEffect(t.target)},e.bindAnimationEvent=function(t){if(t&&t.getAttribute&&!t.getAttribute("disabled")&&!(t.className.indexOf("disabled")>=0)){var n=function(n){if("INPUT"!==n.target.tagName&&!g(n.target)){e.resetEffect(t);var c=getComputedStyle(t).getPropertyValue("border-top-color")||getComputedStyle(t).getPropertyValue("border-color")||getComputedStyle(t).getPropertyValue("background-color");e.clickWaveTimeoutId=window.setTimeout(function(){return e.onClick(t,c)},0),l["a"].cancel(e.animationStartId),e.animationStart=!0,e.animationStartId=Object(l["a"])(function(){e.animationStart=!1},10)}};return t.addEventListener("click",n,!0),{cancel:function(){t.removeEventListener("click",n,!0)}}}},e.renderWave=function(t){var n=t.csp,c=e.props.children;return e.csp=n,c},e}return h(n,[{key:"componentDidMount",value:function(){var e=Object(o["findDOMNode"])(this);e&&1===e.nodeType&&(this.instance=this.bindAnimationEvent(e))}},{key:"componentWillUnmount",value:function(){this.instance&&this.instance.cancel(),this.clickWaveTimeoutId&&clearTimeout(this.clickWaveTimeoutId),this.destroy=!0}},{key:"getAttributeName",value:function(){var e=this.props.insertExtraNode;return e?"ant-click-animating":"ant-click-animating-without-extra-node"}},{key:"resetEffect",value:function(e){if(e&&e!==this.extraNode&&e instanceof Element){var t=this.props.insertExtraNode,n=this.getAttributeName();e.setAttribute(n,"false"),c&&(c.innerHTML=""),t&&this.extraNode&&e.contains(this.extraNode)&&e.removeChild(this.extraNode),a["a"].removeStartEventListener(e,this.onTransitionStart),a["a"].removeEndEventListener(e,this.onTransitionEnd)}}},{key:"render",value:function(){return r["createElement"](i["a"],null,this.renderWave)}}]),n}(r["Component"])},g9YV:function(e,t,n){"use strict";n("cIOH"),n("pED+"),n("R9oj"),n("7Kak"),n("KCY9"),n("qVdP"),n("T2oS"),n("DjyN")},i8oR:function(e,t,n){},iQDF:function(e,t,n){"use strict";n("cIOH"),n("ZTW2"),n("5NDa"),n("pL63"),n("+BJd")},jCWc:function(e,t,n){"use strict";n("cIOH"),n("1GLa")},"jsC+":function(e,t,n){"use strict";var c=n("q1tI"),r=n("eDIo"),o=n("TSYQ"),a=n.n(o),l=n("H84U"),i=n("6CfX"),u=n("CtXQ"),s=n("CWQg");function f(e){"@babel/helpers - typeof";return f="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},f(e)}function h(){return h=Object.assign||function(e){for(var t=1;t=0?"slide-down":"slide-up"}},{key:"render",value:function(){return c["createElement"](l["a"],null,this.renderDropDown)}}]),n}(c["Component"]);O.defaultProps={mouseEnterDelay:.15,mouseLeaveDelay:.1,placement:"bottomLeft"};var H=n("2/Rp");function V(e){"@babel/helpers - typeof";return V="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},V(e)}function w(){return w=Object.assign||function(e){for(var t=1;t1&&void 0!==arguments[1]?arguments[1]:1,n=o++,c=t;function l(){c-=1,c<=0?(e(),delete a[n]):a[n]=r()(l)}return a[n]=r()(l),n}l.cancel=function(e){void 0!==e&&(r.a.cancel(a[e]),delete a[e])},l.ids=a},"pED+":function(e,t,n){},pL63:function(e,t,n){},pwpV:function(e,t,n){},qCM6:function(e,t,n){},qVdP:function(e,t,n){"use strict";n("cIOH"),n("KAsB"),n("+L6B")},qrJ5:function(e,t,n){"use strict";var c,r=n("q1tI"),o=n("TSYQ"),a=n.n(o),l=n("17x9"),i=n("H84U"),u=n("o/2+"),s=n("CWQg");function f(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function h(){return h=Object.assign||function(e){for(var t=1;t0?{marginLeft:y[0]/-2,marginRight:y[0]/-2}:{}),y[1]>0?{marginTop:y[1]/-2,marginBottom:y[1]/-2}:{}),p),g=C({},d);return delete g.gutter,r["createElement"](u["a"].Provider,{value:{gutter:y}},r["createElement"]("div",C({},g,{className:b,style:z}),v))},e}return w(n,[{key:"componentDidMount",value:function(){var e=this;this.token=g.subscribe(function(t){var n=e.props.gutter;("object"===M(n)||Array.isArray(n)&&("object"===M(n[0])||"object"===M(n[1])))&&e.setState({screens:t})})}},{key:"componentWillUnmount",value:function(){g.unsubscribe(this.token)}},{key:"getGutter",value:function(){var e=[0,0],t=this.props.gutter,n=this.state.screens,c=Array.isArray(t)?t:[t,0];return c.forEach(function(t,c){if("object"===M(t))for(var r=0;re.length)&&(t=e.length);for(var n=0,c=new Array(t);n0&&(y=o.getOptions().map(function(e){return c["createElement"](R,{prefixCls:v,key:e.value.toString(),disabled:"disabled"in e?e.disabled:a.disabled,value:e.value,checked:-1!==l.value.indexOf(e.value),onChange:e.onChange,className:"".concat(d,"-item")},e.label)}));var b=u()(d,s);return c["createElement"]("div",F({className:b,style:f},m),y)},o.state={value:e.value||e.defaultValue||[],registeredValues:[]},o}return Q(n,[{key:"getChildContext",value:function(){return{checkboxGroup:{toggleOption:this.toggleOption,value:this.state.value,disabled:this.props.disabled,name:this.props.name,registerValue:this.registerValue,cancelValue:this.cancelValue}}}},{key:"shouldComponentUpdate",value:function(e,t){return!f()(this.props,e)||!f()(this.state,t)}},{key:"getOptions",value:function(){var e=this.props.options;return e.map(function(e){return"string"===typeof e?{label:e,value:e}:e})}},{key:"render",value:function(){return c["createElement"](g["a"],null,this.renderGroup)}}],[{key:"getDerivedStateFromProps",value:function(e){return"value"in e?{value:e.value||[]}:null}}]),n}(c["Component"]);ce.defaultProps={options:[]},ce.propTypes={defaultValue:l["array"],value:l["array"],options:l["array"].isRequired,onChange:l["func"]},ce.childContextTypes={checkboxGroup:l["any"]},Object(h["polyfill"])(ce);var re=ce;R.Group=re;var oe=R,ae=n("9yH6"),le=function(e){return c["createElement"]("div",{className:e.className,onClick:function(e){return e.stopPropagation()}},e.children)},ie=le;function ue(e){return pe(e)||he(e)||fe(e)||se()}function se(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function fe(e,t){if(e){if("string"===typeof e)return ve(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?ve(e,t):void 0}}function he(e){if("undefined"!==typeof Symbol&&Symbol.iterator in Object(e))return Array.from(e)}function pe(e){if(Array.isArray(e))return ve(e)}function ve(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,c=new Array(t);n0&&void 0!==arguments[0]?arguments[0]:[],t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"children",n=[],c=function e(c){c.forEach(function(c){if(c[t]){var r=de({},c);delete r[t],n.push(r),c[t].length>0&&e(c[t])}else n.push(c)})};return c(e),n}function ye(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"children";return e.map(function(e,c){var r={};return e[n]&&(r[n]=ye(e[n],t,n)),de(de({},t(e,c)),r)})}function be(e,t){return e.reduce(function(e,n){if(t(n)&&e.push(n),n.children){var c=be(n.children,t);e.push.apply(e,ue(c))}return e},[])}function ze(e){var t=[];return c["Children"].forEach(e,function(e){if(c["isValidElement"](e)){var n=de({},e.props);e.key&&(n.key=e.key),e.type&&e.type.__ANT_TABLE_COLUMN_GROUP&&(n.children=ze(n.children)),t.push(n)}}),t}function ge(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return(e||[]).forEach(function(e){var n=e.value,c=e.children;t[n.toString()]=n,ge(c,t)}),t}function Me(e){"@babel/helpers - typeof";return Me="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Me(e)}function Ce(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Oe(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function He(e,t){for(var n=0;n=0?delete n[e.key]:n[e.key]=e.keyPath,r.setState({keyPathOfSelectedItem:n})}},r.renderFilterIcon=function(){var e,t=r.props,n=t.column,o=t.locale,a=t.prefixCls,l=t.selectedKeys,i=l&&l.length>0,s=n.filterIcon;"function"===typeof s&&(s=s(i));var f=u()((e={},Ce(e,"".concat(a,"-selected"),"filtered"in n?n.filtered:i),Ce(e,"".concat(a,"-open"),r.getDropdownVisible()),e));return s?c["isValidElement"](s)?c["cloneElement"](s,{title:s.props.title||o.filterTitle,className:u()("".concat(a,"-icon"),f,s.props.className),onClick:je}):c["createElement"]("span",{className:u()("".concat(a,"-icon"),f)},s):c["createElement"](b["a"],{title:o.filterTitle,type:"filter",theme:"filled",className:f,onClick:je})};var o="filterDropdownVisible"in e.column&&e.column.filterDropdownVisible;return r.state={selectedKeys:e.selectedKeys,valueKeys:ge(e.column.filters),keyPathOfSelectedItem:{},visible:o,prevProps:e},r}return Ve(n,[{key:"componentDidMount",value:function(){var e=this.props.column;this.setNeverShown(e)}},{key:"componentDidUpdate",value:function(){var e=this.props.column;this.setNeverShown(e)}},{key:"getDropdownVisible",value:function(){return!this.neverShown&&this.state.visible}},{key:"setVisible",value:function(e){var t=this.props.column;"filterDropdownVisible"in t||this.setState({visible:e}),t.onFilterDropdownVisibleChange&&t.onFilterDropdownVisibleChange(e)}},{key:"hasSubMenu",value:function(){var e=this.props.column.filters,t=void 0===e?[]:e;return t.some(function(e){return!!(e.children&&e.children.length>0)})}},{key:"confirmFilter",value:function(){var e=this.props,t=e.column,n=e.selectedKeys,c=e.confirmFilter,r=this.state,o=r.selectedKeys,a=r.valueKeys,l=t.filterDropdown;f()(o,n)||c(t,l?o:o.map(function(e){return a[e]}).filter(function(e){return void 0!==e}))}},{key:"renderMenus",value:function(e){var t=this,n=this.props,r=n.dropdownPrefixCls,o=n.prefixCls;return e.map(function(e){if(e.children&&e.children.length>0){var n=t.state.keyPathOfSelectedItem,a=Object.keys(n).some(function(t){return n[t].indexOf(e.value)>=0}),l=u()("".concat(o,"-dropdown-submenu"),Ce({},"".concat(r,"-submenu-contain-selected"),a));return c["createElement"](v["d"],{title:e.text,popupClassName:l,key:e.value.toString()},t.renderMenus(e.children))}return t.renderMenuItem(e)})}},{key:"renderMenuItem",value:function(e){var t=this.props.column,n=this.state.selectedKeys,r=!("filterMultiple"in t)||t.filterMultiple,o=(n||[]).map(function(e){return e.toString()}),a=r?c["createElement"](oe,{checked:o.indexOf(e.value.toString())>=0}):c["createElement"](ae["a"],{checked:o.indexOf(e.value.toString())>=0});return c["createElement"](v["b"],{key:e.value},a,c["createElement"]("span",null,e.text))}},{key:"render",value:function(){var e=this,t=this.state.selectedKeys,n=this.props,r=n.column,o=n.locale,a=n.prefixCls,l=n.dropdownPrefixCls,i=n.getPopupContainer,s=!("filterMultiple"in r)||r.filterMultiple,f=u()(Ce({},"".concat(l,"-menu-without-submenu"),!this.hasSubMenu())),h=r.filterDropdown;h instanceof Function&&(h=h({prefixCls:"".concat(l,"-custom"),setSelectedKeys:function(t){return e.setSelectedKeys({selectedKeys:t})},selectedKeys:t,confirm:this.handleConfirm,clearFilters:this.handleClearFilters,filters:r.filters,visible:this.getDropdownVisible()}));var p=h?c["createElement"](ie,{className:"".concat(a,"-dropdown")},h):c["createElement"](ie,{className:"".concat(a,"-dropdown")},c["createElement"](v["e"],{multiple:s,onClick:this.handleMenuItemClick,prefixCls:"".concat(l,"-menu"),className:f,onSelect:this.setSelectedKeys,onDeselect:this.setSelectedKeys,selectedKeys:t&&t.map(function(e){return e.toString()}),getPopupContainer:i},this.renderMenus(r.filters)),c["createElement"]("div",{className:"".concat(a,"-dropdown-btns")},c["createElement"]("a",{className:"".concat(a,"-dropdown-link confirm"),onClick:this.handleConfirm},o.filterConfirm),c["createElement"]("a",{className:"".concat(a,"-dropdown-link clear"),onClick:this.handleClearFilters},o.filterReset)));return c["createElement"](y["a"],{trigger:["click"],placement:"bottomRight",overlay:p,visible:this.getDropdownVisible(),onVisibleChange:this.onVisibleChange,getPopupContainer:i,forceRender:!0},this.renderFilterIcon())}}],[{key:"getDerivedStateFromProps",value:function(e,t){var n=e.column,c=t.prevProps,r={prevProps:e};return"selectedKeys"in e&&!f()(c.selectedKeys,e.selectedKeys)&&(r.selectedKeys=e.selectedKeys),f()((c.column||{}).filters,(e.column||{}).filters)||(r.valueKeys=ge(e.column.filters)),"filterDropdownVisible"in n&&(r.visible=n.filterDropdownVisible),r}}]),n}(c["Component"]);_e.defaultProps={column:{}},Object(h["polyfill"])(_e);var Te=_e;function Ne(){return Ne=Object.assign||function(e){for(var t=1;t=0:t.getState().selectedRowKeys.indexOf(c)>=0||n.indexOf(c)>=0,r}},{key:"subscribe",value:function(){var e=this,t=this.props.store;this.unsubscribe=t.subscribe(function(){var t=e.getCheckState(e.props);e.setState({checked:t})})}},{key:"render",value:function(){var e=this.props,t=e.type,n=e.rowIndex,r=Xe(e,["type","rowIndex"]),o=this.state.checked;return"radio"===t?c["createElement"](ae["a"],Fe({checked:o,value:n},r)):c["createElement"](oe,Fe({checked:o},r))}}]),n}(c["Component"]),Je=n("BvKs");function $e(e){"@babel/helpers - typeof";return $e="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},$e(e)}function et(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function tt(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function nt(e,t){for(var n=0;n=0})}function pt(e){var t=e.store,n=e.data;if(!n.length)return!1;var c=ht(ft(ft({},e),{data:n,type:"some",byDefaultChecked:!1}))&&!ht(ft(ft({},e),{data:n,type:"every",byDefaultChecked:!1})),r=ht(ft(ft({},e),{data:n,type:"some",byDefaultChecked:!0}))&&!ht(ft(ft({},e),{data:n,type:"every",byDefaultChecked:!0}));return t.getState().selectionDirty?c:c||r}function vt(e){var t=e.store,n=e.data;return!!n.length&&(t.getState().selectionDirty?ht(ft(ft({},e),{data:n,type:"every",byDefaultChecked:!1})):ht(ft(ft({},e),{data:n,type:"every",byDefaultChecked:!1}))||ht(ft(ft({},e),{data:n,type:"every",byDefaultChecked:!0})))}var dt=function(e){rt(n,e);var t=at(n);function n(e){var c;return tt(this,n),c=t.call(this,e),c.state={checked:!1,indeterminate:!1},c.handleSelectAllChange=function(e){var t=e.target.checked;c.props.onSelect(t?"all":"removeAll",0,null)},c.defaultSelections=e.hideDefaultSelections?[]:[{key:"all",text:e.locale.selectAll},{key:"invert",text:e.locale.selectInvert}],c}return ct(n,[{key:"componentDidMount",value:function(){this.subscribe()}},{key:"componentWillUnmount",value:function(){this.unsubscribe&&this.unsubscribe()}},{key:"setCheckState",value:function(e){var t=vt(e),n=pt(e);this.setState(function(e){var c={};return n!==e.indeterminate&&(c.indeterminate=n),t!==e.checked&&(c.checked=t),c})}},{key:"subscribe",value:function(){var e=this,t=this.props.store;this.unsubscribe=t.subscribe(function(){e.setCheckState(e.props)})}},{key:"renderMenus",value:function(e){var t=this;return e.map(function(e,n){return c["createElement"](Je["a"].Item,{key:e.key||n},c["createElement"]("div",{onClick:function(){t.props.onSelect(e.key,n,e.onSelect)}},e.text))})}},{key:"render",value:function(){var e=this.props,t=e.disabled,n=e.prefixCls,r=e.selections,o=e.getPopupContainer,a=this.state,l=a.checked,i=a.indeterminate,s="".concat(n,"-selection"),f=null;if(r){var h=Array.isArray(r)?this.defaultSelections.concat(r):this.defaultSelections,p=c["createElement"](Je["a"],{className:"".concat(s,"-menu"),selectedKeys:[]},this.renderMenus(h));f=h.length>0?c["createElement"](y["a"],{overlay:p,getPopupContainer:o},c["createElement"]("div",{className:"".concat(s,"-down")},c["createElement"](b["a"],{type:"down"}))):null}return c["createElement"]("div",{className:s},c["createElement"](oe,{className:u()(et({},"".concat(s,"-select-all-custom"),f)),checked:l,indeterminate:i,disabled:t,onChange:this.handleSelectAllChange}),f)}}],[{key:"getDerivedStateFromProps",value:function(e,t){var n=vt(e),c=pt(e),r={};return c!==t.indeterminate&&(r.indeterminate=c),n!==t.checked&&(r.checked=n),r}}]),n}(c["Component"]);Object(h["polyfill"])(dt);var mt=dt;function yt(e){"@babel/helpers - typeof";return yt="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},yt(e)}function bt(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function zt(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&>(e,t)}function gt(e,t){return gt=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},gt(e,t)}function Mt(e){var t=Ht();return function(){var n,c=Vt(e);if(t){var r=Vt(this).constructor;n=Reflect.construct(c,arguments,r)}else n=c.apply(this,arguments);return Ct(this,n)}}function Ct(e,t){return!t||"object"!==yt(t)&&"function"!==typeof t?Ot(e):t}function Ot(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Ht(){if("undefined"===typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"===typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],function(){})),!0}catch(e){return!1}}function Vt(e){return Vt=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)},Vt(e)}var wt=function(e){zt(n,e);var t=Mt(n);function n(){return bt(this,n),t.apply(this,arguments)}return n}(c["Component"]);function St(e){"@babel/helpers - typeof";return St="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},St(e)}function Lt(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Pt(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&kt(e,t)}function kt(e,t){return kt=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},kt(e,t)}function xt(e){var t=_t();return function(){var n,c=Tt(e);if(t){var r=Tt(this).constructor;n=Reflect.construct(c,arguments,r)}else n=c.apply(this,arguments);return Et(this,n)}}function Et(e,t){return!t||"object"!==St(t)&&"function"!==typeof t?jt(e):t}function jt(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function _t(){if("undefined"===typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"===typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],function(){})),!0}catch(e){return!1}}function Tt(e){return Tt=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)},Tt(e)}var Nt=function(e){Pt(n,e);var t=xt(n);function n(){return Lt(this,n),t.apply(this,arguments)}return n}(c["Component"]);function Rt(e){"@babel/helpers - typeof";return Rt="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Rt(e)}function At(){return At=Object.assign||function(e){for(var t=1;t0&&void 0!==arguments[0]?arguments[0]:"tr",t=function(t){Kt(o,t);var n=qt(o);function o(e){var t;Dt(this,o),t=n.call(this,e),t.store=e.store;var c=t.store.getState(),r=c.selectedRowKeys;return t.state={selected:r.indexOf(e.rowKey)>=0},t}return Ut(o,[{key:"componentDidMount",value:function(){this.subscribe()}},{key:"componentWillUnmount",value:function(){this.unsubscribe&&this.unsubscribe()}},{key:"subscribe",value:function(){var e=this,t=this.props,n=t.store,c=t.rowKey;this.unsubscribe=n.subscribe(function(){var t=e.store.getState(),n=t.selectedRowKeys,r=n.indexOf(c)>=0;r!==e.state.selected&&e.setState({selected:r})})}},{key:"render",value:function(){var t=Object(r["a"])(this.props,["prefixCls","rowKey","store"]),n=u()(this.props.className,Ft({},"".concat(this.props.prefixCls,"-row-selected"),this.state.selected));return c["createElement"](e,At(At({},t),{className:n}),this.props.children)}}]),o}(c["Component"]);return t}Nt.__ANT_TABLE_COLUMN_GROUP=!0;var Zt=n("xEkU"),Jt=n.n(Zt);function $t(e,t){if("undefined"===typeof window)return 0;var n=t?"pageYOffset":"pageXOffset",c=t?"scrollTop":"scrollLeft",r=e===window,o=r?e[n]:e[c];return r&&"number"!==typeof o&&(o=document.documentElement[c]),o}function en(e,t,n,c){var r=n-t;return e/=c/2,e<1?r/2*e*e*e+t:r/2*((e-=2)*e*e+2)+t}function tn(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=t.getContainer,c=void 0===n?function(){return window}:n,r=t.callback,o=t.duration,a=void 0===o?450:o,l=c(),i=$t(l,!0),u=Date.now(),s=function t(){var n=Date.now(),c=n-u,o=en(c>a?a:c,i,e,a);l===window?window.scrollTo(window.pageXOffset,o):l.scrollTop=o,c0&&void 0!==arguments[0]?arguments[0]:{},t=e&&e.body&&e.body.row;return Nn(Nn({},e),{body:Nn(Nn({},e.body),{row:Xt(t)})})};function Wn(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return e===t||["table","header","body"].every(function(n){return f()(e[n],t[n])})}function Gn(e,t){return be(t||(e||{}).columns||[],function(e){return"undefined"!==typeof e.filteredValue})}function Qn(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1?arguments[1]:void 0,n={};return Gn(e,t).forEach(function(e){var t=In(e);n[t]=e.filteredValue}),n}function Yn(e,t){return Object.keys(t).length!==Object.keys(e.filters).length||Object.keys(t).some(function(n){return t[n]!==e.filters[n]})}var Xn=function(e){Pn(n,e);var t=xn(n);function n(e){var o;wn(this,n),o=t.call(this,e),o.setTableRef=function(e){o.rcTable=e},o.getCheckboxPropsByItem=function(e,t){var n=Dn(o.props);if(!n.getCheckboxProps)return{};var c=o.getRecordKey(e,t);if(!o.props.checkboxPropsCache[c]){o.props.checkboxPropsCache[c]=n.getCheckboxProps(e)||{};var r=o.props.checkboxPropsCache[c];Object(M["a"])(!("checked"in r)&&!("defaultChecked"in r),"Table","Do not set `checked` or `defaultChecked` in `getCheckboxProps`. Please use `selectedRowKeys` instead.")}return o.props.checkboxPropsCache[c]},o.getRecordKey=function(e,t){var n=o.props.rowKey,c="function"===typeof n?n(e,t):e[n];return Object(M["a"])(void 0!==c,"Table","Each record in dataSource of table should have a unique `key` prop, or set `rowKey` of Table to an unique primary key, see https://u.ant.design/table-row-key"),void 0===c?t:c},o.onRow=function(e,t,n){var c=o.props.onRow,r=c?c(t,n):{};return Nn(Nn({},r),{prefixCls:e,store:o.props.store,rowKey:o.getRecordKey(t,n)})},o.generatePopupContainerFunc=function(e){var t=o.props.scroll,n=o.rcTable;return e||(t&&n?function(){return n.tableNode}:void 0)},o.scrollToFirstRow=function(){var e=o.props.scroll;e&&!1!==e.scrollToFirstRowOnChange&&tn(0,{getContainer:function(){return o.rcTable.bodyTable}})},o.handleFilter=function(e,t){var n=o.props,c=Nn({},o.state.pagination),r=Nn(Nn({},o.state.filters),Vn({},In(e),t)),a=[];ye(o.state.columns,function(e){e.children||a.push(In(e))}),Object.keys(r).forEach(function(e){a.indexOf(e)<0&&delete r[e]}),n.pagination&&(c.current=1,c.onChange(c.current));var l={pagination:c,filters:{}},i=Nn({},r);Gn(o.state).forEach(function(e){var t=In(e);t&&delete i[t]}),Object.keys(i).length>0&&(l.filters=i),"object"===Hn(n.pagination)&&"current"in n.pagination&&(l.pagination=Nn(Nn({},c),{current:o.state.pagination.current})),o.setState(l,function(){o.scrollToFirstRow(),o.props.store.setState({selectionDirty:!1});var e=o.props.onChange;e&&e.apply(null,o.prepareParamsArguments(Nn(Nn({},o.state),{selectionDirty:!1,filters:r,pagination:c})))})},o.handleSelect=function(e,t,n){var c=n.target.checked,r=n.nativeEvent,a=o.props.store.getState().selectionDirty?[]:o.getDefaultSelection(),l=o.props.store.getState().selectedRowKeys.concat(a),i=o.getRecordKey(e,t),u=o.state.pivot,s=o.getFlatCurrentPageData(),f=t;if(o.props.expandedRowRender&&(f=s.findIndex(function(e){return o.getRecordKey(e,t)===i})),r.shiftKey&&void 0!==u&&f!==u){var h=[],p=Math.sign(u-f),v=Math.abs(u-f),d=0,m=function(){var e=f+d*p;d+=1;var t=s[e],n=o.getRecordKey(t,e),r=o.getCheckboxPropsByItem(t,e);r.disabled||(l.includes(n)?c||(l=l.filter(function(e){return n!==e}),h.push(n)):c&&(l.push(n),h.push(n)))};while(d<=v)m();o.setState({pivot:f}),o.props.store.setState({selectionDirty:!0}),o.setSelectedRowKeys(l,{selectWay:"onSelectMultiple",record:e,checked:c,changeRowKeys:h,nativeEvent:r})}else c?l.push(o.getRecordKey(e,f)):l=l.filter(function(e){return i!==e}),o.setState({pivot:f}),o.props.store.setState({selectionDirty:!0}),o.setSelectedRowKeys(l,{selectWay:"onSelect",record:e,checked:c,changeRowKeys:void 0,nativeEvent:r})},o.handleRadioSelect=function(e,t,n){var c=n.target.checked,r=n.nativeEvent,a=o.getRecordKey(e,t),l=[a];o.props.store.setState({selectionDirty:!0}),o.setSelectedRowKeys(l,{selectWay:"onSelect",record:e,checked:c,changeRowKeys:void 0,nativeEvent:r})},o.handleSelectRow=function(e,t,n){var c,r=o.getFlatCurrentPageData(),a=o.props.store.getState().selectionDirty?[]:o.getDefaultSelection(),l=o.props.store.getState().selectedRowKeys.concat(a),i=r.filter(function(e,t){return!o.getCheckboxPropsByItem(e,t).disabled}).map(function(e,t){return o.getRecordKey(e,t)}),u=[],s="onSelectAll";switch(e){case"all":i.forEach(function(e){l.indexOf(e)<0&&(l.push(e),u.push(e))}),s="onSelectAll",c=!0;break;case"removeAll":i.forEach(function(e){l.indexOf(e)>=0&&(l.splice(l.indexOf(e),1),u.push(e))}),s="onSelectAll",c=!1;break;case"invert":i.forEach(function(e){l.indexOf(e)<0?l.push(e):l.splice(l.indexOf(e),1),u.push(e),s="onSelectInvert"});break;default:break}o.props.store.setState({selectionDirty:!0});var f=o.props.rowSelection,h=2;if(f&&f.hideDefaultSelections&&(h=0),t>=h&&"function"===typeof n)return n(i);o.setSelectedRowKeys(l,{selectWay:s,checked:c,changeRowKeys:u})},o.handlePageChange=function(e){var t=o.props,n=Nn({},o.state.pagination);n.current=e||(n.current||1);for(var c=arguments.length,r=new Array(c>1?c-1:0),a=1;a0){var r=this.getSortStateFromColumns(t);Un(r.sortColumn,n)&&r.sortOrder===c||this.setState(r)}}},{key:"getDefaultSelection",value:function(){var e=this,t=Dn(this.props);return t.getCheckboxProps?this.getFlatData().filter(function(t,n){return e.getCheckboxPropsByItem(t,n).defaultChecked}).map(function(t,n){return e.getRecordKey(t,n)}):[]}},{key:"getDefaultPagination",value:function(e){var t,n,c="object"===Hn(e.pagination)?e.pagination:{};return"current"in c?t=c.current:"defaultCurrent"in c&&(t=c.defaultCurrent),"pageSize"in c?n=c.pageSize:"defaultPageSize"in c&&(n=c.defaultPageSize),this.hasPagination(e)?Nn(Nn(Nn({},Kn),c),{current:t||1,pageSize:n||10}):{}}},{key:"getSortOrderColumns",value:function(e){return be(e||(this.state||{}).columns||[],function(e){return"sortOrder"in e})}},{key:"getDefaultFilters",value:function(e){var t=Qn(this.state,e),n=be(e||[],function(e){return"undefined"!==typeof e.defaultFilteredValue}),c=n.reduce(function(e,t){var n=In(t);return e[n]=t.defaultFilteredValue,e},{});return Nn(Nn({},c),t)}},{key:"getDefaultSortOrder",value:function(e){var t=this.getSortStateFromColumns(e),n=be(e||[],function(e){return null!=e.defaultSortOrder})[0];return n&&!t.sortColumn?{sortColumn:n,sortOrder:n.defaultSortOrder}:t}},{key:"getSortStateFromColumns",value:function(e){var t=this.getSortOrderColumns(e).filter(function(e){return e.sortOrder})[0];return t?{sortColumn:t,sortOrder:t.sortOrder}:{sortColumn:null,sortOrder:null}}},{key:"getMaxCurrent",value:function(e){var t=this.state.pagination,n=t.current,c=t.pageSize;return(n-1)*c>=e?Math.floor((e-1)/c)+1:n}},{key:"getSorterFn",value:function(e){var t=e||this.state,n=t.sortOrder,c=t.sortColumn;if(n&&c&&"function"===typeof c.sorter)return function(e,t){var r=c.sorter(e,t,n);return 0!==r?"descend"===n?-r:r:0}}},{key:"getCurrentPageData",value:function(){var e,t,n=this.getLocalData(),c=this.state;return this.hasPagination()?(t=c.pagination.pageSize,e=this.getMaxCurrent(c.pagination.total||n.length)):(t=Number.MAX_VALUE,e=1),(n.length>t||t===Number.MAX_VALUE)&&(n=n.slice((e-1)*t,e*t)),n}},{key:"getFlatData",value:function(){var e=this.props.childrenColumnName;return me(this.getLocalData(null,!1),e)}},{key:"getFlatCurrentPageData",value:function(){var e=this.props.childrenColumnName;return me(this.getCurrentPageData(),e)}},{key:"getLocalData",value:function(e){var t=this,n=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],c=e||this.state,r=this.props.dataSource,o=r||[];o=o.slice(0);var a=this.getSorterFn(c);return a&&(o=this.recursiveSort(o,a)),n&&c.filters&&Object.keys(c.filters).forEach(function(e){var n=t.findColumn(e);if(n){var r=c.filters[e]||[];if(0!==r.length){var a=n.onFilter;o=a?o.filter(function(e){return r.some(function(t){return a(t,e)})}):o}}}),o}},{key:"setSelectedRowKeys",value:function(e,t){var n=this,c=t.selectWay,r=t.record,o=t.checked,a=t.changeRowKeys,l=t.nativeEvent,i=Dn(this.props);!i||"selectedRowKeys"in i||this.props.store.setState({selectedRowKeys:e});var u=this.getFlatData();if(i.onChange||i[c]){var s=u.filter(function(t,c){return e.indexOf(n.getRecordKey(t,c))>=0});if(i.onChange&&i.onChange(e,s),"onSelect"===c&&i.onSelect)i.onSelect(r,o,s,l);else if("onSelectMultiple"===c&&i.onSelectMultiple){var f=u.filter(function(e,t){return a.indexOf(n.getRecordKey(e,t))>=0});i.onSelectMultiple(o,s,f)}else if("onSelectAll"===c&&i.onSelectAll){var h=u.filter(function(e,t){return a.indexOf(n.getRecordKey(e,t))>=0});i.onSelectAll(o,s,h)}else"onSelectInvert"===c&&i.onSelectInvert&&i.onSelectInvert(e)}}},{key:"toggleSortOrder",value:function(e){var t,n=e.sortDirections||this.props.sortDirections,c=this.state,r=c.sortOrder,o=c.sortColumn;if(Un(o,e)&&void 0!==r){var a=n.indexOf(r)+1;t=a===n.length?void 0:n[a]}else t=n[0];var l={sortOrder:t,sortColumn:t?e:null};0===this.getSortOrderColumns().length&&this.setState(l,this.scrollToFirstRow);var i=this.props.onChange;i&&i.apply(null,this.prepareParamsArguments(Nn(Nn({},this.state),l),e))}},{key:"hasPagination",value:function(e){return!1!==(e||this.props).pagination}},{key:"isSortColumn",value:function(e){var t=this.state.sortColumn;return!(!e||!t)&&In(t)===In(e)}},{key:"prepareParamsArguments",value:function(e,t){var n=Nn({},e.pagination);delete n.onChange,delete n.onShowSizeChange;var c=e.filters,r={},o=t;e.sortColumn&&e.sortOrder&&(o=e.sortColumn,r.column=e.sortColumn,r.order=e.sortOrder),o&&(r.field=o.dataIndex,r.columnKey=In(o));var a={currentDataSource:this.getLocalData(e)};return[n,c,r,a]}},{key:"findColumn",value:function(e){var t;return ye(this.state.columns,function(n){In(n)===e&&(t=n)}),t}},{key:"recursiveSort",value:function(e,t){var n=this,c=this.props.childrenColumnName,r=void 0===c?"children":c;return e.sort(t).map(function(e){return e[r]?Nn(Nn({},e),Vn({},r,n.recursiveSort(e[r],t))):e})}},{key:"renderPagination",value:function(e,t){if(!this.hasPagination())return null;var n="default",r=this.state.pagination;r.size?n=r.size:"middle"!==this.props.size&&"small"!==this.props.size||(n="small");var o=r.position||"bottom",a=r.total||this.getLocalData().length;return a>0&&(o===t||"both"===o)?c["createElement"](nn["a"],Nn({key:"pagination-".concat(t)},r,{className:u()(r.className,"".concat(e,"-pagination")),onChange:this.handlePageChange,total:a,size:n,current:this.getMaxCurrent(a),onShowSizeChange:this.handleShowSizeChange})):null}},{key:"renderRowSelection",value:function(e){var t=this,n=e.prefixCls,r=e.locale,a=e.getPopupContainer,l=this.props.rowSelection,i=this.state.columns.concat();if(l){var s=this.getFlatCurrentPageData().filter(function(e,n){return!l.getCheckboxProps||!t.getCheckboxPropsByItem(e,n).disabled}),f=u()("".concat(n,"-selection-column"),Vn({},"".concat(n,"-selection-column-custom"),l.selections)),h=Vn({key:"selection-column",render:this.renderSelectionBox(l.type),className:f,fixed:l.fixed,width:l.columnWidth,title:l.columnTitle},o["INTERNAL_COL_DEFINE"],{className:"".concat(n,"-selection-col")});if("radio"!==l.type){var p=s.every(function(e,n){return t.getCheckboxPropsByItem(e,n).disabled});h.title=h.title||c["createElement"](mt,{store:this.props.store,locale:r,data:s,getCheckboxPropsByItem:this.getCheckboxPropsByItem,getRecordKey:this.getRecordKey,disabled:p,prefixCls:n,onSelect:this.handleSelectRow,selections:l.selections,hideDefaultSelections:l.hideDefaultSelections,getPopupContainer:this.generatePopupContainerFunc(a)})}"fixed"in l?h.fixed=l.fixed:i.some(function(e){return"left"===e.fixed||!0===e.fixed})&&(h.fixed="left"),i[0]&&"selection-column"===i[0].key?i[0]=h:i.unshift(h)}return i}},{key:"renderColumnsDropdown",value:function(e){var t=this,n=e.prefixCls,r=e.dropdownPrefixCls,o=e.columns,a=e.locale,l=e.getPopupContainer,i=this.state,s=i.sortOrder,f=i.filters;return ye(o,function(e,o){var i,h,p,v=In(e,o),d=e.onHeaderCell,m=t.isSortColumn(e);if(e.filters&&e.filters.length>0||e.filterDropdown){var y=v in f?f[v]:[];h=c["createElement"](Te,{locale:a,column:e,selectedKeys:y,confirmFilter:t.handleFilter,prefixCls:"".concat(n,"-filter"),dropdownPrefixCls:r||"ant-dropdown",getPopupContainer:t.generatePopupContainerFunc(l),key:"filter-dropdown"})}if(e.sorter){var z=e.sortDirections||t.props.sortDirections,g=m&&"ascend"===s,M=m&&"descend"===s,C=-1!==z.indexOf("ascend")&&c["createElement"](b["a"],{className:"".concat(n,"-column-sorter-up ").concat(g?"on":"off"),type:"caret-up",theme:"filled"}),O=-1!==z.indexOf("descend")&&c["createElement"](b["a"],{className:"".concat(n,"-column-sorter-down ").concat(M?"on":"off"),type:"caret-down",theme:"filled"});p=c["createElement"]("div",{title:a.sortTitle,className:u()("".concat(n,"-column-sorter-inner"),C&&O&&"".concat(n,"-column-sorter-inner-full")),key:"sorter"},C,O),d=function(n){var c={};e.onHeaderCell&&(c=Nn({},e.onHeaderCell(n)));var r=c.onClick;return c.onClick=function(){t.toggleSortOrder(e),r&&r.apply(void 0,arguments)},c}}return Nn(Nn({},e),{className:u()(e.className,(i={},Vn(i,"".concat(n,"-column-has-actions"),p||h),Vn(i,"".concat(n,"-column-has-filters"),h),Vn(i,"".concat(n,"-column-has-sorters"),p),Vn(i,"".concat(n,"-column-sort"),m&&s),i)),title:[c["createElement"]("span",{key:"title",className:"".concat(n,"-header-column")},c["createElement"]("div",{className:p?"".concat(n,"-column-sorters"):void 0},c["createElement"]("span",{className:"".concat(n,"-column-title")},t.renderColumnTitle(e.title)),c["createElement"]("span",{className:"".concat(n,"-column-sorter")},p))),h],onHeaderCell:d})})}},{key:"renderColumnTitle",value:function(e){var t=this.state,n=t.filters,c=t.sortOrder,r=t.sortColumn;return e instanceof Function?e({filters:n,sortOrder:c,sortColumn:r}):e}},{key:"render",value:function(){return c["createElement"](g["a"],null,this.renderComponent)}}],[{key:"getDerivedStateFromProps",value:function(e,t){var n=t.prevProps,c=e.columns||ze(e.children),r=Nn(Nn({},t),{prevProps:e,columns:c});if("pagination"in e||"pagination"in n){var o=Nn(Nn(Nn({},Kn),t.pagination),e.pagination);o.current=o.current||1,o.pageSize=o.pageSize||10,r=Nn(Nn({},r),{pagination:!1!==e.pagination?o:Bn})}e.rowSelection&&"selectedRowKeys"in e.rowSelection?e.store.setState({selectedRowKeys:e.rowSelection.selectedRowKeys||[]}):n.rowSelection&&!e.rowSelection&&e.store.setState({selectedRowKeys:[]}),"dataSource"in e&&e.dataSource!==n.dataSource&&e.store.setState({selectionDirty:!1}),e.setCheckboxPropsCache({});var a=Gn(r,r.columns);if(a.length>0){var l=Qn(r,r.columns),i=Nn({},r.filters);Object.keys(l).forEach(function(e){i[e]=l[e]}),Yn(r,i)&&(r=Nn(Nn({},r),{filters:i}))}if(!Wn(e.components,n.components)){var u=qn(e.components);r=Nn(Nn({},r),{components:u})}return r}}]),n}(c["Component"]);Xn.propTypes={dataSource:l["array"],columns:l["array"],prefixCls:l["string"],useFixedHeader:l["bool"],rowSelection:l["object"],className:l["string"],size:l["string"],loading:l["oneOfType"]([l["bool"],l["object"]]),bordered:l["bool"],onChange:l["func"],locale:l["object"],dropdownPrefixCls:l["string"],sortDirections:l["array"],getPopupContainer:l["func"]},Xn.defaultProps={dataSource:[],useFixedHeader:!1,className:"",size:"default",loading:!1,bordered:!1,indentSize:20,locale:{},rowKey:"key",showHeader:!0,sortDirections:["ascend","descend"],childrenColumnName:"children"},Object(h["polyfill"])(Xn);var Zn=function(e){Pn(n,e);var t=xn(n);function n(e){var c;return wn(this,n),c=t.call(this,e),c.setCheckboxPropsCache=function(e){return c.CheckboxPropsCache=e},c.CheckboxPropsCache={},c.store=Re({selectedRowKeys:Dn(e).selectedRowKeys||[],selectionDirty:!1}),c}return Ln(n,[{key:"render",value:function(){return c["createElement"](Xn,Nn({},this.props,{store:this.store,checkboxPropsCache:this.CheckboxPropsCache,setCheckboxPropsCache:this.setCheckboxPropsCache}))}}]),n}(c["Component"]);Zn.displayName="withStore(Table)",Zn.Column=wt,Zn.ColumnGroup=Nt;var Jn=Zn;t["a"]=Jn},"wEI+":function(e,t,n){"use strict";var c=n("q1tI"),r=n("17x9"),o=n("wd/R"),a=n("veqR"),l=n("ul5b"),i=n("6CfX");function u(e){"@babel/helpers - typeof";return u="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},u(e)}function s(){return s=Object.assign||function(e){for(var t=1;t0?c:null}}]),n}(o["Component"]);return t.defaultProps={allowClear:!0,showToday:!0},Object(l["polyfill"])(t),t}var P=c("wgp+"),T=c("61s2"),j=c("YMnH"),N=c("5lmr"),R=c("RlXo");function _(e){"@babel/helpers - typeof";return _="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},_(e)}function A(e,t,c){return t in e?Object.defineProperty(e,t,{value:c,enumerable:!0,configurable:!0,writable:!0}):e[t]=c,e}function F(){return F=Object.assign||function(e){for(var t=1;t-1||e.indexOf("h")>-1||e.indexOf("k")>-1,showMinute:e.indexOf("m")>-1,showSecond:e.indexOf("s")>-1}}var J=function(e){U(c,e);var t=q(c);function c(e){var n;D(this,c),n=t.call(this,e),n.getDefaultLocale=function(){var e=F(F({},R["a"]),n.props.locale);return e},n.handleOpenClose=function(e){var t=e.open,c=n.props.onOpenChange;c&&c(t)},n.saveTimePicker=function(e){n.timePickerRef=e},n.handleChange=function(e){"value"in n.props||n.setState({value:e});var t=n.props,c=t.onChange,r=t.format,o=void 0===r?"HH:mm:ss":r;c&&c(e,e&&e.format(o)||"")},n.renderTimePicker=function(e){return o["createElement"](p["a"],null,function(t){var c=t.getPopupContainer,r=t.getPrefixCls,a=n.props,l=a.getPopupContainer,i=a.prefixCls,u=a.className,f=a.addon,p=a.placeholder,v=X(a,["getPopupContainer","prefixCls","className","addon","placeholder"]),m=v.size,d=Object(h["a"])(v,["defaultValue","suffixIcon","allowEmpty","allowClear"]),y=n.getDefaultFormat(),b=r("time-picker",i),z=s()(u,A({},"".concat(b,"-").concat(m),!!m)),g=function(e){return f?o["createElement"]("div",{className:"".concat(b,"-panel-addon")},f(e)):null};return o["createElement"](N["a"],F({},Z(y),d,{allowEmpty:n.getAllowClear(),prefixCls:b,getPopupContainer:l||c,ref:n.saveTimePicker,format:y,className:z,value:n.state.value,placeholder:void 0===p?e.placeholder:p,onChange:n.handleChange,onOpen:n.handleOpenClose,onClose:n.handleOpenClose,addon:g,inputIcon:n.renderInputIcon(b),clearIcon:n.renderClearIcon(b)}))})};var r=e.value||e.defaultValue;if(r&&!Object(m["a"])(a).isMoment(r))throw new Error("The value/defaultValue of TimePicker must be a moment object after `antd@2.0`, see: https://u.ant.design/time-picker-value");return n.state={value:r},Object(v["a"])(!("allowEmpty"in e),"TimePicker","`allowEmpty` is deprecated. Please use `allowClear` instead."),n}return K(c,[{key:"getDefaultFormat",value:function(){var e=this.props,t=e.format,c=e.use12Hours;return t||(c?"h:mm:ss a":"HH:mm:ss")}},{key:"getAllowClear",value:function(){var e=this.props,t=e.allowClear,c=e.allowEmpty;return"allowClear"in this.props?t:c}},{key:"focus",value:function(){this.timePickerRef.focus()}},{key:"blur",value:function(){this.timePickerRef.blur()}},{key:"renderInputIcon",value:function(e){var t=this.props.suffixIcon,c=t&&o["isValidElement"](t)&&o["cloneElement"](t,{className:s()(t.props.className,"".concat(e,"-clock-icon"))})||o["createElement"](f["a"],{type:"clock-circle",className:"".concat(e,"-clock-icon")});return o["createElement"]("span",{className:"".concat(e,"-icon")},c)}},{key:"renderClearIcon",value:function(e){var t=this.props.clearIcon,c="".concat(e,"-clear");return t&&o["isValidElement"](t)?o["cloneElement"](t,{className:s()(t.props.className,c)}):o["createElement"](f["a"],{type:"close-circle",className:c,theme:"filled"})}},{key:"render",value:function(){return o["createElement"](j["a"],{componentName:"TimePicker",defaultLocale:this.getDefaultLocale()},this.renderTimePicker)}}],[{key:"getDerivedStateFromProps",value:function(e){return"value"in e?{value:e.value}:null}}]),c}(o["Component"]);J.defaultProps={align:{offset:[0,-2]},disabledHours:void 0,disabledMinutes:void 0,disabledSeconds:void 0,hideDisabledOptions:!1,placement:"bottomLeft",transitionName:"slide-up",focusOnOpen:!0},Object(l["polyfill"])(J);function $(e){"@babel/helpers - typeof";return $="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},$(e)}function ee(e,t,c){return t in e?Object.defineProperty(e,t,{value:c,enumerable:!0,configurable:!0,writable:!0}):e[t]=c,e}function te(){return te=Object.assign||function(e){for(var t=1;te.length)&&(t=e.length);for(var c=0,n=new Array(t);c0&&(e[1]=void 0);var r=Re(e,2),o=r[0],a=r[1];"function"===typeof c.onChange&&c.onChange(e,[y(o,c.format),y(a,c.format)])},n.handleOpenChange=function(e){"open"in n.props||n.setState({open:e}),!1===e&&n.clearHoverValue();var t=n.props.onOpenChange;t&&t(e)},n.handleShowDateChange=function(e){return n.setState({showDate:e})},n.handleHoverChange=function(e){return n.setState({hoverValue:e})},n.handleRangeMouseLeave=function(){n.state.open&&n.clearHoverValue()},n.handleCalendarInputSelect=function(e){var t=Re(e,1),c=t[0];c&&n.setState(function(t){var c=t.showDate;return{value:e,showDate:Ke(e)||c}})},n.handleRangeClick=function(e){"function"===typeof e&&(e=e()),n.setValue(e,!0);var t=n.props,c=t.onOk,r=t.onOpenChange;c&&c(e),r&&r(!1)},n.renderFooter=function(){var e=n.props,t=e.ranges,c=e.renderExtraFooter,r=Te(n),a=r.prefixCls,l=r.tagPrefixCls;if(!t&&!c)return null;var i=c?o["createElement"]("div",{className:"".concat(a,"-footer-extra"),key:"extra"},c()):null,u=t&&Object.keys(t).map(function(e){var c=t[e],r="function"===typeof c?c.call(Te(n)):c;return o["createElement"](ge["a"],{key:e,prefixCls:l,color:"blue",onClick:function(){return n.handleRangeClick(c)},onMouseEnter:function(){return n.setState({hoverValue:r})},onMouseLeave:n.handleRangeMouseLeave},e)}),s=u&&u.length>0?o["createElement"]("div",{className:"".concat(a,"-footer-extra ").concat(a,"-range-quick-selector"),key:"range"},u):null;return[s,i]},n.renderRangePicker=function(e){var t,c=e.getPrefixCls,r=Te(n),a=r.state,l=r.props,u=a.value,h=a.showDate,p=a.hoverValue,m=a.open,d=l.prefixCls,b=l.tagPrefixCls,z=l.popupStyle,g=l.style,M=l.disabledDate,C=l.disabledTime,H=l.showTime,O=l.showToday,V=l.ranges,w=l.onOk,S=l.locale,L=l.localeCode,k=l.format,x=l.dateRender,E=l.onCalendarChange,P=l.suffixIcon,T=l.separator,j=c("calendar",d),N=c("tag",b);n.prefixCls=j,n.tagPrefixCls=N,qe(u,L),qe(h,L),Object(v["a"])(!("onOK"in l),"RangePicker","It should be `RangePicker[onOk]`, instead of `onOK`!");var R=s()((t={},Ve(t,"".concat(j,"-time"),H),Ve(t,"".concat(j,"-range-with-ranges"),V),t)),_={onChange:n.handleChange},A={onOk:n.handleChange};l.timePicker?_.onChange=function(e){return n.handleChange(e)}:A={},"mode"in l&&(A.mode=l.mode);var F=Array.isArray(l.placeholder)?l.placeholder[0]:S.lang.rangePlaceholder[0],D=Array.isArray(l.placeholder)?l.placeholder[1]:S.lang.rangePlaceholder[1],I=o["createElement"](ye["a"],Oe({},A,{seperator:T,onChange:E,format:k,prefixCls:j,className:R,renderFooter:n.renderFooter,timePicker:l.timePicker,disabledDate:M,disabledTime:C,dateInputPlaceholder:[F,D],locale:S.lang,onOk:w,dateRender:x,value:h,onValueChange:n.handleShowDateChange,hoverValue:p,onHoverChange:n.handleHoverChange,onPanelChange:l.onPanelChange,showToday:O,onInputSelect:n.handleCalendarInputSelect})),K={};l.showTime&&(K.width=g&&g.width||350);var U=Re(u,2),B=U[0],q=U[1],W=!l.disabled&&l.allowClear&&u&&(B||q)?o["createElement"](f["a"],{type:"close-circle",className:"".concat(j,"-picker-clear"),onClick:n.clearSelection,theme:"filled"}):null,G=o["createElement"](Ce,{suffixIcon:P,prefixCls:j}),Y=function(e){var t=e.value,c=Re(t,2),n=c[0],r=c[1];return o["createElement"]("span",{className:l.pickerInputClass},o["createElement"]("input",{disabled:l.disabled,readOnly:!0,value:y(n,l.format),placeholder:F,className:"".concat(j,"-range-picker-input"),tabIndex:-1}),o["createElement"]("span",{className:"".concat(j,"-range-picker-separator")}," ",T," "),o["createElement"]("input",{disabled:l.disabled,readOnly:!0,value:y(r,l.format),placeholder:D,className:"".concat(j,"-range-picker-input"),tabIndex:-1}),W,G)};return o["createElement"]("span",{ref:n.savePicker,id:"number"===typeof l.id?l.id.toString():l.id,className:s()(l.className,l.pickerClass),style:Oe(Oe({},g),K),tabIndex:l.disabled?-1:0,onFocus:l.onFocus,onBlur:l.onBlur,onMouseEnter:l.onMouseEnter,onMouseLeave:l.onMouseLeave},o["createElement"](i["a"],Oe({},l,_,{calendar:I,value:u,open:m,onOpenChange:n.handleOpenChange,prefixCls:"".concat(j,"-picker-container"),style:z}),Y))};var r=e.value||e.defaultValue||[],l=Re(r,2),u=l[0],h=l[1];if(u&&!Object(m["a"])(a).isMoment(u)||h&&!Object(m["a"])(a).isMoment(h))throw new Error("The value/defaultValue of RangePicker must be a moment object array after `antd@2.0`, see: https://u.ant.design/date-picker-value");var p=!r||Be(r)?e.defaultPickerValue:r;return n.state={value:r,showDate:Ue(p||Object(m["a"])(a)()),open:e.open,hoverValue:[]},n}return Le(c,[{key:"componentDidUpdate",value:function(e,t){"open"in this.props||!t.open||this.state.open||this.focus()}},{key:"setValue",value:function(e,t){this.handleChange(e),!t&&this.props.showTime||"open"in this.props||this.setState({open:!1})}},{key:"focus",value:function(){this.picker.focus()}},{key:"blur",value:function(){this.picker.blur()}},{key:"render",value:function(){return o["createElement"](p["a"],null,this.renderRangePicker)}}],[{key:"getDerivedStateFromProps",value:function(e,t){var c=null;if("value"in e){var n=e.value||[];c={value:n},ze()(e.value,t.value)||(c=Oe(Oe({},c),{showDate:Ke(n,e.mode)||t.showDate}))}return"open"in e&&t.open!==e.open&&(c=Oe(Oe({},c),{open:e.open})),c}}]),c}(o["Component"]);We.defaultProps={allowClear:!0,showToday:!1,separator:"~"},Object(l["polyfill"])(We);var Ge=We;function Ye(e){"@babel/helpers - typeof";return Ye="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Ye(e)}function Qe(){return Qe=Object.assign||function(e){for(var t=1;t0?{paddingLeft:t[0]/2,paddingRight:t[0]/2}:{}),t[1]>0?{paddingTop:t[1]/2,paddingBottom:t[1]/2}:{}),c)),n["createElement"]("div",s({},M,{style:c,className:V}),g)})},e}return v(c,[{key:"render",value:function(){return n["createElement"](i["a"],null,this.renderCol)}}]),c}(n["Component"]);O.propTypes={span:r["number"],order:r["number"],offset:r["number"],push:r["number"],pull:r["number"],className:r["string"],children:r["node"],xs:H,sm:H,md:H,lg:H,xl:H,xxl:H}},"/wGt":function(e,t,c){"use strict";var n=c("q1tI"),r=c("fcSX"),o=c("foW8"),a=c.n(o),l=c("TSYQ"),i=c.n(l),u=c("BGR+"),s=c("6CfX"),h=c("CtXQ"),f=c("H84U"),p=c("CWQg");function v(e){"@babel/helpers - typeof";return v="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},v(e)}function m(){return m=Object.assign||function(e){for(var t=1;t0&&void 0!==arguments[0]?arguments[0]:{},t=e.arrowWidth,c=void 0===t?5:t,n=e.horizontalArrowShift,r=void 0===n?16:n,o=e.verticalArrowShift,a=void 0===o?12:o,l=e.autoAdjustOverflow,s=void 0===l||l,h={left:{points:["cr","cl"],offset:[-4,0]},right:{points:["cl","cr"],offset:[4,0]},top:{points:["bc","tc"],offset:[0,-4]},bottom:{points:["tc","bc"],offset:[0,4]},topLeft:{points:["bl","tc"],offset:[-(r+c),-4]},leftTop:{points:["tr","cl"],offset:[-4,-(a+c)]},topRight:{points:["br","tc"],offset:[r+c,-4]},rightTop:{points:["tl","cr"],offset:[4,-(a+c)]},bottomRight:{points:["tr","bc"],offset:[r+c,4]},rightBottom:{points:["bl","cr"],offset:[4,a+c]},bottomLeft:{points:["tl","bc"],offset:[-(r+c),4]},leftBottom:{points:["br","cl"],offset:[-4,a+c]}};return Object.keys(h).forEach(function(t){h[t]=e.arrowPointAtCenter?u(u({},h[t]),{overflow:p(s),targetOffset:f}):u(u({},i["a"][t]),{overflow:p(s)}),h[t].ignoreShake=!0}),h}var m=c("H84U");function d(e){"@babel/helpers - typeof";return d="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},d(e)}function y(e,t,c){return t in e?Object.defineProperty(e,t,{value:c,enumerable:!0,configurable:!0,writable:!0}):e[t]=c,e}function b(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function z(e,t){for(var c=0;c=0||n.indexOf("Bottom")>=0?a.top="".concat(o.height-t.offset[1],"px"):(n.indexOf("Top")>=0||n.indexOf("bottom")>=0)&&(a.top="".concat(-t.offset[1],"px")),n.indexOf("left")>=0||n.indexOf("Right")>=0?a.left="".concat(o.width-t.offset[0],"px"):(n.indexOf("right")>=0||n.indexOf("Left")>=0)&&(a.left="".concat(-t.offset[0],"px")),e.style.transformOrigin="".concat(a.left," ").concat(a.top)}},r.renderTooltip=function(e){var t=e.getPopupContainer,c=e.getPrefixCls,a=V(r),i=a.props,u=a.state,s=i.prefixCls,h=i.openClassName,f=i.getPopupContainer,p=i.getTooltipContainer,v=i.children,m=c("tooltip",s),d=u.visible;"visible"in i||!r.isNoTitle()||(d=!1);var b=x(n["isValidElement"](v)?v:n["createElement"]("span",null,v)),z=b.props,g=l()(z.className,y({},h||"".concat(m,"-open"),!0));return n["createElement"](o["a"],L({},r.props,{prefixCls:m,getTooltipContainer:f||p||t,ref:r.saveTooltip,builtinPlacements:r.getPlacements(),overlay:r.getOverlay(),visible:d,onVisibleChange:r.onVisibleChange,onPopupAlign:r.onPopupAlign}),d?n["cloneElement"](b,{className:g}):b)},r.state={visible:!!e.visible||!!e.defaultVisible},r}return g(c,[{key:"getPopupDomNode",value:function(){return this.tooltip.getPopupDomNode()}},{key:"getPlacements",value:function(){var e=this.props,t=e.builtinPlacements,c=e.arrowPointAtCenter,n=e.autoAdjustOverflow;return t||v({arrowPointAtCenter:c,verticalArrowShift:8,autoAdjustOverflow:n})}},{key:"isNoTitle",value:function(){var e=this.props,t=e.title,c=e.overlay;return!t&&!c&&0!==t}},{key:"getOverlay",value:function(){var e=this.props,t=e.title,c=e.overlay;return 0===t?t:c||t||""}},{key:"render",value:function(){return n["createElement"](m["a"],null,this.renderTooltip)}}],[{key:"getDerivedStateFromProps",value:function(e){return"visible"in e?{visible:e.visible}:null}}]),c}(n["Component"]);E.defaultProps={placement:"top",transitionName:"zoom-big-fast",mouseEnterDelay:.1,mouseLeaveDelay:.1,arrowPointAtCenter:!1,autoAdjustOverflow:!0},Object(r["polyfill"])(E);t["a"]=E},"3wW7":function(e,t,c){},"5Dmo":function(e,t,c){"use strict";c("cIOH"),c("5YgA")},"5NDa":function(e,t,c){"use strict";c("cIOH"),c("OnYD"),c("+L6B")},"5YgA":function(e,t,c){},"5rEg":function(e,t,c){"use strict";var n=c("q1tI"),r=c("17x9"),o=c("VCL8"),a=c("TSYQ"),l=c.n(a),i=c("BGR+"),u=c("CWQg"),s=c("CtXQ");function h(e){"@babel/helpers - typeof";return h="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},h(e)}function f(e,t,c){return t in e?Object.defineProperty(e,t,{value:c,enumerable:!0,configurable:!0,writable:!0}):e[t]=c,e}function p(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function v(e,t){for(var c=0;c1&&void 0!==arguments[1]&&arguments[1],c=e.getAttribute("id")||e.getAttribute("data-reactid")||e.getAttribute("name");if(t&&ze[c])return ze[c];var n=window.getComputedStyle(e),r=n.getPropertyValue("box-sizing")||n.getPropertyValue("-moz-box-sizing")||n.getPropertyValue("-webkit-box-sizing"),o=parseFloat(n.getPropertyValue("padding-bottom"))+parseFloat(n.getPropertyValue("padding-top")),a=parseFloat(n.getPropertyValue("border-bottom-width"))+parseFloat(n.getPropertyValue("border-top-width")),l=be.map(function(e){return"".concat(e,":").concat(n.getPropertyValue(e))}).join(";"),i={sizingStyle:l,paddingSize:o,borderSize:a,boxSizing:r};return t&&c&&(ze[c]=i),i}function Me(e){var t=arguments.length>1&&void 0!==arguments[1]&&arguments[1],c=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null,n=arguments.length>3&&void 0!==arguments[3]?arguments[3]:null;ve||(ve=document.createElement("textarea"),document.body.appendChild(ve)),e.getAttribute("wrap")?ve.setAttribute("wrap",e.getAttribute("wrap")):ve.removeAttribute("wrap");var r=ge(e,t),o=r.paddingSize,a=r.borderSize,l=r.boxSizing,i=r.sizingStyle;ve.setAttribute("style","".concat(i,";").concat(ye)),ve.value=e.value||e.placeholder||"";var u,s=Number.MIN_SAFE_INTEGER,h=Number.MAX_SAFE_INTEGER,f=ve.scrollHeight;if("border-box"===l?f+=a:"content-box"===l&&(f-=o),null!==c||null!==n){ve.value=" ";var p=ve.scrollHeight-o;null!==c&&(s=p*c,"border-box"===l&&(s=s+o+a),f=Math.max(s,f)),null!==n&&(h=p*n,"border-box"===l&&(h=h+o+a),u=f>h?"":"hidden",f=Math.min(h,f))}return{height:f,minHeight:s,maxHeight:h,overflowY:u}}var Ce=c("oHiP");function He(e){"@babel/helpers - typeof";return He="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},He(e)}function Oe(){return Oe=Object.assign||function(e){for(var t=1;t0&&(m=s.map(function(e){return"string"===typeof e?n["createElement"](V,{key:e,prefixCls:f,disabled:r.props.disabled,value:e,checked:r.state.value===e},e):n["createElement"](V,{key:"radio-group-value-options-".concat(e.value),prefixCls:f,disabled:e.disabled||r.props.disabled,value:e.value,checked:r.state.value===e.value},e.label)})),n["createElement"]("div",{className:v,style:o.style,onMouseEnter:o.onMouseEnter,onMouseLeave:o.onMouseLeave,id:o.id},m)},"value"in e)o=e.value;else if("defaultValue"in e)o=e.defaultValue;else{var a=F(e.children);o=a&&a.value}return r.state={value:o},r}return E(c,[{key:"getChildContext",value:function(){return{radioGroup:{onChange:this.onRadioChange,value:this.state.value,disabled:this.props.disabled,name:this.props.name}}}},{key:"shouldComponentUpdate",value:function(e,t){return!u()(this.props,e)||!u()(this.state,t)}},{key:"render",value:function(){return n["createElement"](s["a"],null,this.renderGroup)}}],[{key:"getDerivedStateFromProps",value:function(e){if("value"in e)return{value:e.value};var t=F(e.children);return t?{value:t.value}:null}}]),c}(n["Component"]);D.defaultProps={buttonStyle:"outline"},D.childContextTypes={radioGroup:r["any"]},Object(w["polyfill"])(D);var I=D;function K(e){"@babel/helpers - typeof";return K="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},K(e)}function U(){return U=Object.assign||function(e){for(var t=1;te.length)&&(t=e.length);for(var c=0,n=new Array(t);c0));return n["createElement"](X.Provider,{value:{siderHook:this.getSiderHook()}},n["createElement"](l,A({className:u},i),r))}}]),c}(n["Component"]),ee=Z({suffixCls:"layout",tagName:"section",displayName:"Layout"})($),te=Z({suffixCls:"layout-header",tagName:"header",displayName:"Header"})(J),ce=Z({suffixCls:"layout-footer",tagName:"footer",displayName:"Footer"})(J),ne=Z({suffixCls:"layout-content",tagName:"main",displayName:"Content"})(J);ee.Header=te,ee.Footer=ce,ee.Content=ne;var re=c("CtXQ"),oe=function(e){return!isNaN(parseFloat(e))&&isFinite(e)},ae=oe;function le(e){"@babel/helpers - typeof";return le="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},le(e)}function ie(e,t,c){return t in e?Object.defineProperty(e,t,{value:c,enumerable:!0,configurable:!0,writable:!0}):e[t]=c,e}function ue(){return ue=Object.assign||function(e){for(var t=1;t0&&void 0!==arguments[0]?arguments[0]:"";return e+=1,"".concat(t).concat(e)}}(),Ve=function(e){pe(c,e);var t=me(c);function c(e){var r,o,i;return se(this,c),r=t.call(this,e),r.responsiveHandler=function(e){r.setState({below:e.matches});var t=r.props.onBreakpoint;t&&t(e.matches),r.state.collapsed!==e.matches&&r.setCollapsed(e.matches,"responsive")},r.setCollapsed=function(e,t){"collapsed"in r.props||r.setState({collapsed:e});var c=r.props.onCollapse;c&&c(e,t)},r.toggle=function(){var e=!r.state.collapsed;r.setCollapsed(e,"clickTrigger")},r.belowShowChange=function(){r.setState(function(e){var t=e.belowShow;return{belowShow:!t}})},r.renderSider=function(e){var t,c=e.getPrefixCls,o=r.props,i=o.prefixCls,u=o.className,s=o.theme,h=o.collapsible,f=o.reverseArrow,p=o.trigger,v=o.style,m=o.width,d=o.collapsedWidth,y=o.zeroWidthTriggerStyle,b=ge(o,["prefixCls","className","theme","collapsible","reverseArrow","trigger","style","width","collapsedWidth","zeroWidthTriggerStyle"]),z=c("layout-sider",i),g=Object(l["a"])(b,["collapsed","defaultCollapsed","onCollapse","breakpoint","onBreakpoint","siderHook","zeroWidthTriggerStyle"]),M=r.state.collapsed?d:m,C=ae(M)?"".concat(M,"px"):String(M),H=0===parseFloat(String(d||0))?n["createElement"]("span",{onClick:r.toggle,className:"".concat(z,"-zero-width-trigger ").concat(z,"-zero-width-trigger-").concat(f?"right":"left"),style:y},n["createElement"](re["a"],{type:"bars"})):null,O={expanded:f?n["createElement"](re["a"],{type:"right"}):n["createElement"](re["a"],{type:"left"}),collapsed:f?n["createElement"](re["a"],{type:"left"}):n["createElement"](re["a"],{type:"right"})},V=r.state.collapsed?"collapsed":"expanded",w=O[V],S=null!==p?H||n["createElement"]("div",{className:"".concat(z,"-trigger"),onClick:r.toggle,style:{width:C}},p||w):null,L=ue(ue({},v),{flex:"0 0 ".concat(C),maxWidth:C,minWidth:C,width:C}),k=a()(u,z,"".concat(z,"-").concat(s),(t={},ie(t,"".concat(z,"-collapsed"),!!r.state.collapsed),ie(t,"".concat(z,"-has-trigger"),h&&null!==p&&!H),ie(t,"".concat(z,"-below"),!!r.state.below),ie(t,"".concat(z,"-zero-width"),0===parseFloat(C)),t));return n["createElement"]("aside",ue({className:k},g,{style:L}),n["createElement"]("div",{className:"".concat(z,"-children")},r.props.children),h||r.state.below&&H?S:null)},r.uniqueId=Oe("ant-sider-"),"undefined"!==typeof window&&(o=window.matchMedia),o&&e.breakpoint&&e.breakpoint in Ce&&(r.mql=o("(max-width: ".concat(Ce[e.breakpoint],")"))),i="collapsed"in e?e.collapsed:e.defaultCollapsed,r.state={collapsed:i,below:!1},r}return fe(c,[{key:"componentDidMount",value:function(){this.mql&&(this.mql.addListener(this.responsiveHandler),this.responsiveHandler(this.mql)),this.props.siderHook&&this.props.siderHook.addSider(this.uniqueId)}},{key:"componentWillUnmount",value:function(){this.mql&&this.mql.removeListener(this.responsiveHandler),this.props.siderHook&&this.props.siderHook.removeSider(this.uniqueId)}},{key:"render",value:function(){var e=this.state.collapsed,t=this.props.collapsedWidth;return n["createElement"](He.Provider,{value:{siderCollapsed:e,collapsedWidth:t}},n["createElement"](k["a"],null,this.renderSider))}}],[{key:"getDerivedStateFromProps",value:function(e){return"collapsed"in e?{collapsed:e.collapsed}:null}}]),c}(n["Component"]);Ve.defaultProps={collapsible:!1,defaultCollapsed:!1,reverseArrow:!1,width:200,collapsedWidth:80,style:{},theme:"dark"},Object(i["polyfill"])(Ve);n["Component"];function we(e){"@babel/helpers - typeof";return we="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},we(e)}function Se(){return Se=Object.assign||function(e){for(var t=1;t=0;(t||r)&&o.restoreModeVerticalFromInline()},o.handleClick=function(e){o.handleOpenChange([]);var t=o.props.onClick;t&&t(e)},o.handleOpenChange=function(e){o.setOpenKeys(e);var t=o.props.onOpenChange;t&&t(e)},o.renderMenu=function(e){var t=e.getPopupContainer,c=e.getPrefixCls,i=o.props,u=i.prefixCls,s=i.className,h=i.theme,f=i.collapsedWidth,p=Object(l["a"])(o.props,["collapsedWidth","siderCollapsed"]),v=o.getRealMenuMode(),m=o.getOpenMotionProps(v),d=c("menu",u),y=a()(s,"".concat(d,"-").concat(h),Qe({},"".concat(d,"-inline-collapsed"),o.getInlineCollapsed())),b=Ye({openKeys:o.state.openKeys,onOpenChange:o.handleOpenChange,className:y,mode:v},m);"inline"!==v&&(b.onClick=o.handleClick);var z=o.getInlineCollapsed()&&(0===f||"0"===f||"0px"===f);return z&&(b.openKeys=[]),n["createElement"](r["e"],Ye({getPopupContainer:t},p,b,{prefixCls:d,onTransitionEnd:o.handleTransitionEnd,onMouseEnter:o.handleMouseEnter}))},Object(De["a"])(!("onOpen"in e||"onClose"in e),"Menu","`onOpen` and `onClose` are removed, please use `onOpenChange` instead, see: https://u.ant.design/menu-on-open-change."),Object(De["a"])(!("inlineCollapsed"in e&&"inline"!==e.mode),"Menu","`inlineCollapsed` should only be used when `mode` is inline."),Object(De["a"])(!(void 0!==e.siderCollapsed&&"inlineCollapsed"in e),"Menu","`inlineCollapsed` not control Menu under Sider. Should set `collapsed` on Sider instead."),"openKeys"in e?i=e.openKeys:"defaultOpenKeys"in e&&(i=e.defaultOpenKeys),o.state={openKeys:i||[],switchingModeFromInline:!1,inlineOpenKeys:[],prevProps:e},o}return Je(c,[{key:"componentWillUnmount",value:function(){Ie["a"].cancel(this.mountRafId)}},{key:"setOpenKeys",value:function(e){"openKeys"in this.props||this.setState({openKeys:e})}},{key:"getRealMenuMode",value:function(){var e=this.getInlineCollapsed();if(this.state.switchingModeFromInline&&e)return"inline";var t=this.props.mode;return e?"vertical":t}},{key:"getInlineCollapsed",value:function(){var e=this.props.inlineCollapsed;return void 0!==this.props.siderCollapsed?this.props.siderCollapsed:e}},{key:"getOpenMotionProps",value:function(e){var t=this.props,c=t.openTransitionName,n=t.openAnimation,r=t.motion;return r?{motion:r}:n?(Object(De["a"])("string"===typeof n,"Menu","`openAnimation` do not support object. Please use `motion` instead."),{openAnimation:n}):c?{openTransitionName:c}:"horizontal"===e?{motion:{motionName:"slide-up"}}:"inline"===e?{motion:We}:{motion:{motionName:this.state.switchingModeFromInline?"":"zoom-big"}}}},{key:"restoreModeVerticalFromInline",value:function(){var e=this.state.switchingModeFromInline;e&&this.setState({switchingModeFromInline:!1})}},{key:"render",value:function(){return n["createElement"](p.Provider,{value:{inlineCollapsed:this.getInlineCollapsed()||!1,antdMenuTheme:this.props.theme}},n["createElement"](k["a"],null,this.renderMenu))}}],[{key:"getDerivedStateFromProps",value:function(e,t){var c=t.prevProps,n={prevProps:e};return"inline"===c.mode&&"inline"!==e.mode&&(n.switchingModeFromInline=!0),"openKeys"in e?n.openKeys=e.openKeys:((e.inlineCollapsed&&!c.inlineCollapsed||e.siderCollapsed&&!c.siderCollapsed)&&(n.switchingModeFromInline=!0,n.inlineOpenKeys=t.openKeys,n.openKeys=[]),(!e.inlineCollapsed&&c.inlineCollapsed||!e.siderCollapsed&&c.siderCollapsed)&&(n.openKeys=t.inlineOpenKeys,n.inlineOpenKeys=[])),n}}]),c}(n["Component"]);at.defaultProps={className:"",theme:"light",focusable:!1},Object(i["polyfill"])(at);var lt=function(e){$e(c,e);var t=tt(c);function c(){return Xe(this,c),t.apply(this,arguments)}return Je(c,[{key:"render",value:function(){var e=this;return n["createElement"](He.Consumer,null,function(t){return n["createElement"](at,Ye({},e.props,t))})}}]),c}(n["Component"]);lt.Divider=r["a"],lt.Item=Fe,lt.SubMenu=S,lt.ItemGroup=r["c"]},"CWI+":function(e,t,c){},CWQg:function(e,t,c){"use strict";c.d(t,"a",function(){return n});var n=function(){for(var e=arguments.length,t=new Array(e),c=0;c1&&void 0!==arguments[1]?arguments[1]:C;if(e){var c=this.definitions.get(e);return c&&"function"===typeof c.icon&&(c=s()({},c,{icon:c.icon(t.primaryColor,t.secondaryColor)})),c}}},{key:"setTwoToneColors",value:function(e){var t=e.primaryColor,c=e.secondaryColor;C.primaryColor=t,C.secondaryColor=c||Object(M["c"])(t)}},{key:"getTwoToneColors",value:function(){return s()({},C)}}]),t}(n["Component"]);H.displayName="IconReact",H.definitions=new M["a"];var O=H;function V(){return V=Object.assign||function(e){for(var t=1;t0&&void 0!==arguments[0]?arguments[0]:{},t=e.scriptUrl,c=e.extraCommonProps,r=void 0===c?{}:c;if("undefined"!==typeof document&&"undefined"!==typeof window&&"function"===typeof document.createElement&&"string"===typeof t&&t.length&&!S.has(t)){var o=document.createElement("script");o.setAttribute("src",t),o.setAttribute("data-namespace",t),S.add(t),document.body.appendChild(o)}var a=function(e){var t=e.type,c=e.children,o=w(e,["type","children"]),a=null;return e.type&&(a=n["createElement"]("use",{xlinkHref:"#".concat(t)})),c&&(a=c),n["createElement"]($,V({},r,o),a)};return a.displayName="Iconfont",a}var k=c("6CfX"),x={width:"1em",height:"1em",fill:"currentColor","aria-hidden":!0,focusable:"false"},E=/-fill$/,P=/-o$/,T=/-twotone$/;function j(e){var t=null;return E.test(e)?t="filled":P.test(e)?t="outlined":T.test(e)&&(t="twoTone"),t}function N(e){return e.replace(E,"").replace(P,"").replace(T,"")}function R(e,t){var c=e;return"filled"===t?c+="-fill":"outlined"===t?c+="-o":"twoTone"===t?c+="-twotone":Object(k["a"])(!1,"Icon","This icon '".concat(e,"' has unknown theme '").concat(t,"'")),c}function _(e){var t=e;switch(e){case"cross":t="close";break;case"interation":t="interaction";break;case"canlendar":t="calendar";break;case"colum-height":t="column-height";break;default:}return Object(k["a"])(t===e,"Icon","Icon '".concat(e,"' was a typo and is now deprecated, please use '").concat(t,"' instead.")),t}var A=c("YMnH");function F(e){return O.setTwoToneColors({primaryColor:e})}function D(){var e=O.getTwoToneColors();return e.primaryColor}function I(){return I=Object.assign||function(e){for(var t=1;te.length)&&(t=e.length);for(var c=0,n=new Array(t);cr?o>=a?10+e:20+e:o<=a?10+e:e}},{key:"renderCurrentNumber",value:function(e,t,c){if("number"===typeof t){var r=this.getPositionByNum(t,c),o=this.state.animateStarted||void 0===H(this.lastCount)[c];return n["createElement"]("span",{className:"".concat(e,"-only"),style:{transition:o?"none":void 0,msTransform:"translateY(".concat(100*-r,"%)"),WebkitTransform:"translateY(".concat(100*-r,"%)"),transform:"translateY(".concat(100*-r,"%)")},key:c},O(r,"".concat(e,"-only-unit")))}return n["createElement"]("span",{key:"symbol",className:"".concat(e,"-symbol")},t)}},{key:"renderNumberElement",value:function(e){var t=this,c=this.state.count;return c&&Number(c)%1===0?H(c).map(function(c,n){return t.renderCurrentNumber(e,c,n)}).reverse():c}},{key:"render",value:function(){return n["createElement"](s["a"],null,this.renderScrollNumber)}},{key:"clearTimeout",value:function(e){function t(){return e.apply(this,arguments)}return t.toString=function(){return e.toString()},t}(function(){this.timeout&&(clearTimeout(this.timeout),this.timeout=void 0)})}],[{key:"getDerivedStateFromProps",value:function(e,t){return"count"in e?t.count===e.count?null:{animateStarted:!0}:null}}]),c}(n["Component"]);V.defaultProps={count:null,onAnimated:function(){}},Object(u["polyfill"])(V);var w=V,S=c("09Wf");function L(e){"@babel/helpers - typeof";return L="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},L(e)}function k(){return k=Object.assign||function(e){for(var t=1;tc?"".concat(c,"+"):t;return n}},{key:"getDispayCount",value:function(){var e=this.isDot();return e?"":this.getNumberedDispayCount()}},{key:"getScrollNumberTitle",value:function(){var e=this.props,t=e.title,c=e.count;return t||("string"===typeof c||"number"===typeof c?c:void 0)}},{key:"getStyleWithOffset",value:function(){var e=this.props,t=e.offset,c=e.style;return t?k({right:-parseInt(t[0],10),marginTop:t[1]},c):c}},{key:"getBadgeClassName",value:function(e){var t,c=this.props,n=c.className,r=c.children;return i()(n,e,(t={},x(t,"".concat(e,"-status"),this.hasStatus()),x(t,"".concat(e,"-not-a-wrapper"),!r),t))}},{key:"hasStatus",value:function(){var e=this.props,t=e.status,c=e.color;return!!t||!!c}},{key:"isZero",value:function(){var e=this.getNumberedDispayCount();return"0"===e||0===e}},{key:"isDot",value:function(){var e=this.props.dot,t=this.isZero();return e&&!t||this.hasStatus()}},{key:"isHidden",value:function(){var e=this.props.showZero,t=this.getDispayCount(),c=this.isZero(),n=this.isDot(),r=null===t||void 0===t||""===t;return(r||c&&!e)&&!n}},{key:"renderStatusText",value:function(e){var t=this.props.text,c=this.isHidden();return c||!t?null:n["createElement"]("span",{className:"".concat(e,"-status-text")},t)}},{key:"renderDispayComponent",value:function(){var e=this.props.count,t=e;if(t&&"object"===L(t))return n["cloneElement"](t,{style:k(k({},this.getStyleWithOffset()),t.props&&t.props.style)})}},{key:"renderBadgeNumber",value:function(e,t){var c,r=this.props,o=r.status,a=r.count,l=r.color,u=this.getDispayCount(),s=this.isDot(),h=this.isHidden(),f=i()((c={},x(c,"".concat(e,"-dot"),s),x(c,"".concat(e,"-count"),!s),x(c,"".concat(e,"-multiple-words"),!s&&a&&a.toString&&a.toString().length>1),x(c,"".concat(e,"-status-").concat(o),!!o),x(c,"".concat(e,"-status-").concat(l),K(l)),c)),p=this.getStyleWithOffset();return l&&!K(l)&&(p=p||{},p.background=l),h?null:n["createElement"](w,{prefixCls:t,"data-show":!h,className:f,count:u,displayComponent:this.renderDispayComponent(),title:this.getScrollNumberTitle(),style:p,key:"scrollNumber"})}},{key:"render",value:function(){return n["createElement"](s["a"],null,this.renderBadge)}}]),c}(n["Component"]);U.defaultProps={count:null,showZero:!1,dot:!1,overflowCount:99},U.propTypes={count:r["node"],showZero:r["bool"],dot:r["bool"],overflowCount:r["number"]}},Mwp2:function(e,t,c){"use strict";c("cIOH"),c("3wW7"),c("R9oj"),c("T2oS"),c("DjyN"),c("1GLa")},NUBc:function(e,t,c){"use strict";var n=c("q1tI"),r=c("6+eU"),o=c("H4fg"),a=c("TSYQ"),l=c.n(a),i=c("2fM7");function u(e){"@babel/helpers - typeof";return u="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},u(e)}function s(){return s=Object.assign||function(e){for(var t=1;t0?"-".concat(p):p,g=o()(v,b,"".concat(b,"-").concat(h),(c={},i(c,"".concat(b,"-with-text").concat(z),m),i(c,"".concat(b,"-dashed"),!!d),c));return n["createElement"]("div",l({className:g},y,{role:"separator"}),m&&n["createElement"]("span",{className:"".concat(b,"-inner-text")},m))})};t["a"]=s},PQMj:function(e,t,c){},Pwec:function(e,t,c){"use strict";c("cIOH"),c("WtSK")},R9oj:function(e,t,c){"use strict";c("cIOH"),c("pwpV")},RlXo:function(e,t,c){"use strict";var n={placeholder:"Select time"};t["a"]=n},Sdc0:function(e,t,c){"use strict";c.d(t,"a",function(){return S});var n=c("q1tI"),r=c("17x9"),o=c("XIdC"),a=c.n(o),l=c("TSYQ"),i=c.n(l),u=c("BGR+"),s=c("g0mS"),h=c("CtXQ"),f=c("H84U"),p=c("6CfX");function v(e){"@babel/helpers - typeof";return v="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},v(e)}function m(){return m=Object.assign||function(e){for(var t=1;t1&&void 0!==arguments[1]?arguments[1]:h,n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:f;switch(e){case"topLeft":t={left:0,top:c,bottom:"auto"};break;case"topRight":t={right:0,top:c,bottom:"auto"};break;case"bottomLeft":t={left:0,top:"auto",bottom:n};break;default:t={right:0,top:"auto",bottom:n};break}return t}function d(e,t){var c=e.prefixCls,a=e.placement,s=void 0===a?p:a,h=e.getContainer,f=void 0===h?l:h,v=e.top,d=e.bottom,y=e.closeIcon,b=void 0===y?i:y,z="".concat(c,"-").concat(s);if(u[z])t(u[z]);else{var g=n["createElement"]("span",{className:"".concat(c,"-close-x")},b||n["createElement"](o["a"],{className:"".concat(c,"-close-icon"),type:"close"}));r["a"].newInstance({prefixCls:c,className:"".concat(c,"-").concat(s),style:m(s,v,d),getContainer:f,closeIcon:g},function(e){u[z]=e,t(e)})}}var y={success:"check-circle-o",info:"info-circle-o",error:"close-circle-o",warning:"exclamation-circle-o"};function b(e){var t=e.prefixCls||"ant-notification",c="".concat(t,"-notice"),r=void 0===e.duration?s:e.duration,a=null;if(e.icon)a=n["createElement"]("span",{className:"".concat(c,"-icon")},e.icon);else if(e.type){var l=y[e.type];a=n["createElement"](o["a"],{className:"".concat(c,"-icon ").concat(c,"-icon-").concat(e.type),type:l})}var i=!e.description&&a?n["createElement"]("span",{className:"".concat(c,"-message-single-line-auto-margin")}):null,u=e.placement,h=e.top,f=e.bottom,p=e.getContainer,v=e.closeIcon;d({prefixCls:t,placement:u,top:h,bottom:f,getContainer:p,closeIcon:v},function(t){t.notice({content:n["createElement"]("div",{className:a?"".concat(c,"-with-icon"):""},a,n["createElement"]("div",{className:"".concat(c,"-message")},i,e.message),n["createElement"]("div",{className:"".concat(c,"-description")},e.description),e.btn?n["createElement"]("span",{className:"".concat(c,"-btn")},e.btn):null),duration:r,closable:!0,onClose:e.onClose,onClick:e.onClick,key:e.key,style:e.style||{},className:e.className})})}var z={open:b,close:function(e){Object.keys(u).forEach(function(t){return u[t].removeNotice(e)})},config:v,destroy:function(){Object.keys(u).forEach(function(e){u[e].destroy(),delete u[e]})}};["success","info","warning","error"].forEach(function(e){z[e]=function(t){return z.open(a(a({},t),{type:e}))}}),z.warn=z.warning,t["a"]=z},Urep:function(e,t,c){},VXEj:function(e,t,c){"use strict";var n=c("q1tI"),r=c("17x9"),o=c("TSYQ"),a=c.n(o),l=c("BGR+"),i=c("W9HT"),u=c("H84U"),s=c("NUBc"),h=c("qrJ5"),f=c("/kpp");function p(e){if(!n["isValidElement"](e))return e;for(var t=arguments.length,c=new Array(t>1?t-1:0),r=1;r0&&n["createElement"]("ul",{className:"".concat(b,"-item-action"),key:"actions"},h.map(function(e,t){return n["createElement"]("li",{key:"".concat(b,"-item-action-").concat(t)},e,t!==h.length-1&&n["createElement"]("em",{className:"".concat(b,"-item-action-split")}))})),g=o?"div":"li",M=n["createElement"](g,w({},y,{className:a()("".concat(b,"-item"),d,m({},"".concat(b,"-item-no-flex"),!e.isFlexMode()))}),"vertical"===l&&v?[n["createElement"]("div",{className:"".concat(b,"-item-main"),key:"content"},s,z),n["createElement"]("div",{className:"".concat(b,"-item-extra"),key:"extra"},v)]:[s,z,p(v,{key:"extra"})]);return o?n["createElement"](f["a"],{span:k(o,"column"),xs:k(o,"xs"),sm:k(o,"sm"),md:k(o,"md"),lg:k(o,"lg"),xl:k(o,"xl"),xxl:k(o,"xxl")},M):M},e}return b(c,[{key:"isItemContainsTextNodeAndNotSingular",value:function(){var e,t=this.props.children;return n["Children"].forEach(t,function(t){"string"===typeof t&&(e=!0)}),e&&n["Children"].count(t)>1}},{key:"isFlexMode",value:function(){var e=this.props.extra,t=this.context.itemLayout;return"vertical"===t?!!e:!this.isItemContainsTextNodeAndNotSingular()}},{key:"render",value:function(){return n["createElement"](u["a"],null,this.renderItem)}}]),c}(n["Component"]);function E(e){"@babel/helpers - typeof";return E="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},E(e)}function P(e){return R(e)||N(e)||j(e)||T()}function T(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function j(e,t){if(e){if("string"===typeof e)return _(e,t);var c=Object.prototype.toString.call(e).slice(8,-1);return"Object"===c&&e.constructor&&(c=e.constructor.name),"Map"===c||"Set"===c?Array.from(e):"Arguments"===c||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(c)?_(e,t):void 0}}function N(e){if("undefined"!==typeof Symbol&&Symbol.iterator in Object(e))return Array.from(e)}function R(e){if(Array.isArray(e))return _(e)}function _(e,t){(null==t||t>e.length)&&(t=e.length);for(var c=0,n=new Array(t);cD&&(_.current=D);var I,K=C?n["createElement"]("div",{className:"".concat(E,"-pagination")},n["createElement"](s["a"],A({},_,{onChange:r.onPaginationChange,onShowSizeChange:r.onPaginationShowSizeChange}))):null,U=P(V);if(C&&V.length>(_.current-1)*_.pageSize&&(U=P(V).splice((_.current-1)*_.pageSize,_.pageSize)),I=j&&n["createElement"]("div",{style:{minHeight:53}}),U.length>0){var B=U.map(function(e,t){return r.renderItem(e,t)}),q=[];n["Children"].forEach(B,function(e,t){q.push(n["cloneElement"](e,{key:r.keys[t]}))}),I=H?n["createElement"](h["a"],{gutter:H.gutter},q):n["createElement"]("ul",{className:"".concat(E,"-items")},q)}else z||j||(I=r.renderEmpty(E,o));var W=_.position||"bottom";return n["createElement"]("div",A({className:R},Object(l["a"])(x,["rowKey","renderItem","locale"])),("top"===W||"both"===W)&&K,S&&n["createElement"]("div",{className:"".concat(E,"-header")},S),n["createElement"](i["a"],T,I,z),L&&n["createElement"]("div",{className:"".concat(E,"-footer")},L),M||("bottom"===W||"both"===W)&&K)};var o=e.pagination,u=o&&"object"===E(o)?o:{};return r.state={paginationCurrent:u.defaultCurrent||1,paginationSize:u.defaultPageSize||10},r}return K(c,[{key:"getChildContext",value:function(){return{grid:this.props.grid,itemLayout:this.props.itemLayout}}},{key:"triggerPaginationEvent",value:function(e){var t=this;return function(c,n){var r=t.props.pagination;t.setState({paginationCurrent:c,paginationSize:n}),r&&r[e]&&r[e](c,n)}}},{key:"isSomethingAfterLastItem",value:function(){var e=this.props,t=e.loadMore,c=e.pagination,n=e.footer;return!!(t||c||n)}},{key:"render",value:function(){return n["createElement"](u["a"],null,this.renderList)}}]),c}(n["Component"]);Z.Item=x,Z.childContextTypes={grid:r["any"],itemLayout:r["string"]},Z.defaultProps={dataSource:[],bordered:!1,split:!0,loading:!1,pagination:!1}},W9HT:function(e,t,c){"use strict";var n=c("q1tI"),r=c("17x9"),o=c("TSYQ"),a=c.n(o),l=c("BGR+"),i=c("sEfC"),u=c.n(i),s=c("H84U"),h=c("CWQg");function f(e){"@babel/helpers - typeof";return f="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},f(e)}function p(){return p=Object.assign||function(e){for(var t=1;t=e.length?{done:!0}:{done:!1,value:e[n++]}}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function L(e,t){if(e){if("string"===typeof e)return k(e,t);var c=Object.prototype.toString.call(e).slice(8,-1);return"Object"===c&&e.constructor&&(c=e.constructor.name),"Map"===c||"Set"===c?Array.from(e):"Arguments"===c||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(c)?k(e,t):void 0}}function k(e,t){(null==t||t>e.length)&&(t=e.length);for(var c=0,n=new Array(t);c0)for(var l,i=S(c);!(l=i()).done;){var u=l.value;if("undefined"!==typeof a[u]&&!a[u])return!1}else if(a.metaKey||a.ctrlKey||a.shiftKey||a.altKey)return!1;return a.key?a.key===r:a.keyCode===n}function T(e,t){var c=e.split("\n"),n=e.substr(0,t).split("\n"),r=n.length,o=n[n.length-1].length,a=c[n.length-1],l=n.length>1?n[n.length-2]:null,i=c.length>n.length?c[n.length]:null;return{line:r,col:o,beforeText:e.substr(0,t),afterText:e.substr(t),curLine:a,prevLine:l,nextLine:i}}for(var j={bold:["**","**"],italic:["*","*"],underline:["++","++"],strikethrough:["~~","~~"],quote:["\n> ","\n"],inlinecode:["`","`"],code:["\n```\n","\n```\n"]},N=1;N<=6;N++)j["h"+N]=["\n"+E("#",N)+" ","\n"];function R(e){for(var t=e.row,c=void 0===t?2:t,n=e.col,r=void 0===n?2:n,o=["|"],a=["|"],l=["|"],i="",u=1;u<=r;u++)o.push(" Head |"),l.push(" --- |"),a.push(" Data |");for(var s=1;s<=c;s++)i+="\n"+a.join("");return o.join("")+"\n"+l.join("")+i}function _(e,t){var c=t;if("\n"!==c.substr(0,1)&&(c="\n"+c),"unordered"===e)return c.length>1?c.replace(/\n/g,"\n* ").trim():"* ";var n=1;return c.length>1?c.replace(/\n/g,function(){return"\n"+n+++". "}).trim():"1. "}function A(e,t){return{text:e,newBlock:t,selection:{start:e.length,end:e.length}}}function F(e,t,c){if("undefined"!==typeof j[t])return{text:""+j[t][0]+e+j[t][1],selection:{start:j[t][0].length,end:j[t][0].length+e.length}};switch(t){case"tab":var n=1===c.tabMapValue?"\t":" ".repeat(c.tabMapValue),r=n+e.replace(/\n/g,"\n"+n),o=e.includes("\n")?e.match(/\n/g).length:0;return{text:r,selection:{start:c.tabMapValue,end:c.tabMapValue*(o+1)+e.length}};case"unordered":return A(_("unordered",e),!0);case"order":return A(_("order",e),!0);case"hr":return A("---",!0);case"table":return{text:R(c),newBlock:!0};case"image":return{text:"!["+(e||c.target)+"]("+(c.imageUrl||"")+")",selection:{start:2,end:e.length+2}};case"link":return{text:"["+e+"]("+(c.linkUrl||"")+")",selection:{start:1,end:e.length+1}}}return{text:e,selection:{start:0,end:e.length}}}var D=F;function I(e,t){var c={};return Object.keys(e).forEach(function(n){"undefined"!==typeof t[n]?"object"!==typeof t[n]?c[n]=t[n]:Array.isArray(t[n])?c[n]=[].concat(t[n]):c[n]=I(e[n],t[n]):c[n]=e[n]}),c}var K=function(e){for(var t=r()({},e),c=arguments.length,n=new Array(c>1?c-1:0),o=1;o=e.length?{done:!0}:{done:!1,value:e[n++]}}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function Z(e,t){if(e){if("string"===typeof e)return J(e,t);var c=Object.prototype.toString.call(e).slice(8,-1);return"Object"===c&&e.constructor&&(c=e.constructor.name),"Map"===c||"Set"===c?Array.from(e):"Arguments"===c||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(c)?J(e,t):void 0}}function J(e,t){(null==t||t>e.length)&&(t=e.length);for(var c=0,n=new Array(t);c0&&h.length>0&&(l="\n"+l,i&&(i.start++,i.end++));var f=u.afterText;c.start!==c.end&&(f=T(this.getMdValue(),c.end).afterText),""!==f.trim()&&"\n\n"!==f.substr(0,2)&&("\n"!==f.substr(0,1)&&(l+="\n"),l+="\n")}this.insertText(l,!0,i)},c.insertPlaceholder=function(e,t){var c=this;this.insertText(e,!0),t.then(function(t){var n=c.getMdValue().replace(e,t);c.setText(n)})},c.insertText=function(e,t,c){void 0===e&&(e=""),void 0===t&&(t=!1);var n=this.state.text,r=this.getSelection(),o=n.slice(0,r.start),a=n.slice(t?r.end:r.start,n.length);this.setText(o+e+a,void 0,c?{start:c.start+o.length,end:c.end+o.length}:{start:r.start,end:r.start})},c.setText=function(e,t,c){var n=this;void 0===e&&(e="");var r=this.config.onChangeTrigger,o=void 0===r?"both":r,a=e.replace(/\u21b5/g,"\n");if(this.state.text!==e){this.setState({text:a}),!this.props.onChange||"both"!==o&&"beforeRender"!==o||this.props.onChange({text:a,html:this.getHtmlValue()},t),this.emitter.emit(this.emitter.EVENT_CHANGE,e,t,"undefined"===typeof t),c&&setTimeout(function(){return n.setSelection(c)}),this.hasContentChanged||(this.hasContentChanged=!0);var l=this.renderHTML(a);"both"!==o&&"afterRender"!==o||l.then(function(){n.props.onChange&&n.props.onChange({text:n.state.text,html:n.getHtmlValue()},t)})}},c.getMdValue=function(){return this.state.text},c.getHtmlValue=function(){return"string"===typeof this.state.html?this.state.html:this.nodeMdPreview.current?this.nodeMdPreview.current.getHtml():""},c.onKeyboard=function(e){var t=this;Array.isArray(e)?e.forEach(function(e){return t.onKeyboard(e)}):this.keyboardListeners.includes(e)||this.keyboardListeners.push(e)},c.offKeyboard=function(e){var t=this;if(Array.isArray(e))e.forEach(function(e){return t.offKeyboard(e)});else{var c=this.keyboardListeners.indexOf(e);c>=0&&this.keyboardListeners.splice(c,1)}},c.handleKeyDown=function(e){for(var t,c=X(this.keyboardListeners);!(t=c()).done;){var n=t.value;if(P(e,n))return e.preventDefault(),void n.callback(e)}this.emitter.emit(this.emitter.EVENT_KEY_DOWN,e)},c.getEventType=function(e){switch(e){case"change":return this.emitter.EVENT_CHANGE;case"fullscreen":return this.emitter.EVENT_FULL_SCREEN;case"viewchange":return this.emitter.EVENT_VIEW_CHANGE;case"keydown":return this.emitter.EVENT_KEY_DOWN;case"blur":return this.emitter.EVENT_BLUR;case"focus":return this.emitter.EVENT_FOCUS;case"scroll":return this.emitter.EVENT_SCROLL}},c.on=function(e,t){var c=this.getEventType(e);c&&this.emitter.on(c,t)},c.off=function(e,t){var c=this.getEventType(e);c&&this.emitter.off(c,t)},c.setView=function(e){var t=this,c=r()({},this.state.view,e);this.setState({view:c},function(){t.emitter.emit(t.emitter.EVENT_VIEW_CHANGE,c)})},c.getView=function(){return r()({},this.state.view)},c.fullScreen=function(e){var t=this;this.state.fullScreen!==e&&this.setState({fullScreen:e},function(){t.emitter.emit(t.emitter.EVENT_FULL_SCREEN,e)})},c.isFullScreen=function(){return this.state.fullScreen},c.uploadWithDataTransfer=function(e){var t=this,c=this.config.onImageUpload;if(c){var n=[];Array.prototype.forEach.call(e,function(e){if("file"===e.kind&&e.type.includes("image")){var r=e.getAsFile();if(r){var o=q(r,c);n.push(Promise.resolve(o.placeholder)),o.uploaded.then(function(e){var c=t.getMdValue().replace(o.placeholder,e),n=e.length-o.placeholder.length,r=t.getSelection();t.setText(c,void 0,{start:r.start+n,end:r.start+n})})}}else"string"===e.kind&&"text/plain"===e.type&&n.push(new Promise(function(t){return e.getAsString(t)}))}),Promise.all(n).then(function(e){var c=e.join(""),n=t.getSelection();t.insertText(c,!0,{start:n.start===n.end?c.length:0,end:c.length})})}},c.render=function(){var e=this,t=this.state,c=t.view,n=t.fullScreen,r=t.text,o=t.html,a=this.props,l=a.id,i=a.className,p=void 0===i?"":i,v=a.style,m=a.name,d=void 0===m?"textarea":m,y=a.autoFocus,b=a.placeholder,z=a.readOnly,g=this.config.canView&&this.config.canView.hideMenu&&!this.config.canView.menu,M=function(t){return e.state.plugins[t]||[]},C=!!c.menu,H=l?l+"_md":void 0,O=l?l+"_html":void 0;return u["createElement"]("div",{id:l,className:"rc-md-editor "+(n?"full":"")+" "+p,style:v,onKeyDown:this.handleKeyDown,onDrop:this.handleDrop},u["createElement"](h,{visible:C,left:M("left"),right:M("right")}),u["createElement"]("div",{className:"editor-container"},g&&u["createElement"](f,null,u["createElement"]("span",{className:"button button-type-menu",title:C?"hidden menu":"show menu",onClick:this.handleToggleMenu},u["createElement"](s,{type:"expand-"+(C?"less":"more")}))),u["createElement"]("section",{className:"section sec-md "+(c.md?"visible":"in-visible")},u["createElement"]("textarea",{id:H,ref:this.nodeMdText,name:d,autoFocus:y,placeholder:b,readOnly:z,value:r,className:"section-container input "+(this.config.markdownClass||""),wrap:"hard",onChange:this.handleChange,onScroll:this.handleInputScroll,onMouseOver:function(){return e.shouldSyncScroll="md"},onKeyDown:this.handleEditorKeyDown,onCompositionStart:function(){return e.composing=!0},onCompositionEnd:function(){return e.composing=!1},onPaste:this.handlePaste,onFocus:this.handleFocus,onBlur:this.handleBlur})),u["createElement"]("section",{className:"section sec-html "+(c.html?"visible":"in-visible")},u["createElement"]("div",{id:O,className:"section-container html-wrap",ref:this.nodeMdPreviewWrapper,onMouseOver:function(){return e.shouldSyncScroll="html"},onScroll:this.handlePreviewScroll},u["createElement"](Q,{html:o,className:this.config.htmlClass,ref:this.nodeMdPreview})))))},t}(u["Component"]);$.plugins=[],$.addLocale=M.add.bind(M),$.useLocale=M.setCurrent.bind(M),$.getLocale=M.getCurrent.bind(M);var ee=$,te=function(e){function t(t){var c;return c=e.call(this,t)||this,c.timer=null,c.useTimer=c.getConfig("useTimer")||"undefined"===typeof requestAnimationFrame,c.handleChange=c.handleChange.bind(a()(c)),c.doResize=c.doResize.bind(a()(c)),c}i()(t,e);var c=t.prototype;return c.doResize=function(){var e=this,t=function(t){t.style.height="auto";var c=Math.min(Math.max(e.getConfig("min"),t.scrollHeight),e.getConfig("max"));return t.style.height=c+"px",c};this.timer=null;var c=this.editor.getView(),n=this.editor.getMdElement(),r=this.editor.getHtmlElement();if(n&&c.md){var o=t(n);r&&(r.style.height=o+"px")}else r&&c.html&&t(r)},c.handleChange=function(){null===this.timer&&(this.useTimer?this.timer=window.setTimeout(this.doResize):this.timer=requestAnimationFrame(this.doResize))},c.componentDidMount=function(){this.editor.on("change",this.handleChange),this.editor.on("viewchange",this.handleChange),this.handleChange()},c.componentWillUnmount=function(){this.editor.off("change",this.handleChange),this.editor.off("viewchange",this.handleChange),null!==this.timer&&this.useTimer&&(window.clearTimeout(this.timer),this.timer=null)},c.render=function(){return u["createElement"]("span",null)},t}(O);te.pluginName="auto-resize",te.align="left",te.defaultConfig={min:200,max:1/0,useTimer:!1};var ce=function(e){function t(){return e.apply(this,arguments)||this}i()(t,e);var c=t.prototype;return c.render=function(){var e=this;return u["createElement"]("span",{className:"button button-type-code-block",title:M.get("btnCode"),onClick:function(){return e.editor.insertMarkdown("code")}},u["createElement"](s,{type:"code-block"}))},t}(O);ce.pluginName="block-code-block";var ne=function(e){function t(){return e.apply(this,arguments)||this}i()(t,e);var c=t.prototype;return c.render=function(){var e=this;return u["createElement"]("span",{className:"button button-type-code-inline",title:M.get("btnInlineCode"),onClick:function(){return e.editor.insertMarkdown("inlinecode")}},u["createElement"](s,{type:"code"}))},t}(O);ne.pluginName="block-code-inline";var re=function(e){function t(){return e.apply(this,arguments)||this}i()(t,e);var c=t.prototype;return c.render=function(){var e=this;return u["createElement"]("span",{className:"button button-type-quote",title:M.get("btnQuote"),onClick:function(){return e.editor.insertMarkdown("quote")}},u["createElement"](s,{type:"quote"}))},t}(O);re.pluginName="block-quote";var oe=function(e){function t(){return e.apply(this,arguments)||this}i()(t,e);var c=t.prototype;return c.render=function(){var e=this;return u["createElement"]("span",{className:"button button-type-wrap",title:M.get("btnLineBreak"),onClick:function(){return e.editor.insertMarkdown("hr")}},u["createElement"](s,{type:"wrap"}))},t}(O);oe.pluginName="block-wrap";var ae=function(e){function t(t){var c;return c=e.call(this,t)||this,c.handleClick=c.handleClick.bind(a()(c)),c}i()(t,e);var c=t.prototype;return c.handleClick=function(){if(""!==this.editor.getMdValue()&&window.confirm&&"function"===typeof window.confirm){var e=window.confirm(M.get("clearTip"));e&&this.editor.setText("")}},c.render=function(){return u["createElement"]("span",{className:"button button-type-clear",title:M.get("btnClear"),onClick:this.handleClick},u["createElement"](s,{type:"delete"}))},t}(O);ae.pluginName="clear";var le=function(e){function t(t){var c;return c=e.call(this,t)||this,c.handleKeyboard={key:"b",keyCode:66,aliasCommand:!0,withKey:["ctrlKey"],callback:function(){return c.editor.insertMarkdown("bold")}},c}i()(t,e);var c=t.prototype;return c.componentDidMount=function(){this.editorConfig.shortcuts&&this.editor.onKeyboard(this.handleKeyboard)},c.componentWillUnmount=function(){this.editor.offKeyboard(this.handleKeyboard)},c.render=function(){var e=this;return u["createElement"]("span",{className:"button button-type-bold",title:M.get("btnBold"),onClick:function(){return e.editor.insertMarkdown("bold")}},u["createElement"](s,{type:"bold"}))},t}(O);le.pluginName="font-bold";var ie=function(e){function t(t){var c;return c=e.call(this,t)||this,c.handleKeyboard={key:"i",keyCode:73,aliasCommand:!0,withKey:["ctrlKey"],callback:function(){return c.editor.insertMarkdown("italic")}},c}i()(t,e);var c=t.prototype;return c.componentDidMount=function(){this.editorConfig.shortcuts&&this.editor.onKeyboard(this.handleKeyboard)},c.componentWillUnmount=function(){this.editor.offKeyboard(this.handleKeyboard)},c.render=function(){var e=this;return u["createElement"]("span",{className:"button button-type-italic",title:M.get("btnItalic"),onClick:function(){return e.editor.insertMarkdown("italic")}},u["createElement"](s,{type:"italic"}))},t}(O);ie.pluginName="font-italic";var ue=function(e){function t(t){var c;return c=e.call(this,t)||this,c.handleKeyboard={key:"d",keyCode:68,aliasCommand:!0,withKey:["ctrlKey"],callback:function(){return c.editor.insertMarkdown("strikethrough")}},c}i()(t,e);var c=t.prototype;return c.componentDidMount=function(){this.editorConfig.shortcuts&&this.editor.onKeyboard(this.handleKeyboard)},c.componentWillUnmount=function(){this.editor.offKeyboard(this.handleKeyboard)},c.render=function(){var e=this;return u["createElement"]("span",{className:"button button-type-strikethrough",title:M.get("btnStrikethrough"),onClick:function(){return e.editor.insertMarkdown("strikethrough")}},u["createElement"](s,{type:"strikethrough"}))},t}(O);ue.pluginName="font-strikethrough";var se=function(e){function t(t){var c;return c=e.call(this,t)||this,c.handleKeyboard={key:"u",keyCode:85,withKey:["ctrlKey"],callback:function(){return c.editor.insertMarkdown("underline")}},c}i()(t,e);var c=t.prototype;return c.componentDidMount=function(){this.editorConfig.shortcuts&&this.editor.onKeyboard(this.handleKeyboard)},c.componentWillUnmount=function(){this.editor.offKeyboard(this.handleKeyboard)},c.render=function(){var e=this;return u["createElement"]("span",{className:"button button-type-underline",title:M.get("btnUnderline"),onClick:function(){return e.editor.insertMarkdown("underline")}},u["createElement"](s,{type:"underline"}))},t}(O);se.pluginName="font-underline";var he=function(e){function t(t){var c;return c=e.call(this,t)||this,c.handleClick=c.handleClick.bind(a()(c)),c.handleChange=c.handleChange.bind(a()(c)),c.state={enable:c.editor.isFullScreen()},c}i()(t,e);var c=t.prototype;return c.handleClick=function(){this.editor.fullScreen(!this.state.enable)},c.handleChange=function(e){this.setState({enable:e})},c.componentDidMount=function(){this.editor.on("fullscreen",this.handleChange)},c.componentWillUnmount=function(){this.editor.off("fullscreen",this.handleChange)},c.render=function(){if(this.editorConfig.canView&&this.editorConfig.canView.fullScreen){var e=this.state.enable;return u["createElement"]("span",{className:"button button-type-fullscreen",title:M.get(e?"btnExitFullScreen":"btnFullScreen"),onClick:this.handleClick},u["createElement"](s,{type:e?"fullscreen-exit":"fullscreen"}))}return null},t}(O);he.pluginName="full-screen",he.align="right";var fe=function(e){function t(t){var c;return c=e.call(this,t)||this,c.handleClose=c.handleClose.bind(a()(c)),c}i()(t,e);var c=t.prototype;return c.handleClose=function(e){e.stopPropagation();var t=this.props.onClose;"function"===typeof t&&t()},c.render=function(){return u["createElement"]("div",{className:"drop-wrap "+(this.props.show?"show":"hidden"),onClick:this.handleClose},this.props.children)},t}(u["Component"]),pe=fe,ve=function(e){function t(){return e.apply(this,arguments)||this}i()(t,e);var c=t.prototype;return c.handleHeader=function(e){var t=this.props.onSelectHeader;"function"===typeof t&&t(e)},c.render=function(){return u["createElement"]("ul",{className:"header-list"},u["createElement"]("li",{className:"list-item"},u["createElement"]("h1",{onClick:this.handleHeader.bind(this,"h1")},"H1")),u["createElement"]("li",{className:"list-item"},u["createElement"]("h2",{onClick:this.handleHeader.bind(this,"h2")},"H2")),u["createElement"]("li",{className:"list-item"},u["createElement"]("h3",{onClick:this.handleHeader.bind(this,"h3")},"H3")),u["createElement"]("li",{className:"list-item"},u["createElement"]("h4",{onClick:this.handleHeader.bind(this,"h4")},"H4")),u["createElement"]("li",{className:"list-item"},u["createElement"]("h5",{onClick:this.handleHeader.bind(this,"h5")},"H5")),u["createElement"]("li",{className:"list-item"},u["createElement"]("h6",{onClick:this.handleHeader.bind(this,"h6")},"H6")))},t}(u["Component"]),me=ve,de=function(e){function t(t){var c;return c=e.call(this,t)||this,c.show=c.show.bind(a()(c)),c.hide=c.hide.bind(a()(c)),c.state={show:!1},c}i()(t,e);var c=t.prototype;return c.show=function(){this.setState({show:!0})},c.hide=function(){this.setState({show:!1})},c.render=function(){var e=this;return u["createElement"]("span",{className:"button button-type-header",title:M.get("btnHeader"),onMouseEnter:this.show,onMouseLeave:this.hide},u["createElement"](s,{type:"font-size"}),u["createElement"](pe,{show:this.state.show,onClose:this.hide},u["createElement"](me,{onSelectHeader:function(t){return e.editor.insertMarkdown(t)}})))},t}(O);de.pluginName="header";var ye=function(e){function t(t){var c;return c=e.call(this,t)||this,c.timerId=void 0,c.locked=!1,c.input=u["createRef"](),c}i()(t,e);var c=t.prototype;return c.click=function(){var e=this;!this.locked&&this.input.current&&(this.locked=!0,this.input.current.value="",this.input.current.click(),this.timerId&&window.clearTimeout(this.timerId),this.timerId=window.setTimeout(function(){e.locked=!1,window.clearTimeout(e.timerId),e.timerId=void 0},200))},c.componentWillUnmount=function(){this.timerId&&window.clearTimeout(this.timerId)},c.render=function(){return u["createElement"]("input",{type:"file",ref:this.input,accept:this.props.accept,style:{position:"absolute",zIndex:-1,left:0,top:0,width:0,height:0,opacity:0},onChange:this.props.onChange})},t}(u["Component"]),be=ye,ze=function(e){function t(t){var c;return c=e.call(this,t)||this,c.inputFile=u["createRef"](),c.onImageChanged=c.onImageChanged.bind(a()(c)),c.handleCustomImageUpload=c.handleCustomImageUpload.bind(a()(c)),c.handleImageUpload=c.handleImageUpload.bind(a()(c)),c.state={show:!1},c}i()(t,e);var c=t.prototype;return c.handleImageUpload=function(){var e=this.editorConfig.onImageUpload;"function"===typeof e?this.inputFile.current&&this.inputFile.current.click():this.editor.insertMarkdown("image")},c.onImageChanged=function(e){var t=this.editorConfig.onImageUpload;if(t){var c=q(e,t);this.editor.insertPlaceholder(c.placeholder,c.uploaded)}},c.handleCustomImageUpload=function(e){var t=this,c=this.editorConfig.onCustomImageUpload;if(c){var n=c.call(this,e);x(n)&&n.then(function(e){e&&e.url&&t.editor.insertMarkdown("image",{target:e.text,imageUrl:e.url})})}},c.render=function(){var e=this,t=!!this.editorConfig.onCustomImageUpload;return t?u["createElement"]("span",{className:"button button-type-image",title:M.get("btnImage"),onClick:this.handleCustomImageUpload},u["createElement"](s,{type:"image"})):u["createElement"]("span",{className:"button button-type-image",title:M.get("btnImage"),onClick:this.handleImageUpload,style:{position:"relative"}},u["createElement"](s,{type:"image"}),u["createElement"](be,{accept:this.editorConfig.imageAccept||"",ref:this.inputFile,onChange:function(t){t.persist(),t.target.files&&t.target.files.length>0&&e.onImageChanged(t.target.files[0])}}))},t}(O);ze.pluginName="image";var ge=function(e){function t(t){var c;return c=e.call(this,t)||this,c.handleKeyboard={key:"k",keyCode:75,aliasCommand:!0,withKey:["ctrlKey"],callback:function(){return c.editor.insertMarkdown("link")}},c}i()(t,e);var c=t.prototype;return c.componentDidMount=function(){this.editorConfig.shortcuts&&this.editor.onKeyboard(this.handleKeyboard)},c.componentWillUnmount=function(){this.editor.offKeyboard(this.handleKeyboard)},c.render=function(){var e=this;return u["createElement"]("span",{className:"button button-type-link",title:M.get("btnLink"),onClick:function(){return e.editor.insertMarkdown("link")}},u["createElement"](s,{type:"link"}))},t}(O);ge.pluginName="link";var Me=function(e){function t(t){var c;return c=e.call(this,t)||this,c.handleKeyboard={key:"7",keyCode:55,withKey:["ctrlKey","shiftKey"],aliasCommand:!0,callback:function(){return c.editor.insertMarkdown("order")}},c}i()(t,e);var c=t.prototype;return c.componentDidMount=function(){this.editorConfig.shortcuts&&this.editor.onKeyboard(this.handleKeyboard)},c.componentWillUnmount=function(){this.editor.offKeyboard(this.handleKeyboard)},c.render=function(){var e=this;return u["createElement"]("span",{className:"button button-type-ordered",title:M.get("btnOrdered"),onClick:function(){return e.editor.insertMarkdown("order")}},u["createElement"](s,{type:"list-ordered"}))},t}(O);Me.pluginName="list-ordered";var Ce=function(e){function t(t){var c;return c=e.call(this,t)||this,c.handleKeyboard={key:"8",keyCode:56,withKey:["ctrlKey","shiftKey"],aliasCommand:!0,callback:function(){return c.editor.insertMarkdown("unordered")}},c}i()(t,e);var c=t.prototype;return c.componentDidMount=function(){this.editorConfig.shortcuts&&this.editor.onKeyboard(this.handleKeyboard)},c.componentWillUnmount=function(){this.editor.offKeyboard(this.handleKeyboard)},c.render=function(){var e=this;return u["createElement"]("span",{className:"button button-type-unordered",title:M.get("btnUnordered"),onClick:function(){return e.editor.insertMarkdown("unordered")}},u["createElement"](s,{type:"list-unordered"}))},t}(O);Ce.pluginName="list-unordered";var He,Oe=100,Ve=function(){function e(){this.record=[],this.recycle=[],this.initValue=""}var t=e.prototype;return t.push=function(e){var t=this.record.push(e);while(this.record.length>Oe)this.record.shift();return t},t.get=function(){return this.record},t.getLast=function(){var e=this.record.length;return this.record[e-1]},t.undo=function(e){var t=this.record.pop();if("undefined"===typeof t)return this.initValue;if(t!==e)return this.recycle.push(t),t;var c=this.record.pop();return"undefined"===typeof c?(this.recycle.push(t),this.initValue):(this.recycle.push(t),c)},t.redo=function(){var e=this.recycle.pop();if("undefined"!==typeof e)return this.push(e),e},t.cleanRedo=function(){this.recycle=[]},t.getUndoCount=function(){return this.undo.length},t.getRedoCount=function(){return this.recycle.length},e}(),we=Ve,Se=600,Le=function(e){function t(t){var c;return c=e.call(this,t)||this,c.handleKeyboards=[],c.lastPop=null,c.handleChange=c.handleChange.bind(a()(c)),c.handleRedo=c.handleRedo.bind(a()(c)),c.handleUndo=c.handleUndo.bind(a()(c)),c.handleKeyboards=[{key:"y",keyCode:89,withKey:["ctrlKey"],callback:c.handleRedo},{key:"z",keyCode:90,withKey:["metaKey","shiftKey"],callback:c.handleRedo},{key:"z",keyCode:90,aliasCommand:!0,withKey:["ctrlKey"],callback:c.handleUndo}],c.logger=new we,c}i()(t,e);var c=t.prototype;return c.handleUndo=function(){var e=this.logger.undo(this.editor.getMdValue());"undefined"!==typeof e&&(this.pause(),this.lastPop=e,this.editor.setText(e),this.forceUpdate())},c.handleRedo=function(){var e=this.logger.redo();"undefined"!==typeof e&&(this.lastPop=e,this.editor.setText(e),this.forceUpdate())},c.handleChange=function(e,t,c){var n=this;if(this.logger.getLast()!==e&&(null===this.lastPop||this.lastPop!==e)){if(this.logger.cleanRedo(),c)return this.logger.push(e),this.lastPop=null,void this.forceUpdate();this.timerId&&(window.clearTimeout(this.timerId),this.timerId=0),this.timerId=window.setTimeout(function(){n.logger.getLast()!==e&&(n.logger.push(e),n.lastPop=null,n.forceUpdate()),window.clearTimeout(n.timerId),n.timerId=0},Se)}},c.componentDidMount=function(){var e=this;this.editor.on("change",this.handleChange),this.handleKeyboards.forEach(function(t){return e.editor.onKeyboard(t)}),this.logger.initValue=this.editor.getMdValue(),this.forceUpdate()},c.componentWillUnmount=function(){var e=this;this.timerId&&window.clearTimeout(this.timerId),this.editor.off("change",this.handleChange),this.handleKeyboards.forEach(function(t){return e.editor.offKeyboard(t)})},c.pause=function(){this.timerId&&(window.clearTimeout(this.timerId),this.timerId=void 0)},c.render=function(){var e=this.logger.getUndoCount()>1||this.logger.initValue!==this.editor.getMdValue(),t=this.logger.getRedoCount()>0;return u["createElement"](u["Fragment"],null,u["createElement"]("span",{className:"button button-type-undo "+(e?"":"disabled"),title:M.get("btnUndo"),onClick:this.handleUndo},u["createElement"](s,{type:"undo"})),u["createElement"]("span",{className:"button button-type-redo "+(t?"":"disabled"),title:M.get("btnRedo"),onClick:this.handleRedo},u["createElement"](s,{type:"redo"})))},t}(O);Le.pluginName="logger",function(e){e[e["SHOW_ALL"]=0]="SHOW_ALL",e[e["SHOW_MD"]=1]="SHOW_MD",e[e["SHOW_HTML"]=2]="SHOW_HTML"}(He||(He={}));var ke=function(e){function t(t){var c;return c=e.call(this,t)||this,c.handleClick=c.handleClick.bind(a()(c)),c.handleChange=c.handleChange.bind(a()(c)),c.state={view:c.editor.getView()},c}i()(t,e);var c=t.prototype;return c.handleClick=function(){switch(this.next){case He.SHOW_ALL:this.editor.setView({html:!0,md:!0});break;case He.SHOW_HTML:this.editor.setView({html:!0,md:!1});break;case He.SHOW_MD:this.editor.setView({html:!1,md:!0});break}},c.handleChange=function(e){this.setState({view:e})},c.componentDidMount=function(){this.editor.on("viewchange",this.handleChange)},c.componentWillUnmount=function(){this.editor.off("viewchange",this.handleChange)},c.getDisplayInfo=function(){var e=this.next;switch(e){case He.SHOW_ALL:return{icon:"view-split",title:"All"};case He.SHOW_HTML:return{icon:"visibility",title:"Preview"};default:return{icon:"keyboard",title:"Editor"}}},c.render=function(){if(this.isDisplay){var e=this.getDisplayInfo();return u["createElement"]("span",{className:"button button-type-mode",title:M.get("btnMode"+e.title),onClick:this.handleClick},u["createElement"](s,{type:e.icon}))}return null},H()(t,[{key:"isDisplay",get:function(){var e=this.editorConfig.canView;return!!e&&[e.html,e.md,e.both].filter(function(e){return e}).length>=2}},{key:"next",get:function(){var e=this.editorConfig.canView,t=this.state.view,c=[He.SHOW_ALL,He.SHOW_MD,He.SHOW_HTML];e&&(e.both||c.splice(c.indexOf(He.SHOW_ALL),1),e.md||c.splice(c.indexOf(He.SHOW_MD),1),e.html||c.splice(c.indexOf(He.SHOW_HTML),1));var n=He.SHOW_MD;if(t.html&&(n=He.SHOW_HTML),t.html&&t.md&&(n=He.SHOW_ALL),0===c.length)return n;if(1===c.length)return c[0];var r=c.indexOf(n);return r=0),e),d),w=f(f({},this.props),{children:null,inkBarAnimated:z,extraContent:l,style:r,prevIcon:H,nextIcon:O,className:V});return t=a?a(w,s["a"]):n["createElement"](s["a"],w),n["cloneElement"](t)}}]),c}(n["Component"]);V.defaultProps={animated:!0,type:"line"};var w=c("H84U"),S=c("6CfX"),L=function(e){if("undefined"!==typeof window&&window.document&&window.document.documentElement){var t=Array.isArray(e)?e:[e],c=window.document.documentElement;return t.some(function(e){return e in c.style})}return!1},k=L(["flex","webkitFlex","Flex","msFlex"]);function x(){return x=Object.assign||function(e){for(var t=1;t=0&&("small"===v||"large"===v)),"Tabs","`type=card|editable-card` doesn't have small or large size, it's by design.");var O=r("tabs",s),w=i()(p,(c={},E(c,"".concat(O,"-vertical"),"left"===y||"right"===y),E(c,"".concat(O,"-").concat(v),!!v),E(c,"".concat(O,"-card"),d.indexOf("card")>=0),E(c,"".concat(O,"-").concat(d),!0),E(c,"".concat(O,"-no-animation"),!H),c)),L=[];"editable-card"===d&&(L=[],n["Children"].forEach(b,function(t,c){if(!n["isValidElement"](t))return t;var r=t.props.closable;r="undefined"===typeof r||r;var o=r?n["createElement"](h["a"],{type:"close",className:"".concat(O,"-close-x"),onClick:function(c){return e.removeTab(t.key,c)}}):null;L.push(n["cloneElement"](t,{tab:n["createElement"]("div",{className:r?void 0:"".concat(O,"-tab-unclosable")},t.props.tab,o),key:t.key||c}))}),M||(C=n["createElement"]("span",null,n["createElement"](h["a"],{type:"plus",className:"".concat(O,"-new-tab"),onClick:e.createNewTab}),C))),C=C?n["createElement"]("div",{className:"".concat(O,"-extra-content")},C):null;var k=U(e.props,[]),T=i()("".concat(O,"-").concat(y,"-content"),d.indexOf("card")>=0&&"".concat(O,"-card-content"));return n["createElement"](o["b"],x({},e.props,{prefixCls:O,className:w,tabBarPosition:y,renderTabBar:function(){return n["createElement"](V,x({},Object(u["a"])(k,["className"]),{tabBarExtraContent:C}))},renderTabContent:function(){return n["createElement"](a["a"],{className:T,animated:H,animatedWithMargin:!0})},onChange:e.handleChange}),L.length>0?L:b)},e}return N(c,[{key:"componentDidMount",value:function(){var e=" no-flex",t=r["findDOMNode"](this);t&&!k&&-1===t.className.indexOf(e)&&(t.className+=e)}},{key:"render",value:function(){return n["createElement"](w["a"],null,this.renderTabs)}}]),c}(n["Component"]);B.TabPane=o["a"],B.defaultProps={hideAdd:!1,tabPosition:"top"}},ZTW2:function(e,t,c){},"Znn+":function(e,t,c){"use strict";c("cIOH"),c("9ama")},ZvpZ:function(e,t,c){"use strict";var n=c("H4fg"),r=c("61s2"),o=c("RlXo"),a=r["a"];t["a"]={locale:"en",Pagination:n["a"],DatePicker:r["a"],TimePicker:o["a"],Calendar:a,global:{placeholder:"Please select"},Table:{filterTitle:"Filter menu",filterConfirm:"OK",filterReset:"Reset",selectAll:"Select current page",selectInvert:"Invert current page",sortTitle:"Sort",expand:"Expand row",collapse:"Collapse row"},Modal:{okText:"OK",cancelText:"Cancel",justOkText:"OK"},Popconfirm:{okText:"OK",cancelText:"Cancel"},Transfer:{titles:["",""],searchPlaceholder:"Search here",itemUnit:"item",itemsUnit:"items"},Upload:{uploading:"Uploading...",removeFile:"Remove file",uploadError:"Upload error",previewFile:"Preview file",downloadFile:"Download file"},Empty:{description:"No Data"},Icon:{icon:"icon"},Text:{edit:"Edit",copy:"Copy",copied:"Copied",expand:"Expand"},PageHeader:{back:"Back"}}},bE4E:function(e,t,c){},bKJz:function(e,t,c){},bXwC:function(e,t,c){},bac3:function(e,t,c){"use strict";(function(e){c.d(t,"e",function(){return h}),c.d(t,"d",function(){return f}),c.d(t,"a",function(){return v}),c.d(t,"b",function(){return m}),c.d(t,"c",function(){return d}),c.d(t,"f",function(){return y});var n=c("QbLZ"),r=c.n(n),o=c("iCc5"),a=c.n(o),l=c("V7oC"),i=c.n(l),u=c("HXN9"),s=c("q1tI");function h(t){e&&Object({NODE_ENV:"production"})||console.error("[@ant-design/icons-react]: "+t+".")}function f(e){return"object"===typeof e&&"string"===typeof e.name&&"string"===typeof e.theme&&("object"===typeof e.icon||"function"===typeof e.icon)}function p(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return Object.keys(e).reduce(function(t,c){var n=e[c];switch(c){case"class":t.className=n,delete t["class"];break;default:t[c]=n}return t},{})}var v=function(){function e(){a()(this,e),this.collection={}}return i()(e,[{key:"clear",value:function(){this.collection={}}},{key:"delete",value:function(e){return delete this.collection[e]}},{key:"get",value:function(e){return this.collection[e]}},{key:"has",value:function(e){return Boolean(this.collection[e])}},{key:"set",value:function(e,t){return this.collection[e]=t,this}},{key:"size",get:function(){return Object.keys(this.collection).length}}]),e}();function m(e,t,c){return c?s["createElement"](e.tag,r()({key:t},p(e.attrs),c),(e.children||[]).map(function(c,n){return m(c,t+"-"+e.tag+"-"+n)})):s["createElement"](e.tag,r()({key:t},p(e.attrs)),(e.children||[]).map(function(c,n){return m(c,t+"-"+e.tag+"-"+n)}))}function d(e){return Object(u["generate"])(e)[0]}function y(e,t){switch(t){case"fill":return e+"-fill";case"outline":return e+"-o";case"twotone":return e+"-twotone";default:throw new TypeError("Unknown theme type: "+t+", name: "+e)}}}).call(this,c("Q2Ig"))},bbsP:function(e,t,c){"use strict";c("cIOH"),c("CWI+")},cIOH:function(e,t,c){},czTT:function(e,t,c){},d0bx:function(e,t,c){"use strict";var n=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});var r=n(c("Zss7")),o=2,a=16,l=5,i=5,u=15,s=5,h=4;function f(e,t,c){var n;return n=Math.round(e.h)>=60&&Math.round(e.h)<=240?c?Math.round(e.h)-o*t:Math.round(e.h)+o*t:c?Math.round(e.h)+o*t:Math.round(e.h)-o*t,n<0?n+=360:n>=360&&(n-=360),n}function p(e,t,c){return 0===e.h&&0===e.s?e.s:(n=c?Math.round(100*e.s)-a*t:t===h?Math.round(100*e.s)+a:Math.round(100*e.s)+l*t,n>100&&(n=100),c&&t===s&&n>10&&(n=10),n<6&&(n=6),n);var n}function v(e,t,c){return c?Math.round(100*e.v)+i*t:Math.round(100*e.v)-u*t}function m(e){for(var t=[],c=r.default(e),n=s;n>0;n-=1){var o=c.toHsv(),a=r.default({h:f(o,n,!0),s:p(o,n,!0),v:v(o,n,!0)}).toHexString();t.push(a)}t.push(c.toHexString());for(n=1;n<=h;n+=1){o=c.toHsv(),a=r.default({h:f(o,n),s:p(o,n),v:v(o,n)}).toHexString();t.push(a)}return t}t.default=m},foW8:function(e,t,c){"use strict";t.__esModule=!0;var n=c("q1tI"),r=l(n),o=c("mdmE"),a=l(o);function l(e){return e&&e.__esModule?e:{default:e}}t.default=r.default.createContext||a.default,e.exports=t["default"]},g0mS:function(e,t,c){"use strict";c.d(t,"a",function(){return C});var n,r=c("q1tI"),o=c("i8i4"),a=c("/dDc"),l=c("oHiP"),i=c("H84U");function u(e){"@babel/helpers - typeof";return u="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},u(e)}function s(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function h(e,t){for(var c=0;c=0)){var r=e.props.insertExtraNode;e.extraNode=document.createElement("div");var o=y(e),l=o.extraNode;l.className="ant-click-animating-node";var i=e.getAttributeName();t.setAttribute(i,"true"),n=n||document.createElement("style"),c&&"#ffffff"!==c&&"rgb(255, 255, 255)"!==c&&M(c)&&!/rgba\(\d*, \d*, \d*, 0\)/.test(c)&&"transparent"!==c&&(e.csp&&e.csp.nonce&&(n.nonce=e.csp.nonce),l.style.borderColor=c,n.innerHTML="\n [ant-click-animating-without-extra-node='true']::after, .ant-click-animating-node {\n --antd-wave-shadow-color: ".concat(c,";\n }"),document.body.contains(n)||document.body.appendChild(n)),r&&t.appendChild(l),a["a"].addStartEventListener(t,e.onTransitionStart),a["a"].addEndEventListener(t,e.onTransitionEnd)}},e.onTransitionStart=function(t){if(!e.destroy){var c=Object(o["findDOMNode"])(y(e));t&&t.target===c&&(e.animationStart||e.resetEffect(c))}},e.onTransitionEnd=function(t){t&&"fadeEffect"===t.animationName&&e.resetEffect(t.target)},e.bindAnimationEvent=function(t){if(t&&t.getAttribute&&!t.getAttribute("disabled")&&!(t.className.indexOf("disabled")>=0)){var c=function(c){if("INPUT"!==c.target.tagName&&!g(c.target)){e.resetEffect(t);var n=getComputedStyle(t).getPropertyValue("border-top-color")||getComputedStyle(t).getPropertyValue("border-color")||getComputedStyle(t).getPropertyValue("background-color");e.clickWaveTimeoutId=window.setTimeout(function(){return e.onClick(t,n)},0),l["a"].cancel(e.animationStartId),e.animationStart=!0,e.animationStartId=Object(l["a"])(function(){e.animationStart=!1},10)}};return t.addEventListener("click",c,!0),{cancel:function(){t.removeEventListener("click",c,!0)}}}},e.renderWave=function(t){var c=t.csp,n=e.props.children;return e.csp=c,n},e}return f(c,[{key:"componentDidMount",value:function(){var e=Object(o["findDOMNode"])(this);e&&1===e.nodeType&&(this.instance=this.bindAnimationEvent(e))}},{key:"componentWillUnmount",value:function(){this.instance&&this.instance.cancel(),this.clickWaveTimeoutId&&clearTimeout(this.clickWaveTimeoutId),this.destroy=!0}},{key:"getAttributeName",value:function(){var e=this.props.insertExtraNode;return e?"ant-click-animating":"ant-click-animating-without-extra-node"}},{key:"resetEffect",value:function(e){if(e&&e!==this.extraNode&&e instanceof Element){var t=this.props.insertExtraNode,c=this.getAttributeName();e.setAttribute(c,"false"),n&&(n.innerHTML=""),t&&this.extraNode&&e.contains(this.extraNode)&&e.removeChild(this.extraNode),a["a"].removeStartEventListener(e,this.onTransitionStart),a["a"].removeEndEventListener(e,this.onTransitionEnd)}}},{key:"render",value:function(){return r["createElement"](i["a"],null,this.renderWave)}}]),c}(r["Component"])},g9YV:function(e,t,c){"use strict";c("cIOH"),c("pED+"),c("R9oj"),c("7Kak"),c("KCY9"),c("qVdP"),c("T2oS"),c("DjyN")},i8oR:function(e,t,c){},iQDF:function(e,t,c){"use strict";c("cIOH"),c("ZTW2"),c("5NDa"),c("pL63"),c("+BJd")},jCWc:function(e,t,c){"use strict";c("cIOH"),c("1GLa")},"jsC+":function(e,t,c){"use strict";var n=c("q1tI"),r=c("eDIo"),o=c("TSYQ"),a=c.n(o),l=c("H84U"),i=c("6CfX"),u=c("CtXQ"),s=c("CWQg");function h(e){"@babel/helpers - typeof";return h="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},h(e)}function f(){return f=Object.assign||function(e){for(var t=1;t=0?"slide-down":"slide-up"}},{key:"render",value:function(){return n["createElement"](l["a"],null,this.renderDropDown)}}]),c}(n["Component"]);H.defaultProps={mouseEnterDelay:.15,mouseLeaveDelay:.1,placement:"bottomLeft"};var O=c("2/Rp");function V(e){"@babel/helpers - typeof";return V="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},V(e)}function w(){return w=Object.assign||function(e){for(var t=1;t1&&void 0!==arguments[1]?arguments[1]:1,c=o++,n=t;function l(){n-=1,n<=0?(e(),delete a[c]):a[c]=r()(l)}return a[c]=r()(l),c}l.cancel=function(e){void 0!==e&&(r.a.cancel(a[e]),delete a[e])},l.ids=a},"pED+":function(e,t,c){},pL63:function(e,t,c){},pwpV:function(e,t,c){},qCM6:function(e,t,c){},qVdP:function(e,t,c){"use strict";c("cIOH"),c("KAsB"),c("+L6B")},qrJ5:function(e,t,c){"use strict";var n,r=c("q1tI"),o=c("TSYQ"),a=c.n(o),l=c("17x9"),i=c("H84U"),u=c("o/2+"),s=c("CWQg");function h(e,t,c){return t in e?Object.defineProperty(e,t,{value:c,enumerable:!0,configurable:!0,writable:!0}):e[t]=c,e}function f(){return f=Object.assign||function(e){for(var t=1;t0?{marginLeft:y[0]/-2,marginRight:y[0]/-2}:{}),y[1]>0?{marginTop:y[1]/-2,marginBottom:y[1]/-2}:{}),p),g=C({},m);return delete g.gutter,r["createElement"](u["a"].Provider,{value:{gutter:y}},r["createElement"]("div",C({},g,{className:b,style:z}),v))},e}return w(c,[{key:"componentDidMount",value:function(){var e=this;this.token=g.subscribe(function(t){var c=e.props.gutter;("object"===M(c)||Array.isArray(c)&&("object"===M(c[0])||"object"===M(c[1])))&&e.setState({screens:t})})}},{key:"componentWillUnmount",value:function(){g.unsubscribe(this.token)}},{key:"getGutter",value:function(){var e=[0,0],t=this.props.gutter,c=this.state.screens,n=Array.isArray(t)?t:[t,0];return n.forEach(function(t,n){if("object"===M(t))for(var r=0;re.length)&&(t=e.length);for(var c=0,n=new Array(t);c0&&(y=o.getOptions().map(function(e){return n["createElement"](_,{prefixCls:v,key:e.value.toString(),disabled:"disabled"in e?e.disabled:a.disabled,value:e.value,checked:-1!==l.value.indexOf(e.value),onChange:e.onChange,className:"".concat(m,"-item")},e.label)}));var b=u()(m,s);return n["createElement"]("div",F({className:b,style:h},d),y)},o.state={value:e.value||e.defaultValue||[],registeredValues:[]},o}return Y(c,[{key:"getChildContext",value:function(){return{checkboxGroup:{toggleOption:this.toggleOption,value:this.state.value,disabled:this.props.disabled,name:this.props.name,registerValue:this.registerValue,cancelValue:this.cancelValue}}}},{key:"shouldComponentUpdate",value:function(e,t){return!h()(this.props,e)||!h()(this.state,t)}},{key:"getOptions",value:function(){var e=this.props.options;return e.map(function(e){return"string"===typeof e?{label:e,value:e}:e})}},{key:"render",value:function(){return n["createElement"](g["a"],null,this.renderGroup)}}],[{key:"getDerivedStateFromProps",value:function(e){return"value"in e?{value:e.value||[]}:null}}]),c}(n["Component"]);ne.defaultProps={options:[]},ne.propTypes={defaultValue:l["array"],value:l["array"],options:l["array"].isRequired,onChange:l["func"]},ne.childContextTypes={checkboxGroup:l["any"]},Object(f["polyfill"])(ne);var re=ne;_.Group=re;var oe=_,ae=c("9yH6"),le=function(e){return n["createElement"]("div",{className:e.className,onClick:function(e){return e.stopPropagation()}},e.children)},ie=le;function ue(e){return pe(e)||fe(e)||he(e)||se()}function se(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function he(e,t){if(e){if("string"===typeof e)return ve(e,t);var c=Object.prototype.toString.call(e).slice(8,-1);return"Object"===c&&e.constructor&&(c=e.constructor.name),"Map"===c||"Set"===c?Array.from(e):"Arguments"===c||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(c)?ve(e,t):void 0}}function fe(e){if("undefined"!==typeof Symbol&&Symbol.iterator in Object(e))return Array.from(e)}function pe(e){if(Array.isArray(e))return ve(e)}function ve(e,t){(null==t||t>e.length)&&(t=e.length);for(var c=0,n=new Array(t);c0&&void 0!==arguments[0]?arguments[0]:[],t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"children",c=[],n=function e(n){n.forEach(function(n){if(n[t]){var r=me({},n);delete r[t],c.push(r),n[t].length>0&&e(n[t])}else c.push(n)})};return n(e),c}function ye(e,t){var c=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"children";return e.map(function(e,n){var r={};return e[c]&&(r[c]=ye(e[c],t,c)),me(me({},t(e,n)),r)})}function be(e,t){return e.reduce(function(e,c){if(t(c)&&e.push(c),c.children){var n=be(c.children,t);e.push.apply(e,ue(n))}return e},[])}function ze(e){var t=[];return n["Children"].forEach(e,function(e){if(n["isValidElement"](e)){var c=me({},e.props);e.key&&(c.key=e.key),e.type&&e.type.__ANT_TABLE_COLUMN_GROUP&&(c.children=ze(c.children)),t.push(c)}}),t}function ge(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return(e||[]).forEach(function(e){var c=e.value,n=e.children;t[c.toString()]=c,ge(n,t)}),t}function Me(e){"@babel/helpers - typeof";return Me="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Me(e)}function Ce(e,t,c){return t in e?Object.defineProperty(e,t,{value:c,enumerable:!0,configurable:!0,writable:!0}):e[t]=c,e}function He(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Oe(e,t){for(var c=0;c=0?delete c[e.key]:c[e.key]=e.keyPath,r.setState({keyPathOfSelectedItem:c})}},r.renderFilterIcon=function(){var e,t=r.props,c=t.column,o=t.locale,a=t.prefixCls,l=t.selectedKeys,i=l&&l.length>0,s=c.filterIcon;"function"===typeof s&&(s=s(i));var h=u()((e={},Ce(e,"".concat(a,"-selected"),"filtered"in c?c.filtered:i),Ce(e,"".concat(a,"-open"),r.getDropdownVisible()),e));return s?n["isValidElement"](s)?n["cloneElement"](s,{title:s.props.title||o.filterTitle,className:u()("".concat(a,"-icon"),h,s.props.className),onClick:Te}):n["createElement"]("span",{className:u()("".concat(a,"-icon"),h)},s):n["createElement"](b["a"],{title:o.filterTitle,type:"filter",theme:"filled",className:h,onClick:Te})};var o="filterDropdownVisible"in e.column&&e.column.filterDropdownVisible;return r.state={selectedKeys:e.selectedKeys,valueKeys:ge(e.column.filters),keyPathOfSelectedItem:{},visible:o,prevProps:e},r}return Ve(c,[{key:"componentDidMount",value:function(){var e=this.props.column;this.setNeverShown(e)}},{key:"componentDidUpdate",value:function(){var e=this.props.column;this.setNeverShown(e)}},{key:"getDropdownVisible",value:function(){return!this.neverShown&&this.state.visible}},{key:"setVisible",value:function(e){var t=this.props.column;"filterDropdownVisible"in t||this.setState({visible:e}),t.onFilterDropdownVisibleChange&&t.onFilterDropdownVisibleChange(e)}},{key:"hasSubMenu",value:function(){var e=this.props.column.filters,t=void 0===e?[]:e;return t.some(function(e){return!!(e.children&&e.children.length>0)})}},{key:"confirmFilter",value:function(){var e=this.props,t=e.column,c=e.selectedKeys,n=e.confirmFilter,r=this.state,o=r.selectedKeys,a=r.valueKeys,l=t.filterDropdown;h()(o,c)||n(t,l?o:o.map(function(e){return a[e]}).filter(function(e){return void 0!==e}))}},{key:"renderMenus",value:function(e){var t=this,c=this.props,r=c.dropdownPrefixCls,o=c.prefixCls;return e.map(function(e){if(e.children&&e.children.length>0){var c=t.state.keyPathOfSelectedItem,a=Object.keys(c).some(function(t){return c[t].indexOf(e.value)>=0}),l=u()("".concat(o,"-dropdown-submenu"),Ce({},"".concat(r,"-submenu-contain-selected"),a));return n["createElement"](v["d"],{title:e.text,popupClassName:l,key:e.value.toString()},t.renderMenus(e.children))}return t.renderMenuItem(e)})}},{key:"renderMenuItem",value:function(e){var t=this.props.column,c=this.state.selectedKeys,r=!("filterMultiple"in t)||t.filterMultiple,o=(c||[]).map(function(e){return e.toString()}),a=r?n["createElement"](oe,{checked:o.indexOf(e.value.toString())>=0}):n["createElement"](ae["a"],{checked:o.indexOf(e.value.toString())>=0});return n["createElement"](v["b"],{key:e.value},a,n["createElement"]("span",null,e.text))}},{key:"render",value:function(){var e=this,t=this.state.selectedKeys,c=this.props,r=c.column,o=c.locale,a=c.prefixCls,l=c.dropdownPrefixCls,i=c.getPopupContainer,s=!("filterMultiple"in r)||r.filterMultiple,h=u()(Ce({},"".concat(l,"-menu-without-submenu"),!this.hasSubMenu())),f=r.filterDropdown;f instanceof Function&&(f=f({prefixCls:"".concat(l,"-custom"),setSelectedKeys:function(t){return e.setSelectedKeys({selectedKeys:t})},selectedKeys:t,confirm:this.handleConfirm,clearFilters:this.handleClearFilters,filters:r.filters,visible:this.getDropdownVisible()}));var p=f?n["createElement"](ie,{className:"".concat(a,"-dropdown")},f):n["createElement"](ie,{className:"".concat(a,"-dropdown")},n["createElement"](v["e"],{multiple:s,onClick:this.handleMenuItemClick,prefixCls:"".concat(l,"-menu"),className:h,onSelect:this.setSelectedKeys,onDeselect:this.setSelectedKeys,selectedKeys:t&&t.map(function(e){return e.toString()}),getPopupContainer:i},this.renderMenus(r.filters)),n["createElement"]("div",{className:"".concat(a,"-dropdown-btns")},n["createElement"]("a",{className:"".concat(a,"-dropdown-link confirm"),onClick:this.handleConfirm},o.filterConfirm),n["createElement"]("a",{className:"".concat(a,"-dropdown-link clear"),onClick:this.handleClearFilters},o.filterReset)));return n["createElement"](y["a"],{trigger:["click"],placement:"bottomRight",overlay:p,visible:this.getDropdownVisible(),onVisibleChange:this.onVisibleChange,getPopupContainer:i,forceRender:!0},this.renderFilterIcon())}}],[{key:"getDerivedStateFromProps",value:function(e,t){var c=e.column,n=t.prevProps,r={prevProps:e};return"selectedKeys"in e&&!h()(n.selectedKeys,e.selectedKeys)&&(r.selectedKeys=e.selectedKeys),h()((n.column||{}).filters,(e.column||{}).filters)||(r.valueKeys=ge(e.column.filters)),"filterDropdownVisible"in c&&(r.visible=c.filterDropdownVisible),r}}]),c}(n["Component"]);je.defaultProps={column:{}},Object(f["polyfill"])(je);var Ne=je;function Re(){return Re=Object.assign||function(e){for(var t=1;t=0:t.getState().selectedRowKeys.indexOf(n)>=0||c.indexOf(n)>=0,r}},{key:"subscribe",value:function(){var e=this,t=this.props.store;this.unsubscribe=t.subscribe(function(){var t=e.getCheckState(e.props);e.setState({checked:t})})}},{key:"render",value:function(){var e=this.props,t=e.type,c=e.rowIndex,r=Xe(e,["type","rowIndex"]),o=this.state.checked;return"radio"===t?n["createElement"](ae["a"],Fe({checked:o,value:c},r)):n["createElement"](oe,Fe({checked:o},r))}}]),c}(n["Component"]),Je=c("BvKs");function $e(e){"@babel/helpers - typeof";return $e="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},$e(e)}function et(e,t,c){return t in e?Object.defineProperty(e,t,{value:c,enumerable:!0,configurable:!0,writable:!0}):e[t]=c,e}function tt(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function ct(e,t){for(var c=0;c=0})}function pt(e){var t=e.store,c=e.data;if(!c.length)return!1;var n=ft(ht(ht({},e),{data:c,type:"some",byDefaultChecked:!1}))&&!ft(ht(ht({},e),{data:c,type:"every",byDefaultChecked:!1})),r=ft(ht(ht({},e),{data:c,type:"some",byDefaultChecked:!0}))&&!ft(ht(ht({},e),{data:c,type:"every",byDefaultChecked:!0}));return t.getState().selectionDirty?n:n||r}function vt(e){var t=e.store,c=e.data;return!!c.length&&(t.getState().selectionDirty?ft(ht(ht({},e),{data:c,type:"every",byDefaultChecked:!1})):ft(ht(ht({},e),{data:c,type:"every",byDefaultChecked:!1}))||ft(ht(ht({},e),{data:c,type:"every",byDefaultChecked:!0})))}var mt=function(e){rt(c,e);var t=at(c);function c(e){var n;return tt(this,c),n=t.call(this,e),n.state={checked:!1,indeterminate:!1},n.handleSelectAllChange=function(e){var t=e.target.checked;n.props.onSelect(t?"all":"removeAll",0,null)},n.defaultSelections=e.hideDefaultSelections?[]:[{key:"all",text:e.locale.selectAll},{key:"invert",text:e.locale.selectInvert}],n}return nt(c,[{key:"componentDidMount",value:function(){this.subscribe()}},{key:"componentWillUnmount",value:function(){this.unsubscribe&&this.unsubscribe()}},{key:"setCheckState",value:function(e){var t=vt(e),c=pt(e);this.setState(function(e){var n={};return c!==e.indeterminate&&(n.indeterminate=c),t!==e.checked&&(n.checked=t),n})}},{key:"subscribe",value:function(){var e=this,t=this.props.store;this.unsubscribe=t.subscribe(function(){e.setCheckState(e.props)})}},{key:"renderMenus",value:function(e){var t=this;return e.map(function(e,c){return n["createElement"](Je["a"].Item,{key:e.key||c},n["createElement"]("div",{onClick:function(){t.props.onSelect(e.key,c,e.onSelect)}},e.text))})}},{key:"render",value:function(){var e=this.props,t=e.disabled,c=e.prefixCls,r=e.selections,o=e.getPopupContainer,a=this.state,l=a.checked,i=a.indeterminate,s="".concat(c,"-selection"),h=null;if(r){var f=Array.isArray(r)?this.defaultSelections.concat(r):this.defaultSelections,p=n["createElement"](Je["a"],{className:"".concat(s,"-menu"),selectedKeys:[]},this.renderMenus(f));h=f.length>0?n["createElement"](y["a"],{overlay:p,getPopupContainer:o},n["createElement"]("div",{className:"".concat(s,"-down")},n["createElement"](b["a"],{type:"down"}))):null}return n["createElement"]("div",{className:s},n["createElement"](oe,{className:u()(et({},"".concat(s,"-select-all-custom"),h)),checked:l,indeterminate:i,disabled:t,onChange:this.handleSelectAllChange}),h)}}],[{key:"getDerivedStateFromProps",value:function(e,t){var c=vt(e),n=pt(e),r={};return n!==t.indeterminate&&(r.indeterminate=n),c!==t.checked&&(r.checked=c),r}}]),c}(n["Component"]);Object(f["polyfill"])(mt);var dt=mt;function yt(e){"@babel/helpers - typeof";return yt="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},yt(e)}function bt(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function zt(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&>(e,t)}function gt(e,t){return gt=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},gt(e,t)}function Mt(e){var t=Ot();return function(){var c,n=Vt(e);if(t){var r=Vt(this).constructor;c=Reflect.construct(n,arguments,r)}else c=n.apply(this,arguments);return Ct(this,c)}}function Ct(e,t){return!t||"object"!==yt(t)&&"function"!==typeof t?Ht(e):t}function Ht(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Ot(){if("undefined"===typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"===typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],function(){})),!0}catch(e){return!1}}function Vt(e){return Vt=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)},Vt(e)}var wt=function(e){zt(c,e);var t=Mt(c);function c(){return bt(this,c),t.apply(this,arguments)}return c}(n["Component"]);function St(e){"@babel/helpers - typeof";return St="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},St(e)}function Lt(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function kt(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&xt(e,t)}function xt(e,t){return xt=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},xt(e,t)}function Et(e){var t=jt();return function(){var c,n=Nt(e);if(t){var r=Nt(this).constructor;c=Reflect.construct(n,arguments,r)}else c=n.apply(this,arguments);return Pt(this,c)}}function Pt(e,t){return!t||"object"!==St(t)&&"function"!==typeof t?Tt(e):t}function Tt(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function jt(){if("undefined"===typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"===typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],function(){})),!0}catch(e){return!1}}function Nt(e){return Nt=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)},Nt(e)}var Rt=function(e){kt(c,e);var t=Et(c);function c(){return Lt(this,c),t.apply(this,arguments)}return c}(n["Component"]);function _t(e){"@babel/helpers - typeof";return _t="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},_t(e)}function At(){return At=Object.assign||function(e){for(var t=1;t0&&void 0!==arguments[0]?arguments[0]:"tr",t=function(t){Ut(o,t);var c=qt(o);function o(e){var t;Dt(this,o),t=c.call(this,e),t.store=e.store;var n=t.store.getState(),r=n.selectedRowKeys;return t.state={selected:r.indexOf(e.rowKey)>=0},t}return Kt(o,[{key:"componentDidMount",value:function(){this.subscribe()}},{key:"componentWillUnmount",value:function(){this.unsubscribe&&this.unsubscribe()}},{key:"subscribe",value:function(){var e=this,t=this.props,c=t.store,n=t.rowKey;this.unsubscribe=c.subscribe(function(){var t=e.store.getState(),c=t.selectedRowKeys,r=c.indexOf(n)>=0;r!==e.state.selected&&e.setState({selected:r})})}},{key:"render",value:function(){var t=Object(r["a"])(this.props,["prefixCls","rowKey","store"]),c=u()(this.props.className,Ft({},"".concat(this.props.prefixCls,"-row-selected"),this.state.selected));return n["createElement"](e,At(At({},t),{className:c}),this.props.children)}}]),o}(n["Component"]);return t}Rt.__ANT_TABLE_COLUMN_GROUP=!0;var Zt=c("xEkU"),Jt=c.n(Zt);function $t(e,t){if("undefined"===typeof window)return 0;var c=t?"pageYOffset":"pageXOffset",n=t?"scrollTop":"scrollLeft",r=e===window,o=r?e[c]:e[n];return r&&"number"!==typeof o&&(o=document.documentElement[n]),o}function ec(e,t,c,n){var r=c-t;return e/=n/2,e<1?r/2*e*e*e+t:r/2*((e-=2)*e*e+2)+t}function tc(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},c=t.getContainer,n=void 0===c?function(){return window}:c,r=t.callback,o=t.duration,a=void 0===o?450:o,l=n(),i=$t(l,!0),u=Date.now(),s=function t(){var c=Date.now(),n=c-u,o=ec(n>a?a:n,i,e,a);l===window?window.scrollTo(window.pageXOffset,o):l.scrollTop=o,n0&&void 0!==arguments[0]?arguments[0]:{},t=e&&e.body&&e.body.row;return Nc(Nc({},e),{body:Nc(Nc({},e.body),{row:Xt(t)})})};function qc(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return e===t||["table","header","body"].every(function(c){return h()(e[c],t[c])})}function Wc(e,t){return be(t||(e||{}).columns||[],function(e){return"undefined"!==typeof e.filteredValue})}function Gc(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1?arguments[1]:void 0,c={};return Wc(e,t).forEach(function(e){var t=Dc(e);c[t]=e.filteredValue}),c}function Yc(e,t){return Object.keys(t).length!==Object.keys(e.filters).length||Object.keys(t).some(function(c){return t[c]!==e.filters[c]})}var Qc=function(e){Lc(c,e);var t=xc(c);function c(e){var o;Vc(this,c),o=t.call(this,e),o.setTableRef=function(e){o.rcTable=e},o.getCheckboxPropsByItem=function(e,t){var c=Fc(o.props);if(!c.getCheckboxProps)return{};var n=o.getRecordKey(e,t);if(!o.props.checkboxPropsCache[n]){o.props.checkboxPropsCache[n]=c.getCheckboxProps(e)||{};var r=o.props.checkboxPropsCache[n];Object(M["a"])(!("checked"in r)&&!("defaultChecked"in r),"Table","Do not set `checked` or `defaultChecked` in `getCheckboxProps`. Please use `selectedRowKeys` instead.")}return o.props.checkboxPropsCache[n]},o.getRecordKey=function(e,t){var c=o.props.rowKey,n="function"===typeof c?c(e,t):e[c];return Object(M["a"])(void 0!==n,"Table","Each record in dataSource of table should have a unique `key` prop, or set `rowKey` of Table to an unique primary key, see https://u.ant.design/table-row-key"),void 0===n?t:n},o.onRow=function(e,t,c){var n=o.props.onRow,r=n?n(t,c):{};return Nc(Nc({},r),{prefixCls:e,store:o.props.store,rowKey:o.getRecordKey(t,c)})},o.generatePopupContainerFunc=function(e){var t=o.props.scroll,c=o.rcTable;return e||(t&&c?function(){return c.tableNode}:void 0)},o.scrollToFirstRow=function(){var e=o.props.scroll;e&&!1!==e.scrollToFirstRowOnChange&&tc(0,{getContainer:function(){return o.rcTable.bodyTable}})},o.handleFilter=function(e,t){var c=o.props,n=Nc({},o.state.pagination),r=Nc(Nc({},o.state.filters),Oc({},Dc(e),t)),a=[];ye(o.state.columns,function(e){e.children||a.push(Dc(e))}),Object.keys(r).forEach(function(e){a.indexOf(e)<0&&delete r[e]}),c.pagination&&(n.current=1,n.onChange(n.current));var l={pagination:n,filters:{}},i=Nc({},r);Wc(o.state).forEach(function(e){var t=Dc(e);t&&delete i[t]}),Object.keys(i).length>0&&(l.filters=i),"object"===Hc(c.pagination)&&"current"in c.pagination&&(l.pagination=Nc(Nc({},n),{current:o.state.pagination.current})),o.setState(l,function(){o.scrollToFirstRow(),o.props.store.setState({selectionDirty:!1});var e=o.props.onChange;e&&e.apply(null,o.prepareParamsArguments(Nc(Nc({},o.state),{selectionDirty:!1,filters:r,pagination:n})))})},o.handleSelect=function(e,t,c){var n=c.target.checked,r=c.nativeEvent,a=o.props.store.getState().selectionDirty?[]:o.getDefaultSelection(),l=o.props.store.getState().selectedRowKeys.concat(a),i=o.getRecordKey(e,t),u=o.state.pivot,s=o.getFlatCurrentPageData(),h=t;if(o.props.expandedRowRender&&(h=s.findIndex(function(e){return o.getRecordKey(e,t)===i})),r.shiftKey&&void 0!==u&&h!==u){var f=[],p=Math.sign(u-h),v=Math.abs(u-h),m=0,d=function(){var e=h+m*p;m+=1;var t=s[e],c=o.getRecordKey(t,e),r=o.getCheckboxPropsByItem(t,e);r.disabled||(l.includes(c)?n||(l=l.filter(function(e){return c!==e}),f.push(c)):n&&(l.push(c),f.push(c)))};while(m<=v)d();o.setState({pivot:h}),o.props.store.setState({selectionDirty:!0}),o.setSelectedRowKeys(l,{selectWay:"onSelectMultiple",record:e,checked:n,changeRowKeys:f,nativeEvent:r})}else n?l.push(o.getRecordKey(e,h)):l=l.filter(function(e){return i!==e}),o.setState({pivot:h}),o.props.store.setState({selectionDirty:!0}),o.setSelectedRowKeys(l,{selectWay:"onSelect",record:e,checked:n,changeRowKeys:void 0,nativeEvent:r})},o.handleRadioSelect=function(e,t,c){var n=c.target.checked,r=c.nativeEvent,a=o.getRecordKey(e,t),l=[a];o.props.store.setState({selectionDirty:!0}),o.setSelectedRowKeys(l,{selectWay:"onSelect",record:e,checked:n,changeRowKeys:void 0,nativeEvent:r})},o.handleSelectRow=function(e,t,c){var n,r=o.getFlatCurrentPageData(),a=o.props.store.getState().selectionDirty?[]:o.getDefaultSelection(),l=o.props.store.getState().selectedRowKeys.concat(a),i=r.filter(function(e,t){return!o.getCheckboxPropsByItem(e,t).disabled}).map(function(e,t){return o.getRecordKey(e,t)}),u=[],s="onSelectAll";switch(e){case"all":i.forEach(function(e){l.indexOf(e)<0&&(l.push(e),u.push(e))}),s="onSelectAll",n=!0;break;case"removeAll":i.forEach(function(e){l.indexOf(e)>=0&&(l.splice(l.indexOf(e),1),u.push(e))}),s="onSelectAll",n=!1;break;case"invert":i.forEach(function(e){l.indexOf(e)<0?l.push(e):l.splice(l.indexOf(e),1),u.push(e),s="onSelectInvert"});break;default:break}o.props.store.setState({selectionDirty:!0});var h=o.props.rowSelection,f=2;if(h&&h.hideDefaultSelections&&(f=0),t>=f&&"function"===typeof c)return c(i);o.setSelectedRowKeys(l,{selectWay:s,checked:n,changeRowKeys:u})},o.handlePageChange=function(e){var t=o.props,c=Nc({},o.state.pagination);c.current=e||(c.current||1);for(var n=arguments.length,r=new Array(n>1?n-1:0),a=1;a0){var r=this.getSortStateFromColumns(t);Ic(r.sortColumn,c)&&r.sortOrder===n||this.setState(r)}}},{key:"getDefaultSelection",value:function(){var e=this,t=Fc(this.props);return t.getCheckboxProps?this.getFlatData().filter(function(t,c){return e.getCheckboxPropsByItem(t,c).defaultChecked}).map(function(t,c){return e.getRecordKey(t,c)}):[]}},{key:"getDefaultPagination",value:function(e){var t,c,n="object"===Hc(e.pagination)?e.pagination:{};return"current"in n?t=n.current:"defaultCurrent"in n&&(t=n.defaultCurrent),"pageSize"in n?c=n.pageSize:"defaultPageSize"in n&&(c=n.defaultPageSize),this.hasPagination(e)?Nc(Nc(Nc({},Kc),n),{current:t||1,pageSize:c||10}):{}}},{key:"getSortOrderColumns",value:function(e){return be(e||(this.state||{}).columns||[],function(e){return"sortOrder"in e})}},{key:"getDefaultFilters",value:function(e){var t=Gc(this.state,e),c=be(e||[],function(e){return"undefined"!==typeof e.defaultFilteredValue}),n=c.reduce(function(e,t){var c=Dc(t);return e[c]=t.defaultFilteredValue,e},{});return Nc(Nc({},n),t)}},{key:"getDefaultSortOrder",value:function(e){var t=this.getSortStateFromColumns(e),c=be(e||[],function(e){return null!=e.defaultSortOrder})[0];return c&&!t.sortColumn?{sortColumn:c,sortOrder:c.defaultSortOrder}:t}},{key:"getSortStateFromColumns",value:function(e){var t=this.getSortOrderColumns(e).filter(function(e){return e.sortOrder})[0];return t?{sortColumn:t,sortOrder:t.sortOrder}:{sortColumn:null,sortOrder:null}}},{key:"getMaxCurrent",value:function(e){var t=this.state.pagination,c=t.current,n=t.pageSize;return(c-1)*n>=e?Math.floor((e-1)/n)+1:c}},{key:"getSorterFn",value:function(e){var t=e||this.state,c=t.sortOrder,n=t.sortColumn;if(c&&n&&"function"===typeof n.sorter)return function(e,t){var r=n.sorter(e,t,c);return 0!==r?"descend"===c?-r:r:0}}},{key:"getCurrentPageData",value:function(){var e,t,c=this.getLocalData(),n=this.state;return this.hasPagination()?(t=n.pagination.pageSize,e=this.getMaxCurrent(n.pagination.total||c.length)):(t=Number.MAX_VALUE,e=1),(c.length>t||t===Number.MAX_VALUE)&&(c=c.slice((e-1)*t,e*t)),c}},{key:"getFlatData",value:function(){var e=this.props.childrenColumnName;return de(this.getLocalData(null,!1),e)}},{key:"getFlatCurrentPageData",value:function(){var e=this.props.childrenColumnName;return de(this.getCurrentPageData(),e)}},{key:"getLocalData",value:function(e){var t=this,c=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],n=e||this.state,r=this.props.dataSource,o=r||[];o=o.slice(0);var a=this.getSorterFn(n);return a&&(o=this.recursiveSort(o,a)),c&&n.filters&&Object.keys(n.filters).forEach(function(e){var c=t.findColumn(e);if(c){var r=n.filters[e]||[];if(0!==r.length){var a=c.onFilter;o=a?o.filter(function(e){return r.some(function(t){return a(t,e)})}):o}}}),o}},{key:"setSelectedRowKeys",value:function(e,t){var c=this,n=t.selectWay,r=t.record,o=t.checked,a=t.changeRowKeys,l=t.nativeEvent,i=Fc(this.props);!i||"selectedRowKeys"in i||this.props.store.setState({selectedRowKeys:e});var u=this.getFlatData();if(i.onChange||i[n]){var s=u.filter(function(t,n){return e.indexOf(c.getRecordKey(t,n))>=0});if(i.onChange&&i.onChange(e,s),"onSelect"===n&&i.onSelect)i.onSelect(r,o,s,l);else if("onSelectMultiple"===n&&i.onSelectMultiple){var h=u.filter(function(e,t){return a.indexOf(c.getRecordKey(e,t))>=0});i.onSelectMultiple(o,s,h)}else if("onSelectAll"===n&&i.onSelectAll){var f=u.filter(function(e,t){return a.indexOf(c.getRecordKey(e,t))>=0});i.onSelectAll(o,s,f)}else"onSelectInvert"===n&&i.onSelectInvert&&i.onSelectInvert(e)}}},{key:"toggleSortOrder",value:function(e){var t,c=e.sortDirections||this.props.sortDirections,n=this.state,r=n.sortOrder,o=n.sortColumn;if(Ic(o,e)&&void 0!==r){var a=c.indexOf(r)+1;t=a===c.length?void 0:c[a]}else t=c[0];var l={sortOrder:t,sortColumn:t?e:null};0===this.getSortOrderColumns().length&&this.setState(l,this.scrollToFirstRow);var i=this.props.onChange;i&&i.apply(null,this.prepareParamsArguments(Nc(Nc({},this.state),l),e))}},{key:"hasPagination",value:function(e){return!1!==(e||this.props).pagination}},{key:"isSortColumn",value:function(e){var t=this.state.sortColumn;return!(!e||!t)&&Dc(t)===Dc(e)}},{key:"prepareParamsArguments",value:function(e,t){var c=Nc({},e.pagination);delete c.onChange,delete c.onShowSizeChange;var n=e.filters,r={},o=t;e.sortColumn&&e.sortOrder&&(o=e.sortColumn,r.column=e.sortColumn,r.order=e.sortOrder),o&&(r.field=o.dataIndex,r.columnKey=Dc(o));var a={currentDataSource:this.getLocalData(e)};return[c,n,r,a]}},{key:"findColumn",value:function(e){var t;return ye(this.state.columns,function(c){Dc(c)===e&&(t=c)}),t}},{key:"recursiveSort",value:function(e,t){var c=this,n=this.props.childrenColumnName,r=void 0===n?"children":n;return e.sort(t).map(function(e){return e[r]?Nc(Nc({},e),Oc({},r,c.recursiveSort(e[r],t))):e})}},{key:"renderPagination",value:function(e,t){if(!this.hasPagination())return null;var c="default",r=this.state.pagination;r.size?c=r.size:"middle"!==this.props.size&&"small"!==this.props.size||(c="small");var o=r.position||"bottom",a=r.total||this.getLocalData().length;return a>0&&(o===t||"both"===o)?n["createElement"](cc["a"],Nc({key:"pagination-".concat(t)},r,{className:u()(r.className,"".concat(e,"-pagination")),onChange:this.handlePageChange,total:a,size:c,current:this.getMaxCurrent(a),onShowSizeChange:this.handleShowSizeChange})):null}},{key:"renderRowSelection",value:function(e){var t=this,c=e.prefixCls,r=e.locale,a=e.getPopupContainer,l=this.props.rowSelection,i=this.state.columns.concat();if(l){var s=this.getFlatCurrentPageData().filter(function(e,c){return!l.getCheckboxProps||!t.getCheckboxPropsByItem(e,c).disabled}),h=u()("".concat(c,"-selection-column"),Oc({},"".concat(c,"-selection-column-custom"),l.selections)),f=Oc({key:"selection-column",render:this.renderSelectionBox(l.type),className:h,fixed:l.fixed,width:l.columnWidth,title:l.columnTitle},o["INTERNAL_COL_DEFINE"],{className:"".concat(c,"-selection-col")});if("radio"!==l.type){var p=s.every(function(e,c){return t.getCheckboxPropsByItem(e,c).disabled});f.title=f.title||n["createElement"](dt,{store:this.props.store,locale:r,data:s,getCheckboxPropsByItem:this.getCheckboxPropsByItem,getRecordKey:this.getRecordKey,disabled:p,prefixCls:c,onSelect:this.handleSelectRow,selections:l.selections,hideDefaultSelections:l.hideDefaultSelections,getPopupContainer:this.generatePopupContainerFunc(a)})}"fixed"in l?f.fixed=l.fixed:i.some(function(e){return"left"===e.fixed||!0===e.fixed})&&(f.fixed="left"),i[0]&&"selection-column"===i[0].key?i[0]=f:i.unshift(f)}return i}},{key:"renderColumnsDropdown",value:function(e){var t=this,c=e.prefixCls,r=e.dropdownPrefixCls,o=e.columns,a=e.locale,l=e.getPopupContainer,i=this.state,s=i.sortOrder,h=i.filters;return ye(o,function(e,o){var i,f,p,v=Dc(e,o),m=e.onHeaderCell,d=t.isSortColumn(e);if(e.filters&&e.filters.length>0||e.filterDropdown){var y=v in h?h[v]:[];f=n["createElement"](Ne,{locale:a,column:e,selectedKeys:y,confirmFilter:t.handleFilter,prefixCls:"".concat(c,"-filter"),dropdownPrefixCls:r||"ant-dropdown",getPopupContainer:t.generatePopupContainerFunc(l),key:"filter-dropdown"})}if(e.sorter){var z=e.sortDirections||t.props.sortDirections,g=d&&"ascend"===s,M=d&&"descend"===s,C=-1!==z.indexOf("ascend")&&n["createElement"](b["a"],{className:"".concat(c,"-column-sorter-up ").concat(g?"on":"off"),type:"caret-up",theme:"filled"}),H=-1!==z.indexOf("descend")&&n["createElement"](b["a"],{className:"".concat(c,"-column-sorter-down ").concat(M?"on":"off"),type:"caret-down",theme:"filled"});p=n["createElement"]("div",{title:a.sortTitle,className:u()("".concat(c,"-column-sorter-inner"),C&&H&&"".concat(c,"-column-sorter-inner-full")),key:"sorter"},C,H),m=function(c){var n={};e.onHeaderCell&&(n=Nc({},e.onHeaderCell(c)));var r=n.onClick;return n.onClick=function(){t.toggleSortOrder(e),r&&r.apply(void 0,arguments)},n}}return Nc(Nc({},e),{className:u()(e.className,(i={},Oc(i,"".concat(c,"-column-has-actions"),p||f),Oc(i,"".concat(c,"-column-has-filters"),f),Oc(i,"".concat(c,"-column-has-sorters"),p),Oc(i,"".concat(c,"-column-sort"),d&&s),i)),title:[n["createElement"]("span",{key:"title",className:"".concat(c,"-header-column")},n["createElement"]("div",{className:p?"".concat(c,"-column-sorters"):void 0},n["createElement"]("span",{className:"".concat(c,"-column-title")},t.renderColumnTitle(e.title)),n["createElement"]("span",{className:"".concat(c,"-column-sorter")},p))),f],onHeaderCell:m})})}},{key:"renderColumnTitle",value:function(e){var t=this.state,c=t.filters,n=t.sortOrder,r=t.sortColumn;return e instanceof Function?e({filters:c,sortOrder:n,sortColumn:r}):e}},{key:"render",value:function(){return n["createElement"](g["a"],null,this.renderComponent)}}],[{key:"getDerivedStateFromProps",value:function(e,t){var c=t.prevProps,n=e.columns||ze(e.children),r=Nc(Nc({},t),{prevProps:e,columns:n});if("pagination"in e||"pagination"in c){var o=Nc(Nc(Nc({},Kc),t.pagination),e.pagination);o.current=o.current||1,o.pageSize=o.pageSize||10,r=Nc(Nc({},r),{pagination:!1!==e.pagination?o:Uc})}e.rowSelection&&"selectedRowKeys"in e.rowSelection?e.store.setState({selectedRowKeys:e.rowSelection.selectedRowKeys||[]}):c.rowSelection&&!e.rowSelection&&e.store.setState({selectedRowKeys:[]}),"dataSource"in e&&e.dataSource!==c.dataSource&&e.store.setState({selectionDirty:!1}),e.setCheckboxPropsCache({});var a=Wc(r,r.columns);if(a.length>0){var l=Gc(r,r.columns),i=Nc({},r.filters);Object.keys(l).forEach(function(e){i[e]=l[e]}),Yc(r,i)&&(r=Nc(Nc({},r),{filters:i}))}if(!qc(e.components,c.components)){var u=Bc(e.components);r=Nc(Nc({},r),{components:u})}return r}}]),c}(n["Component"]);Qc.propTypes={dataSource:l["array"],columns:l["array"],prefixCls:l["string"],useFixedHeader:l["bool"],rowSelection:l["object"],className:l["string"],size:l["string"],loading:l["oneOfType"]([l["bool"],l["object"]]),bordered:l["bool"],onChange:l["func"],locale:l["object"],dropdownPrefixCls:l["string"],sortDirections:l["array"],getPopupContainer:l["func"]},Qc.defaultProps={dataSource:[],useFixedHeader:!1,className:"",size:"default",loading:!1,bordered:!1,indentSize:20,locale:{},rowKey:"key",showHeader:!0,sortDirections:["ascend","descend"],childrenColumnName:"children"},Object(f["polyfill"])(Qc);var Xc=function(e){Lc(c,e);var t=xc(c);function c(e){var n;return Vc(this,c),n=t.call(this,e),n.setCheckboxPropsCache=function(e){return n.CheckboxPropsCache=e},n.CheckboxPropsCache={},n.store=_e({selectedRowKeys:Fc(e).selectedRowKeys||[],selectionDirty:!1}),n}return Sc(c,[{key:"render",value:function(){return n["createElement"](Qc,Nc({},this.props,{store:this.store,checkboxPropsCache:this.CheckboxPropsCache,setCheckboxPropsCache:this.setCheckboxPropsCache}))}}]),c}(n["Component"]);Xc.displayName="withStore(Table)",Xc.Column=wt,Xc.ColumnGroup=Rt;var Zc=Xc;t["a"]=Zc},"wEI+":function(e,t,c){"use strict";var n=c("q1tI"),r=c("17x9"),o=c("wd/R"),a=c("veqR"),l=c("ul5b"),i=c("6CfX");function u(e){"@babel/helpers - typeof";return u="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},u(e)}function s(){return s=Object.assign||function(e){for(var t=1;ta:first-child:last-child{display:inline-block;margin:0 -8px;padding:0 8px}.ant-tag .anticon-close{display:inline-block;font-size:12px;font-size:10px\9;transform:scale(.83333333) rotate(0deg);margin-left:3px;color:rgba(0,0,0,.45);font-weight:700;cursor:pointer;transition:all .3s cubic-bezier(.78,.14,.15,.86)}:root .ant-tag .anticon-close{font-size:12px}.ant-tag .anticon-close:hover{color:rgba(0,0,0,.85)}.ant-tag-has-color{border-color:transparent}.ant-tag-has-color,.ant-tag-has-color .anticon-close,.ant-tag-has-color .anticon-close:hover,.ant-tag-has-color a,.ant-tag-has-color a:hover{color:#fff}.ant-tag-checkable{background-color:transparent;border-color:transparent}.ant-tag-checkable:not(.ant-tag-checkable-checked):hover{color:#1890ff}.ant-tag-checkable-checked,.ant-tag-checkable:active{color:#fff}.ant-tag-checkable-checked{background-color:#1890ff}.ant-tag-checkable:active{background-color:#096dd9}.ant-tag-hidden{display:none}.ant-tag-pink{color:#eb2f96;background:#fff0f6;border-color:#ffadd2}.ant-tag-pink-inverse{color:#fff;background:#eb2f96;border-color:#eb2f96}.ant-tag-magenta{color:#eb2f96;background:#fff0f6;border-color:#ffadd2}.ant-tag-magenta-inverse{color:#fff;background:#eb2f96;border-color:#eb2f96}.ant-tag-red{color:#f5222d;background:#fff1f0;border-color:#ffa39e}.ant-tag-red-inverse{color:#fff;background:#f5222d;border-color:#f5222d}.ant-tag-volcano{color:#fa541c;background:#fff2e8;border-color:#ffbb96}.ant-tag-volcano-inverse{color:#fff;background:#fa541c;border-color:#fa541c}.ant-tag-orange{color:#fa8c16;background:#fff7e6;border-color:#ffd591}.ant-tag-orange-inverse{color:#fff;background:#fa8c16;border-color:#fa8c16}.ant-tag-yellow{color:#fadb14;background:#feffe6;border-color:#fffb8f}.ant-tag-yellow-inverse{color:#fff;background:#fadb14;border-color:#fadb14}.ant-tag-gold{color:#faad14;background:#fffbe6;border-color:#ffe58f}.ant-tag-gold-inverse{color:#fff;background:#faad14;border-color:#faad14}.ant-tag-cyan{color:#13c2c2;background:#e6fffb;border-color:#87e8de}.ant-tag-cyan-inverse{color:#fff;background:#13c2c2;border-color:#13c2c2}.ant-tag-lime{color:#a0d911;background:#fcffe6;border-color:#eaff8f}.ant-tag-lime-inverse{color:#fff;background:#a0d911;border-color:#a0d911}.ant-tag-green{color:#52c41a;background:#f6ffed;border-color:#b7eb8f}.ant-tag-green-inverse{color:#fff;background:#52c41a;border-color:#52c41a}.ant-tag-blue{color:#1890ff;background:#e6f7ff;border-color:#91d5ff}.ant-tag-blue-inverse{color:#fff;background:#1890ff;border-color:#1890ff}.ant-tag-geekblue{color:#2f54eb;background:#f0f5ff;border-color:#adc6ff}.ant-tag-geekblue-inverse{color:#fff;background:#2f54eb;border-color:#2f54eb}.ant-tag-purple{color:#722ed1;background:#f9f0ff;border-color:#d3adf7}.ant-tag-purple-inverse{color:#fff;background:#722ed1;border-color:#722ed1} .ant-drawer{position:fixed;z-index:1000;width:0;height:100%;transition:transform .3s cubic-bezier(.7,.3,.1,1),height 0s ease .3s,width 0s ease .3s}.ant-drawer>*{transition:transform .3s cubic-bezier(.7,.3,.1,1),box-shadow .3s cubic-bezier(.7,.3,.1,1)}.ant-drawer-content-wrapper{position:absolute}.ant-drawer .ant-drawer-content{width:100%;height:100%}.ant-drawer-left,.ant-drawer-right{top:0;width:0;height:100%}.ant-drawer-left .ant-drawer-content-wrapper,.ant-drawer-right .ant-drawer-content-wrapper{height:100%}.ant-drawer-left.ant-drawer-open,.ant-drawer-right.ant-drawer-open{width:100%;transition:transform .3s cubic-bezier(.7,.3,.1,1)}.ant-drawer-left.ant-drawer-open.no-mask,.ant-drawer-right.ant-drawer-open.no-mask{width:0}.ant-drawer-left.ant-drawer-open .ant-drawer-content-wrapper{box-shadow:2px 0 8px rgba(0,0,0,.15)}.ant-drawer-right{right:0}.ant-drawer-right .ant-drawer-content-wrapper{right:0}.ant-drawer-right.ant-drawer-open .ant-drawer-content-wrapper{box-shadow:-2px 0 8px rgba(0,0,0,.15)}.ant-drawer-right.ant-drawer-open.no-mask{right:1px;transform:translateX(1px)}.ant-drawer-bottom,.ant-drawer-top{left:0;width:100%;height:0%}.ant-drawer-bottom .ant-drawer-content-wrapper,.ant-drawer-top .ant-drawer-content-wrapper{width:100%}.ant-drawer-bottom.ant-drawer-open,.ant-drawer-top.ant-drawer-open{height:100%;transition:transform .3s cubic-bezier(.7,.3,.1,1)}.ant-drawer-bottom.ant-drawer-open.no-mask,.ant-drawer-top.ant-drawer-open.no-mask{height:0%}.ant-drawer-top{top:0}.ant-drawer-top.ant-drawer-open .ant-drawer-content-wrapper{box-shadow:0 2px 8px rgba(0,0,0,.15)}.ant-drawer-bottom{bottom:0}.ant-drawer-bottom .ant-drawer-content-wrapper{bottom:0}.ant-drawer-bottom.ant-drawer-open .ant-drawer-content-wrapper{box-shadow:0 -2px 8px rgba(0,0,0,.15)}.ant-drawer-bottom.ant-drawer-open.no-mask{bottom:1px;transform:translateY(1px)}.ant-drawer.ant-drawer-open .ant-drawer-mask{height:100%;opacity:1;transition:none;animation:antdDrawerFadeIn .3s cubic-bezier(.7,.3,.1,1)}.ant-drawer-title{margin:0;color:rgba(0,0,0,.85);font-weight:500;font-size:16px;line-height:22px}.ant-drawer-content{position:relative;z-index:1;overflow:auto;background-color:#fff;background-clip:padding-box;border:0}.ant-drawer-close{position:absolute;top:0;right:0;z-index:10;display:block;width:56px;height:56px;padding:0;color:rgba(0,0,0,.45);font-weight:700;font-size:16px;font-style:normal;line-height:56px;text-align:center;text-transform:none;text-decoration:none;background:transparent;border:0;outline:0;cursor:pointer;transition:color .3s;text-rendering:auto}.ant-drawer-close:focus,.ant-drawer-close:hover{color:rgba(0,0,0,.75);text-decoration:none}.ant-drawer-header{position:relative;padding:16px 24px;color:rgba(0,0,0,.65);background:#fff;border-bottom:1px solid #e8e8e8;border-radius:4px 4px 0 0}.ant-drawer-header-no-title{color:rgba(0,0,0,.65);background:#fff}.ant-drawer-body{padding:24px;font-size:14px;line-height:1.5;word-wrap:break-word}.ant-drawer-wrapper-body{height:100%;overflow:auto}.ant-drawer-mask{position:absolute;top:0;left:0;width:100%;height:0;background-color:rgba(0,0,0,.45);opacity:0;filter:alpha(opacity=45);transition:opacity .3s linear,height 0s ease .3s}.ant-drawer-open-content{box-shadow:0 4px 12px rgba(0,0,0,.15)}@keyframes antdDrawerFadeIn{0%{opacity:0}to{opacity:1}} -@font-face{font-family:rmel-iconfont;src:url(data:application/vnd.ms-fontobject;base64,jBgAANAXAAABAAIAAAAAAAIABQMAAAAAAAABAJABAAAAAExQAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAA72A7WQAAAAAAAAAAAAAAAAAAAAAAABoAcgBtAGUAbAAtAGkAYwBvAG4AZgBvAG4AdAAAAA4AUgBlAGcAdQBsAGEAcgAAABYAVgBlAHIAcwBpAG8AbgAgADEALgAwAAAAGgByAG0AZQBsAC0AaQBjAG8AbgBmAG8AbgB0AAAAAAAAAQAAAAsAgAADADBHU1VCsP6z7QAAATgAAABCT1MvMj+3T5QAAAF8AAAAVmNtYXDVllw0AAACOAAAAvJnbHlmOSwMFwAABWAAAA6UaGVhZBgVD7cAAADgAAAANmhoZWEH3gOaAAAAvAAAACRobXR4ZAAAAAAAAdQAAABkbG9jYS04MMwAAAUsAAAANG1heHABLwB7AAABGAAAACBuYW1lc9ztwgAAE/QAAAKpcG9zdFzUsoEAABagAAABLwABAAADgP+AAFwEAAAAAAAEAAABAAAAAAAAAAAAAAAAAAAAGQABAAAAAQAAWTtg718PPPUACwQAAAAAANp65d0AAAAA2nrl3QAA//8EAAMBAAAACAACAAAAAAAAAAEAAAAZAG8ADAAAAAAAAgAAAAoACgAAAP8AAAAAAAAAAQAAAAoAHgAsAAFERkxUAAgABAAAAAAAAAABAAAAAWxpZ2EACAAAAAEAAAABAAQABAAAAAEACAABAAYAAAABAAAAAAABBAABkAAFAAgCiQLMAAAAjwKJAswAAAHrADIBCAAAAgAFAwAAAAAAAAAAAAAAAAAAAAAAAAAAAABQZkVkAEDpQe2iA4D/gABcA4AAgAAAAAEAAAAAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAAAAAABQAAAAMAAAAsAAAABAAAAcIAAQAAAAAAvAADAAEAAAAsAAMACgAAAcIABACQAAAAFAAQAAMABOlB7TztRe1h7XXteO2A7Y3tov//AADpQe077UTtX+1v7XftgO2M7Z///wAAAAAAAAAAAAAAAAAAAAAAAAABABQAFAAWABgAHAAoACoAKgAsAAAAAwAEAAIABQAGAAcACAAJAAoACwAMAA0ADgAPABAAEQASAAEAEwAUABUAFgAXABgAAAEGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAATAAAAAAAAAAGAAA6UEAAOlBAAAAAwAA7TsAAO07AAAABAAA7TwAAO08AAAAAgAA7UQAAO1EAAAABQAA7UUAAO1FAAAABgAA7V8AAO1fAAAABwAA7WAAAO1gAAAACAAA7WEAAO1hAAAACQAA7W8AAO1vAAAACgAA7XAAAO1wAAAACwAA7XEAAO1xAAAADAAA7XIAAO1yAAAADQAA7XMAAO1zAAAADgAA7XQAAO10AAAADwAA7XUAAO11AAAAEAAA7XcAAO13AAAAEQAA7XgAAO14AAAAEgAA7YAAAO2AAAAAAQAA7YwAAO2MAAAAEwAA7Y0AAO2NAAAAFAAA7Z8AAO2fAAAAFQAA7aAAAO2gAAAAFgAA7aEAAO2hAAAAFwAA7aIAAO2iAAAAGAAAAAAAAABmALgBHgFWAZgCAAJiApgCzgMMAzwD2gRCBIgEyAUKBWQFpAYEBj4GXgaCBuAHSgAMAAAAAAOrAqsADwATABcAGwAfACMAJwAzADcAOwA/AEMAAAEhDgEHAx4BFyE+ATcRLgEFMxUjFTMVIyczFSMVMxUrAjUzNSM1MwEhIiY0NjMhMhYUBjcjNTM1IzUzFyM1MzUjNTMDVf1WJDABAQExJAKqJDEBATH+XFZWVlaAVlZWVipWVlZWAVX/ABIYGBIBABIYGBlWVlZWgFZWVlYCqwExJP5WJDEBATEkAaokMX9WKlbWVipWVipW/oAYJBkZJBiqVipW1lYqVgADAAAAAAMrAwAADwAfADMAACUeARchPgE3ES4BJyEOAQczITIWFxEOAQchLgEnET4BJScmKwEiDwEjIgYUFjMhMjY0JiMBAAEwJAFWJDABATAk/qokMAGAAQATFwEBFxP/ABMXAQEXASgeCxK0EgseaxMXFxMCABEZGRFVJDABATAkAaskMAEBMCQXFP6rERkBARkRAVUUF9UeDQ0eFycXFycXAAMAAAAAA6sC2QAWAC0APgAAARUGDwEGIi8BJjQ/AScmND8BNjIfARYFNzY0LwEmIg8BBgcVFh8BFjI/ATY0JwEnJgYHAwYWHwEWNjcTNiYnA6sBCbAHEQceBgaTkwYGHgcRB7AJ/Q+TBgYfBhIGsAkBAQmwBxEHHgYGAUIpCQ8E4wIHCCgJDwTiAwcJAYgQDQqwBgYeBxEGk5MGEgYeBgawChWTBhEHHgYGsAoNEA0KsAYGHgYSBgHZDwMHCP2MCBADDgMHCAJzCA8EAAIAAAAAA5oCbwAQACEAACUnNzY0JiIPAQYUHwEWMjY0JTcnJjQ2Mh8BFhQPAQYiJjQBc6amDRkkDMQNDcQOIRoBDaamDRohDsQNDcQOIRrapqYOIRoNxA0iDcQNGiEOpqYMJBkNxA0iDcQNGSQAAAADAAAAAAO4AqwACwAXACMAAAEOAQceARc+ATcuAQMuASc+ATceARcOAQMOAQceARc+ATcuAQIAmOs1NeuYmOs1NeuYVnACAnBWVnACAnBWNEMBAUM0NEMBAUMCrAKkhoakAgKkhoak/g4CcFZWcAICcFZWcAE+AUM0NEMBAUM0NEMAAAAFAAAAAAOAAqsACwAXACMAMABAAAATITI2NCYjISIGFBYXIT4BNCYnIQ4BFBYTITI2NCYjISIGFBYnHgEXIT4BNCYnIQ4BJSEeARcRDgEHIS4BNRE0NqsBABMXFxP/ABEZGREBABMXFxP/ABEZGREBABMXFxP/ABEZGRoBGREBABMXFxP/ABEZAdQBABEZAQEZEf8AExcXAQAXJxcXJxerARkiGQEBGSIZAVUXJxcXJxfVExcBARcmFwEBFxgBFxP+ABEZAQEZEQIAExcAAAAAAwAAAAADqwJWABkAJgBAAAABIyIGFBY7AR4BFw4BByMiBhQWOwE+ATcuAQUeARchPgE0JichDgEXIy4BJz4BNzMyNjQmKwEOAQceARczMjY0JgLVgBIYGBKAN0gBAUg3gBIYGBKAW3gDA3j+JQEYEgEAEhgYEv8AEhhVgDdIAQFIN4ASGBgSgFt4AwN4W4ASGBgCVRgkGQFJNjZJARkkGAJ4W1t40xIYAQEYJBgBARiSAUk2NkkBGSQYAnhbW3gCGCQZAAEAAAAAA6wCKwAeAAABLgEnDgEHBhYXFjY3PgE3MhYXBwYWFzM+ATc1LgEHAxI7llWH1DgKExcUIwkroWc/byxRExMe7hIYAQIxFgG8NDoBAolyFyoIBg8SVmkBKyVSFjECARgS7x0UEwAAAAEAAAAAA7ICKwAeAAABDgEHJyYGBxUeARczPgEvAT4BMx4BFx4BNz4BJy4BAhRVljtRFjECARgS7h4UE1Itbz5noSsJJBMXEwo50wIrATo0UBQUHe8SGAECMRZSJSsBaVYSDwYIKhdyiQAAAAMAAAAAAvUCvwAUABwAJAAAAT4BNy4BJyMOAQcRHgEXIT4BNzQmJTMeARQGByMTIzUzHgEUBgKTISkBAmZO7xQZAQEZFAEHSWkCNP7UiB0nJx2In5+fHScnAYoXRCROZgIBGhP93hMaAQJhSTVS2QEmOyYB/u+JASY7JgABAAAAAAMSAr8AHAAAAR4BFzMDIw4BFBYXMz4BNCYnIxMzPgE0JicjDgEBpQEmHSGcOx0mJh3kHSYmHSGcOx0mJh3kHSYCeh0mAf6UASY6JwEBJzomAQFsASY6JwEBJwAGAAAAAAOWAtYACwAXACMAQQBSAG4AAAEhPgE0JichDgEUFgEhDgEUFhchPgE0JgMhDgEUFhchPgE0JgUjIgYUFjsBFSMiBhQWOwEVIyIGFBY7ATI2NzUuAQMzFR4BMjY9ATQmKwEiBhQWFyMiBhQWOwEHBh0BFBY7ATI2NCYrATc2PQEuAQFrAgASGBgS/gASGRkCEv4AEhkZEgIAEhgYEv4AEhkZEgIAEhgY/VhVCQwMCUAVCgsLChVACQwMCVUKCwEBC18VAQsTDAwJKwkMDF5VCQwMCTdHBQwJVQoLCwo3SAUBCwJVARgkGAEBGCQY/lUBGCQYAQEYJBgBAQEYJBgBARgkGNUMEgwWDBIMFgwSDAwJgAkMAdZrCQwMCYAJDAwSDNYMEgxUBggJCQwMEgxUBggJCQwAAAAABgAAAAADiwLAAAgAEQAaACYAMgA/AAATDgEUFjI2NCYDDgEUFjI2NCYDDgEUFjI2NCYXIT4BNCYnIQ4BFBY3IT4BNCYnIQ4BFBYDHgEXIT4BNCYnIQ4BtRskJDckJBwbJCQ3JCQcGyQkNiUkjwIAEhgYEv4AEhgYEgIAEhgYEv4AEhgYGQEYEgIAEhgYEv4AEhgBwAEkNiQkNiQBAQEkNiQkNiT+AQEkNiQkNiRqARgkGAEBGCQY/wEYJBgBARgkGAEqEhgBARgkGAEBGAAAAAIAAAAAA1YCVgAWAC0AACUyNj8BNj0BLgErASIGHQEUFhczBwYWBTI2PwE2PQE0JisBIgYHFR4BFzMHBhYBMhEbBz0JARgSqxIYGBJWLA4gAcwQGwg8CRgSqxIYAQEYElUsDSCrEQ55EhTCEhgYEqsSGAFYHjMBEQ55EhTCEhgYEqsSGAFYHjMAAAAAAwAAAAADgALAAAgAGQAlAAAlPgE3NSMVHgEBHgEXMxUzNTM+ATQmJyEOAQMhPgE0JichDgEUFgIAJDABqgEw/vkBJBuWqpYbJCQb/iobJCsCqhIZGRL9VhIZGUABMCQrKyQwAj8bJAGAgAEkNiQBAST+egEYJBgBARgkGAAAAAACAAD//wMrAwEAGwAoAAAlPgE3ES4BIgYHERQGBwYuAjURLgEiBgcRHgEHHgEzITI2NCYjISIGAiJiegIBHi0eAUE1IUE1HQEeLR4BA6bUARgSAgASGBgS/gASGK0Pk2UBFxYeHhb+5DdTDAcPKzwjASAWHh4W/uB2lHYSGRkkGBgAAAADAAAAAANwAscACwAtADkAABMhPgE0JiMhIgYUFgUhIgYUFhchMhYXFgYHIzUuAQ8BBhQfARY2NzUzPgEnLgEFIyIGFBYXMz4BNCbAAlUSGRkS/asSGBgCC/4HEhgYEgIGIDMGBTEoYAEZC0wGBkwMGAFVTWIFCGT+basSGBgSqxIYGAJxARgkGBgkGKwYJBgBJyApOQIiDwoKTAcRB0wKCg8iAmtORFX/GCQYAQEYJBgAAAACAAAAAAOWAsAAFAAoAAABFBYXMxEeATI2NxEzPgE0JichDgEDMxUUFjI2NzUzMjY0JichDgEUFgFrJByVASQ2JAGVHCQkHP5WHCTAQCQ3JAFAGyQkG/8AHCQkAoAbJAH+QBskJBsBwAEkNiQBAST+0OsbJCQb6yQ3JAEBJDckAAoAAAAAA3gC+AAPABYAGgAhACUAKQAtADQAOAA/AAABIQ4BBxEeARchPgE3ES4BASMiJj0BMzUjNTM1IzU0NjsBEyM1MzUjNTM1IzUzEyM1MxUUBjcjNTM1IzUzMhYVAyz9qCAqAQEqIAJYICoBASr+HnEPFpaWlpYWD3HhlpaWlpaWvHGWFhaWlpZxDxYC9wEqIP2oICoBASogAlggKv1eFg9xS5ZLcQ8W/aiWS5ZLlv2olnEPFuGWS5YWDwAAAAIAAP//A4ADAAAPACAAACURLgEnIQ4BBxEeARchPgElFzc2Mh8BFgYjISImPwE+AQOAATAk/aokMAEBMCQCViQw/f1ZhQcUB5UIDA3+AQ4LCGoHFFUCViQwAQEwJP2qJDABATD7bKoICccLFxcLiQgBAAAAAQAAAAADNQI2ABAAAAEHBhQWMj8BFxYyNjQvASYiAdn+ECEsEdfXESwhEP4QLgIm/hEsIRDX1xAhLBH+EAAAAAEAAAAAAzUCNgASAAABBycmJyIOARYfARYyPwE2NC4BAtbW1xAXERsNBgz+ESwR/hAhLQIm19cPARIgIAz+EBD+EC0gAQAAAAQAAAAAA2sC6wAQACEAMwBEAAA3MxUUFjI2PQE0JisBIgYUFhMjIgYUFjsBMjY9ATQmIgYVATI2PQEzMjY0JisBIgYdARQWEzU0JiIGHQEUFjsBMjY0JiPJaB4sHR0WnBYdHX5oFh0dFpwWHR0sHgFqFh5oFh0dFpwWHR1KHiwdHRacFh0dFrFoFh0dFpwWHR0sHgGeHiwdHRacFh0dFv1fHRZoHiwdHRacFh0COWgWHR0WnBYdHSweAAAABAAAAAADVALUABEAIwA0AEYAABMOAQcVHgEXMz4BNCYrATU0Jic+AT0BMzI2NCYnIw4BBxUeAQEjIgYUFhczPgE3NS4BIgYVAx4BOwEVFBYyNjc1LgEnIw4B3RUbAQEbFZEVGxsVYRwUFBxhFRsbFZEVGwEBGwIrYRUbGxWRFRsBARspHJIBGxVhHCkbAQEbFZEVGwEfARsVkRUbAQEbKRxhFRvDARsVYRwpGwEBGxWRFRv+qxwpGwEBGxWRFRsbFQG1FBxhFRsbFZEVGwEBGwAAAAAAABIA3gABAAAAAAAAABUAAAABAAAAAAABAA0AFQABAAAAAAACAAcAIgABAAAAAAADAA0AKQABAAAAAAAEAA0ANgABAAAAAAAFAAsAQwABAAAAAAAGAA0ATgABAAAAAAAKACsAWwABAAAAAAALABMAhgADAAEECQAAACoAmQADAAEECQABABoAwwADAAEECQACAA4A3QADAAEECQADABoA6wADAAEECQAEABoBBQADAAEECQAFABYBHwADAAEECQAGABoBNQADAAEECQAKAFYBTwADAAEECQALACYBpQpDcmVhdGVkIGJ5IGljb25mb250CnJtZWwtaWNvbmZvbnRSZWd1bGFycm1lbC1pY29uZm9udHJtZWwtaWNvbmZvbnRWZXJzaW9uIDEuMHJtZWwtaWNvbmZvbnRHZW5lcmF0ZWQgYnkgc3ZnMnR0ZiBmcm9tIEZvbnRlbGxvIHByb2plY3QuaHR0cDovL2ZvbnRlbGxvLmNvbQAKAEMAcgBlAGEAdABlAGQAIABiAHkAIABpAGMAbwBuAGYAbwBuAHQACgByAG0AZQBsAC0AaQBjAG8AbgBmAG8AbgB0AFIAZQBnAHUAbABhAHIAcgBtAGUAbAAtAGkAYwBvAG4AZgBvAG4AdAByAG0AZQBsAC0AaQBjAG8AbgBmAG8AbgB0AFYAZQByAHMAaQBvAG4AIAAxAC4AMAByAG0AZQBsAC0AaQBjAG8AbgBmAG8AbgB0AEcAZQBuAGUAcgBhAHQAZQBkACAAYgB5ACAAcwB2AGcAMgB0AHQAZgAgAGYAcgBvAG0AIABGAG8AbgB0AGUAbABsAG8AIABwAHIAbwBqAGUAYwB0AC4AaAB0AHQAcAA6AC8ALwBmAG8AbgB0AGUAbABsAG8ALgBjAG8AbQAAAAACAAAAAAAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkBAgEDAQQBBQEGAQcBCAEJAQoBCwEMAQ0BDgEPARABEQESARMBFAEVARYBFwEYARkBGgAIa2V5Ym9hcmQGZGVsZXRlCmNvZGUtYmxvY2sEY29kZQp2aXNpYmlsaXR5CnZpZXctc3BsaXQEbGluawRyZWRvBHVuZG8EYm9sZAZpdGFsaWMMbGlzdC1vcmRlcmVkDmxpc3QtdW5vcmRlcmVkBXF1b3RlDXN0cmlrZXRocm91Z2gJdW5kZXJsaW5lBHdyYXAJZm9udC1zaXplBGdyaWQFaW1hZ2ULZXhwYW5kLWxlc3MLZXhwYW5kLW1vcmUPZnVsbHNjcmVlbi1leGl0CmZ1bGxzY3JlZW4AAAA=);src:url(data:font/ttf;base64,AAEAAAALAIAAAwAwR1NVQrD+s+0AAAE4AAAAQk9TLzI/t0+UAAABfAAAAFZjbWFw1ZZcNAAAAjgAAALyZ2x5ZjksDBcAAAVgAAAOlGhlYWQYFQ+3AAAA4AAAADZoaGVhB94DmgAAALwAAAAkaG10eGQAAAAAAAHUAAAAZGxvY2EtODDMAAAFLAAAADRtYXhwAS8AewAAARgAAAAgbmFtZXPc7cIAABP0AAACqXBvc3Rc1LKBAAAWoAAAAS8AAQAAA4D/gABcBAAAAAAABAAAAQAAAAAAAAAAAAAAAAAAABkAAQAAAAEAAFk7DOdfDzz1AAsEAAAAAADaeuXdAAAAANp65d0AAP//BAADAQAAAAgAAgAAAAAAAAABAAAAGQBvAAwAAAAAAAIAAAAKAAoAAAD/AAAAAAAAAAEAAAAKAB4ALAABREZMVAAIAAQAAAAAAAAAAQAAAAFsaWdhAAgAAAABAAAAAQAEAAQAAAABAAgAAQAGAAAAAQAAAAAAAQQAAZAABQAIAokCzAAAAI8CiQLMAAAB6wAyAQgAAAIABQMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUGZFZABA6UHtogOA/4AAXAOAAIAAAAABAAAAAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAAAAAUAAAADAAAALAAAAAQAAAHCAAEAAAAAALwAAwABAAAALAADAAoAAAHCAAQAkAAAABQAEAADAATpQe087UXtYe117XjtgO2N7aL//wAA6UHtO+1E7V/tb+137YDtjO2f//8AAAAAAAAAAAAAAAAAAAAAAAAAAQAUABQAFgAYABwAKAAqACoALAAAAAMABAACAAUABgAHAAgACQAKAAsADAANAA4ADwAQABEAEgABABMAFAAVABYAFwAYAAABBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAEwAAAAAAAAABgAAOlBAADpQQAAAAMAAO07AADtOwAAAAQAAO08AADtPAAAAAIAAO1EAADtRAAAAAUAAO1FAADtRQAAAAYAAO1fAADtXwAAAAcAAO1gAADtYAAAAAgAAO1hAADtYQAAAAkAAO1vAADtbwAAAAoAAO1wAADtcAAAAAsAAO1xAADtcQAAAAwAAO1yAADtcgAAAA0AAO1zAADtcwAAAA4AAO10AADtdAAAAA8AAO11AADtdQAAABAAAO13AADtdwAAABEAAO14AADteAAAABIAAO2AAADtgAAAAAEAAO2MAADtjAAAABMAAO2NAADtjQAAABQAAO2fAADtnwAAABUAAO2gAADtoAAAABYAAO2hAADtoQAAABcAAO2iAADtogAAABgAAAAAAAAAZgC4AR4BVgGYAgACYgKYAs4DDAM8A9oEQgSIBMgFCgVkBaQGBAY+Bl4GggbgB0oADAAAAAADqwKrAA8AEwAXABsAHwAjACcAMwA3ADsAPwBDAAABIQ4BBwMeARchPgE3ES4BBTMVIxUzFSMnMxUjFTMVKwI1MzUjNTMBISImNDYzITIWFAY3IzUzNSM1MxcjNTM1IzUzA1X9ViQwAQEBMSQCqiQxAQEx/lxWVlZWgFZWVlYqVlZWVgFV/wASGBgSAQASGBgZVlZWVoBWVlZWAqsBMST+ViQxAQExJAGqJDF/VipW1lYqVlYqVv6AGCQZGSQYqlYqVtZWKlYAAwAAAAADKwMAAA8AHwAzAAAlHgEXIT4BNxEuASchDgEHMyEyFhcRDgEHIS4BJxE+ASUnJisBIg8BIyIGFBYzITI2NCYjAQABMCQBViQwAQEwJP6qJDABgAEAExcBARcT/wATFwEBFwEoHgsStBILHmsTFxcTAgARGRkRVSQwAQEwJAGrJDABATAkFxT+qxEZAQEZEQFVFBfVHg0NHhcnFxcnFwADAAAAAAOrAtkAFgAtAD4AAAEVBg8BBiIvASY0PwEnJjQ/ATYyHwEWBTc2NC8BJiIPAQYHFRYfARYyPwE2NCcBJyYGBwMGFh8BFjY3EzYmJwOrAQmwBxEHHgYGk5MGBh4HEQewCf0PkwYGHwYSBrAJAQEJsAcRBx4GBgFCKQkPBOMCBwgoCQ8E4gMHCQGIEA0KsAYGHgcRBpOTBhIGHgYGsAoVkwYRBx4GBrAKDRANCrAGBh4GEgYB2Q8DBwj9jAgQAw4DBwgCcwgPBAACAAAAAAOaAm8AEAAhAAAlJzc2NCYiDwEGFB8BFjI2NCU3JyY0NjIfARYUDwEGIiY0AXOmpg0ZJAzEDQ3EDiEaAQ2mpg0aIQ7EDQ3EDiEa2qamDiEaDcQNIg3EDRohDqamDCQZDcQNIg3EDRkkAAAAAwAAAAADuAKsAAsAFwAjAAABDgEHHgEXPgE3LgEDLgEnPgE3HgEXDgEDDgEHHgEXPgE3LgECAJjrNTXrmJjrNTXrmFZwAgJwVlZwAgJwVjRDAQFDNDRDAQFDAqwCpIaGpAICpIaGpP4OAnBWVnACAnBWVnABPgFDNDRDAQFDNDRDAAAABQAAAAADgAKrAAsAFwAjADAAQAAAEyEyNjQmIyEiBhQWFyE+ATQmJyEOARQWEyEyNjQmIyEiBhQWJx4BFyE+ATQmJyEOASUhHgEXEQ4BByEuATURNDarAQATFxcT/wARGRkRAQATFxcT/wARGRkRAQATFxcT/wARGRkaARkRAQATFxcT/wARGQHUAQARGQEBGRH/ABMXFwEAFycXFycXqwEZIhkBARkiGQFVFycXFycX1RMXAQEXJhcBARcYARcT/gARGQEBGRECABMXAAAAAAMAAAAAA6sCVgAZACYAQAAAASMiBhQWOwEeARcOAQcjIgYUFjsBPgE3LgEFHgEXIT4BNCYnIQ4BFyMuASc+ATczMjY0JisBDgEHHgEXMzI2NCYC1YASGBgSgDdIAQFIN4ASGBgSgFt4AwN4/iUBGBIBABIYGBL/ABIYVYA3SAEBSDeAEhgYEoBbeAMDeFuAEhgYAlUYJBkBSTY2SQEZJBgCeFtbeNMSGAEBGCQYAQEYkgFJNjZJARkkGAJ4W1t4AhgkGQABAAAAAAOsAisAHgAAAS4BJw4BBwYWFxY2Nz4BNzIWFwcGFhczPgE3NS4BBwMSO5ZVh9Q4ChMXFCMJK6FnP28sURMTHu4SGAECMRYBvDQ6AQKJchcqCAYPElZpASslUhYxAgEYEu8dFBMAAAABAAAAAAOyAisAHgAAAQ4BBycmBgcVHgEXMz4BLwE+ATMeARceATc+AScuAQIUVZY7URYxAgEYEu4eFBNSLW8+Z6ErCSQTFxMKOdMCKwE6NFAUFB3vEhgBAjEWUiUrAWlWEg8GCCoXcokAAAADAAAAAAL1Ar8AFAAcACQAAAE+ATcuAScjDgEHER4BFyE+ATc0JiUzHgEUBgcjEyM1Mx4BFAYCkyEpAQJmTu8UGQEBGRQBB0lpAjT+1IgdJycdiJ+fnx0nJwGKF0QkTmYCARoT/d4TGgECYUk1UtkBJjsmAf7viQEmOyYAAQAAAAADEgK/ABwAAAEeARczAyMOARQWFzM+ATQmJyMTMz4BNCYnIw4BAaUBJh0hnDsdJiYd5B0mJh0hnDsdJiYd5B0mAnodJgH+lAEmOicBASc6JgEBbAEmOicBAScABgAAAAADlgLWAAsAFwAjAEEAUgBuAAABIT4BNCYnIQ4BFBYBIQ4BFBYXIT4BNCYDIQ4BFBYXIT4BNCYFIyIGFBY7ARUjIgYUFjsBFSMiBhQWOwEyNjc1LgEDMxUeATI2PQE0JisBIgYUFhcjIgYUFjsBBwYdARQWOwEyNjQmKwE3Nj0BLgEBawIAEhgYEv4AEhkZAhL+ABIZGRICABIYGBL+ABIZGRICABIYGP1YVQkMDAlAFQoLCwoVQAkMDAlVCgsBAQtfFQELEwwMCSsJDAxeVQkMDAk3RwUMCVUKCwsKN0gFAQsCVQEYJBgBARgkGP5VARgkGAEBGCQYAQEBGCQYAQEYJBjVDBIMFgwSDBYMEgwMCYAJDAHWawkMDAmACQwMEgzWDBIMVAYICQkMDBIMVAYICQkMAAAAAAYAAAAAA4sCwAAIABEAGgAmADIAPwAAEw4BFBYyNjQmAw4BFBYyNjQmAw4BFBYyNjQmFyE+ATQmJyEOARQWNyE+ATQmJyEOARQWAx4BFyE+ATQmJyEOAbUbJCQ3JCQcGyQkNyQkHBskJDYlJI8CABIYGBL+ABIYGBICABIYGBL+ABIYGBkBGBICABIYGBL+ABIYAcABJDYkJDYkAQEBJDYkJDYk/gEBJDYkJDYkagEYJBgBARgkGP8BGCQYAQEYJBgBKhIYAQEYJBgBARgAAAACAAAAAANWAlYAFgAtAAAlMjY/ATY9AS4BKwEiBh0BFBYXMwcGFgUyNj8BNj0BNCYrASIGBxUeARczBwYWATIRGwc9CQEYEqsSGBgSViwOIAHMEBsIPAkYEqsSGAEBGBJVLA0gqxEOeRIUwhIYGBKrEhgBWB4zAREOeRIUwhIYGBKrEhgBWB4zAAAAAAMAAAAAA4ACwAAIABkAJQAAJT4BNzUjFR4BAR4BFzMVMzUzPgE0JichDgEDIT4BNCYnIQ4BFBYCACQwAaoBMP75ASQblqqWGyQkG/4qGyQrAqoSGRkS/VYSGRlAATAkKyskMAI/GyQBgIABJDYkAQEk/noBGCQYAQEYJBgAAAAAAgAA//8DKwMBABsAKAAAJT4BNxEuASIGBxEUBgcGLgI1ES4BIgYHER4BBx4BMyEyNjQmIyEiBgIiYnoCAR4tHgFBNSFBNR0BHi0eAQOm1AEYEgIAEhgYEv4AEhitD5NlARcWHh4W/uQ3UwwHDys8IwEgFh4eFv7gdpR2EhkZJBgYAAAAAwAAAAADcALHAAsALQA5AAATIT4BNCYjISIGFBYFISIGFBYXITIWFxYGByM1LgEPAQYUHwEWNjc1Mz4BJy4BBSMiBhQWFzM+ATQmwAJVEhkZEv2rEhgYAgv+BxIYGBICBiAzBgUxKGABGQtMBgZMDBgBVU1iBQhk/m2rEhgYEqsSGBgCcQEYJBgYJBisGCQYAScgKTkCIg8KCkwHEQdMCgoPIgJrTkRV/xgkGAEBGCQYAAAAAgAAAAADlgLAABQAKAAAARQWFzMRHgEyNjcRMz4BNCYnIQ4BAzMVFBYyNjc1MzI2NCYnIQ4BFBYBayQclQEkNiQBlRwkJBz+VhwkwEAkNyQBQBskJBv/ABwkJAKAGyQB/kAbJCQbAcABJDYkAQEk/tDrGyQkG+skNyQBASQ3JAAKAAAAAAN4AvgADwAWABoAIQAlACkALQA0ADgAPwAAASEOAQcRHgEXIT4BNxEuAQEjIiY9ATM1IzUzNSM1NDY7ARMjNTM1IzUzNSM1MxMjNTMVFAY3IzUzNSM1MzIWFQMs/aggKgEBKiACWCAqAQEq/h5xDxaWlpaWFg9x4ZaWlpaWlrxxlhYWlpaWcQ8WAvcBKiD9qCAqAQEqIAJYICr9XhYPcUuWS3EPFv2olkuWS5b9qJZxDxbhlkuWFg8AAAACAAD//wOAAwAADwAgAAAlES4BJyEOAQcRHgEXIT4BJRc3NjIfARYGIyEiJj8BPgEDgAEwJP2qJDABATAkAlYkMP39WYUHFAeVCAwN/gEOCwhqBxRVAlYkMAEBMCT9qiQwAQEw+2yqCAnHCxcXC4kIAQAAAAEAAAAAAzUCNgAQAAABBwYUFjI/ARcWMjY0LwEmIgHZ/hAhLBHX1xEsIRD+EC4CJv4RLCEQ19cQISwR/hAAAAABAAAAAAM1AjYAEgAAAQcnJiciDgEWHwEWMj8BNjQuAQLW1tcQFxEbDQYM/hEsEf4QIS0CJtfXDwESICAM/hAQ/hAtIAEAAAAEAAAAAANrAusAEAAhADMARAAANzMVFBYyNj0BNCYrASIGFBYTIyIGFBY7ATI2PQE0JiIGFQEyNj0BMzI2NCYrASIGHQEUFhM1NCYiBh0BFBY7ATI2NCYjyWgeLB0dFpwWHR1+aBYdHRacFh0dLB4BahYeaBYdHRacFh0dSh4sHR0WnBYdHRaxaBYdHRacFh0dLB4Bnh4sHR0WnBYdHRb9Xx0WaB4sHR0WnBYdAjloFh0dFpwWHR0sHgAAAAQAAAAAA1QC1AARACMANABGAAATDgEHFR4BFzM+ATQmKwE1NCYnPgE9ATMyNjQmJyMOAQcVHgEBIyIGFBYXMz4BNzUuASIGFQMeATsBFRQWMjY3NS4BJyMOAd0VGwEBGxWRFRsbFWEcFBQcYRUbGxWRFRsBARsCK2EVGxsVkRUbAQEbKRySARsVYRwpGwEBGxWRFRsBHwEbFZEVGwEBGykcYRUbwwEbFWEcKRsBARsVkRUb/qscKRsBARsVkRUbGxUBtRQcYRUbGxWRFRsBARsAAAAAAAASAN4AAQAAAAAAAAAVAAAAAQAAAAAAAQANABUAAQAAAAAAAgAHACIAAQAAAAAAAwANACkAAQAAAAAABAANADYAAQAAAAAABQALAEMAAQAAAAAABgANAE4AAQAAAAAACgArAFsAAQAAAAAACwATAIYAAwABBAkAAAAqAJkAAwABBAkAAQAaAMMAAwABBAkAAgAOAN0AAwABBAkAAwAaAOsAAwABBAkABAAaAQUAAwABBAkABQAWAR8AAwABBAkABgAaATUAAwABBAkACgBWAU8AAwABBAkACwAmAaUKQ3JlYXRlZCBieSBpY29uZm9udApybWVsLWljb25mb250UmVndWxhcnJtZWwtaWNvbmZvbnRybWVsLWljb25mb250VmVyc2lvbiAxLjBybWVsLWljb25mb250R2VuZXJhdGVkIGJ5IHN2ZzJ0dGYgZnJvbSBGb250ZWxsbyBwcm9qZWN0Lmh0dHA6Ly9mb250ZWxsby5jb20ACgBDAHIAZQBhAHQAZQBkACAAYgB5ACAAaQBjAG8AbgBmAG8AbgB0AAoAcgBtAGUAbAAtAGkAYwBvAG4AZgBvAG4AdABSAGUAZwB1AGwAYQByAHIAbQBlAGwALQBpAGMAbwBuAGYAbwBuAHQAcgBtAGUAbAAtAGkAYwBvAG4AZgBvAG4AdABWAGUAcgBzAGkAbwBuACAAMQAuADAAcgBtAGUAbAAtAGkAYwBvAG4AZgBvAG4AdABHAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAHMAdgBnADIAdAB0AGYAIABmAHIAbwBtACAARgBvAG4AdABlAGwAbABvACAAcAByAG8AagBlAGMAdAAuAGgAdAB0AHAAOgAvAC8AZgBvAG4AdABlAGwAbABvAC4AYwBvAG0AAAAAAgAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAQIBAwEEAQUBBgEHAQgBCQEKAQsBDAENAQ4BDwEQAREBEgETARQBFQEWARcBGAEZARoACGtleWJvYXJkBmRlbGV0ZQpjb2RlLWJsb2NrBGNvZGUKdmlzaWJpbGl0eQp2aWV3LXNwbGl0BGxpbmsEcmVkbwR1bmRvBGJvbGQGaXRhbGljDGxpc3Qtb3JkZXJlZA5saXN0LXVub3JkZXJlZAVxdW90ZQ1zdHJpa2V0aHJvdWdoCXVuZGVybGluZQR3cmFwCWZvbnQtc2l6ZQRncmlkBWltYWdlC2V4cGFuZC1sZXNzC2V4cGFuZC1tb3JlD2Z1bGxzY3JlZW4tZXhpdApmdWxsc2NyZWVuAAAA) format("truetype")}.rmel-iconfont{font-family:rmel-iconfont!important;font-size:16px;font-style:normal;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.rmel-icon-keyboard:before{content:"\ED80"}.rmel-icon-delete:before{content:"\ED3C"}.rmel-icon-code-block:before{content:"\E941"}.rmel-icon-code:before{content:"\ED3B"}.rmel-icon-visibility:before{content:"\ED44"}.rmel-icon-view-split:before{content:"\ED45"}.rmel-icon-link:before{content:"\ED5F"}.rmel-icon-redo:before{content:"\ED60"}.rmel-icon-undo:before{content:"\ED61"}.rmel-icon-bold:before{content:"\ED6F"}.rmel-icon-italic:before{content:"\ED70"}.rmel-icon-list-ordered:before{content:"\ED71"}.rmel-icon-list-unordered:before{content:"\ED72"}.rmel-icon-quote:before{content:"\ED73"}.rmel-icon-strikethrough:before{content:"\ED74"}.rmel-icon-underline:before{content:"\ED75"}.rmel-icon-wrap:before{content:"\ED77"}.rmel-icon-font-size:before{content:"\ED78"}.rmel-icon-grid:before{content:"\ED8C"}.rmel-icon-image:before{content:"\ED8D"}.rmel-icon-expand-less:before{content:"\ED9F"}.rmel-icon-expand-more:before{content:"\EDA0"}.rmel-icon-fullscreen-exit:before{content:"\EDA1"}.rmel-icon-fullscreen:before{content:"\EDA2"}.rc-md-navigation{min-height:38px;padding:0 8px;box-sizing:border-box;border-bottom:1px solid #e0e0e0;font-size:16px;background:#f5f5f5;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:flex;flex-direction:row;justify-content:space-between}.rc-md-navigation.in-visible{display:none}.rc-md-navigation .navigation-nav{align-items:center;justify-content:center;font-size:14px;color:#757575}.rc-md-navigation .button-wrap,.rc-md-navigation .navigation-nav{display:flex;flex-direction:row}.rc-md-navigation .button-wrap{flex-wrap:wrap}.rc-md-navigation .button-wrap .button{position:relative;min-width:24px;height:28px;margin-right:5px;display:inline-block;cursor:pointer;line-height:28px;text-align:center;color:#757575}.rc-md-navigation .button-wrap .button:hover{color:#212121}.rc-md-navigation .button-wrap .button.disabled{color:#bdbdbd;cursor:not-allowed}.rc-md-navigation .button-wrap .rmel-iconfont{font-size:18px}.rc-md-navigation li,.rc-md-navigation ul{list-style:none;margin:0;padding:0}.rc-md-navigation .h1,.rc-md-navigation .h2,.rc-md-navigation .h3,.rc-md-navigation .h4,.rc-md-navigation .h5,.rc-md-navigation .h6,.rc-md-navigation h1,.rc-md-navigation h2,.rc-md-navigation h3,.rc-md-navigation h4,.rc-md-navigation h5,.rc-md-navigation h6{font-family:inherit;font-weight:500;color:inherit;padding:0;margin:0;line-height:1.1}.rc-md-navigation h1{font-size:34px}.rc-md-navigation h2{font-size:30px}.rc-md-navigation h3{font-size:24px}.rc-md-navigation h4{font-size:18px}.rc-md-navigation h5{font-size:14px}.rc-md-navigation h6{font-size:12px}.rc-md-editor .tool-bar{position:absolute;z-index:1;right:8px;top:8px}.rc-md-editor .tool-bar .button{min-width:24px;height:28px;margin-right:5px;display:inline-block;cursor:pointer;font-size:14px;line-height:28px;text-align:center;color:#999}.rc-md-editor .tool-bar .button:hover{color:#333}.rc-md-editor{padding-bottom:1px;position:relative;border:1px solid #e0e0e0;background:#fff;box-sizing:border-box;display:flex;flex-direction:column}.rc-md-editor.full{width:100%;height:100%!important;position:fixed;left:0;top:0;z-index:1000}.rc-md-editor .editor-container{flex:1 1;display:flex;width:100%;min-height:0;position:relative}.rc-md-editor .editor-container>.section.in-visible{display:none}.rc-md-editor .editor-container>.section>.section-container{padding:10px 15px 15px}.rc-md-editor .editor-container .sec-md{flex:1 1;min-height:0;min-width:0}.rc-md-editor .editor-container .sec-md .input{display:block;box-sizing:border-box;width:100%;height:100%;overflow-y:scroll;border:none;resize:none;outline:none;min-height:0;background:#fff;color:#333;font-size:14px;line-height:1.7}.rc-md-editor .editor-container .sec-html{flex:1 1;min-height:0;min-width:0}.rc-md-editor .editor-container .sec-html .html-wrap{height:100%;box-sizing:border-box;overflow:auto}.custom-html-style{color:#333}.custom-html-style h1{font-size:32px;padding:0;border:none;font-weight:700;margin:32px 0;line-height:1.2}.custom-html-style h2{font-size:24px;padding:0;border:none;font-weight:700;margin:24px 0;line-height:1.7}.custom-html-style h3{font-size:18px;margin:18px 0;padding:0;line-height:1.7;border:none}.custom-html-style p{font-size:14px;line-height:1.7;margin:8px 0}.custom-html-style a{color:#0052d9}.custom-html-style a:hover{text-decoration:none}.custom-html-style strong{font-weight:700}.custom-html-style ol,.custom-html-style ul{font-size:14px;line-height:28px;padding-left:36px}.custom-html-style li{margin-bottom:8px;line-height:1.7}.custom-html-style hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.custom-html-style pre{display:block;padding:20px;line-height:28px;word-break:break-word}.custom-html-style code,.custom-html-style pre{background-color:#f5f5f5;font-size:14px;border-radius:0;overflow-x:auto}.custom-html-style code{padding:3px 0;margin:0;word-break:normal}.custom-html-style code:after,.custom-html-style code:before{letter-spacing:0}.custom-html-style blockquote{position:relative;margin:16px 0;padding:5px 8px 5px 30px;background:none repeat scroll 0 0 rgba(102,128,153,.05);color:#333;border:none;border-left:10px solid #d6dbdf}.custom-html-style img,.custom-html-style video{max-width:100%}.custom-html-style table{font-size:14px;line-height:1.7;max-width:100%;overflow:auto;border:1px solid #f6f6f6;border-collapse:collapse;border-spacing:0;box-sizing:border-box}.custom-html-style table td,.custom-html-style table th{word-break:break-all;word-wrap:break-word;white-space:normal}.custom-html-style table tr{border:1px solid #efefef}.custom-html-style table tr:nth-child(2n){background-color:transparent}.custom-html-style table th{text-align:center;font-weight:700;border:1px solid #efefef;padding:10px 6px;background-color:#f5f7fa;word-break:break-word}.custom-html-style table td{border:1px solid #efefef;text-align:left;padding:10px 15px;word-break:break-word;min-width:60px}.rc-md-editor .drop-wrap{display:block;position:absolute;left:0;top:28px;z-index:2;min-width:20px;padding:10px 0;text-align:center;background-color:#fff;border-color:#f1f1f1 #ddd #ddd #f1f1f1;border-style:solid;border-width:1px}.rc-md-editor .drop-wrap.hidden{display:none!important}.rc-md-editor .header-list .list-item{width:100px;box-sizing:border-box;padding:8px 0}.rc-md-editor .header-list .list-item:hover{background:#f5f5f5}.rc-md-editor .table-list.wrap{position:relative;margin:0 10px;box-sizing:border-box}.rc-md-editor .table-list.wrap .list-item{position:absolute;top:0;left:0;display:inline-block;width:20px;height:20px;background-color:#e0e0e0;border-radius:3px}.rc-md-editor .table-list.wrap .list-item.active{background:#9e9e9e} +@font-face{font-family:rmel-iconfont;src:url(data:application/vnd.ms-fontobject;base64,fBkAAMAYAAABAAIAAAAAAAIABQMAAAAAAAABAJABAAAAAExQAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAB9vj4gAAAAAAAAAAAAAAAAAAAAAAABoAcgBtAGUAbAAtAGkAYwBvAG4AZgBvAG4AdAAAAA4AUgBlAGcAdQBsAGEAcgAAABYAVgBlAHIAcwBpAG8AbgAgADEALgAwAAAAGgByAG0AZQBsAC0AaQBjAG8AbgBmAG8AbgB0AAAAAAAAAQAAAAsAgAADADBHU1VCsP6z7QAAATgAAABCT1MvMj3jT5QAAAF8AAAAVmNtYXBA5I9dAAACPAAAAwhnbHlmMImhbQAABXwAAA9gaGVhZBtQ+k8AAADgAAAANmhoZWEH3gObAAAAvAAAACRobXR4aAAAAAAAAdQAAABobG9jYTX6MgAAAAVEAAAANm1heHABMAB7AAABGAAAACBuYW1lc9ztwgAAFNwAAAKpcG9zdCcpv64AABeIAAABNQABAAADgP+AAFwEAAAAAAAEAAABAAAAAAAAAAAAAAAAAAAAGgABAAAAAQAA4uPbB18PPPUACwQAAAAAANwY2ykAAAAA3BjbKQAA//8EAAMBAAAACAACAAAAAAAAAAEAAAAaAG8ADAAAAAAAAgAAAAoACgAAAP8AAAAAAAAAAQAAAAoAHgAsAAFERkxUAAgABAAAAAAAAAABAAAAAWxpZ2EACAAAAAEAAAABAAQABAAAAAEACAABAAYAAAABAAAAAAABBAABkAAFAAgCiQLMAAAAjwKJAswAAAHrADIBCAAAAgAFAwAAAAAAAAAAAAAAAAAAAAAAAAAAAABQZkVkAEDnbe2iA4D/gABcA4AAgAAAAAEAAAAAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAAAAAUAAAADAAAALAAAAAQAAAHMAAEAAAAAAMYAAwABAAAALAADAAoAAAHMAAQAmgAAABYAEAADAAbnbelB7TztRe1h7XXteO2A7Y3tov//AADnbelB7TvtRO1f7W/td+2A7Yztn///AAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAWABYAFgAYABoAHgAqACwALAAuAAAAAQAEAAUAAwAGAAcACAAJAAoACwAMAA0ADgAPABAAEQASABMAAgAUABUAFgAXABgAGQAAAQYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAABPAAAAAAAAAAZAADnbQAA520AAAABAADpQQAA6UEAAAAEAADtOwAA7TsAAAAFAADtPAAA7TwAAAADAADtRAAA7UQAAAAGAADtRQAA7UUAAAAHAADtXwAA7V8AAAAIAADtYAAA7WAAAAAJAADtYQAA7WEAAAAKAADtbwAA7W8AAAALAADtcAAA7XAAAAAMAADtcQAA7XEAAAANAADtcgAA7XIAAAAOAADtcwAA7XMAAAAPAADtdAAA7XQAAAAQAADtdQAA7XUAAAARAADtdwAA7XcAAAASAADteAAA7XgAAAATAADtgAAA7YAAAAACAADtjAAA7YwAAAAUAADtjQAA7Y0AAAAVAADtnwAA7Z8AAAAWAADtoAAA7aAAAAAXAADtoQAA7aEAAAAYAADtogAA7aIAAAAZAAAAAABmAMwBHgGEAbwB/gJmAsgC/gM0A3IDogRABKgE7gUuBXAFygYKBmoGpAbEBugHRgewAAAABQAAAAADVgLWAAsAGAAlADQAQAAAEyEyFhQGByEuATQ2Fz4BNyEeARQGIyEiJgM0NjchHgEUBiMhIiY3PgEzITIeARQOASMhIiYnFhQPAQYmNRE0NhfWAlQSGRkS/awSGRnaARgTAWASGRkS/qASGfQZEgJUEhkZEv2sEhnzARgTAWAMFAsLFAz+oBIZOQgIkgseHgsC1RklGAEBGCUZ8hMYAQEYJRkZ/oUTGAEBGCUZGdkSGQsVFxQMGoYGFgaVDAwRASoRDAwAAAAADAAAAAADqwKrAA8AEwAXABsAHwAjACcAMwA3ADsAPwBDAAABIQ4BBwMeARchPgE3ES4BBTMVIxUzFSMnMxUjFTMVKwI1MzUjNTMBISImNDYzITIWFAY3IzUzNSM1MxcjNTM1IzUzA1X9ViQwAQEBMSQCqiQxAQEx/lxWVlZWgFZWVlYqVlZWVgFV/wASGBgSAQASGBgZVlZWVoBWVlZWAqsBMST+ViQxAQExJAGqJDF/VipW1lYqVlYqVv6AGCQZGSQYqlYqVtZWKlYAAwAAAAADKwMAAA8AHwAzAAAlHgEXIT4BNxEuASchDgEHMyEyFhcRDgEHIS4BJxE+ASUnJisBIg8BIyIGFBYzITI2NCYjAQABMCQBViQwAQEwJP6qJDABgAEAExcBARcT/wATFwEBFwEoHgsStBILHmsTFxcTAgARGRkRVSQwAQEwJAGrJDABATAkFxT+qxEZAQEZEQFVFBfVHg0NHhcnFxcnFwADAAAAAAOrAtkAFgAtAD4AAAEVBg8BBiIvASY0PwEnJjQ/ATYyHwEWBTc2NC8BJiIPAQYHFRYfARYyPwE2NCcBJyYGBwMGFh8BFjY3EzYmJwOrAQmwBxEHHgYGk5MGBh4HEQewCf0PkwYGHwYSBrAJAQEJsAcRBx4GBgFCKQkPBOMCBwgoCQ8E4gMHCQGIEA0KsAYGHgcRBpOTBhIGHgYGsAoVkwYRBx4GBrAKDRANCrAGBh4GEgYB2Q8DBwj9jAgQAw4DBwgCcwgPBAACAAAAAAOaAm8AEAAhAAAlJzc2NCYiDwEGFB8BFjI2NCU3JyY0NjIfARYUDwEGIiY0AXOmpg0ZJAzEDQ3EDiEaAQ2mpg0aIQ7EDQ3EDiEa2qamDiEaDcQNIg3EDRohDqamDCQZDcQNIg3EDRkkAAAAAwAAAAADuAKsAAsAFwAjAAABDgEHHgEXPgE3LgEDLgEnPgE3HgEXDgEDDgEHHgEXPgE3LgECAJjrNTXrmJjrNTXrmFZwAgJwVlZwAgJwVjRDAQFDNDRDAQFDAqwCpIaGpAICpIaGpP4OAnBWVnACAnBWVnABPgFDNDRDAQFDNDRDAAAABQAAAAADgAKrAAsAFwAjADAAQAAAEyEyNjQmIyEiBhQWFyE+ATQmJyEOARQWEyEyNjQmIyEiBhQWJx4BFyE+ATQmJyEOASUhHgEXEQ4BByEuATURNDarAQATFxcT/wARGRkRAQATFxcT/wARGRkRAQATFxcT/wARGRkaARkRAQATFxcT/wARGQHUAQARGQEBGRH/ABMXFwEAFycXFycXqwEZIhkBARkiGQFVFycXFycX1RMXAQEXJhcBARcYARcT/gARGQEBGRECABMXAAAAAAMAAAAAA6sCVgAZACYAQAAAASMiBhQWOwEeARcOAQcjIgYUFjsBPgE3LgEFHgEXIT4BNCYnIQ4BFyMuASc+ATczMjY0JisBDgEHHgEXMzI2NCYC1YASGBgSgDdIAQFIN4ASGBgSgFt4AwN4/iUBGBIBABIYGBL/ABIYVYA3SAEBSDeAEhgYEoBbeAMDeFuAEhgYAlUYJBkBSTY2SQEZJBgCeFtbeNMSGAEBGCQYAQEYkgFJNjZJARkkGAJ4W1t4AhgkGQABAAAAAAOsAisAHgAAAS4BJw4BBwYWFxY2Nz4BNzIWFwcGFhczPgE3NS4BBwMSO5ZVh9Q4ChMXFCMJK6FnP28sURMTHu4SGAECMRYBvDQ6AQKJchcqCAYPElZpASslUhYxAgEYEu8dFBMAAAABAAAAAAOyAisAHgAAAQ4BBycmBgcVHgEXMz4BLwE+ATMeARceATc+AScuAQIUVZY7URYxAgEYEu4eFBNSLW8+Z6ErCSQTFxMKOdMCKwE6NFAUFB3vEhgBAjEWUiUrAWlWEg8GCCoXcokAAAADAAAAAAL1Ar8AFAAcACQAAAE+ATcuAScjDgEHER4BFyE+ATc0JiUzHgEUBgcjEyM1Mx4BFAYCkyEpAQJmTu8UGQEBGRQBB0lpAjT+1IgdJycdiJ+fnx0nJwGKF0QkTmYCARoT/d4TGgECYUk1UtkBJjsmAf7viQEmOyYAAQAAAAADEgK/ABwAAAEeARczAyMOARQWFzM+ATQmJyMTMz4BNCYnIw4BAaUBJh0hnDsdJiYd5B0mJh0hnDsdJiYd5B0mAnodJgH+lAEmOicBASc6JgEBbAEmOicBAScABgAAAAADlgLWAAsAFwAjAEEAUgBuAAABIT4BNCYnIQ4BFBYBIQ4BFBYXIT4BNCYDIQ4BFBYXIT4BNCYFIyIGFBY7ARUjIgYUFjsBFSMiBhQWOwEyNjc1LgEDMxUeATI2PQE0JisBIgYUFhcjIgYUFjsBBwYdARQWOwEyNjQmKwE3Nj0BLgEBawIAEhgYEv4AEhkZAhL+ABIZGRICABIYGBL+ABIZGRICABIYGP1YVQkMDAlAFQoLCwoVQAkMDAlVCgsBAQtfFQELEwwMCSsJDAxeVQkMDAk3RwUMCVUKCwsKN0gFAQsCVQEYJBgBARgkGP5VARgkGAEBGCQYAQEBGCQYAQEYJBjVDBIMFgwSDBYMEgwMCYAJDAHWawkMDAmACQwMEgzWDBIMVAYICQkMDBIMVAYICQkMAAAAAAYAAAAAA4sCwAAIABEAGgAmADIAPwAAEw4BFBYyNjQmAw4BFBYyNjQmAw4BFBYyNjQmFyE+ATQmJyEOARQWNyE+ATQmJyEOARQWAx4BFyE+ATQmJyEOAbUbJCQ3JCQcGyQkNyQkHBskJDYlJI8CABIYGBL+ABIYGBICABIYGBL+ABIYGBkBGBICABIYGBL+ABIYAcABJDYkJDYkAQEBJDYkJDYk/gEBJDYkJDYkagEYJBgBARgkGP8BGCQYAQEYJBgBKhIYAQEYJBgBARgAAAACAAAAAANWAlYAFgAtAAAlMjY/ATY9AS4BKwEiBh0BFBYXMwcGFgUyNj8BNj0BNCYrASIGBxUeARczBwYWATIRGwc9CQEYEqsSGBgSViwOIAHMEBsIPAkYEqsSGAEBGBJVLA0gqxEOeRIUwhIYGBKrEhgBWB4zAREOeRIUwhIYGBKrEhgBWB4zAAAAAAMAAAAAA4ACwAAIABkAJQAAJT4BNzUjFR4BAR4BFzMVMzUzPgE0JichDgEDIT4BNCYnIQ4BFBYCACQwAaoBMP75ASQblqqWGyQkG/4qGyQrAqoSGRkS/VYSGRlAATAkKyskMAI/GyQBgIABJDYkAQEk/noBGCQYAQEYJBgAAAAAAgAA//8DKwMBABsAKAAAJT4BNxEuASIGBxEUBgcGLgI1ES4BIgYHER4BBx4BMyEyNjQmIyEiBgIiYnoCAR4tHgFBNSFBNR0BHi0eAQOm1AEYEgIAEhgYEv4AEhitD5NlARcWHh4W/uQ3UwwHDys8IwEgFh4eFv7gdpR2EhkZJBgYAAAAAwAAAAADcALHAAsALQA5AAATIT4BNCYjISIGFBYFISIGFBYXITIWFxYGByM1LgEPAQYUHwEWNjc1Mz4BJy4BBSMiBhQWFzM+ATQmwAJVEhkZEv2rEhgYAgv+BxIYGBICBiAzBgUxKGABGQtMBgZMDBgBVU1iBQhk/m2rEhgYEqsSGBgCcQEYJBgYJBisGCQYAScgKTkCIg8KCkwHEQdMCgoPIgJrTkRV/xgkGAEBGCQYAAAAAgAAAAADlgLAABQAKAAAARQWFzMRHgEyNjcRMz4BNCYnIQ4BAzMVFBYyNjc1MzI2NCYnIQ4BFBYBayQclQEkNiQBlRwkJBz+VhwkwEAkNyQBQBskJBv/ABwkJAKAGyQB/kAbJCQbAcABJDYkAQEk/tDrGyQkG+skNyQBASQ3JAAKAAAAAAN4AvgADwAWABoAIQAlACkALQA0ADgAPwAAASEOAQcRHgEXIT4BNxEuAQEjIiY9ATM1IzUzNSM1NDY7ARMjNTM1IzUzNSM1MxMjNTMVFAY3IzUzNSM1MzIWFQMs/aggKgEBKiACWCAqAQEq/h5xDxaWlpaWFg9x4ZaWlpaWlrxxlhYWlpaWcQ8WAvcBKiD9qCAqAQEqIAJYICr9XhYPcUuWS3EPFv2olkuWS5b9qJZxDxbhlkuWFg8AAAACAAD//wOAAwAADwAgAAAlES4BJyEOAQcRHgEXIT4BJRc3NjIfARYGIyEiJj8BPgEDgAEwJP2qJDABATAkAlYkMP39WYUHFAeVCAwN/gEOCwhqBxRVAlYkMAEBMCT9qiQwAQEw+2yqCAnHCxcXC4kIAQAAAAEAAAAAAzUCNgAQAAABBwYUFjI/ARcWMjY0LwEmIgHZ/hAhLBHX1xEsIRD+EC4CJv4RLCEQ19cQISwR/hAAAAABAAAAAAM1AjYAEgAAAQcnJiciDgEWHwEWMj8BNjQuAQLW1tcQFxEbDQYM/hEsEf4QIS0CJtfXDwESICAM/hAQ/hAtIAEAAAAEAAAAAANrAusAEAAhADMARAAANzMVFBYyNj0BNCYrASIGFBYTIyIGFBY7ATI2PQE0JiIGFQEyNj0BMzI2NCYrASIGHQEUFhM1NCYiBh0BFBY7ATI2NCYjyWgeLB0dFpwWHR1+aBYdHRacFh0dLB4BahYeaBYdHRacFh0dSh4sHR0WnBYdHRaxaBYdHRacFh0dLB4Bnh4sHR0WnBYdHRb9Xx0WaB4sHR0WnBYdAjloFh0dFpwWHR0sHgAAAAQAAAAAA1QC1AARACMANABGAAATDgEHFR4BFzM+ATQmKwE1NCYnPgE9ATMyNjQmJyMOAQcVHgEBIyIGFBYXMz4BNzUuASIGFQMeATsBFRQWMjY3NS4BJyMOAd0VGwEBGxWRFRsbFWEcFBQcYRUbGxWRFRsBARsCK2EVGxsVkRUbAQEbKRySARsVYRwpGwEBGxWRFRsBHwEbFZEVGwEBGykcYRUbwwEbFWEcKRsBARsVkRUb/qscKRsBARsVkRUbGxUBtRQcYRUbGxWRFRsBARsAAAAAAAASAN4AAQAAAAAAAAAVAAAAAQAAAAAAAQANABUAAQAAAAAAAgAHACIAAQAAAAAAAwANACkAAQAAAAAABAANADYAAQAAAAAABQALAEMAAQAAAAAABgANAE4AAQAAAAAACgArAFsAAQAAAAAACwATAIYAAwABBAkAAAAqAJkAAwABBAkAAQAaAMMAAwABBAkAAgAOAN0AAwABBAkAAwAaAOsAAwABBAkABAAaAQUAAwABBAkABQAWAR8AAwABBAkABgAaATUAAwABBAkACgBWAU8AAwABBAkACwAmAaUKQ3JlYXRlZCBieSBpY29uZm9udApybWVsLWljb25mb250UmVndWxhcnJtZWwtaWNvbmZvbnRybWVsLWljb25mb250VmVyc2lvbiAxLjBybWVsLWljb25mb250R2VuZXJhdGVkIGJ5IHN2ZzJ0dGYgZnJvbSBGb250ZWxsbyBwcm9qZWN0Lmh0dHA6Ly9mb250ZWxsby5jb20ACgBDAHIAZQBhAHQAZQBkACAAYgB5ACAAaQBjAG8AbgBmAG8AbgB0AAoAcgBtAGUAbAAtAGkAYwBvAG4AZgBvAG4AdABSAGUAZwB1AGwAYQByAHIAbQBlAGwALQBpAGMAbwBuAGYAbwBuAHQAcgBtAGUAbAAtAGkAYwBvAG4AZgBvAG4AdABWAGUAcgBzAGkAbwBuACAAMQAuADAAcgBtAGUAbAAtAGkAYwBvAG4AZgBvAG4AdABHAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAHMAdgBnADIAdAB0AGYAIABmAHIAbwBtACAARgBvAG4AdABlAGwAbABvACAAcAByAG8AagBlAGMAdAAuAGgAdAB0AHAAOgAvAC8AZgBvAG4AdABlAGwAbABvAC4AYwBvAG0AAAAAAgAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAQIBAwEEAQUBBgEHAQgBCQEKAQsBDAENAQ4BDwEQAREBEgETARQBFQEWARcBGAEZARoBGwADdGFiCGtleWJvYXJkBmRlbGV0ZQpjb2RlLWJsb2NrBGNvZGUKdmlzaWJpbGl0eQp2aWV3LXNwbGl0BGxpbmsEcmVkbwR1bmRvBGJvbGQGaXRhbGljDGxpc3Qtb3JkZXJlZA5saXN0LXVub3JkZXJlZAVxdW90ZQ1zdHJpa2V0aHJvdWdoCXVuZGVybGluZQR3cmFwCWZvbnQtc2l6ZQRncmlkBWltYWdlC2V4cGFuZC1sZXNzC2V4cGFuZC1tb3JlD2Z1bGxzY3JlZW4tZXhpdApmdWxsc2NyZWVuAAAAAAA=);src:url(data:font/ttf;base64,AAEAAAALAIAAAwAwR1NVQrD+s+0AAAE4AAAAQk9TLzI940+UAAABfAAAAFZjbWFwQOSPXQAAAjwAAAMIZ2x5ZjCJoW0AAAV8AAAPYGhlYWQbUPpPAAAA4AAAADZoaGVhB94DmwAAALwAAAAkaG10eGgAAAAAAAHUAAAAaGxvY2E1+jIAAAAFRAAAADZtYXhwATAAewAAARgAAAAgbmFtZXPc7cIAABTcAAACqXBvc3QnKb+uAAAXiAAAATUAAQAAA4D/gABcBAAAAAAABAAAAQAAAAAAAAAAAAAAAAAAABoAAQAAAAEAAOLjgrdfDzz1AAsEAAAAAADcGNspAAAAANwY2ykAAP//BAADAQAAAAgAAgAAAAAAAAABAAAAGgBvAAwAAAAAAAIAAAAKAAoAAAD/AAAAAAAAAAEAAAAKAB4ALAABREZMVAAIAAQAAAAAAAAAAQAAAAFsaWdhAAgAAAABAAAAAQAEAAQAAAABAAgAAQAGAAAAAQAAAAAAAQQAAZAABQAIAokCzAAAAI8CiQLMAAAB6wAyAQgAAAIABQMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUGZFZABA523togOA/4AAXAOAAIAAAAABAAAAAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAAAAAFAAAAAwAAACwAAAAEAAABzAABAAAAAADGAAMAAQAAACwAAwAKAAABzAAEAJoAAAAWABAAAwAG523pQe087UXtYe117XjtgO2N7aL//wAA523pQe077UTtX+1v7XftgO2M7Z///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAFgAWABYAGAAaAB4AKgAsACwALgAAAAEABAAFAAMABgAHAAgACQAKAAsADAANAA4ADwAQABEAEgATAAIAFAAVABYAFwAYABkAAAEGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAATwAAAAAAAAAGQAA520AAOdtAAAAAQAA6UEAAOlBAAAABAAA7TsAAO07AAAABQAA7TwAAO08AAAAAwAA7UQAAO1EAAAABgAA7UUAAO1FAAAABwAA7V8AAO1fAAAACAAA7WAAAO1gAAAACQAA7WEAAO1hAAAACgAA7W8AAO1vAAAACwAA7XAAAO1wAAAADAAA7XEAAO1xAAAADQAA7XIAAO1yAAAADgAA7XMAAO1zAAAADwAA7XQAAO10AAAAEAAA7XUAAO11AAAAEQAA7XcAAO13AAAAEgAA7XgAAO14AAAAEwAA7YAAAO2AAAAAAgAA7YwAAO2MAAAAFAAA7Y0AAO2NAAAAFQAA7Z8AAO2fAAAAFgAA7aAAAO2gAAAAFwAA7aEAAO2hAAAAGAAA7aIAAO2iAAAAGQAAAAAAZgDMAR4BhAG8Af4CZgLIAv4DNANyA6IEQASoBO4FLgVwBcoGCgZqBqQGxAboB0YHsAAAAAUAAAAAA1YC1gALABgAJQA0AEAAABMhMhYUBgchLgE0Nhc+ATchHgEUBiMhIiYDNDY3IR4BFAYjISImNz4BMyEyHgEUDgEjISImJxYUDwEGJjURNDYX1gJUEhkZEv2sEhkZ2gEYEwFgEhkZEv6gEhn0GRICVBIZGRL9rBIZ8wEYEwFgDBQLCxQM/qASGTkICJILHh4LAtUZJRgBARglGfITGAEBGCUZGf6FExgBARglGRnZEhkLFRcUDBqGBhYGlQwMEQEqEQwMAAAAAAwAAAAAA6sCqwAPABMAFwAbAB8AIwAnADMANwA7AD8AQwAAASEOAQcDHgEXIT4BNxEuAQUzFSMVMxUjJzMVIxUzFSsCNTM1IzUzASEiJjQ2MyEyFhQGNyM1MzUjNTMXIzUzNSM1MwNV/VYkMAEBATEkAqokMQEBMf5cVlZWVoBWVlZWKlZWVlYBVf8AEhgYEgEAEhgYGVZWVlaAVlZWVgKrATEk/lYkMQEBMSQBqiQxf1YqVtZWKlZWKlb+gBgkGRkkGKpWKlbWVipWAAMAAAAAAysDAAAPAB8AMwAAJR4BFyE+ATcRLgEnIQ4BBzMhMhYXEQ4BByEuAScRPgElJyYrASIPASMiBhQWMyEyNjQmIwEAATAkAVYkMAEBMCT+qiQwAYABABMXAQEXE/8AExcBARcBKB4LErQSCx5rExcXEwIAERkZEVUkMAEBMCQBqyQwAQEwJBcU/qsRGQEBGREBVRQX1R4NDR4XJxcXJxcAAwAAAAADqwLZABYALQA+AAABFQYPAQYiLwEmND8BJyY0PwE2Mh8BFgU3NjQvASYiDwEGBxUWHwEWMj8BNjQnAScmBgcDBhYfARY2NxM2JicDqwEJsAcRBx4GBpOTBgYeBxEHsAn9D5MGBh8GEgawCQEBCbAHEQceBgYBQikJDwTjAgcIKAkPBOIDBwkBiBANCrAGBh4HEQaTkwYSBh4GBrAKFZMGEQceBgawCg0QDQqwBgYeBhIGAdkPAwcI/YwIEAMOAwcIAnMIDwQAAgAAAAADmgJvABAAIQAAJSc3NjQmIg8BBhQfARYyNjQlNycmNDYyHwEWFA8BBiImNAFzpqYNGSQMxA0NxA4hGgENpqYNGiEOxA0NxA4hGtqmpg4hGg3EDSINxA0aIQ6mpgwkGQ3EDSINxA0ZJAAAAAMAAAAAA7gCrAALABcAIwAAAQ4BBx4BFz4BNy4BAy4BJz4BNx4BFw4BAw4BBx4BFz4BNy4BAgCY6zU165iY6zU165hWcAICcFZWcAICcFY0QwEBQzQ0QwEBQwKsAqSGhqQCAqSGhqT+DgJwVlZwAgJwVlZwAT4BQzQ0QwEBQzQ0QwAAAAUAAAAAA4ACqwALABcAIwAwAEAAABMhMjY0JiMhIgYUFhchPgE0JichDgEUFhMhMjY0JiMhIgYUFiceARchPgE0JichDgElIR4BFxEOAQchLgE1ETQ2qwEAExcXE/8AERkZEQEAExcXE/8AERkZEQEAExcXE/8AERkZGgEZEQEAExcXE/8AERkB1AEAERkBARkR/wATFxcBABcnFxcnF6sBGSIZAQEZIhkBVRcnFxcnF9UTFwEBFyYXAQEXGAEXE/4AERkBARkRAgATFwAAAAADAAAAAAOrAlYAGQAmAEAAAAEjIgYUFjsBHgEXDgEHIyIGFBY7AT4BNy4BBR4BFyE+ATQmJyEOARcjLgEnPgE3MzI2NCYrAQ4BBx4BFzMyNjQmAtWAEhgYEoA3SAEBSDeAEhgYEoBbeAMDeP4lARgSAQASGBgS/wASGFWAN0gBAUg3gBIYGBKAW3gDA3hbgBIYGAJVGCQZAUk2NkkBGSQYAnhbW3jTEhgBARgkGAEBGJIBSTY2SQEZJBgCeFtbeAIYJBkAAQAAAAADrAIrAB4AAAEuAScOAQcGFhcWNjc+ATcyFhcHBhYXMz4BNzUuAQcDEjuWVYfUOAoTFxQjCSuhZz9vLFETEx7uEhgBAjEWAbw0OgECiXIXKggGDxJWaQErJVIWMQIBGBLvHRQTAAAAAQAAAAADsgIrAB4AAAEOAQcnJgYHFR4BFzM+AS8BPgEzHgEXHgE3PgEnLgECFFWWO1EWMQIBGBLuHhQTUi1vPmehKwkkExcTCjnTAisBOjRQFBQd7xIYAQIxFlIlKwFpVhIPBggqF3KJAAAAAwAAAAAC9QK/ABQAHAAkAAABPgE3LgEnIw4BBxEeARchPgE3NCYlMx4BFAYHIxMjNTMeARQGApMhKQECZk7vFBkBARkUAQdJaQI0/tSIHScnHYifn58dJycBihdEJE5mAgEaE/3eExoBAmFJNVLZASY7JgH+74kBJjsmAAEAAAAAAxICvwAcAAABHgEXMwMjDgEUFhczPgE0JicjEzM+ATQmJyMOAQGlASYdIZw7HSYmHeQdJiYdIZw7HSYmHeQdJgJ6HSYB/pQBJjonAQEnOiYBAWwBJjonAQEnAAYAAAAAA5YC1gALABcAIwBBAFIAbgAAASE+ATQmJyEOARQWASEOARQWFyE+ATQmAyEOARQWFyE+ATQmBSMiBhQWOwEVIyIGFBY7ARUjIgYUFjsBMjY3NS4BAzMVHgEyNj0BNCYrASIGFBYXIyIGFBY7AQcGHQEUFjsBMjY0JisBNzY9AS4BAWsCABIYGBL+ABIZGQIS/gASGRkSAgASGBgS/gASGRkSAgASGBj9WFUJDAwJQBUKCwsKFUAJDAwJVQoLAQELXxUBCxMMDAkrCQwMXlUJDAwJN0cFDAlVCgsLCjdIBQELAlUBGCQYAQEYJBj+VQEYJBgBARgkGAEBARgkGAEBGCQY1QwSDBYMEgwWDBIMDAmACQwB1msJDAwJgAkMDBIM1gwSDFQGCAkJDAwSDFQGCAkJDAAAAAAGAAAAAAOLAsAACAARABoAJgAyAD8AABMOARQWMjY0JgMOARQWMjY0JgMOARQWMjY0JhchPgE0JichDgEUFjchPgE0JichDgEUFgMeARchPgE0JichDgG1GyQkNyQkHBskJDckJBwbJCQ2JSSPAgASGBgS/gASGBgSAgASGBgS/gASGBgZARgSAgASGBgS/gASGAHAASQ2JCQ2JAEBASQ2JCQ2JP4BASQ2JCQ2JGoBGCQYAQEYJBj/ARgkGAEBGCQYASoSGAEBGCQYAQEYAAAAAgAAAAADVgJWABYALQAAJTI2PwE2PQEuASsBIgYdARQWFzMHBhYFMjY/ATY9ATQmKwEiBgcVHgEXMwcGFgEyERsHPQkBGBKrEhgYElYsDiABzBAbCDwJGBKrEhgBARgSVSwNIKsRDnkSFMISGBgSqxIYAVgeMwERDnkSFMISGBgSqxIYAVgeMwAAAAADAAAAAAOAAsAACAAZACUAACU+ATc1IxUeAQEeARczFTM1Mz4BNCYnIQ4BAyE+ATQmJyEOARQWAgAkMAGqATD++QEkG5aqlhskJBv+KhskKwKqEhkZEv1WEhkZQAEwJCsrJDACPxskAYCAASQ2JAEBJP56ARgkGAEBGCQYAAAAAAIAAP//AysDAQAbACgAACU+ATcRLgEiBgcRFAYHBi4CNREuASIGBxEeAQceATMhMjY0JiMhIgYCImJ6AgEeLR4BQTUhQTUdAR4tHgEDptQBGBICABIYGBL+ABIYrQ+TZQEXFh4eFv7kN1MMBw8rPCMBIBYeHhb+4HaUdhIZGSQYGAAAAAMAAAAAA3ACxwALAC0AOQAAEyE+ATQmIyEiBhQWBSEiBhQWFyEyFhcWBgcjNS4BDwEGFB8BFjY3NTM+AScuAQUjIgYUFhczPgE0JsACVRIZGRL9qxIYGAIL/gcSGBgSAgYgMwYFMShgARkLTAYGTAwYAVVNYgUIZP5tqxIYGBKrEhgYAnEBGCQYGCQYrBgkGAEnICk5AiIPCgpMBxEHTAoKDyICa05EVf8YJBgBARgkGAAAAAIAAAAAA5YCwAAUACgAAAEUFhczER4BMjY3ETM+ATQmJyEOAQMzFRQWMjY3NTMyNjQmJyEOARQWAWskHJUBJDYkAZUcJCQc/lYcJMBAJDckAUAbJCQb/wAcJCQCgBskAf5AGyQkGwHAASQ2JAEBJP7Q6xskJBvrJDckAQEkNyQACgAAAAADeAL4AA8AFgAaACEAJQApAC0ANAA4AD8AAAEhDgEHER4BFyE+ATcRLgEBIyImPQEzNSM1MzUjNTQ2OwETIzUzNSM1MzUjNTMTIzUzFRQGNyM1MzUjNTMyFhUDLP2oICoBASogAlggKgEBKv4ecQ8WlpaWlhYPceGWlpaWlpa8cZYWFpaWlnEPFgL3ASog/aggKgEBKiACWCAq/V4WD3FLlktxDxb9qJZLlkuW/aiWcQ8W4ZZLlhYPAAAAAgAA//8DgAMAAA8AIAAAJREuASchDgEHER4BFyE+ASUXNzYyHwEWBiMhIiY/AT4BA4ABMCT9qiQwAQEwJAJWJDD9/VmFBxQHlQgMDf4BDgsIagcUVQJWJDABATAk/aokMAEBMPtsqggJxwsXFwuJCAEAAAABAAAAAAM1AjYAEAAAAQcGFBYyPwEXFjI2NC8BJiIB2f4QISwR19cRLCEQ/hAuAib+ESwhENfXECEsEf4QAAAAAQAAAAADNQI2ABIAAAEHJyYnIg4BFh8BFjI/ATY0LgEC1tbXEBcRGw0GDP4RLBH+ECEtAibX1w8BEiAgDP4QEP4QLSABAAAABAAAAAADawLrABAAIQAzAEQAADczFRQWMjY9ATQmKwEiBhQWEyMiBhQWOwEyNj0BNCYiBhUBMjY9ATMyNjQmKwEiBh0BFBYTNTQmIgYdARQWOwEyNjQmI8loHiwdHRacFh0dfmgWHR0WnBYdHSweAWoWHmgWHR0WnBYdHUoeLB0dFpwWHR0WsWgWHR0WnBYdHSweAZ4eLB0dFpwWHR0W/V8dFmgeLB0dFpwWHQI5aBYdHRacFh0dLB4AAAAEAAAAAANUAtQAEQAjADQARgAAEw4BBxUeARczPgE0JisBNTQmJz4BPQEzMjY0JicjDgEHFR4BASMiBhQWFzM+ATc1LgEiBhUDHgE7ARUUFjI2NzUuAScjDgHdFRsBARsVkRUbGxVhHBQUHGEVGxsVkRUbAQEbAithFRsbFZEVGwEBGykckgEbFWEcKRsBARsVkRUbAR8BGxWRFRsBARspHGEVG8MBGxVhHCkbAQEbFZEVG/6rHCkbAQEbFZEVGxsVAbUUHGEVGxsVkRUbAQEbAAAAAAAAEgDeAAEAAAAAAAAAFQAAAAEAAAAAAAEADQAVAAEAAAAAAAIABwAiAAEAAAAAAAMADQApAAEAAAAAAAQADQA2AAEAAAAAAAUACwBDAAEAAAAAAAYADQBOAAEAAAAAAAoAKwBbAAEAAAAAAAsAEwCGAAMAAQQJAAAAKgCZAAMAAQQJAAEAGgDDAAMAAQQJAAIADgDdAAMAAQQJAAMAGgDrAAMAAQQJAAQAGgEFAAMAAQQJAAUAFgEfAAMAAQQJAAYAGgE1AAMAAQQJAAoAVgFPAAMAAQQJAAsAJgGlCkNyZWF0ZWQgYnkgaWNvbmZvbnQKcm1lbC1pY29uZm9udFJlZ3VsYXJybWVsLWljb25mb250cm1lbC1pY29uZm9udFZlcnNpb24gMS4wcm1lbC1pY29uZm9udEdlbmVyYXRlZCBieSBzdmcydHRmIGZyb20gRm9udGVsbG8gcHJvamVjdC5odHRwOi8vZm9udGVsbG8uY29tAAoAQwByAGUAYQB0AGUAZAAgAGIAeQAgAGkAYwBvAG4AZgBvAG4AdAAKAHIAbQBlAGwALQBpAGMAbwBuAGYAbwBuAHQAUgBlAGcAdQBsAGEAcgByAG0AZQBsAC0AaQBjAG8AbgBmAG8AbgB0AHIAbQBlAGwALQBpAGMAbwBuAGYAbwBuAHQAVgBlAHIAcwBpAG8AbgAgADEALgAwAHIAbQBlAGwALQBpAGMAbwBuAGYAbwBuAHQARwBlAG4AZQByAGEAdABlAGQAIABiAHkAIABzAHYAZwAyAHQAdABmACAAZgByAG8AbQAgAEYAbwBuAHQAZQBsAGwAbwAgAHAAcgBvAGoAZQBjAHQALgBoAHQAdABwADoALwAvAGYAbwBuAHQAZQBsAGwAbwAuAGMAbwBtAAAAAAIAAAAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgECAQMBBAEFAQYBBwEIAQkBCgELAQwBDQEOAQ8BEAERARIBEwEUARUBFgEXARgBGQEaARsAA3RhYghrZXlib2FyZAZkZWxldGUKY29kZS1ibG9jawRjb2RlCnZpc2liaWxpdHkKdmlldy1zcGxpdARsaW5rBHJlZG8EdW5kbwRib2xkBml0YWxpYwxsaXN0LW9yZGVyZWQObGlzdC11bm9yZGVyZWQFcXVvdGUNc3RyaWtldGhyb3VnaAl1bmRlcmxpbmUEd3JhcAlmb250LXNpemUEZ3JpZAVpbWFnZQtleHBhbmQtbGVzcwtleHBhbmQtbW9yZQ9mdWxsc2NyZWVuLWV4aXQKZnVsbHNjcmVlbgAAAAAA) format("truetype")}.rmel-iconfont{font-family:rmel-iconfont!important;font-size:16px;font-style:normal;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.rmel-icon-tab:before{content:"\E76D"}.rmel-icon-keyboard:before{content:"\ED80"}.rmel-icon-delete:before{content:"\ED3C"}.rmel-icon-code-block:before{content:"\E941"}.rmel-icon-code:before{content:"\ED3B"}.rmel-icon-visibility:before{content:"\ED44"}.rmel-icon-view-split:before{content:"\ED45"}.rmel-icon-link:before{content:"\ED5F"}.rmel-icon-redo:before{content:"\ED60"}.rmel-icon-undo:before{content:"\ED61"}.rmel-icon-bold:before{content:"\ED6F"}.rmel-icon-italic:before{content:"\ED70"}.rmel-icon-list-ordered:before{content:"\ED71"}.rmel-icon-list-unordered:before{content:"\ED72"}.rmel-icon-quote:before{content:"\ED73"}.rmel-icon-strikethrough:before{content:"\ED74"}.rmel-icon-underline:before{content:"\ED75"}.rmel-icon-wrap:before{content:"\ED77"}.rmel-icon-font-size:before{content:"\ED78"}.rmel-icon-grid:before{content:"\ED8C"}.rmel-icon-image:before{content:"\ED8D"}.rmel-icon-expand-less:before{content:"\ED9F"}.rmel-icon-expand-more:before{content:"\EDA0"}.rmel-icon-fullscreen-exit:before{content:"\EDA1"}.rmel-icon-fullscreen:before{content:"\EDA2"}.rc-md-editor{padding-bottom:1px;position:relative;border:1px solid #e0e0e0;background:#fff;box-sizing:border-box;display:flex;flex-direction:column}.rc-md-editor.full{width:100%;height:100%!important;position:fixed;left:0;top:0;z-index:1000}.rc-md-editor .editor-container{flex:1 1;display:flex;width:100%;min-height:0;position:relative}.rc-md-editor .editor-container>.section.in-visible{display:none}.rc-md-editor .editor-container>.section>.section-container{padding:10px 15px 15px}.rc-md-editor .editor-container .sec-md{flex:1 1;min-height:0;min-width:0}.rc-md-editor .editor-container .sec-md .input{display:block;box-sizing:border-box;width:100%;height:100%;overflow-y:scroll;border:none;resize:none;outline:none;min-height:0;background:#fff;color:#333;font-size:14px;line-height:1.7}.rc-md-editor .editor-container .sec-html{flex:1 1;min-height:0;min-width:0}.rc-md-editor .editor-container .sec-html .html-wrap{height:100%;box-sizing:border-box;overflow:auto}.custom-html-style{color:#333}.custom-html-style h1{font-size:32px;padding:0;border:none;font-weight:700;margin:32px 0;line-height:1.2}.custom-html-style h2{font-size:24px;padding:0;border:none;font-weight:700;margin:24px 0;line-height:1.7}.custom-html-style h3{font-size:18px;margin:18px 0;padding:0;line-height:1.7;border:none}.custom-html-style p{font-size:14px;line-height:1.7;margin:8px 0}.custom-html-style a{color:#0052d9}.custom-html-style a:hover{text-decoration:none}.custom-html-style strong{font-weight:700}.custom-html-style ol,.custom-html-style ul{font-size:14px;line-height:28px;padding-left:36px}.custom-html-style li{margin-bottom:8px;line-height:1.7}.custom-html-style hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.custom-html-style pre{display:block;padding:20px;line-height:28px;word-break:break-word}.custom-html-style code,.custom-html-style pre{background-color:#f5f5f5;font-size:14px;border-radius:0;overflow-x:auto}.custom-html-style code{padding:3px 0;margin:0;word-break:normal}.custom-html-style code:after,.custom-html-style code:before{letter-spacing:0}.custom-html-style blockquote{position:relative;margin:16px 0;padding:5px 8px 5px 30px;background:none repeat scroll 0 0 rgba(102,128,153,.05);color:#333;border:none;border-left:10px solid #d6dbdf}.custom-html-style img,.custom-html-style video{max-width:100%}.custom-html-style table{font-size:14px;line-height:1.7;max-width:100%;overflow:auto;border:1px solid #f6f6f6;border-collapse:collapse;border-spacing:0;box-sizing:border-box}.custom-html-style table td,.custom-html-style table th{word-break:break-all;word-wrap:break-word;white-space:normal}.custom-html-style table tr{border:1px solid #efefef}.custom-html-style table tr:nth-child(2n){background-color:transparent}.custom-html-style table th{text-align:center;font-weight:700;border:1px solid #efefef;padding:10px 6px;background-color:#f5f7fa;word-break:break-word}.custom-html-style table td{border:1px solid #efefef;text-align:left;padding:10px 15px;word-break:break-word;min-width:60px}.rc-md-editor .drop-wrap{display:block;position:absolute;left:0;top:28px;z-index:2;min-width:20px;padding:10px 0;text-align:center;background-color:#fff;border-color:#f1f1f1 #ddd #ddd #f1f1f1;border-style:solid;border-width:1px}.rc-md-editor .drop-wrap.hidden{display:none!important}.rc-md-editor .rc-md-navigation{min-height:38px;padding:0 8px;box-sizing:border-box;border-bottom:1px solid #e0e0e0;font-size:16px;background:#f5f5f5;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:flex;flex-direction:row;justify-content:space-between}.rc-md-editor .rc-md-navigation.in-visible{display:none}.rc-md-editor .rc-md-navigation .navigation-nav{align-items:center;justify-content:center;font-size:14px;color:#757575}.rc-md-editor .rc-md-navigation .button-wrap,.rc-md-editor .rc-md-navigation .navigation-nav{display:flex;flex-direction:row}.rc-md-editor .rc-md-navigation .button-wrap{flex-wrap:wrap}.rc-md-editor .rc-md-navigation .button-wrap .button{position:relative;min-width:24px;height:28px;margin-left:3px;margin-right:3px;display:inline-block;cursor:pointer;line-height:28px;text-align:center;color:#757575}.rc-md-editor .rc-md-navigation .button-wrap .button:hover{color:#212121}.rc-md-editor .rc-md-navigation .button-wrap .button.disabled{color:#bdbdbd;cursor:not-allowed}.rc-md-editor .rc-md-navigation .button-wrap .button:first-child{margin-left:0}.rc-md-editor .rc-md-navigation .button-wrap .button:last-child{margin-right:0}.rc-md-editor .rc-md-navigation .button-wrap .rmel-iconfont{font-size:18px}.rc-md-editor .rc-md-navigation li,.rc-md-editor .rc-md-navigation ul{list-style:none;margin:0;padding:0}.rc-md-editor .rc-md-navigation .h1,.rc-md-editor .rc-md-navigation .h2,.rc-md-editor .rc-md-navigation .h3,.rc-md-editor .rc-md-navigation .h4,.rc-md-editor .rc-md-navigation .h5,.rc-md-editor .rc-md-navigation .h6,.rc-md-editor .rc-md-navigation h1,.rc-md-editor .rc-md-navigation h2,.rc-md-editor .rc-md-navigation h3,.rc-md-editor .rc-md-navigation h4,.rc-md-editor .rc-md-navigation h5,.rc-md-editor .rc-md-navigation h6{font-family:inherit;font-weight:500;color:inherit;padding:0;margin:0;line-height:1.1}.rc-md-editor .rc-md-navigation h1{font-size:34px}.rc-md-editor .rc-md-navigation h2{font-size:30px}.rc-md-editor .rc-md-navigation h3{font-size:24px}.rc-md-editor .rc-md-navigation h4{font-size:18px}.rc-md-editor .rc-md-navigation h5{font-size:14px}.rc-md-editor .rc-md-navigation h6{font-size:12px}.rc-md-editor .tool-bar{position:absolute;z-index:1;right:8px;top:8px}.rc-md-editor .tool-bar .button{min-width:24px;height:28px;margin-right:5px;display:inline-block;cursor:pointer;font-size:14px;line-height:28px;text-align:center;color:#999}.rc-md-editor .tool-bar .button:hover{color:#333}.rc-md-editor .rc-md-divider{display:block;width:1px;background-color:#e0e0e0}.rc-md-editor .table-list.wrap{position:relative;margin:0 10px;box-sizing:border-box}.rc-md-editor .table-list.wrap .list-item{position:absolute;top:0;left:0;display:inline-block;width:20px;height:20px;background-color:#e0e0e0;border-radius:3px}.rc-md-editor .table-list.wrap .list-item.active{background:#9e9e9e}.rc-md-editor .tab-map-list .list-item{width:120px;box-sizing:border-box}.rc-md-editor .tab-map-list .list-item:hover{background:#f5f5f5}.rc-md-editor .tab-map-list .list-item.active{font-weight:700}.rc-md-editor .header-list .list-item{width:100px;box-sizing:border-box;padding:8px 0}.rc-md-editor .header-list .list-item:hover{background:#f5f5f5} .ant-badge{box-sizing:border-box;margin:0;padding:0;color:rgba(0,0,0,.65);font-size:14px;font-variant:tabular-nums;line-height:1.5;list-style:none;font-feature-settings:"tnum";position:relative;display:inline-block;color:unset;line-height:1}.ant-badge-count{min-width:20px;height:20px;padding:0 6px;color:#fff;font-weight:400;font-size:12px;line-height:20px;white-space:nowrap;text-align:center;background:#f5222d;border-radius:10px;box-shadow:0 0 0 1px #fff}.ant-badge-count a,.ant-badge-count a:hover{color:#fff}.ant-badge-multiple-words{padding:0 8px}.ant-badge-dot{width:6px;height:6px;background:#f5222d;border-radius:100%;box-shadow:0 0 0 1px #fff}.ant-badge-count,.ant-badge-dot,.ant-badge .ant-scroll-number-custom-component{position:absolute;top:0;right:0;z-index:1;transform:translate(50%,-50%);transform-origin:100% 0}.ant-badge-status{line-height:inherit;vertical-align:baseline}.ant-badge-status-dot{position:relative;top:-1px;display:inline-block;width:6px;height:6px;vertical-align:middle;border-radius:50%}.ant-badge-status-success{background-color:#52c41a}.ant-badge-status-processing{position:relative;background-color:#1890ff}.ant-badge-status-processing:after{position:absolute;top:0;left:0;width:100%;height:100%;border:1px solid #1890ff;border-radius:50%;animation:antStatusProcessing 1.2s ease-in-out infinite;content:""}.ant-badge-status-default{background-color:#d9d9d9}.ant-badge-status-error{background-color:#f5222d}.ant-badge-status-warning{background-color:#faad14}.ant-badge-status-pink{background:#eb2f96}.ant-badge-status-magenta{background:#eb2f96}.ant-badge-status-red{background:#f5222d}.ant-badge-status-volcano{background:#fa541c}.ant-badge-status-orange{background:#fa8c16}.ant-badge-status-yellow{background:#fadb14}.ant-badge-status-gold{background:#faad14}.ant-badge-status-cyan{background:#13c2c2}.ant-badge-status-lime{background:#a0d911}.ant-badge-status-green{background:#52c41a}.ant-badge-status-blue{background:#1890ff}.ant-badge-status-geekblue{background:#2f54eb}.ant-badge-status-purple{background:#722ed1}.ant-badge-status-text{margin-left:8px;color:rgba(0,0,0,.65);font-size:14px}.ant-badge-zoom-appear,.ant-badge-zoom-enter{animation:antZoomBadgeIn .3s cubic-bezier(.12,.4,.29,1.46);animation-fill-mode:both}.ant-badge-zoom-leave{animation:antZoomBadgeOut .3s cubic-bezier(.71,-.46,.88,.6);animation-fill-mode:both}.ant-badge-not-a-wrapper:not(.ant-badge-status){vertical-align:middle}.ant-badge-not-a-wrapper .ant-scroll-number{position:relative;top:auto;display:block}.ant-badge-not-a-wrapper .ant-badge-count{transform:none}@keyframes antStatusProcessing{0%{transform:scale(.8);opacity:.5}to{transform:scale(2.4);opacity:0}}.ant-scroll-number{overflow:hidden}.ant-scroll-number-only{display:inline-block;height:20px;transition:all .3s cubic-bezier(.645,.045,.355,1)}.ant-scroll-number-only>p.ant-scroll-number-only-unit{height:20px;margin:0}.ant-scroll-number-symbol{vertical-align:top}@keyframes antZoomBadgeIn{0%{transform:scale(0) translate(50%,-50%);opacity:0}to{transform:scale(1) translate(50%,-50%)}}@keyframes antZoomBadgeOut{0%{transform:scale(1) translate(50%,-50%)}to{transform:scale(0) translate(50%,-50%);opacity:0}} .ant-menu{box-sizing:border-box;font-size:14px;font-variant:tabular-nums;line-height:1.5;font-feature-settings:"tnum";margin:0;padding:0;color:rgba(0,0,0,.65);line-height:0;list-style:none;background:#fff;outline:none;box-shadow:0 2px 8px rgba(0,0,0,.15);transition:background .3s,width .2s;zoom:1}.ant-menu:after,.ant-menu:before{display:table;content:""}.ant-menu:after{clear:both}.ant-menu ol,.ant-menu ul{margin:0;padding:0;list-style:none}.ant-menu-hidden{display:none}.ant-menu-item-group-title{padding:8px 16px;color:rgba(0,0,0,.45);font-size:14px;line-height:1.5;transition:all .3s}.ant-menu-submenu,.ant-menu-submenu-inline{transition:border-color .3s cubic-bezier(.645,.045,.355,1),background .3s cubic-bezier(.645,.045,.355,1),padding .15s cubic-bezier(.645,.045,.355,1)}.ant-menu-submenu-selected{color:#1890ff}.ant-menu-item:active,.ant-menu-submenu-title:active{background:#e6f7ff}.ant-menu-submenu .ant-menu-sub{cursor:auto;transition:background .3s cubic-bezier(.645,.045,.355,1),padding .3s cubic-bezier(.645,.045,.355,1)}.ant-menu-item>a{display:block;color:rgba(0,0,0,.65)}.ant-menu-item>a:hover{color:#1890ff}.ant-menu-item>a:before{position:absolute;top:0;right:0;bottom:0;left:0;background-color:transparent;content:""}.ant-menu-item>.ant-badge>a{color:rgba(0,0,0,.65)}.ant-menu-item>.ant-badge>a:hover{color:#1890ff}.ant-menu-item-divider{height:1px;overflow:hidden;line-height:0;background-color:#e8e8e8}.ant-menu-item-active,.ant-menu-item:hover,.ant-menu-submenu-active,.ant-menu-submenu-title:hover,.ant-menu:not(.ant-menu-inline) .ant-menu-submenu-open{color:#1890ff}.ant-menu-horizontal .ant-menu-item,.ant-menu-horizontal .ant-menu-submenu{margin-top:-1px}.ant-menu-horizontal>.ant-menu-item-active,.ant-menu-horizontal>.ant-menu-item:hover,.ant-menu-horizontal>.ant-menu-submenu .ant-menu-submenu-title:hover{background-color:transparent}.ant-menu-item-selected{color:#1890ff}.ant-menu-item-selected>a,.ant-menu-item-selected>a:hover{color:#1890ff}.ant-menu:not(.ant-menu-horizontal) .ant-menu-item-selected{background-color:#e6f7ff}.ant-menu-inline,.ant-menu-vertical,.ant-menu-vertical-left{border-right:1px solid #e8e8e8}.ant-menu-vertical-right{border-left:1px solid #e8e8e8}.ant-menu-vertical-left.ant-menu-sub,.ant-menu-vertical-right.ant-menu-sub,.ant-menu-vertical.ant-menu-sub{min-width:160px;padding:0;border-right:0;transform-origin:0 0}.ant-menu-vertical-left.ant-menu-sub .ant-menu-item,.ant-menu-vertical-right.ant-menu-sub .ant-menu-item,.ant-menu-vertical.ant-menu-sub .ant-menu-item{left:0;margin-left:0;border-right:0}.ant-menu-vertical-left.ant-menu-sub .ant-menu-item:after,.ant-menu-vertical-right.ant-menu-sub .ant-menu-item:after,.ant-menu-vertical.ant-menu-sub .ant-menu-item:after{border-right:0}.ant-menu-vertical-left.ant-menu-sub>.ant-menu-item,.ant-menu-vertical-left.ant-menu-sub>.ant-menu-submenu,.ant-menu-vertical-right.ant-menu-sub>.ant-menu-item,.ant-menu-vertical-right.ant-menu-sub>.ant-menu-submenu,.ant-menu-vertical.ant-menu-sub>.ant-menu-item,.ant-menu-vertical.ant-menu-sub>.ant-menu-submenu{transform-origin:0 0}.ant-menu-horizontal.ant-menu-sub{min-width:114px}.ant-menu-item,.ant-menu-submenu-title{position:relative;display:block;margin:0;padding:0 20px;white-space:nowrap;cursor:pointer;transition:color .3s cubic-bezier(.645,.045,.355,1),border-color .3s cubic-bezier(.645,.045,.355,1),background .3s cubic-bezier(.645,.045,.355,1),padding .15s cubic-bezier(.645,.045,.355,1)}.ant-menu-item .anticon,.ant-menu-submenu-title .anticon{min-width:14px;margin-right:10px;font-size:14px;transition:font-size .15s cubic-bezier(.215,.61,.355,1),margin .3s cubic-bezier(.645,.045,.355,1)}.ant-menu-item .anticon+span,.ant-menu-submenu-title .anticon+span{opacity:1;transition:opacity .3s cubic-bezier(.645,.045,.355,1),width .3s cubic-bezier(.645,.045,.355,1)}.ant-menu>.ant-menu-item-divider{height:1px;margin:1px 0;padding:0;overflow:hidden;line-height:0;background-color:#e8e8e8}.ant-menu-submenu-popup{position:absolute;z-index:1050;background:#fff;border-radius:4px}.ant-menu-submenu-popup .submenu-title-wrapper{padding-right:20px}.ant-menu-submenu-popup:before{position:absolute;top:-7px;right:0;bottom:0;left:0;opacity:.0001;content:" "}.ant-menu-submenu>.ant-menu{background-color:#fff;border-radius:4px}.ant-menu-submenu>.ant-menu-submenu-title:after{transition:transform .3s cubic-bezier(.645,.045,.355,1)}.ant-menu-submenu-inline>.ant-menu-submenu-title .ant-menu-submenu-arrow,.ant-menu-submenu-vertical-left>.ant-menu-submenu-title .ant-menu-submenu-arrow,.ant-menu-submenu-vertical-right>.ant-menu-submenu-title .ant-menu-submenu-arrow,.ant-menu-submenu-vertical>.ant-menu-submenu-title .ant-menu-submenu-arrow{position:absolute;top:50%;right:16px;width:10px;transition:transform .3s cubic-bezier(.645,.045,.355,1)}.ant-menu-submenu-inline>.ant-menu-submenu-title .ant-menu-submenu-arrow:after,.ant-menu-submenu-inline>.ant-menu-submenu-title .ant-menu-submenu-arrow:before,.ant-menu-submenu-vertical-left>.ant-menu-submenu-title .ant-menu-submenu-arrow:after,.ant-menu-submenu-vertical-left>.ant-menu-submenu-title .ant-menu-submenu-arrow:before,.ant-menu-submenu-vertical-right>.ant-menu-submenu-title .ant-menu-submenu-arrow:after,.ant-menu-submenu-vertical-right>.ant-menu-submenu-title .ant-menu-submenu-arrow:before,.ant-menu-submenu-vertical>.ant-menu-submenu-title .ant-menu-submenu-arrow:after,.ant-menu-submenu-vertical>.ant-menu-submenu-title .ant-menu-submenu-arrow:before{position:absolute;width:6px;height:1.5px;background:#fff;background:rgba(0,0,0,.65)\9;background-image:linear-gradient(90deg,rgba(0,0,0,.65),rgba(0,0,0,.65));background-image:none\9;border-radius:2px;transition:background .3s cubic-bezier(.645,.045,.355,1),transform .3s cubic-bezier(.645,.045,.355,1),top .3s cubic-bezier(.645,.045,.355,1);content:""}.ant-menu-submenu-inline>.ant-menu-submenu-title .ant-menu-submenu-arrow:before,.ant-menu-submenu-vertical-left>.ant-menu-submenu-title .ant-menu-submenu-arrow:before,.ant-menu-submenu-vertical-right>.ant-menu-submenu-title .ant-menu-submenu-arrow:before,.ant-menu-submenu-vertical>.ant-menu-submenu-title .ant-menu-submenu-arrow:before{transform:rotate(45deg) translateY(-2px)}.ant-menu-submenu-inline>.ant-menu-submenu-title .ant-menu-submenu-arrow:after,.ant-menu-submenu-vertical-left>.ant-menu-submenu-title .ant-menu-submenu-arrow:after,.ant-menu-submenu-vertical-right>.ant-menu-submenu-title .ant-menu-submenu-arrow:after,.ant-menu-submenu-vertical>.ant-menu-submenu-title .ant-menu-submenu-arrow:after{transform:rotate(-45deg) translateY(2px)}.ant-menu-submenu-inline>.ant-menu-submenu-title:hover .ant-menu-submenu-arrow:after,.ant-menu-submenu-inline>.ant-menu-submenu-title:hover .ant-menu-submenu-arrow:before,.ant-menu-submenu-vertical-left>.ant-menu-submenu-title:hover .ant-menu-submenu-arrow:after,.ant-menu-submenu-vertical-left>.ant-menu-submenu-title:hover .ant-menu-submenu-arrow:before,.ant-menu-submenu-vertical-right>.ant-menu-submenu-title:hover .ant-menu-submenu-arrow:after,.ant-menu-submenu-vertical-right>.ant-menu-submenu-title:hover .ant-menu-submenu-arrow:before,.ant-menu-submenu-vertical>.ant-menu-submenu-title:hover .ant-menu-submenu-arrow:after,.ant-menu-submenu-vertical>.ant-menu-submenu-title:hover .ant-menu-submenu-arrow:before{background:linear-gradient(90deg,#1890ff,#1890ff)}.ant-menu-submenu-inline>.ant-menu-submenu-title .ant-menu-submenu-arrow:before{transform:rotate(-45deg) translateX(2px)}.ant-menu-submenu-inline>.ant-menu-submenu-title .ant-menu-submenu-arrow:after{transform:rotate(45deg) translateX(-2px)}.ant-menu-submenu-open.ant-menu-submenu-inline>.ant-menu-submenu-title .ant-menu-submenu-arrow{transform:translateY(-2px)}.ant-menu-submenu-open.ant-menu-submenu-inline>.ant-menu-submenu-title .ant-menu-submenu-arrow:after{transform:rotate(-45deg) translateX(-2px)}.ant-menu-submenu-open.ant-menu-submenu-inline>.ant-menu-submenu-title .ant-menu-submenu-arrow:before{transform:rotate(45deg) translateX(2px)}.ant-menu-vertical-left .ant-menu-submenu-selected,.ant-menu-vertical-right .ant-menu-submenu-selected,.ant-menu-vertical .ant-menu-submenu-selected{color:#1890ff}.ant-menu-vertical-left .ant-menu-submenu-selected>a,.ant-menu-vertical-right .ant-menu-submenu-selected>a,.ant-menu-vertical .ant-menu-submenu-selected>a{color:#1890ff}.ant-menu-horizontal{line-height:46px;white-space:nowrap;border:0;border-bottom:1px solid #e8e8e8;box-shadow:none}.ant-menu-horizontal>.ant-menu-item,.ant-menu-horizontal>.ant-menu-submenu{position:relative;top:1px;display:inline-block;vertical-align:bottom;border-bottom:2px solid transparent}.ant-menu-horizontal>.ant-menu-item-active,.ant-menu-horizontal>.ant-menu-item-open,.ant-menu-horizontal>.ant-menu-item-selected,.ant-menu-horizontal>.ant-menu-item:hover,.ant-menu-horizontal>.ant-menu-submenu-active,.ant-menu-horizontal>.ant-menu-submenu-open,.ant-menu-horizontal>.ant-menu-submenu-selected,.ant-menu-horizontal>.ant-menu-submenu:hover{color:#1890ff;border-bottom:2px solid #1890ff}.ant-menu-horizontal>.ant-menu-item>a{display:block;color:rgba(0,0,0,.65)}.ant-menu-horizontal>.ant-menu-item>a:hover{color:#1890ff}.ant-menu-horizontal>.ant-menu-item>a:before{bottom:-2px}.ant-menu-horizontal>.ant-menu-item-selected>a{color:#1890ff}.ant-menu-horizontal:after{display:block;clear:both;height:0;content:" "}.ant-menu-inline .ant-menu-item,.ant-menu-vertical-left .ant-menu-item,.ant-menu-vertical-right .ant-menu-item,.ant-menu-vertical .ant-menu-item{position:relative}.ant-menu-inline .ant-menu-item:after,.ant-menu-vertical-left .ant-menu-item:after,.ant-menu-vertical-right .ant-menu-item:after,.ant-menu-vertical .ant-menu-item:after{position:absolute;top:0;right:0;bottom:0;border-right:3px solid #1890ff;transform:scaleY(.0001);opacity:0;transition:transform .15s cubic-bezier(.215,.61,.355,1),opacity .15s cubic-bezier(.215,.61,.355,1);content:""}.ant-menu-inline .ant-menu-item,.ant-menu-inline .ant-menu-submenu-title,.ant-menu-vertical-left .ant-menu-item,.ant-menu-vertical-left .ant-menu-submenu-title,.ant-menu-vertical-right .ant-menu-item,.ant-menu-vertical-right .ant-menu-submenu-title,.ant-menu-vertical .ant-menu-item,.ant-menu-vertical .ant-menu-submenu-title{height:40px;margin-top:4px;margin-bottom:4px;padding:0 16px;overflow:hidden;font-size:14px;line-height:40px;text-overflow:ellipsis}.ant-menu-inline .ant-menu-submenu,.ant-menu-vertical-left .ant-menu-submenu,.ant-menu-vertical-right .ant-menu-submenu,.ant-menu-vertical .ant-menu-submenu{padding-bottom:.02px}.ant-menu-inline .ant-menu-item:not(:last-child),.ant-menu-vertical-left .ant-menu-item:not(:last-child),.ant-menu-vertical-right .ant-menu-item:not(:last-child),.ant-menu-vertical .ant-menu-item:not(:last-child){margin-bottom:8px}.ant-menu-inline>.ant-menu-item,.ant-menu-inline>.ant-menu-submenu>.ant-menu-submenu-title,.ant-menu-vertical-left>.ant-menu-item,.ant-menu-vertical-left>.ant-menu-submenu>.ant-menu-submenu-title,.ant-menu-vertical-right>.ant-menu-item,.ant-menu-vertical-right>.ant-menu-submenu>.ant-menu-submenu-title,.ant-menu-vertical>.ant-menu-item,.ant-menu-vertical>.ant-menu-submenu>.ant-menu-submenu-title{height:40px;line-height:40px}.ant-menu-inline{width:100%}.ant-menu-inline .ant-menu-item-selected:after,.ant-menu-inline .ant-menu-selected:after{transform:scaleY(1);opacity:1;transition:transform .15s cubic-bezier(.645,.045,.355,1),opacity .15s cubic-bezier(.645,.045,.355,1)}.ant-menu-inline .ant-menu-item,.ant-menu-inline .ant-menu-submenu-title{width:calc(100% + 1px)}.ant-menu-inline .ant-menu-submenu-title{padding-right:34px}.ant-menu-inline-collapsed{width:80px}.ant-menu-inline-collapsed>.ant-menu-item,.ant-menu-inline-collapsed>.ant-menu-item-group>.ant-menu-item-group-list>.ant-menu-item,.ant-menu-inline-collapsed>.ant-menu-item-group>.ant-menu-item-group-list>.ant-menu-submenu>.ant-menu-submenu-title,.ant-menu-inline-collapsed>.ant-menu-submenu>.ant-menu-submenu-title{left:0;padding:0 32px!important;text-overflow:clip}.ant-menu-inline-collapsed>.ant-menu-item-group>.ant-menu-item-group-list>.ant-menu-item .ant-menu-submenu-arrow,.ant-menu-inline-collapsed>.ant-menu-item-group>.ant-menu-item-group-list>.ant-menu-submenu>.ant-menu-submenu-title .ant-menu-submenu-arrow,.ant-menu-inline-collapsed>.ant-menu-item .ant-menu-submenu-arrow,.ant-menu-inline-collapsed>.ant-menu-submenu>.ant-menu-submenu-title .ant-menu-submenu-arrow{display:none}.ant-menu-inline-collapsed>.ant-menu-item-group>.ant-menu-item-group-list>.ant-menu-item .anticon,.ant-menu-inline-collapsed>.ant-menu-item-group>.ant-menu-item-group-list>.ant-menu-submenu>.ant-menu-submenu-title .anticon,.ant-menu-inline-collapsed>.ant-menu-item .anticon,.ant-menu-inline-collapsed>.ant-menu-submenu>.ant-menu-submenu-title .anticon{margin:0;font-size:16px;line-height:40px}.ant-menu-inline-collapsed>.ant-menu-item-group>.ant-menu-item-group-list>.ant-menu-item .anticon+span,.ant-menu-inline-collapsed>.ant-menu-item-group>.ant-menu-item-group-list>.ant-menu-submenu>.ant-menu-submenu-title .anticon+span,.ant-menu-inline-collapsed>.ant-menu-item .anticon+span,.ant-menu-inline-collapsed>.ant-menu-submenu>.ant-menu-submenu-title .anticon+span{display:inline-block;max-width:0;opacity:0}.ant-menu-inline-collapsed-tooltip{pointer-events:none}.ant-menu-inline-collapsed-tooltip .anticon{display:none}.ant-menu-inline-collapsed-tooltip a{color:hsla(0,0%,100%,.85)}.ant-menu-inline-collapsed .ant-menu-item-group-title{padding-right:4px;padding-left:4px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.ant-menu-item-group-list{margin:0;padding:0}.ant-menu-item-group-list .ant-menu-item,.ant-menu-item-group-list .ant-menu-submenu-title{padding:0 16px 0 28px}.ant-menu-root.ant-menu-inline,.ant-menu-root.ant-menu-vertical,.ant-menu-root.ant-menu-vertical-left,.ant-menu-root.ant-menu-vertical-right{box-shadow:none}.ant-menu-sub.ant-menu-inline{padding:0;border:0;border-radius:0;box-shadow:none}.ant-menu-sub.ant-menu-inline>.ant-menu-item,.ant-menu-sub.ant-menu-inline>.ant-menu-submenu>.ant-menu-submenu-title{height:40px;line-height:40px;list-style-position:inside;list-style-type:disc}.ant-menu-sub.ant-menu-inline .ant-menu-item-group-title{padding-left:32px}.ant-menu-item-disabled,.ant-menu-submenu-disabled{color:rgba(0,0,0,.25)!important;background:none;border-color:transparent!important;cursor:not-allowed}.ant-menu-item-disabled>a,.ant-menu-submenu-disabled>a{color:rgba(0,0,0,.25)!important;pointer-events:none}.ant-menu-item-disabled>.ant-menu-submenu-title,.ant-menu-submenu-disabled>.ant-menu-submenu-title{color:rgba(0,0,0,.25)!important;cursor:not-allowed}.ant-menu-item-disabled>.ant-menu-submenu-title>.ant-menu-submenu-arrow:after,.ant-menu-item-disabled>.ant-menu-submenu-title>.ant-menu-submenu-arrow:before,.ant-menu-submenu-disabled>.ant-menu-submenu-title>.ant-menu-submenu-arrow:after,.ant-menu-submenu-disabled>.ant-menu-submenu-title>.ant-menu-submenu-arrow:before{background:rgba(0,0,0,.25)!important}.ant-menu-dark,.ant-menu-dark .ant-menu-sub{color:hsla(0,0%,100%,.65);background:#001529}.ant-menu-dark .ant-menu-sub .ant-menu-submenu-title .ant-menu-submenu-arrow,.ant-menu-dark .ant-menu-submenu-title .ant-menu-submenu-arrow{opacity:.45;transition:all .3s}.ant-menu-dark .ant-menu-sub .ant-menu-submenu-title .ant-menu-submenu-arrow:after,.ant-menu-dark .ant-menu-sub .ant-menu-submenu-title .ant-menu-submenu-arrow:before,.ant-menu-dark .ant-menu-submenu-title .ant-menu-submenu-arrow:after,.ant-menu-dark .ant-menu-submenu-title .ant-menu-submenu-arrow:before{background:#fff}.ant-menu-dark.ant-menu-submenu-popup{background:transparent}.ant-menu-dark .ant-menu-inline.ant-menu-sub{background:#000c17;box-shadow:inset 0 2px 8px rgba(0,0,0,.45)}.ant-menu-dark.ant-menu-horizontal{border-bottom:0}.ant-menu-dark.ant-menu-horizontal>.ant-menu-item,.ant-menu-dark.ant-menu-horizontal>.ant-menu-submenu{top:0;margin-top:0;border-color:#001529;border-bottom:0}.ant-menu-dark.ant-menu-horizontal>.ant-menu-item>a:before{bottom:0}.ant-menu-dark .ant-menu-item,.ant-menu-dark .ant-menu-item-group-title,.ant-menu-dark .ant-menu-item>a{color:hsla(0,0%,100%,.65)}.ant-menu-dark.ant-menu-inline,.ant-menu-dark.ant-menu-vertical,.ant-menu-dark.ant-menu-vertical-left,.ant-menu-dark.ant-menu-vertical-right{border-right:0}.ant-menu-dark.ant-menu-inline .ant-menu-item,.ant-menu-dark.ant-menu-vertical-left .ant-menu-item,.ant-menu-dark.ant-menu-vertical-right .ant-menu-item,.ant-menu-dark.ant-menu-vertical .ant-menu-item{left:0;margin-left:0;border-right:0}.ant-menu-dark.ant-menu-inline .ant-menu-item:after,.ant-menu-dark.ant-menu-vertical-left .ant-menu-item:after,.ant-menu-dark.ant-menu-vertical-right .ant-menu-item:after,.ant-menu-dark.ant-menu-vertical .ant-menu-item:after{border-right:0}.ant-menu-dark.ant-menu-inline .ant-menu-item,.ant-menu-dark.ant-menu-inline .ant-menu-submenu-title{width:100%}.ant-menu-dark .ant-menu-item-active,.ant-menu-dark .ant-menu-item:hover,.ant-menu-dark .ant-menu-submenu-active,.ant-menu-dark .ant-menu-submenu-open,.ant-menu-dark .ant-menu-submenu-selected,.ant-menu-dark .ant-menu-submenu-title:hover{color:#fff;background-color:transparent}.ant-menu-dark .ant-menu-item-active>a,.ant-menu-dark .ant-menu-item:hover>a,.ant-menu-dark .ant-menu-submenu-active>a,.ant-menu-dark .ant-menu-submenu-open>a,.ant-menu-dark .ant-menu-submenu-selected>a,.ant-menu-dark .ant-menu-submenu-title:hover>a{color:#fff}.ant-menu-dark .ant-menu-item-active>.ant-menu-submenu-title:hover>.ant-menu-submenu-arrow,.ant-menu-dark .ant-menu-item-active>.ant-menu-submenu-title>.ant-menu-submenu-arrow,.ant-menu-dark .ant-menu-item:hover>.ant-menu-submenu-title:hover>.ant-menu-submenu-arrow,.ant-menu-dark .ant-menu-item:hover>.ant-menu-submenu-title>.ant-menu-submenu-arrow,.ant-menu-dark .ant-menu-submenu-active>.ant-menu-submenu-title:hover>.ant-menu-submenu-arrow,.ant-menu-dark .ant-menu-submenu-active>.ant-menu-submenu-title>.ant-menu-submenu-arrow,.ant-menu-dark .ant-menu-submenu-open>.ant-menu-submenu-title:hover>.ant-menu-submenu-arrow,.ant-menu-dark .ant-menu-submenu-open>.ant-menu-submenu-title>.ant-menu-submenu-arrow,.ant-menu-dark .ant-menu-submenu-selected>.ant-menu-submenu-title:hover>.ant-menu-submenu-arrow,.ant-menu-dark .ant-menu-submenu-selected>.ant-menu-submenu-title>.ant-menu-submenu-arrow,.ant-menu-dark .ant-menu-submenu-title:hover>.ant-menu-submenu-title:hover>.ant-menu-submenu-arrow,.ant-menu-dark .ant-menu-submenu-title:hover>.ant-menu-submenu-title>.ant-menu-submenu-arrow{opacity:1}.ant-menu-dark .ant-menu-item-active>.ant-menu-submenu-title:hover>.ant-menu-submenu-arrow:after,.ant-menu-dark .ant-menu-item-active>.ant-menu-submenu-title:hover>.ant-menu-submenu-arrow:before,.ant-menu-dark .ant-menu-item-active>.ant-menu-submenu-title>.ant-menu-submenu-arrow:after,.ant-menu-dark .ant-menu-item-active>.ant-menu-submenu-title>.ant-menu-submenu-arrow:before,.ant-menu-dark .ant-menu-item:hover>.ant-menu-submenu-title:hover>.ant-menu-submenu-arrow:after,.ant-menu-dark .ant-menu-item:hover>.ant-menu-submenu-title:hover>.ant-menu-submenu-arrow:before,.ant-menu-dark .ant-menu-item:hover>.ant-menu-submenu-title>.ant-menu-submenu-arrow:after,.ant-menu-dark .ant-menu-item:hover>.ant-menu-submenu-title>.ant-menu-submenu-arrow:before,.ant-menu-dark .ant-menu-submenu-active>.ant-menu-submenu-title:hover>.ant-menu-submenu-arrow:after,.ant-menu-dark .ant-menu-submenu-active>.ant-menu-submenu-title:hover>.ant-menu-submenu-arrow:before,.ant-menu-dark .ant-menu-submenu-active>.ant-menu-submenu-title>.ant-menu-submenu-arrow:after,.ant-menu-dark .ant-menu-submenu-active>.ant-menu-submenu-title>.ant-menu-submenu-arrow:before,.ant-menu-dark .ant-menu-submenu-open>.ant-menu-submenu-title:hover>.ant-menu-submenu-arrow:after,.ant-menu-dark .ant-menu-submenu-open>.ant-menu-submenu-title:hover>.ant-menu-submenu-arrow:before,.ant-menu-dark .ant-menu-submenu-open>.ant-menu-submenu-title>.ant-menu-submenu-arrow:after,.ant-menu-dark .ant-menu-submenu-open>.ant-menu-submenu-title>.ant-menu-submenu-arrow:before,.ant-menu-dark .ant-menu-submenu-selected>.ant-menu-submenu-title:hover>.ant-menu-submenu-arrow:after,.ant-menu-dark .ant-menu-submenu-selected>.ant-menu-submenu-title:hover>.ant-menu-submenu-arrow:before,.ant-menu-dark .ant-menu-submenu-selected>.ant-menu-submenu-title>.ant-menu-submenu-arrow:after,.ant-menu-dark .ant-menu-submenu-selected>.ant-menu-submenu-title>.ant-menu-submenu-arrow:before,.ant-menu-dark .ant-menu-submenu-title:hover>.ant-menu-submenu-title:hover>.ant-menu-submenu-arrow:after,.ant-menu-dark .ant-menu-submenu-title:hover>.ant-menu-submenu-title:hover>.ant-menu-submenu-arrow:before,.ant-menu-dark .ant-menu-submenu-title:hover>.ant-menu-submenu-title>.ant-menu-submenu-arrow:after,.ant-menu-dark .ant-menu-submenu-title:hover>.ant-menu-submenu-title>.ant-menu-submenu-arrow:before{background:#fff}.ant-menu-dark .ant-menu-item:hover{background-color:transparent}.ant-menu-dark .ant-menu-item-selected{color:#fff;border-right:0}.ant-menu-dark .ant-menu-item-selected:after{border-right:0}.ant-menu-dark .ant-menu-item-selected>a,.ant-menu-dark .ant-menu-item-selected>a:hover{color:#fff}.ant-menu-dark .ant-menu-item-selected .anticon{color:#fff}.ant-menu-dark .ant-menu-item-selected .anticon+span{color:#fff}.ant-menu-submenu-popup.ant-menu-dark .ant-menu-item-selected,.ant-menu.ant-menu-dark .ant-menu-item-selected{background-color:#1890ff}.ant-menu-dark .ant-menu-item-disabled,.ant-menu-dark .ant-menu-item-disabled>a,.ant-menu-dark .ant-menu-submenu-disabled,.ant-menu-dark .ant-menu-submenu-disabled>a{color:hsla(0,0%,100%,.35)!important;opacity:.8}.ant-menu-dark .ant-menu-item-disabled>.ant-menu-submenu-title,.ant-menu-dark .ant-menu-submenu-disabled>.ant-menu-submenu-title{color:hsla(0,0%,100%,.35)!important}.ant-menu-dark .ant-menu-item-disabled>.ant-menu-submenu-title>.ant-menu-submenu-arrow:after,.ant-menu-dark .ant-menu-item-disabled>.ant-menu-submenu-title>.ant-menu-submenu-arrow:before,.ant-menu-dark .ant-menu-submenu-disabled>.ant-menu-submenu-title>.ant-menu-submenu-arrow:after,.ant-menu-dark .ant-menu-submenu-disabled>.ant-menu-submenu-title>.ant-menu-submenu-arrow:before{background:hsla(0,0%,100%,.35)!important} .ant-row{position:relative;height:auto;margin-right:0;margin-left:0;zoom:1;display:block;box-sizing:border-box}.ant-row:after,.ant-row:before{display:table;content:""}.ant-row:after{clear:both}.ant-row+.ant-row:before{clear:both}.ant-row-flex{display:flex;flex-flow:row wrap}.ant-row-flex:after,.ant-row-flex:before{display:flex}.ant-row-flex-start{justify-content:flex-start}.ant-row-flex-center{justify-content:center}.ant-row-flex-end{justify-content:flex-end}.ant-row-flex-space-between{justify-content:space-between}.ant-row-flex-space-around{justify-content:space-around}.ant-row-flex-top{align-items:flex-start}.ant-row-flex-middle{align-items:center}.ant-row-flex-bottom{align-items:flex-end}.ant-col{position:relative;min-height:1px}.ant-col-1,.ant-col-2,.ant-col-3,.ant-col-4,.ant-col-5,.ant-col-6,.ant-col-7,.ant-col-8,.ant-col-9,.ant-col-10,.ant-col-11,.ant-col-12,.ant-col-13,.ant-col-14,.ant-col-15,.ant-col-16,.ant-col-17,.ant-col-18,.ant-col-19,.ant-col-20,.ant-col-21,.ant-col-22,.ant-col-23,.ant-col-24,.ant-col-lg-1,.ant-col-lg-2,.ant-col-lg-3,.ant-col-lg-4,.ant-col-lg-5,.ant-col-lg-6,.ant-col-lg-7,.ant-col-lg-8,.ant-col-lg-9,.ant-col-lg-10,.ant-col-lg-11,.ant-col-lg-12,.ant-col-lg-13,.ant-col-lg-14,.ant-col-lg-15,.ant-col-lg-16,.ant-col-lg-17,.ant-col-lg-18,.ant-col-lg-19,.ant-col-lg-20,.ant-col-lg-21,.ant-col-lg-22,.ant-col-lg-23,.ant-col-lg-24,.ant-col-md-1,.ant-col-md-2,.ant-col-md-3,.ant-col-md-4,.ant-col-md-5,.ant-col-md-6,.ant-col-md-7,.ant-col-md-8,.ant-col-md-9,.ant-col-md-10,.ant-col-md-11,.ant-col-md-12,.ant-col-md-13,.ant-col-md-14,.ant-col-md-15,.ant-col-md-16,.ant-col-md-17,.ant-col-md-18,.ant-col-md-19,.ant-col-md-20,.ant-col-md-21,.ant-col-md-22,.ant-col-md-23,.ant-col-md-24,.ant-col-sm-1,.ant-col-sm-2,.ant-col-sm-3,.ant-col-sm-4,.ant-col-sm-5,.ant-col-sm-6,.ant-col-sm-7,.ant-col-sm-8,.ant-col-sm-9,.ant-col-sm-10,.ant-col-sm-11,.ant-col-sm-12,.ant-col-sm-13,.ant-col-sm-14,.ant-col-sm-15,.ant-col-sm-16,.ant-col-sm-17,.ant-col-sm-18,.ant-col-sm-19,.ant-col-sm-20,.ant-col-sm-21,.ant-col-sm-22,.ant-col-sm-23,.ant-col-sm-24,.ant-col-xs-1,.ant-col-xs-2,.ant-col-xs-3,.ant-col-xs-4,.ant-col-xs-5,.ant-col-xs-6,.ant-col-xs-7,.ant-col-xs-8,.ant-col-xs-9,.ant-col-xs-10,.ant-col-xs-11,.ant-col-xs-12,.ant-col-xs-13,.ant-col-xs-14,.ant-col-xs-15,.ant-col-xs-16,.ant-col-xs-17,.ant-col-xs-18,.ant-col-xs-19,.ant-col-xs-20,.ant-col-xs-21,.ant-col-xs-22,.ant-col-xs-23,.ant-col-xs-24{position:relative;padding-right:0;padding-left:0}.ant-col-1,.ant-col-2,.ant-col-3,.ant-col-4,.ant-col-5,.ant-col-6,.ant-col-7,.ant-col-8,.ant-col-9,.ant-col-10,.ant-col-11,.ant-col-12,.ant-col-13,.ant-col-14,.ant-col-15,.ant-col-16,.ant-col-17,.ant-col-18,.ant-col-19,.ant-col-20,.ant-col-21,.ant-col-22,.ant-col-23,.ant-col-24{flex:0 0 auto;float:left}.ant-col-24{display:block;box-sizing:border-box;width:100%}.ant-col-push-24{left:100%}.ant-col-pull-24{right:100%}.ant-col-offset-24{margin-left:100%}.ant-col-order-24{order:24}.ant-col-23{display:block;box-sizing:border-box;width:95.83333333%}.ant-col-push-23{left:95.83333333%}.ant-col-pull-23{right:95.83333333%}.ant-col-offset-23{margin-left:95.83333333%}.ant-col-order-23{order:23}.ant-col-22{display:block;box-sizing:border-box;width:91.66666667%}.ant-col-push-22{left:91.66666667%}.ant-col-pull-22{right:91.66666667%}.ant-col-offset-22{margin-left:91.66666667%}.ant-col-order-22{order:22}.ant-col-21{display:block;box-sizing:border-box;width:87.5%}.ant-col-push-21{left:87.5%}.ant-col-pull-21{right:87.5%}.ant-col-offset-21{margin-left:87.5%}.ant-col-order-21{order:21}.ant-col-20{display:block;box-sizing:border-box;width:83.33333333%}.ant-col-push-20{left:83.33333333%}.ant-col-pull-20{right:83.33333333%}.ant-col-offset-20{margin-left:83.33333333%}.ant-col-order-20{order:20}.ant-col-19{display:block;box-sizing:border-box;width:79.16666667%}.ant-col-push-19{left:79.16666667%}.ant-col-pull-19{right:79.16666667%}.ant-col-offset-19{margin-left:79.16666667%}.ant-col-order-19{order:19}.ant-col-18{display:block;box-sizing:border-box;width:75%}.ant-col-push-18{left:75%}.ant-col-pull-18{right:75%}.ant-col-offset-18{margin-left:75%}.ant-col-order-18{order:18}.ant-col-17{display:block;box-sizing:border-box;width:70.83333333%}.ant-col-push-17{left:70.83333333%}.ant-col-pull-17{right:70.83333333%}.ant-col-offset-17{margin-left:70.83333333%}.ant-col-order-17{order:17}.ant-col-16{display:block;box-sizing:border-box;width:66.66666667%}.ant-col-push-16{left:66.66666667%}.ant-col-pull-16{right:66.66666667%}.ant-col-offset-16{margin-left:66.66666667%}.ant-col-order-16{order:16}.ant-col-15{display:block;box-sizing:border-box;width:62.5%}.ant-col-push-15{left:62.5%}.ant-col-pull-15{right:62.5%}.ant-col-offset-15{margin-left:62.5%}.ant-col-order-15{order:15}.ant-col-14{display:block;box-sizing:border-box;width:58.33333333%}.ant-col-push-14{left:58.33333333%}.ant-col-pull-14{right:58.33333333%}.ant-col-offset-14{margin-left:58.33333333%}.ant-col-order-14{order:14}.ant-col-13{display:block;box-sizing:border-box;width:54.16666667%}.ant-col-push-13{left:54.16666667%}.ant-col-pull-13{right:54.16666667%}.ant-col-offset-13{margin-left:54.16666667%}.ant-col-order-13{order:13}.ant-col-12{display:block;box-sizing:border-box;width:50%}.ant-col-push-12{left:50%}.ant-col-pull-12{right:50%}.ant-col-offset-12{margin-left:50%}.ant-col-order-12{order:12}.ant-col-11{display:block;box-sizing:border-box;width:45.83333333%}.ant-col-push-11{left:45.83333333%}.ant-col-pull-11{right:45.83333333%}.ant-col-offset-11{margin-left:45.83333333%}.ant-col-order-11{order:11}.ant-col-10{display:block;box-sizing:border-box;width:41.66666667%}.ant-col-push-10{left:41.66666667%}.ant-col-pull-10{right:41.66666667%}.ant-col-offset-10{margin-left:41.66666667%}.ant-col-order-10{order:10}.ant-col-9{display:block;box-sizing:border-box;width:37.5%}.ant-col-push-9{left:37.5%}.ant-col-pull-9{right:37.5%}.ant-col-offset-9{margin-left:37.5%}.ant-col-order-9{order:9}.ant-col-8{display:block;box-sizing:border-box;width:33.33333333%}.ant-col-push-8{left:33.33333333%}.ant-col-pull-8{right:33.33333333%}.ant-col-offset-8{margin-left:33.33333333%}.ant-col-order-8{order:8}.ant-col-7{display:block;box-sizing:border-box;width:29.16666667%}.ant-col-push-7{left:29.16666667%}.ant-col-pull-7{right:29.16666667%}.ant-col-offset-7{margin-left:29.16666667%}.ant-col-order-7{order:7}.ant-col-6{display:block;box-sizing:border-box;width:25%}.ant-col-push-6{left:25%}.ant-col-pull-6{right:25%}.ant-col-offset-6{margin-left:25%}.ant-col-order-6{order:6}.ant-col-5{display:block;box-sizing:border-box;width:20.83333333%}.ant-col-push-5{left:20.83333333%}.ant-col-pull-5{right:20.83333333%}.ant-col-offset-5{margin-left:20.83333333%}.ant-col-order-5{order:5}.ant-col-4{display:block;box-sizing:border-box;width:16.66666667%}.ant-col-push-4{left:16.66666667%}.ant-col-pull-4{right:16.66666667%}.ant-col-offset-4{margin-left:16.66666667%}.ant-col-order-4{order:4}.ant-col-3{display:block;box-sizing:border-box;width:12.5%}.ant-col-push-3{left:12.5%}.ant-col-pull-3{right:12.5%}.ant-col-offset-3{margin-left:12.5%}.ant-col-order-3{order:3}.ant-col-2{display:block;box-sizing:border-box;width:8.33333333%}.ant-col-push-2{left:8.33333333%}.ant-col-pull-2{right:8.33333333%}.ant-col-offset-2{margin-left:8.33333333%}.ant-col-order-2{order:2}.ant-col-1{display:block;box-sizing:border-box;width:4.16666667%}.ant-col-push-1{left:4.16666667%}.ant-col-pull-1{right:4.16666667%}.ant-col-offset-1{margin-left:4.16666667%}.ant-col-order-1{order:1}.ant-col-0{display:none}.ant-col-offset-0{margin-left:0}.ant-col-order-0{order:0}.ant-col-xs-1,.ant-col-xs-2,.ant-col-xs-3,.ant-col-xs-4,.ant-col-xs-5,.ant-col-xs-6,.ant-col-xs-7,.ant-col-xs-8,.ant-col-xs-9,.ant-col-xs-10,.ant-col-xs-11,.ant-col-xs-12,.ant-col-xs-13,.ant-col-xs-14,.ant-col-xs-15,.ant-col-xs-16,.ant-col-xs-17,.ant-col-xs-18,.ant-col-xs-19,.ant-col-xs-20,.ant-col-xs-21,.ant-col-xs-22,.ant-col-xs-23,.ant-col-xs-24{flex:0 0 auto;float:left}.ant-col-xs-24{display:block;box-sizing:border-box;width:100%}.ant-col-xs-push-24{left:100%}.ant-col-xs-pull-24{right:100%}.ant-col-xs-offset-24{margin-left:100%}.ant-col-xs-order-24{order:24}.ant-col-xs-23{display:block;box-sizing:border-box;width:95.83333333%}.ant-col-xs-push-23{left:95.83333333%}.ant-col-xs-pull-23{right:95.83333333%}.ant-col-xs-offset-23{margin-left:95.83333333%}.ant-col-xs-order-23{order:23}.ant-col-xs-22{display:block;box-sizing:border-box;width:91.66666667%}.ant-col-xs-push-22{left:91.66666667%}.ant-col-xs-pull-22{right:91.66666667%}.ant-col-xs-offset-22{margin-left:91.66666667%}.ant-col-xs-order-22{order:22}.ant-col-xs-21{display:block;box-sizing:border-box;width:87.5%}.ant-col-xs-push-21{left:87.5%}.ant-col-xs-pull-21{right:87.5%}.ant-col-xs-offset-21{margin-left:87.5%}.ant-col-xs-order-21{order:21}.ant-col-xs-20{display:block;box-sizing:border-box;width:83.33333333%}.ant-col-xs-push-20{left:83.33333333%}.ant-col-xs-pull-20{right:83.33333333%}.ant-col-xs-offset-20{margin-left:83.33333333%}.ant-col-xs-order-20{order:20}.ant-col-xs-19{display:block;box-sizing:border-box;width:79.16666667%}.ant-col-xs-push-19{left:79.16666667%}.ant-col-xs-pull-19{right:79.16666667%}.ant-col-xs-offset-19{margin-left:79.16666667%}.ant-col-xs-order-19{order:19}.ant-col-xs-18{display:block;box-sizing:border-box;width:75%}.ant-col-xs-push-18{left:75%}.ant-col-xs-pull-18{right:75%}.ant-col-xs-offset-18{margin-left:75%}.ant-col-xs-order-18{order:18}.ant-col-xs-17{display:block;box-sizing:border-box;width:70.83333333%}.ant-col-xs-push-17{left:70.83333333%}.ant-col-xs-pull-17{right:70.83333333%}.ant-col-xs-offset-17{margin-left:70.83333333%}.ant-col-xs-order-17{order:17}.ant-col-xs-16{display:block;box-sizing:border-box;width:66.66666667%}.ant-col-xs-push-16{left:66.66666667%}.ant-col-xs-pull-16{right:66.66666667%}.ant-col-xs-offset-16{margin-left:66.66666667%}.ant-col-xs-order-16{order:16}.ant-col-xs-15{display:block;box-sizing:border-box;width:62.5%}.ant-col-xs-push-15{left:62.5%}.ant-col-xs-pull-15{right:62.5%}.ant-col-xs-offset-15{margin-left:62.5%}.ant-col-xs-order-15{order:15}.ant-col-xs-14{display:block;box-sizing:border-box;width:58.33333333%}.ant-col-xs-push-14{left:58.33333333%}.ant-col-xs-pull-14{right:58.33333333%}.ant-col-xs-offset-14{margin-left:58.33333333%}.ant-col-xs-order-14{order:14}.ant-col-xs-13{display:block;box-sizing:border-box;width:54.16666667%}.ant-col-xs-push-13{left:54.16666667%}.ant-col-xs-pull-13{right:54.16666667%}.ant-col-xs-offset-13{margin-left:54.16666667%}.ant-col-xs-order-13{order:13}.ant-col-xs-12{display:block;box-sizing:border-box;width:50%}.ant-col-xs-push-12{left:50%}.ant-col-xs-pull-12{right:50%}.ant-col-xs-offset-12{margin-left:50%}.ant-col-xs-order-12{order:12}.ant-col-xs-11{display:block;box-sizing:border-box;width:45.83333333%}.ant-col-xs-push-11{left:45.83333333%}.ant-col-xs-pull-11{right:45.83333333%}.ant-col-xs-offset-11{margin-left:45.83333333%}.ant-col-xs-order-11{order:11}.ant-col-xs-10{display:block;box-sizing:border-box;width:41.66666667%}.ant-col-xs-push-10{left:41.66666667%}.ant-col-xs-pull-10{right:41.66666667%}.ant-col-xs-offset-10{margin-left:41.66666667%}.ant-col-xs-order-10{order:10}.ant-col-xs-9{display:block;box-sizing:border-box;width:37.5%}.ant-col-xs-push-9{left:37.5%}.ant-col-xs-pull-9{right:37.5%}.ant-col-xs-offset-9{margin-left:37.5%}.ant-col-xs-order-9{order:9}.ant-col-xs-8{display:block;box-sizing:border-box;width:33.33333333%}.ant-col-xs-push-8{left:33.33333333%}.ant-col-xs-pull-8{right:33.33333333%}.ant-col-xs-offset-8{margin-left:33.33333333%}.ant-col-xs-order-8{order:8}.ant-col-xs-7{display:block;box-sizing:border-box;width:29.16666667%}.ant-col-xs-push-7{left:29.16666667%}.ant-col-xs-pull-7{right:29.16666667%}.ant-col-xs-offset-7{margin-left:29.16666667%}.ant-col-xs-order-7{order:7}.ant-col-xs-6{display:block;box-sizing:border-box;width:25%}.ant-col-xs-push-6{left:25%}.ant-col-xs-pull-6{right:25%}.ant-col-xs-offset-6{margin-left:25%}.ant-col-xs-order-6{order:6}.ant-col-xs-5{display:block;box-sizing:border-box;width:20.83333333%}.ant-col-xs-push-5{left:20.83333333%}.ant-col-xs-pull-5{right:20.83333333%}.ant-col-xs-offset-5{margin-left:20.83333333%}.ant-col-xs-order-5{order:5}.ant-col-xs-4{display:block;box-sizing:border-box;width:16.66666667%}.ant-col-xs-push-4{left:16.66666667%}.ant-col-xs-pull-4{right:16.66666667%}.ant-col-xs-offset-4{margin-left:16.66666667%}.ant-col-xs-order-4{order:4}.ant-col-xs-3{display:block;box-sizing:border-box;width:12.5%}.ant-col-xs-push-3{left:12.5%}.ant-col-xs-pull-3{right:12.5%}.ant-col-xs-offset-3{margin-left:12.5%}.ant-col-xs-order-3{order:3}.ant-col-xs-2{display:block;box-sizing:border-box;width:8.33333333%}.ant-col-xs-push-2{left:8.33333333%}.ant-col-xs-pull-2{right:8.33333333%}.ant-col-xs-offset-2{margin-left:8.33333333%}.ant-col-xs-order-2{order:2}.ant-col-xs-1{display:block;box-sizing:border-box;width:4.16666667%}.ant-col-xs-push-1{left:4.16666667%}.ant-col-xs-pull-1{right:4.16666667%}.ant-col-xs-offset-1{margin-left:4.16666667%}.ant-col-xs-order-1{order:1}.ant-col-xs-0{display:none}.ant-col-push-0{left:auto}.ant-col-pull-0{right:auto}.ant-col-xs-push-0{left:auto}.ant-col-xs-pull-0{right:auto}.ant-col-xs-offset-0{margin-left:0}.ant-col-xs-order-0{order:0}@media (min-width:576px){.ant-col-sm-1,.ant-col-sm-2,.ant-col-sm-3,.ant-col-sm-4,.ant-col-sm-5,.ant-col-sm-6,.ant-col-sm-7,.ant-col-sm-8,.ant-col-sm-9,.ant-col-sm-10,.ant-col-sm-11,.ant-col-sm-12,.ant-col-sm-13,.ant-col-sm-14,.ant-col-sm-15,.ant-col-sm-16,.ant-col-sm-17,.ant-col-sm-18,.ant-col-sm-19,.ant-col-sm-20,.ant-col-sm-21,.ant-col-sm-22,.ant-col-sm-23,.ant-col-sm-24{flex:0 0 auto;float:left}.ant-col-sm-24{display:block;box-sizing:border-box;width:100%}.ant-col-sm-push-24{left:100%}.ant-col-sm-pull-24{right:100%}.ant-col-sm-offset-24{margin-left:100%}.ant-col-sm-order-24{order:24}.ant-col-sm-23{display:block;box-sizing:border-box;width:95.83333333%}.ant-col-sm-push-23{left:95.83333333%}.ant-col-sm-pull-23{right:95.83333333%}.ant-col-sm-offset-23{margin-left:95.83333333%}.ant-col-sm-order-23{order:23}.ant-col-sm-22{display:block;box-sizing:border-box;width:91.66666667%}.ant-col-sm-push-22{left:91.66666667%}.ant-col-sm-pull-22{right:91.66666667%}.ant-col-sm-offset-22{margin-left:91.66666667%}.ant-col-sm-order-22{order:22}.ant-col-sm-21{display:block;box-sizing:border-box;width:87.5%}.ant-col-sm-push-21{left:87.5%}.ant-col-sm-pull-21{right:87.5%}.ant-col-sm-offset-21{margin-left:87.5%}.ant-col-sm-order-21{order:21}.ant-col-sm-20{display:block;box-sizing:border-box;width:83.33333333%}.ant-col-sm-push-20{left:83.33333333%}.ant-col-sm-pull-20{right:83.33333333%}.ant-col-sm-offset-20{margin-left:83.33333333%}.ant-col-sm-order-20{order:20}.ant-col-sm-19{display:block;box-sizing:border-box;width:79.16666667%}.ant-col-sm-push-19{left:79.16666667%}.ant-col-sm-pull-19{right:79.16666667%}.ant-col-sm-offset-19{margin-left:79.16666667%}.ant-col-sm-order-19{order:19}.ant-col-sm-18{display:block;box-sizing:border-box;width:75%}.ant-col-sm-push-18{left:75%}.ant-col-sm-pull-18{right:75%}.ant-col-sm-offset-18{margin-left:75%}.ant-col-sm-order-18{order:18}.ant-col-sm-17{display:block;box-sizing:border-box;width:70.83333333%}.ant-col-sm-push-17{left:70.83333333%}.ant-col-sm-pull-17{right:70.83333333%}.ant-col-sm-offset-17{margin-left:70.83333333%}.ant-col-sm-order-17{order:17}.ant-col-sm-16{display:block;box-sizing:border-box;width:66.66666667%}.ant-col-sm-push-16{left:66.66666667%}.ant-col-sm-pull-16{right:66.66666667%}.ant-col-sm-offset-16{margin-left:66.66666667%}.ant-col-sm-order-16{order:16}.ant-col-sm-15{display:block;box-sizing:border-box;width:62.5%}.ant-col-sm-push-15{left:62.5%}.ant-col-sm-pull-15{right:62.5%}.ant-col-sm-offset-15{margin-left:62.5%}.ant-col-sm-order-15{order:15}.ant-col-sm-14{display:block;box-sizing:border-box;width:58.33333333%}.ant-col-sm-push-14{left:58.33333333%}.ant-col-sm-pull-14{right:58.33333333%}.ant-col-sm-offset-14{margin-left:58.33333333%}.ant-col-sm-order-14{order:14}.ant-col-sm-13{display:block;box-sizing:border-box;width:54.16666667%}.ant-col-sm-push-13{left:54.16666667%}.ant-col-sm-pull-13{right:54.16666667%}.ant-col-sm-offset-13{margin-left:54.16666667%}.ant-col-sm-order-13{order:13}.ant-col-sm-12{display:block;box-sizing:border-box;width:50%}.ant-col-sm-push-12{left:50%}.ant-col-sm-pull-12{right:50%}.ant-col-sm-offset-12{margin-left:50%}.ant-col-sm-order-12{order:12}.ant-col-sm-11{display:block;box-sizing:border-box;width:45.83333333%}.ant-col-sm-push-11{left:45.83333333%}.ant-col-sm-pull-11{right:45.83333333%}.ant-col-sm-offset-11{margin-left:45.83333333%}.ant-col-sm-order-11{order:11}.ant-col-sm-10{display:block;box-sizing:border-box;width:41.66666667%}.ant-col-sm-push-10{left:41.66666667%}.ant-col-sm-pull-10{right:41.66666667%}.ant-col-sm-offset-10{margin-left:41.66666667%}.ant-col-sm-order-10{order:10}.ant-col-sm-9{display:block;box-sizing:border-box;width:37.5%}.ant-col-sm-push-9{left:37.5%}.ant-col-sm-pull-9{right:37.5%}.ant-col-sm-offset-9{margin-left:37.5%}.ant-col-sm-order-9{order:9}.ant-col-sm-8{display:block;box-sizing:border-box;width:33.33333333%}.ant-col-sm-push-8{left:33.33333333%}.ant-col-sm-pull-8{right:33.33333333%}.ant-col-sm-offset-8{margin-left:33.33333333%}.ant-col-sm-order-8{order:8}.ant-col-sm-7{display:block;box-sizing:border-box;width:29.16666667%}.ant-col-sm-push-7{left:29.16666667%}.ant-col-sm-pull-7{right:29.16666667%}.ant-col-sm-offset-7{margin-left:29.16666667%}.ant-col-sm-order-7{order:7}.ant-col-sm-6{display:block;box-sizing:border-box;width:25%}.ant-col-sm-push-6{left:25%}.ant-col-sm-pull-6{right:25%}.ant-col-sm-offset-6{margin-left:25%}.ant-col-sm-order-6{order:6}.ant-col-sm-5{display:block;box-sizing:border-box;width:20.83333333%}.ant-col-sm-push-5{left:20.83333333%}.ant-col-sm-pull-5{right:20.83333333%}.ant-col-sm-offset-5{margin-left:20.83333333%}.ant-col-sm-order-5{order:5}.ant-col-sm-4{display:block;box-sizing:border-box;width:16.66666667%}.ant-col-sm-push-4{left:16.66666667%}.ant-col-sm-pull-4{right:16.66666667%}.ant-col-sm-offset-4{margin-left:16.66666667%}.ant-col-sm-order-4{order:4}.ant-col-sm-3{display:block;box-sizing:border-box;width:12.5%}.ant-col-sm-push-3{left:12.5%}.ant-col-sm-pull-3{right:12.5%}.ant-col-sm-offset-3{margin-left:12.5%}.ant-col-sm-order-3{order:3}.ant-col-sm-2{display:block;box-sizing:border-box;width:8.33333333%}.ant-col-sm-push-2{left:8.33333333%}.ant-col-sm-pull-2{right:8.33333333%}.ant-col-sm-offset-2{margin-left:8.33333333%}.ant-col-sm-order-2{order:2}.ant-col-sm-1{display:block;box-sizing:border-box;width:4.16666667%}.ant-col-sm-push-1{left:4.16666667%}.ant-col-sm-pull-1{right:4.16666667%}.ant-col-sm-offset-1{margin-left:4.16666667%}.ant-col-sm-order-1{order:1}.ant-col-sm-0{display:none}.ant-col-push-0{left:auto}.ant-col-pull-0{right:auto}.ant-col-sm-push-0{left:auto}.ant-col-sm-pull-0{right:auto}.ant-col-sm-offset-0{margin-left:0}.ant-col-sm-order-0{order:0}}@media (min-width:768px){.ant-col-md-1,.ant-col-md-2,.ant-col-md-3,.ant-col-md-4,.ant-col-md-5,.ant-col-md-6,.ant-col-md-7,.ant-col-md-8,.ant-col-md-9,.ant-col-md-10,.ant-col-md-11,.ant-col-md-12,.ant-col-md-13,.ant-col-md-14,.ant-col-md-15,.ant-col-md-16,.ant-col-md-17,.ant-col-md-18,.ant-col-md-19,.ant-col-md-20,.ant-col-md-21,.ant-col-md-22,.ant-col-md-23,.ant-col-md-24{flex:0 0 auto;float:left}.ant-col-md-24{display:block;box-sizing:border-box;width:100%}.ant-col-md-push-24{left:100%}.ant-col-md-pull-24{right:100%}.ant-col-md-offset-24{margin-left:100%}.ant-col-md-order-24{order:24}.ant-col-md-23{display:block;box-sizing:border-box;width:95.83333333%}.ant-col-md-push-23{left:95.83333333%}.ant-col-md-pull-23{right:95.83333333%}.ant-col-md-offset-23{margin-left:95.83333333%}.ant-col-md-order-23{order:23}.ant-col-md-22{display:block;box-sizing:border-box;width:91.66666667%}.ant-col-md-push-22{left:91.66666667%}.ant-col-md-pull-22{right:91.66666667%}.ant-col-md-offset-22{margin-left:91.66666667%}.ant-col-md-order-22{order:22}.ant-col-md-21{display:block;box-sizing:border-box;width:87.5%}.ant-col-md-push-21{left:87.5%}.ant-col-md-pull-21{right:87.5%}.ant-col-md-offset-21{margin-left:87.5%}.ant-col-md-order-21{order:21}.ant-col-md-20{display:block;box-sizing:border-box;width:83.33333333%}.ant-col-md-push-20{left:83.33333333%}.ant-col-md-pull-20{right:83.33333333%}.ant-col-md-offset-20{margin-left:83.33333333%}.ant-col-md-order-20{order:20}.ant-col-md-19{display:block;box-sizing:border-box;width:79.16666667%}.ant-col-md-push-19{left:79.16666667%}.ant-col-md-pull-19{right:79.16666667%}.ant-col-md-offset-19{margin-left:79.16666667%}.ant-col-md-order-19{order:19}.ant-col-md-18{display:block;box-sizing:border-box;width:75%}.ant-col-md-push-18{left:75%}.ant-col-md-pull-18{right:75%}.ant-col-md-offset-18{margin-left:75%}.ant-col-md-order-18{order:18}.ant-col-md-17{display:block;box-sizing:border-box;width:70.83333333%}.ant-col-md-push-17{left:70.83333333%}.ant-col-md-pull-17{right:70.83333333%}.ant-col-md-offset-17{margin-left:70.83333333%}.ant-col-md-order-17{order:17}.ant-col-md-16{display:block;box-sizing:border-box;width:66.66666667%}.ant-col-md-push-16{left:66.66666667%}.ant-col-md-pull-16{right:66.66666667%}.ant-col-md-offset-16{margin-left:66.66666667%}.ant-col-md-order-16{order:16}.ant-col-md-15{display:block;box-sizing:border-box;width:62.5%}.ant-col-md-push-15{left:62.5%}.ant-col-md-pull-15{right:62.5%}.ant-col-md-offset-15{margin-left:62.5%}.ant-col-md-order-15{order:15}.ant-col-md-14{display:block;box-sizing:border-box;width:58.33333333%}.ant-col-md-push-14{left:58.33333333%}.ant-col-md-pull-14{right:58.33333333%}.ant-col-md-offset-14{margin-left:58.33333333%}.ant-col-md-order-14{order:14}.ant-col-md-13{display:block;box-sizing:border-box;width:54.16666667%}.ant-col-md-push-13{left:54.16666667%}.ant-col-md-pull-13{right:54.16666667%}.ant-col-md-offset-13{margin-left:54.16666667%}.ant-col-md-order-13{order:13}.ant-col-md-12{display:block;box-sizing:border-box;width:50%}.ant-col-md-push-12{left:50%}.ant-col-md-pull-12{right:50%}.ant-col-md-offset-12{margin-left:50%}.ant-col-md-order-12{order:12}.ant-col-md-11{display:block;box-sizing:border-box;width:45.83333333%}.ant-col-md-push-11{left:45.83333333%}.ant-col-md-pull-11{right:45.83333333%}.ant-col-md-offset-11{margin-left:45.83333333%}.ant-col-md-order-11{order:11}.ant-col-md-10{display:block;box-sizing:border-box;width:41.66666667%}.ant-col-md-push-10{left:41.66666667%}.ant-col-md-pull-10{right:41.66666667%}.ant-col-md-offset-10{margin-left:41.66666667%}.ant-col-md-order-10{order:10}.ant-col-md-9{display:block;box-sizing:border-box;width:37.5%}.ant-col-md-push-9{left:37.5%}.ant-col-md-pull-9{right:37.5%}.ant-col-md-offset-9{margin-left:37.5%}.ant-col-md-order-9{order:9}.ant-col-md-8{display:block;box-sizing:border-box;width:33.33333333%}.ant-col-md-push-8{left:33.33333333%}.ant-col-md-pull-8{right:33.33333333%}.ant-col-md-offset-8{margin-left:33.33333333%}.ant-col-md-order-8{order:8}.ant-col-md-7{display:block;box-sizing:border-box;width:29.16666667%}.ant-col-md-push-7{left:29.16666667%}.ant-col-md-pull-7{right:29.16666667%}.ant-col-md-offset-7{margin-left:29.16666667%}.ant-col-md-order-7{order:7}.ant-col-md-6{display:block;box-sizing:border-box;width:25%}.ant-col-md-push-6{left:25%}.ant-col-md-pull-6{right:25%}.ant-col-md-offset-6{margin-left:25%}.ant-col-md-order-6{order:6}.ant-col-md-5{display:block;box-sizing:border-box;width:20.83333333%}.ant-col-md-push-5{left:20.83333333%}.ant-col-md-pull-5{right:20.83333333%}.ant-col-md-offset-5{margin-left:20.83333333%}.ant-col-md-order-5{order:5}.ant-col-md-4{display:block;box-sizing:border-box;width:16.66666667%}.ant-col-md-push-4{left:16.66666667%}.ant-col-md-pull-4{right:16.66666667%}.ant-col-md-offset-4{margin-left:16.66666667%}.ant-col-md-order-4{order:4}.ant-col-md-3{display:block;box-sizing:border-box;width:12.5%}.ant-col-md-push-3{left:12.5%}.ant-col-md-pull-3{right:12.5%}.ant-col-md-offset-3{margin-left:12.5%}.ant-col-md-order-3{order:3}.ant-col-md-2{display:block;box-sizing:border-box;width:8.33333333%}.ant-col-md-push-2{left:8.33333333%}.ant-col-md-pull-2{right:8.33333333%}.ant-col-md-offset-2{margin-left:8.33333333%}.ant-col-md-order-2{order:2}.ant-col-md-1{display:block;box-sizing:border-box;width:4.16666667%}.ant-col-md-push-1{left:4.16666667%}.ant-col-md-pull-1{right:4.16666667%}.ant-col-md-offset-1{margin-left:4.16666667%}.ant-col-md-order-1{order:1}.ant-col-md-0{display:none}.ant-col-push-0{left:auto}.ant-col-pull-0{right:auto}.ant-col-md-push-0{left:auto}.ant-col-md-pull-0{right:auto}.ant-col-md-offset-0{margin-left:0}.ant-col-md-order-0{order:0}}@media (min-width:992px){.ant-col-lg-1,.ant-col-lg-2,.ant-col-lg-3,.ant-col-lg-4,.ant-col-lg-5,.ant-col-lg-6,.ant-col-lg-7,.ant-col-lg-8,.ant-col-lg-9,.ant-col-lg-10,.ant-col-lg-11,.ant-col-lg-12,.ant-col-lg-13,.ant-col-lg-14,.ant-col-lg-15,.ant-col-lg-16,.ant-col-lg-17,.ant-col-lg-18,.ant-col-lg-19,.ant-col-lg-20,.ant-col-lg-21,.ant-col-lg-22,.ant-col-lg-23,.ant-col-lg-24{flex:0 0 auto;float:left}.ant-col-lg-24{display:block;box-sizing:border-box;width:100%}.ant-col-lg-push-24{left:100%}.ant-col-lg-pull-24{right:100%}.ant-col-lg-offset-24{margin-left:100%}.ant-col-lg-order-24{order:24}.ant-col-lg-23{display:block;box-sizing:border-box;width:95.83333333%}.ant-col-lg-push-23{left:95.83333333%}.ant-col-lg-pull-23{right:95.83333333%}.ant-col-lg-offset-23{margin-left:95.83333333%}.ant-col-lg-order-23{order:23}.ant-col-lg-22{display:block;box-sizing:border-box;width:91.66666667%}.ant-col-lg-push-22{left:91.66666667%}.ant-col-lg-pull-22{right:91.66666667%}.ant-col-lg-offset-22{margin-left:91.66666667%}.ant-col-lg-order-22{order:22}.ant-col-lg-21{display:block;box-sizing:border-box;width:87.5%}.ant-col-lg-push-21{left:87.5%}.ant-col-lg-pull-21{right:87.5%}.ant-col-lg-offset-21{margin-left:87.5%}.ant-col-lg-order-21{order:21}.ant-col-lg-20{display:block;box-sizing:border-box;width:83.33333333%}.ant-col-lg-push-20{left:83.33333333%}.ant-col-lg-pull-20{right:83.33333333%}.ant-col-lg-offset-20{margin-left:83.33333333%}.ant-col-lg-order-20{order:20}.ant-col-lg-19{display:block;box-sizing:border-box;width:79.16666667%}.ant-col-lg-push-19{left:79.16666667%}.ant-col-lg-pull-19{right:79.16666667%}.ant-col-lg-offset-19{margin-left:79.16666667%}.ant-col-lg-order-19{order:19}.ant-col-lg-18{display:block;box-sizing:border-box;width:75%}.ant-col-lg-push-18{left:75%}.ant-col-lg-pull-18{right:75%}.ant-col-lg-offset-18{margin-left:75%}.ant-col-lg-order-18{order:18}.ant-col-lg-17{display:block;box-sizing:border-box;width:70.83333333%}.ant-col-lg-push-17{left:70.83333333%}.ant-col-lg-pull-17{right:70.83333333%}.ant-col-lg-offset-17{margin-left:70.83333333%}.ant-col-lg-order-17{order:17}.ant-col-lg-16{display:block;box-sizing:border-box;width:66.66666667%}.ant-col-lg-push-16{left:66.66666667%}.ant-col-lg-pull-16{right:66.66666667%}.ant-col-lg-offset-16{margin-left:66.66666667%}.ant-col-lg-order-16{order:16}.ant-col-lg-15{display:block;box-sizing:border-box;width:62.5%}.ant-col-lg-push-15{left:62.5%}.ant-col-lg-pull-15{right:62.5%}.ant-col-lg-offset-15{margin-left:62.5%}.ant-col-lg-order-15{order:15}.ant-col-lg-14{display:block;box-sizing:border-box;width:58.33333333%}.ant-col-lg-push-14{left:58.33333333%}.ant-col-lg-pull-14{right:58.33333333%}.ant-col-lg-offset-14{margin-left:58.33333333%}.ant-col-lg-order-14{order:14}.ant-col-lg-13{display:block;box-sizing:border-box;width:54.16666667%}.ant-col-lg-push-13{left:54.16666667%}.ant-col-lg-pull-13{right:54.16666667%}.ant-col-lg-offset-13{margin-left:54.16666667%}.ant-col-lg-order-13{order:13}.ant-col-lg-12{display:block;box-sizing:border-box;width:50%}.ant-col-lg-push-12{left:50%}.ant-col-lg-pull-12{right:50%}.ant-col-lg-offset-12{margin-left:50%}.ant-col-lg-order-12{order:12}.ant-col-lg-11{display:block;box-sizing:border-box;width:45.83333333%}.ant-col-lg-push-11{left:45.83333333%}.ant-col-lg-pull-11{right:45.83333333%}.ant-col-lg-offset-11{margin-left:45.83333333%}.ant-col-lg-order-11{order:11}.ant-col-lg-10{display:block;box-sizing:border-box;width:41.66666667%}.ant-col-lg-push-10{left:41.66666667%}.ant-col-lg-pull-10{right:41.66666667%}.ant-col-lg-offset-10{margin-left:41.66666667%}.ant-col-lg-order-10{order:10}.ant-col-lg-9{display:block;box-sizing:border-box;width:37.5%}.ant-col-lg-push-9{left:37.5%}.ant-col-lg-pull-9{right:37.5%}.ant-col-lg-offset-9{margin-left:37.5%}.ant-col-lg-order-9{order:9}.ant-col-lg-8{display:block;box-sizing:border-box;width:33.33333333%}.ant-col-lg-push-8{left:33.33333333%}.ant-col-lg-pull-8{right:33.33333333%}.ant-col-lg-offset-8{margin-left:33.33333333%}.ant-col-lg-order-8{order:8}.ant-col-lg-7{display:block;box-sizing:border-box;width:29.16666667%}.ant-col-lg-push-7{left:29.16666667%}.ant-col-lg-pull-7{right:29.16666667%}.ant-col-lg-offset-7{margin-left:29.16666667%}.ant-col-lg-order-7{order:7}.ant-col-lg-6{display:block;box-sizing:border-box;width:25%}.ant-col-lg-push-6{left:25%}.ant-col-lg-pull-6{right:25%}.ant-col-lg-offset-6{margin-left:25%}.ant-col-lg-order-6{order:6}.ant-col-lg-5{display:block;box-sizing:border-box;width:20.83333333%}.ant-col-lg-push-5{left:20.83333333%}.ant-col-lg-pull-5{right:20.83333333%}.ant-col-lg-offset-5{margin-left:20.83333333%}.ant-col-lg-order-5{order:5}.ant-col-lg-4{display:block;box-sizing:border-box;width:16.66666667%}.ant-col-lg-push-4{left:16.66666667%}.ant-col-lg-pull-4{right:16.66666667%}.ant-col-lg-offset-4{margin-left:16.66666667%}.ant-col-lg-order-4{order:4}.ant-col-lg-3{display:block;box-sizing:border-box;width:12.5%}.ant-col-lg-push-3{left:12.5%}.ant-col-lg-pull-3{right:12.5%}.ant-col-lg-offset-3{margin-left:12.5%}.ant-col-lg-order-3{order:3}.ant-col-lg-2{display:block;box-sizing:border-box;width:8.33333333%}.ant-col-lg-push-2{left:8.33333333%}.ant-col-lg-pull-2{right:8.33333333%}.ant-col-lg-offset-2{margin-left:8.33333333%}.ant-col-lg-order-2{order:2}.ant-col-lg-1{display:block;box-sizing:border-box;width:4.16666667%}.ant-col-lg-push-1{left:4.16666667%}.ant-col-lg-pull-1{right:4.16666667%}.ant-col-lg-offset-1{margin-left:4.16666667%}.ant-col-lg-order-1{order:1}.ant-col-lg-0{display:none}.ant-col-push-0{left:auto}.ant-col-pull-0{right:auto}.ant-col-lg-push-0{left:auto}.ant-col-lg-pull-0{right:auto}.ant-col-lg-offset-0{margin-left:0}.ant-col-lg-order-0{order:0}}@media (min-width:1200px){.ant-col-xl-1,.ant-col-xl-2,.ant-col-xl-3,.ant-col-xl-4,.ant-col-xl-5,.ant-col-xl-6,.ant-col-xl-7,.ant-col-xl-8,.ant-col-xl-9,.ant-col-xl-10,.ant-col-xl-11,.ant-col-xl-12,.ant-col-xl-13,.ant-col-xl-14,.ant-col-xl-15,.ant-col-xl-16,.ant-col-xl-17,.ant-col-xl-18,.ant-col-xl-19,.ant-col-xl-20,.ant-col-xl-21,.ant-col-xl-22,.ant-col-xl-23,.ant-col-xl-24{flex:0 0 auto;float:left}.ant-col-xl-24{display:block;box-sizing:border-box;width:100%}.ant-col-xl-push-24{left:100%}.ant-col-xl-pull-24{right:100%}.ant-col-xl-offset-24{margin-left:100%}.ant-col-xl-order-24{order:24}.ant-col-xl-23{display:block;box-sizing:border-box;width:95.83333333%}.ant-col-xl-push-23{left:95.83333333%}.ant-col-xl-pull-23{right:95.83333333%}.ant-col-xl-offset-23{margin-left:95.83333333%}.ant-col-xl-order-23{order:23}.ant-col-xl-22{display:block;box-sizing:border-box;width:91.66666667%}.ant-col-xl-push-22{left:91.66666667%}.ant-col-xl-pull-22{right:91.66666667%}.ant-col-xl-offset-22{margin-left:91.66666667%}.ant-col-xl-order-22{order:22}.ant-col-xl-21{display:block;box-sizing:border-box;width:87.5%}.ant-col-xl-push-21{left:87.5%}.ant-col-xl-pull-21{right:87.5%}.ant-col-xl-offset-21{margin-left:87.5%}.ant-col-xl-order-21{order:21}.ant-col-xl-20{display:block;box-sizing:border-box;width:83.33333333%}.ant-col-xl-push-20{left:83.33333333%}.ant-col-xl-pull-20{right:83.33333333%}.ant-col-xl-offset-20{margin-left:83.33333333%}.ant-col-xl-order-20{order:20}.ant-col-xl-19{display:block;box-sizing:border-box;width:79.16666667%}.ant-col-xl-push-19{left:79.16666667%}.ant-col-xl-pull-19{right:79.16666667%}.ant-col-xl-offset-19{margin-left:79.16666667%}.ant-col-xl-order-19{order:19}.ant-col-xl-18{display:block;box-sizing:border-box;width:75%}.ant-col-xl-push-18{left:75%}.ant-col-xl-pull-18{right:75%}.ant-col-xl-offset-18{margin-left:75%}.ant-col-xl-order-18{order:18}.ant-col-xl-17{display:block;box-sizing:border-box;width:70.83333333%}.ant-col-xl-push-17{left:70.83333333%}.ant-col-xl-pull-17{right:70.83333333%}.ant-col-xl-offset-17{margin-left:70.83333333%}.ant-col-xl-order-17{order:17}.ant-col-xl-16{display:block;box-sizing:border-box;width:66.66666667%}.ant-col-xl-push-16{left:66.66666667%}.ant-col-xl-pull-16{right:66.66666667%}.ant-col-xl-offset-16{margin-left:66.66666667%}.ant-col-xl-order-16{order:16}.ant-col-xl-15{display:block;box-sizing:border-box;width:62.5%}.ant-col-xl-push-15{left:62.5%}.ant-col-xl-pull-15{right:62.5%}.ant-col-xl-offset-15{margin-left:62.5%}.ant-col-xl-order-15{order:15}.ant-col-xl-14{display:block;box-sizing:border-box;width:58.33333333%}.ant-col-xl-push-14{left:58.33333333%}.ant-col-xl-pull-14{right:58.33333333%}.ant-col-xl-offset-14{margin-left:58.33333333%}.ant-col-xl-order-14{order:14}.ant-col-xl-13{display:block;box-sizing:border-box;width:54.16666667%}.ant-col-xl-push-13{left:54.16666667%}.ant-col-xl-pull-13{right:54.16666667%}.ant-col-xl-offset-13{margin-left:54.16666667%}.ant-col-xl-order-13{order:13}.ant-col-xl-12{display:block;box-sizing:border-box;width:50%}.ant-col-xl-push-12{left:50%}.ant-col-xl-pull-12{right:50%}.ant-col-xl-offset-12{margin-left:50%}.ant-col-xl-order-12{order:12}.ant-col-xl-11{display:block;box-sizing:border-box;width:45.83333333%}.ant-col-xl-push-11{left:45.83333333%}.ant-col-xl-pull-11{right:45.83333333%}.ant-col-xl-offset-11{margin-left:45.83333333%}.ant-col-xl-order-11{order:11}.ant-col-xl-10{display:block;box-sizing:border-box;width:41.66666667%}.ant-col-xl-push-10{left:41.66666667%}.ant-col-xl-pull-10{right:41.66666667%}.ant-col-xl-offset-10{margin-left:41.66666667%}.ant-col-xl-order-10{order:10}.ant-col-xl-9{display:block;box-sizing:border-box;width:37.5%}.ant-col-xl-push-9{left:37.5%}.ant-col-xl-pull-9{right:37.5%}.ant-col-xl-offset-9{margin-left:37.5%}.ant-col-xl-order-9{order:9}.ant-col-xl-8{display:block;box-sizing:border-box;width:33.33333333%}.ant-col-xl-push-8{left:33.33333333%}.ant-col-xl-pull-8{right:33.33333333%}.ant-col-xl-offset-8{margin-left:33.33333333%}.ant-col-xl-order-8{order:8}.ant-col-xl-7{display:block;box-sizing:border-box;width:29.16666667%}.ant-col-xl-push-7{left:29.16666667%}.ant-col-xl-pull-7{right:29.16666667%}.ant-col-xl-offset-7{margin-left:29.16666667%}.ant-col-xl-order-7{order:7}.ant-col-xl-6{display:block;box-sizing:border-box;width:25%}.ant-col-xl-push-6{left:25%}.ant-col-xl-pull-6{right:25%}.ant-col-xl-offset-6{margin-left:25%}.ant-col-xl-order-6{order:6}.ant-col-xl-5{display:block;box-sizing:border-box;width:20.83333333%}.ant-col-xl-push-5{left:20.83333333%}.ant-col-xl-pull-5{right:20.83333333%}.ant-col-xl-offset-5{margin-left:20.83333333%}.ant-col-xl-order-5{order:5}.ant-col-xl-4{display:block;box-sizing:border-box;width:16.66666667%}.ant-col-xl-push-4{left:16.66666667%}.ant-col-xl-pull-4{right:16.66666667%}.ant-col-xl-offset-4{margin-left:16.66666667%}.ant-col-xl-order-4{order:4}.ant-col-xl-3{display:block;box-sizing:border-box;width:12.5%}.ant-col-xl-push-3{left:12.5%}.ant-col-xl-pull-3{right:12.5%}.ant-col-xl-offset-3{margin-left:12.5%}.ant-col-xl-order-3{order:3}.ant-col-xl-2{display:block;box-sizing:border-box;width:8.33333333%}.ant-col-xl-push-2{left:8.33333333%}.ant-col-xl-pull-2{right:8.33333333%}.ant-col-xl-offset-2{margin-left:8.33333333%}.ant-col-xl-order-2{order:2}.ant-col-xl-1{display:block;box-sizing:border-box;width:4.16666667%}.ant-col-xl-push-1{left:4.16666667%}.ant-col-xl-pull-1{right:4.16666667%}.ant-col-xl-offset-1{margin-left:4.16666667%}.ant-col-xl-order-1{order:1}.ant-col-xl-0{display:none}.ant-col-push-0{left:auto}.ant-col-pull-0{right:auto}.ant-col-xl-push-0{left:auto}.ant-col-xl-pull-0{right:auto}.ant-col-xl-offset-0{margin-left:0}.ant-col-xl-order-0{order:0}}@media (min-width:1600px){.ant-col-xxl-1,.ant-col-xxl-2,.ant-col-xxl-3,.ant-col-xxl-4,.ant-col-xxl-5,.ant-col-xxl-6,.ant-col-xxl-7,.ant-col-xxl-8,.ant-col-xxl-9,.ant-col-xxl-10,.ant-col-xxl-11,.ant-col-xxl-12,.ant-col-xxl-13,.ant-col-xxl-14,.ant-col-xxl-15,.ant-col-xxl-16,.ant-col-xxl-17,.ant-col-xxl-18,.ant-col-xxl-19,.ant-col-xxl-20,.ant-col-xxl-21,.ant-col-xxl-22,.ant-col-xxl-23,.ant-col-xxl-24{flex:0 0 auto;float:left}.ant-col-xxl-24{display:block;box-sizing:border-box;width:100%}.ant-col-xxl-push-24{left:100%}.ant-col-xxl-pull-24{right:100%}.ant-col-xxl-offset-24{margin-left:100%}.ant-col-xxl-order-24{order:24}.ant-col-xxl-23{display:block;box-sizing:border-box;width:95.83333333%}.ant-col-xxl-push-23{left:95.83333333%}.ant-col-xxl-pull-23{right:95.83333333%}.ant-col-xxl-offset-23{margin-left:95.83333333%}.ant-col-xxl-order-23{order:23}.ant-col-xxl-22{display:block;box-sizing:border-box;width:91.66666667%}.ant-col-xxl-push-22{left:91.66666667%}.ant-col-xxl-pull-22{right:91.66666667%}.ant-col-xxl-offset-22{margin-left:91.66666667%}.ant-col-xxl-order-22{order:22}.ant-col-xxl-21{display:block;box-sizing:border-box;width:87.5%}.ant-col-xxl-push-21{left:87.5%}.ant-col-xxl-pull-21{right:87.5%}.ant-col-xxl-offset-21{margin-left:87.5%}.ant-col-xxl-order-21{order:21}.ant-col-xxl-20{display:block;box-sizing:border-box;width:83.33333333%}.ant-col-xxl-push-20{left:83.33333333%}.ant-col-xxl-pull-20{right:83.33333333%}.ant-col-xxl-offset-20{margin-left:83.33333333%}.ant-col-xxl-order-20{order:20}.ant-col-xxl-19{display:block;box-sizing:border-box;width:79.16666667%}.ant-col-xxl-push-19{left:79.16666667%}.ant-col-xxl-pull-19{right:79.16666667%}.ant-col-xxl-offset-19{margin-left:79.16666667%}.ant-col-xxl-order-19{order:19}.ant-col-xxl-18{display:block;box-sizing:border-box;width:75%}.ant-col-xxl-push-18{left:75%}.ant-col-xxl-pull-18{right:75%}.ant-col-xxl-offset-18{margin-left:75%}.ant-col-xxl-order-18{order:18}.ant-col-xxl-17{display:block;box-sizing:border-box;width:70.83333333%}.ant-col-xxl-push-17{left:70.83333333%}.ant-col-xxl-pull-17{right:70.83333333%}.ant-col-xxl-offset-17{margin-left:70.83333333%}.ant-col-xxl-order-17{order:17}.ant-col-xxl-16{display:block;box-sizing:border-box;width:66.66666667%}.ant-col-xxl-push-16{left:66.66666667%}.ant-col-xxl-pull-16{right:66.66666667%}.ant-col-xxl-offset-16{margin-left:66.66666667%}.ant-col-xxl-order-16{order:16}.ant-col-xxl-15{display:block;box-sizing:border-box;width:62.5%}.ant-col-xxl-push-15{left:62.5%}.ant-col-xxl-pull-15{right:62.5%}.ant-col-xxl-offset-15{margin-left:62.5%}.ant-col-xxl-order-15{order:15}.ant-col-xxl-14{display:block;box-sizing:border-box;width:58.33333333%}.ant-col-xxl-push-14{left:58.33333333%}.ant-col-xxl-pull-14{right:58.33333333%}.ant-col-xxl-offset-14{margin-left:58.33333333%}.ant-col-xxl-order-14{order:14}.ant-col-xxl-13{display:block;box-sizing:border-box;width:54.16666667%}.ant-col-xxl-push-13{left:54.16666667%}.ant-col-xxl-pull-13{right:54.16666667%}.ant-col-xxl-offset-13{margin-left:54.16666667%}.ant-col-xxl-order-13{order:13}.ant-col-xxl-12{display:block;box-sizing:border-box;width:50%}.ant-col-xxl-push-12{left:50%}.ant-col-xxl-pull-12{right:50%}.ant-col-xxl-offset-12{margin-left:50%}.ant-col-xxl-order-12{order:12}.ant-col-xxl-11{display:block;box-sizing:border-box;width:45.83333333%}.ant-col-xxl-push-11{left:45.83333333%}.ant-col-xxl-pull-11{right:45.83333333%}.ant-col-xxl-offset-11{margin-left:45.83333333%}.ant-col-xxl-order-11{order:11}.ant-col-xxl-10{display:block;box-sizing:border-box;width:41.66666667%}.ant-col-xxl-push-10{left:41.66666667%}.ant-col-xxl-pull-10{right:41.66666667%}.ant-col-xxl-offset-10{margin-left:41.66666667%}.ant-col-xxl-order-10{order:10}.ant-col-xxl-9{display:block;box-sizing:border-box;width:37.5%}.ant-col-xxl-push-9{left:37.5%}.ant-col-xxl-pull-9{right:37.5%}.ant-col-xxl-offset-9{margin-left:37.5%}.ant-col-xxl-order-9{order:9}.ant-col-xxl-8{display:block;box-sizing:border-box;width:33.33333333%}.ant-col-xxl-push-8{left:33.33333333%}.ant-col-xxl-pull-8{right:33.33333333%}.ant-col-xxl-offset-8{margin-left:33.33333333%}.ant-col-xxl-order-8{order:8}.ant-col-xxl-7{display:block;box-sizing:border-box;width:29.16666667%}.ant-col-xxl-push-7{left:29.16666667%}.ant-col-xxl-pull-7{right:29.16666667%}.ant-col-xxl-offset-7{margin-left:29.16666667%}.ant-col-xxl-order-7{order:7}.ant-col-xxl-6{display:block;box-sizing:border-box;width:25%}.ant-col-xxl-push-6{left:25%}.ant-col-xxl-pull-6{right:25%}.ant-col-xxl-offset-6{margin-left:25%}.ant-col-xxl-order-6{order:6}.ant-col-xxl-5{display:block;box-sizing:border-box;width:20.83333333%}.ant-col-xxl-push-5{left:20.83333333%}.ant-col-xxl-pull-5{right:20.83333333%}.ant-col-xxl-offset-5{margin-left:20.83333333%}.ant-col-xxl-order-5{order:5}.ant-col-xxl-4{display:block;box-sizing:border-box;width:16.66666667%}.ant-col-xxl-push-4{left:16.66666667%}.ant-col-xxl-pull-4{right:16.66666667%}.ant-col-xxl-offset-4{margin-left:16.66666667%}.ant-col-xxl-order-4{order:4}.ant-col-xxl-3{display:block;box-sizing:border-box;width:12.5%}.ant-col-xxl-push-3{left:12.5%}.ant-col-xxl-pull-3{right:12.5%}.ant-col-xxl-offset-3{margin-left:12.5%}.ant-col-xxl-order-3{order:3}.ant-col-xxl-2{display:block;box-sizing:border-box;width:8.33333333%}.ant-col-xxl-push-2{left:8.33333333%}.ant-col-xxl-pull-2{right:8.33333333%}.ant-col-xxl-offset-2{margin-left:8.33333333%}.ant-col-xxl-order-2{order:2}.ant-col-xxl-1{display:block;box-sizing:border-box;width:4.16666667%}.ant-col-xxl-push-1{left:4.16666667%}.ant-col-xxl-pull-1{right:4.16666667%}.ant-col-xxl-offset-1{margin-left:4.16666667%}.ant-col-xxl-order-1{order:1}.ant-col-xxl-0{display:none}.ant-col-push-0{left:auto}.ant-col-pull-0{right:auto}.ant-col-xxl-push-0{left:auto}.ant-col-xxl-pull-0{right:auto}.ant-col-xxl-offset-0{margin-left:0}.ant-col-xxl-order-0{order:0}} diff --git a/public/assets/admin/umi.js b/public/assets/admin/umi.js index c0db52f1..ae363dab 100644 --- a/public/assets/admin/umi.js +++ b/public/assets/admin/umi.js @@ -1 +1 @@ -(function(e){function t(t){for(var r,a,s=t[0],l=t[1],c=t[2],h=0,d=[];h 0!";if(e!=this.$splits){if(e>this.$splits){while(this.$splitse)t=this.$editors[this.$splits-1],this.$container.removeChild(t.container),this.$splits--;this.resize()}},this.getSplits=function(){return this.$splits},this.getEditor=function(e){return this.$editors[e]},this.getCurrentEditor=function(){return this.$cEditor},this.focus=function(){this.$cEditor.focus()},this.blur=function(){this.$cEditor.blur()},this.setTheme=function(e){this.$editors.forEach(function(t){t.setTheme(e)})},this.setKeyboardHandler=function(e){this.$editors.forEach(function(t){t.setKeyboardHandler(e)})},this.forEach=function(e,t){this.$editors.forEach(e,t)},this.$fontSize="",this.setFontSize=function(e){this.$fontSize=e,this.forEach(function(t){t.setFontSize(e)})},this.$cloneSession=function(e){var t=new s(e.getDocument(),e.getMode()),n=e.getUndoManager();return t.setUndoManager(n),t.setTabSize(e.getTabSize()),t.setUseSoftTabs(e.getUseSoftTabs()),t.setOverwrite(e.getOverwrite()),t.setBreakpoints(e.getBreakpoints()),t.setUseWrapMode(e.getUseWrapMode()),t.setUseWorker(e.getUseWorker()),t.setWrapLimitRange(e.$wrapLimitRange.min,e.$wrapLimitRange.max),t.$foldData=e.$cloneFoldData(),t},this.setSession=function(e,t){var n;n=null==t?this.$cEditor:this.$editors[t];var r=this.$editors.some(function(t){return t.session===e});return r&&(e=this.$cloneSession(e)),n.setSession(e),e},this.getOrientation=function(){return this.$orientation},this.setOrientation=function(e){this.$orientation!=e&&(this.$orientation=e,this.resize())},this.resize=function(){var e,t=this.$container.clientWidth,n=this.$container.clientHeight;if(this.$orientation==this.BESIDE)for(var r=t/this.$splits,i=0;i=3&&":"===e[t-3]?0:t>=3&&"/"===e[t-3]?0:r.match(n.re.no_http)[0].length:0}},"mailto:":{validate:function(e,t,n){var r=e.slice(t);return n.re.mailto||(n.re.mailto=new RegExp("^"+n.re.src_email_name+"@"+n.re.src_host_strict,"i")),n.re.mailto.test(r)?r.match(n.re.mailto)[0].length:0}}},f="a[cdefgilmnoqrstuwxz]|b[abdefghijmnorstvwyz]|c[acdfghiklmnoruvwxyz]|d[ejkmoz]|e[cegrstu]|f[ijkmor]|g[abdefghilmnpqrstuwy]|h[kmnrtu]|i[delmnoqrst]|j[emop]|k[eghimnprwyz]|l[abcikrstuvy]|m[acdeghklmnopqrstuvwxyz]|n[acefgilopruz]|om|p[aefghklmnrstwy]|qa|r[eosuw]|s[abcdeghijklmnortuvxyz]|t[cdfghjklmnortvwz]|u[agksyz]|v[aceginu]|w[fs]|y[et]|z[amw]",p="biz|com|edu|gov|net|org|pro|web|xxx|aero|asia|coop|info|museum|name|shop|\u0440\u0444".split("|");function m(e){e.__index__=-1,e.__text_cache__=""}function g(e){return function(t,n){var r=t.slice(n);return e.test(r)?r.match(e)[0].length:0}}function v(){return function(e,t){t.normalize(e)}}function y(e){var t=e.re=n("sRdV")(e.__opts__),r=e.__tlds__.slice();function i(e){return e.replace("%TLDS%",t.src_tlds)}e.onCompile(),e.__tlds_replaced__||r.push(f),r.push(t.src_xn),t.src_tlds=r.join("|"),t.email_fuzzy=RegExp(i(t.tpl_email_fuzzy),"i"),t.link_fuzzy=RegExp(i(t.tpl_link_fuzzy),"i"),t.link_no_ip_fuzzy=RegExp(i(t.tpl_link_no_ip_fuzzy),"i"),t.host_fuzzy_test=RegExp(i(t.tpl_host_fuzzy_test),"i");var u=[];function h(e,t){throw new Error('(LinkifyIt) Invalid schema "'+e+'": '+t)}e.__compiled__={},Object.keys(e.__schemas__).forEach(function(t){var n=e.__schemas__[t];if(null!==n){var r={validate:null,link:null};if(e.__compiled__[t]=r,a(n))return s(n.validate)?r.validate=g(n.validate):l(n.validate)?r.validate=n.validate:h(t,n),void(l(n.normalize)?r.normalize=n.normalize:n.normalize?h(t,n):r.normalize=v());o(n)?u.push(t):h(t,n)}}),u.forEach(function(t){e.__compiled__[e.__schemas__[t]]&&(e.__compiled__[t].validate=e.__compiled__[e.__schemas__[t]].validate,e.__compiled__[t].normalize=e.__compiled__[e.__schemas__[t]].normalize)}),e.__compiled__[""]={validate:null,normalize:v()};var d=Object.keys(e.__compiled__).filter(function(t){return t.length>0&&e.__compiled__[t]}).map(c).join("|");e.re.schema_test=RegExp("(^|(?!_)(?:[><\uff5c]|"+t.src_ZPCc+"))("+d+")","i"),e.re.schema_search=RegExp("(^|(?!_)(?:[><\uff5c]|"+t.src_ZPCc+"))("+d+")","ig"),e.re.pretest=RegExp("("+e.re.schema_test.source+")|("+e.re.host_fuzzy_test.source+")|@","i"),m(e)}function b(e,t){var n=e.__index__,r=e.__last_index__,i=e.__text_cache__.slice(n,r);this.schema=e.__schema__.toLowerCase(),this.index=n+t,this.lastIndex=r+t,this.raw=i,this.text=i,this.url=i}function w(e,t){var n=new b(e,t);return e.__compiled__[n.schema].normalize(n,e),n}function x(e,t){if(!(this instanceof x))return new x(e,t);t||h(e)&&(t=e,e={}),this.__opts__=r({},u,t),this.__index__=-1,this.__last_index__=-1,this.__schema__="",this.__text_cache__="",this.__schemas__=r({},d,e),this.__compiled__={},this.__tlds__=p,this.__tlds_replaced__=!1,this.re={},y(this)}x.prototype.add=function(e,t){return this.__schemas__[e]=t,y(this),this},x.prototype.set=function(e){return this.__opts__=r(this.__opts__,e),this},x.prototype.test=function(e){if(this.__text_cache__=e,this.__index__=-1,!e.length)return!1;var t,n,r,i,o,a,s,l,c;if(this.re.schema_test.test(e)){s=this.re.schema_search,s.lastIndex=0;while(null!==(t=s.exec(e)))if(i=this.testSchemaAt(e,t[2],s.lastIndex),i){this.__schema__=t[2],this.__index__=t.index+t[1].length,this.__last_index__=t.index+t[0].length+i;break}}return this.__opts__.fuzzyLink&&this.__compiled__["http:"]&&(l=e.search(this.re.host_fuzzy_test),l>=0&&(this.__index__<0||l=0&&null!==(r=e.match(this.re.email_fuzzy))&&(o=r.index+r[1].length,a=r.index+r[0].length,(this.__index__<0||othis.__last_index__)&&(this.__schema__="mailto:",this.__index__=o,this.__last_index__=a))),this.__index__>=0},x.prototype.pretest=function(e){return this.re.pretest.test(e)},x.prototype.testSchemaAt=function(e,t,n){return this.__compiled__[t.toLowerCase()]?this.__compiled__[t.toLowerCase()].validate(e,n,this):0},x.prototype.match=function(e){var t=0,n=[];this.__index__>=0&&this.__text_cache__===e&&(n.push(w(this,t)),t=this.__last_index__);var r=t?e.slice(t):e;while(this.test(r))n.push(w(this,t)),r=r.slice(this.__last_index__),t+=this.__last_index__;return n.length?n:null},x.prototype.tlds=function(e,t){return e=Array.isArray(e)?e:[e],t?(this.__tlds__=this.__tlds__.concat(e).sort().filter(function(e,t,n){return e!==n[t-1]}).reverse(),y(this),this):(this.__tlds__=e.slice(),this.__tlds_replaced__=!0,y(this),this)},x.prototype.normalize=function(e){e.schema||(e.url="http://"+e.url),"mailto:"!==e.schema||/^mailto:/i.test(e.url)||(e.url="mailto:"+e.url)},x.prototype.onCompile=function(){},e.exports=x},"+JPL":function(e,t,n){e.exports={default:n("+SFK"),__esModule:!0}},"+LrT":function(e,t,n){"use strict";var r={childContextTypes:!0,contextTypes:!0,defaultProps:!0,displayName:!0,getDefaultProps:!0,getDerivedStateFromProps:!0,mixins:!0,propTypes:!0,type:!0},i={name:!0,length:!0,prototype:!0,caller:!0,callee:!0,arguments:!0,arity:!0},o=Object.defineProperty,a=Object.getOwnPropertyNames,s=Object.getOwnPropertySymbols,l=Object.getOwnPropertyDescriptor,c=Object.getPrototypeOf,u=c&&c(Object);function h(e,t,n){if("string"!==typeof t){if(u){var d=c(t);d&&d!==u&&h(e,d,n)}var f=a(t);s&&(f=f.concat(s(t)));for(var p=0;px;x++)if((d||x in y)&&(m=y[x],g=b(m,x,v),e))if(n)_[x]=g;else if(g)switch(e){case 3:return!0;case 5:return m;case 6:return x;case 2:_.push(m)}else if(u)return!1;return h?-1:c||u?u:_}}},"+wdc":function(e,t,n){"use strict";var r,i,o,a,s;if("undefined"===typeof window||"function"!==typeof MessageChannel){var l=null,c=null,u=function(){if(null!==l)try{var e=t.unstable_now();l(!0,e),l=null}catch(e){throw setTimeout(u,0),e}},h=Date.now();t.unstable_now=function(){return Date.now()-h},r=function(e){null!==l?setTimeout(r,0,e):(l=e,setTimeout(u,0))},i=function(e,t){c=setTimeout(e,t)},o=function(){clearTimeout(c)},a=function(){return!1},s=t.unstable_forceFrameRate=function(){}}else{var d=window.performance,f=window.Date,p=window.setTimeout,m=window.clearTimeout;if("undefined"!==typeof console){var g=window.cancelAnimationFrame;"function"!==typeof window.requestAnimationFrame&&console.error("This browser doesn't support requestAnimationFrame. Make sure that you load a polyfill in older browsers. https://fb.me/react-polyfills"),"function"!==typeof g&&console.error("This browser doesn't support cancelAnimationFrame. Make sure that you load a polyfill in older browsers. https://fb.me/react-polyfills")}if("object"===typeof d&&"function"===typeof d.now)t.unstable_now=function(){return d.now()};else{var v=f.now();t.unstable_now=function(){return f.now()-v}}var y=!1,b=null,w=-1,x=5,_=0;a=function(){return t.unstable_now()>=_},s=function(){},t.unstable_forceFrameRate=function(e){0>e||125>>1,i=e[r];if(!(void 0!==i&&0T(a,n))void 0!==l&&0>T(l,a)?(e[r]=l,e[s]=n,r=s):(e[r]=a,e[o]=n,r=o);else{if(!(void 0!==l&&0>T(l,n)))break e;e[r]=l,e[s]=n,r=s}}}return t}return null}function T(e,t){var n=e.sortIndex-t.sortIndex;return 0!==n?n:e.id-t.id}var A=[],M=[],P=1,R=null,L=3,D=!1,j=!1,N=!1;function I(e){for(var t=k(M);null!==t;){if(null===t.callback)O(M);else{if(!(t.startTime<=e))break;O(M),t.sortIndex=t.expirationTime,E(A,t)}t=k(M)}}function $(e){if(N=!1,I(e),!j)if(null!==k(A))j=!0,r(F);else{var t=k(M);null!==t&&i($,t.startTime-e)}}function F(e,n){j=!1,N&&(N=!1,o()),D=!0;var r=L;try{for(I(n),R=k(A);null!==R&&(!(R.expirationTime>n)||e&&!a());){var s=R.callback;if(null!==s){R.callback=null,L=R.priorityLevel;var l=s(R.expirationTime<=n);n=t.unstable_now(),"function"===typeof l?R.callback=l:R===k(A)&&O(A),I(n)}else O(A);R=k(A)}if(null!==R)var c=!0;else{var u=k(M);null!==u&&i($,u.startTime-n),c=!1}return c}finally{R=null,L=r,D=!1}}function V(e){switch(e){case 1:return-1;case 2:return 250;case 5:return 1073741823;case 4:return 1e4;default:return 5e3}}var B=s;t.unstable_IdlePriority=5,t.unstable_ImmediatePriority=1,t.unstable_LowPriority=4,t.unstable_NormalPriority=3,t.unstable_Profiling=null,t.unstable_UserBlockingPriority=2,t.unstable_cancelCallback=function(e){e.callback=null},t.unstable_continueExecution=function(){j||D||(j=!0,r(F))},t.unstable_getCurrentPriorityLevel=function(){return L},t.unstable_getFirstCallbackNode=function(){return k(A)},t.unstable_next=function(e){switch(L){case 1:case 2:case 3:var t=3;break;default:t=L}var n=L;L=t;try{return e()}finally{L=n}},t.unstable_pauseExecution=function(){},t.unstable_requestPaint=B,t.unstable_runWithPriority=function(e,t){switch(e){case 1:case 2:case 3:case 4:case 5:break;default:e=3}var n=L;L=e;try{return t()}finally{L=n}},t.unstable_scheduleCallback=function(e,n,a){var s=t.unstable_now();if("object"===typeof a&&null!==a){var l=a.delay;l="number"===typeof l&&0s?(e.sortIndex=l,E(M,e),null===k(A)&&e===k(M)&&(N?o():N=!0,i($,l-s))):(e.sortIndex=a,E(A,e),j||D||(j=!0,r(F))),e},t.unstable_shouldYield=function(){var e=t.unstable_now();I(e);var n=k(A);return n!==R&&null!==R&&null!==n&&null!==n.callback&&n.startTime<=e&&n.expirationTime=0||(i[n]=e[n]);return i}var v=n("2mql"),y=n.n(v),b=n("TOwV"),w="undefined"!==typeof window&&"undefined"!==typeof window.document&&"undefined"!==typeof window.document.createElement?r["useLayoutEffect"]:r["useEffect"],x=[],_=[null,null];function C(e,t){var n=e[1];return[t.payload,n+1]}function S(e,t,n){w(function(){return e.apply(void 0,t)},n)}function E(e,t,n,r,i,o,a){e.current=r,t.current=i,n.current=!1,o.current&&(o.current=null,a())}function k(e,t,n,r,i,o,a,s,l,c){if(e){var u=!1,h=null,d=function(){if(!u){var e,n,d=t.getState();try{e=r(d,i.current)}catch(e){n=e,h=e}n||(h=null),e===o.current?a.current||l():(o.current=e,s.current=e,a.current=!0,c({type:"STORE_UPDATED",payload:{error:n}}))}};n.onStateChange=d,n.trySubscribe(),d();var f=function(){if(u=!0,n.tryUnsubscribe(),n.onStateChange=null,h)throw h};return f}}var O=function(){return[null,0]};function T(e,t){void 0===t&&(t={});var n=t,a=n.getDisplayName,s=void 0===a?function(e){return"ConnectAdvanced("+e+")"}:a,l=n.methodName,c=void 0===l?"connectAdvanced":l,u=n.renderCountProp,h=void 0===u?void 0:u,f=n.shouldHandleStateChanges,p=void 0===f||f,v=n.storeKey,w=void 0===v?"store":v,T=(n.withRef,n.forwardRef),A=void 0!==T&&T,M=n.context,P=void 0===M?o:M,R=g(n,["getDisplayName","methodName","renderCountProp","shouldHandleStateChanges","storeKey","withRef","forwardRef","context"]),L=P;return function(t){var n=t.displayName||t.name||"Component",o=s(n),a=m({},R,{getDisplayName:s,methodName:c,renderCountProp:h,shouldHandleStateChanges:p,storeKey:w,displayName:o,wrappedComponentName:n,WrappedComponent:t}),l=R.pure;function u(t){return e(t.dispatch,a)}var f=l?r["useMemo"]:function(e){return e()};function v(e){var n=Object(r["useMemo"])(function(){var t=e.reactReduxForwardedRef,n=g(e,["reactReduxForwardedRef"]);return[e.context,t,n]},[e]),o=n[0],a=n[1],s=n[2],l=Object(r["useMemo"])(function(){return o&&o.Consumer&&Object(b["isContextConsumer"])(i.a.createElement(o.Consumer,null))?o:L},[o,L]),c=Object(r["useContext"])(l),h=Boolean(e.store)&&Boolean(e.store.getState)&&Boolean(e.store.dispatch);Boolean(c)&&Boolean(c.store);var v=h?e.store:c.store,y=Object(r["useMemo"])(function(){return u(v)},[v]),w=Object(r["useMemo"])(function(){if(!p)return _;var e=new d(v,h?null:c.subscription),t=e.notifyNestedSubs.bind(e);return[e,t]},[v,h,c]),T=w[0],A=w[1],M=Object(r["useMemo"])(function(){return h?c:m({},c,{subscription:T})},[h,c,T]),P=Object(r["useReducer"])(C,x,O),R=P[0],D=R[0],j=P[1];if(D&&D.error)throw D.error;var N=Object(r["useRef"])(),I=Object(r["useRef"])(s),$=Object(r["useRef"])(),F=Object(r["useRef"])(!1),V=f(function(){return $.current&&s===I.current?$.current:y(v.getState(),s)},[v,D,s]);S(E,[I,N,F,s,V,$,A]),S(k,[p,v,T,y,I,N,F,$,A,j],[v,T,y]);var B=Object(r["useMemo"])(function(){return i.a.createElement(t,m({},V,{ref:a}))},[a,t,V]),W=Object(r["useMemo"])(function(){return p?i.a.createElement(l.Provider,{value:M},B):B},[l,B,M]);return W}var T=l?i.a.memo(v):v;if(T.WrappedComponent=t,T.displayName=o,A){var M=i.a.forwardRef(function(e,t){return i.a.createElement(T,m({},e,{reactReduxForwardedRef:t}))});return M.displayName=o,M.WrappedComponent=t,y()(M,t)}return y()(T,t)}}function A(e,t){return e===t?0!==e||0!==t||1/e===1/t:e!==e&&t!==t}function M(e,t){if(A(e,t))return!0;if("object"!==typeof e||null===e||"object"!==typeof t||null===t)return!1;var n=Object.keys(e),r=Object.keys(t);if(n.length!==r.length)return!1;for(var i=0;i=0;r--){var i=t[r](e);if(i)return i}return function(t,r){throw new Error("Invalid value of type "+typeof e+" for "+n+" argument when connecting component "+r.wrappedComponentName+".")}}function Q(e,t){return e===t}function Z(e){var t=void 0===e?{}:e,n=t.connectHOC,r=void 0===n?T:n,i=t.mapStateToPropsFactories,o=void 0===i?B:i,a=t.mapDispatchToPropsFactories,s=void 0===a?$:a,l=t.mergePropsFactories,c=void 0===l?q:l,u=t.selectorFactory,h=void 0===u?Y:u;return function(e,t,n,i){void 0===i&&(i={});var a=i,l=a.pure,u=void 0===l||l,d=a.areStatesEqual,f=void 0===d?Q:d,p=a.areOwnPropsEqual,v=void 0===p?M:p,y=a.areStatePropsEqual,b=void 0===y?M:y,w=a.areMergedPropsEqual,x=void 0===w?M:w,_=g(a,["pure","areStatesEqual","areOwnPropsEqual","areStatePropsEqual","areMergedPropsEqual"]),C=X(e,o,"mapStateToProps"),S=X(t,s,"mapDispatchToProps"),E=X(n,c,"mergeProps");return r(h,m({methodName:"connect",getDisplayName:function(e){return"Connect("+e+")"},shouldHandleStateChanges:Boolean(e),initMapStateToProps:C,initMapDispatchToProps:S,initMergeProps:E,pure:u,areStatesEqual:f,areOwnPropsEqual:v,areStatePropsEqual:b,areMergedPropsEqual:x},_))}}var J=Z();var ee=n("i8i4");n.d(t,"a",function(){return p}),n.d(t,"b",function(){return o}),n.d(t,"c",function(){return J}),l(ee["unstable_batchedUpdates"])},"/Mfd":function(e,t,n){var r=n("7vYJ"),i=n("4gcQ"),o=n("WFJy"),a=n("J57/")("IE_PROTO"),s=function(){},l="prototype",c=function(){var e,t=n("SfDG")("iframe"),r=o.length,i="<",a=">";t.style.display="none",n("XI6d").appendChild(t),t.src="javascript:",e=t.contentWindow.document,e.open(),e.write(i+"script"+a+"document.F=Object"+i+"/script"+a),e.close(),c=e.F;while(r--)delete c[l][o[r]];return c()};e.exports=Object.create||function(e,t){var n;return null!==e?(s[l]=r(e),n=new s,s[l]=null,n[a]=e):n=c(),void 0===t?n:i(n,t)}},"/Qhy":function(e,t,n){"use strict";function r(e){return"/"===e.charAt(0)}function i(e,t){for(var n=t,r=n+1,i=e.length;r1&&void 0!==arguments[1]?arguments[1]:"",n=e&&e.split("/")||[],o=t&&t.split("/")||[],a=e&&r(e),s=t&&r(t),l=a||s;if(e&&r(e)?o=n:n.length&&(o.pop(),o=o.concat(n)),!o.length)return"/";var c=void 0;if(o.length){var u=o[o.length-1];c="."===u||".."===u||""===u}else c=!1;for(var h=0,d=o.length;d>=0;d--){var f=o[d];"."===f?i(o,d):".."===f?(i(o,d),h++):h&&(i(o,d),h--)}if(!l)for(;h--;h)o.unshift("..");!l||""===o[0]||o[0]&&r(o[0])||o.unshift("");var p=o.join("/");return c&&"/"!==p.substr(-1)&&(p+="/"),p}n.r(t),t["default"]=o},"/dDc":function(e,t,n){"use strict";var r={transitionstart:{transition:"transitionstart",WebkitTransition:"webkitTransitionStart",MozTransition:"mozTransitionStart",OTransition:"oTransitionStart",msTransition:"MSTransitionStart"},animationstart:{animation:"animationstart",WebkitAnimation:"webkitAnimationStart",MozAnimation:"mozAnimationStart",OAnimation:"oAnimationStart",msAnimation:"MSAnimationStart"}},i={transitionend:{transition:"transitionend",WebkitTransition:"webkitTransitionEnd",MozTransition:"mozTransitionEnd",OTransition:"oTransitionEnd",msTransition:"MSTransitionEnd"},animationend:{animation:"animationend",WebkitAnimation:"webkitAnimationEnd",MozAnimation:"mozAnimationEnd",OAnimation:"oAnimationEnd",msAnimation:"MSAnimationEnd"}},o=[],a=[];function s(){var e=document.createElement("div"),t=e.style;function n(e,n){for(var r in e)if(e.hasOwnProperty(r)){var i=e[r];for(var o in i)if(o in t){n.push(i[o]);break}}}"AnimationEvent"in window||(delete r.animationstart.animation,delete i.animationend.animation),"TransitionEvent"in window||(delete r.transitionstart.transition,delete i.transitionend.transition),n(r,o),n(i,a)}function l(e,t,n){e.addEventListener(t,n,!1)}function c(e,t,n){e.removeEventListener(t,n,!1)}"undefined"!==typeof window&&"undefined"!==typeof document&&s();var u={startEvents:o,addStartEventListener:function(e,t){0!==o.length?o.forEach(function(n){l(e,n,t)}):window.setTimeout(t,0)},removeStartEventListener:function(e,t){0!==o.length&&o.forEach(function(n){c(e,n,t)})},endEvents:a,addEndEventListener:function(e,t){0!==a.length?a.forEach(function(n){l(e,n,t)}):window.setTimeout(t,0)},removeEndEventListener:function(e,t){0!==a.length&&a.forEach(function(n){c(e,n,t)})}};t["a"]=u},"/gYn":function(e,t,n){var r=n("gL7N")("toPrimitive"),i=Date.prototype;r in i||n("VPOE")(i,r,n("CfL3"))},"/mWb":function(e,t,n){"use strict";var r=n("WGNW"),i=n("il4q"),o=n("8BMt"),a=n("BFt8"),s=n("15BC").f;n("8Z/V")&&r(r.P+n("OJuA"),"Object",{__lookupGetter__:function(e){var t,n=i(this),r=o(e,!0);do{if(t=s(n,r))return t.get}while(n=a(n))}})},"/sWw":function(e,t,n){var r=n("c0Oy"),i=n("bV5f"),o=n("FqPH"),a=n("zKnh"),s=n("V5/1").f;e.exports=function(e){var t=i.Symbol||(i.Symbol=o?{}:r.Symbol||{});"_"==e.charAt(0)||e in t||s(t,e,{value:a.f(e)})}},0:function(e,t,n){e.exports=n("KyW6")},"03ni":function(e,t,n){"use strict";var r=n("AUWw"),i=n("ZDr/");e.exports=function(e){var t=String(i(this)),n="",o=r(e);if(o<0||o==1/0)throw RangeError("Count can't be negative");for(;o>0;(o>>>=1)&&(t+=t))1&o&&(n+=t);return n}},"08Qx":function(e,t,n){var r=n("c0Oy"),i=r.navigator;e.exports=i&&i.userAgent||""},"0Wa5":function(e,t,n){"use strict";function r(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function i(e){for(var t=1;t0&&void 0!==arguments[0]?arguments[0]:{},t=e.namespace||s,n=e.only,l=void 0===n?[]:n,c=e.except,u=void 0===c?[]:c;if(l.length>0&&u.length>0)throw Error("It is ambiguous to configurate `only` and `except` items at the same time.");var h={global:!1,models:{},effects:{}},d=r({},t,function(){var e,t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:h,n=arguments.length>1?arguments[1]:void 0,s=n.type,l=n.payload,c=l||{},u=c.namespace,d=c.actionType;switch(s){case o:e=i({},t,{global:!0,models:i({},t.models,r({},u,!0)),effects:i({},t.effects,r({},d,!0))});break;case a:var f=i({},t.effects,r({},d,!1)),p=i({},t.models,r({},u,Object.keys(f).some(function(e){var t=e.split("/")[0];return t===u&&f[e]}))),m=Object.keys(p).some(function(e){return p[e]});e=i({},t,{global:m,models:p,effects:f});break;default:e=t;break}return e});function f(e,t,n,r){var i=t.put,s=n.namespace;return 0===l.length&&0===u.length||l.length>0&&-1!==l.indexOf(r)||u.length>0&&-1===u.indexOf(r)?regeneratorRuntime.mark(function t(){var n=arguments;return regeneratorRuntime.wrap(function(t){while(1)switch(t.prev=t.next){case 0:return t.next=2,i({type:o,payload:{namespace:s,actionType:r}});case 2:return t.next=4,e.apply(void 0,n);case 4:return t.next=6,i({type:a,payload:{namespace:s,actionType:r}});case 6:case"end":return t.stop()}},t)}):e}return{extraReducers:d,onEffect:f}}e.exports=l},"0hpf":function(e,t,n){"use strict";function r(e){"@babel/helpers - typeof";return r="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},r(e)}function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){for(var n=0;n0?arguments[0]:void 0)}},{add:function(e){return r.def(i(this,o),e=0===e?0:e,e)}},r)},"0wlq":function(e,t,n){"use strict";var r=n("WGNW"),i=n("8H45"),o=n("il4q"),a=n("OsVd"),s=n("wYm8"),l=n("17jC");r(r.P,"Array",{flatMap:function(e){var t,n,r=o(this);return s(e),t=a(r.length),n=l(r,0),i(n,r,r,t,0,1,e,arguments[1]),n}}),n("DIcO")("flatMap")},1:function(e,t){},"11+Y":function(e,t,n){"use strict";n.r(t);var r=n("jehZ"),i=n.n(r),o=(n("2qtc"),n("kLXV")),a=(n("5NDa"),n("5rEg")),s=(n("g9YV"),n("wCAj")),l=(n("+L6B"),n("2/Rp")),c=(n("/zsF"),n("PArb")),u=(n("Pwec"),n("CtXQ")),h=n("p0pE"),d=n.n(h),f=n("q1tI"),p=n.n(f),m=n("Bl7J"),g=n("/MKj"),v=n("8zNj");class y extends p.a.Component{constructor(e){super(e),this.state={group:[],submit:{},visible:!1}}componentDidMount(){this.props.dispatch({type:"serverGroup/fetch"})}save(){var e=d()({},this.state.submit);this.props.dispatch({type:"serverGroup/save",params:e,callback:()=>{this.modalVisible()}})}drop(e){this.props.dispatch({type:"serverGroup/drop",id:e})}edit(e){var t=this.props.serverGroup.groups;this.setState({submit:d()({},t[e]),visible:!0})}modalVisible(){this.setState({visible:!this.state.visible,submit:{}})}render(){var e=this.props.serverGroup,t=e.groups,n=e.fetchLoading,r=[{title:"\u7ec4ID",dataIndex:"id",key:"id"},{title:"\u7ec4\u540d\u79f0",dataIndex:"name",key:"name"},{title:"\u7528\u6237\u6570\u91cf",dataIndex:"user_count",key:"user_count",render:e=>{return p.a.createElement(p.a.Fragment,null,p.a.createElement(u["a"],{type:"user",style:{cursor:"move"}})," ",e)}},{title:"\u8282\u70b9\u6570\u91cf",dataIndex:"server_count",key:"server_count",render:e=>{return p.a.createElement(p.a.Fragment,null,p.a.createElement(u["a"],{type:"database",style:{cursor:"move"}})," ",e)}},{title:"\u64cd\u4f5c",dataIndex:"action",key:"action",align:"right",render:(e,t,n)=>{return p.a.createElement("div",null,p.a.createElement(v["a"],{record:t,key:t.id},p.a.createElement("a",{href:"javascript:void(0);",onClick:()=>this.edit(n)},"\u7f16\u8f91")),p.a.createElement(c["a"],{type:"vertical"}),p.a.createElement("a",{href:"javascript:void(0);",onClick:()=>this.drop(t.id)},"\u5220\u9664"))}}];return p.a.createElement(m["a"],i()({},this.props,{title:"\u6743\u9650\u7ec4\u7ba1\u7406"}),p.a.createElement("div",{className:"d-flex justify-content-between align-items-center"}),p.a.createElement("div",{className:"block block-rounded ".concat(n?"block-mode-loading":"")},p.a.createElement("div",{className:"bg-white"},p.a.createElement("div",{style:{padding:15}},p.a.createElement(v["a"],null,p.a.createElement(l["a"],{onClick:()=>this.modalVisible()},p.a.createElement(u["a"],{type:"plus"})," \u6dfb\u52a0\u6743\u9650\u7ec4"))),p.a.createElement(s["a"],{tableLayout:"auto",columns:r,dataSource:t,pagination:!1}))),p.a.createElement(o["a"],{title:"".concat(this.state.submit.id?"\u7f16\u8f91\u7ec4":"\u521b\u5efa\u7ec4"),visible:this.state.visible,onCancel:()=>this.modalVisible(),onOk:()=>n||this.save(),okText:n?p.a.createElement(u["a"],{type:"loading"}):"\u63d0\u4ea4",cancelText:"\u53d6\u6d88"},p.a.createElement("div",null,p.a.createElement("div",{className:"form-group"},p.a.createElement("label",{for:"example-text-input-alt"},"\u7ec4\u540d"),p.a.createElement(a["a"],{placeholder:"\u8bf7\u8f93\u5165\u7ec4\u540d",value:this.state.submit.name,onChange:e=>{this.setState({submit:d()({},this.state.submit,{name:e.target.value})})}})))))}}t["default"]=Object(g["c"])(e=>{var t=e.serverGroup;return{serverGroup:t}})(y)},"15BC":function(e,t,n){var r=n("LsAW"),i=n("pQGJ"),o=n("OeOC"),a=n("8BMt"),s=n("oxo0"),l=n("A7R+"),c=Object.getOwnPropertyDescriptor;t.f=n("8Z/V")?c:function(e,t){if(e=o(e),t=a(t,!0),l)try{return c(e,t)}catch(e){}if(s(e,t))return i(!r.f.call(e,t),e[t])}},"16Al":function(e,t,n){"use strict";var r=n("WbBG");function i(){}function o(){}o.resetWarningCache=i,e.exports=function(){function e(e,t,n,i,o,a){if(a!==r){var s=new Error("Calling PropTypes validators directly is not supported by the `prop-types` package. Use PropTypes.checkPropTypes() to call them. Read more at http://fb.me/use-check-prop-types");throw s.name="Invariant Violation",s}}function t(){return e}e.isRequired=e;var n={array:e,bool:e,func:e,number:e,object:e,string:e,symbol:e,any:e,arrayOf:t,element:e,elementType:e,instanceOf:t,node:e,objectOf:t,oneOf:t,oneOfType:t,shape:t,exact:t,checkPropTypes:o,resetWarningCache:i};return n.PropTypes=n,n}},"17jC":function(e,t,n){var r=n("3FhE");e.exports=function(e,t){return new(r(e))(t)}},"17x9":function(e,t,n){e.exports=n("16Al")()},"198K":function(e,t){function n(){throw new TypeError("Invalid attempt to destructure non-iterable instance")}e.exports=n},"1AkM":function(e,t,n){"use strict";n.d(t,"a",function(){return h}),n.d(t,"b",function(){return m});var r=n("Xnb7"),i=n("bYtY"),o=n("6GrX"),a=/\{([a-zA-Z0-9_]+)\|([^}]*)\}/g;function s(e,t,n,r,i){if(!t)return"";var o=(e+"").split("\n");i=l(t,n,r,i);for(var a=0,s=o.length;a=l;u++)c-=l;var h=Object(o["g"])(n,t);return h>c&&(n="",h=0),c=e-h,a.ellipsis=n,a.ellipsisWidth=h,a.contentWidth=c,a.containerWidth=e,a}function c(e,t){var n=t.containerWidth,r=t.font,i=t.contentWidth;if(!n)return"";var a=Object(o["g"])(e,r);if(a<=n)return e;for(var s=0;;s++){if(a<=i||s>=t.maxIterations){e+=t.ellipsis;break}var l=0===s?u(e,i,t.ascCharWidth,t.cnCharWidth):a>0?Math.floor(e.length*i/a):0;e=e.substr(0,l),a=Object(o["g"])(e,r)}return""===e&&(e=t.placeholder),e}function u(e,t,n,r){for(var i=0,o=0,a=e.length;og&&f){var v=Math.floor(g/d);n=n.slice(0,v)}var y=g,b=p;if(a&&(y+=a[0]+a[2],null!=b&&(b+=a[1]+a[3])),e&&u&&null!=b)for(var x=l(p,s,t.ellipsis,{minChar:t.truncateMinChar,placeholder:t.placeholder}),_=0;_f&&g(n,e.substring(f,m),t,d),g(n,l[2],t,d,l[1]),f=a.lastIndex}fu){T>0?(E.tokens=E.tokens.slice(0,T),C(E,O,k),n.lines=n.lines.slice(0,S+1)):n.lines=n.lines.slice(0,S);break e}var j=M.width,N=null==j||"auto"===j;if("string"===typeof j&&"%"===j.charAt(j.length-1))A.percentWidth=j,v.push(A),A.contentWidth=Object(o["g"])(A.text,L);else{if(N){var I=M.backgroundColor,$=I&&I.image;$&&($=r["b"]($),r["c"]($)&&(A.width=Math.max(A.width,$.width*D/$.height)))}var F=x&&null!=c?c-O:null;null!=F&&F0&&v+r.accumWidth>r.width&&(a=t.split("\n"),p=!0),r.accumWidth=v}else{var y=w(t,h,r.width,r.breakAll,r.accumWidth);r.accumWidth=y.accumWidth+g,s=y.linesWidths,a=y.lines}}else a=t.split("\n");for(var b=0;b=33&&t<=255}var y=Object(i["K"])(",&?/;] ".split(""),function(e,t){return e[t]=!0,e},{});function b(e){return!v(e)||!!y[e]}function w(e,t,n,r,i){for(var a=[],s=[],l="",c="",u=0,h=0,d=0;dn:i+h+p>n)?h?(l||c)&&(m?(l||(l=c,c="",u=0,h=u),a.push(l),s.push(h-u),c+=f,u+=p,l="",h=u):(c&&(l+=c,h+=u,c="",u=0),a.push(l),s.push(h),l=f,h=p)):m?(a.push(c),s.push(u),c=f,u=p):(a.push(f),s.push(p)):(h+=p,m?(c+=f,u+=p):(c&&(l+=c,c="",u=0),l+=f))}else c&&(l+=c,h+=u),a.push(l),s.push(h),l="",c="",u=0,h=0}return a.length||l||(l=e,c="",u=0),c&&(l+=c),l&&(a.push(l),s.push(h)),1===a.length&&(h+=i),{accumWidth:h,lines:a,linesWidths:s}}},"1EPD":function(e,t,n){"use strict";function r(e,t){e.prototype=Object.create(t.prototype),e.prototype.constructor=e,e.__proto__=t}n.d(t,"a",function(){return r})},"1Jh7":function(e,t,n){"use strict";var r=n("IaEH"),i=n("y+Vt"),o=n("T6xi"),a=function(){function e(){this.points=null,this.percent=1,this.smooth=0,this.smoothConstraint=null}return e}(),s=function(e){function t(t){return e.call(this,t)||this}return Object(r["a"])(t,e),t.prototype.getDefaultStyle=function(){return{stroke:"#000",fill:null}},t.prototype.getDefaultShape=function(){return new a},t.prototype.buildPath=function(e,t){o["a"](e,t,!1)},t}(i["b"]);s.prototype.type="polyline",t["a"]=s},"1MYJ":function(e,t,n){"use strict";var r=n("IaEH"),i=n("y+Vt"),o=function(e){function t(){var t=null!==e&&e.apply(this,arguments)||this;return t.type="compound",t}return Object(r["a"])(t,e),t.prototype._updatePathDirty=function(){for(var e=this.shape.paths,t=this.shapeChanged(),n=0;n=this._maxSize&&a>0){var l=n.head;n.remove(l),delete i[l.key],o=l.value,this._lastRemovedEntry=l}s?s.value=t:s=new r(t),s.key=e,n.insertEntry(s),i[e]=s}return o},e.prototype.get=function(e){var t=this._map[e],n=this._list;if(null!=t)return t!==n.tail&&(n.remove(t),n.insertEntry(t)),t.value},e.prototype.clear=function(){this._list.clear(),this._map={}},e.prototype.len=function(){return this._list.len()},e}();t["a"]=o},"1W/9":function(e,t,n){"use strict";var r=n("q1tI"),i=n.n(r),o=n("i8i4"),a=n.n(o),s=n("17x9"),l=n.n(s),c=n("VCL8"),u=n("PIAm"),h=n("QC+M"),d=n("qx4F");function f(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=t.element,r=void 0===n?document.body:n,i={},o=Object.keys(e);return o.forEach(function(e){i[e]=r.style[e]}),o.forEach(function(t){r.style[t]=e[t]}),i}var p=f;function m(){return document.body.scrollHeight>(window.innerHeight||document.documentElement.clientHeight)&&window.innerWidth>document.body.offsetWidth}var g={},v=function(e){if(m()||e){var t="ant-scrolling-effect",n=new RegExp("".concat(t),"g"),r=document.body.className;if(e){if(!n.test(r))return;return p(g),g={},void(document.body.className=r.replace(n,"").trim())}var i=Object(d["a"])();if(i&&(g=p({position:"relative",width:"calc(100% - ".concat(i,"px)")}),!n.test(r))){var o="".concat(r," ").concat(t);document.body.className=o.trim()}}};function y(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function b(e){for(var t=1;t0&&void 0!==arguments[0]?arguments[0]:{};return n(b(b(b({},t),s),{},{ref:e.savePortal}))},getContainer:this.getContainer,forceRender:r},function(t){var n=t.renderComponent,r=t.removeContainer;return e.renderComponent=n,e.removeContainer=r,null})}}],[{key:"getDerivedStateFromProps",value:function(e,t){var n=t.prevProps,r=t._self,i=e.visible,o=e.getContainer;if(n){var a=n.visible,s=n.getContainer;i!==a&&(R=i&&!a?R+1:R-1);var l="function"===typeof o&&"function"===typeof s;(l?o.toString()!==s.toString():o!==s)&&r.removeCurrentContainer(!1)}return{prevProps:e}}}]),n}(i.a.Component);N.propTypes={wrapperClassName:l.a.string,forceRender:l.a.bool,getContainer:l.a.any,children:l.a.func,visible:l.a.bool};t["a"]=Object(c["polyfill"])(N)},"1bdT":function(e,t,n){"use strict";var r=n("hYLj"),i=n("Bq2U"),o=n("mFDi"),a=n("b9Ot"),s=n("6GrX"),l=n("bYtY"),c=n("LPTA"),u=n("Qe9p"),h=n("ItGF"),d=n("S8SX"),f="__zr_normal__",p=["x","y","scaleX","scaleY","originX","originY","rotation","ignore"],m={x:!0,y:!0,scaleX:!0,scaleY:!0,originX:!0,originY:!0,rotation:!0,ignore:!1},g={},v=new o["a"](0,0,0,0),y=function(){function e(e){this.id=Object(l["o"])(),this.animators=[],this.currentStates=[],this.states={},this._init(e)}return e.prototype._init=function(e){this.attr(e)},e.prototype.drift=function(e,t,n){switch(this.draggable){case"horizontal":t=0;break;case"vertical":e=0;break}var r=this.transform;r||(r=this.transform=[1,0,0,1,0,0]),r[4]+=e,r[5]+=t,this.decomposeTransform(),this.markRedraw()},e.prototype.beforeUpdate=function(){},e.prototype.afterUpdate=function(){},e.prototype.update=function(){this.updateTransform(),this.__dirty&&this.updateInnerText()},e.prototype.updateInnerText=function(e){var t=this._textContent;if(t&&(!t.ignore||e)){this.textConfig||(this.textConfig={});var n=this.textConfig,r=n.local,i=t.innerTransformable,o=void 0,a=void 0,l=!1;i.parent=r?this:null;var c=!1;if(i.copyTransform(t),null!=n.position){var u=v;n.layoutRect?u.copy(n.layoutRect):u.copy(this.getBoundingRect()),r||u.applyTransform(this.transform),this.calculateTextPosition?this.calculateTextPosition(g,n,u):Object(s["d"])(g,n,u),i.x=g.x,i.y=g.y,o=g.align,a=g.verticalAlign;var h=n.origin;if(h&&null!=n.rotation){var f=void 0,p=void 0;"center"===h?(f=.5*u.width,p=.5*u.height):(f=Object(s["h"])(h[0],u.width),p=Object(s["h"])(h[1],u.height)),c=!0,i.originX=-i.x+f+(r?0:u.x),i.originY=-i.y+p+(r?0:u.y)}}null!=n.rotation&&(i.rotation=n.rotation);var m=n.offset;m&&(i.x+=m[0],i.y+=m[1],c||(i.originX=-m[0],i.originY=-m[1]));var y=null==n.inside?"string"===typeof n.position&&n.position.indexOf("inside")>=0:n.inside,b=this._innerTextDefaultStyle||(this._innerTextDefaultStyle={}),w=void 0,x=void 0,_=void 0;y&&this.canBeInsideText()?(w=n.insideFill,x=n.insideStroke,null!=w&&"auto"!==w||(w=this.getInsideTextFill()),null!=x&&"auto"!==x||(x=this.getInsideTextStroke(w),_=!0)):(w=n.outsideFill,x=n.outsideStroke,null!=w&&"auto"!==w||(w=this.getOutsideFill()),null!=x&&"auto"!==x||(x=this.getOutsideStroke(w),_=!0)),w=w||"#000",w===b.fill&&x===b.stroke&&_===b.autoStroke&&o===b.align&&a===b.verticalAlign||(l=!0,b.fill=w,b.stroke=x,b.autoStroke=_,b.align=o,b.verticalAlign=a,t.setDefaultTextStyle(b)),t.__dirty|=d["a"],l&&t.dirtyStyle(!0)}},e.prototype.canBeInsideText=function(){return!0},e.prototype.getInsideTextFill=function(){return"#fff"},e.prototype.getInsideTextStroke=function(e){return"#000"},e.prototype.getOutsideFill=function(){return this.__zr&&this.__zr.isDarkMode()?c["d"]:c["a"]},e.prototype.getOutsideStroke=function(e){var t=this.__zr&&this.__zr.getBackgroundColor(),n="string"===typeof t&&Object(u["d"])(t);n||(n=[255,255,255,1]);for(var r=n[3],i=this.__zr.isDarkMode(),o=0;o<3;o++)n[o]=n[o]*r+(i?0:255)*(1-r);return n[3]=1,Object(u["e"])(n,"rgba")},e.prototype.traverse=function(e,t){},e.prototype.attrKV=function(e,t){"textConfig"===e?this.setTextConfig(t):"textContent"===e?this.setTextContent(t):"clipPath"===e?this.setClipPath(t):"extra"===e?(this.extra=this.extra||{},Object(l["m"])(this.extra,t)):this[e]=t},e.prototype.hide=function(){this.ignore=!0,this.markRedraw()},e.prototype.show=function(){this.ignore=!1,this.markRedraw()},e.prototype.attr=function(e,t){if("string"===typeof e)this.attrKV(e,t);else if(Object(l["z"])(e))for(var n=e,r=Object(l["D"])(n),i=0;i0},e.prototype.getState=function(e){return this.states[e]},e.prototype.ensureState=function(e){var t=this.states;return t[e]||(t[e]={}),t[e]},e.prototype.clearStates=function(e){this.useState(f,!1,e)},e.prototype.useState=function(e,t,n,r){var i=e===f,o=this.hasState();if(o||!i){var a=this.currentStates,s=this.stateTransition;if(!(Object(l["q"])(a,e)>=0)||!t&&1!==a.length){var c;if(this.stateProxy&&!i&&(c=this.stateProxy(e)),c||(c=this.states&&this.states[e]),c||i){i||this.saveCurrentToNormalState(c);var u=!!(c&&c.hoverLayer||r);u&&this._toggleHoverLayerFlag(!0),this._applyStateObj(e,c,this._normalState,t,!n&&!this.__inHover&&s&&s.duration>0,s);var h=this._textContent,p=this._textGuide;return h&&h.useState(e,t,n,u),p&&p.useState(e,t,n,u),i?(this.currentStates=[],this._normalState={}):t?this.currentStates.push(e):this.currentStates=[e],this._updateAnimationTargets(),this.markRedraw(),!u&&this.__inHover&&(this._toggleHoverLayerFlag(!1),this.__dirty&=~d["a"]),c}Object(l["E"])("State "+e+" not exists.")}}},e.prototype.useStates=function(e,t,n){if(e.length){var r=[],i=this.currentStates,o=e.length,a=o===i.length;if(a)for(var s=0;s0,p);var m=this._textContent,g=this._textGuide;m&&m.useStates(e,t,h),g&&g.useStates(e,t,h),this._updateAnimationTargets(),this.currentStates=e.slice(),this.markRedraw(),!h&&this.__inHover&&(this._toggleHoverLayerFlag(!1),this.__dirty&=~d["a"])}else this.clearStates()},e.prototype._updateAnimationTargets=function(){for(var e=0;e=0){var n=this.currentStates.slice();n.splice(t,1),this.useStates(n)}},e.prototype.replaceState=function(e,t,n){var r=this.currentStates.slice(),i=Object(l["q"])(r,e),o=Object(l["q"])(r,t)>=0;i>=0?o?r.splice(i,1):r[i]=t:n&&!o&&r.push(t),this.useStates(r)},e.prototype.toggleState=function(e,t){t?this.useState(e,!0):this.removeState(e)},e.prototype._mergeStates=function(e){for(var t,n={},r=0;r=0&&t.splice(n,1)}),this.animators.push(e),n&&n.animation.addAnimator(e),n&&n.wakeUp()},e.prototype.updateDuringAnimation=function(e){this.markRedraw()},e.prototype.stopAnimation=function(e,t){for(var n=this.animators,r=n.length,i=[],o=0;o8)&&(i("position","_legacyPos","x","y"),i("scale","_legacyScale","scaleX","scaleY"),i("origin","_legacyOrigin","originX","originY"))}(),e}();function b(e,t,n,r,i){n=n||{};var o=[];C(e,"",e,t,n,r,o,i);var a=o.length,s=!1,l=n.done,c=n.aborted,u=function(){s=!0,a--,a<=0&&(s?l&&l():c&&c())},h=function(){a--,a<=0&&(s?l&&l():c&&c())};a||l&&l(),o.length>0&&n.during&&o[0].during(function(e,t){n.during(t)});for(var d=0;d0||o.force&&!s.length){for(var x=e.animators,S=[],E=0;Ee.serverManage);case 4:return l=n.sent,c=l.servers,re.serverManage);case 5:return o=e.sent,a=o.servers,e.next=9,Object(s["b"])("/admin/server/manage/sort",{sorts:a.map(e=>({key:e.type,value:e.id}))});case 9:return l=e.sent,e.next=12,r({type:"setState",payload:{fetchLoading:!1}});case 12:if(200===l.code){e.next=14;break}return e.abrupt("return");case 14:return e.next=16,r({type:"getNodes"});case 16:case"end":return e.stop()}},e)})()}}}},"1dGX":function(e,t,n){"use strict";t.Any=n("y8fO"),t.Cc=n("p7ys"),t.Cf=n("b9EY"),t.P=n("fKCf"),t.Z=n("T8I8")},"1dM+":function(e,t,n){"use strict";n.r(t);var r=n("jehZ"),i=n.n(r),o=(n("+L6B"),n("2/Rp")),a=(n("Znn+"),n("ZTPi")),s=(n("BoS7"),n("Sdc0")),l=n("p0pE"),c=n.n(l),u=n("q1tI"),h=n.n(u),d=n("Bl7J"),f=n("/MKj");class p extends h.a.Component{render(){return h.a.createElement("div",{className:"row ".concat(this.props.isChildren?"v2board-config-children":""),style:{padding:"20px",borderBottom:"1px solid #eee"}},h.a.createElement("div",{className:"col-lg-6"},h.a.createElement("div",{style:{fontWeight:"bold",marginBottom:5}},this.props.title),h.a.createElement("div",{style:{fontSize:12,marginBottom:5,color:"#666"}},this.props.description)),h.a.createElement("div",{className:"col-lg-6 text-right"},this.props.children))}}class m extends h.a.Component{componentDidMount(){this.props.dispatch({type:"config/fetch"}),this.props.dispatch({type:"plan/fetch"}),this.props.dispatch({type:"config/getEmailTemplate"}),this.props.dispatch({type:"config/getThemeTemplate"})}set(e,t,n){var r=this.props.config;this.props.dispatch({type:"config/setState",payload:{[e]:c()({},r[e],{[t]:n})}}),this.inputDelayTimer&&clearTimeout(this.inputDelayTimer),this.inputDelayTimer=setTimeout(function(){this.inputDelayTimer=null,this.props.dispatch({type:"config/save",parentKey:e})}.bind(this),1500)}render(){var e=this.props.config,t=e.site,n=e.invite,r=e.subscribe,l=e.frontend,c=e.server,u=e.tabs,f=e.fetchLoading,m=e.emailTemplate,g=e.themeTemplate,v=e.email,y=e.telegram,b=e.setTelegramWebhookLoading,w=e.app,x=e.testSendMailLoading,_=this.props.plan.plans;return console.log(t),h.a.createElement(d["a"],i()({},this.props,{title:"\u7cfb\u7edf\u914d\u7f6e"}),h.a.createElement("div",{className:"mb-0 block border-bottom ".concat(f?"block-mode-loading":"")},h.a.createElement(a["a"],{onChange:e=>this.setState({tabs:e}),defaultActiveKey:u,size:"large"},h.a.createElement(a["a"].TabPane,{tab:"\u7ad9\u70b9",key:"site"},h.a.createElement("div",{className:""},h.a.createElement(p,{title:"\u7ad9\u70b9\u540d\u79f0",description:"\u7528\u4e8e\u663e\u793a\u9700\u8981\u7ad9\u70b9\u540d\u79f0\u7684\u5730\u65b9\u3002"},h.a.createElement("input",{type:"text",className:"form-control",placeholder:"\u8bf7\u8f93\u5165\u7ad9\u70b9\u540d\u79f0",defaultValue:t.app_name,onChange:e=>this.set("site","app_name",e.target.value)})),h.a.createElement(p,{title:"\u7ad9\u70b9\u63cf\u8ff0",description:"\u7528\u4e8e\u663e\u793a\u9700\u8981\u7ad9\u70b9\u63cf\u8ff0\u7684\u5730\u65b9\u3002"},h.a.createElement("input",{type:"text",className:"form-control",placeholder:"\u8bf7\u8f93\u5165\u7ad9\u70b9\u63cf\u8ff0",defaultValue:t.app_description,onChange:e=>this.set("site","app_description",e.target.value)})),h.a.createElement(p,{title:"\u7ad9\u70b9\u7f51\u5740",description:"\u7cfb\u7edf\u9700\u8981\u5bf9\u5916\u63d0\u4f9b\u7f51\u5740\u7684\u65f6\u5019\u5c06\u4f1a\u4f7f\u7528\u672c\u5904\u7684\u7f51\u5740\uff0c\u5982\uff1a\u652f\u4ed8\u3001\u90ae\u4ef6\u3001\u4fe1\u606f\u63a8\u9001\u7b49\u3002"},h.a.createElement("input",{type:"text",className:"form-control",placeholder:"\u8bf7\u8f93\u5165\u7ad9\u70b9URL\uff0c\u672b\u5c3e\u4e0d\u8981/",defaultValue:t.app_url,onChange:e=>this.set("site","app_url",e.target.value)})),h.a.createElement(p,{title:"\u8ba2\u9605URL",description:"\u7528\u4e8e\u8ba2\u9605\u6240\u4f7f\u7528\uff0c\u7559\u7a7a\u5219\u4e3a\u7ad9\u70b9URL\u3002\u5982\u9700\u591a\u4e2a\u8ba2\u9605URL\u968f\u673a\u83b7\u53d6\u8bf7\u4f7f\u7528\u9017\u53f7\u8fdb\u884c\u5206\u5272\u3002"},h.a.createElement("textarea",{rows:"4",type:"text",className:"form-control",placeholder:"\u8bf7\u8f93\u5165\u8ba2\u9605URL\uff0c\u672b\u5c3e\u4e0d\u8981/\u3002\u9017\u53f7\u5206\u5272\u652f\u6301\u591a\u57df\u540d",defaultValue:t.subscribe_url,onChange:e=>this.set("site","subscribe_url",e.target.value)})),h.a.createElement(p,{title:"\u7528\u6237\u6761\u6b3e(TOS)URL",description:"\u7528\u4e8e\u8df3\u8f6c\u5230\u7528\u6237\u6761\u6b3e(TOS)"},h.a.createElement("input",{type:"text",className:"form-control",placeholder:"\u8bf7\u8f93\u5165\u7528\u6237\u6761\u6b3eURL\uff0c\u672b\u5c3e\u4e0d\u8981/",defaultValue:t.tos_url,onChange:e=>this.set("site","tos_url",e.target.value)})),h.a.createElement(p,{title:"\u5b89\u5168\u6a21\u5f0f",description:"\u5f00\u542f\u540e\u9664\u4e86\u7ad9\u70b9URL\u4ee5\u5916\u7684\u7ed1\u5b9a\u672c\u7ad9\u70b9\u7684\u57df\u540d\u8bbf\u95ee\u90fd\u5c06\u4f1a\u88ab403\u3002"},h.a.createElement(s["a"],{checked:parseInt(t.safe_mode_enable),onChange:e=>this.set("site","safe_mode_enable",e?1:0)})),h.a.createElement(p,{title:"\u505c\u6b62\u65b0\u7528\u6237\u6ce8\u518c",description:"\u5f00\u542f\u540e\u4efb\u4f55\u4eba\u90fd\u5c06\u65e0\u6cd5\u8fdb\u884c\u6ce8\u518c\u3002"},h.a.createElement(s["a"],{checked:parseInt(t.stop_register),onChange:e=>this.set("site","stop_register",e?1:0)})),h.a.createElement(p,{title:"\u90ae\u7bb1\u9a8c\u8bc1",description:"\u5f00\u542f\u540e\u5c06\u4f1a\u5f3a\u5236\u8981\u6c42\u7528\u6237\u8fdb\u884c\u90ae\u7bb1\u9a8c\u8bc1\u3002"},h.a.createElement(s["a"],{checked:parseInt(t.email_verify),onChange:e=>this.set("site","email_verify",e?1:0)})),h.a.createElement(p,{title:"\u7981\u6b62\u4f7f\u7528Gmail\u591a\u522b\u540d",description:"\u5f00\u542f\u540eGmail\u591a\u522b\u540d\u5c06\u65e0\u6cd5\u6ce8\u518c\u3002"},h.a.createElement(s["a"],{checked:parseInt(t.email_gmail_limit_enable),onChange:e=>this.set("site","email_gmail_limit_enable",e?1:0)})),h.a.createElement(p,{title:"\u6ce8\u518c\u8bd5\u7528",description:"\u9009\u62e9\u9700\u8981\u8bd5\u7528\u7684\u8ba2\u9605\uff0c\u5982\u679c\u6ca1\u6709\u9009\u9879\u8bf7\u5148\u524d\u5f80\u8ba2\u9605\u7ba1\u7406\u6dfb\u52a0\u3002"},h.a.createElement("select",{onChange:e=>this.set("site","try_out_plan_id",e.target.value),className:"form-control",value:t.try_out_plan_id,placeholder:"\u8bf7\u9009\u62e9\u8bd5\u7528\u8ba2\u9605"},h.a.createElement("option",{value:0},"\u5173\u95ed"),_.map(e=>{return h.a.createElement("option",{key:Math.random(),value:e.id},e.name)}))),0===t.try_out_plan_id||h.a.createElement(p,{isChildren:!0,title:"\u8bd5\u7528\u65f6\u95f4(\u5c0f\u65f6)"},h.a.createElement("input",{type:"text",className:"form-control",placeholder:"\u8bf7\u8f93\u5165",defaultValue:t.try_out_hour,onChange:e=>this.set("site","try_out_hour",e.target.value)})),h.a.createElement(p,{title:"\u90ae\u7bb1\u540e\u7f00\u767d\u540d\u5355",description:"\u5f00\u542f\u540e\u5728\u540d\u5355\u4e2d\u7684\u90ae\u7bb1\u540e\u7f00\u624d\u5141\u8bb8\u8fdb\u884c\u6ce8\u518c\u3002"},h.a.createElement(s["a"],{checked:parseInt(t.email_whitelist_enable),onChange:e=>this.set("site","email_whitelist_enable",e?1:0)})),t.email_whitelist_enable?h.a.createElement(p,{isChildren:!0,title:"\u767d\u540d\u5355\u540e\u7f00",description:"\u8bf7\u4f7f\u7528\u9017\u53f7\u8fdb\u884c\u5206\u5272\uff0c\u5982\uff1aqq.com,gmail.com\u3002"},h.a.createElement("textarea",{rows:"4",type:"text",className:"form-control",placeholder:"\u8bf7\u8f93\u5165\u540e\u7f00\u57df\u540d\uff0c\u9017\u53f7\u5206\u5272 \u5982\uff1aqq.com,gmail.com",defaultValue:t.email_whitelist_suffix,onChange:e=>this.set("site","email_whitelist_suffix",e.target.value.split(","))})):"",h.a.createElement(p,{title:"\u9632\u673a\u5668\u4eba",description:"\u5f00\u542f\u540e\u5c06\u4f1a\u4f7f\u7528Google reCAPTCHA\u9632\u6b62\u673a\u5668\u4eba\u3002"},h.a.createElement(s["a"],{checked:parseInt(t.recaptcha_enable),onChange:e=>this.set("site","recaptcha_enable",e?1:0)})),t.recaptcha_enable?h.a.createElement(h.a.Fragment,null,h.a.createElement(p,{isChildren:!0,title:"\u5bc6\u94a5",description:"\u5728Google reCAPTCHA\u7533\u8bf7\u7684\u5bc6\u94a5\u3002"},h.a.createElement("input",{type:"text",className:"form-control",placeholder:"\u8bf7\u8f93\u5165",defaultValue:t.recaptcha_key,onChange:e=>this.set("site","recaptcha_key",e.target.value)})),h.a.createElement(p,{isChildren:!0,title:"\u7f51\u7ad9\u5bc6\u94a5",description:"\u5728Google reCAPTCH\u7533\u8bf7\u7684\u7f51\u7ad9\u5bc6\u94a5\u3002"},h.a.createElement("input",{type:"text",className:"form-control",placeholder:"\u8bf7\u8f93\u5165",defaultValue:t.recaptcha_site_key,onChange:e=>this.set("site","recaptcha_site_key",e.target.value)}))):"",h.a.createElement(p,{title:"\u8d27\u5e01\u5355\u4f4d",description:"\u4ec5\u7528\u4e8e\u5c55\u793a\u4f7f\u7528\uff0c\u66f4\u6539\u540e\u7cfb\u7edf\u4e2d\u6240\u6709\u7684\u8d27\u5e01\u5355\u4f4d\u90fd\u5c06\u53d1\u751f\u53d8\u66f4\u3002"},h.a.createElement("input",{type:"text",className:"form-control",placeholder:"CNY",defaultValue:t.currency,onChange:e=>this.set("site","currency",e.target.value)})),h.a.createElement(p,{title:"\u8d27\u5e01\u7b26\u53f7",description:"\u4ec5\u7528\u4e8e\u5c55\u793a\u4f7f\u7528\uff0c\u66f4\u6539\u540e\u7cfb\u7edf\u4e2d\u6240\u6709\u7684\u8d27\u5e01\u5355\u4f4d\u90fd\u5c06\u53d1\u751f\u53d8\u66f4\u3002"},h.a.createElement("input",{type:"text",className:"form-control",placeholder:"\xa5",defaultValue:t.currency_symbol,onChange:e=>this.set("site","currency_symbol",e.target.value)})))),h.a.createElement(a["a"].TabPane,{tab:"\u8ba2\u9605",key:"subscribe"},h.a.createElement("div",{className:""},h.a.createElement(p,{title:"\u5141\u8bb8\u7528\u6237\u66f4\u6539\u8ba2\u9605",description:"\u5f00\u542f\u540e\u7528\u6237\u5c06\u4f1a\u53ef\u4ee5\u5bf9\u8ba2\u9605\u8ba1\u5212\u8fdb\u884c\u53d8\u66f4\u3002"},h.a.createElement(s["a"],{checked:parseInt(r.plan_change_enable),onChange:e=>this.set("subscribe","plan_change_enable",e?1:0)})),h.a.createElement(p,{title:"\u6708\u6d41\u91cf\u91cd\u7f6e\u65b9\u5f0f",description:"\u5168\u5c40\u6d41\u91cf\u91cd\u7f6e\u65b9\u5f0f\uff0c\u9ed8\u8ba4\u6bcf\u67081\u53f7\u3002\u53ef\u4ee5\u5728\u8ba2\u9605\u7ba1\u7406\u4e3a\u8ba2\u9605\u5355\u72ec\u8bbe\u7f6e\u3002"},h.a.createElement("select",{onChange:e=>this.set("subscribe","reset_traffic_method",e.target.value),className:"form-control",value:r.reset_traffic_method,placeholder:"\u8bf7\u9009\u62e9\u8ba2\u9605\u91cd\u7f6e\u65b9\u5f0f"},h.a.createElement("option",{value:0},"\u6bcf\u67081\u53f7"),h.a.createElement("option",{value:1},"\u8ba2\u5355\u65e5"),h.a.createElement("option",{value:2},"\u4e0d\u91cd\u7f6e"))),h.a.createElement(p,{title:"\u5f00\u542f\u6298\u62b5\u65b9\u6848",description:"\u5f00\u542f\u540e\u7528\u6237\u66f4\u6362\u8ba2\u9605\u5c06\u4f1a\u7531\u7cfb\u7edf\u5bf9\u539f\u6709\u8ba2\u9605\u8fdb\u884c\u6298\u62b5\uff0c\u65b9\u6848\u53c2\u8003\u6587\u6863\u3002"},h.a.createElement(s["a"],{checked:parseInt(r.surplus_enable),onChange:e=>this.set("subscribe","surplus_enable",e?1:0)})),h.a.createElement(p,{title:"\u5f53\u8ba2\u9605\u65b0\u8d2d\u65f6\u89e6\u53d1\u4e8b\u4ef6",description:"\u65b0\u8d2d\u8ba2\u9605\u5b8c\u6210\u65f6\u5c06\u89e6\u53d1\u8be5\u4efb\u52a1\u3002"},h.a.createElement("select",{onChange:e=>this.set("subscribe","new_order_event_id",e.target.value),className:"form-control",value:r.new_order_event_id,placeholder:"\u8bf7\u9009\u62e9\u4e8b\u4ef6"},h.a.createElement("option",{value:0},"\u4e0d\u6267\u884c\u4efb\u4f55\u52a8\u4f5c"),h.a.createElement("option",{value:1},"\u91cd\u7f6e\u7528\u6237\u6d41\u91cf"))),h.a.createElement(p,{title:"\u5f53\u8ba2\u9605\u7eed\u8d39\u65f6\u89e6\u53d1\u4e8b\u4ef6",description:"\u7eed\u8d39\u8ba2\u9605\u5b8c\u6210\u65f6\u5c06\u89e6\u53d1\u8be5\u4efb\u52a1\u3002"},h.a.createElement("select",{onChange:e=>this.set("subscribe","renew_order_event_id",e.target.value),className:"form-control",value:r.renew_order_event_id,placeholder:"\u8bf7\u9009\u62e9\u4e8b\u4ef6"},h.a.createElement("option",{value:0},"\u4e0d\u6267\u884c\u4efb\u4f55\u52a8\u4f5c"),h.a.createElement("option",{value:1},"\u91cd\u7f6e\u7528\u6237\u6d41\u91cf"))),h.a.createElement(p,{title:"\u5f53\u8ba2\u9605\u53d8\u66f4\u65f6\u89e6\u53d1\u4e8b\u4ef6",description:"\u53d8\u66f4\u8ba2\u9605\u5b8c\u6210\u65f6\u5c06\u89e6\u53d1\u8be5\u4efb\u52a1\u3002"},h.a.createElement("select",{onChange:e=>this.set("subscribe","change_order_event_id",e.target.value),className:"form-control",value:r.change_order_event_id,placeholder:"\u8bf7\u9009\u62e9\u4e8b\u4ef6"},h.a.createElement("option",{value:0},"\u4e0d\u6267\u884c\u4efb\u4f55\u52a8\u4f5c"),h.a.createElement("option",{value:1},"\u91cd\u7f6e\u7528\u6237\u6d41\u91cf"))))),h.a.createElement(a["a"].TabPane,{tab:"\u9080\u8bf7&\u4f63\u91d1",key:"invite"},h.a.createElement("div",{className:""},h.a.createElement(p,{title:"\u5f00\u542f\u5f3a\u5236\u9080\u8bf7",description:"\u5f00\u542f\u540e\u53ea\u6709\u88ab\u9080\u8bf7\u7684\u7528\u6237\u624d\u53ef\u4ee5\u8fdb\u884c\u6ce8\u518c\u3002"},h.a.createElement(s["a"],{checked:parseInt(n.invite_force),onChange:e=>this.set("invite","invite_force",e?1:0)})),h.a.createElement(p,{title:"\u9080\u8bf7\u4f63\u91d1\u767e\u5206\u6bd4",description:"\u9ed8\u8ba4\u5168\u5c40\u7684\u4f63\u91d1\u5206\u914d\u6bd4\u4f8b\uff0c\u4f60\u53ef\u4ee5\u5728\u7528\u6237\u7ba1\u7406\u5355\u72ec\u914d\u7f6e\u5355\u4e2a\u6bd4\u4f8b\u3002"},h.a.createElement("input",{type:"text",className:"form-control",placeholder:"\u8bf7\u8f93\u5165",defaultValue:n.invite_commission,onChange:e=>this.set("invite","invite_commission",parseInt(e.target.value))})),h.a.createElement(p,{title:"\u7528\u6237\u53ef\u521b\u5efa\u9080\u8bf7\u7801\u4e0a\u9650"},h.a.createElement("input",{type:"text",className:"form-control",placeholder:"\u8bf7\u8f93\u5165",defaultValue:n.invite_gen_limit,onChange:e=>this.set("invite","invite_gen_limit",parseInt(e.target.value))})),h.a.createElement(p,{title:"\u9080\u8bf7\u7801\u6c38\u4e0d\u5931\u6548",description:"\u5f00\u542f\u540e\u9080\u8bf7\u7801\u88ab\u4f7f\u7528\u540e\u5c06\u4e0d\u4f1a\u5931\u6548\uff0c\u5426\u5219\u4f7f\u7528\u8fc7\u540e\u5373\u5931\u6548\u3002"},h.a.createElement(s["a"],{checked:parseInt(n.invite_never_expire),onChange:e=>this.set("invite","invite_never_expire",e?1:0)})),h.a.createElement(p,{title:"\u4f63\u91d1\u4ec5\u9996\u6b21\u53d1\u653e",description:"\u5f00\u542f\u540e\u88ab\u9080\u8bf7\u4eba\u9996\u6b21\u652f\u4ed8\u65f6\u624d\u4f1a\u4ea7\u751f\u4f63\u91d1\uff0c\u53ef\u4ee5\u5728\u7528\u6237\u7ba1\u7406\u5bf9\u7528\u6237\u8fdb\u884c\u5355\u72ec\u914d\u7f6e\u3002"},h.a.createElement(s["a"],{checked:parseInt(n.commission_first_time_enable),onChange:e=>this.set("invite","commission_first_time_enable",e?1:0)})),h.a.createElement(p,{title:"\u4f63\u91d1\u81ea\u52a8\u786e\u8ba4",description:"\u5f00\u542f\u540e\u4f63\u91d1\u5c06\u4f1a\u5728\u8ba2\u5355\u5b8c\u62103\u65e5\u540e\u81ea\u52a8\u8fdb\u884c\u786e\u8ba4\u3002"},h.a.createElement(s["a"],{checked:parseInt(n.commission_auto_check_enable),onChange:e=>this.set("invite","commission_auto_check_enable",e?1:0)})),h.a.createElement(p,{title:"\u63d0\u73b0\u5355\u7533\u8bf7\u95e8\u69db(\u5143)",description:"\u5c0f\u4e8e\u95e8\u69db\u91d1\u989d\u7684\u63d0\u73b0\u5355\u5c06\u4e0d\u4f1a\u88ab\u63d0\u4ea4\u3002"},h.a.createElement("input",{type:"text",className:"form-control",placeholder:"\u8bf7\u8f93\u5165",defaultValue:n.commission_withdraw_limit,onChange:e=>this.set("invite","commission_withdraw_limit",e.target.value)})),h.a.createElement(p,{title:"\u63d0\u73b0\u65b9\u5f0f",description:"\u53ef\u4ee5\u652f\u6301\u7684\u63d0\u73b0\u65b9\u5f0f\u3002"},h.a.createElement("textarea",{rows:"4",type:"text",className:"form-control",placeholder:"\u8bf7\u8f93\u5165\u540e\u7f00\u57df\u540d\uff0c\u9017\u53f7\u5206\u5272 \u5982\uff1a\u652f\u4ed8\u5b9d,USDT,\u8d1d\u5b9d",defaultValue:n.commission_withdraw_method,onChange:e=>this.set("invite","commission_withdraw_method",e.target.value.split(","))})),h.a.createElement(p,{title:"\u5173\u95ed\u63d0\u73b0",description:"\u5173\u95ed\u540e\u5c06\u7981\u6b62\u7528\u6237\u7533\u8bf7\u63d0\u73b0\uff0c\u4e14\u9080\u8bf7\u4f63\u91d1\u5c06\u4f1a\u76f4\u63a5\u8fdb\u5165\u7528\u6237\u4f59\u989d\u3002"},h.a.createElement(s["a"],{checked:parseInt(n.withdraw_close_enable),onChange:e=>this.set("invite","withdraw_close_enable",e?1:0)})),h.a.createElement(p,{title:"\u4e09\u7ea7\u5206\u9500",description:"\u5f00\u542f\u540e\u5c06\u4f63\u91d1\u5c06\u6309\u7167\u8bbe\u7f6e\u76843\u6210\u6bd4\u4f8b\u8fdb\u884c\u5206\u6210\uff0c\u4e09\u6210\u6bd4\u4f8b\u5408\u8ba1\u8bf7\u4e0d\u8981>100%\u3002"},h.a.createElement(s["a"],{checked:parseInt(n.commission_distribution_enable),onChange:e=>this.set("invite","commission_distribution_enable",e?1:0)})),parseInt(n.commission_distribution_enable)?h.a.createElement(h.a.Fragment,null,h.a.createElement(p,{isChildren:!0,title:"\u4e00\u7ea7\u9080\u8bf7\u4eba\u6bd4\u4f8b"},h.a.createElement("input",{type:"text",className:"form-control",placeholder:"\u8bf7\u8f93\u5165\u6bd4\u4f8b\u5982\uff1a50",defaultValue:n.commission_distribution_l1,onChange:e=>this.set("invite","commission_distribution_l1",e.target.value)})),h.a.createElement(p,{isChildren:!0,title:"\u4e8c\u7ea7\u9080\u8bf7\u4eba\u6bd4\u4f8b"},h.a.createElement("input",{type:"text",className:"form-control",placeholder:"\u8bf7\u8f93\u5165\u6bd4\u4f8b\u5982\uff1a30",defaultValue:n.commission_distribution_l2,onChange:e=>this.set("invite","commission_distribution_l2",e.target.value)})),h.a.createElement(p,{isChildren:!0,title:"\u4e09\u7ea7\u9080\u8bf7\u4eba\u6bd4\u4f8b"},h.a.createElement("input",{type:"text",className:"form-control",placeholder:"\u8bf7\u8f93\u5165\u6bd4\u4f8b\u5982\uff1a20",defaultValue:n.commission_distribution_l3,onChange:e=>this.set("invite","commission_distribution_l3",e.target.value)}))):"")),h.a.createElement(a["a"].TabPane,{tab:"\u524d\u7aef",key:"frontend"},h.a.createElement("div",{className:"block-content"},h.a.createElement("div",{className:"row"},h.a.createElement("div",{className:"col-lg-12"},h.a.createElement("div",{className:"alert alert-warning",role:"alert"},h.a.createElement("p",{className:"mb-0"},"\u5982\u679c\u4f60\u91c7\u7528\u524d\u540e\u5206\u79bb\u7684\u65b9\u5f0f\u90e8\u7f72V2board\uff0c\u672c\u9875\u914d\u7f6e\u5c06\u4e0d\u4f1a\u751f\u6548\u3002\u4e86\u89e3",h.a.createElement("b",null,h.a.createElement("a",{href:"https://docs.v2board.com/use/advanced.html#%E5%89%8D%E7%AB%AF%E5%88%86%E7%A6%BB"},"\u524d\u540e\u5206\u79bb"))))))),h.a.createElement("div",{className:""},h.a.createElement(p,{title:"\u4e3b\u9898",description:"\u7528\u6237\u7aef\u4e3b\u9898\uff0c\u65b0\u7684\u4e3b\u9898\u53ef\u4ee5\u4e0a\u4f20\u81f3 public/theme \u76ee\u5f55\u6765\u8c03\u7528"},h.a.createElement("select",{onChange:e=>this.set("frontend","frontend_theme",e.target.value),className:"form-control",value:l.frontend_theme},g.map(e=>{return h.a.createElement("option",{key:Math.random(),value:e},e)}))),h.a.createElement(p,{title:"\u540e\u53f0\u8def\u5f84",description:"\u540e\u53f0\u7ba1\u7406\u754c\u9762\u8def\u5f84\uff0c\u4fee\u6539\u540e\u5c06\u4f1a\u6539\u53d8\u539f\u6709\u7684admin\u8def\u5f84"},h.a.createElement("input",{type:"text",className:"form-control",placeholder:"admin",defaultValue:l.frontend_admin_path,onChange:e=>this.set("frontend","frontend_admin_path",e.target.value)})),h.a.createElement(p,{title:"\u8fb9\u680f\u98ce\u683c"},h.a.createElement(s["a"],{checkedChildren:"\u4eae",unCheckedChildren:"\u6697",checked:"light"===l.frontend_theme_sidebar?1:0,onChange:e=>this.set("site","frontend_theme_sidebar",e?"light":"dark")})),h.a.createElement(p,{title:"\u5934\u90e8\u98ce\u683c"},h.a.createElement(s["a"],{checkedChildren:"\u4eae",unCheckedChildren:"\u6697",checked:"light"===l.frontend_theme_header?1:0,onChange:e=>this.set("site","frontend_theme_header",e?"light":"dark")})),h.a.createElement(p,{title:"\u4e3b\u9898\u8272"},h.a.createElement("select",{className:"form-control",defaultValue:l.frontend_theme_color,onChange:e=>this.set("frontend","frontend_theme_color",e.target.value)},h.a.createElement("option",{value:"default"},"\u9ed8\u8ba4"),h.a.createElement("option",{value:"black"},"\u9ed1\u8272"),h.a.createElement("option",{value:"darkblue"},"\u6697\u84dd\u8272"),h.a.createElement("option",{value:"green"},"\u5976\u7eff\u8272"))),h.a.createElement(p,{title:"\u80cc\u666f",description:"\u5c06\u4f1a\u5728\u767b\u5f55\u9875\u9762\u8fdb\u884c\u5c55\u793a\u3002"},h.a.createElement("input",{type:"text",className:"form-control",placeholder:"https://xxxxx.com/wallpaper.png",defaultValue:l.frontend_background_url,onChange:e=>this.set("frontend","frontend_background_url",e.target.value)})),h.a.createElement(p,{title:"\u7b2c\u4e09\u65b9\u5ba2\u670d\u7cfb\u7edf",description:"\u6307\u5b9a\u5916\u90e8\u5ba2\u670d\u7cfb\u7edf"},h.a.createElement("select",{className:"form-control",defaultValue:l.frontend_customer_service_method,onChange:e=>this.set("frontend","frontend_customer_service_method",e.target.value)},h.a.createElement("option",{value:0},"\u5173\u95ed"),h.a.createElement("option",{value:"crisp"},"Crisp"))),"0"!==l.frontend_customer_service_method?h.a.createElement(p,{isChildren:!0,title:"\u8bc6\u522b\u7801",description:"\u7531\u5ba2\u670d\u7cfb\u7edf\u65b9\u63d0\u4f9b\u7684\u7528\u4e8e\u8bc6\u522b\u60a8\u7684\u4e00\u4e32\u5b57\u7b26"},h.a.createElement("input",{type:"text",className:"form-control",placeholder:"\u8bf7\u8f93\u5165",defaultValue:l.frontend_customer_service_id,onChange:e=>this.set("frontend","frontend_customer_service_id",e.target.value)})):"")),h.a.createElement(a["a"].TabPane,{tab:"\u670d\u52a1\u7aef",key:"server"},h.a.createElement("div",{className:""},h.a.createElement(p,{title:"\u901a\u8baf\u5bc6\u94a5",description:"V2board\u4e0e\u670d\u52a1\u7aef\u901a\u8baf\u7684\u5bc6\u94a5\uff0c\u4ee5\u4fbf\u6570\u636e\u4e0d\u4f1a\u88ab\u4ed6\u4eba\u83b7\u53d6\u3002"},h.a.createElement("input",{type:"text",className:"form-control",placeholder:"\u8bf7\u8f93\u5165",defaultValue:c.server_token,onChange:e=>this.set("server","server_token",e.target.value)})),h.a.createElement(p,{title:"\u6388\u6743\u6587\u4ef6",description:"\u4f60\u4f7f\u7528\u7684\u670d\u52a1\u7aef\u5982\u679c\u8981\u6c42\u4f60\u4f7f\u7528\u6388\u6743\u6587\u4ef6\uff0c\u4f60\u53ef\u4ee5\u5728\u6b64\u586b\u5165\u3002"},h.a.createElement("textarea",{rows:4,type:"text",className:"form-control",placeholder:"\u8bf7\u8f93\u5165",defaultValue:c.server_license,onChange:e=>this.set("server","server_license",e.target.value)})),h.a.createElement(p,{title:"\u8bb0\u5f55\u65e5\u5fd7",description:"\u670d\u52a1\u7aef\u662f\u5426\u8bb0\u5f55\u65e5\u5fd7\uff0c\u5173\u95ed\u53ef\u907f\u514d\u65e5\u5fd7\u5360\u7528\u78c1\u76d8\u7a7a\u95f4\u8fc7\u5927\u3002"},h.a.createElement(s["a"],{checked:parseInt(c.server_log_enable),onChange:e=>this.set("server","server_log_enable",e?1:0)})),h.a.createElement(p,{title:"V2ray\u5168\u5c40\u57df\u540d\u8fc7\u6ee4\u5668",description:"\u6b64\u5904\u7684\u89c4\u5219\u5c06\u4f1a\u4e0e\u8282\u70b9\u914d\u7f6e\u7684\u89c4\u5219\u5408\u5e76\u8fdb\u884c\u8fc7\u6ee4\uff0c\u4e00\u884c\u4e00\u6761\u3002"},h.a.createElement("textarea",{rows:4,type:"text",className:"form-control",placeholder:"\u8bf7\u8f93\u5165",defaultValue:c.server_v2ray_domain,onChange:e=>this.set("server","server_v2ray_domain",e.target.value)})),h.a.createElement(p,{title:"V2ray\u5168\u5c40\u534f\u8bae\u8fc7\u6ee4\u5668",description:"\u6b64\u5904\u7684\u89c4\u5219\u5c06\u4f1a\u4e0e\u8282\u70b9\u914d\u7f6e\u7684\u89c4\u5219\u5408\u5e76\u8fdb\u884c\u8fc7\u6ee4\uff0c\u4e00\u884c\u4e00\u6761\u3002"},h.a.createElement("textarea",{rows:4,type:"text",className:"form-control",placeholder:"\u8bf7\u8f93\u5165",defaultValue:c.server_v2ray_protocol,onChange:e=>this.set("server","server_v2ray_protocol",e.target.value)})))),h.a.createElement(a["a"].TabPane,{tab:"\u90ae\u4ef6",key:"email"},h.a.createElement("div",{className:"block-content"},h.a.createElement("div",{className:"row"},h.a.createElement("div",{className:"col-lg-12"},h.a.createElement("div",{className:"alert alert-warning",role:"alert"},h.a.createElement("p",{className:"mb-0"},"\u5982\u679c\u4f60\u66f4\u6539\u4e86\u672c\u9875\u914d\u7f6e\uff0c\u9700\u8981\u5bf9\u961f\u5217\u670d\u52a1\u8fdb\u884c\u91cd\u542f\u3002\u53e6\u5916\u672c\u9875\u914d\u7f6e\u4f18\u5148\u7ea7\u9ad8\u4e8e.env\u4e2d\u90ae\u4ef6\u914d\u7f6e\u3002"))))),h.a.createElement("div",{className:""},h.a.createElement(p,{title:"SMTP\u670d\u52a1\u5668\u5730\u5740",description:"\u7531\u90ae\u4ef6\u670d\u52a1\u5546\u63d0\u4f9b\u7684\u670d\u52a1\u5730\u5740"},h.a.createElement("input",{type:"text",className:"form-control",placeholder:"\u8bf7\u8f93\u5165",defaultValue:v.email_host,onChange:e=>this.set("email","email_host",e.target.value)})),h.a.createElement(p,{title:"SMTP\u670d\u52a1\u7aef\u53e3",description:"\u5e38\u89c1\u7684\u7aef\u53e3\u670925, 465, 587"},h.a.createElement("input",{type:"text",className:"form-control",placeholder:"\u8bf7\u8f93\u5165",defaultValue:v.email_port,onChange:e=>this.set("email","email_port",e.target.value)})),h.a.createElement(p,{title:"SMTP\u52a0\u5bc6\u65b9\u5f0f",description:"465\u7aef\u53e3\u52a0\u5bc6\u65b9\u5f0f\u4e00\u822c\u4e3aSSL\uff0c587\u7aef\u53e3\u52a0\u5bc6\u65b9\u5f0f\u4e00\u822c\u4e3aTLS"},h.a.createElement("input",{type:"text",className:"form-control",placeholder:"\u8bf7\u8f93\u5165",defaultValue:v.email_encryption,onChange:e=>this.set("email","email_encryption",e.target.value)})),h.a.createElement(p,{title:"SMTP\u8d26\u53f7",description:"\u7531\u90ae\u4ef6\u670d\u52a1\u5546\u63d0\u4f9b\u7684\u8d26\u53f7"},h.a.createElement("input",{type:"text",className:"form-control",placeholder:"\u8bf7\u8f93\u5165",defaultValue:v.email_username,onChange:e=>this.set("email","email_username",e.target.value)})),h.a.createElement(p,{title:"SMTP\u5bc6\u7801",description:"\u7531\u90ae\u4ef6\u670d\u52a1\u5546\u63d0\u4f9b\u7684\u5bc6\u7801"},h.a.createElement("input",{type:"text",className:"form-control",placeholder:"\u8bf7\u8f93\u5165",defaultValue:v.email_password,onChange:e=>this.set("email","email_password",e.target.value)})),h.a.createElement(p,{title:"\u53d1\u4ef6\u5730\u5740",description:"\u7531\u90ae\u4ef6\u670d\u52a1\u5546\u63d0\u4f9b\u7684\u53d1\u4ef6\u5730\u5740"},h.a.createElement("input",{type:"text",className:"form-control",placeholder:"\u8bf7\u8f93\u5165",defaultValue:v.email_from_address,onChange:e=>this.set("email","email_from_address",e.target.value)})),h.a.createElement(p,{title:"\u90ae\u4ef6\u6a21\u677f",description:"\u4f60\u53ef\u4ee5\u5728\u6587\u6863\u67e5\u770b\u5982\u4f55\u81ea\u5b9a\u4e49\u90ae\u4ef6\u6a21\u677f"},h.a.createElement("select",{onChange:e=>this.set("email","email_template",e.target.value),className:"form-control",value:v.email_template},m.map(e=>{return h.a.createElement("option",{key:Math.random(),value:e},e)}))),h.a.createElement(p,{title:"\u53d1\u9001\u6d4b\u8bd5\u90ae\u4ef6",description:"\u90ae\u4ef6\u5c06\u4f1a\u53d1\u9001\u5230\u5f53\u524d\u767b\u9646\u7528\u6237\u90ae\u7bb1"},h.a.createElement(o["a"],{loading:x,type:"primary",onClick:()=>this.props.dispatch({type:"config/testSendMail"})},"\u53d1\u9001\u6d4b\u8bd5\u90ae\u4ef6")))),h.a.createElement(a["a"].TabPane,{tab:"Telegram",key:"telegram"},h.a.createElement("div",{className:""},h.a.createElement(p,{title:"\u673a\u5668\u4ebaToken",description:"\u8bf7\u8f93\u5165\u7531Botfather\u63d0\u4f9b\u7684token\u3002"},h.a.createElement("input",{type:"text",className:"form-control",placeholder:"0000000000:xxxxxxxxx_xxxxxxxxxxxxxxx",defaultValue:y.telegram_bot_token,onChange:e=>this.set("telegram","telegram_bot_token",e.target.value)})),y.telegram_bot_token&&h.a.createElement(p,{title:"\u8bbe\u7f6eWebhook",description:"\u5bf9\u673a\u5668\u4eba\u8fdb\u884cWebhook\u8bbe\u7f6e\uff0c\u4e0d\u8bbe\u7f6e\u5c06\u65e0\u6cd5\u6536\u5230Telegram\u901a\u77e5\u3002"},h.a.createElement(o["a"],{type:"primary",onClick:()=>{this.props.dispatch({type:"config/setTelegramWebhook"})},loading:b,disabled:b},"\u4e00\u952e\u8bbe\u7f6e")),h.a.createElement(p,{title:"\u5f00\u542f\u673a\u5668\u4eba\u901a\u77e5",description:"\u5f00\u542f\u540ebot\u5c06\u4f1a\u5bf9\u7ed1\u5b9a\u4e86telegram\u7684\u7ba1\u7406\u5458\u548c\u7528\u6237\u8fdb\u884c\u57fa\u7840\u901a\u77e5\u3002"},h.a.createElement(s["a"],{checked:parseInt(y.telegram_bot_enable),onChange:e=>this.set("telegram","telegram_bot_enable",e?1:0)})),h.a.createElement(p,{title:"\u7fa4\u7ec4\u5730\u5740",description:"\u586b\u5199\u540e\u5c06\u4f1a\u5728\u7528\u6237\u7aef\u5c55\u793a\uff0c\u6216\u8005\u88ab\u7528\u4e8e\u9700\u8981\u7684\u5730\u65b9\u3002"},h.a.createElement("input",{type:"text",className:"form-control",placeholder:"https://t.me/xxxxxx",defaultValue:y.telegram_discuss_link,onChange:e=>this.set("telegram","telegram_discuss_link",e.target.value)})))),h.a.createElement(a["a"].TabPane,{tab:"APP",key:"app"},h.a.createElement("div",{className:"block-content"},h.a.createElement("div",{className:"row"},h.a.createElement("div",{className:"col-lg-12"},h.a.createElement("div",{className:"alert alert-warning",role:"alert"},h.a.createElement("p",{className:"mb-0"},"\u7528\u4e8e\u81ea\u6709\u5ba2\u6237\u7aef(APP)\u7684\u7248\u672c\u7ba1\u7406\u53ca\u66f4\u65b0"))))),h.a.createElement("div",{className:""},h.a.createElement(p,{title:"Windows",description:"Windows\u7aef\u7248\u672c\u53f7\u53ca\u4e0b\u8f7d\u5730\u5740"},h.a.createElement("input",{type:"text",className:"form-control",placeholder:"1.0.0",defaultValue:w.windows_version,onChange:e=>this.set("app","windows_version",e.target.value)}),h.a.createElement("input",{type:"text",className:"form-control mt-1",placeholder:"https://xxxx.com/xxx.exe",defaultValue:w.windows_download_url,onChange:e=>this.set("app","windows_download_url",e.target.value)})),h.a.createElement(p,{title:"macOS",description:"macOS\u7aef\u7248\u672c\u53f7\u53ca\u4e0b\u8f7d\u5730\u5740"},h.a.createElement("input",{type:"text",className:"form-control",placeholder:"1.0.0",defaultValue:w.macos_version,onChange:e=>this.set("app","macos_version",e.target.value)}),h.a.createElement("input",{type:"text",className:"form-control mt-1",placeholder:"https://xxxx.com/xxx.dmg",defaultValue:w.macos_download_url,onChange:e=>this.set("app","macos_download_url",e.target.value)})),h.a.createElement(p,{title:"Android",description:"Android\u7aef\u7248\u672c\u53f7\u53ca\u4e0b\u8f7d\u5730\u5740"},h.a.createElement("input",{type:"text",className:"form-control",placeholder:"1.0.0",defaultValue:w.android_version,onChange:e=>this.set("app","android_version",e.target.value)}),h.a.createElement("input",{type:"text",className:"form-control mt-1",placeholder:"https://xxxx.com/xxx.apk",defaultValue:w.android_download_url,onChange:e=>this.set("app","android_download_url",e.target.value)})))))))}}t["default"]=Object(f["c"])(e=>{var t=e.plan,n=e.config;return{plan:t,config:n}})(m)},"1j5w":function(e,t,n){"use strict";var r=n("q1tI"),i=n.n(r),o=n("xI0J"),a=n("4IlW"),s=n("2GS6"),l=n("Gytx"),c=n.n(l),u=n("TSYQ"),h=n.n(u);function d(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function f(e){for(var t=1;t0&&setTimeout(function(){e.onMotionEnd({deadline:!0})},i)}})},e.nextFrame=function(t){e.cancelNextFrame(),e.raf=pe()(t)},e.cancelNextFrame=function(){e.raf&&(pe.a.cancel(e.raf),e.raf=null)},e.state={status:ke,statusActive:!1,newStatus:!1,statusStyle:null},e.$cacheEle=null,e.node=null,e.raf=null,e}return le()(t,e),ie()(t,[{key:"componentDidMount",value:function(){this.onDomUpdate()}},{key:"componentDidUpdate",value:function(){this.onDomUpdate()}},{key:"componentWillUnmount",value:function(){this._destroyed=!0,this.removeEventListener(this.$cacheEle),this.cancelNextFrame()}},{key:"render",value:function(){var e,t=this.state,n=t.status,i=t.statusActive,o=t.statusStyle,a=this.props,s=a.children,l=a.motionName,c=a.visible,u=a.removeOnLeave,d=a.leavedClassName,f=a.eventProps;return s?n!==ke&&r(this.props)?s(ee()({},f,{className:h()((e={},Z()(e,Ee(l,n),n!==ke),Z()(e,Ee(l,n+"-active"),n!==ke&&i),Z()(e,l,"string"===typeof l),e)),style:o}),this.setNodeRef):c?s(ee()({},f),this.setNodeRef):u?null:s(ee()({},f,{className:d}),this.setNodeRef):null}}],[{key:"getDerivedStateFromProps",value:function(e,t){var n=t.prevProps,i=t.status;if(!r(e))return{};var o=e.visible,a=e.motionAppear,s=e.motionEnter,l=e.motionLeave,c=e.motionLeaveImmediately,u={prevProps:e};return(i===Oe&&!a||i===Te&&!s||i===Ae&&!l)&&(u.status=ke,u.statusActive=!1,u.newStatus=!1),!n&&o&&a&&(u.status=Oe,u.statusActive=!1,u.newStatus=!0),n&&!n.visible&&o&&s&&(u.status=Te,u.statusActive=!1,u.newStatus=!0),(n&&n.visible&&!o&&l||!n&&c&&!o&&l)&&(u.status=Ae,u.statusActive=!1,u.newStatus=!0),u}}]),t}(i.a.Component);return o.propTypes=ee()({},Me,{internalRef:ue.a.oneOfType([ue.a.object,ue.a.func])}),o.defaultProps={visible:!0,motionEnter:!0,motionAppear:!0,motionLeave:!0,removeOnLeave:!0},Object(he["polyfill"])(o),n?i.a.forwardRef(function(e,t){return i.a.createElement(o,ee()({internalRef:t},e))}):o}var Re=Pe(Se),Le={adjustX:1,adjustY:1},De={topLeft:{points:["bl","tl"],overflow:Le,offset:[0,-7]},bottomLeft:{points:["tl","bl"],overflow:Le,offset:[0,7]},leftTop:{points:["tr","tl"],overflow:Le,offset:[-4,0]},rightTop:{points:["tl","tr"],overflow:Le,offset:[4,0]}},je=De;function Ne(e){return Ne="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Ne(e)}function Ie(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function $e(e,t){for(var n=0;n=n.subMenuTitle.offsetWidth||(e.style.minWidth="".concat(n.subMenuTitle.offsetWidth,"px"))}},n.saveSubMenuTitle=function(e){n.subMenuTitle=e};var r=e.store,i=e.eventKey,o=r.getState(),s=o.defaultActiveFirst;n.isRootMenu=!1;var l=!1;return s&&(l=s[i]),Xe(r,i,l),n}return He(t,e),Fe(t,[{key:"componentDidMount",value:function(){this.componentDidUpdate()}},{key:"componentDidUpdate",value:function(){var e=this,t=this.props,n=t.mode,r=t.parentMenu,i=t.manualRef;i&&i(this),"horizontal"===n&&r.isRootMenu&&this.props.isOpen&&(this.minWidthTimeout=setTimeout(function(){return e.adjustWidth()},0))}},{key:"componentWillUnmount",value:function(){var e=this.props,t=e.onDestroy,n=e.eventKey;t&&t(n),this.minWidthTimeout&&clearTimeout(this.minWidthTimeout),this.mouseenterTimeout&&clearTimeout(this.mouseenterTimeout)}},{key:"renderChildren",value:function(e){var t=this,n=this.props,i={mode:"horizontal"===n.mode?"vertical":n.mode,visible:this.props.isOpen,level:n.level+1,inlineIndent:n.inlineIndent,focusable:!1,onClick:this.onSubMenuClick,onSelect:this.onSelect,onDeselect:this.onDeselect,onDestroy:this.onDestroy,selectedKeys:n.selectedKeys,eventKey:"".concat(n.eventKey,"-menu-"),openKeys:n.openKeys,motion:n.motion,onOpenChange:this.onOpenChange,subMenuOpenDelay:n.subMenuOpenDelay,parentMenu:this,subMenuCloseDelay:n.subMenuCloseDelay,forceSubMenuRender:n.forceSubMenuRender,triggerSubMenuAction:n.triggerSubMenuAction,builtinPlacements:n.builtinPlacements,defaultActiveFirst:n.store.getState().defaultActiveFirst[V(n.eventKey)],multiple:n.multiple,prefixCls:n.rootPrefixCls,id:this.internalMenuId,manualRef:this.saveMenuInstance,itemIcon:n.itemIcon,expandIcon:n.expandIcon},o=this.haveRendered;if(this.haveRendered=!0,this.haveOpened=this.haveOpened||i.visible||i.forceSubMenuRender,!this.haveOpened)return r["createElement"]("div",null);var a=qe({},n.motion,{leavedClassName:"".concat(n.rootPrefixCls,"-hidden"),removeOnLeave:!1,motionAppear:o||!i.visible||"inline"!==i.mode});return r["createElement"](Re,Object.assign({visible:i.visible},a),function(n){var o=n.className,a=n.style,s=h()("".concat(i.prefixCls,"-sub"),o);return r["createElement"](Ht,Object.assign({},i,{id:t.internalMenuId,className:s,style:a}),e)})}},{key:"render",value:function(){var e,t=qe({},this.props),n=t.isOpen,i=this.getPrefixCls(),o="inline"===t.mode,a=h()(i,"".concat(i,"-").concat(t.mode),(e={},Ke(e,t.className,!!t.className),Ke(e,this.getOpenClassName(),n),Ke(e,this.getActiveClassName(),t.active||n&&!o),Ke(e,this.getDisabledClassName(),t.disabled),Ke(e,this.getSelectedClassName(),this.isChildrenSelected()),e));this.internalMenuId||(t.eventKey?this.internalMenuId="".concat(t.eventKey,"$Menu"):(Ge+=1,this.internalMenuId="$__$".concat(Ge,"$Menu")));var s={},l={},c={};t.disabled||(s={onMouseLeave:this.onMouseLeave,onMouseEnter:this.onMouseEnter},l={onClick:this.onTitleClick},c={onMouseEnter:this.onTitleMouseEnter,onMouseLeave:this.onTitleMouseLeave});var u={};o&&(u.paddingLeft=t.inlineIndent*t.level);var d={};this.props.isOpen&&(d={"aria-owns":this.internalMenuId});var f=null;"horizontal"!==t.mode&&(f=this.props.expandIcon,"function"===typeof this.props.expandIcon&&(f=r["createElement"](this.props.expandIcon,qe({},this.props))));var p=r["createElement"]("div",Object.assign({ref:this.saveSubMenuTitle,style:u,className:"".concat(i,"-title")},c,l,{"aria-expanded":n},d,{"aria-haspopup":"true",title:"string"===typeof t.title?t.title:void 0}),t.title,f||r["createElement"]("i",{className:"".concat(i,"-arrow")})),m=this.renderChildren(t.children),g=t.parentMenu.isRootMenu?t.parentMenu.props.getPopupContainer:function(e){return e.parentNode},v=Ye[t.mode],y=t.popupOffset?{offset:t.popupOffset}:{},b="inline"===t.mode?"":t.popupClassName,w=t.disabled,x=t.triggerSubMenuAction,_=t.subMenuOpenDelay,C=t.forceSubMenuRender,S=t.subMenuCloseDelay,E=t.builtinPlacements;return H.forEach(function(e){return delete t[e]}),delete t.onClick,r["createElement"]("li",Object.assign({},t,s,{className:a,role:"menuitem"}),o&&p,o&&m,!o&&r["createElement"](X["a"],{prefixCls:i,popupClassName:"".concat(i,"-popup ").concat(b),getPopupContainer:g,builtinPlacements:Object.assign({},je,E),popupPlacement:v,popupVisible:n,popupAlign:y,popup:m,action:w?[]:[x],mouseEnterDelay:_,mouseLeaveDelay:S,onPopupVisibleChange:this.onPopupVisibleChange,forceRender:C},p))}}]),t}(r["Component"]);Qe.defaultProps={onMouseEnter:$,onMouseLeave:$,onTitleMouseEnter:$,onTitleMouseLeave:$,onTitleClick:$,manualRef:$,mode:"vertical",title:""};var Ze=Object(o["connect"])(function(e,t){var n=e.openKeys,r=e.activeKey,i=e.selectedKeys,o=t.eventKey,a=t.subMenuKey;return{isOpen:n.indexOf(o)>-1,active:r[a]===o,selectedKeys:i}})(Qe);Ze.isSubMenu=!0;var Je=Ze;function et(e){return et="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},et(e)}function tt(e){return it(e)||rt(e)||nt()}function nt(){throw new TypeError("Invalid attempt to spread non-iterable instance")}function rt(e){if(Symbol.iterator in Object(e)||"[object Arguments]"===Object.prototype.toString.call(e))return Array.from(e)}function it(e){if(Array.isArray(e)){for(var t=0,n=new Array(e.length);t=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(i[n]=e[n])}return i}function ct(e,t){if(null==e)return{};var n,r,i={},o=Object.keys(e);for(r=0;r=0||(i[n]=e[n]);return i}function ut(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function ht(e,t){for(var n=0;n=0});o.forEach(function(e){U(e,"display","inline-block")}),e.menuItemSizes=i.map(function(e){return z(e)}),o.forEach(function(e){U(e,"display","none")}),e.overflowedIndicatorWidth=z(t.children[t.children.length-1]),e.originalTotalWidth=e.menuItemSizes.reduce(function(e,t){return e+t},0),e.handleResize(),U(r,"display","none")}}}},e.handleResize=function(){if("horizontal"===e.props.mode){var t=K["findDOMNode"](mt(e));if(t){var n=z(t);e.overflowedItems=[];var r,i=0;e.originalTotalWidth>n+wt&&(r=-1,e.menuItemSizes.forEach(function(t){i+=t,i+e.overflowedIndicatorWidth<=n&&(r+=1)})),e.setState({lastVisibleIndex:r})}}},e}return gt(t,e),dt(t,[{key:"componentDidMount",value:function(){var e=this;if(this.setChildrenWidthAndResize(),1===this.props.level&&"horizontal"===this.props.mode){var t=K["findDOMNode"](this);if(!t)return;this.resizeObserver=new Y["default"](function(t){t.forEach(e.setChildrenWidthAndResize)}),[].slice.call(t.children).concat(t).forEach(function(t){e.resizeObserver.observe(t)}),"undefined"!==typeof MutationObserver&&(this.mutationObserver=new MutationObserver(function(){e.resizeObserver.disconnect(),[].slice.call(t.children).concat(t).forEach(function(t){e.resizeObserver.observe(t)}),e.setChildrenWidthAndResize()}),this.mutationObserver.observe(t,{attributes:!1,childList:!0,subTree:!1}))}}},{key:"componentWillUnmount",value:function(){this.resizeObserver&&this.resizeObserver.disconnect(),this.mutationObserver&&this.mutationObserver.disconnect()}},{key:"renderChildren",value:function(e){var t=this,n=this.state.lastVisibleIndex;return(e||[]).reduce(function(i,o,a){var s=o;if("horizontal"===t.props.mode){var l=t.getOverflowedSubMenuItem(o.props.eventKey,[]);void 0!==n&&-1!==t.props.className.indexOf("".concat(t.props.prefixCls,"-root"))&&(a>n&&(s=r["cloneElement"](o,{style:{display:"none"},eventKey:"".concat(o.props.eventKey,"-hidden"),className:"".concat(bt)})),a===n+1&&(t.overflowedItems=e.slice(n+1).map(function(e){return r["cloneElement"](e,{key:e.props.eventKey,mode:"vertical-left"})}),l=t.getOverflowedSubMenuItem(o.props.eventKey,t.overflowedItems)));var c=[].concat(tt(i),[l,s]);return a===e.length-1&&c.push(t.getOverflowedSubMenuItem(o.props.eventKey,[],!0)),c}return[].concat(tt(i),[s])},[])}},{key:"render",value:function(){var e=this.props,t=(e.visible,e.prefixCls,e.overflowedIndicator,e.mode,e.level,e.tag),n=e.children,i=(e.theme,lt(e,["visible","prefixCls","overflowedIndicator","mode","level","tag","children","theme"])),o=t;return r["createElement"](o,Object.assign({},i),this.renderChildren(n))}}]),t}(r["Component"]);xt.defaultProps={tag:"div",className:""};var _t=xt;function Ct(e){return Ct="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Ct(e)}function St(){return St=Object.assign||function(e){for(var t=1;t1?n-1:0);for(var r=1;r2?r-2:0);for(var i=2;i",'"',"`"," ","\r","\n","\t"],l=["{","}","|","\\","^","`"].concat(s),c=["'"].concat(l),u=["%","/","?",";","#"].concat(c),h=["/","?","#"],d=255,f=/^[+a-z0-9A-Z_-]{0,63}$/,p=/^([+a-z0-9A-Z_-]{0,63})(.*)$/,m={javascript:!0,"javascript:":!0},g={http:!0,https:!0,ftp:!0,gopher:!0,file:!0,"http:":!0,"https:":!0,"ftp:":!0,"gopher:":!0,"file:":!0};function v(e,t){if(e&&e instanceof r)return e;var n=new r;return n.parse(e,t),n}r.prototype.parse=function(e,t){var n,r,o,s,l,c=e;if(c=c.trim(),!t&&1===e.split("#").length){var v=a.exec(c);if(v)return this.pathname=v[1],v[2]&&(this.search=v[2]),this}var y=i.exec(c);if(y&&(y=y[0],o=y.toLowerCase(),this.protocol=y,c=c.substr(y.length)),(t||y||c.match(/^\/\/[^@\/]+@[^@\/]+/))&&(l="//"===c.substr(0,2),!l||y&&m[y]||(c=c.substr(2),this.slashes=!0)),!m[y]&&(l||y&&!g[y])){var b,w,x=-1;for(n=0;n127?k+="x":k+=E[O];if(!k.match(f)){var A=S.slice(0,n),M=S.slice(n+1),P=E.match(p);P&&(A.push(P[1]),M.unshift(P[2])),M.length&&(c=M.join(".")+c),this.hostname=A.join(".");break}}}}this.hostname.length>d&&(this.hostname=""),C&&(this.hostname=this.hostname.substr(1,this.hostname.length-2))}var R=c.indexOf("#");-1!==R&&(this.hash=c.substr(R),c=c.slice(0,R));var L=c.indexOf("?");return-1!==L&&(this.search=c.substr(L),c=c.slice(0,L)),c&&(this.pathname=c),g[o]&&this.hostname&&!this.pathname&&(this.pathname=""),this},r.prototype.parseHost=function(e){var t=o.exec(e);t&&(t=t[0],":"!==t&&(this.port=t.substr(1)),e=e.substr(0,e.length-t.length)),e&&(this.hostname=e)},e.exports=v},"2mql":function(e,t,n){"use strict";var r=n("TOwV"),i={childContextTypes:!0,contextType:!0,contextTypes:!0,defaultProps:!0,displayName:!0,getDefaultProps:!0,getDerivedStateFromError:!0,getDerivedStateFromProps:!0,mixins:!0,propTypes:!0,type:!0},o={name:!0,length:!0,prototype:!0,caller:!0,callee:!0,arguments:!0,arity:!0},a={$$typeof:!0,render:!0,defaultProps:!0,displayName:!0,propTypes:!0},s={$$typeof:!0,compare:!0,defaultProps:!0,displayName:!0,propTypes:!0,type:!0},l={};function c(e){return r.isMemo(e)?s:l[e["$$typeof"]]||i}l[r.ForwardRef]=a,l[r.Memo]=s;var u=Object.defineProperty,h=Object.getOwnPropertyNames,d=Object.getOwnPropertySymbols,f=Object.getOwnPropertyDescriptor,p=Object.getPrototypeOf,m=Object.prototype;function g(e,t,n){if("string"!==typeof t){if(m){var r=p(t);r&&r!==m&&g(e,r,n)}var i=h(t);d&&(i=i.concat(d(t)));for(var a=c(e),s=c(t),l=0;ll,n),i=void 0;return i=t.yearl?e.nextDecade:M.bind(e,t.year),u.a.createElement("td",{role:"gridcell",title:t.title,key:t.content,onClick:i,className:g()(r)},u.a.createElement("a",{className:c+"-year"},t.content))});return u.a.createElement("tr",{key:n,role:"row"},r)}),d=i&&i("year");return u.a.createElement("div",{className:this.prefixCls},u.a.createElement("div",null,u.a.createElement("div",{className:c+"-header"},u.a.createElement("a",{className:c+"-prev-decade-btn",role:"button",onClick:this.previousDecade,title:r.previousDecade}),u.a.createElement("a",{className:c+"-decade-select",role:"button",onClick:t.onDecadePanelShow,title:r.decadeSelect},u.a.createElement("span",{className:c+"-decade-select-content"},s,"-",l),u.a.createElement("span",{className:c+"-decade-select-arrow"},"x")),u.a.createElement("a",{className:c+"-next-decade-btn",role:"button",onClick:this.nextDecade,title:r.nextDecade})),u.a.createElement("div",{className:c+"-body"},u.a.createElement("table",{className:c+"-table",cellSpacing:"0",role:"grid"},u.a.createElement("tbody",{className:c+"-tbody"},h))),d&&u.a.createElement("div",{className:c+"-footer"},d)))},t}(u.a.Component),R=P;P.propTypes={rootPrefixCls:d.a.string,value:d.a.object,defaultValue:d.a.object,renderFooter:d.a.func},P.defaultProps={onSelect:function(){}};var L=4,D=3;function j(e){var t=this.state.value.clone();t.add(e,"years"),this.setState({value:t})}function N(e,t){var n=this.state.value.clone();n.year(e),n.month(this.state.value.month()),this.props.onSelect(n),t.preventDefault()}var I=function(e){function t(n){i()(this,t);var r=a()(this,e.call(this,n));return r.state={value:n.value||n.defaultValue},r.prefixCls=n.rootPrefixCls+"-decade-panel",r.nextCentury=j.bind(r,100),r.previousCentury=j.bind(r,-100),r}return l()(t,e),t.prototype.render=function(){for(var e=this,t=this.state.value,n=this.props,r=n.locale,i=n.renderFooter,o=t.year(),a=100*parseInt(o/100,10),s=a-10,l=a+99,c=[],h=0,d=this.prefixCls,f=0;fl,h=(n={},n[d+"-cell"]=1,n[d+"-selected-cell"]=r<=o&&o<=i,n[d+"-last-century-cell"]=s,n[d+"-next-century-cell"]=c,n),f=r+"-"+i,p=void 0;return p=s?e.previousCentury:c?e.nextCentury:N.bind(e,r),u.a.createElement("td",{key:r,onClick:p,role:"gridcell",className:g()(h)},u.a.createElement("a",{className:d+"-decade"},f))});return u.a.createElement("tr",{key:n,role:"row"},r)});return u.a.createElement("div",{className:this.prefixCls},u.a.createElement("div",{className:d+"-header"},u.a.createElement("a",{className:d+"-prev-century-btn",role:"button",onClick:this.previousCentury,title:r.previousCentury}),u.a.createElement("div",{className:d+"-century"},a,"-",l),u.a.createElement("a",{className:d+"-next-century-btn",role:"button",onClick:this.nextCentury,title:r.nextCentury})),u.a.createElement("div",{className:d+"-body"},u.a.createElement("table",{className:d+"-table",cellSpacing:"0",role:"grid"},u.a.createElement("tbody",{className:d+"-tbody"},b))),y&&u.a.createElement("div",{className:d+"-footer"},y))},t}(u.a.Component),$=I;function F(e){var t=this.props.value.clone();t.add(e,"months"),this.props.onValueChange(t)}function V(e){var t=this.props.value.clone();t.add(e,"years"),this.props.onValueChange(t)}function B(e,t){return e?t:null}I.propTypes={locale:d.a.object,value:d.a.object,defaultValue:d.a.object,rootPrefixCls:d.a.string,renderFooter:d.a.func},I.defaultProps={onSelect:function(){}};var W=function(e){function t(n){i()(this,t);var r=a()(this,e.call(this,n));return H.call(r),r.nextMonth=F.bind(r,1),r.previousMonth=F.bind(r,-1),r.nextYear=V.bind(r,1),r.previousYear=V.bind(r,-1),r.state={yearPanelReferer:null},r}return l()(t,e),t.prototype.render=function(){var e=this,t=this.props,n=t.prefixCls,r=t.locale,i=t.mode,o=t.value,a=t.showTimePicker,s=t.enableNext,l=t.enablePrev,c=t.disabledMonth,h=t.renderFooter,d=null;return"month"===i&&(d=u.a.createElement(k,{locale:r,value:o,rootPrefixCls:n,onSelect:this.onMonthSelect,onYearPanelShow:function(){return e.showYearPanel("month")},disabledDate:c,cellRender:t.monthCellRender,contentRender:t.monthCellContentRender,renderFooter:h,changeYear:this.changeYear})),"year"===i&&(d=u.a.createElement(R,{locale:r,defaultValue:o,rootPrefixCls:n,onSelect:this.onYearSelect,onDecadePanelShow:this.showDecadePanel,renderFooter:h})),"decade"===i&&(d=u.a.createElement($,{locale:r,defaultValue:o,rootPrefixCls:n,onSelect:this.onDecadeSelect,renderFooter:h})),u.a.createElement("div",{className:n+"-header"},u.a.createElement("div",{style:{position:"relative"}},B(l&&!a,u.a.createElement("a",{className:n+"-prev-year-btn",role:"button",onClick:this.previousYear,title:r.previousYear})),B(l&&!a,u.a.createElement("a",{className:n+"-prev-month-btn",role:"button",onClick:this.previousMonth,title:r.previousMonth})),this.monthYearElement(a),B(s&&!a,u.a.createElement("a",{className:n+"-next-month-btn",onClick:this.nextMonth,title:r.nextMonth})),B(s&&!a,u.a.createElement("a",{className:n+"-next-year-btn",onClick:this.nextYear,title:r.nextYear}))),d)},t}(u.a.Component);W.propTypes={prefixCls:d.a.string,value:d.a.object,onValueChange:d.a.func,showTimePicker:d.a.bool,onPanelChange:d.a.func,locale:d.a.object,enablePrev:d.a.any,enableNext:d.a.any,disabledMonth:d.a.func,renderFooter:d.a.func,onMonthSelect:d.a.func},W.defaultProps={enableNext:1,enablePrev:1,onPanelChange:function(){},onValueChange:function(){}};var H=function(){var e=this;this.onMonthSelect=function(t){e.props.onPanelChange(t,"date"),e.props.onMonthSelect?e.props.onMonthSelect(t):e.props.onValueChange(t)},this.onYearSelect=function(t){var n=e.state.yearPanelReferer;e.setState({yearPanelReferer:null}),e.props.onPanelChange(t,n),e.props.onValueChange(t)},this.onDecadeSelect=function(t){e.props.onPanelChange(t,"year"),e.props.onValueChange(t)},this.changeYear=function(t){t>0?e.nextYear():e.previousYear()},this.monthYearElement=function(t){var n=e.props,r=n.prefixCls,i=n.locale,o=n.value,a=o.localeData(),s=i.monthBeforeYear,l=r+"-"+(s?"my-select":"ym-select"),c=t?" "+r+"-time-status":"",h=u.a.createElement("a",{className:r+"-year-select"+c,role:"button",onClick:t?null:function(){return e.showYearPanel("date")},title:t?null:i.yearSelect},o.format(i.yearFormat)),d=u.a.createElement("a",{className:r+"-month-select"+c,role:"button",onClick:t?null:e.showMonthPanel,title:t?null:i.monthSelect},i.monthFormat?o.format(i.monthFormat):a.monthsShort(o)),p=void 0;t&&(p=u.a.createElement("a",{className:r+"-day-select"+c,role:"button"},o.format(i.dayFormat)));var m=[];return m=s?[d,p,h]:[h,d,p],u.a.createElement("span",{className:l},Object(f["a"])(m))},this.showMonthPanel=function(){e.props.onPanelChange(null,"month")},this.showYearPanel=function(t){e.setState({yearPanelReferer:t}),e.props.onPanelChange(null,"year")},this.showDecadePanel=function(){e.props.onPanelChange(null,"decade")}};t["a"]=W},"330p":function(e,t,n){"use strict";var r=n("7tNx"),i=RegExp.prototype.exec,o=String.prototype.replace,a=i,s="lastIndex",l=function(){var e=/a/,t=/b*/g;return i.call(e,"a"),i.call(t,"a"),0!==e[s]||0!==t[s]}(),c=void 0!==/()??/.exec("")[1],u=l||c;u&&(a=function(e){var t,n,a,u,h=this;return c&&(n=new RegExp("^"+h.source+"$(?!\\s)",r.call(h))),l&&(t=h[s]),a=i.call(h,e),l&&a&&(h[s]=h.global?a.index+a[0].length:t),c&&a&&a.length>1&&o.call(a[0],n,function(){for(u=1;u=0;r--){var i=e[r];"."===i?e.splice(r,1):".."===i?(e.splice(r,1),n++):n&&(e.splice(r,1),n--)}if(t)for(;n--;n)e.unshift("..");return e}function r(e){"string"!==typeof e&&(e+="");var t,n=0,r=-1,i=!0;for(t=e.length-1;t>=0;--t)if(47===e.charCodeAt(t)){if(!i){n=t+1;break}}else-1===r&&(i=!1,r=t+1);return-1===r?"":e.slice(n,r)}function i(e,t){if(e.filter)return e.filter(t);for(var n=[],r=0;r=-1&&!r;o--){var a=o>=0?arguments[o]:e.cwd();if("string"!==typeof a)throw new TypeError("Arguments to path.resolve must be strings");a&&(t=a+"/"+t,r="/"===a.charAt(0))}return t=n(i(t.split("/"),function(e){return!!e}),!r).join("/"),(r?"/":"")+t||"."},t.normalize=function(e){var r=t.isAbsolute(e),a="/"===o(e,-1);return e=n(i(e.split("/"),function(e){return!!e}),!r).join("/"),e||r||(e="."),e&&a&&(e+="/"),(r?"/":"")+e},t.isAbsolute=function(e){return"/"===e.charAt(0)},t.join=function(){var e=Array.prototype.slice.call(arguments,0);return t.normalize(i(e,function(e,t){if("string"!==typeof e)throw new TypeError("Arguments to path.join must be strings");return e}).join("/"))},t.relative=function(e,n){function r(e){for(var t=0;t=0;n--)if(""!==e[n])break;return t>n?[]:e.slice(t,n-t+1)}e=t.resolve(e).substr(1),n=t.resolve(n).substr(1);for(var i=r(e.split("/")),o=r(n.split("/")),a=Math.min(i.length,o.length),s=a,l=0;l=1;--o)if(t=e.charCodeAt(o),47===t){if(!i){r=o;break}}else i=!1;return-1===r?n?"/":".":n&&1===r?"/":e.slice(0,r)},t.basename=function(e,t){var n=r(e);return t&&n.substr(-1*t.length)===t&&(n=n.substr(0,n.length-t.length)),n},t.extname=function(e){"string"!==typeof e&&(e+="");for(var t=-1,n=0,r=-1,i=!0,o=0,a=e.length-1;a>=0;--a){var s=e.charCodeAt(a);if(47!==s)-1===r&&(i=!1,r=a+1),46===s?-1===t?t=a:1!==o&&(o=1):-1!==t&&(o=-1);else if(!i){n=a+1;break}}return-1===t||-1===r||0===o||1===o&&t===r-1&&t===n+1?"":e.slice(t,r)};var o="b"==="ab".substr(-1)?function(e,t,n){return e.substr(t,n)}:function(e,t,n){return t<0&&(t=e.length+t),e.substr(t,n)}}).call(this,n("Q2Ig"))},"3FhE":function(e,t,n){var r=n("u8+u"),i=n("EpXD"),o=n("gL7N")("species");e.exports=function(e){var t;return i(e)&&(t=e.constructor,"function"!=typeof t||t!==Array&&!i(t.prototype)||(t=void 0),r(t)&&(t=t[o],null===t&&(t=void 0))),void 0===t?Array:t}},"3GJH":function(e,t,n){n("lCc8");var r=n("WEpk").Object;e.exports=function(e,t){return r.create(e,t)}},"3JrO":function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.rootContainer=a,t.initialProps=s,t.modifyInitialProps=l;var r=o(n("q1tI")),i=n("xg5P");function o(e){return e&&e.__esModule?e:{default:e}}function a(e){return r.default.createElement(i._DvaContainer,null,e)}function s(e){if(e)return e;var t=(0,i.getApp)()._store.getState();return Object.keys(t).reduce(function(e,n){return["@@dva","loading","routing"].includes(n)||(e[n]=t[n]),e},{})}function l(e){return e?{store:(0,i.getApp)()._store}:{}}},"3Oj7":function(e,t,n){"use strict";var r=function(){function e(e,t){this.x=e||0,this.y=t||0}return e.prototype.copy=function(e){return this.x=e.x,this.y=e.y,this},e.prototype.clone=function(){return new e(this.x,this.y)},e.prototype.set=function(e,t){return this.x=e,this.y=t,this},e.prototype.equal=function(e){return e.x===this.x&&e.y===this.y},e.prototype.add=function(e){return this.x+=e.x,this.y+=e.y,this},e.prototype.scale=function(e){this.x*=e,this.y*=e},e.prototype.scaleAndAdd=function(e,t){this.x+=e.x*t,this.y+=e.y*t},e.prototype.sub=function(e){return this.x-=e.x,this.y-=e.y,this},e.prototype.dot=function(e){return this.x*e.x+this.y*e.y},e.prototype.len=function(){return Math.sqrt(this.x*this.x+this.y*this.y)},e.prototype.lenSquare=function(){return this.x*this.x+this.y*this.y},e.prototype.normalize=function(){var e=this.len();return this.x/=e,this.y/=e,this},e.prototype.distance=function(e){var t=this.x-e.x,n=this.y-e.y;return Math.sqrt(t*t+n*n)},e.prototype.distanceSquare=function(e){var t=this.x-e.x,n=this.y-e.y;return t*t+n*n},e.prototype.negate=function(){return this.x=-this.x,this.y=-this.y,this},e.prototype.transform=function(e){if(e){var t=this.x,n=this.y;return this.x=e[0]*t+e[2]*n+e[4],this.y=e[1]*t+e[3]*n+e[5],this}},e.prototype.toArray=function(e){return e[0]=this.x,e[1]=this.y,e},e.prototype.fromArray=function(e){this.x=e[0],this.y=e[1]},e.set=function(e,t,n){e.x=t,e.y=n},e.copy=function(e,t){e.x=t.x,e.y=t.y},e.len=function(e){return Math.sqrt(e.x*e.x+e.y*e.y)},e.lenSquare=function(e){return e.x*e.x+e.y*e.y},e.dot=function(e,t){return e.x*t.x+e.y*t.y},e.add=function(e,t,n){e.x=t.x+n.x,e.y=t.y+n.y},e.sub=function(e,t,n){e.x=t.x-n.x,e.y=t.y-n.y},e.scale=function(e,t,n){e.x=t.x*n,e.y=t.y*n},e.scaleAndAdd=function(e,t,n,r){e.x=t.x+n.x*r,e.y=t.y+n.y*r},e.lerp=function(e,t,n,r){var i=1-r;e.x=i*t.x+r*n.x,e.y=i*t.y+r*n.y},e}();t["a"]=r},"3U8f":function(e,t,n){"use strict";var r=n("IaEH"),i=n("Gev7"),o=n("6GrX"),a=n("y+Vt"),s=n("bYtY"),l=Object(s["j"])({strokeFirst:!0,font:o["a"],x:0,y:0,textAlign:"left",textBaseline:"top",miterLimit:2},a["a"]),c=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return Object(r["a"])(t,e),t.prototype.hasStroke=function(){var e=this.style,t=e.stroke;return null!=t&&"none"!==t&&e.lineWidth>0},t.prototype.hasFill=function(){var e=this.style,t=e.fill;return null!=t&&"none"!==t},t.prototype.createStyle=function(e){return Object(s["h"])(l,e)},t.prototype.setBoundingRect=function(e){this._rect=e},t.prototype.getBoundingRect=function(){var e=this.style;if(!this._rect){var t=e.text;null!=t?t+="":t="";var n=Object(o["e"])(t,e.font,e.textAlign,e.textBaseline);if(n.x+=e.x||0,n.y+=e.y||0,this.hasStroke()){var r=e.lineWidth;n.x-=r/2,n.y-=r/2,n.width+=r,n.height+=r}this._rect=n}return this._rect},t.initDefaultProps=function(){var e=t.prototype;e.dirtyRectTolerance=10}(),t}(i["c"]);c.prototype.type="tspan",t["a"]=c},"3UD+":function(e,t){e.exports=function(e){if(!e.webpackPolyfill){var t=Object.create(e);t.children||(t.children=[]),Object.defineProperty(t,"loaded",{enumerable:!0,get:function(){return t.l}}),Object.defineProperty(t,"id",{enumerable:!0,get:function(){return t.i}}),Object.defineProperty(t,"exports",{enumerable:!0}),t.webpackPolyfill=1}return t}},"3a4m":function(e,t,n){e.exports=n("usdK").default},"3e3G":function(e,t,n){"use strict";var r=n("IaEH"),i=n("QuXc"),o=function(e){function t(t,n,r,i,o){var a=e.call(this,i)||this;return a.x=null==t?.5:t,a.y=null==n?.5:n,a.r=null==r?.5:r,a.type="radial",a.global=o||!1,a}return Object(r["a"])(t,e),t}(i["a"]);t["a"]=o},"3m+/":function(e,t,n){n("/sWw")("asyncIterator")},"3moC":function(e,t,n){"use strict";n.r(t);var r=n("d6i3"),i=n.n(r),o=n("p0pE"),a=n.n(o),s=n("t3Un"),l={orders:[],fetchLoading:!1,assignLoading:!1,pagination:{pageSize:10,current:0},filter:[]};t["default"]={name:"order",state:a()({},l),reducers:{setState(e,t){var n=t.payload;return a()({},e,n)},empty(e){return a()({},e,l)}},effects:{fetch(e,t){return i.a.mark(function e(){var n,r,o,l;return i.a.wrap(function(e){while(1)switch(e.prev=e.next){case 0:return n=t.put,r=t.select,e.next=3,r(e=>e.order);case 3:return o=e.sent,e.next=6,n({type:"setState",payload:{fetchLoading:!0}});case 6:return e.next=8,Object(s["a"])("/admin/order/fetch",a()({filter:o.filter},o.pagination));case 8:return l=e.sent,e.next=11,n({type:"setState",payload:{fetchLoading:!1}});case 11:if(200===l.code){e.next=13;break}return e.abrupt("return");case 13:return e.next=15,n({type:"setState",payload:{orders:l.data}});case 15:return e.next=17,n({type:"setState",payload:{pagination:a()({},o.pagination,{total:l.total})}});case 17:case"end":return e.stop()}},e)})()},filter(e,t){return i.a.mark(function n(){var r,o,a,s,l;return i.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.filter,o=t.put,a=t.select,n.next=4,a(e=>e.order);case 4:return s=n.sent,l=s.pagination,l["current"]=1,n.next=9,o({type:"setState",payload:{filter:r}});case 9:return n.next=11,o({type:"fetch"});case 11:case"end":return n.stop()}},n)})()},addFilter(e,t){return i.a.mark(function n(){var r,o,a,s,l,c,u,h,d;return i.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:if(r=e.key,o=e.condition,a=e.value,s=e.clear,l=t.put,c=t.select,!s){n.next=5;break}return n.next=5,l({filter:[]});case 5:return n.next=7,c(e=>e.order);case 7:return u=n.sent,h=u.filter,d=u.pagination,h.push({key:r,condition:o,value:a}),d["current"]=1,n.next=14,l({type:"setState",payload:{filter:h,pagination:d}});case 14:return n.next=16,l({type:"fetch"});case 16:case"end":return n.stop()}},n)})()},update(e,t){return i.a.mark(function n(){var r,o,a,l,c;return i.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.tradeNo,o=e.key,a=e.value,l=t.put,n.next=4,Object(s["b"])("/admin/order/update",{trade_no:r,[o]:a});case 4:if(c=n.sent,200===c.code){n.next=7;break}return n.abrupt("return");case 7:return n.next=9,l({type:"fetch"});case 9:case"end":return n.stop()}},n)})()},paid(e,t){return i.a.mark(function n(){var r,o,a;return i.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.tradeNo,o=t.put,n.next=4,Object(s["b"])("/admin/order/paid",{trade_no:r});case 4:if(a=n.sent,200===a.code){n.next=7;break}return n.abrupt("return");case 7:return n.next=9,o({type:"fetch"});case 9:case"end":return n.stop()}},n)})()},cancel(e,t){return i.a.mark(function n(){var r,o,a;return i.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.tradeNo,o=t.put,n.next=4,Object(s["b"])("/admin/order/cancel",{trade_no:r});case 4:if(a=n.sent,200===a.code){n.next=7;break}return n.abrupt("return");case 7:return n.next=9,o({type:"fetch"});case 9:case"end":return n.stop()}},n)})()},assign(e,t){return i.a.mark(function n(){var r,o,l,c;return i.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.params,o=e.callback,l=t.put,n.next=4,l({type:"setState",payload:{assignLoading:!0}});case 4:return n.next=6,Object(s["b"])("/admin/order/assign",a()({},r,{total_amount:100*r.total_amount}));case 6:return c=n.sent,n.next=9,l({type:"setState",payload:{assignLoading:!1}});case 9:if(200===c.code){n.next=11;break}return n.abrupt("return");case 11:return n.next=13,l({type:"fetch"});case 13:"function"===typeof o&&o();case 14:case"end":return n.stop()}},n)})()},changeTable(e,t){return i.a.mark(function n(){var r,o,s,l;return i.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.pagination,o=t.select,s=t.put,n.next=4,o(e=>e.order);case 4:return l=n.sent,n.next=7,s({type:"setState",payload:{pagination:a()({},l.pagination,r)}});case 7:return n.next=9,s({type:"fetch"});case 9:case"end":return n.stop()}},n)})()}}}},"48Dx":function(e,t){e.exports=function(e,t){return{value:t,done:!!e}}},"49sm":function(e,t){e.exports=Array.isArray||function(e){return"[object Array]"==Object.prototype.toString.call(e)}},"4IlW":function(e,t,n){"use strict";var r={MAC_ENTER:3,BACKSPACE:8,TAB:9,NUM_CENTER:12,ENTER:13,SHIFT:16,CTRL:17,ALT:18,PAUSE:19,CAPS_LOCK:20,ESC:27,SPACE:32,PAGE_UP:33,PAGE_DOWN:34,END:35,HOME:36,LEFT:37,UP:38,RIGHT:39,DOWN:40,PRINT_SCREEN:44,INSERT:45,DELETE:46,ZERO:48,ONE:49,TWO:50,THREE:51,FOUR:52,FIVE:53,SIX:54,SEVEN:55,EIGHT:56,NINE:57,QUESTION_MARK:63,A:65,B:66,C:67,D:68,E:69,F:70,G:71,H:72,I:73,J:74,K:75,L:76,M:77,N:78,O:79,P:80,Q:81,R:82,S:83,T:84,U:85,V:86,W:87,X:88,Y:89,Z:90,META:91,WIN_KEY_RIGHT:92,CONTEXT_MENU:93,NUM_ZERO:96,NUM_ONE:97,NUM_TWO:98,NUM_THREE:99,NUM_FOUR:100,NUM_FIVE:101,NUM_SIX:102,NUM_SEVEN:103,NUM_EIGHT:104,NUM_NINE:105,NUM_MULTIPLY:106,NUM_PLUS:107,NUM_MINUS:109,NUM_PERIOD:110,NUM_DIVISION:111,F1:112,F2:113,F3:114,F4:115,F5:116,F6:117,F7:118,F8:119,F9:120,F10:121,F11:122,F12:123,NUMLOCK:144,SEMICOLON:186,DASH:189,EQUALS:187,COMMA:188,PERIOD:190,SLASH:191,APOSTROPHE:192,SINGLE_QUOTE:222,OPEN_SQUARE_BRACKET:219,BACKSLASH:220,CLOSE_SQUARE_BRACKET:221,WIN_KEY:224,MAC_FF_META:224,WIN_IME:229,isTextModifyingKeyEvent:function(e){var t=e.keyCode;if(e.altKey&&!e.ctrlKey||e.metaKey||t>=r.F1&&t<=r.F12)return!1;switch(t){case r.ALT:case r.CAPS_LOCK:case r.CONTEXT_MENU:case r.CTRL:case r.DOWN:case r.END:case r.ESC:case r.HOME:case r.INSERT:case r.LEFT:case r.MAC_FF_META:case r.META:case r.NUMLOCK:case r.NUM_CENTER:case r.PAGE_DOWN:case r.PAGE_UP:case r.PAUSE:case r.PRINT_SCREEN:case r.RIGHT:case r.SHIFT:case r.UP:case r.WIN_KEY:case r.WIN_KEY_RIGHT:return!1;default:return!0}},isCharacterKey:function(e){if(e>=r.ZERO&&e<=r.NINE)return!0;if(e>=r.NUM_ZERO&&e<=r.NUM_MULTIPLY)return!0;if(e>=r.A&&e<=r.Z)return!0;if(-1!==window.navigator.userAgent.indexOf("WebKit")&&0===e)return!0;switch(e){case r.SPACE:case r.QUESTION_MARK:case r.NUM_PLUS:case r.NUM_MINUS:case r.NUM_PERIOD:case r.NUM_DIVISION:case r.SEMICOLON:case r.DASH:case r.EQUALS:case r.COMMA:case r.PERIOD:case r.SLASH:case r.APOSTROPHE:case r.SINGLE_QUOTE:case r.OPEN_SQUARE_BRACKET:case r.BACKSLASH:case r.CLOSE_SQUARE_BRACKET:return!0;default:return!1}}};t["a"]=r},"4gcQ":function(e,t,n){var r=n("V5/1"),i=n("7vYJ"),o=n("Igga");e.exports=n("8Z/V")?Object.defineProperties:function(e,t){i(e);var n,a=o(t),s=a.length,l=0;while(s>l)r.f(e,n=a[l++],t[n]);return e}},"4mN7":function(e,t,n){"use strict";n.d(t,"d",function(){return f}),n.d(t,"c",function(){return p}),n.d(t,"b",function(){return v}),n.d(t,"e",function(){return y}),n.d(t,"a",function(){return b});var r=n("QBsz"),i=n("Sj9i"),o=Math.min,a=Math.max,s=Math.sin,l=Math.cos,c=2*Math.PI,u=r["d"](),h=r["d"](),d=r["d"]();function f(e,t,n){if(0!==e.length){for(var r=e[0],i=r[0],s=r[0],l=r[1],c=r[1],u=1;u1e-4)return p[0]=e-n,p[1]=t-i,m[0]=e+n,void(m[1]=t+i);if(u[0]=l(o)*n+e,u[1]=s(o)*i+t,h[0]=l(a)*n+e,h[1]=s(a)*i+t,g(p,u,h),v(m,u,h),o%=c,o<0&&(o+=c),a%=c,a<0&&(a+=c),o>a&&!f?a+=c:oo&&(d[0]=l(w)*n+e,d[1]=s(w)*i+t,g(p,d,p),v(m,d,m))}},"4nmR":function(e,t,n){"use strict";var r=n("vpQ4"),i=n("ANjH"),o=n("7bO/"),a=n("QLaP"),s=n.n(a),l=n("U8pU"),c=n("+0iv"),u=n.n(c),h=n("myn2"),d=n.n(h),f=n("1OyB"),p=n("vuIU"),m=n("KQm4"),g=n("QTEQ"),v=n.n(g);n("vgmO");function y(e){if(Array.isArray(e))return e}function b(e,t){if("undefined"!==typeof Symbol&&Symbol.iterator in Object(e)){var n=[],r=!0,i=!1,o=void 0;try{for(var a,s=e[Symbol.iterator]();!(r=(a=s.next()).done);r=!0)if(n.push(a.value),t&&n.length===t)break}catch(e){i=!0,o=e}finally{try{r||null==s["return"]||s["return"]()}finally{if(i)throw o}}return n}}var w=n("BsWD");function x(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function _(e,t){return y(e)||b(e,t)||Object(w["a"])(e,t)||x()}var C=n("o0o1"),S=n.n(C);n.d(t,"a",function(){return re}),n.d(t,"b",function(){return M});var E=Array.isArray.bind(Array),k=function(e){return"function"===typeof e},O=function(e){return e},T=function(){},A=function(e,t){for(var n=0,r=e.length;n-1&&(t[n]=e[n]),t},{})}var N=function(){function e(){Object(f["a"])(this,e),this._handleActions=null,this.hooks=D.reduce(function(e,t){return e[t]=[],e},{})}return Object(p["a"])(e,[{key:"use",value:function(e){s()(u()(e),"plugin.use: plugin should be plain object");var t=this.hooks;for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(s()(t[n],"plugin.use: unknown plugin property: ".concat(n)),"_handleActions"===n?this._handleActions=e[n]:"extraEnhancers"===n?t[n]=e[n]:t[n].push(e[n]))}},{key:"apply",value:function(e,t){var n=this.hooks,r=["onError","onHmr"];s()(r.indexOf(e)>-1,"plugin.apply: hook ".concat(e," cannot be applied"));var i=n[e];return function(){if(i.length){var e=!0,n=!1,r=void 0;try{for(var o,a=i[Symbol.iterator]();!(e=(o=a.next()).done);e=!0){var s=o.value;s.apply(void 0,arguments)}}catch(e){n=!0,r=e}finally{try{e||null==a.return||a.return()}finally{if(n)throw r}}}else t&&t.apply(void 0,arguments)}}},{key:"get",value:function(e){var t=this.hooks;return s()(e in t,"plugin.get: hook ".concat(e," cannot be got")),"extraReducers"===e?I(t[e]):"onReducer"===e?$(t[e]):t[e]}}]),e}();function I(e){var t={},n=!0,i=!1,o=void 0;try{for(var a,s=e[Symbol.iterator]();!(n=(a=s.next()).done);n=!0){var l=a.value;t=Object(r["a"])({},t,l)}}catch(e){i=!0,o=e}finally{try{n||null==s.return||s.return()}finally{if(i)throw o}}return t}function $(e){return function(t){var n=!0,r=!1,i=void 0;try{for(var o,a=e[Symbol.iterator]();!(n=(o=a.next()).done);n=!0){var s=o.value;t=s(t)}}catch(e){r=!0,i=e}finally{try{n||null==a.return||a.return()}finally{if(r)throw i}}return t}}function F(e){var t=e.reducers,n=e.initialState,r=e.plugin,o=e.sagaMiddleware,a=e.promiseMiddleware,c=e.createOpts.setupMiddlewares,u=void 0===c?O:c,h=r.get("extraEnhancers");s()(E(h),"[app.start] extraEnhancers should be array, but got ".concat(Object(l["a"])(h)));var d=r.get("onAction"),f=u([a,o].concat(Object(m["a"])(v()(d)))),p=i["d"],g=[i["a"].apply(void 0,Object(m["a"])(f))].concat(Object(m["a"])(h));return Object(i["e"])(t,n,p.apply(void 0,Object(m["a"])(g)))}function V(e,t){var n="".concat(t.namespace).concat(P).concat(e),r=n.replace(/\/@@[^/]+?$/,""),i=Array.isArray(t.reducers)?t.reducers[0][r]:t.reducers&&t.reducers[r];return i||t.effects&&t.effects[r]?n:e}function B(e,t,n,r){var i=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{};return S.a.mark(function a(){var s;return S.a.wrap(function(a){while(1)switch(a.prev=a.next){case 0:a.t0=S.a.keys(e);case 1:if((a.t1=a.t0()).done){a.next=7;break}if(s=a.t1.value,!Object.prototype.hasOwnProperty.call(e,s)){a.next=5;break}return a.delegateYield(S.a.mark(function a(){var l,c;return S.a.wrap(function(a){while(1)switch(a.prev=a.next){case 0:return l=W(s,e[s],t,n,r,i),a.next=3,o["b"].fork(l);case 3:return c=a.sent,a.next=6,o["b"].fork(S.a.mark(function e(){return S.a.wrap(function(e){while(1)switch(e.prev=e.next){case 0:return e.next=2,o["b"].take("".concat(t.namespace,"/@@CANCEL_EFFECTS"));case 2:return e.next=4,o["b"].cancel(c);case 4:case"end":return e.stop()}},e)}));case 6:case"end":return a.stop()}},a)})(),"t2",5);case 5:a.next=1;break;case 7:case"end":return a.stop()}},a)})}function W(e,t,n,r,i,a){var l,c,u=S.a.mark(v),h=t,d="takeEvery";if(Array.isArray(t)){var f=_(t,1);h=f[0];var p=t[1];p&&p.type&&(d=p.type,"throttle"===d&&(s()(p.ms,"app.start: opts.ms should be defined if type is throttle"),l=p.ms),"poll"===d&&(s()(p.delay,"app.start: opts.delay should be defined if type is poll"),c=p.delay)),s()(["watcher","takeEvery","takeLatest","throttle","poll"].indexOf(d)>-1,"app.start: effect type should be takeEvery, takeLatest, throttle, poll or watcher")}function g(){}function v(){var t,i,s,l,c,d,f,p,v,y=arguments;return S.a.wrap(function(u){while(1)switch(u.prev=u.next){case 0:for(t=y.length,i=new Array(t),s=0;s0?i[0]:{},c=l.__dva_resolve,d=void 0===c?g:c,f=l.__dva_reject,p=void 0===f?g:f,u.prev=2,u.next=5,o["b"].put({type:"".concat(e).concat(P,"@@start")});case 5:return u.next=7,h.apply(void 0,Object(m["a"])(i.concat(H(n,a))));case 7:return v=u.sent,u.next=10,o["b"].put({type:"".concat(e).concat(P,"@@end")});case 10:d(v),u.next=17;break;case 13:u.prev=13,u.t0=u["catch"](2),r(u.t0,{key:e,effectArgs:i}),u.t0._dontReject||p(u.t0);case 17:case"end":return u.stop()}},u,null,[[2,13]])}var y=z(i,v,n,e);switch(d){case"watcher":return v;case"takeLatest":return S.a.mark(function t(){return S.a.wrap(function(t){while(1)switch(t.prev=t.next){case 0:return t.next=2,o["b"].takeLatest(e,y);case 2:case"end":return t.stop()}},t)});case"throttle":return S.a.mark(function t(){return S.a.wrap(function(t){while(1)switch(t.prev=t.next){case 0:return t.next=2,o["b"].throttle(l,e,y);case 2:case"end":return t.stop()}},t)});case"poll":return S.a.mark(function t(){var n,r,i,a,s,l,u;return S.a.wrap(function(t){while(1)switch(t.prev=t.next){case 0:i=function(e,t){var i;return S.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:i=e.call;case 1:return n.next=4,i(y,t);case 4:return n.next=6,i(r,c);case 6:n.next=1;break;case 8:case"end":return n.stop()}},n)},r=function(e){return new Promise(function(t){return setTimeout(t,e)})},n=S.a.mark(i),a=o["b"].call,s=o["b"].take,l=o["b"].race;case 4:return t.next=7,s("".concat(e,"-start"));case 7:return u=t.sent,t.next=10,l([a(i,o["b"],u),s("".concat(e,"-stop"))]);case 10:t.next=4;break;case 12:case"end":return t.stop()}},t)});default:return S.a.mark(function t(){return S.a.wrap(function(t){while(1)switch(t.prev=t.next){case 0:return t.next=2,o["b"].takeEvery(e,y);case 2:case"end":return t.stop()}},t)})}}function H(e,t){function n(n,r){s()(n,"dispatch: action should be a plain Object with type");var i=t.namespacePrefixWarning,o=void 0===i||i;o&&d()(0!==n.indexOf("".concat(e.namespace).concat(P)),"[".concat(r,"] ").concat(n," should not be prefixed with namespace ").concat(e.namespace))}function i(t){var i=t.type;return n(i,"sagaEffects.put"),o["b"].put(Object(r["a"])({},t,{type:V(i,e)}))}function a(t){var i=t.type;return n(i,"sagaEffects.put.resolve"),o["b"].put.resolve(Object(r["a"])({},t,{type:V(i,e)}))}function l(t){return"string"===typeof t?(n(t,"sagaEffects.take"),o["b"].take(V(t,e))):Array.isArray(t)?o["b"].take(t.map(function(t){return"string"===typeof t?(n(t,"sagaEffects.take"),V(t,e)):t})):o["b"].take(t)}return i.resolve=a,Object(r["a"])({},o["b"],{put:i,take:l})}function z(e,t,n,r){var i=!0,a=!1,s=void 0;try{for(var l,c=e[Symbol.iterator]();!(i=(l=c.next()).done);i=!0){var u=l.value;t=u(t,o["b"],n,r)}}catch(e){a=!0,s=e}finally{try{i||null==c.return||c.return()}finally{if(a)throw s}}return t}function U(e){return e}function q(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:U;return function(n,r){var i=r.type;return s()(i,"dispatch: action should be a plain Object with type"),e===i?t(n,r):n}}function K(){for(var e=arguments.length,t=new Array(e),n=0;n0&&void 0!==arguments[0]?arguments[0]:t,n=arguments.length>1?arguments[1]:void 0;return r(e,n)}}function Y(e,t,n){return Array.isArray(e)?e[1]((n||G)(e[0],t)):(n||G)(e||{},t)}function X(e){return function(){return function(e){return function(n){var i=n.type;return t(i)?new Promise(function(t,i){e(Object(r["a"])({__dva_resolve:t,__dva_reject:i},n))}):e(n)}}};function t(t){if(!t||"string"!==typeof t)return!1;var n=t.split(P),r=_(n,1),i=r[0],o=e._models.filter(function(e){return e.namespace===i})[0];return!!(o&&o.effects&&o.effects[t])}}function Q(e,t){return function(n){var i=n.type;return s()(i,"dispatch: action should be a plain Object with type"),d()(0!==i.indexOf("".concat(t.namespace).concat(P)),"dispatch: ".concat(i," should not be prefixed with namespace ").concat(t.namespace)),e(Object(r["a"])({},n,{type:V(i,t)}))}}function Z(e,t,n,r){var i=[],o=[];for(var a in e)if(Object.prototype.hasOwnProperty.call(e,a)){var s=e[a],l=s({dispatch:Q(n._store.dispatch,t),history:n._history},r);k(l)?i.push(l):o.push(a)}return{funcs:i,nonFuncs:o}}function J(e,t){if(e[t]){var n=e[t],r=n.funcs,i=n.nonFuncs;d()(0===i.length,"[app.unmodel] subscription should return unlistener function, check these subscriptions ".concat(i.join(", ")));var o=!0,a=!1,s=void 0;try{for(var l,c=r[Symbol.iterator]();!(o=(l=c.next()).done);o=!0){var u=l.value;u()}}catch(e){a=!0,s=e}finally{try{o||null==c.return||c.return()}finally{if(a)throw s}}delete e[t]}}var ee=T,te=A,ne={namespace:"@@dva",state:0,reducers:{UPDATE:function(e){return e+1}}};function re(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=t.initialReducer,a=t.setupApp,l=void 0===a?ee:a,c=new N;c.use(j(e));var u={_models:[L(Object(r["a"])({},ne))],_store:null,_plugin:c,use:c.use.bind(c),model:h,start:m};return u;function h(e){var t=L(Object(r["a"])({},e));return u._models.push(t),t}function d(t,n,r,i){i=h(i);var o=u._store;o.asyncReducers[i.namespace]=Y(i.reducers,i.state,c._handleActions),o.replaceReducer(t()),i.effects&&o.runSaga(u._getSaga(i.effects,i,n,c.get("onEffect"),e)),i.subscriptions&&(r[i.namespace]=Z(i.subscriptions,i,u,n))}function f(e,t,n,r){var i=u._store;delete i.asyncReducers[r],delete t[r],i.replaceReducer(e()),i.dispatch({type:"@@dva/UPDATE"}),i.dispatch({type:"".concat(r,"/@@CANCEL_EFFECTS")}),J(n,r),u._models=u._models.filter(function(e){return e.namespace!==r})}function p(e,t,n,r,i){var o=u._store,a=i.namespace,s=te(u._models,function(e){return e.namespace===a});~s&&(o.dispatch({type:"".concat(a,"/@@CANCEL_EFFECTS")}),delete o.asyncReducers[a],delete t[a],J(n,a),u._models.splice(s,1)),u.model(i),o.dispatch({type:"@@dva/UPDATE"})}function m(){var a=function(e,t){e&&("string"===typeof e&&(e=new Error(e)),e.preventDefault=function(){e._dontReject=!0},c.apply("onError",function(e){throw new Error(e.stack||e)})(e,u._store.dispatch,t))},h=Object(o["a"])(),m=X(u);u._getSaga=B.bind(null);var g=[],v=Object(r["a"])({},n),y=!0,b=!1,w=void 0;try{for(var x,_=u._models[Symbol.iterator]();!(y=(x=_.next()).done);y=!0){var C=x.value;v[C.namespace]=Y(C.reducers,C.state,c._handleActions),C.effects&&g.push(u._getSaga(C.effects,C,a,c.get("onEffect"),e))}}catch(e){b=!0,w=e}finally{try{y||null==_.return||_.return()}finally{if(b)throw w}}var S=c.get("onReducer"),E=c.get("extraReducers");s()(Object.keys(E).every(function(e){return!(e in v)}),"[app.start] extraReducers is conflict with other reducers, reducers list: ".concat(Object.keys(v).join(", "))),u._store=F({reducers:H(),initialState:e.initialState||{},plugin:c,createOpts:t,sagaMiddleware:h,promiseMiddleware:m});var k=u._store;k.runSaga=h.run,k.asyncReducers={};var O=c.get("onStateChange"),T=!0,A=!1,M=void 0;try{for(var P,R=function(){var e=P.value;k.subscribe(function(){e(k.getState())})},L=O[Symbol.iterator]();!(T=(P=L.next()).done);T=!0)R()}catch(e){A=!0,M=e}finally{try{T||null==L.return||L.return()}finally{if(A)throw M}}g.forEach(h.run),l(u);var D={},j=!0,N=!1,I=void 0;try{for(var $,V=this._models[Symbol.iterator]();!(j=($=V.next()).done);j=!0){var W=$.value;W.subscriptions&&(D[W.namespace]=Z(W.subscriptions,W,u,a))}}catch(e){N=!0,I=e}finally{try{j||null==V.return||V.return()}finally{if(N)throw I}}function H(){return S(Object(i["c"])(Object(r["a"])({},v,E,u._store?u._store.asyncReducers:{})))}u.model=d.bind(u,H,a,D),u.unmodel=f.bind(u,H,v,D),u.replaceModel=p.bind(u,H,v,D,a)}}},"4o36":function(e,t,n){var r=n("wHrr"),i=n("69SZ"),o=n("ULMT"),a=n("7vYJ"),s=n("OsVd"),l=n("BnQZ"),c={},u={};t=e.exports=function(e,t,n,h,d){var f,p,m,g,v=d?function(){return e}:l(e),y=r(n,h,t?2:1),b=0;if("function"!=typeof v)throw TypeError(e+" is not iterable!");if(o(v)){for(f=s(e.length);f>b;b++)if(g=t?y(a(p=e[b])[0],p[1]):y(e[b]),g===c||g===u)return g}else for(m=v.call(e);!(p=m.next()).done;)if(g=i(m,y,p.value,t),g===c||g===u)return g};t.BREAK=c,t.RETURN=u},"5K7Z":function(e,t,n){var r=n("93I4");e.exports=function(e){if(!r(e))throw TypeError(e+" is not an object!");return e}},"5T2Y":function(e,t){var n=e.exports="undefined"!=typeof window&&window.Math==Math?window:"undefined"!=typeof self&&self.Math==Math?self:Function("return this")();"number"==typeof __g&&(__g=n)},"5lmr":function(e,t,n){"use strict";var r=n("q1tI"),i=n.n(r),o=n("17x9"),a=n.n(o),s=n("uciX"),l=n("wd/R"),c=n.n(l),u=n("VCL8"),h=n("TSYQ"),d=n.n(h),f=n("wgp+"),p={adjustX:1,adjustY:1},m=[0,0],g={bottomLeft:{points:["tl","tl"],overflow:p,offset:[0,-3],targetOffset:m},bottomRight:{points:["tr","tr"],overflow:p,offset:[0,-3],targetOffset:m},topRight:{points:["br","br"],overflow:p,offset:[0,3],targetOffset:m},topLeft:{points:["bl","bl"],overflow:p,offset:[0,3],targetOffset:m}},v=g;function y(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function b(e){for(var t=1;t0?b({},t,{},n):null}}]),t}(r["Component"]);T(P,"propTypes",{prefixCls:a.a.string,clearText:a.a.string,value:a.a.object,defaultOpenValue:a.a.object,inputReadOnly:a.a.bool,disabled:a.a.bool,allowEmpty:a.a.bool,defaultValue:a.a.object,open:a.a.bool,defaultOpen:a.a.bool,align:a.a.object,placement:a.a.any,transitionName:a.a.string,getPopupContainer:a.a.func,placeholder:a.a.string,format:a.a.string,showHour:a.a.bool,showMinute:a.a.bool,showSecond:a.a.bool,style:a.a.object,className:a.a.string,popupClassName:a.a.string,popupStyle:a.a.object,disabledHours:a.a.func,disabledMinutes:a.a.func,disabledSeconds:a.a.func,hideDisabledOptions:a.a.bool,onChange:a.a.func,onAmPmChange:a.a.func,onOpen:a.a.func,onClose:a.a.func,onFocus:a.a.func,onBlur:a.a.func,addon:a.a.func,name:a.a.string,autoComplete:a.a.string,use12Hours:a.a.bool,hourStep:a.a.number,minuteStep:a.a.number,secondStep:a.a.number,focusOnOpen:a.a.bool,onKeyDown:a.a.func,autoFocus:a.a.bool,id:a.a.string,inputIcon:a.a.node,clearIcon:a.a.node}),T(P,"defaultProps",{clearText:"clear",prefixCls:"rc-time-picker",defaultOpen:!1,inputReadOnly:!1,style:{},className:"",popupClassName:"",popupStyle:{},align:{},defaultOpenValue:c()(),allowEmpty:!0,showHour:!0,showMinute:!0,showSecond:!0,disabledHours:A,disabledMinutes:A,disabledSeconds:A,hideDisabledOptions:!1,placement:"bottomLeft",onChange:A,onAmPmChange:A,onOpen:A,onClose:A,onFocus:A,onBlur:A,addon:A,use12Hours:!1,focusOnOpen:!1,onKeyDown:A}),Object(u["polyfill"])(P);t["a"]=P},"5vMV":function(e,t,n){var r=n("B+OT"),i=n("NsO/"),o=n("W070")(!1),a=n("VVlx")("IE_PROTO");e.exports=function(e,t){var n,s=i(e),l=0,c=[];for(n in s)n!=a&&r(s,n)&&c.push(n);while(t.length>l)r(s,n=t[l++])&&(~o(c,n)||c.push(n));return c}},"6+eU":function(e,t,n){"use strict";var r=n("YEIV"),i=n.n(r),o=n("QbLZ"),a=n.n(o),s=n("iCc5"),l=n.n(s),c=n("V7oC"),u=n.n(c),h=n("FYw3"),d=n.n(h),f=n("mRg0"),p=n.n(f),m=n("q1tI"),g=n.n(m),v=n("TSYQ"),y=n.n(v),b=n("17x9"),w=n.n(b),x=function(e){var t,n=e.rootPrefixCls+"-item",r=y()(n,n+"-"+e.page,(t={},i()(t,n+"-active",e.active),i()(t,e.className,!!e.className),i()(t,n+"-disabled",!e.page),t)),o=function(){e.onClick(e.page)},a=function(t){e.onKeyPress(t,e.onClick,e.page)};return g.a.createElement("li",{title:e.showTitle?e.page:null,className:r,onClick:o,onKeyPress:a,tabIndex:"0"},e.itemRender(e.page,"page",g.a.createElement("a",null,e.page)))};x.propTypes={page:w.a.number,active:w.a.bool,last:w.a.bool,locale:w.a.object,className:w.a.string,showTitle:w.a.bool,rootPrefixCls:w.a.string,onClick:w.a.func,onKeyPress:w.a.func,itemRender:w.a.func};var _=x,C={ZERO:48,NINE:57,NUMPAD_ZERO:96,NUMPAD_NINE:105,BACKSPACE:8,DELETE:46,ENTER:13,ARROW_UP:38,ARROW_DOWN:40},S=function(e){function t(){var e,n,r,i;l()(this,t);for(var o=arguments.length,a=Array(o),s=0;s=0||e.relatedTarget.className.indexOf(o+"-next")>=0)||i(r.getValidValue())},r.go=function(e){var t=r.state.goInputText;""!==t&&(e.keyCode!==C.ENTER&&"click"!==e.type||(r.setState({goInputText:""}),r.props.quickGo(r.getValidValue())))},i=n,d()(r,i)}return p()(t,e),u()(t,[{key:"getValidValue",value:function(){var e=this.state,t=e.goInputText,n=e.current;return!t||isNaN(t)?n:Number(t)}},{key:"render",value:function(){var e=this,t=this.props,n=t.pageSize,r=t.pageSizeOptions,i=t.locale,o=t.rootPrefixCls,a=t.changeSize,s=t.quickGo,l=t.goButton,c=t.selectComponentClass,u=t.buildOptionText,h=t.selectPrefixCls,d=t.disabled,f=this.state.goInputText,p=o+"-options",m=c,v=null,y=null,b=null;if(!a&&!s)return null;if(a&&m){var w=r.map(function(t,n){return g.a.createElement(m.Option,{key:n,value:t},(u||e.buildOptionText)(t))});v=g.a.createElement(m,{disabled:d,prefixCls:h,showSearch:!1,className:p+"-size-changer",optionLabelProp:"children",dropdownMatchSelectWidth:!1,value:(n||r[0]).toString(),onChange:this.changeSize,getPopupContainer:function(e){return e.parentNode}},w)}return s&&(l&&(b="boolean"===typeof l?g.a.createElement("button",{type:"button",onClick:this.go,onKeyUp:this.go,disabled:d},i.jump_to_confirm):g.a.createElement("span",{onClick:this.go,onKeyUp:this.go},l)),y=g.a.createElement("div",{className:p+"-quick-jumper"},i.jump_to,g.a.createElement("input",{disabled:d,type:"text",value:f,onChange:this.handleChange,onKeyUp:this.go,onBlur:this.handleBlur}),i.page,b)),g.a.createElement("li",{className:""+p},v,y)}}]),t}(g.a.Component);S.propTypes={disabled:w.a.bool,changeSize:w.a.func,quickGo:w.a.func,selectComponentClass:w.a.func,current:w.a.number,pageSizeOptions:w.a.arrayOf(w.a.string),pageSize:w.a.number,buildOptionText:w.a.func,locale:w.a.object,rootPrefixCls:w.a.string,selectPrefixCls:w.a.string,goButton:w.a.oneOfType([w.a.bool,w.a.node])},S.defaultProps={pageSizeOptions:["10","20","30","40"]};var E=S,k=n("N2Kk"),O=n("VCL8");function T(){}function A(e){return"number"===typeof e&&isFinite(e)&&Math.floor(e)===e}function M(e,t,n){return n}function P(e,t,n){var r=e;return"undefined"===typeof r&&(r=t.pageSize),Math.floor((n.total-1)/r)+1}var R=function(e){function t(e){l()(this,t);var n=d()(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));L.call(n);var r=e.onChange!==T,i="current"in e;i&&!r&&console.warn("Warning: You provided a `current` prop to a Pagination component without an `onChange` handler. This will render a read-only component.");var o=e.defaultCurrent;"current"in e&&(o=e.current);var a=e.defaultPageSize;return"pageSize"in e&&(a=e.pageSize),o=Math.min(o,P(a,void 0,e)),n.state={current:o,currentInputValue:o,pageSize:a},n}return p()(t,e),u()(t,[{key:"componentDidUpdate",value:function(e,t){var n=this.props.prefixCls;if(t.current!==this.state.current&&this.paginationNode){var r=this.paginationNode.querySelector("."+n+"-item-"+t.current);r&&document.activeElement===r&&r.blur()}}},{key:"getValidValue",value:function(e){var t=e.target.value,n=P(void 0,this.state,this.props),r=this.state.currentInputValue,i=void 0;return i=""===t?t:isNaN(Number(t))?r:t>=n?n:Number(t),i}},{key:"render",value:function(){var e=this.props,t=e.prefixCls,n=e.className,r=e.disabled;if(!0===this.props.hideOnSinglePage&&this.props.total<=this.state.pageSize)return null;var o=this.props,s=o.locale,l=P(void 0,this.state,this.props),c=[],u=null,h=null,d=null,f=null,p=null,m=o.showQuickJumper&&o.showQuickJumper.goButton,v=o.showLessItems?1:2,b=this.state,w=b.current,x=b.pageSize,C=w-1>0?w-1:0,S=w+1=2*v&&3!==w&&(c[0]=g.a.cloneElement(c[0],{className:t+"-item-after-jump-prev"}),c.unshift(u)),l-w>=2*v&&w!==l-2&&(c[c.length-1]=g.a.cloneElement(c[c.length-1],{className:t+"-item-before-jump-next"}),c.push(h)),1!==j&&c.unshift(d),N!==l&&c.push(f)}var F=null;o.showTotal&&(F=g.a.createElement("li",{className:t+"-total-text"},o.showTotal(o.total,[0===o.total?0:(w-1)*x+1,w*x>o.total?o.total:w*x])));var V=!this.hasPrev()||!l,B=!this.hasNext()||!l;return g.a.createElement("ul",a()({className:y()(t,n,i()({},t+"-disabled",r)),style:o.style,unselectable:"unselectable",ref:this.savePaginationNode},k),F,g.a.createElement("li",{title:o.showTitle?s.prev_page:null,onClick:this.prev,tabIndex:V?null:0,onKeyPress:this.runIfEnterPrev,className:(V?t+"-disabled":"")+" "+t+"-prev","aria-disabled":V},o.itemRender(C,"prev",this.getItemIcon(o.prevIcon))),c,g.a.createElement("li",{title:o.showTitle?s.next_page:null,onClick:this.next,tabIndex:B?null:0,onKeyPress:this.runIfEnterNext,className:(B?t+"-disabled":"")+" "+t+"-next","aria-disabled":B},o.itemRender(S,"next",this.getItemIcon(o.nextIcon))),g.a.createElement(E,{disabled:r,locale:o.locale,rootPrefixCls:t,selectComponentClass:o.selectComponentClass,selectPrefixCls:o.selectPrefixCls,changeSize:this.props.showSizeChanger?this.changePageSize:null,current:this.state.current,pageSize:this.state.pageSize,pageSizeOptions:this.props.pageSizeOptions,quickGo:this.shouldDisplayQuickJumper()?this.handleChange:null,goButton:m}))}}],[{key:"getDerivedStateFromProps",value:function(e,t){var n={};if("current"in e&&(n.current=e.current,e.current!==t.current&&(n.currentInputValue=n.current)),"pageSize"in e&&e.pageSize!==t.pageSize){var r=t.current,i=P(e.pageSize,t,e);r=r>i?i:r,"current"in e||(n.current=r,n.currentInputValue=r),n.pageSize=e.pageSize}return n}}]),t}(g.a.Component);R.propTypes={disabled:w.a.bool,prefixCls:w.a.string,className:w.a.string,current:w.a.number,defaultCurrent:w.a.number,total:w.a.number,pageSize:w.a.number,defaultPageSize:w.a.number,onChange:w.a.func,hideOnSinglePage:w.a.bool,showSizeChanger:w.a.bool,showLessItems:w.a.bool,onShowSizeChange:w.a.func,selectComponentClass:w.a.func,showPrevNextJumpers:w.a.bool,showQuickJumper:w.a.oneOfType([w.a.bool,w.a.object]),showTitle:w.a.bool,pageSizeOptions:w.a.arrayOf(w.a.string),showTotal:w.a.func,locale:w.a.object,style:w.a.object,itemRender:w.a.func,prevIcon:w.a.oneOfType([w.a.func,w.a.node]),nextIcon:w.a.oneOfType([w.a.func,w.a.node]),jumpPrevIcon:w.a.oneOfType([w.a.func,w.a.node]),jumpNextIcon:w.a.oneOfType([w.a.func,w.a.node])},R.defaultProps={defaultCurrent:1,total:0,defaultPageSize:10,onChange:T,className:"",selectPrefixCls:"rc-select",prefixCls:"rc-pagination",selectComponentClass:null,hideOnSinglePage:!1,showPrevNextJumpers:!0,showQuickJumper:!1,showSizeChanger:!1,showLessItems:!1,showTitle:!0,onShowSizeChange:T,locale:k["a"],style:{},itemRender:M};var L=function(){var e=this;this.getJumpPrevPage=function(){return Math.max(1,e.state.current-(e.props.showLessItems?3:5))},this.getJumpNextPage=function(){return Math.min(P(void 0,e.state,e.props),e.state.current+(e.props.showLessItems?3:5))},this.getItemIcon=function(t){var n=e.props.prefixCls,r=t||g.a.createElement("a",{className:n+"-item-link"});return"function"===typeof t&&(r=g.a.createElement(t,a()({},e.props))),r},this.savePaginationNode=function(t){e.paginationNode=t},this.isValid=function(t){return A(t)&&t!==e.state.current},this.shouldDisplayQuickJumper=function(){var t=e.props,n=t.showQuickJumper,r=t.pageSize,i=t.total;return!(i<=r)&&n},this.handleKeyDown=function(e){e.keyCode!==C.ARROW_UP&&e.keyCode!==C.ARROW_DOWN||e.preventDefault()},this.handleKeyUp=function(t){var n=e.getValidValue(t),r=e.state.currentInputValue;n!==r&&e.setState({currentInputValue:n}),t.keyCode===C.ENTER?e.handleChange(n):t.keyCode===C.ARROW_UP?e.handleChange(n-1):t.keyCode===C.ARROW_DOWN&&e.handleChange(n+1)},this.changePageSize=function(t){var n=e.state.current,r=P(t,e.state,e.props);n=n>r?r:n,0===r&&(n=e.state.current),"number"===typeof t&&("pageSize"in e.props||e.setState({pageSize:t}),"current"in e.props||e.setState({current:n,currentInputValue:n})),e.props.onShowSizeChange(n,t)},this.handleChange=function(t){var n=e.props.disabled,r=t;if(e.isValid(r)&&!n){var i=P(void 0,e.state,e.props);r>i?r=i:r<1&&(r=1),"current"in e.props||e.setState({current:r,currentInputValue:r});var o=e.state.pageSize;return e.props.onChange(r,o),r}return e.state.current},this.prev=function(){e.hasPrev()&&e.handleChange(e.state.current-1)},this.next=function(){e.hasNext()&&e.handleChange(e.state.current+1)},this.jumpPrev=function(){e.handleChange(e.getJumpPrevPage())},this.jumpNext=function(){e.handleChange(e.getJumpNextPage())},this.hasPrev=function(){return e.state.current>1},this.hasNext=function(){return e.state.current2?n-2:0),i=2;i=0?parseFloat(e)/100*t:parseFloat(e):e}function b(e,t,n){var r=t.position||"inside",i=null!=t.distance?t.distance:5,o=n.height,a=n.width,s=o/2,l=n.x,c=n.y,u="left",h="top";if(r instanceof Array)l+=y(r[0],n.width),c+=y(r[1],n.height),u=null,h=null;else switch(r){case"left":l-=i,c+=s,u="right",h="middle";break;case"right":l+=i+a,c+=s,h="middle";break;case"top":l+=a/2,c-=i,u="center",h="bottom";break;case"bottom":l+=a/2,c+=o+i,u="center";break;case"inside":l+=a/2,c+=s,u="center",h="middle";break;case"insideLeft":l+=i,c+=s,h="middle";break;case"insideRight":l+=a-i,c+=s,u="right",h="middle";break;case"insideTop":l+=a/2,c+=i,u="center";break;case"insideBottom":l+=a/2,c+=o-i,u="center",h="bottom";break;case"insideTopLeft":l+=i,c+=i;break;case"insideTopRight":l+=a-i,c+=i,u="right";break;case"insideBottomLeft":l+=i,c+=o-i,h="bottom";break;case"insideBottomRight":l+=a-i,c+=o-i,u="right",h="bottom";break}return e=e||{},e.x=l,e.y=c,e.align=u,e.verticalAlign=h,e}},"6Ogq":function(e,t,n){"use strict";var r,i;Object.defineProperty(t,"__esModule",{value:!0});var o={position:"absolute",top:"-9999px",width:"50px",height:"50px"};function a(e){var t=e.direction,n=void 0===t?"vertical":t,a=e.prefixCls;if("undefined"===typeof document||"undefined"===typeof window)return 0;var s="vertical"===n;if(s&&r)return r;if(!s&&i)return i;var l=document.createElement("div");Object.keys(o).forEach(function(e){l.style[e]=o[e]}),l.className="".concat(a,"-hide-scrollbar scroll-div-append-to-body"),s?l.style.overflowY="scroll":l.style.overflowX="scroll",document.body.appendChild(l);var c=0;return s?(c=l.offsetWidth-l.clientWidth,r=c):(c=l.offsetHeight-l.clientHeight,i=c),document.body.removeChild(l),c}function s(e,t,n){var r;function i(){for(var i=arguments.length,o=new Array(i),a=0;a=c?e?"":void 0:(o=s.charCodeAt(l),o<55296||o>56319||l+1===c||(a=s.charCodeAt(l+1))<56320||a>57343?e?s.charAt(l):o:e?s.slice(l,l+2):a-56320+(o-55296<<10)+65536)}}},"6lKK":function(e,t,n){"use strict";n.r(t);n("2qtc");var r=n("kLXV"),i=(n("miYZ"),n("tsqr")),o=n("d6i3"),a=n.n(o),s=n("p0pE"),l=n.n(s),c=n("q1tI"),u=n.n(c),h=n("t3Un"),d={invite:{},site:{},subscribe:{},frontend:{},server:{},pay:{},email:{},telegram:{},app:{},tabs:"site",fetchLoading:!1,emailTemplate:[],themeTemplate:[],setTelegramWebhookLoading:!1};t["default"]={name:"config",state:l()({},d),reducers:{setState(e,t){var n=t.payload;return l()({},e,n)}},effects:{fetch(e,t){return a.a.mark(function e(){var n,r;return a.a.wrap(function(e){while(1)switch(e.prev=e.next){case 0:return n=t.put,e.next=3,n({type:"setState",payload:{fetchLoading:!0}});case 3:return e.next=5,Object(h["a"])("/admin/config/fetch");case 5:return r=e.sent,e.next=8,n({type:"setState",payload:{fetchLoading:!1}});case 8:if(200===r.code){e.next=10;break}return e.abrupt("return");case 10:return"string"===typeof r.data.invite.commission_withdraw_method&&(r.data.invite.commission_withdraw_method=r.data.invite.commission_withdraw_method.split(",")),"string"===typeof r.data.site.email_whitelist_suffix&&(r.data.site.email_whitelist_suffix=r.data.site.email_whitelist_suffix.split(",")),e.next=14,n({type:"setState",payload:l()({},r.data)});case 14:case"end":return e.stop()}},e)})()},save(e,t){return a.a.mark(function n(){var r,o,s,c,u;return a.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.parentKey,o=t.put,s=t.select,n.next=4,s(e=>e.config);case 4:return c=n.sent,n.next=7,Object(h["b"])("/admin/config/save",l()({},c[r]));case 7:if(u=n.sent,200===u.code){n.next=10;break}return n.abrupt("return");case 10:return i["a"].success("\u4fdd\u5b58\u6210\u529f"),n.next=13,o({type:"fetch"});case 13:case"end":return n.stop()}},n)})()},getEmailTemplate(e,t){return a.a.mark(function e(){var n,r;return a.a.wrap(function(e){while(1)switch(e.prev=e.next){case 0:return n=t.put,e.next=3,Object(h["a"])("/admin/config/getEmailTemplate");case 3:if(r=e.sent,200===r.code){e.next=6;break}return e.abrupt("return");case 6:return e.next=8,n({type:"setState",payload:{emailTemplate:r.data}});case 8:case"end":return e.stop()}},e)})()},getThemeTemplate(e,t){return a.a.mark(function e(){var n,r;return a.a.wrap(function(e){while(1)switch(e.prev=e.next){case 0:return n=t.put,e.next=3,Object(h["a"])("/admin/config/getThemeTemplate");case 3:if(r=e.sent,200===r.code){e.next=6;break}return e.abrupt("return");case 6:return e.next=8,n({type:"setState",payload:{themeTemplate:r.data}});case 8:case"end":return e.stop()}},e)})()},setTelegramWebhook(e,t){return a.a.mark(function n(){var r,o,s;return a.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.token,o=t.put,t.select,n.next=4,o({type:"setState",payload:{setTelegramWebhookLoading:!0}});case 4:return n.next=6,Object(h["b"])("/admin/config/setTelegramWebhook",{telegram_bot_token:r});case 6:return s=n.sent,n.next=9,o({type:"setState",payload:{setTelegramWebhookLoading:!1}});case 9:if(200===s.code){n.next=11;break}return n.abrupt("return");case 11:i["a"].success("webhook \u8bbe\u7f6e\u6210\u529f");case 12:case"end":return n.stop()}},n)})()},testSendMail(e,t){return a.a.mark(function e(){var n,i,o,s,l,c,d,f,p,m,g;return a.a.wrap(function(e){while(1)switch(e.prev=e.next){case 0:return m=t.put,e.next=3,m({type:"setState",payload:{testSendMailLoading:!0}});case 3:return e.next=5,Object(h["b"])("/admin/config/testSendMail");case 5:return g=e.sent,e.next=8,m({type:"setState",payload:{testSendMailLoading:!1}});case 8:if(200===g.code){e.next=10;break}return e.abrupt("return");case 10:r["a"][(null===g||void 0===g?void 0:null===(n=g.log)||void 0===n?void 0:n.error)?"error":"success"]({title:(null===g||void 0===g?void 0:null===(i=g.log)||void 0===i?void 0:i.error)?"\u53d1\u9001\u5931\u8d25":"\u53d1\u9001\u6210\u529f",content:u.a.createElement("div",null,(null===g||void 0===g?void 0:null===(o=g.log)||void 0===o?void 0:o.error)&&u.a.createElement("div",null,u.a.createElement("span",null,"\u5931\u8d25\u539f\u56e0:"),u.a.createElement("span",null,null===g||void 0===g?void 0:null===(s=g.log)||void 0===s?void 0:s.error)),u.a.createElement("div",null,u.a.createElement("span",null,"\u6536\u4fe1\u5730\u5740:"),u.a.createElement("span",null,null===g||void 0===g?void 0:null===(l=g.log)||void 0===l?void 0:l.email)),u.a.createElement("div",null,u.a.createElement("span",null,"\u53d1\u4fe1\u670d\u52a1\u5668:"),u.a.createElement("span",null,null===g||void 0===g?void 0:null===(c=g.log)||void 0===c?void 0:c.config.host)),u.a.createElement("div",null,u.a.createElement("span",null,"\u53d1\u4fe1\u7aef\u53e3:"),u.a.createElement("span",null,null===g||void 0===g?void 0:null===(d=g.log)||void 0===d?void 0:d.config.port)),u.a.createElement("div",null,u.a.createElement("span",null,"\u53d1\u4fe1\u52a0\u5bc6\u65b9\u5f0f:"),u.a.createElement("span",null,null===g||void 0===g?void 0:null===(f=g.log)||void 0===f?void 0:f.config.encryption)),u.a.createElement("div",null,u.a.createElement("span",null,"\u53d1\u4fe1\u7528\u6237\u540d:"),u.a.createElement("span",null,null===g||void 0===g?void 0:null===(p=g.log)||void 0===p?void 0:p.config.username)))}),console.log(g);case 12:case"end":return e.stop()}},e)})()}}}},"6tYh":function(e,t,n){var r=n("93I4"),i=n("5K7Z"),o=function(e,t){if(i(e),!r(t)&&null!==t)throw TypeError(t+": can't set as prototype!")};e.exports={set:Object.setPrototypeOf||("__proto__"in{}?function(e,t,r){try{r=n("2GTP")(Function.call,n("vwuL").f(Object.prototype,"__proto__").set,2),r(e,[]),t=!(e instanceof Array)}catch(e){t=!0}return function(e,n){return o(e,n),t?e.__proto__=n:r(e,n),e}}({},!1):void 0),check:o}},"7ICb":function(e,t,n){"use strict";function r(e){return e.clone().startOf("month")}function i(e){return e.clone().endOf("month")}function o(e,t,n){return e.clone().add(t,n)}function a(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],t=arguments[1],n=arguments[2];return e.some(function(e){return e.isSame(t,n)})}n.d(t,"b",function(){return r}),n.d(t,"a",function(){return i}),n.d(t,"c",function(){return o}),n.d(t,"d",function(){return a})},"7RDE":function(e,t,n){"use strict";var r,i=n("c0Oy"),o=n("+o5p")(0),a=n("rKIl"),s=n("+y51"),l=n("lFUy"),c=n("2Os2"),u=n("u8+u"),h=n("Jc7p"),d=n("Jc7p"),f=!i.ActiveXObject&&"ActiveXObject"in i,p="WeakMap",m=s.getWeak,g=Object.isExtensible,v=c.ufstore,y=function(e){return function(){return e(this,arguments.length>0?arguments[0]:void 0)}},b={get:function(e){if(u(e)){var t=m(e);return!0===t?v(h(this,p)).get(e):t?t[this._i]:void 0}},set:function(e,t){return c.def(h(this,p),e,t)}},w=e.exports=n("nWMQ")(p,y,b,c,!0,!0);d&&f&&(r=c.getConstructor(y,p),l(r.prototype,b),s.NEED=!0,o(["delete","has","get","set"],function(e){var t=w.prototype,n=t[e];a(t,e,function(t,i){if(u(t)&&!g(t)){this._f||(this._f=new r);var o=this._f[e](t,i);return"set"==e?this:o}return n.call(this,t,i)})}))},"7Uk0":function(e,t,n){"use strict";var r=n("il4q"),i=n("Spc3"),o=n("OsVd");e.exports=function(e){var t=r(this),n=o(t.length),a=arguments.length,s=i(a>1?arguments[1]:void 0,n),l=a>2?arguments[2]:void 0,c=void 0===l?n:i(l,n);while(c>s)t[s++]=e;return t}},"7ixt":function(e,t,n){"use strict";n.d(t,"a",function(){return o});var r={adjustX:1,adjustY:1},i=[0,0],o={left:{points:["cr","cl"],overflow:r,offset:[-4,0],targetOffset:i},right:{points:["cl","cr"],overflow:r,offset:[4,0],targetOffset:i},top:{points:["bc","tc"],overflow:r,offset:[0,-4],targetOffset:i},bottom:{points:["tc","bc"],overflow:r,offset:[0,4],targetOffset:i},topLeft:{points:["bl","tl"],overflow:r,offset:[0,-4],targetOffset:i},leftTop:{points:["tr","tl"],overflow:r,offset:[-4,0],targetOffset:i},topRight:{points:["br","tr"],overflow:r,offset:[0,-4],targetOffset:i},rightTop:{points:["tl","tr"],overflow:r,offset:[4,0],targetOffset:i},bottomRight:{points:["tr","br"],overflow:r,offset:[0,4],targetOffset:i},rightBottom:{points:["bl","br"],overflow:r,offset:[4,0],targetOffset:i},bottomLeft:{points:["tl","bl"],overflow:r,offset:[0,4],targetOffset:i},leftBottom:{points:["br","bl"],overflow:r,offset:[-4,0],targetOffset:i}}},"7tDr":function(e,t,n){"use strict";n.r(t);var r=n("d6i3"),i=n.n(r),o=n("p0pE"),a=n.n(o);t["default"]={name:"layout",state:{showNav:!1},reducers:{save(e,t){return a()({},e,t.payload)}},effects:{showNav(e,t){return i.a.mark(function n(){var r,o,s,l;return i.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.show,o=t.put,s=t.select,n.next=4,s(e=>e.layout);case 4:return l=n.sent,n.next=7,o({type:"save",payload:a()({},l,{showNav:"undefined"!==typeof r?r:!l.showNav})});case 7:case"end":return n.stop()}},n)})()}}}},"7tNx":function(e,t,n){"use strict";var r=n("7vYJ");e.exports=function(){var e=r(this),t="";return e.global&&(t+="g"),e.ignoreCase&&(t+="i"),e.multiline&&(t+="m"),e.unicode&&(t+="u"),e.sticky&&(t+="y"),t}},"7tlc":function(e,t,n){(function(e){var r=Object.getOwnPropertyDescriptors||function(e){for(var t=Object.keys(e),n={},r=0;r=o)return e;switch(e){case"%s":return String(r[n++]);case"%d":return Number(r[n++]);case"%j":try{return JSON.stringify(r[n++])}catch(e){return"[Circular]"}default:return e}}),l=r[n];n=3&&(r.depth=arguments[2]),arguments.length>=4&&(r.colors=arguments[3]),y(n)?r.showHidden=n:n&&t._extend(r,n),S(r.showHidden)&&(r.showHidden=!1),S(r.depth)&&(r.depth=2),S(r.colors)&&(r.colors=!1),S(r.customInspect)&&(r.customInspect=!0),r.colors&&(r.stylize=l),h(r,e,r.depth)}function l(e,t){var n=s.styles[t];return n?"\x1b["+s.colors[n][0]+"m"+e+"\x1b["+s.colors[n][1]+"m":e}function c(e,t){return e}function u(e){var t={};return e.forEach(function(e,n){t[e]=!0}),t}function h(e,n,r){if(e.customInspect&&n&&A(n.inspect)&&n.inspect!==t.inspect&&(!n.constructor||n.constructor.prototype!==n)){var i=n.inspect(r,e);return _(i)||(i=h(e,i,r)),i}var o=d(e,n);if(o)return o;var a=Object.keys(n),s=u(a);if(e.showHidden&&(a=Object.getOwnPropertyNames(n)),T(n)&&(a.indexOf("message")>=0||a.indexOf("description")>=0))return f(n);if(0===a.length){if(A(n)){var l=n.name?": "+n.name:"";return e.stylize("[Function"+l+"]","special")}if(E(n))return e.stylize(RegExp.prototype.toString.call(n),"regexp");if(O(n))return e.stylize(Date.prototype.toString.call(n),"date");if(T(n))return f(n)}var c,y="",b=!1,w=["{","}"];if(v(n)&&(b=!0,w=["[","]"]),A(n)){var x=n.name?": "+n.name:"";y=" [Function"+x+"]"}return E(n)&&(y=" "+RegExp.prototype.toString.call(n)),O(n)&&(y=" "+Date.prototype.toUTCString.call(n)),T(n)&&(y=" "+f(n)),0!==a.length||b&&0!=n.length?r<0?E(n)?e.stylize(RegExp.prototype.toString.call(n),"regexp"):e.stylize("[Object]","special"):(e.seen.push(n),c=b?p(e,n,r,s,a):a.map(function(t){return m(e,n,r,s,t,b)}),e.seen.pop(),g(c,y,w)):w[0]+y+w[1]}function d(e,t){if(S(t))return e.stylize("undefined","undefined");if(_(t)){var n="'"+JSON.stringify(t).replace(/^"|"$/g,"").replace(/'/g,"\\'").replace(/\\"/g,'"')+"'";return e.stylize(n,"string")}return x(t)?e.stylize(""+t,"number"):y(t)?e.stylize(""+t,"boolean"):b(t)?e.stylize("null","null"):void 0}function f(e){return"["+Error.prototype.toString.call(e)+"]"}function p(e,t,n,r,i){for(var o=[],a=0,s=t.length;a-1&&(s=o?s.split("\n").map(function(e){return" "+e}).join("\n").substr(2):"\n"+s.split("\n").map(function(e){return" "+e}).join("\n"))):s=e.stylize("[Circular]","special")),S(a)){if(o&&i.match(/^\d+$/))return s;a=JSON.stringify(""+i),a.match(/^"([a-zA-Z_][a-zA-Z_0-9]*)"$/)?(a=a.substr(1,a.length-2),a=e.stylize(a,"name")):(a=a.replace(/'/g,"\\'").replace(/\\"/g,'"').replace(/(^"|"$)/g,"'"),a=e.stylize(a,"string"))}return a+": "+s}function g(e,t,n){var r=e.reduce(function(e,t){return 0,t.indexOf("\n")>=0&&0,e+t.replace(/\u001b\[\d\d?m/g,"").length+1},0);return r>60?n[0]+(""===t?"":t+"\n ")+" "+e.join(",\n ")+" "+n[1]:n[0]+t+" "+e.join(", ")+" "+n[1]}function v(e){return Array.isArray(e)}function y(e){return"boolean"===typeof e}function b(e){return null===e}function w(e){return null==e}function x(e){return"number"===typeof e}function _(e){return"string"===typeof e}function C(e){return"symbol"===typeof e}function S(e){return void 0===e}function E(e){return k(e)&&"[object RegExp]"===P(e)}function k(e){return"object"===typeof e&&null!==e}function O(e){return k(e)&&"[object Date]"===P(e)}function T(e){return k(e)&&("[object Error]"===P(e)||e instanceof Error)}function A(e){return"function"===typeof e}function M(e){return null===e||"boolean"===typeof e||"number"===typeof e||"string"===typeof e||"symbol"===typeof e||"undefined"===typeof e}function P(e){return Object.prototype.toString.call(e)}function R(e){return e<10?"0"+e.toString(10):e.toString(10)}t.debuglog=function(n){if(S(o)&&(o=Object({NODE_ENV:"production"}).NODE_DEBUG||""),n=n.toUpperCase(),!a[n])if(new RegExp("\\b"+n+"\\b","i").test(o)){var r=e.pid;a[n]=function(){var e=t.format.apply(t,arguments);console.error("%s %d: %s",n,r,e)}}else a[n]=function(){};return a[n]},t.inspect=s,s.colors={bold:[1,22],italic:[3,23],underline:[4,24],inverse:[7,27],white:[37,39],grey:[90,39],black:[30,39],blue:[34,39],cyan:[36,39],green:[32,39],magenta:[35,39],red:[31,39],yellow:[33,39]},s.styles={special:"cyan",number:"yellow",boolean:"yellow",undefined:"grey",null:"bold",string:"green",date:"magenta",regexp:"red"},t.isArray=v,t.isBoolean=y,t.isNull=b,t.isNullOrUndefined=w,t.isNumber=x,t.isString=_,t.isSymbol=C,t.isUndefined=S,t.isRegExp=E,t.isObject=k,t.isDate=O,t.isError=T,t.isFunction=A,t.isPrimitive=M,t.isBuffer=n("j/1Z");var L=["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"];function D(){var e=new Date,t=[R(e.getHours()),R(e.getMinutes()),R(e.getSeconds())].join(":");return[e.getDate(),L[e.getMonth()],t].join(" ")}function j(e,t){return Object.prototype.hasOwnProperty.call(e,t)}t.log=function(){console.log("%s - %s",D(),t.format.apply(t,arguments))},t.inherits=n("FfBw"),t._extend=function(e,t){if(!t||!k(t))return e;var n=Object.keys(t),r=n.length;while(r--)e[n[r]]=t[n[r]];return e};var N="undefined"!==typeof Symbol?Symbol("util.promisify.custom"):void 0;function I(e,t){if(!e){var n=new Error("Promise was rejected with a falsy value");n.reason=e,e=n}return t(e)}function $(t){if("function"!==typeof t)throw new TypeError('The "original" argument must be of type Function');function n(){for(var n=[],r=0;r0)g=l(e,t,p,o(p.length),g,h-1)-1;else{if(g>=9007199254740991)throw TypeError();e[g]=p}g++}v++}return g}e.exports=l},"8Z/V":function(e,t,n){e.exports=!n("wUWy")(function(){return 7!=Object.defineProperty({},"a",{get:function(){return 7}}).a})},"8ifW":function(e,t,n){"use strict";(function(e){var r=n("q1tI"),i=n.n(r),o=n("1EPD"),a=n("17x9"),s=n.n(a),l=1073741823,c="undefined"!==typeof globalThis?globalThis:"undefined"!==typeof window?window:"undefined"!==typeof e?e:{};function u(){var e="__global_unique_id__";return c[e]=(c[e]||0)+1}function h(e,t){return e===t?0!==e||1/e===1/t:e!==e&&t!==t}function d(e){var t=[];return{on:function(e){t.push(e)},off:function(e){t=t.filter(function(t){return t!==e})},get:function(){return e},set:function(n,r){e=n,t.forEach(function(t){return t(e,r)})}}}function f(e){return Array.isArray(e)?e[0]:e}function p(e,t){var n,i,a="__create-react-context-"+u()+"__",c=function(e){function n(){var t;return t=e.apply(this,arguments)||this,t.emitter=d(t.props.value),t}Object(o["a"])(n,e);var r=n.prototype;return r.getChildContext=function(){var e;return e={},e[a]=this.emitter,e},r.componentWillReceiveProps=function(e){if(this.props.value!==e.value){var n,r=this.props.value,i=e.value;h(r,i)?n=0:(n="function"===typeof t?t(r,i):l,n|=0,0!==n&&this.emitter.set(e.value,n))}},r.render=function(){return this.props.children},n}(r["Component"]);c.childContextTypes=(n={},n[a]=s.a.object.isRequired,n);var p=function(t){function n(){var e;return e=t.apply(this,arguments)||this,e.state={value:e.getValue()},e.onUpdate=function(t,n){var r=0|e.observedBits;0!==(r&n)&&e.setState({value:e.getValue()})},e}Object(o["a"])(n,t);var r=n.prototype;return r.componentWillReceiveProps=function(e){var t=e.observedBits;this.observedBits=void 0===t||null===t?l:t},r.componentDidMount=function(){this.context[a]&&this.context[a].on(this.onUpdate);var e=this.props.observedBits;this.observedBits=void 0===e||null===e?l:e},r.componentWillUnmount=function(){this.context[a]&&this.context[a].off(this.onUpdate)},r.getValue=function(){return this.context[a]?this.context[a].get():e},r.render=function(){return f(this.props.children)(this.state.value)},n}(r["Component"]);return p.contextTypes=(i={},i[a]=s.a.object,i),{Provider:c,Consumer:p}}var m=i.a.createContext||p;t["a"]=m}).call(this,n("yLpj"))},"8jRI":function(e,t,n){"use strict";var r="%[a-f0-9]{2}",i=new RegExp(r,"gi"),o=new RegExp("("+r+")+","gi");function a(e,t){try{return decodeURIComponent(e.join(""))}catch(e){}if(1===e.length)return e;t=t||1;var n=e.slice(0,t),r=e.slice(t);return Array.prototype.concat.call([],a(n),a(r))}function s(e){try{return decodeURIComponent(e)}catch(r){for(var t=e.match(i),n=1;n=n&&(e.updateKey=a[0].updateKey||a[0].key,a.shift()),a.push(e)),{notices:a}})},r.remove=function(e){r.setState(function(t){return{notices:t.notices.filter(function(t){return t.key!==e})}})},i=n,p()(r,i)}return g()(t,e),d()(t,[{key:"getTransitionName",value:function(){var e=this.props,t=e.transitionName;return!t&&e.animation&&(t=e.prefixCls+"-"+e.animation),t}},{key:"render",value:function(){var e,t=this,n=this.props,r=this.state.notices,i=r.map(function(e,i){var o=Boolean(i===r.length-1&&e.updateKey),a=e.updateKey?e.updateKey:e.key,s=Object(S["a"])(t.remove.bind(t,e.key),e.onClose);return y.a.createElement(T,l()({prefixCls:n.prefixCls},e,{key:a,update:o,onClose:s,onClick:e.onClick,closeIcon:n.closeIcon}),e.content)}),o=(e={},a()(e,n.prefixCls,1),a()(e,n.className,!!n.className),e);return y.a.createElement("div",{className:k()(o),style:n.style},y.a.createElement(C["a"],{transitionName:this.getTransitionName()},i))}}]),t}(v["Component"]);R.propTypes={prefixCls:w.a.string,transitionName:w.a.string,animation:w.a.oneOfType([w.a.string,w.a.object]),style:w.a.object,maxCount:w.a.number,closeIcon:w.a.node},R.defaultProps={prefixCls:"rc-notification",animation:"fade",style:{top:65,left:"50%"}},R.newInstance=function(e,t){var n=e||{},r=n.getContainer,o=i()(n,["getContainer"]),a=document.createElement("div");if(r){var s=r();s.appendChild(a)}else document.body.appendChild(a);var c=!1;function u(e){c||(c=!0,t({notice:function(t){e.add(t)},removeNotice:function(t){e.remove(t)},component:e,destroy:function(){_.a.unmountComponentAtNode(a),a.parentNode.removeChild(a)}}))}_.a.render(y.a.createElement(R,l()({},o,{ref:u})),a)};var L=R;t["a"]=L},"8zNj":function(e,t,n){"use strict";n("2qtc");var r=n("kLXV"),i=(n("5NDa"),n("5rEg")),o=(n("Pwec"),n("CtXQ")),a=n("p0pE"),s=n.n(a),l=n("q1tI"),c=n.n(l),u=(n("Bl7J"),n("/MKj"));class h extends c.a.Component{constructor(e){super(e),this.state={submit:s()({},this.props.record),visible:!1}}save(){var e=s()({},this.state.submit);this.props.dispatch({type:"serverGroup/save",params:e,callback:()=>{this.setState({visible:!1})}})}render(){var e=this.props.serverGroup.fetchLoading;return c.a.createElement(c.a.Fragment,null,c.a.cloneElement(this.props.children,{onClick:()=>this.setState({visible:!0})}),c.a.createElement(r["a"],{title:"".concat(this.state.submit.id?"\u7f16\u8f91\u7ec4":"\u521b\u5efa\u7ec4"),visible:this.state.visible,onCancel:()=>this.setState({visible:!1}),onOk:()=>e||this.save(),okText:e?c.a.createElement(o["a"],{type:"loading"}):"\u63d0\u4ea4",cancelText:"\u53d6\u6d88"},c.a.createElement("div",null,c.a.createElement("div",{className:"form-group"},c.a.createElement("label",{for:"example-text-input-alt"},"\u7ec4\u540d"),c.a.createElement(i["a"],{placeholder:"\u8bf7\u8f93\u5165\u7ec4\u540d",value:this.state.submit.name,onChange:e=>{this.setState({submit:s()({},this.state.submit,{name:e.target.value})})}})))))}}t["a"]=Object(u["c"])(e=>{var t=e.serverGroup;return{serverGroup:t}})(h)},"93I4":function(e,t){e.exports=function(e){return"object"===typeof e?null!==e:"function"===typeof e}},"9Do8":function(e,t,n){"use strict";e.exports=n("zt9T")},"9HFh":function(e,t,n){var r=n("xJie"),i=n("WFJy").concat("length","prototype");t.f=Object.getOwnPropertyNames||function(e){return r(e,i)}},"9R94":function(e,t,n){"use strict";var r=!0,i="Invariant failed";function o(e,t){if(!e){if(r)throw new Error(i);throw new Error(i+": "+(t||""))}}t["a"]=o},"9WFV":function(e,t,n){var r=n("2we2");e.exports=Object("z").propertyIsEnumerable(0)?Object:function(e){return"String"==r(e)?e.split(""):Object(e)}},"9lTW":function(e,t,n){"use strict";(function(t){function r(e,t){if(e===t)return 0;for(var n=e.length,r=t.length,i=0,o=Math.min(n,r);i=0;c--)if(u[c]!==h[c])return!1;for(c=u.length-1;c>=0;c--)if(l=u[c],!b(e[l],t[l],n,r))return!1;return!0}function _(e,t,n){b(e,t,!0)&&v(e,t,n,"notDeepStrictEqual",_)}function C(e,t){if(!e||!t)return!1;if("[object RegExp]"==Object.prototype.toString.call(t))return t.test(e);try{if(e instanceof t)return!0}catch(e){}return!Error.isPrototypeOf(t)&&!0===t.call({},e)}function S(e){var t;try{e()}catch(e){t=e}return t}function E(e,t,n,r){var i;if("function"!==typeof t)throw new TypeError('"block" argument must be a function');"string"===typeof n&&(r=n,n=null),i=S(t),r=(n&&n.name?" ("+n.name+").":".")+(r?" "+r:"."),e&&!i&&v(i,n,"Missing expected exception"+r);var a="string"===typeof r,s=!e&&o.isError(i),l=!e&&i&&!n;if((s&&a&&C(i,n)||l)&&v(i,n,"Got unwanted exception"+r),e&&i&&n&&!C(i,n)||!e&&i)throw i}h.AssertionError=function(e){this.name="AssertionError",this.actual=e.actual,this.expected=e.expected,this.operator=e.operator,e.message?(this.message=e.message,this.generatedMessage=!1):(this.message=g(this),this.generatedMessage=!0);var t=e.stackStartFunction||v;if(Error.captureStackTrace)Error.captureStackTrace(this,t);else{var n=new Error;if(n.stack){var r=n.stack,i=f(t),o=r.indexOf("\n"+i);if(o>=0){var a=r.indexOf("\n",o+1);r=r.substring(a+1)}this.stack=r}}},o.inherits(h.AssertionError,Error),h.fail=v,h.ok=y,h.equal=function(e,t,n){e!=t&&v(e,t,n,"==",h.equal)},h.notEqual=function(e,t,n){e==t&&v(e,t,n,"!=",h.notEqual)},h.deepEqual=function(e,t,n){b(e,t,!1)||v(e,t,n,"deepEqual",h.deepEqual)},h.deepStrictEqual=function(e,t,n){b(e,t,!0)||v(e,t,n,"deepStrictEqual",h.deepStrictEqual)},h.notDeepEqual=function(e,t,n){b(e,t,!1)&&v(e,t,n,"notDeepEqual",h.notDeepEqual)},h.notDeepStrictEqual=_,h.strictEqual=function(e,t,n){e!==t&&v(e,t,n,"===",h.strictEqual)},h.notStrictEqual=function(e,t,n){e===t&&v(e,t,n,"!==",h.notStrictEqual)},h.throws=function(e,t,n){E(!0,e,t,n)},h.doesNotThrow=function(e,t,n){E(!1,e,t,n)},h.ifError=function(e){if(e)throw e};var k=Object.keys||function(e){var t=[];for(var n in e)a.call(e,n)&&t.push(n);return t}}).call(this,n("yLpj"))},"9nSz":function(e,t,n){"use strict";var r=n("WGNW"),i=n("Y/ne"),o=n("08Qx"),a=/Version\/10\.\d+(\.\d+)?( Mobile\/\w+)? Safari\//.test(o);r(r.P+r.F*a,"String",{padStart:function(e){return i(this,e,arguments.length>1?arguments[1]:void 0,!0)}})},A22h:function(e,t){e.exports=Object.is||function(e,t){return e===t?0!==e||1/e===1/t:e!=e&&t!=t}},A5Xg:function(e,t,n){var r=n("NsO/"),i=n("ar/p").f,o={}.toString,a="object"==typeof window&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[],s=function(e){try{return i(e)}catch(e){return a.slice()}};e.exports.f=function(e){return a&&"[object Window]"==o.call(e)?s(e):i(r(e))}},"A7R+":function(e,t,n){e.exports=!n("8Z/V")&&!n("wUWy")(function(){return 7!=Object.defineProperty(n("SfDG")("div"),"a",{get:function(){return 7}}).a})},AHJs:function(e,t,n){"use strict";function r(e){"@babel/helpers - typeof";return r="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},r(e)}function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&a(e,t)}function a(e,t){return a=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},a(e,t)}function s(e){return function(){var t,n=h(e);if(u()){var r=h(this).constructor;t=Reflect.construct(n,arguments,r)}else t=n.apply(this,arguments);return l(this,t)}}function l(e,t){return!t||"object"!==r(t)&&"function"!==typeof t?c(e):t}function c(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function u(){if("undefined"===typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"===typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],function(){})),!0}catch(e){return!1}}function h(e){return h=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)},h(e)}var d=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)Object.hasOwnProperty.call(e,n)&&(t[n]=e[n]);return t["default"]=e,t};Object.defineProperty(t,"__esModule",{value:!0});var f=d(n("q1tI")),p=function(e){o(n,e);var t=s(n);function n(){return i(this,n),t.apply(this,arguments)}return n}(f.Component);t.default=p,p.isTableColumnGroup=!0},AMgb:function(e,t,n){e.exports=n("j/9B").default},ANjH:function(e,t,n){"use strict";n.d(t,"a",function(){return v}),n.d(t,"b",function(){return d}),n.d(t,"c",function(){return u}),n.d(t,"d",function(){return g}),n.d(t,"e",function(){return s});var r=n("bCCX"),i=function(){return Math.random().toString(36).substring(7).split("").join(".")},o={INIT:"@@redux/INIT"+i(),REPLACE:"@@redux/REPLACE"+i(),PROBE_UNKNOWN_ACTION:function(){return"@@redux/PROBE_UNKNOWN_ACTION"+i()}};function a(e){if("object"!==typeof e||null===e)return!1;var t=e;while(null!==Object.getPrototypeOf(t))t=Object.getPrototypeOf(t);return Object.getPrototypeOf(e)===t}function s(e,t,n){var i;if("function"===typeof t&&"function"===typeof n||"function"===typeof n&&"function"===typeof arguments[3])throw new Error("It looks like you are passing several store enhancers to createStore(). This is not supported. Instead, compose them together to a single function.");if("function"===typeof t&&"undefined"===typeof n&&(n=t,t=void 0),"undefined"!==typeof n){if("function"!==typeof n)throw new Error("Expected the enhancer to be a function.");return n(s)(e,t)}if("function"!==typeof e)throw new Error("Expected the reducer to be a function.");var l=e,c=t,u=[],h=u,d=!1;function f(){h===u&&(h=u.slice())}function p(){if(d)throw new Error("You may not call store.getState() while the reducer is executing. The reducer has already received the state as an argument. Pass it down from the top reducer instead of reading it from the store.");return c}function m(e){if("function"!==typeof e)throw new Error("Expected the listener to be a function.");if(d)throw new Error("You may not call store.subscribe() while the reducer is executing. If you would like to be notified after the store has been updated, subscribe from a component and invoke store.getState() in the callback to access the latest state. See https://redux.js.org/api-reference/store#subscribelistener for more details.");var t=!0;return f(),h.push(e),function(){if(t){if(d)throw new Error("You may not unsubscribe from a store listener while the reducer is executing. See https://redux.js.org/api-reference/store#subscribelistener for more details.");t=!1,f();var n=h.indexOf(e);h.splice(n,1),u=null}}}function g(e){if(!a(e))throw new Error("Actions must be plain objects. Use custom middleware for async actions.");if("undefined"===typeof e.type)throw new Error('Actions may not have an undefined "type" property. Have you misspelled a constant?');if(d)throw new Error("Reducers may not dispatch actions.");try{d=!0,c=l(c,e)}finally{d=!1}for(var t=u=h,n=0;n2&&void 0!==arguments[2]&&arguments[2];return{type:r,payload:{location:e,action:t,isFirstRendering:n}}},o="@@router/CALL_HISTORY_METHOD",a=function(e){return function(){for(var t=arguments.length,n=new Array(t),r=0;r0?r:n)(e)}},AUvm:function(e,t,n){"use strict";var r=n("5T2Y"),i=n("B+OT"),o=n("jmDH"),a=n("Y7ZC"),s=n("kTiW"),l=n("6/1s").KEY,c=n("KUxP"),u=n("29s/"),h=n("RfKB"),d=n("YqAc"),f=n("UWiX"),p=n("zLkG"),m=n("Zxgi"),g=n("R+7+"),v=n("kAMH"),y=n("5K7Z"),b=n("93I4"),w=n("JB68"),x=n("NsO/"),_=n("G8Mo"),C=n("rr1i"),S=n("oVml"),E=n("A5Xg"),k=n("vwuL"),O=n("mqlF"),T=n("2faE"),A=n("w6GO"),M=k.f,P=T.f,R=E.f,L=r.Symbol,D=r.JSON,j=D&&D.stringify,N="prototype",I=f("_hidden"),$=f("toPrimitive"),F={}.propertyIsEnumerable,V=u("symbol-registry"),B=u("symbols"),W=u("op-symbols"),H=Object[N],z="function"==typeof L&&!!O.f,U=r.QObject,q=!U||!U[N]||!U[N].findChild,K=o&&c(function(){return 7!=S(P({},"a",{get:function(){return P(this,"a",{value:7}).a}})).a})?function(e,t,n){var r=M(H,t);r&&delete H[t],P(e,t,n),r&&e!==H&&P(H,t,r)}:P,G=function(e){var t=B[e]=S(L[N]);return t._k=e,t},Y=z&&"symbol"==typeof L.iterator?function(e){return"symbol"==typeof e}:function(e){return e instanceof L},X=function(e,t,n){return e===H&&X(W,t,n),y(e),t=_(t,!0),y(n),i(B,t)?(n.enumerable?(i(e,I)&&e[I][t]&&(e[I][t]=!1),n=S(n,{enumerable:C(0,!1)})):(i(e,I)||P(e,I,C(1,{})),e[I][t]=!0),K(e,t,n)):P(e,t,n)},Q=function(e,t){y(e);var n,r=g(t=x(t)),i=0,o=r.length;while(o>i)X(e,n=r[i++],t[n]);return e},Z=function(e,t){return void 0===t?S(e):Q(S(e),t)},J=function(e){var t=F.call(this,e=_(e,!0));return!(this===H&&i(B,e)&&!i(W,e))&&(!(t||!i(this,e)||!i(B,e)||i(this,I)&&this[I][e])||t)},ee=function(e,t){if(e=x(e),t=_(t,!0),e!==H||!i(B,t)||i(W,t)){var n=M(e,t);return!n||!i(B,t)||i(e,I)&&e[I][t]||(n.enumerable=!0),n}},te=function(e){var t,n=R(x(e)),r=[],o=0;while(n.length>o)i(B,t=n[o++])||t==I||t==l||r.push(t);return r},ne=function(e){var t,n=e===H,r=R(n?W:x(e)),o=[],a=0;while(r.length>a)!i(B,t=r[a++])||n&&!i(H,t)||o.push(B[t]);return o};z||(L=function(){if(this instanceof L)throw TypeError("Symbol is not a constructor!");var e=d(arguments.length>0?arguments[0]:void 0),t=function(n){this===H&&t.call(W,n),i(this,I)&&i(this[I],e)&&(this[I][e]=!1),K(this,e,C(1,n))};return o&&q&&K(H,e,{configurable:!0,set:t}),G(e)},s(L[N],"toString",function(){return this._k}),k.f=ee,T.f=X,n("ar/p").f=E.f=te,n("NV0k").f=J,O.f=ne,o&&!n("uOPS")&&s(H,"propertyIsEnumerable",J,!0),p.f=function(e){return G(f(e))}),a(a.G+a.W+a.F*!z,{Symbol:L});for(var re="hasInstance,isConcatSpreadable,iterator,match,replace,search,species,split,toPrimitive,toStringTag,unscopables".split(","),ie=0;re.length>ie;)f(re[ie++]);for(var oe=A(f.store),ae=0;oe.length>ae;)m(oe[ae++]);a(a.S+a.F*!z,"Symbol",{for:function(e){return i(V,e+="")?V[e]:V[e]=L(e)},keyFor:function(e){if(!Y(e))throw TypeError(e+" is not a symbol!");for(var t in V)if(V[t]===e)return t},useSetter:function(){q=!0},useSimple:function(){q=!1}}),a(a.S+a.F*!z,"Object",{create:Z,defineProperty:X,defineProperties:Q,getOwnPropertyDescriptor:ee,getOwnPropertyNames:te,getOwnPropertySymbols:ne});var se=c(function(){O.f(1)});a(a.S+a.F*se,"Object",{getOwnPropertySymbols:function(e){return O.f(w(e))}}),D&&a(a.S+a.F*(!z||c(function(){var e=L();return"[null]"!=j([e])||"{}"!=j({a:e})||"{}"!=j(Object(e))})),"JSON",{stringify:function(e){var t,n,r=[e],i=1;while(arguments.length>i)r.push(arguments[i++]);if(n=t=r[1],(b(t)||void 0!==e)&&!Y(e))return v(t)||(t=function(e,t){if("function"==typeof n&&(t=n.call(this,e,t)),!Y(t))return t}),r[1]=t,j.apply(D,r)}}),L[N][$]||n("NegM")(L[N],$,L[N].valueOf),h(L,"Symbol"),h(Math,"Math",!0),h(r.JSON,"JSON",!0)},AyUB:function(e,t,n){e.exports={default:n("3GJH"),__esModule:!0}},"B+OT":function(e,t){var n={}.hasOwnProperty;e.exports=function(e,t){return n.call(e,t)}},B6Jk:function(e,t,n){},B9Yq:function(e,t){e.exports=function(){throw new Error("define cannot be used indirect")}},BC81:function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=function(){return null};t.default=r},BFt8:function(e,t,n){var r=n("oxo0"),i=n("il4q"),o=n("J57/")("IE_PROTO"),a=Object.prototype;e.exports=Object.getPrototypeOf||function(e){return e=i(e),r(e,o)?e[o]:"function"==typeof e.constructor&&e instanceof e.constructor?e.constructor.prototype:e instanceof Object?a:null}},"BGR+":function(e,t,n){"use strict";var r=n("QbLZ"),i=n.n(r);function o(e,t){for(var n=i()({},e),r=0;r=r)t|=1&e,e>>=1;return e+t}function a(e,t,n,r){var i=t+1;if(i===n)return 1;if(r(e[i++],e[t])<0){while(i=0)i++;return i-t}function s(e,t,n){n--;while(t>>1,i(a,e[o])<0?l=o:s=o+1;var c=r-s;switch(c){case 3:e[s+3]=e[s+2];case 2:e[s+2]=e[s+1];case 1:e[s+1]=e[s];break;default:while(c>0)e[s+c]=e[s+c-1],c--}e[s]=a}}function c(e,t,n,r,i,o){var a=0,s=0,l=1;if(o(e,t[n+i])>0){s=r-i;while(l0)a=l,l=1+(l<<1),l<=0&&(l=s);l>s&&(l=s),a+=i,l+=i}else{s=i+1;while(ls&&(l=s);var c=a;a=i-l,l=i-c}a++;while(a>>1);o(e,t[n+u])>0?a=u+1:l=u}return l}function u(e,t,n,r,i,o){var a=0,s=0,l=1;if(o(e,t[n+i])<0){s=i+1;while(ls&&(l=s);var c=a;a=i-l,l=i-c}else{s=r-i;while(l=0)a=l,l=1+(l<<1),l<=0&&(l=s);l>s&&(l=s),a+=i,l+=i}a++;while(a>>1);o(e,t[n+u])<0?l=u:a=u+1}return l}function h(e,t){var n,r,o=i,a=0,s=0;a=e.length;var l=[];function h(e,t){n[s]=e,r[s]=t,s+=1}function d(){while(s>1){var e=s-2;if(e>=1&&r[e-1]<=r[e]+r[e+1]||e>=2&&r[e-2]<=r[e]+r[e-1])r[e-1]r[e+1])break;p(e)}}function f(){while(s>1){var e=s-2;e>0&&r[e-1]=i||g>=i);if(v)break;y<0&&(y=0),y+=2}if(o=y,o<1&&(o=1),1===r){for(h=0;h=0;h--)e[g+h]=e[m+h];if(0===r){w=!0;break}}if(e[p--]=l[f--],1===--s){w=!0;break}if(b=s-c(e[d],l,0,s,s-1,t),0!==b){for(p-=b,f-=b,s-=b,g=p+1,m=f+1,h=0;h=i||b>=i);if(w)break;v<0&&(v=0),v+=2}if(o=v,o<1&&(o=1),1===s){for(p-=r,d-=r,g=p+1,m=d+1,h=r-1;h>=0;h--)e[g+h]=e[m+h];e[p]=l[f]}else{if(0===s)throw new Error;for(m=p-(s-1),h=0;h=0;h--)e[g+h]=e[m+h];e[p]=l[f]}else for(m=p-(s-1),h=0;hd&&(f=d),l(e,n,n+f,n+c,t),c=f}u.pushRun(n,c),u.mergeRuns(),s-=c,n+=c}while(0!==s);u.forceMergeRuns()}}},BjZs:function(e,t,n){"use strict";function r(e){return s(e)||a(e)||o(e)||i()}function i(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function o(e,t){if(e){if("string"===typeof e)return l(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(n):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?l(e,t):void 0}}function a(e){if("undefined"!==typeof Symbol&&Symbol.iterator in Object(e))return Array.from(e)}function s(e){if(Array.isArray(e))return l(e)}function l(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n1&&void 0!==arguments[1]?arguments[1]:0,r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},i=arguments.length>3&&void 0!==arguments[3]?arguments[3]:[];i[n]=i[n]||[];var o=[],a=function(e){var t=i.length-n;e&&!e.children&&t>1&&(!e.rowSpan||e.rowSpan0?(c.children=e(c.children,n+1,c,i),r.colSpan+=c.colSpan):r.colSpan+=1;for(var h=0;h{s.a.push(n),this.props.dispatch({type:"layout/showNav",show:!1})}},r&&r,o.a.createElement("span",{className:"nav-main-link-name"},t)));case"href":return o.a.createElement("li",{key:Math.random(),className:"nav-main-item"},o.a.createElement("a",{className:"nav-main-link",target:"_blank",href:n},r&&r,o.a.createElement("span",{className:"nav-main-link-name"},t)))}}isAdmin(){return-1!==this.props.location.pathname.indexOf("admin")}render(){return o.a.createElement("nav",{id:"sidebar"},o.a.createElement("div",{className:"smini-hidden bg-header-dark"},o.a.createElement("div",{className:"content-header justify-content-lg-center bg-black-10"},o.a.createElement("a",{className:"link-fx font-size-lg text-white",href:"/"},o.a.createElement("span",{className:"text-white-75"},window.settings.title?window.settings.title:"V2Board")),o.a.createElement("div",{className:"d-lg-none"},o.a.createElement("a",{className:"text-white ml-2","data-toggle":"layout","data-action":"sidebar_close",href:"javascript:void(0);",onClick:()=>this.props.dispatch({type:"layout/showNav"})},o.a.createElement("i",{className:"fa fa-times-circle"}))))),o.a.createElement("div",{className:"content-side content-side-full"},o.a.createElement("ul",{className:"nav-main"},this.state.nav.map(e=>{return this.renderMenu(e.type,e.title,e.href,e.icon)}))),o.a.createElement("div",{className:"v2board-copyright"},window.settings.title?window.settings.title:"V2Board"," v1.5.4"))}}var h=Object(l["c"])(e=>{var t=e.layout;return{layout:t}})(u),d=n("t3Un"),f=n("nDCI"),p=n("yWgo"),m=window.settings.theme;class g extends o.a.Component{constructor(e){super(e),this.state={showAvatarMenu:!1,showSearchBar:!1}}componentDidMount(){var e=this.props.user.userInfo;e.email||this.props.dispatch({type:"user/getUserInfo"})}showAvatarMenu(){var e=this;this.setState({showAvatarMenu:!this.state.showAvatarMenu},()=>{document.onclick=function(t){e.state.showAvatarMenu&&e.setState({showAvatarMenu:!1}),document.onclick=void 0}})}logout(){Object(d["a"])("/user/logout").then(e=>{s.a.push("/login")})}darkMode(){"1"===Object(p["b"])("dark_mode")?(Object(f["disable"])(),Object(p["d"])("dark_mode",0)):(Object(f["enable"])({brightness:100,contrast:90,sepia:10}),Object(p["d"])("dark_mode",1)),this.forceUpdate()}render(){var e=this.props.user.userInfo;return o.a.createElement("header",{id:"page-header"},o.a.createElement("div",{className:"content-header",style:{maxWidth:"unset"}},o.a.createElement("div",{className:"sidebar-toggle",style:{display:this.props.search?"block":"none"}},o.a.createElement("button",{type:"button",className:"dark"===m.header?"btn btn-primary mr-1 d-lg-none":"btn mr-1 d-lg-none",onClick:()=>this.props.dispatch({type:"layout/showNav"})},o.a.createElement("i",{className:"fa fa-fw fa-bars"})),this.props.search&&o.a.createElement("button",{type:"button",className:"dark"===m.header?"btn btn-primary":"btn",onClick:()=>{this.setState({showSearchBar:!0})}},o.a.createElement("i",{className:"fa fa-fw fa-search"})," ",o.a.createElement("span",{className:"ml-1 d-none d-sm-inline-block"},"\u641c\u7d22"))),o.a.createElement("div",{className:"dark"===m.header?"v2board-container-title text-white":"v2board-container-title text-black"},this.props.title),o.a.createElement("div",null,o.a.createElement("div",{className:"dropdown d-inline-block"},o.a.createElement("button",{type:"button",className:"dark"===m.header?"btn btn-primary mr-1":"btn mr-1",onClick:()=>this.darkMode()},"1"===Object(p["b"])("dark_mode")?o.a.createElement("i",{className:"far fa fa-moon"}):o.a.createElement("i",{className:"far fa fa-sun"}))),this.state.loading?o.a.createElement("div",{className:"spinner-grow text-primary"}):o.a.createElement("div",{className:"dropdown d-inline-block"},o.a.createElement("button",{type:"button",className:"dark"===m.header?"btn btn-primary":"btn",id:"page-header-user-dropdown","data-toggle":"dropdown","aria-haspopup":"true","aria-expanded":"false",onClick:()=>this.showAvatarMenu()},o.a.createElement("i",{className:"far fa fa-user-circle"}),o.a.createElement("span",{className:"d-none d-lg-inline ml-1"},e.email),o.a.createElement("i",{className:"fa fa-fw fa-angle-down ml-1"})),o.a.createElement("div",{className:"dropdown-menu dropdown-menu-right dropdown-menu-lg p-0 ".concat(this.state.showAvatarMenu&&"show"),"aria-labelledby":"page-header-user-dropdown"},o.a.createElement("div",{className:"p-2"},o.a.createElement("a",{className:"dropdown-item d-flex justify-content-between align-items-center",href:"javascript:void(0);",onClick:()=>this.logout()},"\u767b\u51fa",o.a.createElement("i",{className:"fa fa-fw fa-sign-out-alt text-danger ml-1"}))))))),this.props.search&&o.a.createElement("div",{className:"overlay-header bg-dark ".concat(this.state.showSearchBar?"show":"")},o.a.createElement("div",{className:"content-header bg-dark"},o.a.createElement("div",{className:"w-100"},o.a.createElement("div",{className:"input-group"},o.a.createElement("div",{className:"input-group-prepend"},o.a.createElement("button",{type:"button",className:"btn btn-dark",onClick:()=>{this.setState({showSearchBar:!1})}},o.a.createElement("i",{className:"fa fa-fw fa-times-circle"}))),o.a.createElement("input",{type:"text",className:"form-control border-0",placeholder:this.props.search.placeholder,onChange:e=>this.props.search.onChange(e.target.value),defaultValue:this.props.search.defaultValue}))))))}}var v=Object(l["c"])(e=>{var t=e.layout,n=e.user;return{layout:t,user:n}})(g);var y=n("+Gva"),b=window.settings.theme;class w extends o.a.Component{componentDidMount(){window.scrollTo(0,0)}render(){return o.a.createElement(r["a"],{locale:y["a"]},o.a.createElement("div",{id:"page-container",className:"sidebar-o ".concat("dark"===b.sidebar?"sidebar-dark":""," ").concat("dark"===b.header?"page-header-dark":""," side-scroll page-header-fixed main-content-boxed side-trans-enabled ").concat(this.props.layout.showNav&&"sidebar-o-xs")},o.a.createElement("div",{onClick:()=>this.props.dispatch({type:"layout/showNav"}),className:"v2board-nav-mask",style:{display:this.props.layout.showNav?"block":"none"}}),o.a.createElement(h,this.props),o.a.createElement(v,{search:this.props.search,title:this.props.title}),this.props.loading?o.a.createElement("main",{id:"main-container"},o.a.createElement("div",{className:"content content-full"},o.a.createElement("div",{className:"spinner-grow text-primary",role:"status"},o.a.createElement("span",{className:"sr-only"},"Loading...")))):o.a.createElement("main",{id:"main-container"},o.a.createElement("div",{className:"p-0 p-lg-4"},this.props.children))))}}t["a"]=Object(l["c"])(e=>{var t=e.layout;return{layout:t}})(w)},BlVb:function(e,t,n){"use strict";n.d(t,"a",function(){return a});var r=n("hyiK"),i=1e-8;function o(e,t){return Math.abs(e-t)=a)}}for(var d=this.__startIndex;d15)break}}n.prevElClipPaths&&c.restore()};if(d)if(0===d.length)s=l.__endIndex;else for(var w=f.dpr,x=0;x0&&e>r[0]){for(l=0;le)break;s=n[r[l]]}if(r.splice(l+1,0,e),n[e]=t,!t.virtual)if(s){var c=s.dom;c.nextSibling?a.insertBefore(t.dom,c.nextSibling):a.appendChild(t.dom)}else a.firstChild?a.insertBefore(t.dom,a.firstChild):a.appendChild(t.dom);t.__painter=this}else i["E"]("Layer of zlevel "+e+" is not valid")},e.prototype.eachLayer=function(e,t){for(var n=this._zlevelList,r=0;r0?w:0),this._needsManuallyCompositing),h.__builtin__||i["E"]("ZLevel "+c+" has been used by unkown layer "+h.id),h!==s&&(h.__used=!0,h.__startIndex!==a&&(h.__dirty=!0),h.__startIndex=a,h.incremental?h.__drawIndex=-1:h.__drawIndex=a,t(a),s=h),r.__dirty&u["a"]&&!r.__inHover&&(h.__dirty=!0,h.incremental&&h.__drawIndex<0&&(h.__drawIndex=a))}t(a),this.eachBuiltinLayer(function(e,t){!e.__used&&e.getElementCount()>0&&(e.__dirty=!0,e.__startIndex=e.__endIndex=e.__drawIndex=0),e.__dirty&&e.__drawIndex<0&&(e.__drawIndex=e.__startIndex)})},e.prototype.clear=function(){return this.eachBuiltinLayer(this._clearLayer),this},e.prototype._clearLayer=function(e){e.clear()},e.prototype.setBackgroundColor=function(e){this._backgroundColor=e,i["k"](this._layers,function(e){e.setUnpainted()})},e.prototype.configLayer=function(e,t){if(t){var n=this._layerConfig;n[e]?i["G"](n[e],t,!0):n[e]=t;for(var r=0;r.5?t:e}function d(e,t,n,r){for(var i=t.length,o=0;oa;if(s)r.length=a;else for(var l=o;l=2&&this.interpolable&&this.maxTime>0},e.prototype.getAdditiveTrack=function(){return this._additiveTrack},e.prototype.addKeyframe=function(e,t){e>=this.maxTime?this.maxTime=e:this._needsSort=!0;var n=this.keyframes,r=n.length;if(this.interpolable)if(Object(l["t"])(t)){var i=C(t);if(r>0&&this.arrDim!==i)return void(this.interpolable=!1);if(1===i&&"number"!==typeof t[0]||2===i&&"number"!==typeof t[0][0])return void(this.interpolable=!1);if(r>0){var o=n[r-1];this._isAllValueEqual&&(1===i&&v(t,o.value)||(this._isAllValueEqual=!1))}this.arrDim=i}else{if(this.arrDim>0)return void(this.interpolable=!1);if("string"===typeof t){var a=s["d"](t);a?(t=a,this.isValueColor=!0):this.interpolable=!1}else if("number"!==typeof t||isNaN(t))return void(this.interpolable=!1);if(this._isAllValueEqual&&r>0){o=n[r-1];this.isValueColor&&!v(o.value,t)?this._isAllValueEqual=!1:o.value!==t&&(this._isAllValueEqual=!1)}}var c={time:e,value:t,percent:0};return this.keyframes.push(c),c},e.prototype.prepare=function(e){var t=this.keyframes;this._needsSort&&t.sort(function(e,t){return e.time-t.time});for(var n=this.arrDim,r=t.length,i=t[r-1],o=0;o0&&o!==r-1&&g(t[o].value,i.value,n);if(e&&this.needsAnimate()&&e.needsAnimate()&&n===e.arrDim&&this.isValueColor===e.isValueColor&&!e._finished){this._additiveTrack=e;var a=t[0].value;for(o=0;o=0;n--)if(o[n].percent<=t)break;n=Math.min(n,a-2)}else{for(n=this._lastFrame;nt)break;n=Math.min(n-1,a-2)}var m=o[n+1],g=o[n];if(g&&m){this._lastFrame=n,this._lastFramePercent=t;var v=m.percent-g.percent;if(0!==v){var x=(t-g.percent)/v,C=r?this._additiveValue:c?S:e[s];if((l>0||c)&&!C&&(C=this._additiveValue=[]),this.useSpline){var E=o[n][i],k=o[0===n?n:n-1][i],O=o[n>a-2?a-1:n+1][i],T=o[n>a-3?a-1:n+2][i];if(l>0)1===l?b(C,k,E,O,T,x,x*x,x*x*x):w(C,k,E,O,T,x,x*x,x*x*x);else if(c)b(C,k,E,O,T,x,x*x,x*x*x),r||(e[s]=_(C));else{var A=void 0;A=this.interpolable?y(k,E,O,T,x,x*x,x*x*x):O,r?this._additiveValue=A:e[s]=A}}else if(l>0)1===l?d(C,g[i],m[i],x):f(C,g[i],m[i],x);else if(c)d(C,g[i],m[i],x),r||(e[s]=_(C));else{A=void 0;A=this.interpolable?u(g[i],m[i],x):h(g[i],m[i],x),r?this._additiveValue=A:e[s]=A}r&&this._addToTarget(e)}}}},e.prototype._addToTarget=function(e){var t=this.arrDim,n=this.propName,r=this._additiveValue;0===t?this.isValueColor?(s["d"](e[n],S),p(S,S,r,1),e[n]=_(S)):e[n]=e[n]+r:1===t?p(e[n],e[n],r,1):2===t&&m(e[n],e[n],r,1)},e}(),k=function(){function e(e,t,n){this._tracks={},this._trackKeys=[],this._delay=0,this._maxTime=0,this._paused=!1,this._started=0,this._clip=null,this._target=e,this._loop=t,t&&n?Object(l["E"])("Can' use additive animation on looped animation."):this._additiveAnimators=n}return e.prototype.getTarget=function(){return this._target},e.prototype.changeTarget=function(e){this._target=e},e.prototype.when=function(e,t){return this.whenWithKeys(e,t,Object(l["D"])(t))},e.prototype.whenWithKeys=function(e,t,n){for(var r=this._tracks,i=0;i0)){this._started=1;for(var n=this,r=[],i=0;i1){var a=o.pop();i.addKeyframe(a.time,e[r]),i.prepare(i.getAdditiveTrack())}}}},e}();t["b"]=k},BsWD:function(e,t,n){"use strict";n.d(t,"a",function(){return i});var r=n("a3WO");function i(e,t){if(e){if("string"===typeof e)return Object(r["a"])(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?Object(r["a"])(e,t):void 0}}},Bus3:function(e,t,n){n("Jaki")("Int8",1,function(e){return function(t,n,r){return e(this,t,n,r)}})},Bz7s:function(e,t,n){n("8Z/V")&&"g"!=/./g.flags&&n("V5/1").f(RegExp.prototype,"flags",{configurable:!0,get:n("7tNx")})},CTsd:function(e,t,n){var r=n("OeOC"),i=n("9HFh").f,o={}.toString,a="object"==typeof window&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[],s=function(e){try{return i(e)}catch(e){return a.slice()}};e.exports.f=function(e){return a&&"[object Window]"==o.call(e)?s(e):i(r(e))}},CfL3:function(e,t,n){"use strict";var r=n("7vYJ"),i=n("8BMt"),o="number";e.exports=function(e){if("string"!==e&&e!==o&&"default"!==e)throw TypeError("Incorrect hint");return i(r(this),e!=o)}},CgOb:function(e,t,n){"use strict";n("bbsP");var r=n("/wGt"),i=(n("+L6B"),n("2/Rp")),o=(n("BoS7"),n("Sdc0")),a=(n("5Dmo"),n("3S7+")),s=(n("Pwec"),n("CtXQ")),l=(n("OaEy"),n("2fM7")),c=(n("iQDF"),n("+eQT")),u=(n("5NDa"),n("5rEg")),h=n("p0pE"),d=n.n(h),f=n("q1tI"),p=n.n(f),m=n("/MKj"),g=n("wd/R"),v=n.n(g);class y extends p.a.Component{constructor(e){super(e),this.state={visible:!1}}show(){this.setState({visible:!0},()=>{this.props.dispatch({type:"user/getUserInfoById",id:this.props.userId})})}hide(){this.setState({visible:!1},()=>{this.props.dispatch({type:"user/setState",payload:{user:{}}})})}formChange(e,t){this.props.dispatch({type:"user/setState",payload:{user:d()({},this.props.user.user,{[e]:t})}})}submit(){var e=d()({},this.props.user.user);this.props.dispatch({type:"user/update",params:e,callback:()=>{this.hide()}})}render(){var e=this.props.user,t=e.user,n=e.updateLoading,h=this.props.plan.plans,d=this.state.visible;return p.a.createElement(p.a.Fragment,null,p.a.cloneElement(this.props.children,{onClick:()=>this.show()}),p.a.createElement(r["a"],{id:"user",width:"80%",title:"\u7528\u6237\u7ba1\u7406",visible:d,onClose:()=>this.hide(),cancelText:"\u53d6\u6d88"},t.email?p.a.createElement("div",null,p.a.createElement("div",null,p.a.createElement("div",{className:"form-group"},p.a.createElement("label",{for:"example-text-input-alt"},"\u90ae\u7bb1"),p.a.createElement(u["a"],{placeholder:"\u8bf7\u8f93\u5165\u90ae\u7bb1",defaultValue:t.email,onChange:e=>this.formChange("email",e.target.value)})),p.a.createElement("div",{className:"form-group"},p.a.createElement("label",{for:"example-text-input-alt"},"\u9080\u8bf7\u4eba\u90ae\u7bb1"),p.a.createElement(u["a"],{placeholder:"\u8bf7\u8f93\u5165\u9080\u8bf7\u4eba\u90ae\u7bb1",defaultValue:t.invite_user_email,onChange:e=>this.formChange("invite_user_email",e.target.value)})),p.a.createElement("div",{className:"form-group"},p.a.createElement("label",{for:"example-text-input-alt"},"\u5bc6\u7801"),p.a.createElement(u["a"],{defaultValue:t.password,placeholder:"\u5982\u9700\u4fee\u6539\u5bc6\u7801\u8bf7\u8f93\u5165",onChange:e=>this.formChange("password",e.target.value)})),p.a.createElement("div",{className:"row"},p.a.createElement("div",{className:"form-group col-md-6 col-xs-12"},p.a.createElement("label",null,"\u4f59\u989d"),p.a.createElement(u["a"],{type:"number",addonAfter:"\xa5",placeholder:"\u4f59\u989d",defaultValue:t.balance,onChange:e=>this.formChange("balance",e.target.value)})),p.a.createElement("div",{className:"form-group col-md-6 col-xs-12"},p.a.createElement("label",null,"\u63a8\u5e7f\u4f63\u91d1"),p.a.createElement(u["a"],{type:"number",addonAfter:"\xa5",placeholder:"\u63a8\u5e7f\u4f63\u91d1",defaultValue:t.commission_balance,onChange:e=>this.formChange("commission_balance",e.target.value)}))),p.a.createElement("div",{className:"row"},p.a.createElement("div",{className:"form-group col-md-6 col-xs-12"},p.a.createElement("label",null,"\u5df2\u7528\u4e0a\u884c"),p.a.createElement(u["a"],{type:"number",addonAfter:"GB",placeholder:"\u5df2\u7528\u4e0a\u884c",defaultValue:t.u,onChange:e=>this.formChange("u",e.target.value)})),p.a.createElement("div",{className:"form-group col-md-6 col-xs-12"},p.a.createElement("label",null,"\u5df2\u7528\u4e0b\u884c"),p.a.createElement(u["a"],{type:"number",addonAfter:"GB",placeholder:"\u5df2\u7528\u4e0b\u884c",defaultValue:t.d,onChange:e=>this.formChange("d",e.target.value)}))),p.a.createElement("div",{className:"form-group"},p.a.createElement("label",{for:"example-text-input-alt"},"\u6d41\u91cf"),p.a.createElement(u["a"],{type:"number",addonAfter:"GB",defaultValue:t.transfer_enable,placeholder:"\u8bf7\u8f93\u5165\u6d41\u91cf",onChange:e=>this.formChange("transfer_enable",e.target.value)})),p.a.createElement("div",{className:"form-group"},p.a.createElement("label",{for:"example-text-input-alt"},"\u5230\u671f\u65f6\u95f4"),p.a.createElement("div",null,p.a.createElement(c["a"],{placeholder:"\u957f\u671f\u6709\u6548",defaultValue:null!==t.expired_at&&v()(1e3*t.expired_at),style:{width:"100%"},onChange:e=>this.formChange("expired_at",e?e.format("X"):null)}))),p.a.createElement("div",{className:"form-group"},p.a.createElement("label",{for:"example-text-input-alt"},"\u8ba2\u9605\u8ba1\u5212"),p.a.createElement(l["a"],{placeholder:"\u8bf7\u9009\u62e9\u7528\u6237\u8ba2\u9605\u8ba1\u5212",style:{width:"100%"},defaultValue:t.plan_id||null,onChange:e=>this.formChange("plan_id",e)},p.a.createElement(l["a"].Option,{value:null},"\u65e0"),h.map(e=>{return p.a.createElement(l["a"].Option,{key:Math.random(),value:e.id},e.name)}))),p.a.createElement("div",{className:"form-group"},p.a.createElement("label",{for:"example-text-input-alt"},"\u8d26\u6237\u72b6\u6001"),p.a.createElement(l["a"],{style:{width:"100%"},defaultValue:t.banned?1:0,onChange:e=>this.formChange("banned",e)},p.a.createElement(l["a"].Option,{key:1,value:1},"\u5c01\u7981"),p.a.createElement(l["a"].Option,{key:0,value:0},"\u6b63\u5e38"))),p.a.createElement("div",{className:"form-group"},p.a.createElement("label",{for:"example-text-input-alt"},"\u63a8\u8350\u8fd4\u5229\u7c7b\u578b"),p.a.createElement(l["a"],{style:{width:"100%"},defaultValue:parseInt(t.commission_type),onChange:e=>this.formChange("commission_type",e)},p.a.createElement(l["a"].Option,{key:0,value:0},"\u8ddf\u968f\u7cfb\u7edf\u8bbe\u7f6e"),p.a.createElement(l["a"].Option,{key:1,value:1},"\u5faa\u73af\u8fd4\u5229"),p.a.createElement(l["a"].Option,{key:2,value:2},"\u9996\u6b21\u8fd4\u5229"))),p.a.createElement("div",{className:"form-group"},p.a.createElement("label",{for:"example-text-input-alt"},"\u63a8\u8350\u8fd4\u5229\u6bd4\u4f8b"),p.a.createElement(u["a"],{addonAfter:"%",defaultValue:t.commission_rate,placeholder:"\u8bf7\u8f93\u5165\u63a8\u8350\u8fd4\u5229\u6bd4\u4f8b(\u4e3a\u7a7a\u5219\u8ddf\u968f\u7ad9\u70b9\u8bbe\u7f6e\u8fd4\u5229\u6bd4\u4f8b)",onChange:e=>this.formChange("commission_rate",e.target.value)})),p.a.createElement("div",{className:"form-group"},p.a.createElement("label",{for:"example-text-input-alt"},"\u4e13\u4eab\u6298\u6263\u6bd4\u4f8b ",p.a.createElement(a["a"],{placement:"top",title:"\u8bbe\u7f6e\u540e\u8be5\u7528\u6237\u8d2d\u4e70\u4efb\u4f55\u8ba2\u9605\u5c06\u59cb\u7ec8\u4eab\u53d7\u8be5\u6298\u6263"},p.a.createElement(s["a"],{type:"question-circle"}))),p.a.createElement(u["a"],{addonAfter:"%",defaultValue:t.discount,placeholder:"\u8bf7\u8f93\u5165\u4e13\u4eab\u6298\u6263\u6bd4\u4f8b",onChange:e=>this.formChange("discount",e.target.value)})),p.a.createElement("div",{className:"form-group"},p.a.createElement("label",{for:"example-text-input-alt"},"\u662f\u5426\u7ba1\u7406\u5458"),p.a.createElement("div",null,p.a.createElement(o["a"],{checked:t.is_admin,onChange:e=>this.formChange("is_admin",e?1:0)}))),p.a.createElement("div",{className:"form-group"},p.a.createElement("label",{htmlFor:"example-text-input-alt"},"\u662f\u5426\u5458\u5de5"),p.a.createElement("div",null,p.a.createElement(o["a"],{checked:t.is_staff,onChange:e=>this.formChange("is_staff",e?1:0)}))),p.a.createElement("div",{className:"form-group"},p.a.createElement("label",{htmlFor:"example-text-input-alt"},"\u5907\u6ce8"),p.a.createElement("div",null,p.a.createElement(u["a"].TextArea,{rows:4,placeholder:"\u8bf7\u5728\u8fd9\u91cc\u8bb0\u5f55..",defaultValue:t.remarks,onChange:e=>this.formChange("remarks",e.target.value)})))),p.a.createElement("div",{className:"v2board-drawer-action"},p.a.createElement(i["a"],{style:{marginRight:8},onClick:()=>this.hide()},"\u53d6\u6d88"),p.a.createElement(i["a"],{disabled:n,loading:n,onClick:()=>this.submit(),type:"primary"},"\u63d0\u4ea4"))):p.a.createElement(s["a"],{type:"loading",style:{fontSize:24,color:"#415A94"}})))}}t["a"]=Object(m["c"])(e=>{var t=e.user,n=e.plan;return{user:t,plan:n}})(y)},Cit5:function(e,t,n){"use strict";function r(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)Object.hasOwnProperty.call(e,n)&&(t[n]=e[n]);return t["default"]=e,t},o=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});var a=i(n("q1tI")),s=i(n("17x9")),l=o(n("TSYQ")),c=n("6Ogq"),u=o(n("UNrv"));function h(e,t){var n=t.table,i=n.props,o=i.prefixCls,s=i.scroll,h=i.showHeader,d=e.columns,f=e.fixed,p=e.tableClassName,m=e.handleBodyScrollLeft,g=e.expander,v=n.saveRef,y=n.props.useFixedHeader,b={},w=c.measureScrollbar({direction:"vertical"});if(s.y){y=!0;var x=c.measureScrollbar({direction:"horizontal",prefixCls:o});x>0&&!f&&(b.marginBottom="-".concat(x,"px"),b.paddingBottom="0px",b.minWidth="".concat(w,"px"),b.overflowX="scroll",b.overflowY=0===w?"hidden":"scroll")}return y&&h?a.createElement("div",{key:"headTable",ref:f?null:v("headTable"),className:l.default("".concat(o,"-header"),r({},"".concat(o,"-hide-scrollbar"),w>0)),style:b,onScroll:m},a.createElement(u.default,{tableClassName:p,hasHead:!0,hasBody:!1,fixed:f,columns:d,expander:g})):null}t.default=h,h.contextTypes={table:s.any}},CnBM:function(e,t,n){"use strict";var r="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function a(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var s=n("q1tI"),l=n("17x9"),c=[],u=[];function h(e){return"object"===r(n.m)&&e().every(function(e){return"undefined"!==typeof e&&"undefined"!==typeof n.m[e]})}function d(e){var t=e(),n={loading:!0,loaded:null,error:null};return n.promise=t.then(function(e){return n.loading=!1,n.loaded=e,e}).catch(function(e){throw n.loading=!1,n.error=e,e}),n}function f(e){var t={loading:!1,loaded:{},error:null},n=[];try{Object.keys(e).forEach(function(r){var i=d(e[r]);i.loading?t.loading=!0:(t.loaded[r]=i.loaded,t.error=i.error),n.push(i.promise),i.promise.then(function(e){t.loaded[r]=e}).catch(function(e){t.error=e})})}catch(e){t.error=e}return t.promise=Promise.all(n).then(function(e){return t.loading=!1,e}).catch(function(e){throw t.loading=!1,e}),t}function p(e){return e&&e.__esModule?e.default:e}function m(e,t){return s.createElement(p(e),t)}function g(e,t){var n,r;if(!t.loading)throw new Error("react-loadable requires a `loading` component");var d=Object.assign({loader:null,loading:null,delay:200,timeout:null,render:m,webpack:null,modules:null},t),f=null;function p(){return f||(f=e(d.loader)),f.promise}return c.push(p),"function"===typeof d.webpack&&u.push(function(){if(h(d.webpack))return p()}),r=n=function(t){function n(r){i(this,n);var a=o(this,t.call(this,r));return a.retry=function(){a.setState({error:null,loading:!0,timedOut:!1}),f=e(d.loader),a._loadModule()},p(),a.state={error:f.error,pastDelay:!1,timedOut:!1,loading:f.loading,loaded:f.loaded},a}return a(n,t),n.preload=function(){return p()},n.prototype.componentWillMount=function(){this._mounted=!0,this._loadModule()},n.prototype._loadModule=function(){var e=this;if(this.context.loadable&&Array.isArray(d.modules)&&d.modules.forEach(function(t){e.context.loadable.report(t)}),f.loading){"number"===typeof d.delay&&(0===d.delay?this.setState({pastDelay:!0}):this._delay=setTimeout(function(){e.setState({pastDelay:!0})},d.delay)),"number"===typeof d.timeout&&(this._timeout=setTimeout(function(){e.setState({timedOut:!0})},d.timeout));var t=function(){e._mounted&&(e.setState({error:f.error,loaded:f.loaded,loading:f.loading}),e._clearTimeouts())};f.promise.then(function(){t()}).catch(function(e){t()})}},n.prototype.componentWillUnmount=function(){this._mounted=!1,this._clearTimeouts()},n.prototype._clearTimeouts=function(){clearTimeout(this._delay),clearTimeout(this._timeout)},n.prototype.render=function(){return this.state.loading||this.state.error?s.createElement(d.loading,{isLoading:this.state.loading,pastDelay:this.state.pastDelay,timedOut:this.state.timedOut,error:this.state.error,retry:this.retry}):this.state.loaded?d.render(this.state.loaded,this.props):null},n}(s.Component),n.contextTypes={loadable:l.shape({report:l.func.isRequired})},r}function v(e){return g(d,e)}function y(e){if("function"!==typeof e.render)throw new Error("LoadableMap requires a `render(loaded, props)` function");return g(f,e)}v.Map=y;var b=function(e){function t(){return i(this,t),o(this,e.apply(this,arguments))}return a(t,e),t.prototype.getChildContext=function(){return{loadable:{report:this.props.report}}},t.prototype.render=function(){return s.Children.only(this.props.children)},t}(s.Component);function w(e){var t=[];while(e.length){var n=e.pop();t.push(n())}return Promise.all(t).then(function(){if(e.length)return w(e)})}b.propTypes={report:l.func.isRequired},b.childContextTypes={loadable:l.shape({report:l.func.isRequired}).isRequired},v.Capture=b,v.preloadAll=function(){return new Promise(function(e,t){w(c).then(e,t)})},v.preloadReady=function(){return new Promise(function(e,t){w(u).then(e,e)})},e.exports=v},Crw4:function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=P;var r=o(n("q1tI")),i=n("6YkS");function o(e){return e&&e.__esModule?e:{default:e}}function a(e){"@babel/helpers - typeof";return a="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},a(e)}function s(e,t,n,r,i,o,a){try{var s=e[o](a),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(r,i)}function l(e){return function(){var t=this,n=arguments;return new Promise(function(r,i){var o=e.apply(t,n);function a(e){s(o,r,i,a,l,"next",e)}function l(e){s(o,r,i,a,l,"throw",e)}a(void 0)})}}function c(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function u(e,t){for(var n=0;n=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(i[n]=e[n])}return i}function S(e,t){if(null==e)return{};var n,r,i={},o=Object.keys(e);for(r=0;r=0||(i[n]=e[n]);return i}var E={get:function(e){return e._routeInternalComponent},has:function(e){return void 0!==e._routeInternalComponent},set:function(e,t){e._routeInternalComponent=t}},k=function(e){var t=e.path,n=e.exact,o=e.strict,a=e.render,s=e.location,l=e.sensitive,c=C(e,["path","exact","strict","render","location","sensitive"]);return r.default.createElement(i.Route,{path:t,exact:n,strict:o,location:s,sensitive:l,render:function(e){return a(x({},e,{},c))}})};function O(e){var t={};return t}function T(e){if(E.has(e))return E.get(e);var t=e.Routes,n=t.length-1,i=function(e){var t=e.render,n=C(e,["render"]);return t(n)},o=function(){var e=t[n],o=i;i=function(t){return r.default.createElement(e,t,r.default.createElement(o,t))},n-=1};while(n>=0)o();var a=function(t){var n=t.render,o=C(t,["render"]);return r.default.createElement(k,b({},o,{render:function(t){return r.default.createElement(i,b({},t,{route:e,render:n}))}}))};return E.set(e,a),a}var A=!1;function M(e,t){var n,i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};return n=function(n){d(a,n);var o=p(a);function a(e){var t;return c(this,a),t=o.call(this,e),t.wrappedWithInitialProps=!0,t.state={extraProps:x({},i)},A||(A=!window.g_useSSR||e.history&&"POP"!==e.history.action),t}return h(a,[{key:"componentDidMount",value:function(){var e=l(regeneratorRuntime.mark(function e(){return regeneratorRuntime.wrap(function(e){while(1)switch(e.prev=e.next){case 0:A&&this.getInitialProps();case 1:case"end":return e.stop()}},e,this)}));function t(){return e.apply(this,arguments)}return t}()},{key:"componentDidUpdate",value:function(e){var t=this.props.location;e.location.pathname!==t.pathname&&(A=!0,this.getInitialProps())}},{key:"componentWillUnmount",value:function(){A=!0}},{key:"getInitialProps",value:function(){var n=l(regeneratorRuntime.mark(function n(){var r,i,o,a,s;return regeneratorRuntime.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=this.props,i=r.match,o=r.location,a=this.state.extraProps,this.setState({extraProps:x({},a,{fetchingProps:!0})}),n.next=5,e.getInitialProps(x({isServer:!1,route:i,location:o,prevInitialProps:a},t));case 5:if(n.t0=n.sent,n.t0){n.next=8;break}n.t0={};case 8:s=n.t0,s.fetchingProps=!1,this.setState({extraProps:s});case 11:case"end":return n.stop()}},n,this)}));function r(){return n.apply(this,arguments)}return r}()},{key:"render",value:function(){return r.default.createElement(e,x({},this.props,{},this.state.extraProps))}}]),a}(r.default.Component),n}function P(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},o=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},a=n("PszG");return e?r.default.createElement(i.Switch,o,e.map(function(e,n){if(e.redirect)return r.default.createElement(i.Redirect,{key:e.key||n,from:e.path,to:e.redirect,exact:e.exact,strict:e.strict});var o=e.Routes?T(e):k;return r.default.createElement(o,{key:e.key||n,path:e.path,exact:e.exact,strict:e.strict,sensitive:e.sensitive,render:function(n){var i=n.location;A&&(t={});var o=P(e.routes,t,{location:i});if(e.component){var s=O(x({},n,{},t)),l=a.apply("modifyRouteProps",{initialValue:x({},n,{},t,{},s),args:{route:e}}),c=e.component;if(c.getInitialProps){var u=a.apply("modifyInitialProps",{initialValue:{}});c.wrappedWithInitialProps||(c=M(c,u,t),e.component=c)}return r.default.createElement(c,b({key:e.path},l,{route:e}),o)}return o}})})):null}},Ctgt:function(e,t,n){"use strict";n.r(t);var r=n("q1tI"),i=n.n(r),o=n("17x9"),a=n.n(o),s=n("VCL8");function l(){return l=Object.assign||function(e){for(var t=1;t=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(i[n]=e[n])}return i}function u(e,t){if(null==e)return{};var n,r,i={},o=Object.keys(e);for(r=0;r=0||(i[n]=e[n]);return i}function h(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function d(e,t){for(var n=0;n1?arguments[1]:void 0,3);while(n=n?n.n:this._f){r(n.v,n.k,this);while(n&&n.r)n=n.p}},has:function(e){return!!g(p(this,t),e)}}),d&&r(u.prototype,"size",{get:function(){return p(this,t)[m]}}),u},def:function(e,t,n){var r,i,o=g(e,t);return o?o.v=n:(e._l=o={i:i=f(t,!0),k:t,v:n,p:r=e._l,n:void 0,r:!1},e._f||(e._f=o),r&&(r.n=o),e[m]++,"F"!==i&&(e._i[i]=o)),e},getEntry:g,setStrong:function(e,t,n){c(e,t,function(e,n){this._t=p(e,t),this._k=n,this._l=void 0},function(){var e=this,t=e._k,n=e._l;while(n&&n.r)n=n.p;return e._t&&(e._l=n=n?n.n:e._t._f)?u(0,"keys"==t?n.k:"values"==t?n.v:[n.k,n.v]):(e._t=void 0,u(1))},n?"entries":"values",!n,!0),h(t)}}},D8kY:function(e,t,n){var r=n("Ojgd"),i=Math.max,o=Math.min;e.exports=function(e,t){return e=r(e),e<0?i(e+t,0):o(e,t)}},DBt0:function(e,t,n){"use strict";var r=n("7vYJ"),i=n("il4q"),o=n("OsVd"),a=n("AUWw"),s=n("ETUh"),l=n("bsDr"),c=Math.max,u=Math.min,h=Math.floor,d=/\$([$&`']|\d\d?|<[^>]*>)/g,f=/\$([$&`']|\d\d?)/g,p=function(e){return void 0===e?e:String(e)};n("h7Gi")("replace",2,function(e,t,n,m){return[function(r,i){var o=e(this),a=void 0==r?void 0:r[t];return void 0!==a?a.call(r,o,i):n.call(String(o),r,i)},function(e,t){var i=m(n,e,this,t);if(i.done)return i.value;var h=r(e),d=String(this),f="function"===typeof t;f||(t=String(t));var v=h.global;if(v){var y=h.unicode;h.lastIndex=0}var b=[];while(1){var w=l(h,d);if(null===w)break;if(b.push(w),!v)break;var x=String(w[0]);""===x&&(h.lastIndex=s(d,o(h.lastIndex),y))}for(var _="",C=0,S=0;S=C&&(_+=d.slice(C,k)+P,C=k+E.length)}return _+d.slice(C)}];function g(e,t,r,o,a,s){var l=r+e.length,c=o.length,u=f;return void 0!==a&&(a=i(a),u=d),n.call(s,u,function(n,i){var s;switch(i.charAt(0)){case"$":return"$";case"&":return e;case"`":return t.slice(0,r);case"'":return t.slice(l);case"<":s=a[i.slice(1,-1)];break;default:var u=+i;if(0===u)return n;if(u>c){var d=h(u/10);return 0===d?n:d<=c?void 0===o[d-1]?i.charAt(1):o[d-1]+i.charAt(1):n}s=o[u-1]}return void 0===s?"":s})}})},DFAo:function(e,t,n){"use strict";n("Bz7s");var r=n("7vYJ"),i=n("7tNx"),o=n("8Z/V"),a="toString",s=/./[a],l=function(e){n("rKIl")(RegExp.prototype,a,e,!0)};n("wUWy")(function(){return"/a/b"!=s.call({source:"a",flags:"b"})})?l(function(){var e=r(this);return"/".concat(e.source,"/","flags"in e?e.flags:!o&&e instanceof RegExp?i.call(e):void 0)}):s.name!=a&&l(function(){return s.call(this)})},DIcO:function(e,t,n){var r=n("gL7N")("unscopables"),i=Array.prototype;void 0==i[r]&&n("VPOE")(i,r,{}),e.exports=function(e){i[r][e]=!0}},DN2a:function(e,t){window.MutationObserver||(window.MutationObserver=function(e){function t(e){this.i=[],this.m=e}function n(e){(function n(){var r=e.takeRecords();r.length&&e.m(r,e),e.h=setTimeout(n,t._period)})()}function r(t){var n,r={type:null,target:null,addedNodes:[],removedNodes:[],previousSibling:null,nextSibling:null,attributeName:null,attributeNamespace:null,oldValue:null};for(n in t)r[n]!==e&&t[n]!==e&&(r[n]=t[n]);return r}function i(e,t){var n=c(e,t);return function(i){var o=i.length;if(t.a&&3===e.nodeType&&e.nodeValue!==n.a&&i.push(new r({type:"characterData",target:e,oldValue:n.a})),t.b&&n.b&&s(i,e,n.b,t.f),t.c||t.g)var a=l(i,e,n,t);(a||i.length!==o)&&(n=c(e,t))}}function o(e,t){return t.value}function a(e,t){return"style"!==t.name?t.value:e.style.cssText}function s(t,n,i,o){for(var a,s,l={},c=n.attributes,u=c.length;u--;)a=c[u],s=a.name,o&&o[s]===e||(m(n,a)!==i[s]&&t.push(r({type:"attributes",target:n,attributeName:s,oldValue:i[s],attributeNamespace:a.namespaceURI})),l[s]=!0);for(s in i)l[s]||t.push(r({target:n,type:"attributes",attributeName:s,oldValue:i[s]}))}function l(t,n,i,o){function a(e,n,i,a,c){var u,h,d,f=e.length-1;for(c=-~((f-c)/2);d=e.pop();)u=i[d.j],h=a[d.l],o.c&&c&&Math.abs(d.j-d.l)>=f&&(t.push(r({type:"childList",target:n,addedNodes:[u],removedNodes:[u],nextSibling:u.nextSibling,previousSibling:u.previousSibling})),c--),o.b&&h.b&&s(t,u,h.b,o.f),o.a&&3===u.nodeType&&u.nodeValue!==h.a&&t.push(r({type:"characterData",target:u,oldValue:h.a})),o.g&&l(u,h)}function l(n,i){for(var h,d,p,m,g,v=n.childNodes,y=i.c,b=v.length,w=y?y.length:0,x=0,_=0,C=0;_2&&l.push(t),t=[e,n]}function p(e,n,r,i){v(e,r)&&v(n,i)||t.push(e,n,r,i,r,i)}function m(e,n,r,i,o,a){var s=Math.abs(n-e),l=4*Math.tan(s/4)/3,c=nk:A2&&l.push(t),l}function b(e,t,n,i,o,a,s,l,c,u){if(v(e,n)&&v(t,i)&&v(o,s)&&v(a,l))c.push(s,l);else{var h=2/u,d=h*h,f=s-e,p=l-t,m=Math.sqrt(f*f+p*p);f/=m,p/=m;var g=n-e,y=i-t,w=o-s,x=a-l,_=g*g+y*y,C=w*w+x*x;if(_=0&&O=0)c.push(s,l);else{var T=[],A=[];Object(r["g"])(e,n,o,s,.5,T),Object(r["g"])(t,i,a,l,.5,A),b(T[0],A[0],T[1],A[1],T[2],A[2],T[3],A[3],c,u),b(T[4],A[4],T[5],A[5],T[6],A[6],T[7],A[7],c,u)}}}}function w(e,t){var n=y(e),r=[];t=t||1;for(var i=0;i0)for(c=0;cMath.abs(c),h=x([l,c],u?0:1,t),d=(u?s:c)/h.length,f=0;fi,a=x([r,i],o?0:1,t),s=o?"width":"height",l=o?"height":"width",c=o?"x":"y",u=o?"y":"x",h=e[s]/a.length,d=0;d1?null:new h["a"](g*l+e,g*c+t)}function k(e,t,n){var r=new h["a"];h["a"].sub(r,n,t),r.normalize();var i=new h["a"];h["a"].sub(i,e,t);var o=i.dot(r);return o}function O(e,t){var n=e[e.length-1];n&&n[0]===t[0]&&n[1]===t[1]||e.push(t)}function T(e,t,n){for(var r=e.length,i=[],o=0;oa?(d.x=f.x=s+o/2,d.y=l,f.y=l+a):(d.y=f.y=l+a/2,d.x=s,f.x=s+o),T(t,d,f)}function M(e,t,n,r){if(1===n)r.push(t);else{var i=Math.floor(n/2),o=e(t);M(e,o[0],i,r),M(e,o[1],n-i,r)}return r}function P(e,t){for(var n=[],r=0;r0)for(var x=r/n,_=-r/2;_<=r/2;_+=x){var C=Math.sin(_),S=Math.cos(_),E=0;for(b=0;b0;c/=2){var u=0,h=0;(e&c)>0&&(u=1),(t&c)>0&&(h=1),l+=c*c*(3*u^h),0===h&&(1===u&&(e=c-1-e,t=c-1-t),s=e,e=t,t=s)}return l}function X(e){var t=1/0,n=1/0,r=-1/0,i=-1/0,a=Object(o["F"])(e,function(e){var o=e.getBoundingRect(),a=e.getComputedTransform(),s=o.x+o.width/2+(a?a[4]:0),l=o.y+o.height/2+(a?a[5]:0);return t=Math.min(s,t),n=Math.min(l,n),r=Math.max(s,r),i=Math.max(l,i),[s,l]}),s=Object(o["F"])(a,function(o,a){return{cp:o,z:Y(o[0],o[1],t,n,r,i),path:e[a]}});return s.sort(function(e,t){return e.z-t.z}).map(function(e){return e.path})}function Q(e){return D(e.path,e.count)}function Z(){return{fromIndividuals:[],toIndividuals:[],count:0}}function J(e,t,n){var r=[];function a(e){for(var t=0;t=0?t:0)+"#"+e)},b=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};(0,s.default)(d.canUseDOM,"Hash history needs a DOM");var t=window.history,n=(0,d.supportsGoWithoutReloadUsingHash)(),i=e.getUserConfirmation,a=void 0===i?d.getConfirmation:i,u=e.hashType,f=void 0===u?"slash":u,b=e.basename?(0,c.stripTrailingSlash)((0,c.addLeadingSlash)(e.basename)):"",w=m[f],x=w.encodePath,_=w.decodePath,C=function(){var e=_(g());return(0,o.default)(!b||(0,c.hasBasename)(e,b),'You are attempting to use a basename on a page whose URL path does not begin with the basename. Expected path "'+e+'" to begin with "'+b+'".'),b&&(e=(0,c.stripBasename)(e,b)),(0,l.createLocation)(e)},S=(0,h.default)(),E=function(e){r(q,e),q.length=t.length,S.notifyListeners(q.location,q.action)},k=!1,O=null,T=function(){var e=g(),t=x(e);if(e!==t)y(t);else{var n=C(),r=q.location;if(!k&&(0,l.locationsAreEqual)(r,n))return;if(O===(0,c.createPath)(n))return;O=null,A(n)}},A=function(e){if(k)k=!1,E();else{var t="POP";S.confirmTransitionTo(e,t,a,function(n){n?E({action:t,location:e}):M(e)})}},M=function(e){var t=q.location,n=D.lastIndexOf((0,c.createPath)(t));-1===n&&(n=0);var r=D.lastIndexOf((0,c.createPath)(e));-1===r&&(r=0);var i=n-r;i&&(k=!0,$(i))},P=g(),R=x(P);P!==R&&y(R);var L=C(),D=[(0,c.createPath)(L)],j=function(e){return"#"+x(b+(0,c.createPath)(e))},N=function(e,t){(0,o.default)(void 0===t,"Hash history cannot push state; it is ignored");var n="PUSH",r=(0,l.createLocation)(e,void 0,void 0,q.location);S.confirmTransitionTo(r,n,a,function(e){if(e){var t=(0,c.createPath)(r),i=x(b+t),a=g()!==i;if(a){O=t,v(i);var s=D.lastIndexOf((0,c.createPath)(q.location)),l=D.slice(0,-1===s?0:s+1);l.push(t),D=l,E({action:n,location:r})}else(0,o.default)(!1,"Hash history cannot PUSH the same path; a new entry will not be added to the history stack"),E()}})},I=function(e,t){(0,o.default)(void 0===t,"Hash history cannot replace state; it is ignored");var n="REPLACE",r=(0,l.createLocation)(e,void 0,void 0,q.location);S.confirmTransitionTo(r,n,a,function(e){if(e){var t=(0,c.createPath)(r),i=x(b+t),o=g()!==i;o&&(O=t,y(i));var a=D.indexOf((0,c.createPath)(q.location));-1!==a&&(D[a]=t),E({action:n,location:r})}})},$=function(e){(0,o.default)(n,"Hash history go(n) causes a full page reload in this browser"),t.go(e)},F=function(){return $(-1)},V=function(){return $(1)},B=0,W=function(e){B+=e,1===B?window.addEventListener(p,T):0===B&&window.removeEventListener(p,T)},H=!1,z=function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0],t=S.setPrompt(e);return H||(W(1),H=!0),function(){return H&&(H=!1,W(-1)),t()}},U=function(e){var t=S.appendListener(e);return W(1),function(){W(-1),t()}},q={length:t.length,action:"POP",location:L,createHref:j,push:N,replace:I,go:$,goBack:F,goForward:V,block:z,listen:U};return q};t.default=b},ERIh:function(e,t,n){"use strict";n.r(t),n.d(t,"dva",function(){return h});var r=n("yWgo"),i=n("nDCI"),o=n("wd/R"),a=n.n(o),s=(n("XDpg"),window.settings),l=s.theme,c=s.host,u=document.createElement("link");u.rel="stylesheet",u.href=c?"./theme/".concat(l.color,".css"):"./assets/admin/theme/".concat(l.color,".css"),document.getElementsByTagName("head")[0].appendChild(u),a.a.locale("zh-cn"),"1"===Object(r["b"])("dark_mode")&&Object(i["enable"])({brightness:100,contrast:90,sepia:10});var h={config:{onError(e){e.preventDefault()}}}},ETUh:function(e,t,n){"use strict";var r=n("6RnP")(!0);e.exports=function(e,t,n){return t+(n?r(e,t).length:1)}},EVqI:function(e,t,n){"use strict";function r(){return r=Object.assign||function(e){for(var t=1;t{return e.is_me?o.a.createElement("div",null,o.a.createElement("div",{className:"font-size-sm font-italic text-muted animated fadeIn my-2 text-right"},c()(1e3*e.created_at).format("YYYY/MM/DD HH:mm")),o.a.createElement("div",{className:"text-right ml-4"},o.a.createElement("div",{className:"d-inline-block font-w600 animated fadeIn bg-body-light border-3x px-3 py-2 mb-2 shadow-sm mw-100 border-right border-primary rounded-left text-left"},e.message))):o.a.createElement("div",null,o.a.createElement("div",{className:"font-size-sm font-italic text-muted animated fadeIn my-2"},c()(1e3*e.created_at).format("YYYY/MM/DD HH:mm")),o.a.createElement("div",{className:"mr-4"},o.a.createElement("div",{className:"d-inline-block font-w600 animated fadeIn bg-body-light border-3x px-3 py-2 mb-2 shadow-sm mw-100 border-left border-dark rounded-right"},e.message)))})),o.a.createElement("div",{className:"js-chat-form block-content p-2 bg-body-dark"},o.a.createElement("input",{onKeyDown:e=>this.props.onKeyDown(e,()=>{this.refs.message&&(this.refs.message.value="")}),ref:"message",type:"text",className:"js-chat-input form-control form-control-alt",placeholder:"\u8f93\u5165\u5185\u5bb9\u56de\u590d\u5de5\u5355...",onChange:e=>this.props.onChange(e)})))}}class d extends o.a.Component{constructor(e){super(e),this.state={message:void 0,submit:{}}}componentDidMount(){this.props.dispatch({type:"ticket/fetchById",id:this.props.match.params.ticket_id}),this.props.dispatch({type:"plan/fetch"}),this.check()}check(){r=setTimeout(()=>{this.props.dispatch({type:"ticket/fetchById",id:this.props.match.params.ticket_id}),this.check()},5e3)}componentWillUnmount(){clearTimeout(r)}reply(e){this.props.dispatch({type:"ticket/reply",id:this.props.match.params.ticket_id,msg:this.state.message,callback:()=>{e()}})}render(){var e=this.props.user.user,t=this.props.ticket,n=t.ticket,r=t.replyLoading;return o.a.createElement(h,{ticket:n,user:e,onKeyDown:(e,t)=>{13!==e.keyCode||r||this.reply(t)},onChange:e=>{this.setState({message:e.target.value})}})}}t["default"]=Object(a["c"])(e=>{var t=e.user,n=e.ticket;return{user:t,ticket:n}})(d)},FYw3:function(e,t,n){"use strict";t.__esModule=!0;var r=n("EJiy"),i=o(r);function o(e){return e&&e.__esModule?e:{default:e}}t.default=function(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==("undefined"===typeof t?"undefined":(0,i.default)(t))&&"function"!==typeof t?e:t}},FfBw:function(e,t){"function"===typeof Object.create?e.exports=function(e,t){e.super_=t,e.prototype=Object.create(t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}})}:e.exports=function(e,t){e.super_=t;var n=function(){};n.prototype=t.prototype,e.prototype=new n,e.prototype.constructor=e}},FlQf:function(e,t,n){"use strict";var r=n("ccE7")(!0);n("MPFp")(String,"String",function(e){this._t=String(e),this._i=0},function(){var e,t=this._t,n=this._i;return n>=t.length?{value:void 0,done:!0}:(e=r(t,n),this._i+=e.length,{value:e,done:!1})})},Fofx:function(e,t,n){"use strict";function r(){return[1,0,0,1,0,0]}function i(e){return e[0]=1,e[1]=0,e[2]=0,e[3]=1,e[4]=0,e[5]=0,e}function o(e,t){return e[0]=t[0],e[1]=t[1],e[2]=t[2],e[3]=t[3],e[4]=t[4],e[5]=t[5],e}function a(e,t,n){var r=t[0]*n[0]+t[2]*n[1],i=t[1]*n[0]+t[3]*n[1],o=t[0]*n[2]+t[2]*n[3],a=t[1]*n[2]+t[3]*n[3],s=t[0]*n[4]+t[2]*n[5]+t[4],l=t[1]*n[4]+t[3]*n[5]+t[5];return e[0]=r,e[1]=i,e[2]=o,e[3]=a,e[4]=s,e[5]=l,e}function s(e,t,n){return e[0]=t[0],e[1]=t[1],e[2]=t[2],e[3]=t[3],e[4]=t[4]+n[0],e[5]=t[5]+n[1],e}function l(e,t,n){var r=t[0],i=t[2],o=t[4],a=t[1],s=t[3],l=t[5],c=Math.sin(n),u=Math.cos(n);return e[0]=r*u+a*c,e[1]=-r*c+a*u,e[2]=i*u+s*c,e[3]=-i*c+u*s,e[4]=u*o+c*l,e[5]=u*l-c*o,e}function c(e,t,n){var r=n[0],i=n[1];return e[0]=t[0]*r,e[1]=t[1]*i,e[2]=t[2]*r,e[3]=t[3]*i,e[4]=t[4]*r,e[5]=t[5]*i,e}function u(e,t){var n=t[0],r=t[2],i=t[4],o=t[1],a=t[3],s=t[5],l=n*a-o*r;return l?(l=1/l,e[0]=a*l,e[1]=-o*l,e[2]=-r*l,e[3]=n*l,e[4]=(r*s-a*i)*l,e[5]=(o*i-n*s)*l,e):null}n.d(t,"b",function(){return r}),n.d(t,"c",function(){return i}),n.d(t,"a",function(){return o}),n.d(t,"e",function(){return a}),n.d(t,"h",function(){return s}),n.d(t,"f",function(){return l}),n.d(t,"g",function(){return c}),n.d(t,"d",function(){return u})},FpHa:function(e,t){e.exports="constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf".split(",")},FqPH:function(e,t){e.exports=!1},FwrZ:function(e,t,n){"use strict";t.__esModule=!0;t.addLeadingSlash=function(e){return"/"===e.charAt(0)?e:"/"+e},t.stripLeadingSlash=function(e){return"/"===e.charAt(0)?e.substr(1):e};var r=t.hasBasename=function(e,t){return new RegExp("^"+t+"(\\/|\\?|#|$)","i").test(e)};t.stripBasename=function(e,t){return r(e,t)?e.substr(t.length):e},t.stripTrailingSlash=function(e){return"/"===e.charAt(e.length-1)?e.slice(0,-1):e},t.parsePath=function(e){var t=e||"/",n="",r="",i=t.indexOf("#");-1!==i&&(r=t.substr(i),t=t.substr(0,i));var o=t.indexOf("?");return-1!==o&&(n=t.substr(o),t=t.substr(0,o)),{pathname:t,search:"?"===n?"":n,hash:"#"===r?"":r}},t.createPath=function(e){var t=e.pathname,n=e.search,r=e.hash,i=t||"/";return n&&"?"!==n&&(i+="?"===n.charAt(0)?n:"?"+n),r&&"#"!==r&&(i+="#"===r.charAt(0)?r:"#"+r),i}},G7Hh:function(e,t,n){"use strict";var r=n("7vYJ"),i=n("A22h"),o=n("bsDr");n("h7Gi")("search",1,function(e,t,n,a){return[function(n){var r=e(this),i=void 0==n?void 0:n[t];return void 0!==i?i.call(n,r):new RegExp(n)[t](String(r))},function(e){var t=a(n,e,this);if(t.done)return t.value;var s=r(e),l=String(this),c=s.lastIndex;i(c,0)||(s.lastIndex=0);var u=o(s,l);return i(s.lastIndex,c)||(s.lastIndex=c),null===u?-1:u.index}]})},G8Mo:function(e,t,n){var r=n("93I4");e.exports=function(e,t){if(!r(e))return e;var n,i;if(t&&"function"==typeof(n=e.toString)&&!r(i=n.call(e)))return i;if("function"==typeof(n=e.valueOf)&&!r(i=n.call(e)))return i;if(!t&&"function"==typeof(n=e.toString)&&!r(i=n.call(e)))return i;throw TypeError("Can't convert object to primitive value")}},"GB+t":function(e,t,n){"use strict";var r=function(){};e.exports=r},GYWy:function(e,t,n){(function(e,r){var i;(function(o){t&&t.nodeType,e&&e.nodeType;var a="object"==typeof r&&r;a.global!==a&&a.window!==a&&a.self;var s,l=2147483647,c=36,u=1,h=26,d=38,f=700,p=72,m=128,g="-",v=/^xn--/,y=/[^\x20-\x7E]/,b=/[\x2E\u3002\uFF0E\uFF61]/g,w={overflow:"Overflow: input needs wider integers to process","not-basic":"Illegal input >= 0x80 (not a basic code point)","invalid-input":"Invalid input"},x=c-u,_=Math.floor,C=String.fromCharCode;function S(e){throw new RangeError(w[e])}function E(e,t){var n=e.length,r=[];while(n--)r[n]=t(e[n]);return r}function k(e,t){var n=e.split("@"),r="";n.length>1&&(r=n[0]+"@",e=n[1]),e=e.replace(b,".");var i=e.split("."),o=E(i,t).join(".");return r+o}function O(e){var t,n,r=[],i=0,o=e.length;while(i=55296&&t<=56319&&i65535&&(e-=65536,t+=C(e>>>10&1023|55296),e=56320|1023&e),t+=C(e),t}).join("")}function A(e){return e-48<10?e-22:e-65<26?e-65:e-97<26?e-97:c}function M(e,t){return e+22+75*(e<26)-((0!=t)<<5)}function P(e,t,n){var r=0;for(e=n?_(e/f):e>>1,e+=_(e/t);e>x*h>>1;r+=c)e=_(e/x);return _(r+(x+1)*e/(e+d))}function R(e){var t,n,r,i,o,a,s,d,f,v,y=[],b=e.length,w=0,x=m,C=p;for(n=e.lastIndexOf(g),n<0&&(n=0),r=0;r=128&&S("not-basic"),y.push(e.charCodeAt(r));for(i=n>0?n+1:0;i=b&&S("invalid-input"),d=A(e.charCodeAt(i++)),(d>=c||d>_((l-w)/a))&&S("overflow"),w+=d*a,f=s<=C?u:s>=C+h?h:s-C,d_(l/v)&&S("overflow"),a*=v}t=y.length+1,C=P(w-o,t,0==o),_(w/t)>l-x&&S("overflow"),x+=_(w/t),w%=t,y.splice(w++,0,x)}return T(y)}function L(e){var t,n,r,i,o,a,s,d,f,v,y,b,w,x,E,k=[];for(e=O(e),b=e.length,t=m,n=0,o=p,a=0;a=t&&y_((l-n)/w)&&S("overflow"),n+=(s-t)*w,t=s,a=0;al&&S("overflow"),y==t){for(d=n,f=c;;f+=c){if(v=f<=o?u:f>=o+h?h:f-o,d{Object.keys(l["a"].periodText).forEach(t=>{null!==e[t]&&(e[t]=null!==e[t]?e[t]/100:null)})}),e.next=13,n({type:"setState",payload:{plans:r.data}});case 13:case"end":return e.stop()}},e)})()},save(e,t){return i.a.mark(function n(){var r,o,a,c;return i.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.params,o=e.callback,a=t.put,n.next=4,a({type:"setState",payload:{saveLoading:!0}});case 4:return Object.keys(l["a"].periodText).forEach(e=>{null!==r[e]&&(r[e]=null!==r[e]?Math.round(100*r[e]):null)}),n.next=7,Object(s["b"])("/admin/plan/save",r);case 7:return c=n.sent,n.next=10,a({type:"setState",payload:{saveLoading:!1}});case 10:if(200===c.code){n.next=12;break}return n.abrupt("return");case 12:return n.next=14,a({type:"fetch"});case 14:"function"===typeof o&&o();case 15:case"end":return n.stop()}},n)})()},drop(e,t){return i.a.mark(function n(){var r,o,a;return i.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.id,o=t.put,n.next=4,Object(s["b"])("/admin/plan/drop",{id:r});case 4:if(a=n.sent,200===a.code){n.next=7;break}return n.abrupt("return");case 7:return n.next=9,o({type:"fetch"});case 9:case"end":return n.stop()}},n)})()},update(e,t){return i.a.mark(function n(){var r,o,a,l,c;return i.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.id,o=e.key,a=e.value,l=t.put,n.next=4,Object(s["b"])("/admin/plan/update",{id:r,[o]:a});case 4:if(c=n.sent,200===c.code){n.next=7;break}return n.abrupt("return");case 7:return n.next=9,l({type:"fetch"});case 9:case"end":return n.stop()}},n)})()},sort(e,t){return i.a.mark(function n(){var r,o,a,l,c,u,h;return i.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.fromIndex,o=e.toIndex,a=t.select,l=t.put,n.next=4,l({type:"setState",payload:{fetchLoading:!0}});case 4:return n.next=6,a(e=>e.plan);case 6:return c=n.sent,u=c.plans,re.id)});case 13:if(h=n.sent,200===h.code){n.next=16;break}return n.abrupt("return");case 16:return n.next=18,l({type:"fetch"});case 18:case"end":return n.stop()}},n)})()}}}},GrtH:function(e,t,n){"use strict";n.d(t,"e",function(){return l}),n.d(t,"d",function(){return c}),n.d(t,"f",function(){return u}),n.d(t,"b",function(){return h}),n.d(t,"h",function(){return d}),n.d(t,"c",function(){return f}),n.d(t,"g",function(){return g}),n.d(t,"a",function(){return v});var r=n("QbLZ"),i=n.n(r),o=n("wd/R"),a=n.n(o),s={disabledHours:function(){return[]},disabledMinutes:function(){return[]},disabledSeconds:function(){return[]}};function l(e){var t=a()();return t.locale(e.locale()).utcOffset(e.utcOffset()),t}function c(e){return e.format("LL")}function u(e){var t=l(e);return c(t)}function h(e){var t=e.locale(),n=e.localeData();return n["zh-cn"===t?"months":"monthsShort"](e)}function d(e,t){a.a.isMoment(e)&&a.a.isMoment(t)&&(t.hour(e.hour()),t.minute(e.minute()),t.second(e.second()),t.millisecond(e.millisecond()))}function f(e,t){var n=t?t(e):{};return n=i()({},s,n),n}function p(e,t){var n=!1;if(e){var r=e.hour(),i=e.minute(),o=e.second(),a=t.disabledHours();if(-1===a.indexOf(r)){var s=t.disabledMinutes(r);if(-1===s.indexOf(i)){var l=t.disabledSeconds(r,i);n=-1!==l.indexOf(o)}else n=!0}else n=!0}return!n}function m(e,t){var n=f(e,t);return p(e,n)}function g(e,t,n){return(!t||!t(e))&&!(n&&!m(e,n))}function v(e,t){return e?(Array.isArray(t)&&(t=t[0]),e.format(t)):""}},GsrZ:function(e,t){e.exports="\t\n\v\f\r \xa0\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000\u2028\u2029\ufeff"},Gytx:function(e,t){e.exports=function(e,t,n,r){var i=n?n.call(r,e,t):void 0;if(void 0!==i)return!!i;if(e===t)return!0;if("object"!==typeof e||!e||"object"!==typeof t||!t)return!1;var o=Object.keys(e),a=Object.keys(t);if(o.length!==a.length)return!1;for(var s=Object.prototype.hasOwnProperty.bind(t),l=0;l{this.onShow()}})}showChildDrawer(e,t){this.setState({childDrawer:c()({},this.state.childDrawer,{visible:!this.state.childDrawer.visible,title:e,type:t})})}changeServer(e,t){this.setState({server:c()({},this.state.server,{[e]:t})})}formChange(e,t){this.setState({server:c()({},this.state.server,{[e]:t})})}render(){var e=this.state.server,t=this.props.serverShadowsocks.saveLoading,n=this.props.serverManage.servers,l=this.props.serverGroup.groups;return h.a.createElement(h.a.Fragment,null,h.a.cloneElement(this.props.children,{onClick:()=>this.setState({visible:!0})}),h.a.createElement(r["a"],{id:"server",maskClosable:!0,title:e.id?"\u7f16\u8f91\u8282\u70b9":"\u65b0\u5efa\u8282\u70b9",width:"80%",visible:this.state.visible,onClose:()=>this.onShow()},h.a.createElement("div",null,h.a.createElement("div",{className:"row"},h.a.createElement("div",{className:"form-group col-8"},h.a.createElement("label",null,"\u8282\u70b9\u540d\u79f0"),h.a.createElement(s["a"],{placeholder:"\u8bf7\u8f93\u5165\u8282\u70b9\u540d\u79f0",value:e.name,onChange:e=>this.formChange("name",e.target.value)})),h.a.createElement("div",{className:"form-group col-4"},h.a.createElement("label",null,"\u500d\u7387"),h.a.createElement(s["a"],{addonAfter:"x",placeholder:"\u8bf7\u8f93\u5165\u8282\u70b9\u500d\u7387",value:e.rate,onChange:e=>this.formChange("rate",e.target.value)}))),h.a.createElement("div",{className:"form-group"},h.a.createElement("label",null,"\u8282\u70b9\u6807\u7b7e"),h.a.createElement(a["a"],{mode:"tags",value:e.tags||[],style:{width:"100%"},placeholder:"\u8f93\u5165\u540e\u56de\u8f66\u6dfb\u52a0\u6807\u7b7e",onChange:e=>this.formChange("tags",e.length>0?e:null)})),h.a.createElement("div",{className:"form-group"},h.a.createElement("label",null,"\u6743\u9650\u7ec4 ",h.a.createElement(f["a"],null,h.a.createElement("a",{href:"javascript:(0);"},"\u6dfb\u52a0\u6743\u9650\u7ec4"))),h.a.createElement(a["a"],{mode:"multiple",value:e.group_id,placeholder:"\u8bf7\u9009\u62e9\u6743\u9650\u7ec4",style:{width:"100%"},onChange:e=>this.formChange("group_id",e)},l.map(e=>{return h.a.createElement(a["a"].Option,{key:e.id},e.name)}))),h.a.createElement("div",{className:"row"},h.a.createElement("div",{className:"form-group col-md-12 col-xs-12"},h.a.createElement("label",null,"\u8282\u70b9\u5730\u5740"),h.a.createElement(s["a"],{placeholder:"\u5730\u5740\u6216IP",value:e.host,onChange:e=>this.formChange("host",e.target.value)}))),h.a.createElement("div",{className:"row"},h.a.createElement("div",{className:"form-group col-md-6 col-xs-12"},h.a.createElement("label",null,"\u8fde\u63a5\u7aef\u53e3"),h.a.createElement(s["a"],{placeholder:"\u7528\u6237\u8fde\u63a5\u7aef\u53e3",value:e.port,onChange:e=>{this.formChange("port",e.target.value)}})),h.a.createElement("div",{className:"form-group col-md-6 col-xs-12"},h.a.createElement("label",null,"\u670d\u52a1\u7aef\u53e3"),h.a.createElement(s["a"],{placeholder:"\u670d\u52a1\u7aef\u5f00\u653e\u7aef\u53e3",value:e.server_port,onChange:e=>{this.formChange("server_port",e.target.value)}}))),h.a.createElement("div",{className:"form-group"},h.a.createElement("label",null,"\u52a0\u5bc6\u7b97\u6cd5"),h.a.createElement(a["a"],{value:e.cipher,onChange:e=>this.formChange("cipher",e),style:{width:"100%"}},h.a.createElement(a["a"].Option,{value:"aes-128-gcm"},"aes-128-gcm"),h.a.createElement(a["a"].Option,{value:"aes-256-gcm"},"aes-256-gcm"),h.a.createElement(a["a"].Option,{value:"chacha20-ietf-poly1305"},"chacha20-ietf-poly1305"))),h.a.createElement("div",{className:"form-group"},h.a.createElement("label",null,h.a.createElement(o["a"],{placement:"top"},"\u7236\u8282\u70b9 ",h.a.createElement("a",{target:"_blank",href:"https://docs.v2board.com/use/node.html#\u7236\u8282\u70b9\u4e0e\u5b50\u8282\u70b9\u5173\u7cfb"},"\u66f4\u591a\u89e3\u7b54"))),h.a.createElement(a["a"],{value:e.parent_id||"",onChange:e=>this.formChange("parent_id",e),style:{width:"100%"}},h.a.createElement(a["a"].Option,{value:""},"\u65e0"),n.map(t=>{if("shadowsocks"===t.type&&t.id!==e.id)return h.a.createElement(a["a"].Option,{key:Math.random(),value:t.id},t.name)})))),h.a.createElement("div",{className:"v2board-drawer-action"},h.a.createElement(i["a"],{style:{marginRight:8},onClick:()=>this.onShow()},"\u53d6\u6d88"),h.a.createElement(i["a"],{loading:t,onClick:()=>this.save(),type:"primary"},"\u63d0\u4ea4"))))}}t["a"]=Object(d["c"])(e=>{var t=e.serverShadowsocks,n=e.serverGroup,r=e.serverManage;return{serverShadowsocks:t,serverGroup:n,serverManage:r}})(p)},HCMe:function(e,t,n){n("Jaki")("Int32",4,function(e){return function(t,n,r){return e(this,t,n,r)}})},HXXR:function(e,t,n){"use strict";var r,i,o,a,s=n("FqPH"),l=n("c0Oy"),c=n("wHrr"),u=n("2a/h"),h=n("WGNW"),d=n("u8+u"),f=n("wYm8"),p=n("YEVI"),m=n("4o36"),g=n("VeyY"),v=n("vMx4").set,y=n("rTWY")(),b=n("+mmm"),w=n("NaAv"),x=n("08Qx"),_=n("tGd3"),C="Promise",S=l.TypeError,E=l.process,k=E&&E.versions,O=k&&k.v8||"",T=l[C],A="process"==u(E),M=function(){},P=i=b.f,R=!!function(){try{var e=T.resolve(1),t=(e.constructor={})[n("gL7N")("species")]=function(e){e(M,M)};return(A||"function"==typeof PromiseRejectionEvent)&&e.then(M)instanceof t&&0!==O.indexOf("6.6")&&-1===x.indexOf("Chrome/66")}catch(e){}}(),L=function(e){var t;return!(!d(e)||"function"!=typeof(t=e.then))&&t},D=function(e,t){if(!e._n){e._n=!0;var n=e._c;y(function(){var r=e._v,i=1==e._s,o=0,a=function(t){var n,o,a,s=i?t.ok:t.fail,l=t.resolve,c=t.reject,u=t.domain;try{s?(i||(2==e._h&&I(e),e._h=1),!0===s?n=r:(u&&u.enter(),n=s(r),u&&(u.exit(),a=!0)),n===t.promise?c(S("Promise-chain cycle")):(o=L(n))?o.call(n,l,c):l(n)):c(r)}catch(e){u&&!a&&u.exit(),c(e)}};while(n.length>o)a(n[o++]);e._c=[],e._n=!1,t&&!e._h&&j(e)})}},j=function(e){v.call(l,function(){var t,n,r,i=e._v,o=N(e);if(o&&(t=w(function(){A?E.emit("unhandledRejection",i,e):(n=l.onunhandledrejection)?n({promise:e,reason:i}):(r=l.console)&&r.error&&r.error("Unhandled promise rejection",i)}),e._h=A||N(e)?2:1),e._a=void 0,o&&t.e)throw t.v})},N=function(e){return 1!==e._h&&0===(e._a||e._c).length},I=function(e){v.call(l,function(){var t;A?E.emit("rejectionHandled",e):(t=l.onrejectionhandled)&&t({promise:e,reason:e._v})})},$=function(e){var t=this;t._d||(t._d=!0,t=t._w||t,t._v=e,t._s=2,t._a||(t._a=t._c.slice()),D(t,!0))},F=function(e){var t,n=this;if(!n._d){n._d=!0,n=n._w||n;try{if(n===e)throw S("Promise can't be resolved itself");(t=L(e))?y(function(){var r={_w:n,_d:!1};try{t.call(e,c(F,r,1),c($,r,1))}catch(e){$.call(r,e)}}):(n._v=e,n._s=1,D(n,!1))}catch(e){$.call({_w:n,_d:!1},e)}}};R||(T=function(e){p(this,T,C,"_h"),f(e),r.call(this);try{e(c(F,this,1),c($,this,1))}catch(e){$.call(this,e)}},r=function(e){this._c=[],this._a=void 0,this._s=0,this._d=!1,this._v=void 0,this._h=0,this._n=!1},r.prototype=n("zNw+")(T.prototype,{then:function(e,t){var n=P(g(this,T));return n.ok="function"!=typeof e||e,n.fail="function"==typeof t&&t,n.domain=A?E.domain:void 0,this._c.push(n),this._a&&this._a.push(n),this._s&&D(this,!1),n.promise},catch:function(e){return this.then(void 0,e)}}),o=function(){var e=new r;this.promise=e,this.resolve=c(F,e,1),this.reject=c($,e,1)},b.f=P=function(e){return e===T||e===a?new o(e):i(e)}),h(h.G+h.W+h.F*!R,{Promise:T}),n("lvAo")(T,C),n("gRqi")(C),a=n("bV5f")[C],h(h.S+h.F*!R,C,{reject:function(e){var t=P(this),n=t.reject;return n(e),t.promise}}),h(h.S+h.F*(s||!R),C,{resolve:function(e){return _(s&&this===a?T:this,e)}}),h(h.S+h.F*!(R&&n("cQyX")(function(e){T.all(e)["catch"](M)})),C,{all:function(e){var t=this,n=P(t),r=n.resolve,i=n.reject,o=w(function(){var n=[],o=0,a=1;m(e,!1,function(e){var s=o++,l=!1;n.push(void 0),a++,t.resolve(e).then(function(e){l||(l=!0,n[s]=e,--a||r(n))},i)}),--a||r(n)});return o.e&&i(o.v),n.promise},race:function(e){var t=this,n=P(t),r=n.reject,i=w(function(){m(e,!1,function(e){t.resolve(e).then(n.resolve,r)})});return i.e&&r(i.v),n.promise}})},Hfiw:function(e,t,n){var r=n("Y7ZC");r(r.S,"Object",{setPrototypeOf:n("6tYh").set})},Hsns:function(e,t,n){var r=n("93I4"),i=n("5T2Y").document,o=r(i)&&r(i.createElement);e.exports=function(e){return o?i.createElement(e):{}}},I1u9:function(e,t,n){"use strict";n("bbsP");var r=n("/wGt"),i=(n("+L6B"),n("2/Rp")),o=(n("5Dmo"),n("3S7+")),a=(n("OaEy"),n("2fM7")),s=(n("5NDa"),n("5rEg")),l=(n("Pwec"),n("CtXQ")),c=n("p0pE"),u=n.n(c),h=(n("/xke"),n("TeRw")),d=n("q1tI"),f=n.n(d),p=n("/MKj"),m=(n("/zsF"),n("PArb"));class g extends f.a.Component{constructor(e){super(e),this.state={settings:this.props.settings||{servers:[],hosts:{}}}}addHost(){this.state.settings.hosts}addServer(){var e=this.state.settings.servers,t={address:"",port:53,domains:[],expectIPs:[]};e.push(t),this.setState({settings:u()({},this.state.settings,{servers:e})},()=>{this.props.onChange(this.state.settings)})}dropServer(e){var t=this.state.settings.servers;t.splice(e,1),this.setState({settings:u()({},this.state.settings,{servers:t})},()=>{this.props.onChange(this.state.settings)})}changeServer(e,t,n){var r=this.state.settings.servers;"domains"===t?r[e].domains=n.split("\n"):r[e][t]=n,this.setState({settings:u()({},this.state.settings,{servers:r})},()=>{this.props.onChange(this.state.settings)})}render(){var e=this.state.settings.servers;return f.a.createElement(f.a.Fragment,null,f.a.createElement("div",{className:"form-group"},f.a.createElement("label",null,"DNS\u670d\u52a1\u5668\u8868"),e.map((e,t)=>{var n;return f.a.createElement("div",{key:t},f.a.createElement("div",{className:"row"},f.a.createElement(m["a"],{type:"horizontal"},e.address||"\u670d\u52a1\u5668\u7ec4".concat(t+1)," ",f.a.createElement(l["a"],{type:"delete",style:{color:"#ff4d4f"},onClick:()=>this.dropServer(t)})),f.a.createElement("div",{className:"form-group col-md-9 col-xs-12"},f.a.createElement("label",null,"DNS\u670d\u52a1\u5668\u5730\u5740"),f.a.createElement(s["a"],{placeholder:"\u8bf7\u8f93\u5165DNS\u670d\u52a1\u5668\u5730\u5740",value:e.address,onChange:e=>this.changeServer(t,"address",e.target.value)})),f.a.createElement("div",{className:"form-group col-md-3 col-xs-12"},f.a.createElement("label",null,"\u7aef\u53e3"),f.a.createElement(s["a"],{type:"number",placeholder:"\u7aef\u53e3",value:e.port,onChange:e=>this.changeServer(t,"port",parseInt(e.target.value))}))),f.a.createElement("div",{className:"form-group"},f.a.createElement("label",null,"\u57df\u540d"),f.a.createElement(s["a"].TextArea,{rows:5,onChange:e=>this.changeServer(t,"domains",e.target.value),value:null===(n=e.domains)||void 0===n?void 0:n.join("\n"),placeholder:"\u57df\u540d\u5217\u8868\uff0c\u6b64\u5217\u8868\u5305\u542b\u7684\u57df\u540d\uff0c\u5c06\u4f18\u5148\u4f7f\u7528\u6b64\u670d\u52a1\u5668\u8fdb\u884c\u67e5\u8be2\u3002\u4e00\u884c\u4e00\u6761"})))}),f.a.createElement("div",null,f.a.createElement(i["a"],{type:"primary",style:{width:"100%"},onClick:()=>this.addServer()},"\u6dfb\u52a0"))))}}class v extends f.a.Component{constructor(e){super(e);var t=this.props.settings;"{}"!==JSON.stringify(t)&&t||(t={domain:[],protocol:[]}),this.state={settings:t}}change(e,t){var n=this.state.settings;t=t.split("\n"),n[e]=t,this.setState({settings:n}),this.props.onChange(n)}render(){var e=this.state.settings,t=e.domain,n=e.protocol;return f.a.createElement(f.a.Fragment,null,f.a.createElement("div",{className:"form-group"},f.a.createElement("label",null,"\u57df\u540d\u8fc7\u6ee4\u5668"),f.a.createElement(s["a"].TextArea,{value:t&&t.join("\n"),onChange:e=>this.change("domain",e.target.value),rows:5})),f.a.createElement("div",{className:"form-group"},f.a.createElement("label",null,"\u534f\u8bae\u8fc7\u6ee4\u5668"),f.a.createElement(s["a"].TextArea,{value:n&&n.join("\n"),onChange:e=>this.change("protocol",e.target.value),rows:5})))}}n("BoS7");var y=n("Sdc0");class b extends f.a.Component{constructor(e){super(e);var t=this.props.settings;"{}"!==JSON.stringify(t)&&t||(t={serverName:"",allowInsecure:0}),this.state={settings:t}}change(e,t){var n=this.state.settings;n[e]=t,this.setState({settings:n}),this.props.onChange(this.state.settings)}render(){var e=this.state.settings,t=e.serverName,n=e.allowInsecure;return f.a.createElement(f.a.Fragment,null,f.a.createElement("div",null,f.a.createElement("div",{className:"form-group"},f.a.createElement("label",null,"Server Name"),f.a.createElement(s["a"],{value:t,onChange:e=>this.change("serverName",e.target.value),placeholder:"\u4e0d\u4f7f\u7528\u8bf7\u7559\u7a7a"})),f.a.createElement("div",{className:"form-group"},f.a.createElement("label",null,"Allow Insecure"),f.a.createElement("div",null,f.a.createElement(y["a"],{checked:parseInt(n),onChange:e=>this.change("allowInsecure",e?"1":"0")})))))}}var w=n("lc5D"),x=n.n(w);n("VeWa"),n("umNf"),n("t3Un");var _=n("8zNj");class C extends f.a.Component{constructor(e){super(e),this.state={server:this.props.record||{tls:0,rate:1,alter_id:1},visible:!1,childDrawer:{visible:!1}}}onShow(){if(this.setState({visible:!this.state.visible}),"object"===typeof this.state.server.networkSettings){var e=this.state.server;e["networkSettings"]=JSON.stringify(e["networkSettings"],null,2),this.setState({server:e})}}save(){try{var e,t,n=this.state.server;"string"===typeof n.networkSettings&&(n.networkSettings=JSON.parse(n.networkSettings)),(null===(e=n.dnsSettings)||void 0===e?void 0:null===(t=e.servers)||void 0===t?void 0:t.length)||(n.dnsSettings=null),console.log(n),this.props.dispatch({type:"serverV2ray/save",params:n,callback:()=>{this.onShow()}})}catch(e){h["a"].error({message:"\u8bf7\u6c42\u5931\u8d25",description:"\u4f20\u8f93\u534f\u8bae\u914d\u7f6e\u683c\u5f0f\u6709\u8bef"})}}showChildDrawer(e,t){this.setState({childDrawer:u()({},this.state.childDrawer,{visible:!this.state.childDrawer.visible,title:e,type:t})})}changeServer(e,t){this.setState({server:u()({},this.state.server,{[e]:t})})}renderChildDrawer(){var e=this.state.server,t=e.networkSettings,n=e.ruleSettings,r=e.tlsSettings,i=e.dnsSettings;switch(this.state.childDrawer.type){case"networkSettings":var o={tcp:"",ws:JSON.stringify({path:"/",headers:{Host:"v2ray.com"}},null,4),grpc:JSON.stringify({serviceName:"GunService"},null,4)};return f.a.createElement("div",{id:"v2ray-protocol"},f.a.createElement("div",{className:"form-group"},f.a.createElement("label",null,"\u534f\u8bae\u8be6\u7ec6\u914d\u7f6e",f.a.createElement("a",{href:"https://www.v2ray.com/chapter_02/05_transport.html"},f.a.createElement(l["a"],{type:"link"}),"\u53c2\u8003")),f.a.createElement(x.a,{placeholder:(null===o||void 0===o?void 0:o[this.state.server.network])||"",mode:"json",theme:"github",fontSize:14,showPrintMargin:!0,showGutter:!0,highlightActiveLine:!0,value:t||"",onChange:e=>this.formChange("networkSettings",e),setOptions:{enableBasicAutocompletion:!1,enableLiveAutocompletion:!1,enableSnippets:!1,showLineNumbers:!0,tabSize:2},ref:"editor"})));case"ruleSettings":return f.a.createElement(v,{settings:n,onChange:e=>this.changeServer("ruleSettings",e)});case"tlsSettings":return f.a.createElement(b,{settings:r,onChange:e=>this.changeServer("tlsSettings",e)});case"dnsSettings":return f.a.createElement(g,{settings:i,onChange:e=>this.changeServer("dnsSettings",e)})}}formChange(e,t){this.refs.editor&&this.refs.editor.editor.resize();var n=this.state.server;n[e]=t,this.setState({server:n})}render(){var e=this.state.server,t=this.props.serverV2ray.saveLoading,n=this.props.serverManage.servers,c=this.props.serverGroup.groups;return f.a.createElement(f.a.Fragment,null,f.a.cloneElement(this.props.children,{onClick:()=>this.onShow()}),f.a.createElement(r["a"],{id:"server",maskClosable:!0,title:e.id?"\u7f16\u8f91\u8282\u70b9":"\u65b0\u5efa\u8282\u70b9",width:"80%",visible:this.state.visible,onClose:()=>this.onShow()},f.a.createElement("div",null,f.a.createElement("div",{className:"row"},f.a.createElement("div",{className:"form-group col-8"},f.a.createElement("label",null,"\u8282\u70b9\u540d\u79f0"),f.a.createElement(s["a"],{placeholder:"\u8bf7\u8f93\u5165\u8282\u70b9\u540d\u79f0",value:e.name,onChange:e=>this.formChange("name",e.target.value)})),f.a.createElement("div",{className:"form-group col-4"},f.a.createElement("label",null,"\u500d\u7387"),f.a.createElement(s["a"],{addonAfter:"x",placeholder:"\u8bf7\u8f93\u5165\u8282\u70b9\u500d\u7387",value:e.rate,onChange:e=>this.formChange("rate",e.target.value)}))),f.a.createElement("div",{className:"form-group"},f.a.createElement("label",null,"\u8282\u70b9\u6807\u7b7e"),f.a.createElement(a["a"],{mode:"tags",value:e.tags||[],style:{width:"100%"},placeholder:"\u8f93\u5165\u540e\u56de\u8f66\u6dfb\u52a0\u6807\u7b7e",onChange:e=>this.formChange("tags",e.length>0?e:null)})),f.a.createElement("div",{className:"form-group"},f.a.createElement("label",null,"\u6743\u9650\u7ec4 ",f.a.createElement(_["a"],null,f.a.createElement("a",{href:"javascript:(0);"},"\u6dfb\u52a0\u6743\u9650\u7ec4"))),f.a.createElement(a["a"],{mode:"multiple",value:e.group_id,placeholder:"\u8bf7\u9009\u62e9\u6743\u9650\u7ec4",style:{width:"100%"},onChange:e=>this.formChange("group_id",e)},c.map(e=>{return f.a.createElement(a["a"].Option,{key:e.id},e.name)}))),f.a.createElement("div",{className:"row"},f.a.createElement("div",{className:"form-group col-md-8 col-xs-12"},f.a.createElement("label",null,"\u8282\u70b9\u5730\u5740"),f.a.createElement(s["a"],{placeholder:"\u8bf7\u8f93\u5165\u8fde\u63a5\u5730\u5740",value:e.host,onChange:e=>this.formChange("host",e.target.value)})),f.a.createElement("div",{className:"form-group col-md-4 col-xs-12"},f.a.createElement("label",null,f.a.createElement(o["a"],{placement:"top",title:"\u652f\u6301TLS\u9700\u8981\u5148\u5728\u8282\u70b9\u670d\u52a1\u5668 /root/.cert/ \u76ee\u5f55\u653e\u7f6e\u8bc1\u4e66"},"TLS ",f.a.createElement(l["a"],{type:"question-circle"}))," ",f.a.createElement("a",{href:"javascript:void(0);",onClick:()=>this.showChildDrawer("\u7f16\u8f91TLS\u914d\u7f6e","tlsSettings")},"\u7f16\u8f91\u914d\u7f6e")),f.a.createElement(a["a"],{value:parseInt(e.tls)?1:0,placeholder:"\u662f\u5426\u652f\u6301TLS",style:{width:"100%"},onChange:e=>this.formChange("tls",e)},f.a.createElement(a["a"].Option,{key:0,value:0},"\u4e0d\u652f\u6301"),f.a.createElement(a["a"].Option,{key:1,value:1},"\u652f\u6301")))),f.a.createElement("div",{className:"row"},f.a.createElement("div",{className:"form-group col-md-6 col-xs-12"},f.a.createElement("label",null,"\u8fde\u63a5\u7aef\u53e3"),f.a.createElement(s["a"],{placeholder:"\u7528\u6237\u8fde\u63a5\u7aef\u53e3",value:e.port,onChange:e=>{this.formChange("port",e.target.value)}})),f.a.createElement("div",{className:"form-group col-md-6 col-xs-12"},f.a.createElement("label",null,"\u670d\u52a1\u7aef\u53e3"),f.a.createElement(s["a"],{placeholder:"\u975eNAT\u540c\u8fde\u63a5\u7aef\u53e3",value:e.server_port,onChange:e=>this.formChange("server_port",e.target.value)}))),f.a.createElement("div",{className:"row"},f.a.createElement("div",{className:"form-group col-md-4 col-xs-12"},f.a.createElement("label",null,"AlterID"),f.a.createElement(s["a"],{type:"number",min:0,max:65535,value:e.alter_id,onChange:e=>this.formChange("alter_id",e.target.value)})),f.a.createElement("div",{className:"form-group col-md-8 col-xs-12"},f.a.createElement("label",null,"\u4f20\u8f93\u534f\u8bae ",f.a.createElement("a",{href:"javascript:void(0);",onClick:()=>this.showChildDrawer("\u7f16\u8f91\u534f\u8bae\u914d\u7f6e","networkSettings")},"\u7f16\u8f91\u914d\u7f6e")),f.a.createElement(a["a"],{value:e.network,placeholder:"\u9009\u62e9\u4f20\u8f93\u534f\u8bae",style:{width:"100%"},onChange:e=>this.formChange("network",e)},f.a.createElement(a["a"].Option,{value:"tcp"},"TCP"),f.a.createElement(a["a"].Option,{value:"ws"},"WebSocket"),f.a.createElement(a["a"].Option,{value:"grpc"},"gRPC")))),f.a.createElement("div",{className:"form-group"},f.a.createElement("label",null,f.a.createElement(o["a"],{placement:"top"},"\u7236\u8282\u70b9 ",f.a.createElement("a",{target:"_blank",href:"https://docs.v2board.com/use/node.html#\u7236\u8282\u70b9\u4e0e\u5b50\u8282\u70b9\u5173\u7cfb",rel:"noreferrer"},f.a.createElement(l["a"],{type:"read"})))),f.a.createElement(a["a"],{value:e.parent_id||"",onChange:e=>this.formChange("parent_id",e),style:{width:"100%"}},f.a.createElement(a["a"].Option,{value:""},"\u65e0"),n.map(t=>{if("v2ray"===t.type&&t.id!==e.id)return f.a.createElement(a["a"].Option,{key:Math.random(),value:t.id},t.name)}))),f.a.createElement("div",{className:"form-group"},f.a.createElement("label",null,f.a.createElement(o["a"],{placement:"top",title:"\u89c4\u5219\u5185\u7684\u8bbf\u95ee\u5c06\u4f1a\u88ab\u62d2\u7edd"},"\u5ba1\u8ba1\u89c4\u5219 ",f.a.createElement(l["a"],{type:"question-circle"}))),f.a.createElement("div",null,f.a.createElement(i["a"],{type:"primary",style:{width:"100%"},onClick:()=>this.showChildDrawer("\u7f16\u8f91\u5ba1\u8ba1\u89c4\u5219","ruleSettings")},"\u7f16\u8f91\u89c4\u5219"))),f.a.createElement("div",{className:"form-group"},f.a.createElement("label",null,"DNS\u89c4\u5219 ",f.a.createElement(l["a"],{type:"question-circle"})),f.a.createElement("div",null,f.a.createElement(i["a"],{type:"primary",style:{width:"100%"},onClick:()=>this.showChildDrawer("\u7f16\u8f91DNS\u89c4\u5219","dnsSettings")},"\u7f16\u8f91DNS\u89c4\u5219")))),f.a.createElement("div",{className:"v2board-drawer-action"},f.a.createElement(i["a"],{style:{marginRight:8},onClick:()=>this.onShow()},"\u53d6\u6d88"),f.a.createElement(i["a"],{loading:t,onClick:()=>this.save(),type:"primary"},"\u63d0\u4ea4")),f.a.createElement(r["a"],{closable:!1,id:"server",width:"80%",title:this.state.childDrawer.title,visible:this.state.childDrawer.visible,onClose:()=>this.showChildDrawer()},this.renderChildDrawer())))}}t["a"]=Object(p["c"])(e=>{var t=e.serverV2ray,n=e.serverGroup,r=e.serverManage;return{serverV2ray:t,serverGroup:n,serverManage:r}})(C)},IMiH:function(e,t,n){"use strict";n.d(t,"b",function(){return k});var r=n("QBsz"),i=n("mFDi"),o=n("LPTA"),a=n("4mN7"),s=n("Sj9i"),l={M:1,L:2,C:3,Q:4,A:5,Z:6,R:7},c=[],u=[],h=[],d=[],f=[],p=[],m=Math.min,g=Math.max,v=Math.cos,y=Math.sin,b=Math.sqrt,w=Math.abs,x=Math.PI,_=2*x,C="undefined"!==typeof Float32Array,S=[];function E(e){var t=Math.round(e/x*1e8)/1e8;return t%2*x}function k(e,t){var n=E(e[0]);n<0&&(n+=_);var r=n-e[0],i=e[1];i+=r,!t&&i-n>=_?i=n+_:t&&n-i>=_?i=n-_:!t&&n>i?i=n+(_-E(n-i)):t&&n0&&(this._ux=w(n/o["e"]/e)||0,this._uy=w(n/o["e"]/t)||0)},e.prototype.setDPR=function(e){this.dpr=e},e.prototype.setContext=function(e){this._ctx=e},e.prototype.getContext=function(){return this._ctx},e.prototype.beginPath=function(){return this._ctx&&this._ctx.beginPath(),this.reset(),this},e.prototype.reset=function(){this._saveData&&(this._len=0),this._lineDash&&(this._lineDash=null,this._dashOffset=0),this._pathSegLen&&(this._pathSegLen=null,this._pathLen=0),this._version++},e.prototype.moveTo=function(e,t){return this._drawPendingPt(),this.addData(l.M,e,t),this._ctx&&this._ctx.moveTo(e,t),this._x0=e,this._y0=t,this._xi=e,this._yi=t,this},e.prototype.lineTo=function(e,t){var n=w(e-this._xi),r=w(t-this._yi),i=n>this._ux||r>this._uy;if(this.addData(l.L,e,t),this._ctx&&i&&(this._needsDash?this._dashedLineTo(e,t):this._ctx.lineTo(e,t)),i)this._xi=e,this._yi=t,this._pendingPtDist=0;else{var o=n*n+r*r;o>this._pendingPtDist&&(this._pendingPtX=e,this._pendingPtY=t,this._pendingPtDist=o)}return this},e.prototype.bezierCurveTo=function(e,t,n,r,i,o){return this._drawPendingPt(),this.addData(l.C,e,t,n,r,i,o),this._ctx&&(this._needsDash?this._dashedBezierTo(e,t,n,r,i,o):this._ctx.bezierCurveTo(e,t,n,r,i,o)),this._xi=i,this._yi=o,this},e.prototype.quadraticCurveTo=function(e,t,n,r){return this._drawPendingPt(),this.addData(l.Q,e,t,n,r),this._ctx&&(this._needsDash?this._dashedQuadraticTo(e,t,n,r):this._ctx.quadraticCurveTo(e,t,n,r)),this._xi=n,this._yi=r,this},e.prototype.arc=function(e,t,n,r,i,o){this._drawPendingPt(),S[0]=r,S[1]=i,k(S,o),r=S[0],i=S[1];var a=i-r;return this.addData(l.A,e,t,n,n,r,a,0,o?0:1),this._ctx&&this._ctx.arc(e,t,n,r,i,o),this._xi=v(i)*n+e,this._yi=y(i)*n+t,this},e.prototype.arcTo=function(e,t,n,r,i){return this._drawPendingPt(),this._ctx&&this._ctx.arcTo(e,t,n,r,i),this},e.prototype.rect=function(e,t,n,r){return this._drawPendingPt(),this._ctx&&this._ctx.rect(e,t,n,r),this.addData(l.R,e,t,n,r),this},e.prototype.closePath=function(){this._drawPendingPt(),this.addData(l.Z);var e=this._ctx,t=this._x0,n=this._y0;return e&&(this._needsDash&&this._dashedLineTo(t,n),e.closePath()),this._xi=t,this._yi=n,this},e.prototype.fill=function(e){e&&e.fill(),this.toStatic()},e.prototype.stroke=function(e){e&&e.stroke(),this.toStatic()},e.prototype.setLineDash=function(e){if(e instanceof Array){this._lineDash=e,this._dashIdx=0;for(var t=0,n=0;nc.length&&(this._expandData(),c=this.data);for(var u=0;u0&&(this._ctx&&this._ctx.lineTo(this._pendingPtX,this._pendingPtY),this._pendingPtDist=0)},e.prototype._expandData=function(){if(!(this.data instanceof Array)){for(var e=[],t=0;t0&&f<=e||u<0&&f>=e||0===u&&(h>0&&p<=t||h<0&&p>=t))r=this._dashIdx,n=o[r],f+=u*n,p+=h*n,this._dashIdx=(r+1)%v,u>0&&fl||h>0&&pc||a[r%2?"moveTo":"lineTo"](u>=0?m(f,e):g(f,e),h>=0?m(p,t):g(p,t));u=f-e,h=p-t,this._dashOffset=-b(u*u+h*h)},e.prototype._dashedBezierTo=function(e,t,n,r,i,o){var a,l,c,u,h,d=this._ctx,f=this._dashSum,p=this._dashOffset,m=this._lineDash,g=this._xi,v=this._yi,y=0,w=this._dashIdx,x=m.length,_=0;for(p<0&&(p=f+p),p%=f,a=0;a<1;a+=.1)l=Object(s["a"])(g,e,n,i,a+.1)-Object(s["a"])(g,e,n,i,a),c=Object(s["a"])(v,t,r,o,a+.1)-Object(s["a"])(v,t,r,o,a),y+=b(l*l+c*c);for(;wp)break;a=(_-p)/y;while(a<=1)u=Object(s["a"])(g,e,n,i,a),h=Object(s["a"])(v,t,r,o,a),w%2?d.moveTo(u,h):d.lineTo(u,h),a+=m[w]/y,w=(w+1)%x;w%2!==0&&d.lineTo(i,o),l=i-u,c=o-h,this._dashOffset=-b(l*l+c*c)},e.prototype._dashedQuadraticTo=function(e,t,n,r){var i=n,o=r;n=(n+2*e)/3,r=(r+2*t)/3,e=(this._xi+2*e)/3,t=(this._yi+2*t)/3,this._dashedBezierTo(e,t,n,r,i,o)},e.prototype.toStatic=function(){if(this._saveData){this._drawPendingPt();var e=this.data;e instanceof Array&&(e.length=this._len,C&&this._len>11&&(this.data=new Float32Array(e)))}},e.prototype.getBoundingRect=function(){h[0]=h[1]=f[0]=f[1]=Number.MAX_VALUE,d[0]=d[1]=p[0]=p[1]=-Number.MAX_VALUE;var e,t=this.data,n=0,o=0,s=0,c=0;for(e=0;en||w(k)>r||f===t-1)&&(x=Math.sqrt(E*E+k*k),i=C,o=S);break;case l.C:var O=e[f++],T=e[f++],A=(C=e[f++],S=e[f++],e[f++]),M=e[f++];x=Object(s["d"])(i,o,O,T,C,S,A,M,10),i=A,o=M;break;case l.Q:O=e[f++],T=e[f++],C=e[f++],S=e[f++];x=Object(s["k"])(i,o,O,T,C,S,10),i=C,o=S;break;case l.A:var P=e[f++],R=e[f++],L=e[f++],D=e[f++],j=e[f++],N=e[f++],I=N+j;f+=1;e[f++];b&&(a=v(j)*L+P,c=y(j)*D+R),x=g(L,D)*m(_,Math.abs(N)),i=v(I)*L+P,o=y(I)*D+R;break;case l.R:a=i=e[f++],c=o=e[f++];var $=e[f++],F=e[f++];x=2*$+2*F;break;case l.Z:E=a-i,k=c-o;x=Math.sqrt(E*E+k*k),i=a,o=c;break}x>=0&&(u[d++]=x,h+=x)}return this._pathLen=h,h},e.prototype.rebuildPath=function(e,t){var n,r,i,o,a,h,d,f,p,b,x,_=this.data,C=this._ux,S=this._uy,E=this._len,k=t<1,O=0,T=0,A=0;if(!k||(this._pathSegLen||this._calculateLength(),d=this._pathSegLen,f=this._pathLen,p=t*f,p))e:for(var M=0;M0&&(e.lineTo(b,x),A=0),P){case l.M:n=i=_[M++],r=o=_[M++],e.moveTo(i,o);break;case l.L:a=_[M++],h=_[M++];var L=w(a-i),D=w(h-o);if(L>C||D>S){if(k){var j=d[T++];if(O+j>p){var N=(p-O)/j;e.lineTo(i*(1-N)+a*N,o*(1-N)+h*N);break e}O+=j}e.lineTo(a,h),i=a,o=h,A=0}else{var I=L*L+D*D;I>A&&(b=a,x=h,A=I)}break;case l.C:var $=_[M++],F=_[M++],V=_[M++],B=_[M++],W=_[M++],H=_[M++];if(k){j=d[T++];if(O+j>p){N=(p-O)/j;Object(s["g"])(i,$,V,W,N,c),Object(s["g"])(o,F,B,H,N,u),e.bezierCurveTo(c[1],u[1],c[2],u[2],c[3],u[3]);break e}O+=j}e.bezierCurveTo($,F,V,B,W,H),i=W,o=H;break;case l.Q:$=_[M++],F=_[M++],V=_[M++],B=_[M++];if(k){j=d[T++];if(O+j>p){N=(p-O)/j;Object(s["n"])(i,$,V,N,c),Object(s["n"])(o,F,B,N,u),e.quadraticCurveTo(c[1],u[1],c[2],u[2]);break e}O+=j}e.quadraticCurveTo($,F,V,B),i=V,o=B;break;case l.A:var z=_[M++],U=_[M++],q=_[M++],K=_[M++],G=_[M++],Y=_[M++],X=_[M++],Q=!_[M++],Z=q>K?q:K,J=w(q-K)>.001,ee=G+Y,te=!1;if(k){j=d[T++];O+j>p&&(ee=G+Y*(p-O)/j,te=!0),O+=j}if(J&&e.ellipse?e.ellipse(z,U,q,K,X,G,ee,Q):e.arc(z,U,Z,G,ee,Q),te)break e;R&&(n=v(G)*q+z,r=y(G)*K+U),i=v(ee)*q+z,o=y(ee)*K+U;break;case l.R:n=i=_[M],r=o=_[M+1],a=_[M++],h=_[M++];var ne=_[M++],re=_[M++];if(k){j=d[T++];if(O+j>p){var ie=p-O;e.moveTo(a,h),e.lineTo(a+m(ie,ne),h),ie-=ne,ie>0&&e.lineTo(a+ne,h+m(ie,re)),ie-=re,ie>0&&e.lineTo(a+g(ne-ie,0),h+re),ie-=ne,ie>0&&e.lineTo(a,h+g(re-ie,0));break e}O+=j}e.rect(a,h,ne,re);break;case l.Z:if(k){j=d[T++];if(O+j>p){N=(p-O)/j;e.lineTo(i*(1-N)+n*N,o*(1-N)+r*N);break e}O+=j}e.closePath(),i=n,o=r}}},e.prototype.clone=function(){var t=new e,n=this.data;return t.data=n.slice?n.slice():Array.prototype.slice.call(n),t._len=this._len,t},e.CMD=l,e.initDefaultProps=function(){var t=e.prototype;t._saveData=!0,t._needsDash=!1,t._dashOffset=0,t._dashIdx=0,t._dashSum=0,t._ux=0,t._uy=0,t._pendingPtDist=0,t._version=0}(),e}();t["a"]=O},IR7R:function(e,t,n){"use strict";var r=n("WGNW"),i=n("Y/ne"),o=n("08Qx"),a=/Version\/10\.\d+(\.\d+)?( Mobile\/\w+)? Safari\//.test(o);r(r.P+r.F*a,"String",{padEnd:function(e){return i(this,e,arguments.length>1?arguments[1]:void 0,!1)}})},IX3V:function(e,t){function n(e,t){var n,r=0,i=e.length;for(r;r18),a&&(n.weChat=!0),t.canvasSupported=!!document.createElement("canvas").getContext,t.svgSupported="undefined"!==typeof SVGRect,t.touchEventsSupported="ontouchstart"in window&&!n.ie&&!n.edge,t.pointerEventsSupported="onpointerdown"in window&&(n.edge||n.ie&&+n.version>=11),t.domSupported="undefined"!==typeof document;var s=document.documentElement.style;t.transform3dSupported=(n.ie&&"transition"in s||n.edge||"WebKitCSSMatrix"in window&&"m11"in new WebKitCSSMatrix||"MozPerspective"in s)&&!("OTransition"in s),t.transformSupported=t.transform3dSupported||n.ie&&+n.version>=9}"object"===typeof wx&&"function"===typeof wx.getSystemInfoSync?(o.wxa=!0,o.canvasSupported=!0,o.touchEventsSupported=!0):"undefined"===typeof document&&"undefined"!==typeof self?(o.worker=!0,o.canvasSupported=!0):"undefined"===typeof navigator?(o.node=!0,o.canvasSupported=!0,o.svgSupported=!0):a(navigator.userAgent,o),t["a"]=o},IuST:function(e,t){function n(e,t){var n=[],r=!0,i=!1,o=void 0;try{for(var a,s=e[Symbol.iterator]();!(r=(a=s.next()).done);r=!0)if(n.push(a.value),t&&n.length===t)break}catch(e){i=!0,o=e}finally{try{r||null==s["return"]||s["return"]()}finally{if(i)throw o}}return n}e.exports=n},"J57/":function(e,t,n){var r=n("VyuQ")("keys"),i=n("kCK5");e.exports=function(e){return r[e]||(r[e]=i(e))}},JB68:function(e,t,n){var r=n("Jes0");e.exports=function(e){return Object(r(e))}},JDzL:function(e,t,n){"use strict";var r=n("QbLZ"),i=n.n(r),o=n("iCc5"),a=n.n(o),s=n("FYw3"),l=n.n(s),c=n("mRg0"),u=n.n(c),h=n("q1tI"),d=n.n(h),f=n("i8i4"),p=n.n(f),m=n("17x9"),g=n.n(m),v=n("ubZd"),y=n("TSYQ"),b=n.n(y),w=n("JUxu"),x=n("YVYq"),_=n("mwkM"),C=function(e){function t(){return a()(this,t),l()(this,e.apply(this,arguments))}return u()(t,e),t.prototype.onSelect=function(e){this.props.onSelect(e)},t.prototype.getRootDOMNode=function(){return p.a.findDOMNode(this)},t.prototype.render=function(){var e=this.props,t=e.value,n=e.prefixCls,r=e.showOk,o=e.timePicker,a=e.renderFooter,s=e.mode,l=null,c=a&&a(s);if(e.showToday||o||c){var u,h=void 0;e.showToday&&(h=d.a.createElement(w["a"],i()({},e,{value:t})));var f=void 0;(!0===r||!1!==r&&e.timePicker)&&(f=d.a.createElement(x["a"],e));var p=void 0;e.timePicker&&(p=d.a.createElement(_["a"],e));var m=void 0;(h||p||f||c)&&(m=d.a.createElement("span",{className:n+"-footer-btn"},c,Object(v["a"])([h,p,f])));var g=b()(n+"-footer",(u={},u[n+"-footer-show-ok"]=f,u));l=d.a.createElement("div",{className:g},m)}return l},t}(d.a.Component);C.propTypes={prefixCls:g.a.string,showDateInput:g.a.bool,disabledTime:g.a.any,timePicker:g.a.element,selectedValue:g.a.any,showOk:g.a.bool,onSelect:g.a.func,value:g.a.object,renderFooter:g.a.func,defaultValue:g.a.object,mode:g.a.string},t["a"]=C},JUxu:function(e,t,n){"use strict";n.d(t,"a",function(){return a});var r=n("q1tI"),i=n.n(r),o=n("GrtH");function a(e){var t=e.prefixCls,n=e.locale,r=e.value,a=e.timePicker,s=e.disabled,l=e.disabledDate,c=e.onToday,u=e.text,h=(!u&&a?n.now:u)||n.today,d=l&&!Object(o["g"])(Object(o["e"])(r),l),f=d||s,p=f?t+"-today-btn-disabled":"";return i.a.createElement("a",{className:t+"-today-btn "+p,role:"button",onClick:f?null:c,title:Object(o["f"])(r)},h)}},JZE9:function(e,t,n){"use strict";n.r(t);var r=n("jehZ"),i=n.n(r),o=(n("2qtc"),n("kLXV")),a=(n("5NDa"),n("5rEg")),s=(n("g9YV"),n("wCAj")),l=(n("+L6B"),n("2/Rp")),c=(n("Pwec"),n("CtXQ")),u=(n("/zsF"),n("PArb")),h=n("p0pE"),d=n.n(h),f=n("q1tI"),p=n.n(f),m=n("Bl7J"),g=n("wd/R"),v=n.n(g),y=n("/MKj");class b extends p.a.Component{constructor(e){super(e),this.state={visible:!1,submit:{},notices:[]}}componentDidMount(){this.props.dispatch({type:"notice/fetch"})}modalVisible(){this.setState({visible:!this.state.visible},()=>{this.state.visible||this.setState({submit:{}})})}save(){this.props.dispatch({type:"notice/save",params:d()({},this.state.submit),callback:()=>{this.modalVisible()}})}drop(e){this.props.dispatch({type:"notice/drop",id:e.id})}render(){var e=this.props.notice,t=e.notices,n=e.fetchLoading,r=[{title:"#",dataIndex:"id",key:"id"},{title:"\u6807\u9898",dataIndex:"title",key:"title"},{title:"\u521b\u5efa\u65f6\u95f4",dataIndex:"created_at",key:"created_at",align:"right",render:e=>{return v()(1e3*e).format("YYYY/MM/DD HH:mm")}},{title:"\u64cd\u4f5c",dataIndex:"action",key:"action",align:"right",render:(e,n,r)=>{return p.a.createElement("div",null,p.a.createElement("a",{onClick:()=>this.setState({submit:t[r]},()=>this.modalVisible()),href:"javascript:void(0);"},"\u7f16\u8f91"),p.a.createElement(u["a"],{type:"vertical"}),p.a.createElement("a",{onClick:()=>this.drop(n),href:"javascript:void(0);"},"\u5220\u9664"))}}];return p.a.createElement(m["a"],i()({},this.props,{title:"\u516c\u544a\u7ba1\u7406"}),p.a.createElement("div",{className:"d-flex justify-content-between align-items-center"}),p.a.createElement("div",{className:"block block-rounded ".concat(n?"block-mode-loading":"")},p.a.createElement("div",{className:"bg-white"},p.a.createElement("div",{style:{padding:15}},p.a.createElement(l["a"],{onClick:()=>this.modalVisible()},p.a.createElement(c["a"],{type:"plus"})," \u6dfb\u52a0\u516c\u544a")),p.a.createElement(s["a"],{tableLayout:"auto",dataSource:t,pagination:!1,columns:r,scroll:{x:950}}))),p.a.createElement(o["a"],{title:"".concat(this.state.submit.id?"\u7f16\u8f91\u516c\u544a":"\u65b0\u5efa\u516c\u544a"),visible:this.state.visible,onCancel:()=>this.modalVisible(),onOk:()=>this.state.saveLoading||this.save(),okText:this.state.saveLoading?p.a.createElement(c["a"],{type:"loading"}):"\u63d0\u4ea4",cancelText:"\u53d6\u6d88"},p.a.createElement("div",null,p.a.createElement("div",{className:"form-group"},p.a.createElement("label",{for:"example-text-input-alt"},"\u6807\u9898"),p.a.createElement(a["a"],{placeholder:"\u8bf7\u8f93\u5165\u516c\u544a\u6807\u9898",value:this.state.submit.title,onChange:e=>{this.setState({submit:d()({},this.state.submit,{title:e.target.value})})}})),p.a.createElement("div",{className:"form-group"},p.a.createElement("label",{for:"example-text-input-alt"},"\u516c\u544a\u5185\u5bb9"),p.a.createElement(a["a"].TextArea,{rows:12,value:this.state.submit.content,placeholder:"\u8bf7\u8f93\u5165\u516c\u544a\u5185\u5bb9",onChange:e=>{this.setState({submit:d()({},this.state.submit,{content:e.target.value})})}})),p.a.createElement("div",{className:"form-group"},p.a.createElement("label",{for:"example-text-input-alt"},"\u56fe\u7247URL"),p.a.createElement(a["a"],{placeholder:"\u8bf7\u8f93\u5165\u56fe\u7247URL",value:this.state.submit.img_url,onChange:e=>{this.setState({submit:d()({},this.state.submit,{img_url:e.target.value})})}})))))}}t["default"]=Object(y["c"])(e=>{var t=e.notice;return{notice:t}})(b)},Jaki:function(e,t,n){"use strict";if(n("8Z/V")){var r=n("FqPH"),i=n("c0Oy"),o=n("wUWy"),a=n("WGNW"),s=n("88Vn"),l=n("yLMY"),c=n("wHrr"),u=n("YEVI"),h=n("pQGJ"),d=n("VPOE"),f=n("zNw+"),p=n("AUWw"),m=n("OsVd"),g=n("nYLq"),v=n("Spc3"),y=n("8BMt"),b=n("oxo0"),w=n("2a/h"),x=n("u8+u"),_=n("il4q"),C=n("ULMT"),S=n("/Mfd"),E=n("BFt8"),k=n("9HFh").f,O=n("BnQZ"),T=n("kCK5"),A=n("gL7N"),M=n("+o5p"),P=n("Lnex"),R=n("VeyY"),L=n("OERk"),D=n("yw4e"),j=n("cQyX"),N=n("gRqi"),I=n("7Uk0"),$=n("wlPd"),F=n("V5/1"),V=n("15BC"),B=F.f,W=V.f,H=i.RangeError,z=i.TypeError,U=i.Uint8Array,q="ArrayBuffer",K="Shared"+q,G="BYTES_PER_ELEMENT",Y="prototype",X=Array[Y],Q=l.ArrayBuffer,Z=l.DataView,J=M(0),ee=M(2),te=M(3),ne=M(4),re=M(5),ie=M(6),oe=P(!0),ae=P(!1),se=L.values,le=L.keys,ce=L.entries,ue=X.lastIndexOf,he=X.reduce,de=X.reduceRight,fe=X.join,pe=X.sort,me=X.slice,ge=X.toString,ve=X.toLocaleString,ye=A("iterator"),be=A("toStringTag"),we=T("typed_constructor"),xe=T("def_constructor"),_e=s.CONSTR,Ce=s.TYPED,Se=s.VIEW,Ee="Wrong length!",ke=M(1,function(e,t){return Pe(R(e,e[xe]),t)}),Oe=o(function(){return 1===new U(new Uint16Array([1]).buffer)[0]}),Te=!!U&&!!U[Y].set&&o(function(){new U(1).set({})}),Ae=function(e,t){var n=p(e);if(n<0||n%t)throw H("Wrong offset!");return n},Me=function(e){if(x(e)&&Ce in e)return e;throw z(e+" is not a typed array!")},Pe=function(e,t){if(!(x(e)&&we in e))throw z("It is not a typed array constructor!");return new e(t)},Re=function(e,t){return Le(R(e,e[xe]),t)},Le=function(e,t){var n=0,r=t.length,i=Pe(e,r);while(r>n)i[n]=t[n++];return i},De=function(e,t,n){B(e,t,{get:function(){return this._d[n]}})},je=function(e){var t,n,r,i,o,a,s=_(e),l=arguments.length,u=l>1?arguments[1]:void 0,h=void 0!==u,d=O(s);if(void 0!=d&&!C(d)){for(a=d.call(s),r=[],t=0;!(o=a.next()).done;t++)r.push(o.value);s=r}for(h&&l>2&&(u=c(u,arguments[2],2)),t=0,n=m(s.length),i=Pe(this,n);n>t;t++)i[t]=h?u(s[t],t):s[t];return i},Ne=function(){var e=0,t=arguments.length,n=Pe(this,t);while(t>e)n[e]=arguments[e++];return n},Ie=!!U&&o(function(){ve.call(new U(1))}),$e=function(){return ve.apply(Ie?me.call(Me(this)):Me(this),arguments)},Fe={copyWithin:function(e,t){return $.call(Me(this),e,t,arguments.length>2?arguments[2]:void 0)},every:function(e){return ne(Me(this),e,arguments.length>1?arguments[1]:void 0)},fill:function(e){return I.apply(Me(this),arguments)},filter:function(e){return Re(this,ee(Me(this),e,arguments.length>1?arguments[1]:void 0))},find:function(e){return re(Me(this),e,arguments.length>1?arguments[1]:void 0)},findIndex:function(e){return ie(Me(this),e,arguments.length>1?arguments[1]:void 0)},forEach:function(e){J(Me(this),e,arguments.length>1?arguments[1]:void 0)},indexOf:function(e){return ae(Me(this),e,arguments.length>1?arguments[1]:void 0)},includes:function(e){return oe(Me(this),e,arguments.length>1?arguments[1]:void 0)},join:function(e){return fe.apply(Me(this),arguments)},lastIndexOf:function(e){return ue.apply(Me(this),arguments)},map:function(e){return ke(Me(this),e,arguments.length>1?arguments[1]:void 0)},reduce:function(e){return he.apply(Me(this),arguments)},reduceRight:function(e){return de.apply(Me(this),arguments)},reverse:function(){var e,t=this,n=Me(t).length,r=Math.floor(n/2),i=0;while(i1?arguments[1]:void 0)},sort:function(e){return pe.call(Me(this),e)},subarray:function(e,t){var n=Me(this),r=n.length,i=v(e,r);return new(R(n,n[xe]))(n.buffer,n.byteOffset+i*n.BYTES_PER_ELEMENT,m((void 0===t?r:v(t,r))-i))}},Ve=function(e,t){return Re(this,me.call(Me(this),e,t))},Be=function(e){Me(this);var t=Ae(arguments[1],1),n=this.length,r=_(e),i=m(r.length),o=0;if(i+t>n)throw H(Ee);while(o255?255:255&r),i.v[f](n*t+i.o,r,Oe)},A=function(e,t){B(e,t,{get:function(){return O(this,t)},set:function(e){return T(this,t,e)},enumerable:!0})};b?(p=n(function(e,n,r,i){u(e,p,c,"_d");var o,a,s,l,h=0,f=0;if(x(n)){if(!(n instanceof Q||(l=w(n))==q||l==K))return Ce in n?Le(p,n):je.call(p,n);o=n,f=Ae(r,t);var v=n.byteLength;if(void 0===i){if(v%t)throw H(Ee);if(a=v-f,a<0)throw H(Ee)}else if(a=m(i)*t,a+f>v)throw H(Ee);s=a/t}else s=g(n),a=s*t,o=new Q(a);d(e,"_d",{b:o,o:f,l:a,e:s,v:new Z(o)});while(h{b()}).catch(e=>{window.console&&window.console.error(e)});t["default"]=null;n("hh8c")},L9pr:function(e,t,n){"use strict";t["a"]={today:"\u4eca\u5929",now:"\u6b64\u523b",backToToday:"\u8fd4\u56de\u4eca\u5929",ok:"\u786e\u5b9a",timeSelect:"\u9009\u62e9\u65f6\u95f4",dateSelect:"\u9009\u62e9\u65e5\u671f",weekSelect:"\u9009\u62e9\u5468",clear:"\u6e05\u9664",month:"\u6708",year:"\u5e74",previousMonth:"\u4e0a\u4e2a\u6708 (\u7ffb\u9875\u4e0a\u952e)",nextMonth:"\u4e0b\u4e2a\u6708 (\u7ffb\u9875\u4e0b\u952e)",monthSelect:"\u9009\u62e9\u6708\u4efd",yearSelect:"\u9009\u62e9\u5e74\u4efd",decadeSelect:"\u9009\u62e9\u5e74\u4ee3",yearFormat:"YYYY\u5e74",dayFormat:"D\u65e5",dateFormat:"YYYY\u5e74M\u6708D\u65e5",dateTimeFormat:"YYYY\u5e74M\u6708D\u65e5 HH\u65f6mm\u5206ss\u79d2",previousYear:"\u4e0a\u4e00\u5e74 (Control\u952e\u52a0\u5de6\u65b9\u5411\u952e)",nextYear:"\u4e0b\u4e00\u5e74 (Control\u952e\u52a0\u53f3\u65b9\u5411\u952e)",previousDecade:"\u4e0a\u4e00\u5e74\u4ee3",nextDecade:"\u4e0b\u4e00\u5e74\u4ee3",previousCentury:"\u4e0a\u4e00\u4e16\u7eaa",nextCentury:"\u4e0b\u4e00\u4e16\u7eaa"}},LIAx:function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(t,"__esModule",{value:!0}),t["default"]=a;var i=n("E0u0"),o=r(i);function a(e,t,n,r){function i(t){var r=new o["default"](t);n.call(e,r)}if(e.addEventListener){var a=function(){var n=!1;return"object"===typeof r?n=r.capture||!1:"boolean"===typeof r&&(n=r),e.addEventListener(t,i,r||!1),{v:{remove:function(){e.removeEventListener(t,i,n)}}}}();if("object"===typeof a)return a.v}else if(e.attachEvent)return e.attachEvent("on"+t,i),{remove:function(){e.detachEvent("on"+t,i)}}}e.exports=t["default"]},LMyI:function(e,t,n){"use strict";n.r(t);var r=n("d6i3"),i=n.n(r),o=n("p0pE"),a=n.n(o),s=n("t3Un"),l={switchLoading:{},saveLoading:!1};t["default"]={name:"serverShadowsocks",state:a()({},l),reducers:{setState(e,t){var n=t.payload;return a()({},e,n)}},effects:{update(e,t){return i.a.mark(function n(){var r,o,a,l,c;return i.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.id,o=e.key,a=e.value,l=t.put,n.next=4,Object(s["b"])("/admin/server/shadowsocks/update",{id:r,[o]:a});case 4:if(c=n.sent,200===c.code){n.next=7;break}return n.abrupt("return");case 7:return n.next=9,l({type:"serverManage/getNodes"});case 9:case"end":return n.stop()}},n)})()},drop(e,t){return i.a.mark(function n(){var r,o,a;return i.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.id,o=t.put,n.next=4,Object(s["b"])("/admin/server/shadowsocks/drop",{id:r});case 4:if(a=n.sent,200===a.code){n.next=7;break}return n.abrupt("return");case 7:return n.next=9,o({type:"serverManage/getNodes"});case 9:case"end":return n.stop()}},n)})()},copy(e,t){return i.a.mark(function n(){var r,o,a;return i.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.id,o=t.put,n.next=4,Object(s["b"])("/admin/server/shadowsocks/copy",{id:r});case 4:if(a=n.sent,200===a.code){n.next=7;break}return n.abrupt("return");case 7:return n.next=9,o({type:"serverManage/getNodes"});case 9:case"end":return n.stop()}},n)})()},save(e,t){return i.a.mark(function n(){var r,o,a,l;return i.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.params,o=e.callback,a=t.put,n.next=4,a({type:"setState",payload:{saveLoading:!0}});case 4:return n.next=6,Object(s["b"])("/admin/server/shadowsocks/save",r);case 6:return l=n.sent,n.next=9,a({type:"setState",payload:{saveLoading:!1}});case 9:if(200===l.code){n.next=11;break}return n.abrupt("return");case 11:return n.next=13,a({type:"serverManage/getNodes"});case 13:"function"===typeof o&&o();case 14:case"end":return n.stop()}},n)})()}}}},LPTA:function(e,t,n){"use strict";n.d(t,"e",function(){return i}),n.d(t,"b",function(){return o}),n.d(t,"a",function(){return a}),n.d(t,"d",function(){return s}),n.d(t,"c",function(){return l});var r=1;"undefined"!==typeof window&&(r=Math.max(window.devicePixelRatio||window.screen&&window.screen.deviceXDPI/window.screen.logicalXDPI||1,1));var i=r,o=.4,a="#333",s="#ccc",l="#eee"},LcXL:function(e,t,n){"use strict";var r=n("IaEH"),i=n("bYtY"),o=n("1bdT"),a=n("mFDi"),s=function(e){function t(t){var n=e.call(this)||this;return n.isGroup=!0,n._children=[],n.attr(t),n}return Object(r["a"])(t,e),t.prototype.childrenRef=function(){return this._children},t.prototype.children=function(){return this._children.slice()},t.prototype.childAt=function(e){return this._children[e]},t.prototype.childOfName=function(e){for(var t=this._children,n=0;n=0&&(n.splice(r,0,e),this._doAdd(e))}return this},t.prototype.replace=function(e,t){var n=i["q"](this._children,e);return n>=0&&this.replaceAt(t,n),this},t.prototype.replaceAt=function(e,t){var n=this._children,r=n[t];if(e&&e!==this&&e.parent!==this&&e!==r){n[t]=e,r.parent=null;var i=this.__zr;i&&r.removeSelfFromZr(i),this._doAdd(e)}return this},t.prototype._doAdd=function(e){e.parent&&e.parent.remove(e),e.parent=this;var t=this.__zr;t&&t!==e.__zr&&e.addSelfToZr(t),t&&t.refresh()},t.prototype.remove=function(e){var t=this.__zr,n=this._children,r=i["q"](n,e);return r<0?this:(n.splice(r,1),e.parent=null,t&&e.removeSelfFromZr(t),t&&t.refresh(),this)},t.prototype.removeAll=function(){for(var e=this._children,t=this.__zr,n=0;n0)return!0;return!1}function ce(e,t){var n=new RegExp("[".concat(t.join(),"]"));return e.split(n).filter(function(e){return e})}function ue(e,t){if(t.props.disabled)return!1;var n=J(K(t,this.props.optionFilterProp)).join("");return n.toLowerCase().indexOf(e.toLowerCase())>-1}function he(e,t){if(!Z(t)&&!G(t)&&"string"!==typeof e)throw new Error("Invalid `value` of type `".concat(typeof e,"` supplied to Option, ")+"expected `string` when `tags/combobox` is `true`.")}function de(e,t){return function(n){e[t]=n}}function fe(){var e=(new Date).getTime(),t="xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(/[xy]/g,function(t){var n=(e+16*Math.random())%16|0;return e=Math.floor(e/16),("x"===t?n:7&n|8).toString(16)});return t}function pe(){return pe=Object.assign||function(e){for(var t=1;t1&&void 0!==arguments[1]?arguments[1]:{},r=t.needFocus,i=t.fireSearch,o=n.props,a=n.state;if(a.open!==e){n.props.onDropdownVisibleChange&&n.props.onDropdownVisibleChange(e);var s={open:e,backfillValue:""};!e&&Z(o)&&o.showSearch&&n.setInputValue("",i),e||n.maybeFocus(e,!!r),n.setState($e({open:e},s),function(){e&&n.maybeFocus(e,!!r)})}else n.maybeFocus(e,!!r)},n.setInputValue=function(e){var t=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],r=n.props.onSearch;e!==n.state.inputValue&&n.setState(function(n){return t&&e!==n.inputValue&&r&&r(e),{inputValue:e}},n.forcePopupAlign)},n.getValueByInput=function(e){var t=n.props,r=t.multiple,i=t.tokenSeparators,o=n.state.value,a=!1;return ce(e,i).forEach(function(e){var t=[e];if(r){var i=n.getValueByLabel(e);i&&-1===ne(o,i)&&(o=o.concat(i),a=!0,n.fireSelect(i))}else-1===ne(o,e)&&(o=o.concat(t),a=!0,n.fireSelect(e))}),a?o:void 0},n.getRealOpenState=function(e){var t=n.props.open;if("boolean"===typeof t)return t;var r=(e||n.state).open,i=n._options||[];return!Q(n.props)&&n.props.showSearch||r&&!i.length&&(r=!1),r},n.markMouseDown=function(){n._mouseDown=!0},n.markMouseLeave=function(){n._mouseDown=!1},n.handleBackfill=function(e){if(n.props.backfill&&(Z(n.props)||Y(n.props))){var t=q(e);Y(n.props)&&n.setInputValue(t,!1),n.setState({value:[t],backfillValue:t})}},n.filterOption=function(e,t){var r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:ue,i=n.state.value,o=i[i.length-1];if(!e||o&&o===n.state.backfillValue)return!0;var a=n.props.filterOption;return"filterOption"in n.props?!0===a&&(a=r.bind(ze(n))):a=r.bind(ze(n)),!a||("function"===typeof a?a.call(ze(n),e,t):!t.props.disabled)},n.timeoutFocus=function(){var e=n.props.onFocus;n.focusTimer&&n.clearFocusTime(),n.focusTimer=window.setTimeout(function(){e&&e()},10)},n.clearFocusTime=function(){n.focusTimer&&(clearTimeout(n.focusTimer),n.focusTimer=null)},n.clearBlurTime=function(){n.blurTimer&&(clearTimeout(n.blurTimer),n.blurTimer=null)},n.clearComboboxTime=function(){n.comboboxTimer&&(clearTimeout(n.comboboxTimer),n.comboboxTimer=null)},n.updateFocusClassName=function(){var e=n.rootRef,t=n.props;n._focused?M()(e).add("".concat(t.prefixCls,"-focused")):M()(e).remove("".concat(t.prefixCls,"-focused"))},n.maybeFocus=function(e,t){if(t||e){var r=n.getInputDOMNode(),i=document,o=i.activeElement;r&&(e||Q(n.props))?o!==r&&(r.focus(),n._focused=!0):o!==n.selectionRef&&n.selectionRef&&(n.selectionRef.focus(),n._focused=!0)}},n.removeSelected=function(e,t){var r=n.props;if(!r.disabled&&!n.isChildDisabled(e)){t&&t.stopPropagation&&t.stopPropagation();var i=n.state.value,o=i.filter(function(t){return t!==e}),a=X(r);if(a){var s=e;r.labelInValue&&(s={key:e,label:n.getLabelBySingleValue(e)}),r.onDeselect&&r.onDeselect(s,n.getOptionBySingleValue(e))}n.fireChange(o)}},n.openIfHasChildren=function(){var e=n.props;(r["Children"].count(e.children)||Z(e))&&n.setOpenState(!0)},n.fireSelect=function(e){n.props.onSelect&&n.props.onSelect(n.getVLBySingleValue(e),n.getOptionBySingleValue(e))},n.fireChange=function(e){var t=n.props;"value"in t||n.setState({value:e},n.forcePopupAlign);var r=n.getVLForOnChange(e),i=n.getOptionsBySingleValue(e);t.onChange&&t.onChange(r,X(n.props)?i:i[0])},n.isChildDisabled=function(e){return D(n.props.children).some(function(t){var n=q(t);return n===e&&t.props&&t.props.disabled})},n.forcePopupAlign=function(){n.state.open&&n.selectTriggerRef&&n.selectTriggerRef.triggerRef&&n.selectTriggerRef.triggerRef.forcePopupAlign()},n.renderFilterOptions=function(){var e=n.state.inputValue,t=n.props,i=t.children,o=t.tags,a=t.notFoundContent,s=[],l=[],c=!1,u=n.renderFilterOptionsFromChildren(i,l,s);if(o){var h=n.state.value;h=h.filter(function(t){return-1===l.indexOf(t)&&(!e||String(t).indexOf(String(e))>-1)}),h.sort(function(e,t){return e.length-t.length}),h.forEach(function(e){var t=e,n=r["createElement"](R["b"],{style:oe,role:"option",attribute:ae,value:t,key:t},t);u.push(n),s.push(n)}),e&&s.every(function(t){return q(t)!==e})&&u.unshift(r["createElement"](R["b"],{style:oe,role:"option",attribute:ae,value:e,key:e},e))}return!u.length&&a&&(c=!0,u=[r["createElement"](R["b"],{style:oe,attribute:ae,disabled:!0,role:"option",value:"NOT_FOUND",key:"NOT_FOUND"},a)]),{empty:c,options:u}},n.renderFilterOptionsFromChildren=function(e,t,i){var o=[],a=n.props,s=n.state.inputValue,l=a.tags;return r["Children"].forEach(e,function(e){if(e){var a=e.type;if(a.isSelectOptGroup){var c=e.props.label,u=e.key;if(u||"string"!==typeof c?!c&&u&&(c=u):u=c,s&&n.filterOption(s,e)){var h=D(e.props.children).map(function(e){var t=q(e)||e.key;return r["createElement"](R["b"],$e({key:t,value:t},e.props))});o.push(r["createElement"](R["c"],{key:u,title:c},h))}else{var d=n.renderFilterOptionsFromChildren(e.props.children,t,i);d.length&&o.push(r["createElement"](R["c"],{key:u,title:c},d))}}else{F()(a.isSelectOption,"the children of `Select` should be `Select.Option` or `Select.OptGroup`, "+"instead of `".concat(a.name||a.displayName||e.type,"`."));var f=q(e);if(he(f,n.props),n.filterOption(s,e)){var p=r["createElement"](R["b"],$e({style:oe,attribute:ae,value:f,key:f,role:"option"},e.props));o.push(p),i.push(p)}l&&t.push(f)}}}),o},n.renderTopControlNode=function(){var e=n.state,t=e.open,i=e.inputValue,o=n.state.value,a=n.props,s=a.choiceTransitionName,l=a.prefixCls,c=a.maxTagTextLength,u=a.maxTagCount,h=a.showSearch,d=a.removeIcon,f=a.maxTagPlaceholder,p="".concat(l,"-selection__rendered"),m=null;if(Z(a)){var g=null;if(o.length){var v=!1,y=1;h&&t?(v=!i,v&&(y=.4)):v=!0;var b=o[0],w=n.getOptionInfoBySingleValue(b),x=w.label,_=w.title;g=r["createElement"]("div",{key:"value",className:"".concat(l,"-selection-selected-value"),title:U(_||x),style:{display:v?"block":"none",opacity:y}},x)}m=h?[g,r["createElement"]("div",{className:"".concat(l,"-search ").concat(l,"-search--inline"),key:"input",style:{display:t?"block":"none"}},n.getInputElement())]:[g]}else{var C,S=[],E=o;if(void 0!==u&&o.length>u){E=E.slice(0,u);var k=n.getVLForOnChange(o.slice(u,o.length)),O="+ ".concat(o.length-u," ...");f&&(O="function"===typeof f?f(k):f),C=r["createElement"]("li",$e({style:oe},ae,{role:"presentation",onMouseDown:te,className:"".concat(l,"-selection__choice ").concat(l,"-selection__choice__disabled"),key:"maxTagPlaceholder",title:U(O)}),r["createElement"]("div",{className:"".concat(l,"-selection__choice__content")},O))}X(a)&&(S=E.map(function(e){var t=n.getOptionInfoBySingleValue(e),i=t.label,o=t.title||i;c&&"string"===typeof i&&i.length>c&&(i="".concat(i.slice(0,c),"..."));var a=n.isChildDisabled(e),s=a?"".concat(l,"-selection__choice ").concat(l,"-selection__choice__disabled"):"".concat(l,"-selection__choice");return r["createElement"]("li",$e({style:oe},ae,{onMouseDown:te,className:s,role:"presentation",key:e||Ge,title:U(o)}),r["createElement"]("div",{className:"".concat(l,"-selection__choice__content")},i),a?null:r["createElement"]("span",{onClick:function(t){n.removeSelected(e,t)},className:"".concat(l,"-selection__choice__remove")},d||r["createElement"]("i",{className:"".concat(l,"-selection__choice__remove-icon")},"\xd7")))})),C&&S.push(C),S.push(r["createElement"]("li",{className:"".concat(l,"-search ").concat(l,"-search--inline"),key:"__input"},n.getInputElement())),m=X(a)&&s?r["createElement"](P["a"],{onLeave:n.onChoiceAnimationLeave,component:"ul",transitionName:s},S):r["createElement"]("ul",null,S)}return r["createElement"]("div",{className:p,ref:n.saveTopCtrlRef},n.getPlaceholderElement(),m)};var i=t.getOptionsInfoFromProps(e);if(e.tags&&"function"!==typeof e.filterOption){var o=Object.keys(i).some(function(e){return i[e].disabled});F()(!o,"Please avoid setting option to disabled in tags mode since user can always type text as tag.")}return n.state={value:t.getValueFromProps(e,!0),inputValue:e.combobox?t.getInputValueForCombobox(e,i,!0):"",open:e.defaultOpen,optionsInfo:i,backfillValue:"",skipBuildOptionsInfo:!0,ariaId:""},n.saveInputRef=de(ze(n),"inputRef"),n.saveInputMirrorRef=de(ze(n),"inputMirrorRef"),n.saveTopCtrlRef=de(ze(n),"topCtrlRef"),n.saveSelectTriggerRef=de(ze(n),"selectTriggerRef"),n.saveRootRef=de(ze(n),"rootRef"),n.saveSelectionRef=de(ze(n),"selectionRef"),n}return Ue(t,e),Be(t,[{key:"componentDidMount",value:function(){(this.props.autoFocus||this.state.open)&&this.focus(),this.setState({ariaId:fe()})}},{key:"componentDidUpdate",value:function(){if(X(this.props)){var e=this.getInputDOMNode(),t=this.getInputMirrorDOMNode();e&&e.value&&t?(e.style.width="",e.style.width="".concat(t.clientWidth,"px")):e&&(e.style.width="")}this.forcePopupAlign()}},{key:"componentWillUnmount",value:function(){this.clearFocusTime(),this.clearBlurTime(),this.clearComboboxTime(),this.dropdownContainer&&(N["unmountComponentAtNode"](this.dropdownContainer),document.body.removeChild(this.dropdownContainer),this.dropdownContainer=null)}},{key:"focus",value:function(){Z(this.props)&&this.selectionRef?this.selectionRef.focus():this.getInputDOMNode()&&this.getInputDOMNode().focus()}},{key:"blur",value:function(){Z(this.props)&&this.selectionRef?this.selectionRef.blur():this.getInputDOMNode()&&this.getInputDOMNode().blur()}},{key:"renderArrow",value:function(e){var t=this.props,n=t.showArrow,i=void 0===n?!e:n,o=t.loading,a=t.inputIcon,s=t.prefixCls;if(!i&&!o)return null;var l=o?r["createElement"]("i",{className:"".concat(s,"-arrow-loading")}):r["createElement"]("i",{className:"".concat(s,"-arrow-icon")});return r["createElement"]("span",$e({key:"arrow",className:"".concat(s,"-arrow"),style:oe},ae,{onClick:this.onArrowClick}),a||l)}},{key:"renderClear",value:function(){var e=this.props,t=e.prefixCls,n=e.allowClear,i=e.clearIcon,o=this.state.inputValue,a=this.state.value,s=r["createElement"]("span",$e({key:"clear",className:"".concat(t,"-selection__clear"),onMouseDown:te,style:oe},ae,{onClick:this.onClearSelection}),i||r["createElement"]("i",{className:"".concat(t,"-selection__clear-icon")},"\xd7"));return n?Y(this.props)?o?s:null:o||a.length?s:null:null}},{key:"render",value:function(){var e,t=this.props,n=X(t),i=t.showArrow,o=void 0===i||i,a=this.state,s=t.className,l=t.disabled,c=t.prefixCls,u=t.loading,h=this.renderTopControlNode(),d=this.state,f=d.open,p=d.ariaId;if(f){var m=this.renderFilterOptions();this._empty=m.empty,this._options=m.options}var g=this.getRealOpenState(),v=this._empty,y=this._options||[],b={};Object.keys(t).forEach(function(e){!Object.prototype.hasOwnProperty.call(t,e)||"data-"!==e.substr(0,5)&&"aria-"!==e.substr(0,5)&&"role"!==e||(b[e]=t[e])});var w=$e({},b);Q(t)||(w=$e($e({},w),{onKeyDown:this.onKeyDown,tabIndex:t.disabled?-1:t.tabIndex}));var x=(e={},Ie(e,s,!!s),Ie(e,c,1),Ie(e,"".concat(c,"-open"),f),Ie(e,"".concat(c,"-focused"),f||!!this._focused),Ie(e,"".concat(c,"-combobox"),Y(t)),Ie(e,"".concat(c,"-disabled"),l),Ie(e,"".concat(c,"-enabled"),!l),Ie(e,"".concat(c,"-allow-clear"),!!t.allowClear),Ie(e,"".concat(c,"-no-arrow"),!o),Ie(e,"".concat(c,"-loading"),!!u),e);return r["createElement"](Ne,{onPopupFocus:this.onPopupFocus,onMouseEnter:this.props.onMouseEnter,onMouseLeave:this.props.onMouseLeave,dropdownAlign:t.dropdownAlign,dropdownClassName:t.dropdownClassName,dropdownMatchSelectWidth:t.dropdownMatchSelectWidth,defaultActiveFirstOption:t.defaultActiveFirstOption,dropdownMenuStyle:t.dropdownMenuStyle,transitionName:t.transitionName,animation:t.animation,prefixCls:t.prefixCls,dropdownStyle:t.dropdownStyle,combobox:t.combobox,showSearch:t.showSearch,options:y,empty:v,multiple:n,disabled:l,visible:g,inputValue:a.inputValue,value:a.value,backfillValue:a.backfillValue,firstActiveValue:t.firstActiveValue,onDropdownVisibleChange:this.onDropdownVisibleChange,getPopupContainer:t.getPopupContainer,onMenuSelect:this.onMenuSelect,onMenuDeselect:this.onMenuDeselect,onPopupScroll:t.onPopupScroll,showAction:t.showAction,ref:this.saveSelectTriggerRef,menuItemSelectedIcon:t.menuItemSelectedIcon,dropdownRender:t.dropdownRender,ariaId:p},r["createElement"]("div",{id:t.id,style:t.style,ref:this.saveRootRef,onBlur:this.onOuterBlur,onFocus:this.onOuterFocus,className:T()(x),onMouseDown:this.markMouseDown,onMouseUp:this.markMouseLeave,onMouseOut:this.markMouseLeave},r["createElement"]("div",$e({ref:this.saveSelectionRef,key:"selection",className:"".concat(c,"-selection\n ").concat(c,"-selection--").concat(n?"multiple":"single"),role:"combobox","aria-autocomplete":"list","aria-haspopup":"true","aria-controls":p,"aria-expanded":g},w),h,this.renderClear(),this.renderArrow(!!n))))}}]),t}(r["Component"]);Qe.propTypes=k,Qe.defaultProps={prefixCls:"rc-select",defaultOpen:!1,labelInValue:!1,defaultActiveFirstOption:!0,showSearch:!0,allowClear:!1,placeholder:"",onChange:Ye,onFocus:Ye,onBlur:Ye,onSelect:Ye,onSearch:Ye,onDeselect:Ye,onInputKeyDown:Ye,dropdownMatchSelectWidth:!0,dropdownStyle:{},dropdownMenuStyle:{},optionFilterProp:"value",optionLabelProp:"value",notFoundContent:"Not Found",backfill:!1,showAction:["click"],tokenSeparators:[],autoClearSearchValue:!0,tabIndex:0,dropdownRender:function(e){return e}},Qe.getDerivedStateFromProps=function(e,t){var n=t.skipBuildOptionsInfo?t.optionsInfo:Qe.getOptionsInfoFromProps(e,t),r={optionsInfo:n,skipBuildOptionsInfo:!1};if("open"in e&&(r.open=e.open),e.disabled&&t.open&&(r.open=!1),"value"in e){var i=Qe.getValueFromProps(e);r.value=i,e.combobox&&(r.inputValue=Qe.getInputValueForCombobox(e,n))}return r},Qe.getOptionsFromChildren=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[];return r["Children"].forEach(e,function(e){if(e){var n=e.type;n.isSelectOptGroup?Qe.getOptionsFromChildren(e.props.children,t):t.push(e)}}),t},Qe.getInputValueForCombobox=function(e,t,n){var r=[];if("value"in e&&!n&&(r=J(e.value)),"defaultValue"in e&&n&&(r=J(e.defaultValue)),!r.length)return"";r=r[0];var i=r;return e.labelInValue?i=r.label:t[ee(r)]&&(i=t[ee(r)].label),void 0===i&&(i=""),i},Qe.getLabelFromOption=function(e,t){return K(t,e.optionLabelProp)},Qe.getOptionsInfoFromProps=function(e,t){var n=Qe.getOptionsFromChildren(e.children),r={};if(n.forEach(function(t){var n=q(t);r[ee(n)]={option:t,value:n,label:Qe.getLabelFromOption(e,t),title:t.props.title,disabled:t.props.disabled}}),t){var i=t.optionsInfo,o=t.value;o&&o.forEach(function(e){var t=ee(e);r[t]||void 0===i[t]||(r[t]=i[t])})}return r},Qe.getValueFromProps=function(e,t){var n=[];return"value"in e&&!t&&(n=J(e.value)),"defaultValue"in e&&t&&(n=J(e.defaultValue)),e.labelInValue&&(n=n.map(function(e){return e.key})),n},Qe.displayName="Select",Object(I["polyfill"])(Qe);var Ze=Qe;n.d(t,"b",function(){return b}),n.d(t,"a",function(){return h}),Ze.Option=b,Ze.OptGroup=h;t["c"]=Ze},Lnex:function(e,t,n){var r=n("OeOC"),i=n("OsVd"),o=n("Spc3");e.exports=function(e){return function(t,n,a){var s,l=r(t),c=i(l.length),u=o(a,c);if(e&&n!=n){while(c>u)if(s=l[u++],s!=s)return!0}else for(;c>u;u++)if((e||u in l)&&l[u]===n)return e||u||0;return!e&&-1}}},LpSC:function(e,t,n){n("bZMm"),e.exports=self.fetch.bind(self)},LsAW:function(e,t){t.f={}.propertyIsEnumerable},M1xp:function(e,t,n){var r=n("a0xu");e.exports=Object("z").propertyIsEnumerable(0)?Object:function(e){return"String"==r(e)?e.split(""):Object(e)}},MEGo:function(e,t,n){"use strict";n.d(t,"a",function(){return W}),n.d(t,"b",function(){return H});var r,i=n("LcXL"),o=n("Dagg"),a=n("2fw6"),s=n("x6Kt"),l=n("rmlV"),c=n("yxFR"),u=n("h7HQ"),h=n("1Jh7"),d=n("Fofx"),f=n("NC18"),p=n("bYtY"),m=n("SKnc"),g=n("3e3G"),v=n("3U8f"),y=n("SoAU"),b={fill:"fill",stroke:"stroke","stroke-width":"lineWidth",opacity:"opacity","fill-opacity":"fillOpacity","stroke-opacity":"strokeOpacity","stroke-dasharray":"lineDash","stroke-dashoffset":"lineDashOffset","stroke-linecap":"lineCap","stroke-linejoin":"lineJoin","stroke-miterlimit":"miterLimit","font-family":"fontFamily","font-size":"fontSize","font-style":"fontStyle","font-weight":"fontWeight","text-anchor":"textAlign",visibility:"visibility",display:"display"},w=Object(p["D"])(b),x={"alignment-baseline":"textBaseline","stop-color":"stopColor"},_=Object(p["D"])(x),C=function(){function e(){this._defs={},this._root=null}return e.prototype.parse=function(e,t){t=t||{};var n=Object(y["a"])(e);if(!n)throw new Error("Illegal svg");this._defsUsePending=[];var r=new i["a"];this._root=r;var o=[],a=n.getAttribute("viewBox")||"",l=parseFloat(n.getAttribute("width")||t.width),c=parseFloat(n.getAttribute("height")||t.height);isNaN(l)&&(l=null),isNaN(c)&&(c=null),A(n,r,null,!0,!1);var u,h,d=n.firstChild;while(d)this._parseNode(d,r,o,null,!1,!1),d=d.nextSibling;if(L(this._defs,this._defsUsePending),this._defsUsePending=[],a){var f=j(a);f.length>=4&&(u={x:parseFloat(f[0]||0),y:parseFloat(f[1]||0),width:parseFloat(f[2]),height:parseFloat(f[3])})}if(u&&null!=l&&null!=c&&(h=W(u,{x:0,y:0,width:l,height:c}),!t.ignoreViewBox)){var p=r;r=new i["a"],r.add(p),p.scaleX=p.scaleY=h.scale,p.x=h.x,p.y=h.y}return t.ignoreRootClip||null==l||null==c||r.setClipPath(new s["a"]({shape:{x:0,y:0,width:l,height:c}})),{root:r,width:l,height:c,viewBoxRect:u,viewBoxTransform:h,named:o}},e.prototype._parseNode=function(e,t,n,i,o,a){var s,l=e.nodeName.toLowerCase(),c=i;if("defs"===l&&(o=!0),"text"===l&&(a=!0),"defs"===l||"switch"===l)s=t;else{if(!o){var u=r[l];if(u&&Object(p["p"])(r,l)){s=u.call(this,e,t);var h=e.getAttribute("name");if(h){var d={name:h,namedFrom:null,svgNodeTagLower:l,el:s};n.push(d),"g"===l&&(c=d)}else i&&n.push({name:i.name,namedFrom:i,svgNodeTagLower:l,el:s});t.add(s)}}var f=S[l];if(f&&Object(p["p"])(S,l)){var m=f.call(this,e),g=e.getAttribute("id");g&&(this._defs[g]=m)}}if(s&&s.isGroup){var v=e.firstChild;while(v)1===v.nodeType?this._parseNode(v,s,n,c,o,a):3===v.nodeType&&a&&this._parseText(v,s),v=v.nextSibling}},e.prototype._parseText=function(e,t){var n=new v["a"]({style:{text:e.textContent},silent:!0,x:this._textX||0,y:this._textY||0});O(t,n),A(e,n,this._defsUsePending,!1,!1),M(n,t);var r=n.style,i=r.fontSize;i&&i<9&&(r.fontSize=9,n.scaleX*=i/9,n.scaleY*=i/9);var o=(r.fontSize||r.fontFamily)&&[r.fontStyle,r.fontWeight,(r.fontSize||12)+"px",r.fontFamily||"sans-serif"].join(" ");r.font=o;var a=n.getBoundingRect();return this._textX+=a.width,t.add(n),n},e.internalField=function(){r={g:function(e,t){var n=new i["a"];return O(t,n),A(e,n,this._defsUsePending,!1,!1),n},rect:function(e,t){var n=new s["a"];return O(t,n),A(e,n,this._defsUsePending,!1,!1),n.setShape({x:parseFloat(e.getAttribute("x")||"0"),y:parseFloat(e.getAttribute("y")||"0"),width:parseFloat(e.getAttribute("width")||"0"),height:parseFloat(e.getAttribute("height")||"0")}),n.silent=!0,n},circle:function(e,t){var n=new a["a"];return O(t,n),A(e,n,this._defsUsePending,!1,!1),n.setShape({cx:parseFloat(e.getAttribute("cx")||"0"),cy:parseFloat(e.getAttribute("cy")||"0"),r:parseFloat(e.getAttribute("r")||"0")}),n.silent=!0,n},line:function(e,t){var n=new c["a"];return O(t,n),A(e,n,this._defsUsePending,!1,!1),n.setShape({x1:parseFloat(e.getAttribute("x1")||"0"),y1:parseFloat(e.getAttribute("y1")||"0"),x2:parseFloat(e.getAttribute("x2")||"0"),y2:parseFloat(e.getAttribute("y2")||"0")}),n.silent=!0,n},ellipse:function(e,t){var n=new l["a"];return O(t,n),A(e,n,this._defsUsePending,!1,!1),n.setShape({cx:parseFloat(e.getAttribute("cx")||"0"),cy:parseFloat(e.getAttribute("cy")||"0"),rx:parseFloat(e.getAttribute("rx")||"0"),ry:parseFloat(e.getAttribute("ry")||"0")}),n.silent=!0,n},polygon:function(e,t){var n,r=e.getAttribute("points");r&&(n=T(r));var i=new u["a"]({shape:{points:n||[]},silent:!0});return O(t,i),A(e,i,this._defsUsePending,!1,!1),i},polyline:function(e,t){var n,r=e.getAttribute("points");r&&(n=T(r));var i=new h["a"]({shape:{points:n||[]},silent:!0});return O(t,i),A(e,i,this._defsUsePending,!1,!1),i},image:function(e,t){var n=new o["a"];return O(t,n),A(e,n,this._defsUsePending,!1,!1),n.setStyle({image:e.getAttribute("xlink:href")||e.getAttribute("href"),x:+e.getAttribute("x"),y:+e.getAttribute("y"),width:+e.getAttribute("width"),height:+e.getAttribute("height")}),n.silent=!0,n},text:function(e,t){var n=e.getAttribute("x")||"0",r=e.getAttribute("y")||"0",o=e.getAttribute("dx")||"0",a=e.getAttribute("dy")||"0";this._textX=parseFloat(n)+parseFloat(o),this._textY=parseFloat(r)+parseFloat(a);var s=new i["a"];return O(t,s),A(e,s,this._defsUsePending,!1,!0),s},tspan:function(e,t){var n=e.getAttribute("x"),r=e.getAttribute("y");null!=n&&(this._textX=parseFloat(n)),null!=r&&(this._textY=parseFloat(r));var o=e.getAttribute("dx")||"0",a=e.getAttribute("dy")||"0",s=new i["a"];return O(t,s),A(e,s,this._defsUsePending,!1,!0),this._textX+=parseFloat(o),this._textY+=parseFloat(a),s},path:function(e,t){var n=e.getAttribute("d")||"",r=Object(f["b"])(n);return O(t,r),A(e,r,this._defsUsePending,!1,!1),r.silent=!0,r}}}(),e}(),S={lineargradient:function(e){var t=parseInt(e.getAttribute("x1")||"0",10),n=parseInt(e.getAttribute("y1")||"0",10),r=parseInt(e.getAttribute("x2")||"10",10),i=parseInt(e.getAttribute("y2")||"0",10),o=new m["a"](t,n,r,i);return E(e,o),k(e,o),o},radialgradient:function(e){var t=parseInt(e.getAttribute("cx")||"0",10),n=parseInt(e.getAttribute("cy")||"0",10),r=parseInt(e.getAttribute("r")||"0",10),i=new g["a"](t,n,r);return E(e,i),k(e,i),i}};function E(e,t){var n=e.getAttribute("gradientUnits");"userSpaceOnUse"===n&&(t.global=!0)}function k(e,t){var n=e.firstChild;while(n){if(1===n.nodeType&&"stop"===n.nodeName.toLocaleLowerCase()){var r=n.getAttribute("offset"),i=void 0;i=r&&r.indexOf("%")>0?parseInt(r,10)/100:r?parseFloat(r):0;var o={};V(n,o,o);var a=o.stopColor||n.getAttribute("stop-color")||"#000000";t.colorStops.push({offset:i,color:a})}n=n.nextSibling}}function O(e,t){e&&e.__inheritedStyle&&(t.__inheritedStyle||(t.__inheritedStyle={}),Object(p["j"])(t.__inheritedStyle,e.__inheritedStyle))}function T(e){for(var t=j(e),n=[],r=0;r0;o-=2){var a=r[o],s=r[o-1],l=j(a);switch(i=i||d["b"](),s){case"translate":d["h"](i,i,[parseFloat(l[0]),parseFloat(l[1]||"0")]);break;case"scale":d["g"](i,i,[parseFloat(l[0]),parseFloat(l[1]||l[0])]);break;case"rotate":d["f"](i,i,-parseFloat(l[0])*I);break;case"skewX":var c=Math.tan(parseFloat(l[0])*I);d["e"](i,[1,0,c,1,0,0],i);break;case"skewY":var u=Math.tan(parseFloat(l[0])*I);d["e"](i,[1,u,0,1,0,0],i);break;case"matrix":i[0]=parseFloat(l[0]),i[1]=parseFloat(l[1]),i[2]=parseFloat(l[2]),i[3]=parseFloat(l[3]),i[4]=parseFloat(l[4]),i[5]=parseFloat(l[5]);break}}t.setLocalTransform(i)}}var F=/([^\s:;]+)\s*:\s*([^:;]+)/g;function V(e,t,n){var r=e.getAttribute("style");if(r){var i;F.lastIndex=0;while(null!=(i=F.exec(r))){var o=i[1],a=Object(p["p"])(b,o)?b[o]:null;a&&(t[a]=i[2]);var s=Object(p["p"])(x,o)?x[o]:null;s&&(n[s]=i[2])}}}function B(e,t,n){for(var r=0;r children");r=e}}),r}function S(e,t,n){var r=e.length===t.length;return r&&e.forEach(function(e,i){var o=t[i];e&&o&&(e&&!o||!e&&o?r=!1:e.key!==o.key?r=!1:n&&e.props[n]!==o.props[n]&&(r=!1))}),r}function E(e,t){var n=[],r={},i=[];return e.forEach(function(e){e&&_(t,e.key)?i.length&&(r[e.key]=i,i=[]):i.push(e)}),t.forEach(function(e){e&&Object.prototype.hasOwnProperty.call(r,e.key)&&(n=n.concat(r[e.key])),n.push(e)}),n=n.concat(i),n}var k=n("i8i4"),O=n.n(k),T=n("EJiy"),A=n.n(T),M=n("/dDc"),P=n("PFWz"),R=n.n(P),L=0!==M["a"].endEvents.length,D=["Webkit","Moz","O","ms"],j=["-webkit-","-moz-","-o-","ms-",""];function N(e,t){for(var n=window.getComputedStyle(e,null),r="",i=0;i children");return g.a.createElement(U,{key:n.key,ref:function(t){e.childrenRefs[n.key]=t},animation:t.animation,transitionName:t.transitionName,transitionEnter:t.transitionEnter,transitionAppear:t.transitionAppear,transitionLeave:t.transitionLeave},n)}));var o=t.component;if(o){var a=t;return"string"===typeof o&&(a=i()({className:t.className,style:t.style},t.componentProps)),g.a.createElement(o,a,r)}return r[0]||null}}]),t}(g.a.Component);Y.isAnimate=!0,Y.propTypes={className:y.a.string,style:y.a.object,component:y.a.any,componentProps:y.a.object,animation:y.a.object,transitionName:y.a.oneOfType([y.a.string,y.a.object]),transitionEnter:y.a.bool,transitionAppear:y.a.bool,exclusive:y.a.bool,transitionLeave:y.a.bool,onEnd:y.a.func,onEnter:y.a.func,onLeave:y.a.func,onAppear:y.a.func,showProp:y.a.string,children:y.a.node},Y.defaultProps={animation:{},component:"span",componentProps:{},transitionEnter:!0,transitionLeave:!0,transitionAppear:!1,onEnd:G,onEnter:G,onLeave:G,onAppear:G};var X=function(){var e=this;this.performEnter=function(t){e.childrenRefs[t]&&(e.currentlyAnimatingKeys[t]=!0,e.childrenRefs[t].componentWillEnter(e.handleDoneAdding.bind(e,t,"enter")))},this.performAppear=function(t){e.childrenRefs[t]&&(e.currentlyAnimatingKeys[t]=!0,e.childrenRefs[t].componentWillAppear(e.handleDoneAdding.bind(e,t,"appear")))},this.handleDoneAdding=function(t,n){var r=e.props;if(delete e.currentlyAnimatingKeys[t],!r.exclusive||r===e.nextProps){var i=x(K(r));e.isValidChildByKey(i,t)?"appear"===n?W.allowAppearCallback(r)&&(r.onAppear(t),r.onEnd(t,!0)):W.allowEnterCallback(r)&&(r.onEnter(t),r.onEnd(t,!0)):e.performLeave(t)}},this.performLeave=function(t){e.childrenRefs[t]&&(e.currentlyAnimatingKeys[t]=!0,e.childrenRefs[t].componentWillLeave(e.handleDoneLeaving.bind(e,t)))},this.handleDoneLeaving=function(t){var n=e.props;if(delete e.currentlyAnimatingKeys[t],!n.exclusive||n===e.nextProps){var r=x(K(n));if(e.isValidChildByKey(r,t))e.performEnter(t);else{var i=function(){W.allowLeaveCallback(n)&&(n.onLeave(t),n.onEnd(t,!1))};S(e.state.children,r,n.showProp)?i():e.setState({children:r},i)}}}};t["a"]=w(Y)},MPFp:function(e,t,n){"use strict";var r=n("uOPS"),i=n("Y7ZC"),o=n("kTiW"),a=n("NegM"),s=n("SBuE"),l=n("j2DC"),c=n("RfKB"),u=n("U+KD"),h=n("UWiX")("iterator"),d=!([].keys&&"next"in[].keys()),f="@@iterator",p="keys",m="values",g=function(){return this};e.exports=function(e,t,n,v,y,b,w){l(n,t,v);var x,_,C,S=function(e){if(!d&&e in T)return T[e];switch(e){case p:return function(){return new n(this,e)};case m:return function(){return new n(this,e)}}return function(){return new n(this,e)}},E=t+" Iterator",k=y==m,O=!1,T=e.prototype,A=T[h]||T[f]||y&&T[y],M=A||S(y),P=y?k?S("entries"):M:void 0,R="Array"==t&&T.entries||A;if(R&&(C=u(R.call(new e)),C!==Object.prototype&&C.next&&(c(C,E,!0),r||"function"==typeof C[h]||a(C,h,g))),k&&A&&A.name!==m&&(O=!0,M=function(){return A.call(this)}),r&&!w||!d&&!O&&T[h]||a(T,h,M),s[t]=M,s[E]=g,y)if(x={values:k?M:S(m),keys:b?M:S(p),entries:P},w)for(_ in x)_ in T||o(T,_,x[_]);else i(i.P+i.F*(d||O),t,x);return x}},MWgS:function(e,t,n){"use strict";function r(e,t){if(null==e)return{};var n,r,i={},o=Object.keys(e);for(r=0;r=0||(i[n]=e[n]);return i}n.d(t,"a",function(){return r})},MgzW:function(e,t,n){"use strict";var r=Object.getOwnPropertySymbols,i=Object.prototype.hasOwnProperty,o=Object.prototype.propertyIsEnumerable;function a(e){if(null===e||void 0===e)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(e)}function s(){try{if(!Object.assign)return!1;var e=new String("abc");if(e[5]="de","5"===Object.getOwnPropertyNames(e)[0])return!1;for(var t={},n=0;n<10;n++)t["_"+String.fromCharCode(n)]=n;var r=Object.getOwnPropertyNames(t).map(function(e){return t[e]});if("0123456789"!==r.join(""))return!1;var i={};return"abcdefghijklmnopqrst".split("").forEach(function(e){i[e]=e}),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},i)).join("")}catch(e){return!1}}e.exports=s()?Object.assign:function(e,t){for(var n,s,l=a(e),c=1;c=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}function i(e,t){if(null==e)return{};var n,r,i={},o=Object.keys(e);for(r=0;r=0||(i[n]=e[n]);return i}function o(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function a(e){for(var t=1;t1&&0===n&&i&&"auto"!==i?parseInt(i.toString(),10):i},m);return u.createElement(h,Object.assign({},p,{style:g}),t.map(function(e,t){var n,i=e.column,o=e.isLast,l=r(e,["column","isLast"]),h=i.onHeaderCell?i.onHeaderCell(i):{};return i.align&&(h.style=a({},h.style,{textAlign:i.align})),h.className=d.default(h.className,i.className,(n={},s(n,"".concat(c,"-align-").concat(i.align),!!i.align),s(n,"".concat(c,"-row-cell-ellipsis"),!!i.ellipsis),s(n,"".concat(c,"-row-cell-break-word"),!!i.width),s(n,"".concat(c,"-row-cell-last"),o),n)),u.createElement(f,Object.assign({},l,h,{key:i.key||i.dataIndex||t}))}))}function p(e,t){var n=e.fixedColumnsHeadRowsHeight,r=t.columns,i=t.rows,o=t.fixed,a=n[0];return o&&a&&r?"auto"===a?"auto":a/i.length:null}t.default=h.connect(function(e,t){return{height:p(e,t)}})(f)},MvwC:function(e,t,n){var r=n("5T2Y").document;e.exports=r&&r.documentElement},N2Kk:function(e,t,n){"use strict";t["a"]={items_per_page:"\u6761/\u9875",jump_to:"\u8df3\u81f3",jump_to_confirm:"\u786e\u5b9a",page:"\u9875",prev_page:"\u4e0a\u4e00\u9875",next_page:"\u4e0b\u4e00\u9875",prev_5:"\u5411\u524d 5 \u9875",next_5:"\u5411\u540e 5 \u9875",prev_3:"\u5411\u524d 3 \u9875",next_3:"\u5411\u540e 3 \u9875"}},N4uP:function(e,t,n){var r=n("c0Oy"),i=n("WGNW"),o=n("08Qx"),a=[].slice,s=/MSIE .\./.test(o),l=function(e){return function(t,n){var r=arguments.length>2,i=!!r&&a.call(arguments,2);return e(r?function(){("function"==typeof t?t:Function(t)).apply(this,i)}:t,n)}};i(i.G+i.B+i.F*s,{setTimeout:l(r.setTimeout),setInterval:l(r.setInterval)})},N9RS:function(e,t,n){"use strict";n.r(t);var r=n("d6i3"),i=n.n(r),o=n("p0pE"),a=n.n(o),s=n("t3Un"),l=(n("tI4l"),{payments:[],fetchLoading:!1});t["default"]={name:"payment",state:a()({},l),reducers:{setState(e,t){var n=t.payload;return a()({},e,n)}},effects:{fetch(e,t){return i.a.mark(function e(){var n,r;return i.a.wrap(function(e){while(1)switch(e.prev=e.next){case 0:return n=t.put,e.next=3,n({type:"setState",payload:{fetchLoading:!0}});case 3:return e.next=5,Object(s["a"])("/admin/payment/fetch");case 5:return r=e.sent,e.next=8,n({type:"setState",payload:{fetchLoading:!1}});case 8:if(200===r.code){e.next=10;break}return e.abrupt("return");case 10:return e.next=12,n({type:"setState",payload:{payments:r.data}});case 12:case"end":return e.stop()}},e)})()},getPaymentMethods(e){return i.a.mark(function t(){var n,r;return i.a.wrap(function(t){while(1)switch(t.prev=t.next){case 0:return n=e.complete,t.next=3,Object(s["a"])("/admin/payment/getPaymentMethods");case 3:if(r=t.sent,200===r.code){t.next=6;break}return t.abrupt("return");case 6:n(r.data);case 7:case"end":return t.stop()}},t)})()},getPaymentForm(e){return i.a.mark(function t(){var n,r,o,a;return i.a.wrap(function(t){while(1)switch(t.prev=t.next){case 0:return n=e.complete,r=e.payment,o=e.id,t.next=3,Object(s["b"])("/admin/payment/getPaymentForm",{payment:r,id:o});case 3:if(a=t.sent,200===a.code){t.next=6;break}return t.abrupt("return");case 6:n(a.data);case 7:case"end":return t.stop()}},t)})()},save(e,t){return i.a.mark(function n(){var r,o,l,c;return i.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.params,o=e.complete,l=t.put,n.next=4,Object(s["b"])("/admin/payment/save",a()({},r));case 4:if(c=n.sent,200===c.code){n.next=7;break}return n.abrupt("return");case 7:return"function"===typeof o&&o(c.data),n.next=10,l({type:"fetch"});case 10:case"end":return n.stop()}},n)})()},drop(e,t){return i.a.mark(function n(){var r,o,a;return i.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.id,o=t.put,n.next=4,Object(s["b"])("/admin/payment/drop",{id:r});case 4:if(a=n.sent,200===a.code){n.next=7;break}return n.abrupt("return");case 7:return n.next=9,o({type:"fetch"});case 9:case"end":return n.stop()}},n)})()}}}},NC18:function(e,t,n){"use strict";var r=n("IaEH"),i=n("y+Vt"),o=n("IMiH"),a=n("QBsz"),s=o["a"].CMD,l=[[],[],[]],c=Math.sqrt,u=Math.atan2;function h(e,t){if(t){var n,r,i,o,h,d,f=e.data,p=e.len(),m=s.M,g=s.C,v=s.L,y=s.R,b=s.A,w=s.Q;for(i=0,o=0;i1&&(a*=f(w),s*=f(w));var x=(i===o?-1:1)*f((a*a*(s*s)-a*a*(v*v)-s*s*(d*d))/(a*a*(v*v)+s*s*(d*d)))||0,_=x*a*v/s,C=x*-s*d/a,S=(e+n)/2+m(h)*_-p(h)*C,E=(t+r)/2+p(h)*_+m(h)*C,k=b([1,0],[(d-_)/a,(v-C)/s]),O=[(d-_)/a,(v-C)/s],T=[(-1*d-_)/a,(-1*v-C)/s],A=b(O,T);if(y(O,T)<=-1&&(A=g),y(O,T)>=1&&(A=0),A<0){var M=Math.round(A/g*1e6)/1e6;A=2*g+M%2*g}u.addData(c,S,E,a,s,k,A,h,o)}var x=/([mlvhzcqtsa])([^mlvhzcqtsa]*)/gi,_=/-?([0-9]*\.)?[0-9]+([eE]-?[0-9]+)?/g;function C(e){var t=new o["a"];if(!e)return t;var n,r=0,i=0,a=r,s=i,l=o["a"].CMD,c=e.match(x);if(!c)return t;for(var u=0;u0?arguments[0]:void 0)}},{get:function(e){var t=r.getEntry(i(this,o),e);return t&&t.v},set:function(e,t){return r.def(i(this,o),0===e?0:e,t)}},r,!0)},OERk:function(e,t,n){"use strict";var r=n("DIcO"),i=n("48Dx"),o=n("yw4e"),a=n("OeOC");e.exports=n("XdPT")(Array,"Array",function(e,t){this._t=a(e),this._i=0,this._k=t},function(){var e=this._t,t=this._k,n=this._i++;return!e||n>=e.length?(this._t=void 0,i(1)):i(0,"keys"==t?n:"values"==t?e[n]:[n,e[n]])},"values"),o.Arguments=o.Array,r("keys"),r("values"),r("entries")},OHgp:function(e,t,n){"use strict";var r=n("2a/h"),i={};i[n("gL7N")("toStringTag")]="z",i+""!="[object z]"&&n("rKIl")(Object.prototype,"toString",function(){return"[object "+r(this)+"]"},!0)},OJuA:function(e,t,n){"use strict";e.exports=n("FqPH")||!n("wUWy")(function(){var e=Math.random();__defineSetter__.call(null,e,function(){}),delete n("c0Oy")[e]})},OLES:function(e,t,n){"use strict";var r=n("QbLZ"),i=n.n(r),o=n("jo6Y"),a=n.n(o),s=n("iCc5"),l=n.n(s),c=n("FYw3"),u=n.n(c),h=n("mRg0"),d=n.n(h),f=n("q1tI"),p=n.n(f),m=n("17x9"),g=n.n(m),v=n("uciX"),y=n("7ixt"),b=function(e){function t(){return l()(this,t),u()(this,e.apply(this,arguments))}return d()(t,e),t.prototype.componentDidUpdate=function(){var e=this.props.trigger;e&&e.forcePopupAlign()},t.prototype.render=function(){var e=this.props,t=e.overlay,n=e.prefixCls,r=e.id;return p.a.createElement("div",{className:n+"-inner",id:r,role:"tooltip"},"function"===typeof t?t():t)},t}(p.a.Component);b.propTypes={prefixCls:g.a.string,overlay:g.a.oneOfType([g.a.node,g.a.func]).isRequired,id:g.a.string,trigger:g.a.any};var w=b,x=function(e){function t(){var n,r,i;l()(this,t);for(var o=arguments.length,a=Array(o),s=0;s{if(!this.props.disableRightClick)return{onClick:e=>{this.props.onContextMenu&&(this.props.onContextMenu(void 0),document.getElementById("v2board-table-dropdown").style="display:none;")},onDoubleClick:e=>{},onContextMenu:t=>{this.props.onContextMenu&&(t.preventDefault(),this.forceUpdate(),this.props.onContextMenu&&this.props.onContextMenu(e),document.getElementById("v2board-table-dropdown").style="top: ".concat(t.clientY,"px; left: ").concat(t.clientX,"px;display:unset;"))},onMouseEnter:e=>{},onMouseLeave:e=>{}}}})),s.a.createElement("div",{id:"v2board-table-dropdown",className:"ant-dropdown ant-dropdown-placement-bottomLeft",style:{display:"none",position:"fixed",top:0,left:0},onClick:()=>{this.props.onContextMenu&&(document.getElementById("v2board-table-dropdown").style="display:none;")}},this.props.children))}}},OeOC:function(e,t,n){var r=n("9WFV"),i=n("ZDr/");e.exports=function(e){return r(i(e))}},Ojgd:function(e,t){var n=Math.ceil,r=Math.floor;e.exports=function(e){return isNaN(e=+e)?0:(e>0?r:n)(e)}},OsVd:function(e,t,n){var r=n("AUWw"),i=Math.min;e.exports=function(e){return e>0?i(r(e),9007199254740991):0}},P2sY:function(e,t,n){e.exports={default:n("UbbE"),__esModule:!0}},PFWz:function(e,t,n){try{var r=n("zs13")}catch(e){r=n("zs13")}var i=/\s+/,o=Object.prototype.toString;function a(e){if(!e||!e.nodeType)throw new Error("A DOM element reference is required");this.el=e,this.list=e.classList}e.exports=function(e){return new a(e)},a.prototype.add=function(e){if(this.list)return this.list.add(e),this;var t=this.array(),n=r(t,e);return~n||t.push(e),this.el.className=t.join(" "),this},a.prototype.remove=function(e){if("[object RegExp]"==o.call(e))return this.removeMatching(e);if(this.list)return this.list.remove(e),this;var t=this.array(),n=r(t,e);return~n&&t.splice(n,1),this.el.className=t.join(" "),this},a.prototype.removeMatching=function(e){for(var t=this.array(),n=0;ne.length)&&(t=e.length);for(var n=0,r=new Array(t);n4&&void 0!==arguments[4]&&arguments[4];n&&n.stopPropagation();var a=r.props,l=a.onExpandedRowsChange,c=a.onExpand,u=r.store.getState(),h=u.expandedRowKeys;if(e)h=[].concat(s(h),[i]);else{var d=h.indexOf(i);-1!==d&&(h=M.remove(h,i))}r.props.expandedRowKeys||r.store.setState({expandedRowKeys:h}),r.latestExpandedRows&&T.default(r.latestExpandedRows,h)||(r.latestExpandedRows=h,l(h)),o||c(e,t)},r.renderExpandIndentCell=function(e,t){var n=r.props,i=n.prefixCls,a=n.expandIconAsCell;if(a&&"right"!==t&&e.length){var s={key:"rc-table-expand-icon-cell",className:"".concat(i,"-expand-icon-th"),title:"",rowSpan:e.length};e[0].unshift(o({},s,{column:s}))}},r.renderRows=function(e,t,n,i,o,a,l,c){var u=r.props,h=u.expandedRowClassName,d=u.expandedRowRender,f=u.childrenColumnName,p=n[f],m=[].concat(s(c),[l]),g=o+1;d&&t.push(r.renderExpandedRow(n,i,d,h(n,i,o),m,g,a)),p&&t.push.apply(t,s(e(p,g,m)))};var i=e.data,a=e.childrenColumnName,l=e.defaultExpandAllRows,c=e.expandedRowKeys,u=e.defaultExpandedRowKeys,h=e.getRowKey,d=[],p=s(i);if(l)for(var m=0;m{this.state.visible||this.setState({submit:this.defaultValue})})}generate(){var e=g()({},this.state.submit);this.props.dispatch({type:"coupon/generate",params:e,callback:()=>{this.modalVisible()}})}drop(e){this.props.dispatch({type:"coupon/drop",id:e.id})}tableOnChange(e,t){this.props.dispatch({type:"coupon/changeTable",pagination:e,sort:{sort_type:"ascend"===t.order?"ASC":"DESC",sort:t.columnKey}})}render(){var e=this.props.coupon,t=e.coupons,n=e.fetchLoading,r=e.saveLoading,m=e.pagination,v=this.props.plan.plans,w=[{title:"#",dataIndex:"id",key:"id"},{title:"\u5238\u540d\u79f0",dataIndex:"name",key:"name"},{title:"\u7c7b\u578b",dataIndex:"type",key:"type",render:e=>{return 1===e?"\u91d1\u989d":"\u6bd4\u4f8b"}},{title:"\u5238\u7801",dataIndex:"code",key:"code",render:e=>{return y.a.createElement(f["a"],{style:{cursor:"pointer"},onClick:()=>{C()(e),p["a"].success("\u590d\u5236\u6210\u529f")}},e)}},{title:"\u5269\u4f59\u6b21\u6570",dataIndex:"limit_use",key:"limit_use",render:e=>{return y.a.createElement(f["a"],null,null!==e?e:"\u65e0\u9650")}},{title:"\u6709\u6548\u671f",dataIndex:"started_at",key:"started_at",align:"left",render:(e,t)=>{return"".concat(x()(1e3*t.started_at).format("YYYY/MM/DD HH:mm")," ~ ").concat(x()(1e3*t.ended_at).format("YYYY/MM/DD HH:mm"))}},{title:"\u64cd\u4f5c",dataIndex:"action",key:"action",align:"right",render:(e,n,r)=>{return y.a.createElement("div",null,y.a.createElement("a",{onClick:()=>{this.setState({submit:t[r]},()=>{this.modalVisible()})},href:"javascript:void(0);"},"\u7f16\u8f91"),y.a.createElement(d["a"],{type:"vertical"}),y.a.createElement("a",{onClick:()=>this.drop(n),href:"javascript:void(0);"},"\u5220\u9664"))}}];return y.a.createElement(b["a"],i()({},this.props,{title:"\u4f18\u60e0\u5238\u7ba1\u7406"}),y.a.createElement("div",{className:"mb-0 block border-bottom ".concat(n?"block-mode-loading":"")},y.a.createElement("div",{className:"bg-white"},y.a.createElement("div",{style:{padding:15}},y.a.createElement(u["a"],{onClick:()=>this.modalVisible()},y.a.createElement(h["a"],{type:"plus"})," \u6dfb\u52a0\u4f18\u60e0\u5238")),y.a.createElement(c["a"],{tableLayout:"auto",dataSource:t,columns:w,scroll:{x:1050},pagination:g()({},m,{size:"small",showSizeChanger:!0,pageSizeOptions:[10,50,100,150]}),onChange:(e,t,n)=>this.tableOnChange(e,n)}))),y.a.createElement(o["a"],{title:"".concat(this.state.submit.id?"\u7f16\u8f91\u4f18\u60e0\u5238":"\u65b0\u5efa\u4f18\u60e0\u5238"),visible:this.state.visible,onCancel:()=>this.modalVisible(),onOk:()=>this.generate(),okText:"\u63d0\u4ea4",cancelText:"\u53d6\u6d88",okButtonProps:{loading:r},key:this.key},y.a.createElement("div",null,y.a.createElement("div",{className:"form-group"},y.a.createElement("label",{for:"example-text-input-alt"},"\u540d\u79f0"),y.a.createElement(l["a"],{placeholder:"\u8bf7\u8f93\u5165\u4f18\u60e0\u5238\u540d\u79f0",value:this.state.submit.name,onChange:e=>{this.setState({submit:g()({},this.state.submit,{name:e.target.value})})}})),!this.state.submit.generate_count&&y.a.createElement("div",{className:"form-group"},y.a.createElement("label",{for:"example-text-input-alt"},"\u81ea\u5b9a\u4e49\u4f18\u60e0\u5238\u7801"),y.a.createElement(l["a"],{placeholder:"\u81ea\u5b9a\u4e49\u4f18\u60e0\u5238\u7801(\u7559\u7a7a\u968f\u673a\u751f\u6210)",value:this.state.submit.code,onChange:e=>{this.setState({submit:g()({},this.state.submit,{code:e.target.value,generate_count:void 0})})}})),y.a.createElement("div",{className:"form-group"},y.a.createElement("label",{for:"example-text-input-alt"},"\u4f18\u60e0\u4fe1\u606f"),y.a.createElement(l["a"],{type:"number",addonBefore:y.a.createElement(s["a"],{style:{width:120},value:this.state.submit.type,onChange:e=>{this.setState({submit:g()({},this.state.submit,{type:e})})}},y.a.createElement(s["a"].Option,{value:1},"\u6309\u91d1\u989d\u4f18\u60e0"),y.a.createElement(s["a"].Option,{value:2},"\u6309\u6bd4\u4f8b\u4f18\u60e0")),addonAfter:1===this.state.submit.type?"\xa5":"%",placeholder:"\u8bf7\u8f93\u5165\u503c",value:this.state.submit.value,onChange:e=>{this.setState({submit:g()({},this.state.submit,{value:e.target.value})})}})),y.a.createElement("div",{className:"form-group"},y.a.createElement("label",{for:"example-text-input-alt"},"\u4f18\u60e0\u5238\u6709\u6548\u671f"),y.a.createElement(a["a"].RangePicker,{style:{width:"100%"},showTime:{format:"HH:mm"},format:"YYYY-MM-DD HH:mm",placeholder:["Start Time","End Time"],value:[this.state.submit.started_at?x()(1e3*this.state.submit.started_at):null,this.state.submit.ended_at?x()(1e3*this.state.submit.ended_at):null],onChange:e=>this.setState({submit:g()({},this.state.submit,{started_at:e[0]?e[0].format("X"):null,ended_at:e[1]?e[1].format("X"):null})}),onOk:e=>this.setState({submit:g()({},this.state.submit,{started_at:e[0]?e[0].format("X"):null,ended_at:e[1]?e[1].format("X"):null})})})),y.a.createElement("div",{className:"form-group"},y.a.createElement("label",{for:"example-text-input-alt"},"\u6700\u5927\u4f7f\u7528\u6b21\u6570"),y.a.createElement(l["a"],{placeholder:"\u9650\u5236\u6700\u5927\u4f7f\u7528\u6b21\u6570\uff0c\u7528\u5b8c\u5219\u65e0\u6cd5\u4f7f\u7528(\u4e3a\u7a7a\u5219\u4e0d\u9650\u5236)",value:this.state.submit.limit_use,onChange:e=>{this.setState({submit:g()({},this.state.submit,{limit_use:e.target.value})})}})),y.a.createElement("div",{className:"form-group"},y.a.createElement("label",{htmlFor:"example-text-input-alt"},"\u6bcf\u4e2a\u7528\u6237\u53ef\u4f7f\u7528\u6b21\u6570"),y.a.createElement(l["a"],{placeholder:"\u9650\u5236\u6bcf\u4e2a\u7528\u6237\u53ef\u4f7f\u7528\u6b21\u6570(\u4e3a\u7a7a\u5219\u4e0d\u9650\u5236)",value:this.state.submit.limit_use_with_user,onChange:e=>{this.setState({submit:g()({},this.state.submit,{limit_use_with_user:e.target.value})})}})),y.a.createElement("div",{className:"form-group"},y.a.createElement("label",{for:"example-text-input-alt"},"\u6307\u5b9a\u8ba2\u9605"),y.a.createElement("div",null,y.a.createElement(s["a"],{value:this.state.submit.limit_plan_ids||[],onChange:e=>{this.setState({submit:g()({},this.state.submit,{limit_plan_ids:e.length?e:null})})},mode:"multiple",placeholder:"\u9650\u5236\u6307\u5b9a\u8ba2\u9605\u53ef\u4ee5\u4f7f\u7528\u4f18\u60e0(\u4e3a\u7a7a\u5219\u4e0d\u9650\u5236)",style:{width:"100%"}},v.map(e=>{return y.a.createElement(s["a"].Option,{key:Math.random(),value:"".concat(e.id)},e.name)})))),y.a.createElement("div",{className:"form-group"},y.a.createElement("label",{htmlFor:"example-text-input-alt"},"\u6307\u5b9a\u5468\u671f"),y.a.createElement("div",null,y.a.createElement(s["a"],{value:this.state.submit.limit_period||[],onChange:e=>{this.setState({submit:g()({},this.state.submit,{limit_period:e.length?e:null})})},mode:"multiple",placeholder:"\u9650\u5236\u6307\u5b9a\u5468\u671f\u53ef\u4ee5\u4f7f\u7528\u4f18\u60e0(\u4e3a\u7a7a\u5219\u4e0d\u9650\u5236)",style:{width:"100%"}},Object.keys(E["a"].periodText).map(e=>{return y.a.createElement(s["a"].Option,{key:Math.random(),value:e},E["a"].periodText[e])})))),!this.state.submit.code&&!this.state.submit.id&&y.a.createElement("div",{className:"form-group"},y.a.createElement("label",{htmlFor:"example-text-input-alt"},"\u751f\u6210\u6570\u91cf"),y.a.createElement(l["a"],{placeholder:"\u8f93\u5165\u6570\u91cf\u6279\u91cf\u751f\u6210",value:this.state.submit.generate_count,onChange:e=>{this.setState({submit:g()({},this.state.submit,{generate_count:e.target.value,code:void 0})})}})))))}}t["default"]=Object(S["c"])(e=>{var t=e.coupon,n=e.plan;return{coupon:t,plan:n}})(k)},Q6cQ:function(e,t,n){"use strict";var r=n("u8+u"),i=n("BFt8"),o=n("gL7N")("hasInstance"),a=Function.prototype;o in a||n("V5/1").f(a,o,{value:function(e){if("function"!=typeof this||!r(e))return!1;if(!r(this.prototype))return e instanceof this;while(e=i(e))if(this.prototype===e)return!0;return!1}})},QBsz:function(e,t,n){"use strict";function r(e,t){return null==e&&(e=0),null==t&&(t=0),[e,t]}function i(e){return[e[0],e[1]]}function o(e,t,n){return e[0]=t[0]+n[0],e[1]=t[1]+n[1],e}function a(e,t,n){return e[0]=t[0]-n[0],e[1]=t[1]-n[1],e}function s(e){return Math.sqrt(l(e))}n.d(t,"d",function(){return r}),n.d(t,"c",function(){return i}),n.d(t,"a",function(){return o}),n.d(t,"m",function(){return a}),n.d(t,"l",function(){return c}),n.d(t,"k",function(){return u}),n.d(t,"g",function(){return h}),n.d(t,"e",function(){return d}),n.d(t,"f",function(){return p}),n.d(t,"h",function(){return m}),n.d(t,"b",function(){return g}),n.d(t,"j",function(){return v}),n.d(t,"i",function(){return y});function l(e){return e[0]*e[0]+e[1]*e[1]}function c(e,t,n){return e[0]=t[0]*n,e[1]=t[1]*n,e}function u(e,t){var n=s(t);return 0===n?(e[0]=0,e[1]=0):(e[0]=t[0]/n,e[1]=t[1]/n),e}function h(e,t){return Math.sqrt((e[0]-t[0])*(e[0]-t[0])+(e[1]-t[1])*(e[1]-t[1]))}var d=h;function f(e,t){return(e[0]-t[0])*(e[0]-t[0])+(e[1]-t[1])*(e[1]-t[1])}var p=f;function m(e,t,n,r){return e[0]=t[0]+r*(n[0]-t[0]),e[1]=t[1]+r*(n[1]-t[1]),e}function g(e,t,n){var r=t[0],i=t[1];return e[0]=n[0]*r+n[2]*i+n[4],e[1]=n[1]*r+n[3]*i+n[5],e}function v(e,t,n){return e[0]=Math.min(t[0],n[0]),e[1]=Math.min(t[1],n[1]),e}function y(e,t,n){return e[0]=Math.max(t[0],n[0]),e[1]=Math.max(t[1],n[1]),e}},"QC+M":function(e,t,n){"use strict";n.d(t,"a",function(){return w});var r=n("q1tI"),i=n.n(r),o=n("i8i4"),a=n.n(o),s=n("17x9"),l=n.n(s);function c(e){"@babel/helpers - typeof";return c="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},c(e)}function u(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function h(e,t){for(var n=0;n255?255:e}function a(e){return e<0?0:e>1?1:e}function s(e){var t=e;return t.length&&"%"===t.charAt(t.length-1)?o(parseFloat(t)/100*255):o(parseInt(t,10))}function l(e){var t=e;return t.length&&"%"===t.charAt(t.length-1)?a(parseFloat(t)/100):a(parseFloat(t))}function c(e,t,n){return n<0?n+=1:n>1&&(n-=1),6*n<1?e+(t-e)*n*6:2*n<1?t:3*n<2?e+(t-e)*(2/3-n)*6:e}function u(e,t,n){return e+(t-e)*n}function h(e,t,n,r,i){return e[0]=t,e[1]=n,e[2]=r,e[3]=i,e}function d(e,t){return e[0]=t[0],e[1]=t[1],e[2]=t[2],e[3]=t[3],e}var f=new r["a"](20),p=null;function m(e,t){p&&d(p,t),p=f.put(e,p||t.slice())}function g(e,t){if(e){t=t||[];var n=f.get(e);if(n)return d(t,n);e+="";var r=e.replace(/ /g,"").toLowerCase();if(r in i)return d(t,i[r]),m(e,t),t;var o=r.length;if("#"!==r.charAt(0)){var a=r.indexOf("("),c=r.indexOf(")");if(-1!==a&&c+1===o){var u=r.substr(0,a),p=r.substr(a+1,c-(a+1)).split(","),g=1;switch(u){case"rgba":if(4!==p.length)return 3===p.length?h(t,+p[0],+p[1],+p[2],1):h(t,0,0,0,1);g=l(p.pop());case"rgb":return 3!==p.length?void h(t,0,0,0,1):(h(t,s(p[0]),s(p[1]),s(p[2]),g),m(e,t),t);case"hsla":return 4!==p.length?void h(t,0,0,0,1):(p[3]=l(p[3]),v(p,t),m(e,t),t);case"hsl":return 3!==p.length?void h(t,0,0,0,1):(v(p,t),m(e,t),t);default:return}}h(t,0,0,0,1)}else{if(4===o||5===o){var y=parseInt(r.slice(1,4),16);return y>=0&&y<=4095?(h(t,(3840&y)>>4|(3840&y)>>8,240&y|(240&y)>>4,15&y|(15&y)<<4,5===o?parseInt(r.slice(4),16)/15:1),m(e,t),t):void h(t,0,0,0,1)}if(7===o||9===o){y=parseInt(r.slice(1,7),16);return y>=0&&y<=16777215?(h(t,(16711680&y)>>16,(65280&y)>>8,255&y,9===o?parseInt(r.slice(7),16)/255:1),m(e,t),t):void h(t,0,0,0,1)}}}}function v(e,t){var n=(parseFloat(e[0])%360+360)%360/360,r=l(e[1]),i=l(e[2]),a=i<=.5?i*(r+1):i+r-i*r,s=2*i-a;return t=t||[],h(t,o(255*c(s,a,n+1/3)),o(255*c(s,a,n)),o(255*c(s,a,n-1/3)),1),4===e.length&&(t[3]=e[3]),t}function y(e,t){var n=g(e);if(n){for(var r=0;r<3;r++)n[r]=t<0?n[r]*(1-t)|0:(255-n[r])*t+n[r]|0,n[r]>255?n[r]=255:n[r]<0&&(n[r]=0);return x(n,4===n.length?"rgba":"rgb")}}function b(e){var t=g(e);if(t)return((1<<24)+(t[0]<<16)+(t[1]<<8)+ +t[2]).toString(16).slice(1)}function w(e,t,n){if(t&&t.length&&e>=0&&e<=1){var r=e*(t.length-1),i=Math.floor(r),s=Math.ceil(r),l=g(t[i]),c=g(t[s]),h=r-i,d=x([o(u(l[0],c[0],h)),o(u(l[1],c[1],h)),o(u(l[2],c[2],h)),a(u(l[3],c[3],h))],"rgba");return n?{color:d,leftIndex:i,rightIndex:s,value:r}:d}}function x(e,t){if(e&&e.length){var n=e[0]+","+e[1]+","+e[2];return"rgba"!==t&&"hsva"!==t&&"hsla"!==t||(n+=","+e[3]),t+"("+n+")"}}function _(e,t){var n=g(e);return n?(.299*n[0]+.587*n[1]+.114*n[2])*n[3]/255+(1-n[3])*t:0}},QeHl:function(e,t,n){n("Jaki")("Float32",4,function(e){return function(t,n,r){return e(this,t,n,r)}})},QsMh:function(e,t,n){"use strict";var r=n("WGNW"),i=n("wYm8"),o=n("il4q"),a=n("wUWy"),s=[].sort,l=[1,2,3];r(r.P+r.F*(a(function(){l.sort(void 0)})||!a(function(){l.sort(null)})||!n("l0kz")(s)),"Array",{sort:function(e){return void 0===e?s.call(o(this)):s.call(o(this),i(e))}})},QuXc:function(e,t,n){"use strict";var r=function(){function e(e){this.colorStops=e||[]}return e.prototype.addColorStop=function(e,t){this.colorStops.push({offset:e,color:t})},e}();t["a"]=r},"R+7+":function(e,t,n){var r=n("w6GO"),i=n("mqlF"),o=n("NV0k");e.exports=function(e){var t=r(e),n=i.f;if(n){var a,s=n(e),l=o.f,c=0;while(s.length>c)l.call(e,a=s[c++])&&t.push(a)}return t}},R1X6:function(e,t,n){"use strict";var r=Math.round(9*Math.random()),i="function"===typeof Object.defineProperty,o=function(){function e(){this._id="__ec_inner_"+r++}return e.prototype.get=function(e){return this._guard(e)[this._id]},e.prototype.set=function(e,t){var n=this._guard(e);return i?Object.defineProperty(n,this._id,{value:t,enumerable:!1,configurable:!0}):n[this._id]=t,this},e.prototype["delete"]=function(e){return!!this.has(e)&&(delete this._guard(e)[this._id],!0)},e.prototype.has=function(e){return!!this._guard(e)[this._id]},e.prototype._guard=function(e){if(e!==Object(e))throw TypeError("Value of WeakMap is not a non-null object.");return e},e}();t["a"]=o},"R64+":function(e,t,n){"use strict";t.__esModule=!0;var r=n("GB+t"),i=o(r);function o(e){return e&&e.__esModule?e:{default:e}}var a=function(){var e=null,t=function(t){return(0,i.default)(null==e,"A history supports only one prompt at a time"),e=t,function(){e===t&&(e=null)}},n=function(t,n,r,o){if(null!=e){var a="function"===typeof e?e(t,n):e;"string"===typeof a?"function"===typeof r?r(a,o):((0,i.default)(!1,"A history needs a getUserConfirmation function in order to use a prompt message"),o(!0)):o(!1!==a)}else o(!0)},r=[],o=function(e){var t=!0,n=function(){t&&e.apply(void 0,arguments)};return r.push(n),function(){t=!1,r=r.filter(function(e){return e!==n})}},a=function(){for(var e=arguments.length,t=Array(e),n=0;n{return h[e]}},{title:"\u5de5\u5355\u72b6\u6001",dataIndex:"reply_status",key:"reply_status",render:(e,t)=>{return 1===t.status?d.a.createElement("span",null,d.a.createElement(u["a"],{status:"success"}),"\u5df2\u5173\u95ed"):d.a.createElement("span",null,d.a.createElement(u["a"],{status:e?"error":"processing"}),e?"\u5f85\u56de\u590d":"\u5df2\u56de\u590d")}},{title:"\u521b\u5efa\u65f6\u95f4",dataIndex:"created_at",key:"created_at",render:e=>{return g()(1e3*e).format("YYYY/MM/DD HH:mm")}},{title:"\u6700\u540e\u56de\u590d",dataIndex:"updated_at",key:"updated_at",render:e=>{return g()(1e3*e).format("YYYY/MM/DD HH:mm")}},{title:"\u64cd\u4f5c",dataIndex:"action",key:"action",align:"right",render:(e,t)=>{return d.a.createElement("div",null,d.a.createElement("a",{href:"javascript:void(0);",onClick:()=>this.toChat(t.id)},"\u67e5\u770b"),d.a.createElement(c["a"],{type:"vertical"}),d.a.createElement("a",{disabled:t.status,href:"javascript:void(0);",onClick:()=>this.close(t.id)},"\u5173\u95ed"))}}];return d.a.createElement(f["a"],i()({},this.props,{title:"\u5de5\u5355\u7ba1\u7406"}),d.a.createElement("div",{className:"mb-0 block border-bottom ".concat(n?"block-mode-loading":"")},d.a.createElement("div",{className:"bg-white"},d.a.createElement("div",{className:"p-3"},d.a.createElement(l["a"].Group,{value:a.status,onChange:e=>this.filter(e.target.value)},d.a.createElement(l["a"].Button,{value:0},"\u5df2\u5f00\u542f"),d.a.createElement(l["a"].Button,{value:1},"\u5df2\u5173\u95ed"))),d.a.createElement(o["a"],{tableLayout:"auto",dataSource:t,pagination:s()({},r,{size:"small"}),columns:p,scroll:{x:900},onChange:(e,t,n)=>this.tableOnChange(e,n)}))))}}t["default"]=Object(p["c"])(e=>{var t=e.ticket;return{ticket:t}})(v)},"RU/L":function(e,t,n){n("Rqdy");var r=n("WEpk").Object;e.exports=function(e,t,n){return r.defineProperty(e,t,n)}},RXBc:function(e,t,n){"use strict";n.r(t),n.d(t,"default",function(){return s});var r=n("q1tI"),i=n.n(r),o=n("3a4m"),a=n.n(o);class s extends i.a.Component{componentDidMount(){a.a.push("/login")}render(){return i.a.createElement("div",null)}}},RXMa:function(e,t,n){"use strict";var r=n("IaEH"),i=n("y+Vt"),o=function(){function e(){this.cx=0,this.cy=0,this.r=0,this.r0=0}return e}(),a=function(e){function t(t){return e.call(this,t)||this}return Object(r["a"])(t,e),t.prototype.getDefaultShape=function(){return new o},t.prototype.buildPath=function(e,t){var n=t.cx,r=t.cy,i=2*Math.PI;e.moveTo(n+t.r,r),e.arc(n,r,t.r,0,i,!1),e.moveTo(n+t.r0,r),e.arc(n,r,t.r0,0,i,!0)},t}(i["b"]);a.prototype.type="ring",t["a"]=a},RfKB:function(e,t,n){var r=n("2faE").f,i=n("B+OT"),o=n("UWiX")("toStringTag");e.exports=function(e,t,n){e&&!i(e=n?e:e.prototype,o)&&r(e,o,{configurable:!0,value:t})}},Rqdy:function(e,t,n){var r=n("Y7ZC");r(r.S+r.F*!n("jmDH"),"Object",{defineProperty:n("2faE").f})},S8SX:function(e,t,n){"use strict";n.d(t,"a",function(){return r}),n.d(t,"c",function(){return i}),n.d(t,"b",function(){return o});var r=1,i=2,o=4},SBuE:function(e,t){e.exports={}},SEkw:function(e,t,n){e.exports={default:n("RU/L"),__esModule:!0}},SGa5:function(e,t,n){"use strict";n.r(t);n("Pwec");var r=n("CtXQ"),i=n("q1tI"),o=n.n(i),a=n("/MKj");class s extends o.a.Component{constructor(e){super(e),this.state={},this.keyDown=this.keyDown.bind(this)}keyDown(e){13===e.keyCode&&this.login()}componentDidMount(){var e=this.props.location.query.verify,t=this.props.location.query.redirect;e&&this.props.dispatch({type:"passport/token2Login",verify:e,redirect:t}),this.props.dispatch({type:"passport/check",redirect:t}),window.addEventListener("keydown",this.keyDown,!1)}componentWillUnmount(){window.removeEventListener("keydown",this.keyDown,!1)}login(){this.props.dispatch({type:"passport/login",email:this.refs.email.value,password:this.refs.password.value})}render(){var e=this.props.passport.loginLoading;return o.a.createElement("div",{id:"page-container"},o.a.createElement("main",{id:"main-container"},o.a.createElement("div",{className:"v2board-background",style:{backgroundImage:window.settings.background_url&&"url(".concat(window.settings.background_url,")")}}),o.a.createElement("div",{className:"no-gutters v2board-auth-box"},o.a.createElement("div",{className:"",style:{maxWidth:450,width:"100%",margin:"auto"}},o.a.createElement("div",{className:"block block-rounded block-transparent block-fx-pop w-100 mb-0 overflow-hidden bg-image",style:{boxShadow:"0 0.5rem 2rem #0000000d"}},o.a.createElement("div",{className:"row no-gutters"},o.a.createElement("div",{className:"col-md-12 order-md-1 bg-white"},o.a.createElement("div",{className:"block-content block-content-full px-lg-4 py-md-4 py-lg-4"},o.a.createElement("div",{className:"mb-2 text-center"},o.a.createElement("a",{className:"link-fx font-w700 font-size-h1",href:"javascript:void(0);"},o.a.createElement("span",{className:"text-dark"},window.settings.title||"V2Board")),o.a.createElement("p",{className:"text-uppercase font-w700 font-size-sm text-muted"},"\u767b\u5f55\u5230\u7ba1\u7406\u4e2d\u5fc3")),o.a.createElement("div",{className:"form-group"},o.a.createElement("input",{type:"text",className:"form-control form-control-alt",placeholder:"\u90ae\u7bb1",ref:"email"})),o.a.createElement("div",{className:"form-group"},o.a.createElement("input",{type:"password",className:"form-control form-control-alt",placeholder:"\u5bc6\u7801",ref:"password"})),o.a.createElement("div",{className:"form-group"},o.a.createElement("button",{disabled:e,type:"submit",className:"btn btn-block btn-hero-primary",onClick:()=>this.login()},e?o.a.createElement(r["a"],{type:"loading"}):o.a.createElement("span",null,o.a.createElement("i",{className:"si si-login mr-1"}),"\u767b\u5165")))))))))))}}t["default"]=Object(a["c"])(e=>{var t=e.passport;return{passport:t}})(s)},SKnc:function(e,t,n){"use strict";var r=n("IaEH"),i=n("QuXc"),o=function(e){function t(t,n,r,i,o,a){var s=e.call(this,o)||this;return s.x=null==t?0:t,s.y=null==n?0:n,s.x2=null==r?1:r,s.y2=null==i?0:i,s.type="linear",s.global=a||!1,s}return Object(r["a"])(t,e),t}(i["a"]);t["a"]=o},SLVX:function(e,t,n){"use strict";function r(e){var t,n=e.Symbol;return"function"===typeof n?n.observable?t=n.observable:(t=n("observable"),n.observable=t):t="@@observable",t}n.d(t,"a",function(){return r})},SPFY:function(e,t,n){n("Jaki")("Float64",8,function(e){return function(t,n,r){return e(this,t,n,r)}})},SfDG:function(e,t,n){var r=n("u8+u"),i=n("c0Oy").document,o=r(i)&&r(i.createElement);e.exports=function(e){return o?i.createElement(e):{}}},Sj9i:function(e,t,n){"use strict";n.d(t,"a",function(){return m}),n.d(t,"b",function(){return g}),n.d(t,"f",function(){return v}),n.d(t,"c",function(){return y}),n.d(t,"g",function(){return b}),n.d(t,"e",function(){return w}),n.d(t,"d",function(){return x}),n.d(t,"h",function(){return _}),n.d(t,"i",function(){return C}),n.d(t,"m",function(){return S}),n.d(t,"j",function(){return E}),n.d(t,"n",function(){return k}),n.d(t,"l",function(){return O}),n.d(t,"k",function(){return T});var r=n("QBsz"),i=Math.pow,o=Math.sqrt,a=1e-8,s=1e-4,l=o(3),c=1/3,u=Object(r["d"])(),h=Object(r["d"])(),d=Object(r["d"])();function f(e){return e>-a&&ea||e<-a}function m(e,t,n,r,i){var o=1-i;return o*o*(o*e+3*i*t)+i*i*(i*r+3*o*n)}function g(e,t,n,r,i){var o=1-i;return 3*(((t-e)*o+2*(n-t)*i)*o+(r-n)*i*i)}function v(e,t,n,r,a,s){var u=r+3*(t-n)-e,h=3*(n-2*t+e),d=3*(t-e),p=e-a,m=h*h-3*u*d,g=h*d-9*u*p,v=d*d-3*h*p,y=0;if(f(m)&&f(g))if(f(h))s[0]=0;else{var b=-d/h;b>=0&&b<=1&&(s[y++]=b)}else{var w=g*g-4*m*v;if(f(w)){var x=g/m,_=(b=-h/u+x,-x/2);b>=0&&b<=1&&(s[y++]=b),_>=0&&_<=1&&(s[y++]=_)}else if(w>0){var C=o(w),S=m*h+1.5*u*(-g+C),E=m*h+1.5*u*(-g-C);S=S<0?-i(-S,c):i(S,c),E=E<0?-i(-E,c):i(E,c);b=(-h-(S+E))/(3*u);b>=0&&b<=1&&(s[y++]=b)}else{var k=(2*m*h-3*u*g)/(2*o(m*m*m)),O=Math.acos(k)/3,T=o(m),A=Math.cos(O),M=(b=(-h-2*T*A)/(3*u),_=(-h+T*(A+l*Math.sin(O)))/(3*u),(-h+T*(A-l*Math.sin(O)))/(3*u));b>=0&&b<=1&&(s[y++]=b),_>=0&&_<=1&&(s[y++]=_),M>=0&&M<=1&&(s[y++]=M)}}return y}function y(e,t,n,r,i){var a=6*n-12*t+6*e,s=9*t+3*r-3*e-9*n,l=3*t-3*e,c=0;if(f(s)){if(p(a)){var u=-l/a;u>=0&&u<=1&&(i[c++]=u)}}else{var h=a*a-4*s*l;if(f(h))i[0]=-a/(2*s);else if(h>0){var d=o(h),m=(u=(-a+d)/(2*s),(-a-d)/(2*s));u>=0&&u<=1&&(i[c++]=u),m>=0&&m<=1&&(i[c++]=m)}}return c}function b(e,t,n,r,i,o){var a=(t-e)*i+e,s=(n-t)*i+t,l=(r-n)*i+n,c=(s-a)*i+a,u=(l-s)*i+s,h=(u-c)*i+c;o[0]=e,o[1]=a,o[2]=c,o[3]=h,o[4]=h,o[5]=u,o[6]=l,o[7]=r}function w(e,t,n,i,a,l,c,f,p,g,v){var y,b,w,x,_,C=.005,S=1/0;u[0]=p,u[1]=g;for(var E=0;E<1;E+=.05)h[0]=m(e,n,a,c,E),h[1]=m(t,i,l,f,E),x=Object(r["f"])(u,h),x=0&&x=0&&u<=1&&(i[c++]=u)}}else{var h=s*s-4*a*l;if(f(h)){u=-s/(2*a);u>=0&&u<=1&&(i[c++]=u)}else if(h>0){var d=o(h),m=(u=(-s+d)/(2*a),(-s-d)/(2*a));u>=0&&u<=1&&(i[c++]=u),m>=0&&m<=1&&(i[c++]=m)}}return c}function E(e,t,n){var r=e+n-2*t;return 0===r?.5:(e-t)/r}function k(e,t,n,r,i){var o=(t-e)*r+e,a=(n-t)*r+t,s=(a-o)*r+o;i[0]=e,i[1]=o,i[2]=s,i[3]=s,i[4]=a,i[5]=n}function O(e,t,n,i,a,l,c,f,p){var m,g=.005,v=1/0;u[0]=c,u[1]=f;for(var y=0;y<1;y+=.05){h[0]=_(e,n,a,y),h[1]=_(t,i,l,y);var b=Object(r["f"])(u,h);b=0&&bR*R+L*L&&(k=T,O=A),{cx:k,cy:O,x01:-u,y01:-h,x11:k*(i/C-1),y11:O*(i/C-1)}}function b(e,t){var n=p(t.r,0),r=p(t.r0||0,0),i=n>0,b=r>0;if(i||b){if(i||(n=r,r=0),r>n){var w=n;n=r,r=w}var x,_=!!t.clockwise,C=t.startAngle,S=t.endAngle;if(C===S)x=0;else{var E=[C,S];Object(o["b"])(E,!_),x=d(E[0]-E[1])}var k=t.cx,O=t.cy,T=t.cornerRadius||0,A=t.innerCornerRadius||0;if(n>g)if(x>s-g)e.moveTo(k+n*c(C),O+n*l(C)),e.arc(k,O,n,C,S,!_),r>g&&(e.moveTo(k+r*c(S),O+r*l(S)),e.arc(k,O,r,S,C,_));else{var M=d(n-r)/2,P=m(M,T),R=m(M,A),L=R,D=P,j=n*c(C),N=n*l(C),I=r*c(S),$=r*l(S),F=void 0,V=void 0,B=void 0,W=void 0;if((P>g||R>g)&&(F=n*c(S),V=n*l(S),B=r*c(C),W=r*l(C),xg)if(D>g){var X=y(B,W,j,N,n,D,_),Q=y(F,V,I,$,n,D,_);e.moveTo(k+X.cx+X.x01,O+X.cy+X.y01),Dg&&x>g)if(L>g){X=y(I,$,F,V,r,-L,_),Q=y(j,N,B,W,r,-L,_);e.lineTo(k+X.cx+X.x01,O+X.cy+X.y01),Lc)l.call(e,a=s[c++])&&t.push(a)}return t}},T4gb:function(e,t,n){"use strict";n.r(t);var r=n("d6i3"),i=n.n(r),o=n("p0pE"),a=n.n(o),s=n("t3Un"),l={};t["default"]={name:"stat",state:a()({},l),reducers:{save(e,t){var n=t.payload;return a()({},e,n)}},effects:{getOverride(e,t){return i.a.mark(function e(){var n,r;return i.a.wrap(function(e){while(1)switch(e.prev=e.next){case 0:return n=t.put,e.next=3,Object(s["a"])("/admin/stat/getOverride");case 3:if(r=e.sent,200===r.code){e.next=6;break}return e.abrupt("return");case 6:return e.next=8,n({type:"save",payload:a()({},r.data)});case 8:case"end":return e.stop()}},e)})()},getOrder(e){return i.a.mark(function t(){var n,r;return i.a.wrap(function(t){while(1)switch(t.prev=t.next){case 0:return n=e.complete,t.next=3,Object(s["a"])("/admin/stat/getOrder");case 3:if(r=t.sent,200===r.code){t.next=6;break}return t.abrupt("return");case 6:n(r.data);case 7:case"end":return t.stop()}},t)})()},getServerLastRank(e){return i.a.mark(function t(){var n,r;return i.a.wrap(function(t){while(1)switch(t.prev=t.next){case 0:return n=e.complete,t.next=3,Object(s["a"])("/admin/stat/getServerLastRank");case 3:if(r=t.sent,200===r.code){t.next=6;break}return t.abrupt("return");case 6:n(r.data);case 7:case"end":return t.stop()}},t)})()}}}},T6xi:function(e,t,n){"use strict";var r=n("QBsz");function i(e,t,n,r,i,o,a){var s=.5*(n-e),l=.5*(r-t);return(2*(t-n)+s+l)*a+(-3*(t-n)-2*s-l)*o+s*i+t}function o(e,t){for(var n=e.length,o=[],a=0,s=1;sn-2?n-1:u+1],m=e[u>n-3?n-1:u+2]);var g=h*h,v=h*g;o.push([i(d[0],f[0],p[0],m[0],h,g,v),i(d[1],f[1],p[1],m[1],h,g,v)])}return o}function a(e,t,n,i){var o,a,s,l,c=[],u=[],h=[],d=[];if(i){s=[1/0,1/0],l=[-1/0,-1/0];for(var f=0,p=e.length;f=2){if(r&&"spline"!==r){var s=a(i,r,n,t.smoothConstraint);e.moveTo(i[0][0],i[0][1]);for(var l=i.length,c=0;c<(n?l:l-1);c++){var u=s[2*c],h=s[2*c+1],d=i[(c+1)%l];e.bezierCurveTo(u[0],u[1],h[0],h[1],d[0],d[1])}}else{"spline"===r&&(i=o(i,n)),e.moveTo(i[0][0],i[0][1]);c=1;for(var f=i.length;c2&&void 0!==arguments[2]?arguments[2]:[],i=e.context.table,o=i.columnManager,a=i.components,s=i.props,l=s.prefixCls,c=s.childrenColumnName,u=s.rowClassName,h=s.rowRef,d=s.onRowClick,f=s.onRowDoubleClick,p=s.onRowContextMenu,m=s.onRowMouseEnter,g=s.onRowMouseLeave,v=s.onRow,y=e.props,w=y.getRowKey,x=y.fixed,_=y.expander,C=y.isAnyColumnsFixed,S=[],O=function(i){var s=t[i],y=w(s,i),O="string"===typeof u?u:u(s,i,n),T={};o.isAnyColumnsFixed()&&(T.onHover=e.handleRowHover);var A=void 0;A="left"===x?o.leftLeafColumns():"right"===x?o.rightLeafColumns():e.getColumns(o.leafColumns());var M="".concat(l,"-row"),P=b.createElement(k.default,Object.assign({},_.props,{fixed:x,index:i,prefixCls:M,record:s,key:y,rowKey:y,onRowClick:d,needIndentSpaced:_.needIndentSpaced,onExpandedChange:_.handleExpandChange}),function(e){return b.createElement(E.default,Object.assign({fixed:x,indent:n,className:O,record:s,index:i,prefixCls:M,childrenColumnName:c,columns:A,onRow:v,onRowDoubleClick:f,onRowContextMenu:p,onRowMouseEnter:m,onRowMouseLeave:g},T,{rowKey:y,ancestorKeys:r,ref:h(s,i,n),components:a,isAnyColumnsFixed:C},e))});S.push(P),_.renderRows(e.renderRows,S,s,i,n,x,y,r)},T=0;T0?(t=t||1,"dashed"===e?[4*t,2*t]:"dotted"===e?[t]:Object(h["y"])(e)?[e]:Object(h["s"])(e)?e:null):null}var f=n("OS9S"),p=n("S8SX");n.d(t,"c",function(){return x}),n.d(t,"b",function(){return V}),n.d(t,"a",function(){return B});var m=new i["a"](!0);function g(e){var t=e.stroke;return!(null==t||"none"===t||!(e.lineWidth>0))}function v(e){return"string"===typeof e&&"none"!==e}function y(e){var t=e.fill;return null!=t&&"none"!==t}function b(e,t){if(null!=t.fillOpacity&&1!==t.fillOpacity){var n=e.globalAlpha;e.globalAlpha=t.fillOpacity*t.opacity,e.fill(),e.globalAlpha=n}else e.fill()}function w(e,t){if(null!=t.strokeOpacity&&1!==t.strokeOpacity){var n=e.globalAlpha;e.globalAlpha=t.strokeOpacity*t.opacity,e.stroke(),e.globalAlpha=n}else e.stroke()}function x(e,t,n){var r=Object(o["a"])(t.image,t.__image,n);if(Object(o["c"])(r)){var i=e.createPattern(r,t.repeat||"repeat");if("function"===typeof DOMMatrix&&i.setTransform){var a=new DOMMatrix;a.rotateSelf(0,0,(t.rotation||0)/Math.PI*180),a.scaleSelf(t.scaleX||1,t.scaleY||1),a.translateSelf(t.x||0,t.y||0),i.setTransform(a)}return i}}function _(e,t,n,r){var i=g(n),o=y(n),s=n.strokePercent,l=s<1,c=!t.path;t.silent&&!l||!c||t.createPathProxy();var u=t.path||m;if(!r){var f=n.fill,v=n.stroke,_=o&&!!f.colorStops,C=i&&!!v.colorStops,S=o&&!!f.image,E=i&&!!v.image,k=void 0,O=void 0,T=void 0,A=void 0,M=void 0;(_||C)&&(M=t.getBoundingRect()),_&&(k=t.__dirty?Object(a["a"])(e,f,M):t.__canvasFillGradient,t.__canvasFillGradient=k),C&&(O=t.__dirty?Object(a["a"])(e,v,M):t.__canvasStrokeGradient,t.__canvasStrokeGradient=O),S&&(T=t.__dirty||!t.__canvasFillPattern?x(e,f,t):t.__canvasFillPattern,t.__canvasFillPattern=T),E&&(A=t.__dirty||!t.__canvasStrokePattern?x(e,v,t):t.__canvasStrokePattern,t.__canvasStrokePattern=T),_?e.fillStyle=k:S&&(T?e.fillStyle=T:o=!1),C?e.strokeStyle=O:E&&(A?e.strokeStyle=A:i=!1)}var P=n.lineDash&&n.lineWidth>0&&d(n.lineDash,n.lineWidth),R=n.lineDashOffset,L=!!e.setLineDash,D=t.getGlobalScale();if(u.setScale(D[0],D[1],t.segmentIgnoreThreshold),P){var j=n.strokeNoScale&&t.getLineScale?t.getLineScale():1;j&&1!==j&&(P=Object(h["F"])(P,function(e){return e/j}),R/=j)}var N=!0;(c||t.__dirty&p["b"]||P&&!L&&i)&&(u.setDPR(e.dpr),l?u.setContext(null):(u.setContext(e),N=!1),u.reset(),P&&!L&&(u.setLineDash(P),u.setLineDashOffset(R)),t.buildPath(u,t.shape,r),u.toStatic(),t.pathUpdated()),N&&u.rebuildPath(e,l?s:1),P&&L&&(e.setLineDash(P),e.lineDashOffset=R),r||(n.strokeFirst?(i&&w(e,n),o&&b(e,n)):(o&&b(e,n),i&&w(e,n))),P&&L&&e.setLineDash([])}function C(e,t,n){var r=t.__image=Object(o["a"])(n.image,t.__image,t,t.onload);if(r&&Object(o["c"])(r)){var i=n.x||0,a=n.y||0,s=t.getWidth(),l=t.getHeight(),c=r.width/r.height;if(null==s&&null!=l?s=l*c:null==l&&null!=s?l=s/c:null==s&&null==l&&(s=r.width,l=r.height),n.sWidth&&n.sHeight){var u=n.sx||0,h=n.sy||0;e.drawImage(r,u,h,n.sWidth,n.sHeight,i,a,s,l)}else if(n.sx&&n.sy){u=n.sx,h=n.sy;var d=s-u,f=l-h;e.drawImage(r,u,h,d,f,i,a,s,l)}else e.drawImage(r,i,a,s,l)}}function S(e,t,n){var r=n.text;if(null!=r&&(r+=""),r){e.font=n.font||u["a"],e.textAlign=n.textAlign,e.textBaseline=n.textBaseline;var i=void 0;if(e.setLineDash){var o=n.lineDash&&n.lineWidth>0&&d(n.lineDash,n.lineWidth),a=n.lineDashOffset;if(o){var s=n.strokeNoScale&&t.getLineScale?t.getLineScale():1;s&&1!==s&&(o=Object(h["F"])(o,function(e){return e/s}),a/=s),e.setLineDash(o),e.lineDashOffset=a,i=!0}}n.strokeFirst?(g(n)&&e.strokeText(r,n.x,n.y),y(n)&&e.fillText(r,n.x,n.y)):(y(n)&&e.fillText(r,n.x,n.y),g(n)&&e.strokeText(r,n.x,n.y)),i&&e.setLineDash([])}}var E=["shadowBlur","shadowOffsetX","shadowOffsetY"],k=[["lineCap","butt"],["lineJoin","miter"],["miterLimit",10]];function O(e,t,n,i,o){var a=!1;if(!i&&(n=n||{},t===n))return!1;if(i||t.opacity!==n.opacity){a||($(e,o),a=!0);var s=Math.max(Math.min(t.opacity,1),0);e.globalAlpha=isNaN(s)?r["b"].opacity:s}(i||t.blend!==n.blend)&&(a||($(e,o),a=!0),e.globalCompositeOperation=t.blend||r["b"].blend);for(var l=0;l0})}var c=function(e,t){var n=t.table,r=n.components,i=n.props,a=i.prefixCls,c=i.showHeader,u=i.onHeaderRow,h=e.expander,d=e.columns,f=e.fixed;if(!c)return null;var p=l({columns:d});h.renderExpandIndentCell(p,f);var m=r.header.wrapper;return o.createElement(m,{className:"".concat(a,"-thead")},p.map(function(e,t){return o.createElement(s.default,{prefixCls:a,key:t,index:t,fixed:f,columns:d,rows:p,row:e,components:r,onHeaderRow:u})}))};c.contextTypes={table:a.any},t.default=c},VPOE:function(e,t,n){var r=n("V5/1"),i=n("pQGJ");e.exports=n("8Z/V")?function(e,t,n){return r.f(e,t,i(1,n))}:function(e,t,n){return e[t]=n,e}},VVlx:function(e,t,n){var r=n("29s/")("keys"),i=n("YqAc");e.exports=function(e){return r[e]||(r[e]=i(e))}},VeWa:function(e,t,n){(function(e){ace.define("ace/mode/json_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/text_highlight_rules"],function(e,t,n){"use strict";var r=e("../lib/oop"),i=e("./text_highlight_rules").TextHighlightRules,o=function(){this.$rules={start:[{token:"variable",regex:'["](?:(?:\\\\.)|(?:[^"\\\\]))*?["]\\s*(?=:)'},{token:"string",regex:'"',next:"string"},{token:"constant.numeric",regex:"0[xX][0-9a-fA-F]+\\b"},{token:"constant.numeric",regex:"[+-]?\\d+(?:(?:\\.\\d*)?(?:[eE][+-]?\\d+)?)?\\b"},{token:"constant.language.boolean",regex:"(?:true|false)\\b"},{token:"text",regex:"['](?:(?:\\\\.)|(?:[^'\\\\]))*?[']"},{token:"comment",regex:"\\/\\/.*$"},{token:"comment.start",regex:"\\/\\*",next:"comment"},{token:"paren.lparen",regex:"[[({]"},{token:"paren.rparen",regex:"[\\])}]"},{token:"text",regex:"\\s+"}],string:[{token:"constant.language.escape",regex:/\\(?:x[0-9a-fA-F]{2}|u[0-9a-fA-F]{4}|["\\\/bfnrt])/},{token:"string",regex:'"|$',next:"start"},{defaultToken:"string"}],comment:[{token:"comment.end",regex:"\\*\\/",next:"start"},{defaultToken:"comment"}]}};r.inherits(o,i),t.JsonHighlightRules=o}),ace.define("ace/mode/matching_brace_outdent",["require","exports","module","ace/range"],function(e,t,n){"use strict";var r=e("../range").Range,i=function(){};(function(){this.checkOutdent=function(e,t){return!!/^\s+$/.test(e)&&/^\s*\}/.test(t)},this.autoOutdent=function(e,t){var n=e.getLine(t),i=n.match(/^(\s*\})/);if(!i)return 0;var o=i[1].length,a=e.findMatchingBracket({row:t,column:o});if(!a||a.row==t)return 0;var s=this.$getIndent(e.getLine(a.row));e.replace(new r(t,0,t,o-1),s)},this.$getIndent=function(e){return e.match(/^\s*/)[0]}}).call(i.prototype),t.MatchingBraceOutdent=i}),ace.define("ace/mode/folding/cstyle",["require","exports","module","ace/lib/oop","ace/range","ace/mode/folding/fold_mode"],function(e,t,n){"use strict";var r=e("../../lib/oop"),i=e("../../range").Range,o=e("./fold_mode").FoldMode,a=t.FoldMode=function(e){e&&(this.foldingStartMarker=new RegExp(this.foldingStartMarker.source.replace(/\|[^|]*?$/,"|"+e.start)),this.foldingStopMarker=new RegExp(this.foldingStopMarker.source.replace(/\|[^|]*?$/,"|"+e.end)))};r.inherits(a,o),function(){this.foldingStartMarker=/([\{\[\(])[^\}\]\)]*$|^\s*(\/\*)/,this.foldingStopMarker=/^[^\[\{\(]*([\}\]\)])|^[\s\*]*(\*\/)/,this.singleLineBlockCommentRe=/^\s*(\/\*).*\*\/\s*$/,this.tripleStarBlockCommentRe=/^\s*(\/\*\*\*).*\*\/\s*$/,this.startRegionRe=/^\s*(\/\*|\/\/)#?region\b/,this._getFoldWidgetBase=this.getFoldWidget,this.getFoldWidget=function(e,t,n){var r=e.getLine(n);if(this.singleLineBlockCommentRe.test(r)&&!this.startRegionRe.test(r)&&!this.tripleStarBlockCommentRe.test(r))return"";var i=this._getFoldWidgetBase(e,t,n);return!i&&this.startRegionRe.test(r)?"start":i},this.getFoldWidgetRange=function(e,t,n,r){var i=e.getLine(n);if(this.startRegionRe.test(i))return this.getCommentRegionBlock(e,i,n);var o=i.match(this.foldingStartMarker);if(o){var a=o.index;if(o[1])return this.openingBracketBlock(e,o[1],n,a);var s=e.getCommentFoldRange(n,a+o[0].length,1);return s&&!s.isMultiLine()&&(r?s=this.getSectionRange(e,n):"all"!=t&&(s=null)),s}if("markbegin"!==t){o=i.match(this.foldingStopMarker);if(o){a=o.index+o[0].length;return o[1]?this.closingBracketBlock(e,o[1],n,a):e.getCommentFoldRange(n,a,-1)}}},this.getSectionRange=function(e,t){var n=e.getLine(t),r=n.search(/\S/),o=t,a=n.length;t+=1;var s=t,l=e.getLength();while(++tc)break;var u=this.getFoldWidgetRange(e,"all",t);if(u){if(u.start.row<=o)break;if(u.isMultiLine())t=u.end.row;else if(r==c)break}s=t}}return new i(o,a,s,e.getLine(s).length)},this.getCommentRegionBlock=function(e,t,n){var r=t.search(/\s*$/),o=e.getLength(),a=n,s=/^\s*(?:\/\*|\/\/|--)#?(end)?region\b/,l=1;while(++na)return new i(a,r,u,t.length)}}.call(a.prototype)}),ace.define("ace/mode/json",["require","exports","module","ace/lib/oop","ace/mode/text","ace/mode/json_highlight_rules","ace/mode/matching_brace_outdent","ace/mode/behaviour/cstyle","ace/mode/folding/cstyle","ace/worker/worker_client"],function(e,t,n){"use strict";var r=e("../lib/oop"),i=e("./text").Mode,o=e("./json_highlight_rules").JsonHighlightRules,a=e("./matching_brace_outdent").MatchingBraceOutdent,s=e("./behaviour/cstyle").CstyleBehaviour,l=e("./folding/cstyle").FoldMode,c=e("../worker/worker_client").WorkerClient,u=function(){this.HighlightRules=o,this.$outdent=new a,this.$behaviour=new s,this.foldingRules=new l};r.inherits(u,i),function(){this.lineCommentStart="//",this.blockComment={start:"/*",end:"*/"},this.getNextLineIndent=function(e,t,n){var r=this.$getIndent(t);if("start"==e){var i=t.match(/^.*[\{\(\[]\s*$/);i&&(r+=n)}return r},this.checkOutdent=function(e,t,n){return this.$outdent.checkOutdent(t,n)},this.autoOutdent=function(e,t,n){this.$outdent.autoOutdent(t,n)},this.createWorker=function(e){var t=new c(["ace"],"ace/mode/json_worker","JsonWorker");return t.attachToDocument(e.getDocument()),t.on("annotate",function(t){e.setAnnotations(t.data)}),t.on("terminate",function(){e.clearAnnotations()}),t},this.$id="ace/mode/json"}.call(u.prototype),t.Mode=u}),function(){ace.require(["ace/mode/json"],function(t){e&&(e.exports=t)})}()}).call(this,n("YuTi")(e))},Vegh:function(e,t,n){"use strict";var r=n("iCc5"),i=n.n(r),o=n("FYw3"),a=n.n(o),s=n("mRg0"),l=n.n(s),c=n("q1tI"),u=n.n(c),h=n("i8i4"),d=n.n(h),f=n("17x9"),p=n.n(f),m=n("4IlW"),g=n("VCL8"),v=n("wd/R"),y=n.n(v),b=n("GrtH"),w=void 0,x=void 0,_=void 0,C=function(e){function t(n){i()(this,t);var r=a()(this,e.call(this,n));S.call(r);var o=n.selectedValue;return r.state={str:Object(b["a"])(o,r.props.format),invalid:!1,hasFocus:!1},r}return l()(t,e),t.prototype.componentDidUpdate=function(){!_||!this.state.hasFocus||this.state.invalid||0===w&&0===x||_.setSelectionRange(w,x)},t.getDerivedStateFromProps=function(e,t){var n={};_&&(w=_.selectionStart,x=_.selectionEnd);var r=e.selectedValue;return t.hasFocus||(n={str:Object(b["a"])(r,e.format),invalid:!1}),n},t.getInstance=function(){return _},t.prototype.render=function(){var e=this.props,t=this.state,n=t.invalid,r=t.str,i=e.locale,o=e.prefixCls,a=e.placeholder,s=e.clearIcon,l=e.inputMode,c=n?o+"-input-invalid":"";return u.a.createElement("div",{className:o+"-input-wrap"},u.a.createElement("div",{className:o+"-date-input-wrap"},u.a.createElement("input",{ref:this.saveDateInput,className:o+"-input "+c,value:r,disabled:e.disabled,placeholder:a,onChange:this.onInputChange,onKeyDown:this.onKeyDown,onFocus:this.onFocus,onBlur:this.onBlur,inputMode:l})),e.showClear?u.a.createElement("a",{role:"button",title:i.clear,onClick:this.onClear},s||u.a.createElement("span",{className:o+"-clear-btn"})):null)},t}(u.a.Component);C.propTypes={prefixCls:p.a.string,timePicker:p.a.object,value:p.a.object,disabledTime:p.a.any,format:p.a.oneOfType([p.a.string,p.a.arrayOf(p.a.string)]),locale:p.a.object,disabledDate:p.a.func,onChange:p.a.func,onClear:p.a.func,placeholder:p.a.string,onSelect:p.a.func,selectedValue:p.a.object,clearIcon:p.a.node,inputMode:p.a.string};var S=function(){var e=this;this.onClear=function(){e.setState({str:""}),e.props.onClear(null)},this.onInputChange=function(t){var n=t.target.value,r=e.props,i=r.disabledDate,o=r.format,a=r.onChange,s=r.selectedValue;if(!n)return a(null),void e.setState({invalid:!1,str:n});var l=y()(n,o,!0);if(l.isValid()){var c=e.props.value.clone();c.year(l.year()).month(l.month()).date(l.date()).hour(l.hour()).minute(l.minute()).second(l.second()),!c||i&&i(c)?e.setState({invalid:!0,str:n}):(s!==c||s&&c&&!s.isSame(c))&&(e.setState({invalid:!1,str:n}),a(c))}else e.setState({invalid:!0,str:n})},this.onFocus=function(){e.setState({hasFocus:!0})},this.onBlur=function(){e.setState(function(e,t){return{hasFocus:!1,str:Object(b["a"])(t.value,t.format)}})},this.onKeyDown=function(t){var n=t.keyCode,r=e.props,i=r.onSelect,o=r.value,a=r.disabledDate;if(n===m["a"].ENTER&&i){var s=!a||!a(o);s&&i(o.clone()),t.preventDefault()}},this.getRootDOMNode=function(){return d.a.findDOMNode(e)},this.focus=function(){_&&_.focus()},this.saveDateInput=function(e){_=e}};Object(g["polyfill"])(C),t["a"]=C},VeyY:function(e,t,n){var r=n("7vYJ"),i=n("wYm8"),o=n("gL7N")("species");e.exports=function(e,t){var n,a=r(e).constructor;return void 0===a||void 0==(n=r(a)[o])?t:i(n)}},VxKu:function(e,t,n){"use strict";var r=n("WGNW"),i=n("Lnex")(!0);r(r.P,"Array",{includes:function(e){return i(this,e,arguments.length>1?arguments[1]:void 0)}}),n("DIcO")("includes")},VyuQ:function(e,t,n){var r=n("bV5f"),i=n("c0Oy"),o="__core-js_shared__",a=i[o]||(i[o]={});(e.exports=function(e,t){return a[e]||(a[e]=void 0!==t?t:{})})("versions",[]).push({version:r.version,mode:n("FqPH")?"pure":"global",copyright:"\xa9 2019 Denis Pushkarev (zloirock.ru)"})},W070:function(e,t,n){var r=n("NsO/"),i=n("tEej"),o=n("D8kY");e.exports=function(e){return function(t,n,a){var s,l=r(t),c=i(l.length),u=o(a,c);if(e&&n!=n){while(c>u)if(s=l[u++],s!=s)return!0}else for(;c>u;u++)if((e||u in l)&&l[u]===n)return e||u||0;return!e&&-1}}},W3Xk:function(e,t,n){var r=n("WGNW"),i=n("ZDr/"),o=n("wUWy"),a=n("GsrZ"),s="["+a+"]",l="\u200b\x85",c=RegExp("^"+s+s+"*"),u=RegExp(s+s+"*$"),h=function(e,t,n){var i={},s=o(function(){return!!a[e]()||l[e]()!=l}),c=i[e]=s?t(d):a[e];n&&(i[n]=c),r(r.P+r.F*s,"String",i)},d=h.trim=function(e,t){return e=String(i(e)),1&t&&(e=e.replace(c,"")),2&t&&(e=e.replace(u,"")),e};e.exports=h},W5Cv:function(e,t,n){"use strict";function r(e,t){var n=window.Element.prototype,r=n.matches||n.mozMatchesSelector||n.msMatchesSelector||n.oMatchesSelector||n.webkitMatchesSelector;if(!e||1!==e.nodeType)return!1;var i=e.parentNode;if(r)return r.call(e,t);for(var o=i.querySelectorAll(t),a=o.length,s=0;s-1}function Xe(e,t){var n=this.__data__,r=ft(n,e);return r<0?(++this.size,n.push([e,t])):n[r][1]=t,this}function Qe(e){var t=-1,n=null==e?0:e.length;this.clear();while(++tc))return!1;var h=s.get(e);if(h&&s.get(t))return h==t;var d=-1,f=!0,p=n&a?new rt:void 0;s.set(e,t),s.set(t,e);while(++d-1&&e%1==0&&e-1&&e%1==0&&e<=s}function Ut(e){var t=typeof e;return null!=e&&("object"==t||"function"==t)}function qt(e){return null!=e&&"object"==typeof e}var Kt=Q?ne(Q):wt;function Gt(e){return Vt(e)?dt(e):xt(e)}function Yt(){return[]}function Xt(){return!1}n.exports=Wt}).call(this,n("yLpj"),n("YuTi")(e))},XaS2:function(e,t,n){"use strict";function r(e){"@babel/helpers - typeof";return r="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},r(e)}function i(e,t){if(null==e)return{};var n,r,i=o(e,t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(r=0;r=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(i[n]=e[n])}return i}function o(e,t){if(null==e)return{};var n,r,i={},o=Object.keys(e);for(r=0;r=0||(i[n]=e[n]);return i}function a(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function s(e){for(var t=1;t=0&&this.setRowHeight())}},{key:"render",value:function(){if(!this.state.shouldRender)return null;var e=this.props,t=e.prefixCls,n=e.columns,r=e.record,o=e.rowKey,a=e.index,l=e.onRow,c=e.indent,u=e.indentSize,h=e.hovered,d=e.height,f=e.visible,p=e.components,m=e.hasExpandIcon,g=e.renderExpandIcon,v=e.renderExpandIconCell,y=e.onRowClick,b=e.onRowDoubleClick,w=e.onRowMouseEnter,_=e.onRowMouseLeave,S=e.onRowContextMenu,E=p.body.row,T=p.body.cell,A=this.props.className;h&&(A+=" ".concat(t,"-hover"));var M=[];v(M);for(var P=0;P=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}e.exports=i},"Y/ne":function(e,t,n){var r=n("OsVd"),i=n("03ni"),o=n("ZDr/");e.exports=function(e,t,n,a){var s=String(o(e)),l=s.length,c=void 0===n?" ":String(n),u=r(t);if(u<=l||""==c)return s;var h=u-l,d=i.call(c,Math.ceil(h/c.length));return d.length>h&&(d=d.slice(0,h)),a?d+s:s+d}},Y7ZC:function(e,t,n){var r=n("5T2Y"),i=n("WEpk"),o=n("2GTP"),a=n("NegM"),s=n("B+OT"),l="prototype",c=function(e,t,n){var u,h,d,f=e&c.F,p=e&c.G,m=e&c.S,g=e&c.P,v=e&c.B,y=e&c.W,b=p?i:i[t]||(i[t]={}),w=b[l],x=p?r:m?r[t]:(r[t]||{})[l];for(u in p&&(n=t),n)h=!f&&x&&void 0!==x[u],h&&s(b,u)||(d=h?x[u]:n[u],b[u]=p&&"function"!=typeof x[u]?n[u]:v&&h?o(d,r):y&&x[u]==d?function(e){var t=function(t,n,r){if(this instanceof e){switch(arguments.length){case 0:return new e;case 1:return new e(t);case 2:return new e(t,n)}return new e(t,n,r)}return e.apply(this,arguments)};return t[l]=e[l],t}(d):g&&"function"==typeof d?o(Function.call,d):d,g&&((b.virtual||(b.virtual={}))[u]=d,e&c.R&&w&&!w[u]&&a(w,u,d)))};c.F=1,c.G=2,c.S=4,c.P=8,c.B=16,c.W=32,c.U=64,c.R=128,e.exports=c},YEIV:function(e,t,n){"use strict";t.__esModule=!0;var r=n("SEkw"),i=o(r);function o(e){return e&&e.__esModule?e:{default:e}}t.default=function(e,t,n){return t in e?(0,i.default)(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}},YEVI:function(e,t){e.exports=function(e,t,n,r){if(!(e instanceof t)||void 0!==r&&r in e)throw TypeError(n+": incorrect invocation!");return e}},YH21:function(e,t,n){"use strict";n.d(t,"b",function(){return l}),n.d(t,"c",function(){return u}),n.d(t,"d",function(){return h}),n.d(t,"a",function(){return f}),n.d(t,"e",function(){return p}),n.d(t,"f",function(){return m});var r=n("ItGF"),i=n("Ze12"),o="undefined"!==typeof window&&!!window.addEventListener,a=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,s=[];function l(e,t,n,i){return n=n||{},i||!r["a"].canvasSupported?c(e,t,n):r["a"].browser.firefox&&r["a"].browser.version<"39"&&null!=t.layerX&&t.layerX!==t.offsetX?(n.zrX=t.layerX,n.zrY=t.layerY):null!=t.offsetX?(n.zrX=t.offsetX,n.zrY=t.offsetY):c(e,t,n),n}function c(e,t,n){if(r["a"].domSupported&&e.getBoundingClientRect){var o=t.clientX,a=t.clientY;if(Object(i["a"])(e)){var l=e.getBoundingClientRect();return n.zrX=o-l.left,void(n.zrY=a-l.top)}if(Object(i["b"])(s,e,o,a))return n.zrX=s[0],void(n.zrY=s[1])}n.zrX=n.zrY=0}function u(e){return e||window.event}function h(e,t,n){if(t=u(t),null!=t.zrX)return t;var r=t.type,i=r&&r.indexOf("touch")>=0;if(i){var o="touchend"!==r?t.targetTouches[0]:t.changedTouches[0];o&&l(e,o,t,n)}else{l(e,t,t,n);var s=d(t);t.zrDelta=s?s/120:-(t.detail||0)/3}var c=t.button;return null==t.which&&void 0!==c&&a.test(t.type)&&(t.which=1&c?1:2&c?3:4&c?2:0),t}function d(e){var t=e.wheelDelta;if(t)return t;var n=e.deltaX,r=e.deltaY;if(null==n||null==r)return t;var i=0!==r?Math.abs(r):Math.abs(n),o=r>0?-1:r<0?1:n>0?-1:1;return 3*i*o}function f(e,t,n,r){o?e.addEventListener(t,n,r):e.attachEvent("on"+t,n)}function p(e,t,n,r){o?e.removeEventListener(t,n,r):e.detachEvent("on"+t,n)}var m=o?function(e){e.preventDefault(),e.stopPropagation(),e.cancelBubble=!0}:function(e){e.returnValue=!1,e.cancelBubble=!0}},YVYq:function(e,t,n){"use strict";n.d(t,"a",function(){return o});var r=n("q1tI"),i=n.n(r);function o(e){var t=e.prefixCls,n=e.locale,r=e.okDisabled,o=e.onOk,a=t+"-ok-btn";return r&&(a+=" "+t+"-ok-btn-disabled"),i.a.createElement("a",{className:a,role:"button",onClick:r?null:o},n.ok)}},Yf6U:function(e,t,n){var r=n("W5Cv");e.exports=function(e,t,n){n=n||document,e={parentNode:e};while((e=e.parentNode)&&e!==n)if(r(e,t))return e}},YqAc:function(e,t){var n=0,r=Math.random();e.exports=function(e){return"Symbol(".concat(void 0===e?"":e,")_",(++n+r).toString(36))}},YqDF:function(e,t,n){"use strict";function r(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function i(e){for(var t=1;t0&&c&&(w.marginBottom="-".concat(_,"px"),w.paddingBottom="0px")}var C,S=l.createElement(h.default,{tableClassName:d,hasHead:!b,hasBody:!0,fixed:c,columns:s,expander:g,getRowKey:f,isAnyColumnsFixed:v});if(c&&s.length)return"left"===s[0].fixed||!0===s[0].fixed?C="fixedColumnsBodyLeft":"right"===s[0].fixed&&(C="fixedColumnsBodyRight"),delete w.overflowX,delete w.overflowY,l.createElement("div",{key:"bodyTable",className:"".concat(o,"-body-outer"),style:i({},w)},l.createElement("div",{className:"".concat(o,"-body-inner"),style:x,ref:y(C),onWheel:m,onScroll:p},S));var E=a&&(a.x||a.y);return l.createElement("div",{tabIndex:E?-1:void 0,key:"bodyTable",className:"".concat(o,"-body"),style:w,ref:y("bodyTable"),onWheel:m,onScroll:p},S)}t.default=d,d.contextTypes={table:c.any}},YuTi:function(e,t){e.exports=function(e){return e.webpackPolyfill||(e.deprecate=function(){},e.paths=[],e.children||(e.children=[]),Object.defineProperty(e,"loaded",{enumerable:!0,get:function(){return e.l}}),Object.defineProperty(e,"id",{enumerable:!0,get:function(){return e.i}}),e.webpackPolyfill=1),e}},Z4ex:function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=function(){function e(e,t){for(var n=0;nt.length?e:t,u=e.length>t.length?t:e,h=c.indexOf(u);if(-1!=h)return l=[new n.Diff(i,c.substring(0,h)),new n.Diff(o,u),new n.Diff(i,c.substring(h+u.length))],e.length>t.length&&(l[0][0]=l[2][0]=r),l;if(1==u.length)return[new n.Diff(r,e),new n.Diff(i,t)];var d=this.diff_halfMatch_(e,t);if(d){var f=d[0],p=d[1],m=d[2],g=d[3],v=d[4],y=this.diff_main(f,m,a,s),b=this.diff_main(p,g,a,s);return y.concat([new n.Diff(o,v)],b)}return a&&e.length>100&&t.length>100?this.diff_lineMode_(e,t,s):this.diff_bisect_(e,t,s)},n.prototype.diff_lineMode_=function(e,t,a){var s=this.diff_linesToChars_(e,t);e=s.chars1,t=s.chars2;var l=s.lineArray,c=this.diff_main(e,t,!1,a);this.diff_charsToLines_(c,l),this.diff_cleanupSemantic(c),c.push(new n.Diff(o,""));var u=0,h=0,d=0,f="",p="";while(u=1&&d>=1){c.splice(u-h-d,h+d),u=u-h-d;for(var m=this.diff_main(f,p,!1,a),g=m.length-1;g>=0;g--)c.splice(u,0,m[g]);u+=m.length}d=0,h=0,f="",p="";break}u++}return c.pop(),c},n.prototype.diff_bisect_=function(e,t,o){for(var a=e.length,s=t.length,l=Math.ceil((a+s)/2),c=l,u=2*l,h=new Array(u),d=new Array(u),f=0;fo)break;for(var x=-w+g;x<=w-v;x+=2){var _=c+x;T=x==-w||x!=w&&h[_-1]a)v+=2;else if(C>s)g+=2;else if(m){var S=c+p-x;if(S>=0&&S=E)return this.diff_bisectSplit_(e,t,T,C,o)}}}for(var k=-w+y;k<=w-b;k+=2){S=c+k;E=k==-w||k!=w&&d[S-1]a)b+=2;else if(O>s)y+=2;else if(!m){_=c+p-k;if(_>=0&&_=E)return this.diff_bisectSplit_(e,t,T,C,o)}}}}return[new n.Diff(r,e),new n.Diff(i,t)]},n.prototype.diff_bisectSplit_=function(e,t,n,r,i){var o=e.substring(0,n),a=t.substring(0,r),s=e.substring(n),l=t.substring(r),c=this.diff_main(o,a,!1,i),u=this.diff_main(s,l,!1,i);return c.concat(u)},n.prototype.diff_linesToChars_=function(e,t){var n=[],r={};function i(e){var t="",i=0,a=-1,s=n.length;while(ar?e=e.substring(n-r):nt.length?e:t,r=e.length>t.length?t:e;if(n.length<4||2*r.length=e.length?[r,o,a,s,u]:null}var a,s,l,c,u,h=o(n,r,Math.ceil(n.length/4)),d=o(n,r,Math.ceil(n.length/2));if(!h&&!d)return null;a=d?h&&h[4].length>d[4].length?h:d:h,e.length>t.length?(s=a[0],l=a[1],c=a[2],u=a[3]):(c=a[0],u=a[1],s=a[2],l=a[3]);var f=a[4];return[s,l,c,u,f]},n.prototype.diff_cleanupSemantic=function(e){var t=!1,a=[],s=0,l=null,c=0,u=0,h=0,d=0,f=0;while(c0?a[s-1]:-1,u=0,h=0,d=0,f=0,l=null,t=!0)),c++;t&&this.diff_cleanupMerge(e),this.diff_cleanupSemanticLossless(e),c=1;while(c=v?(g>=p.length/2||g>=m.length/2)&&(e.splice(c,0,new n.Diff(o,m.substring(0,g))),e[c-1][1]=p.substring(0,p.length-g),e[c+1][1]=m.substring(g),c++):(v>=p.length/2||v>=m.length/2)&&(e.splice(c,0,new n.Diff(o,p.substring(0,v))),e[c-1][0]=i,e[c-1][1]=m.substring(0,m.length-v),e[c+1][0]=r,e[c+1][1]=p.substring(v),c++),c++}c++}},n.prototype.diff_cleanupSemanticLossless=function(e){function t(e,t){if(!e||!t)return 6;var r=e.charAt(e.length-1),i=t.charAt(0),o=r.match(n.nonAlphaNumericRegex_),a=i.match(n.nonAlphaNumericRegex_),s=o&&r.match(n.whitespaceRegex_),l=a&&i.match(n.whitespaceRegex_),c=s&&r.match(n.linebreakRegex_),u=l&&i.match(n.linebreakRegex_),h=c&&e.match(n.blanklineEndRegex_),d=u&&t.match(n.blanklineStartRegex_);return h||d?5:c||u?4:o&&!s&&l?3:s||l?2:o||a?1:0}var r=1;while(r=f&&(f=p,u=i,h=a,d=s)}e[r-1][1]!=u&&(u?e[r-1][1]=u:(e.splice(r-1,1),r--),e[r][1]=h,d?e[r+1][1]=d:(e.splice(r+1,1),r--))}r++}},n.nonAlphaNumericRegex_=/[^a-zA-Z0-9]/,n.whitespaceRegex_=/\s/,n.linebreakRegex_=/[\r\n]/,n.blanklineEndRegex_=/\n\r?\n$/,n.blanklineStartRegex_=/^\r?\n\r?\n/,n.prototype.diff_cleanupEfficiency=function(e){var t=!1,a=[],s=0,l=null,c=0,u=!1,h=!1,d=!1,f=!1;while(c0?a[s-1]:-1,d=f=!1),t=!0)),c++;t&&this.diff_cleanupMerge(e)},n.prototype.diff_cleanupMerge=function(e){e.push(new n.Diff(o,""));var t,a=0,s=0,l=0,c="",u="";while(a1?(0!==s&&0!==l&&(t=this.diff_commonPrefix(u,c),0!==t&&(a-s-l>0&&e[a-s-l-1][0]==o?e[a-s-l-1][1]+=u.substring(0,t):(e.splice(0,0,new n.Diff(o,u.substring(0,t))),a++),u=u.substring(t),c=c.substring(t)),t=this.diff_commonSuffix(u,c),0!==t&&(e[a][1]=u.substring(u.length-t)+e[a][1],u=u.substring(0,u.length-t),c=c.substring(0,c.length-t))),a-=s+l,e.splice(a,s+l),c.length&&(e.splice(a,0,new n.Diff(r,c)),a++),u.length&&(e.splice(a,0,new n.Diff(i,u)),a++),a++):0!==a&&e[a-1][0]==o?(e[a-1][1]+=e[a][1],e.splice(a,1)):a++,l=0,s=0,c="",u="";break}""===e[e.length-1][1]&&e.pop();var h=!1;a=1;while(at)break;s=o,l=a}return e.length!=n&&e[n][0]===r?l:l+(t-s)},n.prototype.diff_prettyHtml=function(e){for(var t=[],n=/&/g,a=//g,l=/\n/g,c=0;c");switch(u){case i:t[c]=''+d+"";break;case r:t[c]=''+d+"";break;case o:t[c]=""+d+"";break}}return t.join("")},n.prototype.diff_text1=function(e){for(var t=[],n=0;nthis.Match_MaxBits)throw new Error("Pattern too long for this browser.");var r=this.match_alphabet_(t),i=this;function o(e,r){var o=e/t.length,a=Math.abs(n-r);return i.Match_Distance?o+a/i.Match_Distance:a?1:o}var a=this.Match_Threshold,s=e.indexOf(t,n);-1!=s&&(a=Math.min(o(0,s),a),s=e.lastIndexOf(t,n+t.length),-1!=s&&(a=Math.min(o(0,s),a)));var l,c,u=1<=p;v--){var y=r[e.charAt(v-1)];if(g[v]=0===f?(g[v+1]<<1|1)&y:(g[v+1]<<1|1)&y|(h[v+1]|h[v])<<1|1|h[v+1],g[v]&u){var b=o(f,v-1);if(b<=a){if(a=b,s=v-1,!(s>n))break;p=Math.max(1,2*n-s)}}}if(o(f+1,n)>a)break;h=g}return s},n.prototype.match_alphabet_=function(e){for(var t={},n=0;n2&&(this.diff_cleanupSemantic(l),this.diff_cleanupEfficiency(l));else if(e&&"object"==typeof e&&"undefined"==typeof t&&"undefined"==typeof a)l=e,s=this.diff_text1(l);else if("string"==typeof e&&t&&"object"==typeof t&&"undefined"==typeof a)s=e,l=t;else{if("string"!=typeof e||"string"!=typeof t||!a||"object"!=typeof a)throw new Error("Unknown call format to patch_make.");s=e,l=a}if(0===l.length)return[];for(var c=[],u=new n.patch_obj,h=0,d=0,f=0,p=s,m=s,g=0;g=2*this.Patch_Margin&&h&&(this.patch_addContext_(u,p),c.push(u),u=new n.patch_obj,h=0,p=m,d=f);break}v!==i&&(d+=y.length),v!==r&&(f+=y.length)}return h&&(this.patch_addContext_(u,p),c.push(u)),c},n.prototype.patch_deepCopy=function(e){for(var t=[],r=0;rthis.Match_MaxBits?(c=this.match_main(t,d.substring(0,this.Match_MaxBits),h),-1!=c&&(f=this.match_main(t,d.substring(d.length-this.Match_MaxBits),h+d.length-this.Match_MaxBits),(-1==f||c>=f)&&(c=-1))):c=this.match_main(t,d,h),-1==c)s[l]=!1,a-=e[l].length2-e[l].length1;else if(s[l]=!0,a=c-h,u=-1==f?t.substring(c,c+d.length):t.substring(c,f+this.Match_MaxBits),d==u)t=t.substring(0,c)+this.diff_text2(e[l].diffs)+t.substring(c+d.length);else{var p=this.diff_main(d,u,!1);if(d.length>this.Match_MaxBits&&this.diff_levenshtein(p)/d.length>this.Patch_DeleteThreshold)s[l]=!1;else{this.diff_cleanupSemanticLossless(p);for(var m,g=0,v=0;vs[0][1].length){var l=t-s[0][1].length;s[0][1]=r.substring(s[0][1].length)+s[0][1],a.start1-=l,a.start2-=l,a.length1+=l,a.length2+=l}if(a=e[e.length-1],s=a.diffs,0==s.length||s[s.length-1][0]!=o)s.push(new n.Diff(o,r)),a.length1+=t,a.length2+=t;else if(t>s[s.length-1][1].length){l=t-s[s.length-1][1].length;s[s.length-1][1]+=r.substring(0,l),a.length1+=l,a.length2+=l}return r},n.prototype.patch_splitMax=function(e){for(var t=this.Match_MaxBits,a=0;a2*t?(h.length1+=p.length,l+=p.length,d=!1,h.diffs.push(new n.Diff(f,p)),s.diffs.shift()):(p=p.substring(0,t-h.length1-this.Patch_Margin),h.length1+=p.length,l+=p.length,f===o?(h.length2+=p.length,c+=p.length):d=!1,h.diffs.push(new n.Diff(f,p)),p==s.diffs[0][1]?s.diffs.shift():s.diffs[0][1]=s.diffs[0][1].substring(p.length))}u=this.diff_text2(h.diffs),u=u.substring(u.length-this.Patch_Margin);var m=this.diff_text1(s.diffs).substring(0,this.Patch_Margin);""!==m&&(h.length1+=m.length,h.length2+=m.length,0!==h.diffs.length&&h.diffs[h.diffs.length-1][0]===o?h.diffs[h.diffs.length-1][1]+=m:h.diffs.push(new n.Diff(o,m))),d||e.splice(++a,0,h)}}},n.prototype.patch_toText=function(e){for(var t=[],n=0;n>1)%2;s.cssText=["position: absolute","visibility: hidden","padding: 0","margin: 0","border-width: 0","user-select: none","width:0","height:0",r[l]+":0",i[c]+":0",r[1-l]+":auto",i[1-c]+":auto",""].join("!important;"),e.appendChild(a),n.push(a)}return n}function d(e,t,n){for(var r=n?"invTrans":"trans",i=t[r],o=t.srcCoords,s=[],l=[],c=!0,u=0;u<4;u++){var h=e[u].getBoundingClientRect(),d=2*u,f=h.left,p=h.top;s.push(f,p),c=c&&o&&f===o[d]&&p===o[d+1],l.push(e[u].offsetLeft,e[u].offsetTop)}return c&&i?i:(t.srcCoords=s,t[r]=n?a(l,s):a(s,l))}function f(e){return"CANVAS"===e.nodeName.toUpperCase()}},Zgoe:function(e,t,n){var r=n("9HFh"),i=n("e6w7"),o=n("7vYJ"),a=n("c0Oy").Reflect;e.exports=a&&a.ownKeys||function(e){var t=r.f(o(e)),n=i.f;return n?t.concat(n(e)):t}},ZlA7:function(e,t,n){"use strict";n.r(t);var r=n("d6i3"),i=n.n(r),o=n("p0pE"),a=n.n(o),s=n("t3Un"),l={groups:[],switchLoading:{},saveLoading:!1,fetchLoading:!1};t["default"]={name:"serverGroup",state:a()({},l),reducers:{setState(e,t){var n=t.payload;return a()({},e,n)}},effects:{fetch(e,t){return i.a.mark(function e(){var n,r;return i.a.wrap(function(e){while(1)switch(e.prev=e.next){case 0:return n=t.put,e.next=3,n({type:"setState",payload:{fetchLoading:!0}});case 3:return e.next=5,Object(s["a"])("/admin/server/group/fetch");case 5:return r=e.sent,e.next=8,n({type:"setState",payload:{fetchLoading:!1}});case 8:if(200===r.code){e.next=10;break}return e.abrupt("return");case 10:return e.next=12,n({type:"setState",payload:{groups:r.data}});case 12:case"end":return e.stop()}},e)})()},drop(e,t){return i.a.mark(function n(){var r,o,a;return i.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.id,o=t.put,n.next=4,Object(s["b"])("/admin/server/group/drop",{id:r});case 4:if(a=n.sent,200===a.code){n.next=7;break}return n.abrupt("return");case 7:return n.next=9,o({type:"fetch"});case 9:case"end":return n.stop()}},n)})()},save(e,t){return i.a.mark(function n(){var r,o,a,l;return i.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.params,o=e.callback,a=t.put,n.next=4,Object(s["b"])("/admin/server/group/save",r);case 4:if(l=n.sent,200===l.code){n.next=7;break}return n.abrupt("return");case 7:return n.next=9,a({type:"fetch"});case 9:"function"===typeof o&&o();case 10:case"end":return n.stop()}},n)})()}}}},Zss7:function(e,t,n){var r;(function(i){var o=/^\s+/,a=/\s+$/,s=0,l=i.round,c=i.min,u=i.max,h=i.random;function d(e,t){if(e=e||"",t=t||{},e instanceof d)return e;if(!(this instanceof d))return new d(e,t);var n=f(e);this._originalInput=e,this._r=n.r,this._g=n.g,this._b=n.b,this._a=n.a,this._roundA=l(100*this._a)/100,this._format=t.format||n.format,this._gradientType=t.gradientType,this._r<1&&(this._r=l(this._r)),this._g<1&&(this._g=l(this._g)),this._b<1&&(this._b=l(this._b)),this._ok=n.ok,this._tc_id=s++}function f(e){var t={r:0,g:0,b:0},n=1,r=null,i=null,o=null,a=!1,s=!1;return"string"==typeof e&&(e=X(e)),"object"==typeof e&&(Y(e.r)&&Y(e.g)&&Y(e.b)?(t=p(e.r,e.g,e.b),a=!0,s="%"===String(e.r).substr(-1)?"prgb":"rgb"):Y(e.h)&&Y(e.s)&&Y(e.v)?(r=U(e.s),i=U(e.v),t=y(e.h,r,i),a=!0,s="hsv"):Y(e.h)&&Y(e.s)&&Y(e.l)&&(r=U(e.s),o=U(e.l),t=g(e.h,r,o),a=!0,s="hsl"),e.hasOwnProperty("a")&&(n=e.a)),n=$(n),{ok:a,format:e.format||s,r:c(255,u(t.r,0)),g:c(255,u(t.g,0)),b:c(255,u(t.b,0)),a:n}}function p(e,t,n){return{r:255*F(e,255),g:255*F(t,255),b:255*F(n,255)}}function m(e,t,n){e=F(e,255),t=F(t,255),n=F(n,255);var r,i,o=u(e,t,n),a=c(e,t,n),s=(o+a)/2;if(o==a)r=i=0;else{var l=o-a;switch(i=s>.5?l/(2-o-a):l/(o+a),o){case e:r=(t-n)/l+(t1&&(n-=1),n<1/6?e+6*(t-e)*n:n<.5?t:n<2/3?e+(t-e)*(2/3-n)*6:e}if(e=F(e,360),t=F(t,100),n=F(n,100),0===t)r=i=o=n;else{var s=n<.5?n*(1+t):n+t-n*t,l=2*n-s;r=a(l,s,e+1/3),i=a(l,s,e),o=a(l,s,e-1/3)}return{r:255*r,g:255*i,b:255*o}}function v(e,t,n){e=F(e,255),t=F(t,255),n=F(n,255);var r,i,o=u(e,t,n),a=c(e,t,n),s=o,l=o-a;if(i=0===o?0:l/o,o==a)r=0;else{switch(o){case e:r=(t-n)/l+(t>1)+720)%360;--t;)r.h=(r.h+i)%360,o.push(d(r));return o}function D(e,t){t=t||6;var n=d(e).toHsv(),r=n.h,i=n.s,o=n.v,a=[],s=1/t;while(t--)a.push(d({h:r,s:i,v:o})),o=(o+s)%1;return a}d.prototype={isDark:function(){return this.getBrightness()<128},isLight:function(){return!this.isDark()},isValid:function(){return this._ok},getOriginalInput:function(){return this._originalInput},getFormat:function(){return this._format},getAlpha:function(){return this._a},getBrightness:function(){var e=this.toRgb();return(299*e.r+587*e.g+114*e.b)/1e3},getLuminance:function(){var e,t,n,r,o,a,s=this.toRgb();return e=s.r/255,t=s.g/255,n=s.b/255,r=e<=.03928?e/12.92:i.pow((e+.055)/1.055,2.4),o=t<=.03928?t/12.92:i.pow((t+.055)/1.055,2.4),a=n<=.03928?n/12.92:i.pow((n+.055)/1.055,2.4),.2126*r+.7152*o+.0722*a},setAlpha:function(e){return this._a=$(e),this._roundA=l(100*this._a)/100,this},toHsv:function(){var e=v(this._r,this._g,this._b);return{h:360*e.h,s:e.s,v:e.v,a:this._a}},toHsvString:function(){var e=v(this._r,this._g,this._b),t=l(360*e.h),n=l(100*e.s),r=l(100*e.v);return 1==this._a?"hsv("+t+", "+n+"%, "+r+"%)":"hsva("+t+", "+n+"%, "+r+"%, "+this._roundA+")"},toHsl:function(){var e=m(this._r,this._g,this._b);return{h:360*e.h,s:e.s,l:e.l,a:this._a}},toHslString:function(){var e=m(this._r,this._g,this._b),t=l(360*e.h),n=l(100*e.s),r=l(100*e.l);return 1==this._a?"hsl("+t+", "+n+"%, "+r+"%)":"hsla("+t+", "+n+"%, "+r+"%, "+this._roundA+")"},toHex:function(e){return b(this._r,this._g,this._b,e)},toHexString:function(e){return"#"+this.toHex(e)},toHex8:function(e){return w(this._r,this._g,this._b,this._a,e)},toHex8String:function(e){return"#"+this.toHex8(e)},toRgb:function(){return{r:l(this._r),g:l(this._g),b:l(this._b),a:this._a}},toRgbString:function(){return 1==this._a?"rgb("+l(this._r)+", "+l(this._g)+", "+l(this._b)+")":"rgba("+l(this._r)+", "+l(this._g)+", "+l(this._b)+", "+this._roundA+")"},toPercentageRgb:function(){return{r:l(100*F(this._r,255))+"%",g:l(100*F(this._g,255))+"%",b:l(100*F(this._b,255))+"%",a:this._a}},toPercentageRgbString:function(){return 1==this._a?"rgb("+l(100*F(this._r,255))+"%, "+l(100*F(this._g,255))+"%, "+l(100*F(this._b,255))+"%)":"rgba("+l(100*F(this._r,255))+"%, "+l(100*F(this._g,255))+"%, "+l(100*F(this._b,255))+"%, "+this._roundA+")"},toName:function(){return 0===this._a?"transparent":!(this._a<1)&&(N[b(this._r,this._g,this._b,!0)]||!1)},toFilter:function(e){var t="#"+x(this._r,this._g,this._b,this._a),n=t,r=this._gradientType?"GradientType = 1, ":"";if(e){var i=d(e);n="#"+x(i._r,i._g,i._b,i._a)}return"progid:DXImageTransform.Microsoft.gradient("+r+"startColorstr="+t+",endColorstr="+n+")"},toString:function(e){var t=!!e;e=e||this._format;var n=!1,r=this._a<1&&this._a>=0,i=!t&&r&&("hex"===e||"hex6"===e||"hex3"===e||"hex4"===e||"hex8"===e||"name"===e);return i?"name"===e&&0===this._a?this.toName():this.toRgbString():("rgb"===e&&(n=this.toRgbString()),"prgb"===e&&(n=this.toPercentageRgbString()),"hex"!==e&&"hex6"!==e||(n=this.toHexString()),"hex3"===e&&(n=this.toHexString(!0)),"hex4"===e&&(n=this.toHex8String(!0)),"hex8"===e&&(n=this.toHex8String()),"name"===e&&(n=this.toName()),"hsl"===e&&(n=this.toHslString()),"hsv"===e&&(n=this.toHsvString()),n||this.toHexString())},clone:function(){return d(this.toString())},_applyModification:function(e,t){var n=e.apply(null,[this].concat([].slice.call(t)));return this._r=n._r,this._g=n._g,this._b=n._b,this.setAlpha(n._a),this},lighten:function(){return this._applyModification(E,arguments)},brighten:function(){return this._applyModification(k,arguments)},darken:function(){return this._applyModification(O,arguments)},desaturate:function(){return this._applyModification(_,arguments)},saturate:function(){return this._applyModification(C,arguments)},greyscale:function(){return this._applyModification(S,arguments)},spin:function(){return this._applyModification(T,arguments)},_applyCombination:function(e,t){return e.apply(null,[this].concat([].slice.call(t)))},analogous:function(){return this._applyCombination(L,arguments)},complement:function(){return this._applyCombination(A,arguments)},monochromatic:function(){return this._applyCombination(D,arguments)},splitcomplement:function(){return this._applyCombination(R,arguments)},triad:function(){return this._applyCombination(M,arguments)},tetrad:function(){return this._applyCombination(P,arguments)}},d.fromRatio=function(e,t){if("object"==typeof e){var n={};for(var r in e)e.hasOwnProperty(r)&&(n[r]="a"===r?e[r]:U(e[r]));e=n}return d(e,t)},d.equals=function(e,t){return!(!e||!t)&&d(e).toRgbString()==d(t).toRgbString()},d.random=function(){return d.fromRatio({r:h(),g:h(),b:h()})},d.mix=function(e,t,n){n=0===n?0:n||50;var r=d(e).toRgb(),i=d(t).toRgb(),o=n/100,a={r:(i.r-r.r)*o+r.r,g:(i.g-r.g)*o+r.g,b:(i.b-r.b)*o+r.b,a:(i.a-r.a)*o+r.a};return d(a)},d.readability=function(e,t){var n=d(e),r=d(t);return(i.max(n.getLuminance(),r.getLuminance())+.05)/(i.min(n.getLuminance(),r.getLuminance())+.05)},d.isReadable=function(e,t,n){var r,i,o=d.readability(e,t);switch(i=!1,r=Q(n),r.level+r.size){case"AAsmall":case"AAAlarge":i=o>=4.5;break;case"AAlarge":i=o>=3;break;case"AAAsmall":i=o>=7;break}return i},d.mostReadable=function(e,t,n){var r,i,o,a,s=null,l=0;n=n||{},i=n.includeFallbackColors,o=n.level,a=n.size;for(var c=0;cl&&(l=r,s=d(t[c]));return d.isReadable(e,s,{level:o,size:a})||!i?s:(n.includeFallbackColors=!1,d.mostReadable(e,["#fff","#000"],n))};var j=d.names={aliceblue:"f0f8ff",antiquewhite:"faebd7",aqua:"0ff",aquamarine:"7fffd4",azure:"f0ffff",beige:"f5f5dc",bisque:"ffe4c4",black:"000",blanchedalmond:"ffebcd",blue:"00f",blueviolet:"8a2be2",brown:"a52a2a",burlywood:"deb887",burntsienna:"ea7e5d",cadetblue:"5f9ea0",chartreuse:"7fff00",chocolate:"d2691e",coral:"ff7f50",cornflowerblue:"6495ed",cornsilk:"fff8dc",crimson:"dc143c",cyan:"0ff",darkblue:"00008b",darkcyan:"008b8b",darkgoldenrod:"b8860b",darkgray:"a9a9a9",darkgreen:"006400",darkgrey:"a9a9a9",darkkhaki:"bdb76b",darkmagenta:"8b008b",darkolivegreen:"556b2f",darkorange:"ff8c00",darkorchid:"9932cc",darkred:"8b0000",darksalmon:"e9967a",darkseagreen:"8fbc8f",darkslateblue:"483d8b",darkslategray:"2f4f4f",darkslategrey:"2f4f4f",darkturquoise:"00ced1",darkviolet:"9400d3",deeppink:"ff1493",deepskyblue:"00bfff",dimgray:"696969",dimgrey:"696969",dodgerblue:"1e90ff",firebrick:"b22222",floralwhite:"fffaf0",forestgreen:"228b22",fuchsia:"f0f",gainsboro:"dcdcdc",ghostwhite:"f8f8ff",gold:"ffd700",goldenrod:"daa520",gray:"808080",green:"008000",greenyellow:"adff2f",grey:"808080",honeydew:"f0fff0",hotpink:"ff69b4",indianred:"cd5c5c",indigo:"4b0082",ivory:"fffff0",khaki:"f0e68c",lavender:"e6e6fa",lavenderblush:"fff0f5",lawngreen:"7cfc00",lemonchiffon:"fffacd",lightblue:"add8e6",lightcoral:"f08080",lightcyan:"e0ffff",lightgoldenrodyellow:"fafad2",lightgray:"d3d3d3",lightgreen:"90ee90",lightgrey:"d3d3d3",lightpink:"ffb6c1",lightsalmon:"ffa07a",lightseagreen:"20b2aa",lightskyblue:"87cefa",lightslategray:"789",lightslategrey:"789",lightsteelblue:"b0c4de",lightyellow:"ffffe0",lime:"0f0",limegreen:"32cd32",linen:"faf0e6",magenta:"f0f",maroon:"800000",mediumaquamarine:"66cdaa",mediumblue:"0000cd",mediumorchid:"ba55d3",mediumpurple:"9370db",mediumseagreen:"3cb371",mediumslateblue:"7b68ee",mediumspringgreen:"00fa9a",mediumturquoise:"48d1cc",mediumvioletred:"c71585",midnightblue:"191970",mintcream:"f5fffa",mistyrose:"ffe4e1",moccasin:"ffe4b5",navajowhite:"ffdead",navy:"000080",oldlace:"fdf5e6",olive:"808000",olivedrab:"6b8e23",orange:"ffa500",orangered:"ff4500",orchid:"da70d6",palegoldenrod:"eee8aa",palegreen:"98fb98",paleturquoise:"afeeee",palevioletred:"db7093",papayawhip:"ffefd5",peachpuff:"ffdab9",peru:"cd853f",pink:"ffc0cb",plum:"dda0dd",powderblue:"b0e0e6",purple:"800080",rebeccapurple:"663399",red:"f00",rosybrown:"bc8f8f",royalblue:"4169e1",saddlebrown:"8b4513",salmon:"fa8072",sandybrown:"f4a460",seagreen:"2e8b57",seashell:"fff5ee",sienna:"a0522d",silver:"c0c0c0",skyblue:"87ceeb",slateblue:"6a5acd",slategray:"708090",slategrey:"708090",snow:"fffafa",springgreen:"00ff7f",steelblue:"4682b4",tan:"d2b48c",teal:"008080",thistle:"d8bfd8",tomato:"ff6347",turquoise:"40e0d0",violet:"ee82ee",wheat:"f5deb3",white:"fff",whitesmoke:"f5f5f5",yellow:"ff0",yellowgreen:"9acd32"},N=d.hexNames=I(j);function I(e){var t={};for(var n in e)e.hasOwnProperty(n)&&(t[e[n]]=n);return t}function $(e){return e=parseFloat(e),(isNaN(e)||e<0||e>1)&&(e=1),e}function F(e,t){W(e)&&(e="100%");var n=H(e);return e=c(t,u(0,parseFloat(e))),n&&(e=parseInt(e*t,10)/100),i.abs(e-t)<1e-6?1:e%t/parseFloat(t)}function V(e){return c(1,u(0,e))}function B(e){return parseInt(e,16)}function W(e){return"string"==typeof e&&-1!=e.indexOf(".")&&1===parseFloat(e)}function H(e){return"string"===typeof e&&-1!=e.indexOf("%")}function z(e){return 1==e.length?"0"+e:""+e}function U(e){return e<=1&&(e=100*e+"%"),e}function q(e){return i.round(255*parseFloat(e)).toString(16)}function K(e){return B(e)/255}var G=function(){var e="[-\\+]?\\d+%?",t="[-\\+]?\\d*\\.\\d+%?",n="(?:"+t+")|(?:"+e+")",r="[\\s|\\(]+("+n+")[,|\\s]+("+n+")[,|\\s]+("+n+")\\s*\\)?",i="[\\s|\\(]+("+n+")[,|\\s]+("+n+")[,|\\s]+("+n+")[,|\\s]+("+n+")\\s*\\)?";return{CSS_UNIT:new RegExp(n),rgb:new RegExp("rgb"+r),rgba:new RegExp("rgba"+i),hsl:new RegExp("hsl"+r),hsla:new RegExp("hsla"+i),hsv:new RegExp("hsv"+r),hsva:new RegExp("hsva"+i),hex3:/^#?([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,hex6:/^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/,hex4:/^#?([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,hex8:/^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/}}();function Y(e){return!!G.CSS_UNIT.exec(e)}function X(e){e=e.replace(o,"").replace(a,"").toLowerCase();var t,n=!1;if(j[e])e=j[e],n=!0;else if("transparent"==e)return{r:0,g:0,b:0,a:0,format:"name"};return(t=G.rgb.exec(e))?{r:t[1],g:t[2],b:t[3]}:(t=G.rgba.exec(e))?{r:t[1],g:t[2],b:t[3],a:t[4]}:(t=G.hsl.exec(e))?{h:t[1],s:t[2],l:t[3]}:(t=G.hsla.exec(e))?{h:t[1],s:t[2],l:t[3],a:t[4]}:(t=G.hsv.exec(e))?{h:t[1],s:t[2],v:t[3]}:(t=G.hsva.exec(e))?{h:t[1],s:t[2],v:t[3],a:t[4]}:(t=G.hex8.exec(e))?{r:B(t[1]),g:B(t[2]),b:B(t[3]),a:K(t[4]),format:n?"name":"hex8"}:(t=G.hex6.exec(e))?{r:B(t[1]),g:B(t[2]),b:B(t[3]),format:n?"name":"hex"}:(t=G.hex4.exec(e))?{r:B(t[1]+""+t[1]),g:B(t[2]+""+t[2]),b:B(t[3]+""+t[3]),a:K(t[4]+""+t[4]),format:n?"name":"hex8"}:!!(t=G.hex3.exec(e))&&{r:B(t[1]+""+t[1]),g:B(t[2]+""+t[2]),b:B(t[3]+""+t[3]),format:n?"name":"hex"}}function Q(e){var t,n;return e=e||{level:"AA",size:"small"},t=(e.level||"AA").toUpperCase(),n=(e.size||"small").toLowerCase(),"AA"!==t&&"AAA"!==t&&(t="AA"),"small"!==n&&"large"!==n&&(n="small"),{level:t,size:n}}e.exports?e.exports=d:(r=function(){return d}.call(t,n,t,e),void 0===r||(e.exports=r))})(Math)},Zxgi:function(e,t,n){var r=n("5T2Y"),i=n("WEpk"),o=n("uOPS"),a=n("zLkG"),s=n("2faE").f;e.exports=function(e){var t=i.Symbol||(i.Symbol=o?{}:r.Symbol||{});"_"==e.charAt(0)||e in t||s(t,e,{value:a.f(e)})}},a0xu:function(e,t){var n={}.toString;e.exports=function(e){return n.call(e).slice(8,-1)}},a3WO:function(e,t,n){"use strict";function r(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n1&&r&&r.length>1){var o=f(r)/f(i);!isFinite(o)&&(o=1),t.pinchScale=o;var a=p(r);return t.pinchX=a[0],t.pinchY=a[1],{type:"pinch",target:e[0].target,event:t}}}}},g="silent";function v(e,t,n){return{type:e,event:n,target:t.target,topTarget:t.topTarget,cancelBubble:!1,offsetX:n.zrX,offsetY:n.zrY,gestureEvent:n.gestureEvent,pinchX:n.pinchX,pinchY:n.pinchY,pinchScale:n.pinchScale,wheelDelta:n.zrDelta,zrByTouch:n.zrByTouch,which:n.which,stop:y}}function y(){h["f"](this.event)}var b=function(e){function t(){var t=null!==e&&e.apply(this,arguments)||this;return t.handler=null,t}return Object(o["a"])(t,e),t.prototype.dispose=function(){},t.prototype.setCursor=function(){},t}(u["a"]),w=function(){function e(e,t){this.x=e,this.y=t}return e}(),x=["click","dblclick","mousewheel","mouseout","mouseup","mousedown","mousemove","contextmenu"],_=function(e){function t(t,n,r,i){var o=e.call(this)||this;return o._hovered=new w(0,0),o.storage=t,o.painter=n,o.painterRoot=i,r=r||new b,o.proxy=null,o.setHandlerProxy(r),o._draggingMgr=new c(o),o}return Object(o["a"])(t,e),t.prototype.setHandlerProxy=function(e){this.proxy&&this.proxy.dispose(),e&&(i["k"](x,function(t){e.on&&e.on(t,this[t],this)},this),e.handler=this),this.proxy=e},t.prototype.mousemove=function(e){var t=e.zrX,n=e.zrY,r=S(this,t,n),i=this._hovered,o=i.target;o&&!o.__zr&&(i=this.findHover(i.x,i.y),o=i.target);var a=this._hovered=r?new w(t,n):this.findHover(t,n),s=a.target,l=this.proxy;l.setCursor&&l.setCursor(s?s.cursor:"default"),o&&s!==o&&this.dispatchToElement(i,"mouseout",e),this.dispatchToElement(a,"mousemove",e),s&&s!==o&&this.dispatchToElement(a,"mouseover",e)},t.prototype.mouseout=function(e){var t=e.zrEventControl;"only_globalout"!==t&&this.dispatchToElement(this._hovered,"mouseout",e),"no_globalout"!==t&&this.trigger("globalout",{type:"globalout",event:e})},t.prototype.resize=function(){this._hovered=new w(0,0)},t.prototype.dispatch=function(e,t){var n=this[e];n&&n.call(this,t)},t.prototype.dispose=function(){this.proxy.dispose(),this.storage=null,this.proxy=null,this.painter=null},t.prototype.setCursorStyle=function(e){var t=this.proxy;t.setCursor&&t.setCursor(e)},t.prototype.dispatchToElement=function(e,t,n){e=e||{};var r=e.target;if(!r||!r.silent){var i="on"+t,o=v(t,e,n);while(r)if(r[i]&&(o.cancelBubble=!!r[i].call(r,o)),r.trigger(t,o),r=r.__hostTarget?r.__hostTarget:r.parent,o.cancelBubble)break;o.cancelBubble||(this.trigger(t,o),this.painter&&this.painter.eachOtherLayer&&this.painter.eachOtherLayer(function(e){"function"===typeof e[i]&&e[i].call(e,o),e.trigger&&e.trigger(t,o)}))}},t.prototype.findHover=function(e,t,n){for(var r=this.storage.getDisplayList(),i=new w(e,t),o=r.length-1;o>=0;o--){var a=void 0;if(r[o]!==n&&!r[o].ignore&&(a=C(r[o],e,t))&&(!i.topTarget&&(i.topTarget=r[o]),a!==g)){i.target=r[o];break}}return i},t.prototype.processGesture=function(e,t){this._gestureMgr||(this._gestureMgr=new d);var n=this._gestureMgr;"start"===t&&n.clear();var r=n.recognize(e,this.findHover(e.zrX,e.zrY,null).target,this.proxy.dom);if("end"===t&&n.clear(),r){var i=r.type;e.gestureEvent=i;var o=new w;o.target=r.target,this.dispatchToElement(o,i,r.event)}},t}(u["a"]);function C(e,t,n){if(e[e.rectHover?"rectContain":"contain"](t,n)){var r=e,i=void 0,o=!1;while(r){if(r.ignoreClip&&(o=!0),!o){var a=r.getClipPath();if(a&&!a.contain(t,n))return!1;r.silent&&(i=!0)}var s=r.__hostTarget;r=s||r.parent}return!i||g}return!1}function S(e,t,n){var r=e.painter;return t<0||t>r.getWidth()||n<0||n>r.getHeight()}i["k"](["click","mousedown","mouseup","mousewheel","dblclick","contextmenu"],function(e){_.prototype[e]=function(t){var n,r,i=t.zrX,o=t.zrY,s=S(this,i,o);if("mouseup"===e&&s||(n=this.findHover(i,o),r=n.target),"mousedown"===e)this._downEl=r,this._downPoint=[t.zrX,t.zrY],this._upEl=r;else if("mouseup"===e)this._upEl=r;else if("click"===e){if(this._downEl!==this._upEl||!this._downPoint||a["e"](this._downPoint,[t.zrX,t.zrY])>4)return;this._downPoint=null}this.dispatchToElement(n,e,t)}});var E=_,k=n("BPZU"),O=n("S8SX"),T=!1;function A(){T||(T=!0,console.warn("z / z2 / zlevel of displayable is invalid, which may cause unexpected errors"))}function M(e,t){return e.zlevel===t.zlevel?e.z===t.z?e.z2-t.z2:e.z-t.z:e.zlevel-t.zlevel}var P=function(){function e(){this._roots=[],this._displayList=[],this._displayListLen=0,this.displayableSortFunc=M}return e.prototype.traverse=function(e,t){for(var n=0;n0&&(c.__clipPaths=[]),isNaN(c.z)&&(A(),c.z=0),isNaN(c.z2)&&(A(),c.z2=0),isNaN(c.zlevel)&&(A(),c.zlevel=0),this._displayList[this._displayListLen++]=c}var u=e.getDecalElement&&e.getDecalElement();u&&this._updateAndAddDisplayable(u,t,n);var h=e.getTextGuideLine();h&&this._updateAndAddDisplayable(h,t,n);var d=e.getTextContent();d&&this._updateAndAddDisplayable(d,t,n)}},e.prototype.addRoot=function(e){e.__zr&&e.__zr.storage===this||this._roots.push(e)},e.prototype.delRoot=function(e){if(e instanceof Array)for(var t=0,n=e.length;t=0&&this._roots.splice(r,1)}},e.prototype.delAllRoots=function(){this._roots=[],this._displayList=[],this._displayListLen=0},e.prototype.getRoots=function(){return this._roots},e.prototype.dispose=function(){this._displayList=null,this._roots=null},e}(),R=P,L=n("mLcG"),D=n("Bq2U"),j=function(e){function t(t){var n=e.call(this)||this;return n._running=!1,n._time=0,n._pausedTime=0,n._pauseStart=0,n._paused=!1,t=t||{},n.stage=t.stage||{},n.onframe=t.onframe||function(){},n}return Object(o["a"])(t,e),t.prototype.addClip=function(e){e.animation&&this.removeClip(e),this._clipsHead?(this._clipsTail.next=e,e.prev=this._clipsTail,e.next=null,this._clipsTail=e):this._clipsHead=this._clipsTail=e,e.animation=this},t.prototype.addAnimator=function(e){e.animation=this;var t=e.getClip();t&&this.addClip(t)},t.prototype.removeClip=function(e){if(e.animation){var t=e.prev,n=e.next;t?t.next=n:this._clipsHead=n,n?n.prev=t:this._clipsTail=t,e.next=e.prev=e.animation=null}},t.prototype.removeAnimator=function(e){var t=e.getClip();t&&this.removeClip(t),e.animation=null},t.prototype.update=function(e){var t=(new Date).getTime()-this._pausedTime,n=t-this._time,r=this._clipsHead;while(r){var i=r.next,o=r.step(t,n);o?(r.ondestroy&&r.ondestroy(),this.removeClip(r),r=i):r=i}this._time=t,e||(this.onframe(n),this.trigger("frame",n),this.stage.update&&this.stage.update())},t.prototype._startLoop=function(){var e=this;function t(){e._running&&(Object(L["a"])(t),!e._paused&&e.update())}this._running=!0,Object(L["a"])(t)},t.prototype.start=function(){this._running||(this._time=(new Date).getTime(),this._pausedTime=0,this._startLoop())},t.prototype.stop=function(){this._running=!1},t.prototype.pause=function(){this._paused||(this._pauseStart=(new Date).getTime(),this._paused=!0)},t.prototype.resume=function(){this._paused&&(this._pausedTime+=(new Date).getTime()-this._pauseStart,this._paused=!1)},t.prototype.clear=function(){var e=this._clipsHead;while(e){var t=e.next;e.prev=e.next=e.animation=null,e=t}this._clipsHead=this._clipsTail=null},t.prototype.isFinished=function(){return null==this._clipsHead},t.prototype.animate=function(e,t){t=t||{},this.start();var n=new D["b"](e,t.loop);return this.addAnimator(n),n},t}(u["a"]),N=j,I=300,$=r["a"].domSupported,F=function(){var e=["click","dblclick","mousewheel","wheel","mouseout","mouseup","mousedown","mousemove","contextmenu"],t=["touchstart","touchend","touchmove"],n={pointerdown:1,pointerup:1,pointermove:1,pointerout:1},r=i["F"](e,function(e){var t=e.replace("mouse","pointer");return n.hasOwnProperty(t)?t:e});return{mouse:e,touch:t,pointer:r}}(),V={mouse:["mousemove","mouseup"],pointer:["pointermove","pointerup"]},B=!1;function W(e){var t=e.pointerType;return"pen"===t||"touch"===t}function H(e){e.touching=!0,null!=e.touchTimer&&(clearTimeout(e.touchTimer),e.touchTimer=null),e.touchTimer=setTimeout(function(){e.touching=!1,e.touchTimer=null},700)}function z(e){e&&(e.zrByTouch=!0)}function U(e,t){return Object(h["d"])(e.dom,new K(e,t),!0)}function q(e,t){var n=t,r=!1;while(n&&9!==n.nodeType&&!(r=n.domBelongToZr||n!==t&&n===e.painterRoot))n=n.parentNode;return r}var K=function(){function e(e,t){this.stopPropagation=i["I"],this.stopImmediatePropagation=i["I"],this.preventDefault=i["I"],this.type=t.type,this.target=this.currentTarget=e.dom,this.pointerType=t.pointerType,this.clientX=t.clientX,this.clientY=t.clientY}return e}(),G={mousedown:function(e){e=Object(h["d"])(this.dom,e),this.__mayPointerCapture=[e.zrX,e.zrY],this.trigger("mousedown",e)},mousemove:function(e){e=Object(h["d"])(this.dom,e);var t=this.__mayPointerCapture;!t||e.zrX===t[0]&&e.zrY===t[1]||this.__togglePointerCapture(!0),this.trigger("mousemove",e)},mouseup:function(e){e=Object(h["d"])(this.dom,e),this.__togglePointerCapture(!1),this.trigger("mouseup",e)},mouseout:function(e){e=Object(h["d"])(this.dom,e);var t=e.toElement||e.relatedTarget;q(this,t)||(this.__pointerCapturing&&(e.zrEventControl="no_globalout"),this.trigger("mouseout",e))},wheel:function(e){B=!0,e=Object(h["d"])(this.dom,e),this.trigger("mousewheel",e)},mousewheel:function(e){B||(e=Object(h["d"])(this.dom,e),this.trigger("mousewheel",e))},touchstart:function(e){e=Object(h["d"])(this.dom,e),z(e),this.__lastTouchMoment=new Date,this.handler.processGesture(e,"start"),G.mousemove.call(this,e),G.mousedown.call(this,e)},touchmove:function(e){e=Object(h["d"])(this.dom,e),z(e),this.handler.processGesture(e,"change"),G.mousemove.call(this,e)},touchend:function(e){e=Object(h["d"])(this.dom,e),z(e),this.handler.processGesture(e,"end"),G.mouseup.call(this,e),+new Date-+this.__lastTouchMoment0&&(this._stillFrameAccum++,this._stillFrameAccum>this._sleepAfterStill&&this.animation.stop())},e.prototype.setSleepAfterStill=function(e){this._sleepAfterStill=e},e.prototype.wakeUp=function(){this.animation.start(),this._stillFrameAccum=0},e.prototype.addHover=function(e){},e.prototype.removeHover=function(e){},e.prototype.clearHover=function(){},e.prototype.refreshHover=function(){this._needsRefreshHover=!0},e.prototype.refreshHoverImmediately=function(){this._needsRefreshHover=!1,this.painter.refreshHover&&"canvas"===this.painter.getType()&&this.painter.refreshHover()},e.prototype.resize=function(e){e=e||{},this.painter.resize(e.width,e.height),this.handler.resize()},e.prototype.clearAnimation=function(){this.animation.clear()},e.prototype.getWidth=function(){return this.painter.getWidth()},e.prototype.getHeight=function(){return this.painter.getHeight()},e.prototype.pathToImage=function(e,t){if(this.painter.pathToImage)return this.painter.pathToImage(e,t)},e.prototype.setCursorStyle=function(e){this.handler.setCursorStyle(e)},e.prototype.findHover=function(e,t){return this.handler.findHover(e,t)},e.prototype.on=function(e,t,n){return this.handler.on(e,t,n),this},e.prototype.off=function(e,t){this.handler.off(e,t)},e.prototype.trigger=function(e,t){this.handler.trigger(e,t)},e.prototype.clear=function(){for(var e=this.storage.getRoots(),t=0;t1&&void 0!==arguments[1]?arguments[1]:{},r=e.props;"value"in r||e.setState({value:t}),("keyboard"===n.source||"dateInputSelect"===n.source||!r.calendar.props.timePicker&&"dateInput"!==n.source||"todayButton"===n.source)&&e.close(e.focus),r.onChange(t)},this.onKeyDown=function(t){e.state.open||t.keyCode!==v["a"].DOWN&&t.keyCode!==v["a"].ENTER||(e.open(),t.preventDefault())},this.onCalendarOk=function(){e.close(e.focus)},this.onCalendarClear=function(){e.close(e.focus)},this.onCalendarBlur=function(){e.setOpen(!1)},this.onVisibleChange=function(t){e.setOpen(t)},this.getCalendarElement=function(){var t=e.props,n=e.state,r=t.calendar.props,i=n.value,o=i,a={ref:e.saveCalendarRef,defaultValue:o||r.defaultValue,selectedValue:i,onKeyDown:e.onCalendarKeyDown,onOk:Object(g["a"])(r.onOk,e.onCalendarOk),onSelect:Object(g["a"])(r.onSelect,e.onCalendarSelect),onClear:Object(g["a"])(r.onClear,e.onCalendarClear),onBlur:Object(g["a"])(r.onBlur,e.onCalendarBlur)};return u.a.cloneElement(t.calendar,a)},this.setOpen=function(t,n){var r=e.props.onOpenChange;e.state.open!==t&&("open"in e.props||e.setState({open:t},n),r(t))},this.open=function(t){e.setOpen(!0,t)},this.close=function(t){e.setOpen(!1,t)},this.focus=function(){e.state.open||d.a.findDOMNode(e).focus()},this.focusCalendar=function(){e.state.open&&e.calendarInstance&&e.calendarInstance.focus()}};Object(m["polyfill"])(E);t["a"]=E},"ar/p":function(e,t,n){var r=n("5vMV"),i=n("FpHa").concat("length","prototype");t.f=Object.getOwnPropertyNames||function(e){return r(e,i)}},b5re:function(e,t,n){e.exports=n("VyuQ")("native-function-to-string",Function.toString)},b9EY:function(e,t){e.exports=/[\xAD\u0600-\u0605\u061C\u06DD\u070F\u08E2\u180E\u200B-\u200F\u202A-\u202E\u2060-\u2064\u2066-\u206F\uFEFF\uFFF9-\uFFFB]|\uD804[\uDCBD\uDCCD]|\uD82F[\uDCA0-\uDCA3]|\uD834[\uDD73-\uDD7A]|\uDB40[\uDC01\uDC20-\uDC7F]/},b9Ot:function(e,t,n){"use strict";var r=function(){function e(e){e&&(this._$eventProcessor=e)}return e.prototype.on=function(e,t,n,r){this._$handlers||(this._$handlers={});var i=this._$handlers;if("function"===typeof t&&(r=n,n=t,t=null),!n||!e)return this;var o=this._$eventProcessor;null!=t&&o&&o.normalizeQuery&&(t=o.normalizeQuery(t)),i[e]||(i[e]=[]);for(var a=0;a=0?parseFloat((o.match(/(?:MSIE |Trident\/[0-9]+[\.0-9]+;.*rv:)([0-9]+[\.0-9]+)/)||[])[1]):parseFloat((o.match(/(?:Trident\/[0-9]+[\.0-9]+;.*rv:)([0-9]+[\.0-9]+)/)||[])[1]),t.isOldIE=t.isIE&&t.isIE<9,t.isGecko=t.isMozilla=o.match(/ Gecko\/\d+/),t.isOpera="object"==typeof opera&&"[object Opera]"==Object.prototype.toString.call(window.opera),t.isWebKit=parseFloat(o.split("WebKit/")[1])||void 0,t.isChrome=parseFloat(o.split(" Chrome/")[1])||void 0,t.isEdge=parseFloat(o.split(" Edge/")[1])||void 0,t.isAIR=o.indexOf("AdobeAIR")>=0,t.isAndroid=o.indexOf("Android")>=0,t.isChromeOS=o.indexOf(" CrOS ")>=0,t.isIOS=/iPad|iPhone|iPod/.test(o)&&!window.MSStream,t.isIOS&&(t.isMac=!0),t.isMobile=t.isIOS||t.isAndroid}),ace.define("ace/lib/dom",["require","exports","module","ace/lib/useragent"],function(e,t,n){"use strict";var r=e("./useragent"),i="http://www.w3.org/1999/xhtml";if(t.buildDom=function e(t,n,r){if("string"==typeof t&&t){var i=document.createTextNode(t);return n&&n.appendChild(i),i}if(!Array.isArray(t))return t&&t.appendChild&&n&&n.appendChild(t),t;if("string"!=typeof t[0]||!t[0]){for(var o=[],a=0;a=1.5,"undefined"!==typeof document){var o=document.createElement("div");t.HI_DPI&&void 0!==o.style.transform&&(t.HAS_CSS_TRANSFORMS=!0),r.isEdge||"undefined"===typeof o.style.animationName||(t.HAS_CSS_ANIMATION=!0),o=null}t.HAS_CSS_TRANSFORMS?t.translate=function(e,t,n){e.style.transform="translate("+Math.round(t)+"px, "+Math.round(n)+"px)"}:t.translate=function(e,t,n){e.style.top=Math.round(n)+"px",e.style.left=Math.round(t)+"px"}}),ace.define("ace/lib/oop",["require","exports","module"],function(e,t,n){"use strict";t.inherits=function(e,t){e.super_=t,e.prototype=Object.create(t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}})},t.mixin=function(e,t){for(var n in t)e[n]=t[n];return e},t.implement=function(e,n){t.mixin(e,n)}}),ace.define("ace/lib/keys",["require","exports","module","ace/lib/oop"],function(e,t,n){"use strict";var r=e("./oop"),i=function(){var e,t,n={MODIFIER_KEYS:{16:"Shift",17:"Ctrl",18:"Alt",224:"Meta",91:"MetaLeft",92:"MetaRight",93:"ContextMenu"},KEY_MODS:{ctrl:1,alt:2,option:2,shift:4,super:8,meta:8,command:8,cmd:8,control:1},FUNCTION_KEYS:{8:"Backspace",9:"Tab",13:"Return",19:"Pause",27:"Esc",32:"Space",33:"PageUp",34:"PageDown",35:"End",36:"Home",37:"Left",38:"Up",39:"Right",40:"Down",44:"Print",45:"Insert",46:"Delete",96:"Numpad0",97:"Numpad1",98:"Numpad2",99:"Numpad3",100:"Numpad4",101:"Numpad5",102:"Numpad6",103:"Numpad7",104:"Numpad8",105:"Numpad9","-13":"NumpadEnter",112:"F1",113:"F2",114:"F3",115:"F4",116:"F5",117:"F6",118:"F7",119:"F8",120:"F9",121:"F10",122:"F11",123:"F12",144:"Numlock",145:"Scrolllock"},PRINTABLE_KEYS:{32:" ",48:"0",49:"1",50:"2",51:"3",52:"4",53:"5",54:"6",55:"7",56:"8",57:"9",59:";",61:"=",65:"a",66:"b",67:"c",68:"d",69:"e",70:"f",71:"g",72:"h",73:"i",74:"j",75:"k",76:"l",77:"m",78:"n",79:"o",80:"p",81:"q",82:"r",83:"s",84:"t",85:"u",86:"v",87:"w",88:"x",89:"y",90:"z",107:"+",109:"-",110:".",186:";",187:"=",188:",",189:"-",190:".",191:"/",192:"`",219:"[",220:"\\",221:"]",222:"'",111:"/",106:"*"}};for(t in n.FUNCTION_KEYS)e=n.FUNCTION_KEYS[t].toLowerCase(),n[e]=parseInt(t,10);for(t in n.PRINTABLE_KEYS)e=n.PRINTABLE_KEYS[t].toLowerCase(),n[e]=parseInt(t,10);return r.mixin(n,n.MODIFIER_KEYS),r.mixin(n,n.PRINTABLE_KEYS),r.mixin(n,n.FUNCTION_KEYS),n.enter=n["return"],n.escape=n.esc,n.del=n["delete"],n[173]="-",function(){for(var e=["cmd","ctrl","alt","shift"],t=Math.pow(2,e.length);t--;)n.KEY_MODS[t]=e.filter(function(e){return t&n.KEY_MODS[e]}).join("-")+"-"}(),n.KEY_MODS[0]="",n.KEY_MODS[-1]="input-",n}();r.mixin(t,i),t.keyCodeToString=function(e){var t=i[e];return"string"!=typeof t&&(t=String.fromCharCode(e)),t.toLowerCase()}}),ace.define("ace/lib/event",["require","exports","module","ace/lib/keys","ace/lib/useragent"],function(e,t,n){"use strict";var r,i=e("./keys"),o=e("./useragent"),a=null,s=0;function l(){r=!1;try{document.createComment("").addEventListener("test",function(){},{get passive(){r={passive:!1}}})}catch(e){}}function c(){return void 0==r&&l(),r}function u(e,t,n){this.elem=e,this.type=t,this.callback=n}u.prototype.destroy=function(){d(this.elem,this.type,this.callback),this.elem=this.type=this.callback=void 0};var h=t.addListener=function(e,t,n,r){e.addEventListener(t,n,c()),r&&r.$toDestroy.push(new u(e,t,n))},d=t.removeListener=function(e,t,n){e.removeEventListener(t,n,c())};t.stopEvent=function(e){return t.stopPropagation(e),t.preventDefault(e),!1},t.stopPropagation=function(e){e.stopPropagation&&e.stopPropagation()},t.preventDefault=function(e){e.preventDefault&&e.preventDefault()},t.getButton=function(e){return"dblclick"==e.type?0:"contextmenu"==e.type||o.isMac&&e.ctrlKey&&!e.altKey&&!e.shiftKey?2:e.button},t.capture=function(e,t,n){var r=e&&e.ownerDocument||document;function i(e){t&&t(e),n&&n(e),d(r,"mousemove",t),d(r,"mouseup",i),d(r,"dragstart",i)}return h(r,"mousemove",t),h(r,"mouseup",i),h(r,"dragstart",i),i},t.addMouseWheelListener=function(e,t,n){"onmousewheel"in e?h(e,"mousewheel",function(e){var n=8;void 0!==e.wheelDeltaX?(e.wheelX=-e.wheelDeltaX/n,e.wheelY=-e.wheelDeltaY/n):(e.wheelX=0,e.wheelY=-e.wheelDelta/n),t(e)},n):"onwheel"in e?h(e,"wheel",function(e){var n=.35;switch(e.deltaMode){case e.DOM_DELTA_PIXEL:e.wheelX=e.deltaX*n||0,e.wheelY=e.deltaY*n||0;break;case e.DOM_DELTA_LINE:case e.DOM_DELTA_PAGE:e.wheelX=5*(e.deltaX||0),e.wheelY=5*(e.deltaY||0);break}t(e)},n):h(e,"DOMMouseScroll",function(e){e.axis&&e.axis==e.HORIZONTAL_AXIS?(e.wheelX=5*(e.detail||0),e.wheelY=0):(e.wheelX=0,e.wheelY=5*(e.detail||0)),t(e)},n)},t.addMultiMouseDownListener=function(e,n,r,i,a){var s,l,c,u=0,d={2:"dblclick",3:"tripleclick",4:"quadclick"};function f(e){if(0!==t.getButton(e)?u=0:e.detail>1?(u++,u>4&&(u=1)):u=1,o.isIE){var a=Math.abs(e.clientX-s)>5||Math.abs(e.clientY-l)>5;c&&!a||(u=1),c&&clearTimeout(c),c=setTimeout(function(){c=null},n[u-1]||600),1==u&&(s=e.clientX,l=e.clientY)}if(e._clicks=u,r[i]("mousedown",e),u>4)u=0;else if(u>1)return r[i](d[u],e)}Array.isArray(e)||(e=[e]),e.forEach(function(e){h(e,"mousedown",f,a)})};var f=function(e){return 0|(e.ctrlKey?1:0)|(e.altKey?2:0)|(e.shiftKey?4:0)|(e.metaKey?8:0)};function p(e,t,n){var r=f(t);if(!o.isMac&&a){if(t.getModifierState&&(t.getModifierState("OS")||t.getModifierState("Win"))&&(r|=8),a.altGr){if(3==(3&r))return;a.altGr=0}if(18===n||17===n){var l="location"in t?t.location:t.keyLocation;if(17===n&&1===l)1==a[n]&&(s=t.timeStamp);else if(18===n&&3===r&&2===l){var c=t.timeStamp-s;c<50&&(a.altGr=!0)}}}if(n in i.MODIFIER_KEYS&&(n=-1),!r&&13===n){l="location"in t?t.location:t.keyLocation;if(3===l&&(e(t,r,-n),t.defaultPrevented))return}if(o.isChromeOS&&8&r){if(e(t,r,n),t.defaultPrevented)return;r&=-9}return!!(r||n in i.FUNCTION_KEYS||n in i.PRINTABLE_KEYS)&&e(t,r,n)}function m(){a=Object.create(null)}if(t.getModifierString=function(e){return i.KEY_MODS[f(e)]},t.addCommandKeyListener=function(e,n,r){if(o.isOldGecko||o.isOpera&&!("KeyboardEvent"in window)){var i=null;h(e,"keydown",function(e){i=e.keyCode},r),h(e,"keypress",function(e){return p(n,e,i)},r)}else{var s=null;h(e,"keydown",function(e){a[e.keyCode]=(a[e.keyCode]||0)+1;var t=p(n,e,e.keyCode);return s=e.defaultPrevented,t},r),h(e,"keypress",function(e){s&&(e.ctrlKey||e.altKey||e.shiftKey||e.metaKey)&&(t.stopEvent(e),s=null)},r),h(e,"keyup",function(e){a[e.keyCode]=null},r),a||(m(),h(window,"focus",m))}},"object"==typeof window&&window.postMessage&&!o.isOldIE){var g=1;t.nextTick=function(e,n){n=n||window;var r="zero-timeout-message-"+g++,i=function(o){o.data==r&&(t.stopPropagation(o),d(n,"message",i),e())};h(n,"message",i),n.postMessage(r,"*")}}t.$idleBlocked=!1,t.onIdle=function(e,n){return setTimeout(function n(){t.$idleBlocked?setTimeout(n,100):e()},n)},t.$idleBlockId=null,t.blockIdle=function(e){t.$idleBlockId&&clearTimeout(t.$idleBlockId),t.$idleBlocked=!0,t.$idleBlockId=setTimeout(function(){t.$idleBlocked=!1},e||100)},t.nextFrame="object"==typeof window&&(window.requestAnimationFrame||window.mozRequestAnimationFrame||window.webkitRequestAnimationFrame||window.msRequestAnimationFrame||window.oRequestAnimationFrame),t.nextFrame?t.nextFrame=t.nextFrame.bind(window):t.nextFrame=function(e){setTimeout(e,17)}}),ace.define("ace/range",["require","exports","module"],function(e,t,n){"use strict";var r=function(e,t){return e.row-t.row||e.column-t.column},i=function(e,t,n,r){this.start={row:e,column:t},this.end={row:n,column:r}};(function(){this.isEqual=function(e){return this.start.row===e.start.row&&this.end.row===e.end.row&&this.start.column===e.start.column&&this.end.column===e.end.column},this.toString=function(){return"Range: ["+this.start.row+"/"+this.start.column+"] -> ["+this.end.row+"/"+this.end.column+"]"},this.contains=function(e,t){return 0==this.compare(e,t)},this.compareRange=function(e){var t,n=e.end,r=e.start;return t=this.compare(n.row,n.column),1==t?(t=this.compare(r.row,r.column),1==t?2:0==t?1:0):-1==t?-2:(t=this.compare(r.row,r.column),-1==t?-1:1==t?42:0)},this.comparePoint=function(e){return this.compare(e.row,e.column)},this.containsRange=function(e){return 0==this.comparePoint(e.start)&&0==this.comparePoint(e.end)},this.intersects=function(e){var t=this.compareRange(e);return-1==t||0==t||1==t},this.isEnd=function(e,t){return this.end.row==e&&this.end.column==t},this.isStart=function(e,t){return this.start.row==e&&this.start.column==t},this.setStart=function(e,t){"object"==typeof e?(this.start.column=e.column,this.start.row=e.row):(this.start.row=e,this.start.column=t)},this.setEnd=function(e,t){"object"==typeof e?(this.end.column=e.column,this.end.row=e.row):(this.end.row=e,this.end.column=t)},this.inside=function(e,t){return 0==this.compare(e,t)&&(!this.isEnd(e,t)&&!this.isStart(e,t))},this.insideStart=function(e,t){return 0==this.compare(e,t)&&!this.isEnd(e,t)},this.insideEnd=function(e,t){return 0==this.compare(e,t)&&!this.isStart(e,t)},this.compare=function(e,t){return this.isMultiLine()||e!==this.start.row?ethis.end.row?1:this.start.row===e?t>=this.start.column?0:-1:this.end.row===e?t<=this.end.column?0:1:0:tthis.end.column?1:0},this.compareStart=function(e,t){return this.start.row==e&&this.start.column==t?-1:this.compare(e,t)},this.compareEnd=function(e,t){return this.end.row==e&&this.end.column==t?1:this.compare(e,t)},this.compareInside=function(e,t){return this.end.row==e&&this.end.column==t?1:this.start.row==e&&this.start.column==t?-1:this.compare(e,t)},this.clipRows=function(e,t){if(this.end.row>t)var n={row:t+1,column:0};else if(this.end.rowt)var r={row:t+1,column:0};else if(this.start.row0)1&t&&(n+=e),(t>>=1)&&(e+=e);return n};var r=/^\s\s*/,i=/\s\s*$/;t.stringTrimLeft=function(e){return e.replace(r,"")},t.stringTrimRight=function(e){return e.replace(i,"")},t.copyObject=function(e){var t={};for(var n in e)t[n]=e[n];return t},t.copyArray=function(e){for(var t=[],n=0,r=e.length;nDate.now()-50)||(r=!1)},cancel:function(){r=Date.now()}}}),ace.define("ace/keyboard/textinput",["require","exports","module","ace/lib/event","ace/lib/useragent","ace/lib/dom","ace/lib/lang","ace/clipboard","ace/lib/keys"],function(e,t,n){"use strict";var r=e("../lib/event"),i=e("../lib/useragent"),o=e("../lib/dom"),a=e("../lib/lang"),s=e("../clipboard"),l=i.isChrome<18,c=i.isIE,u=i.isChrome>63,h=400,d=e("../lib/keys"),f=d.KEY_MODS,p=i.isIOS,m=p?/\s/:/\n/,g=i.isMobile,v=function(e,t){var n=o.createElement("textarea");n.className="ace_text-input",n.setAttribute("wrap","off"),n.setAttribute("autocorrect","off"),n.setAttribute("autocapitalize","off"),n.setAttribute("spellcheck",!1),n.style.opacity="0",e.insertBefore(n,e.firstChild);var v=!1,y=!1,b=!1,w=!1,x="";g||(n.style.fontSize="1px");var _=!1,C=!1,S="",E=0,k=0,O=0;try{var T=document.activeElement===n}catch(e){}r.addListener(n,"blur",function(e){C||(t.onBlur(e),T=!1)},t),r.addListener(n,"focus",function(e){if(!C){if(T=!0,i.isEdge)try{if(!document.hasFocus())return}catch(e){}t.onFocus(e),i.isEdge?setTimeout(A):A()}},t),this.$focusScroll=!1,this.focus=function(){if(x||u||"browser"==this.$focusScroll)return n.focus({preventScroll:!0});var e=n.style.top;n.style.position="fixed",n.style.top="0px";try{var t=0!=n.getBoundingClientRect().top}catch(e){return}var r=[];if(t){var i=n.parentElement;while(i&&1==i.nodeType)r.push(i),i.setAttribute("ace_nocontext",!0),i=!i.parentElement&&i.getRootNode?i.getRootNode().host:i.parentElement}n.focus({preventScroll:!0}),t&&r.forEach(function(e){e.removeAttribute("ace_nocontext")}),setTimeout(function(){n.style.position="","0px"==n.style.top&&(n.style.top=e)},0)},this.blur=function(){n.blur()},this.isFocused=function(){return T},t.on("beforeEndOperation",function(){var e=t.curOp,r=e&&e.command&&e.command.name;if("insertstring"!=r){var i=r&&(e.docChanged||e.selectionChanged);b&&i&&(S=n.value="",H()),A()}});var A=p?function(e){if(T&&(!v||e)&&!w){e||(e="");var r="\n ab"+e+"cde fg\n";r!=n.value&&(n.value=S=r);var i=4,o=4+(e.length||(t.selection.isEmpty()?0:1));E==i&&k==o||n.setSelectionRange(i,o),E=i,k=o}}:function(){if(!b&&!w&&(T||L)){b=!0;var e=0,r=0,i="";if(t.session){var o=t.selection,a=o.getRange(),s=o.cursor.row;if(e=a.start.column,r=a.end.column,i=t.session.getLine(s),a.start.row!=s){var l=t.session.getLine(s-1);e=a.start.rows+1?c.length:r,r+=i.length+1,i=i+"\n"+c}else g&&s>0&&(i="\n"+i,r+=1,e+=1);i.length>h&&(e=S.length&&e.value===S&&S&&e.selectionEnd!==k},P=function(e){b||(v?v=!1:M(n)?(t.selectAll(),A()):g&&n.selectionStart!=E&&A())},R=null;this.setInputHandler=function(e){R=e},this.getInputHandler=function(){return R};var L=!1,D=function(e,r){if(L&&(L=!1),y)return A(),e&&t.onPaste(e),y=!1,"";var o=n.selectionStart,a=n.selectionEnd,s=E,l=S.length-k,c=e,u=e.length-o,h=e.length-a,d=0;while(s>0&&S[d]==e[d])d++,s--;c=c.slice(d),d=1;while(l>0&&S.length-d>E-1&&S[S.length-d]==e[e.length-d])d++,l--;u-=d-1,h-=d-1;var f=c.length-d+1;if(f<0&&(s=-f,f=0),c=c.slice(0,f),!r&&!c&&!u&&!s&&!l&&!h)return"";w=!0;var p=!1;return i.isAndroid&&". "==c&&(c=" ",p=!0),c&&!s&&!l&&!u&&!h||_?t.onTextInput(c):t.onTextInput(c,{extendLeft:s,extendRight:l,restoreStart:u,restoreEnd:h}),w=!1,S=e,E=o,k=a,O=h,p?"\n":c},j=function(e){if(b)return W();if(e&&e.inputType){if("historyUndo"==e.inputType)return t.execCommand("undo");if("historyRedo"==e.inputType)return t.execCommand("redo")}var r=n.value,i=D(r,!0);(r.length>h+100||m.test(i)||g&&E<1&&E==k)&&A()},N=function(e,t,n){var r=e.clipboardData||window.clipboardData;if(r&&!l){var i=c||n?"Text":"text/plain";try{return t?!1!==r.setData(i,t):r.getData(i)}catch(e){if(!n)return N(e,t,!0)}}},I=function(e,i){var o=t.getCopyText();if(!o)return r.preventDefault(e);N(e,o)?(p&&(A(o),v=o,setTimeout(function(){v=!1},10)),i?t.onCut():t.onCopy(),r.preventDefault(e)):(v=!0,n.value=o,n.select(),setTimeout(function(){v=!1,A(),i?t.onCut():t.onCopy()}))},$=function(e){I(e,!0)},F=function(e){I(e,!1)},V=function(e){var o=N(e);s.pasteCancelled()||("string"==typeof o?(o&&t.onPaste(o,e),i.isIE&&setTimeout(A),r.preventDefault(e)):(n.value="",y=!0))};r.addCommandKeyListener(n,t.onCommandKey.bind(t),t),r.addListener(n,"select",P,t),r.addListener(n,"input",j,t),r.addListener(n,"cut",$,t),r.addListener(n,"copy",F,t),r.addListener(n,"paste",V,t),"oncut"in n&&"oncopy"in n&&"onpaste"in n||r.addListener(e,"keydown",function(e){if((!i.isMac||e.metaKey)&&e.ctrlKey)switch(e.keyCode){case 67:F(e);break;case 86:V(e);break;case 88:$(e);break}},t);var B=function(e){if(!b&&t.onCompositionStart&&!t.$readOnly&&(b={},!_)){e.data&&(b.useTextareaForIME=!1),setTimeout(W,0),t._signal("compositionStart"),t.on("mousedown",z);var r=t.getSelectionRange();r.end.row=r.start.row,r.end.column=r.start.column,b.markerRange=r,b.selectionStart=E,t.onCompositionStart(b),b.useTextareaForIME?(S=n.value="",E=0,k=0):(n.msGetInputContext&&(b.context=n.msGetInputContext()),n.getInputContext&&(b.context=n.getInputContext()))}},W=function(){if(b&&t.onCompositionUpdate&&!t.$readOnly){if(_)return z();if(b.useTextareaForIME)t.onCompositionUpdate(n.value);else{var e=n.value;D(e),b.markerRange&&(b.context&&(b.markerRange.start.column=b.selectionStart=b.context.compositionStartOffset),b.markerRange.end.column=b.markerRange.start.column+k-b.selectionStart+O)}}},H=function(e){t.onCompositionEnd&&!t.$readOnly&&(b=!1,t.onCompositionEnd(),t.off("mousedown",z),e&&j())};function z(){C=!0,n.blur(),n.focus(),C=!1}var U,q=a.delayedCall(W,50).schedule.bind(null,null);function K(e){27==e.keyCode&&n.value.lengthk&&"\n"==S[o]?a=d.end:rk&&S.slice(0,o).split("\n").length>2?a=d.down:o>k&&" "==S[o-1]?(a=d.right,s=f.option):(o>k||o==k&&k!=E&&r==o)&&(a=d.right),r!==o&&(s|=f.shift),a){var l=t.onCommandKey({},s,a);if(!l&&t.commands){a=d.keyCodeToString(a);var c=t.commands.findKeyCommand(s,a);c&&t.execCommand(c)}E=r,k=o,A("")}}};document.addEventListener("selectionchange",o),t.on("destroy",function(){document.removeEventListener("selectionchange",o)})}r.addListener(n,"mouseup",Y,t),r.addListener(n,"mousedown",function(e){e.preventDefault(),G()},t),r.addListener(t.renderer.scroller,"contextmenu",Y,t),r.addListener(n,"contextmenu",Y,t),p&&X(e,t,n)};t.TextInput=v,t.$setUserAgentForTests=function(e,t){g=e,p=t}}),ace.define("ace/mouse/default_handlers",["require","exports","module","ace/lib/useragent"],function(e,t,n){"use strict";var r=e("../lib/useragent"),i=0,o=550;function a(e){e.$clickSelection=null;var t=e.editor;t.setDefaultHandler("mousedown",this.onMouseDown.bind(e)),t.setDefaultHandler("dblclick",this.onDoubleClick.bind(e)),t.setDefaultHandler("tripleclick",this.onTripleClick.bind(e)),t.setDefaultHandler("quadclick",this.onQuadClick.bind(e)),t.setDefaultHandler("mousewheel",this.onMouseWheel.bind(e));var n=["select","startSelect","selectEnd","selectAllEnd","selectByWordsEnd","selectByLinesEnd","dragWait","dragWaitEnd","focusWait"];n.forEach(function(t){e[t]=this[t]},this),e.selectByLines=this.extendSelectionBy.bind(e,"getLineRange"),e.selectByWords=this.extendSelectionBy.bind(e,"getWordRange")}function s(e,t,n,r){return Math.sqrt(Math.pow(n-e,2)+Math.pow(r-t,2))}function l(e,t){if(e.start.row==e.end.row)var n=2*t.column-e.start.column-e.end.column;else if(e.start.row!=e.end.row-1||e.start.column||e.end.column)n=2*t.row-e.start.row-e.end.row;else var n=t.column-4;return n<0?{cursor:e.start,anchor:e.end}:{cursor:e.end,anchor:e.start}}(function(){this.onMouseDown=function(e){var t=e.inSelection(),n=e.getDocumentPosition();this.mousedownEvent=e;var i=this.editor,o=e.getButton();if(0!==o){var a=i.getSelectionRange(),s=a.isEmpty();return(s||1==o)&&i.selection.moveToPosition(n),void(2==o&&(i.textInput.onContextMenu(e.domEvent),r.isMozilla||e.preventDefault()))}return this.mousedownEvent.time=Date.now(),!t||i.isFocused()||(i.focus(),!this.$focusTimeout||this.$clickSelection||i.inMultiSelectMode)?(this.captureMouse(e),this.startSelect(n,e.domEvent._clicks>1),e.preventDefault()):(this.setState("focusWait"),void this.captureMouse(e))},this.startSelect=function(e,t){e=e||this.editor.renderer.screenToTextCoordinates(this.x,this.y);var n=this.editor;this.mousedownEvent&&(this.mousedownEvent.getShiftKey()?n.selection.selectToPosition(e):t||n.selection.moveToPosition(e),t||this.select(),n.renderer.scroller.setCapture&&n.renderer.scroller.setCapture(),n.setStyle("ace_selecting"),this.setState("select"))},this.select=function(){var e,t=this.editor,n=t.renderer.screenToTextCoordinates(this.x,this.y);if(this.$clickSelection){var r=this.$clickSelection.comparePoint(n);if(-1==r)e=this.$clickSelection.end;else if(1==r)e=this.$clickSelection.start;else{var i=l(this.$clickSelection,n);n=i.cursor,e=i.anchor}t.selection.setSelectionAnchor(e.row,e.column)}t.selection.selectToPosition(n),t.renderer.scrollCursorIntoView()},this.extendSelectionBy=function(e){var t,n=this.editor,r=n.renderer.screenToTextCoordinates(this.x,this.y),i=n.selection[e](r.row,r.column);if(this.$clickSelection){var o=this.$clickSelection.comparePoint(i.start),a=this.$clickSelection.comparePoint(i.end);if(-1==o&&a<=0)t=this.$clickSelection.end,i.end.row==r.row&&i.end.column==r.column||(r=i.start);else if(1==a&&o>=0)t=this.$clickSelection.start,i.start.row==r.row&&i.start.column==r.column||(r=i.end);else if(-1==o&&1==a)r=i.end,t=i.start;else{var s=l(this.$clickSelection,r);r=s.cursor,t=s.anchor}n.selection.setSelectionAnchor(t.row,t.column)}n.selection.selectToPosition(r),n.renderer.scrollCursorIntoView()},this.selectEnd=this.selectAllEnd=this.selectByWordsEnd=this.selectByLinesEnd=function(){this.$clickSelection=null,this.editor.unsetStyle("ace_selecting"),this.editor.renderer.scroller.releaseCapture&&this.editor.renderer.scroller.releaseCapture()},this.focusWait=function(){var e=s(this.mousedownEvent.x,this.mousedownEvent.y,this.x,this.y),t=Date.now();(e>i||t-this.mousedownEvent.time>this.$focusTimeout)&&this.startSelect(this.mousedownEvent.getDocumentPosition())},this.onDoubleClick=function(e){var t=e.getDocumentPosition(),n=this.editor,r=n.session,i=r.getBracketRange(t);i?(i.isEmpty()&&(i.start.column--,i.end.column++),this.setState("select")):(i=n.selection.getWordRange(t.row,t.column),this.setState("selectByWords")),this.$clickSelection=i,this.select()},this.onTripleClick=function(e){var t=e.getDocumentPosition(),n=this.editor;this.setState("selectByLines");var r=n.getSelectionRange();r.isMultiLine()&&r.contains(t.row,t.column)?(this.$clickSelection=n.selection.getLineRange(r.start.row),this.$clickSelection.end=n.selection.getLineRange(r.end.row).end):this.$clickSelection=n.selection.getLineRange(t.row),this.select()},this.onQuadClick=function(e){var t=this.editor;t.selectAll(),this.$clickSelection=t.getSelectionRange(),this.setState("selectAll")},this.onMouseWheel=function(e){if(!e.getAccelKey()){e.getShiftKey()&&e.wheelY&&!e.wheelX&&(e.wheelX=e.wheelY,e.wheelY=0);var t=this.editor;this.$lastScroll||(this.$lastScroll={t:0,vx:0,vy:0,allowed:0});var n=this.$lastScroll,r=e.domEvent.timeStamp,i=r-n.t,a=i?e.wheelX/i:n.vx,s=i?e.wheelY/i:n.vy;i=1&&t.renderer.isScrollableBy(e.wheelX*e.speed,0)&&(c=!0),l<=1&&t.renderer.isScrollableBy(0,e.wheelY*e.speed)&&(c=!0),c)n.allowed=r;else if(r-n.alloweda.session.documentToScreenRow(u.row,u.column))return h()}if(i!=r)if(i=r.text.join("
"),c.setHtml(i),c.show(),a._signal("showGutterTooltip",c),a.on("mousewheel",h),e.$tooltipFollowsMouse)d(n);else{var f=n.domEvent.target,p=f.getBoundingClientRect(),m=c.getElement().style;m.left=p.right+"px",m.top=p.bottom+"px"}}function h(){t&&(t=clearTimeout(t)),i&&(c.hide(),i=null,a._signal("hideGutterTooltip",c),a.off("mousewheel",h))}function d(e){c.setPosition(e.x,e.y)}e.editor.setDefaultHandler("guttermousedown",function(t){if(a.isFocused()&&0==t.getButton()){var n=s.getRegion(t);if("foldWidgets"!=n){var r=t.getDocumentPosition().row,i=a.session.selection;if(t.getShiftKey())i.selectTo(r,0);else{if(2==t.domEvent.detail)return a.selectAll(),t.preventDefault();e.$clickSelection=a.selection.getLineRange(r)}return e.setState("selectByLines"),e.captureMouse(t),t.preventDefault()}}}),e.editor.setDefaultHandler("guttermousemove",function(o){var a=o.domEvent.target||o.domEvent.srcElement;if(r.hasCssClass(a,"ace_fold-widget"))return h();i&&e.$tooltipFollowsMouse&&d(o),n=o,t||(t=setTimeout(function(){t=null,n&&!e.isMousePressed?u():h()},50))}),o.addListener(a.renderer.$gutter,"mouseout",function(e){n=null,i&&!t&&(t=setTimeout(function(){t=null,h()},50))},a),a.on("changeSession",h)}function l(e){a.call(this,e)}i.inherits(l,a),function(){this.setPosition=function(e,t){var n=window.innerWidth||document.documentElement.clientWidth,r=window.innerHeight||document.documentElement.clientHeight,i=this.getWidth(),o=this.getHeight();e+=15,t+=15,e+i>n&&(e-=e+i-n),t+o>r&&(t-=20+o),a.prototype.setPosition.call(this,e,t)}}.call(l.prototype),t.GutterHandler=s}),ace.define("ace/mouse/mouse_event",["require","exports","module","ace/lib/event","ace/lib/useragent"],function(e,t,n){"use strict";var r=e("../lib/event"),i=e("../lib/useragent"),o=t.MouseEvent=function(e,t){this.domEvent=e,this.editor=t,this.x=this.clientX=e.clientX,this.y=this.clientY=e.clientY,this.$pos=null,this.$inSelection=null,this.propagationStopped=!1,this.defaultPrevented=!1};(function(){this.stopPropagation=function(){r.stopPropagation(this.domEvent),this.propagationStopped=!0},this.preventDefault=function(){r.preventDefault(this.domEvent),this.defaultPrevented=!0},this.stop=function(){this.stopPropagation(),this.preventDefault()},this.getDocumentPosition=function(){return this.$pos?this.$pos:(this.$pos=this.editor.renderer.screenToTextCoordinates(this.clientX,this.clientY),this.$pos)},this.inSelection=function(){if(null!==this.$inSelection)return this.$inSelection;var e=this.editor,t=e.getSelectionRange();if(t.isEmpty())this.$inSelection=!1;else{var n=this.getDocumentPosition();this.$inSelection=t.contains(n.row,n.column)}return this.$inSelection},this.getButton=function(){return r.getButton(this.domEvent)},this.getShiftKey=function(){return this.domEvent.shiftKey},this.getAccelKey=i.isMac?function(){return this.domEvent.metaKey}:function(){return this.domEvent.ctrlKey}}).call(o.prototype)}),ace.define("ace/mouse/dragdrop_handler",["require","exports","module","ace/lib/dom","ace/lib/event","ace/lib/useragent"],function(e,t,n){"use strict";var r=e("../lib/dom"),i=e("../lib/event"),o=e("../lib/useragent"),a=200,s=200,l=5;function c(e){var t=e.editor,n=r.createElement("img");n.src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==",o.isOpera&&(n.style.cssText="width:1px;height:1px;position:fixed;top:0;left:0;z-index:2147483647;opacity:0;");var c=["dragWait","dragWaitEnd","startDrag","dragReadyEnd","onMouseDrag"];c.forEach(function(t){e[t]=this[t]},this),t.on("mousedown",this.onMouseDown.bind(e));var h,d,f,p,m,g,v,y,b,w,x,_=t.container,C=0;function S(e,n){var r=Date.now(),i=!n||e.row!=n.row,o=!n||e.column!=n.column;if(!w||i||o)t.moveCursorToPosition(e),w=r,x={x:d,y:f};else{var a=u(x.x,x.y,d,f);a>l?w=null:r-w>=s&&(t.renderer.scrollCursorIntoView(),w=null)}}function E(e,n){var r=Date.now(),i=t.renderer.layerConfig.lineHeight,o=t.renderer.layerConfig.characterWidth,s=t.renderer.scroller.getBoundingClientRect(),l={x:{left:d-s.left,right:s.right-d},y:{top:f-s.top,bottom:s.bottom-f}},c=Math.min(l.x.left,l.x.right),u=Math.min(l.y.top,l.y.bottom),h={row:e.row,column:e.column};c/o<=2&&(h.column+=l.x.left=a&&t.renderer.scrollCursorIntoView(h):b=r:b=null}function k(){var e=g;g=t.renderer.screenToTextCoordinates(d,f),S(g,e),E(g,e)}function O(){m=t.selection.toOrientedRange(),h=t.session.addMarker(m,"ace_selection",t.getSelectionStyle()),t.clearSelection(),t.isFocused()&&t.renderer.$cursorLayer.setBlinking(!1),clearInterval(p),k(),p=setInterval(k,20),C=0,i.addListener(document,"mousemove",M)}function T(){clearInterval(p),t.session.removeMarker(h),h=null,t.selection.fromOrientedRange(m),t.isFocused()&&!y&&t.$resetCursorStyle(),m=null,g=null,C=0,b=null,w=null,i.removeListener(document,"mousemove",M)}this.onDragStart=function(e){if(this.cancelDrag||!_.draggable){var r=this;return setTimeout(function(){r.startSelect(),r.captureMouse(e)},0),e.preventDefault()}m=t.getSelectionRange();var i=e.dataTransfer;i.effectAllowed=t.getReadOnly()?"copy":"copyMove",o.isOpera&&(t.container.appendChild(n),n.scrollTop=0),i.setDragImage&&i.setDragImage(n,0,0),o.isOpera&&t.container.removeChild(n),i.clearData(),i.setData("Text",t.session.getTextRange()),y=!0,this.setState("drag")},this.onDragEnd=function(e){if(_.draggable=!1,y=!1,this.setState(null),!t.getReadOnly()){var n=e.dataTransfer.dropEffect;v||"move"!=n||t.session.remove(t.getSelectionRange()),t.$resetCursorStyle()}this.editor.unsetStyle("ace_dragging"),this.editor.renderer.setCursorStyle("")},this.onDragEnter=function(e){if(!t.getReadOnly()&&P(e.dataTransfer))return d=e.clientX,f=e.clientY,h||O(),C++,e.dataTransfer.dropEffect=v=R(e),i.preventDefault(e)},this.onDragOver=function(e){if(!t.getReadOnly()&&P(e.dataTransfer))return d=e.clientX,f=e.clientY,h||(O(),C++),null!==A&&(A=null),e.dataTransfer.dropEffect=v=R(e),i.preventDefault(e)},this.onDragLeave=function(e){if(C--,C<=0&&h)return T(),v=null,i.preventDefault(e)},this.onDrop=function(e){if(g){var n=e.dataTransfer;if(y)switch(v){case"move":m=m.contains(g.row,g.column)?{start:g,end:g}:t.moveText(m,g);break;case"copy":m=t.moveText(m,g,!0);break}else{var r=n.getData("Text");m={start:g,end:t.session.insert(g,r)},t.focus(),v=null}return T(),i.preventDefault(e)}},i.addListener(_,"dragstart",this.onDragStart.bind(e),t),i.addListener(_,"dragend",this.onDragEnd.bind(e),t),i.addListener(_,"dragenter",this.onDragEnter.bind(e),t),i.addListener(_,"dragover",this.onDragOver.bind(e),t),i.addListener(_,"dragleave",this.onDragLeave.bind(e),t),i.addListener(_,"drop",this.onDrop.bind(e),t);var A=null;function M(){null==A&&(A=setTimeout(function(){null!=A&&h&&T()},20))}function P(e){var t=e.types;return!t||Array.prototype.some.call(t,function(e){return"text/plain"==e||"Text"==e})}function R(e){var t=["copy","copymove","all","uninitialized"],n=["move","copymove","linkmove","all","uninitialized"],r=o.isMac?e.altKey:e.ctrlKey,i="uninitialized";try{i=e.dataTransfer.effectAllowed.toLowerCase()}catch(e){}var a="none";return r&&t.indexOf(i)>=0?a="copy":n.indexOf(i)>=0?a="move":t.indexOf(i)>=0&&(a="copy"),a}}function u(e,t,n,r){return Math.sqrt(Math.pow(n-e,2)+Math.pow(r-t,2))}(function(){this.dragWait=function(){var e=Date.now()-this.mousedownEvent.time;e>this.editor.getDragDelay()&&this.startDrag()},this.dragWaitEnd=function(){var e=this.editor.container;e.draggable=!1,this.startSelect(this.mousedownEvent.getDocumentPosition()),this.selectEnd()},this.dragReadyEnd=function(e){this.editor.$resetCursorStyle(),this.editor.unsetStyle("ace_dragging"),this.editor.renderer.setCursorStyle(""),this.dragWaitEnd()},this.startDrag=function(){this.cancelDrag=!1;var e=this.editor,t=e.container;t.draggable=!0,e.renderer.$cursorLayer.setBlinking(!1),e.setStyle("ace_dragging");var n=o.isWin?"default":"move";e.renderer.setCursorStyle(n),this.setState("dragReady")},this.onMouseDrag=function(e){var t=this.editor.container;if(o.isIE&&"dragReady"==this.state){var n=u(this.mousedownEvent.x,this.mousedownEvent.y,this.x,this.y);n>3&&t.dragDrop()}if("dragWait"===this.state){n=u(this.mousedownEvent.x,this.mousedownEvent.y,this.x,this.y);n>0&&(t.draggable=!1,this.startSelect(this.mousedownEvent.getDocumentPosition()))}},this.onMouseDown=function(e){if(this.$dragEnabled){this.mousedownEvent=e;var t=this.editor,n=e.inSelection(),r=e.getButton(),i=e.domEvent.detail||1;if(1===i&&0===r&&n){if(e.editor.inMultiSelectMode&&(e.getAccelKey()||e.getShiftKey()))return;this.mousedownEvent.time=Date.now();var a=e.domEvent.target||e.domEvent.srcElement;if("unselectable"in a&&(a.unselectable="on"),t.getDragDelay()){if(o.isWebKit){this.cancelDrag=!0;var s=t.container;s.draggable=!0}this.setState("dragWait")}else this.startDrag();this.captureMouse(e,this.onMouseDrag.bind(this)),e.defaultPrevented=!0}}}}).call(c.prototype),t.DragdropHandler=c}),ace.define("ace/mouse/touch_handler",["require","exports","module","ace/mouse/mouse_event","ace/lib/event","ace/lib/dom"],function(e,t,n){"use strict";var r=e("./mouse_event").MouseEvent,i=e("../lib/event"),o=e("../lib/dom");t.addTouchListeners=function(e,t){var n,a,s,l,c,u,h,d,f,p="scroll",m=0,g=0,v=0,y=0;function b(){var e=window.navigator&&window.navigator.clipboard,n=!1,r=function(){var r=t.getCopyText(),i=t.session.getUndoManager().hasUndo();f.replaceChild(o.buildDom(n?["span",!r&&["span",{class:"ace_mobile-button",action:"selectall"},"Select All"],r&&["span",{class:"ace_mobile-button",action:"copy"},"Copy"],r&&["span",{class:"ace_mobile-button",action:"cut"},"Cut"],e&&["span",{class:"ace_mobile-button",action:"paste"},"Paste"],i&&["span",{class:"ace_mobile-button",action:"undo"},"Undo"],["span",{class:"ace_mobile-button",action:"find"},"Find"],["span",{class:"ace_mobile-button",action:"openCommandPallete"},"Pallete"]]:["span"]),f.firstChild)},i=function(i){var o=i.target.getAttribute("action");if("more"==o||!n)return n=!n,r();"paste"==o?e.readText().then(function(e){t.execCommand(o,e)}):o&&("cut"!=o&&"copy"!=o||(e?e.writeText(t.getCopyText()):document.execCommand("copy")),t.execCommand(o)),f.firstChild.style.display="none",n=!1,"openCommandPallete"!=o&&t.focus()};f=o.buildDom(["div",{class:"ace_mobile-menu",ontouchstart:function(e){p="menu",e.stopPropagation(),e.preventDefault(),t.textInput.focus()},ontouchend:function(e){e.stopPropagation(),e.preventDefault(),i(e)},onclick:i},["span"],["span",{class:"ace_mobile-button",action:"more"},"..."]],t.container)}function w(){f||b();var e=t.selection.cursor,n=t.renderer.textToScreenCoordinates(e.row,e.column),r=t.renderer.textToScreenCoordinates(0,0).pageX,i=t.renderer.scrollLeft,o=t.container.getBoundingClientRect();f.style.top=n.pageY-o.top-3+"px",n.pageX-o.left=2?t.selection.getLineRange(h.row):t.session.getBracketRange(h);e&&!e.isEmpty()?t.selection.setRange(e):t.selection.selectWord(),p="wait"}function S(){m+=60,u=setInterval(function(){m--<=0&&(clearInterval(u),u=null),Math.abs(v)<.01&&(v=0),Math.abs(y)<.01&&(y=0),m<20&&(v*=.9),m<20&&(y*=.9);var e=t.session.getScrollTop();t.renderer.scrollBy(10*v,10*y),e==t.session.getScrollTop()&&(m=0)},10)}i.addListener(e,"contextmenu",function(e){if(d){var n=t.textInput.getElement();n.focus()}},t),i.addListener(e,"touchstart",function(e){var i=e.touches;if(c||i.length>1)return clearTimeout(c),c=null,s=-1,void(p="zoom");d=t.$mouseHandler.isMousePressed=!0;var o=t.renderer.layerConfig.lineHeight,u=t.renderer.layerConfig.lineHeight,f=e.timeStamp;l=f;var b=i[0],w=b.clientX,x=b.clientY;Math.abs(n-w)+Math.abs(a-x)>o&&(s=-1),n=e.clientX=w,a=e.clientY=x,v=y=0;var S=new r(e,t);if(h=S.getDocumentPosition(),f-s<500&&1==i.length&&!m)g++,e.preventDefault(),e.button=0,C();else{g=0;var E=t.selection.cursor,k=t.selection.isEmpty()?E:t.selection.anchor,O=t.renderer.$cursorLayer.getPixelPosition(E,!0),T=t.renderer.$cursorLayer.getPixelPosition(k,!0),A=t.renderer.scroller.getBoundingClientRect(),M=t.renderer.layerConfig.offset,P=t.renderer.scrollLeft,R=function(e,t){return e/=u,t=t/o-.75,e*e+t*t};if(e.clientXD?"cursor":"anchor"),p=D<3.5?"anchor":L<3.5?"cursor":"scroll",c=setTimeout(_,450)}s=f},t),i.addListener(e,"touchend",function(e){d=t.$mouseHandler.isMousePressed=!1,u&&clearInterval(u),"zoom"==p?(p="",m=0):c?(t.selection.moveToPosition(h),m=0,w()):"scroll"==p?(S(),x()):w(),clearTimeout(c),c=null},t),i.addListener(e,"touchmove",function(e){c&&(clearTimeout(c),c=null);var i=e.touches;if(!(i.length>1||"zoom"==p)){var o=i[0],s=n-o.clientX,u=a-o.clientY;if("wait"==p){if(!(s*s+u*u>4))return e.preventDefault();p="cursor"}n=o.clientX,a=o.clientY,e.clientX=o.clientX,e.clientY=o.clientY;var h=e.timeStamp,d=h-l;if(l=h,"scroll"==p){var f=new r(e,t);f.speed=1,f.wheelX=s,f.wheelY=u,10*Math.abs(s)1&&(i=n[n.length-2]);var a=l[t+"Path"];return null==a?a=l.basePath:"/"==r&&(t=r=""),a&&"/"!=a.slice(-1)&&(a+="/"),a+t+r+i+this.get("suffix")},t.setModuleUrl=function(e,t){return l.$moduleUrls[e]=t},t.$loading={},t.loadModule=function(n,r){var i,a;Array.isArray(n)&&(a=n[0],n=n[1]);try{i=e(n)}catch(e){}if(i&&!t.$loading[n])return r&&r(i);if(t.$loading[n]||(t.$loading[n]=[]),t.$loading[n].push(r),!(t.$loading[n].length>1)){var s=function(){e([n],function(e){t._emit("load.module",{name:n,module:e});var r=t.$loading[n];t.$loading[n]=null,r.forEach(function(t){t&&t(e)})})};if(!t.get("packaged"))return s();o.loadScript(t.moduleUrl(n,a),s),c()}};var c=function(){l.basePath||l.workerPath||l.modePath||l.themePath||Object.keys(l.$moduleUrls).length||(console.error("Unable to infer path to ace from script src,","use ace.config.set('basePath', 'path') to enable dynamic loading of modes and themes","or with webpack use ace/webpack-resolver"),c=function(){})};function u(i){if(s&&s.document){l.packaged=i||e.packaged||r.packaged||s.define&&n("B9Yq").packaged;for(var o={},a="",c=document.currentScript||document._currentScript,u=c&&c.ownerDocument||document,d=u.getElementsByTagName("script"),f=0;f0)if(16==g){for(_=x;_-1){for(_=x;_=0;E--){if(u[E]!=w)break;t[E]=r}}}function D(e,t,n){if(!(i=e){o=d+1;while(o=e)o++;for(s=d,l=o-1;s=t.length||(l=n[i-1])!=p&&l!=m||(c=t[i+1])!=p&&c!=m?g:(o&&(c=m),c==l?c:g);case _:return l=i>0?n[i-1]:v,l==p&&i+10&&n[i-1]==p)return p;if(o)return g;h=i+1,u=t.length;while(h=1425&&R<=2303||64286==R;if(l=t[h],L&&(l==f||l==b))return f}return i<1||(l=t[i-1])==v?g:n[i-1];case v:return o=!1,a=!0,r;case y:return s=!0,g;case E:case k:case T:case A:case O:o=!1;case M:return g}}function N(e){var t=e.charCodeAt(0),n=t>>8;return 0==n?t>191?d:P[t]:5==n?/[\u0591-\u05f4]/.test(e)?f:d:6==n?/[\u0610-\u061a\u064b-\u065f\u06d6-\u06e4\u06e7-\u06ed]/.test(e)?S:/[\u0660-\u0669\u066b-\u066c]/.test(e)?m:1642==t?C:/[\u06f0-\u06f9]/.test(e)?p:b:32==n&&t<=8287?R[255&t]:254==n&&t>=65136?b:g}t.L=d,t.R=f,t.EN=p,t.ON_R=3,t.AN=4,t.R_H=5,t.B=6,t.RLE=7,t.DOT="\xb7",t.doBidiReorder=function(e,n,i){if(e.length<2)return{};var o=e.split(""),a=new Array(o.length),s=new Array(o.length),l=[];r=i?h:u,L(o,l,o.length,n);for(var c=0;cb&&n[c]0&&"\u0644"===o[c-1]&&/\u0622|\u0623|\u0625|\u0627/.test(o[c])&&(l[c-1]=l[c]=t.R_H,c++);o[o.length-1]===t.DOT&&(l[o.length-1]=t.B),"\u202b"===o[0]&&(l[0]=t.RLE);for(c=0;c=0&&(e=this.session.$docRowCache[n])}return e},this.getSplitIndex=function(){var e=0,t=this.session.$screenRowCache;if(t.length){var n,r=this.session.$getRowCacheIndex(t,this.currentRow);while(this.currentRow-e>0){if(n=this.session.$getRowCacheIndex(t,this.currentRow-e-1),n!==r)break;r=n,e++}}else e=this.currentRow;return e},this.updateRowLine=function(e,t){void 0===e&&(e=this.getDocumentRow());var n=e===this.session.getLength()-1,o=n?this.EOF:this.EOL;if(this.wrapIndent=0,this.line=this.session.getLine(e),this.isRtlDir=this.$isRtl||this.line.charAt(0)===this.RLE,this.session.$useWrapMode){var a=this.session.$wrapData[e];a&&(void 0===t&&(t=this.getSplitIndex()),t>0&&a.length?(this.wrapIndent=a.indent,this.wrapOffset=this.wrapIndent*this.charWidths[r.L],this.line=tt?this.session.getOverwrite()?e:e-1:t,i=r.getVisualFromLogicalIdx(n,this.bidiMap),o=this.bidiMap.bidiLevels,a=0;!this.session.getOverwrite()&&e<=t&&o[i]%2!==0&&i++;for(var s=0;st&&o[i]%2===0&&(a+=this.charWidths[o[i]]),this.wrapIndent&&(a+=this.isRtlDir?-1*this.wrapOffset:this.wrapOffset),this.isRtlDir&&(a+=this.rtlLineOffset),a},this.getSelections=function(e,t){var n,r=this.bidiMap,i=r.bidiLevels,o=[],a=0,s=Math.min(e,t)-this.wrapIndent,l=Math.max(e,t)-this.wrapIndent,c=!1,u=!1,h=0;this.wrapIndent&&(a+=this.isRtlDir?-1*this.wrapOffset:this.wrapOffset);for(var d,f=0;f=s&&dn+o/2){if(n+=o,r===i.length-1){o=0;break}o=this.charWidths[i[++r]]}return r>0&&i[r-1]%2!==0&&i[r]%2===0?(e0&&i[r-1]%2===0&&i[r]%2!==0?t=1+(e>n?this.bidiMap.logicalFromVisual[r]:this.bidiMap.logicalFromVisual[r-1]):this.isRtlDir&&r===i.length-1&&0===o&&i[r-1]%2===0||!this.isRtlDir&&0===r&&i[r]%2!==0?t=1+this.bidiMap.logicalFromVisual[r]:(r>0&&i[r-1]%2!==0&&0!==o&&r--,t=this.bidiMap.logicalFromVisual[r]),0===t&&this.isRtlDir&&t++,t+this.wrapIndent}}).call(a.prototype),t.BidiHandler=a}),ace.define("ace/selection",["require","exports","module","ace/lib/oop","ace/lib/lang","ace/lib/event_emitter","ace/range"],function(e,t,n){"use strict";var r=e("./lib/oop"),i=e("./lib/lang"),o=e("./lib/event_emitter").EventEmitter,a=e("./range").Range,s=function(e){this.session=e,this.doc=e.getDocument(),this.clearSelection(),this.cursor=this.lead=this.doc.createAnchor(0,0),this.anchor=this.doc.createAnchor(0,0),this.$silent=!1;var t=this;this.cursor.on("change",function(e){t.$cursorChanged=!0,t.$silent||t._emit("changeCursor"),t.$isEmpty||t.$silent||t._emit("changeSelection"),t.$keepDesiredColumnOnChange||e.old.column==e.value.column||(t.$desiredColumn=null)}),this.anchor.on("change",function(){t.$anchorChanged=!0,t.$isEmpty||t.$silent||t._emit("changeSelection")})};(function(){r.implement(this,o),this.isEmpty=function(){return this.$isEmpty||this.anchor.row==this.lead.row&&this.anchor.column==this.lead.column},this.isMultiLine=function(){return!this.$isEmpty&&this.anchor.row!=this.cursor.row},this.getCursor=function(){return this.lead.getPosition()},this.setSelectionAnchor=function(e,t){this.$isEmpty=!1,this.anchor.setPosition(e,t)},this.getAnchor=this.getSelectionAnchor=function(){return this.$isEmpty?this.getSelectionLead():this.anchor.getPosition()},this.getSelectionLead=function(){return this.lead.getPosition()},this.isBackwards=function(){var e=this.anchor,t=this.lead;return e.row>t.row||e.row==t.row&&e.column>t.column},this.getRange=function(){var e=this.anchor,t=this.lead;return this.$isEmpty?a.fromPoints(t,t):this.isBackwards()?a.fromPoints(t,e):a.fromPoints(e,t)},this.clearSelection=function(){this.$isEmpty||(this.$isEmpty=!0,this._emit("changeSelection"))},this.selectAll=function(){this.$setSelection(0,0,Number.MAX_VALUE,Number.MAX_VALUE)},this.setRange=this.setSelectionRange=function(e,t){var n=t?e.end:e.start,r=t?e.start:e.end;this.$setSelection(n.row,n.column,r.row,r.column)},this.$setSelection=function(e,t,n,r){if(!this.$silent){var i=this.$isEmpty,o=this.inMultiSelectMode;this.$silent=!0,this.$cursorChanged=this.$anchorChanged=!1,this.anchor.setPosition(e,t),this.cursor.setPosition(n,r),this.$isEmpty=!a.comparePoints(this.anchor,this.cursor),this.$silent=!1,this.$cursorChanged&&this._emit("changeCursor"),(this.$cursorChanged||this.$anchorChanged||i!=this.$isEmpty||o)&&this._emit("changeSelection")}},this.$moveSelection=function(e){var t=this.lead;this.$isEmpty&&this.setSelectionAnchor(t.row,t.column),e.call(this)},this.selectTo=function(e,t){this.$moveSelection(function(){this.moveCursorTo(e,t)})},this.selectToPosition=function(e){this.$moveSelection(function(){this.moveCursorToPosition(e)})},this.moveTo=function(e,t){this.clearSelection(),this.moveCursorTo(e,t)},this.moveToPosition=function(e){this.clearSelection(),this.moveCursorToPosition(e)},this.selectUp=function(){this.$moveSelection(this.moveCursorUp)},this.selectDown=function(){this.$moveSelection(this.moveCursorDown)},this.selectRight=function(){this.$moveSelection(this.moveCursorRight)},this.selectLeft=function(){this.$moveSelection(this.moveCursorLeft)},this.selectLineStart=function(){this.$moveSelection(this.moveCursorLineStart)},this.selectLineEnd=function(){this.$moveSelection(this.moveCursorLineEnd)},this.selectFileEnd=function(){this.$moveSelection(this.moveCursorFileEnd)},this.selectFileStart=function(){this.$moveSelection(this.moveCursorFileStart)},this.selectWordRight=function(){this.$moveSelection(this.moveCursorWordRight)},this.selectWordLeft=function(){this.$moveSelection(this.moveCursorWordLeft)},this.getWordRange=function(e,t){if("undefined"==typeof t){var n=e||this.lead;e=n.row,t=n.column}return this.session.getWordRange(e,t)},this.selectWord=function(){this.setSelectionRange(this.getWordRange())},this.selectAWord=function(){var e=this.getCursor(),t=this.session.getAWordRange(e.row,e.column);this.setSelectionRange(t)},this.getLineRange=function(e,t){var n,r="number"==typeof e?e:this.lead.row,i=this.session.getFoldLine(r);return i?(r=i.start.row,n=i.end.row):n=r,!0===t?new a(r,0,n,this.session.getLine(n).length):new a(r,0,n+1,0)},this.selectLine=function(){this.setSelectionRange(this.getLineRange())},this.moveCursorUp=function(){this.moveCursorBy(-1,0)},this.moveCursorDown=function(){this.moveCursorBy(1,0)},this.wouldMoveIntoSoftTab=function(e,t,n){var r=e.column,i=e.column+t;return n<0&&(r=e.column-t,i=e.column),this.session.isTabStop(e)&&this.doc.getLine(e.row).slice(r,i).split(" ").length-1==t},this.moveCursorLeft=function(){var e,t=this.lead.getPosition();if(e=this.session.getFoldAt(t.row,t.column,-1))this.moveCursorTo(e.start.row,e.start.column);else if(0===t.column)t.row>0&&this.moveCursorTo(t.row-1,this.doc.getLine(t.row-1).length);else{var n=this.session.getTabSize();this.wouldMoveIntoSoftTab(t,n,-1)&&!this.session.getNavigateWithinSoftTabs()?this.moveCursorBy(0,-n):this.moveCursorBy(0,-1)}},this.moveCursorRight=function(){var e,t=this.lead.getPosition();if(e=this.session.getFoldAt(t.row,t.column,1))this.moveCursorTo(e.end.row,e.end.column);else if(this.lead.column==this.doc.getLine(this.lead.row).length)this.lead.row0&&(t.column=r)}}this.moveCursorTo(t.row,t.column)},this.moveCursorFileEnd=function(){var e=this.doc.getLength()-1,t=this.doc.getLine(e).length;this.moveCursorTo(e,t)},this.moveCursorFileStart=function(){this.moveCursorTo(0,0)},this.moveCursorLongWordRight=function(){var e=this.lead.row,t=this.lead.column,n=this.doc.getLine(e),r=n.substring(t);this.session.nonTokenRe.lastIndex=0,this.session.tokenRe.lastIndex=0;var i=this.session.getFoldAt(e,t,1);if(i)this.moveCursorTo(i.end.row,i.end.column);else{if(this.session.nonTokenRe.exec(r)&&(t+=this.session.nonTokenRe.lastIndex,this.session.nonTokenRe.lastIndex=0,r=n.substring(t)),t>=n.length)return this.moveCursorTo(e,n.length),this.moveCursorRight(),void(e0&&this.moveCursorWordLeft());this.session.tokenRe.exec(o)&&(n-=this.session.tokenRe.lastIndex,this.session.tokenRe.lastIndex=0),this.moveCursorTo(t,n)}},this.$shortWordEndIndex=function(e){var t,n=0,r=/\s/,i=this.session.tokenRe;if(i.lastIndex=0,this.session.tokenRe.exec(e))n=this.session.tokenRe.lastIndex;else{while((t=e[n])&&r.test(t))n++;if(n<1){i.lastIndex=0;while((t=e[n])&&!i.test(t))if(i.lastIndex=0,n++,r.test(t)){if(n>2){n--;break}while((t=e[n])&&r.test(t))n++;if(n>2)break}}}return i.lastIndex=0,n},this.moveCursorShortWordRight=function(){var e=this.lead.row,t=this.lead.column,n=this.doc.getLine(e),r=n.substring(t),i=this.session.getFoldAt(e,t,1);if(i)return this.moveCursorTo(i.end.row,i.end.column);if(t==n.length){var o=this.doc.getLength();do{e++,r=this.doc.getLine(e)}while(e0&&/^\s*$/.test(r));n=r.length,/\s+$/.test(r)||(r="")}var o=i.stringReverse(r),a=this.$shortWordEndIndex(o);return this.moveCursorTo(t,n-a)},this.moveCursorWordRight=function(){this.session.$selectLongWords?this.moveCursorLongWordRight():this.moveCursorShortWordRight()},this.moveCursorWordLeft=function(){this.session.$selectLongWords?this.moveCursorLongWordLeft():this.moveCursorShortWordLeft()},this.moveCursorBy=function(e,t){var n,r=this.session.documentToScreenPosition(this.lead.row,this.lead.column);if(0===t&&(0!==e&&(this.session.$bidiHandler.isBidiRow(r.row,this.lead.row)?(n=this.session.$bidiHandler.getPosLeft(r.column),r.column=Math.round(n/this.session.$bidiHandler.charWidths[0])):n=r.column*this.session.$bidiHandler.charWidths[0]),this.$desiredColumn?r.column=this.$desiredColumn:this.$desiredColumn=r.column),0!=e&&this.session.lineWidgets&&this.session.lineWidgets[this.lead.row]){var i=this.session.lineWidgets[this.lead.row];e<0?e-=i.rowsAbove||0:e>0&&(e+=i.rowCount-(i.rowsAbove||0))}var o=this.session.screenToDocumentPosition(r.row+e,r.column,n);0!==e&&0===t&&o.row===this.lead.row&&(o.column,this.lead.column),this.moveCursorTo(o.row,o.column+t,0===t)},this.moveCursorToPosition=function(e){this.moveCursorTo(e.row,e.column)},this.moveCursorTo=function(e,t,n){var r=this.session.getFoldAt(e,t,1);r&&(e=r.start.row,t=r.start.column),this.$keepDesiredColumnOnChange=!0;var i=this.session.getLine(e);/[\uDC00-\uDFFF]/.test(i.charAt(t))&&i.charAt(t-1)&&(this.lead.row==e&&this.lead.column==t+1?t-=1:t+=1),this.lead.setPosition(e,t),this.$keepDesiredColumnOnChange=!1,n||(this.$desiredColumn=null)},this.moveCursorToScreen=function(e,t,n){var r=this.session.screenToDocumentPosition(e,t);this.moveCursorTo(r.row,r.column,n)},this.detach=function(){this.lead.detach(),this.anchor.detach(),this.session=this.doc=null},this.fromOrientedRange=function(e){this.setSelectionRange(e,e.cursor==e.start),this.$desiredColumn=e.desiredColumn||this.$desiredColumn},this.toOrientedRange=function(e){var t=this.getRange();return e?(e.start.column=t.start.column,e.start.row=t.start.row,e.end.column=t.end.column,e.end.row=t.end.row):e=t,e.cursor=this.isBackwards()?e.start:e.end,e.desiredColumn=this.$desiredColumn,e},this.getRangeOfMovements=function(e){var t=this.getCursor();try{e(this);var n=this.getCursor();return a.fromPoints(t,n)}catch(e){return a.fromPoints(t,t)}finally{this.moveCursorToPosition(t)}},this.toJSON=function(){if(this.rangeCount)var e=this.ranges.map(function(e){var t=e.clone();return t.isBackwards=e.cursor==e.start,t});else{e=this.getRange();e.isBackwards=this.isBackwards()}return e},this.fromJSON=function(e){if(void 0==e.start){if(this.rangeList&&e.length>1){this.toSingleRange(e[0]);for(var t=e.length;t--;){var n=a.fromPoints(e[t].start,e[t].end);e[t].isBackwards&&(n.cursor=n.start),this.addRange(n,!0)}return}e=e[0]}this.rangeList&&this.toSingleRange(e),this.setSelectionRange(e,e.isBackwards)},this.isEqual=function(e){if((e.length||this.rangeCount)&&e.length!=this.rangeCount)return!1;if(!e.length||!this.ranges)return this.getRange().isEqual(e);for(var t=this.ranges.length;t--;)if(!this.ranges[t].isEqual(e[t]))return!1;return!0}}).call(s.prototype),t.Selection=s}),ace.define("ace/tokenizer",["require","exports","module","ace/config"],function(e,t,n){"use strict";var r=e("./config"),i=2e3,o=function(e){for(var t in this.states=e,this.regExps={},this.matchMappings={},this.states){for(var n=this.states[t],r=[],i=0,o=this.matchMappings[t]={defaultToken:"text"},a="g",s=[],l=0;l1?this.$applyToken:c.token),h>1&&(/\\\d/.test(c.regex)?u=c.regex.replace(/\\([0-9]+)/g,function(e,t){return"\\"+(parseInt(t,10)+i+1)}):(h=1,u=this.removeCapturingGroups(c.regex)),c.splitRegex||"string"==typeof c.token||s.push(c)),o[i]=l,i+=h,r.push(u),c.onMatch||(c.onMatch=null)}}r.length||(o[0]=0,r.push("$")),s.forEach(function(e){e.splitRegex=this.createSplitterRegexp(e.regex,a)},this),this.regExps[t]=new RegExp("("+r.join(")|(")+")|($)",a)}};(function(){this.$setMaxTokenCount=function(e){i=0|e},this.$applyToken=function(e){var t=this.splitRegex.exec(e).slice(1),n=this.token.apply(this,t);if("string"===typeof n)return[{type:n,value:e}];for(var r=[],i=0,o=n.length;iu){var v=e.substring(u,g-m.length);d.type==f?d.value+=v:(d.type&&c.push(d),d={type:f,value:v})}for(var y=0;yi){h>2*e.length&&this.reportError("infinite loop with in ace tokenizer",{startState:t,line:e});while(u1&&n[0]!==r&&n.unshift("#tmp",r),{tokens:c,state:n.length?n:r}},this.reportError=r.reportError}).call(o.prototype),t.Tokenizer=o}),ace.define("ace/mode/text_highlight_rules",["require","exports","module","ace/lib/lang"],function(e,t,n){"use strict";var r=e("../lib/lang"),i=function(){this.$rules={start:[{token:"empty_line",regex:"^$"},{defaultToken:"text"}]}};(function(){this.addRules=function(e,t){if(t)for(var n in e){for(var r=e[n],i=0;i=this.$rowTokens.length){if(this.$row+=1,e||(e=this.$session.getLength()),this.$row>=e)return this.$row=e-1,null;this.$rowTokens=this.$session.getTokens(this.$row),this.$tokenIndex=0}return this.$rowTokens[this.$tokenIndex]},this.getCurrentToken=function(){return this.$rowTokens[this.$tokenIndex]},this.getCurrentTokenRow=function(){return this.$row},this.getCurrentTokenColumn=function(){var e=this.$rowTokens,t=this.$tokenIndex,n=e[t].start;if(void 0!==n)return n;n=0;while(t>0)t-=1,n+=e[t].value.length;return n},this.getCurrentTokenPosition=function(){return{row:this.$row,column:this.getCurrentTokenColumn()}},this.getCurrentTokenRange=function(){var e=this.$rowTokens[this.$tokenIndex],t=this.getCurrentTokenColumn();return new r(this.$row,t,this.$row,t+e.value.length)}}).call(i.prototype),t.TokenIterator=i}),ace.define("ace/mode/behaviour/cstyle",["require","exports","module","ace/lib/oop","ace/mode/behaviour","ace/token_iterator","ace/lib/lang"],function(e,t,n){"use strict";var r,i=e("../../lib/oop"),o=e("../behaviour").Behaviour,a=e("../../token_iterator").TokenIterator,s=e("../../lib/lang"),l=["text","paren.rparen","rparen","paren","punctuation.operator"],c=["text","paren.rparen","rparen","paren","punctuation.operator","comment"],u={},h={'"':'"',"'":"'"},d=function(e){var t=-1;if(e.multiSelect&&(t=e.selection.index,u.rangeCount!=e.multiSelect.rangeCount&&(u={rangeCount:e.multiSelect.rangeCount})),u[t])return r=u[t];r=u[t]={autoInsertedBrackets:0,autoInsertedRow:-1,autoInsertedLineEnd:"",maybeInsertedBrackets:0,maybeInsertedRow:-1,maybeInsertedLineStart:"",maybeInsertedLineEnd:""}},f=function(e,t,n,r){var i=e.end.row-e.start.row;return{text:n+t+r,selection:[0,e.start.column+1,i,e.end.column+(i?0:1)]}},p=function(e){this.add("braces","insertion",function(t,n,i,o,a){var l=i.getCursorPosition(),c=o.doc.getLine(l.row);if("{"==a){d(i);var u=i.getSelectionRange(),h=o.doc.getTextRange(u);if(""!==h&&"{"!==h&&i.getWrapBehavioursEnabled())return f(u,h,"{","}");if(p.isSaneInsertion(i,o))return/[\]\}\)]/.test(c[l.column])||i.inMultiSelectMode||e&&e.braces?(p.recordAutoInsert(i,o,"}"),{text:"{}",selection:[1,1]}):(p.recordMaybeInsert(i,o,"{"),{text:"{",selection:[1,1]})}else if("}"==a){d(i);var m=c.substring(l.column,l.column+1);if("}"==m){var g=o.$findOpeningBracket("}",{column:l.column+1,row:l.row});if(null!==g&&p.isAutoInsertedClosing(l,c,a))return p.popAutoInsertedClosing(),{text:"",selection:[1,1]}}}else{if("\n"==a||"\r\n"==a){d(i);var v="";p.isMaybeInsertedClosing(l,c)&&(v=s.stringRepeat("}",r.maybeInsertedBrackets),p.clearMaybeInsertedClosing());m=c.substring(l.column,l.column+1);if("}"===m){var y=o.findMatchingBracket({row:l.row,column:l.column+1},"}");if(!y)return null;var b=this.$getIndent(o.getLine(y.row))}else{if(!v)return void p.clearMaybeInsertedClosing();b=this.$getIndent(c)}var w=b+o.getTabString();return{text:"\n"+w+"\n"+b+v,selection:[1,w.length,1,w.length]}}p.clearMaybeInsertedClosing()}}),this.add("braces","deletion",function(e,t,n,i,o){var a=i.doc.getTextRange(o);if(!o.isMultiLine()&&"{"==a){d(n);var s=i.doc.getLine(o.start.row),l=s.substring(o.end.column,o.end.column+1);if("}"==l)return o.end.column++,o;r.maybeInsertedBrackets--}}),this.add("parens","insertion",function(e,t,n,r,i){if("("==i){d(n);var o=n.getSelectionRange(),a=r.doc.getTextRange(o);if(""!==a&&n.getWrapBehavioursEnabled())return f(o,a,"(",")");if(p.isSaneInsertion(n,r))return p.recordAutoInsert(n,r,")"),{text:"()",selection:[1,1]}}else if(")"==i){d(n);var s=n.getCursorPosition(),l=r.doc.getLine(s.row),c=l.substring(s.column,s.column+1);if(")"==c){var u=r.$findOpeningBracket(")",{column:s.column+1,row:s.row});if(null!==u&&p.isAutoInsertedClosing(s,l,i))return p.popAutoInsertedClosing(),{text:"",selection:[1,1]}}}}),this.add("parens","deletion",function(e,t,n,r,i){var o=r.doc.getTextRange(i);if(!i.isMultiLine()&&"("==o){d(n);var a=r.doc.getLine(i.start.row),s=a.substring(i.start.column+1,i.start.column+2);if(")"==s)return i.end.column++,i}}),this.add("brackets","insertion",function(e,t,n,r,i){if("["==i){d(n);var o=n.getSelectionRange(),a=r.doc.getTextRange(o);if(""!==a&&n.getWrapBehavioursEnabled())return f(o,a,"[","]");if(p.isSaneInsertion(n,r))return p.recordAutoInsert(n,r,"]"),{text:"[]",selection:[1,1]}}else if("]"==i){d(n);var s=n.getCursorPosition(),l=r.doc.getLine(s.row),c=l.substring(s.column,s.column+1);if("]"==c){var u=r.$findOpeningBracket("]",{column:s.column+1,row:s.row});if(null!==u&&p.isAutoInsertedClosing(s,l,i))return p.popAutoInsertedClosing(),{text:"",selection:[1,1]}}}}),this.add("brackets","deletion",function(e,t,n,r,i){var o=r.doc.getTextRange(i);if(!i.isMultiLine()&&"["==o){d(n);var a=r.doc.getLine(i.start.row),s=a.substring(i.start.column+1,i.start.column+2);if("]"==s)return i.end.column++,i}}),this.add("string_dquotes","insertion",function(e,t,n,r,i){var o=r.$mode.$quotes||h;if(1==i.length&&o[i]){if(this.lineCommentStart&&-1!=this.lineCommentStart.indexOf(i))return;d(n);var a=i,s=n.getSelectionRange(),l=r.doc.getTextRange(s);if(!(""===l||1==l.length&&o[l])&&n.getWrapBehavioursEnabled())return f(s,l,a,a);if(!l){var c=n.getCursorPosition(),u=r.doc.getLine(c.row),p=u.substring(c.column-1,c.column),m=u.substring(c.column,c.column+1),g=r.getTokenAt(c.row,c.column),v=r.getTokenAt(c.row,c.column+1);if("\\"==p&&g&&/escape/.test(g.type))return null;var y,b=g&&/string|escape/.test(g.type),w=!v||/string|escape/.test(v.type);if(m==a)y=b!==w,y&&/string\.end/.test(v.type)&&(y=!1);else{if(b&&!w)return null;if(b&&w)return null;var x=r.$mode.tokenRe;x.lastIndex=0;var _=x.test(p);x.lastIndex=0;var C=x.test(p);if(_||C)return null;if(m&&!/[\s;,.})\]\\]/.test(m))return null;var S=u[c.column-2];if(p==a&&(S==a||x.test(S)))return null;y=!0}return{text:y?a+a:"",selection:[1,1]}}}}),this.add("string_dquotes","deletion",function(e,t,n,r,i){var o=r.$mode.$quotes||h,a=r.doc.getTextRange(i);if(!i.isMultiLine()&&o.hasOwnProperty(a)){d(n);var s=r.doc.getLine(i.start.row),l=s.substring(i.start.column+1,i.start.column+2);if(l==a)return i.end.column++,i}})};p.isSaneInsertion=function(e,t){var n=e.getCursorPosition(),r=new a(t,n.row,n.column);if(!this.$matchTokenType(r.getCurrentToken()||"text",l)){if(/[)}\]]/.test(e.session.getLine(n.row)[n.column]))return!0;var i=new a(t,n.row,n.column+1);if(!this.$matchTokenType(i.getCurrentToken()||"text",l))return!1}return r.stepForward(),r.getCurrentTokenRow()!==n.row||this.$matchTokenType(r.getCurrentToken()||"text",c)},p.$matchTokenType=function(e,t){return t.indexOf(e.type||e)>-1},p.recordAutoInsert=function(e,t,n){var i=e.getCursorPosition(),o=t.doc.getLine(i.row);this.isAutoInsertedClosing(i,o,r.autoInsertedLineEnd[0])||(r.autoInsertedBrackets=0),r.autoInsertedRow=i.row,r.autoInsertedLineEnd=n+o.substr(i.column),r.autoInsertedBrackets++},p.recordMaybeInsert=function(e,t,n){var i=e.getCursorPosition(),o=t.doc.getLine(i.row);this.isMaybeInsertedClosing(i,o)||(r.maybeInsertedBrackets=0),r.maybeInsertedRow=i.row,r.maybeInsertedLineStart=o.substr(0,i.column)+n,r.maybeInsertedLineEnd=o.substr(i.column),r.maybeInsertedBrackets++},p.isAutoInsertedClosing=function(e,t,n){return r.autoInsertedBrackets>0&&e.row===r.autoInsertedRow&&n===r.autoInsertedLineEnd[0]&&t.substr(e.column)===r.autoInsertedLineEnd},p.isMaybeInsertedClosing=function(e,t){return r.maybeInsertedBrackets>0&&e.row===r.maybeInsertedRow&&t.substr(e.column)===r.maybeInsertedLineEnd&&t.substr(0,e.column)==r.maybeInsertedLineStart},p.popAutoInsertedClosing=function(){r.autoInsertedLineEnd=r.autoInsertedLineEnd.substr(1),r.autoInsertedBrackets--},p.clearMaybeInsertedClosing=function(){r&&(r.maybeInsertedBrackets=0,r.maybeInsertedRow=-1)},i.inherits(p,o),t.CstyleBehaviour=p}),ace.define("ace/unicode",["require","exports","module"],function(e,t,n){"use strict";for(var r=[48,9,8,25,5,0,2,25,48,0,11,0,5,0,6,22,2,30,2,457,5,11,15,4,8,0,2,0,18,116,2,1,3,3,9,0,2,2,2,0,2,19,2,82,2,138,2,4,3,155,12,37,3,0,8,38,10,44,2,0,2,1,2,1,2,0,9,26,6,2,30,10,7,61,2,9,5,101,2,7,3,9,2,18,3,0,17,58,3,100,15,53,5,0,6,45,211,57,3,18,2,5,3,11,3,9,2,1,7,6,2,2,2,7,3,1,3,21,2,6,2,0,4,3,3,8,3,1,3,3,9,0,5,1,2,4,3,11,16,2,2,5,5,1,3,21,2,6,2,1,2,1,2,1,3,0,2,4,5,1,3,2,4,0,8,3,2,0,8,15,12,2,2,8,2,2,2,21,2,6,2,1,2,4,3,9,2,2,2,2,3,0,16,3,3,9,18,2,2,7,3,1,3,21,2,6,2,1,2,4,3,8,3,1,3,2,9,1,5,1,2,4,3,9,2,0,17,1,2,5,4,2,2,3,4,1,2,0,2,1,4,1,4,2,4,11,5,4,4,2,2,3,3,0,7,0,15,9,18,2,2,7,2,2,2,22,2,9,2,4,4,7,2,2,2,3,8,1,2,1,7,3,3,9,19,1,2,7,2,2,2,22,2,9,2,4,3,8,2,2,2,3,8,1,8,0,2,3,3,9,19,1,2,7,2,2,2,22,2,15,4,7,2,2,2,3,10,0,9,3,3,9,11,5,3,1,2,17,4,23,2,8,2,0,3,6,4,0,5,5,2,0,2,7,19,1,14,57,6,14,2,9,40,1,2,0,3,1,2,0,3,0,7,3,2,6,2,2,2,0,2,0,3,1,2,12,2,2,3,4,2,0,2,5,3,9,3,1,35,0,24,1,7,9,12,0,2,0,2,0,5,9,2,35,5,19,2,5,5,7,2,35,10,0,58,73,7,77,3,37,11,42,2,0,4,328,2,3,3,6,2,0,2,3,3,40,2,3,3,32,2,3,3,6,2,0,2,3,3,14,2,56,2,3,3,66,5,0,33,15,17,84,13,619,3,16,2,25,6,74,22,12,2,6,12,20,12,19,13,12,2,2,2,1,13,51,3,29,4,0,5,1,3,9,34,2,3,9,7,87,9,42,6,69,11,28,4,11,5,11,11,39,3,4,12,43,5,25,7,10,38,27,5,62,2,28,3,10,7,9,14,0,89,75,5,9,18,8,13,42,4,11,71,55,9,9,4,48,83,2,2,30,14,230,23,280,3,5,3,37,3,5,3,7,2,0,2,0,2,0,2,30,3,52,2,6,2,0,4,2,2,6,4,3,3,5,5,12,6,2,2,6,67,1,20,0,29,0,14,0,17,4,60,12,5,0,4,11,18,0,5,0,3,9,2,0,4,4,7,0,2,0,2,0,2,3,2,10,3,3,6,4,5,0,53,1,2684,46,2,46,2,132,7,6,15,37,11,53,10,0,17,22,10,6,2,6,2,6,2,6,2,6,2,6,2,6,2,6,2,31,48,0,470,1,36,5,2,4,6,1,5,85,3,1,3,2,2,89,2,3,6,40,4,93,18,23,57,15,513,6581,75,20939,53,1164,68,45,3,268,4,27,21,31,3,13,13,1,2,24,9,69,11,1,38,8,3,102,3,1,111,44,25,51,13,68,12,9,7,23,4,0,5,45,3,35,13,28,4,64,15,10,39,54,10,13,3,9,7,22,4,1,5,66,25,2,227,42,2,1,3,9,7,11171,13,22,5,48,8453,301,3,61,3,105,39,6,13,4,6,11,2,12,2,4,2,0,2,1,2,1,2,107,34,362,19,63,3,53,41,11,5,15,17,6,13,1,25,2,33,4,2,134,20,9,8,25,5,0,2,25,12,88,4,5,3,5,3,5,3,2],i=0,o=[],a=0;a2?r%c!=c-1:r%c==0})}else{if(!this.blockComment)return!1;var f=this.blockComment.start,p=this.blockComment.end,m=new RegExp("^(\\s*)(?:"+l.escapeRegExp(f)+")"),g=new RegExp("(?:"+l.escapeRegExp(p)+")\\s*$"),v=function(e,t){b(e,t)||o&&!/\S/.test(e)||(i.insertInLine({row:t,column:e.length},p),i.insertInLine({row:t,column:s},f))},y=function(e,t){var n;(n=e.match(g))&&i.removeInLine(t,e.length-n[0].length,e.length),(n=e.match(m))&&i.removeInLine(t,n[1].length,n[0].length)},b=function(e,n){if(m.test(e))return!0;for(var r=t.getTokens(n),i=0;ie.length&&(x=e.length)}),s==1/0&&(s=x,o=!1,a=!1),u&&s%c!=0&&(s=Math.floor(s/c)*c),w(a?y:v)},this.toggleBlockComment=function(e,t,n,r){var i=this.blockComment;if(i){!i.start&&i[0]&&(i=i[0]);var o,a,s=new c(t,r.row,r.column),l=s.getCurrentToken(),h=(t.selection,t.selection.toOrientedRange());if(l&&/comment/.test(l.type)){var d,f;while(l&&/comment/.test(l.type)){var p=l.value.indexOf(i.start);if(-1!=p){var m=s.getCurrentTokenRow(),g=s.getCurrentTokenColumn()+p;d=new u(m,g,m,g+i.start.length);break}l=s.stepBackward()}s=new c(t,r.row,r.column),l=s.getCurrentToken();while(l&&/comment/.test(l.type)){p=l.value.indexOf(i.end);if(-1!=p){m=s.getCurrentTokenRow(),g=s.getCurrentTokenColumn()+p;f=new u(m,g,m,g+i.end.length);break}l=s.stepForward()}f&&t.remove(f),d&&(t.remove(d),o=d.start.row,a=-i.start.length)}else a=i.start.length,o=n.start.row,t.insert(n.end,i.end),t.insert(n.start,i.start);h.start.row==o&&(h.start.column+=a),h.end.row==o&&(h.end.column+=a),t.selection.fromOrientedRange(h)}},this.getNextLineIndent=function(e,t,n){return this.$getIndent(t)},this.checkOutdent=function(e,t,n){return!1},this.autoOutdent=function(e,t,n){},this.$getIndent=function(e){return e.match(/^\s*/)[0]},this.createWorker=function(e){return null},this.createModeDelegates=function(e){for(var t in this.$embeds=[],this.$modes={},e)if(e[t]){var n=e[t],i=n.prototype.$id,o=r.$modes[i];o||(r.$modes[i]=o=new n),r.$modes[t]||(r.$modes[t]=o),this.$embeds.push(t),this.$modes[t]=o}var a=["toggleBlockComment","toggleCommentLines","getNextLineIndent","checkOutdent","autoOutdent","transformAction","getCompletions"];for(t=0;tthis.row)){var n=t(e,{row:this.row,column:this.column},this.$insertRight);this.setPosition(n.row,n.column,!0)}},this.setPosition=function(e,t,n){var r;if(r=n?{row:e,column:t}:this.$clipPositionToDocument(e,t),this.row!=r.row||this.column!=r.column){var i={row:this.row,column:this.column};this.row=r.row,this.column=r.column,this._signal("change",{old:i,value:r})}},this.detach=function(){this.document.off("change",this.$onChange)},this.attach=function(e){this.document=e||this.document,this.document.on("change",this.$onChange)},this.$clipPositionToDocument=function(e,t){var n={};return e>=this.document.getLength()?(n.row=Math.max(0,this.document.getLength()-1),n.column=this.document.getLine(n.row).length):e<0?(n.row=0,n.column=0):(n.row=e,n.column=Math.min(this.document.getLine(n.row).length,Math.max(0,t))),t<0&&(n.column=0),n}}).call(o.prototype)}),ace.define("ace/document",["require","exports","module","ace/lib/oop","ace/apply_delta","ace/lib/event_emitter","ace/range","ace/anchor"],function(e,t,n){"use strict";var r=e("./lib/oop"),i=e("./apply_delta").applyDelta,o=e("./lib/event_emitter").EventEmitter,a=e("./range").Range,s=e("./anchor").Anchor,l=function(e){this.$lines=[""],0===e.length?this.$lines=[""]:Array.isArray(e)?this.insertMergedLines({row:0,column:0},e):this.insert({row:0,column:0},e)};(function(){r.implement(this,o),this.setValue=function(e){var t=this.getLength()-1;this.remove(new a(0,0,t,this.getLine(t).length)),this.insert({row:0,column:0},e)},this.getValue=function(){return this.getAllLines().join(this.getNewLineCharacter())},this.createAnchor=function(e,t){return new s(this,e,t)},0==="aaa".split(/a/).length?this.$split=function(e){return e.replace(/\r\n|\r/g,"\n").split("\n")}:this.$split=function(e){return e.split(/\r\n|\r|\n/)},this.$detectNewLine=function(e){var t=e.match(/^.*?(\r\n|\r|\n)/m);this.$autoNewLine=t?t[1]:"\n",this._signal("changeNewLineMode")},this.getNewLineCharacter=function(){switch(this.$newLineMode){case"windows":return"\r\n";case"unix":return"\n";default:return this.$autoNewLine||"\n"}},this.$autoNewLine="",this.$newLineMode="auto",this.setNewLineMode=function(e){this.$newLineMode!==e&&(this.$newLineMode=e,this._signal("changeNewLineMode"))},this.getNewLineMode=function(){return this.$newLineMode},this.isNewLine=function(e){return"\r\n"==e||"\r"==e||"\n"==e},this.getLine=function(e){return this.$lines[e]||""},this.getLines=function(e,t){return this.$lines.slice(e,t+1)},this.getAllLines=function(){return this.getLines(0,this.getLength())},this.getLength=function(){return this.$lines.length},this.getTextRange=function(e){return this.getLinesForRange(e).join(this.getNewLineCharacter())},this.getLinesForRange=function(e){var t;if(e.start.row===e.end.row)t=[this.getLine(e.start.row).substring(e.start.column,e.end.column)];else{t=this.getLines(e.start.row,e.end.row),t[0]=(t[0]||"").substring(e.start.column);var n=t.length-1;e.end.row-e.start.row==n&&(t[n]=t[n].substring(0,e.end.column))}return t},this.insertLines=function(e,t){return console.warn("Use of document.insertLines is deprecated. Use the insertFullLines method instead."),this.insertFullLines(e,t)},this.removeLines=function(e,t){return console.warn("Use of document.removeLines is deprecated. Use the removeFullLines method instead."),this.removeFullLines(e,t)},this.insertNewLine=function(e){return console.warn("Use of document.insertNewLine is deprecated. Use insertMergedLines(position, ['', '']) instead."),this.insertMergedLines(e,["",""])},this.insert=function(e,t){return this.getLength()<=1&&this.$detectNewLine(t),this.insertMergedLines(e,this.$split(t))},this.insertInLine=function(e,t){var n=this.clippedPos(e.row,e.column),r=this.pos(e.row,e.column+t.length);return this.applyDelta({start:n,end:r,action:"insert",lines:[t]},!0),this.clonePos(r)},this.clippedPos=function(e,t){var n=this.getLength();void 0===e?e=n:e<0?e=0:e>=n&&(e=n-1,t=void 0);var r=this.getLine(e);return void 0==t&&(t=r.length),t=Math.min(Math.max(t,0),r.length),{row:e,column:t}},this.clonePos=function(e){return{row:e.row,column:e.column}},this.pos=function(e,t){return{row:e,column:t}},this.$clipPosition=function(e){var t=this.getLength();return e.row>=t?(e.row=Math.max(0,t-1),e.column=this.getLine(t-1).length):(e.row=Math.max(0,e.row),e.column=Math.min(Math.max(e.column,0),this.getLine(e.row).length)),e},this.insertFullLines=function(e,t){e=Math.min(Math.max(e,0),this.getLength());var n=0;e0,r=t=0&&this.applyDelta({start:this.pos(e,this.getLine(e).length),end:this.pos(e+1,0),action:"remove",lines:["",""]})},this.replace=function(e,t){return e instanceof a||(e=a.fromPoints(e.start,e.end)),0===t.length&&e.isEmpty()?e.start:t==this.getTextRange(e)?e.end:(this.remove(e),n=t?this.insert(e.start,t):e.start,n);var n},this.applyDeltas=function(e){for(var t=0;t=0;t--)this.revertDelta(e[t])},this.applyDelta=function(e,t){var n="insert"==e.action;(n?e.lines.length<=1&&!e.lines[0]:!a.comparePoints(e.start,e.end))||(n&&e.lines.length>2e4?this.$splitAndapplyLargeDelta(e,2e4):(i(this.$lines,e,t),this._signal("change",e)))},this.$safeApplyDelta=function(e){var t=this.$lines.length;("remove"==e.action&&e.start.row20){n.running=setTimeout(n.$worker,20);break}}n.currentLine=t,-1==r&&(r=t),o<=r&&n.fireUpdateEvent(o,r)}}};(function(){r.implement(this,i),this.setTokenizer=function(e){this.tokenizer=e,this.lines=[],this.states=[],this.start(0)},this.setDocument=function(e){this.doc=e,this.lines=[],this.states=[],this.stop()},this.fireUpdateEvent=function(e,t){var n={first:e,last:t};this._signal("update",{data:n})},this.start=function(e){this.currentLine=Math.min(e||0,this.currentLine,this.doc.getLength()),this.lines.splice(this.currentLine,this.lines.length),this.states.splice(this.currentLine,this.states.length),this.stop(),this.running=setTimeout(this.$worker,700)},this.scheduleStart=function(){this.running||(this.running=setTimeout(this.$worker,700))},this.$updateOnChange=function(e){var t=e.start.row,n=e.end.row-t;if(0===n)this.lines[t]=null;else if("remove"==e.action)this.lines.splice(t,n+1,null),this.states.splice(t,n+1,null);else{var r=Array(n+1);r.unshift(t,1),this.lines.splice.apply(this.lines,r),this.states.splice.apply(this.states,r)}this.currentLine=Math.min(t,this.currentLine,this.doc.getLength()),this.stop()},this.stop=function(){this.running&&clearTimeout(this.running),this.running=!1},this.getTokens=function(e){return this.lines[e]||this.$tokenizeRow(e)},this.getState=function(e){return this.currentLine==e&&this.$tokenizeRow(e),this.states[e]||"start"},this.$tokenizeRow=function(e){var t=this.doc.getLine(e),n=this.states[e-1],r=this.tokenizer.getLineTokens(t,n,e);return this.states[e]+""!==r.state+""?(this.states[e]=r.state,this.lines[e+1]=null,this.currentLine>e+1&&(this.currentLine=e+1)):this.currentLine==e&&(this.currentLine=e+1),this.lines[e]=r.tokens}}).call(o.prototype),t.BackgroundTokenizer=o}),ace.define("ace/search_highlight",["require","exports","module","ace/lib/lang","ace/lib/oop","ace/range"],function(e,t,n){"use strict";var r=e("./lib/lang"),i=(e("./lib/oop"),e("./range").Range),o=function(e,t,n){this.setRegexp(e),this.clazz=t,this.type=n||"text"};(function(){this.MAX_RANGES=500,this.setRegexp=function(e){this.regExp+""!=e+""&&(this.regExp=e,this.cache=[])},this.update=function(e,t,n,o){if(this.regExp)for(var a=o.firstRow,s=o.lastRow,l=a;l<=s;l++){var c=this.cache[l];null==c&&(c=r.getMatchOffsets(n.getLine(l),this.regExp),c.length>this.MAX_RANGES&&(c=c.slice(0,this.MAX_RANGES)),c=c.map(function(e){return new i(l,e.offset,l,e.offset+e.length)}),this.cache[l]=c.length?c:"");for(var u=c.length;u--;)t.drawSingleLineMarker(e,c[u].toScreenRange(n),this.clazz,o)}}}).call(o.prototype),t.SearchHighlight=o}),ace.define("ace/edit_session/fold_line",["require","exports","module","ace/range"],function(e,t,n){"use strict";var r=e("../range").Range;function i(e,t){this.foldData=e,Array.isArray(t)?this.folds=t:t=this.folds=[t];var n=t[t.length-1];this.range=new r(t[0].start.row,t[0].start.column,n.end.row,n.end.column),this.start=this.range.start,this.end=this.range.end,this.folds.forEach(function(e){e.setFoldLine(this)},this)}(function(){this.shiftRow=function(e){this.start.row+=e,this.end.row+=e,this.folds.forEach(function(t){t.start.row+=e,t.end.row+=e})},this.addFold=function(e){if(e.sameRow){if(e.start.rowthis.endRow)throw new Error("Can't add a fold to this FoldLine as it has no connection");this.folds.push(e),this.folds.sort(function(e,t){return-e.range.compareEnd(t.start.row,t.start.column)}),this.range.compareEnd(e.start.row,e.start.column)>0?(this.end.row=e.end.row,this.end.column=e.end.column):this.range.compareStart(e.end.row,e.end.column)<0&&(this.start.row=e.start.row,this.start.column=e.start.column)}else if(e.start.row==this.end.row)this.folds.push(e),this.end.row=e.end.row,this.end.column=e.end.column;else{if(e.end.row!=this.start.row)throw new Error("Trying to add fold to FoldRow that doesn't have a matching row");this.folds.unshift(e),this.start.row=e.start.row,this.start.column=e.start.column}e.foldLine=this},this.containsRow=function(e){return e>=this.start.row&&e<=this.end.row},this.walk=function(e,t,n){var r,i,o,a=0,s=this.folds,l=!0;null==t&&(t=this.end.row,n=this.end.column);for(var c=0;c0)){var l=i(e,a.start);return 0===s?t&&0!==l?-o-2:o:l>0||0===l&&!t?o:-o-1}}return-o-1},this.add=function(e){var t=!e.isEmpty(),n=this.pointIndex(e.start,t);n<0&&(n=-n-1);var r=this.pointIndex(e.end,t,n);return r<0?r=-r-1:r++,this.ranges.splice(n,r-n,e)},this.addList=function(e){for(var t=[],n=e.length;n--;)t.push.apply(t,this.add(e[n]));return t},this.substractPoint=function(e){var t=this.pointIndex(e);if(t>=0)return this.ranges.splice(t,1)},this.merge=function(){var e=[],t=this.ranges;t=t.sort(function(e,t){return i(e.start,t.start)});for(var n,r=t[0],o=1;o=0},this.containsPoint=function(e){return this.pointIndex(e)>=0},this.rangeAtPoint=function(e){var t=this.pointIndex(e);if(t>=0)return this.ranges[t]},this.clipRows=function(e,t){var n=this.ranges;if(n[0].start.row>t||n[n.length-1].start.row=r)break}if("insert"==e.action)for(var c=i-r,u=-t.column+n.column;ar)break;if(l.start.row==r&&l.start.column>=t.column&&(l.start.column==t.column&&this.$bias<=0||(l.start.column+=u,l.start.row+=c)),l.end.row==r&&l.end.column>=t.column){if(l.end.column==t.column&&this.$bias<0)continue;l.end.column==t.column&&u>0&&al.start.column&&l.end.column==o[a+1].start.column&&(l.end.column-=u),l.end.column+=u,l.end.row+=c}}else for(c=r-i,u=t.column-n.column;ai)break;l.end.rowt.column)&&(l.end.column=t.column,l.end.row=t.row):(l.end.column+=u,l.end.row+=c):l.end.row>i&&(l.end.row+=c),l.start.rowt.column)&&(l.start.column=t.column,l.start.row=t.row):(l.start.column+=u,l.start.row+=c):l.start.row>i&&(l.start.row+=c)}if(0!=c&&a=e)return i;if(i.end.row>e)return null}return null},this.getNextFoldLine=function(e,t){var n=this.$foldData,r=0;for(t&&(r=n.indexOf(t)),-1==r&&(r=0),r;r=e)return i}return null},this.getFoldedRowCount=function(e,t){for(var n=this.$foldData,r=t-e+1,i=0;i=t){s=e?r-=t-s:r=0);break}a>=e&&(r-=s>=e?a-s:a-e+1)}return r},this.$addFoldLine=function(e){return this.$foldData.push(e),this.$foldData.sort(function(e,t){return e.start.row-t.start.row}),e},this.addFold=function(e,t){var n,r=this.$foldData,a=!1;e instanceof o?n=e:(n=new o(t,e),n.collapseChildren=t.collapseChildren),this.$clipRangeToDocument(n.range);var s=n.start.row,l=n.start.column,c=n.end.row,u=n.end.column,h=this.getFoldAt(s,l,1),d=this.getFoldAt(c,u,-1);if(h&&d==h)return h.addSubFold(n);h&&!h.range.isStart(s,l)&&this.removeFold(h),d&&!d.range.isEnd(c,u)&&this.removeFold(d);var f=this.getFoldsInRange(n.range);f.length>0&&(this.removeFolds(f),n.collapseChildren||f.forEach(function(e){n.addSubFold(e)}));for(var p=0;p0&&this.foldAll(e.start.row+1,e.end.row,e.collapseChildren-1),e.subFolds=[]},this.expandFolds=function(e){e.forEach(function(e){this.expandFold(e)},this)},this.unfold=function(e,t){var n,i;if(null==e?(n=new r(0,0,this.getLength(),0),null==t&&(t=!0)):n="number"==typeof e?new r(e,0,e,this.getLine(e).length):"row"in e?r.fromPoints(e,e):e,i=this.getFoldsInRangeList(n),0!=t?this.removeFolds(i):this.expandFolds(i),i.length)return i},this.isRowFolded=function(e,t){return!!this.getFoldLine(e,t)},this.getRowFoldEnd=function(e,t){var n=this.getFoldLine(e,t);return n?n.end.row:e},this.getRowFoldStart=function(e,t){var n=this.getFoldLine(e,t);return n?n.start.row:e},this.getFoldDisplayLine=function(e,t,n,r,i){null==r&&(r=e.start.row),null==i&&(i=0),null==t&&(t=e.end.row),null==n&&(n=this.getLine(t).length);var o=this.doc,a="";return e.walk(function(e,t,n,s){if(!(tu)break}while(o&&l.test(o.type));o=i.stepBackward()}else o=i.getCurrentToken();return c.end.row=i.getCurrentTokenRow(),c.end.column=i.getCurrentTokenColumn()+o.value.length-2,c}},this.foldAll=function(e,t,n,r){void 0==n&&(n=1e5);var i=this.foldWidgets;if(i){t=t||this.getLength(),e=e||0;for(var o=e;o=e&&(o=a.end.row,a.collapseChildren=n,this.addFold("...",a))}}},this.foldToLevel=function(e){this.foldAll();while(e-- >0)this.unfold(null,!1)},this.foldAllComments=function(){var e=this;this.foldAll(null,null,null,function(t){for(var n=e.getTokens(t),r=0;r=0){var o=n[i];if(null==o&&(o=n[i]=this.getFoldWidget(i)),"start"==o){var a=this.getFoldWidgetRange(i);if(r||(r=a),a&&a.end.row>=e)break}i--}return{range:-1!==i&&a,firstRange:r}},this.onFoldWidgetClick=function(e,t){t=t.domEvent;var n={children:t.shiftKey,all:t.ctrlKey||t.metaKey,siblings:t.altKey},r=this.$toggleFoldWidget(e,n);if(!r){var i=t.target||t.srcElement;i&&/ace_fold-widget/.test(i.className)&&(i.className+=" ace_invalid")}},this.$toggleFoldWidget=function(e,t){if(this.getFoldWidget){var n=this.getFoldWidget(e),r=this.getLine(e),i="end"===n?-1:1,o=this.getFoldAt(e,-1===i?0:r.length,i);if(o)return t.children||t.all?this.removeFold(o):this.expandFold(o),o;var a=this.getFoldWidgetRange(e,!0);if(a&&!a.isMultiLine()&&(o=this.getFoldAt(a.start.row,a.start.column,1),o&&a.isEqual(o.range)))return this.removeFold(o),o;if(t.siblings){var s=this.getParentFoldRangeData(e);if(s.range)var l=s.range.start.row+1,c=s.range.end.row;this.foldAll(l,c,t.all?1e4:0)}else t.children?(c=a?a.end.row:this.getLength(),this.foldAll(e+1,c,t.all?1e4:0)):a&&(t.all&&(a.collapseChildren=1e4),this.addFold("...",a));return a}},this.toggleFoldWidget=function(e){var t=this.selection.getCursor().row;t=this.getRowFoldStart(t);var n=this.$toggleFoldWidget(t,{});if(!n){var r=this.getParentFoldRangeData(t,!0);if(n=r.range||r.firstRange,n){t=n.start.row;var i=this.getFoldAt(t,this.getLine(t).length,1);i?this.removeFold(i):this.addFold("...",n)}}},this.updateFoldWidgets=function(e){var t=e.start.row,n=e.end.row-t;if(0===n)this.foldWidgets[t]=null;else if("remove"==e.action)this.foldWidgets.splice(t,n+1,null);else{var r=Array(n+1);r.unshift(t,1),this.foldWidgets.splice.apply(this.foldWidgets,r)}},this.tokenizerUpdateFoldWidgets=function(e){var t=e.data;t.first!=t.last&&this.foldWidgets.length>t.first&&this.foldWidgets.splice(t.first,this.foldWidgets.length)}}t.Folding=s}),ace.define("ace/edit_session/bracket_match",["require","exports","module","ace/token_iterator","ace/range"],function(e,t,n){"use strict";var r=e("../token_iterator").TokenIterator,i=e("../range").Range;function o(){this.findMatchingBracket=function(e,t){if(0==e.column)return null;var n=t||this.getLine(e.row).charAt(e.column-1);if(""==n)return null;var r=n.match(/([\(\[\{])|([\)\]\}])/);return r?r[1]?this.$findClosingBracket(r[1],e):this.$findOpeningBracket(r[2],e):null},this.getBracketRange=function(e){var t,n=this.getLine(e.row),r=!0,o=n.charAt(e.column-1),a=o&&o.match(/([\(\[\{])|([\)\]\}])/);if(a||(o=n.charAt(e.column),e={row:e.row,column:e.column+1},a=o&&o.match(/([\(\[\{])|([\)\]\}])/),r=!1),!a)return null;if(a[1]){var s=this.$findClosingBracket(a[1],e);if(!s)return null;t=i.fromPoints(e,s),r||(t.end.column++,t.start.column--),t.cursor=t.end}else{s=this.$findOpeningBracket(a[2],e);if(!s)return null;t=i.fromPoints(s,e),r||(t.start.column++,t.end.column--),t.cursor=t.start}return t},this.getMatchingBracketRanges=function(e){var t=this.getLine(e.row),n=t.charAt(e.column-1),r=n&&n.match(/([\(\[\{])|([\)\]\}])/);if(r||(n=t.charAt(e.column),e={row:e.row,column:e.column+1},r=n&&n.match(/([\(\[\{])|([\)\]\}])/)),!r)return null;var o=new i(e.row,e.column-1,e.row,e.column),a=r[1]?this.$findClosingBracket(r[1],e):this.$findOpeningBracket(r[2],e);if(!a)return[o];var s=new i(a.row,a.column,a.row,a.column+1);return[o,s]},this.$brackets={")":"(","(":")","]":"[","[":"]","{":"}","}":"{","<":">",">":"<"},this.$findOpeningBracket=function(e,t,n){var i=this.$brackets[e],o=1,a=new r(this,t.row,t.column),s=a.getCurrentToken();if(s||(s=a.stepForward()),s){n||(n=new RegExp("(\\.?"+s.type.replace(".","\\.").replace("rparen",".paren").replace(/\b(?:end)\b/,"(?:start|begin|end)")+")+"));var l=t.column-a.getCurrentTokenColumn()-2,c=s.value;while(1){while(l>=0){var u=c.charAt(l);if(u==i){if(o-=1,0==o)return{row:a.getCurrentTokenRow(),column:l+a.getCurrentTokenColumn()}}else u==e&&(o+=1);l-=1}do{s=a.stepBackward()}while(s&&!n.test(s.type));if(null==s)break;c=s.value,l=c.length-1}return null}},this.$findClosingBracket=function(e,t,n){var i=this.$brackets[e],o=1,a=new r(this,t.row,t.column),s=a.getCurrentToken();if(s||(s=a.stepForward()),s){n||(n=new RegExp("(\\.?"+s.type.replace(".","\\.").replace("lparen",".paren").replace(/\b(?:start|begin)\b/,"(?:start|begin|end)")+")+"));var l=t.column-a.getCurrentTokenColumn();while(1){var c=s.value,u=c.length;while(ln&&(this.$docRowCache.splice(n,t),this.$screenRowCache.splice(n,t))},this.$getRowCacheIndex=function(e,t){var n=0,r=e.length-1;while(n<=r){var i=n+r>>1,o=e[i];if(t>o)n=i+1;else{if(!(t=t)break;return n=r[o],n?(n.index=o,n.start=i-n.value.length,n):null},this.setUndoManager=function(e){if(this.$undoManager=e,this.$informUndoManager&&this.$informUndoManager.cancel(),e){var t=this;e.addSession(this),this.$syncInformUndoManager=function(){t.$informUndoManager.cancel(),t.mergeUndoDeltas=!1},this.$informUndoManager=i.delayedCall(this.$syncInformUndoManager)}else this.$syncInformUndoManager=function(){}},this.markUndoGroup=function(){this.$syncInformUndoManager&&this.$syncInformUndoManager()},this.$defaultUndoManager={undo:function(){},redo:function(){},hasUndo:function(){},hasRedo:function(){},reset:function(){},add:function(){},addSelection:function(){},startNewGroup:function(){},addSession:function(){}},this.getUndoManager=function(){return this.$undoManager||this.$defaultUndoManager},this.getTabString=function(){return this.getUseSoftTabs()?i.stringRepeat(" ",this.getTabSize()):"\t"},this.setUseSoftTabs=function(e){this.setOption("useSoftTabs",e)},this.getUseSoftTabs=function(){return this.$useSoftTabs&&!this.$mode.$indentWithTabs},this.setTabSize=function(e){this.setOption("tabSize",e)},this.getTabSize=function(){return this.$tabSize},this.isTabStop=function(e){return this.$useSoftTabs&&e.column%this.$tabSize===0},this.setNavigateWithinSoftTabs=function(e){this.setOption("navigateWithinSoftTabs",e)},this.getNavigateWithinSoftTabs=function(){return this.$navigateWithinSoftTabs},this.$overwrite=!1,this.setOverwrite=function(e){this.setOption("overwrite",e)},this.getOverwrite=function(){return this.$overwrite},this.toggleOverwrite=function(){this.setOverwrite(!this.$overwrite)},this.addGutterDecoration=function(e,t){this.$decorations[e]||(this.$decorations[e]=""),this.$decorations[e]+=" "+t,this._signal("changeBreakpoint",{})},this.removeGutterDecoration=function(e,t){this.$decorations[e]=(this.$decorations[e]||"").replace(" "+t,""),this._signal("changeBreakpoint",{})},this.getBreakpoints=function(){return this.$breakpoints},this.setBreakpoints=function(e){this.$breakpoints=[];for(var t=0;t0&&(r=!!n.charAt(t-1).match(this.tokenRe)),r||(r=!!n.charAt(t).match(this.tokenRe)),r)var i=this.tokenRe;else if(/^\s+$/.test(n.slice(t-1,t+1)))i=/\s/;else i=this.nonTokenRe;var o=t;if(o>0){do{o--}while(o>=0&&n.charAt(o).match(i));o++}var a=t;while(ae&&(e=t.screenWidth)}),this.lineWidgetWidth=e},this.$computeWidth=function(e){if(this.$modified||e){if(this.$modified=!1,this.$useWrapMode)return this.screenWidth=this.$wrapLimit;for(var t=this.doc.getAllLines(),n=this.$rowLengthCache,r=0,i=0,o=this.$foldData[i],a=o?o.start.row:1/0,s=t.length,l=0;la){if(l=o.end.row+1,l>=s)break;o=this.$foldData[i++],a=o?o.start.row:1/0}null==n[l]&&(n[l]=this.$getStringScreenWidth(t[l])[0]),n[l]>r&&(r=n[l])}this.screenWidth=r}},this.getLine=function(e){return this.doc.getLine(e)},this.getLines=function(e,t){return this.doc.getLines(e,t)},this.getLength=function(){return this.doc.getLength()},this.getTextRange=function(e){return this.doc.getTextRange(e||this.selection.getRange())},this.insert=function(e,t){return this.doc.insert(e,t)},this.remove=function(e){return this.doc.remove(e)},this.removeFullLines=function(e,t){return this.doc.removeFullLines(e,t)},this.undoChanges=function(e,t){if(e.length){this.$fromUndo=!0;for(var n=e.length-1;-1!=n;n--){var r=e[n];"insert"==r.action||"remove"==r.action?this.doc.revertDelta(r):r.folds&&this.addFolds(r.folds)}!t&&this.$undoSelect&&(e.selectionBefore?this.selection.fromJSON(e.selectionBefore):this.selection.setRange(this.$getUndoSelection(e,!0))),this.$fromUndo=!1}},this.redoChanges=function(e,t){if(e.length){this.$fromUndo=!0;for(var n=0;ne.end.column&&(o.start.column+=s),o.end.row==e.end.row&&o.end.column>e.end.column&&(o.end.column+=s)),a&&o.start.row>=e.end.row&&(o.start.row+=a,o.end.row+=a)}if(o.end=this.insert(o.start,r),i.length){var l=e.start,c=o.start;a=c.row-l.row,s=c.column-l.column;this.addFolds(i.map(function(e){return e=e.clone(),e.start.row==l.row&&(e.start.column+=s),e.end.row==l.row&&(e.end.column+=s),e.start.row+=a,e.end.row+=a,e}))}return o},this.indentRows=function(e,t,n){n=n.replace(/\t/g,this.getTabString());for(var r=e;r<=t;r++)this.doc.insertInLine({row:r,column:0},n)},this.outdentRows=function(e){for(var t=e.collapseRows(),n=new u(0,0,0,0),r=this.getTabSize(),i=t.start.row;i<=t.end.row;++i){var o=this.getLine(i);n.start.row=i,n.end.row=i;for(var a=0;a0){r=this.getRowFoldEnd(t+n);if(r>this.doc.getLength()-1)return 0;i=r-t}else{e=this.$clipRowToDocument(e),t=this.$clipRowToDocument(t);i=t-e+1}var o=new u(e,0,t,Number.MAX_VALUE),a=this.getFoldsInRange(o).map(function(e){return e=e.clone(),e.start.row+=i,e.end.row+=i,e}),s=0==n?this.doc.getLines(e,t):this.doc.removeFullLines(e,t);return this.doc.insertFullLines(e+i,s),a.length&&this.addFolds(a),i},this.moveLinesUp=function(e,t){return this.$moveLines(e,t,-1)},this.moveLinesDown=function(e,t){return this.$moveLines(e,t,1)},this.duplicateLines=function(e,t){return this.$moveLines(e,t,0)},this.$clipRowToDocument=function(e){return Math.max(0,Math.min(e,this.doc.getLength()-1))},this.$clipColumnToRow=function(e,t){return t<0?0:Math.min(this.doc.getLine(e).length,t)},this.$clipPositionToDocument=function(e,t){if(t=Math.max(0,t),e<0)e=0,t=0;else{var n=this.doc.getLength();e>=n?(e=n-1,t=this.doc.getLine(n-1).length):t=Math.min(this.doc.getLine(e).length,t)}return{row:e,column:t}},this.$clipRangeToDocument=function(e){e.start.row<0?(e.start.row=0,e.start.column=0):e.start.column=this.$clipColumnToRow(e.start.row,e.start.column);var t=this.doc.getLength()-1;return e.end.row>t?(e.end.row=t,e.end.column=this.doc.getLine(t).length):e.end.column=this.$clipColumnToRow(e.end.row,e.end.column),e},this.$wrapLimit=80,this.$useWrapMode=!1,this.$wrapLimitRange={min:null,max:null},this.setUseWrapMode=function(e){if(e!=this.$useWrapMode){if(this.$useWrapMode=e,this.$modified=!0,this.$resetRowCache(0),e){var t=this.getLength();this.$wrapData=Array(t),this.$updateWrapData(0,t-1)}this._signal("changeWrapMode")}},this.getUseWrapMode=function(){return this.$useWrapMode},this.setWrapLimitRange=function(e,t){this.$wrapLimitRange.min===e&&this.$wrapLimitRange.max===t||(this.$wrapLimitRange={min:e,max:t},this.$modified=!0,this.$bidiHandler.markAsDirty(),this.$useWrapMode&&this._signal("changeWrapMode"))},this.adjustWrapLimit=function(e,t){var n=this.$wrapLimitRange;n.max<0&&(n={min:t,max:t});var r=this.$constrainWrapLimit(e,n.min,n.max);return r!=this.$wrapLimit&&r>1&&(this.$wrapLimit=r,this.$modified=!0,this.$useWrapMode&&(this.$updateWrapData(0,this.getLength()-1),this.$resetRowCache(0),this._signal("changeWrapLimit")),!0)},this.$constrainWrapLimit=function(e,t,n){return t&&(e=Math.max(t,e)),n&&(e=Math.min(n,e)),e},this.getWrapLimit=function(){return this.$wrapLimit},this.setWrapLimit=function(e){this.setWrapLimitRange(e,e)},this.getWrapLimitRange=function(){return{min:this.$wrapLimitRange.min,max:this.$wrapLimitRange.max}},this.$updateInternalDataOnChange=function(e){var t=this.$useWrapMode,n=e.action,r=e.start,i=e.end,o=r.row,a=i.row,s=a-o,l=null;if(this.$updating=!0,0!=s)if("remove"===n){this[t?"$wrapData":"$rowLengthCache"].splice(o,s);var c=this.$foldData;l=this.getFoldsInRange(e),this.removeFolds(l);var u=this.getFoldLine(i.row),h=0;if(u){u.addRemoveChars(i.row,i.column,r.column-i.column),u.shiftRow(-s);var d=this.getFoldLine(o);d&&d!==u&&(d.merge(u),u=d),h=c.indexOf(u)+1}for(h;h=i.row&&u.shiftRow(-s)}a=o}else{var f=Array(s);f.unshift(o,0);var p=t?this.$wrapData:this.$rowLengthCache;p.splice.apply(p,f);c=this.$foldData,u=this.getFoldLine(o),h=0;if(u){var m=u.range.compareInside(r.row,r.column);0==m?(u=u.split(r.row,r.column),u&&(u.shiftRow(s),u.addRemoveChars(a,0,i.column-r.column))):-1==m&&(u.addRemoveChars(o,0,i.column-r.column),u.shiftRow(s)),h=c.indexOf(u)+1}for(h;h=o&&u.shiftRow(s)}}else{s=Math.abs(e.start.column-e.end.column),"remove"===n&&(l=this.getFoldsInRange(e),this.removeFolds(l),s=-s);u=this.getFoldLine(o);u&&u.addRemoveChars(o,r.column,s)}return t&&this.$wrapData.length!=this.doc.getLength()&&console.error("doc.getLength() and $wrapData.length have to be the same!"),this.$updating=!1,t?this.$updateWrapData(o,a):this.$updateRowLengthCache(o,a),l},this.$updateRowLengthCache=function(e,t,n){this.$rowLengthCache[e]=null,this.$rowLengthCache[t]=null},this.$updateWrapData=function(e,t){var r,i,a=this.doc.getAllLines(),s=this.getTabSize(),l=this.$wrapData,c=this.$wrapLimit,u=e;t=Math.min(t,a.length-1);while(u<=t)i=this.getFoldLine(u,i),i?(r=[],i.walk(function(e,t,i,s){var l;if(null!=e){l=this.$getDisplayTokens(e,r.length),l[0]=n;for(var c=1;c=4352&&e<=4447||e>=4515&&e<=4519||e>=4602&&e<=4607||e>=9001&&e<=9002||e>=11904&&e<=11929||e>=11931&&e<=12019||e>=12032&&e<=12245||e>=12272&&e<=12283||e>=12288&&e<=12350||e>=12353&&e<=12438||e>=12441&&e<=12543||e>=12549&&e<=12589||e>=12593&&e<=12686||e>=12688&&e<=12730||e>=12736&&e<=12771||e>=12784&&e<=12830||e>=12832&&e<=12871||e>=12880&&e<=13054||e>=13056&&e<=19903||e>=19968&&e<=42124||e>=42128&&e<=42182||e>=43360&&e<=43388||e>=44032&&e<=55203||e>=55216&&e<=55238||e>=55243&&e<=55291||e>=63744&&e<=64255||e>=65040&&e<=65049||e>=65072&&e<=65106||e>=65108&&e<=65126||e>=65128&&e<=65131||e>=65281&&e<=65376||e>=65504&&e<=65510)}this.$computeWrapSplits=function(e,r,i){if(0==e.length)return[];var a=[],s=e.length,c=0,u=0,d=this.$wrapAsCode,f=this.$indentedSoftWrap,g=r<=Math.max(2*i,8)||!1===f?0:Math.floor(r/2);function v(){var t=0;if(0===g)return t;if(f)for(var n=0;nr-b){var w=c+r-b;if(e[w-1]>=h&&e[w]>=h)y(w);else if(e[w]!=n&&e[w]!=o){var x=Math.max(w-(r-(r>>2)),c-1);while(w>x&&e[w]x&&e[w]x&&e[w]==l)w--}else while(w>x&&e[w]x?y(++w):(w=c+r,e[w]==t&&w--,y(w-b))}else{for(w;w!=c-1;w--)if(e[w]==n)break;if(w>c){y(w);continue}for(w=c+r,w;w39&&s<48||s>57&&s<64?o.push(l):s>=4352&&g(s)?o.push(e,t):o.push(e)}return o},this.$getStringScreenWidth=function(e,t,n){if(0==t)return[0,0];var r,i;for(null==t&&(t=1/0),n=n||0,i=0;i=4352&&g(r)?n+=2:n+=1,n>t)break;return[n,i]},this.lineWidgets=null,this.getRowLength=function(e){var t=1;return this.lineWidgets&&(t+=this.lineWidgets[e]&&this.lineWidgets[e].rowCount||0),this.$useWrapMode&&this.$wrapData[e]?this.$wrapData[e].length+t:t},this.getRowLineCount=function(e){return this.$useWrapMode&&this.$wrapData[e]?this.$wrapData[e].length+1:1},this.getRowWrapIndent=function(e){if(this.$useWrapMode){var t=this.screenToDocumentPosition(e,Number.MAX_VALUE),n=this.$wrapData[t.row];return n.length&&n[0]=0){s=c[u],o=this.$docRowCache[u];var d=e>c[h-1]}else d=!h;var f=this.getLength()-1,p=this.getNextFoldLine(o),m=p?p.start.row:1/0;while(s<=e){if(l=this.getRowLength(o),s+l>e||o>=f)break;s+=l,o++,o>m&&(o=p.end.row+1,p=this.getNextFoldLine(o,p),m=p?p.start.row:1/0),d&&(this.$docRowCache.push(o),this.$screenRowCache.push(s))}if(p&&p.start.row<=o)r=this.getFoldDisplayLine(p),o=p.start.row;else{if(s+l<=e||o>f)return{row:f,column:this.getLine(f).length};r=this.getLine(o),p=null}var g=0,v=Math.floor(e-s);if(this.$useWrapMode){var y=this.$wrapData[o];y&&(i=y[v],v>0&&y.length&&(g=y.indent,a=y[v-1]||y[y.length-1],r=r.substring(a)))}return void 0!==n&&this.$bidiHandler.isBidiRow(s+v,o,v)&&(t=this.$bidiHandler.offsetToCol(n)),a+=this.$getStringScreenWidth(r,t-g)[1],this.$useWrapMode&&a>=i&&(a=i-1),p?p.idxToPosition(a):{row:o,column:a}},this.documentToScreenPosition=function(e,t){if("undefined"===typeof t)var n=this.$clipPositionToDocument(e.row,e.column);else n=this.$clipPositionToDocument(e,t);e=n.row,t=n.column;var r=0,i=null,o=null;o=this.getFoldAt(e,t,1),o&&(e=o.start.row,t=o.start.column);var a,s=0,l=this.$docRowCache,c=this.$getRowCacheIndex(l,e),u=l.length;if(u&&c>=0){s=l[c],r=this.$screenRowCache[c];var h=e>l[u-1]}else h=!u;var d=this.getNextFoldLine(s),f=d?d.start.row:1/0;while(s=f){if(a=d.end.row+1,a>e)break;d=this.getNextFoldLine(a,d),f=d?d.start.row:1/0}else a=s+1;r+=this.getRowLength(s),s=a,h&&(this.$docRowCache.push(s),this.$screenRowCache.push(r))}var p="";d&&s>=f?(p=this.getFoldDisplayLine(d,e,t),i=d.start.row):(p=this.getLine(e).substring(0,t),i=e);var m=0;if(this.$useWrapMode){var g=this.$wrapData[i];if(g){var v=0;while(p.length>=g[v])r++,v++;p=p.substring(g[v-1]||0,p.length),m=v>0?g.indent:0}}return this.lineWidgets&&this.lineWidgets[s]&&this.lineWidgets[s].rowsAbove&&(r+=this.lineWidgets[s].rowsAbove),{row:r,column:m+this.$getStringScreenWidth(p)[0]}},this.documentToScreenColumn=function(e,t){return this.documentToScreenPosition(e,t).column},this.documentToScreenRow=function(e,t){return this.documentToScreenPosition(e,t).row},this.getScreenLength=function(){var e=0,t=null;if(this.$useWrapMode){var n=this.$wrapData.length,r=0,i=(s=0,t=this.$foldData[s++],t?t.start.row:1/0);while(ri&&(r=t.end.row+1,t=this.$foldData[s++],i=t?t.start.row:1/0)}}else{e=this.getLength();for(var a=this.$foldData,s=0;sn)break;return[r,o]})},this.destroy=function(){this.bgTokenizer&&(this.bgTokenizer.setDocument(null),this.bgTokenizer=null),this.$stopWorker(),this.removeAllListeners(),this.selection.detach()},this.isFullWidth=g}.call(p.prototype),e("./edit_session/folding").Folding.call(p.prototype),e("./edit_session/bracket_match").BracketMatch.call(p.prototype),a.defineOptions(p.prototype,"session",{wrap:{set:function(e){if(e&&"off"!=e?"free"==e?e=!0:"printMargin"==e?e=-1:"string"==typeof e&&(e=parseInt(e,10)||!1):e=!1,this.$wrap!=e)if(this.$wrap=e,e){var t="number"==typeof e?e:null;this.setWrapLimitRange(t,t),this.setUseWrapMode(!0)}else this.setUseWrapMode(!1)},get:function(){return this.getUseWrapMode()?-1==this.$wrap?"printMargin":this.getWrapLimitRange().min?this.$wrap:"free":"off"},handlesSet:!0},wrapMethod:{set:function(e){e="auto"==e?"text"!=this.$mode.type:"text"!=e,e!=this.$wrapAsCode&&(this.$wrapAsCode=e,this.$useWrapMode&&(this.$useWrapMode=!1,this.setUseWrapMode(!0)))},initialValue:"auto"},indentedSoftWrap:{set:function(){this.$useWrapMode&&(this.$useWrapMode=!1,this.setUseWrapMode(!0))},initialValue:!0},firstLineNumber:{set:function(){this._signal("changeBreakpoint")},initialValue:1},useWorker:{set:function(e){this.$useWorker=e,this.$stopWorker(),e&&this.$startWorker()},initialValue:!0},useSoftTabs:{initialValue:!0},tabSize:{set:function(e){e=parseInt(e),e>0&&this.$tabSize!==e&&(this.$modified=!0,this.$rowLengthCache=[],this.$tabSize=e,this._signal("changeTabSize"))},initialValue:4,handlesSet:!0},navigateWithinSoftTabs:{initialValue:!1},foldStyle:{set:function(e){this.setFoldStyle(e)},handlesSet:!0},overwrite:{set:function(e){this._signal("changeOverwrite")},initialValue:!1},newLineMode:{set:function(e){this.doc.setNewLineMode(e)},get:function(){return this.doc.getNewLineMode()},handlesSet:!0},mode:{set:function(e){this.setMode(e)},get:function(){return this.$modeId},handlesSet:!0}}),t.EditSession=p}),ace.define("ace/search",["require","exports","module","ace/lib/lang","ace/lib/oop","ace/range"],function(e,t,n){"use strict";var r=e("./lib/lang"),i=e("./lib/oop"),o=e("./range").Range,a=function(){this.$options={}};function s(e,t){function n(e){return/\w/.test(e)||t.regExp?"\\b":""}return n(e[0])+e+n(e[e.length-1])}(function(){this.set=function(e){return i.mixin(this.$options,e),this},this.getOptions=function(){return r.copyObject(this.$options)},this.setOptions=function(e){this.$options=e},this.find=function(e){var t=this.$options,n=this.$matchIterator(e,t);if(!n)return!1;var r=null;return n.forEach(function(e,n,i,a){return r=new o(e,n,i,a),!(n==a&&t.start&&t.start.start&&0!=t.skipCurrent&&r.isEqual(t.start))||(r=null,!1)}),r},this.findAll=function(e){var t=this.$options;if(!t.needle)return[];this.$assembleRegExp(t);var n=t.range,i=n?e.getLines(n.start.row,n.end.row):e.doc.getAllLines(),a=[],s=t.re;if(t.$isMultiLine){var l,c=s.length,u=i.length-c;e:for(var h=s.offset||0;h<=u;h++){for(var d=0;dm||(a.push(l=new o(h,m,h+c-1,g)),c>2&&(h=h+c-2))}}else for(var v=0;vx&&a[d].end.row==n.end.row)d--;for(a=a.slice(v,d+1),v=0,d=a.length;v=s;n--)if(h(n,Number.MAX_VALUE,e))return;if(0!=t.wrap)for(n=l,s=a.row;n>=s;n--)if(h(n,Number.MAX_VALUE,e))return}};else c=function(e){var n=a.row;if(!h(n,a.column,e)){for(n+=1;n<=l;n++)if(h(n,0,e))return;if(0!=t.wrap)for(n=s,l=a.row;n<=l;n++)if(h(n,0,e))return}};if(t.$isMultiLine)var u=n.length,h=function(t,i,o){var a=r?t-u+1:t;if(!(a<0)){var s=e.getLine(a),l=s.search(n[0]);if(!(!r&&li))return!!o(a,l,a+u-1,h)||void 0}}};else if(r)h=function(t,r,i){var o,a=e.getLine(t),s=[],l=0;n.lastIndex=0;while(o=n.exec(a)){var c=o[0].length;if(l=o.index,!c){if(l>=a.length)break;n.lastIndex=l+=1}if(o.index+c>r)break;s.push(o.index,c)}for(var u=s.length-1;u>=0;u-=2){var h=s[u-1];c=s[u];if(i(t,h,t,h+c))return!0}};else h=function(t,r,i){var o,a,s=e.getLine(t);n.lastIndex=r;while(a=n.exec(s)){var l=a[0].length;if(o=a.index,i(t,o,t,o+l))return!0;if(!l&&(n.lastIndex=o+=1,o>=s.length))return!1}};return{forEach:c}}}).call(a.prototype),t.Search=a}),ace.define("ace/keyboard/hash_handler",["require","exports","module","ace/lib/keys","ace/lib/useragent"],function(e,t,n){"use strict";var r=e("../lib/keys"),i=e("../lib/useragent"),o=r.KEY_MODS;function a(e,t){this.platform=t||(i.isMac?"mac":"win"),this.commands={},this.commandKeyBinding={},this.addCommands(e),this.$singleCommand=!0}function s(e,t){a.call(this,e,t),this.$singleCommand=!1}s.prototype=a.prototype,function(){function e(e){return"object"==typeof e&&e.bindKey&&e.bindKey.position||(e.isDefault?-100:0)}this.addCommand=function(e){this.commands[e.name]&&this.removeCommand(e),this.commands[e.name]=e,e.bindKey&&this._buildKeyHash(e)},this.removeCommand=function(e,t){var n=e&&("string"===typeof e?e:e.name);e=this.commands[n],t||delete this.commands[n];var r=this.commandKeyBinding;for(var i in r){var o=r[i];if(o==e)delete r[i];else if(Array.isArray(o)){var a=o.indexOf(e);-1!=a&&(o.splice(a,1),1==o.length&&(r[i]=o[0]))}}},this.bindKey=function(e,t,n){if("object"==typeof e&&e&&(void 0==n&&(n=e.position),e=e[this.platform]),e)return"function"==typeof t?this.addCommand({exec:t,bindKey:e,name:t.name||e}):void e.split("|").forEach(function(e){var r="";if(-1!=e.indexOf(" ")){var i=e.split(/\s+/);e=i.pop(),i.forEach(function(e){var t=this.parseKeys(e),n=o[t.hashId]+t.key;r+=(r?" ":"")+n,this._addCommandToBinding(r,"chainKeys")},this),r+=" "}var a=this.parseKeys(e),s=o[a.hashId]+a.key;this._addCommandToBinding(r+s,t,n)},this)},this._addCommandToBinding=function(t,n,r){var i,o=this.commandKeyBinding;if(n)if(!o[t]||this.$singleCommand)o[t]=n;else{Array.isArray(o[t])?-1!=(i=o[t].indexOf(n))&&o[t].splice(i,1):o[t]=[o[t]],"number"!=typeof r&&(r=e(n));var a=o[t];for(i=0;ir)break}a.splice(i,0,n)}else delete o[t]},this.addCommands=function(e){e&&Object.keys(e).forEach(function(t){var n=e[t];if(n){if("string"===typeof n)return this.bindKey(n,t);"function"===typeof n&&(n={exec:n}),"object"===typeof n&&(n.name||(n.name=t),this.addCommand(n))}},this)},this.removeCommands=function(e){Object.keys(e).forEach(function(t){this.removeCommand(e[t])},this)},this.bindKeys=function(e){Object.keys(e).forEach(function(t){this.bindKey(t,e[t])},this)},this._buildKeyHash=function(e){this.bindKey(e.bindKey,e)},this.parseKeys=function(e){var t=e.toLowerCase().split(/[\-\+]([\-\+])?/).filter(function(e){return e}),n=t.pop(),i=r[n];if(r.FUNCTION_KEYS[i])n=r.FUNCTION_KEYS[i].toLowerCase();else{if(!t.length)return{key:n,hashId:-1};if(1==t.length&&"shift"==t[0])return{key:n.toUpperCase(),hashId:-1}}for(var o=0,a=t.length;a--;){var s=r.KEY_MODS[t[a]];if(null==s)return"undefined"!=typeof console&&console.error("invalid modifier "+t[a]+" in "+e),!1;o|=s}return{key:n,hashId:o}},this.findKeyCommand=function(e,t){var n=o[e]+t;return this.commandKeyBinding[n]},this.handleKeyboard=function(e,t,n,r){if(!(r<0)){var i=o[t]+n,a=this.commandKeyBinding[i];return e.$keyChain&&(e.$keyChain+=" "+i,a=this.commandKeyBinding[e.$keyChain]||a),!a||"chainKeys"!=a&&"chainKeys"!=a[a.length-1]?(e.$keyChain&&(t&&4!=t||1!=n.length?(-1==t||r>0)&&(e.$keyChain=""):e.$keyChain=e.$keyChain.slice(0,-i.length-1)),{command:a}):(e.$keyChain=e.$keyChain||i,{command:"null"})}},this.getStatusText=function(e,t){return t.$keyChain||""}}.call(a.prototype),t.HashHandler=a,t.MultiHashHandler=s}),ace.define("ace/commands/command_manager",["require","exports","module","ace/lib/oop","ace/keyboard/hash_handler","ace/lib/event_emitter"],function(e,t,n){"use strict";var r=e("../lib/oop"),i=e("../keyboard/hash_handler").MultiHashHandler,o=e("../lib/event_emitter").EventEmitter,a=function(e,t){i.call(this,t,e),this.byName=this.commands,this.setDefaultHandler("exec",function(e){return e.command.exec(e.editor,e.args||{})})};r.inherits(a,i),function(){r.implement(this,o),this.exec=function(e,t,n){if(Array.isArray(e)){for(var r=e.length;r--;)if(this.exec(e[r],t,n))return!0;return!1}if("string"===typeof e&&(e=this.commands[e]),!e)return!1;if(t&&t.$readOnly&&!e.readOnly)return!1;if(0!=this.$checkCommandState&&e.isAvailable&&!e.isAvailable(t))return!1;var i={editor:t,command:e,args:n};return i.returnValue=this._emit("exec",i),this._signal("afterExec",i),!1!==i.returnValue},this.toggleRecording=function(e){if(!this.$inReplay)return e&&e._emit("changeStatus"),this.recording?(this.macro.pop(),this.off("exec",this.$addCommandToMacro),this.macro.length||(this.macro=this.oldMacro),this.recording=!1):(this.$addCommandToMacro||(this.$addCommandToMacro=function(e){this.macro.push([e.command,e.args])}.bind(this)),this.oldMacro=this.macro,this.macro=[],this.on("exec",this.$addCommandToMacro),this.recording=!0)},this.replay=function(e){if(!this.$inReplay&&this.macro){if(this.recording)return this.toggleRecording(e);try{this.$inReplay=!0,this.macro.forEach(function(t){"string"==typeof t?this.exec(t,e):this.exec(t[0],e,t[1])},this)}finally{this.$inReplay=!1}}},this.trimMacro=function(e){return e.map(function(e){return"string"!=typeof e[0]&&(e[0]=e[0].name),e[1]||(e=e[0]),e})}}.call(a.prototype),t.CommandManager=a}),ace.define("ace/commands/default_commands",["require","exports","module","ace/lib/lang","ace/config","ace/range"],function(e,t,n){"use strict";var r=e("../lib/lang"),i=e("../config"),o=e("../range").Range;function a(e,t){return{win:e,mac:t}}t.commands=[{name:"showSettingsMenu",bindKey:a("Ctrl-,","Command-,"),exec:function(e){i.loadModule("ace/ext/settings_menu",function(t){t.init(e),e.showSettingsMenu()})},readOnly:!0},{name:"goToNextError",bindKey:a("Alt-E","F4"),exec:function(e){i.loadModule("./ext/error_marker",function(t){t.showErrorMarker(e,1)})},scrollIntoView:"animate",readOnly:!0},{name:"goToPreviousError",bindKey:a("Alt-Shift-E","Shift-F4"),exec:function(e){i.loadModule("./ext/error_marker",function(t){t.showErrorMarker(e,-1)})},scrollIntoView:"animate",readOnly:!0},{name:"selectall",description:"Select all",bindKey:a("Ctrl-A","Command-A"),exec:function(e){e.selectAll()},readOnly:!0},{name:"centerselection",description:"Center selection",bindKey:a(null,"Ctrl-L"),exec:function(e){e.centerSelection()},readOnly:!0},{name:"gotoline",description:"Go to line...",bindKey:a("Ctrl-L","Command-L"),exec:function(e,t){"number"!==typeof t||isNaN(t)||e.gotoLine(t),e.prompt({$type:"gotoLine"})},readOnly:!0},{name:"fold",bindKey:a("Alt-L|Ctrl-F1","Command-Alt-L|Command-F1"),exec:function(e){e.session.toggleFold(!1)},multiSelectAction:"forEach",scrollIntoView:"center",readOnly:!0},{name:"unfold",bindKey:a("Alt-Shift-L|Ctrl-Shift-F1","Command-Alt-Shift-L|Command-Shift-F1"),exec:function(e){e.session.toggleFold(!0)},multiSelectAction:"forEach",scrollIntoView:"center",readOnly:!0},{name:"toggleFoldWidget",bindKey:a("F2","F2"),exec:function(e){e.session.toggleFoldWidget()},multiSelectAction:"forEach",scrollIntoView:"center",readOnly:!0},{name:"toggleParentFoldWidget",bindKey:a("Alt-F2","Alt-F2"),exec:function(e){e.session.toggleFoldWidget(!0)},multiSelectAction:"forEach",scrollIntoView:"center",readOnly:!0},{name:"foldall",description:"Fold all",bindKey:a(null,"Ctrl-Command-Option-0"),exec:function(e){e.session.foldAll()},scrollIntoView:"center",readOnly:!0},{name:"foldAllComments",description:"Fold all comments",bindKey:a(null,"Ctrl-Command-Option-0"),exec:function(e){e.session.foldAllComments()},scrollIntoView:"center",readOnly:!0},{name:"foldOther",description:"Fold other",bindKey:a("Alt-0","Command-Option-0"),exec:function(e){e.session.foldAll(),e.session.unfold(e.selection.getAllRanges())},scrollIntoView:"center",readOnly:!0},{name:"unfoldall",description:"Unfold all",bindKey:a("Alt-Shift-0","Command-Option-Shift-0"),exec:function(e){e.session.unfold()},scrollIntoView:"center",readOnly:!0},{name:"findnext",description:"Find next",bindKey:a("Ctrl-K","Command-G"),exec:function(e){e.findNext()},multiSelectAction:"forEach",scrollIntoView:"center",readOnly:!0},{name:"findprevious",description:"Find previous",bindKey:a("Ctrl-Shift-K","Command-Shift-G"),exec:function(e){e.findPrevious()},multiSelectAction:"forEach",scrollIntoView:"center",readOnly:!0},{name:"selectOrFindNext",description:"Select or find next",bindKey:a("Alt-K","Ctrl-G"),exec:function(e){e.selection.isEmpty()?e.selection.selectWord():e.findNext()},readOnly:!0},{name:"selectOrFindPrevious",description:"Select or find previous",bindKey:a("Alt-Shift-K","Ctrl-Shift-G"),exec:function(e){e.selection.isEmpty()?e.selection.selectWord():e.findPrevious()},readOnly:!0},{name:"find",description:"Find",bindKey:a("Ctrl-F","Command-F"),exec:function(e){i.loadModule("ace/ext/searchbox",function(t){t.Search(e)})},readOnly:!0},{name:"overwrite",description:"Overwrite",bindKey:"Insert",exec:function(e){e.toggleOverwrite()},readOnly:!0},{name:"selecttostart",description:"Select to start",bindKey:a("Ctrl-Shift-Home","Command-Shift-Home|Command-Shift-Up"),exec:function(e){e.getSelection().selectFileStart()},multiSelectAction:"forEach",readOnly:!0,scrollIntoView:"animate",aceCommandGroup:"fileJump"},{name:"gotostart",description:"Go to start",bindKey:a("Ctrl-Home","Command-Home|Command-Up"),exec:function(e){e.navigateFileStart()},multiSelectAction:"forEach",readOnly:!0,scrollIntoView:"animate",aceCommandGroup:"fileJump"},{name:"selectup",description:"Select up",bindKey:a("Shift-Up","Shift-Up|Ctrl-Shift-P"),exec:function(e){e.getSelection().selectUp()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"golineup",description:"Go line up",bindKey:a("Up","Up|Ctrl-P"),exec:function(e,t){e.navigateUp(t.times)},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"selecttoend",description:"Select to end",bindKey:a("Ctrl-Shift-End","Command-Shift-End|Command-Shift-Down"),exec:function(e){e.getSelection().selectFileEnd()},multiSelectAction:"forEach",readOnly:!0,scrollIntoView:"animate",aceCommandGroup:"fileJump"},{name:"gotoend",description:"Go to end",bindKey:a("Ctrl-End","Command-End|Command-Down"),exec:function(e){e.navigateFileEnd()},multiSelectAction:"forEach",readOnly:!0,scrollIntoView:"animate",aceCommandGroup:"fileJump"},{name:"selectdown",description:"Select down",bindKey:a("Shift-Down","Shift-Down|Ctrl-Shift-N"),exec:function(e){e.getSelection().selectDown()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"golinedown",description:"Go line down",bindKey:a("Down","Down|Ctrl-N"),exec:function(e,t){e.navigateDown(t.times)},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"selectwordleft",description:"Select word left",bindKey:a("Ctrl-Shift-Left","Option-Shift-Left"),exec:function(e){e.getSelection().selectWordLeft()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"gotowordleft",description:"Go to word left",bindKey:a("Ctrl-Left","Option-Left"),exec:function(e){e.navigateWordLeft()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"selecttolinestart",description:"Select to line start",bindKey:a("Alt-Shift-Left","Command-Shift-Left|Ctrl-Shift-A"),exec:function(e){e.getSelection().selectLineStart()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"gotolinestart",description:"Go to line start",bindKey:a("Alt-Left|Home","Command-Left|Home|Ctrl-A"),exec:function(e){e.navigateLineStart()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"selectleft",description:"Select left",bindKey:a("Shift-Left","Shift-Left|Ctrl-Shift-B"),exec:function(e){e.getSelection().selectLeft()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"gotoleft",description:"Go to left",bindKey:a("Left","Left|Ctrl-B"),exec:function(e,t){e.navigateLeft(t.times)},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"selectwordright",description:"Select word right",bindKey:a("Ctrl-Shift-Right","Option-Shift-Right"),exec:function(e){e.getSelection().selectWordRight()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"gotowordright",description:"Go to word right",bindKey:a("Ctrl-Right","Option-Right"),exec:function(e){e.navigateWordRight()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"selecttolineend",description:"Select to line end",bindKey:a("Alt-Shift-Right","Command-Shift-Right|Shift-End|Ctrl-Shift-E"),exec:function(e){e.getSelection().selectLineEnd()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"gotolineend",description:"Go to line end",bindKey:a("Alt-Right|End","Command-Right|End|Ctrl-E"),exec:function(e){e.navigateLineEnd()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"selectright",description:"Select right",bindKey:a("Shift-Right","Shift-Right"),exec:function(e){e.getSelection().selectRight()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"gotoright",description:"Go to right",bindKey:a("Right","Right|Ctrl-F"),exec:function(e,t){e.navigateRight(t.times)},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"selectpagedown",description:"Select page down",bindKey:"Shift-PageDown",exec:function(e){e.selectPageDown()},readOnly:!0},{name:"pagedown",description:"Page down",bindKey:a(null,"Option-PageDown"),exec:function(e){e.scrollPageDown()},readOnly:!0},{name:"gotopagedown",description:"Go to page down",bindKey:a("PageDown","PageDown|Ctrl-V"),exec:function(e){e.gotoPageDown()},readOnly:!0},{name:"selectpageup",description:"Select page up",bindKey:"Shift-PageUp",exec:function(e){e.selectPageUp()},readOnly:!0},{name:"pageup",description:"Page up",bindKey:a(null,"Option-PageUp"),exec:function(e){e.scrollPageUp()},readOnly:!0},{name:"gotopageup",description:"Go to page up",bindKey:"PageUp",exec:function(e){e.gotoPageUp()},readOnly:!0},{name:"scrollup",description:"Scroll up",bindKey:a("Ctrl-Up",null),exec:function(e){e.renderer.scrollBy(0,-2*e.renderer.layerConfig.lineHeight)},readOnly:!0},{name:"scrolldown",description:"Scroll down",bindKey:a("Ctrl-Down",null),exec:function(e){e.renderer.scrollBy(0,2*e.renderer.layerConfig.lineHeight)},readOnly:!0},{name:"selectlinestart",description:"Select line start",bindKey:"Shift-Home",exec:function(e){e.getSelection().selectLineStart()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"selectlineend",description:"Select line end",bindKey:"Shift-End",exec:function(e){e.getSelection().selectLineEnd()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"togglerecording",description:"Toggle recording",bindKey:a("Ctrl-Alt-E","Command-Option-E"),exec:function(e){e.commands.toggleRecording(e)},readOnly:!0},{name:"replaymacro",description:"Replay macro",bindKey:a("Ctrl-Shift-E","Command-Shift-E"),exec:function(e){e.commands.replay(e)},readOnly:!0},{name:"jumptomatching",description:"Jump to matching",bindKey:a("Ctrl-\\|Ctrl-P","Command-\\"),exec:function(e){e.jumpToMatching()},multiSelectAction:"forEach",scrollIntoView:"animate",readOnly:!0},{name:"selecttomatching",description:"Select to matching",bindKey:a("Ctrl-Shift-\\|Ctrl-Shift-P","Command-Shift-\\"),exec:function(e){e.jumpToMatching(!0)},multiSelectAction:"forEach",scrollIntoView:"animate",readOnly:!0},{name:"expandToMatching",description:"Expand to matching",bindKey:a("Ctrl-Shift-M","Ctrl-Shift-M"),exec:function(e){e.jumpToMatching(!0,!0)},multiSelectAction:"forEach",scrollIntoView:"animate",readOnly:!0},{name:"passKeysToBrowser",description:"Pass keys to browser",bindKey:a(null,null),exec:function(){},passEvent:!0,readOnly:!0},{name:"copy",description:"Copy",exec:function(e){},readOnly:!0},{name:"cut",description:"Cut",exec:function(e){var t=e.$copyWithEmptySelection&&e.selection.isEmpty(),n=t?e.selection.getLineRange():e.selection.getRange();e._emit("cut",n),n.isEmpty()||e.session.remove(n),e.clearSelection()},scrollIntoView:"cursor",multiSelectAction:"forEach"},{name:"paste",description:"Paste",exec:function(e,t){e.$handlePaste(t)},scrollIntoView:"cursor"},{name:"removeline",description:"Remove line",bindKey:a("Ctrl-D","Command-D"),exec:function(e){e.removeLines()},scrollIntoView:"cursor",multiSelectAction:"forEachLine"},{name:"duplicateSelection",description:"Duplicate selection",bindKey:a("Ctrl-Shift-D","Command-Shift-D"),exec:function(e){e.duplicateSelection()},scrollIntoView:"cursor",multiSelectAction:"forEach"},{name:"sortlines",description:"Sort lines",bindKey:a("Ctrl-Alt-S","Command-Alt-S"),exec:function(e){e.sortLines()},scrollIntoView:"selection",multiSelectAction:"forEachLine"},{name:"togglecomment",description:"Toggle comment",bindKey:a("Ctrl-/","Command-/"),exec:function(e){e.toggleCommentLines()},multiSelectAction:"forEachLine",scrollIntoView:"selectionPart"},{name:"toggleBlockComment",description:"Toggle block comment",bindKey:a("Ctrl-Shift-/","Command-Shift-/"),exec:function(e){e.toggleBlockComment()},multiSelectAction:"forEach",scrollIntoView:"selectionPart"},{name:"modifyNumberUp",description:"Modify number up",bindKey:a("Ctrl-Shift-Up","Alt-Shift-Up"),exec:function(e){e.modifyNumber(1)},scrollIntoView:"cursor",multiSelectAction:"forEach"},{name:"modifyNumberDown",description:"Modify number down",bindKey:a("Ctrl-Shift-Down","Alt-Shift-Down"),exec:function(e){e.modifyNumber(-1)},scrollIntoView:"cursor",multiSelectAction:"forEach"},{name:"replace",description:"Replace",bindKey:a("Ctrl-H","Command-Option-F"),exec:function(e){i.loadModule("ace/ext/searchbox",function(t){t.Search(e,!0)})}},{name:"undo",description:"Undo",bindKey:a("Ctrl-Z","Command-Z"),exec:function(e){e.undo()}},{name:"redo",description:"Redo",bindKey:a("Ctrl-Shift-Z|Ctrl-Y","Command-Shift-Z|Command-Y"),exec:function(e){e.redo()}},{name:"copylinesup",description:"Copy lines up",bindKey:a("Alt-Shift-Up","Command-Option-Up"),exec:function(e){e.copyLinesUp()},scrollIntoView:"cursor"},{name:"movelinesup",description:"Move lines up",bindKey:a("Alt-Up","Option-Up"),exec:function(e){e.moveLinesUp()},scrollIntoView:"cursor"},{name:"copylinesdown",description:"Copy lines down",bindKey:a("Alt-Shift-Down","Command-Option-Down"),exec:function(e){e.copyLinesDown()},scrollIntoView:"cursor"},{name:"movelinesdown",description:"Move lines down",bindKey:a("Alt-Down","Option-Down"),exec:function(e){e.moveLinesDown()},scrollIntoView:"cursor"},{name:"del",description:"Delete",bindKey:a("Delete","Delete|Ctrl-D|Shift-Delete"),exec:function(e){e.remove("right")},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"backspace",description:"Backspace",bindKey:a("Shift-Backspace|Backspace","Ctrl-Backspace|Shift-Backspace|Backspace|Ctrl-H"),exec:function(e){e.remove("left")},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"cut_or_delete",description:"Cut or delete",bindKey:a("Shift-Delete",null),exec:function(e){if(!e.selection.isEmpty())return!1;e.remove("left")},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"removetolinestart",description:"Remove to line start",bindKey:a("Alt-Backspace","Command-Backspace"),exec:function(e){e.removeToLineStart()},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"removetolineend",description:"Remove to line end",bindKey:a("Alt-Delete","Ctrl-K|Command-Delete"),exec:function(e){e.removeToLineEnd()},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"removetolinestarthard",description:"Remove to line start hard",bindKey:a("Ctrl-Shift-Backspace",null),exec:function(e){var t=e.selection.getRange();t.start.column=0,e.session.remove(t)},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"removetolineendhard",description:"Remove to line end hard",bindKey:a("Ctrl-Shift-Delete",null),exec:function(e){var t=e.selection.getRange();t.end.column=Number.MAX_VALUE,e.session.remove(t)},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"removewordleft",description:"Remove word left",bindKey:a("Ctrl-Backspace","Alt-Backspace|Ctrl-Alt-Backspace"),exec:function(e){e.removeWordLeft()},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"removewordright",description:"Remove word right",bindKey:a("Ctrl-Delete","Alt-Delete"),exec:function(e){e.removeWordRight()},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"outdent",description:"Outdent",bindKey:a("Shift-Tab","Shift-Tab"),exec:function(e){e.blockOutdent()},multiSelectAction:"forEach",scrollIntoView:"selectionPart"},{name:"indent",description:"Indent",bindKey:a("Tab","Tab"),exec:function(e){e.indent()},multiSelectAction:"forEach",scrollIntoView:"selectionPart"},{name:"blockoutdent",description:"Block outdent",bindKey:a("Ctrl-[","Ctrl-["),exec:function(e){e.blockOutdent()},multiSelectAction:"forEachLine",scrollIntoView:"selectionPart"},{name:"blockindent",description:"Block indent",bindKey:a("Ctrl-]","Ctrl-]"),exec:function(e){e.blockIndent()},multiSelectAction:"forEachLine",scrollIntoView:"selectionPart"},{name:"insertstring",description:"Insert string",exec:function(e,t){e.insert(t)},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"inserttext",description:"Insert text",exec:function(e,t){e.insert(r.stringRepeat(t.text||"",t.times||1))},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"splitline",description:"Split line",bindKey:a(null,"Ctrl-O"),exec:function(e){e.splitLine()},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"transposeletters",description:"Transpose letters",bindKey:a("Alt-Shift-X","Ctrl-T"),exec:function(e){e.transposeLetters()},multiSelectAction:function(e){e.transposeSelections(1)},scrollIntoView:"cursor"},{name:"touppercase",description:"To uppercase",bindKey:a("Ctrl-U","Ctrl-U"),exec:function(e){e.toUpperCase()},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"tolowercase",description:"To lowercase",bindKey:a("Ctrl-Shift-U","Ctrl-Shift-U"),exec:function(e){e.toLowerCase()},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"autoindent",description:"Auto Indent",bindKey:a(null,null),exec:function(e){e.autoIndent()},multiSelectAction:"forEachLine",scrollIntoView:"animate"},{name:"expandtoline",description:"Expand to line",bindKey:a("Ctrl-Shift-L","Command-Shift-L"),exec:function(e){var t=e.selection.getRange();t.start.column=t.end.column=0,t.end.row++,e.selection.setRange(t,!1)},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"joinlines",description:"Join lines",bindKey:a(null,null),exec:function(e){for(var t=e.selection.isBackwards(),n=t?e.selection.getSelectionLead():e.selection.getSelectionAnchor(),i=t?e.selection.getSelectionAnchor():e.selection.getSelectionLead(),a=e.session.doc.getLine(n.row).length,s=e.session.doc.getTextRange(e.selection.getRange()),l=s.replace(/\n\s*/," ").length,c=e.session.doc.getLine(n.row),u=n.row+1;u<=i.row+1;u++){var h=r.stringTrimLeft(r.stringTrimRight(e.session.doc.getLine(u)));0!==h.length&&(h=" "+h),c+=h}i.row+10?(e.selection.moveCursorTo(n.row,n.column),e.selection.selectTo(n.row,n.column+l)):(a=e.session.doc.getLine(n.row).length>a?a+1:a,e.selection.moveCursorTo(n.row,a))},multiSelectAction:"forEach",readOnly:!0},{name:"invertSelection",description:"Invert selection",bindKey:a(null,null),exec:function(e){var t=e.session.doc.getLength()-1,n=e.session.doc.getLine(t).length,r=e.selection.rangeList.ranges,i=[];r.length<1&&(r=[e.selection.getRange()]);for(var a=0;a=i.lastRow||r.end.row<=i.firstRow)&&this.renderer.scrollSelectionIntoView(this.selection.anchor,this.selection.lead);break;default:break}"animate"==n&&this.renderer.animateScrolling(this.curOp.scrollTop)}var o=this.selection.toJSON();this.curOp.selectionAfter=o,this.$lastSel=this.selection.toJSON(),this.session.getUndoManager().addSelection(o),this.prevOp=this.curOp,this.curOp=null}},this.$mergeableCommands=["backspace","del","insertstring"],this.$historyTracker=function(e){if(this.$mergeUndoDeltas){var t=this.prevOp,n=this.$mergeableCommands,r=t.command&&e.command.name==t.command.name;if("insertstring"==e.command.name){var i=e.args;void 0===this.mergeNextCommand&&(this.mergeNextCommand=!0),r=r&&this.mergeNextCommand&&(!/\s/.test(i)||/\s/.test(t.args)),this.mergeNextCommand=!0}else r=r&&-1!==n.indexOf(e.command.name);"always"!=this.$mergeUndoDeltas&&Date.now()-this.sequenceStartTime>2e3&&(r=!1),r?this.session.mergeUndoDeltas=!0:-1!==n.indexOf(e.command.name)&&(this.sequenceStartTime=Date.now())}},this.setKeyboardHandler=function(e,t){if(e&&"string"===typeof e&&"ace"!=e){this.$keybindingId=e;var n=this;v.loadModule(["keybinding",e],function(r){n.$keybindingId==e&&n.keyBinding.setKeyboardHandler(r&&r.handler),t&&t()})}else this.$keybindingId=null,this.keyBinding.setKeyboardHandler(e),t&&t()},this.getKeyboardHandler=function(){return this.keyBinding.getKeyboardHandler()},this.setSession=function(e){if(this.session!=e){this.curOp&&this.endOperation(),this.curOp={};var t=this.session;if(t){this.session.off("change",this.$onDocumentChange),this.session.off("changeMode",this.$onChangeMode),this.session.off("tokenizerUpdate",this.$onTokenizerUpdate),this.session.off("changeTabSize",this.$onChangeTabSize),this.session.off("changeWrapLimit",this.$onChangeWrapLimit),this.session.off("changeWrapMode",this.$onChangeWrapMode),this.session.off("changeFold",this.$onChangeFold),this.session.off("changeFrontMarker",this.$onChangeFrontMarker),this.session.off("changeBackMarker",this.$onChangeBackMarker),this.session.off("changeBreakpoint",this.$onChangeBreakpoint),this.session.off("changeAnnotation",this.$onChangeAnnotation),this.session.off("changeOverwrite",this.$onCursorChange),this.session.off("changeScrollTop",this.$onScrollTopChange),this.session.off("changeScrollLeft",this.$onScrollLeftChange);var n=this.session.getSelection();n.off("changeCursor",this.$onCursorChange),n.off("changeSelection",this.$onSelectionChange)}this.session=e,e?(this.$onDocumentChange=this.onDocumentChange.bind(this),e.on("change",this.$onDocumentChange),this.renderer.setSession(e),this.$onChangeMode=this.onChangeMode.bind(this),e.on("changeMode",this.$onChangeMode),this.$onTokenizerUpdate=this.onTokenizerUpdate.bind(this),e.on("tokenizerUpdate",this.$onTokenizerUpdate),this.$onChangeTabSize=this.renderer.onChangeTabSize.bind(this.renderer),e.on("changeTabSize",this.$onChangeTabSize),this.$onChangeWrapLimit=this.onChangeWrapLimit.bind(this),e.on("changeWrapLimit",this.$onChangeWrapLimit),this.$onChangeWrapMode=this.onChangeWrapMode.bind(this),e.on("changeWrapMode",this.$onChangeWrapMode),this.$onChangeFold=this.onChangeFold.bind(this),e.on("changeFold",this.$onChangeFold),this.$onChangeFrontMarker=this.onChangeFrontMarker.bind(this),this.session.on("changeFrontMarker",this.$onChangeFrontMarker),this.$onChangeBackMarker=this.onChangeBackMarker.bind(this),this.session.on("changeBackMarker",this.$onChangeBackMarker),this.$onChangeBreakpoint=this.onChangeBreakpoint.bind(this),this.session.on("changeBreakpoint",this.$onChangeBreakpoint),this.$onChangeAnnotation=this.onChangeAnnotation.bind(this),this.session.on("changeAnnotation",this.$onChangeAnnotation),this.$onCursorChange=this.onCursorChange.bind(this),this.session.on("changeOverwrite",this.$onCursorChange),this.$onScrollTopChange=this.onScrollTopChange.bind(this),this.session.on("changeScrollTop",this.$onScrollTopChange),this.$onScrollLeftChange=this.onScrollLeftChange.bind(this),this.session.on("changeScrollLeft",this.$onScrollLeftChange),this.selection=e.getSelection(),this.selection.on("changeCursor",this.$onCursorChange),this.$onSelectionChange=this.onSelectionChange.bind(this),this.selection.on("changeSelection",this.$onSelectionChange),this.onChangeMode(),this.onCursorChange(),this.onScrollTopChange(),this.onScrollLeftChange(),this.onSelectionChange(),this.onChangeFrontMarker(),this.onChangeBackMarker(),this.onChangeBreakpoint(),this.onChangeAnnotation(),this.session.getUseWrapMode()&&this.renderer.adjustWrapLimit(),this.renderer.updateFull()):(this.selection=null,this.renderer.setSession(e)),this._signal("changeSession",{session:e,oldSession:t}),this.curOp=null,t&&t._signal("changeEditor",{oldEditor:this}),e&&e._signal("changeEditor",{editor:this}),e&&e.bgTokenizer&&e.bgTokenizer.scheduleStart()}},this.getSession=function(){return this.session},this.setValue=function(e,t){return this.session.doc.setValue(e),t?1==t?this.navigateFileEnd():-1==t&&this.navigateFileStart():this.selectAll(),e},this.getValue=function(){return this.session.getValue()},this.getSelection=function(){return this.selection},this.resize=function(e){this.renderer.onResize(e)},this.setTheme=function(e,t){this.renderer.setTheme(e,t)},this.getTheme=function(){return this.renderer.getTheme()},this.setStyle=function(e){this.renderer.setStyle(e)},this.unsetStyle=function(e){this.renderer.unsetStyle(e)},this.getFontSize=function(){return this.getOption("fontSize")||i.computedStyle(this.container).fontSize},this.setFontSize=function(e){this.setOption("fontSize",e)},this.$highlightBrackets=function(){if(!this.$highlightPending){var e=this;this.$highlightPending=!0,setTimeout(function(){e.$highlightPending=!1;var t=e.session;if(t&&t.bgTokenizer){t.$bracketHighlight&&(t.$bracketHighlight.markerIds.forEach(function(e){t.removeMarker(e)}),t.$bracketHighlight=null);var n=t.getMatchingBracketRanges(e.getCursorPosition());if(!n&&t.$mode.getMatching&&(n=t.$mode.getMatching(e.session)),n){var r="ace_bracket";Array.isArray(n)?1==n.length&&(r="ace_error_bracket"):n=[n],2==n.length&&(0==f.comparePoints(n[0].end,n[1].start)?n=[f.fromPoints(n[0].start,n[1].end)]:0==f.comparePoints(n[0].start,n[1].end)&&(n=[f.fromPoints(n[1].start,n[0].end)])),t.$bracketHighlight={ranges:n,markerIds:n.map(function(e){return t.addMarker(e,r,"text")})}}}},50)}},this.$highlightTags=function(){if(!this.$highlightTagPending){var e=this;this.$highlightTagPending=!0,setTimeout(function(){e.$highlightTagPending=!1;var t=e.session;if(t&&t.bgTokenizer){var n=e.getCursorPosition(),r=new y(e.session,n.row,n.column),i=r.getCurrentToken();if(!i||!/\b(?:tag-open|tag-name)/.test(i.type))return t.removeMarker(t.$tagHighlight),void(t.$tagHighlight=null);if(-1===i.type.indexOf("tag-open")||(i=r.stepForward(),i)){var o=i.value,a=i.value,s=0,l=r.stepBackward();if("<"===l.value)do{l=i,i=r.stepForward(),i&&(-1!==i.type.indexOf("tag-name")?(a=i.value,o===a&&("<"===l.value?s++:""===i.value&&s--)}while(i&&s>=0);else{do{if(i=l,l=r.stepBackward(),i)if(-1!==i.type.indexOf("tag-name"))o===i.value&&("<"===l.value?s++:""===i.value){var c=0,u=l;while(u){if(-1!==u.type.indexOf("tag-name")&&u.value===o){s--;break}if("<"===u.value)break;u=r.stepBackward(),c++}for(var h=0;h1||(e=!1)),t.$highlightLineMarker&&!e)t.removeMarker(t.$highlightLineMarker.id),t.$highlightLineMarker=null;else if(!t.$highlightLineMarker&&e){var n=new f(e.row,e.column,e.row,1/0);n.id=t.addMarker(n,"ace_active-line","screenLine"),t.$highlightLineMarker=n}else e&&(t.$highlightLineMarker.start.row=e.row,t.$highlightLineMarker.end.row=e.row,t.$highlightLineMarker.start.column=e.column,t._signal("changeBackMarker"))},this.onSelectionChange=function(e){var t=this.session;if(t.$selectionMarker&&t.removeMarker(t.$selectionMarker),t.$selectionMarker=null,this.selection.isEmpty())this.$updateHighlightActiveLine();else{var n=this.selection.getRange(),r=this.getSelectionStyle();t.$selectionMarker=t.addMarker(n,"ace_selection",r)}var i=this.$highlightSelectedWord&&this.$getSelectionHighLightRegexp();this.session.highlight(i),this._signal("changeSelection")},this.$getSelectionHighLightRegexp=function(){var e=this.session,t=this.getSelectionRange();if(!t.isEmpty()&&!t.isMultiLine()){var n=t.start.column,r=t.end.column,i=e.getLine(t.start.row),o=i.substring(n,r);if(!(o.length>5e3)&&/[\w\d]/.test(o)){var a=this.$search.$assembleRegExp({wholeWord:!0,caseSensitive:!0,needle:o}),s=i.substring(n-1,r+1);if(a.test(s))return a}}},this.onChangeFrontMarker=function(){this.renderer.updateFrontMarkers()},this.onChangeBackMarker=function(){this.renderer.updateBackMarkers()},this.onChangeBreakpoint=function(){this.renderer.updateBreakpoints()},this.onChangeAnnotation=function(){this.renderer.setAnnotations(this.session.getAnnotations())},this.onChangeMode=function(e){this.renderer.updateText(),this._emit("changeMode",e)},this.onChangeWrapLimit=function(){this.renderer.updateFull()},this.onChangeWrapMode=function(){this.renderer.onResize(!0)},this.onChangeFold=function(){this.$updateHighlightActiveLine(),this.renderer.updateFull()},this.getSelectedText=function(){return this.session.getTextRange(this.getSelectionRange())},this.getCopyText=function(){var e=this.getSelectedText(),t=this.session.doc.getNewLineCharacter(),n=!1;if(!e&&this.$copyWithEmptySelection){n=!0;for(var r=this.selection.getAllRanges(),i=0;is.search(/\S|$/)){var l=s.substr(i.column).search(/\S|$/);n.doc.removeInLine(i.row,i.column,i.column+l)}}this.clearSelection();var c=i.column,u=n.getState(i.row),h=(s=n.getLine(i.row),r.checkOutdent(u,s,e));if(n.insert(i,e),o&&o.selection&&(2==o.selection.length?this.selection.setSelectionRange(new f(i.row,c+o.selection[0],i.row,c+o.selection[1])):this.selection.setSelectionRange(new f(i.row+o.selection[0],o.selection[1],i.row+o.selection[2],o.selection[3]))),this.$enableAutoIndent){if(n.getDocument().isNewLine(e)){var d=r.getNextLineIndent(u,s.slice(0,i.column),n.getTabString());n.insert({row:i.row+1,column:0},d)}h&&r.autoOutdent(u,n,i.row)}},this.autoIndent=function(){var e,t,n=this.session,r=n.getMode();if(this.selection.isEmpty())e=0,t=n.doc.getLength()-1;else{var i=this.getSelectionRange();e=i.start.row,t=i.end.row}for(var o,a,s,l="",c="",u="",h=n.getTabString(),d=e;d<=t;d++)d>0&&(l=n.getState(d-1),c=n.getLine(d-1),u=r.getNextLineIndent(l,c,h)),o=n.getLine(d),a=r.$getIndent(o),u!==a&&(a.length>0&&(s=new f(d,0,d,a.length),n.remove(s)),u.length>0&&n.insert({row:d,column:0},u)),r.autoOutdent(l,n,d)},this.onTextInput=function(e,t){if(!t)return this.keyBinding.onTextInput(e);this.startOperation({command:{name:"insertstring"}});var n=this.applyComposition.bind(this,e,t);this.selection.rangeCount?this.forEachSelection(n):n(),this.endOperation()},this.applyComposition=function(e,t){if(t.extendLeft||t.extendRight){var n=this.selection.getRange();n.start.column-=t.extendLeft,n.end.column+=t.extendRight,n.start.column<0&&(n.start.row--,n.start.column+=this.session.getLine(n.start.row).length+1),this.selection.setRange(n),e||n.isEmpty()||this.remove()}if(!e&&this.selection.isEmpty()||this.insert(e,!0),t.restoreStart||t.restoreEnd){n=this.selection.getRange();n.start.column-=t.restoreStart,n.end.column-=t.restoreEnd,this.selection.setRange(n)}},this.onCommandKey=function(e,t,n){return this.keyBinding.onCommandKey(e,t,n)},this.setOverwrite=function(e){this.session.setOverwrite(e)},this.getOverwrite=function(){return this.session.getOverwrite()},this.toggleOverwrite=function(){this.session.toggleOverwrite()},this.setScrollSpeed=function(e){this.setOption("scrollSpeed",e)},this.getScrollSpeed=function(){return this.getOption("scrollSpeed")},this.setDragDelay=function(e){this.setOption("dragDelay",e)},this.getDragDelay=function(){return this.getOption("dragDelay")},this.setSelectionStyle=function(e){this.setOption("selectionStyle",e)},this.getSelectionStyle=function(){return this.getOption("selectionStyle")},this.setHighlightActiveLine=function(e){this.setOption("highlightActiveLine",e)},this.getHighlightActiveLine=function(){return this.getOption("highlightActiveLine")},this.setHighlightGutterLine=function(e){this.setOption("highlightGutterLine",e)},this.getHighlightGutterLine=function(){return this.getOption("highlightGutterLine")},this.setHighlightSelectedWord=function(e){this.setOption("highlightSelectedWord",e)},this.getHighlightSelectedWord=function(){return this.$highlightSelectedWord},this.setAnimatedScroll=function(e){this.renderer.setAnimatedScroll(e)},this.getAnimatedScroll=function(){return this.renderer.getAnimatedScroll()},this.setShowInvisibles=function(e){this.renderer.setShowInvisibles(e)},this.getShowInvisibles=function(){return this.renderer.getShowInvisibles()},this.setDisplayIndentGuides=function(e){this.renderer.setDisplayIndentGuides(e)},this.getDisplayIndentGuides=function(){return this.renderer.getDisplayIndentGuides()},this.setShowPrintMargin=function(e){this.renderer.setShowPrintMargin(e)},this.getShowPrintMargin=function(){return this.renderer.getShowPrintMargin()},this.setPrintMarginColumn=function(e){this.renderer.setPrintMarginColumn(e)},this.getPrintMarginColumn=function(){return this.renderer.getPrintMarginColumn()},this.setReadOnly=function(e){this.setOption("readOnly",e)},this.getReadOnly=function(){return this.getOption("readOnly")},this.setBehavioursEnabled=function(e){this.setOption("behavioursEnabled",e)},this.getBehavioursEnabled=function(){return this.getOption("behavioursEnabled")},this.setWrapBehavioursEnabled=function(e){this.setOption("wrapBehavioursEnabled",e)},this.getWrapBehavioursEnabled=function(){return this.getOption("wrapBehavioursEnabled")},this.setShowFoldWidgets=function(e){this.setOption("showFoldWidgets",e)},this.getShowFoldWidgets=function(){return this.getOption("showFoldWidgets")},this.setFadeFoldWidgets=function(e){this.setOption("fadeFoldWidgets",e)},this.getFadeFoldWidgets=function(){return this.getOption("fadeFoldWidgets")},this.remove=function(e){this.selection.isEmpty()&&("left"==e?this.selection.selectLeft():this.selection.selectRight());var t=this.getSelectionRange();if(this.getBehavioursEnabled()){var n=this.session,r=n.getState(t.start.row),i=n.getMode().transformAction(r,"deletion",this,n,t);if(0===t.end.column){var o=n.getTextRange(t);if("\n"==o[o.length-1]){var a=n.getLine(t.end.row);/^\s+$/.test(a)&&(t.end.column=a.length)}}i&&(t=i)}this.session.remove(t),this.clearSelection()},this.removeWordRight=function(){this.selection.isEmpty()&&this.selection.selectWordRight(),this.session.remove(this.getSelectionRange()),this.clearSelection()},this.removeWordLeft=function(){this.selection.isEmpty()&&this.selection.selectWordLeft(),this.session.remove(this.getSelectionRange()),this.clearSelection()},this.removeToLineStart=function(){this.selection.isEmpty()&&this.selection.selectLineStart(),this.selection.isEmpty()&&this.selection.selectLeft(),this.session.remove(this.getSelectionRange()),this.clearSelection()},this.removeToLineEnd=function(){this.selection.isEmpty()&&this.selection.selectLineEnd();var e=this.getSelectionRange();e.start.column==e.end.column&&e.start.row==e.end.row&&(e.end.column=0,e.end.row++),this.session.remove(e),this.clearSelection()},this.splitLine=function(){this.selection.isEmpty()||(this.session.remove(this.getSelectionRange()),this.clearSelection());var e=this.getCursorPosition();this.insert("\n"),this.moveCursorToPosition(e)},this.transposeLetters=function(){if(this.selection.isEmpty()){var e=this.getCursorPosition(),t=e.column;if(0!==t){var n,r,i=this.session.getLine(e.row);tt.toLowerCase()?1:0});var i=new f(0,0,0,0);for(r=e.first;r<=e.last;r++){var o=t.getLine(r);i.start.row=r,i.end.row=r,i.end.column=o.length,t.replace(i,n[r-e.first])}},this.toggleCommentLines=function(){var e=this.session.getState(this.getCursorPosition().row),t=this.$getSelectedRows();this.session.getMode().toggleCommentLines(e,this.session,t.first,t.last)},this.toggleBlockComment=function(){var e=this.getCursorPosition(),t=this.session.getState(e.row),n=this.getSelectionRange();this.session.getMode().toggleBlockComment(t,this.session,n,e)},this.getNumberAt=function(e,t){var n=/[\-]?[0-9]+(?:\.[0-9]+)?/g;n.lastIndex=0;var r=this.session.getLine(e);while(n.lastIndex=t){var o={value:i[0],start:i.index,end:i.index+i[0].length};return o}}return null},this.modifyNumber=function(e){var t=this.selection.getCursor().row,n=this.selection.getCursor().column,r=new f(t,n-1,t,n),i=this.session.getTextRange(r);if(!isNaN(parseFloat(i))&&isFinite(i)){var o=this.getNumberAt(t,n);if(o){var a=o.value.indexOf(".")>=0?o.start+o.value.indexOf(".")+1:o.end,s=o.start+o.value.length-a,l=parseFloat(o.value);l*=Math.pow(10,s),a!==o.end&&n=s&&a<=l&&(n=t,c.selection.clearSelection(),c.moveCursorTo(e,s+r),c.selection.selectTo(e,l+r)),s=l});for(var u,h=this.$toggleWordPairs,d=0;df+1)break;f=p.last}u--,s=this.session.$moveLines(d,f,t?0:e),t&&-1==e&&(h=u+1);while(h<=u)a[h].moveBy(s,0),h++;t||(s=0),l+=s}i.fromOrientedRange(i.ranges[0]),i.rangeList.attach(this.session),this.inVirtualSelectionMode=!1}},this.$getSelectedRows=function(e){return e=(e||this.getSelectionRange()).collapseRows(),{first:this.session.getRowFoldStart(e.start.row),last:this.session.getRowFoldEnd(e.end.row)}},this.onCompositionStart=function(e){this.renderer.showComposition(e)},this.onCompositionUpdate=function(e){this.renderer.setCompositionText(e)},this.onCompositionEnd=function(){this.renderer.hideComposition()},this.getFirstVisibleRow=function(){return this.renderer.getFirstVisibleRow()},this.getLastVisibleRow=function(){return this.renderer.getLastVisibleRow()},this.isRowVisible=function(e){return e>=this.getFirstVisibleRow()&&e<=this.getLastVisibleRow()},this.isRowFullyVisible=function(e){return e>=this.renderer.getFirstFullyVisibleRow()&&e<=this.renderer.getLastFullyVisibleRow()},this.$getVisibleRowCount=function(){return this.renderer.getScrollBottomRow()-this.renderer.getScrollTopRow()+1},this.$moveByPage=function(e,t){var n=this.renderer,r=this.renderer.layerConfig,i=e*Math.floor(r.height/r.lineHeight);!0===t?this.selection.$moveSelection(function(){this.moveCursorBy(i,0)}):!1===t&&(this.selection.moveCursorBy(i,0),this.selection.clearSelection());var o=n.scrollTop;n.scrollBy(0,i*r.lineHeight),null!=t&&n.scrollCursorIntoView(null,.5),n.animateScrolling(o)},this.selectPageDown=function(){this.$moveByPage(1,!0)},this.selectPageUp=function(){this.$moveByPage(-1,!0)},this.gotoPageDown=function(){this.$moveByPage(1,!1)},this.gotoPageUp=function(){this.$moveByPage(-1,!1)},this.scrollPageDown=function(){this.$moveByPage(1)},this.scrollPageUp=function(){this.$moveByPage(-1)},this.scrollToRow=function(e){this.renderer.scrollToRow(e)},this.scrollToLine=function(e,t,n,r){this.renderer.scrollToLine(e,t,n,r)},this.centerSelection=function(){var e=this.getSelectionRange(),t={row:Math.floor(e.start.row+(e.end.row-e.start.row)/2),column:Math.floor(e.start.column+(e.end.column-e.start.column)/2)};this.renderer.alignCursor(t,.5)},this.getCursorPosition=function(){return this.selection.getCursor()},this.getCursorPositionScreen=function(){return this.session.documentToScreenPosition(this.getCursorPosition())},this.getSelectionRange=function(){return this.selection.getRange()},this.selectAll=function(){this.selection.selectAll()},this.clearSelection=function(){this.selection.clearSelection()},this.moveCursorTo=function(e,t){this.selection.moveCursorTo(e,t)},this.moveCursorToPosition=function(e){this.selection.moveCursorToPosition(e)},this.jumpToMatching=function(e,t){var n=this.getCursorPosition(),r=new y(this.session,n.row,n.column),i=r.getCurrentToken(),o=i||r.stepForward();if(o){var a,s,l=!1,c={},u=n.column-o.start,h={")":"(","(":"(","]":"[","[":"[","{":"{","}":"{"};do{if(o.value.match(/[{}()\[\]]/g)){for(;u=0;--o)this.$tryReplace(n[o],e)&&r++;return this.selection.setSelectionRange(i),r},this.$tryReplace=function(e,t){var n=this.session.getTextRange(e);return t=this.$search.replace(n,t),null!==t?(e.end=this.session.replace(e,t),e):null},this.getLastSearchOptions=function(){return this.$search.getOptions()},this.find=function(e,t,n){t||(t={}),"string"==typeof e||e instanceof RegExp?t.needle=e:"object"==typeof e&&r.mixin(t,e);var i=this.selection.getRange();null==t.needle&&(e=this.session.getTextRange(i)||this.$search.$options.needle,e||(i=this.session.getWordRange(i.start.row,i.start.column),e=this.session.getTextRange(i)),this.$search.set({needle:e})),this.$search.set(t),t.start||this.$search.set({start:i});var o=this.$search.find(this.session);return t.preventScroll?o:o?(this.revealRange(o,n),o):(t.backwards?i.start=i.end:i.end=i.start,void this.selection.setRange(i))},this.findNext=function(e,t){this.find({skipCurrent:!0,backwards:!1},e,t)},this.findPrevious=function(e,t){this.find(e,{skipCurrent:!0,backwards:!0},t)},this.revealRange=function(e,t){this.session.unfold(e),this.selection.setSelectionRange(e);var n=this.renderer.scrollTop;this.renderer.scrollSelectionIntoView(e.start,e.end,.5),!1!==t&&this.renderer.animateScrolling(n)},this.undo=function(){this.session.getUndoManager().undo(this.session),this.renderer.scrollCursorIntoView(null,.5)},this.redo=function(){this.session.getUndoManager().redo(this.session),this.renderer.scrollCursorIntoView(null,.5)},this.destroy=function(){this.$toDestroy&&(this.$toDestroy.forEach(function(e){e.destroy()}),this.$toDestroy=null),this.$mouseHandler&&this.$mouseHandler.destroy(),this.renderer.destroy(),this._signal("destroy",this),this.session&&this.session.destroy(),this._$emitInputEvent&&this._$emitInputEvent.cancel(),this.removeAllListeners()},this.setAutoScrollEditorIntoView=function(e){if(e){var t,n=this,r=!1;this.$scrollAnchor||(this.$scrollAnchor=document.createElement("div"));var i=this.$scrollAnchor;i.style.cssText="position:absolute",this.container.insertBefore(i,this.container.firstChild);var o=this.on("changeSelection",function(){r=!0}),a=this.renderer.on("beforeRender",function(){r&&(t=n.renderer.container.getBoundingClientRect())}),s=this.renderer.on("afterRender",function(){if(r&&t&&(n.isFocused()||n.searchBox&&n.searchBox.isFocused())){var e=n.renderer,o=e.$cursorLayer.$pixelPos,a=e.layerConfig,s=o.top-a.offset;r=o.top>=0&&s+t.top<0||!(o.topwindow.innerHeight)&&null,null!=r&&(i.style.top=s+"px",i.style.left=o.left+"px",i.style.height=a.lineHeight+"px",i.scrollIntoView(r)),r=t=null}});this.setAutoScrollEditorIntoView=function(e){e||(delete this.setAutoScrollEditorIntoView,this.off("changeSelection",o),this.renderer.off("afterRender",s),this.renderer.off("beforeRender",a))}}},this.$resetCursorStyle=function(){var e=this.$cursorStyle||"ace",t=this.renderer.$cursorLayer;t&&(t.setSmoothBlinking(/smooth/.test(e)),t.isBlinking=!this.$readOnly&&"wide"!=e,i.setCssClass(t.element,"ace_slim-cursors",/slim/.test(e)))},this.prompt=function(e,t,n){var r=this;v.loadModule("./ext/prompt",function(i){i.prompt(r,e,t,n)})}}.call(w.prototype),v.defineOptions(w.prototype,"editor",{selectionStyle:{set:function(e){this.onSelectionChange(),this._signal("changeSelectionStyle",{data:e})},initialValue:"line"},highlightActiveLine:{set:function(){this.$updateHighlightActiveLine()},initialValue:!0},highlightSelectedWord:{set:function(e){this.$onSelectionChange()},initialValue:!0},readOnly:{set:function(e){this.textInput.setReadOnly(e),this.$resetCursorStyle()},initialValue:!1},copyWithEmptySelection:{set:function(e){this.textInput.setCopyWithEmptySelection(e)},initialValue:!1},cursorStyle:{set:function(e){this.$resetCursorStyle()},values:["ace","slim","smooth","wide"],initialValue:"ace"},mergeUndoDeltas:{values:[!1,!0,"always"],initialValue:!0},behavioursEnabled:{initialValue:!0},wrapBehavioursEnabled:{initialValue:!0},enableAutoIndent:{initialValue:!0},autoScrollEditorIntoView:{set:function(e){this.setAutoScrollEditorIntoView(e)}},keyboardHandler:{set:function(e){this.setKeyboardHandler(e)},get:function(){return this.$keybindingId},handlesSet:!0},value:{set:function(e){this.session.setValue(e)},get:function(){return this.getValue()},handlesSet:!0,hidden:!0},session:{set:function(e){this.setSession(e)},get:function(){return this.session},handlesSet:!0,hidden:!0},showLineNumbers:{set:function(e){this.renderer.$gutterLayer.setShowLineNumbers(e),this.renderer.$loop.schedule(this.renderer.CHANGE_GUTTER),e&&this.$relativeLineNumbers?x.attach(this):x.detach(this)},initialValue:!0},relativeLineNumbers:{set:function(e){this.$showLineNumbers&&e?x.attach(this):x.detach(this)}},placeholder:{set:function(e){this.$updatePlaceholder||(this.$updatePlaceholder=function(){var e=this.session&&(this.renderer.$composition||this.getValue());if(e&&this.renderer.placeholderNode)this.renderer.off("afterRender",this.$updatePlaceholder),i.removeCssClass(this.container,"ace_hasPlaceholder"),this.renderer.placeholderNode.remove(),this.renderer.placeholderNode=null;else if(e||this.renderer.placeholderNode)!e&&this.renderer.placeholderNode&&(this.renderer.placeholderNode.textContent=this.$placeholder||"");else{this.renderer.on("afterRender",this.$updatePlaceholder),i.addCssClass(this.container,"ace_hasPlaceholder");var t=i.createElement("div");t.className="ace_placeholder",t.textContent=this.$placeholder||"",this.renderer.placeholderNode=t,this.renderer.content.appendChild(this.renderer.placeholderNode)}}.bind(this),this.on("input",this.$updatePlaceholder)),this.$updatePlaceholder()}},hScrollBarAlwaysVisible:"renderer",vScrollBarAlwaysVisible:"renderer",highlightGutterLine:"renderer",animatedScroll:"renderer",showInvisibles:"renderer",showPrintMargin:"renderer",printMarginColumn:"renderer",printMargin:"renderer",fadeFoldWidgets:"renderer",showFoldWidgets:"renderer",displayIndentGuides:"renderer",showGutter:"renderer",fontSize:"renderer",fontFamily:"renderer",maxLines:"renderer",minLines:"renderer",scrollPastEnd:"renderer",fixedWidthGutter:"renderer",theme:"renderer",hasCssTransforms:"renderer",maxPixelHeight:"renderer",useTextareaForIME:"renderer",scrollSpeed:"$mouseHandler",dragDelay:"$mouseHandler",dragEnabled:"$mouseHandler",focusTimeout:"$mouseHandler",tooltipFollowsMouse:"$mouseHandler",firstLineNumber:"session",overwrite:"session",newLineMode:"session",useWorker:"session",useSoftTabs:"session",navigateWithinSoftTabs:"session",tabSize:"session",wrap:"session",indentedSoftWrap:"session",foldStyle:"session",mode:"session"});var x={getText:function(e,t){return(Math.abs(e.selection.lead.row-t)||t+1+(t<9?"\xb7":""))+""},getWidth:function(e,t,n){return Math.max(t.toString().length,(n.lastRow+1).toString().length,2)*n.characterWidth},update:function(e,t){t.renderer.$loop.schedule(t.renderer.CHANGE_GUTTER)},attach:function(e){e.renderer.$gutterLayer.$renderer=this,e.on("changeSelection",this.update),this.update(null,e)},detach:function(e){e.renderer.$gutterLayer.$renderer==this&&(e.renderer.$gutterLayer.$renderer=null),e.off("changeSelection",this.update),this.update(null,e)}};t.Editor=w}),ace.define("ace/undomanager",["require","exports","module","ace/range"],function(e,t,n){"use strict";var r=function(){this.$maxRev=0,this.$fromUndo=!1,this.reset()};function i(e,t){for(var n=t;n--;){var r=e[n];if(r&&!r[0].ignore){while(n0},this.canRedo=function(){return this.$redoStack.length>0},this.bookmark=function(e){void 0==e&&(e=this.$rev),this.mark=e},this.isAtBookmark=function(){return this.$rev===this.mark},this.toJSON=function(){},this.fromJSON=function(){},this.hasUndo=this.canUndo,this.hasRedo=this.canRedo,this.isClean=this.isAtBookmark,this.markClean=this.bookmark,this.$prettyPrint=function(e){return e?c(e):c(this.$undoStack)+"\n---\n"+c(this.$redoStack)}}).call(r.prototype);var o=e("./range").Range,a=o.comparePoints;o.comparePoints;function s(e){return{row:e.row,column:e.column}}function l(e){return{start:s(e.start),end:s(e.end),action:e.action,lines:e.lines.slice()}}function c(e){if(e=e||this,Array.isArray(e))return e.map(c).join("\n");var t="";return e.action?(t="insert"==e.action?"+":"-",t+="["+e.lines+"]"):e.value&&(t=Array.isArray(e.value)?e.value.map(u).join("\n"):u(e.value)),e.start&&(t+=u(e)),(e.id||e.rev)&&(t+="\t("+(e.id||e.rev)+")"),t}function u(e){return e.start.row+":"+e.start.column+"=>"+e.end.row+":"+e.end.column}function h(e,t){var n="insert"==e.action,r="insert"==t.action;if(n&&r)if(a(t.start,e.end)>=0)p(t,e,-1);else{if(!(a(t.start,e.start)<=0))return null;p(e,t,1)}else if(n&&!r)if(a(t.start,e.end)>=0)p(t,e,-1);else{if(!(a(t.end,e.start)<=0))return null;p(e,t,-1)}else if(!n&&r)if(a(t.start,e.start)>=0)p(t,e,1);else{if(!(a(t.start,e.start)<=0))return null;p(e,t,1)}else if(!n&&!r)if(a(t.start,e.start)>=0)p(t,e,1);else{if(!(a(t.end,e.start)<=0))return null;p(e,t,-1)}return[t,e]}function d(e,t){for(var n=e.length;n--;)for(var r=0;r=0?p(e,t,-1):a(e.start,t.start)<=0?p(t,e,1):(p(e,o.fromPoints(t.start,e.start),-1),p(t,e,1));else if(!n&&r)a(t.start,e.end)>=0?p(t,e,-1):a(t.start,e.start)<=0?p(e,t,1):(p(t,o.fromPoints(e.start,t.start),-1),p(e,t,1));else if(!n&&!r)if(a(t.start,e.end)>=0)p(t,e,-1);else{var i,s;if(!(a(t.end,e.start)<=0))return a(e.start,t.start)<0&&(i=e,e=g(e,t.start)),a(e.end,t.end)>0&&(s=g(e,t.end)),m(t.end,e.start,e.end,-1),s&&!i&&(e.lines=s.lines,e.start=s.start,e.end=s.end,s=e),[t,i,s].filter(Boolean);p(e,t,-1)}return[t,e]}function p(e,t,n){m(e.start,t.start,t.end,n),m(e.end,t.start,t.end,n)}function m(e,t,n,r){e.row==(1==r?t:n).row&&(e.column+=r*(n.column-t.column)),e.row+=r*(n.row-t.row)}function g(e,t){var n=e.lines,r=e.end;e.end=s(t);var i=e.end.row-e.start.row,o=n.splice(i,n.length),a=i?t.column:t.column-e.start.column;n.push(o[0].substring(0,a)),o[0]=o[0].substr(a);var l={start:s(t),end:r,lines:o,action:e.action};return l}function v(e,t){t=l(t);for(var n=e.length;n--;){for(var r=e[n],i=0;io&&(l=i.end.row+1,i=t.getNextFoldLine(l,i),o=i?i.start.row:1/0),l>r){while(this.$lines.getLength()>s+1)this.$lines.pop();break}a=this.$lines.get(++s),a?a.row=l:(a=this.$lines.createCell(l,e,this.session,c),this.$lines.push(a)),this.$renderCell(a,e,i,l),l++}this._signal("afterRender"),this.$updateGutterWidth(e)},this.$updateGutterWidth=function(e){var t=this.session,n=t.gutterRenderer||this.$renderer,r=t.$firstLineNumber,i=this.$lines.last()?this.$lines.last().text:"";(this.$fixedWidth||t.$useWrapMode)&&(i=t.getLength()+r-1);var o=n?n.getWidth(t,i,e):i.toString().length*e.characterWidth,a=this.$padding||this.$computePadding();o+=a.left+a.right,o===this.gutterWidth||isNaN(o)||(this.gutterWidth=o,this.element.parentNode.style.width=this.element.style.width=Math.ceil(this.gutterWidth)+"px",this._signal("changeGutterWidth",o))},this.$updateCursorRow=function(){if(this.$highlightGutterLine){var e=this.session.selection.getCursor();this.$cursorRow!==e.row&&(this.$cursorRow=e.row)}},this.updateLineHighlight=function(){if(this.$highlightGutterLine){var e=this.session.selection.cursor.row;if(this.$cursorRow=e,!this.$cursorCell||this.$cursorCell.row!=e){this.$cursorCell&&(this.$cursorCell.element.className=this.$cursorCell.element.className.replace("ace_gutter-active-line ",""));var t=this.$lines.cells;this.$cursorCell=null;for(var n=0;n=this.$cursorRow){if(r.row>this.$cursorRow){var i=this.session.getFoldLine(this.$cursorRow);if(!(n>0&&i&&i.start.row==t[n-1].row))break;r=t[n-1]}r.element.className="ace_gutter-active-line "+r.element.className,this.$cursorCell=r;break}}}}},this.scrollLines=function(e){var t=this.config;if(this.config=e,this.$updateCursorRow(),this.$lines.pageChanged(t,e))return this.update(e);this.$lines.moveContainer(e);var n=Math.min(e.lastRow+e.gutterOffset,this.session.getLength()-1),r=this.oldLastRow;if(this.oldLastRow=n,!t||r0;i--)this.$lines.shift();if(r>n)for(i=this.session.getFoldedRowCount(n+1,r);i>0;i--)this.$lines.pop();e.firstRowr&&this.$lines.push(this.$renderLines(e,r+1,n)),this.updateLineHighlight(),this._signal("afterRender"),this.$updateGutterWidth(e)},this.$renderLines=function(e,t,n){var r=[],i=t,o=this.session.getNextFoldLine(i),a=o?o.start.row:1/0;while(1){if(i>a&&(i=o.end.row+1,o=this.session.getNextFoldLine(i,o),a=o?o.start.row:1/0),i>n)break;var s=this.$lines.createCell(i,e,this.session,c);this.$renderCell(s,e,o,i),r.push(s),i++}return r},this.$renderCell=function(e,t,n,i){var o=e.element,a=this.session,s=o.childNodes[0],l=o.childNodes[1],c=a.$firstLineNumber,u=a.$breakpoints,h=a.$decorations,d=a.gutterRenderer||this.$renderer,f=this.$showFoldWidgets&&a.foldWidgets,p=n?n.start.row:Number.MAX_VALUE,m="ace_gutter-cell ";if(this.$highlightGutterLine&&(i==this.$cursorRow||n&&i=p&&this.$cursorRow<=n.end.row)&&(m+="ace_gutter-active-line ",this.$cursorCell!=e&&(this.$cursorCell&&(this.$cursorCell.element.className=this.$cursorCell.element.className.replace("ace_gutter-active-line ","")),this.$cursorCell=e)),u[i]&&(m+=u[i]),h[i]&&(m+=h[i]),this.$annotations[i]&&(m+=this.$annotations[i].className),o.className!=m&&(o.className=m),f){var g=f[i];null==g&&(g=f[i]=a.getFoldWidget(i))}if(g){m="ace_fold-widget ace_"+g;"start"==g&&i==p&&in.right-t.right?"foldWidgets":void 0}}).call(l.prototype),t.Gutter=l}),ace.define("ace/layer/marker",["require","exports","module","ace/range","ace/lib/dom"],function(e,t,n){"use strict";var r=e("../range").Range,i=e("../lib/dom"),o=function(e){this.element=i.createElement("div"),this.element.className="ace_layer ace_marker-layer",e.appendChild(this.element)};(function(){function e(e,t,n,r){return(e?1:0)|(t?2:0)|(n?4:0)|(r?8:0)}this.$padding=0,this.setPadding=function(e){this.$padding=e},this.setSession=function(e){this.session=e},this.setMarkers=function(e){this.markers=e},this.elt=function(e,t){var n=-1!=this.i&&this.element.childNodes[this.i];n?this.i++:(n=document.createElement("div"),this.element.appendChild(n),this.i=-1),n.style.cssText=t,n.className=e},this.update=function(e){if(e){var t;for(var n in this.config=e,this.i=0,this.markers){var r=this.markers[n];if(r.range){var i=r.range.clipRows(e.firstRow,e.lastRow);if(!i.isEmpty())if(i=i.toScreenRange(this.session),r.renderer){var o=this.$getTop(i.start.row,e),a=this.$padding+i.start.column*e.characterWidth;r.renderer(t,i,a,o,e)}else"fullLine"==r.type?this.drawFullLineMarker(t,i,r.clazz,e):"screenLine"==r.type?this.drawScreenLineMarker(t,i,r.clazz,e):i.isMultiLine()?"text"==r.type?this.drawTextMarker(t,i,r.clazz,e):this.drawMultiLineMarker(t,i,r.clazz,e):this.drawSingleLineMarker(t,i,r.clazz+" ace_start ace_br15",e)}else r.update(t,this,this.session,e)}if(-1!=this.i)while(this.if,u==c),o,u==c?0:1,a)},this.drawMultiLineMarker=function(e,t,n,r,i){var o=this.$padding,a=r.lineHeight,s=this.$getTop(t.start.row,r),l=o+t.start.column*r.characterWidth;if(i=i||"",this.session.$bidiHandler.isBidiRow(t.start.row)){var c=t.clone();c.end.row=c.start.row,c.end.column=this.session.getLine(c.start.row).length,this.drawBidiSingleLineMarker(e,c,n+" ace_br1 ace_start",r,null,i)}else this.elt(n+" ace_br1 ace_start","height:"+a+"px;right:0;top:"+s+"px;left:"+l+"px;"+(i||""));if(this.session.$bidiHandler.isBidiRow(t.end.row)){c=t.clone();c.start.row=c.end.row,c.start.column=0,this.drawBidiSingleLineMarker(e,c,n+" ace_br12",r,null,i)}else{s=this.$getTop(t.end.row,r);var u=t.end.column*r.characterWidth;this.elt(n+" ace_br12","height:"+a+"px;width:"+u+"px;top:"+s+"px;left:"+o+"px;"+(i||""))}if(a=(t.end.row-t.start.row-1)*r.lineHeight,!(a<=0)){s=this.$getTop(t.start.row+1,r);var h=(t.start.column?1:0)|(t.end.column?0:8);this.elt(n+(h?" ace_br"+h:""),"height:"+a+"px;right:0;top:"+s+"px;left:"+o+"px;"+(i||""))}},this.drawSingleLineMarker=function(e,t,n,r,i,o){if(this.session.$bidiHandler.isBidiRow(t.start.row))return this.drawBidiSingleLineMarker(e,t,n,r,i,o);var a=r.lineHeight,s=(t.end.column+(i||0)-t.start.column)*r.characterWidth,l=this.$getTop(t.start.row,r),c=this.$padding+t.start.column*r.characterWidth;this.elt(n,"height:"+a+"px;width:"+s+"px;top:"+l+"px;left:"+c+"px;"+(o||""))},this.drawBidiSingleLineMarker=function(e,t,n,r,i,o){var a=r.lineHeight,s=this.$getTop(t.start.row,r),l=this.$padding,c=this.session.$bidiHandler.getSelections(t.start.column,t.end.column);c.forEach(function(e){this.elt(n,"height:"+a+"px;width:"+e.width+(i||0)+"px;top:"+s+"px;left:"+(l+e.left)+"px;"+(o||""))},this)},this.drawFullLineMarker=function(e,t,n,r,i){var o=this.$getTop(t.start.row,r),a=r.lineHeight;t.start.row!=t.end.row&&(a+=this.$getTop(t.end.row,r)-o),this.elt(n,"height:"+a+"px;top:"+o+"px;left:0;right:0;"+(i||""))},this.drawScreenLineMarker=function(e,t,n,r,i){var o=this.$getTop(t.start.row,r),a=r.lineHeight;this.elt(n,"height:"+a+"px;top:"+o+"px;left:0;right:0;"+(i||""))}}).call(o.prototype),t.Marker=o}),ace.define("ace/layer/text",["require","exports","module","ace/lib/oop","ace/lib/dom","ace/lib/lang","ace/layer/lines","ace/lib/event_emitter"],function(e,t,n){"use strict";var r=e("../lib/oop"),i=e("../lib/dom"),o=e("../lib/lang"),a=e("./lines").Lines,s=e("../lib/event_emitter").EventEmitter,l=function(e){this.dom=i,this.element=this.dom.createElement("div"),this.element.className="ace_layer ace_text-layer",e.appendChild(this.element),this.$updateEolChar=this.$updateEolChar.bind(this),this.$lines=new a(this.element)};(function(){r.implement(this,s),this.EOF_CHAR="\xb6",this.EOL_CHAR_LF="\xac",this.EOL_CHAR_CRLF="\xa4",this.EOL_CHAR=this.EOL_CHAR_LF,this.TAB_CHAR="\u2014",this.SPACE_CHAR="\xb7",this.$padding=0,this.MAX_LINE_LENGTH=1e4,this.$updateEolChar=function(){var e=this.session.doc,t="\n"==e.getNewLineCharacter()&&"windows"!=e.getNewLineMode(),n=t?this.EOL_CHAR_LF:this.EOL_CHAR_CRLF;if(this.EOL_CHAR!=n)return this.EOL_CHAR=n,!0},this.setPadding=function(e){this.$padding=e,this.element.style.margin="0 "+e+"px"},this.getLineHeight=function(){return this.$fontMetrics.$characterSize.height||0},this.getCharacterWidth=function(){return this.$fontMetrics.$characterSize.width||0},this.$setFontMetrics=function(e){this.$fontMetrics=e,this.$fontMetrics.on("changeCharacterSize",function(e){this._signal("changeCharacterSize",e)}.bind(this)),this.$pollSizeChanges()},this.checkForSizeChanges=function(){this.$fontMetrics.checkForSizeChanges()},this.$pollSizeChanges=function(){return this.$pollSizeChangesTimer=this.$fontMetrics.$pollSizeChanges()},this.setSession=function(e){this.session=e,e&&this.$computeTabString()},this.showInvisibles=!1,this.showSpaces=!1,this.showTabs=!1,this.showEOL=!1,this.setShowInvisibles=function(e){return this.showInvisibles!=e&&(this.showInvisibles=e,"string"==typeof e?(this.showSpaces=/tab/i.test(e),this.showTabs=/space/i.test(e),this.showEOL=/eol/i.test(e)):this.showSpaces=this.showTabs=this.showEOL=e,this.$computeTabString(),!0)},this.displayIndentGuides=!0,this.setDisplayIndentGuides=function(e){return this.displayIndentGuides!=e&&(this.displayIndentGuides=e,this.$computeTabString(),!0)},this.$tabStrings=[],this.onChangeTabSize=this.$computeTabString=function(){var e=this.session.getTabSize();this.tabSize=e;for(var t=this.$tabStrings=[0],n=1;nu&&(s=l.end.row+1,l=this.session.getNextFoldLine(s,l),u=l?l.start.row:1/0),s>i)break;var h=o[a++];if(h){this.dom.removeChildren(h),this.$renderLine(h,s,s==u&&l),c&&(h.style.top=this.$lines.computeLineTop(s,e,this.session)+"px");var d=e.lineHeight*this.session.getRowLength(s)+"px";h.style.height!=d&&(c=!0,h.style.height=d)}s++}if(c)while(a0;i--)this.$lines.shift();if(t.lastRow>e.lastRow)for(i=this.session.getFoldedRowCount(e.lastRow+1,t.lastRow);i>0;i--)this.$lines.pop();e.firstRowt.lastRow&&this.$lines.push(this.$renderLinesFragment(e,t.lastRow+1,e.lastRow))},this.$renderLinesFragment=function(e,t,n){var r=[],o=t,a=this.session.getNextFoldLine(o),s=a?a.start.row:1/0;while(1){if(o>s&&(o=a.end.row+1,a=this.session.getNextFoldLine(o,a),s=a?a.start.row:1/0),o>n)break;var l=this.$lines.createCell(o,e,this.session),c=l.element;this.dom.removeChildren(c),i.setStyle(c.style,"height",this.$lines.computeLineHeight(o,e,this.session)+"px"),i.setStyle(c.style,"top",this.$lines.computeLineTop(o,e,this.session)+"px"),this.$renderLine(c,o,o==s&&a),this.$useLineGroups()?c.className="ace_line_group":c.className="ace_line",r.push(l),o++}return r},this.update=function(e){this.$lines.moveContainer(e),this.config=e;var t=e.firstRow,n=e.lastRow,r=this.$lines;while(r.getLength())r.pop();r.push(this.$renderLinesFragment(e,t,n))},this.$textToken={text:!0,rparen:!0,lparen:!0},this.$renderToken=function(e,t,n,r){var i,a=this,s=/(\t)|( +)|([\x00-\x1f\x80-\xa0\xad\u1680\u180E\u2000-\u200f\u2028\u2029\u202F\u205F\uFEFF\uFFF9-\uFFFC]+)|(\u3000)|([\u1100-\u115F\u11A3-\u11A7\u11FA-\u11FF\u2329-\u232A\u2E80-\u2E99\u2E9B-\u2EF3\u2F00-\u2FD5\u2FF0-\u2FFB\u3001-\u303E\u3041-\u3096\u3099-\u30FF\u3105-\u312D\u3131-\u318E\u3190-\u31BA\u31C0-\u31E3\u31F0-\u321E\u3220-\u3247\u3250-\u32FE\u3300-\u4DBF\u4E00-\uA48C\uA490-\uA4C6\uA960-\uA97C\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFAFF\uFE10-\uFE19\uFE30-\uFE52\uFE54-\uFE66\uFE68-\uFE6B\uFF01-\uFF60\uFFE0-\uFFE6]|[\uD800-\uDBFF][\uDC00-\uDFFF])/g,l=this.dom.createFragment(this.element),c=0;while(i=s.exec(r)){var u=i[1],h=i[2],d=i[3],f=i[4],p=i[5];if(a.showSpaces||!h){var m=c!=i.index?r.slice(c,i.index):"";if(c=i.index+i[0].length,m&&l.appendChild(this.dom.createTextNode(m,this.element)),u){var g=a.session.getScreenTabSize(t+i.index);l.appendChild(a.$tabStrings[g].cloneNode(!0)),t+=g-1}else if(h)if(a.showSpaces){var v=this.dom.createElement("span");v.className="ace_invisible ace_invisible_space",v.textContent=o.stringRepeat(a.SPACE_CHAR,h.length),l.appendChild(v)}else l.appendChild(this.com.createTextNode(h,this.element));else if(d){v=this.dom.createElement("span");v.className="ace_invisible ace_invisible_space ace_invalid",v.textContent=o.stringRepeat(a.SPACE_CHAR,d.length),l.appendChild(v)}else if(f){t+=1;v=this.dom.createElement("span");v.style.width=2*a.config.characterWidth+"px",v.className=a.showSpaces?"ace_cjk ace_invisible ace_invisible_space":"ace_cjk",v.textContent=a.showSpaces?a.SPACE_CHAR:f,l.appendChild(v)}else if(p){t+=1;v=this.dom.createElement("span");v.style.width=2*a.config.characterWidth+"px",v.className="ace_cjk",v.textContent=p,l.appendChild(v)}}}if(l.appendChild(this.dom.createTextNode(c?r.slice(c):r,this.element)),this.$textToken[n.type])e.appendChild(l);else{var y="ace_"+n.type.replace(/\./g," ace_");v=this.dom.createElement("span");"fold"==n.type&&(v.style.width=n.value.length*this.config.characterWidth+"px"),v.className=y,v.appendChild(l),e.appendChild(v)}return t+r.length},this.renderIndentGuide=function(e,t,n){var r=t.search(this.$indentGuideRe);if(r<=0||r>=n)return t;if(" "==t[0]){r-=r%this.tabSize;for(var i=r/this.tabSize,o=0;o=a)s=this.$renderToken(l,s,u,h.substring(0,a-r)),h=h.substring(a-r),r=a,l=this.$createLineElement(),e.appendChild(l),l.appendChild(this.dom.createTextNode(o.stringRepeat("\xa0",n.indent),this.element)),i++,s=0,a=n[i]||Number.MAX_VALUE;0!=h.length&&(r+=h.length,s=this.$renderToken(l,s,u,h))}}n[n.length-1]>this.MAX_LINE_LENGTH&&this.$renderOverflowMessage(l,s,null,"",!0)},this.$renderSimpleLine=function(e,t){var n=0,r=t[0],i=r.value;this.displayIndentGuides&&(i=this.renderIndentGuide(e,i)),i&&(n=this.$renderToken(e,n,r,i));for(var o=1;othis.MAX_LINE_LENGTH)return this.$renderOverflowMessage(e,n,r,i);n=this.$renderToken(e,n,r,i)}},this.$renderOverflowMessage=function(e,t,n,r,i){n&&this.$renderToken(e,t,n,r.slice(0,this.MAX_LINE_LENGTH-t));var o=this.dom.createElement("span");o.className="ace_inline_button ace_keyword ace_toggle_wrap",o.textContent=i?"":"",e.appendChild(o)},this.$renderLine=function(e,t,n){if(n||0==n||(n=this.session.getFoldLine(t)),n)var r=this.$getFoldLineTokens(t,n);else r=this.session.getTokens(t);var i=e;if(r.length){var o=this.session.getRowSplitData(t);if(o&&o.length){this.$renderWrappedLine(e,r,o);i=e.lastChild}else{i=e;this.$useLineGroups()&&(i=this.$createLineElement(),e.appendChild(i)),this.$renderSimpleLine(i,r)}}else this.$useLineGroups()&&(i=this.$createLineElement(),e.appendChild(i));if(this.showEOL&&i){n&&(t=n.end.row);var a=this.dom.createElement("span");a.className="ace_invisible ace_invisible_eol",a.textContent=t==this.session.getLength()-1?this.EOF_CHAR:this.EOL_CHAR,i.appendChild(a)}},this.$getFoldLineTokens=function(e,t){var n=this.session,r=[];function i(e,t,n){var i=0,o=0;while(o+e[i].value.lengthn-t&&(a=a.substring(0,n-t)),r.push({type:e[i].type,value:a}),o=t+a.length,i+=1}while(on?r.push({type:e[i].type,value:a.substring(0,n-o)}):r.push(e[i]),o+=a.length,i+=1}}var o=n.getTokens(e);return t.walk(function(e,t,a,s,l){null!=e?r.push({type:"fold",value:e}):(l&&(o=n.getTokens(t)),o.length&&i(o,s,a))},t.end.row,this.session.getLine(t.end.row).length),r},this.$useLineGroups=function(){return this.session.getUseWrapMode()},this.destroy=function(){}}).call(l.prototype),t.Text=l}),ace.define("ace/layer/cursor",["require","exports","module","ace/lib/dom"],function(e,t,n){"use strict";var r=e("../lib/dom"),i=function(e){this.element=r.createElement("div"),this.element.className="ace_layer ace_cursor-layer",e.appendChild(this.element),this.isVisible=!1,this.isBlinking=!0,this.blinkInterval=1e3,this.smoothBlinking=!1,this.cursors=[],this.cursor=this.addCursor(),r.addCssClass(this.element,"ace_hidden-cursors"),this.$updateCursors=this.$updateOpacity.bind(this)};(function(){this.$updateOpacity=function(e){for(var t=this.cursors,n=t.length;n--;)r.setStyle(t[n].style,"opacity",e?"":"0")},this.$startCssAnimation=function(){for(var e=this.cursors,t=e.length;t--;)e[t].style.animationDuration=this.blinkInterval+"ms";setTimeout(function(){r.addCssClass(this.element,"ace_animate-blinking")}.bind(this))},this.$stopCssAnimation=function(){r.removeCssClass(this.element,"ace_animate-blinking")},this.$padding=0,this.setPadding=function(e){this.$padding=e},this.setSession=function(e){this.session=e},this.setBlinking=function(e){e!=this.isBlinking&&(this.isBlinking=e,this.restartTimer())},this.setBlinkInterval=function(e){e!=this.blinkInterval&&(this.blinkInterval=e,this.restartTimer())},this.setSmoothBlinking=function(e){e!=this.smoothBlinking&&(this.smoothBlinking=e,r.setCssClass(this.element,"ace_smooth-blinking",e),this.$updateCursors(!0),this.restartTimer())},this.addCursor=function(){var e=r.createElement("div");return e.className="ace_cursor",this.element.appendChild(e),this.cursors.push(e),e},this.removeCursor=function(){if(this.cursors.length>1){var e=this.cursors.pop();return e.parentNode.removeChild(e),e}},this.hideCursor=function(){this.isVisible=!1,r.addCssClass(this.element,"ace_hidden-cursors"),this.restartTimer()},this.showCursor=function(){this.isVisible=!0,r.removeCssClass(this.element,"ace_hidden-cursors"),this.restartTimer()},this.restartTimer=function(){var e=this.$updateCursors;if(clearInterval(this.intervalId),clearTimeout(this.timeoutId),this.$stopCssAnimation(),this.smoothBlinking&&r.removeCssClass(this.element,"ace_smooth-blinking"),e(!0),this.isBlinking&&this.blinkInterval&&this.isVisible)if(this.smoothBlinking&&setTimeout(function(){r.addCssClass(this.element,"ace_smooth-blinking")}.bind(this)),r.HAS_CSS_ANIMATION)this.$startCssAnimation();else{var t=function(){this.timeoutId=setTimeout(function(){e(!1)},.6*this.blinkInterval)}.bind(this);this.intervalId=setInterval(function(){e(!0),t()},this.blinkInterval),t()}else this.$stopCssAnimation()},this.getPixelPosition=function(e,t){if(!this.config||!this.session)return{left:0,top:0};e||(e=this.session.selection.getCursor());var n=this.session.documentToScreenPosition(e),r=this.$padding+(this.session.$bidiHandler.isBidiRow(n.row,e.row)?this.session.$bidiHandler.getPosLeft(n.column):n.column*this.config.characterWidth),i=(n.row-(t?this.config.firstRowScreen:0))*this.config.lineHeight;return{left:r,top:i}},this.isCursorInView=function(e,t){return e.top>=0&&e.tope.height+e.offset||a.top<0)&&n>1)){var s=this.cursors[i++]||this.addCursor(),l=s.style;this.drawCursor?this.drawCursor(s,a,e,t[n],this.session):this.isCursorInView(a,e)?(r.setStyle(l,"display","block"),r.translate(s,a.left,a.top),r.setStyle(l,"width",Math.round(e.characterWidth)+"px"),r.setStyle(l,"height",e.lineHeight+"px")):r.setStyle(l,"display","none")}}while(this.cursors.length>i)this.removeCursor();var c=this.session.getOverwrite();this.$setOverwrite(c),this.$pixelPos=a,this.restartTimer()},this.drawCursor=null,this.$setOverwrite=function(e){e!=this.overwrite&&(this.overwrite=e,e?r.addCssClass(this.element,"ace_overwrite-cursors"):r.removeCssClass(this.element,"ace_overwrite-cursors"))},this.destroy=function(){clearInterval(this.intervalId),clearTimeout(this.timeoutId)}}).call(i.prototype),t.Cursor=i}),ace.define("ace/scrollbar",["require","exports","module","ace/lib/oop","ace/lib/dom","ace/lib/event","ace/lib/event_emitter"],function(e,t,n){"use strict";var r=e("./lib/oop"),i=e("./lib/dom"),o=e("./lib/event"),a=e("./lib/event_emitter").EventEmitter,s=32768,l=function(e){this.element=i.createElement("div"),this.element.className="ace_scrollbar ace_scrollbar"+this.classSuffix,this.inner=i.createElement("div"),this.inner.className="ace_scrollbar-inner",this.inner.textContent="\xa0",this.element.appendChild(this.inner),e.appendChild(this.element),this.setVisible(!1),this.skipEvent=!1,o.addListener(this.element,"scroll",this.onScroll.bind(this)),o.addListener(this.element,"mousedown",o.preventDefault)};(function(){r.implement(this,a),this.setVisible=function(e){this.element.style.display=e?"":"none",this.isVisible=e,this.coeff=1}}).call(l.prototype);var c=function(e,t){l.call(this,e),this.scrollTop=0,this.scrollHeight=0,t.$scrollbarWidth=this.width=i.scrollbarWidth(e.ownerDocument),this.inner.style.width=this.element.style.width=(this.width||15)+5+"px",this.$minWidth=0};r.inherits(c,l),function(){this.classSuffix="-v",this.onScroll=function(){if(!this.skipEvent){if(this.scrollTop=this.element.scrollTop,1!=this.coeff){var e=this.element.clientHeight/this.scrollHeight;this.scrollTop=this.scrollTop*(1-e)/(this.coeff-e)}this._emit("scroll",{data:this.scrollTop})}this.skipEvent=!1},this.getWidth=function(){return Math.max(this.isVisible?this.width:0,this.$minWidth||0)},this.setHeight=function(e){this.element.style.height=e+"px"},this.setInnerHeight=this.setScrollHeight=function(e){this.scrollHeight=e,e>s?(this.coeff=s/e,e=s):1!=this.coeff&&(this.coeff=1),this.inner.style.height=e+"px"},this.setScrollTop=function(e){this.scrollTop!=e&&(this.skipEvent=!0,this.scrollTop=e,this.element.scrollTop=e*this.coeff)}}.call(c.prototype);var u=function(e,t){l.call(this,e),this.scrollLeft=0,this.height=t.$scrollbarWidth,this.inner.style.height=this.element.style.height=(this.height||15)+5+"px"};r.inherits(u,l),function(){this.classSuffix="-h",this.onScroll=function(){this.skipEvent||(this.scrollLeft=this.element.scrollLeft,this._emit("scroll",{data:this.scrollLeft})),this.skipEvent=!1},this.getHeight=function(){return this.isVisible?this.height:0},this.setWidth=function(e){this.element.style.width=e+"px"},this.setInnerWidth=function(e){this.inner.style.width=e+"px"},this.setScrollWidth=function(e){this.inner.style.width=e+"px"},this.setScrollLeft=function(e){this.scrollLeft!=e&&(this.skipEvent=!0,this.scrollLeft=this.element.scrollLeft=e)}}.call(u.prototype),t.ScrollBar=c,t.ScrollBarV=c,t.ScrollBarH=u,t.VScrollBar=c,t.HScrollBar=u}),ace.define("ace/renderloop",["require","exports","module","ace/lib/event"],function(e,t,n){"use strict";var r=e("./lib/event"),i=function(e,t){this.onRender=e,this.pending=!1,this.changes=0,this.$recursionLimit=2,this.window=t||window;var n=this;this._flush=function(e){n.pending=!1;var t=n.changes;if(t&&(r.blockIdle(100),n.changes=0,n.onRender(t)),n.changes){if(n.$recursionLimit--<0)return;n.schedule()}else n.$recursionLimit=2}};(function(){this.schedule=function(e){this.changes=this.changes|e,this.changes&&!this.pending&&(r.nextFrame(this._flush),this.pending=!0)},this.clear=function(e){var t=this.changes;return this.changes=0,t}}).call(i.prototype),t.RenderLoop=i}),ace.define("ace/layer/font_metrics",["require","exports","module","ace/lib/oop","ace/lib/dom","ace/lib/lang","ace/lib/event","ace/lib/useragent","ace/lib/event_emitter"],function(e,t,n){var r=e("../lib/oop"),i=e("../lib/dom"),o=e("../lib/lang"),a=e("../lib/event"),s=e("../lib/useragent"),l=e("../lib/event_emitter").EventEmitter,c=256,u="function"==typeof ResizeObserver,h=200,d=t.FontMetrics=function(e){this.el=i.createElement("div"),this.$setMeasureNodeStyles(this.el.style,!0),this.$main=i.createElement("div"),this.$setMeasureNodeStyles(this.$main.style),this.$measureNode=i.createElement("div"),this.$setMeasureNodeStyles(this.$measureNode.style),this.el.appendChild(this.$main),this.el.appendChild(this.$measureNode),e.appendChild(this.el),this.$measureNode.textContent=o.stringRepeat("X",c),this.$characterSize={width:0,height:0},u?this.$addObserver():this.checkForSizeChanges()};(function(){r.implement(this,l),this.$characterSize={width:0,height:0},this.$setMeasureNodeStyles=function(e,t){e.width=e.height="auto",e.left=e.top="0px",e.visibility="hidden",e.position="absolute",e.whiteSpace="pre",s.isIE<8?e["font-family"]="inherit":e.font="inherit",e.overflow=t?"hidden":"visible"},this.checkForSizeChanges=function(e){if(void 0===e&&(e=this.$measureSizes()),e&&(this.$characterSize.width!==e.width||this.$characterSize.height!==e.height)){this.$measureNode.style.fontWeight="bold";var t=this.$measureSizes();this.$measureNode.style.fontWeight="",this.$characterSize=e,this.charSizes=Object.create(null),this.allowBoldFonts=t&&t.width===e.width&&t.height===e.height,this._emit("changeCharacterSize",{data:e})}},this.$addObserver=function(){var e=this;this.$observer=new window.ResizeObserver(function(t){e.checkForSizeChanges()}),this.$observer.observe(this.$measureNode)},this.$pollSizeChanges=function(){if(this.$pollSizeChangesTimer||this.$observer)return this.$pollSizeChangesTimer;var e=this;return this.$pollSizeChangesTimer=a.onIdle(function t(){e.checkForSizeChanges(),a.onIdle(t,500)},500)},this.setPolling=function(e){e?this.$pollSizeChanges():this.$pollSizeChangesTimer&&(clearInterval(this.$pollSizeChangesTimer),this.$pollSizeChangesTimer=0)},this.$measureSizes=function(e){var t={height:(e||this.$measureNode).clientHeight,width:(e||this.$measureNode).clientWidth/c};return 0===t.width||0===t.height?null:t},this.$measureCharWidth=function(e){this.$main.textContent=o.stringRepeat(e,c);var t=this.$main.getBoundingClientRect();return t.width/c},this.getCharacterWidth=function(e){var t=this.charSizes[e];return void 0===t&&(t=this.charSizes[e]=this.$measureCharWidth(e)/this.$characterSize.width),t},this.destroy=function(){clearInterval(this.$pollSizeChangesTimer),this.$observer&&this.$observer.disconnect(),this.el&&this.el.parentNode&&this.el.parentNode.removeChild(this.el)},this.$getZoom=function e(t){return t&&t.parentElement?(window.getComputedStyle(t).zoom||1)*e(t.parentElement):1},this.$initTransformMeasureNodes=function(){var e=function(e,t){return["div",{style:"position: absolute;top:"+e+"px;left:"+t+"px;"}]};this.els=i.buildDom([e(0,0),e(h,0),e(0,h),e(h,h)],this.el)},this.transformCoordinates=function(e,t){if(e){var n=this.$getZoom(this.el);e=a(1/n,e)}function r(e,t,n){var r=e[1]*t[0]-e[0]*t[1];return[(-t[1]*n[0]+t[0]*n[1])/r,(+e[1]*n[0]-e[0]*n[1])/r]}function i(e,t){return[e[0]-t[0],e[1]-t[1]]}function o(e,t){return[e[0]+t[0],e[1]+t[1]]}function a(e,t){return[e*t[0],e*t[1]]}function s(e){var t=e.getBoundingClientRect();return[t.left,t.top]}this.els||this.$initTransformMeasureNodes();var l=s(this.els[0]),c=s(this.els[1]),u=s(this.els[2]),d=s(this.els[3]),f=r(i(d,c),i(d,u),i(o(c,u),o(d,l))),p=a(1+f[0],i(c,l)),m=a(1+f[1],i(u,l));if(t){var g=t,v=f[0]*g[0]/h+f[1]*g[1]/h+1,y=o(a(g[0],p),a(g[1],m));return o(a(1/v/h,y),l)}var b=i(e,l),w=r(i(p,a(f[0],b)),i(m,a(f[1],b)),b);return a(h,w)}}).call(d.prototype)}),ace.define("ace/virtual_renderer",["require","exports","module","ace/lib/oop","ace/lib/dom","ace/config","ace/layer/gutter","ace/layer/marker","ace/layer/text","ace/layer/cursor","ace/scrollbar","ace/scrollbar","ace/renderloop","ace/layer/font_metrics","ace/lib/event_emitter","ace/lib/useragent"],function(e,t,n){"use strict";var r=e("./lib/oop"),i=e("./lib/dom"),o=e("./config"),a=e("./layer/gutter").Gutter,s=e("./layer/marker").Marker,l=e("./layer/text").Text,c=e("./layer/cursor").Cursor,u=e("./scrollbar").HScrollBar,h=e("./scrollbar").VScrollBar,d=e("./renderloop").RenderLoop,f=e("./layer/font_metrics").FontMetrics,p=e("./lib/event_emitter").EventEmitter,m='.ace_br1 {border-top-left-radius : 3px;}.ace_br2 {border-top-right-radius : 3px;}.ace_br3 {border-top-left-radius : 3px; border-top-right-radius: 3px;}.ace_br4 {border-bottom-right-radius: 3px;}.ace_br5 {border-top-left-radius : 3px; border-bottom-right-radius: 3px;}.ace_br6 {border-top-right-radius : 3px; border-bottom-right-radius: 3px;}.ace_br7 {border-top-left-radius : 3px; border-top-right-radius: 3px; border-bottom-right-radius: 3px;}.ace_br8 {border-bottom-left-radius : 3px;}.ace_br9 {border-top-left-radius : 3px; border-bottom-left-radius: 3px;}.ace_br10{border-top-right-radius : 3px; border-bottom-left-radius: 3px;}.ace_br11{border-top-left-radius : 3px; border-top-right-radius: 3px; border-bottom-left-radius: 3px;}.ace_br12{border-bottom-right-radius: 3px; border-bottom-left-radius: 3px;}.ace_br13{border-top-left-radius : 3px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px;}.ace_br14{border-top-right-radius : 3px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px;}.ace_br15{border-top-left-radius : 3px; border-top-right-radius: 3px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px;}.ace_editor {position: relative;overflow: hidden;padding: 0;font: 12px/normal \'Monaco\', \'Menlo\', \'Ubuntu Mono\', \'Consolas\', \'source-code-pro\', monospace;direction: ltr;text-align: left;-webkit-tap-highlight-color: rgba(0, 0, 0, 0);}.ace_scroller {position: absolute;overflow: hidden;top: 0;bottom: 0;background-color: inherit;-ms-user-select: none;-moz-user-select: none;-webkit-user-select: none;user-select: none;cursor: text;}.ace_content {position: absolute;box-sizing: border-box;min-width: 100%;contain: style size layout;font-variant-ligatures: no-common-ligatures;}.ace_dragging .ace_scroller:before{position: absolute;top: 0;left: 0;right: 0;bottom: 0;content: \'\';background: rgba(250, 250, 250, 0.01);z-index: 1000;}.ace_dragging.ace_dark .ace_scroller:before{background: rgba(0, 0, 0, 0.01);}.ace_selecting, .ace_selecting * {cursor: text !important;}.ace_gutter {position: absolute;overflow : hidden;width: auto;top: 0;bottom: 0;left: 0;cursor: default;z-index: 4;-ms-user-select: none;-moz-user-select: none;-webkit-user-select: none;user-select: none;contain: style size layout;}.ace_gutter-active-line {position: absolute;left: 0;right: 0;}.ace_scroller.ace_scroll-left {box-shadow: 17px 0 16px -16px rgba(0, 0, 0, 0.4) inset;}.ace_gutter-cell {position: absolute;top: 0;left: 0;right: 0;padding-left: 19px;padding-right: 6px;background-repeat: no-repeat;}.ace_gutter-cell.ace_error {background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAABOFBMVEX/////////QRswFAb/Ui4wFAYwFAYwFAaWGAfDRymzOSH/PxswFAb/SiUwFAYwFAbUPRvjQiDllog5HhHdRybsTi3/Tyv9Tir+Syj/UC3////XurebMBIwFAb/RSHbPx/gUzfdwL3kzMivKBAwFAbbvbnhPx66NhowFAYwFAaZJg8wFAaxKBDZurf/RB6mMxb/SCMwFAYwFAbxQB3+RB4wFAb/Qhy4Oh+4QifbNRcwFAYwFAYwFAb/QRzdNhgwFAYwFAbav7v/Uy7oaE68MBK5LxLewr/r2NXewLswFAaxJw4wFAbkPRy2PyYwFAaxKhLm1tMwFAazPiQwFAaUGAb/QBrfOx3bvrv/VC/maE4wFAbRPBq6MRO8Qynew8Dp2tjfwb0wFAbx6eju5+by6uns4uH9/f36+vr/GkHjAAAAYnRSTlMAGt+64rnWu/bo8eAA4InH3+DwoN7j4eLi4xP99Nfg4+b+/u9B/eDs1MD1mO7+4PHg2MXa347g7vDizMLN4eG+Pv7i5evs/v79yu7S3/DV7/498Yv24eH+4ufQ3Ozu/v7+y13sRqwAAADLSURBVHjaZc/XDsFgGIBhtDrshlitmk2IrbHFqL2pvXf/+78DPokj7+Fz9qpU/9UXJIlhmPaTaQ6QPaz0mm+5gwkgovcV6GZzd5JtCQwgsxoHOvJO15kleRLAnMgHFIESUEPmawB9ngmelTtipwwfASilxOLyiV5UVUyVAfbG0cCPHig+GBkzAENHS0AstVF6bacZIOzgLmxsHbt2OecNgJC83JERmePUYq8ARGkJx6XtFsdddBQgZE2nPR6CICZhawjA4Fb/chv+399kfR+MMMDGOQAAAABJRU5ErkJggg==");background-repeat: no-repeat;background-position: 2px center;}.ace_gutter-cell.ace_warning {background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAAmVBMVEX///8AAAD///8AAAAAAABPSzb/5sAAAAB/blH/73z/ulkAAAAAAAD85pkAAAAAAAACAgP/vGz/rkDerGbGrV7/pkQICAf////e0IsAAAD/oED/qTvhrnUAAAD/yHD/njcAAADuv2r/nz//oTj/p064oGf/zHAAAAA9Nir/tFIAAAD/tlTiuWf/tkIAAACynXEAAAAAAAAtIRW7zBpBAAAAM3RSTlMAABR1m7RXO8Ln31Z36zT+neXe5OzooRDfn+TZ4p3h2hTf4t3k3ucyrN1K5+Xaks52Sfs9CXgrAAAAjklEQVR42o3PbQ+CIBQFYEwboPhSYgoYunIqqLn6/z8uYdH8Vmdnu9vz4WwXgN/xTPRD2+sgOcZjsge/whXZgUaYYvT8QnuJaUrjrHUQreGczuEafQCO/SJTufTbroWsPgsllVhq3wJEk2jUSzX3CUEDJC84707djRc5MTAQxoLgupWRwW6UB5fS++NV8AbOZgnsC7BpEAAAAABJRU5ErkJggg==");background-position: 2px center;}.ace_gutter-cell.ace_info {background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAAAAAA6mKC9AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAAJ0Uk5TAAB2k804AAAAPklEQVQY02NgIB68QuO3tiLznjAwpKTgNyDbMegwisCHZUETUZV0ZqOquBpXj2rtnpSJT1AEnnRmL2OgGgAAIKkRQap2htgAAAAASUVORK5CYII=");background-position: 2px center;}.ace_dark .ace_gutter-cell.ace_info {background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQBAMAAADt3eJSAAAAJFBMVEUAAAChoaGAgIAqKiq+vr6tra1ZWVmUlJSbm5s8PDxubm56enrdgzg3AAAAAXRSTlMAQObYZgAAAClJREFUeNpjYMAPdsMYHegyJZFQBlsUlMFVCWUYKkAZMxZAGdxlDMQBAG+TBP4B6RyJAAAAAElFTkSuQmCC");}.ace_scrollbar {contain: strict;position: absolute;right: 0;bottom: 0;z-index: 6;}.ace_scrollbar-inner {position: absolute;cursor: text;left: 0;top: 0;}.ace_scrollbar-v{overflow-x: hidden;overflow-y: scroll;top: 0;}.ace_scrollbar-h {overflow-x: scroll;overflow-y: hidden;left: 0;}.ace_print-margin {position: absolute;height: 100%;}.ace_text-input {position: absolute;z-index: 0;width: 0.5em;height: 1em;opacity: 0;background: transparent;-moz-appearance: none;appearance: none;border: none;resize: none;outline: none;overflow: hidden;font: inherit;padding: 0 1px;margin: 0 -1px;contain: strict;-ms-user-select: text;-moz-user-select: text;-webkit-user-select: text;user-select: text;white-space: pre!important;}.ace_text-input.ace_composition {background: transparent;color: inherit;z-index: 1000;opacity: 1;}.ace_composition_placeholder { color: transparent }.ace_composition_marker { border-bottom: 1px solid;position: absolute;border-radius: 0;margin-top: 1px;}[ace_nocontext=true] {transform: none!important;filter: none!important;clip-path: none!important;mask : none!important;contain: none!important;perspective: none!important;mix-blend-mode: initial!important;z-index: auto;}.ace_layer {z-index: 1;position: absolute;overflow: hidden;word-wrap: normal;white-space: pre;height: 100%;width: 100%;box-sizing: border-box;pointer-events: none;}.ace_gutter-layer {position: relative;width: auto;text-align: right;pointer-events: auto;height: 1000000px;contain: style size layout;}.ace_text-layer {font: inherit !important;position: absolute;height: 1000000px;width: 1000000px;contain: style size layout;}.ace_text-layer > .ace_line, .ace_text-layer > .ace_line_group {contain: style size layout;position: absolute;top: 0;left: 0;right: 0;}.ace_hidpi .ace_text-layer,.ace_hidpi .ace_gutter-layer,.ace_hidpi .ace_content,.ace_hidpi .ace_gutter {contain: strict;will-change: transform;}.ace_hidpi .ace_text-layer > .ace_line, .ace_hidpi .ace_text-layer > .ace_line_group {contain: strict;}.ace_cjk {display: inline-block;text-align: center;}.ace_cursor-layer {z-index: 4;}.ace_cursor {z-index: 4;position: absolute;box-sizing: border-box;border-left: 2px solid;transform: translatez(0);}.ace_multiselect .ace_cursor {border-left-width: 1px;}.ace_slim-cursors .ace_cursor {border-left-width: 1px;}.ace_overwrite-cursors .ace_cursor {border-left-width: 0;border-bottom: 1px solid;}.ace_hidden-cursors .ace_cursor {opacity: 0.2;}.ace_hasPlaceholder .ace_hidden-cursors .ace_cursor {opacity: 0;}.ace_smooth-blinking .ace_cursor {transition: opacity 0.18s;}.ace_animate-blinking .ace_cursor {animation-duration: 1000ms;animation-timing-function: step-end;animation-name: blink-ace-animate;animation-iteration-count: infinite;}.ace_animate-blinking.ace_smooth-blinking .ace_cursor {animation-duration: 1000ms;animation-timing-function: ease-in-out;animation-name: blink-ace-animate-smooth;}@keyframes blink-ace-animate {from, to { opacity: 1; }60% { opacity: 0; }}@keyframes blink-ace-animate-smooth {from, to { opacity: 1; }45% { opacity: 1; }60% { opacity: 0; }85% { opacity: 0; }}.ace_marker-layer .ace_step, .ace_marker-layer .ace_stack {position: absolute;z-index: 3;}.ace_marker-layer .ace_selection {position: absolute;z-index: 5;}.ace_marker-layer .ace_bracket {position: absolute;z-index: 6;}.ace_marker-layer .ace_error_bracket {position: absolute;border-bottom: 1px solid #DE5555;border-radius: 0;}.ace_marker-layer .ace_active-line {position: absolute;z-index: 2;}.ace_marker-layer .ace_selected-word {position: absolute;z-index: 4;box-sizing: border-box;}.ace_line .ace_fold {box-sizing: border-box;display: inline-block;height: 11px;margin-top: -2px;vertical-align: middle;background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABEAAAAJCAYAAADU6McMAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAJpJREFUeNpi/P//PwOlgAXGYGRklAVSokD8GmjwY1wasKljQpYACtpCFeADcHVQfQyMQAwzwAZI3wJKvCLkfKBaMSClBlR7BOQikCFGQEErIH0VqkabiGCAqwUadAzZJRxQr/0gwiXIal8zQQPnNVTgJ1TdawL0T5gBIP1MUJNhBv2HKoQHHjqNrA4WO4zY0glyNKLT2KIfIMAAQsdgGiXvgnYAAAAASUVORK5CYII="),url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAA3CAYAAADNNiA5AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAACJJREFUeNpi+P//fxgTAwPDBxDxD078RSX+YeEyDFMCIMAAI3INmXiwf2YAAAAASUVORK5CYII=");background-repeat: no-repeat, repeat-x;background-position: center center, top left;color: transparent;border: 1px solid black;border-radius: 2px;cursor: pointer;pointer-events: auto;}.ace_dark .ace_fold {}.ace_fold:hover{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABEAAAAJCAYAAADU6McMAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAJpJREFUeNpi/P//PwOlgAXGYGRklAVSokD8GmjwY1wasKljQpYACtpCFeADcHVQfQyMQAwzwAZI3wJKvCLkfKBaMSClBlR7BOQikCFGQEErIH0VqkabiGCAqwUadAzZJRxQr/0gwiXIal8zQQPnNVTgJ1TdawL0T5gBIP1MUJNhBv2HKoQHHjqNrA4WO4zY0glyNKLT2KIfIMAAQsdgGiXvgnYAAAAASUVORK5CYII="),url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAA3CAYAAADNNiA5AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAACBJREFUeNpi+P//fz4TAwPDZxDxD5X4i5fLMEwJgAADAEPVDbjNw87ZAAAAAElFTkSuQmCC");}.ace_tooltip {background-color: #FFF;background-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.1));border: 1px solid gray;border-radius: 1px;box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);color: black;max-width: 100%;padding: 3px 4px;position: fixed;z-index: 999999;box-sizing: border-box;cursor: default;white-space: pre;word-wrap: break-word;line-height: normal;font-style: normal;font-weight: normal;letter-spacing: normal;pointer-events: none;}.ace_folding-enabled > .ace_gutter-cell {padding-right: 13px;}.ace_fold-widget {box-sizing: border-box;margin: 0 -12px 0 1px;display: none;width: 11px;vertical-align: top;background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAANElEQVR42mWKsQ0AMAzC8ixLlrzQjzmBiEjp0A6WwBCSPgKAXoLkqSot7nN3yMwR7pZ32NzpKkVoDBUxKAAAAABJRU5ErkJggg==");background-repeat: no-repeat;background-position: center;border-radius: 3px;border: 1px solid transparent;cursor: pointer;}.ace_folding-enabled .ace_fold-widget {display: inline-block; }.ace_fold-widget.ace_end {background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAANElEQVR42m3HwQkAMAhD0YzsRchFKI7sAikeWkrxwScEB0nh5e7KTPWimZki4tYfVbX+MNl4pyZXejUO1QAAAABJRU5ErkJggg==");}.ace_fold-widget.ace_closed {background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAAGCAYAAAAG5SQMAAAAOUlEQVR42jXKwQkAMAgDwKwqKD4EwQ26sSOkVWjgIIHAzPiCgaqiqnJHZnKICBERHN194O5b9vbLuAVRL+l0YWnZAAAAAElFTkSuQmCCXA==");}.ace_fold-widget:hover {border: 1px solid rgba(0, 0, 0, 0.3);background-color: rgba(255, 255, 255, 0.2);box-shadow: 0 1px 1px rgba(255, 255, 255, 0.7);}.ace_fold-widget:active {border: 1px solid rgba(0, 0, 0, 0.4);background-color: rgba(0, 0, 0, 0.05);box-shadow: 0 1px 1px rgba(255, 255, 255, 0.8);}.ace_dark .ace_fold-widget {background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAHklEQVQIW2P4//8/AzoGEQ7oGCaLLAhWiSwB146BAQCSTPYocqT0AAAAAElFTkSuQmCC");}.ace_dark .ace_fold-widget.ace_end {background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAH0lEQVQIW2P4//8/AxQ7wNjIAjDMgC4AxjCVKBirIAAF0kz2rlhxpAAAAABJRU5ErkJggg==");}.ace_dark .ace_fold-widget.ace_closed {background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAAFCAYAAACAcVaiAAAAHElEQVQIW2P4//+/AxAzgDADlOOAznHAKgPWAwARji8UIDTfQQAAAABJRU5ErkJggg==");}.ace_dark .ace_fold-widget:hover {box-shadow: 0 1px 1px rgba(255, 255, 255, 0.2);background-color: rgba(255, 255, 255, 0.1);}.ace_dark .ace_fold-widget:active {box-shadow: 0 1px 1px rgba(255, 255, 255, 0.2);}.ace_inline_button {border: 1px solid lightgray;display: inline-block;margin: -1px 8px;padding: 0 5px;pointer-events: auto;cursor: pointer;}.ace_inline_button:hover {border-color: gray;background: rgba(200,200,200,0.2);display: inline-block;pointer-events: auto;}.ace_fold-widget.ace_invalid {background-color: #FFB4B4;border-color: #DE5555;}.ace_fade-fold-widgets .ace_fold-widget {transition: opacity 0.4s ease 0.05s;opacity: 0;}.ace_fade-fold-widgets:hover .ace_fold-widget {transition: opacity 0.05s ease 0.05s;opacity:1;}.ace_underline {text-decoration: underline;}.ace_bold {font-weight: bold;}.ace_nobold .ace_bold {font-weight: normal;}.ace_italic {font-style: italic;}.ace_error-marker {background-color: rgba(255, 0, 0,0.2);position: absolute;z-index: 9;}.ace_highlight-marker {background-color: rgba(255, 255, 0,0.2);position: absolute;z-index: 8;}.ace_mobile-menu {position: absolute;line-height: 1.5;border-radius: 4px;-ms-user-select: none;-moz-user-select: none;-webkit-user-select: none;user-select: none;background: white;box-shadow: 1px 3px 2px grey;border: 1px solid #dcdcdc;color: black;}.ace_dark > .ace_mobile-menu {background: #333;color: #ccc;box-shadow: 1px 3px 2px grey;border: 1px solid #444;}.ace_mobile-button {padding: 2px;cursor: pointer;overflow: hidden;}.ace_mobile-button:hover {background-color: #eee;opacity:1;}.ace_mobile-button:active {background-color: #ddd;}.ace_placeholder {font-family: arial;transform: scale(0.9);transform-origin: left;white-space: pre;opacity: 0.7;margin: 0 10px;}',g=e("./lib/useragent"),v=g.isIE;i.importCssString(m,"ace_editor.css");var y=function(e,t){var n=this;this.container=e||i.createElement("div"),i.addCssClass(this.container,"ace_editor"),i.HI_DPI&&i.addCssClass(this.container,"ace_hidpi"),this.setTheme(t),this.$gutter=i.createElement("div"),this.$gutter.className="ace_gutter",this.container.appendChild(this.$gutter),this.$gutter.setAttribute("aria-hidden",!0),this.scroller=i.createElement("div"),this.scroller.className="ace_scroller",this.container.appendChild(this.scroller),this.content=i.createElement("div"),this.content.className="ace_content",this.scroller.appendChild(this.content),this.$gutterLayer=new a(this.$gutter),this.$gutterLayer.on("changeGutterWidth",this.onGutterResize.bind(this)),this.$markerBack=new s(this.content);var r=this.$textLayer=new l(this.content);this.canvas=r.element,this.$markerFront=new s(this.content),this.$cursorLayer=new c(this.content),this.$horizScroll=!1,this.$vScroll=!1,this.scrollBar=this.scrollBarV=new h(this.container,this),this.scrollBarH=new u(this.container,this),this.scrollBarV.on("scroll",function(e){n.$scrollAnimation||n.session.setScrollTop(e.data-n.scrollMargin.top)}),this.scrollBarH.on("scroll",function(e){n.$scrollAnimation||n.session.setScrollLeft(e.data-n.scrollMargin.left)}),this.scrollTop=0,this.scrollLeft=0,this.cursorPos={row:0,column:0},this.$fontMetrics=new f(this.container),this.$textLayer.$setFontMetrics(this.$fontMetrics),this.$textLayer.on("changeCharacterSize",function(e){n.updateCharacterSize(),n.onResize(!0,n.gutterWidth,n.$size.width,n.$size.height),n._signal("changeCharacterSize",e)}),this.$size={width:0,height:0,scrollerHeight:0,scrollerWidth:0,$dirty:!0},this.layerConfig={width:1,padding:0,firstRow:0,firstRowScreen:0,lastRow:0,lineHeight:0,characterWidth:0,minHeight:1,maxHeight:1,offset:0,height:1,gutterOffset:1},this.scrollMargin={left:0,right:0,top:0,bottom:0,v:0,h:0},this.margin={left:0,right:0,top:0,bottom:0,v:0,h:0},this.$keepTextAreaAtCursor=!g.isIOS,this.$loop=new d(this.$renderChanges.bind(this),this.container.ownerDocument.defaultView),this.$loop.schedule(this.CHANGE_FULL),this.updateCharacterSize(),this.setPadding(4),o.resetOptions(this),o._signal("renderer",this)};(function(){this.CHANGE_CURSOR=1,this.CHANGE_MARKER=2,this.CHANGE_GUTTER=4,this.CHANGE_SCROLL=8,this.CHANGE_LINES=16,this.CHANGE_TEXT=32,this.CHANGE_SIZE=64,this.CHANGE_MARKER_BACK=128,this.CHANGE_MARKER_FRONT=256,this.CHANGE_FULL=512,this.CHANGE_H_SCROLL=1024,r.implement(this,p),this.updateCharacterSize=function(){this.$textLayer.allowBoldFonts!=this.$allowBoldFonts&&(this.$allowBoldFonts=this.$textLayer.allowBoldFonts,this.setStyle("ace_nobold",!this.$allowBoldFonts)),this.layerConfig.characterWidth=this.characterWidth=this.$textLayer.getCharacterWidth(),this.layerConfig.lineHeight=this.lineHeight=this.$textLayer.getLineHeight(),this.$updatePrintMargin(),i.setStyle(this.scroller.style,"line-height",this.lineHeight+"px")},this.setSession=function(e){this.session&&this.session.doc.off("changeNewLineMode",this.onChangeNewLineMode),this.session=e,e&&this.scrollMargin.top&&e.getScrollTop()<=0&&e.setScrollTop(-this.scrollMargin.top),this.$cursorLayer.setSession(e),this.$markerBack.setSession(e),this.$markerFront.setSession(e),this.$gutterLayer.setSession(e),this.$textLayer.setSession(e),e&&(this.$loop.schedule(this.CHANGE_FULL),this.session.$setFontMetrics(this.$fontMetrics),this.scrollBarH.scrollLeft=this.scrollBarV.scrollTop=null,this.onChangeNewLineMode=this.onChangeNewLineMode.bind(this),this.onChangeNewLineMode(),this.session.doc.on("changeNewLineMode",this.onChangeNewLineMode))},this.updateLines=function(e,t,n){if(void 0===t&&(t=1/0),this.$changedLines?(this.$changedLines.firstRow>e&&(this.$changedLines.firstRow=e),this.$changedLines.lastRowthis.layerConfig.lastRow||this.$loop.schedule(this.CHANGE_LINES)},this.onChangeNewLineMode=function(){this.$loop.schedule(this.CHANGE_TEXT),this.$textLayer.$updateEolChar(),this.session.$bidiHandler.setEolChar(this.$textLayer.EOL_CHAR)},this.onChangeTabSize=function(){this.$loop.schedule(this.CHANGE_TEXT|this.CHANGE_MARKER),this.$textLayer.onChangeTabSize()},this.updateText=function(){this.$loop.schedule(this.CHANGE_TEXT)},this.updateFull=function(e){e?this.$renderChanges(this.CHANGE_FULL,!0):this.$loop.schedule(this.CHANGE_FULL)},this.updateFontSize=function(){this.$textLayer.checkForSizeChanges()},this.$changes=0,this.$updateSizeAsync=function(){this.$loop.pending?this.$size.$dirty=!0:this.onResize()},this.onResize=function(e,t,n,r){if(!(this.resizing>2)){this.resizing>0?this.resizing++:this.resizing=e?1:0;var i=this.container;r||(r=i.clientHeight||i.scrollHeight),n||(n=i.clientWidth||i.scrollWidth);var o=this.$updateCachedSize(e,t,n,r);if(!this.$size.scrollerHeight||!n&&!r)return this.resizing=0;e&&(this.$gutterLayer.$padding=null),e?this.$renderChanges(o|this.$changes,!0):this.$loop.schedule(o|this.$changes),this.resizing&&(this.resizing=0),this.scrollBarV.scrollLeft=this.scrollBarV.scrollTop=null}},this.$updateCachedSize=function(e,t,n,r){r-=this.$extraHeight||0;var o=0,a=this.$size,s={width:a.width,height:a.height,scrollerHeight:a.scrollerHeight,scrollerWidth:a.scrollerWidth};if(r&&(e||a.height!=r)&&(a.height=r,o|=this.CHANGE_SIZE,a.scrollerHeight=a.height,this.$horizScroll&&(a.scrollerHeight-=this.scrollBarH.getHeight()),this.scrollBarV.element.style.bottom=this.scrollBarH.getHeight()+"px",o|=this.CHANGE_SCROLL),n&&(e||a.width!=n)){o|=this.CHANGE_SIZE,a.width=n,null==t&&(t=this.$showGutter?this.$gutter.offsetWidth:0),this.gutterWidth=t,i.setStyle(this.scrollBarH.element.style,"left",t+"px"),i.setStyle(this.scroller.style,"left",t+this.margin.left+"px"),a.scrollerWidth=Math.max(0,n-t-this.scrollBarV.getWidth()-this.margin.h),i.setStyle(this.$gutter.style,"left",this.margin.left+"px");var l=this.scrollBarV.getWidth()+"px";i.setStyle(this.scrollBarH.element.style,"right",l),i.setStyle(this.scroller.style,"right",l),i.setStyle(this.scroller.style,"bottom",this.scrollBarH.getHeight()),(this.session&&this.session.getUseWrapMode()&&this.adjustWrapLimit()||e)&&(o|=this.CHANGE_FULL)}return a.$dirty=!n||!r,o&&this._signal("resize",s),o},this.onGutterResize=function(e){var t=this.$showGutter?e:0;t!=this.gutterWidth&&(this.$changes|=this.$updateCachedSize(!0,t,this.$size.width,this.$size.height)),this.session.getUseWrapMode()&&this.adjustWrapLimit()?this.$loop.schedule(this.CHANGE_FULL):this.$size.$dirty?this.$loop.schedule(this.CHANGE_FULL):this.$computeLayerConfig()},this.adjustWrapLimit=function(){var e=this.$size.scrollerWidth-2*this.$padding,t=Math.floor(e/this.characterWidth);return this.session.adjustWrapLimit(t,this.$showPrintMargin&&this.$printMarginColumn)},this.setAnimatedScroll=function(e){this.setOption("animatedScroll",e)},this.getAnimatedScroll=function(){return this.$animatedScroll},this.setShowInvisibles=function(e){this.setOption("showInvisibles",e),this.session.$bidiHandler.setShowInvisibles(e)},this.getShowInvisibles=function(){return this.getOption("showInvisibles")},this.getDisplayIndentGuides=function(){return this.getOption("displayIndentGuides")},this.setDisplayIndentGuides=function(e){this.setOption("displayIndentGuides",e)},this.setShowPrintMargin=function(e){this.setOption("showPrintMargin",e)},this.getShowPrintMargin=function(){return this.getOption("showPrintMargin")},this.setPrintMarginColumn=function(e){this.setOption("printMarginColumn",e)},this.getPrintMarginColumn=function(){return this.getOption("printMarginColumn")},this.getShowGutter=function(){return this.getOption("showGutter")},this.setShowGutter=function(e){return this.setOption("showGutter",e)},this.getFadeFoldWidgets=function(){return this.getOption("fadeFoldWidgets")},this.setFadeFoldWidgets=function(e){this.setOption("fadeFoldWidgets",e)},this.setHighlightGutterLine=function(e){this.setOption("highlightGutterLine",e)},this.getHighlightGutterLine=function(){return this.getOption("highlightGutterLine")},this.$updatePrintMargin=function(){if(this.$showPrintMargin||this.$printMarginEl){if(!this.$printMarginEl){var e=i.createElement("div");e.className="ace_layer ace_print-margin-layer",this.$printMarginEl=i.createElement("div"),this.$printMarginEl.className="ace_print-margin",e.appendChild(this.$printMarginEl),this.content.insertBefore(e,this.content.firstChild)}var t=this.$printMarginEl.style;t.left=Math.round(this.characterWidth*this.$printMarginColumn+this.$padding)+"px",t.visibility=this.$showPrintMargin?"visible":"hidden",this.session&&-1==this.session.$wrap&&this.adjustWrapLimit()}},this.getContainerElement=function(){return this.container},this.getMouseEventTarget=function(){return this.scroller},this.getTextAreaContainer=function(){return this.container},this.$moveTextAreaToCursor=function(){if(!this.$isMousePressed){var e=this.textarea.style,t=this.$composition;if(this.$keepTextAreaAtCursor||t){var n=this.$cursorLayer.$pixelPos;if(n){t&&t.markerRange&&(n=this.$cursorLayer.getPixelPosition(t.markerRange.start,!0));var r=this.layerConfig,o=n.top,a=n.left;o-=r.offset;var s=t&&t.useTextareaForIME?this.lineHeight:v?0:1;if(o<0||o>r.height-s)i.translate(this.textarea,0,0);else{var l=1,c=this.$size.height-s;if(t)if(t.useTextareaForIME){var u=this.textarea.value;l=this.characterWidth*this.session.$getStringScreenWidth(u)[0]}else o+=this.lineHeight+2;else o+=this.lineHeight;a-=this.scrollLeft,a>this.$size.scrollerWidth-l&&(a=this.$size.scrollerWidth-l),a+=this.gutterWidth+this.margin.left,i.setStyle(e,"height",s+"px"),i.setStyle(e,"width",l+"px"),i.translate(this.textarea,Math.min(a,this.$size.scrollerWidth-l),Math.min(o,c))}}}else i.translate(this.textarea,-100,0)}},this.getFirstVisibleRow=function(){return this.layerConfig.firstRow},this.getFirstFullyVisibleRow=function(){return this.layerConfig.firstRow+(0===this.layerConfig.offset?0:1)},this.getLastFullyVisibleRow=function(){var e=this.layerConfig,t=e.lastRow,n=this.session.documentToScreenRow(t,0)*e.lineHeight;return n-this.session.getScrollTop()>e.height-e.lineHeight?t-1:t},this.getLastVisibleRow=function(){return this.layerConfig.lastRow},this.$padding=null,this.setPadding=function(e){this.$padding=e,this.$textLayer.setPadding(e),this.$cursorLayer.setPadding(e),this.$markerFront.setPadding(e),this.$markerBack.setPadding(e),this.$loop.schedule(this.CHANGE_FULL),this.$updatePrintMargin()},this.setScrollMargin=function(e,t,n,r){var i=this.scrollMargin;i.top=0|e,i.bottom=0|t,i.right=0|r,i.left=0|n,i.v=i.top+i.bottom,i.h=i.left+i.right,i.top&&this.scrollTop<=0&&this.session&&this.session.setScrollTop(-i.top),this.updateFull()},this.setMargin=function(e,t,n,r){var i=this.margin;i.top=0|e,i.bottom=0|t,i.right=0|r,i.left=0|n,i.v=i.top+i.bottom,i.h=i.left+i.right,this.$updateCachedSize(!0,this.gutterWidth,this.$size.width,this.$size.height),this.updateFull()},this.getHScrollBarAlwaysVisible=function(){return this.$hScrollBarAlwaysVisible},this.setHScrollBarAlwaysVisible=function(e){this.setOption("hScrollBarAlwaysVisible",e)},this.getVScrollBarAlwaysVisible=function(){return this.$vScrollBarAlwaysVisible},this.setVScrollBarAlwaysVisible=function(e){this.setOption("vScrollBarAlwaysVisible",e)},this.$updateScrollBarV=function(){var e=this.layerConfig.maxHeight,t=this.$size.scrollerHeight;!this.$maxLines&&this.$scrollPastEnd&&(e-=(t-this.lineHeight)*this.$scrollPastEnd,this.scrollTop>e-t&&(e=this.scrollTop+t,this.scrollBarV.scrollTop=null)),this.scrollBarV.setScrollHeight(e+this.scrollMargin.v),this.scrollBarV.setScrollTop(this.scrollTop+this.scrollMargin.top)},this.$updateScrollBarH=function(){this.scrollBarH.setScrollWidth(this.layerConfig.width+2*this.$padding+this.scrollMargin.h),this.scrollBarH.setScrollLeft(this.scrollLeft+this.scrollMargin.left)},this.$frozen=!1,this.freeze=function(){this.$frozen=!0},this.unfreeze=function(){this.$frozen=!1},this.$renderChanges=function(e,t){if(this.$changes&&(e|=this.$changes,this.$changes=0),this.session&&this.container.offsetWidth&&!this.$frozen&&(e||t)){if(this.$size.$dirty)return this.$changes|=e,this.onResize(!0);this.lineHeight||this.$textLayer.checkForSizeChanges(),this._signal("beforeRender",e),this.session&&this.session.$bidiHandler&&this.session.$bidiHandler.updateCharacterWidths(this.$fontMetrics);var n=this.layerConfig;if(e&this.CHANGE_FULL||e&this.CHANGE_SIZE||e&this.CHANGE_TEXT||e&this.CHANGE_LINES||e&this.CHANGE_SCROLL||e&this.CHANGE_H_SCROLL){if(e|=this.$computeLayerConfig()|this.$loop.clear(),n.firstRow!=this.layerConfig.firstRow&&n.firstRowScreen==this.layerConfig.firstRowScreen){var r=this.scrollTop+(n.firstRow-this.layerConfig.firstRow)*this.lineHeight;r>0&&(this.scrollTop=r,e|=this.CHANGE_SCROLL,e|=this.$computeLayerConfig()|this.$loop.clear())}n=this.layerConfig,this.$updateScrollBarV(),e&this.CHANGE_H_SCROLL&&this.$updateScrollBarH(),i.translate(this.content,-this.scrollLeft,-n.offset);var o=n.width+2*this.$padding+"px",a=n.minHeight+"px";i.setStyle(this.content.style,"width",o),i.setStyle(this.content.style,"height",a)}if(e&this.CHANGE_H_SCROLL&&(i.translate(this.content,-this.scrollLeft,-n.offset),this.scroller.className=this.scrollLeft<=0?"ace_scroller":"ace_scroller ace_scroll-left"),e&this.CHANGE_FULL)return this.$changedLines=null,this.$textLayer.update(n),this.$showGutter&&this.$gutterLayer.update(n),this.$markerBack.update(n),this.$markerFront.update(n),this.$cursorLayer.update(n),this.$moveTextAreaToCursor(),void this._signal("afterRender",e);if(e&this.CHANGE_SCROLL)return this.$changedLines=null,e&this.CHANGE_TEXT||e&this.CHANGE_LINES?this.$textLayer.update(n):this.$textLayer.scrollLines(n),this.$showGutter&&(e&this.CHANGE_GUTTER||e&this.CHANGE_LINES?this.$gutterLayer.update(n):this.$gutterLayer.scrollLines(n)),this.$markerBack.update(n),this.$markerFront.update(n),this.$cursorLayer.update(n),this.$moveTextAreaToCursor(),void this._signal("afterRender",e);e&this.CHANGE_TEXT?(this.$changedLines=null,this.$textLayer.update(n),this.$showGutter&&this.$gutterLayer.update(n)):e&this.CHANGE_LINES?(this.$updateLines()||e&this.CHANGE_GUTTER&&this.$showGutter)&&this.$gutterLayer.update(n):e&this.CHANGE_TEXT||e&this.CHANGE_GUTTER?this.$showGutter&&this.$gutterLayer.update(n):e&this.CHANGE_CURSOR&&this.$highlightGutterLine&&this.$gutterLayer.updateLineHighlight(n),e&this.CHANGE_CURSOR&&(this.$cursorLayer.update(n),this.$moveTextAreaToCursor()),e&(this.CHANGE_MARKER|this.CHANGE_MARKER_FRONT)&&this.$markerFront.update(n),e&(this.CHANGE_MARKER|this.CHANGE_MARKER_BACK)&&this.$markerBack.update(n),this._signal("afterRender",e)}else this.$changes|=e},this.$autosize=function(){var e=this.session.getScreenLength()*this.lineHeight,t=this.$maxLines*this.lineHeight,n=Math.min(t,Math.max((this.$minLines||1)*this.lineHeight,e))+this.scrollMargin.v+(this.$extraHeight||0);this.$horizScroll&&(n+=this.scrollBarH.getHeight()),this.$maxPixelHeight&&n>this.$maxPixelHeight&&(n=this.$maxPixelHeight);var r=n<=2*this.lineHeight,i=!r&&e>t;if(n!=this.desiredHeight||this.$size.height!=this.desiredHeight||i!=this.$vScroll){i!=this.$vScroll&&(this.$vScroll=i,this.scrollBarV.setVisible(i));var o=this.container.clientWidth;this.container.style.height=n+"px",this.$updateCachedSize(!0,this.$gutterWidth,o,n),this.desiredHeight=n,this._signal("autosize")}},this.$computeLayerConfig=function(){var e=this.session,t=this.$size,n=t.height<=2*this.lineHeight,r=this.session.getScreenLength(),i=r*this.lineHeight,o=this.$getLongestLine(),a=!n&&(this.$hScrollBarAlwaysVisible||t.scrollerWidth-o-2*this.$padding<0),s=this.$horizScroll!==a;s&&(this.$horizScroll=a,this.scrollBarH.setVisible(a));var l=this.$vScroll;this.$maxLines&&this.lineHeight>1&&this.$autosize();var c=t.scrollerHeight+this.lineHeight,u=!this.$maxLines&&this.$scrollPastEnd?(t.scrollerHeight-this.lineHeight)*this.$scrollPastEnd:0;i+=u;var h=this.scrollMargin;this.session.setScrollTop(Math.max(-h.top,Math.min(this.scrollTop,i-t.scrollerHeight+h.bottom))),this.session.setScrollLeft(Math.max(-h.left,Math.min(this.scrollLeft,o+2*this.$padding-t.scrollerWidth+h.right)));var d=!n&&(this.$vScrollBarAlwaysVisible||t.scrollerHeight-i+u<0||this.scrollTop>h.top),f=l!==d;f&&(this.$vScroll=d,this.scrollBarV.setVisible(d));var p,m,g=this.scrollTop%this.lineHeight,v=Math.ceil(c/this.lineHeight)-1,y=Math.max(0,Math.round((this.scrollTop-g)/this.lineHeight)),b=y+v,w=this.lineHeight;y=e.screenToDocumentRow(y,0);var x=e.getFoldLine(y);x&&(y=x.start.row),p=e.documentToScreenRow(y,0),m=e.getRowLength(y)*w,b=Math.min(e.screenToDocumentRow(b,0),e.getLength()-1),c=t.scrollerHeight+e.getRowLength(b)*w+m,g=this.scrollTop-p*w;var _=0;return(this.layerConfig.width!=o||s)&&(_=this.CHANGE_H_SCROLL),(s||f)&&(_|=this.$updateCachedSize(!0,this.gutterWidth,t.width,t.height),this._signal("scrollbarVisibilityChanged"),f&&(o=this.$getLongestLine())),this.layerConfig={width:o,padding:this.$padding,firstRow:y,firstRowScreen:p,lastRow:b,lineHeight:w,characterWidth:this.characterWidth,minHeight:c,maxHeight:i,offset:g,gutterOffset:w?Math.max(0,Math.ceil((g+t.height-t.scrollerHeight)/w)):0,height:this.$size.scrollerHeight},this.session.$bidiHandler&&this.session.$bidiHandler.setContentWidth(o-this.$padding),_},this.$updateLines=function(){if(this.$changedLines){var e=this.$changedLines.firstRow,t=this.$changedLines.lastRow;this.$changedLines=null;var n=this.layerConfig;if(!(e>n.lastRow+1)&&!(tthis.$textLayer.MAX_LINE_LENGTH&&(e=this.$textLayer.MAX_LINE_LENGTH+30),Math.max(this.$size.scrollerWidth-2*this.$padding,Math.round(e*this.characterWidth))},this.updateFrontMarkers=function(){this.$markerFront.setMarkers(this.session.getMarkers(!0)),this.$loop.schedule(this.CHANGE_MARKER_FRONT)},this.updateBackMarkers=function(){this.$markerBack.setMarkers(this.session.getMarkers()),this.$loop.schedule(this.CHANGE_MARKER_BACK)},this.addGutterDecoration=function(e,t){this.$gutterLayer.addGutterDecoration(e,t)},this.removeGutterDecoration=function(e,t){this.$gutterLayer.removeGutterDecoration(e,t)},this.updateBreakpoints=function(e){this.$loop.schedule(this.CHANGE_GUTTER)},this.setAnnotations=function(e){this.$gutterLayer.setAnnotations(e),this.$loop.schedule(this.CHANGE_GUTTER)},this.updateCursor=function(){this.$loop.schedule(this.CHANGE_CURSOR)},this.hideCursor=function(){this.$cursorLayer.hideCursor()},this.showCursor=function(){this.$cursorLayer.showCursor()},this.scrollSelectionIntoView=function(e,t,n){this.scrollCursorIntoView(e,n),this.scrollCursorIntoView(t,n)},this.scrollCursorIntoView=function(e,t,n){if(0!==this.$size.scrollerHeight){var r=this.$cursorLayer.getPixelPosition(e),i=r.left,o=r.top,a=n&&n.top||0,s=n&&n.bottom||0,l=this.$scrollAnimation?this.session.getScrollTop():this.scrollTop;l+a>o?(t&&l+a>o+this.lineHeight&&(o-=t*this.$size.scrollerHeight),0===o&&(o=-this.scrollMargin.top),this.session.setScrollTop(o)):l+this.$size.scrollerHeight-si?(i=1-this.scrollMargin.top||(t>0&&this.session.getScrollTop()+this.$size.scrollerHeight-this.layerConfig.maxHeight<-1+this.scrollMargin.bottom||(e<0&&this.session.getScrollLeft()>=1-this.scrollMargin.left||(e>0&&this.session.getScrollLeft()+this.$size.scrollerWidth-this.layerConfig.width<-1+this.scrollMargin.right||void 0)))},this.pixelToScreenCoordinates=function(e,t){var n;if(this.$hasCssTransforms){n={top:0,left:0};var r=this.$fontMetrics.transformCoordinates([e,t]);e=r[1]-this.gutterWidth-this.margin.left,t=r[0]}else n=this.scroller.getBoundingClientRect();var i=e+this.scrollLeft-n.left-this.$padding,o=i/this.characterWidth,a=Math.floor((t+this.scrollTop-n.top)/this.lineHeight),s=this.$blockCursor?Math.floor(o):Math.round(o);return{row:a,column:s,side:o-s>0?1:-1,offsetX:i}},this.screenToTextCoordinates=function(e,t){var n;if(this.$hasCssTransforms){n={top:0,left:0};var r=this.$fontMetrics.transformCoordinates([e,t]);e=r[1]-this.gutterWidth-this.margin.left,t=r[0]}else n=this.scroller.getBoundingClientRect();var i=e+this.scrollLeft-n.left-this.$padding,o=i/this.characterWidth,a=this.$blockCursor?Math.floor(o):Math.round(o),s=Math.floor((t+this.scrollTop-n.top)/this.lineHeight);return this.session.screenToDocumentPosition(s,Math.max(a,0),i)},this.textToScreenCoordinates=function(e,t){var n=this.scroller.getBoundingClientRect(),r=this.session.documentToScreenPosition(e,t),i=this.$padding+(this.session.$bidiHandler.isBidiRow(r.row,e)?this.session.$bidiHandler.getPosLeft(r.column):Math.round(r.column*this.characterWidth)),o=r.row*this.lineHeight;return{pageX:n.left+i-this.scrollLeft,pageY:n.top+o-this.scrollTop}},this.visualizeFocus=function(){i.addCssClass(this.container,"ace_focus")},this.visualizeBlur=function(){i.removeCssClass(this.container,"ace_focus")},this.showComposition=function(e){this.$composition=e,e.cssText||(e.cssText=this.textarea.style.cssText),void 0==e.useTextareaForIME&&(e.useTextareaForIME=this.$useTextareaForIME),this.$useTextareaForIME?(i.addCssClass(this.textarea,"ace_composition"),this.textarea.style.cssText="",this.$moveTextAreaToCursor(),this.$cursorLayer.element.style.display="none"):e.markerId=this.session.addMarker(e.markerRange,"ace_composition_marker","text")},this.setCompositionText=function(e){var t=this.session.selection.cursor;this.addToken(e,"composition_placeholder",t.row,t.column),this.$moveTextAreaToCursor()},this.hideComposition=function(){if(this.$composition){this.$composition.markerId&&this.session.removeMarker(this.$composition.markerId),i.removeCssClass(this.textarea,"ace_composition"),this.textarea.style.cssText=this.$composition.cssText;var e=this.session.selection.cursor;this.removeExtraToken(e.row,e.column),this.$composition=null,this.$cursorLayer.element.style.display=""}},this.addToken=function(e,t,n,r){var i=this.session;i.bgTokenizer.lines[n]=null;var o={type:t,value:e},a=i.getTokens(n);if(null==r)a.push(o);else for(var s=0,l=0;l50&&e.length>this.$doc.getLength()>>1?this.call("setValue",[this.$doc.getValue()]):this.emit("change",{data:e}))}}).call(c.prototype);var u=function(e,t,n){var r=null,i=!1,s=Object.create(o),l=[],u=new c({messageBuffer:l,terminate:function(){},postMessage:function(e){l.push(e),r&&(i?setTimeout(h):h())}});u.setEmitSync=function(e){i=e};var h=function(){var e=l.shift();e.command?r[e.command].apply(r,e.args):e.event&&s._signal(e.event,e.data)};return s.postMessage=function(e){u.onMessage({data:e})},s.callback=function(e,t){this.postMessage({type:"call",id:t,data:e})},s.emit=function(e,t){this.postMessage({type:"event",name:e,data:t})},a.loadModule(["worker",t],function(e){r=new e[n](s);while(l.length)h()}),u};t.UIWorkerClient=u,t.WorkerClient=c,t.createWorker=l}),ace.define("ace/placeholder",["require","exports","module","ace/range","ace/lib/event_emitter","ace/lib/oop"],function(e,t,n){"use strict";var r=e("./range").Range,i=e("./lib/event_emitter").EventEmitter,o=e("./lib/oop"),a=function(e,t,n,r,i,o){var a=this;this.length=t,this.session=e,this.doc=e.getDocument(),this.mainClass=i,this.othersClass=o,this.$onUpdate=this.onUpdate.bind(this),this.doc.on("change",this.$onUpdate),this.$others=r,this.$onCursorChange=function(){setTimeout(function(){a.onCursorChange()})},this.$pos=n;var s=e.getUndoManager().$undoStack||e.getUndoManager().$undostack||{length:-1};this.$undoStackDepth=s.length,this.setup(),e.selection.on("changeCursor",this.$onCursorChange)};(function(){o.implement(this,i),this.setup=function(){var e=this,t=this.doc,n=this.session;this.selectionBefore=n.selection.toJSON(),n.selection.inMultiSelectMode&&n.selection.toSingleRange(),this.pos=t.createAnchor(this.$pos.row,this.$pos.column);var i=this.pos;i.$insertRight=!0,i.detach(),i.markerId=n.addMarker(new r(i.row,i.column,i.row,i.column+this.length),this.mainClass,null,!1),this.others=[],this.$others.forEach(function(n){var r=t.createAnchor(n.row,n.column);r.$insertRight=!0,r.detach(),e.others.push(r)}),n.setUndoSelect(!1)},this.showOtherMarkers=function(){if(!this.othersActive){var e=this.session,t=this;this.othersActive=!0,this.others.forEach(function(n){n.markerId=e.addMarker(new r(n.row,n.column,n.row,n.column+t.length),t.othersClass,null,!1)})}},this.hideOtherMarkers=function(){if(this.othersActive){this.othersActive=!1;for(var e=0;e=this.pos.column&&t.start.column<=this.pos.column+this.length+1,o=t.start.column-this.pos.column;if(this.updateAnchors(e),i&&(this.length+=n),i&&!this.session.$fromUndo)if("insert"===e.action)for(var a=this.others.length-1;a>=0;a--){var s=this.others[a],l={row:s.row,column:s.column+o};this.doc.insertMergedLines(l,e.lines)}else if("remove"===e.action)for(a=this.others.length-1;a>=0;a--){s=this.others[a],l={row:s.row,column:s.column+o};this.doc.remove(new r(l.row,l.column,l.row,l.column-n))}this.$updating=!1,this.updateMarkers()}},this.updateAnchors=function(e){this.pos.onChange(e);for(var t=this.others.length;t--;)this.others[t].onChange(e);this.updateMarkers()},this.updateMarkers=function(){if(!this.$updating){var e=this,t=this.session,n=function(n,i){t.removeMarker(n.markerId),n.markerId=t.addMarker(new r(n.row,n.column,n.row,n.column+e.length),i,null,!1)};n(this.pos,this.mainClass);for(var i=this.others.length;i--;)n(this.others[i],this.othersClass)}},this.onCursorChange=function(e){if(!this.$updating&&this.session){var t=this.session.selection.getCursor();t.row===this.pos.row&&t.column>=this.pos.column&&t.column<=this.pos.column+this.length?(this.showOtherMarkers(),this._emit("cursorEnter",e)):(this.hideOtherMarkers(),this._emit("cursorLeave",e))}},this.detach=function(){this.session.removeMarker(this.pos&&this.pos.markerId),this.hideOtherMarkers(),this.doc.off("change",this.$onUpdate),this.session.selection.off("changeCursor",this.$onCursorChange),this.session.setUndoSelect(!0),this.session=null},this.cancel=function(){if(-1!==this.$undoStackDepth){for(var e=this.session.getUndoManager(),t=(e.$undoStack||e.$undostack).length-this.$undoStackDepth,n=0;n1?e.multiSelect.joinSelections():e.multiSelect.splitIntoLines()},bindKey:{win:"Ctrl-Alt-L",mac:"Ctrl-Alt-L"},readOnly:!0},{name:"splitSelectionIntoLines",description:"Split into lines",exec:function(e){e.multiSelect.splitIntoLines()},readOnly:!0},{name:"alignCursors",description:"Align cursors",exec:function(e){e.alignCursors()},bindKey:{win:"Ctrl-Alt-A",mac:"Ctrl-Alt-A"},scrollIntoView:"cursor"},{name:"findAll",description:"Find all",exec:function(e){e.findAll()},bindKey:{win:"Ctrl-Alt-K",mac:"Ctrl-Alt-G"},scrollIntoView:"cursor",readOnly:!0}],t.multiSelectCommands=[{name:"singleSelection",description:"Single selection",bindKey:"esc",exec:function(e){e.exitMultiSelectMode()},scrollIntoView:"cursor",readOnly:!0,isAvailable:function(e){return e&&e.inMultiSelectMode}}];var r=e("../keyboard/hash_handler").HashHandler;t.keyboardHandler=new r(t.multiSelectCommands)}),ace.define("ace/multi_select",["require","exports","module","ace/range_list","ace/range","ace/selection","ace/mouse/multi_select_handler","ace/lib/event","ace/lib/lang","ace/commands/multi_select_commands","ace/search","ace/edit_session","ace/editor","ace/config"],function(e,t,n){var r=e("./range_list").RangeList,i=e("./range").Range,o=e("./selection").Selection,a=e("./mouse/multi_select_handler").onMouseDown,s=e("./lib/event"),l=e("./lib/lang"),c=e("./commands/multi_select_commands");t.commands=c.defaultCommands.concat(c.multiSelectCommands);var u=e("./search").Search,h=new u;function d(e,t,n){return h.$options.wrap=!0,h.$options.needle=t,h.$options.backwards=-1==n,h.find(e)}var f=e("./edit_session").EditSession;(function(){this.getSelectionMarkers=function(){return this.$selectionMarkers}}).call(f.prototype),function(){this.ranges=null,this.rangeList=null,this.addRange=function(e,t){if(e){if(!this.inMultiSelectMode&&0===this.rangeCount){var n=this.toOrientedRange();if(this.rangeList.add(n),this.rangeList.add(e),2!=this.rangeList.ranges.length)return this.rangeList.removeAll(),t||this.fromOrientedRange(e);this.rangeList.removeAll(),this.rangeList.add(n),this.$onAddRange(n)}e.cursor||(e.cursor=e.end);var r=this.rangeList.add(e);return this.$onAddRange(e),r.length&&this.$onRemoveRange(r),this.rangeCount>1&&!this.inMultiSelectMode&&(this._signal("multiSelect"),this.inMultiSelectMode=!0,this.session.$undoSelect=!1,this.rangeList.attach(this.session)),t||this.fromOrientedRange(e)}},this.toSingleRange=function(e){e=e||this.ranges[0];var t=this.rangeList.removeAll();t.length&&this.$onRemoveRange(t),e&&this.fromOrientedRange(e)},this.substractPoint=function(e){var t=this.rangeList.substractPoint(e);if(t)return this.$onRemoveRange(t),t[0]},this.mergeOverlappingRanges=function(){var e=this.rangeList.merge();e.length&&this.$onRemoveRange(e)},this.$onAddRange=function(e){this.rangeCount=this.rangeList.ranges.length,this.ranges.unshift(e),this._signal("addRange",{range:e})},this.$onRemoveRange=function(e){if(this.rangeCount=this.rangeList.ranges.length,1==this.rangeCount&&this.inMultiSelectMode){var t=this.rangeList.ranges.pop();e.push(t),this.rangeCount=0}for(var n=e.length;n--;){var r=this.ranges.indexOf(e[n]);this.ranges.splice(r,1)}this._signal("removeRange",{ranges:e}),0===this.rangeCount&&this.inMultiSelectMode&&(this.inMultiSelectMode=!1,this._signal("singleSelect"),this.session.$undoSelect=!0,this.rangeList.detach(this.session)),t=t||this.ranges[0],t&&!t.isEqual(this.getRange())&&this.fromOrientedRange(t)},this.$initRangeList=function(){this.rangeList||(this.rangeList=new r,this.ranges=[],this.rangeCount=0)},this.getAllRanges=function(){return this.rangeCount?this.rangeList.ranges.concat():[this.getRange()]},this.splitIntoLines=function(){for(var e=this.ranges.length?this.ranges:[this.getRange()],t=[],n=0;n1){var e=this.rangeList.ranges,t=e[e.length-1],n=i.fromPoints(e[0].start,t.end);this.toSingleRange(),this.setSelectionRange(n,t.cursor==t.start)}else{var r=this.session.documentToScreenPosition(this.cursor),o=this.session.documentToScreenPosition(this.anchor),a=this.rectangularRangeBlock(r,o);a.forEach(this.addRange,this)}},this.rectangularRangeBlock=function(e,t,n){var r=[],o=e.column0)v--;if(v>0){var y=0;while(r[y].isEmpty())y++}for(var b=v;b>=y;b--)r[b].isEmpty()&&r.splice(b,1)}return r}}.call(o.prototype);var p=e("./editor").Editor;function m(e,t){return e.row==t.row&&e.column==t.column}function g(e){e.$multiselectOnSessionChange||(e.$onAddRange=e.$onAddRange.bind(e),e.$onRemoveRange=e.$onRemoveRange.bind(e),e.$onMultiSelect=e.$onMultiSelect.bind(e),e.$onSingleSelect=e.$onSingleSelect.bind(e),e.$multiselectOnSessionChange=t.onSessionChange.bind(e),e.$checkMultiselectChange=e.$checkMultiselectChange.bind(e),e.$multiselectOnSessionChange(e),e.on("changeSession",e.$multiselectOnSessionChange),e.on("mousedown",a),e.commands.addCommands(c.defaultCommands),v(e))}function v(e){if(e.textInput){var t=e.textInput.getElement(),n=!1;s.addListener(t,"keydown",function(t){var i=18==t.keyCode&&!(t.ctrlKey||t.shiftKey||t.metaKey);e.$blockSelectEnabled&&i?n||(e.renderer.setMouseCursor("crosshair"),n=!0):n&&r()},e),s.addListener(t,"keyup",r,e),s.addListener(t,"blur",r,e)}function r(t){n&&(e.renderer.setMouseCursor(""),n=!1)}}(function(){this.updateSelectionMarkers=function(){this.renderer.updateCursor(),this.renderer.updateBackMarkers()},this.addSelectionMarker=function(e){e.cursor||(e.cursor=e.end);var t=this.getSelectionStyle();return e.marker=this.session.addMarker(e,"ace_selection",t),this.session.$selectionMarkers.push(e),this.session.selectionMarkerCount=this.session.$selectionMarkers.length,e},this.removeSelectionMarker=function(e){if(e.marker){this.session.removeMarker(e.marker);var t=this.session.$selectionMarkers.indexOf(e);-1!=t&&this.session.$selectionMarkers.splice(t,1),this.session.selectionMarkerCount=this.session.$selectionMarkers.length}},this.removeSelectionMarkers=function(e){for(var t=this.session.$selectionMarkers,n=e.length;n--;){var r=e[n];if(r.marker){this.session.removeMarker(r.marker);var i=t.indexOf(r);-1!=i&&t.splice(i,1)}}this.session.selectionMarkerCount=t.length},this.$onAddRange=function(e){this.addSelectionMarker(e.range),this.renderer.updateCursor(),this.renderer.updateBackMarkers()},this.$onRemoveRange=function(e){this.removeSelectionMarkers(e.ranges),this.renderer.updateCursor(),this.renderer.updateBackMarkers()},this.$onMultiSelect=function(e){this.inMultiSelectMode||(this.inMultiSelectMode=!0,this.setStyle("ace_multiselect"),this.keyBinding.addKeyboardHandler(c.keyboardHandler),this.commands.setDefaultHandler("exec",this.$onMultiSelectExec),this.renderer.updateCursor(),this.renderer.updateBackMarkers())},this.$onSingleSelect=function(e){this.session.multiSelect.inVirtualMode||(this.inMultiSelectMode=!1,this.unsetStyle("ace_multiselect"),this.keyBinding.removeKeyboardHandler(c.keyboardHandler),this.commands.removeDefaultHandler("exec",this.$onMultiSelectExec),this.renderer.updateCursor(),this.renderer.updateBackMarkers(),this._emit("changeSelection"))},this.$onMultiSelectExec=function(e){var t=e.command,n=e.editor;if(n.multiSelect){if(t.multiSelectAction)"forEach"==t.multiSelectAction?r=n.forEachSelection(t,e.args):"forEachLine"==t.multiSelectAction?r=n.forEachSelection(t,e.args,!0):"single"==t.multiSelectAction?(n.exitMultiSelectMode(),r=t.exec(n,e.args||{})):r=t.multiSelectAction(n,e.args||{});else{var r=t.exec(n,e.args||{});n.multiSelect.addRange(n.multiSelect.toOrientedRange()),n.multiSelect.mergeOverlappingRanges()}return r}},this.forEachSelection=function(e,t,n){if(!this.inVirtualSelectionMode){var r,i=n&&n.keepOrder,a=1==n||n&&n.$byLines,s=this.session,l=this.selection,c=l.rangeList,u=(i?l:c).ranges;if(!u.length)return e.exec?e.exec(this,t||{}):e(this,t||{});var h=l._eventRegistry;l._eventRegistry={};var d=new o(s);this.inVirtualSelectionMode=!0;for(var f=u.length;f--;){if(a)while(f>0&&u[f].start.row==u[f-1].end.row)f--;d.fromOrientedRange(u[f]),d.index=f,this.selection=s.selection=d;var p=e.exec?e.exec(this,t||{}):e(this,t||{});r||void 0===p||(r=p),d.toOrientedRange(u[f])}d.detach(),this.selection=s.selection=l,this.inVirtualSelectionMode=!1,l._eventRegistry=h,l.mergeOverlappingRanges(),l.ranges[0]&&l.fromOrientedRange(l.ranges[0]);var m=this.renderer.$scrollAnimation;return this.onCursorChange(),this.onSelectionChange(),m&&m.from==m.to&&this.renderer.animateScrolling(m.from),r}},this.exitMultiSelectMode=function(){this.inMultiSelectMode&&!this.inVirtualSelectionMode&&this.multiSelect.toSingleRange()},this.getSelectedText=function(){var e="";if(this.inMultiSelectMode&&!this.inVirtualSelectionMode){for(var t=this.multiSelect.rangeList.ranges,n=[],r=0;ra&&(a=n.column),iu?e.insert(r,l.stringRepeat(" ",o-u)):e.remove(new i(r.row,r.column,r.row,r.column-o+u)),t.start.column=t.end.column=a,t.start.row=t.end.row=r.row,t.cursor=t.end}),t.fromOrientedRange(n[0]),this.renderer.updateCursor(),this.renderer.updateBackMarkers()}else{var u=this.selection.getRange(),h=u.start.row,d=u.end.row,f=h==d;if(f){var p,m=this.session.getLength();do{p=this.session.getLine(d)}while(/[=:]/.test(p)&&++d0);h<0&&(h=0),d>=m&&(d=m-1)}var g=this.session.removeFullLines(h,d);g=this.$reAlignText(g,f),this.session.insert({row:h,column:0},g.join("\n")+"\n"),f||(u.start.column=0,u.end.column=g[g.length-1].length),this.selection.setRange(u)}},this.$reAlignText=function(e,t){var n,r,i,o=!0,a=!0;return e.map(function(e){var t=e.match(/(\s*)(.*?)(\s*)([=:].*)/);return t?null==n?(n=t[1].length,r=t[2].length,i=t[3].length,t):(n+r+i!=t[1].length+t[2].length+t[3].length&&(a=!1),n!=t[1].length&&(o=!1),n>t[1].length&&(n=t[1].length),rt[3].length&&(i=t[3].length),t):[e]}).map(t?c:o?a?u:c:h);function s(e){return l.stringRepeat(" ",e)}function c(e){return e[2]?s(n)+e[2]+s(r-e[2].length+i)+e[4].replace(/^([=:])\s+/,"$1 "):e[0]}function u(e){return e[2]?s(n+r-e[2].length)+e[2]+s(i)+e[4].replace(/^([=:])\s+/,"$1 "):e[0]}function h(e){return e[2]?s(n)+e[2]+s(i)+e[4].replace(/^([=:])\s+/,"$1 "):e[0]}}}).call(p.prototype),t.onSessionChange=function(e){var t=e.session;t&&!t.multiSelect&&(t.$selectionMarkers=[],t.selection.$initRangeList(),t.multiSelect=t.selection),this.multiSelect=t&&t.multiSelect;var n=e.oldSession;n&&(n.multiSelect.off("addRange",this.$onAddRange),n.multiSelect.off("removeRange",this.$onRemoveRange),n.multiSelect.off("multiSelect",this.$onMultiSelect),n.multiSelect.off("singleSelect",this.$onSingleSelect),n.multiSelect.lead.off("change",this.$checkMultiselectChange),n.multiSelect.anchor.off("change",this.$checkMultiselectChange)),t&&(t.multiSelect.on("addRange",this.$onAddRange),t.multiSelect.on("removeRange",this.$onRemoveRange),t.multiSelect.on("multiSelect",this.$onMultiSelect),t.multiSelect.on("singleSelect",this.$onSingleSelect),t.multiSelect.lead.on("change",this.$checkMultiselectChange),t.multiSelect.anchor.on("change",this.$checkMultiselectChange)),t&&this.inMultiSelectMode!=t.selection.inMultiSelectMode&&(t.selection.inMultiSelectMode?this.$onMultiSelect():this.$onSingleSelect())},t.MultiSelect=g,e("./config").defineOptions(p.prototype,"editor",{enableMultiselect:{set:function(e){g(this),e?(this.on("changeSession",this.$multiselectOnSessionChange),this.on("mousedown",a)):(this.off("changeSession",this.$multiselectOnSessionChange),this.off("mousedown",a))},value:!0},enableBlockSelect:{set:function(e){this.$blockSelectEnabled=e},value:!0}})}),ace.define("ace/mode/folding/fold_mode",["require","exports","module","ace/range"],function(e,t,n){"use strict";var r=e("../../range").Range,i=t.FoldMode=function(){};(function(){this.foldingStartMarker=null,this.foldingStopMarker=null,this.getFoldWidget=function(e,t,n){var r=e.getLine(n);return this.foldingStartMarker.test(r)?"start":"markbeginend"==t&&this.foldingStopMarker&&this.foldingStopMarker.test(r)?"end":""},this.getFoldWidgetRange=function(e,t,n){return null},this.indentationBlock=function(e,t,n){var i=/\S/,o=e.getLine(t),a=o.search(i);if(-1!=a){var s=n||o.length,l=e.getLength(),c=t,u=t;while(++tc){var f=e.getLine(u).length;return new r(c,s,u,f)}}},this.openingBracketBlock=function(e,t,n,i,o){var a={row:n,column:i+1},s=e.$findClosingBracket(t,a,o);if(s){var l=e.foldWidgets[s.row];return null==l&&(l=e.getFoldWidget(s.row)),"start"==l&&s.row>a.row&&(s.row--,s.column=e.getLine(s.row).length),r.fromPoints(a,s)}},this.closingBracketBlock=function(e,t,n,i,o){var a={row:n,column:i},s=e.$findOpeningBracket(t,a);if(s)return s.column++,a.column--,r.fromPoints(s,a)}}).call(i.prototype)}),ace.define("ace/theme/textmate",["require","exports","module","ace/lib/dom"],function(e,t,n){"use strict";t.isDark=!1,t.cssClass="ace-tm",t.cssText='.ace-tm .ace_gutter {background: #f0f0f0;color: #333;}.ace-tm .ace_print-margin {width: 1px;background: #e8e8e8;}.ace-tm .ace_fold {background-color: #6B72E6;}.ace-tm {background-color: #FFFFFF;color: black;}.ace-tm .ace_cursor {color: black;}.ace-tm .ace_invisible {color: rgb(191, 191, 191);}.ace-tm .ace_storage,.ace-tm .ace_keyword {color: blue;}.ace-tm .ace_constant {color: rgb(197, 6, 11);}.ace-tm .ace_constant.ace_buildin {color: rgb(88, 72, 246);}.ace-tm .ace_constant.ace_language {color: rgb(88, 92, 246);}.ace-tm .ace_constant.ace_library {color: rgb(6, 150, 14);}.ace-tm .ace_invalid {background-color: rgba(255, 0, 0, 0.1);color: red;}.ace-tm .ace_support.ace_function {color: rgb(60, 76, 114);}.ace-tm .ace_support.ace_constant {color: rgb(6, 150, 14);}.ace-tm .ace_support.ace_type,.ace-tm .ace_support.ace_class {color: rgb(109, 121, 222);}.ace-tm .ace_keyword.ace_operator {color: rgb(104, 118, 135);}.ace-tm .ace_string {color: rgb(3, 106, 7);}.ace-tm .ace_comment {color: rgb(76, 136, 107);}.ace-tm .ace_comment.ace_doc {color: rgb(0, 102, 255);}.ace-tm .ace_comment.ace_doc.ace_tag {color: rgb(128, 159, 191);}.ace-tm .ace_constant.ace_numeric {color: rgb(0, 0, 205);}.ace-tm .ace_variable {color: rgb(49, 132, 149);}.ace-tm .ace_xml-pe {color: rgb(104, 104, 91);}.ace-tm .ace_entity.ace_name.ace_function {color: #0000A2;}.ace-tm .ace_heading {color: rgb(12, 7, 255);}.ace-tm .ace_list {color:rgb(185, 6, 144);}.ace-tm .ace_meta.ace_tag {color:rgb(0, 22, 142);}.ace-tm .ace_string.ace_regex {color: rgb(255, 0, 0)}.ace-tm .ace_marker-layer .ace_selection {background: rgb(181, 213, 255);}.ace-tm.ace_multiselect .ace_selection.ace_start {box-shadow: 0 0 3px 0px white;}.ace-tm .ace_marker-layer .ace_step {background: rgb(252, 255, 0);}.ace-tm .ace_marker-layer .ace_stack {background: rgb(164, 229, 101);}.ace-tm .ace_marker-layer .ace_bracket {margin: -1px 0 0 -1px;border: 1px solid rgb(192, 192, 192);}.ace-tm .ace_marker-layer .ace_active-line {background: rgba(0, 0, 0, 0.07);}.ace-tm .ace_gutter-active-line {background-color : #dcdcdc;}.ace-tm .ace_marker-layer .ace_selected-word {background: rgb(250, 250, 255);border: 1px solid rgb(200, 200, 250);}.ace-tm .ace_indent-guide {background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAAE0lEQVQImWP4////f4bLly//BwAmVgd1/w11/gAAAABJRU5ErkJggg==") right repeat-y;}',t.$id="ace/theme/textmate";var r=e("../lib/dom");r.importCssString(t.cssText,t.cssClass)}),ace.define("ace/line_widgets",["require","exports","module","ace/lib/dom"],function(e,t,n){"use strict";var r=e("./lib/dom");function i(e){this.session=e,this.session.widgetManager=this,this.session.getRowLength=this.getRowLength,this.session.$getWidgetScreenLength=this.$getWidgetScreenLength,this.updateOnChange=this.updateOnChange.bind(this),this.renderWidgets=this.renderWidgets.bind(this),this.measureWidgets=this.measureWidgets.bind(this),this.session._changedWidgets=[],this.$onChangeEditor=this.$onChangeEditor.bind(this),this.session.on("change",this.updateOnChange),this.session.on("changeFold",this.updateOnFold),this.session.on("changeEditor",this.$onChangeEditor)}(function(){this.getRowLength=function(e){var t;return t=this.lineWidgets&&this.lineWidgets[e]&&this.lineWidgets[e].rowCount||0,this.$useWrapMode&&this.$wrapData[e]?this.$wrapData[e].length+1+t:1+t},this.$getWidgetScreenLength=function(){var e=0;return this.lineWidgets.forEach(function(t){t&&t.rowCount&&!t.hidden&&(e+=t.rowCount)}),e},this.$onChangeEditor=function(e){this.attach(e.editor)},this.attach=function(e){e&&e.widgetManager&&e.widgetManager!=this&&e.widgetManager.detach(),this.editor!=e&&(this.detach(),this.editor=e,e&&(e.widgetManager=this,e.renderer.on("beforeRender",this.measureWidgets),e.renderer.on("afterRender",this.renderWidgets)))},this.detach=function(e){var t=this.editor;if(t){this.editor=null,t.widgetManager=null,t.renderer.off("beforeRender",this.measureWidgets),t.renderer.off("afterRender",this.renderWidgets);var n=this.session.lineWidgets;n&&n.forEach(function(e){e&&e.el&&e.el.parentNode&&(e._inDocument=!1,e.el.parentNode.removeChild(e.el))})}},this.updateOnFold=function(e,t){var n=t.lineWidgets;if(n&&e.action){for(var r=e.data,i=r.start.row,o=r.end.row,a="add"==e.action,s=i+1;st[n].column&&n++,o.unshift(n,0),t.splice.apply(t,o),this.$updateRows()}}},this.$updateRows=function(){var e=this.session.lineWidgets;if(e){var t=!0;e.forEach(function(e,n){if(e){t=!1,e.row=n;while(e.$oldWidget)e.$oldWidget.row=n,e=e.$oldWidget}}),t&&(this.session.lineWidgets=null)}},this.$registerLineWidget=function(e){this.session.lineWidgets||(this.session.lineWidgets=new Array(this.session.getLength()));var t=this.session.lineWidgets[e.row];return t&&(e.$oldWidget=t,t.el&&t.el.parentNode&&(t.el.parentNode.removeChild(t.el),t._inDocument=!1)),this.session.lineWidgets[e.row]=e,e},this.addLineWidget=function(e){if(this.$registerLineWidget(e),e.session=this.session,!this.editor)return e;var t=this.editor.renderer;e.html&&!e.el&&(e.el=r.createElement("div"),e.el.innerHTML=e.html),e.el&&(r.addCssClass(e.el,"ace_lineWidgetContainer"),e.el.style.position="absolute",e.el.style.zIndex=5,t.container.appendChild(e.el),e._inDocument=!0,e.coverGutter||(e.el.style.zIndex=3),null==e.pixelHeight&&(e.pixelHeight=e.el.offsetHeight)),null==e.rowCount&&(e.rowCount=e.pixelHeight/t.layerConfig.lineHeight);var n=this.session.getFoldAt(e.row,0);if(e.$fold=n,n){var i=this.session.lineWidgets;e.row!=n.end.row||i[n.start.row]?e.hidden=!0:i[n.start.row]=e}return this.session._emit("changeFold",{data:{start:{row:e.row}}}),this.$updateRows(),this.renderWidgets(null,t),this.onWidgetChanged(e),e},this.removeLineWidget=function(e){if(e._inDocument=!1,e.session=null,e.el&&e.el.parentNode&&e.el.parentNode.removeChild(e.el),e.editor&&e.editor.destroy)try{e.editor.destroy()}catch(e){}if(this.session.lineWidgets){var t=this.session.lineWidgets[e.row];if(t==e)this.session.lineWidgets[e.row]=e.$oldWidget,e.$oldWidget&&this.onWidgetChanged(e.$oldWidget);else while(t){if(t.$oldWidget==e){t.$oldWidget=e.$oldWidget;break}t=t.$oldWidget}}this.session._emit("changeFold",{data:{start:{row:e.row}}}),this.$updateRows()},this.getWidgetsAtRow=function(e){var t=this.session.lineWidgets,n=t&&t[e],r=[];while(n)r.push(n),n=n.$oldWidget;return r},this.onWidgetChanged=function(e){this.session._changedWidgets.push(e),this.editor&&this.editor.renderer.updateFull()},this.measureWidgets=function(e,t){var n=this.session._changedWidgets,r=t.layerConfig;if(n&&n.length){for(var i=1/0,o=0;o0&&!r[i])i--;this.firstRow=n.firstRow,this.lastRow=n.lastRow,t.$cursorLayer.config=n;for(var a=i;a<=o;a++){var s=r[a];if(s&&s.el)if(s.hidden)s.el.style.top=-100-(s.pixelHeight||0)+"px";else{s._inDocument||(s._inDocument=!0,t.container.appendChild(s.el));var l=t.$cursorLayer.getPixelPosition({row:a,column:0},!0).top;s.coverLine||(l+=n.lineHeight*this.session.getRowLineCount(s.row)),s.el.style.top=l-n.offset+"px";var c=s.coverGutter?0:t.gutterWidth;s.fixedWidth||(c-=t.scrollLeft),s.el.style.left=c+"px",s.fullWidth&&s.screenWidth&&(s.el.style.minWidth=n.width+2*n.padding+"px"),s.fixedWidth?s.el.style.right=t.scrollBar.getWidth()+"px":s.el.style.right=""}}}}}).call(i.prototype),t.LineWidgets=i}),ace.define("ace/ext/error_marker",["require","exports","module","ace/line_widgets","ace/lib/dom","ace/range"],function(e,t,n){"use strict";var r=e("../line_widgets").LineWidgets,i=e("../lib/dom"),o=e("../range").Range;function a(e,t,n){var r=0,i=e.length-1;while(r<=i){var o=r+i>>1,a=n(t,e[o]);if(a>0)r=o+1;else{if(!(a<0))return o;i=o-1}}return-(r+1)}function s(e,t,n){var r=e.getAnnotations().sort(o.comparePoints);if(r.length){var i=a(r,{row:t,column:-1},o.comparePoints);i<0&&(i=-i-1),i>=r.length?i=n>0?0:r.length-1:0===i&&n<0&&(i=r.length-1);var s=r[i];if(s&&n){if(s.row===t){do{s=r[i+=n]}while(s&&s.row===t);if(!s)return r.slice()}var l=[];t=s.row;do{l[n<0?"unshift":"push"](s),s=r[i+=n]}while(s&&s.row==t);return l.length&&l}}}t.showErrorMarker=function(e,t){var n=e.session;n.widgetManager||(n.widgetManager=new r(n),n.widgetManager.attach(e));var o=e.getCursorPosition(),a=o.row,l=n.widgetManager.getWidgetsAtRow(a).filter(function(e){return"errorMarker"==e.type})[0];l?l.destroy():a-=t;var c,u=s(n,a,t);if(u){var h=u[0];o.column=(h.pos&&"number"!=typeof h.column?h.pos.sc:h.column)||0,o.row=h.row,c=e.renderer.$gutterLayer.$annotations[o.row]}else{if(l)return;c={text:["Looks good!"],className:"ace_ok"}}e.session.unfold(o.row),e.selection.moveToPosition(o);var d={row:o.row,fixedWidth:!0,coverGutter:!0,el:i.createElement("div"),type:"errorMarker"},f=d.el.appendChild(i.createElement("div")),p=d.el.appendChild(i.createElement("div"));p.className="error_widget_arrow "+c.className;var m=e.renderer.$cursorLayer.getPixelPosition(o).left;p.style.left=m+e.renderer.gutterWidth-5+"px",d.el.className="error_widget_wrapper",f.className="error_widget "+c.className,f.innerHTML=c.text.join("
"),f.appendChild(i.createElement("div"));var g=function(e,t,n){if(0===t&&("esc"===n||"return"===n))return d.destroy(),{command:"null"}};d.destroy=function(){e.$mouseHandler.isMousePressed||(e.keyBinding.removeKeyboardHandler(g),n.widgetManager.removeLineWidget(d),e.off("changeSelection",d.destroy),e.off("changeSession",d.destroy),e.off("mouseup",d.destroy),e.off("change",d.destroy))},e.keyBinding.addKeyboardHandler(g),e.on("changeSelection",d.destroy),e.on("changeSession",d.destroy),e.on("mouseup",d.destroy),e.on("change",d.destroy),e.session.widgetManager.addLineWidget(d),d.el.onmousedown=e.focus.bind(e),e.renderer.scrollCursorIntoView(null,.5,{bottom:d.el.offsetHeight})},i.importCssString(" .error_widget_wrapper { background: inherit; color: inherit; border:none } .error_widget { border-top: solid 2px; border-bottom: solid 2px; margin: 5px 0; padding: 10px 40px; white-space: pre-wrap; } .error_widget.ace_error, .error_widget_arrow.ace_error{ border-color: #ff5a5a } .error_widget.ace_warning, .error_widget_arrow.ace_warning{ border-color: #F1D817 } .error_widget.ace_info, .error_widget_arrow.ace_info{ border-color: #5a5a5a } .error_widget.ace_ok, .error_widget_arrow.ace_ok{ border-color: #5aaa5a } .error_widget_arrow { position: absolute; border: solid 5px; border-top-color: transparent!important; border-right-color: transparent!important; border-left-color: transparent!important; top: -5px; }","")}),ace.define("ace/ace",["require","exports","module","ace/lib/fixoldbrowsers","ace/lib/dom","ace/lib/event","ace/range","ace/editor","ace/edit_session","ace/undomanager","ace/virtual_renderer","ace/worker/worker_client","ace/keyboard/hash_handler","ace/placeholder","ace/multi_select","ace/mode/folding/fold_mode","ace/theme/textmate","ace/ext/error_marker","ace/config"],function(e,t,r){"use strict";e("./lib/fixoldbrowsers");var i=e("./lib/dom"),o=e("./lib/event"),a=e("./range").Range,s=e("./editor").Editor,l=e("./edit_session").EditSession,c=e("./undomanager").UndoManager,u=e("./virtual_renderer").VirtualRenderer;e("./worker/worker_client"),e("./keyboard/hash_handler"),e("./placeholder"),e("./multi_select"),e("./mode/folding/fold_mode"),e("./theme/textmate"),e("./ext/error_marker"),t.config=e("./config"),t.require=e,t.define=n("B9Yq"),t.edit=function(e,n){if("string"==typeof e){var r=e;if(e=document.getElementById(r),!e)throw new Error("ace.edit can't find div #"+r)}if(e&&e.env&&e.env.editor instanceof s)return e.env.editor;var a="";if(e&&/input|textarea/i.test(e.tagName)){var l=e;a=l.value,e=i.createElement("pre"),l.parentNode.replaceChild(e,l)}else e&&(a=e.textContent,e.innerHTML="");var c=t.createEditSession(a),h=new s(new u(e),c,n),d={document:c,editor:h,onResize:h.resize.bind(h,null)};return l&&(d.textarea=l),o.addListener(window,"resize",d.onResize),h.on("destroy",function(){o.removeListener(window,"resize",d.onResize),d.editor.container.env=null}),h.container.env=h.env=d,h},t.createEditSession=function(e,t){var n=new l(e,t);return n.setUndoManager(new c),n},t.Range=a,t.Editor=s,t.EditSession=l,t.UndoManager=c,t.VirtualRenderer=u,t.version=t.config.version}),function(){ace.require(["ace/ace"],function(t){for(var n in t&&(t.config.init(!0),t.define=ace.define),window.ace||(window.ace=t),t)t.hasOwnProperty(n)&&(window.ace[n]=t[n]);window.ace["default"]=window.ace,e&&(e.exports=window.ace)})}()}).call(this,n("YuTi")(e))},bV5f:function(e,t){var n=e.exports={version:"2.6.9"};"number"==typeof __e&&(__e=n)},bYtY:function(e,t,n){"use strict";n.d(t,"a",function(){return m}),n.d(t,"o",function(){return v}),n.d(t,"E",function(){return y}),n.d(t,"d",function(){return b}),n.d(t,"G",function(){return w}),n.d(t,"m",function(){return x}),n.d(t,"j",function(){return _}),n.d(t,"f",function(){return C}),n.d(t,"q",function(){return S}),n.d(t,"r",function(){return E}),n.d(t,"H",function(){return k}),n.d(t,"t",function(){return O}),n.d(t,"k",function(){return T}),n.d(t,"F",function(){return A}),n.d(t,"K",function(){return M}),n.d(t,"n",function(){return P}),n.d(t,"D",function(){return R}),n.d(t,"c",function(){return D}),n.d(t,"i",function(){return j}),n.d(t,"s",function(){return N}),n.d(t,"v",function(){return I}),n.d(t,"A",function(){return $}),n.d(t,"B",function(){return F}),n.d(t,"y",function(){return V}),n.d(t,"z",function(){return B}),n.d(t,"C",function(){return H}),n.d(t,"u",function(){return z}),n.d(t,"w",function(){return U}),n.d(t,"x",function(){return q}),n.d(t,"l",function(){return K}),n.d(t,"L",function(){return G}),n.d(t,"M",function(){return Y}),n.d(t,"N",function(){return X}),n.d(t,"P",function(){return Q}),n.d(t,"J",function(){return Z}),n.d(t,"b",function(){return J}),n.d(t,"Q",function(){return ee}),n.d(t,"O",function(){return ne}),n.d(t,"g",function(){return oe}),n.d(t,"e",function(){return ae}),n.d(t,"h",function(){return se}),n.d(t,"p",function(){return le}),n.d(t,"I",function(){return ce});var r={"[object Function]":!0,"[object RegExp]":!0,"[object Date]":!0,"[object Error]":!0,"[object CanvasGradient]":!0,"[object CanvasPattern]":!0,"[object Image]":!0,"[object Canvas]":!0},i={"[object Int8Array]":!0,"[object Uint8Array]":!0,"[object Uint8ClampedArray]":!0,"[object Int16Array]":!0,"[object Uint16Array]":!0,"[object Int32Array]":!0,"[object Uint32Array]":!0,"[object Float32Array]":!0,"[object Float64Array]":!0},o=Object.prototype.toString,a=Array.prototype,s=a.forEach,l=a.filter,c=a.slice,u=a.map,h=function(){}.constructor,d=h?h.prototype:null,f="__proto__",p={};function m(e,t){p[e]=t}var g=2311;function v(){return g++}function y(){for(var e=[],t=0;t-1};function l(e){if("string"!==typeof e&&(e=String(e)),/[^a-z0-9\-#$%&'*+.^_`|~!]/i.test(e)||""===e)throw new TypeError("Invalid character in header field name");return e.toLowerCase()}function c(e){return"string"!==typeof e&&(e=String(e)),e}function u(e){var t={next:function(){var t=e.shift();return{done:void 0===t,value:t}}};return i.iterable&&(t[Symbol.iterator]=function(){return t}),t}function h(e){this.map={},e instanceof h?e.forEach(function(e,t){this.append(t,e)},this):Array.isArray(e)?e.forEach(function(e){this.append(e[0],e[1])},this):e&&Object.getOwnPropertyNames(e).forEach(function(t){this.append(t,e[t])},this)}function d(e){if(e.bodyUsed)return Promise.reject(new TypeError("Already read"));e.bodyUsed=!0}function f(e){return new Promise(function(t,n){e.onload=function(){t(e.result)},e.onerror=function(){n(e.error)}})}function p(e){var t=new FileReader,n=f(t);return t.readAsArrayBuffer(e),n}function m(e){var t=new FileReader,n=f(t);return t.readAsText(e),n}function g(e){for(var t=new Uint8Array(e),n=new Array(t.length),r=0;r-1?t:e}function x(e,t){if(!(this instanceof x))throw new TypeError('Please use the "new" operator, this DOM object constructor cannot be called as a function.');t=t||{};var n=t.body;if(e instanceof x){if(e.bodyUsed)throw new TypeError("Already read");this.url=e.url,this.credentials=e.credentials,t.headers||(this.headers=new h(e.headers)),this.method=e.method,this.mode=e.mode,this.signal=e.signal,n||null==e._bodyInit||(n=e._bodyInit,e.bodyUsed=!0)}else this.url=String(e);if(this.credentials=t.credentials||this.credentials||"same-origin",!t.headers&&this.headers||(this.headers=new h(t.headers)),this.method=w(t.method||this.method||"GET"),this.mode=t.mode||this.mode||null,this.signal=t.signal||this.signal,this.referrer=null,("GET"===this.method||"HEAD"===this.method)&&n)throw new TypeError("Body not allowed for GET or HEAD requests");if(this._initBody(n),("GET"===this.method||"HEAD"===this.method)&&("no-store"===t.cache||"no-cache"===t.cache)){var r=/([?&])_=[^&]*/;if(r.test(this.url))this.url=this.url.replace(r,"$1_="+(new Date).getTime());else{var i=/\?/;this.url+=(i.test(this.url)?"&":"?")+"_="+(new Date).getTime()}}}function _(e){var t=new FormData;return e.trim().split("&").forEach(function(e){if(e){var n=e.split("="),r=n.shift().replace(/\+/g," "),i=n.join("=").replace(/\+/g," ");t.append(decodeURIComponent(r),decodeURIComponent(i))}}),t}function C(e){var t=new h,n=e.replace(/\r?\n[\t ]+/g," ");return n.split("\r").map(function(e){return 0===e.indexOf("\n")?e.substr(1,e.length):e}).forEach(function(e){var n=e.split(":"),r=n.shift().trim();if(r){var i=n.join(":").trim();t.append(r,i)}}),t}function S(e,t){if(!(this instanceof S))throw new TypeError('Please use the "new" operator, this DOM object constructor cannot be called as a function.');t||(t={}),this.type="default",this.status=void 0===t.status?200:t.status,this.ok=this.status>=200&&this.status<300,this.statusText="statusText"in t?t.statusText:"",this.headers=new h(t.headers),this.url=t.url||"",this._initBody(e)}x.prototype.clone=function(){return new x(this,{body:this._bodyInit})},y.call(x.prototype),y.call(S.prototype),S.prototype.clone=function(){return new S(this._bodyInit,{status:this.status,statusText:this.statusText,headers:new h(this.headers),url:this.url})},S.error=function(){var e=new S(null,{status:0,statusText:""});return e.type="error",e};var E=[301,302,303,307,308];S.redirect=function(e,t){if(-1===E.indexOf(t))throw new RangeError("Invalid status code");return new S(null,{status:t,headers:{location:e}})};var k=r.DOMException;try{new k}catch(e){k=function(e,t){this.message=e,this.name=t;var n=Error(e);this.stack=n.stack},k.prototype=Object.create(Error.prototype),k.prototype.constructor=k}function O(e,t){return new Promise(function(n,o){var a=new x(e,t);if(a.signal&&a.signal.aborted)return o(new k("Aborted","AbortError"));var s=new XMLHttpRequest;function l(){s.abort()}function u(e){try{return""===e&&r.location.href?r.location.href:e}catch(t){return e}}s.onload=function(){var e={status:s.status,statusText:s.statusText,headers:C(s.getAllResponseHeaders()||"")};e.url="responseURL"in s?s.responseURL:e.headers.get("X-Request-URL");var t="response"in s?s.response:s.responseText;setTimeout(function(){n(new S(t,e))},0)},s.onerror=function(){setTimeout(function(){o(new TypeError("Network request failed"))},0)},s.ontimeout=function(){setTimeout(function(){o(new TypeError("Network request failed"))},0)},s.onabort=function(){setTimeout(function(){o(new k("Aborted","AbortError"))},0)},s.open(a.method,u(a.url),!0),"include"===a.credentials?s.withCredentials=!0:"omit"===a.credentials&&(s.withCredentials=!1),"responseType"in s&&(i.blob?s.responseType="blob":i.arrayBuffer&&a.headers.get("Content-Type")&&-1!==a.headers.get("Content-Type").indexOf("application/octet-stream")&&(s.responseType="arraybuffer")),!t||"object"!==typeof t.headers||t.headers instanceof h?a.headers.forEach(function(e,t){s.setRequestHeader(t,e)}):Object.getOwnPropertyNames(t.headers).forEach(function(e){s.setRequestHeader(e,c(t.headers[e]))}),a.signal&&(a.signal.addEventListener("abort",l),s.onreadystatechange=function(){4===s.readyState&&a.signal.removeEventListener("abort",l)}),s.send("undefined"===typeof a._bodyInit?null:a._bodyInit)})}O.polyfill=!0,r.fetch||(r.fetch=O,r.Headers=h,r.Request=x,r.Response=S)},bdgK:function(e,t,n){"use strict";n.r(t),function(e){var n=function(){if("undefined"!==typeof Map)return Map;function e(e,t){var n=-1;return e.some(function(e,r){return e[0]===t&&(n=r,!0)}),n}return function(){function t(){this.__entries__=[]}return Object.defineProperty(t.prototype,"size",{get:function(){return this.__entries__.length},enumerable:!0,configurable:!0}),t.prototype.get=function(t){var n=e(this.__entries__,t),r=this.__entries__[n];return r&&r[1]},t.prototype.set=function(t,n){var r=e(this.__entries__,t);~r?this.__entries__[r][1]=n:this.__entries__.push([t,n])},t.prototype.delete=function(t){var n=this.__entries__,r=e(n,t);~r&&n.splice(r,1)},t.prototype.has=function(t){return!!~e(this.__entries__,t)},t.prototype.clear=function(){this.__entries__.splice(0)},t.prototype.forEach=function(e,t){void 0===t&&(t=null);for(var n=0,r=this.__entries__;n0},e.prototype.connect_=function(){r&&!this.connected_&&(document.addEventListener("transitionend",this.onTransitionEnd_),window.addEventListener("resize",this.refresh),u?(this.mutationsObserver_=new MutationObserver(this.refresh),this.mutationsObserver_.observe(document,{attributes:!0,childList:!0,characterData:!0,subtree:!0})):(document.addEventListener("DOMSubtreeModified",this.refresh),this.mutationEventsAdded_=!0),this.connected_=!0)},e.prototype.disconnect_=function(){r&&this.connected_&&(document.removeEventListener("transitionend",this.onTransitionEnd_),window.removeEventListener("resize",this.refresh),this.mutationsObserver_&&this.mutationsObserver_.disconnect(),this.mutationEventsAdded_&&document.removeEventListener("DOMSubtreeModified",this.refresh),this.mutationsObserver_=null,this.mutationEventsAdded_=!1,this.connected_=!1)},e.prototype.onTransitionEnd_=function(e){var t=e.propertyName,n=void 0===t?"":t,r=c.some(function(e){return!!~n.indexOf(e)});r&&this.refresh()},e.getInstance=function(){return this.instance_||(this.instance_=new e),this.instance_},e.instance_=null,e}(),d=function(e,t){for(var n=0,r=Object.keys(t);n0},e}(),T="undefined"!==typeof WeakMap?new WeakMap:new n,A=function(){function e(t){if(!(this instanceof e))throw new TypeError("Cannot call a class as a function.");if(!arguments.length)throw new TypeError("1 argument required, but only 0 present.");var n=h.getInstance(),r=new O(t,n,this);T.set(this,r)}return e}();["observe","unobserve","disconnect"].forEach(function(e){A.prototype[e]=function(){var t;return(t=T.get(this))[e].apply(t,arguments)}});var M=function(){return"undefined"!==typeof i.ResizeObserver?i.ResizeObserver:A}();t["default"]=M}.call(this,n("yLpj"))},bmIi:function(e,t,n){"use strict";var r=n("/Mfd"),i=n("pQGJ"),o=n("lvAo"),a={};n("VPOE")(a,n("gL7N")("iterator"),function(){return this}),e.exports=function(e,t,n){e.prototype=r(a,{next:i(1,n)}),o(e,t+" Iterator")}},brdU:function(e,t,n){"use strict";n.r(t);var r="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};function i(e,t){if(e===t)return!0;if(null==e||null==t)return!1;if(Array.isArray(e))return Array.isArray(t)&&e.length===t.length&&e.every(function(e,n){return i(e,t[n])});var n="undefined"===typeof e?"undefined":r(e),o="undefined"===typeof t?"undefined":r(t);if(n!==o)return!1;if("object"===n){var a=e.valueOf(),s=t.valueOf();if(a!==e||s!==t)return i(a,s);var l=Object.keys(e),c=Object.keys(t);return l.length===c.length&&l.every(function(n){return i(e[n],t[n])})}return!1}t["default"]=i},bsDr:function(e,t,n){"use strict";var r=n("2a/h"),i=RegExp.prototype.exec;e.exports=function(e,t){var n=e.exec;if("function"===typeof n){var o=n.call(e,t);if("object"!==typeof o)throw new TypeError("RegExp exec method returned something other than an Object or null");return o}if("RegExp"!==r(e))throw new TypeError("RegExp#exec called on incompatible receiver");return i.call(e,t)}},c0Oy:function(e,t){var n=e.exports="undefined"!=typeof window&&window.Math==Math?window:"undefined"!=typeof self&&self.Math==Math?self:Function("return this")();"number"==typeof __g&&(__g=n)},cOkC:function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.warning=i,t.note=o,t.resetWarned=a,t.call=s,t.warningOnce=l,t.noteOnce=c,t.default=void 0;var r={};function i(e,t){0}function o(e,t){0}function a(){r={}}function s(e,t,n){t||r[n]||(e(!1,n),r[n]=!0)}function l(e,t){s(i,e,t)}function c(e,t){s(o,e,t)}var u=l;t.default=u},cQyX:function(e,t,n){var r=n("gL7N")("iterator"),i=!1;try{var o=[7][r]();o["return"]=function(){i=!0},Array.from(o,function(){throw 2})}catch(e){}e.exports=function(e,t){if(!t&&!i)return!1;var n=!1;try{var o=[7],a=o[r]();a.next=function(){return{done:n=!0}},o[r]=function(){return a},e(o)}catch(e){}return n}},ccE7:function(e,t,n){var r=n("Ojgd"),i=n("Jes0");e.exports=function(e){return function(t,n){var o,a,s=String(i(t)),l=r(n),c=s.length;return l<0||l>=c?e?"":void 0:(o=s.charCodeAt(l),o<55296||o>56319||l+1===c||(a=s.charCodeAt(l+1))<56320||a>57343?e?s.charAt(l):o:e?s.slice(l,l+2):a-56320+(o-55296<<10)+65536)}}},ck9s:function(e,t,n){"use strict";var r=n("ZFOp"),i=n("MgzW"),o=n("8jRI");function a(e){switch(e.arrayFormat){case"index":return function(t,n,r){return null===n?[l(t,e),"[",r,"]"].join(""):[l(t,e),"[",l(r,e),"]=",l(n,e)].join("")};case"bracket":return function(t,n){return null===n?l(t,e):[l(t,e),"[]=",l(n,e)].join("")};default:return function(t,n){return null===n?l(t,e):[l(t,e),"=",l(n,e)].join("")}}}function s(e){var t;switch(e.arrayFormat){case"index":return function(e,n,r){t=/\[(\d*)\]$/.exec(e),e=e.replace(/\[\d*\]$/,""),t?(void 0===r[e]&&(r[e]={}),r[e][t[1]]=n):r[e]=n};case"bracket":return function(e,n,r){t=/(\[\])$/.exec(e),e=e.replace(/\[\]$/,""),t?void 0!==r[e]?r[e]=[].concat(r[e],n):r[e]=[n]:r[e]=n};default:return function(e,t,n){void 0!==n[e]?n[e]=[].concat(n[e],t):n[e]=t}}}function l(e,t){return t.encode?t.strict?r(e):encodeURIComponent(e):e}function c(e){return Array.isArray(e)?e.sort():"object"===typeof e?c(Object.keys(e)).sort(function(e,t){return Number(e)-Number(t)}).map(function(t){return e[t]}):e}function u(e){var t=e.indexOf("?");return-1===t?"":e.slice(t+1)}function h(e,t){t=i({arrayFormat:"none"},t);var n=s(t),r=Object.create(null);return"string"!==typeof e?r:(e=e.trim().replace(/^[?#&]/,""),e?(e.split("&").forEach(function(e){var t=e.replace(/\+/g," ").split("="),i=t.shift(),a=t.length>0?t.join("="):void 0;a=void 0===a?null:o(a),n(o(i),a,r)}),Object.keys(r).sort().reduce(function(e,t){var n=r[t];return Boolean(n)&&"object"===typeof n&&!Array.isArray(n)?e[t]=c(n):e[t]=n,e},Object.create(null))):r)}t.extract=u,t.parse=h,t.stringify=function(e,t){var n={encode:!0,strict:!0,arrayFormat:"none"};t=i(n,t),!1===t.sort&&(t.sort=function(){});var r=a(t);return e?Object.keys(e).sort(t.sort).map(function(n){var i=e[n];if(void 0===i)return"";if(null===i)return l(n,t);if(Array.isArray(i)){var o=[];return i.slice().forEach(function(e){void 0!==e&&o.push(r(n,e,o.length))}),o.join("&")}return l(n,t)+"="+l(i,t)}).filter(function(e){return e.length>0}).join("&"):""},t.parseUrl=function(e,t){return{url:e.split("?")[0]||"",query:h(u(e),t)}}},d1ca:function(e,t,n){"use strict";n.r(t);var r=n("jehZ"),i=n.n(r),o=n("p0pE"),a=n.n(o),s=(n("+L6B"),n("2/Rp")),l=(n("Awhp"),n("KrTs")),c=(n("5Dmo"),n("3S7+")),u=(n("+BJd"),n("mr32")),h=(n("qVdP"),n("jsC+")),d=(n("lUTK"),n("BvKs")),f=(n("Pwec"),n("CtXQ")),p=(n("2qtc"),n("kLXV")),m=n("q1tI"),g=n.n(m),v=n("Bl7J"),y=(n("5NDa"),n("5rEg")),b=n("/MKj");class w extends g.a.Component{constructor(e){super(e),this.state={visible:!1,submit:{}}}show(){this.setState({visible:!0})}hide(){this.setState({visible:!1})}send(){this.props.dispatch({type:"user/sendMail",params:this.state.submit,callback:()=>{this.hide()}})}render(){var e=this.props.user,t=e.filter,n=e.sendMailLoading,r=this.state.visible;return g.a.createElement(g.a.Fragment,null,g.a.cloneElement(this.props.children,{onClick:()=>this.show()}),g.a.createElement(p["a"],{title:"\u53d1\u9001\u90ae\u4ef6",visible:r,onOk:()=>this.send(),okButtonProps:{loading:n},onCancel:()=>this.hide()},g.a.createElement("div",{className:"form-group"},g.a.createElement("label",{htmlFor:"example-text-input-alt"},"\u6536\u4ef6\u4eba"),g.a.createElement(y["a"],{disabled:!0,value:t.length?"\u8fc7\u6ee4\u7528\u6237":"\u5168\u90e8\u7528\u6237"})),g.a.createElement("div",{className:"form-group"},g.a.createElement("label",{htmlFor:"example-text-input-alt"},"\u4e3b\u9898"),g.a.createElement(y["a"],{placeholder:"\u8bf7\u8f93\u5165\u90ae\u4ef6\u4e3b\u9898",value:this.state.submit.subject,onChange:e=>{this.setState({submit:a()({},this.state.submit,{subject:e.target.value})})}})),g.a.createElement("div",{className:"form-group"},g.a.createElement("label",{htmlFor:"example-text-input-alt"},"\u53d1\u9001\u5185\u5bb9"),g.a.createElement(y["a"].TextArea,{rows:12,value:this.state.submit.content,placeholder:"\u8bf7\u8f93\u5165\u90ae\u4ef6\u5185\u5bb9",onChange:e=>{this.setState({submit:a()({},this.state.submit,{content:e.target.value})})}}))))}}var x=Object(b["c"])(e=>{var t=e.user;return{user:t}})(w),_=n("wd/R"),C=n.n(_),S=n("3a4m"),E=n.n(S),k=n("mCd/"),O=n("CgOb"),T=n("yiO6"),A=n("hVla"),M=(n("OaEy"),n("2fM7")),P=(n("iQDF"),n("+eQT"));class R extends g.a.Component{constructor(e){super(e),this.state={visible:!1,submit:{}}}show(){this.setState({visible:!0})}hide(){this.setState({visible:!1,submit:{}})}formChange(e,t){var n=this.state.submit;n[e]=t,this.setState({submit:n})}submit(){var e=a()({},this.state.submit);this.props.dispatch({type:"user/generate",params:e,callback:()=>{this.hide()}})}render(){var e=this.props.user,t=e.user,n=e.generateLoading,r=this.props.plan.plans,i=this.state,o=i.visible,a=i.submit;return g.a.createElement(g.a.Fragment,null,g.a.cloneElement(this.props.children,{onClick:()=>this.show()}),g.a.createElement(p["a"],{title:"\u521b\u5efa\u7528\u6237",visible:o,onCancel:()=>this.hide(),cancelText:"\u53d6\u6d88",onOk:()=>this.submit(),okButtonProps:{loading:n},okText:"\u751f\u6210"},g.a.createElement("div",null,g.a.createElement("div",{className:"form-group"},g.a.createElement("label",{htmlFor:"example-text-input-alt"},"\u90ae\u7bb1"),g.a.createElement(y["a"].Group,{compact:!0},!a.generate_count&&g.a.createElement(y["a"],{placeholder:"\u8d26\u53f7\uff08\u6279\u91cf\u751f\u6210\u8bf7\u7559\u7a7a\uff09",style:{width:"45%"},value:a.email_prefix,onChange:e=>this.formChange("email_prefix",e.target.value)}),g.a.createElement(y["a"],{placeholder:"@",style:{width:"10%",textAlign:"center"},disabled:!0}),g.a.createElement(y["a"],{placeholder:"\u57df",style:{width:"45%"},value:a.email_suffix,onChange:e=>this.formChange("email_suffix",e.target.value)}))),g.a.createElement("div",{className:"form-group"},g.a.createElement("label",{htmlFor:"example-text-input-alt"},"\u5bc6\u7801"),g.a.createElement(y["a"],{value:a.password,placeholder:"\u7559\u7a7a\u5219\u5bc6\u7801\u4e0e\u90ae\u7bb1\u76f8\u540c",onChange:e=>this.formChange("password",e.target.value)})),g.a.createElement("div",{className:"form-group"},g.a.createElement("label",{htmlFor:"example-text-input-alt"},"\u5230\u671f\u65f6\u95f4"),g.a.createElement("div",null,g.a.createElement(P["a"],{placeholder:"\u8bf7\u9009\u62e9\u7528\u6237\u5230\u671f\u65e5\u671f\uff0c\u4e3a\u7a7a\u5219\u4e0d\u9650\u5236\u5230\u671f\u65f6\u95f4",defaultValue:a.expired_at&&C()(1e3*t.expired_at),style:{width:"100%"},onChange:e=>this.formChange("expired_at",e?e.format("X"):null)}))),g.a.createElement("div",{className:"form-group"},g.a.createElement("label",{htmlFor:"example-text-input-alt"},"\u8ba2\u9605\u8ba1\u5212"),g.a.createElement(M["a"],{placeholder:"\u8bf7\u9009\u62e9\u7528\u6237\u8ba2\u9605\u8ba1\u5212",style:{width:"100%"},value:a.plan_id||null,onChange:e=>this.formChange("plan_id",e)},g.a.createElement(M["a"].Option,{value:null},"\u65e0"),r.map(e=>{return g.a.createElement(M["a"].Option,{key:Math.random(),value:e.id},e.name)}))),!a.email_prefix&&g.a.createElement("div",{className:"form-group"},g.a.createElement("label",{htmlFor:"example-text-input-alt"},"\u751f\u6210\u6570\u91cf"),g.a.createElement(y["a"],{value:a.generate_count,placeholder:"\u5982\u679c\u4e3a\u6279\u91cf\u751f\u6210\u8bf7\u8f93\u5165\u751f\u6210\u6570\u91cf",onChange:e=>this.formChange("generate_count",e.target.value)})))))}}var L=Object(b["c"])(e=>{var t=e.user,n=e.plan;return{user:t,plan:n}})(R),D=n("yWgo"),j=n("Oa6W");n("H9LU"),n("I1u9"),n("ykC2");class N extends g.a.Component{constructor(e){super(e),this.state={sorter:{},visible:!1}}componentWillUnmount(){this.props.dispatch({type:"user/empty"}),this.props.dispatch({type:"user/setState",payload:{filter:[]}})}componentDidMount(){this.props.dispatch({type:"plan/fetch"}),this.props.dispatch({type:"user/fetch"}),this.props.dispatch({type:"serverGroup/fetch"})}tableOnChange(e,t){this.props.dispatch({type:"user/changeTable",pagination:e,sort:{sort_type:"ascend"===t.order?"ASC":"DESC",sort:t.columnKey}})}searchOnChange(e){this.inputDelayTimer&&clearTimeout(this.inputDelayTimer),this.inputDelayTimer=setTimeout(function(){this.inputDelayTimer=null,this.props.dispatch({type:"user/filter",filter:{email:e},pagination:{current:1}})}.bind(this),400)}dumpCSV(){this.props.dispatch({type:"user/dumpCSV"})}ban(){p["a"].confirm({title:"\u63d0\u9192",content:"\u786e\u5b9a\u8981\u8fdb\u884c\u5c01\u7981\u5417\uff1f",onOk:()=>{this.props.dispatch({type:"user/ban"})}})}userFilter(e,t,n){var r=arguments.length>3&&void 0!==arguments[3]&&arguments[3];this.props.dispatch({type:"user/addFilter",key:e,condition:t,value:n,clear:r})}orderFilter(e,t,n){this.props.dispatch({type:"order/addFilter",key:e,condition:t,value:n}),E.a.push("/order")}resetSecret(e){var t=this;p["a"].confirm({title:"\u91cd\u7f6e\u5b89\u5168\u4fe1\u606f",content:"\u786e\u5b9a\u8981\u91cd\u7f6e".concat(e.email,"\u7684\u5b89\u5168\u4fe1\u606f\u5417\uff1f"),onOk(){t.props.dispatch({type:"user/resetSecret",id:e.id})},okText:"\u786e\u5b9a",cancelText:"\u53d6\u6d88"})}render(){var e,t,n,r,o=this.props.user,p=o.users,m=o.pagination,y=o.fetchLoading,b=o.filter,w=this.props.serverGroup.groups,_=this.props.plan.plans,S=[{title:"\u64cd\u4f5c",dataIndex:"action",key:"action",render:(e,t,n)=>{return g.a.createElement(g.a.Fragment,null,g.a.createElement(h["a"],{trigger:"click",overlay:g.a.createElement(d["a"],null,g.a.createElement(d["a"].Item,{onContextMenu:e=>{e.stopPropagation()}},g.a.createElement(O["a"],{userId:t.id,key:t.id},g.a.createElement("a",null,g.a.createElement(f["a"],{type:"edit"})," \u7f16\u8f91"))),g.a.createElement(d["a"].Item,{onContextMenu:e=>{e.stopPropagation()}},g.a.createElement(k["a"],{email:t.email,key:t.email},g.a.createElement("a",null,g.a.createElement(f["a"],{type:"plus"})," \u5206\u914d\u8ba2\u5355"))),g.a.createElement(d["a"].Item,null,g.a.createElement("a",{onClick:()=>Object(D["a"])(t.subscribe_url)},g.a.createElement(f["a"],{type:"copy"})," \u590d\u5236\u8ba2\u9605URL")),g.a.createElement(d["a"].Item,null,g.a.createElement("a",{onClick:()=>this.resetSecret(t)},g.a.createElement(f["a"],{type:"reload"})," \u91cd\u7f6eUUID\u53ca\u8ba2\u9605URL")),g.a.createElement(d["a"].Item,{onClick:()=>this.orderFilter("user_id","=",t.id)},g.a.createElement(f["a"],{type:"account-book"})," TA\u7684\u8ba2\u5355"),g.a.createElement(d["a"].Item,{onClick:()=>this.userFilter("invite_user_id","=",t.id,!0)},g.a.createElement(f["a"],{type:"usergroup-add"})," TA\u7684\u9080\u8bf7"))},g.a.createElement("a",{href:"javascript:void(0);"},"\u64cd\u4f5c ",g.a.createElement(f["a"],{type:"caret-down"}))))}},{title:"ID",dataIndex:"id",key:"id",sorter:!0},{title:"\u90ae\u7bb1",dataIndex:"email",key:"email"},{title:"\u72b6\u6001",dataIndex:"banned",key:"banned",sorter:!0,render:e=>{return g.a.createElement(u["a"],{color:e?"red":"green"},e?"\u5c01\u7981":"\u6b63\u5e38")}},{title:"\u8ba2\u9605",dataIndex:"plan_name",key:"plan_id",sorter:!0,render:e=>{return e||"-"}},{title:"\u6743\u9650\u7ec4",dataIndex:"group_id",key:"group_id",sorter:!0,render:e=>{var t=w.find(t=>t.id===e);return t?t.name:"-"}},{title:g.a.createElement("span",null,"\u5728\u7ebf ",g.a.createElement(c["a"],{placement:"top",title:"\u7528\u623710\u5206\u949f\u5185\u5728\u7ebf\u60c5\u51b5"},g.a.createElement(f["a"],{type:"question-circle"}))),dataIndex:"t",key:"t",align:"center",render:e=>{return g.a.createElement(l["a"],{status:(new Date).getTime()/1e3-600>e?"default":"processing"})}},{title:"\u5df2\u7528(G)",dataIndex:"d",key:"d",sorter:!0,render:(e,t)=>{var n=(parseFloat(t.u)+parseFloat(t.d)).toFixed(2);return g.a.createElement(u["a"],{color:parseFloat(n)>parseFloat(t.transfer_enable)?"red":"green"},n)}},{title:"\u6d41\u91cf(G)",dataIndex:"transfer_enable",key:"transfer_enable",sorter:!0,render:(e,t)=>{return e}},{title:"\u5230\u671f\u65f6\u95f4",dataIndex:"expired_at",key:"expired_at",sorter:!0,render:e=>{return g.a.createElement(u["a"],{color:e<(new Date).getTime()/1e3&&null!==e?"red":"green"},e?C()(1e3*e).format("YYYY/MM/DD HH:mm"):null===e?"\u957f\u671f\u6709\u6548":"-")}},{title:"\u52a0\u5165\u65f6\u95f4",dataIndex:"created_at",key:"created_at",sorter:!0,align:"right",render:e=>{return C()(1e3*e).format("YYYY/MM/DD HH:mm")}}];return g.a.createElement(v["a"],i()({},this.props,{title:"\u7528\u6237\u7ba1\u7406"}),g.a.createElement("div",{className:"mb-0 block border-bottom ".concat(y?"block-mode-loading":"")},g.a.createElement("div",{className:"bg-white"},g.a.createElement("div",{className:"v2board-table-action",style:{padding:15}},g.a.createElement(c["a"],{title:"Tips\uff1a\u53ef\u4ee5\u4f7f\u7528\u8fc7\u6ee4\u5668\u8fc7\u6ee4\u540e\u518d\u4f7f\u7528\u64cd\u4f5c\u5bf9\u8fc7\u6ee4\u7684\u7528\u6237\u8fdb\u884c\u64cd\u4f5c\u3002",placement:"right"},g.a.createElement(T["a"],null,g.a.createElement(A["a"],{key:b.length,value:b,onOk:e=>this.props.dispatch({type:"user/filter",filter:e}),keys:[{key:"email",title:"\u90ae\u7bb1",condition:["\u6a21\u7cca"]},{key:"id",title:"\u7528\u6237ID",condition:["=",">=",">","<","<="]},{key:"plan_id",title:"\u8ba2\u9605",condition:["="],type:"select",options:_.map(e=>({key:e.name,value:e.id}))},{key:"transfer_enable",title:"\u6d41\u91cf",condition:[">=",">","<","<="]},{key:"d",title:"\u4e0b\u884c",condition:[">=",">","<","<="]},{key:"expired_at",title:"\u5230\u671f\u65f6\u95f4",condition:[">=",">","<","<="],type:"date"},{key:"uuid",title:"UUID",condition:["="]},{key:"token",title:"TOKEN",condition:["="]},{key:"banned",title:"\u8d26\u53f7\u72b6\u6001",condition:["="],type:"select",options:[{key:"\u6b63\u5e38",value:0},{key:"\u5c01\u7981",value:1}]},{key:"invite_by_email",title:"\u9080\u8bf7\u4eba\u90ae\u7bb1",condition:["\u6a21\u7cca"]},{key:"invite_user_id",title:"\u9080\u8bf7\u4ebaID",condition:["="]},{key:"remarks",title:"\u5907\u6ce8",condition:["\u6a21\u7cca"]}]},g.a.createElement(s["a"],{type:b.length>0?"primary":""},g.a.createElement(f["a"],{type:"filter"})," \u8fc7\u6ee4\u5668")),g.a.createElement(h["a"],{overlay:g.a.createElement(d["a"],null,g.a.createElement(d["a"].Item,null,g.a.createElement("a",{onClick:()=>this.dumpCSV()},g.a.createElement(f["a"],{type:"file-excel"})," \u5bfc\u51faCSV")),g.a.createElement(d["a"].Item,null,g.a.createElement(x,null,g.a.createElement("a",null,g.a.createElement(f["a"],{type:"mail"})," \u53d1\u9001\u90ae\u4ef6"))),g.a.createElement(d["a"].Item,{disabled:!b.length},g.a.createElement("a",{disabled:!b.length,onClick:()=>this.ban()},g.a.createElement(f["a"],{type:"stop"})," \u6279\u91cf\u5c01\u7981")))},g.a.createElement(s["a"],null,g.a.createElement(f["a"],{type:"select"}),"\u64cd\u4f5c")))),g.a.createElement(L,null,g.a.createElement(s["a"],{className:"ml-2"},g.a.createElement(f["a"],{type:"user-add"})))),g.a.createElement(j["a"],{onContextMenu:e=>{this.record=e,this.forceUpdate()},className:"v2board-table",tableLayout:"auto",dataSource:p,pagination:a()({},m,{size:"small",showSizeChanger:!0,pageSizeOptions:[10,50,100,150]}),columns:S,scroll:{x:1500},onChange:(e,t,n)=>this.tableOnChange(e,n)},g.a.createElement("ul",{className:"ant-dropdown-menu ant-dropdown-menu-light ant-dropdown-menu-root ant-dropdown-menu-vertical"},g.a.createElement("li",{className:"ant-dropdown-menu-item"},g.a.createElement(O["a"],{userId:null===(e=this.record)||void 0===e?void 0:e.id,key:null===(t=this.record)||void 0===t?void 0:t.id},g.a.createElement("a",null,g.a.createElement(f["a"],{type:"edit"})," \u7f16\u8f91"))),g.a.createElement("li",{className:"ant-dropdown-menu-item"},g.a.createElement(k["a"],{email:null===(n=this.record)||void 0===n?void 0:n.email,key:null===(r=this.record)||void 0===r?void 0:r.email},g.a.createElement("a",null,g.a.createElement(f["a"],{type:"plus"})," \u5206\u914d\u8ba2\u5355"))),g.a.createElement("li",{className:"ant-dropdown-menu-item"},g.a.createElement("a",{onClick:()=>{var e;return Object(D["a"])(null===(e=this.record)||void 0===e?void 0:e.subscribe_url)}},g.a.createElement(f["a"],{type:"copy"})," \u590d\u5236\u8ba2\u9605URL")),g.a.createElement("li",{className:"ant-dropdown-menu-item"},g.a.createElement("a",{style:{color:"#ff4d4f"},onClick:()=>this.resetSecret(this.record)},g.a.createElement(f["a"],{type:"reload"})," \u91cd\u7f6eUUID\u53ca\u8ba2\u9605URL")),g.a.createElement("li",{className:"ant-dropdown-menu-item",onClick:()=>{var e;return this.orderFilter("user_id","=",null===(e=this.record)||void 0===e?void 0:e.id)}},g.a.createElement(f["a"],{type:"account-book"})," TA\u7684\u8ba2\u5355"),g.a.createElement("li",{className:"ant-dropdown-menu-item",onClick:()=>{var e;return this.userFilter("invite_user_id","=",null===(e=this.record)||void 0===e?void 0:e.id,!0)}},g.a.createElement(f["a"],{type:"usergroup-add"})," TA\u7684\u9080\u8bf7"))))))}}t["default"]=Object(b["c"])(e=>{var t=e.user,n=e.serverGroup,r=e.plan;return{user:t,serverGroup:n,plan:r}})(N)},d6i3:function(e,t,n){e.exports=n("wOl0")},dX6P:function(e,t,n){"use strict";n.r(t);var r=n("d6i3"),i=n.n(r),o=n("p0pE"),a=n.n(o),s=n("t3Un"),l=n("3a4m"),c=n.n(l);t["default"]={name:"auth",state:{},reducers:{save(e,t){var n=t.payload;return a()({},e,n)}},effects:{login(e,t){return i.a.mark(function n(){var r,o,a;return i.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.action,o=t.put,n.next=4,o({type:"save",payload:{loginLoading:!0}});case 4:return n.next=6,Object(s["b"])("/passport/auth/login",r);case 6:return a=n.sent,n.next=9,o({type:"save",payload:{loginLoading:!1}});case 9:if(200===a.code){n.next=11;break}return n.abrupt("return");case 11:if(a.data.is_admin){n.next=13;break}return n.abrupt("return");case 13:c.a.push("/dashboard");case 14:case"end":return n.stop()}},n)})()},register(e){return i.a.mark(function t(){var n,r,o;return i.a.wrap(function(t){while(1)switch(t.prev=t.next){case 0:return n=e.action,r=e.complete,t.next=3,Object(s["a"])("/passport/auth/register",n);case 3:o=t.sent,o&&r(o);case 5:case"end":return t.stop()}},t)})()}}}},dcFJ:function(e,t,n){"use strict";var r=n("wHrr"),i=n("WGNW"),o=n("il4q"),a=n("69SZ"),s=n("ULMT"),l=n("OsVd"),c=n("aSE1"),u=n("BnQZ");i(i.S+i.F*!n("cQyX")(function(e){Array.from(e)}),"Array",{from:function(e){var t,n,i,h,d=o(e),f="function"==typeof this?this:Array,p=arguments.length,m=p>1?arguments[1]:void 0,g=void 0!==m,v=0,y=u(d);if(g&&(m=r(m,p>2?arguments[2]:void 0,2)),void 0==y||f==Array&&s(y))for(t=l(d.length),n=new f(t);t>v;v++)c(n,v,g?m(d[v],v):d[v]);else for(h=y.call(d),n=new f;!(i=h.next()).done;v++)c(n,v,g?a(h,m,[i.value,v],!0):i.value);return n.length=v,n}})},dl0q:function(e,t,n){n("Zxgi")("observable")},dplF:function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=o;var r=i(n("i8i4"));function i(e){return e&&e.__esModule?e:{default:e}}function o(e){return e instanceof HTMLElement?e:r.default.findDOMNode(e)}},dqUG:function(e,t,n){"use strict";var r=n("IaEH"),i=n("1AkM"),o=n("3U8f"),a=n("bYtY"),s=n("6GrX"),l=n("Dagg"),c=n("x6Kt"),u=n("mFDi"),h=n("Gev7"),d={fill:"#000"},f=2,p={style:Object(a["j"])({fill:!0,stroke:!0,fillOpacity:!0,strokeOpacity:!0,lineWidth:!0,fontSize:!0,lineHeight:!0,width:!0,height:!0,textShadowColor:!0,textShadowBlur:!0,textShadowOffsetX:!0,textShadowOffsetY:!0,backgroundColor:!0,padding:!0,borderColor:!0,borderWidth:!0,borderRadius:!0},h["a"].style)},m=function(e){function t(t){var n=e.call(this)||this;return n.type="text",n._children=[],n._defaultStyle=d,n.attr(t),n}return Object(r["a"])(t,e),t.prototype.childrenRef=function(){return this._children},t.prototype.update=function(){e.prototype.update.call(this),this.styleChanged()&&this._updateSubTexts();for(var t=0;t0,j=null!=e.width&&("truncate"===e.overflow||"break"===e.overflow||"breakAll"===e.overflow),N=a.calculatedLineHeight,I=0;I=0&&(R=_[P],"right"===R.align))this._placeToken(R,e,k,v,M,"right",b),O-=R.width,M-=R.width,P--;A+=(r-(A-g)-(y-M)-O)/2;while(T<=P)R=_[T],this._placeToken(R,e,k,v,A+R.width/2,"center",b),A+=R.width,T++;v+=k}},t.prototype._placeToken=function(e,t,n,r,i,l,c){var h=t.rich[e.styleName]||{};h.text=e.text;var d=e.verticalAlign,p=r+n/2;"top"===d?p=r+e.height/2:"bottom"===d&&(p=r+n-e.height/2);var m=!e.isLineHolder&&S(h);m&&this._renderBackground(h,t,"right"===l?i-e.width:"center"===l?i-e.width/2:i,p-e.height/2,e.width,e.height);var g=!!h.backgroundColor,v=e.textPadding;v&&(i=_(i,l,v),p-=e.height/2-v[0]-e.innerHeight/2);var y=this._getOrCreateChild(o["a"]),b=y.createStyle();y.useStyle(b);var C=this._defaultStyle,E=!1,k=0,O=x("fill"in h?h.fill:"fill"in t?t.fill:(E=!0,C.fill)),T=w("stroke"in h?h.stroke:"stroke"in t?t.stroke:g||c||C.autoStroke&&!E?null:(k=f,C.stroke)),A=h.textShadowBlur>0||t.textShadowBlur>0;b.text=e.text,b.x=i,b.y=p,A&&(b.shadowBlur=h.textShadowBlur||t.textShadowBlur||0,b.shadowColor=h.textShadowColor||t.textShadowColor||"transparent",b.shadowOffsetX=h.textShadowOffsetX||t.textShadowOffsetX||0,b.shadowOffsetY=h.textShadowOffsetY||t.textShadowOffsetY||0),b.textAlign=l,b.textBaseline="middle",b.font=e.font||s["a"],b.opacity=Object(a["N"])(h.opacity,t.opacity,1),T&&(b.lineWidth=Object(a["N"])(h.lineWidth,t.lineWidth,k),b.lineDash=Object(a["M"])(h.lineDash,t.lineDash),b.lineDashOffset=t.lineDashOffset||0,b.stroke=T),O&&(b.fill=O);var M=e.contentWidth,P=e.contentHeight;y.setBoundingRect(new u["a"](Object(s["b"])(b.x,M,b.textAlign),Object(s["c"])(b.y,P,b.textBaseline),M,P))},t.prototype._renderBackground=function(e,t,n,r,i,o){var s,u,h=e.backgroundColor,d=e.borderWidth,f=e.borderColor,p=h&&h.image,m=h&&!p,g=e.borderRadius,v=this;if(m||e.lineHeight||d&&f){s=this._getOrCreateChild(c["a"]),s.useStyle(s.createStyle()),s.style.fill=null;var y=s.shape;y.x=n,y.y=r,y.width=i,y.height=o,y.r=g,s.dirtyShape()}if(m){var b=s.style;b.fill=h||null,b.fillOpacity=Object(a["M"])(e.fillOpacity,1)}else if(p){u=this._getOrCreateChild(l["a"]),u.onload=function(){v.dirtyStyle()};var w=u.style;w.image=h.image,w.x=n,w.y=r,w.width=i,w.height=o}if(d&&f){b=s.style;b.lineWidth=d,b.stroke=f,b.strokeOpacity=Object(a["M"])(e.strokeOpacity,1),b.lineDash=e.borderDash,b.lineDashOffset=e.borderDashOffset||0,s.strokeContainThreshold=0,s.hasFill()&&s.hasStroke()&&(b.strokeFirst=!0,b.lineWidth*=2)}var x=(s||u).style;x.shadowBlur=e.shadowBlur||0,x.shadowColor=e.shadowColor||"transparent",x.shadowOffsetX=e.shadowOffsetX||0,x.shadowOffsetY=e.shadowOffsetY||0,x.opacity=Object(a["N"])(e.opacity,t.opacity,1)},t.makeFont=function(e){var t="";if(e.fontSize||e.fontFamily||e.fontWeight){var n="";n="string"!==typeof e.fontSize||-1===e.fontSize.indexOf("px")&&-1===e.fontSize.indexOf("rem")&&-1===e.fontSize.indexOf("em")?isNaN(+e.fontSize)?"12px":e.fontSize+"px":e.fontSize,t=[e.fontStyle,e.fontWeight,n,e.fontFamily||"sans-serif"].join(" ")}return t&&Object(a["Q"])(t)||e.textFont||e.font},t}(h["c"]),g={left:!0,right:1,center:1},v={top:1,bottom:1,middle:1};function y(e){return b(e),Object(a["k"])(e.rich,b),e}function b(e){if(e){e.font=m.makeFont(e);var t=e.align;"middle"===t&&(t="center"),e.align=null==t||g[t]?t:"left";var n=e.verticalAlign;"center"===n&&(n="middle"),e.verticalAlign=null==n||v[n]?n:"top";var r=e.padding;r&&(e.padding=Object(a["J"])(e.padding))}}function w(e,t){return null==e||t<=0||"transparent"===e||"none"===e?null:e.image||e.colorStops?"#000":e}function x(e){return null==e||"none"===e?null:e.image||e.colorStops?"#000":e}function _(e,t,n){return"right"===t?e-n[1]:"center"===t?e+n[3]/2-n[1]/2:e+n[3]}function C(e){var t=e.text;return null!=t&&(t+=""),t}function S(e){return!!(e.backgroundColor||e.lineHeight||e.borderWidth&&e.borderColor)}t["a"]=m},"e+9n":function(e,t,n){"use strict";n.r(t);n("miYZ");var r=n("tsqr"),i=n("d6i3"),o=n.n(i),a=n("p0pE"),s=n.n(a),l=n("t3Un"),c={tickets:[],fetchLoading:!1,ticket:{message:[]},pagination:{pageSize:10,current:1},filter:{status:0},replyLoading:!1};t["default"]={name:"ticket",state:s()({},c),reducers:{setState(e,t){var n=t.payload;return s()({},e,n)}},effects:{fetch(e,t){return o.a.mark(function e(){var n,r,i,a,c,u;return o.a.wrap(function(e){while(1)switch(e.prev=e.next){case 0:return n=t.put,r=t.select,e.next=3,r(e=>e.ticket);case 3:return i=e.sent,a=i.pagination,c=i.filter,e.next=8,n({type:"setState",payload:{fetchLoading:!0}});case 8:return e.next=10,Object(l["a"])("/admin/ticket/fetch",s()({},a,c));case 10:return u=e.sent,e.next=13,n({type:"setState",payload:{fetchLoading:!1}});case 13:if(200===u.code){e.next=15;break}return e.abrupt("return");case 15:return e.next=17,n({type:"setState",payload:{tickets:u.data,pagination:s()({},a,{total:u.total})}});case 17:case"end":return e.stop()}},e)})()},fetchById(e,t){return o.a.mark(function n(){var r,i,a,s,c,u;return o.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.id,i=t.put,a=t.select,n.next=4,Object(l["a"])("/admin/ticket/fetch",{id:r});case 4:if(s=n.sent,200===s.code){n.next=7;break}return n.abrupt("return");case 7:return n.next=9,i({type:"setState",payload:{ticket:s.data}});case 9:return n.next=11,a(e=>e.user);case 11:if(c=n.sent,u=c.user,!u.id){n.next=15;break}return n.abrupt("return");case 15:return n.next=17,i({type:"user/getUserInfoById",id:s.data.user_id});case 17:case"end":return n.stop()}},n)})()},close(e,t){return o.a.mark(function n(){var r,i,a;return o.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.id,i=t.put,n.next=4,Object(l["b"])("/admin/ticket/close",{id:r});case 4:if(a=n.sent,200===a.code){n.next=7;break}return n.abrupt("return");case 7:return n.next=9,i({type:"fetch"});case 9:case"end":return n.stop()}},n)})()},reply(e,t){return o.a.mark(function n(){var i,a,s,c,u;return o.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return i=e.id,a=e.msg,s=e.callback,c=t.put,r["a"].loading("\u53d1\u9001\u4e2d"),n.next=5,c({type:"setState",payload:{replyLoading:!0}});case 5:return n.next=7,Object(l["b"])("/admin/ticket/reply",{id:i,message:a});case 7:return u=n.sent,n.next=10,c({type:"setState",payload:{replyLoading:!1}});case 10:if(r["a"].destroy(),200===u.code){n.next=13;break}return n.abrupt("return");case 13:return n.next=15,c({type:"fetchById",id:i});case 15:"function"===typeof s&&s();case 16:case"end":return n.stop()}},n)})()},filter(e,t){return o.a.mark(function n(){var r,i,a,l,c;return o.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.pagination,i=e.filter,a=t.put,l=t.select,n.next=4,l(e=>e.ticket);case 4:return c=n.sent,n.next=7,a({type:"setState",payload:{pagination:s()({},c.pagination,r),filter:s()({},c.filter,i)}});case 7:return n.next=9,a({type:"fetch"});case 9:case"end":return n.stop()}},n)})()}}}},e6w7:function(e,t){t.f=Object.getOwnPropertySymbols},eDIo:function(e,t,n){"use strict";var r=n("q1tI"),i=n.n(r),o=n("17x9"),a=n.n(o),s=n("i8i4"),l=n.n(s),c=n("uciX"),u=n("TSYQ"),h=n.n(u),d={adjustX:1,adjustY:1},f=[0,0],p={topLeft:{points:["bl","tl"],overflow:d,offset:[0,-4],targetOffset:f},topCenter:{points:["bc","tc"],overflow:d,offset:[0,-4],targetOffset:f},topRight:{points:["br","tr"],overflow:d,offset:[0,-4],targetOffset:f},bottomLeft:{points:["tl","bl"],overflow:d,offset:[0,4],targetOffset:f},bottomCenter:{points:["tc","bc"],overflow:d,offset:[0,4],targetOffset:f},bottomRight:{points:["tr","br"],overflow:d,offset:[0,4],targetOffset:f}},m=p,g=n("VCL8"),v=Object.assign||function(e){for(var t=1;t=0||Object.prototype.hasOwnProperty.call(e,r)&&(n[r]=e[r]);return n}function b(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function w(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function x(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var _=function(e){function t(n){b(this,t);var r=w(this,e.call(this,n));return C.call(r),r.state="visible"in n?{visible:n.visible}:{visible:n.defaultVisible},r}return x(t,e),t.getDerivedStateFromProps=function(e){return"visible"in e?{visible:e.visible}:null},t.prototype.getOverlayElement=function(){var e=this.props.overlay,t=void 0;return t="function"===typeof e?e():e,t},t.prototype.getMenuElementOrLambda=function(){var e=this.props.overlay;return"function"===typeof e?this.getMenuElement:this.getMenuElement()},t.prototype.getPopupDomNode=function(){return this.trigger.getPopupDomNode()},t.prototype.getOpenClassName=function(){var e=this.props,t=e.openClassName,n=e.prefixCls;return void 0!==t?t:n+"-open"},t.prototype.renderChildren=function(){var e=this.props.children,t=this.state.visible,n=e.props?e.props:{},i=h()(n.className,this.getOpenClassName());return t&&e?Object(r["cloneElement"])(e,{className:i}):e},t.prototype.render=function(){var e=this.props,t=e.prefixCls,n=e.transitionName,r=e.animation,o=e.align,a=e.placement,s=e.getPopupContainer,l=e.showAction,u=e.hideAction,h=e.overlayClassName,d=e.overlayStyle,f=e.trigger,p=y(e,["prefixCls","transitionName","animation","align","placement","getPopupContainer","showAction","hideAction","overlayClassName","overlayStyle","trigger"]),g=u;return g||-1===f.indexOf("contextMenu")||(g=["click"]),i.a.createElement(c["a"],v({},p,{prefixCls:t,ref:this.saveTrigger,popupClassName:h,popupStyle:d,builtinPlacements:m,action:f,showAction:l,hideAction:g||[],popupPlacement:a,popupAlign:o,popupTransitionName:n,popupAnimation:r,popupVisible:this.state.visible,afterPopupVisibleChange:this.afterVisibleChange,popup:this.getMenuElementOrLambda(),onPopupVisibleChange:this.onVisibleChange,getPopupContainer:s}),this.renderChildren())},t}(r["Component"]);_.propTypes={minOverlayWidthMatchTrigger:a.a.bool,onVisibleChange:a.a.func,onOverlayClick:a.a.func,prefixCls:a.a.string,children:a.a.any,transitionName:a.a.string,overlayClassName:a.a.string,openClassName:a.a.string,animation:a.a.any,align:a.a.object,overlayStyle:a.a.object,placement:a.a.string,overlay:a.a.oneOfType([a.a.node,a.a.func]),trigger:a.a.array,alignPoint:a.a.bool,showAction:a.a.array,hideAction:a.a.array,getPopupContainer:a.a.func,visible:a.a.bool,defaultVisible:a.a.bool},_.defaultProps={prefixCls:"rc-dropdown",trigger:["hover"],showAction:[],overlayClassName:"",overlayStyle:{},defaultVisible:!1,onVisibleChange:function(){},placement:"bottomLeft"};var C=function(){var e=this;this.onClick=function(t){var n=e.props,r=e.getOverlayElement().props;"visible"in n||e.setState({visible:!1}),n.onOverlayClick&&n.onOverlayClick(t),r.onClick&&r.onClick(t)},this.onVisibleChange=function(t){var n=e.props;"visible"in n||e.setState({visible:t}),n.onVisibleChange(t)},this.getMinOverlayWidthMatchTrigger=function(){var t=e.props,n=t.minOverlayWidthMatchTrigger,r=t.alignPoint;return"minOverlayWidthMatchTrigger"in e.props?n:!r},this.getMenuElement=function(){var t=e.props.prefixCls,n=e.getOverlayElement(),r={prefixCls:t+"-menu",onClick:e.onClick};return"string"===typeof n.type&&delete r.prefixCls,i.a.cloneElement(n,r)},this.afterVisibleChange=function(t){if(t&&e.getMinOverlayWidthMatchTrigger()){var n=e.getPopupDomNode(),r=l.a.findDOMNode(e);r&&n&&r.offsetWidth>n.offsetWidth&&(n.style.minWidth=r.offsetWidth+"px",e.trigger&&e.trigger._component&&e.trigger._component.alignInstance&&e.trigger._component.alignInstance.forceAlign())}},this.saveTrigger=function(t){e.trigger=t}};Object(g["polyfill"])(_);var S=_;t["a"]=S},eGJ5:function(e,t,n){"use strict";var r=n("QbLZ"),i=n.n(r),o=n("q1tI"),a=n("iCc5"),s=n.n(a),l=n("FYw3"),c=n.n(l),u=n("mRg0"),h=n.n(u),d=n("i8i4"),f=n("4IlW"),p=n("l4aY"),m=n("MFj2"),g=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&t.indexOf(r)<0&&(n[r]=e[r]);if(null!=e&&"function"===typeof Object.getOwnPropertySymbols){var i=0;for(r=Object.getOwnPropertySymbols(e);ithis.setState({visible:!1})})}show(){this.props.dispatch({type:"payment/getPaymentMethods",complete:e=>{this.setState({visible:!0,paymentMethods:e,selectPaymentMethod:this.state.submit.payment||e[0]},()=>{this.onSelectPaymentMethod(this.state.submit.payment||e[0])})}})}onSelectPaymentMethod(e){this.props.dispatch({type:"payment/getPaymentForm",payment:e,id:this.state.submit.id,complete:t=>{this.setState({form:t,selectPaymentMethod:e})}})}configOnChange(e,t){var n=this.state.config;n[e]=t,this.setState({config:n})}submitOnChange(e,t){var n=this.state.submit;n[e]=t,this.setState({submit:n})}render(){var e=this.props.payment.fetchLoading,t=this.state,n=t.paymentMethods,r=t.selectPaymentMethod,i=t.form,o=t.config,a=t.submit;return d.a.createElement(d.a.Fragment,null,d.a.cloneElement(this.props.children,{onClick:()=>this.show()}),d.a.createElement(m["a"],{title:"".concat(this.state.submit.id?"\u7f16\u8f91\u652f\u4ed8\u65b9\u5f0f":"\u6dfb\u52a0\u652f\u4ed8\u65b9\u5f0f"),visible:this.state.visible,onCancel:()=>this.setState({visible:!1}),onOk:()=>e||this.save(),okText:e?d.a.createElement(c["a"],{type:"loading"}):"\u6dfb\u52a0",cancelText:"\u53d6\u6d88"},d.a.createElement("div",null,d.a.createElement("div",{className:"form-group"},d.a.createElement("label",{for:"example-text-input-alt"},"\u663e\u793a\u540d\u79f0"),d.a.createElement(v["a"],{placeholder:"\u7528\u4e8e\u524d\u7aef\u663e\u793a\u4f7f\u7528",defaultValue:a.name,onChange:e=>this.submitOnChange("name",e.target.value)})),d.a.createElement("div",{className:"form-group"},d.a.createElement("label",{htmlFor:"example-text-input-alt"},"\u56fe\u6807URL"),d.a.createElement(v["a"],{placeholder:"\u7528\u4e8e\u524d\u7aef\u663e\u793a\u4f7f\u7528(https://x.com/icon.svg)",defaultValue:a.icon,onChange:e=>this.submitOnChange("icon",e.target.value)})),d.a.createElement("div",{className:"form-group"},d.a.createElement("label",{for:"example-text-input-alt"},"\u63a5\u53e3\u6587\u4ef6"),d.a.createElement("div",null,d.a.createElement(g["a"],{style:{width:"100%"},defaultValue:r,onChange:e=>this.onSelectPaymentMethod(e)},n.map(e=>{return d.a.createElement(g["a"].Option,{value:e},e)})))),Object.keys(i).map(e=>{return d.a.createElement("div",{className:"form-group"},d.a.createElement("label",{for:"example-text-input-alt"},i[e].label),"input"===i[e].type&&d.a.createElement(v["a"],{placeholder:i[e].description,defaultValue:o[e]||i[e].value,onChange:t=>this.configOnChange(e,t.target.value)}))}),"MGate"===r&&d.a.createElement("div",{className:"alert alert-warning mb-0",role:"alert"},d.a.createElement("p",{className:"mb-0"},"MGate TG@nulledsan")))))}}var x=Object(p["c"])(e=>{var t=e.payment;return{payment:t}})(w);class _ extends d.a.Component{constructor(e){super(e),this.state={visible:!1,submit:{show:0}}}componentDidMount(){this.props.dispatch({type:"payment/fetch"})}save(e,t){this.props.dispatch({type:"payment/save",params:{id:e,enable:t}})}render(){var e=this.props.payment,t=e.payments,n=e.fetchLoading,r=[{title:"ID",dataIndex:"id",key:"id"},{title:"\u542f\u7528",dataIndex:"enable",key:"enable",render:(e,t)=>d.a.createElement(u["a"],{checked:parseInt(e),size:"small",onChange:e=>this.save(t.id,e?1:0)})},{title:"\u663e\u793a\u540d\u79f0",dataIndex:"name",key:"name"},{title:"\u652f\u4ed8\u63a5\u53e3",dataIndex:"payment",key:"payment"},{title:d.a.createElement("span",null,"\u901a\u77e5\u5730\u5740 ",d.a.createElement(l["a"],{placement:"top",title:"\u652f\u4ed8\u7f51\u5173\u5c06\u4f1a\u628a\u6570\u636e\u901a\u77e5\u5230\u672c\u5730\u5740\uff0c\u8bf7\u901a\u8fc7\u9632\u706b\u5899\u653e\u884c\u672c\u5730\u5740\u3002"},d.a.createElement(c["a"],{type:"question-circle"}))),dataIndex:"notify_url",key:"notify_url"},{title:"\u64cd\u4f5c",dataIndex:"action",key:"action",align:"right",render:(e,t)=>d.a.createElement(d.a.Fragment,null,d.a.createElement(x,{key:t.id,record:t},d.a.createElement("a",{href:"javascript:void(0);"},"\u7f16\u8f91")),d.a.createElement(s["a"],{type:"vertical"}),d.a.createElement("a",{href:"javascript:void(0)",onClick:()=>this.props.dispatch({type:"payment/drop",id:t.id})},"\u5220\u9664"))}];return d.a.createElement(f["a"],i()({},this.props,{title:"\u8ba2\u9605\u7ba1\u7406"}),d.a.createElement("div",{className:"d-flex justify-content-between align-items-center"}),d.a.createElement("div",{className:"block block-rounded ".concat(n?"block-mode-loading":"")},d.a.createElement("div",{className:"bg-white"},d.a.createElement("div",{style:{padding:15}},d.a.createElement(x,{key:0},d.a.createElement(a["a"],null,d.a.createElement(c["a"],{type:"plus"})," \u6dfb\u52a0\u652f\u4ed8\u65b9\u5f0f"))),d.a.createElement(o["a"],{tableLayout:"auto",dataSource:t,columns:r,pagination:!1,scroll:{x:1300}}))))}}t["default"]=Object(p["c"])(e=>{var t=e.payment;return{payment:t}})(_)},eOCx:function(e,t,n){"use strict";n.r(t);var r=n("d6i3"),i=n.n(r),o=n("p0pE"),a=n.n(o),s=n("t3Un"),l=n("wd/R"),c=n.n(l),u={coupons:[],fetchLoading:!1,saveLoading:!1,pagination:{pageSize:10,current:1},sort:{}};t["default"]={name:"coupon",state:a()({},u),reducers:{setState(e,t){var n=t.payload;return a()({},e,n)}},effects:{fetch(e,t){return i.a.mark(function e(){var n,r,o,l;return i.a.wrap(function(e){while(1)switch(e.prev=e.next){case 0:return n=t.put,r=t.select,e.next=3,r(e=>e.coupon);case 3:return o=e.sent,e.next=6,n({type:"setState",payload:{fetchLoading:!0}});case 6:return e.next=8,Object(s["a"])("/admin/coupon/fetch",a()({},o.pagination,o.sort));case 8:return l=e.sent,e.next=11,n({type:"setState",payload:{fetchLoading:!1}});case 11:if(200===l.code){e.next=13;break}return e.abrupt("return");case 13:return l.data.forEach(e=>{1===e.type&&(e.value=e.value/100)}),e.next=16,n({type:"setState",payload:{coupons:l.data,pagination:a()({},o.pagination,{total:l.total})}});case 16:case"end":return e.stop()}},e)})()},generate(e,t){return i.a.mark(function n(){var r,o,a,l,u,h,d;return i.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.params,o=e.callback,a=t.put,n.next=4,a({type:"setState",payload:{saveLoading:!0}});case 4:return 1===r.type&&(r.value=100*r.value),n.next=7,Object(s["b"])("/admin/coupon/generate",r);case 7:return l=n.sent,n.next=10,a({type:"setState",payload:{saveLoading:!1}});case 10:if(200===l.code){n.next=12;break}return n.abrupt("return");case 12:return r.generate_count&&(u=new Blob([l.buffer],{type:"text/plain,charset=UTF-8"}),h=window.URL.createObjectURL(u),d=document.createElement("a"),d.href=h,d.style.display="none",d.download="COUPON ".concat(c()().format("YYYY-MM-DD HH:mm:ss"),".csv"),d.click(),window.URL.revokeObjectURL(h)),n.next=15,a({type:"fetch"});case 15:"function"===typeof o&&o();case 16:case"end":return n.stop()}},n)})()},drop(e,t){return i.a.mark(function n(){var r,o,a;return i.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.id,o=t.put,n.next=4,Object(s["b"])("/admin/coupon/drop",{id:r});case 4:if(a=n.sent,200===a.code){n.next=7;break}return n.abrupt("return");case 7:return n.next=9,o({type:"fetch"});case 9:case"end":return n.stop()}},n)})()},changeTable(e,t){return i.a.mark(function n(){var r,o,s,l,c;return i.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.pagination,o=e.sort,s=t.select,l=t.put,n.next=4,s(e=>e.coupon);case 4:return c=n.sent,n.next=7,l({type:"setState",payload:{pagination:a()({},c.pagination,r),sort:o}});case 7:return n.next=9,l({type:"fetch"});case 9:case"end":return n.stop()}},n)})()}}}},eUtF:function(e,t,n){e.exports=!n("jmDH")&&!n("KUxP")(function(){return 7!=Object.defineProperty(n("Hsns")("div"),"a",{get:function(){return 7}}).a})},eaoh:function(e,t){e.exports=function(e){if("function"!=typeof e)throw TypeError(e+" is not a function!");return e}},er1Y:function(e,t,n){var r=n("WGNW"),i=n("Zgoe"),o=n("OeOC"),a=n("15BC"),s=n("aSE1");r(r.S,"Object",{getOwnPropertyDescriptors:function(e){var t,n,r=o(e),l=a.f,c=i(r),u={},h=0;while(c.length>h)n=l(r,t=c[h++]),void 0!==n&&s(u,t,n);return u}})},fDcq:function(e,t,n){"use strict";var r=n("iCc5"),i=n.n(r),o=n("FYw3"),a=n.n(o),s=n("mRg0"),l=n.n(s),c=n("q1tI"),u=n.n(c),h={DATE_ROW_COUNT:6,DATE_COL_COUNT:7},d=n("wd/R"),f=n.n(d),p=function(e){function t(){return i()(this,t),a()(this,e.apply(this,arguments))}return l()(t,e),t.prototype.render=function(){for(var e=this.props,t=e.value,n=t.localeData(),r=e.prefixCls,i=[],o=[],a=n.firstDayOfWeek(),s=void 0,l=f()(),c=0;ct.year()?1:e.year()===t.year()&&e.month()>t.month()}function S(e){return"rc-calendar-"+e.year()+"-"+e.month()+"-"+e.date()}var E=function(e){function t(){return i()(this,t),a()(this,e.apply(this,arguments))}return l()(t,e),t.prototype.render=function(){var e=this.props,t=e.contentRender,n=e.prefixCls,r=e.selectedValue,i=e.value,o=e.showWeekNumber,a=e.dateRender,s=e.disabledDate,l=e.hoverValue,c=void 0,d=void 0,f=void 0,p=[],m=Object(w["e"])(i),g=n+"-cell",v=n+"-week-number-cell",y=n+"-date",E=n+"-today",k=n+"-selected-day",O=n+"-selected-date",T=n+"-selected-start-date",A=n+"-selected-end-date",M=n+"-in-range-cell",P=n+"-last-month-cell",R=n+"-next-month-btn-day",L=n+"-disabled-cell",D=n+"-disabled-cell-first-of-row",j=n+"-disabled-cell-last-of-row",N=n+"-last-day-of-month",I=i.clone();I.date(1);var $=I.day(),F=($+7-i.localeData().firstDayOfWeek())%7,V=I.clone();V.add(0-F,"days");var B=0;for(c=0;c0&&(Y=p[B-1]);var X=g,Q=!1,Z=!1;x(f,m)&&(X+=" "+E,z=!0);var J=_(f,i),ee=C(f,i);if(r&&Array.isArray(r)){var te=l.length?l:r;if(!J&&!ee){var ne=te[0],re=te[1];ne&&x(f,ne)&&(Z=!0,q=!0,X+=" "+T),(ne||re)&&(x(f,re)?(Z=!0,q=!0,X+=" "+A):(null!==ne&&void 0!==ne||!f.isBefore(re,"day"))&&(null!==re&&void 0!==re||!f.isAfter(ne,"day"))?f.isAfter(ne,"day")&&f.isBefore(re,"day")&&(X+=" "+M):X+=" "+M)}}else x(f,i)&&(Z=!0,q=!0);x(f,r)&&(X+=" "+O),J&&(X+=" "+P),ee&&(X+=" "+R),f.clone().endOf("month").date()===f.date()&&(X+=" "+N),s&&s(f,i)&&(Q=!0,Y&&s(Y,i)||(X+=" "+D),G&&s(G,i)||(X+=" "+j)),Z&&(X+=" "+k),Q&&(X+=" "+L);var ie=void 0;if(a)ie=a(f,i);else{var oe=t?t(f,i):f.date();ie=u.a.createElement("div",{key:S(f),className:y,"aria-selected":Z,"aria-disabled":Q},oe)}K.push(u.a.createElement("td",{key:B,onClick:Q?void 0:e.onSelect.bind(null,f),onMouseEnter:Q?void 0:e.onDayHover&&e.onDayHover.bind(null,f)||void 0,role:"gridcell",title:Object(w["d"])(f),className:X},ie)),B++}W.push(u.a.createElement("tr",{key:c,role:"row",className:b()((H={},H[n+"-current-week"]=z,H[n+"-active-week"]=q,H))},U,K))}return u.a.createElement("tbody",{className:n+"-tbody"},W)},t}(u.a.Component);E.propTypes={contentRender:v.a.func,dateRender:v.a.func,disabledDate:v.a.func,prefixCls:v.a.string,selectedValue:v.a.oneOfType([v.a.object,v.a.arrayOf(v.a.object)]),value:v.a.object,hoverValue:v.a.any,showWeekNumber:v.a.bool},E.defaultProps={hoverValue:[]};var k=E,O=function(e){function t(){return i()(this,t),a()(this,e.apply(this,arguments))}return l()(t,e),t.prototype.render=function(){var e=this.props,t=e.prefixCls;return u.a.createElement("table",{className:t+"-table",cellSpacing:"0",role:"grid"},u.a.createElement(m,e),u.a.createElement(k,e))},t}(u.a.Component);t["a"]=O},fHKQ:function(e,t,n){var r=n("8Z/V"),i=n("Igga"),o=n("OeOC"),a=n("LsAW").f;e.exports=function(e){return function(t){var n,s=o(t),l=i(s),c=l.length,u=0,h=[];while(c>u)n=l[u++],r&&!a.call(s,n)||h.push(e?[n,s[n]]:s[n]);return h}}},fKCf:function(e,t){e.exports=/[!-#%-\*,-\/:;\?@\[-\]_\{\}\xA1\xA7\xAB\xB6\xB7\xBB\xBF\u037E\u0387\u055A-\u055F\u0589\u058A\u05BE\u05C0\u05C3\u05C6\u05F3\u05F4\u0609\u060A\u060C\u060D\u061B\u061E\u061F\u066A-\u066D\u06D4\u0700-\u070D\u07F7-\u07F9\u0830-\u083E\u085E\u0964\u0965\u0970\u09FD\u0A76\u0AF0\u0C84\u0DF4\u0E4F\u0E5A\u0E5B\u0F04-\u0F12\u0F14\u0F3A-\u0F3D\u0F85\u0FD0-\u0FD4\u0FD9\u0FDA\u104A-\u104F\u10FB\u1360-\u1368\u1400\u166D\u166E\u169B\u169C\u16EB-\u16ED\u1735\u1736\u17D4-\u17D6\u17D8-\u17DA\u1800-\u180A\u1944\u1945\u1A1E\u1A1F\u1AA0-\u1AA6\u1AA8-\u1AAD\u1B5A-\u1B60\u1BFC-\u1BFF\u1C3B-\u1C3F\u1C7E\u1C7F\u1CC0-\u1CC7\u1CD3\u2010-\u2027\u2030-\u2043\u2045-\u2051\u2053-\u205E\u207D\u207E\u208D\u208E\u2308-\u230B\u2329\u232A\u2768-\u2775\u27C5\u27C6\u27E6-\u27EF\u2983-\u2998\u29D8-\u29DB\u29FC\u29FD\u2CF9-\u2CFC\u2CFE\u2CFF\u2D70\u2E00-\u2E2E\u2E30-\u2E4E\u3001-\u3003\u3008-\u3011\u3014-\u301F\u3030\u303D\u30A0\u30FB\uA4FE\uA4FF\uA60D-\uA60F\uA673\uA67E\uA6F2-\uA6F7\uA874-\uA877\uA8CE\uA8CF\uA8F8-\uA8FA\uA8FC\uA92E\uA92F\uA95F\uA9C1-\uA9CD\uA9DE\uA9DF\uAA5C-\uAA5F\uAADE\uAADF\uAAF0\uAAF1\uABEB\uFD3E\uFD3F\uFE10-\uFE19\uFE30-\uFE52\uFE54-\uFE61\uFE63\uFE68\uFE6A\uFE6B\uFF01-\uFF03\uFF05-\uFF0A\uFF0C-\uFF0F\uFF1A\uFF1B\uFF1F\uFF20\uFF3B-\uFF3D\uFF3F\uFF5B\uFF5D\uFF5F-\uFF65]|\uD800[\uDD00-\uDD02\uDF9F\uDFD0]|\uD801\uDD6F|\uD802[\uDC57\uDD1F\uDD3F\uDE50-\uDE58\uDE7F\uDEF0-\uDEF6\uDF39-\uDF3F\uDF99-\uDF9C]|\uD803[\uDF55-\uDF59]|\uD804[\uDC47-\uDC4D\uDCBB\uDCBC\uDCBE-\uDCC1\uDD40-\uDD43\uDD74\uDD75\uDDC5-\uDDC8\uDDCD\uDDDB\uDDDD-\uDDDF\uDE38-\uDE3D\uDEA9]|\uD805[\uDC4B-\uDC4F\uDC5B\uDC5D\uDCC6\uDDC1-\uDDD7\uDE41-\uDE43\uDE60-\uDE6C\uDF3C-\uDF3E]|\uD806[\uDC3B\uDE3F-\uDE46\uDE9A-\uDE9C\uDE9E-\uDEA2]|\uD807[\uDC41-\uDC45\uDC70\uDC71\uDEF7\uDEF8]|\uD809[\uDC70-\uDC74]|\uD81A[\uDE6E\uDE6F\uDEF5\uDF37-\uDF3B\uDF44]|\uD81B[\uDE97-\uDE9A]|\uD82F\uDC9F|\uD836[\uDE87-\uDE8B]|\uD83A[\uDD5E\uDD5F]/},"fKm+":function(e,t,n){"use strict";var r=n("2Os2"),i=n("Jc7p"),o="WeakSet";n("nWMQ")(o,function(e){return function(){return e(this,arguments.length>0?arguments[0]:void 0)}},{add:function(e){return r.def(i(this,o),e,!0)}},r,!1,!0)},fZtv:function(e,t,n){"use strict";(function(t){var n="__global_unique_id__";e.exports=function(){return t[n]=(t[n]||0)+1}}).call(this,n("yLpj"))},fcSX:function(e,t,n){"use strict";var r=n("1W/9"),i=n("q1tI"),o=n("VCL8"),a=n("TSYQ"),s=n.n(a),l=n("qx4F"),c=n("4IlW");function u(e){return Array.isArray(e)?e:[e]}var h={transition:"transitionend",WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend"},d=Object.keys(h).filter(function(e){if("undefined"===typeof document)return!1;var t=document.getElementsByTagName("html")[0];return e in(t?t.style:{})})[0],f=h[d];function p(e,t,n,r){e.addEventListener?e.addEventListener(t,n,r):e.attachEvent&&e.attachEvent("on".concat(t),n)}function m(e,t,n,r){e.removeEventListener?e.removeEventListener(t,n,r):e.attachEvent&&e.detachEvent("on".concat(t),n)}function g(e,t){var n="function"===typeof e?e(t):e;return Array.isArray(n)?2===n.length?n:[n[0],n[1]]:[n]}var v=function(e){return!isNaN(parseFloat(e))&&isFinite(e)},y=!("undefined"!==typeof window&&window.document&&window.document.createElement),b=function e(t,n,r,i){if(!n||n===document||n instanceof Document)return!1;if(n===t.parentNode)return!0;var o=Math.max(Math.abs(r),Math.abs(i))===Math.abs(i),a=Math.max(Math.abs(r),Math.abs(i))===Math.abs(r),s=n.scrollHeight-n.clientHeight,l=n.scrollWidth-n.clientWidth,c=document.defaultView.getComputedStyle(n),u="auto"===c.overflowY||"scroll"===c.overflowY,h="auto"===c.overflowX||"scroll"===c.overflowX,d=s&&u,f=l&&h;return!!(o&&(!d||d&&(n.scrollTop>=s&&i<0||n.scrollTop<=0&&i>0))||a&&(!f||f&&(n.scrollLeft>=l&&l<0||n.scrollLeft<=0&&l>0)))&&e(t,n.parentNode,r,i)};function w(e){return w="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},w(e)}function x(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function _(e,t){if(null==e)return{};var n,r,i=C(e,t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(r=0;r=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(i[n]=e[n])}return i}function C(e,t){if(null==e)return{};var n,r,i={},o=Object.keys(e);for(r=0;r=0||(i[n]=e[n]);return i}function S(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function E(e,t){for(var n=0;n1||(n.startPos={x:e.touches[0].clientX,y:e.touches[0].clientY})},n.removeMoveHandler=function(e){if(!(e.changedTouches.length>1)){var t=e.currentTarget,r=e.changedTouches[0].clientX-n.startPos.x,i=e.changedTouches[0].clientY-n.startPos.y;(t===n.maskDom||t===n.handlerDom||t===n.contentDom&&b(t,e.target,r,i))&&e.preventDefault()}},n.transitionEnd=function(e){var t=e.target;m(t,f,n.transitionEnd),t.style.transition=""},n.onKeyDown=function(e){if(e.keyCode===c["a"].ESC){var t=n.props.onClose;e.stopPropagation(),t&&t(e)}},n.onWrapperTransitionEnd=function(e){var t=n.props,r=t.open,i=t.afterVisibleChange;e.target===n.contentWrapper&&e.propertyName.match(/transform$/)&&(n.dom.style.transition="",!r&&n.getCurrentDrawerSome()&&(document.body.style.overflowX="",n.maskDom&&(n.maskDom.style.left="",n.maskDom.style.width="")),i&&i(!!r))},n.openLevelTransition=function(){var e=n.props,t=e.open,r=e.width,i=e.height,o=n.getHorizontalBoolAndPlacementName(),a=o.isHorizontal,s=o.placementName,l=n.contentDom?n.contentDom.getBoundingClientRect()[a?"width":"height"]:0,c=(a?r:i)||l;n.setLevelAndScrolling(t,s,c)},n.setLevelTransform=function(e,t,r,i){var o=n.props,a=o.placement,s=o.levelMove,l=o.duration,c=o.ease,u=o.showMask;n.levelDom.forEach(function(o){o.style.transition="transform ".concat(l," ").concat(c),p(o,f,n.transitionEnd);var h=e?r:0;if(s){var d=g(s,{target:o,open:e});h=e?d[0]:d[1]||0}var m="number"===typeof h?"".concat(h,"px"):h,v="left"===a||"top"===a?m:"-".concat(m);v=u&&"right"===a&&i?"calc(".concat(v," + ").concat(i,"px)"):v,o.style.transform=h?"".concat(t,"(").concat(v,")"):""})},n.setLevelAndScrolling=function(e,t,r){var i=n.props.onChange;if(!y){var o=document.body.scrollHeight>(window.innerHeight||document.documentElement.clientHeight)&&window.innerWidth>document.body.offsetWidth?Object(l["a"])(!0):0;n.setLevelTransform(e,t,r,o),n.toggleScrollingToDrawerAndBody(o)}i&&i(e)},n.toggleScrollingToDrawerAndBody=function(e){var t=n.props,r=t.getOpenCount,i=t.getContainer,o=t.showMask,a=t.open,s=i&&i(),l=r&&r();if(s&&s.parentNode===document.body&&o){var c=["touchstart"],u=[document.body,n.maskDom,n.handlerDom,n.contentDom];a&&"hidden"!==document.body.style.overflow?(e&&n.addScrollingEffect(e),1===l&&(document.body.style.overflow="hidden"),document.body.style.touchAction="none",u.forEach(function(e,t){e&&p(e,c[t]||"touchmove",t?n.removeMoveHandler:n.removeStartHandler,n.passive)})):n.getCurrentDrawerSome()&&(l||(document.body.style.overflow=""),document.body.style.touchAction="",e&&n.remScrollingEffect(e),u.forEach(function(e,t){e&&m(e,c[t]||"touchmove",t?n.removeMoveHandler:n.removeStartHandler,n.passive)}))}},n.addScrollingEffect=function(e){var t=n.props,r=t.placement,i=t.duration,o=t.ease,a=t.getOpenCount,s=t.switchScrollingEffect,l=a&&a();1===l&&s();var c="width ".concat(i," ").concat(o),u="transform ".concat(i," ").concat(o);switch(n.dom.style.transition="none",r){case"right":n.dom.style.transform="translateX(-".concat(e,"px)");break;case"top":case"bottom":n.dom.style.width="calc(100% - ".concat(e,"px)"),n.dom.style.transform="translateZ(0)";break;default:break}clearTimeout(n.timeout),n.timeout=setTimeout(function(){n.dom&&(n.dom.style.transition="".concat(u,",").concat(c),n.dom.style.width="",n.dom.style.transform="")})},n.remScrollingEffect=function(e){var t,r=n.props,i=r.placement,o=r.duration,a=r.ease,s=r.getOpenCount,l=r.switchScrollingEffect,c=s&&s();c||l(!0),d&&(document.body.style.overflowX="hidden"),n.dom.style.transition="none";var u="width ".concat(o," ").concat(a),h="transform ".concat(o," ").concat(a);switch(i){case"left":n.dom.style.width="100%",u="width 0s ".concat(a," ").concat(o);break;case"right":n.dom.style.transform="translateX(".concat(e,"px)"),n.dom.style.width="100%",u="width 0s ".concat(a," ").concat(o),n.maskDom&&(n.maskDom.style.left="-".concat(e,"px"),n.maskDom.style.width="calc(100% + ".concat(e,"px)"));break;case"top":case"bottom":n.dom.style.width="calc(100% + ".concat(e,"px)"),n.dom.style.height="100%",n.dom.style.transform="translateZ(0)",t="height 0s ".concat(a," ").concat(o);break;default:break}clearTimeout(n.timeout),n.timeout=setTimeout(function(){n.dom&&(n.dom.style.transition="".concat(h,",").concat(t?"".concat(t,","):"").concat(u),n.dom.style.transform="",n.dom.style.width="",n.dom.style.height="")})},n.getCurrentDrawerSome=function(){return!Object.keys(R).some(function(e){return R[e]})},n.getLevelDom=function(e){var t=e.level,r=e.getContainer;if(!y){var i=r&&r(),o=i?i.parentNode:null;if(n.levelDom=[],"all"===t){var a=o?Array.prototype.slice.call(o.children):[];a.forEach(function(e){"SCRIPT"!==e.nodeName&&"STYLE"!==e.nodeName&&"LINK"!==e.nodeName&&e!==i&&n.levelDom.push(e)})}else t&&u(t).forEach(function(e){document.querySelectorAll(e).forEach(function(e){n.levelDom.push(e)})})}},n.getHorizontalBoolAndPlacementName=function(){var e=n.props.placement,t="left"===e||"right"===e,r="translate".concat(t?"X":"Y");return{isHorizontal:t,placementName:r}},n.state={_self:A(n)},n}return M(t,e),k(t,[{key:"componentDidMount",value:function(){var e=this;if(!y){var t=!1;try{window.addEventListener("test",null,Object.defineProperty({},"passive",{get:function(){return t=!0,null}}))}catch(e){}this.passive=!!t&&{passive:!1}}var n=this.props.open;this.drawerId="drawer_id_".concat(Number((Date.now()+Math.random()).toString().replace(".",Math.round(9*Math.random()).toString())).toString(16)),this.getLevelDom(this.props),n&&(R[this.drawerId]=n,this.openLevelTransition(),this.forceUpdate(function(){e.domFocus()}))}},{key:"componentDidUpdate",value:function(e){var t=this.props.open;t!==e.open&&(t&&this.domFocus(),R[this.drawerId]=!!t,this.openLevelTransition())}},{key:"componentWillUnmount",value:function(){var e=this.props,t=e.getOpenCount,n=e.open,r=e.switchScrollingEffect,i="function"===typeof t&&t();delete R[this.drawerId],n&&(this.setLevelTransform(!1),document.body.style.touchAction=""),i||(document.body.style.overflow="",r(!0))}},{key:"render",value:function(){var e,t=this,n=this.props,r=n.className,o=n.children,a=n.style,l=n.width,c=n.height,u=(n.defaultOpen,n.open),h=n.prefixCls,d=n.placement,f=(n.level,n.levelMove,n.ease,n.duration,n.getContainer,n.handler),p=(n.onChange,n.afterVisibleChange,n.showMask),m=n.maskClosable,g=n.maskStyle,y=n.onClose,b=n.onHandleClick,w=n.keyboard,C=(n.getOpenCount,n.switchScrollingEffect,_(n,["className","children","style","width","height","defaultOpen","open","prefixCls","placement","level","levelMove","ease","duration","getContainer","handler","onChange","afterVisibleChange","showMask","maskClosable","maskStyle","onClose","onHandleClick","keyboard","getOpenCount","switchScrollingEffect"])),S=!!this.dom&&u,E=s()(h,(e={},x(e,"".concat(h,"-").concat(d),!0),x(e,"".concat(h,"-open"),S),x(e,r||"",!!r),x(e,"no-mask",!p),e)),k=this.getHorizontalBoolAndPlacementName(),O=k.placementName,T="left"===d||"top"===d?"-100%":"100%",A=S?"":"".concat(O,"(").concat(T,")"),M=f&&i["cloneElement"](f,{onClick:function(e){f.props.onClick&&f.props.onClick(),b&&b(e)},ref:function(e){t.handlerDom=e}});return i["createElement"]("div",Object.assign({},C,{tabIndex:-1,className:E,style:a,ref:function(e){t.dom=e},onKeyDown:S&&w?this.onKeyDown:void 0,onTransitionEnd:this.onWrapperTransitionEnd}),p&&i["createElement"]("div",{className:"".concat(h,"-mask"),onClick:m?y:void 0,style:g,ref:function(e){t.maskDom=e}}),i["createElement"]("div",{className:"".concat(h,"-content-wrapper"),style:{transform:A,msTransform:A,width:v(l)?"".concat(l,"px"):l,height:v(c)?"".concat(c,"px"):c},ref:function(e){t.contentWrapper=e}},i["createElement"]("div",{className:"".concat(h,"-content"),ref:function(e){t.contentDom=e},onTouchStart:S&&p?this.removeStartHandler:void 0,onTouchMove:S&&p?this.removeMoveHandler:void 0},o),M))}}],[{key:"getDerivedStateFromProps",value:function(e,t){var n=t.prevProps,r=t._self,i={prevProps:e};if(void 0!==n){var o=e.placement,a=e.level;o!==n.placement&&(r.contentDom=null),a!==n.level&&r.getLevelDom(e)}return i}}]),t}(i["Component"]);L.defaultProps={switchScrollingEffect:function(){}};var D=Object(o["polyfill"])(L);function j(e){return j="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},j(e)}function N(e,t){if(null==e)return{};var n,r,i=I(e,t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(r=0;r=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(i[n]=e[n])}return i}function I(e,t){if(null==e)return{};var n,r,i={},o=Object.keys(e);for(r=0;r=0||(i[n]=e[n]);return i}function $(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function F(e,t){for(var n=0;nl)r.f(e,n=a[l++],t[n]);return e}},g0MP:function(e,t,n){"use strict";var r=n("GB+t"),i=n.n(r),o=n("QLaP"),a=n.n(o),s=n("/Qhy"),l=n("brdU"),c=function(e){return"/"===e.charAt(0)?e:"/"+e},u=function(e){return"/"===e.charAt(0)?e.substr(1):e},h=function(e,t){return new RegExp("^"+t+"(\\/|\\?|#|$)","i").test(e)},d=function(e,t){return h(e,t)?e.substr(t.length):e},f=function(e){return"/"===e.charAt(e.length-1)?e.slice(0,-1):e},p=function(e){var t=e||"/",n="",r="",i=t.indexOf("#");-1!==i&&(r=t.substr(i),t=t.substr(0,i));var o=t.indexOf("?");return-1!==o&&(n=t.substr(o),t=t.substr(0,o)),{pathname:t,search:"?"===n?"":n,hash:"#"===r?"":r}},m=function(e){var t=e.pathname,n=e.search,r=e.hash,i=t||"/";return n&&"?"!==n&&(i+="?"===n.charAt(0)?n:"?"+n),r&&"#"!==r&&(i+="#"===r.charAt(0)?r:"#"+r),i},g=n("ck9s"),v=n.n(g),y=Object.assign||function(e){for(var t=1;t0&&void 0!==arguments[0]?arguments[0]:{};a()(C,"Browser history needs a DOM");var t=window.history,n=E(),r=!k(),o=e.forceRefresh,s=void 0!==o&&o,l=e.getUserConfirmation,u=void 0===l?S:l,p=e.keyLength,g=void 0===p?6:p,v=e.basename?f(c(e.basename)):"",y=function(e){var t=e||{},n=t.key,r=t.state,o=window.location,a=o.pathname,s=o.search,l=o.hash,c=a+s+l;return i()(!v||h(c,v),'You are attempting to use a basename on a page whose URL path does not begin with the basename. Expected path "'+c+'" to begin with "'+v+'".'),v&&(c=d(c,v)),b(c,r,n)},w=function(){return Math.random().toString(36).substr(2,g)},x=_(),O=function(e){M(Z,e),Z.length=t.length,x.notifyListeners(Z.location,Z.action)},D=function(e){T(e)||I(y(e.state))},j=function(){I(y(L()))},N=!1,I=function(e){if(N)N=!1,O();else{var t="POP";x.confirmTransitionTo(e,t,u,function(n){n?O({action:t,location:e}):$(e)})}},$=function(e){var t=Z.location,n=V.indexOf(t.key);-1===n&&(n=0);var r=V.indexOf(e.key);-1===r&&(r=0);var i=n-r;i&&(N=!0,z(i))},F=y(L()),V=[F.key],B=function(e){return v+m(e)},W=function(e,r){i()(!("object"===("undefined"===typeof e?"undefined":A(e))&&void 0!==e.state&&void 0!==r),"You should avoid providing a 2nd state argument to push when the 1st argument is a location-like object that already has state; it is ignored");var o="PUSH",a=b(e,r,w(),Z.location);x.confirmTransitionTo(a,o,u,function(e){if(e){var r=B(a),l=a.key,c=a.state;if(n)if(t.pushState({key:l,state:c},null,r),s)window.location.href=r;else{var u=V.indexOf(Z.location.key),h=V.slice(0,-1===u?0:u+1);h.push(a.key),V=h,O({action:o,location:a})}else i()(void 0===c,"Browser history cannot push state in browsers that do not support HTML5 history"),window.location.href=r}})},H=function(e,r){i()(!("object"===("undefined"===typeof e?"undefined":A(e))&&void 0!==e.state&&void 0!==r),"You should avoid providing a 2nd state argument to replace when the 1st argument is a location-like object that already has state; it is ignored");var o="REPLACE",a=b(e,r,w(),Z.location);x.confirmTransitionTo(a,o,u,function(e){if(e){var r=B(a),l=a.key,c=a.state;if(n)if(t.replaceState({key:l,state:c},null,r),s)window.location.replace(r);else{var u=V.indexOf(Z.location.key);-1!==u&&(V[u]=a.key),O({action:o,location:a})}else i()(void 0===c,"Browser history cannot replace state in browsers that do not support HTML5 history"),window.location.replace(r)}})},z=function(e){t.go(e)},U=function(){return z(-1)},q=function(){return z(1)},K=0,G=function(e){K+=e,1===K?(window.addEventListener(P,D),r&&window.addEventListener(R,j)):0===K&&(window.removeEventListener(P,D),r&&window.removeEventListener(R,j))},Y=!1,X=function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0],t=x.setPrompt(e);return Y||(G(1),Y=!0),function(){return Y&&(Y=!1,G(-1)),t()}},Q=function(e){var t=x.appendListener(e);return G(1),function(){G(-1),t()}},Z={length:t.length,action:"POP",location:F,createHref:B,push:W,replace:H,go:z,goBack:U,goForward:q,block:X,listen:Q};return Z},j=D,N=Object.assign||function(e){for(var t=1;t=0?t:0)+"#"+e)},W=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};a()(C,"Hash history needs a DOM");var t=window.history,n=O(),r=e.getUserConfirmation,o=void 0===r?S:r,s=e.hashType,l=void 0===s?"slash":s,u=e.basename?f(c(e.basename)):"",p=$[l],g=p.encodePath,v=p.decodePath,y=function(){var e=v(F());return i()(!u||h(e,u),'You are attempting to use a basename on a page whose URL path does not begin with the basename. Expected path "'+e+'" to begin with "'+u+'".'),u&&(e=d(e,u)),b(e)},x=_(),E=function(e){N(J,e),J.length=t.length,x.notifyListeners(J.location,J.action)},k=!1,T=null,A=function(){var e=F(),t=g(e);if(e!==t)B(t);else{var n=y(),r=J.location;if(!k&&w(r,n))return;if(T===m(n))return;T=null,M(n)}},M=function(e){if(k)k=!1,E();else{var t="POP";x.confirmTransitionTo(e,t,o,function(n){n?E({action:t,location:e}):P(e)})}},P=function(e){var t=J.location,n=j.lastIndexOf(m(t));-1===n&&(n=0);var r=j.lastIndexOf(m(e));-1===r&&(r=0);var i=n-r;i&&(k=!0,U(i))},R=F(),L=g(R);R!==L&&B(L);var D=y(),j=[m(D)],W=function(e){return"#"+g(u+m(e))},H=function(e,t){i()(void 0===t,"Hash history cannot push state; it is ignored");var n="PUSH",r=b(e,void 0,void 0,J.location);x.confirmTransitionTo(r,n,o,function(e){if(e){var t=m(r),o=g(u+t),a=F()!==o;if(a){T=t,V(o);var s=j.lastIndexOf(m(J.location)),l=j.slice(0,-1===s?0:s+1);l.push(t),j=l,E({action:n,location:r})}else i()(!1,"Hash history cannot PUSH the same path; a new entry will not be added to the history stack"),E()}})},z=function(e,t){i()(void 0===t,"Hash history cannot replace state; it is ignored");var n="REPLACE",r=b(e,void 0,void 0,J.location);x.confirmTransitionTo(r,n,o,function(e){if(e){var t=m(r),i=g(u+t),o=F()!==i;o&&(T=t,B(i));var a=j.indexOf(m(J.location));-1!==a&&(j[a]=t),E({action:n,location:r})}})},U=function(e){i()(n,"Hash history go(n) causes a full page reload in this browser"),t.go(e)},q=function(){return U(-1)},K=function(){return U(1)},G=0,Y=function(e){G+=e,1===G?window.addEventListener(I,A):0===G&&window.removeEventListener(I,A)},X=!1,Q=function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0],t=x.setPrompt(e);return X||(Y(1),X=!0),function(){return X&&(X=!1,Y(-1)),t()}},Z=function(e){var t=x.appendListener(e);return Y(1),function(){Y(-1),t()}},J={length:t.length,action:"POP",location:D,createHref:W,push:H,replace:z,go:U,goBack:q,goForward:K,block:Q,listen:Z};return J},H=W,z="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},U=Object.assign||function(e){for(var t=1;t0&&void 0!==arguments[0]?arguments[0]:{},t=e.getUserConfirmation,n=e.initialEntries,r=void 0===n?["/"]:n,o=e.initialIndex,a=void 0===o?0:o,s=e.keyLength,l=void 0===s?6:s,c=_(),u=function(e){U(k,e),k.length=k.entries.length,c.notifyListeners(k.location,k.action)},h=function(){return Math.random().toString(36).substr(2,l)},d=q(a,0,r.length-1),f=r.map(function(e){return b(e,void 0,"string"===typeof e?h():e.key||h())}),p=m,g=function(e,n){i()(!("object"===("undefined"===typeof e?"undefined":z(e))&&void 0!==e.state&&void 0!==n),"You should avoid providing a 2nd state argument to push when the 1st argument is a location-like object that already has state; it is ignored");var r="PUSH",o=b(e,n,h(),k.location);c.confirmTransitionTo(o,r,t,function(e){if(e){var t=k.index,n=t+1,i=k.entries.slice(0);i.length>n?i.splice(n,i.length-n,o):i.push(o),u({action:r,location:o,index:n,entries:i})}})},v=function(e,n){i()(!("object"===("undefined"===typeof e?"undefined":z(e))&&void 0!==e.state&&void 0!==n),"You should avoid providing a 2nd state argument to replace when the 1st argument is a location-like object that already has state; it is ignored");var r="REPLACE",o=b(e,n,h(),k.location);c.confirmTransitionTo(o,r,t,function(e){e&&(k.entries[k.index]=o,u({action:r,location:o}))})},y=function(e){var n=q(k.index+e,0,k.entries.length-1),r="POP",i=k.entries[n];c.confirmTransitionTo(i,r,t,function(e){e?u({action:r,location:i,index:n}):u()})},w=function(){return y(-1)},x=function(){return y(1)},C=function(e){var t=k.index+e;return t>=0&&t0&&void 0!==arguments[0]&&arguments[0];return c.setPrompt(e)},E=function(e){return c.appendListener(e)},k={length:f.length,action:"POP",location:f[d],index:d,entries:f,createHref:p,push:g,replace:v,go:y,goBack:w,goForward:x,canGo:C,block:S,listen:E};return k},G=K;n.d(t,"a",function(){return j}),n.d(t,"b",function(){return H}),n.d(t,"d",function(){return G}),n.d(t,"c",function(){return b}),n.d(t,"f",function(){return w}),n.d(t,"e",function(){return m})},gL7N:function(e,t,n){var r=n("VyuQ")("wks"),i=n("kCK5"),o=n("c0Oy").Symbol,a="function"==typeof o,s=e.exports=function(e){return r[e]||(r[e]=a&&o[e]||(a?o:i)("Symbol."+e))};s.store=r},gRqi:function(e,t,n){"use strict";var r=n("c0Oy"),i=n("V5/1"),o=n("8Z/V"),a=n("gL7N")("species");e.exports=function(e){var t=r[e];o&&t&&!t[a]&&i.f(t,a,{configurable:!0,get:function(){return this}})}},h7Gi:function(e,t,n){"use strict";n("q97H");var r=n("rKIl"),i=n("VPOE"),o=n("wUWy"),a=n("ZDr/"),s=n("gL7N"),l=n("330p"),c=s("species"),u=!o(function(){var e=/./;return e.exec=function(){var e=[];return e.groups={a:"7"},e},"7"!=="".replace(e,"$")}),h=function(){var e=/(?:)/,t=e.exec;e.exec=function(){return t.apply(this,arguments)};var n="ab".split(e);return 2===n.length&&"a"===n[0]&&"b"===n[1]}();e.exports=function(e,t,n){var d=s(e),f=!o(function(){var t={};return t[d]=function(){return 7},7!=""[e](t)}),p=f?!o(function(){var t=!1,n=/a/;return n.exec=function(){return t=!0,null},"split"===e&&(n.constructor={},n.constructor[c]=function(){return n}),n[d](""),!t}):void 0;if(!f||!p||"replace"===e&&!u||"split"===e&&!h){var m=/./[d],g=n(a,d,""[e],function(e,t,n,r,i){return t.exec===l?f&&!i?{done:!0,value:m.call(t,n,r)}:{done:!0,value:e.call(n,t,r)}:{done:!1}}),v=g[0],y=g[1];r(String.prototype,e,v),i(RegExp.prototype,d,2==t?function(e,t){return y.call(e,this,t)}:function(e){return y.call(e,this)})}}},h7HQ:function(e,t,n){"use strict";var r=n("IaEH"),i=n("y+Vt"),o=n("T6xi"),a=function(){function e(){this.points=null,this.smooth=0,this.smoothConstraint=null}return e}(),s=function(e){function t(t){return e.call(this,t)||this}return Object(r["a"])(t,e),t.prototype.getDefaultShape=function(){return new a},t.prototype.buildPath=function(e,t){o["a"](e,t,!0)},t}(i["b"]);s.prototype.type="polygon",t["a"]=s},hDam:function(e,t){e.exports=function(){}},hIUm:function(e,t,n){"use strict";var r=n("oF12"),i=n("7vYJ"),o=n("VeyY"),a=n("ETUh"),s=n("OsVd"),l=n("bsDr"),c=n("330p"),u=n("wUWy"),h=Math.min,d=[].push,f="split",p="length",m="lastIndex",g=4294967295,v=!u(function(){RegExp(g,"y")});n("h7Gi")("split",2,function(e,t,n,u){var y;return y="c"=="abbc"[f](/(b)*/)[1]||4!="test"[f](/(?:)/,-1)[p]||2!="ab"[f](/(?:ab)*/)[p]||4!="."[f](/(.?)(.?)/)[p]||"."[f](/()()/)[p]>1||""[f](/.?/)[p]?function(e,t){var i=String(this);if(void 0===e&&0===t)return[];if(!r(e))return n.call(i,e,t);var o,a,s,l=[],u=(e.ignoreCase?"i":"")+(e.multiline?"m":"")+(e.unicode?"u":"")+(e.sticky?"y":""),h=0,f=void 0===t?g:t>>>0,v=new RegExp(e.source,u+"g");while(o=c.call(v,i)){if(a=v[m],a>h&&(l.push(i.slice(h,o.index)),o[p]>1&&o.index=f))break;v[m]===o.index&&v[m]++}return h===i[p]?!s&&v.test("")||l.push(""):l.push(i.slice(h)),l[p]>f?l.slice(0,f):l}:"0"[f](void 0,0)[p]?function(e,t){return void 0===e&&0===t?[]:n.call(this,e,t)}:n,[function(n,r){var i=e(this),o=void 0==n?void 0:n[t];return void 0!==o?o.call(n,i,r):y.call(String(i),n,r)},function(e,t){var r=u(y,e,this,t,y!==n);if(r.done)return r.value;var c=i(e),d=String(this),f=o(c,RegExp),p=c.unicode,m=(c.ignoreCase?"i":"")+(c.multiline?"m":"")+(c.unicode?"u":"")+(v?"y":"g"),b=new f(v?c:"^(?:"+c.source+")",m),w=void 0===t?g:t>>>0;if(0===w)return[];if(0===d.length)return null===l(b,d)?[d]:[];var x=0,_=0,C=[];while(_{this.setState({select:d()({},this.defaultValue),selectIndex:0})})):u["a"].error("\u503c\u4e0d\u80fd\u4e3a\u7a7a")}onChange(e,t,n,r){var i=this.state.filter;i[n][e]=t,"key"===e&&(i[n]["condition"]=this.props.keys[r].condition[0]),this.setState({filter:i}),"undefined"!==typeof r&&this.setState({keyIndex:r})}onOk(){var e=!0;e&&(this.props.onOk(this.state.filter),this.setState({visible:!1}))}hide(){var e=this.state.select;e["value"]="",this.setState({visible:!1,select:e})}onDelete(e){var t=this.state.filter;t.splice(e,1),this.setState({filter:t})}reset(){this.setState({filter:[]},()=>{this.onOk()})}render(){return p.a.createElement(p.a.Fragment,null,p.a.cloneElement(this.props.children,{onClick:()=>this.show()}),p.a.createElement(r["a"],{onOk:()=>this.onOk(),title:"\u8fc7\u6ee4\u5668",visible:this.state.visible,onClose:()=>this.hide(),className:"v2board-filter-drawer",footer:p.a.createElement(p.a.Fragment,null)},this.state.filter.length>0&&this.state.filter.map((e,t)=>{var n=this.props.keys.find(e=>e.key===this.state.filter[t].key);return p.a.createElement(p.a.Fragment,null,p.a.createElement(l["a"],{type:"horizontal"},"\u6761\u4ef6".concat(t+1)," ",p.a.createElement(c["a"],{type:"delete",style:{color:"#ff4d4f"},onClick:()=>this.onDelete(t)})),p.a.createElement("div",{className:"form-group"},p.a.createElement("label",null,"\u5b57\u6bb5\u540d"),p.a.createElement("div",null,p.a.createElement(s["a"],{value:this.state.filter[t].key,style:{width:"100%"}},this.props.keys.map((e,n)=>{return p.a.createElement(s["a"].Option,{key:n,value:e.key,onClick:()=>this.onChange("key",this.props.keys[n].key,t,n)},e.title)})))),p.a.createElement("div",{className:"form-group"},p.a.createElement("label",null,"\u6761\u4ef6"),p.a.createElement("div",null,p.a.createElement(s["a"],{value:this.state.filter[t].condition,style:{width:"100%"},onChange:e=>this.onChange("condition",e,t)},this.props.keys[this.state.keyIndex].condition.map(e=>{return p.a.createElement(s["a"].Option,{key:e,value:e},e)})))),p.a.createElement("div",{className:"form-group"},p.a.createElement("label",null,"\u6b32\u68c0\u7d22\u5185\u5bb9"),p.a.createElement("div",null,"select"===n.type&&p.a.createElement(s["a"],{defaultValue:this.state.filter[t].value||void 0,style:{width:"100%"},placeholder:"\u8bf7\u9009\u62e9\u503c",onChange:e=>this.onChange("value",e,t)},n.options.map((e,t)=>{return p.a.createElement(s["a"].Option,{value:e.value},e.key)})),"date"===n.type&&p.a.createElement(a["a"],{style:{width:"100%"},onChange:e=>this.onChange("value",e&&e.format("X"),t),showTime:{defaultValue:g()("00:00:00","HH:mm:ss")}}),void 0===n.type&&p.a.createElement(o["a"],{style:{width:"100%"},defaultValue:this.state.filter[t].value||void 0,placeholder:"\u503c",onChange:e=>this.onChange("value",e.target.value,t)}))))}),p.a.createElement(i["a"],{style:{width:"100%"},type:"primary",onClick:()=>this.add()},p.a.createElement(c["a"],{type:"plus"})," \u6dfb\u52a0\u6761\u4ef6"),p.a.createElement("div",{className:"v2board-drawer-action"},p.a.createElement(i["a"],{disabled:!this.state.filter.length,type:"danger",onClick:()=>this.reset(),style:{float:"left"}},"\u91cd\u7f6e"),p.a.createElement(i["a"],{style:{marginRight:8},onClick:()=>this.hide()},"\u53d6\u6d88"),p.a.createElement(i["a"],{disabled:!this.state.filter.length,onClick:()=>this.onOk(),type:"primary"},"\u68c0\u7d22"))))}}},hYLj:function(e,t,n){"use strict";var r=n("Fofx"),i=n("QBsz"),o=r["c"],a=5e-5;function s(e){return e>a||e<-a}var l=[],c=[],u=r["b"](),h=Math.abs,d=function(){function e(){}return e.prototype.getLocalTransform=function(t){return e.getLocalTransform(this,t)},e.prototype.setPosition=function(e){this.x=e[0],this.y=e[1]},e.prototype.setScale=function(e){this.scaleX=e[0],this.scaleY=e[1]},e.prototype.setSkew=function(e){this.skewX=e[0],this.skewY=e[1]},e.prototype.setOrigin=function(e){this.originX=e[0],this.originY=e[1]},e.prototype.needLocalTransform=function(){return s(this.rotation)||s(this.x)||s(this.y)||s(this.scaleX-1)||s(this.scaleY-1)},e.prototype.updateTransform=function(){var e=this.parent&&this.parent.transform,t=this.needLocalTransform(),n=this.transform;t||e?(n=n||r["b"](),t?this.getLocalTransform(n):o(n),e&&(t?r["e"](n,e,n):r["a"](n,e)),this.transform=n,this._resolveGlobalScaleRatio(n)):n&&o(n)},e.prototype._resolveGlobalScaleRatio=function(e){var t=this.globalScaleRatio;if(null!=t&&1!==t){this.getGlobalScale(l);var n=l[0]<0?-1:1,i=l[1]<0?-1:1,o=((l[0]-n)*t+n)/l[0]||0,a=((l[1]-i)*t+i)/l[1]||0;e[0]*=o,e[1]*=o,e[2]*=a,e[3]*=a}this.invTransform=this.invTransform||r["b"](),r["d"](this.invTransform,e)},e.prototype.getComputedTransform=function(){var e=this,t=[];while(e)t.push(e),e=e.parent;while(e=t.pop())e.updateTransform();return this.transform},e.prototype.setLocalTransform=function(e){if(e){var t=e[0]*e[0]+e[1]*e[1],n=e[2]*e[2]+e[3]*e[3],r=Math.atan2(e[1],e[0]),i=Math.PI/2+r-Math.atan2(e[3],e[2]);n=Math.sqrt(n)*Math.cos(i),t=Math.sqrt(t),this.skewX=i,this.skewY=0,this.rotation=-r,this.x=+e[4],this.y=+e[5],this.scaleX=t,this.scaleY=n,this.originX=0,this.originY=0}},e.prototype.decomposeTransform=function(){if(this.transform){var e=this.parent,t=this.transform;e&&e.transform&&(r["e"](c,e.invTransform,t),t=c);var n=this.originX,i=this.originY;(n||i)&&(u[4]=n,u[5]=i,r["e"](c,t,u),c[4]-=n,c[5]-=i,t=c),this.setLocalTransform(t)}},e.prototype.getGlobalScale=function(e){var t=this.transform;return e=e||[],t?(e[0]=Math.sqrt(t[0]*t[0]+t[1]*t[1]),e[1]=Math.sqrt(t[2]*t[2]+t[3]*t[3]),t[0]<0&&(e[0]=-e[0]),t[3]<0&&(e[1]=-e[1]),e):(e[0]=1,e[1]=1,e)},e.prototype.transformCoordToLocal=function(e,t){var n=[e,t],r=this.invTransform;return r&&i["b"](n,n,r),n},e.prototype.transformCoordToGlobal=function(e,t){var n=[e,t],r=this.transform;return r&&i["b"](n,n,r),n},e.prototype.getLineScale=function(){var e=this.transform;return e&&h(e[0]-1)>1e-10&&h(e[3]-1)>1e-10?Math.sqrt(h(e[0]*e[3]-e[2]*e[1])):1},e.prototype.copyTransform=function(e){for(var t=this,n=0;ne.user);case 3:return i=e.sent,e.next=6,n({type:"setState",payload:{fetchLoading:!0}});case 6:return e.next=8,Object(l["a"])("/admin/user/fetch",s()({filter:i.filter},i.pagination,i.sort));case 8:return a=e.sent,e.next=11,n({type:"setState",payload:{fetchLoading:!1}});case 11:if(200===a.code){e.next=13;break}return e.abrupt("return");case 13:return a.data.forEach(e=>{e.password="",e.transfer_enable=(e.transfer_enable/1073741824).toFixed(2),e.u=(e.u/1073741824).toFixed(2),e.d=(e.d/1073741824).toFixed(2),e.commission_balance=(e.commission_balance/100).toFixed(2),e.balance=(e.balance/100).toFixed(2)}),e.next=16,n({type:"setState",payload:{users:a.data,pagination:s()({},i.pagination,{total:a.total})}});case 16:case"end":return e.stop()}},e)})()},filter(e,t){return o.a.mark(function n(){var r,i,a,s,l;return o.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.filter,i=t.put,a=t.select,n.next=4,a(e=>e.user);case 4:return s=n.sent,l=s.pagination,l["current"]=1,n.next=9,i({type:"setState",payload:{filter:r}});case 9:return n.next=11,i({type:"fetch"});case 11:case"end":return n.stop()}},n)})()},changeTable(e,t){return o.a.mark(function n(){var r,i,a,l,c;return o.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.pagination,i=e.sort,a=t.select,l=t.put,n.next=4,a(e=>e.user);case 4:return c=n.sent,n.next=7,l({type:"setState",payload:{pagination:s()({},c.pagination,r),sort:i}});case 7:return n.next=9,l({type:"fetch"});case 9:case"end":return n.stop()}},n)})()},update(e,t){return o.a.mark(function n(){var r,i,a,s;return o.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.params,i=e.callback,a=t.put,n.next=4,a({type:"setState",payload:{updateLoading:!0}});case 4:return r.transfer_enable=1073741824*r.transfer_enable,r.u=Math.round(1073741824*r.u),r.d=Math.round(1073741824*r.d),r.balance=Math.round(100*r.balance),r.commission_balance=Math.round(100*r.commission_balance),r.invite_user&&delete r.invite_user,n.next=12,Object(l["b"])("/admin/user/update",r);case 12:return s=n.sent,n.next=15,a({type:"setState",payload:{updateLoading:!1}});case 15:if(200===s.code){n.next=17;break}return n.abrupt("return");case 17:return n.next=19,a({type:"fetch"});case 19:"function"===typeof i&&i();case 20:case"end":return n.stop()}},n)})()},addFilter(e,t){return o.a.mark(function n(){var r,i,a,s,l,c,u,h,d;return o.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.key,i=e.condition,a=e.value,s=e.clear,l=t.put,c=t.select,n.next=4,c(e=>e.user);case 4:return u=n.sent,h=u.filter,d=u.pagination,s&&(h=[]),h.push({key:r,condition:i,value:a}),d["current"]=1,n.next=12,l({type:"setState",payload:{filter:h,pagination:d}});case 12:return n.next=14,l({type:"fetch"});case 14:case"end":return n.stop()}},n)})()},generate(e,t){return o.a.mark(function n(){var r,i,a,s,c,h,d;return o.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.params,i=e.callback,a=t.put,n.next=4,a({type:"setState",payload:{generateLoading:!0}});case 4:return n.next=6,Object(l["b"])("/admin/user/generate",r);case 6:return s=n.sent,n.next=9,a({type:"setState",payload:{generateLoading:!1}});case 9:if(200===s.code){n.next=11;break}return n.abrupt("return");case 11:return r.generate_count&&(c=new Blob([s.buffer],{type:"text/plain,charset=UTF-8"}),h=window.URL.createObjectURL(c),d=document.createElement("a"),d.href=h,d.style.display="none",d.download="USER ".concat(u()().format("YYYY-MM-DD HH:mm:ss"),".csv"),d.click(),window.URL.revokeObjectURL(h)),n.next=14,a({type:"fetch"});case 14:"function"===typeof i&&i();case 15:case"end":return n.stop()}},n)})()},dumpCSV(e,t){return o.a.mark(function e(){var n,i,a,s,c,h,d;return o.a.wrap(function(e){while(1)switch(e.prev=e.next){case 0:return n=t.select,e.next=3,n(e=>e.user);case 3:return i=e.sent,a=i.filter,r["a"].loading("\u5bfc\u51fa\u4e2d"),e.next=8,Object(l["b"])("/admin/user/dumpCSV",{filter:a});case 8:if(s=e.sent,r["a"].destroy(),200===s.code){e.next=12;break}return e.abrupt("return");case 12:c=new Blob([s.buffer],{type:"text/plain,charset=UTF-8"}),h=window.URL.createObjectURL(c),d=document.createElement("a"),d.href=h,d.style.display="none",d.download=u()().format("YYYY-MM-DD HH:mm:ss")+".csv",d.click(),window.URL.revokeObjectURL(h);case 20:case"end":return e.stop()}},e)})()},sendMail(e,t){return o.a.mark(function n(){var i,a,c,u,h,d,f;return o.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return i=e.params,a=e.callback,c=t.select,u=t.put,n.next=4,c(e=>e.user);case 4:return h=n.sent,d=h.filter,n.next=8,u({type:"setState",payload:{sendMailLoading:!0}});case 8:return n.next=10,Object(l["b"])("/admin/user/sendMail",s()({filter:d},i));case 10:return f=n.sent,n.next=13,u({type:"setState",payload:{sendMailLoading:!1}});case 13:if(200===f.code){n.next=15;break}return n.abrupt("return");case 15:r["a"].success("\u5df2\u52a0\u5165\u961f\u5217\u6267\u884c"),"function"===typeof a&&a();case 17:case"end":return n.stop()}},n)})()},ban(e,t){return o.a.mark(function e(){var n,r,i,a,s;return o.a.wrap(function(e){while(1)switch(e.prev=e.next){case 0:return n=t.select,r=t.put,e.next=3,n(e=>e.user);case 3:return i=e.sent,a=i.filter,e.next=7,Object(l["b"])("/admin/user/ban",{filter:a});case 7:if(s=e.sent,200===s.code){e.next=10;break}return e.abrupt("return");case 10:return e.next=12,r({type:"fetch"});case 12:case"end":return e.stop()}},e)})()},resetSecret(e,t){return o.a.mark(function n(){var i,a,s;return o.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return i=e.id,a=t.put,n.next=4,Object(l["b"])("/admin/user/resetSecret",{id:i});case 4:if(s=n.sent,200===s.code){n.next=7;break}return n.abrupt("return");case 7:return r["a"].success("\u91cd\u7f6e\u6210\u529f"),n.next=10,a({type:"fetch"});case 10:case"end":return n.stop()}},n)})()}}}},hsuR:function(e,t,n){"use strict";n.d(t,"a",function(){return l}),n.d(t,"k",function(){return c}),n.d(t,"i",function(){return u}),n.d(t,"h",function(){return h}),n.d(t,"j",function(){return d}),n.d(t,"g",function(){return f}),n.d(t,"d",function(){return p}),n.d(t,"e",function(){return m}),n.d(t,"b",function(){return g}),n.d(t,"c",function(){return b}),n.d(t,"f",function(){return w});var r=n("YEIV"),i=n.n(r),o=n("q1tI"),a=n.n(o);function s(e){var t=[];return a.a.Children.forEach(e,function(e){e&&t.push(e)}),t}function l(e,t){for(var n=s(e),r=0;r2&&void 0!==arguments[2]?arguments[2]:"ltr",r=d(t)?"translateY":"translateX";return d(t)||"rtl"!==n?r+"("+100*-e+"%) translateZ(0)":r+"("+100*e+"%) translateZ(0)"}function p(e,t){var n=d(t)?"marginTop":"marginLeft";return i()({},n,100*-e+"%")}function m(e,t){return+window.getComputedStyle(e).getPropertyValue(t).replace("px","")}function g(e){return Object.keys(e).reduce(function(t,n){return"aria-"!==n.substr(0,5)&&"data-"!==n.substr(0,5)&&"role"!==n||(t[n]=e[n]),t},{})}function v(e,t){return+e.getPropertyValue(t).replace("px","")}function y(e,t,n,r,i){var o=m(i,"padding-"+e);if(!r||!r.parentNode)return o;var a=r.parentNode.childNodes;return Array.prototype.some.call(a,function(i){var a=window.getComputedStyle(i);return i!==r?(o+=v(a,"margin-"+e),o+=i[t],o+=v(a,"margin-"+n),"content-box"===a.boxSizing&&(o+=v(a,"border-"+e+"-width")+v(a,"border-"+n+"-width")),!1):(o+=v(a,"margin-"+e),!0)}),o}function b(e,t){return y("left","offsetWidth","right",e,t)}function w(e,t){return y("top","offsetHeight","bottom",e,t)}},hyiK:function(e,t,n){"use strict";function r(e,t,n,r,i,o){if(o>t&&o>r||oi?s:0}n.d(t,"a",function(){return r})},i4x8:function(e,t,n){"use strict";n.r(t),n.d(t,"routes",function(){return u}),n.d(t,"default",function(){return d});var r=n("q1tI"),i=n.n(r),o=n("Crw4"),a=n.n(o),s=n("RFCh"),l=n("Hg0r"),c=l["c"].ConnectedRouter,u=[{path:"/config/payment",exact:!0,component:n("eIZb").default},{path:"/config/system",exact:!0,component:n("1dM+").default},{path:"/coupon",exact:!0,component:n("Q55k").default},{path:"/dashboard",exact:!0,component:n("sFYk").default},{path:"/",exact:!0,component:n("RXBc").default},{path:"/knowledge",exact:!0,component:n("jJ5y").default},{path:"/login",exact:!0,component:n("SGa5").default},{path:"/notice",exact:!0,component:n("JZE9").default},{path:"/order",exact:!0,component:n("pi3A").default},{path:"/plan",exact:!0,component:n("ih8c").default},{path:"/server/group",exact:!0,component:n("11+Y").default},{path:"/server/manage",exact:!0,component:n("uzXD").default},{path:"/ticket/:ticket_id",exact:!0,component:n("FPmv").default},{path:"/ticket",exact:!0,component:n("RJTe").default},{path:"/user",exact:!0,component:n("d1ca").default}];window.g_routes=u;var h=n("PszG");h.applyForEach("patchRoutes",{initialValue:u});class d extends i.a.Component{unListen(){}constructor(e){function t(e,t){h.applyForEach("onRouteChange",{initialValue:{routes:u,location:e,action:t}})}super(e),this.unListen=s["default"].listen(t);var n=s["default"].listen.toString().indexOf("callback(history.location, history.action)")>-1;n||t(s["default"].location)}componentWillUnmount(){this.unListen()}render(){var e=this.props||{};return i.a.createElement(c,{history:s["default"]},a()(u,e))}}},iCc5:function(e,t,n){"use strict";t.__esModule=!0,t.default=function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}},ih8c:function(e,t,n){"use strict";n.r(t);var r=n("jehZ"),i=n.n(r),o=(n("+L6B"),n("2/Rp")),a=(n("+BJd"),n("mr32")),s=(n("5Dmo"),n("3S7+")),l=(n("BoS7"),n("Sdc0")),c=(n("qVdP"),n("jsC+")),u=(n("lUTK"),n("BvKs")),h=(n("/zsF"),n("PArb")),d=(n("Pwec"),n("CtXQ")),f=n("p0pE"),p=n.n(f),m=n("q1tI"),g=n.n(m),v=n("Bl7J"),y=n("/MKj"),b=n("tI4l"),w=n("qqou"),x=(n("bbsP"),n("/wGt")),_=(n("OaEy"),n("2fM7")),C=(n("14J3"),n("BMrR")),S=(n("jCWc"),n("kPKH")),E=(n("5NDa"),n("5rEg")),k=n("8zNj");class O extends g.a.Component{constructor(e){super(e),this.state={visible:!1,record:e.record||{show:0,name:null,transfer_enable:null,group_id:void 0,month_price:null,quarter_price:null,half_year_price:null,year_price:null,two_year_price:null,three_year_price:null,onetime_price:null,reset_price:null}},this.show=(()=>{this.setState({visible:!this.state.visible})})}componentDidMount(){this.props.dispatch({type:"serverGroup/fetch"})}priceOnChange(e,t){this.setState({record:p()({},this.state.record,{[e]:""!==t?t:null})})}save(){this.props.dispatch({type:"plan/save",params:p()({},this.state.record),callback:()=>{this.setState({visible:!1})}})}render(){var e,t=this.props.plan.saveLoading,n=this.props.serverGroup.groups;return g.a.createElement(g.a.Fragment,null,g.a.cloneElement(this.props.children,{onClick:()=>this.setState({visible:!0})}),g.a.createElement(x["a"],{id:"plan",maskClosable:!0,onClose:()=>this.setState({visible:!1}),title:"".concat(this.state.record.id?"\u7f16\u8f91\u8ba2\u9605":"\u65b0\u5efa\u8ba2\u9605"),visible:this.state.visible,width:"80%"},g.a.createElement("div",null,(null===(e=this.props.record)||void 0===e?void 0:e.id)?g.a.createElement("div",{className:"alert alert-info",role:"alert"},g.a.createElement("p",{className:"mb-0"},"Tips:\u5957\u9910\u5185\u5bb9\u53d8\u66f4\u5c06\u4f1a\u5b9e\u65f6\u66f4\u65b0\u5230\u5957\u9910\u4e0b\u7684\u6240\u6709\u7528\u6237\u3002")):"",g.a.createElement("div",{className:"form-group"},g.a.createElement("label",{for:"example-text-input-alt"},"\u5957\u9910\u540d\u79f0"),g.a.createElement(E["a"],{placeholder:"\u8bf7\u8f93\u5165\u5957\u9910\u540d\u79f0",value:this.state.record.name,onChange:e=>{this.setState({record:p()({},this.state.record,{name:e.target.value})})}})),g.a.createElement("div",{className:"form-group"},g.a.createElement("label",{for:"example-text-input-alt"},"\u5957\u9910\u63cf\u8ff0"),g.a.createElement(E["a"].TextArea,{rows:4,value:this.state.record.content,placeholder:"\u8bf7\u8f93\u5165\u5957\u9910\u63cf\u8ff0\uff0c\u652f\u6301HTML",onChange:e=>{this.setState({record:p()({},this.state.record,{content:e.target.value})})}})),g.a.createElement(h["a"],{orientation:"center"},"\u552e\u4ef7\u8bbe\u7f6e ",g.a.createElement(s["a"],{placement:"top",title:"\u5c06\u91d1\u989d\u7559\u7a7a\u5219\u4e0d\u4f1a\u8fdb\u884c\u51fa\u552e"},g.a.createElement(d["a"],{type:"info-circle"}))),g.a.createElement(C["a"],{gutter:10},g.a.createElement(S["a"],{md:4},g.a.createElement("div",{className:"form-group"},g.a.createElement("label",{for:"example-text-input-alt"},"\u6708\u4ed8"),g.a.createElement(E["a"],{value:null!==this.state.record.month_price?this.state.record.month_price:void 0,onChange:e=>this.priceOnChange("month_price",e.target.value)}))),g.a.createElement(S["a"],{md:4},g.a.createElement("div",{className:"form-group"},g.a.createElement("label",{for:"example-text-input-alt"},"\u5b63\u4ed8"),g.a.createElement(E["a"],{value:null!==this.state.record.quarter_price?this.state.record.quarter_price:void 0,onChange:e=>this.priceOnChange("quarter_price",e.target.value)}))),g.a.createElement(S["a"],{md:4},g.a.createElement("div",{className:"form-group"},g.a.createElement("label",{for:"example-text-input-alt"},"\u534a\u5e74"),g.a.createElement(E["a"],{value:null!==this.state.record.half_year_price?this.state.record.half_year_price:void 0,onChange:e=>this.priceOnChange("half_year_price",e.target.value)}))),g.a.createElement(S["a"],{md:4},g.a.createElement("div",{className:"form-group"},g.a.createElement("label",{for:"example-text-input-alt"},"\u5e74\u4ed8"),g.a.createElement(E["a"],{value:null!==this.state.record.year_price?this.state.record.year_price:void 0,onChange:e=>this.priceOnChange("year_price",e.target.value)}))),g.a.createElement(S["a"],{md:4},g.a.createElement("div",{className:"form-group"},g.a.createElement("label",{for:"example-text-input-alt"},"\u4e24\u5e74\u4ed8"),g.a.createElement(E["a"],{value:null!==this.state.record.two_year_price?this.state.record.two_year_price:void 0,onChange:e=>this.priceOnChange("two_year_price",e.target.value)}))),g.a.createElement(S["a"],{md:4},g.a.createElement("div",{className:"form-group"},g.a.createElement("label",{for:"example-text-input-alt"},"\u4e09\u5e74\u4ed8"),g.a.createElement(E["a"],{value:null!==this.state.record.three_year_price?this.state.record.three_year_price:void 0,onChange:e=>this.priceOnChange("three_year_price",e.target.value)})))),g.a.createElement(C["a"],{gutter:10},g.a.createElement(S["a"],{md:12},g.a.createElement("div",{className:"form-group"},g.a.createElement("label",{for:"example-text-input-alt"},"\u4e00\u6b21\u6027"),g.a.createElement(E["a"],{addonAfter:"\xa5",value:null!==this.state.record.onetime_price?this.state.record.onetime_price:void 0,onChange:e=>this.priceOnChange("onetime_price",e.target.value)}))),g.a.createElement(S["a"],{md:12},g.a.createElement("div",{className:"form-group"},g.a.createElement("label",{for:"example-text-input-alt"},"\u91cd\u7f6e\u5305"),g.a.createElement(E["a"],{addonAfter:"\xa5",value:null!==this.state.record.reset_price?this.state.record.reset_price:void 0,onChange:e=>this.priceOnChange("reset_price",e.target.value)})))),g.a.createElement(h["a"],null),g.a.createElement("div",{className:"form-group"},g.a.createElement("label",{for:"example-text-input-alt"},"\u5957\u9910\u6d41\u91cf"),g.a.createElement(E["a"],{addonAfter:"GB",placeholder:"\u8bf7\u8f93\u5165\u5957\u9910\u6d41\u91cf",value:this.state.record.transfer_enable,onChange:e=>{this.setState({record:p()({},this.state.record,{transfer_enable:e.target.value})})}})),g.a.createElement("div",{className:"form-group"},g.a.createElement("label",{for:"example-text-input-alt"},"\u6743\u9650\u7ec4 ",g.a.createElement(k["a"],null,g.a.createElement("a",{href:"javascript:(0);"},"\u6dfb\u52a0\u6743\u9650\u7ec4"))),g.a.createElement(_["a"],{placeholder:"\u8bf7\u9009\u62e9\u6743\u9650\u7ec4",style:{width:"100%"},value:this.state.record.group_id,onChange:e=>{this.setState({record:p()({},this.state.record,{group_id:e})})}},n.map(e=>{return g.a.createElement(_["a"].Option,{key:e.id,value:e.id},e.name)}))),g.a.createElement("div",{className:"form-group"},g.a.createElement("label",{htmlFor:"example-text-input-alt"},"\u6d41\u91cf\u91cd\u7f6e\u65b9\u5f0f"),g.a.createElement(_["a"],{placeholder:"\u8bf7\u9009\u62e9\u6743\u9650\u7ec4",style:{width:"100%"},value:this.state.record.reset_traffic_method,onChange:e=>{this.setState({record:p()({},this.state.record,{reset_traffic_method:e})})}},g.a.createElement(_["a"].Option,{key:null,value:null},"\u8ddf\u968f\u7cfb\u7edf\u8bbe\u7f6e"),g.a.createElement(_["a"].Option,{key:0,value:0},"\u6bcf\u67081\u65e5\u91cd\u7f6e"),g.a.createElement(_["a"].Option,{key:1,value:1},"\u8ba2\u5355\u65e5\u91cd\u7f6e"),g.a.createElement(_["a"].Option,{key:2,value:2},"\u4e0d\u91cd\u7f6e")))),g.a.createElement("div",{className:"v2board-drawer-action"},g.a.createElement(o["a"],{style:{marginRight:8},onClick:()=>this.setState({visible:!1})},"\u53d6\u6d88"),g.a.createElement(o["a"],{loading:t,onClick:()=>t||this.save(),type:"primary"},"\u63d0\u4ea4"))))}}var T=Object(y["c"])(e=>{var t=e.plan,n=e.serverGroup;return{plan:t,serverGroup:n}})(O),A=n("Oa6W");n("H9LU"),n("I1u9"),n("ykC2");class M extends g.a.Component{constructor(e){super(e),this.state={visible:!1,submit:{show:0}}}componentDidMount(){this.props.dispatch({type:"plan/fetch"}),this.props.dispatch({type:"serverGroup/fetch"})}balanceFormat(e){var t=arguments.length>1&&void 0!==arguments[1]&&arguments[1];return Object.keys(b["a"].periodText).map(n=>{0!==e[n]&&(e[n]?e[n]=t?Math.round(100*e[n]):e[n]/100:e[n]=null)}),e}drop(e){this.props.dispatch({type:"plan/drop",id:e})}edit(e){var t=this.props.plan.plans;this.setState({submit:p()({},t[e]),visible:!0})}update(e,t,n){this.props.dispatch({type:"plan/update",id:e,key:t,value:n})}render(){var e,t=this.props.plan,n=t.plans,r=t.fetchLoading,f=this.props.serverGroup.groups,p=[{title:"\u64cd\u4f5c",dataIndex:"action",key:"action",render:(e,t)=>{return g.a.createElement(g.a.Fragment,null,g.a.createElement(d["a"],{type:"drag",style:{cursor:"move"}}),g.a.createElement(h["a"],{type:"vertical"}),g.a.createElement(c["a"],{trigger:"click",overlay:g.a.createElement(u["a"],null,g.a.createElement(u["a"].Item,{onContextMenu:e=>{e.stopPropagation()}},g.a.createElement(T,{record:t,key:null===t||void 0===t?void 0:t.id},g.a.createElement("a",null,g.a.createElement(d["a"],{type:"edit"})," \u7f16\u8f91"))),g.a.createElement(u["a"].Item,{style:{color:"#ff4d4f"},onClick:()=>this.drop(t.id)},g.a.createElement(d["a"],{type:"delete"})," \u5220\u9664"))},g.a.createElement("a",{href:"javascript:void(0);"},"\u64cd\u4f5c ",g.a.createElement(d["a"],{type:"caret-down"}))))}},{title:"\u9500\u552e\u72b6\u6001",dataIndex:"show",key:"show",render:(e,t)=>{return g.a.createElement(l["a"],{size:"small",checked:parseInt(e),onClick:()=>this.update(t.id,"show",parseInt(e)?0:1)})}},{title:g.a.createElement("span",null,"\u7eed\u8d39 ",g.a.createElement(s["a"],{placement:"top",title:"\u5728\u8ba2\u9605\u505c\u6b62\u9500\u552e\u65f6\uff0c\u5df2\u8d2d\u7528\u6237\u662f\u5426\u53ef\u4ee5\u7eed\u8d39"},g.a.createElement(d["a"],{type:"question-circle"}))),dataIndex:"renew",key:"renew",render:(e,t)=>{return g.a.createElement(l["a"],{size:"small",checked:parseInt(e),onClick:()=>this.update(t.id,"renew",parseInt(e)?0:1)})}},{title:"\u540d\u79f0",dataIndex:"name",key:"name"},{title:"\u7edf\u8ba1",dataIndex:"count",key:"count",render:e=>{return g.a.createElement(g.a.Fragment,null,g.a.createElement(d["a"],{type:"user",style:{cursor:"move"}})," ",e)}},{title:"\u6d41\u91cf",dataIndex:"transfer_enable",key:"transfer_enable",render:e=>{return g.a.createElement(g.a.Fragment,null,e," GB")}},{title:"\u6708\u4ed8",dataIndex:"month_price",key:"month_price",render:e=>{return null!==e?e.toFixed(2):"-"}},{title:"\u5b63\u4ed8",dataIndex:"quarter_price",key:"quarter_price",render:e=>{return null!==e?e.toFixed(2):"-"}},{title:"\u534a\u5e74\u4ed8",dataIndex:"half_year_price",key:"half_year_price",render:e=>{return null!==e?e.toFixed(2):"-"}},{title:"\u5e74\u4ed8",dataIndex:"year_price",key:"year_price",render:e=>{return null!==e?e.toFixed(2):"-"}},{title:"\u4e24\u5e74\u4ed8",dataIndex:"two_year_price",key:"two_year_price",render:e=>{return null!==e?e.toFixed(2):"-"}},{title:"\u4e09\u5e74\u4ed8",dataIndex:"three_year_price",key:"three_year_price",render:e=>{return null!==e?e.toFixed(2):"-"}},{title:"\u4e00\u6b21\u6027",dataIndex:"onetime_price",key:"onetime_price",render:e=>{return null!==e?e.toFixed(2):"-"}},{title:"\u91cd\u7f6e\u5305",dataIndex:"reset_price",key:"reset_price",render:e=>{return null!==e?e.toFixed(2):"-"}},{title:"\u6743\u9650\u7ec4",dataIndex:"group_id",key:"group_id",render:(e,t)=>{var n=[];return f.map(t=>{t.id===parseInt(e)&&n.push(g.a.createElement(a["a"],null,t.name))}),n}}],m=this;return g.a.createElement(v["a"],i()({},this.props,{title:"\u8ba2\u9605\u7ba1\u7406"}),g.a.createElement("div",{className:"d-flex justify-content-between align-items-center"}),g.a.createElement("div",{className:"block block-rounded ".concat(r?"block-mode-loading":"")},g.a.createElement("div",{className:"bg-white"},g.a.createElement("div",{style:{padding:15}},g.a.createElement(T,null,g.a.createElement(o["a"],null,g.a.createElement(d["a"],{type:"plus"})," \u6dfb\u52a0\u8ba2\u9605"))),g.a.createElement(w["a"],{onDragEnd:(e,t)=>{m.props.dispatch({type:"plan/sort",fromIndex:e,toIndex:t})},nodeSelector:"tr",handleSelector:"i"},g.a.createElement(A["a"],{onContextMenu:e=>{this.record=e,this.forceUpdate()},tableLayout:"auto",dataSource:n,columns:p,pagination:!1,scroll:{x:1300}},g.a.createElement("ul",{className:"ant-dropdown-menu ant-dropdown-menu-light ant-dropdown-menu-root ant-dropdown-menu-vertical"},g.a.createElement("li",{className:"ant-dropdown-menu-item"},g.a.createElement(T,{record:this.record,key:null===(e=this.record)||void 0===e?void 0:e.id},g.a.createElement("a",null,g.a.createElement(d["a"],{type:"edit"})," \u7f16\u8f91"))),g.a.createElement("li",{className:"ant-dropdown-menu-item",onClick:()=>{var e;return this.drop(null===(e=this.record)||void 0===e?void 0:e.id)}},g.a.createElement("a",{style:{color:"#ff4d4f"}},g.a.createElement(d["a"],{type:"delete"})," \u5220\u9664"))))))))}}t["default"]=Object(y["c"])(e=>{var t=e.plan,n=e.serverGroup;return{plan:t,serverGroup:n}})(M)},il4q:function(e,t,n){var r=n("ZDr/");e.exports=function(e){return Object(r(e))}},"j/1Z":function(e,t){e.exports=function(e){return e&&"object"===typeof e&&"function"===typeof e.copy&&"function"===typeof e.fill&&"function"===typeof e.readUInt8}},"j/9B":function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var r=n("6YkS"),i=r.Prompt;t.default=i},j2DC:function(e,t,n){"use strict";var r=n("oVml"),i=n("rr1i"),o=n("RfKB"),a={};n("NegM")(a,n("UWiX")("iterator"),function(){return this}),e.exports=function(e,t,n){e.prototype=r(a,{next:i(1,n)}),o(e,t+" Iterator")}},jB5C:function(e,t,n){"use strict";var r=Object.assign||function(e){for(var t=1;tPromise.resolve().then(()=>_()(n("56rK")))})),T=new k.a({html:!0,linkify:!0,typographer:!0});class A extends h.a.Component{constructor(e){super(e),this.state={visible:!1,selectedTab:!1}}componentDidMount(){}formChange(e,t){var n=this.props.knowledge.knowledge;n[e]=t,this.props.dispatch({type:"knowledge/setState",payload:{knowledge:n}})}show(){this.props.id&&this.props.dispatch({type:"knowledge/fetchById",id:this.props.id}),this.setState({visible:!0}),this.key=Math.random()}hide(){this.props.dispatch({type:"knowledge/setState",payload:{knowledge:{}}}),this.setState({visible:!1})}save(){this.props.dispatch({type:"knowledge/save",callback:()=>{w["a"].success("\u4fdd\u5b58\u6210\u529f")}})}render(){var e=this.state.visible,t=this.props.knowledge,n=t.knowledge,r=(t.categorys,t.fetchByIdLoading),i=t.saveLoading,o=this.props.id;return h.a.createElement(h.a.Fragment,null,h.a.cloneElement(this.props.children,{onClick:()=>this.show()}),h.a.createElement(v["a"],{width:"80%",visible:e,title:o?"\u7f16\u8f91\u77e5\u8bc6":"\u65b0\u589e\u77e5\u8bc6",id:"knowledge",onClose:()=>this.hide()},r?h.a.createElement(c["a"],{type:"loading"}):h.a.createElement("div",null,h.a.createElement("div",{className:"form-group"},h.a.createElement("label",{htmlFor:"example-text-input-alt"},"\u6807\u9898"),h.a.createElement(b["a"],{placeholder:"\u8bf7\u8f93\u5165\u77e5\u8bc6\u6807\u9898",value:n.title,onChange:e=>this.formChange("title",e.target.value)})),h.a.createElement("div",{className:"form-group"},h.a.createElement("label",{htmlFor:"example-text-input-alt"},"\u5206\u7c7b"),h.a.createElement(b["a"],{placeholder:"\u8bf7\u8f93\u5165\u5206\u7c7b\uff0c\u5206\u7c7b\u5c06\u4f1a\u81ea\u52a8\u5f52\u96c6",value:n.category,onChange:e=>this.formChange("category",e.target.value)})),h.a.createElement("div",{className:"form-group"},h.a.createElement("label",{htmlFor:"example-text-input-alt"},"\u8bed\u8a00"),h.a.createElement(y["a"],{placeholder:"\u8bf7\u9009\u62e9\u77e5\u8bc6\u8bed\u8a00",defaultValue:n.language||1,style:{width:"100%"},value:n.language,onChange:e=>this.formChange("language",e)},h.a.createElement(y["a"].Option,{value:"zh-CN"},"\u4e2d\u6587"),h.a.createElement(y["a"].Option,{value:"en-US"},"English"),h.a.createElement(y["a"].Option,{value:"ja-JP"},"\u65e5\u672c\u8a9e"),h.a.createElement(y["a"].Option,{value:"vi-VN"},"Ti\u1ebfng Vi\u1ec7t"))),h.a.createElement("div",{className:"form-group"},h.a.createElement("label",{htmlFor:"example-text-input-alt"},"\u5185\u5bb9"),h.a.createElement(O,{key:this.key,style:{height:"500px"},renderHTML:e=>T.render(e),value:n.body,onChange:e=>this.formChange("body",e.text),config:{view:{menu:!0,md:!0,fullScreen:!0,hideMenu:!0}}}))),h.a.createElement("div",{className:"v2board-drawer-action"},h.a.createElement(a["a"],{style:{marginRight:8},onClick:()=>this.hide()},"\u53d6\u6d88"),h.a.createElement(a["a"],{loading:i,onClick:()=>this.save(),type:"primary"},"\u63d0\u4ea4"))))}}var M=Object(m["c"])(e=>{var t=e.knowledge;return{knowledge:t}})(A);class P extends h.a.Component{constructor(e){super(e),this.state={visible:!1,submit:{steps:[]}}}componentDidMount(){this.props.dispatch({type:"knowledge/fetch"}),this.props.dispatch({type:"knowledge/getCategory"})}modalVisible(){this.setState({visible:!this.state.visible},()=>{this.state.visible||this.setState({submit:{steps:[]}})})}show(e){this.props.dispatch({type:"knowledge/show",id:e})}drop(e){this.props.dispatch({type:"knowledge/drop",id:e.id})}render(){var e=this.props.knowledge,t=e.knowledges,n=e.fetchLoading,r=(e.categorys,[{title:"\u64cd\u4f5c",dataIndex:"id",key:"id",render:(e,t,n)=>{return h.a.createElement(h.a.Fragment,null,h.a.createElement(c["a"],{type:"drag",style:{cursor:"move"}}),h.a.createElement(l["a"],{type:"vertical"}),h.a.createElement(M,{id:t.id},h.a.createElement("a",{href:"javascript:void(0);"},h.a.createElement(c["a"],{type:"edit"}))),h.a.createElement(l["a"],{type:"vertical"}),h.a.createElement("a",{href:"javascript:void(0);",onClick:()=>{this.drop(t)}},h.a.createElement(c["a"],{type:"delete"})))}},{title:"\u6587\u7ae0ID",dataIndex:"id",key:"id"},{title:"\u663e\u793a",dataIndex:"show",key:"show",render:(e,t)=>{return h.a.createElement(s["a"],{size:"small",onChange:()=>this.show(t.id),checked:e})}},{title:"\u6807\u9898",dataIndex:"title",key:"title"},{title:"\u5206\u7c7b",dataIndex:"category",key:"category"},{title:"\u66f4\u65b0\u65f6\u95f4",dataIndex:"updated_at",key:"updated_at",align:"right",render:e=>{return p()(1e3*e).format("YYYY/MM/DD HH:mm")}}]),u=this;return h.a.createElement(d["a"],i()({},this.props,{title:"\u77e5\u8bc6\u5e93\u7ba1\u7406"}),h.a.createElement("div",{className:"mb-0 block border-bottom ".concat(n?"block-mode-loading":"")},h.a.createElement("div",{className:"bg-white"},h.a.createElement("div",{style:{padding:15}},h.a.createElement(M,null,h.a.createElement(a["a"],null,h.a.createElement(c["a"],{type:"plus"}),"\u65b0\u589e"))),h.a.createElement(g["a"],{onDragEnd:(e,t)=>{u.props.dispatch({type:"knowledge/sort",fromIndex:e,toIndex:t})},nodeSelector:"tr",handleSelector:"i"},h.a.createElement(o["a"],{tableLayout:"auto",dataSource:t,pagination:!1,columns:r,scroll:{x:950}})))))}}t["default"]=Object(m["c"])(e=>{var t=e.knowledge;return{knowledge:t}})(P)},"jN/G":function(e,t,n){"use strict";var r=n("WGNW"),i=n("il4q"),o=n("wYm8"),a=n("V5/1");n("8Z/V")&&r(r.P+n("OJuA"),"Object",{__defineSetter__:function(e,t){a.f(i(this),e,{set:o(t),enumerable:!0,configurable:!0})}})},jTL6:function(e,t,n){"use strict";var r=n("IaEH"),i=n("y+Vt"),o=function(){function e(){this.cx=0,this.cy=0,this.r=0,this.startAngle=0,this.endAngle=2*Math.PI,this.clockwise=!0}return e}(),a=function(e){function t(t){return e.call(this,t)||this}return Object(r["a"])(t,e),t.prototype.getDefaultStyle=function(){return{stroke:"#000",fill:null}},t.prototype.getDefaultShape=function(){return new o},t.prototype.buildPath=function(e,t){var n=t.cx,r=t.cy,i=Math.max(t.r,0),o=t.startAngle,a=t.endAngle,s=t.clockwise,l=Math.cos(o),c=Math.sin(o);e.moveTo(l*i+n,c*i+r),e.arc(n,r,i,o,a,!s)},t}(i["b"]);a.prototype.type="arc",t["a"]=a},jce2:function(e,t,n){"use strict";function r(e){"@babel/helpers - typeof";return r="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},r(e)}function i(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function o(e){for(var t=1;te.length)&&(t=e.length);for(var n=0,r=new Array(t);n1&&-1!==t.indexOf("Macintosh")&&-1!==t.indexOf("Safari")&&(n=!0),n}},jjMW:function(e,t,n){"use strict";var r=n("WGNW"),i=n("il4q"),o=n("8BMt"),a=n("BFt8"),s=n("15BC").f;n("8Z/V")&&r(r.P+n("OJuA"),"Object",{__lookupSetter__:function(e){var t,n=i(this),r=o(e,!0);do{if(t=s(n,r))return t.set}while(n=a(n))}})},jmDH:function(e,t,n){e.exports=!n("KUxP")(function(){return 7!=Object.defineProperty({},"a",{get:function(){return 7}}).a})},jo6Y:function(e,t,n){"use strict";t.__esModule=!0,t.default=function(e,t){var n={};for(var r in e)t.indexOf(r)>=0||Object.prototype.hasOwnProperty.call(e,r)&&(n[r]=e[r]);return n}},jpXb:function(e,t,n){var r=n("wZXL");e.exports=new r},jzd5:function(e,t,n){"use strict";var r={};function i(e){var t,n,i=r[e];if(i)return i;for(i=r[e]=[],t=0;t<128;t++)n=String.fromCharCode(t),i.push(n);for(t=0;t=55296&&l<=57343?"\ufffd\ufffd\ufffd":String.fromCharCode(l),t+=6):240===(248&i)&&t+91114111?c+="\ufffd\ufffd\ufffd\ufffd":(l-=65536,c+=String.fromCharCode(55296+(l>>10),56320+(1023&l))),t+=9):c+="\ufffd";return c})}o.defaultChars=";/?:@&=+$,#",o.componentChars="",e.exports=o},k3GJ:function(e,t,n){"use strict";var r=n("QbLZ"),i=n.n(r),o=n("YEIV"),a=n.n(o),s=n("jo6Y"),l=n.n(s),c=n("iCc5"),u=n.n(c),h=n("V7oC"),d=n.n(h),f=n("FYw3"),p=n.n(f),m=n("mRg0"),g=n.n(m),v=n("q1tI"),y=n.n(v),b=n("17x9"),w=n.n(b),x=n("TSYQ"),_=n.n(x),C=n("xEkU"),S=n.n(C),E=n("VCL8"),k={LEFT:37,UP:38,RIGHT:39,DOWN:40},O=n("hsuR"),T=n("4IlW"),A=n("foW8"),M=n.n(A),P=M()({}),R=P.Provider,L=P.Consumer,D={width:0,height:0,overflow:"hidden",position:"absolute"},j=function(e){function t(){var e,n,r,i;u()(this,t);for(var o=arguments.length,a=Array(o),s=0;s=0}I.propTypes={className:w.a.string,active:w.a.bool,style:w.a.any,destroyInactiveTabPane:w.a.bool,forceRender:w.a.bool,placeholder:w.a.node,rootPrefixCls:w.a.string,children:w.a.node,id:w.a.string},I.defaultProps={placeholder:null};var W=function(e){function t(e){u()(this,t);var n=p()(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));H.call(n);var r=void 0;return r="activeKey"in e?e.activeKey:"defaultActiveKey"in e?e.defaultActiveKey:V(e),n.state={activeKey:r},n}return g()(t,e),d()(t,[{key:"componentWillUnmount",value:function(){this.destroy=!0,S.a.cancel(this.sentinelId)}},{key:"updateSentinelContext",value:function(){var e=this;this.destroy||(S.a.cancel(this.sentinelId),this.sentinelId=S()(function(){e.destroy||e.forceUpdate()}))}},{key:"render",value:function(){var e,t=this.props,n=t.prefixCls,r=t.navWrapper,o=t.tabBarPosition,s=t.className,c=t.renderTabContent,u=t.renderTabBar,h=t.destroyInactiveTabPane,d=t.direction,f=l()(t,["prefixCls","navWrapper","tabBarPosition","className","renderTabContent","renderTabBar","destroyInactiveTabPane","direction"]),p=_()((e={},a()(e,n,1),a()(e,n+"-"+o,1),a()(e,s,!!s),a()(e,n+"-rtl","rtl"===d),e));this.tabBar=u();var m=y.a.cloneElement(this.tabBar,{prefixCls:n,navWrapper:r,key:"tabBar",onKeyDown:this.onNavKeyDown,tabBarPosition:o,onTabClick:this.onTabClick,panels:t.children,activeKey:this.state.activeKey,direction:this.props.direction}),g=y.a.cloneElement(c(),{prefixCls:n,tabBarPosition:o,activeKey:this.state.activeKey,destroyInactiveTabPane:h,children:t.children,onChange:this.setActiveKey,key:"tabContent",direction:this.props.direction}),v=y.a.createElement(N,{key:"sentinelStart",setRef:this.setSentinelStart,nextElement:this.panelSentinelStart}),b=y.a.createElement(N,{key:"sentinelEnd",setRef:this.setSentinelEnd,prevElement:this.panelSentinelEnd}),w=[];return"bottom"===o?w.push(v,g,b,m):w.push(m,v,g,b),y.a.createElement(R,{value:{sentinelStart:this.sentinelStart,sentinelEnd:this.sentinelEnd,setPanelSentinelStart:this.setPanelSentinelStart,setPanelSentinelEnd:this.setPanelSentinelEnd}},y.a.createElement("div",i()({className:p,style:t.style},Object(O["b"])(f),{onScroll:this.onScroll}),w))}}],[{key:"getDerivedStateFromProps",value:function(e,t){var n={};return"activeKey"in e?n.activeKey=e.activeKey:B(e,t.activeKey)||(n.activeKey=V(e)),Object.keys(n).length>0?n:null}}]),t}(y.a.Component),H=function(){var e=this;this.onTabClick=function(t,n){e.tabBar.props.onTabClick&&e.tabBar.props.onTabClick(t,n),e.setActiveKey(t)},this.onNavKeyDown=function(t){var n=t.keyCode;if(n===k.RIGHT||n===k.DOWN){t.preventDefault();var r=e.getNextActiveKey(!0);e.onTabClick(r)}else if(n===k.LEFT||n===k.UP){t.preventDefault();var i=e.getNextActiveKey(!1);e.onTabClick(i)}},this.onScroll=function(e){var t=e.target,n=e.currentTarget;t===n&&t.scrollLeft>0&&(t.scrollLeft=0)},this.setSentinelStart=function(t){e.sentinelStart=t},this.setSentinelEnd=function(t){e.sentinelEnd=t},this.setPanelSentinelStart=function(t){t!==e.panelSentinelStart&&e.updateSentinelContext(),e.panelSentinelStart=t},this.setPanelSentinelEnd=function(t){t!==e.panelSentinelEnd&&e.updateSentinelContext(),e.panelSentinelEnd=t},this.setActiveKey=function(t){e.state.activeKey!==t&&("activeKey"in e.props||e.setState({activeKey:t}),e.props.onChange(t))},this.getNextActiveKey=function(t){var n=e.state.activeKey,r=[];y.a.Children.forEach(e.props.children,function(e){e&&!e.props.disabled&&(t?r.push(e):r.unshift(e))});var i=r.length,o=i&&r[0].key;return r.forEach(function(e,t){e.key===n&&(o=t===i-1?r[0].key:r[t+1].key)}),o}};W.propTypes={destroyInactiveTabPane:w.a.bool,renderTabBar:w.a.func.isRequired,renderTabContent:w.a.func.isRequired,navWrapper:w.a.func,onChange:w.a.func,children:w.a.node,prefixCls:w.a.string,className:w.a.string,tabBarPosition:w.a.string,style:w.a.object,activeKey:w.a.string,defaultActiveKey:w.a.string,direction:w.a.string},W.defaultProps={prefixCls:"rc-tabs",destroyInactiveTabPane:!1,onChange:F,navWrapper:function(e){return e},tabBarPosition:"top",children:null,style:{},direction:"ltr"},W.TabPane=$,Object(E["polyfill"])(W);var z=W;n("bTih");n.d(t,"a",function(){return $});t["b"]=z},kAMH:function(e,t,n){var r=n("a0xu");e.exports=Array.isArray||function(e){return"Array"==r(e)}},kCCV:function(e,t){function n(e){this.options=e,!e.deferSetup&&this.setup()}n.prototype={constructor:n,setup:function(){this.options.setup&&this.options.setup(),this.initialised=!0},on:function(){!this.initialised&&this.setup(),this.options.match&&this.options.match()},off:function(){this.options.unmatch&&this.options.unmatch()},destroy:function(){this.options.destroy?this.options.destroy():this.off()},equals:function(e){return this.options===e||this.options.match===e}},e.exports=n},kCK5:function(e,t){var n=0,r=Math.random();e.exports=function(e){return"Symbol(".concat(void 0===e?"":e,")_",(++n+r).toString(36))}},kTiW:function(e,t,n){e.exports=n("NegM")},kWR5:function(e,t,n){"use strict";var r=n("WGNW"),i=n("bV5f"),o=n("c0Oy"),a=n("VeyY"),s=n("tGd3");r(r.P+r.R,"Promise",{finally:function(e){var t=a(this,i.Promise||o.Promise),n="function"==typeof e;return this.then(n?function(n){return s(t,e()).then(function(){return n})}:e,n?function(n){return s(t,e()).then(function(){throw n})}:e)}})},kgWH:function(e,t,n){n("gRqi")("Array")},kwZ1:function(e,t,n){"use strict";var r=n("jmDH"),i=n("w6GO"),o=n("mqlF"),a=n("NV0k"),s=n("JB68"),l=n("M1xp"),c=Object.assign;e.exports=!c||n("KUxP")(function(){var e={},t={},n=Symbol(),r="abcdefghijklmnopqrst";return e[n]=7,r.split("").forEach(function(e){t[e]=e}),7!=c({},e)[n]||Object.keys(c({},t)).join("")!=r})?function(e,t){var n=s(e),c=arguments.length,u=1,h=o.f,d=a.f;while(c>u){var f,p=l(arguments[u++]),m=h?i(p).concat(h(p)):i(p),g=m.length,v=0;while(g>v)f=m[v++],r&&!d.call(p,f)||(n[f]=p[f])}return n}:c},l0kz:function(e,t,n){"use strict";var r=n("wUWy");e.exports=function(e,t){return!!e&&r(function(){t?e.call(null,function(){},1):e.call(null)})}},l4aY:function(e,t,n){"use strict";function r(e,t){var n=t;while(n){if(n===e)return!0;n=n.parentNode}return!1}n.d(t,"a",function(){return r})},lCc8:function(e,t,n){var r=n("Y7ZC");r(r.S,"Object",{create:n("oVml")})},lETv:function(e,t,n){"use strict";n.r(t);var r=n("d6i3"),i=n.n(r),o=n("p0pE"),a=n.n(o),s=n("t3Un"),l={notices:[],fetchLoading:!1};t["default"]={name:"notice",state:a()({},l),reducers:{setState(e,t){var n=t.payload;return a()({},e,n)}},effects:{fetch(e,t){return i.a.mark(function e(){var n,r;return i.a.wrap(function(e){while(1)switch(e.prev=e.next){case 0:return n=t.put,e.next=3,n({type:"setState",payload:{fetchLoading:!0}});case 3:return e.next=5,Object(s["a"])("/admin/notice/fetch");case 5:return r=e.sent,e.next=8,n({type:"setState",payload:{fetchLoading:!1}});case 8:if(200===r.code){e.next=10;break}return e.abrupt("return");case 10:return e.next=12,n({type:"setState",payload:{notices:r.data}});case 12:case"end":return e.stop()}},e)})()},save(e,t){return i.a.mark(function n(){var r,o,a,l;return i.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.params,o=e.callback,a=t.put,n.next=4,a({type:"setState",payload:{saveLoading:!0}});case 4:return n.next=6,Object(s["b"])("/admin/notice/save",r);case 6:return l=n.sent,n.next=9,a({type:"setState",payload:{saveLoading:!1}});case 9:if(200===l.code){n.next=11;break}return n.abrupt("return");case 11:return n.next=13,a({type:"fetch"});case 13:"function"===typeof o&&o();case 14:case"end":return n.stop()}},n)})()},drop(e,t){return i.a.mark(function n(){var r,o,a;return i.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.id,o=t.put,n.next=4,Object(s["b"])("/admin/notice/drop",{id:r});case 4:if(a=n.sent,200===a.code){n.next=7;break}return n.abrupt("return");case 7:return n.next=9,o({type:"fetch"});case 9:case"end":return n.stop()}},n)})()}}}},lFUy:function(e,t,n){"use strict";var r=n("8Z/V"),i=n("Igga"),o=n("e6w7"),a=n("LsAW"),s=n("il4q"),l=n("9WFV"),c=Object.assign;e.exports=!c||n("wUWy")(function(){var e={},t={},n=Symbol(),r="abcdefghijklmnopqrst";return e[n]=7,r.split("").forEach(function(e){t[e]=e}),7!=c({},e)[n]||Object.keys(c({},t)).join("")!=r})?function(e,t){var n=s(e),c=arguments.length,u=1,h=o.f,d=a.f;while(c>u){var f,p=l(arguments[u++]),m=h?i(p).concat(h(p)):i(p),g=m.length,v=0;while(g>v)f=m[v++],r&&!d.call(p,f)||(n[f]=p[f])}return n}:c},lWxU:function(e,t,n){"use strict";n.r(t);var r=n("d6i3"),i=n.n(r),o=n("p0pE"),a=n.n(o),s=n("t3Un"),l={switchLoading:{},saveLoading:!1};t["default"]={name:"serverTrojan",state:a()({},l),reducers:{setState(e,t){var n=t.payload;return a()({},e,n)}},effects:{update(e,t){return i.a.mark(function n(){var r,o,a,l,c;return i.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.id,o=e.key,a=e.value,l=t.put,n.next=4,Object(s["b"])("/admin/server/trojan/update",{id:r,[o]:a});case 4:if(c=n.sent,200===c.code){n.next=7;break}return n.abrupt("return");case 7:return n.next=9,l({type:"serverManage/getNodes"});case 9:case"end":return n.stop()}},n)})()},drop(e,t){return i.a.mark(function n(){var r,o,a;return i.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.id,o=t.put,n.next=4,Object(s["b"])("/admin/server/trojan/drop",{id:r});case 4:if(a=n.sent,200===a.code){n.next=7;break}return n.abrupt("return");case 7:return n.next=9,o({type:"serverManage/getNodes"});case 9:case"end":return n.stop()}},n)})()},copy(e,t){return i.a.mark(function n(){var r,o,a;return i.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.id,o=t.put,n.next=4,Object(s["b"])("/admin/server/trojan/copy",{id:r});case 4:if(a=n.sent,200===a.code){n.next=7;break}return n.abrupt("return");case 7:return n.next=9,o({type:"serverManage/getNodes"});case 9:case"end":return n.stop()}},n)})()},save(e,t){return i.a.mark(function n(){var r,o,a,l;return i.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.params,o=e.callback,a=t.put,n.next=4,a({type:"setState",payload:{saveLoading:!0}});case 4:return n.next=6,Object(s["b"])("/admin/server/trojan/save",r);case 6:return l=n.sent,n.next=9,a({type:"setState",payload:{saveLoading:!1}});case 9:if(200===l.code){n.next=11;break}return n.abrupt("return");case 11:return n.next=13,a({type:"serverManage/getNodes"});case 13:"function"===typeof o&&o();case 14:case"end":return n.stop()}},n)})()}}}},lZXM:function(e,t,n){"use strict";var r=n("7vYJ"),i=n("OsVd"),o=n("ETUh"),a=n("bsDr");n("h7Gi")("match",1,function(e,t,n,s){return[function(n){var r=e(this),i=void 0==n?void 0:n[t];return void 0!==i?i.call(n,r):new RegExp(n)[t](String(r))},function(e){var t=s(n,e,this);if(t.done)return t.value;var l=r(e),c=String(this);if(!l.global)return a(l,c);var u=l.unicode;l.lastIndex=0;var h,d=[],f=0;while(null!==(h=a(l,c))){var p=String(h[0]);d[f]=p,""===p&&(l.lastIndex=o(c,i(l.lastIndex),u)),f++}return 0===f?null:d}]})},luuN:function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=Object.assign||function(e){for(var t=1;t{this.state.visible||this.setState({submit:{email:this.props.email||void 0,plan_id:void 0,period:void 0,total_amount:void 0}})})}setSubmit(e,t){this.setState({submit:l()({},this.state.submit,{[e]:t})})}ok(){this.props.dispatch({type:"order/assign",params:l()({},this.state.submit),callback:()=>{this.show()}})}render(){var e=this.state,t=e.visible,n=e.submit,s=this.props.plan.plans,l=this.props.order.assignLoading;return u.a.createElement(u.a.Fragment,null,u.a.cloneElement(this.props.children,{onClick:()=>this.show()}),u.a.createElement(r["a"],{title:"\u8ba2\u5355\u5206\u914d",visible:t,onCancel:()=>this.show(),onOk:()=>this.ok(),okText:l?u.a.createElement(a["a"],{type:"loading"}):"\u786e\u5b9a",cancelText:"\u53d6\u6d88"},u.a.createElement("div",{className:"form-group"},u.a.createElement("label",{for:"example-text-input-alt"},"\u7528\u6237\u90ae\u7bb1"),u.a.createElement(o["a"],{placeholder:"\u8bf7\u8f93\u5165\u7528\u6237\u90ae\u7bb1",value:n.email,onChange:e=>this.setSubmit("email",e.target.value)})),u.a.createElement("div",{className:"form-group"},u.a.createElement("label",{for:"example-text-input-alt"},"\u8bf7\u9009\u62e9\u8ba2\u9605"),u.a.createElement("div",null,u.a.createElement(i["a"],{value:n.plan_id,style:{width:"100%"},placeholder:"\u8bf7\u9009\u62e9\u8ba2\u9605",onChange:e=>this.setSubmit("plan_id",e)},s.map(e=>{return u.a.createElement(i["a"].Option,{value:e.id,key:Math.random()},e.name)})))),u.a.createElement("div",{className:"form-group"},u.a.createElement("label",{for:"example-text-input-alt"},"\u8bf7\u9009\u62e9\u5468\u671f"),u.a.createElement("div",null,u.a.createElement(i["a"],{value:n.period,style:{width:"100%"},placeholder:"\u8bf7\u9009\u62e9\u5468\u671f",onChange:e=>this.setSubmit("period",e)},Object.keys(d["a"].periodText).map(e=>{return u.a.createElement(i["a"].Option,{value:e,key:Math.random()},d["a"].periodText[e])})))),u.a.createElement("div",{className:"form-group"},u.a.createElement("label",{for:"example-text-input-alt"},"\u652f\u4ed8\u91d1\u989d"),u.a.createElement(o["a"],{placeholder:"\u8bf7\u8f93\u5165\u9700\u8981\u652f\u4ed8\u7684\u91d1\u989d",addonAfter:"\xa5",value:n.total_amount,onChange:e=>this.setSubmit("total_amount",e.target.value)}))))}}t["a"]=Object(h["c"])(e=>{var t=e.plan,n=e.order;return{plan:t,order:n}})(f)},mFDi:function(e,t,n){"use strict";var r=n("Fofx"),i=n("3Oj7"),o=Math.min,a=Math.max,s=new i["a"],l=new i["a"],c=new i["a"],u=new i["a"],h=new i["a"],d=new i["a"],f=function(){function e(e,t,n,r){n<0&&(e+=n,n=-n),r<0&&(t+=r,r=-r),this.x=e,this.y=t,this.width=n,this.height=r}return e.prototype.union=function(e){var t=o(e.x,this.x),n=o(e.y,this.y);isFinite(this.x)&&isFinite(this.width)?this.width=a(e.x+e.width,this.x+this.width)-t:this.width=e.width,isFinite(this.y)&&isFinite(this.height)?this.height=a(e.y+e.height,this.y+this.height)-n:this.height=e.height,this.x=t,this.y=n},e.prototype.applyTransform=function(t){e.applyTransform(this,this,t)},e.prototype.calculateTransform=function(e){var t=this,n=e.width/t.width,i=e.height/t.height,o=r["b"]();return r["h"](o,o,[-t.x,-t.y]),r["g"](o,o,[n,i]),r["h"](o,o,[e.x,e.y]),o},e.prototype.intersect=function(t,n){if(!t)return!1;t instanceof e||(t=e.create(t));var r=this,o=r.x,a=r.x+r.width,s=r.y,l=r.y+r.height,c=t.x,u=t.x+t.width,f=t.y,p=t.y+t.height,m=!(av&&(v=_,yv&&(v=C,w=n.x&&e<=n.x+n.width&&t>=n.y&&t<=n.y+n.height},e.prototype.clone=function(){return new e(this.x,this.y,this.width,this.height)},e.prototype.copy=function(t){e.copy(this,t)},e.prototype.plain=function(){return{x:this.x,y:this.y,width:this.width,height:this.height}},e.prototype.isFinite=function(){return isFinite(this.x)&&isFinite(this.y)&&isFinite(this.width)&&isFinite(this.height)},e.prototype.isZero=function(){return 0===this.width||0===this.height},e.create=function(t){return new e(t.x,t.y,t.width,t.height)},e.copy=function(e,t){e.x=t.x,e.y=t.y,e.width=t.width,e.height=t.height},e.applyTransform=function(t,n,r){if(r){if(r[1]<1e-5&&r[1]>-1e-5&&r[2]<1e-5&&r[2]>-1e-5){var i=r[0],h=r[3],d=r[4],f=r[5];return t.x=n.x*i+d,t.y=n.y*h+f,t.width=n.width*i,t.height=n.height*h,t.width<0&&(t.x+=t.width,t.width=-t.width),void(t.height<0&&(t.y+=t.height,t.height=-t.height))}s.x=c.x=n.x,s.y=u.y=n.y,l.x=u.x=n.x+n.width,l.y=c.y=n.y+n.height,s.transform(r),u.transform(r),l.transform(r),c.transform(r),t.x=o(s.x,l.x,c.x,u.x),t.y=o(s.y,l.y,c.y,u.y);var p=a(s.x,l.x,c.x,u.x),m=a(s.y,l.y,c.y,u.y);t.width=p-t.x,t.height=m-t.y}else t!==n&&e.copy(t,n)},e}();t["a"]=f},mHNb:function(e,t,n){"use strict";n.r(t);var r=n("d6i3"),i=n.n(r),o=n("p0pE"),a=n.n(o),s=n("t3Un"),l={knowledges:[],fetchLoading:!1,categorys:[],knowledge:{},fetchByIdLoading:!1,saveLoading:!1};t["default"]={name:"knowledge",state:a()({},l),reducers:{setState(e,t){var n=t.payload;return a()({},e,n)}},effects:{fetch(e,t){return i.a.mark(function e(){var n,r;return i.a.wrap(function(e){while(1)switch(e.prev=e.next){case 0:return n=t.put,e.next=3,n({type:"setState",payload:{fetchLoading:!0}});case 3:return e.next=5,Object(s["a"])("/admin/knowledge/fetch");case 5:return r=e.sent,e.next=8,n({type:"setState",payload:{fetchLoading:!1}});case 8:if(200===r.code){e.next=10;break}return e.abrupt("return");case 10:return e.next=12,n({type:"setState",payload:{knowledges:r.data}});case 12:case"end":return e.stop()}},e)})()},fetchById(e,t){return i.a.mark(function n(){var r,o,a;return i.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.id,o=t.put,n.next=4,o({type:"setState",payload:{fetchByIdLoading:!0}});case 4:return n.next=6,Object(s["a"])("/admin/knowledge/fetch",{id:r});case 6:return a=n.sent,n.next=9,o({type:"setState",payload:{fetchByIdLoading:!1}});case 9:if(200===a.code){n.next=11;break}return n.abrupt("return");case 11:return n.next=13,o({type:"setState",payload:{knowledge:a.data}});case 13:case"end":return n.stop()}},n)})()},save(e,t){return i.a.mark(function n(){var r,o,l,c,u,h;return i.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.callback,o=t.put,l=t.select,n.next=4,l(e=>e.knowledge);case 4:return c=n.sent,u=c.knowledge,n.next=8,o({type:"setState",payload:{saveLoading:!0}});case 8:return n.next=10,Object(s["b"])("/admin/knowledge/save",a()({},u));case 10:return h=n.sent,n.next=13,o({type:"setState",payload:{saveLoading:!1}});case 13:if(200===h.code){n.next=15;break}return n.abrupt("return");case 15:return n.next=17,o({type:"fetch"});case 17:"function"===typeof r&&r();case 18:case"end":return n.stop()}},n)})()},drop(e,t){return i.a.mark(function n(){var r,o,a;return i.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.id,o=t.put,n.next=4,Object(s["b"])("/admin/knowledge/drop",{id:r});case 4:if(a=n.sent,200===a.code){n.next=7;break}return n.abrupt("return");case 7:return n.next=9,o({type:"fetch"});case 9:case"end":return n.stop()}},n)})()},show(e,t){return i.a.mark(function n(){var r,o,a;return i.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.id,o=t.put,n.next=4,Object(s["b"])("/admin/knowledge/show",{id:r});case 4:if(a=n.sent,200===a.code){n.next=7;break}return n.abrupt("return");case 7:return n.next=9,o({type:"fetch"});case 9:case"end":return n.stop()}},n)})()},sort(e,t){return i.a.mark(function n(){var r,o,a,l,c,u,h;return i.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.fromIndex,o=e.toIndex,a=t.select,l=t.put,n.next=4,l({type:"setState",payload:{fetchLoading:!0}});case 4:return n.next=6,a(e=>e.knowledge);case 6:return c=n.sent,u=c.knowledges,re.id)});case 13:if(h=n.sent,200===h.code){n.next=16;break}return n.abrupt("return");case 16:return n.next=18,l({type:"fetch"});case 18:case"end":return n.stop()}},n)})()},getCategory(e,t){return i.a.mark(function e(){var n,r;return i.a.wrap(function(e){while(1)switch(e.prev=e.next){case 0:return n=t.put,e.next=3,Object(s["a"])("/admin/knowledge/getCategory");case 3:if(r=e.sent,200===r.code){e.next=6;break}return e.abrupt("return");case 6:return e.next=8,n({type:"setState",payload:{categorys:r.data}});case 8:case"end":return e.stop()}},e)})()}}}},mLcG:function(e,t,n){"use strict";var r;r="undefined"!==typeof window&&(window.requestAnimationFrame&&window.requestAnimationFrame.bind(window)||window.msRequestAnimationFrame&&window.msRequestAnimationFrame.bind(window)||window.mozRequestAnimationFrame||window.webkitRequestAnimationFrame)||function(e){return setTimeout(e,16)},t["a"]=r},mRg0:function(e,t,n){"use strict";t.__esModule=!0;var r=n("s3Ml"),i=c(r),o=n("AyUB"),a=c(o),s=n("EJiy"),l=c(s);function c(e){return e&&e.__esModule?e:{default:e}}t.default=function(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+("undefined"===typeof t?"undefined":(0,l.default)(t)));e.prototype=(0,a.default)(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(i.default?(0,i.default)(e,t):e.__proto__=t)}},mcDz:function(e,t,n){"use strict";t.__esModule=!0,t.locationsAreEqual=t.createLocation=void 0;var r=Object.assign||function(e){for(var t=1;t0&&i[i.length-1])&&(6===o[0]||2===o[0])){a=0;continue}if(3===o[0]&&(!i||o[1]>i[0]&&o[1]=e.length&&(e=void 0),{value:e&&e[r++],done:!e}}};throw new TypeError(t?"Object is not iterable.":"Symbol.iterator is not defined.")}function o(e,t){var n="function"===typeof Symbol&&e[Symbol.iterator];if(!n)return e;var r,i,o=n.call(e),a=[];try{while((void 0===t||t-- >0)&&!(r=o.next()).done)a.push(r.value)}catch(e){i={error:e}}finally{try{r&&!r.done&&(n=o["return"])&&n.call(o)}finally{if(i)throw i.error}}return a}function a(e,t,n){if(n||2===arguments.length)for(var r,i=0,o=t.length;i Promise))`.","See if using `DarkReader.setFetchMethod(window.fetch)`","before `DarkReader.enable()` works."].join(" ")))]})})},C=_;function S(e){C=e||_}function E(e){return n(this,void 0,void 0,function(){return r(this,function(t){switch(t.label){case 0:return[4,C(e)];case 1:return[2,t.sent()]}})})}window.chrome||(window.chrome={}),chrome.runtime||(chrome.runtime={});var k=new Set;function O(){for(var e=[],t=0;t=r){if(f-cte)return!0;for(var t=0,n=0;nte)return!0;return!1}function re(e){var t=new Set,n=new Set,r=new Set;e.forEach(function(e){j(e.addedNodes,function(e){e instanceof Element&&e.isConnected&&t.add(e)}),j(e.removedNodes,function(e){e instanceof Element&&(e.isConnected?r.add(e):n.add(e))})}),r.forEach(function(e){return t.delete(e)});var i=[],o=[];return t.forEach(function(e){t.has(e.parentElement)&&i.push(e)}),n.forEach(function(e){n.has(e.parentElement)&&o.push(e)}),i.forEach(function(e){return t.delete(e)}),o.forEach(function(e){return n.delete(e)}),{additions:t,moves:r,deletions:n}}var ie,oe=new Map,ae=new WeakMap;function se(e,t){var n,r,i;if(oe.has(e))n=oe.get(e),r=ae.get(n);else{var o=!1,a=!1;n=new MutationObserver(function(t){if(ne(t))!o||q()?r.forEach(function(t){var n=t.onHugeMutations;return n(e)}):a||(i=function(){return r.forEach(function(t){var n=t.onHugeMutations;return n(e)})},G(i),a=!0),o=!0;else{var n=re(t);r.forEach(function(e){var t=e.onMinorMutations;return t(n)})}}),n.observe(e,{childList:!0,subtree:!0}),oe.set(e,n),r=new Set,ae.set(n,r)}return r.add(t),{disconnect:function(){r.delete(t),i&&Y(i),0===r.size&&(n.disconnect(),ae.delete(n),oe.delete(e))}}}var le=new Map;function ce(e){return ie||(ie=document.createElement("a")),ie.href=e,ie.href}function ue(e,t){void 0===t&&(t=null);var n=e+(t?";"+t:"");if(le.has(n))return le.get(n);if(t){var r=new URL(e,ce(t));return le.set(n,r),r}var i=new URL(ce(e));return le.set(e,i),i}function he(e,t){if(t.match(/^data\\?\:/))return t;if(/^\/\//.test(t))return""+location.protocol+t;var n=ue(e),r=ue(t,n.href);return r.href}function de(e,t,n){j(e,function(e){if(e.selectorText)t(e);else if(e.href)try{de(e.styleSheet.cssRules,t,n)}catch(e){$("Found a non-loaded link."),n&&n()}else if(e.media){var r=Array.from(e.media),i=r.some(function(e){return e.startsWith("screen")||e.startsWith("all")}),o=r.some(function(e){return e.startsWith("print")||e.startsWith("speech")});!i&&o||de(e.cssRules,t,n)}else e.conditionText?CSS.supports(e.conditionText)&&de(e.cssRules,t,n):F("CSSRule type not supported",e)})}var fe=["background","border","border-color","border-bottom","border-left","border-right","border-top","outline","outline-color"],pe=f?fe.map(function(e){var t=new RegExp(e+":\\s*(.*?)\\s*;");return[e,t]}):null;function me(e,t){j(e,function(n){var r=e.getPropertyValue(n).trim();r&&t(n,r)});var n=e.cssText;n.includes("var(")&&(f?pe.forEach(function(e){var r=o(e,2),i=r[0],a=r[1],s=n.match(a);if(s&&s[1]){var l=s[1].trim();t(i,l)}}):fe.forEach(function(n){var r=e.getPropertyValue(n);r&&r.includes("var(")&&t(n,r)}))}var ge=/url\((('.+?')|(".+?")|([^\)]*?))\)/g,ve=/@import\s*(url\()?(('.+?')|(".+?")|([^\)]*?))\)?;?/g;function ye(e){return e.replace(/^url\((.*)\)$/,"$1").trim().replace(/^"(.*)"$/,"$1").replace(/^'(.*)'$/,"$1")}function be(e){var t=ue(e);return""+t.origin+t.pathname.replace(/\?.*$/,"").replace(/(\/)([^\/]+)$/i,"$1")}function we(e,t){return e.replace(ge,function(e){var n=ye(e);return'url("'+he(t,n)+'")'})}var xe=/\/\*[\s\S]*?\*\//g;function _e(e){return e.replace(xe,"")}var Ce=/@font-face\s*{[^}]*}/g;function Se(e){return e.replace(Ce,"")}function Ee(e){var t=e.h,n=e.s,r=e.l,i=e.a,a=void 0===i?1:i;if(0===n){var s=o([r,r,r].map(function(e){return Math.round(255*e)}),3),l=s[0],c=s[1],u=s[2];return{r:l,g:u,b:c,a:a}}var h=(1-Math.abs(2*r-1))*n,d=h*(1-Math.abs(t/60%2-1)),f=r-h/2,p=o((t<60?[h,d,0]:t<120?[d,h,0]:t<180?[0,h,d]:t<240?[0,d,h]:t<300?[d,0,h]:[h,0,d]).map(function(e){return Math.round(255*(e+f))}),3),m=p[0],g=p[1],v=p[2];return{r:m,g:g,b:v,a:a}}function ke(e){var t=e.r,n=e.g,r=e.b,i=e.a,o=void 0===i?1:i,a=t/255,s=n/255,l=r/255,c=Math.max(a,s,l),u=Math.min(a,s,l),h=c-u,d=(c+u)/2;if(0===h)return{h:0,s:0,l:d,a:o};var f=60*(c===a?(s-l)/h%6:c===s?(l-a)/h+2:(a-s)/h+4);f<0&&(f+=360);var p=h/(1-Math.abs(2*d-1));return{h:f,s:p,l:d,a:o}}function Oe(e,t){void 0===t&&(t=0);var n=e.toFixed(t);if(0===t)return n;var r=n.indexOf(".");if(r>=0){var i=n.match(/0+$/);if(i)return i.index===r+1?n.substring(0,r):n.substring(0,i.index)}return n}function Te(e){var t=e.r,n=e.g,r=e.b,i=e.a;return null!=i&&i<1?"rgba("+Oe(t)+", "+Oe(n)+", "+Oe(r)+", "+Oe(i,2)+")":"rgb("+Oe(t)+", "+Oe(n)+", "+Oe(r)+")"}function Ae(e){var t=e.r,n=e.g,r=e.b,i=e.a;return"#"+(null!=i&&i<1?[t,n,r,Math.round(255*i)]:[t,n,r]).map(function(e){return(e<16?"0":"")+e.toString(16)}).join("")}function Me(e){var t=e.h,n=e.s,r=e.l,i=e.a;return null!=i&&i<1?"hsla("+Oe(t)+", "+Oe(100*n)+"%, "+Oe(100*r)+"%, "+Oe(i,2)+")":"hsl("+Oe(t)+", "+Oe(100*n)+"%, "+Oe(100*r)+"%)"}var Pe=/^rgba?\([^\(\)]+\)$/,Re=/^hsla?\([^\(\)]+\)$/,Le=/^#[0-9a-f]+$/i;function De(e){var t=e.trim().toLowerCase();if(t.match(Pe))return Fe(t);if(t.match(Re))return We(t);if(t.match(Le))return He(t);if(qe.has(t))return ze(t);if(Ke.has(t))return Ue(t);if("transparent"===e)return{r:0,g:0,b:0,a:0};throw new Error("Unable to parse "+e)}function je(e){var t=[],n=0,r=!1,i=e.indexOf("(");e=e.substring(i+1,e.length-1);for(var o=0;o="0"&&a<="9"||"."===a||"+"===a||"-"===a?r=!0:!r||" "!==a&&","!==a?r||(n=o+1):(t.push(e.substring(n,o)),r=!1,n=o+1)}return r&&t.push(e.substring(n,e.length)),t}function Ne(e,t,n){var r=je(e),i=Object.entries(n),a=r.map(function(e){return e.trim()}).map(function(e,n){var r,a=i.find(function(t){var n=o(t,1),r=n[0];return e.endsWith(r)});return r=a?parseFloat(e.substring(0,e.length-a[0].length))/a[1]*t[n]:parseFloat(e),t[n]>1?Math.round(r):r});return a}var Ie=[255,255,255,1],$e={"%":100};function Fe(e){var t=o(Ne(e,Ie,$e),4),n=t[0],r=t[1],i=t[2],a=t[3],s=void 0===a?1:a;return{r:n,g:r,b:i,a:s}}var Ve=[360,1,1,1],Be={"%":100,deg:360,rad:2*Math.PI,turn:1};function We(e){var t=o(Ne(e,Ve,Be),4),n=t[0],r=t[1],i=t[2],a=t[3],s=void 0===a?1:a;return Ee({h:n,s:r,l:i,a:s})}function He(e){var t=e.substring(1);switch(t.length){case 3:case 4:var n=o([0,1,2].map(function(e){return parseInt(""+t[e]+t[e],16)}),3),r=n[0],i=n[1],a=n[2],s=3===t.length?1:parseInt(""+t[3]+t[3],16)/255;return{r:r,g:i,b:a,a:s};case 6:case 8:var l=o([0,2,4].map(function(e){return parseInt(t.substring(e,e+2),16)}),3);r=l[0],i=l[1],a=l[2],s=6===t.length?1:parseInt(t.substring(6,8),16)/255;return{r:r,g:i,b:a,a:s}}throw new Error("Unable to parse "+e)}function ze(e){var t=qe.get(e);return{r:t>>16&255,g:t>>8&255,b:t>>0&255,a:1}}function Ue(e){var t=Ke.get(e);return{r:t>>16&255,g:t>>8&255,b:t>>0&255,a:1}}var qe=new Map(Object.entries({aliceblue:15792383,antiquewhite:16444375,aqua:65535,aquamarine:8388564,azure:15794175,beige:16119260,bisque:16770244,black:0,blanchedalmond:16772045,blue:255,blueviolet:9055202,brown:10824234,burlywood:14596231,cadetblue:6266528,chartreuse:8388352,chocolate:13789470,coral:16744272,cornflowerblue:6591981,cornsilk:16775388,crimson:14423100,cyan:65535,darkblue:139,darkcyan:35723,darkgoldenrod:12092939,darkgray:11119017,darkgrey:11119017,darkgreen:25600,darkkhaki:12433259,darkmagenta:9109643,darkolivegreen:5597999,darkorange:16747520,darkorchid:10040012,darkred:9109504,darksalmon:15308410,darkseagreen:9419919,darkslateblue:4734347,darkslategray:3100495,darkslategrey:3100495,darkturquoise:52945,darkviolet:9699539,deeppink:16716947,deepskyblue:49151,dimgray:6908265,dimgrey:6908265,dodgerblue:2003199,firebrick:11674146,floralwhite:16775920,forestgreen:2263842,fuchsia:16711935,gainsboro:14474460,ghostwhite:16316671,gold:16766720,goldenrod:14329120,gray:8421504,grey:8421504,green:32768,greenyellow:11403055,honeydew:15794160,hotpink:16738740,indianred:13458524,indigo:4915330,ivory:16777200,khaki:15787660,lavender:15132410,lavenderblush:16773365,lawngreen:8190976,lemonchiffon:16775885,lightblue:11393254,lightcoral:15761536,lightcyan:14745599,lightgoldenrodyellow:16448210,lightgray:13882323,lightgrey:13882323,lightgreen:9498256,lightpink:16758465,lightsalmon:16752762,lightseagreen:2142890,lightskyblue:8900346,lightslategray:7833753,lightslategrey:7833753,lightsteelblue:11584734,lightyellow:16777184,lime:65280,limegreen:3329330,linen:16445670,magenta:16711935,maroon:8388608,mediumaquamarine:6737322,mediumblue:205,mediumorchid:12211667,mediumpurple:9662683,mediumseagreen:3978097,mediumslateblue:8087790,mediumspringgreen:64154,mediumturquoise:4772300,mediumvioletred:13047173,midnightblue:1644912,mintcream:16121850,mistyrose:16770273,moccasin:16770229,navajowhite:16768685,navy:128,oldlace:16643558,olive:8421376,olivedrab:7048739,orange:16753920,orangered:16729344,orchid:14315734,palegoldenrod:15657130,palegreen:10025880,paleturquoise:11529966,palevioletred:14381203,papayawhip:16773077,peachpuff:16767673,peru:13468991,pink:16761035,plum:14524637,powderblue:11591910,purple:8388736,rebeccapurple:6697881,red:16711680,rosybrown:12357519,royalblue:4286945,saddlebrown:9127187,salmon:16416882,sandybrown:16032864,seagreen:3050327,seashell:16774638,sienna:10506797,silver:12632256,skyblue:8900331,slateblue:6970061,slategray:7372944,slategrey:7372944,snow:16775930,springgreen:65407,steelblue:4620980,tan:13808780,teal:32896,thistle:14204888,tomato:16737095,turquoise:4251856,violet:15631086,wheat:16113331,white:16777215,whitesmoke:16119285,yellow:16776960,yellowgreen:10145074})),Ke=new Map(Object.entries({ActiveBorder:3906044,ActiveCaption:0,AppWorkspace:11184810,Background:6513614,ButtonFace:16777215,ButtonHighlight:15329769,ButtonShadow:10461343,ButtonText:0,CaptionText:0,GrayText:8355711,Highlight:11720703,HighlightText:0,InactiveBorder:16777215,InactiveCaption:16777215,InactiveCaptionText:0,InfoBackground:16514245,InfoText:0,Menu:16185078,MenuText:16777215,Scrollbar:11184810,ThreeDDarkShadow:0,ThreeDFace:12632256,ThreeDHighlight:16777215,ThreeDLightShadow:16777215,ThreeDShadow:0,Window:15527148,WindowFrame:11184810,WindowText:0,"-webkit-focus-ring-color":15046400}).map(function(e){var t=o(e,2),n=t[0],r=t[1];return[n.toLowerCase(),r]}));function Ge(e,t,n,r,i){return(e-t)*(i-r)/(n-t)+r}function Ye(e,t,n){return Math.min(n,Math.max(t,e))}function Xe(e,t){for(var n=[],r=0,i=e.length;r200&&i<280;r=o<.24||a>.8&&c}var u=i,h=a;r&&(l?(u=t.h,h=t.s):(u=n.h,h=n.s));var d=Ge(a,0,1,t.l,n.l);return{h:u,s:h,l:d,a:s}}var vt=.4;function yt(e,t){var n=e.h,r=e.s,i=e.l,o=e.a,a=i<.5,s=n>200&&n<280,l=r<.12||i>.8&&s;if(a){var c=Ge(i,0,.5,0,vt);if(l){var u=t.h,h=t.s;return{h:u,s:h,l:c,a:o}}return{h:n,s:r,l:c,a:o}}var d=Ge(i,.5,1,vt,t.l);if(l){var f=t.h;h=t.s;return{h:f,s:h,l:d,a:o}}var p=n,m=n>60&&n<180;if(m){var g=n>120;p=g?Ge(n,120,180,135,180):Ge(n,60,120,60,105)}return{h:p,s:r,l:d,a:o}}function bt(e,n){if(0===n.mode)return mt(e,n);var r=rt(n);return dt(e,t(t({},n),{mode:0}),yt,r)}var wt,xt=.55;function _t(e){return Ge(e,205,245,205,220)}function Ct(e,t){var n=e.h,r=e.s,i=e.l,o=e.a,a=i>.5,s=i<.2||r<.24,l=!s&&n>205&&n<245;if(a){var c=Ge(i,.5,1,xt,t.l);if(s){var u=t.h,h=t.s;return{h:u,s:h,l:c,a:o}}var d=n;return l&&(d=_t(n)),{h:d,s:r,l:c,a:o}}if(s){var f=t.h,p=(h=t.s,Ge(i,0,.5,t.l,xt));return{h:f,s:h,l:p,a:o}}var m,g=n;return l?(g=_t(n),m=Ge(i,0,.5,t.l,Math.min(1,xt+.05))):m=Ge(i,0,.5,t.l,xt),{h:g,s:r,l:m,a:o}}function St(e,n){if(0===n.mode)return mt(e,n);var r=it(n);return dt(e,t(t({},n),{mode:0}),Ct,r)}function Et(e,t,n){var r=e.h,i=e.s,o=e.l,a=e.a,s=o<.5,l=o<.2||i<.24,c=r,u=i;l&&(s?(c=t.h,u=t.s):(c=n.h,u=n.s));var h=Ge(o,0,1,.5,.2);return{h:c,s:u,l:h,a:a}}function kt(e,n){if(0===n.mode)return mt(e,n);var r=it(n),i=rt(n);return dt(e,t(t({},n),{mode:0}),Et,r,i)}function Ot(e,t){return bt(e,t)}function Tt(e,t){return bt(e,t)}function At(e){var t=[];return t.push('*:not(pre, pre *, code, .far, .fa, .glyphicon, [class*="vjs-"], .fab, .fa-github, .fas, .material-icons, .icofont, .typcn, mu, [class*="mu-"], .glyphicon, .icon) {'),e.useFont&&e.fontFamily&&t.push(" font-family: "+e.fontFamily+" !important;"),e.textStroke>0&&(t.push(" -webkit-text-stroke: "+e.textStroke+"px !important;"),t.push(" text-stroke: "+e.textStroke+"px !important;")),t.push("}"),t.join("\n")}function Mt(e){var t=[];return e.mode===wt.dark&&t.push("invert(100%) hue-rotate(180deg)"),100!==e.brightness&&t.push("brightness("+e.brightness+"%)"),100!==e.contrast&&t.push("contrast("+e.contrast+"%)"),0!==e.grayscale&&t.push("grayscale("+e.grayscale+"%)"),0!==e.sepia&&t.push("sepia("+e.sepia+"%)"),0===t.length?null:t.join(" ")}function Pt(e){return e.slice(0,4).map(function(e){return e.map(function(e){return e.toFixed(3)}).join(" ")}).join(" ")}function Rt(e){return Pt(et(e))}(function(e){e[e["light"]=0]="light",e[e["dark"]=1]="dark"})(wt||(wt={}));var Lt=0,Dt=new Map,jt=new Map;function Nt(e){return n(this,void 0,void 0,function(){return r(this,function(t){return[2,new Promise(function(t,n){var r=++Lt;Dt.set(r,t),jt.set(r,n),chrome.runtime.sendMessage({type:s.CS_FETCH,data:e,id:r})})]})})}chrome.runtime.onMessage.addListener(function(e){var t=e.type,n=e.data,r=e.error,i=e.id;if(t===s.BG_FETCH_RESPONSE){var o=Dt.get(i),a=jt.get(i);Dt.delete(i),jt.delete(i),r?a&&a(r):o&&o(n)}});var It=function(){function e(){this.queue=[],this.timerId=null,this.frameDuration=1e3/60}return e.prototype.addToQueue=function(e){this.queue.push(e),this.startQueue()},e.prototype.stopQueue=function(){null!==this.timerId&&(cancelAnimationFrame(this.timerId),this.timerId=null),this.queue=[]},e.prototype.startQueue=function(){var e=this;this.timerId||(this.timerId=requestAnimationFrame(function(){e.timerId=null;var t,n=Date.now();while(t=e.queue.shift())if(t(),Date.now()-n>=e.frameDuration){e.startQueue();break}}))},e}(),$t=new It;function Ft(e){return n(this,void 0,void 0,function(){var i=this;return r(this,function(o){return[2,new Promise(function(o,a){return n(i,void 0,void 0,function(){var n,i,s,l;return r(this,function(r){switch(r.label){case 0:return e.startsWith("data:")?(n=e,[3,4]):[3,1];case 1:return r.trys.push([1,3,,4]),[4,Vt(e)];case 2:return n=r.sent(),[3,4];case 3:return i=r.sent(),a(i),[3,4];case 4:return r.trys.push([4,6,,7]),[4,Bt(n)];case 5:return s=r.sent(),$t.addToQueue(function(){o(t({src:e,dataURL:n,width:s.naturalWidth,height:s.naturalHeight},Gt(s)))}),[3,7];case 6:return l=r.sent(),a(l),[3,7];case 7:return[2]}})})})]})})}function Vt(e){return n(this,void 0,void 0,function(){var t;return r(this,function(n){switch(n.label){case 0:return t=new URL(e),t.origin!==location.origin?[3,2]:[4,w(e)];case 1:return[2,n.sent()];case 2:return[4,Nt({url:e,responseType:"data-url"})];case 3:return[2,n.sent()]}})})}function Bt(e){return n(this,void 0,void 0,function(){return r(this,function(t){return[2,new Promise(function(t,n){var r=new Image;r.onload=function(){return t(r)},r.onerror=function(){return n("Unable to load image "+e)},r.src=e})]})})}var Wt,Ht,zt=1024;function Ut(){var e=zt,t=zt;Wt=document.createElement("canvas"),Wt.width=e,Wt.height=t,Ht=Wt.getContext("2d"),Ht.imageSmoothingEnabled=!1}function qt(){Wt=null,Ht=null}var Kt=5242880;function Gt(e){Wt||Ut();var t=e.naturalWidth,n=e.naturalHeight;if(0===n||0===t)return F("logWarn(Image is empty "+e.currentSrc+")"),null;var r=t*n*4;if(r>Kt)return $("Skipped large image analyzing(Larger than 5mb in memory)"),{isDark:!1,isLight:!1,isTransparent:!1,isLarge:!1,isTooLarge:!0};var i=t*n,o=Math.min(1,Math.sqrt(zt/i)),a=Math.ceil(t*o),s=Math.ceil(n*o);Ht.clearRect(0,0,a,s),Ht.drawImage(e,0,0,t,n,0,0,a,s);var l,c,u,h,d,f,p,m,g=Ht.getImageData(0,0,a,s),v=g.data,y=.05,b=.4,w=.7,x=0,_=0,C=0;for(u=0;uw&&C++);var S=a*s,E=S-x,k=.7,O=.7,T=.1,A=48e4;return{isDark:_/E>=k,isLight:C/E>=O,isTransparent:x/S>=T,isLarge:i>=A,isTooLarge:!1}}function Yt(e,t){var n=e.dataURL,r=e.width,i=e.height,o=Rt(t),a=['',"",'','',"","",'',""].join("");return"data:image/svg+xml;base64,"+btoa(a)}function Xt(){$t&&$t.stopQueue(),qt()}function Qt(e,t){return Boolean(e&&e.getPropertyPriority(t))}function Zt(e,t,n,r,i,o){if(e.startsWith("--")){var a=gn(r,e,t,n,i,o);if(a)return{property:e,value:a,important:Qt(n.style,e),sourceValue:t}}else if(t.includes("var(")){a=vn(r,e,t);if(a)return{property:e,value:a,important:Qt(n.style,e),sourceValue:t}}else if(e.includes("color")&&"-webkit-print-color-adjust"!==e||"fill"===e||"stroke"===e||"stop-color"===e){a=cn(e,t);if(a)return{property:e,value:a,important:Qt(n.style,e),sourceValue:t}}else if("background-image"===e||"list-style-image"===e){a=pn(t,n,i,o);if(a)return{property:e,value:a,important:Qt(n.style,e),sourceValue:t}}else if(e.includes("shadow")){a=mn(t);if(a)return{property:e,value:a,important:Qt(n.style,e),sourceValue:t}}return null}function Jt(e,t,n){var r=[];return t||(r.push("html {"),r.push(" background-color: "+bt({r:255,g:255,b:255},e)+" !important;"),r.push("}")),r.push((t?"":"html, body, ")+(n?"input, textarea, select, button":"")+" {"),r.push(" background-color: "+bt({r:255,g:255,b:255},e)+";"),r.push("}"),r.push("html, body, "+(n?"input, textarea, select, button":"")+" {"),r.push(" border-color: "+kt({r:76,g:76,b:76},e)+";"),r.push(" color: "+St({r:0,g:0,b:0},e)+";"),r.push("}"),r.push("a {"),r.push(" color: "+St({r:0,g:64,b:255},e)+";"),r.push("}"),r.push("table {"),r.push(" border-color: "+kt({r:128,g:128,b:128},e)+";"),r.push("}"),r.push("::placeholder {"),r.push(" color: "+St({r:169,g:169,b:169},e)+";"),r.push("}"),r.push("input:-webkit-autofill,"),r.push("textarea:-webkit-autofill,"),r.push("select:-webkit-autofill {"),r.push(" background-color: "+bt({r:250,g:255,b:189},e)+" !important;"),r.push(" color: "+St({r:0,g:0,b:0},e)+" !important;"),r.push("}"),e.scrollbarColor&&r.push(nn(e)),e.selectionColor&&r.push(tn(e)),r.join("\n")}function en(e){var n,r;if("auto"===e.selectionColor)n=bt({r:0,g:96,b:212},t(t({},e),{grayscale:0})),r=St({r:255,g:255,b:255},t(t({},e),{grayscale:0}));else{var i=De(e.selectionColor),o=ke(i);n=e.selectionColor,r=o.l<.5?"#FFF":"#000"}return{backgroundColorSelection:n,foregroundColorSelection:r}}function tn(e){var t=[],n=en(e),r=n.backgroundColorSelection,i=n.foregroundColorSelection;return["::selection","::-moz-selection"].forEach(function(e){t.push(e+" {"),t.push(" background-color: "+r+" !important;"),t.push(" color: "+i+" !important;"),t.push("}")}),t.join("\n")}function nn(e){var n,r,i,o,a,s,l=[];if("auto"===e.scrollbarColor)n=bt({r:241,g:241,b:241},e),r=St({r:96,g:96,b:96},e),i=bt({r:176,g:176,b:176},e),o=bt({r:144,g:144,b:144},e),a=bt({r:96,g:96,b:96},e),s=bt({r:255,g:255,b:255},e);else{var c=De(e.scrollbarColor),u=ke(c),h=u.l>.5,f=function(e){return t(t({},u),{l:Ye(u.l+e,0,1)})},p=function(e){return t(t({},u),{l:Ye(u.l-e,0,1)})};n=Me(p(.4)),r=Me(h?p(.4):f(.4)),i=Me(u),o=Me(f(.1)),a=Me(f(.2))}return l.push("::-webkit-scrollbar {"),l.push(" background-color: "+n+";"),l.push(" color: "+r+";"),l.push("}"),l.push("::-webkit-scrollbar-thumb {"),l.push(" background-color: "+i+";"),l.push("}"),l.push("::-webkit-scrollbar-thumb:hover {"),l.push(" background-color: "+o+";"),l.push("}"),l.push("::-webkit-scrollbar-thumb:active {"),l.push(" background-color: "+a+";"),l.push("}"),l.push("::-webkit-scrollbar-corner {"),l.push(" background-color: "+s+";"),l.push("}"),d&&(l.push("* {"),l.push(" scrollbar-color: "+i+" "+n+";"),l.push("}")),l.join("\n")}function rn(e,t){var n=t.strict,r=[];return r.push("html, body, "+(n?"body :not(iframe)":"body > :not(iframe)")+" {"),r.push(" background-color: "+bt({r:255,g:255,b:255},e)+" !important;"),r.push(" border-color: "+kt({r:64,g:64,b:64},e)+" !important;"),r.push(" color: "+St({r:0,g:0,b:0},e)+" !important;"),r.push("}"),r.join("\n")}var on=new Set(["inherit","transparent","initial","currentcolor","none","unset"]),an=new Map;function sn(e){if(e=e.trim(),an.has(e))return an.get(e);var t=De(e);return an.set(e,t),t}function ln(e){try{return sn(e)}catch(e){return null}}function cn(e,t){if(on.has(t.toLowerCase()))return t;try{var n=sn(t);return e.includes("background")?function(e){return bt(n,e)}:e.includes("border")||e.includes("outline")?function(e){return kt(n,e)}:function(e){return St(n,e)}}catch(e){return F("Color parse error",e),null}}var un=/[\-a-z]+gradient\(([^\(\)]*(\(([^\(\)]*(\(.*?\)))*[^\(\)]*\))){0,15}[^\(\)]*\)/g,hn=new Map,dn=new Map;function fn(e,t){if(!e||0===t.length)return!1;if(t.some(function(e){return"*"===e}))return!0;for(var n=e.split(/,\s*/g),r=function(e){var r=t[e];if(n.some(function(e){return e===r}))return{value:!0}},i=0;i2){$("Inverting dark image "+e.src);var u=Yt(e,t(t({},n),{sepia:Ye(n.sepia+10,0,100)}));r='url("'+u+'")'}else if(o&&!a&&1===n.mode)if(s)r="none";else{$("Dimming light image "+e.src);var h=Yt(e,n);r='url("'+h+'")'}else if(0===n.mode&&o&&!s){$("Applying filter to image "+e.src);var d=Yt(e,t(t({},n),{brightness:Ye(n.brightness-10,5,200),sepia:Ye(n.sepia+10,0,100)}));r='url("'+d+'")'}else r=null;return r},m=[],g=0;return h.forEach(function(t,n){var r=t.match,i=t.type,o=t.index,a=g,s=o+r.length;g=s,m.push(function(){return e.substring(a,o)}),m.push("url"===i?f(r):d(r)),n===h.length-1&&m.push(function(){return e.substring(s)})}),function(e){var t=m.filter(Boolean).map(function(t){return t(e)});return t.some(function(e){return e instanceof Promise})?Promise.all(t).then(function(e){return e.join("")}):t.join("")}}catch(t){return F("Unable to parse gradient "+e,t),null}}function mn(e){try{var t=0,n=Qe(/(^|\s)(?!calc)([a-z]+\(.+?\)|#[0-9a-f]+|[a-z]+)(.*?(inset|outset)?($|,))/gi,e,2),r=n.map(function(r,i){var o=t,a=e.indexOf(r,t),s=a+r.length;t=s;var l=ln(r);return l?function(t){return""+e.substring(o,a)+Ot(l,t)+(i===n.length-1?e.substring(s):"")}:function(){return e.substring(o,s)}});return function(e){return r.map(function(t){return t(e)}).join("")}}catch(t){return F("Unable to parse shadow "+e,t),null}}function gn(e,t,n,r,i,o){return e.getModifierForVariable({varName:t,sourceValue:n,rule:r,ignoredImgSelectors:i,isCancelled:o})}function vn(e,t,n){return e.getModifierForVarDependant(t,n)}function yn(){an.clear(),lt(),hn.clear(),Xt(),dn.clear()}var bn=1,wn=2,xn=4,_n=8,Cn=function(){function e(){this.varTypes=new Map,this.rulesQueue=[],this.definedVars=new Set,this.varRefs=new Map,this.unknownColorVars=new Set,this.unknownBgVars=new Set,this.undefinedVars=new Set,this.initialVarTypes=new Map,this.changedTypeVars=new Set,this.typeChangeSubscriptions=new Map,this.unstableVarValues=new Map}return e.prototype.clear=function(){this.varTypes.clear(),this.rulesQueue.splice(0),this.definedVars.clear(),this.varRefs.clear(),this.unknownColorVars.clear(),this.unknownBgVars.clear(),this.undefinedVars.clear(),this.initialVarTypes.clear(),this.changedTypeVars.clear(),this.typeChangeSubscriptions.clear(),this.unstableVarValues.clear()},e.prototype.isVarType=function(e,t){return this.varTypes.has(e)&&(this.varTypes.get(e)&t)>0},e.prototype.addRulesForMatching=function(e){this.rulesQueue.push(e)},e.prototype.matchVariablesAndDependants=function(){var e=this;this.changedTypeVars.clear(),this.initialVarTypes=new Map(this.varTypes),this.collectRootVariables(),this.collectVariablesAndVarDep(this.rulesQueue),this.rulesQueue.splice(0),this.collectRootVarDependants(),this.varRefs.forEach(function(t,n){t.forEach(function(t){e.varTypes.has(n)&&e.resolveVariableType(t,e.varTypes.get(n))})}),this.unknownColorVars.forEach(function(t){e.unknownBgVars.has(t)?(e.unknownColorVars.delete(t),e.unknownBgVars.delete(t),e.resolveVariableType(t,bn)):e.isVarType(t,bn|wn|xn)?e.unknownColorVars.delete(t):e.undefinedVars.add(t)}),this.unknownBgVars.forEach(function(t){var n=null!=e.findVarRef(t,function(t){return e.unknownColorVars.has(t)||e.isVarType(t,wn|xn)});n?e.itarateVarRefs(t,function(t){e.resolveVariableType(t,bn)}):e.isVarType(t,bn|_n)?e.unknownBgVars.delete(t):e.undefinedVars.add(t)}),this.changedTypeVars.forEach(function(t){e.typeChangeSubscriptions.has(t)&&e.typeChangeSubscriptions.get(t).forEach(function(e){e()})}),this.changedTypeVars.clear()},e.prototype.getModifierForVariable=function(e){var t=this;return function(n){var r=e.varName,i=e.sourceValue,o=e.rule,a=e.ignoredImgSelectors,s=e.isCancelled,l=function(){var e=[],l=function(o,a,s){if(t.isVarType(r,o)){var l,c=a(r);if(Nn(i))if(In(i)){var u=Bn(i,t.unstableVarValues);u||(u=o===bn?"#ffffff":"#000000"),l=s(u,n)}else l=An(i,function(e){return a(e)},function(e){return s(e,n)});else l=s(i,n);e.push({property:c,value:l})}};if(l(bn,Pn,$n),l(wn,Rn,Fn),l(xn,Ln,Vn),t.isVarType(r,_n)){var c=Dn(r),u=i;Nn(i)&&(u=An(i,function(e){return Pn(e)},function(e){return $n(e,n)}));var h=pn(u,o,a,s);u="function"===typeof h?h(n):h,e.push({property:c,value:u})}return e},c=new Set,u=function(e){var n=function(){var t=l();e(t)};c.add(n),t.subscribeForVarTypeChange(r,n)},h=function(){c.forEach(function(e){t.unsubscribeFromVariableTypeChanges(r,e)})};return{declarations:l(),onTypeChange:{addListener:u,removeListeners:h}}}},e.prototype.getModifierForVarDependant=function(e,t){var n=this;if(t.match(/^\s*(rgb|hsl)a?\(/)){var r=e.startsWith("background"),i="color"===e||"caret-color"===e;return function(e){var o=Bn(t,n.unstableVarValues);o||(o=r?"#ffffff":"#000000");var a=r?$n:i?Fn:Vn;return a(o,e)}}if("background-color"===e)return function(e){return An(t,function(e){return Pn(e)},function(t){return $n(t,e)})};if("color"===e||"caret-color"===e)return function(e){return An(t,function(e){return Rn(e)},function(t){return Fn(t,e)})};if("background"===e||"background-image"===e||"box-shadow"===e)return function(r){var i=new Set,o=function(){var o=An(t,function(e){return n.isVarType(e,bn)?Pn(e):n.isVarType(e,_n)?Dn(e):(i.add(e),e)},function(e){return $n(e,r)});if("box-shadow"===e){var a=mn(o);return a(r)||o}return o},a=o();return i.size>0?new Promise(function(e){var t=i.values().next().value,r=function(){n.unsubscribeFromVariableTypeChanges(t,r);var i=o();e(i)};n.subscribeForVarTypeChange(t,r)}):a};if(e.startsWith("border")||e.startsWith("outline")){if(t.endsWith(")")){var o=t.match(/((rgb|hsl)a?)\(/);if(o){var a=o.index;return function(e){var r=Bn(t,n.unstableVarValues);if(!r)return t;var i=t.substring(0,a),o=t.substring(a,t.length),s=Bn(o,n.unstableVarValues),l=Vn(s,e);return""+i+l}}}return function(e){return An(t,function(e){return Ln(e)},function(t){return Fn(t,e)})}}return null},e.prototype.subscribeForVarTypeChange=function(e,t){this.typeChangeSubscriptions.has(e)||this.typeChangeSubscriptions.set(e,new Set);var n=this.typeChangeSubscriptions.get(e);n.has(t)||n.add(t)},e.prototype.unsubscribeFromVariableTypeChanges=function(e,t){this.typeChangeSubscriptions.has(e)&&this.typeChangeSubscriptions.get(e).delete(t)},e.prototype.collectVariablesAndVarDep=function(e){var t=this;e.forEach(function(e){de(e,function(e){e.style&&me(e.style,function(e,n){jn(e)&&t.inspectVariable(e,n),Nn(n)&&t.inspectVarDependant(e,n)})})})},e.prototype.collectRootVariables=function(){var e=this;me(document.documentElement.style,function(t,n){jn(t)&&e.inspectVariable(t,n)})},e.prototype.inspectVariable=function(e,t){if(this.unstableVarValues.set(e,t),Nn(t)&&In(t)&&(this.unknownColorVars.add(e),this.definedVars.add(e)),!this.definedVars.has(e)){this.definedVars.add(e);var n=ln(t);n?this.unknownColorVars.add(e):(t.includes("url(")||t.includes("linear-gradient(")||t.includes("radial-gradient("))&&this.resolveVariableType(e,_n)}},e.prototype.resolveVariableType=function(e,t){var n=this.initialVarTypes.get(e)||0,r=this.varTypes.get(e)||0,i=r|t;this.varTypes.set(e,i),(i!==n||this.undefinedVars.has(e))&&(this.changedTypeVars.add(e),this.undefinedVars.delete(e)),this.unknownColorVars.delete(e),this.unknownBgVars.delete(e)},e.prototype.collectRootVarDependants=function(){var e=this;me(document.documentElement.style,function(t,n){Nn(n)&&e.inspectVarDependant(t,n)})},e.prototype.inspectVarDependant=function(e,t){var n=this;jn(e)?this.iterateVarDeps(t,function(t){n.varRefs.has(e)||n.varRefs.set(e,new Set),n.varRefs.get(e).add(t)}):"background-color"===e||"box-shadow"===e?this.iterateVarDeps(t,function(e){return n.resolveVariableType(e,bn)}):"color"===e||"caret-color"===e?this.iterateVarDeps(t,function(e){return n.resolveVariableType(e,wn)}):e.startsWith("border")||e.startsWith("outline")?this.iterateVarDeps(t,function(e){return n.resolveVariableType(e,xn)}):"background"!==e&&"background-image"!==e||this.iterateVarDeps(t,function(e){if(!n.isVarType(e,bn|_n)){var t=null!=n.findVarRef(e,function(e){return n.unknownColorVars.has(e)||n.isVarType(e,wn|xn)});n.itarateVarRefs(e,function(e){t?n.resolveVariableType(e,bn):n.unknownBgVars.add(e)})}})},e.prototype.iterateVarDeps=function(e,t){var n=new Set;Mn(e,function(e){return n.add(e)}),n.forEach(function(e){return t(e)})},e.prototype.findVarRef=function(e,t,n){var r,o;if(void 0===n&&(n=new Set),n.has(e))return null;n.add(e);var a=t(e);if(a)return e;var s=this.varRefs.get(e);if(!s||0===s.size)return null;try{for(var l=i(s),c=l.next();!c.done;c=l.next()){var u=c.value,h=this.findVarRef(u,t,n);if(h)return h}}catch(e){r={error:e}}finally{try{c&&!c.done&&(o=l.return)&&o.call(l)}finally{if(r)throw r.error}}return null},e.prototype.itarateVarRefs=function(e,t){this.findVarRef(e,function(e){return t(e),!1})},e.prototype.setOnRootVariableChange=function(e){this.onRootVariableDefined=e},e.prototype.putRootVars=function(e,t){var n,r,a=this,s=e.sheet;s.cssRules.length>0&&s.deleteRule(0);var l=new Map;me(document.documentElement.style,function(e,n){jn(e)&&(a.isVarType(e,bn)&&l.set(Pn(e),$n(n,t)),a.isVarType(e,wn)&&l.set(Rn(e),Fn(n,t)),a.isVarType(e,xn)&&l.set(Ln(e),Vn(n,t)),a.subscribeForVarTypeChange(e,a.onRootVariableDefined))});var c=[];c.push(":root {");try{for(var u=i(l),h=u.next();!h.done;h=u.next()){var d=o(h.value,2),f=d[0],p=d[1];c.push(" "+f+": "+p+";")}}catch(e){n={error:e}}finally{try{h&&!h.done&&(r=u.return)&&r.call(u)}finally{if(n)throw n.error}}c.push("}");var m=c.join("\n");s.insertRule(m)},e}(),Sn=new Cn;function En(e,t){void 0===t&&(t=0);var n=e.indexOf("var(",t);if(n>=0){var r=Je(e,n+3);return r?{start:n,end:r.end}:null}}function kn(e){var t,n=[],r=0;while(t=En(e,r)){var i=t.start,o=t.end;n.push({start:i,end:o,value:e.substring(i,o)}),r=t.end+1}return n}function On(e,t){var n=kn(e),r=n.length;if(0===r)return e;var i=e.length,o=n.map(function(e){return t(e.value)}),a=[];a.push(e.substring(0,n[0].start));for(var s=0;s=0?(t=e.substring(4,r).trim(),n=e.substring(r+1,e.length-1).trim()):(t=e.substring(4,e.length-1).trim(),n=""),{name:t,fallback:n}}function An(e,t,n){var r=function(e){var r,i=Tn(e),o=i.name,a=i.fallback,s=t(o);return a?(r=Nn(a)?An(a,t,n):n?n(a):a,"var("+s+", "+r+")"):"var("+s+")"};return On(e,r)}function Mn(e,t){An(e,function(e){return t(e),e})}function Pn(e){return"--darkreader-bg"+e}function Rn(e){return"--darkreader-text"+e}function Ln(e){return"--darkreader-border"+e}function Dn(e){return"--darkreader-bgimg"+e}function jn(e){return e.startsWith("--")}function Nn(e){return e.includes("var(")}function In(e){return e.match(/^\s*(rgb|hsl)a?\(/)}function $n(e,t){var n=ln(e);return n?bt(n,t):e}function Fn(e,t){var n=ln(e);return n?St(n,t):e}function Vn(e,t){var n=ln(e);return n?kt(n,t):e}function Bn(e,t,n){void 0===n&&(n=new Set);var r=!1,i=function(e){var i=Tn(e),o=i.name,a=i.fallback;if(n.has(o))return r=!0,null;n.add(o);var s=t.get(o)||a,l=null;return s&&(l=Nn(s)?Bn(s,t,n):s),l||(r=!0,null)},o=On(e,i);return r?null:o}var Wn={"background-color":{customProp:"--darkreader-inline-bgcolor",cssProp:"background-color",dataAttr:"data-darkreader-inline-bgcolor"},"background-image":{customProp:"--darkreader-inline-bgimage",cssProp:"background-image",dataAttr:"data-darkreader-inline-bgimage"},"border-color":{customProp:"--darkreader-inline-border",cssProp:"border-color",dataAttr:"data-darkreader-inline-border"},"border-bottom-color":{customProp:"--darkreader-inline-border-bottom",cssProp:"border-bottom-color",dataAttr:"data-darkreader-inline-border-bottom"},"border-left-color":{customProp:"--darkreader-inline-border-left",cssProp:"border-left-color",dataAttr:"data-darkreader-inline-border-left"},"border-right-color":{customProp:"--darkreader-inline-border-right",cssProp:"border-right-color",dataAttr:"data-darkreader-inline-border-right"},"border-top-color":{customProp:"--darkreader-inline-border-top",cssProp:"border-top-color",dataAttr:"data-darkreader-inline-border-top"},"box-shadow":{customProp:"--darkreader-inline-boxshadow",cssProp:"box-shadow",dataAttr:"data-darkreader-inline-boxshadow"},color:{customProp:"--darkreader-inline-color",cssProp:"color",dataAttr:"data-darkreader-inline-color"},fill:{customProp:"--darkreader-inline-fill",cssProp:"fill",dataAttr:"data-darkreader-inline-fill"},stroke:{customProp:"--darkreader-inline-stroke",cssProp:"stroke",dataAttr:"data-darkreader-inline-stroke"},"outline-color":{customProp:"--darkreader-inline-outline",cssProp:"outline-color",dataAttr:"data-darkreader-inline-outline"},"stop-color":{customProp:"--darkreader-inline-stopcolor",cssProp:"stop-color",dataAttr:"data-darkreader-inline-stopcolor"}},Hn=Object.values(Wn),zn={};Hn.forEach(function(e){var t=e.cssProp,n=e.customProp;return zn[n]=t});var Un=["style","fill","stop-color","stroke","bgcolor","color"],qn=Un.map(function(e){return"["+e+"]"}).join(", ");function Kn(){return Hn.map(function(e){var t=e.dataAttr,n=e.customProp,r=e.cssProp;return["["+t+"] {"," "+r+": var("+n+") !important;","}"].join("\n")}).join("\n")}function Gn(e){var t=[];return e instanceof Element&&e.matches(qn)&&t.push(e),(e instanceof Element||g&&e instanceof ShadowRoot||e instanceof Document)&&N(t,e.querySelectorAll(qn)),t}var Yn=new Map,Xn=new Map;function Qn(e,t){Zn(document,e,t),U(document.documentElement,function(n){Zn(n.shadowRoot,e,t)})}function Zn(e,t,n){Yn.has(e)&&(Yn.get(e).disconnect(),Xn.get(e).disconnect());var r=new WeakSet;function i(e){Gn(e).forEach(function(e){r.has(e)||(r.add(e),t(e))}),U(e,function(i){r.has(e)||(r.add(e),n(i.shadowRoot),Zn(i.shadowRoot,t,n))})}var s=se(e,{onMinorMutations:function(e){var t=e.additions;t.forEach(function(e){return i(e)})},onHugeMutations:function(){i(e)}});Yn.set(e,s);var l=0,c=null,u=W({seconds:10}),h=W({seconds:2}),d=50,f=[],p=null,m=V(function(e){e.forEach(function(e){Un.includes(e.attributeName)&&t(e.target)})}),g=new MutationObserver(function(e){if(p)f.push.apply(f,a([],o(e)));else{l++;var t=Date.now();if(null==c)c=t;else if(l>=d){if(t-c0&&rr(e,n))o.forEach(function(t){e.removeAttribute(Wn[t].dataAttr)});else{if(e.hasAttribute("bgcolor")){var a=e.getAttribute("bgcolor");(a.match(/^[0-9a-f]{3}$/i)||a.match(/^[0-9a-f]{6}$/i))&&(a="#"+a),u("background-color","background-color",a)}if(e.hasAttribute("color")&&"mask-icon"!==e.rel){a=e.getAttribute("color");(a.match(/^[0-9a-f]{3}$/i)||a.match(/^[0-9a-f]{6}$/i))&&(a="#"+a),u("color","color",a)}if(e instanceof SVGElement){if(e.hasAttribute("fill")){var s=32,l=e.getAttribute("fill");if("none"!==l)if(e instanceof SVGTextElement)u("fill","color",l);else{var c=function(){var t=e.getBoundingClientRect(),n=t.width,r=t.height,i=n>s||r>s;u("fill",i?"background-color":"color",l)};X()?c():Z(c)}}e.hasAttribute("stop-color")&&u("stop-color","background-color",e.getAttribute("stop-color"))}if(e.hasAttribute("stroke")){a=e.getAttribute("stroke");u("stroke",e instanceof SVGLineElement||e instanceof SVGTextElement?"border-color":"color",a)}e.style&&me(e.style,function(t,n){if("background-image"!==t||!n.includes("url"))if(Wn.hasOwnProperty(t))u(t,t,n);else{var r=zn[t];!r||e.style.getPropertyValue(r)||e.hasAttribute(r)||e.style.setProperty(t,"")}}),e.style&&e instanceof SVGTextElement&&e.style.fill&&u("fill","color",e.style.getPropertyValue("fill")),j(o,function(t){e.removeAttribute(Wn[t].dataAttr)}),er.set(e,nr(e,t))}}function u(n,i,a){var s=Wn[n],l=s.customProp,c=s.dataAttr,u=Zt(i,a,{},Sn,r,null);if(u){var h=u.value;"function"===typeof h&&(h=h(t)),e.style.setProperty(l,h),e.hasAttribute(c)||e.setAttribute(c,""),o.delete(n)}}}var or="theme-color",ar='meta[name="'+or+'"]',sr=null,lr=null;function cr(e,t){sr=sr||e.content;try{var n=De(sr);e.content=bt(n,t)}catch(e){F(e)}}function ur(e){var t=document.querySelector(ar);t?cr(t,e):(lr&&lr.disconnect(),lr=new MutationObserver(function(t){e:for(var n=0;n0){var s=e.parentRule;a={selector:e.selectorText,declarations:o,parentRule:s},w.push(a)}n.set(r,a)}else w.push(n.get(r))},function(){s=!0}),v.forEach(function(e){t.delete(e),n.delete(e)}),i=y,f||g||b){e++;var x=new Map,_=new Map,C=0,S=0,E={rule:null,rules:[],isGroup:!0},k=new WeakMap;r.forEach(function(e){return e()}),r.clear(),w.filter(function(e){return e}).forEach(function(t){var n=t.selector,i=t.declarations,s=t.parentRule,l=A(s),c={selector:n,declarations:[],isGroup:!1},u=c.declarations;function d(t,n,r,i){var o=++C,a={property:t,value:null,important:r,asyncKey:o,sourceValue:i};u.push(a);var s=e;n.then(function(t){t&&!m()&&s===e&&(a.value=t,pr.add(function(){m()||s!==e||P(o)}))})}function f(t,n,i,s){var l=n,c=l.declarations,h=l.onTypeChange,f=++S,p=e,g=u.length,v=[];if(0===c.length){var y={property:t,value:s,important:i,sourceValue:s,varKey:f};u.push(y),v=[y]}c.forEach(function(e){if(e.value instanceof Promise)d(e.property,e.value,i,s);else{var t={property:e.property,value:e.value,important:i,sourceValue:s,varKey:f};u.push(t),v.push(t)}}),h.addListener(function(t){if(!m()&&p===e){var n=t.map(function(e){return{property:e.property,value:e.value,important:i,sourceValue:s,varKey:f}}),r=u.indexOf(v[0],g);u.splice.apply(u,a([r,v.length],o(n))),v=n,R(f)}}),r.add(function(){return h.removeListeners()})}l.rules.push(c),i.forEach(function(e){var t=e.property,n=e.value,r=e.important,i=e.sourceValue;if("function"===typeof n){var o=n(h);o instanceof Promise?d(t,o,r,i):t.startsWith("--")?f(t,o,r,i):u.push({property:t,value:o,important:r,sourceValue:i})}else u.push({property:t,value:n,important:r,sourceValue:i})})});var O=p();M()}function T(e,t,n){var r=n.selector,i=n.declarations,o=function(e){var t=e.property,n=e.value,r=e.important,i=e.sourceValue;return t+": "+(null==n?i:n)+(r?" !important":"")+";"},a=r+" { "+i.map(o).join(" ")+" }";e.insertRule(a,t)}function A(e){if(null==e)return E;if(k.has(e))return k.get(e);var t={rule:e,rules:[],isGroup:!0};k.set(e,t);var n=A(e.parentRule);return n.rules.push(t),t}function M(){function e(e,t){var n=e.rule;if(n instanceof CSSMediaRule){var r=n.media,i=t.cssRules.length;return t.insertRule("@media "+r.mediaText+" {}",i),t.cssRules[i]}return t}function t(n,r,i){n.rules.forEach(function(n){if(n.isGroup){var o=e(n,r);t(n,o,i)}else i(n,r)})}t(E,O,function(e,t){var n=t.cssRules.length;e.declarations.forEach(function(r){var i=r.asyncKey,o=r.varKey;null!=i&&x.set(i,{rule:e,target:t,index:n}),null!=o&&_.set(o,{rule:e,target:t,index:n})}),T(t,n,e)})}function P(e){var t=x.get(e),n=t.rule,r=t.target,i=t.index;r.deleteRule(i),T(r,i,n),x.delete(e)}function R(e){var t=_.get(e),n=t.rule,r=t.target,i=t.index;r.deleteRule(i),T(r,i,n)}}return{modifySheet:u,shouldRebuildStyle:c}}var gr='style, link[rel*="stylesheet" i]:not([disabled])';function vr(e){return(e instanceof HTMLStyleElement||e instanceof SVGStyleElement||e instanceof HTMLLinkElement&&e.rel&&e.rel.toLowerCase().includes("stylesheet")&&!e.disabled)&&!e.classList.contains("darkreader")&&"print"!==e.media.toLowerCase()&&!e.classList.contains("stylus")}function yr(e,t,n){return void 0===t&&(t=[]),void 0===n&&(n=!0),vr(e)?t.push(e):(e instanceof Element||g&&e instanceof ShadowRoot||e===document)&&(j(e.querySelectorAll(gr),function(e){return yr(e,t,!1)}),n&&U(e,function(e){return yr(e.shadowRoot,t,!1)})),t}var br=new WeakSet,wr=new WeakSet,xr=!1;document.addEventListener("__darkreader__inlineScriptsAllowed",function(){xr=!0});var _r=0,Cr=new Map;function Sr(){Cr.clear()}function Er(e,t){var i=t.update,a=t.loadingStart,s=t.loadingEnd,l=[],c=e;while((c=c.nextElementSibling)&&c.matches(".darkreader"))l.push(c);var d=l.find(function(e){return e.matches(".darkreader--cors")&&!wr.has(e)})||null,p=l.find(function(e){return e.matches(".darkreader--sync")&&!br.has(e)})||null,m=null,g=null,v=!1,y=!0,b=mr(),w=new MutationObserver(function(){i()}),x={attributes:!0,childList:!0,subtree:!0,characterData:!0};function _(){return e instanceof HTMLStyleElement&&e.textContent.trim().match(ve)}function C(e){var t=!1;if(e){var n=void 0;e:for(var r=0,i=e.length;r=0;t--)e.deleteRule(t);return g?g.run():g=z(p,"prev-sibling",function(){R=!0,o()}),p.sheet}function o(){var o=R;R=!1,b.modifySheet({prepareSheet:r,sourceCSSRules:n,theme:e,ignoreImageAnalysis:t,force:o,isAsyncCancelled:function(){return v}}),y=0===p.sheet.cssRules.length,b.shouldRebuildStyle()&&Z(function(){return i()})}n&&(v=!1,o())}function D(){try{return null==e.sheet?[null,null]:[e.sheet.cssRules,null]}catch(e){return[null,e]}}function j(e){return e&&e.message&&e.message.includes("loading")}function N(){var e=o(D(),2),t=e[0],n=e[1];return n?(F(n),null):t}function I(){X(),h||xr&&e.sheet||q()}var V=null,B=null;function W(){var e=N();return e?e.length:null}function U(){return W()!==V}function q(){V=W(),K();var t=function(){U()&&(V=W(),i()),xr&&e.sheet?K():B=requestAnimationFrame(t)};t()}function K(){cancelAnimationFrame(B)}var G=!1;function Y(){function e(){G=!1,v||i()}xr=!0,K(),G||(G=!0,"function"===typeof queueMicrotask?queueMicrotask(e):requestAnimationFrame(e))}function X(){e.addEventListener("__darkreader__updateSheet",Y)}function Q(){e.removeEventListener("__darkreader__updateSheet",Y)}function J(){Q(),K()}function ee(){w.disconnect(),v=!0,m&&m.stop(),g&&g.stop(),J()}function te(){if(ee(),H(d),H(p),s(),Cr.has(A)){var e=Cr.get(A);Cr.delete(A),e&&e()}}function ne(){w.observe(e,x),e instanceof HTMLStyleElement&&I()}var re=10,ie=0;function oe(){p&&(ie++,ie>re?F("Style sheet was moved multiple times",e):(F("Restore style",p,e),E(),m&&m.skip(),g&&g.skip(),y||(R=!0,i())))}return{details:P,render:L,pause:ee,destroy:te,watch:ne,restore:oe}}function kr(e,t){return n(this,void 0,void 0,function(){return r(this,function(n){return[2,new Promise(function(n,r){var i=function(){e.removeEventListener("load",o),e.removeEventListener("error",a),Cr.delete(t)},o=function(){i(),$("Linkelement "+t+" has been loaded"),n()},a=function(){i(),r("Linkelement "+t+" couldn't be loaded. "+e.href)};Cr.set(t,function(){i(),r()}),e.addEventListener("load",o),e.addEventListener("error",a),e.href||a()})]})})}function Or(e){return ye(e.substring(7).trim().replace(/;$/,""))}function Tr(e){return n(this,void 0,void 0,function(){return r(this,function(t){switch(t.label){case 0:return e.startsWith("data:")?[4,fetch(e)]:[3,3];case 1:return[4,t.sent().text()];case 2:return[2,t.sent()];case 3:return[4,Nt({url:e,responseType:"text",mimeType:"text/css",origin:window.location.origin})];case 4:return[2,t.sent()]}})})}function Ar(e,t,o){return void 0===o&&(o=new Map),n(this,void 0,void 0,function(){var n,a,s,l,c,u,h,d,f,p,m;return r(this,function(r){switch(r.label){case 0:e=_e(e),e=Se(e),e=we(e,t),n=Qe(ve,e),r.label=1;case 1:r.trys.push([1,10,11,12]),a=i(n),s=a.next(),r.label=2;case 2:return s.done?[3,9]:(l=s.value,c=Or(l),u=he(t,c),h=void 0,o.has(u)?(h=o.get(u),[3,7]):[3,3]);case 3:return r.trys.push([3,6,,7]),[4,Tr(u)];case 4:return h=r.sent(),o.set(u,h),[4,Ar(h,be(u),o)];case 5:return h=r.sent(),[3,7];case 6:return d=r.sent(),F(d),h="",[3,7];case 7:e=e.split(l).join(h),r.label=8;case 8:return s=a.next(),[3,2];case 9:return[3,12];case 10:return f=r.sent(),p={error:f},[3,12];case 11:try{s&&!s.done&&(m=a.return)&&m.call(a)}finally{if(p)throw p.error}return[7];case 12:return e=e.trim(),[2,e]}})})}function Mr(e,t){if(!t)return null;var n=document.createElement("style");return n.classList.add("darkreader"),n.classList.add("darkreader--cors"),n.media="screen",n.textContent=t,e.parentNode.insertBefore(n,e.nextSibling),n.sheet.disabled=!0,wr.add(n),n}var Pr,Rr,Lr=[],Dr=new Map;function jr(e){y&&j(e.querySelectorAll(":not(:defined)"),function(e){var t=e.tagName.toLowerCase();if(!t.includes("-")){var n=e.getAttribute("is");if(!n)return;t=n}Dr.has(t)||(Dr.set(t,new Set),Fr(t).then(function(){if(Rr){var e=Dr.get(t);Dr.delete(t),Rr(Array.from(e))}})),Dr.get(t).add(e)})}var Nr=!1;document.addEventListener("__darkreader__inlineScriptsAllowed",function(){Nr=!0});var Ir=new Map;function $r(e){if(Nr=!0,Ir.has(e.detail.tag)){var t=Ir.get(e.detail.tag);t()}}function Fr(e){return n(this,void 0,void 0,function(){return r(this,function(t){return[2,new Promise(function(t){if(window.customElements&&"function"===typeof customElements.whenDefined)customElements.whenDefined(e).then(t);else if(Nr)Ir.set(e,t),document.dispatchEvent(new CustomEvent("__darkreader__addUndefinedResolver",{detail:{tag:e}}));else{var n=function(){var r=Dr.get(e);r&&r.size>0&&(r.values().next().value.matches(":defined")?t():requestAnimationFrame(n))};requestAnimationFrame(n)}})]})})}function Vr(e){Rr=e}function Br(){Rr=null,Dr.clear(),document.removeEventListener("__darkreader__isDefined",$r)}function Wr(e,t,n){zr();var r=new Set(e),i=new WeakMap,o=new WeakMap;function a(e){i.set(e,e.previousElementSibling),o.set(e,e.nextElementSibling)}function s(e){i.delete(e),o.delete(e)}function l(e){return e.previousElementSibling!==i.get(e)||e.nextElementSibling!==o.get(e)}function c(e){var n=e.createdStyles,i=e.removedStyles,o=e.movedStyles;n.forEach(function(e){return a(e)}),o.forEach(function(e){return a(e)}),i.forEach(function(e){return s(e)}),n.forEach(function(e){return r.add(e)}),i.forEach(function(e){return r.delete(e)}),n.size+i.size+o.size>0&&t({created:Array.from(n),removed:Array.from(i),moved:Array.from(o),updated:[]})}function u(e){var t=e.additions,n=e.moves,r=e.deletions,i=new Set,o=new Set,a=new Set;t.forEach(function(e){return yr(e).forEach(function(e){return i.add(e)})}),r.forEach(function(e){return yr(e).forEach(function(e){return o.add(e)})}),n.forEach(function(e){return yr(e).forEach(function(e){return a.add(e)})}),c({createdStyles:i,removedStyles:o,movedStyles:a}),t.forEach(function(e){U(e,p),jr(e)})}function h(e){var t=new Set(yr(e)),n=new Set,i=new Set,o=new Set;t.forEach(function(e){r.has(e)||n.add(e)}),r.forEach(function(e){t.has(e)||i.add(e)}),t.forEach(function(e){n.has(e)||i.has(e)||!l(e)||o.add(e)}),c({createdStyles:n,removedStyles:i,movedStyles:o}),U(e,p),jr(e)}function d(e){var n=new Set,r=new Set;e.forEach(function(e){var t=e.target;t.isConnected&&(vr(t)?n.add(t):t instanceof HTMLLinkElement&&t.disabled&&r.add(t))}),n.size+r.size>0&&t({updated:Array.from(n),created:[],removed:Array.from(r),moved:[]})}function f(e){var t=se(e,{onMinorMutations:u,onHugeMutations:h}),n=new MutationObserver(d);n.observe(e,{attributes:!0,attributeFilter:["rel","disabled","media"],subtree:!0}),Lr.push(t,n),Pr.add(e)}function p(e){var t=e.shadowRoot;null==t||Pr.has(t)||(f(t),n(t))}e.forEach(a),f(document),U(document.documentElement,p),Vr(function(e){var n=[];e.forEach(function(e){return N(n,yr(e.shadowRoot))}),t({created:n,updated:[],removed:[],moved:[]}),e.forEach(function(e){var t=e.shadowRoot;null!=t&&(p(e),U(t,p),jr(t))})}),document.addEventListener("__darkreader__isDefined",$r),jr(document)}function Hr(){Lr.forEach(function(e){return e.disconnect()}),Lr.splice(0,Lr.length),Pr=new WeakSet}function zr(){Hr(),Br()}function Ur(e){return(e<16?"0":"")+e.toString(16)}function qr(){if("randomUUID"in crypto){var e=crypto.randomUUID();return e.substring(0,8)+e.substring(9,13)+e.substring(14,18)+e.substring(19,23)+e.substring(24)}return Array.from(crypto.getRandomValues(new Uint8Array(16))).map(function(e){return Ur(e)}).join("")}var Kr=new WeakMap,Gr=new WeakSet;function Yr(e){var t=!1;function n(t,n){var r=a([],o(e.adoptedStyleSheets)),i=r.indexOf(t),s=r.indexOf(n);i!==s-1&&(s>=0&&r.splice(s,1),r.splice(i+1,0,n),e.adoptedStyleSheets=r)}function r(){t=!0;var n=a([],o(e.adoptedStyleSheets));e.adoptedStyleSheets.forEach(function(e){if(Gr.has(e)){var t=n.indexOf(e);t>=0&&n.splice(t,1),Kr.delete(e),Gr.delete(e)}}),e.adoptedStyleSheets=n}function i(r,i){e.adoptedStyleSheets.forEach(function(e){if(!Gr.has(e)){var o=e.rules,a=new CSSStyleSheet,s=mr();s.modifySheet({prepareSheet:l,sourceCSSRules:o,theme:r,ignoreImageAnalysis:i,force:!1,isAsyncCancelled:function(){return t}})}function l(){for(var t=a.cssRules.length-1;t>=0;t--)a.deleteRule(t);return n(e,a),Kr.set(e,a),Gr.add(a),a}})}return{render:i,destroy:r}}function Xr(){document.dispatchEvent(new CustomEvent("__darkreader__inlineScriptsAllowed"));var e=Object.getOwnPropertyDescriptor(CSSStyleSheet.prototype,"addRule"),t=Object.getOwnPropertyDescriptor(CSSStyleSheet.prototype,"insertRule"),n=Object.getOwnPropertyDescriptor(CSSStyleSheet.prototype,"deleteRule"),r=Object.getOwnPropertyDescriptor(CSSStyleSheet.prototype,"removeRule"),i=Object.getOwnPropertyDescriptor(Document.prototype,"styleSheets"),s=location.hostname.endsWith("baidu.com"),l=s?Object.getOwnPropertyDescriptor(Element.prototype,"getElementsByTagName"):null,c=function(){Object.defineProperty(CSSStyleSheet.prototype,"addRule",e),Object.defineProperty(CSSStyleSheet.prototype,"insertRule",t),Object.defineProperty(CSSStyleSheet.prototype,"deleteRule",n),Object.defineProperty(CSSStyleSheet.prototype,"removeRule",r),document.removeEventListener("__darkreader__cleanUp",c),document.removeEventListener("__darkreader__addUndefinedResolver",u),Object.defineProperty(Document.prototype,"styleSheets",i),s&&Object.defineProperty(Element.prototype,"getElementsByTagName",l)},u=function(e){customElements.whenDefined(e.detail.tag).then(function(){document.dispatchEvent(new CustomEvent("__darkreader__isDefined",{detail:{tag:e.detail.tag}}))})};document.addEventListener("__darkreader__cleanUp",c),document.addEventListener("__darkreader__addUndefinedResolver",u);var h=new Event("__darkreader__updateSheet");function d(t,n,r){return e.value.call(this,t,n,r),this.ownerNode&&!this.ownerNode.classList.contains("darkreader")&&this.ownerNode.dispatchEvent(h),-1}function f(e,n){var r=t.value.call(this,e,n);return this.ownerNode&&!this.ownerNode.classList.contains("darkreader")&&this.ownerNode.dispatchEvent(h),r}function p(e){n.value.call(this,e),this.ownerNode&&!this.ownerNode.classList.contains("darkreader")&&this.ownerNode.dispatchEvent(h)}function m(e){r.value.call(this,e),this.ownerNode&&!this.ownerNode.classList.contains("darkreader")&&this.ownerNode.dispatchEvent(h)}function g(){var e=i.get.call(this),t=a([],o(e)).filter(function(e){return!e.ownerNode.classList.contains("darkreader")});return Object.setPrototypeOf(t,StyleSheetList.prototype)}function v(e){var t=this,n=function(){var n=l.value.call(t,e);return"style"===e&&(n=Object.setPrototypeOf(a([],o(n)).filter(function(e){return!e.classList.contains("darkreader")}),NodeList.prototype)),n},r=n(),i={get:function(e,t){return n()[t]}};return r=new Proxy(r,i),r}Object.defineProperty(CSSStyleSheet.prototype,"addRule",Object.assign({},e,{value:d})),Object.defineProperty(CSSStyleSheet.prototype,"insertRule",Object.assign({},t,{value:f})),Object.defineProperty(CSSStyleSheet.prototype,"deleteRule",Object.assign({},n,{value:p})),Object.defineProperty(CSSStyleSheet.prototype,"removeRule",Object.assign({},r,{value:m})),Object.defineProperty(Document.prototype,"styleSheets",Object.assign({},i,{get:g})),s&&Object.defineProperty(Element.prototype,"getElementsByTagName",Object.assign({},l,{value:v}))}var Qr=qr(),Zr=new Map,Jr=[],ei=null,ti=null,ni=null,ri=null,ii=null;function oi(e,t){void 0===t&&(t=document.head||document);var n=t.querySelector("."+e);return n||(n=document.createElement("style"),n.classList.add("darkreader"),n.classList.add(e),n.media="screen",n.textContent=""),n}function ai(e,t){void 0===t&&(t=document.head||document);var n=t.querySelector("."+e);return n||(n=document.createElement("script"),n.classList.add("darkreader"),n.classList.add(e)),n}var si=new Map;function li(e,t){si.has(t)&&si.get(t).stop(),si.set(t,z(e,"parent"))}function ci(){j(si.values(),function(e){return e.stop()}),si.clear()}function ui(){var e=oi("darkreader--fallback",document);e.textContent=rn(ei,{strict:!0}),document.head.insertBefore(e,document.head.firstChild),li(e,"fallback");var n=oi("darkreader--user-agent");n.textContent=Jt(ei,ni,ei.styleSystemControls),document.head.insertBefore(n,e.nextSibling),li(n,"user-agent");var r=oi("darkreader--text");ei.useFont||ei.textStroke>0?r.textContent=At(ei):r.textContent="",document.head.insertBefore(r,e.nextSibling),li(r,"text");var i=oi("darkreader--invert");ti&&Array.isArray(ti.invert)&&ti.invert.length>0?i.textContent=[ti.invert.join(", ")+" {"," filter: "+Mt(t(t({},ei),{contrast:0===ei.mode?ei.contrast:Ye(ei.contrast-10,0,100)}))+" !important;","}"].join("\n"):i.textContent="",document.head.insertBefore(i,r.nextSibling),li(i,"invert");var o=oi("darkreader--inline");o.textContent=Kn(),document.head.insertBefore(o,i.nextSibling),li(o,"inline");var a=oi("darkreader--override");a.textContent=ti&&ti.css?fi(ti.css):"",document.head.appendChild(a),li(a,"override");var s=oi("darkreader--variables"),l=en(ei),c=ei.darkSchemeBackgroundColor,u=ei.darkSchemeTextColor,h=ei.lightSchemeBackgroundColor,d=ei.lightSchemeTextColor,f=ei.mode,p=0===f?h:c,m=0===f?d:u;p=bt(De(p),ei),m=St(De(m),ei),s.textContent=[":root {"," --darkreader-neutral-background: "+p+";"," --darkreader-neutral-text: "+m+";"," --darkreader-selection-background: "+l.backgroundColorSelection+";"," --darkreader-selection-text: "+l.foregroundColorSelection+";","}"].join("\n"),document.head.insertBefore(s,o.nextSibling),li(s,"variables");var g=oi("darkreader--root-vars");document.head.insertBefore(g,s.nextSibling);var v=ai("darkreader--proxy");v.append("("+Xr+")()"),document.head.insertBefore(v,g.nextSibling),v.remove()}var hi=new Set;function di(e){var n=oi("darkreader--inline",e);n.textContent=Kn(),e.insertBefore(n,e.firstChild);var r=oi("darkreader--override",e);r.textContent=ti&&ti.css?fi(ti.css):"",e.insertBefore(r,n.nextSibling);var i=oi("darkreader--invert",e);ti&&Array.isArray(ti.invert)&&ti.invert.length>0?i.textContent=[ti.invert.join(", ")+" {"," filter: "+Mt(t(t({},ei),{contrast:0===ei.mode?ei.contrast:Ye(ei.contrast-10,0,100)}))+" !important;","}"].join("\n"):i.textContent="",e.insertBefore(i,r.nextSibling),hi.add(e)}function fi(e){return e.replace(/\${(.+?)}/g,function(e,t){var n=ln(t);return n?pt(n,ei):(F("Couldn't parse CSSTemplate's color."),t)})}function pi(){var e=document.querySelector(".darkreader--fallback");e&&(e.textContent="")}function mi(){xi();var e=yr(document),t=e.filter(function(e){return!Zr.has(e)}).map(function(e){return yi(e)});t.map(function(e){return e.details()}).filter(function(e){return e&&e.rules.length>0}).forEach(function(e){Sn.addRulesForMatching(e.rules)}),Sn.matchVariablesAndDependants(),Sn.setOnRootVariableChange(function(){Sn.putRootVars(document.head.querySelector(".darkreader--root-vars"),ei)}),Sn.putRootVars(document.head.querySelector(".darkreader--root-vars"),ei),Zr.forEach(function(e){return e.render(ei,ri)}),0===vi.size&&pi(),t.forEach(function(e){return e.watch()});var n=I(document.querySelectorAll(qn));U(document.documentElement,function(e){di(e.shadowRoot);var t=e.shadowRoot.querySelectorAll(qn);t.length>0&&N(n,t)}),n.forEach(function(e){return ir(e,ei,ii,ri)}),Ti(document)}var gi=0,vi=new Set;function yi(e){var t=++gi;function n(){if(!q()||!Si){vi.add(t),$("Current amount of styles loading: "+vi.size);var e=document.querySelector(".darkreader--fallback");e.textContent||(e.textContent=rn(ei,{strict:!1}))}}function r(){vi.delete(t),$("Removed loadingStyle "+t+", now awaiting: "+vi.size),$("To-do to be loaded",vi),0===vi.size&&q()&&pi()}function i(){var e=o.details();e&&(Sn.addRulesForMatching(e.rules),Sn.matchVariablesAndDependants(),o.render(ei,ri))}$("New manager for element, with loadingStyleID "+t,e);var o=Er(e,{update:i,loadingStart:n,loadingEnd:r});return Zr.set(e,o),o}function bi(e){var t=Zr.get(e);t&&(t.destroy(),Zr.delete(e))}var wi=V(function(e){Zr.forEach(function(e){return e.render(ei,ri)}),Jr.forEach(function(e){return e.render(ei,ri)}),e&&e()}),xi=function(){wi.cancel()};function _i(){0!==vi.size?F("DOM is ready, but still have styles being loaded.",vi):pi()}var Ci=null,Si=!document.hidden;function Ei(e){var t=Boolean(Ci);Ci=function(){document.hidden||(ki(),e(),Si=!0)},t||document.addEventListener("visibilitychange",Ci)}function ki(){document.removeEventListener("visibilitychange",Ci),Ci=null}function Oi(){function e(){mi(),Ai()}ui(),document.hidden?Ei(e):e(),ur(ei)}function Ti(e){if(Array.isArray(e.adoptedStyleSheets)&&e.adoptedStyleSheets.length>0){var t=Yr(e);Jr.push(t),t.render(ei,ri)}}function Ai(){var e=Array.from(Zr.keys());Wr(e,function(e){var t=e.created,n=e.updated,r=e.removed,i=e.moved,o=r,a=t.concat(n).concat(i).filter(function(e){return!Zr.has(e)}),s=i.filter(function(e){return Zr.has(e)});$("Styles to be removed:",o),o.forEach(function(e){return bi(e)});var l=a.map(function(e){return yi(e)});l.map(function(e){return e.details()}).filter(function(e){return e&&e.rules.length>0}).forEach(function(e){Sn.addRulesForMatching(e.rules)}),Sn.matchVariablesAndDependants(),l.forEach(function(e){return e.render(ei,ri)}),l.forEach(function(e){return e.watch()}),s.forEach(function(e){return Zr.get(e).restore()})},function(e){di(e),Ti(e)}),Qn(function(e){if(ir(e,ei,ii,ri),e===document.documentElement){var t=e.getAttribute("style");t.includes("--")&&(Sn.matchVariablesAndDependants(),Sn.putRootVars(document.head.querySelector(".darkreader--root-vars"),ei))}},function(e){di(e);var t=e.querySelectorAll(qn);t.length>0&&j(t,function(e){return ir(e,ei,ii,ri)})}),G(_i)}function Mi(){Zr.forEach(function(e){return e.pause()}),ci(),zr(),Jn(),Y(_i),J()}function Pi(){var e=document.createElement("meta");e.name="darkreader",e.content=Qr,document.head.appendChild(e)}function Ri(){var e=document.querySelector('meta[name="darkreader"]');return e?e.content!==Qr:(Pi(),!1)}function Li(e,t,n){if(ei=e,ti=t,ti?(ri=Array.isArray(ti.ignoreImageAnalysis)?ti.ignoreImageAnalysis:[],ii=Array.isArray(ti.ignoreInlineStyle)?ti.ignoreInlineStyle:[]):(ri=[],ii=[]),ni=n,document.head){if(Ri())return;document.documentElement.setAttribute("data-darkreader-mode","dynamic"),document.documentElement.setAttribute("data-darkreader-scheme",ei.mode?"dark":"dimmed"),Oi()}else{if(!d){var r=oi("darkreader--fallback");document.documentElement.appendChild(r),r.textContent=rn(ei,{strict:!0})}var i=new MutationObserver(function(){if(document.head){if(i.disconnect(),Ri())return void ji();Oi()}});i.observe(document,{childList:!0,subtree:!0})}}function Di(){document.dispatchEvent(new CustomEvent("__darkreader__cleanUp")),H(document.head.querySelector(".darkreader--proxy"))}function ji(){document.documentElement.removeAttribute("data-darkreader-mode"),document.documentElement.removeAttribute("data-darkreader-scheme"),Ni(),H(document.querySelector(".darkreader--fallback")),document.head&&(hr(),H(document.head.querySelector(".darkreader--user-agent")),H(document.head.querySelector(".darkreader--text")),H(document.head.querySelector(".darkreader--invert")),H(document.head.querySelector(".darkreader--inline")),H(document.head.querySelector(".darkreader--override")),H(document.head.querySelector(".darkreader--variables")),H(document.head.querySelector(".darkreader--root-vars")),H(document.head.querySelector('meta[name="darkreader"]')),Di()),hi.forEach(function(e){H(e.querySelector(".darkreader--inline")),H(e.querySelector(".darkreader--override"))}),hi.clear(),j(Zr.keys(),function(e){return bi(e)}),vi.clear(),Sr(),j(document.querySelectorAll(".darkreader"),H),Jr.forEach(function(e){e.destroy()}),Jr.splice(0)}function Ni(){Sn.clear(),le.clear(),ki(),xi(),Mi(),yn()}var Ii=/url\(\"(blob\:.*?)\"\)/g;function $i(e){return n(this,void 0,void 0,function(){var t,n;return r(this,function(r){switch(r.label){case 0:return t=[],Qe(Ii,e,1).forEach(function(e){var n=w(e);t.push(n)}),[4,Promise.all(t)];case 1:return n=r.sent(),[2,e.replace(Ii,function(){return'url("'+n.shift()+'")'})]}})})}var Fi='/*\n _______\n / \\\n .==. .==.\n (( ))==(( ))\n / "==" "=="\\\n /____|| || ||___\\\n ________ ____ ________ ___ ___\n | ___ \\ / \\ | ___ \\ | | / /\n | | \\ \\ / /\\ \\ | | \\ \\| |_/ /\n | | ) / /__\\ \\ | |__/ /| ___ \\\n | |__/ / ______ \\| ____ \\| | \\ \\\n_______|_______/__/ ____ \\__\\__|___\\__\\__|___\\__\\____\n| ___ \\ | ____/ / \\ | ___ \\ | ____| ___ \\\n| | \\ \\| |___ / /\\ \\ | | \\ \\| |___| | \\ \\\n| |__/ /| ____/ /__\\ \\ | | ) | ____| |__/ /\n| ____ \\| |__/ ______ \\| |__/ /| |___| ____ \\\n|__| \\__\\____/__/ \\__\\_______/ |______|__| \\__\\\n https://darkreader.org\n*/\n\n/*! Dark reader generated CSS | Licensed under MIT https://github.com/darkreader/darkreader/blob/master/LICENSE */\n';function Vi(){return n(this,void 0,void 0,function(){function e(e,n){var r=document.querySelector(e);r&&r.textContent&&(t.push("/* "+n+" */"),t.push(r.textContent),t.push(""))}var t,n,i,o,a;return r(this,function(r){switch(r.label){case 0:return t=[Fi],e(".darkreader--fallback","Fallback Style"),e(".darkreader--user-agent","User-Agent Style"),e(".darkreader--text","Text Style"),e(".darkreader--invert","Invert Style"),e(".darkreader--variables","Variables Style"),n=[],document.querySelectorAll(".darkreader--sync").forEach(function(e){j(e.sheet.cssRules,function(e){e&&e.cssText&&n.push(e.cssText)})}),n.length?(i=Ze(n.join("\n")),t.push("/* Modified CSS */"),a=(o=t).push,[4,$i(i)]):[3,2];case 1:a.apply(o,[r.sent()]),t.push(""),r.label=2;case 2:return e(".darkreader--override","Override Style"),[2,t.join("\n")]}})})}var Bi=!1,Wi=function(){try{return window.self!==window.top}catch(e){return console.warn(e),!0}}();function Hi(e,n){void 0===e&&(e={}),void 0===n&&(n=null);var r=t(t({},L),e);if(r.engine!==P.dynamicTheme)throw new Error("Theme engine is not supported.");Li(r,n,Wi),Bi=!0}function zi(){return Bi}function Ui(){ji(),Bi=!1}var qi=matchMedia("(prefers-color-scheme: dark)"),Ki={themeOptions:null,fixes:null};function Gi(){qi.matches?Hi(Ki.themeOptions,Ki.fixes):Ui()}function Yi(e,t){void 0===e&&(e={}),void 0===t&&(t=null),e?(Ki={themeOptions:e,fixes:t},Gi(),v?qi.addEventListener("change",Gi):qi.addListener(Gi)):(v?qi.removeEventListener("change",Gi):qi.removeListener(Gi),Ui())}function Xi(){return n(this,void 0,void 0,function(){return r(this,function(e){switch(e.label){case 0:return[4,Vi()];case 1:return[2,e.sent()]}})})}var Qi=S;e.auto=Yi,e.disable=Ui,e.enable=Hi,e.exportGeneratedCSS=Xi,e.isEnabled=zi,e.setFetchMethod=Qi,Object.defineProperty(e,"__esModule",{value:!0})})},nPnh:function(e,t,n){"use strict";n.d(t,"b",function(){return i}),n.d(t,"c",function(){return o}),n.d(t,"a",function(){return a});var r=Math.round;function i(e,t,n){if(t){var i=t.x1,o=t.x2,s=t.y1,l=t.y2;e.x1=i,e.x2=o,e.y1=s,e.y2=l;var c=n&&n.lineWidth;return c?(r(2*i)===r(2*o)&&(e.x1=e.x2=a(i,c,!0)),r(2*s)===r(2*l)&&(e.y1=e.y2=a(s,c,!0)),e):e}}function o(e,t,n){if(t){var r=t.x,i=t.y,o=t.width,s=t.height;e.x=r,e.y=i,e.width=o,e.height=s;var l=n&&n.lineWidth;return l?(e.x=a(r,l,!0),e.y=a(i,l,!0),e.width=Math.max(a(r+o,l,!1)-e.x,0===o?0:1),e.height=Math.max(a(i+s,l,!1)-e.y,0===s?0:1),e):e}}function a(e,t,n){if(!t)return e;var i=r(2*e);return(i+r(t))%2===0?i/2:(i+(n?1:-1))/2}},nWMQ:function(e,t,n){"use strict";var r=n("c0Oy"),i=n("WGNW"),o=n("rKIl"),a=n("zNw+"),s=n("+y51"),l=n("4o36"),c=n("YEVI"),u=n("u8+u"),h=n("wUWy"),d=n("cQyX"),f=n("lvAo"),p=n("QSs8");e.exports=function(e,t,n,m,g,v){var y=r[e],b=y,w=g?"set":"add",x=b&&b.prototype,_={},C=function(e){var t=x[e];o(x,e,"delete"==e?function(e){return!(v&&!u(e))&&t.call(this,0===e?0:e)}:"has"==e?function(e){return!(v&&!u(e))&&t.call(this,0===e?0:e)}:"get"==e?function(e){return v&&!u(e)?void 0:t.call(this,0===e?0:e)}:"add"==e?function(e){return t.call(this,0===e?0:e),this}:function(e,n){return t.call(this,0===e?0:e,n),this})};if("function"==typeof b&&(v||x.forEach&&!h(function(){(new b).entries().next()}))){var S=new b,E=S[w](v?{}:-0,1)!=S,k=h(function(){S.has(1)}),O=d(function(e){new b(e)}),T=!v&&h(function(){var e=new b,t=5;while(t--)e[w](t,t);return!e.has(-0)});O||(b=t(function(t,n){c(t,b,e);var r=p(new y,t,b);return void 0!=n&&l(n,g,r[w],r),r}),b.prototype=x,x.constructor=b),(k||T)&&(C("delete"),C("has"),g&&C("get")),(T||E)&&C(w),v&&x.clear&&delete x.clear}else b=m.getConstructor(t,e,g,w),a(b.prototype,n),s.NEED=!0;return f(b,e),_[e]=b,i(i.G+i.W+i.F*(b!=y),_),v||m.setStrong(b,e,g),b}},nYLq:function(e,t,n){var r=n("AUWw"),i=n("OsVd");e.exports=function(e){if(void 0===e)return 0;var t=r(e),n=i(t);if(t!==n)throw RangeError("Wrong length!");return n}},"nwK/":function(e,t,n){var r=n("V5/1").f,i=Function.prototype,o=/^\s*function ([^ (]*)/,a="name";a in i||n("8Z/V")&&r(i,a,{configurable:!0,get:function(){try{return(""+this).match(o)[1]}catch(e){return""}}})},o0o1:function(e,t,n){e.exports=n("wOl0")},o175:function(e,t,n){n("Jaki")("Uint8",1,function(e){return function(t,n,r){return e(this,t,n,r)}},!0)},o8NH:function(e,t,n){var r=n("Y7ZC");r(r.S+r.F,"Object",{assign:n("kwZ1")})},oF12:function(e,t,n){var r=n("u8+u"),i=n("2we2"),o=n("gL7N")("match");e.exports=function(e){var t;return r(e)&&(void 0!==(t=e[o])?!!t:"RegExp"==i(e))}},oVml:function(e,t,n){var r=n("5K7Z"),i=n("fpC5"),o=n("FpHa"),a=n("VVlx")("IE_PROTO"),s=function(){},l="prototype",c=function(){var e,t=n("Hsns")("iframe"),r=o.length,i="<",a=">";t.style.display="none",n("MvwC").appendChild(t),t.src="javascript:",e=t.contentWindow.document,e.open(),e.write(i+"script"+a+"document.F=Object"+i+"/script"+a),e.close(),c=e.F;while(r--)delete c[l][o[r]];return c()};e.exports=Object.create||function(e,t){var n;return null!==e?(s[l]=r(e),n=new s,s[l]=null,n[a]=e):n=c(),void 0===t?n:i(n,t)}},ohPV:function(e,t,n){"use strict";function r(e,t){e.prototype=Object.create(t.prototype),e.prototype.constructor=e,e.__proto__=t}n.d(t,"a",function(){return r})},oxo0:function(e,t){var n={}.hasOwnProperty;e.exports=function(e,t){return n.call(e,t)}},p0pE:function(e,t,n){var r=n("eHn4");function i(e){for(var t=1;t=e.length?{done:!0}:{done:!1,value:e[t++]}},e:function(e){throw e},f:n}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var r,i,o=!0,a=!1;return{s:function(){r=e[Symbol.iterator]()},n:function(){var e=r.next();return o=e.done,e},e:function(e){a=!0,i=e},f:function(){try{o||null==r.return||r.return()}finally{if(a)throw i}}}}function l(e,t,n,r,i,o,a){try{var s=e[o](a),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(r,i)}function c(e){return function(){var t=this,n=arguments;return new Promise(function(r,i){var o=e.apply(t,n);function a(e){l(o,r,i,a,s,"next",e)}function s(e){l(o,r,i,a,s,"throw",e)}a(void 0)})}}function u(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function h(e){for(var t=1;te.length)&&(t=e.length);for(var n=0,r=new Array(t);n0&&void 0!==arguments[0]?arguments[0]:{};b=[],w=e.validKeys||[]}function _(e){Object.keys(e).forEach(function(e){(0,r.default)(w.concat("default").indexOf(e)>-1,"Invalid key ".concat(e," from plugin"))}),b.push(e)}function C(e){return(0,r.default)(w.indexOf(e)>-1,"Invalid key ".concat(e)),b.filter(function(t){return e in t}).map(function(t){return t[e]})}function S(){for(var e=arguments.length,t=new Array(e),n=0;n{200===e.code&&this.setState({user:e.data,order:this.props.order})}),this.props.order.invite_user_id&&Object(E["a"])("/admin/user/getUserInfoById",{id:this.props.order.invite_user_id}).then(e=>{this.setState({invite_user:e.data})})}onShow(){this.setState({visible:!this.state.visible})}jumpUserFilter(e,t,n){this.props.dispatch({type:"user/addFilter",key:e,condition:t,value:n}),O.a.push("/user")}render(){var e={marginBottom:10};return g.a.createElement("div",null,g.a.createElement("div",{onClick:()=>this.getUserInfo()},this.props.children),g.a.createElement(x["a"],{visible:this.state.visible,title:"\u8ba2\u5355\u4fe1\u606f",onCancel:()=>this.onShow(),footer:!1},this.state.user.email?g.a.createElement("div",null,g.a.createElement(C["a"],{gutter:[16,16],style:e},g.a.createElement(S["a"],{span:6},"\u90ae\u7bb1"),g.a.createElement(S["a"],{span:18},g.a.createElement("a",{onClick:()=>this.jumpUserFilter("email","\u6a21\u7cca",this.state.user.email),href:"javascript:void(0);"},this.state.user.email))),g.a.createElement(C["a"],{gutter:[16,16],style:e},g.a.createElement(S["a"],{span:6},"\u8ba2\u5355\u53f7"),g.a.createElement(S["a"],{span:18},this.state.order.trade_no)),g.a.createElement(C["a"],{gutter:[16,16],style:e},g.a.createElement(S["a"],{span:6},"\u8ba2\u5355\u5468\u671f"),g.a.createElement(S["a"],{span:18},y["a"].periodText[this.state.order.period])),g.a.createElement(C["a"],{gutter:[16,16],style:e},g.a.createElement(S["a"],{span:6},"\u8ba2\u5355\u72b6\u6001"),g.a.createElement(S["a"],{span:18},y["a"].orderStatusText[this.state.order.status])),g.a.createElement(C["a"],{gutter:[16,16],style:e},g.a.createElement(S["a"],{span:6},"\u8ba2\u9605\u8ba1\u5212"),g.a.createElement(S["a"],{span:18},this.state.order.plan_name)),g.a.createElement(C["a"],{gutter:[16,16],style:e},g.a.createElement(S["a"],{span:6},"\u56de\u8c03\u5355\u53f7"),g.a.createElement(S["a"],{span:18},this.state.order.callback_no?this.state.order.callback_no:"-")),g.a.createElement(_["a"],null),g.a.createElement(C["a"],{gutter:[16,16],style:e},g.a.createElement(S["a"],{span:6},"\u652f\u4ed8\u91d1\u989d"),g.a.createElement(S["a"],{span:18},(this.state.order.total_amount/100).toFixed(2))),g.a.createElement(C["a"],{gutter:[16,16],style:e},g.a.createElement(S["a"],{span:6},"\u4f59\u989d\u652f\u4ed8"),g.a.createElement(S["a"],{span:18},(this.state.order.balance_amount/100).toFixed(2))),g.a.createElement(C["a"],{gutter:[16,16],style:e},g.a.createElement(S["a"],{span:6},"\u4f18\u60e0\u91d1\u989d"),g.a.createElement(S["a"],{span:18},(this.state.order.discount_amount/100).toFixed(2))),g.a.createElement(C["a"],{gutter:[16,16],style:e},g.a.createElement(S["a"],{span:6},"\u9000\u56de\u91d1\u989d"),g.a.createElement(S["a"],{span:18},(this.state.order.refund_amount/100).toFixed(2))),g.a.createElement(C["a"],{gutter:[16,16],style:e},g.a.createElement(S["a"],{span:6},"\u6298\u62b5\u91d1\u989d"),g.a.createElement(S["a"],{span:18},(this.state.order.surplus_amount/100).toFixed(2))),g.a.createElement(_["a"],null),g.a.createElement(C["a"],{gutter:[16,16],style:e},g.a.createElement(S["a"],{span:6},"\u521b\u5efa\u65f6\u95f4"),g.a.createElement(S["a"],{span:18},w()(1e3*this.state.order.created_at).format("YYYY-MM-DD HH:mm:ss"))),g.a.createElement(C["a"],{gutter:[16,16],style:e},g.a.createElement(S["a"],{span:6},"\u66f4\u65b0\u65f6\u95f4"),g.a.createElement(S["a"],{span:18},w()(1e3*this.state.order.updated_at).format("YYYY-MM-DD HH:mm:ss"))),this.state.order.invite_user_id&&3===this.state.order.status&&g.a.createElement("div",null,g.a.createElement(_["a"],null),g.a.createElement(C["a"],{gutter:[16,16],style:e},g.a.createElement(S["a"],{span:6},"\u9080\u8bf7\u4eba"),g.a.createElement(S["a"],{span:18},g.a.createElement(d["a"],{title:"\u67e5\u770bTA\u9080\u8bf7\u7684\u4eba"},g.a.createElement("a",{onClick:()=>this.jumpUserFilter("invite_by_email","\u6a21\u7cca",this.state.invite_user.email),href:"javascript:void(0);"},this.state.invite_user.email)))),g.a.createElement(C["a"],{gutter:[16,16],style:e},g.a.createElement(S["a"],{span:6},"\u4f63\u91d1\u91d1\u989d"),g.a.createElement(S["a"],{span:18},(this.state.order.commission_balance/100).toFixed(2))),g.a.createElement(C["a"],{gutter:[16,16],style:e},g.a.createElement(S["a"],{span:6},"\u4f63\u91d1\u72b6\u6001"),g.a.createElement(S["a"],{span:18},y["a"].commissionStatusText[this.state.order.commission_status])))):g.a.createElement(f["a"],{type:"loading",style:{fontSize:24,color:"#415A94"}})))}}var M=Object(T["c"])()(A),P=n("mCd/"),R=n("yiO6"),L=n("hVla");class D extends g.a.Component{constructor(e){super(e),this.state={}}componentWillUnmount(){this.props.dispatch({type:"order/empty"}),this.props.dispatch({type:"order/setState",payload:{filter:[]}})}componentDidMount(){this.props.dispatch({type:"order/fetch"}),this.props.dispatch({type:"plan/fetch"})}update(e,t,n){this.props.dispatch({type:"order/update",tradeNo:e,key:t,value:n})}tableOnChange(e){this.props.dispatch({type:"order/changeTable",pagination:e})}render(){var e=this.props.order,t=e.orders,n=e.fetchLoading,r=e.pagination,a=e.filter,m=[{title:"# \u8ba2\u5355\u53f7",dataIndex:"trade_no",key:"trade_no",render:(e,t)=>{return g.a.createElement(M,{order:t},g.a.createElement("a",{href:"javascript:void(0);"},e.substr(0,3),"...",e.substr(-3)))}},{title:"\u7c7b\u578b",dataIndex:"type",key:"type",render:e=>{var t={1:"\u65b0\u8d2d",2:"\u7eed\u8d39",3:"\u53d8\u66f4",4:"\u6d41\u91cf\u5305"};return t[e]}},{title:"\u8ba2\u9605\u8ba1\u5212",dataIndex:"plan_name",key:"plan_name"},{title:"\u5468\u671f",dataIndex:"period",key:"period",align:"center",render:(e,t)=>{return g.a.createElement(p["a"],null,y["a"].periodText[t.period])}},{title:"\u652f\u4ed8\u91d1\u989d",dataIndex:"total_amount",key:"total_amount",align:"right",render:e=>{return(e/100).toFixed(2)}},{title:g.a.createElement("span",null,g.a.createElement(d["a"],{placement:"top",title:"\u6807\u8bb0\u4e3a[\u5df2\u652f\u4ed8]\u540e\u5c06\u4f1a\u7531\u7cfb\u7edf\u8fdb\u884c\u5f00\u901a\u540e\u5e76\u5b8c\u6210"},"\u8ba2\u5355\u72b6\u6001 ",g.a.createElement(f["a"],{type:"question-circle"}))),dataIndex:"status",key:"status",render:(e,t)=>{var n=["error","processing","default","success","default"];return g.a.createElement("div",null,g.a.createElement(c["a"],{disabled:0!==e,trigger:["click"],overlay:g.a.createElement(h["a"],null,g.a.createElement(h["a"].Item,{key:"1",onClick:e=>{this.props.dispatch({type:"order/paid",tradeNo:t.trade_no})}},"\u5df2\u652f\u4ed8"),g.a.createElement(h["a"].Item,{key:"2",onClick:e=>{this.props.dispatch({type:"order/cancel",tradeNo:t.trade_no})}},"\u53d6\u6d88"))},g.a.createElement("div",null,g.a.createElement(u["a"],{status:n[e]}),g.a.createElement("span",null,y["a"].orderStatusText[e]," "),0===e&&g.a.createElement("a",{href:"javascript:void(0);"},"\u6807\u8bb0\u4e3a ",g.a.createElement(f["a"],{type:"caret-down"})))))}},{title:"\u4f63\u91d1\u91d1\u989d",dataIndex:"commission_balance",key:"commission_balance",align:"right",render:(e,t)=>{return 0===t.status||2===t.status?"-":e?(e/100).toFixed(2):"-"}},{title:g.a.createElement("span",null,"\u4f63\u91d1\u72b6\u6001 ",g.a.createElement(d["a"],{placement:"top",title:"\u6807\u8bb0\u4e3a[\u6709\u6548]\u540e\u5c06\u4f1a\u7531\u7cfb\u7edf\u5904\u7406\u540e\u53d1\u653e\u5230\u7528\u6237\u5e76\u5b8c\u6210"},g.a.createElement(f["a"],{type:"question-circle"}))),dataIndex:"commission_status",key:"commission_status",render:(e,t)=>{if(0===t.status||2===t.status)return"-";if(!t.commission_balance)return"-";var n=["default","processing","success","error"];return 2===t.commission_status?g.a.createElement("div",null,g.a.createElement(u["a"],{status:n[e]}),g.a.createElement("span",null,y["a"].commissionStatusText[e]," ")):g.a.createElement("div",null,g.a.createElement(c["a"],{trigger:["click"],overlay:g.a.createElement(h["a"],null,g.a.createElement(h["a"].Item,{key:"0",disabled:0===e,onClick:e=>{this.update(t.trade_no,"commission_status",e.key)}},"\u5f85\u786e\u8ba4"),g.a.createElement(h["a"].Item,{key:"1",disabled:1===e,onClick:e=>{this.update(t.trade_no,"commission_status",e.key)}},"\u6709\u6548"),g.a.createElement(h["a"].Item,{key:"3",disabled:3===e,onClick:e=>{this.update(t.trade_no,"commission_status",e.key)}},"\u65e0\u6548"))},g.a.createElement("div",null,g.a.createElement(u["a"],{status:n[e]}),g.a.createElement("span",null,y["a"].commissionStatusText[e]," "),g.a.createElement("a",{href:"javascript:void(0);"},"\u6807\u8bb0\u4e3a ",g.a.createElement(f["a"],{type:"caret-down"})))))}},{title:"\u521b\u5efa\u65f6\u95f4",dataIndex:"created_at",key:"created_at",align:"right",render:e=>{return w()(1e3*e).format("YYYY/MM/DD HH:mm")}}];return g.a.createElement(v["a"],i()({},this.props,{title:"\u8ba2\u5355\u7ba1\u7406"}),g.a.createElement("div",{className:"d-flex justify-content-between align-items-center"}),g.a.createElement("div",{className:"block block-rounded ".concat(n?"block-mode-loading":"")},g.a.createElement("div",{className:"bg-white"},g.a.createElement("div",{style:{padding:15}},g.a.createElement(R["a"],null,g.a.createElement(L["a"],{value:a,onOk:e=>this.props.dispatch({type:"order/filter",filter:e}),keys:[{key:"trade_no",title:"\u8ba2\u5355\u53f7",condition:["\u6a21\u7cca","="]},{key:"status",title:"\u8ba2\u5355\u72b6\u6001",type:"select",condition:["="],options:[{key:"\u672a\u652f\u4ed8",value:0},{key:"\u5df2\u652f\u4ed8",value:1},{key:"\u5df2\u53d6\u6d88",value:2},{key:"\u5df2\u5b8c\u6210",value:3}]},{key:"commission_status",title:"\u4f63\u91d1\u72b6\u6001",type:"select",condition:["="],options:[{key:"\u5f85\u786e\u8ba4",value:0},{key:"\u6709\u6548",value:1},{key:"\u65e0\u6548",value:3}]},{key:"user_id",title:"\u7528\u6237ID",condition:["="]},{key:"invite_user_id",title:"\u9080\u8bf7\u4ebaID",condition:["=","!="]},{key:"callback_no",title:"\u56de\u8c03\u5355\u53f7",condition:["\u6a21\u7cca"]}]},g.a.createElement(l["a"],{type:a.length>0?"primary":""},g.a.createElement(f["a"],{type:"filter"})," \u8fc7\u6ee4\u5668"))),g.a.createElement(P["a"],null,g.a.createElement(l["a"],{style:{marginLeft:10}},g.a.createElement(f["a"],{type:"plus"})," \u6dfb\u52a0\u8ba2\u5355"))),g.a.createElement(o["a"],{tableLayout:"auto",dataSource:t,pagination:s()({},r,{size:"small"}),columns:m,scroll:{x:1050},onChange:e=>this.tableOnChange(e)}))))}}t["default"]=Object(T["c"])(e=>{var t=e.order;return{order:t}})(D)},q97H:function(e,t,n){"use strict";var r=n("330p");n("WGNW")({target:"RegExp",proto:!0,forced:r!==/./.exec},{exec:r})},qDJ8:function(e,t,n){"use strict";e.exports=function(e){return null!=e&&"object"===typeof e&&!1===Array.isArray(e)}},qIgq:function(e,t,n){var r=n("Wz2H"),i=n("IuST"),o=n("198K");function a(e,t){return r(e)||i(e,t)||o()}e.exports=a},qT12:function(e,t,n){"use strict";var r="function"===typeof Symbol&&Symbol.for,i=r?Symbol.for("react.element"):60103,o=r?Symbol.for("react.portal"):60106,a=r?Symbol.for("react.fragment"):60107,s=r?Symbol.for("react.strict_mode"):60108,l=r?Symbol.for("react.profiler"):60114,c=r?Symbol.for("react.provider"):60109,u=r?Symbol.for("react.context"):60110,h=r?Symbol.for("react.async_mode"):60111,d=r?Symbol.for("react.concurrent_mode"):60111,f=r?Symbol.for("react.forward_ref"):60112,p=r?Symbol.for("react.suspense"):60113,m=r?Symbol.for("react.suspense_list"):60120,g=r?Symbol.for("react.memo"):60115,v=r?Symbol.for("react.lazy"):60116,y=r?Symbol.for("react.block"):60121,b=r?Symbol.for("react.fundamental"):60117,w=r?Symbol.for("react.responder"):60118,x=r?Symbol.for("react.scope"):60119;function _(e){if("object"===typeof e&&null!==e){var t=e.$$typeof;switch(t){case i:switch(e=e.type,e){case h:case d:case a:case l:case s:case p:return e;default:switch(e=e&&e.$$typeof,e){case u:case f:case v:case g:case c:return e;default:return t}}case o:return t}}}function C(e){return _(e)===d}t.AsyncMode=h,t.ConcurrentMode=d,t.ContextConsumer=u,t.ContextProvider=c,t.Element=i,t.ForwardRef=f,t.Fragment=a,t.Lazy=v,t.Memo=g,t.Portal=o,t.Profiler=l,t.StrictMode=s,t.Suspense=p,t.isAsyncMode=function(e){return C(e)||_(e)===h},t.isConcurrentMode=C,t.isContextConsumer=function(e){return _(e)===u},t.isContextProvider=function(e){return _(e)===c},t.isElement=function(e){return"object"===typeof e&&null!==e&&e.$$typeof===i},t.isForwardRef=function(e){return _(e)===f},t.isFragment=function(e){return _(e)===a},t.isLazy=function(e){return _(e)===v},t.isMemo=function(e){return _(e)===g},t.isPortal=function(e){return _(e)===o},t.isProfiler=function(e){return _(e)===l},t.isStrictMode=function(e){return _(e)===s},t.isSuspense=function(e){return _(e)===p},t.isValidElementType=function(e){return"string"===typeof e||"function"===typeof e||e===a||e===d||e===l||e===s||e===p||e===m||"object"===typeof e&&null!==e&&(e.$$typeof===v||e.$$typeof===g||e.$$typeof===c||e.$$typeof===u||e.$$typeof===f||e.$$typeof===b||e.$$typeof===w||e.$$typeof===x||e.$$typeof===y)},t.typeOf=_},qqou:function(e,t,n){"use strict";var r=n("q1tI"),i=n.n(r);n("17x9");if("undefined"!==typeof Element&&!Element.prototype.matches){var o=Element.prototype;o.matches=o.matchesSelector||o.mozMatchesSelector||o.msMatchesSelector||o.oMatchesSelector||o.webkitMatchesSelector}var a=function(e,t,n){var r=e;while(r){var i=r===n||r===document.body;if(i||1===r.nodeType&&r.matches(t)){i&&(r=null);break}r=r.parentNode}return r},s=function(e){var t=e;do{var n=window.getComputedStyle(t),r=n.overflow;if(("auto"===r||"scroll"===r)&&t&&t.nodeType&&(t.offsetWidth""===t||!e.matches(t)).indexOf(e)},c="tr",u={TOP:1,BOTTOM:3},h="px",d="position:fixed;z-index:9999;height:0;margin-top:-1px;border-bottom:dashed 2px rgba(0,0,0,.3);display:none;";class f extends r["Component"]{constructor(e){super(e),this.onMouseDown=this.onMouseDown.bind(this),this.onDragStart=this.onDragStart.bind(this),this.onDragEnter=this.onDragEnter.bind(this),this.onDragEnd=this.onDragEnd.bind(this),this.autoScroll=this.autoScroll.bind(this),this.state={fromIndex:-1,toIndex:-1},this.scrollElement=null,this.scrollTimerId=-1,this.direction=u.BOTTOM}componentWillUnmount(){this.dragLine&&this.dragLine.parentNode&&(this.dragLine.parentNode.removeChild(this.dragLine),this.dragLine=null,this.cacheDragTarget=null)}onMouseDown(e){var t=this.getHandleNode(e.target);if(t){var n=this.props.handleSelector&&this.props.handleSelector!==this.props.nodeSelector?this.getDragNode(t):t;n&&(t.setAttribute("draggable",!1),n.setAttribute("draggable",!0),n.ondragstart=this.onDragStart,n.ondragend=this.onDragEnd)}}onDragStart(e){var t=this.getDragNode(e.target),n=e;if(t){var r=t.parentNode;n.dataTransfer.setData("Text",""),n.dataTransfer.effectAllowed="move",r.ondragenter=this.onDragEnter,r.ondragover=function(e){return e.preventDefault(),!0};var i=l(t,this.props.ignoreSelector);this.setState({fromIndex:i,toIndex:i}),this.scrollElement=s(r)}}onDragEnter(e){var t,n=this.getDragNode(e.target),r=e;n?(t=l(n,this.props.ignoreSelector),this.props.enableScroll&&this.resolveAutoScroll(r,n)):(t=-1,this.stopAutoScroll()),this.cacheDragTarget=n,this.setState({toIndex:t}),this.fixDragLine(n)}onDragEnd(e){var t=this.getDragNode(e.target);this.stopAutoScroll(),t&&(t.removeAttribute("draggable"),t.ondragstart=null,t.ondragend=null,t.parentNode.ondragenter=null,t.parentNode.ondragover=null,this.state.fromIndex>=0&&this.state.fromIndex!==this.state.toIndex&&this.props.onDragEnd(this.state.fromIndex,this.state.toIndex)),this.hideDragLine(),this.setState({fromIndex:-1,toIndex:-1})}getDragNode(e){return a(e,this.props.nodeSelector,this.dragList)}getHandleNode(e){return a(e,this.props.handleSelector||this.props.nodeSelector,this.dragList)}getDragLine(){return this.dragLine||(this.dragLine=window.document.createElement("div"),this.dragLine.setAttribute("style",d),window.document.body.appendChild(this.dragLine)),this.dragLine.className=this.props.lineClassName||"",this.dragLine}resolveAutoScroll(e,t){if(this.scrollElement){var n=this.scrollElement.getBoundingClientRect(),r=n.top,i=n.height,o=t.offsetHeight,a=e.pageY,s=o*(2/3);this.direction=0,a>r+i-s?this.direction=u.BOTTOM:au+c+2)return void this.hideDragLine()}t.style.left=r+h,t.style.width=o+h,t.style.top=s+h,t.style.display="block"}}render(){return i.a.createElement("div",{role:"presentation",onMouseDown:this.onMouseDown,ref:e=>{this.dragList=e}},this.props.children)}}f.defaultProps={nodeSelector:c,ignoreSelector:"",enableScroll:!0,scrollSpeed:10,handleSelector:"",lineClassName:"",children:null};var p=f,m="px",g="width:0;margin-left:-1px;margin-top:0;border-bottom:0 none;border-left:dashed 2px rgba(0,0,0,.3);",v={RIGHT:2,LEFT:4};class y extends p{getDragLine(){return this.dragLine||(super.getDragLine(),this.dragLine.setAttribute("style",this.dragLine.getAttribute("style")+g)),this.dragLine}resolveAutoScroll(e,t){if(this.scrollElement){var n=this.scrollElement.getBoundingClientRect(),r=n.left,i=n.width,o=t.offsetWidth,a=e.pageX,s=2*o/3;this.direction=0,a>r+i-s?this.direction=v.RIGHT:au+c+2)return void this.hideDragLine()}t.style.top=i+m,t.style.height=a+m,t.style.left=s+m,t.style.display="block"}}}var b=y;p.DragColumn=b;t["a"]=p},qx4F:function(e,t,n){"use strict";var r;function i(e){if("undefined"===typeof document)return 0;if(e||void 0===r){var t=document.createElement("div");t.style.width="100%",t.style.height="200px";var n=document.createElement("div"),i=n.style;i.position="absolute",i.top=0,i.left=0,i.pointerEvents="none",i.visibility="hidden",i.width="200px",i.height="150px",i.overflow="hidden",n.appendChild(t),document.body.appendChild(n);var o=t.offsetWidth;n.style.overflow="scroll";var a=t.offsetWidth;o===a&&(a=n.clientWidth),document.body.removeChild(n),r=o-a}return r}n.d(t,"a",function(){return i})},rA99:function(e,t,n){"use strict";var r=n("IaEH"),i=n("y+Vt"),o=n("QBsz"),a=n("Sj9i"),s=[],l=function(){function e(){this.x1=0,this.y1=0,this.x2=0,this.y2=0,this.cpx1=0,this.cpy1=0,this.percent=1}return e}();function c(e,t,n){var r=e.cpx2,i=e.cpy2;return null===r||null===i?[(n?a["b"]:a["a"])(e.x1,e.cpx1,e.cpx2,e.x2,t),(n?a["b"]:a["a"])(e.y1,e.cpy1,e.cpy2,e.y2,t)]:[(n?a["i"]:a["h"])(e.x1,e.cpx1,e.x2,t),(n?a["i"]:a["h"])(e.y1,e.cpy1,e.y2,t)]}var u=function(e){function t(t){return e.call(this,t)||this}return Object(r["a"])(t,e),t.prototype.getDefaultStyle=function(){return{stroke:"#000",fill:null}},t.prototype.getDefaultShape=function(){return new l},t.prototype.buildPath=function(e,t){var n=t.x1,r=t.y1,i=t.x2,o=t.y2,l=t.cpx1,c=t.cpy1,u=t.cpx2,h=t.cpy2,d=t.percent;0!==d&&(e.moveTo(n,r),null==u||null==h?(d<1&&(Object(a["n"])(n,l,i,d,s),l=s[1],i=s[2],Object(a["n"])(r,c,o,d,s),c=s[1],o=s[2]),e.quadraticCurveTo(l,c,i,o)):(d<1&&(Object(a["g"])(n,l,u,i,d,s),l=s[1],u=s[2],i=s[3],Object(a["g"])(r,c,h,o,d,s),c=s[1],h=s[2],o=s[3]),e.bezierCurveTo(l,c,u,h,i,o)))},t.prototype.pointAt=function(e){return c(this.shape,e,!1)},t.prototype.tangentAt=function(e){var t=c(this.shape,e,!0);return o["k"](t,t)},t}(i["b"]);u.prototype.type="bezier-curve",t["a"]=u},rB1S:function(e,t,n){"use strict";n.r(t);var r=n("d6i3"),i=n.n(r),o=n("p0pE"),a=n.n(o),s=n("t3Un"),l={switchLoading:{},saveLoading:!1};t["default"]={name:"serverV2ray",state:a()({},l),reducers:{setState(e,t){var n=t.payload;return a()({},e,n)}},effects:{update(e,t){return i.a.mark(function n(){var r,o,a,l,c;return i.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.id,o=e.key,a=e.value,l=t.put,n.next=4,Object(s["b"])("/admin/server/v2ray/update",{id:r,[o]:a});case 4:if(c=n.sent,200===c.code){n.next=7;break}return n.abrupt("return");case 7:return n.next=9,l({type:"serverManage/getNodes"});case 9:case"end":return n.stop()}},n)})()},drop(e,t){return i.a.mark(function n(){var r,o,a;return i.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.id,o=t.put,n.next=4,Object(s["b"])("/admin/server/v2ray/drop",{id:r});case 4:if(a=n.sent,200===a.code){n.next=7;break}return n.abrupt("return");case 7:return n.next=9,o({type:"serverManage/getNodes"});case 9:case"end":return n.stop()}},n)})()},copy(e,t){return i.a.mark(function n(){var r,o,a;return i.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.id,o=t.put,n.next=4,Object(s["b"])("/admin/server/v2ray/copy",{id:r});case 4:if(a=n.sent,200===a.code){n.next=7;break}return n.abrupt("return");case 7:return n.next=9,o({type:"serverManage/getNodes"});case 9:case"end":return n.stop()}},n)})()},save(e,t){return i.a.mark(function n(){var r,o,a,l;return i.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.params,o=e.callback,a=t.put,n.next=4,a({type:"setState",payload:{saveLoading:!0}});case 4:return n.next=6,Object(s["b"])("/admin/server/v2ray/save",r);case 6:return l=n.sent,n.next=9,a({type:"setState",payload:{saveLoading:!1}});case 9:if(200===l.code){n.next=11;break}return n.abrupt("return");case 11:return n.next=13,a({type:"serverManage/getNodes"});case 13:"function"===typeof o&&o();case 14:case"end":return n.stop()}},n)})()}}}},rKIl:function(e,t,n){var r=n("c0Oy"),i=n("VPOE"),o=n("oxo0"),a=n("kCK5")("src"),s=n("b5re"),l="toString",c=(""+s).split(l);n("bV5f").inspectSource=function(e){return s.call(e)},(e.exports=function(e,t,n,s){var l="function"==typeof n;l&&(o(n,"name")||i(n,"name",t)),e[t]!==n&&(l&&(o(n,a)||i(n,a,e[t]?""+e[t]:c.join(String(t)))),e===r?e[t]=n:s?e[t]?e[t]=n:i(e,t,n):(delete e[t],i(e,t,n)))})(Function.prototype,l,function(){return"function"==typeof this&&this[a]||s.call(this)})},rTWY:function(e,t,n){var r=n("c0Oy"),i=n("vMx4").set,o=r.MutationObserver||r.WebKitMutationObserver,a=r.process,s=r.Promise,l="process"==n("2we2")(a);e.exports=function(){var e,t,n,c=function(){var r,i;l&&(r=a.domain)&&r.exit();while(e){i=e.fn,e=e.next;try{i()}catch(r){throw e?n():t=void 0,r}}t=void 0,r&&r.enter()};if(l)n=function(){a.nextTick(c)};else if(!o||r.navigator&&r.navigator.standalone)if(s&&s.resolve){var u=s.resolve(void 0);n=function(){u.then(c)}}else n=function(){i.call(r,c)};else{var h=!0,d=document.createTextNode("");new o(c).observe(d,{characterData:!0}),n=function(){d.data=h=!h}}return function(r){var i={fn:r,next:void 0};t&&(t.next=i),e||(e=i,n()),t=i}}},rUcv:function(e,t,n){"use strict";var r=n("c0Oy"),i=n("oxo0"),o=n("8Z/V"),a=n("WGNW"),s=n("rKIl"),l=n("+y51").KEY,c=n("wUWy"),u=n("VyuQ"),h=n("lvAo"),d=n("kCK5"),f=n("gL7N"),p=n("zKnh"),m=n("/sWw"),g=n("T1nr"),v=n("EpXD"),y=n("7vYJ"),b=n("u8+u"),w=n("il4q"),x=n("OeOC"),_=n("8BMt"),C=n("pQGJ"),S=n("/Mfd"),E=n("CTsd"),k=n("15BC"),O=n("e6w7"),T=n("V5/1"),A=n("Igga"),M=k.f,P=T.f,R=E.f,L=r.Symbol,D=r.JSON,j=D&&D.stringify,N="prototype",I=f("_hidden"),$=f("toPrimitive"),F={}.propertyIsEnumerable,V=u("symbol-registry"),B=u("symbols"),W=u("op-symbols"),H=Object[N],z="function"==typeof L&&!!O.f,U=r.QObject,q=!U||!U[N]||!U[N].findChild,K=o&&c(function(){return 7!=S(P({},"a",{get:function(){return P(this,"a",{value:7}).a}})).a})?function(e,t,n){var r=M(H,t);r&&delete H[t],P(e,t,n),r&&e!==H&&P(H,t,r)}:P,G=function(e){var t=B[e]=S(L[N]);return t._k=e,t},Y=z&&"symbol"==typeof L.iterator?function(e){return"symbol"==typeof e}:function(e){return e instanceof L},X=function(e,t,n){return e===H&&X(W,t,n),y(e),t=_(t,!0),y(n),i(B,t)?(n.enumerable?(i(e,I)&&e[I][t]&&(e[I][t]=!1),n=S(n,{enumerable:C(0,!1)})):(i(e,I)||P(e,I,C(1,{})),e[I][t]=!0),K(e,t,n)):P(e,t,n)},Q=function(e,t){y(e);var n,r=g(t=x(t)),i=0,o=r.length;while(o>i)X(e,n=r[i++],t[n]);return e},Z=function(e,t){return void 0===t?S(e):Q(S(e),t)},J=function(e){var t=F.call(this,e=_(e,!0));return!(this===H&&i(B,e)&&!i(W,e))&&(!(t||!i(this,e)||!i(B,e)||i(this,I)&&this[I][e])||t)},ee=function(e,t){if(e=x(e),t=_(t,!0),e!==H||!i(B,t)||i(W,t)){var n=M(e,t);return!n||!i(B,t)||i(e,I)&&e[I][t]||(n.enumerable=!0),n}},te=function(e){var t,n=R(x(e)),r=[],o=0;while(n.length>o)i(B,t=n[o++])||t==I||t==l||r.push(t);return r},ne=function(e){var t,n=e===H,r=R(n?W:x(e)),o=[],a=0;while(r.length>a)!i(B,t=r[a++])||n&&!i(H,t)||o.push(B[t]);return o};z||(L=function(){if(this instanceof L)throw TypeError("Symbol is not a constructor!");var e=d(arguments.length>0?arguments[0]:void 0),t=function(n){this===H&&t.call(W,n),i(this,I)&&i(this[I],e)&&(this[I][e]=!1),K(this,e,C(1,n))};return o&&q&&K(H,e,{configurable:!0,set:t}),G(e)},s(L[N],"toString",function(){return this._k}),k.f=ee,T.f=X,n("9HFh").f=E.f=te,n("LsAW").f=J,O.f=ne,o&&!n("FqPH")&&s(H,"propertyIsEnumerable",J,!0),p.f=function(e){return G(f(e))}),a(a.G+a.W+a.F*!z,{Symbol:L});for(var re="hasInstance,isConcatSpreadable,iterator,match,replace,search,species,split,toPrimitive,toStringTag,unscopables".split(","),ie=0;re.length>ie;)f(re[ie++]);for(var oe=A(f.store),ae=0;oe.length>ae;)m(oe[ae++]);a(a.S+a.F*!z,"Symbol",{for:function(e){return i(V,e+="")?V[e]:V[e]=L(e)},keyFor:function(e){if(!Y(e))throw TypeError(e+" is not a symbol!");for(var t in V)if(V[t]===e)return t},useSetter:function(){q=!0},useSimple:function(){q=!1}}),a(a.S+a.F*!z,"Object",{create:Z,defineProperty:X,defineProperties:Q,getOwnPropertyDescriptor:ee,getOwnPropertyNames:te,getOwnPropertySymbols:ne});var se=c(function(){O.f(1)});a(a.S+a.F*se,"Object",{getOwnPropertySymbols:function(e){return O.f(w(e))}}),D&&a(a.S+a.F*(!z||c(function(){var e=L();return"[null]"!=j([e])||"{}"!=j({a:e})||"{}"!=j(Object(e))})),"JSON",{stringify:function(e){var t,n,r=[e],i=1;while(arguments.length>i)r.push(arguments[i++]);if(n=t=r[1],(b(t)||void 0!==e)&&!Y(e))return v(t)||(t=function(e,t){if("function"==typeof n&&(t=n.call(this,e,t)),!Y(t))return t}),r[1]=t,j.apply(D,r)}}),L[N][$]||n("VPOE")(L[N],$,L[N].valueOf),h(L,"Symbol"),h(Math,"Math",!0),h(r.JSON,"JSON",!0)},rmlV:function(e,t,n){"use strict";var r=n("IaEH"),i=n("y+Vt"),o=function(){function e(){this.cx=0,this.cy=0,this.rx=0,this.ry=0}return e}(),a=function(e){function t(t){return e.call(this,t)||this}return Object(r["a"])(t,e),t.prototype.getDefaultShape=function(){return new o},t.prototype.buildPath=function(e,t){var n=.5522848,r=t.cx,i=t.cy,o=t.rx,a=t.ry,s=o*n,l=a*n;e.moveTo(r-o,i),e.bezierCurveTo(r-o,i-l,r-s,i-a,r,i-a),e.bezierCurveTo(r+s,i-a,r+o,i-l,r+o,i),e.bezierCurveTo(r+o,i+l,r+s,i+a,r,i+a),e.bezierCurveTo(r-s,i+a,r-o,i+l,r-o,i),e.closePath()},t}(i["b"]);a.prototype.type="ellipse",t["a"]=a},rr1i:function(e,t){e.exports=function(e,t){return{enumerable:!(1&e),configurable:!(2&e),writable:!(4&e),value:t}}},rrW9:function(e,t){e.exports=function(e,t,n){var r=void 0===n;switch(t.length){case 0:return r?e():e.call(n);case 1:return r?e(t[0]):e.call(n,t[0]);case 2:return r?e(t[0],t[1]):e.call(n,t[0],t[1]);case 3:return r?e(t[0],t[1],t[2]):e.call(n,t[0],t[1],t[2]);case 4:return r?e(t[0],t[1],t[2],t[3]):e.call(n,t[0],t[1],t[2],t[3])}return e.apply(n,t)}},rsGM:function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=a;var r=o(n("LIAx")),i=o(n("i8i4"));function o(e){return e&&e.__esModule?e:{default:e}}function a(e,t,n,o){var a=i.default.unstable_batchedUpdates?function(e){i.default.unstable_batchedUpdates(n,e)}:n;return(0,r.default)(e,t,a,o)}},s3Ml:function(e,t,n){e.exports={default:n("JbBM"),__esModule:!0}},sFYk:function(e,t,n){"use strict";n.r(t);var r=n("jehZ"),i=n.n(r),o=n("d6i3"),a=n.n(o),s=n("1l/V"),l=n.n(s),c=n("q1tI"),u=n.n(c),h=n("Bl7J"),d=n("/MKj"),f=n("3a4m"),p=n.n(f),m=n("t3Un"),g=n("20nU"),v=n("IrRn"),y=n("G+eS"),b=n("k5Tp"),w=n("MJSk"),x=n("LadE"),_=n("Syqx"),C=n("/zI/"),S=n("NiBb"),E=n("TLXH"),k=n("xVpn"),O=n("+V6l");v["a"]([b["a"],w["a"],x["a"],_["a"],C["a"],S["a"],E["a"],O["a"],k["a"]]);class T extends u.a.Component{constructor(e){super(e),this.state={},this.orderChart=u.a.createRef(),this.orderChartObj=void 0,this.serverLastRankChart=u.a.createRef(),this.serverLastRankChartObj=void 0}orderChartRender(e){var t;this.orderChartObj=y["b"](null===(t=this.orderChart)||void 0===t?void 0:t.current,"vintage");var n={tooltip:{trigger:"axis"},legend:{data:[],right:"1%"},grid:{left:"1%",right:"1%",bottom:"3%",containLabel:!0},xAxis:{type:"category",boundaryGap:!1,data:[]},yAxis:{type:"value"},series:[]};e.forEach(e=>{-1===n.legend.data.indexOf(e.type)&&n.legend.data.push(e.type),-1===n.xAxis.data.indexOf(e.date)&&n.xAxis.data.push(e.date);var t=n.series.find(t=>t.name===e.type);t?t.data.push(e.value):n.series.push({name:e.type,type:"line",smooth:!0,data:[e.value]})}),console.log(n),this.orderChartObj.setOption(n),window.addEventListener("resize",this.chartResize.bind(this))}serverLastRankChartRender(e){var t;this.serverLastRankChartObj=y["b"](null===(t=this.serverLastRankChart)||void 0===t?void 0:t.current);var n={tooltip:{trigger:"axis",formatter:e=>{return"".concat(e[0].value," GB")}},grid:{top:"1%",left:"1%",right:"1%",bottom:"3%",containLabel:!0},xAxis:{type:"value"},yAxis:{type:"category",data:[]},series:[{data:[],type:"bar"}]};e.reverse().forEach(e=>{n.yAxis.data.push(e.server_name),n.series[0].data.push(e.total)}),this.serverLastRankChartObj.setOption(n)}chartResize(){this.orderChartObj.resize(),this.serverLastRankChartObj.resize()}componentDidMount(){var e=this;l()(a.a.mark(function t(){return a.a.wrap(function(t){while(1)switch(t.prev=t.next){case 0:return t.next=2,e.checkQueue();case 2:case"end":return t.stop()}},t)}))(),this.props.dispatch({type:"stat/getOverride"}),this.props.dispatch({type:"stat/getOrder",complete:e=>{this.orderChartRender(e)}}),this.props.dispatch({type:"stat/getServerLastRank",complete:e=>{console.log(e),this.serverLastRankChartRender(e)}})}componentWillUnmount(){window.removeEventListener("resize",this.chartResize.bind(this))}orderFilter(){this.props.dispatch({type:"order/addFilter",key:"commission_status",condition:"=",value:0}),this.props.dispatch({type:"order/addFilter",key:"invite_user_id",condition:"!=",value:""}),p.a.push("/order")}checkQueue(){var e=this;return l()(a.a.mark(function t(){var n,r;return a.a.wrap(function(t){while(1)switch(t.prev=t.next){case 0:return n=new URL(g["a"].serviceHost),t.next=3,Object(m["a"])((null===n||void 0===n?void 0:n.origin)+"/monitor/api/stats");case 3:r=t.sent,e.setState({queueStatus:null===r||void 0===r?void 0:r.status});case 5:case"end":return t.stop()}},t)}))()}render(){var e=this.props.stat;return u.a.createElement(h["a"],i()({},this.props,{title:"\u4eea\u8868\u76d8"}),this.state.queueStatus&&"running"!==this.state.queueStatus&&u.a.createElement("div",{className:"row"},u.a.createElement("div",{className:"col-lg-12"},u.a.createElement("div",{className:"alert alert-danger",role:"alert"},u.a.createElement("p",{className:"mb-0"},"\u5f53\u524d\u961f\u5217\u670d\u52a1\u8fd0\u884c\u5f02\u5e38\uff0c\u53ef\u80fd\u4f1a\u5bfc\u81f4\u4e1a\u52a1\u65e0\u6cd5\u4f7f\u7528\u3002")))),u.a.createElement("div",{className:"mb-0 block border-bottom js-classic-nav d-none d-sm-block"},u.a.createElement("div",{className:"block-content block-content-full"},u.a.createElement("div",{className:"row no-gutters border"},u.a.createElement("div",{className:"col-sm-6 col-xl-3 js-appear-enabled animated","data-toggle":"appear"},u.a.createElement("a",{className:"block block-bordered block-link-pop text-center mb-0",onClick:()=>p.a.push("/config/system")},u.a.createElement("div",{className:"block-content block-content-full text-center"},u.a.createElement("i",{className:"fa-2x si si-equalizer text-primary d-none d-sm-inline-block mb-3"}),u.a.createElement("div",{className:"font-w600 text-uppercase"},"\u7cfb\u7edf\u8bbe\u7f6e")))),u.a.createElement("div",{className:"col-sm-6 col-xl-3 js-appear-enabled animated","data-toggle":"appear"},u.a.createElement("a",{className:"block block-bordered block-link-pop text-center mb-0",onClick:()=>p.a.push("/order")},u.a.createElement("div",{className:"block-content block-content-full text-center"},u.a.createElement("i",{className:"fa-2x si si-list text-primary d-none d-sm-inline-block mb-3"}),u.a.createElement("div",{className:"font-w600 text-uppercase"},"\u8ba2\u5355\u7ba1\u7406")))),u.a.createElement("div",{className:"col-sm-6 col-xl-3 js-appear-enabled animated","data-toggle":"appear"},u.a.createElement("a",{className:"block block-bordered block-link-pop text-center mb-0",onClick:()=>p.a.push("/plan")},u.a.createElement("div",{className:"block-content block-content-full text-center"},u.a.createElement("i",{className:"fa-2x si si-bag text-primary d-none d-sm-inline-block mb-3"}),u.a.createElement("div",{className:"font-w600 text-uppercase"},"\u8ba2\u9605\u7ba1\u7406")))),u.a.createElement("div",{className:"col-sm-6 col-xl-3 js-appear-enabled animated","data-toggle":"appear"},u.a.createElement("a",{className:"block block-bordered block-link-pop text-center mb-0",onClick:()=>p.a.push("/user")},u.a.createElement("div",{className:"block-content block-content-full text-center"},u.a.createElement("i",{className:"fa-2x si si-users text-primary d-none d-sm-inline-block mb-3"}),u.a.createElement("div",{className:"font-w600 text-uppercase"},"\u7528\u6237\u7ba1\u7406"))))))),u.a.createElement("div",{className:"row no-gutters"},u.a.createElement("div",{className:"col-lg-12 js-appear-enabled animated","data-toggle":"appear"},u.a.createElement("div",{className:"block border-bottom mb-0"},u.a.createElement("div",{className:"block-content"},u.a.createElement("div",{className:"px-sm-3 pt-sm-3 clearfix"},u.a.createElement("i",{className:"fa fa-chart-line fa-2x text-gray-light float-right"}),u.a.createElement("p",{className:"display-4 text-black font-w300 mb-2"},e.day_income?(e.day_income/100).toFixed(2):"0.00",u.a.createElement("span",{className:"font-size-h5 font-w600 text-muted"},"CNY")),u.a.createElement("p",{className:"text-muted w-75"},"\u672c\u6708\u6536\u5165\u5408\u8ba1 \xa5",e.month_income?(e.month_income/100).toFixed(2):"0.00","\uff0c\u4e0a\u6708\u6536\u5165\u5408\u8ba1 \xa5",e.last_month_income?(e.last_month_income/100).toFixed(2):"0.00","\u3002")),u.a.createElement("div",{className:"px-sm-3 pt-sm-3 py-3 clearfix",id:"orderChart",style:{height:400},ref:this.orderChart})))),u.a.createElement("div",{className:"col-lg-12 js-appear-enabled animated","data-toggle":"appear"},u.a.createElement("div",{className:"block border-bottom mb-0"},u.a.createElement("div",{className:"block-content block-content-full d-flex align-items-center justify-content-between"},u.a.createElement("div",{className:"ml-3"},u.a.createElement("p",{className:"font-size-h2 font-w300 text-black mb-0"},e.month_register_total||"-"),u.a.createElement("a",{onClick:()=>p.a.push("/user"),className:"link-fx font-size-sm font-w600 text-muted text-uppercase mb-0",href:"javascript:void(0)"},"\u672c\u6708\u65b0\u589e\u7528\u6237")),u.a.createElement("div",null,u.a.createElement("i",{className:"far si fa-2x si-users text-primary"})))),u.a.createElement("div",{className:"block border-bottom mb-0"},u.a.createElement("div",{className:"block-content block-content-full d-flex align-items-center justify-content-between"},u.a.createElement("div",{className:"ml-3"},u.a.createElement("p",{className:"font-size-h2 font-w300 text-black mb-0"},e.ticket_pendding_total||"-"),u.a.createElement("a",{onClick:()=>p.a.push("/ticket"),className:"link-fx font-size-sm font-w600 text-muted text-uppercase mb-0",href:"javascript:void(0)"},"\u5f85\u529e\u5de5\u5355")),u.a.createElement("div",null,u.a.createElement("i",{className:"far si fa-2x si-support text-primary"})))),u.a.createElement("div",{className:"block border-bottom mb-0"},u.a.createElement("div",{className:"block-content block-content-full d-flex align-items-center justify-content-between"},u.a.createElement("div",{className:"ml-3"},u.a.createElement("p",{className:"font-size-h2 font-w300 text-black mb-0"},e.commission_pendding_total||"-"),u.a.createElement("a",{onClick:()=>this.orderFilter(),className:"link-fx font-size-sm font-w600 text-muted text-uppercase mb-0",href:"javascript:void(0)"},"\u4f63\u91d1\u5f85\u786e\u8ba4")),u.a.createElement("div",null,u.a.createElement("i",{className:"far si fa-2x si-user-following text-primary"})))))),u.a.createElement("div",{className:"row no-gutters mt-xl-3"},u.a.createElement("div",{className:"col-lg-12 js-appear-enabled animated","data-toggle":"appear"},u.a.createElement("div",{className:"block border-bottom mb-0"},u.a.createElement("div",{class:"block-header block-header-default"},u.a.createElement("h3",{class:"block-title"},"\u6628\u65e5\u8282\u70b9\u6d41\u91cf\u6392\u884c")),u.a.createElement("div",{className:"block-content"},u.a.createElement("div",{className:"px-sm-3 pt-sm-3 py-3 clearfix",id:"serverRankChart",style:{height:400},ref:this.serverLastRankChart}))))))}}t["default"]=Object(d["c"])(e=>{var t=e.stat;return{stat:t}})(T)},sRdV:function(e,t,n){"use strict";e.exports=function(e){var t={};t.src_Any=n("y8fO").source,t.src_Cc=n("p7ys").source,t.src_Z=n("T8I8").source,t.src_P=n("fKCf").source,t.src_ZPCc=[t.src_Z,t.src_P,t.src_Cc].join("|"),t.src_ZCc=[t.src_Z,t.src_Cc].join("|");var r="[><\uff5c]";return t.src_pseudo_letter="(?:(?!"+r+"|"+t.src_ZPCc+")"+t.src_Any+")",t.src_ip4="(?:(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\.){3}(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)",t.src_auth="(?:(?:(?!"+t.src_ZCc+"|[@/\\[\\]()]).)+@)?",t.src_port="(?::(?:6(?:[0-4]\\d{3}|5(?:[0-4]\\d{2}|5(?:[0-2]\\d|3[0-5])))|[1-5]?\\d{1,4}))?",t.src_host_terminator="(?=$|"+r+"|"+t.src_ZPCc+")(?!-|_|:\\d|\\.-|\\.(?!$|"+t.src_ZPCc+"))",t.src_path="(?:[/?#](?:(?!"+t.src_ZCc+"|"+r+"|[()[\\]{}.,\"'?!\\-]).|\\[(?:(?!"+t.src_ZCc+"|\\]).)*\\]|\\((?:(?!"+t.src_ZCc+"|[)]).)*\\)|\\{(?:(?!"+t.src_ZCc+'|[}]).)*\\}|\\"(?:(?!'+t.src_ZCc+'|["]).)+\\"|\\\'(?:(?!'+t.src_ZCc+"|[']).)+\\'|\\'(?="+t.src_pseudo_letter+"|[-]).|\\.{2,}[a-zA-Z0-9%/&]|\\.(?!"+t.src_ZCc+"|[.]).|"+(e&&e["---"]?"\\-(?!--(?:[^-]|$))(?:-*)|":"\\-+|")+"\\,(?!"+t.src_ZCc+").|\\!+(?!"+t.src_ZCc+"|[!]).|\\?(?!"+t.src_ZCc+"|[?]).)+|\\/)?",t.src_email_name='[\\-;:&=\\+\\$,\\.a-zA-Z0-9_][\\-;:&=\\+\\$,\\"\\.a-zA-Z0-9_]*',t.src_xn="xn--[a-z0-9\\-]{1,59}",t.src_domain_root="(?:"+t.src_xn+"|"+t.src_pseudo_letter+"{1,63})",t.src_domain="(?:"+t.src_xn+"|(?:"+t.src_pseudo_letter+")|(?:"+t.src_pseudo_letter+"(?:-|"+t.src_pseudo_letter+"){0,61}"+t.src_pseudo_letter+"))",t.src_host="(?:(?:(?:(?:"+t.src_domain+")\\.)*"+t.src_domain+"))",t.tpl_host_fuzzy="(?:"+t.src_ip4+"|(?:(?:(?:"+t.src_domain+")\\.)+(?:%TLDS%)))",t.tpl_host_no_ip_fuzzy="(?:(?:(?:"+t.src_domain+")\\.)+(?:%TLDS%))",t.src_host_strict=t.src_host+t.src_host_terminator,t.tpl_host_fuzzy_strict=t.tpl_host_fuzzy+t.src_host_terminator,t.src_host_port_strict=t.src_host+t.src_port+t.src_host_terminator,t.tpl_host_port_fuzzy_strict=t.tpl_host_fuzzy+t.src_port+t.src_host_terminator,t.tpl_host_port_no_ip_fuzzy_strict=t.tpl_host_no_ip_fuzzy+t.src_port+t.src_host_terminator,t.tpl_host_fuzzy_test="localhost|www\\.|\\.\\d{1,3}\\.|(?:\\.(?:%TLDS%)(?:"+t.src_ZPCc+"|>|$))",t.tpl_email_fuzzy="(^|"+r+'|"|\\(|'+t.src_ZCc+")("+t.src_email_name+"@"+t.tpl_host_fuzzy_strict+")",t.tpl_link_fuzzy="(^|(?![.:/\\-_@])(?:[$+<=>^`|\uff5c]|"+t.src_ZPCc+"))((?![$+<=>^`|\uff5c])"+t.tpl_host_port_fuzzy_strict+t.src_path+")",t.tpl_link_no_ip_fuzzy="(^|(?![.:/\\-_@])(?:[$+<=>^`|\uff5c]|"+t.src_ZPCc+"))((?![$+<=>^`|\uff5c])"+t.tpl_host_port_no_ip_fuzzy_strict+t.src_path+")",t}},sa7a:function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=p,t.getUrlQuery=void 0;var r=n("6YkS");function i(e,t){return s(e)||a(e,t)||d(e,t)||o()}function o(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function a(e,t){if("undefined"!==typeof Symbol&&Symbol.iterator in Object(e)){var n=[],r=!0,i=!1,o=void 0;try{for(var a,s=e[Symbol.iterator]();!(r=(a=s.next()).done);r=!0)if(n.push(a.value),t&&n.length===t)break}catch(e){i=!0,o=e}finally{try{r||null==s["return"]||s["return"]()}finally{if(i)throw o}}return n}}function s(e){if(Array.isArray(e))return e}function l(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function c(e){for(var t=1;t=e.length?{done:!0}:{done:!1,value:e[t++]}},e:function(e){throw e},f:n}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var r,i,o=!0,a=!1;return{s:function(){r=e[Symbol.iterator]()},n:function(){var e=r.next();return o=e.done,e},e:function(e){a=!0,i=e},f:function(){try{o||null==r.return||r.return()}finally{if(a)throw i}}}}function d(e,t){if(e){if("string"===typeof e)return f(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(n):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?f(e,t):void 0}}function f(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n-1){var t=e.slice(1).split("&");if(Array.isArray(t)&&t.length>0)return t.reduce(function(e,t){var n=t.split("="),r=i(n,2),o=r[0],a=r[1];return c({},e,u({},o,a))},{})}return{}};t.getUrlQuery=m},"saJ+":function(e,t,n){"use strict";function r(e){"@babel/helpers - typeof";return r="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},r(e)}function i(e,t){"function"===typeof e?e(t):"object"===r(e)&&e&&"current"in e&&(e.current=t)}function o(){for(var e=arguments.length,t=new Array(e),n=0;n0&&(i[1-o]=this.state.showTimePicker?i[o]:void 0),this.props.onInputSelect(i),this.fireSelectValueChange(i,null,n||{source:"dateInput"})}}var F=function(e){function t(n){a()(this,t);var r=l()(this,e.call(this,n));V.call(r);var i=n.selectedValue||n.defaultSelectedValue,o=N(n,1);return r.state={selectedValue:i,prevSelectedValue:i,firstSelectedValue:null,hoverValue:n.hoverValue||[],value:o,showTimePicker:!1,mode:n.mode||["date","date"],panelTriggerSource:""},r}return u()(t,e),t.getDerivedStateFromProps=function(e,t){var n={};return"value"in e&&(n.value=N(e,0)),"hoverValue"in e&&!D(t.hoverValue,e.hoverValue)&&(n.hoverValue=e.hoverValue),"selectedValue"in e&&(n.selectedValue=e.selectedValue,n.prevSelectedValue=e.selectedValue),"mode"in e&&!D(t.mode,e.mode)&&(n.mode=e.mode),n},t.prototype.render=function(){var e,t,n=this.props,r=this.state,o=n.prefixCls,a=n.dateInputPlaceholder,s=n.seperator,l=n.timePicker,c=n.showOk,u=n.locale,h=n.showClear,f=n.showToday,p=n.type,m=n.clearIcon,g=r.hoverValue,v=r.selectedValue,b=r.mode,w=r.showTimePicker,x=(e={},e[n.className]=!!n.className,e[o]=1,e[o+"-hidden"]=!n.visible,e[o+"-range"]=1,e[o+"-show-time-picker"]=w,e[o+"-week-number"]=n.showWeekNumber,e),_=y()(x),C={selectedValue:r.selectedValue,onSelect:this.onSelect,onDayHover:"start"===p&&v[1]||"end"===p&&v[0]||g.length?this.onDayHover:void 0},E=void 0,M=void 0;a&&(Array.isArray(a)?(E=a[0],M=a[1]):E=M=a);var P=!0===c||!1!==c&&!!l,R=y()((t={},t[o+"-footer"]=!0,t[o+"-range-bottom"]=!0,t[o+"-footer-show-ok"]=P,t)),L=this.getStartValue(),D=this.getEndValue(),j=Object(S["e"])(L),N=j.month(),I=j.year(),$=L.year()===I&&L.month()===N||D.year()===I&&D.month()===N,F=L.clone().add(1,"months"),V=F.year()===D.year()&&F.month()===D.month(),B=n.renderFooter();return d.a.createElement("div",{ref:this.saveRoot,className:_,style:n.style,tabIndex:"0",onKeyDown:this.onKeyDown},n.renderSidebar(),d.a.createElement("div",{className:o+"-panel"},h&&v[0]&&v[1]?d.a.createElement("a",{role:"button",title:u.clear,onClick:this.clear},m||d.a.createElement("span",{className:o+"-clear-btn"})):null,d.a.createElement("div",{className:o+"-date-panel",onMouseLeave:"both"!==p?this.onDatePanelLeave:void 0,onMouseEnter:"both"!==p?this.onDatePanelEnter:void 0},d.a.createElement(k,i()({},n,C,{hoverValue:g,direction:"left",disabledTime:this.disabledStartTime,disabledMonth:this.disabledStartMonth,format:this.getFormat(),value:L,mode:b[0],placeholder:E,onInputChange:this.onStartInputChange,onInputSelect:this.onStartInputSelect,onValueChange:this.onStartValueChange,onPanelChange:this.onStartPanelChange,showDateInput:this.props.showDateInput,timePicker:l,showTimePicker:w||"time"===b[0],enablePrev:!0,enableNext:!V||this.isMonthYearPanelShow(b[1]),clearIcon:m})),d.a.createElement("span",{className:o+"-range-middle"},s),d.a.createElement(k,i()({},n,C,{hoverValue:g,direction:"right",format:this.getFormat(),timePickerDisabledTime:this.getEndDisableTime(),placeholder:M,value:D,mode:b[1],onInputChange:this.onEndInputChange,onInputSelect:this.onEndInputSelect,onValueChange:this.onEndValueChange,onPanelChange:this.onEndPanelChange,showDateInput:this.props.showDateInput,timePicker:l,showTimePicker:w||"time"===b[1],disabledTime:this.disabledEndTime,disabledMonth:this.disabledEndMonth,enablePrev:!V||this.isMonthYearPanelShow(b[0]),enableNext:!0,clearIcon:m}))),d.a.createElement("div",{className:R},f||n.timePicker||P||B?d.a.createElement("div",{className:o+"-footer-btn"},B,f?d.a.createElement(O["a"],i()({},n,{disabled:$,value:r.value[0],onToday:this.onToday,text:u.backToToday})):null,n.timePicker?d.a.createElement(A["a"],i()({},n,{showTimePicker:w||"time"===b[0]&&"time"===b[1],onOpenTimePicker:this.onOpenTimePicker,onCloseTimePicker:this.onCloseTimePicker,timePickerDisabled:!this.hasSelectedValue()||g.length})):null,P?d.a.createElement(T["a"],i()({},n,{onOk:this.onOk,okDisabled:!this.isAllowedDateAndTime(v)||!this.hasSelectedValue()||g.length})):null):null)))},t}(d.a.Component);F.propTypes=i()({},M["c"],{prefixCls:p.a.string,dateInputPlaceholder:p.a.any,seperator:p.a.string,defaultValue:p.a.any,value:p.a.any,hoverValue:p.a.any,mode:p.a.arrayOf(p.a.oneOf(["time","date","month","year","decade"])),showDateInput:p.a.bool,timePicker:p.a.any,showOk:p.a.bool,showToday:p.a.bool,defaultSelectedValue:p.a.array,selectedValue:p.a.array,onOk:p.a.func,showClear:p.a.bool,locale:p.a.object,onChange:p.a.func,onSelect:p.a.func,onValueChange:p.a.func,onHoverChange:p.a.func,onPanelChange:p.a.func,format:p.a.oneOfType([p.a.string,p.a.arrayOf(p.a.string)]),onClear:p.a.func,type:p.a.any,disabledDate:p.a.func,disabledTime:p.a.func,clearIcon:p.a.node,onKeyDown:p.a.func}),F.defaultProps=i()({},M["b"],{type:"both",seperator:"~",defaultSelectedValue:[],onValueChange:R,onHoverChange:R,onPanelChange:R,disabledTime:R,onInputSelect:R,showToday:!0,showDateInput:!0});var V=function(){var e=this;this.onDatePanelEnter=function(){e.hasSelectedValue()&&e.fireHoverValueChange(e.state.selectedValue.concat())},this.onDatePanelLeave=function(){e.hasSelectedValue()&&e.fireHoverValueChange([])},this.onSelect=function(t){var n=e.props.type,r=e.state,i=r.selectedValue,o=r.prevSelectedValue,a=r.firstSelectedValue,s=void 0;if("both"===n)a?e.compare(a,t)<0?(Object(S["h"])(o[1],t),s=[a,t]):(Object(S["h"])(o[0],t),Object(S["h"])(o[1],a),s=[t,a]):(Object(S["h"])(o[0],t),s=[t]);else if("start"===n){Object(S["h"])(o[0],t);var l=i[1];s=l&&e.compare(l,t)>0?[t,l]:[t]}else{var c=i[0];c&&e.compare(c,t)<=0?(Object(S["h"])(o[1],t),s=[c,t]):(Object(S["h"])(o[0],t),s=[t])}e.fireSelectValueChange(s)},this.onKeyDown=function(t){if("input"!==t.target.nodeName.toLowerCase()){var n=t.keyCode,r=t.ctrlKey||t.metaKey,i=e.state,o=i.selectedValue,a=i.hoverValue,s=i.firstSelectedValue,l=i.value,c=e.props,u=c.onKeyDown,h=c.disabledDate,d=function(n){var r=void 0,i=void 0,c=void 0;if(s?1===a.length?(r=a[0].clone(),i=n(r),c=e.onDayHover(i)):(r=a[0].isSame(s,"day")?a[1]:a[0],i=n(r),c=e.onDayHover(i)):(r=a[0]||o[0]||l[0]||g()(),i=n(r),c=[i],e.fireHoverValueChange(c)),c.length>=2){var u=c.some(function(e){return!Object(P["d"])(l,e,"month")});if(u){var h=c.slice().sort(function(e,t){return e.valueOf()-t.valueOf()});h[0].isSame(h[1],"month")&&(h[1]=h[0].clone().add(1,"month")),e.fireValueChange(h)}}else if(1===c.length){var d=l.findIndex(function(e){return e.isSame(r,"month")});if(-1===d&&(d=0),l.every(function(e){return!e.isSame(i,"month")})){var f=l.slice();f[d]=i.clone(),e.fireValueChange(f)}}return t.preventDefault(),i};switch(n){case w["a"].DOWN:return void d(function(e){return Object(P["c"])(e,1,"weeks")});case w["a"].UP:return void d(function(e){return Object(P["c"])(e,-1,"weeks")});case w["a"].LEFT:return void d(r?function(e){return Object(P["c"])(e,-1,"years")}:function(e){return Object(P["c"])(e,-1,"days")});case w["a"].RIGHT:return void d(r?function(e){return Object(P["c"])(e,1,"years")}:function(e){return Object(P["c"])(e,1,"days")});case w["a"].HOME:return void d(function(e){return Object(P["b"])(e)});case w["a"].END:return void d(function(e){return Object(P["a"])(e)});case w["a"].PAGE_DOWN:return void d(function(e){return Object(P["c"])(e,1,"month")});case w["a"].PAGE_UP:return void d(function(e){return Object(P["c"])(e,-1,"month")});case w["a"].ENTER:var f=void 0;return f=0===a.length?d(function(e){return e}):1===a.length?a[0]:a[0].isSame(s,"day")?a[1]:a[0],!f||h&&h(f)||e.onSelect(f),void t.preventDefault();default:u&&u(t)}}},this.onDayHover=function(t){var n=[],r=e.state,i=r.selectedValue,o=r.firstSelectedValue,a=e.props.type;if("start"===a&&i[1])n=e.compare(t,i[1])<0?[t,i[1]]:[t];else if("end"===a&&i[0])n=e.compare(t,i[0])>0?[i[0],t]:[];else{if(!o)return e.state.hoverValue.length&&e.setState({hoverValue:[]}),n;n=e.compare(t,o)<0?[t,o]:[o,t]}return e.fireHoverValueChange(n),n},this.onToday=function(){var t=Object(S["e"])(e.state.value[0]),n=t.clone().add(1,"months");e.setState({value:[t,n]})},this.onOpenTimePicker=function(){e.setState({showTimePicker:!0})},this.onCloseTimePicker=function(){e.setState({showTimePicker:!1})},this.onOk=function(){var t=e.state.selectedValue;e.isAllowedDateAndTime(t)&&e.props.onOk(e.state.selectedValue)},this.onStartInputChange=function(){for(var t=arguments.length,n=Array(t),r=0;r-1},this.hasSelectedValue=function(){var t=e.state.selectedValue;return!!t[1]&&!!t[0]},this.compare=function(t,n){return e.props.timePicker?t.diff(n):t.diff(n,"days")},this.fireSelectValueChange=function(t,n,r){var i=e.props.timePicker,o=e.state.prevSelectedValue;if(i&&i.props.defaultValue){var a=i.props.defaultValue;!o[0]&&t[0]&&Object(S["h"])(a[0],t[0]),!o[1]&&t[1]&&Object(S["h"])(a[1],t[1])}if("selectedValue"in e.props||e.setState({selectedValue:t}),!e.state.selectedValue[0]||!e.state.selectedValue[1]){var s=t[0]||g()(),l=t[1]||s.clone().add(1,"months");e.setState({selectedValue:t,value:j([s,l])})}t[0]&&!t[1]&&(e.setState({firstSelectedValue:t[0]}),e.fireHoverValueChange(t.concat())),e.props.onChange(t),(n||t[0]&&t[1])&&(e.setState({prevSelectedValue:t,firstSelectedValue:null}),e.fireHoverValueChange([]),e.props.onSelect(t,r))},this.fireValueChange=function(t){var n=e.props;"value"in n||e.setState({value:t}),n.onValueChange(t)},this.fireHoverValueChange=function(t){var n=e.props;"hoverValue"in n||e.setState({hoverValue:t}),n.onHoverChange(t)},this.clear=function(){e.fireSelectValueChange([],!0),e.props.onClear()},this.disabledStartTime=function(t){return e.props.disabledTime(t,"start")},this.disabledEndTime=function(t){return e.props.disabledTime(t,"end")},this.disabledStartMonth=function(t){var n=e.state.value;return t.isAfter(n[1],"month")},this.disabledEndMonth=function(t){var n=e.state.value;return t.isBefore(n[0],"month")}};Object(b["polyfill"])(F);t["a"]=Object(M["a"])(F)},t23M:function(e,t,n){"use strict";function r(e){return r="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},r(e)}function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){for(var n=0;n1)v.default(!1,"Find more than one child node with `children` in ResizeObserver. Will only observe first one.");else if(0===t.length)return v.default(!1,"`children` of ResizeObserver is empty. Nothing is in observe."),null;var n=t[0];if(p.isValidElement(n)&&w.supportRef(n)){var r=n.ref;t[0]=p.cloneElement(n,{ref:y.composeRef(r,this.setChildNode)})}return 1===t.length?t[0]:t.map(function(e,t){return!p.isValidElement(e)||"key"in e&&null!==e.key?e:p.cloneElement(e,{key:"".concat(x,"-").concat(t)})})}}]),t}(p.Component);_.displayName="ResizeObserver",t.default=_},t3Un:function(e,t,n){"use strict";n.d(t,"b",function(){return v}),n.d(t,"a",function(){return y});var r=n("d6i3"),i=n.n(r),o=n("p0pE"),a=n.n(o),s=(n("/xke"),n("TeRw")),l=n("1l/V"),c=n.n(l),u=n("Hg0r"),h=n("20nU"),d=h["a"].serviceHost;function f(e,t){return p.apply(this,arguments)}function p(){return p=c()(i.a.mark(function e(t,n){var r,o;return i.a.wrap(function(e){while(1)switch(e.prev=e.next){case 0:return n=n||{},n.credentials="include",-1!==t.indexOf("http")?t+=t.indexOf("?")>0?"&":"?":t=d+t,e.next=5,Object(u["b"])(t,n);case 5:if(r=e.sent,o={},"application/json"!==r.headers.get("content-type")){e.next=13;break}return e.next=10,r.json();case 10:o=e.sent,e.next=17;break;case 13:return e.next=15,r.arrayBuffer();case 15:e.t0=e.sent,o={buffer:e.t0};case 17:if(403!==r.status){e.next=20;break}return window.location.href=window.location.origin+window.location.pathname,e.abrupt("return",{code:r.status,msg:o.message});case 20:if(200===r.status){e.next=26;break}if(!o.errors){e.next=24;break}return s["a"].error({message:"\u8bf7\u6c42\u5931\u8d25",description:Object.values(o.errors)[0][0],duration:1.5}),e.abrupt("return",{code:r.status,msg:Object.values(o.errors)[0][0]});case 24:return s["a"].error({message:"\u8bf7\u6c42\u5931\u8d25",description:o.message,duration:1.5}),e.abrupt("return",{code:r.status,msg:o.message});case 26:return e.abrupt("return",a()({code:r.status},o));case 27:case"end":return e.stop()}},e)})),p.apply(this,arguments)}var m=(e,t,n)=>{if(null!==t){if("undefined"!==typeof t)if("object"===typeof t)for(var r in t)m(e+"["+r+"]",t[r],n);else n.push("".concat(e,"=").concat(encodeURIComponent(t)))}else n.push("".concat(e,"="))};function g(e){if(!e)return"";if("object"===typeof e&&!(e instanceof Array)){var t=[];for(var n in e)m(n,e[n],t);return t.join("&")}return""}function v(e,t){return f(e,{method:"POST",headers:{"Content-Type":"application/x-www-form-urlencoded"},body:g(t)})}function y(e,t){var n=g(t);return f(n?e+(e.indexOf("?")>0?"&":"?")+n:e,null)}},tAuX:function(e,t){function n(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)if(Object.prototype.hasOwnProperty.call(e,n)){var r=Object.defineProperty&&Object.getOwnPropertyDescriptor?Object.getOwnPropertyDescriptor(e,n):{};r.get||r.set?Object.defineProperty(t,n,r):t[n]=e[n]}return t["default"]=e,t}e.exports=n},tEej:function(e,t,n){var r=n("Ojgd"),i=Math.min;e.exports=function(e){return e>0?i(r(e),9007199254740991):0}},tGd3:function(e,t,n){var r=n("7vYJ"),i=n("u8+u"),o=n("+mmm");e.exports=function(e,t){if(r(e),i(t)&&t.constructor===e)return t;var n=o.f(e),a=n.resolve;return a(t),n.promise}},tI4l:function(e,t,n){"use strict";t["a"]={periodText:{month_price:"\u6708\u4ed8",quarter_price:"\u5b63\u4ed8",half_year_price:"\u534a\u5e74\u4ed8",year_price:"\u5e74\u4ed8",two_year_price:"\u4e24\u5e74\u4ed8",three_year_price:"\u4e09\u5e74\u4ed8",onetime_price:"\u4e00\u6b21\u6027",reset_price:"\u6d41\u91cf\u91cd\u7f6e\u5305"},tutorialCategoryText:{1:"Windows",2:"macOS",3:"iOS",4:"Android",5:"Linux",6:"\u8def\u7531\u5668"},tutorialCategoryIcon:{1:"fab fa-2x fa-windows",2:"fab fa-2x fa-apple",3:"fab fa-2x fa-apple",4:"fab fa-2x fa-android",5:"fab fa-2x fa-linux",6:"fa fa-2x fa-wifi"},orderStatusText:{0:"\u5f85\u652f\u4ed8",1:"\u5f00\u901a\u4e2d",2:"\u5df2\u53d6\u6d88",3:"\u5df2\u5b8c\u6210",4:"\u5df2\u6298\u62b5"},commissionStatusText:{0:"\u5f85\u786e\u8ba4",1:"\u53d1\u653e\u4e2d",2:"\u5df2\u53d1\u653e",3:"\u5df2\u9a73\u56de"},ticketStatusText:{0:"\u5f00\u542f",1:"\u5f85\u56de\u590d",2:"\u5f85\u7b54\u590d",3:"\u5173\u95ed"}}},tRgb:function(e,t,n){"use strict";var r=n("AU/w");function i(e){return s(e)||a(e)||o()}function o(){throw new TypeError("Invalid attempt to spread non-iterable instance")}function a(e){if(Symbol.iterator in Object(e)||"[object Arguments]"===Object.prototype.toString.call(e))return Array.from(e)}function s(e){if(Array.isArray(e)){for(var t=0,n=new Array(e.length);t2&&void 0!==arguments[2]&&arguments[2];r.inTimeTravelling?r.inTimeTravelling=!1:a(e,t,n)};return r.unlisten=o.listen(s),s(o.location,o.action,!0),r}return x(t,e),v(t,[{key:"componentWillUnmount",value:function(){this.unlisten(),this.unsubscribe()}},{key:"render",value:function(){var e=this.props,t=e.history,n=e.children;return i.a.createElement(l["e"],{history:t},n)}}]),t}(r["PureComponent"]);o.propTypes={store:a.a.shape({getState:a.a.func.isRequired,subscribe:a.a.func.isRequired}).isRequired,history:a.a.shape({action:a.a.string.isRequired,listen:a.a.func.isRequired,location:a.a.object.isRequired,push:a.a.func.isRequired}).isRequired,basename:a.a.string,children:a.a.oneOfType([a.a.func,a.a.node]),onLocationChanged:a.a.func.isRequired};var u=function(e){return{onLocationChanged:function(t,n,r){return e(Object(c["f"])(t,n,r))}}},h=function(e){var t=e.context||s["b"];if(null==t)throw"Please upgrade to react-redux v6";return i.a.createElement(t.Consumer,null,function(t){var n=t.store;return i.a.createElement(o,p({store:n},e))})};return h.propTypes={context:a.a.object},Object(s["c"])(null,u)(h)},S=C,E=function(e){var t=e.fromJS,n=e.merge,r=function(e){var r=t({location:e.location,action:e.action});return function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:r,i=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},o=i.type,a=i.payload;if(o===c["b"]){var s=a.location,l=a.action,u=a.isFirstRendering;return u?e:n(e,{location:t(s),action:l})}return e}};return r},k=E,O=function(e,t){if(!e)return e;var n=t.length;if(n){for(var r=e,i=0;i=0&&n.left>=0&&n.bottom>n.top&&n.right>n.left?n:null}function Ne(e,t,n,r){var i=Me.clone(e),o={width:t.width,height:t.height};return r.adjustX&&i.left=n.left&&i.left+o.width>n.right&&(o.width-=i.left+o.width-n.right),r.adjustX&&i.left+o.width>n.right&&(i.left=Math.max(n.right-o.width,n.left)),r.adjustY&&i.top=n.top&&i.top+o.height>n.bottom&&(o.height-=i.top+o.height-n.bottom),r.adjustY&&i.top+o.height>n.bottom&&(i.top=Math.max(n.bottom-o.height,n.top)),Me.mix(i,o)}function Ie(e){var t,n,r;if(Me.isWindow(e)||9===e.nodeType){var i=Me.getWindow(e);t={left:Me.getWindowScrollLeft(i),top:Me.getWindowScrollTop(i)},n=Me.viewportWidth(i),r=Me.viewportHeight(i)}else t=Me.offset(e),n=Me.outerWidth(e),r=Me.outerHeight(e);return t.width=n,t.height=r,t}function $e(e,t){var n=t.charAt(0),r=t.charAt(1),i=e.width,o=e.height,a=e.left,s=e.top;return"c"===n?s+=o/2:"b"===n&&(s+=o),"c"===r?a+=i/2:"r"===r&&(a+=i),{left:a,top:s}}function Fe(e,t,n,r,i){var o=$e(t,n[1]),a=$e(e,n[0]),s=[a.left-o.left,a.top-o.top];return{left:Math.round(e.left-s[0]+r[0]-i[0]),top:Math.round(e.top-s[1]+r[1]-i[1])}}function Ve(e,t,n){return e.leftn.right}function Be(e,t,n){return e.topn.bottom}function We(e,t,n){return e.left>n.right||e.left+t.widthn.bottom||e.top+t.height=n.right||r.top>=n.bottom}function Xe(e,t,n){var r=n.target||t,i=Ie(r),o=!Ye(r,n.overflow&&n.overflow.alwaysByViewport);return Ge(e,i,n,o)}function Qe(e,t,n){var r,i,o=Me.getDocument(e),a=o.defaultView||o.parentWindow,s=Me.getWindowScrollLeft(a),l=Me.getWindowScrollTop(a),c=Me.viewportWidth(a),u=Me.viewportHeight(a);r="pageX"in t?t.pageX:s+t.clientX,i="pageY"in t?t.pageY:l+t.clientY;var h={left:r,top:i,width:0,height:0},d=r>=0&&r<=s+c&&i>=0&&i<=l+u,f=[n.points[0],"cc"];return Ge(e,h,D({},n,{points:f}),d)}Xe.__getOffsetParent=Re,Xe.__getVisibleRectForElement=je;function Ze(e,t){var n=void 0;function r(){n&&(clearTimeout(n),n=null)}function i(){r(),n=setTimeout(e,t)}return i.clear=r,i}function Je(e,t){return e===t||!(!e||!t)&&("pageX"in t&&"pageY"in t?e.pageX===t.pageX&&e.pageY===t.pageY:"clientX"in t&&"clientY"in t&&(e.clientX===t.clientX&&e.clientY===t.clientY))}function et(e){return e&&"object"===typeof e&&e.window===e}function tt(e,t){var n=Math.floor(e),r=Math.floor(t);return Math.abs(n-r)<=1}function nt(e,t){e!==document.activeElement&&Object(y["a"])(t,e)&&e.focus()}function rt(e){return"function"===typeof e&&e?e():null}function it(e){return"object"===typeof e&&e?e:null}var ot=function(e){function t(){var e,n,r,i;a()(this,t);for(var o=arguments.length,s=Array(o),c=0;c1?(!n&&t&&(r.className+=" "+t),d.a.createElement("div",r)):d.a.Children.only(r.children)},t}(h["Component"]);ht.propTypes={children:p.a.any,className:p.a.string,visible:p.a.bool,hiddenClassName:p.a.string};var dt=ht,ft=function(e){function t(){return a()(this,t),l()(this,e.apply(this,arguments))}return u()(t,e),t.prototype.render=function(){var e=this.props,t=e.className;return e.visible||(t+=" "+e.hiddenClassName),d.a.createElement("div",{className:t,onMouseEnter:e.onMouseEnter,onMouseLeave:e.onMouseLeave,onMouseDown:e.onMouseDown,onTouchStart:e.onTouchStart,style:e.style},d.a.createElement(dt,{className:e.prefixCls+"-content",visible:e.visible},e.children))},t}(h["Component"]);ft.propTypes={hiddenClassName:p.a.string,className:p.a.string,prefixCls:p.a.string,onMouseEnter:p.a.func,onMouseLeave:p.a.func,onMouseDown:p.a.func,onTouchStart:p.a.func,children:p.a.any};var pt=ft,mt=function(e){function t(n){a()(this,t);var r=l()(this,e.call(this,n));return gt.call(r),r.state={stretchChecked:!1,targetWidth:void 0,targetHeight:void 0},r.savePopupRef=O.bind(r,"popupInstance"),r.saveAlignRef=O.bind(r,"alignInstance"),r}return u()(t,e),t.prototype.componentDidMount=function(){this.rootNode=this.getPopupDomNode(),this.setStretchSize()},t.prototype.componentDidUpdate=function(){this.setStretchSize()},t.prototype.getPopupDomNode=function(){return g.a.findDOMNode(this.popupInstance)},t.prototype.getMaskTransitionName=function(){var e=this.props,t=e.maskTransitionName,n=e.maskAnimation;return!t&&n&&(t=e.prefixCls+"-"+n),t},t.prototype.getTransitionName=function(){var e=this.props,t=e.transitionName;return!t&&e.animation&&(t=e.prefixCls+"-"+e.animation),t},t.prototype.getClassName=function(e){return this.props.prefixCls+" "+this.props.className+" "+e},t.prototype.getPopupElement=function(){var e=this,t=this.savePopupRef,n=this.state,r=n.stretchChecked,o=n.targetHeight,a=n.targetWidth,s=this.props,l=s.align,c=s.visible,u=s.prefixCls,h=s.style,f=s.getClassNameFromAlign,p=s.destroyPopupOnHide,m=s.stretch,g=s.children,v=s.onMouseEnter,y=s.onMouseLeave,b=s.onMouseDown,w=s.onTouchStart,x=this.getClassName(this.currentAlignClassName||f(l)),_=u+"-hidden";c||(this.currentAlignClassName=null);var C={};m&&(-1!==m.indexOf("height")?C.height=o:-1!==m.indexOf("minHeight")&&(C.minHeight=o),-1!==m.indexOf("width")?C.width=a:-1!==m.indexOf("minWidth")&&(C.minWidth=a),r||(C.visibility="hidden",setTimeout(function(){e.alignInstance&&e.alignInstance.forceAlign()},0)));var S=i()({},C,h,this.getZIndexStyle()),E={className:x,prefixCls:u,ref:t,onMouseEnter:v,onMouseLeave:y,onMouseDown:b,onTouchStart:w,style:S};return p?d.a.createElement(lt["a"],{component:"",exclusive:!0,transitionAppear:!0,transitionName:this.getTransitionName()},c?d.a.createElement(st,{target:this.getAlignTarget(),key:"popup",ref:this.saveAlignRef,monitorWindowResize:!0,align:l,onAlign:this.onAlign},d.a.createElement(pt,i()({visible:!0},E),g)):null):d.a.createElement(lt["a"],{component:"",exclusive:!0,transitionAppear:!0,transitionName:this.getTransitionName(),showProp:"xVisible"},d.a.createElement(st,{target:this.getAlignTarget(),key:"popup",ref:this.saveAlignRef,monitorWindowResize:!0,xVisible:c,childrenProps:{visible:"xVisible"},disabled:!c,align:l,onAlign:this.onAlign},d.a.createElement(pt,i()({hiddenClassName:_},E),g)))},t.prototype.getZIndexStyle=function(){var e={},t=this.props;return void 0!==t.zIndex&&(e.zIndex=t.zIndex),e},t.prototype.getMaskElement=function(){var e=this.props,t=void 0;if(e.mask){var n=this.getMaskTransitionName();t=d.a.createElement(dt,{style:this.getZIndexStyle(),key:"mask",className:e.prefixCls+"-mask",hiddenClassName:e.prefixCls+"-mask-hidden",visible:e.visible}),n&&(t=d.a.createElement(lt["a"],{key:"mask",showProp:"visible",transitionAppear:!0,component:"",transitionName:n},t))}return t},t.prototype.render=function(){return d.a.createElement("div",null,this.getMaskElement(),this.getPopupElement())},t}(h["Component"]);mt.propTypes={visible:p.a.bool,style:p.a.object,getClassNameFromAlign:p.a.func,onAlign:p.a.func,getRootDomNode:p.a.func,align:p.a.any,destroyPopupOnHide:p.a.bool,className:p.a.string,prefixCls:p.a.string,onMouseEnter:p.a.func,onMouseLeave:p.a.func,onMouseDown:p.a.func,onTouchStart:p.a.func,stretch:p.a.string,children:p.a.node,point:p.a.shape({pageX:p.a.number,pageY:p.a.number})};var gt=function(){var e=this;this.onAlign=function(t,n){var r=e.props,i=r.getClassNameFromAlign(n);e.currentAlignClassName!==i&&(e.currentAlignClassName=i,t.className=e.getClassName(i)),r.onAlign(t,n)},this.setStretchSize=function(){var t=e.props,n=t.stretch,r=t.getRootDomNode,i=t.visible,o=e.state,a=o.stretchChecked,s=o.targetHeight,l=o.targetWidth;if(n&&i){var c=r();if(c){var u=c.offsetHeight,h=c.offsetWidth;s===u&&l===h&&a||e.setState({stretchChecked:!0,targetHeight:u,targetWidth:h})}}else a&&e.setState({stretchChecked:!1})},this.getTargetElement=function(){return e.props.getRootDomNode()},this.getAlignTarget=function(){var t=e.props.point;return t||e.getTargetElement}},vt=mt;function yt(){}function bt(){return""}function wt(){return window.document}var xt=["onClick","onMouseDown","onTouchStart","onMouseEnter","onMouseLeave","onFocus","onBlur","onContextMenu"],_t=!!m["createPortal"],Ct={rcTrigger:p.a.shape({onPopupMouseDown:p.a.func})},St=function(e){function t(n){a()(this,t);var r=l()(this,e.call(this,n));Et.call(r);var i=void 0;return i="popupVisible"in n?!!n.popupVisible:!!n.defaultPopupVisible,r.state={prevPopupVisible:i,popupVisible:i},xt.forEach(function(e){r["fire"+e]=function(t){r.fireEvents(e,t)}}),r}return u()(t,e),t.prototype.getChildContext=function(){return{rcTrigger:{onPopupMouseDown:this.onPopupMouseDown}}},t.prototype.componentDidMount=function(){this.componentDidUpdate({},{popupVisible:this.state.popupVisible})},t.prototype.componentDidUpdate=function(e,t){var n=this.props,r=this.state,i=function(){t.popupVisible!==r.popupVisible&&n.afterPopupVisibleChange(r.popupVisible)};if(_t||this.renderComponent(null,i),r.popupVisible){var o=void 0;return this.clickOutsideHandler||!this.isClickToHide()&&!this.isContextMenuToShow()||(o=n.getDocument(),this.clickOutsideHandler=Object(b["a"])(o,"mousedown",this.onDocumentClick)),this.touchOutsideHandler||(o=o||n.getDocument(),this.touchOutsideHandler=Object(b["a"])(o,"touchstart",this.onDocumentClick)),!this.contextMenuOutsideHandler1&&this.isContextMenuToShow()&&(o=o||n.getDocument(),this.contextMenuOutsideHandler1=Object(b["a"])(o,"scroll",this.onContextMenuClose)),void(!this.contextMenuOutsideHandler2&&this.isContextMenuToShow()&&(this.contextMenuOutsideHandler2=Object(b["a"])(window,"blur",this.onContextMenuClose)))}this.clearOutsideHandler()},t.prototype.componentWillUnmount=function(){this.clearDelayTimer(),this.clearOutsideHandler(),clearTimeout(this.mouseDownTimeout)},t.getDerivedStateFromProps=function(e,t){var n=e.popupVisible,r={};return void 0!==n&&t.popupVisible!==n&&(r.popupVisible=n,r.prevPopupVisible=t.popupVisible),r},t.prototype.getPopupDomNode=function(){return this._component&&this._component.getPopupDomNode?this._component.getPopupDomNode():null},t.prototype.getPopupAlign=function(){var e=this.props,t=e.popupPlacement,n=e.popupAlign,r=e.builtinPlacements;return t&&r?E(r,t,n):n},t.prototype.setPopupVisible=function(e,t){var n=this.props.alignPoint,r=this.state.popupVisible;this.clearDelayTimer(),r!==e&&("popupVisible"in this.props||this.setState({popupVisible:e,prevPopupVisible:r}),this.props.onPopupVisibleChange(e)),n&&t&&this.setPoint(t)},t.prototype.delaySetPopupVisible=function(e,t,n){var r=this,i=1e3*t;if(this.clearDelayTimer(),i){var o=n?{pageX:n.pageX,pageY:n.pageY}:null;this.delayTimer=setTimeout(function(){r.setPopupVisible(e,o),r.clearDelayTimer()},i)}else this.setPopupVisible(e,n)},t.prototype.clearDelayTimer=function(){this.delayTimer&&(clearTimeout(this.delayTimer),this.delayTimer=null)},t.prototype.clearOutsideHandler=function(){this.clickOutsideHandler&&(this.clickOutsideHandler.remove(),this.clickOutsideHandler=null),this.contextMenuOutsideHandler1&&(this.contextMenuOutsideHandler1.remove(),this.contextMenuOutsideHandler1=null),this.contextMenuOutsideHandler2&&(this.contextMenuOutsideHandler2.remove(),this.contextMenuOutsideHandler2=null),this.touchOutsideHandler&&(this.touchOutsideHandler.remove(),this.touchOutsideHandler=null)},t.prototype.createTwoChains=function(e){var t=this.props.children.props,n=this.props;return t[e]&&n[e]?this["fire"+e]:t[e]||n[e]},t.prototype.isClickToShow=function(){var e=this.props,t=e.action,n=e.showAction;return-1!==t.indexOf("click")||-1!==n.indexOf("click")},t.prototype.isContextMenuToShow=function(){var e=this.props,t=e.action,n=e.showAction;return-1!==t.indexOf("contextMenu")||-1!==n.indexOf("contextMenu")},t.prototype.isClickToHide=function(){var e=this.props,t=e.action,n=e.hideAction;return-1!==t.indexOf("click")||-1!==n.indexOf("click")},t.prototype.isMouseEnterToShow=function(){var e=this.props,t=e.action,n=e.showAction;return-1!==t.indexOf("hover")||-1!==n.indexOf("mouseEnter")},t.prototype.isMouseLeaveToHide=function(){var e=this.props,t=e.action,n=e.hideAction;return-1!==t.indexOf("hover")||-1!==n.indexOf("mouseLeave")},t.prototype.isFocusToShow=function(){var e=this.props,t=e.action,n=e.showAction;return-1!==t.indexOf("focus")||-1!==n.indexOf("focus")},t.prototype.isBlurToHide=function(){var e=this.props,t=e.action,n=e.hideAction;return-1!==t.indexOf("focus")||-1!==n.indexOf("blur")},t.prototype.forcePopupAlign=function(){this.state.popupVisible&&this._component&&this._component.alignInstance&&this._component.alignInstance.forceAlign()},t.prototype.fireEvents=function(e,t){var n=this.props.children.props[e];n&&n(t);var r=this.props[e];r&&r(t)},t.prototype.close=function(){this.setPopupVisible(!1)},t.prototype.render=function(){var e=this,t=this.state.popupVisible,n=this.props,r=n.children,i=n.forceRender,o=n.alignPoint,a=n.className,s=d.a.Children.only(r),l={key:"trigger"};this.isContextMenuToShow()?l.onContextMenu=this.onContextMenu:l.onContextMenu=this.createTwoChains("onContextMenu"),this.isClickToHide()||this.isClickToShow()?(l.onClick=this.onClick,l.onMouseDown=this.onMouseDown,l.onTouchStart=this.onTouchStart):(l.onClick=this.createTwoChains("onClick"),l.onMouseDown=this.createTwoChains("onMouseDown"),l.onTouchStart=this.createTwoChains("onTouchStart")),this.isMouseEnterToShow()?(l.onMouseEnter=this.onMouseEnter,o&&(l.onMouseMove=this.onMouseMove)):l.onMouseEnter=this.createTwoChains("onMouseEnter"),this.isMouseLeaveToHide()?l.onMouseLeave=this.onMouseLeave:l.onMouseLeave=this.createTwoChains("onMouseLeave"),this.isFocusToShow()||this.isBlurToHide()?(l.onFocus=this.onFocus,l.onBlur=this.onBlur):(l.onFocus=this.createTwoChains("onFocus"),l.onBlur=this.createTwoChains("onBlur"));var c=C()(s&&s.props&&s.props.className,a);c&&(l.className=c);var u=d.a.cloneElement(s,l);if(!_t)return d.a.createElement(w["a"],{parent:this,visible:t,autoMount:!1,forceRender:i,getComponent:this.getComponent,getContainer:this.getContainer},function(t){var n=t.renderComponent;return e.renderComponent=n,u});var h=void 0;return(t||this._component||i)&&(h=d.a.createElement(x["a"],{key:"portal",getContainer:this.getContainer,didUpdate:this.handlePortalUpdate},this.getComponent())),[u,h]},t}(d.a.Component);St.propTypes={children:p.a.any,action:p.a.oneOfType([p.a.string,p.a.arrayOf(p.a.string)]),showAction:p.a.any,hideAction:p.a.any,getPopupClassNameFromAlign:p.a.any,onPopupVisibleChange:p.a.func,afterPopupVisibleChange:p.a.func,popup:p.a.oneOfType([p.a.node,p.a.func]).isRequired,popupStyle:p.a.object,prefixCls:p.a.string,popupClassName:p.a.string,className:p.a.string,popupPlacement:p.a.string,builtinPlacements:p.a.object,popupTransitionName:p.a.oneOfType([p.a.string,p.a.object]),popupAnimation:p.a.any,mouseEnterDelay:p.a.number,mouseLeaveDelay:p.a.number,zIndex:p.a.number,focusDelay:p.a.number,blurDelay:p.a.number,getPopupContainer:p.a.func,getDocument:p.a.func,forceRender:p.a.bool,destroyPopupOnHide:p.a.bool,mask:p.a.bool,maskClosable:p.a.bool,onPopupAlign:p.a.func,popupAlign:p.a.object,popupVisible:p.a.bool,defaultPopupVisible:p.a.bool,maskTransitionName:p.a.oneOfType([p.a.string,p.a.object]),maskAnimation:p.a.string,stretch:p.a.string,alignPoint:p.a.bool},St.contextTypes=Ct,St.childContextTypes=Ct,St.defaultProps={prefixCls:"rc-trigger-popup",getPopupClassNameFromAlign:bt,getDocument:wt,onPopupVisibleChange:yt,afterPopupVisibleChange:yt,onPopupAlign:yt,popupClassName:"",mouseEnterDelay:0,mouseLeaveDelay:.1,focusDelay:0,blurDelay:.15,popupStyle:{},destroyPopupOnHide:!1,popupAlign:{},defaultPopupVisible:!1,mask:!1,maskClosable:!0,action:[],showAction:[],hideAction:[]};var Et=function(){var e=this;this.onMouseEnter=function(t){var n=e.props.mouseEnterDelay;e.fireEvents("onMouseEnter",t),e.delaySetPopupVisible(!0,n,n?null:t)},this.onMouseMove=function(t){e.fireEvents("onMouseMove",t),e.setPoint(t)},this.onMouseLeave=function(t){e.fireEvents("onMouseLeave",t),e.delaySetPopupVisible(!1,e.props.mouseLeaveDelay)},this.onPopupMouseEnter=function(){e.clearDelayTimer()},this.onPopupMouseLeave=function(t){t.relatedTarget&&!t.relatedTarget.setTimeout&&e._component&&e._component.getPopupDomNode&&Object(y["a"])(e._component.getPopupDomNode(),t.relatedTarget)||e.delaySetPopupVisible(!1,e.props.mouseLeaveDelay)},this.onFocus=function(t){e.fireEvents("onFocus",t),e.clearDelayTimer(),e.isFocusToShow()&&(e.focusTime=Date.now(),e.delaySetPopupVisible(!0,e.props.focusDelay))},this.onMouseDown=function(t){e.fireEvents("onMouseDown",t),e.preClickTime=Date.now()},this.onTouchStart=function(t){e.fireEvents("onTouchStart",t),e.preTouchTime=Date.now()},this.onBlur=function(t){e.fireEvents("onBlur",t),e.clearDelayTimer(),e.isBlurToHide()&&e.delaySetPopupVisible(!1,e.props.blurDelay)},this.onContextMenu=function(t){t.preventDefault(),e.fireEvents("onContextMenu",t),e.setPopupVisible(!0,t)},this.onContextMenuClose=function(){e.isContextMenuToShow()&&e.close()},this.onClick=function(t){if(e.fireEvents("onClick",t),e.focusTime){var n=void 0;if(e.preClickTime&&e.preTouchTime?n=Math.min(e.preClickTime,e.preTouchTime):e.preClickTime?n=e.preClickTime:e.preTouchTime&&(n=e.preTouchTime),Math.abs(n-e.focusTime)<20)return;e.focusTime=0}e.preClickTime=0,e.preTouchTime=0,e.isClickToShow()&&(e.isClickToHide()||e.isBlurToHide())&&t&&t.preventDefault&&t.preventDefault();var r=!e.state.popupVisible;(e.isClickToHide()&&!r||r&&e.isClickToShow())&&e.setPopupVisible(!e.state.popupVisible,t)},this.onPopupMouseDown=function(){var t=e.context.rcTrigger,n=void 0===t?{}:t;e.hasPopupMouseDown=!0,clearTimeout(e.mouseDownTimeout),e.mouseDownTimeout=setTimeout(function(){e.hasPopupMouseDown=!1},0),n.onPopupMouseDown&&n.onPopupMouseDown.apply(n,arguments)},this.onDocumentClick=function(t){if(!e.props.mask||e.props.maskClosable){var n=t.target,r=Object(m["findDOMNode"])(e);Object(y["a"])(r,n)||e.hasPopupMouseDown||e.close()}},this.getRootDomNode=function(){return Object(m["findDOMNode"])(e)},this.getPopupClassNameFromAlign=function(t){var n=[],r=e.props,i=r.popupPlacement,o=r.builtinPlacements,a=r.prefixCls,s=r.alignPoint,l=r.getPopupClassNameFromAlign;return i&&o&&n.push(k(o,a,t,s)),l&&n.push(l(t)),n.join(" ")},this.getComponent=function(){var t=e.props,n=t.prefixCls,r=t.destroyPopupOnHide,o=t.popupClassName,a=t.action,s=t.onPopupAlign,l=t.popupAnimation,c=t.popupTransitionName,u=t.popupStyle,h=t.mask,f=t.maskAnimation,p=t.maskTransitionName,m=t.zIndex,g=t.popup,v=t.stretch,y=t.alignPoint,b=e.state,w=b.popupVisible,x=b.point,_=e.getPopupAlign(),C={};return e.isMouseEnterToShow()&&(C.onMouseEnter=e.onPopupMouseEnter),e.isMouseLeaveToHide()&&(C.onMouseLeave=e.onPopupMouseLeave),C.onMouseDown=e.onPopupMouseDown,C.onTouchStart=e.onPopupMouseDown,d.a.createElement(vt,i()({prefixCls:n,destroyPopupOnHide:r,visible:w,point:y&&x,className:o,action:a,align:_,onAlign:s,animation:l,getClassNameFromAlign:e.getPopupClassNameFromAlign},C,{stretch:v,getRootDomNode:e.getRootDomNode,style:u,mask:h,zIndex:m,transitionName:c,maskAnimation:f,maskTransitionName:p,ref:e.savePopup}),"function"===typeof g?g():g)},this.getContainer=function(){var t=e.props,n=document.createElement("div");n.style.position="absolute",n.style.top="0",n.style.left="0",n.style.width="100%";var r=t.getPopupContainer?t.getPopupContainer(Object(m["findDOMNode"])(e)):t.getDocument().body;return r.appendChild(n),n},this.setPoint=function(t){var n=e.props.alignPoint;n&&t&&e.setState({point:{pageX:t.pageX,pageY:t.pageY}})},this.handlePortalUpdate=function(){e.state.prevPopupVisible!==e.state.popupVisible&&e.props.afterPopupVisibleChange(e.state.popupVisible)},this.savePopup=function(t){e._component=t}};Object(v["polyfill"])(St);t["a"]=St},umNf:function(e,t,n){(function(e){ace.define("ace/theme/github",["require","exports","module","ace/lib/dom"],function(e,t,n){t.isDark=!1,t.cssClass="ace-github",t.cssText='.ace-github .ace_gutter {background: #e8e8e8;color: #AAA;}.ace-github {background: #fff;color: #000;}.ace-github .ace_keyword {font-weight: bold;}.ace-github .ace_string {color: #D14;}.ace-github .ace_variable.ace_class {color: teal;}.ace-github .ace_constant.ace_numeric {color: #099;}.ace-github .ace_constant.ace_buildin {color: #0086B3;}.ace-github .ace_support.ace_function {color: #0086B3;}.ace-github .ace_comment {color: #998;font-style: italic;}.ace-github .ace_variable.ace_language {color: #0086B3;}.ace-github .ace_paren {font-weight: bold;}.ace-github .ace_boolean {font-weight: bold;}.ace-github .ace_string.ace_regexp {color: #009926;font-weight: normal;}.ace-github .ace_variable.ace_instance {color: teal;}.ace-github .ace_constant.ace_language {font-weight: bold;}.ace-github .ace_cursor {color: black;}.ace-github.ace_focus .ace_marker-layer .ace_active-line {background: rgb(255, 255, 204);}.ace-github .ace_marker-layer .ace_active-line {background: rgb(245, 245, 245);}.ace-github .ace_marker-layer .ace_selection {background: rgb(181, 213, 255);}.ace-github.ace_multiselect .ace_selection.ace_start {box-shadow: 0 0 3px 0px white;}.ace-github.ace_nobold .ace_line > span {font-weight: normal !important;}.ace-github .ace_marker-layer .ace_step {background: rgb(252, 255, 0);}.ace-github .ace_marker-layer .ace_stack {background: rgb(164, 229, 101);}.ace-github .ace_marker-layer .ace_bracket {margin: -1px 0 0 -1px;border: 1px solid rgb(192, 192, 192);}.ace-github .ace_gutter-active-line {background-color : rgba(0, 0, 0, 0.07);}.ace-github .ace_marker-layer .ace_selected-word {background: rgb(250, 250, 255);border: 1px solid rgb(200, 200, 250);}.ace-github .ace_invisible {color: #BFBFBF}.ace-github .ace_print-margin {width: 1px;background: #e8e8e8;}.ace-github .ace_indent-guide {background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAAE0lEQVQImWP4////f4bLly//BwAmVgd1/w11/gAAAABJRU5ErkJggg==") right repeat-y;}';var r=e("../lib/dom");r.importCssString(t.cssText,t.cssClass)}),function(){ace.require(["ace/theme/github"],function(t){e&&(e.exports=t)})}()}).call(this,n("YuTi")(e))},usdK:function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.push=o,t.replace=a,t.go=s,t.goBack=l,t.goForward=c,t.default=void 0;var r=i(n("RFCh"));function i(e){return e&&e.__esModule?e:{default:e}}function o(){r.default.push.apply(r.default,arguments)}function a(){r.default.replace.apply(r.default,arguments)}function s(){r.default.go.apply(r.default,arguments)}function l(){r.default.goBack.apply(r.default,arguments)}function c(){r.default.goForward.apply(r.default,arguments)}var u={push:o,replace:a,go:s,goBack:l,goForward:c};t.default=u},uzXD:function(e,t,n){"use strict";n.r(t);var r=n("jehZ"),i=n.n(r),o=(n("Mwp2"),n("VXEj")),a=(n("/zsF"),n("PArb")),s=(n("5NDa"),n("5rEg")),l=(n("+L6B"),n("2/Rp")),c=(n("miYZ"),n("tsqr")),u=(n("5Dmo"),n("3S7+")),h=(n("Awhp"),n("KrTs")),d=(n("BoS7"),n("Sdc0")),f=(n("qVdP"),n("jsC+")),p=(n("lUTK"),n("BvKs")),m=(n("Pwec"),n("CtXQ")),g=(n("+BJd"),n("mr32")),v=n("q1tI"),y=n.n(v),b=n("Bl7J"),w=n("H9LU"),x=n("qqou"),_=n("/MKj"),C=n("+QRC"),S=n.n(C),E=n("I1u9"),k=n("ykC2"),O=n("B6Jk"),T=n.n(O),A=n("yWgo"),M=n("AMgb"),P=n.n(M),R=n("Oa6W");class L extends y.a.Component{constructor(e){super(e),this.state={searchKey:void 0,sortMode:!0}}componentDidMount(){this.props.dispatch({type:"serverManage/getNodes"}),this.props.dispatch({type:"serverGroup/fetch"})}getTypeTag(e,t){switch(e){case"shadowsocks":return y.a.createElement(g["a"],{color:"#489851"},t);case"v2ray":return y.a.createElement(g["a"],{color:"#CB3180"},t);case"trojan":return y.a.createElement(g["a"],{color:"#EAB854"},t)}}getDispatchTypeByType(e,t){switch(e){case"shadowsocks":return"serverShadowsocks/".concat(t);case"v2ray":return"serverV2ray/".concat(t);case"trojan":return"serverTrojan/".concat(t)}}copy(e){this.props.dispatch({type:this.getDispatchTypeByType(e.type,"copy"),id:e.id})}update(e,t,n){this.props.dispatch({type:this.getDispatchTypeByType(e.type,"update"),id:e.id,key:t,value:n})}drop(e){this.props.dispatch({type:this.getDispatchTypeByType(e.type,"drop"),id:e.id})}render(){var e,t,n,r=this.props.serverManage,v=r.servers,_=r.fetchLoading,C=r.sortMode,O=this.props.serverGroup.groups,M=this.state.searchKey,L={0:"error",1:"warning",2:"processing"},D=(e,t)=>y.a.createElement(f["a"],{trigger:"click",overlay:y.a.createElement(p["a"],null,y.a.createElement(p["a"].Item,{onContextMenu:e=>{e.stopPropagation()}},"shadowsocks"===e.type&&y.a.createElement(w["a"],{key:e.id,record:e},y.a.createElement("a",null,y.a.createElement(m["a"],{type:"edit"})," \u7f16\u8f91")),"v2ray"===e.type&&y.a.createElement(E["a"],{key:e.id,record:e},y.a.createElement("a",null,y.a.createElement(m["a"],{type:"edit"})," \u7f16\u8f91")),"trojan"===e.type&&y.a.createElement(k["a"],{key:e.id,record:e},y.a.createElement("a",null,y.a.createElement(m["a"],{type:"edit"})," \u7f16\u8f91"))),y.a.createElement(p["a"].Item,{onClick:()=>this.copy(e)},y.a.createElement(m["a"],{type:"copy"})," \u590d\u5236"),y.a.createElement(p["a"].Item,{style:{color:"#ff4d4f"},onClick:()=>this.drop(e)},y.a.createElement(m["a"],{type:"delete"})," \u5220\u9664"))},t||y.a.createElement("a",{href:"javascript:void(0);"},"\u64cd\u4f5c ",y.a.createElement(m["a"],{type:"caret-down"}))),j=[{title:"\u64cd\u4f5c",dataIndex:"action",key:"action",align:"left",width:100,render:(e,t,n)=>{return y.a.createElement("div",null,D(t))}},{title:"\u8282\u70b9ID",dataIndex:"id",key:"id",width:150,render:(e,t)=>{return y.a.createElement("span",null,this.getTypeTag(t.type,t.parent_id?e+" => "+t.parent_id:e))}},{title:"\u663e\u9690",dataIndex:"show",key:"show",render:(e,t)=>{return y.a.createElement(d["a"],{size:"small",checked:parseInt(e),onClick:()=>this.update(t,"show",parseInt(e)?0:1)})}},{title:y.a.createElement("span",null,y.a.createElement(u["a"],{placement:"top",title:y.a.createElement("div",null,y.a.createElement(h["a"],{status:"error"})," \u672a\u8fd0\u884c",y.a.createElement("br",null),y.a.createElement(h["a"],{status:"warning"})," \u65e0\u4eba\u4f7f\u7528\u6216\u670d\u52a1\u7aef\u4e0a\u62a5\u5f02\u5e38",y.a.createElement("br",null),y.a.createElement(h["a"],{status:"processing"})," \u8fd0\u884c\u6b63\u5e38",y.a.createElement("br",null))},"\u8282\u70b9 ",y.a.createElement(m["a"],{type:"question-circle"}))),dataIndex:"name",key:"name",render:(e,t)=>{return y.a.createElement(y.a.Fragment,null,y.a.createElement(h["a"],{status:L[t.available_status]}),y.a.createElement("span",null,e))}},{title:"\u5730\u5740",dataIndex:"host",key:"host",render:(e,t)=>{return y.a.createElement("span",{style:{cursor:"pointer"},onClick:()=>{S()(t.host),c["a"].success("\u590d\u5236\u6210\u529f")}},t.host+":"+t.port)}},{title:y.a.createElement("span",null,y.a.createElement(u["a"],{placement:"top",title:"\u6839\u636e\u670d\u52a1\u7aef\u4e0a\u62a5\u9891\u7387\u800c\u5b9a"},"\u4eba\u6570 ",y.a.createElement(m["a"],{type:"question-circle"}))),dataIndex:"online",key:"online",align:"left",width:130,sorter:(e,t)=>e.online-t.online,render:e=>{return y.a.createElement(y.a.Fragment,null,y.a.createElement(m["a"],{type:"user"})," ",e||0)}},{title:y.a.createElement(u["a"],{placement:"top",title:"\u4f7f\u7528\u7684\u6d41\u91cf\u5c06\u4e58\u4ee5\u500d\u7387\u8fdb\u884c\u6263\u9664"},"\u500d\u7387 ",y.a.createElement(m["a"],{type:"question-circle"})),dataIndex:"rate",key:"rate",align:"center",render:e=>{return y.a.createElement(g["a"],{style:{minWidth:60}},e+" x")}},{title:"\u6743\u9650\u7ec4",dataIndex:"group_id",key:"group_id",align:"right",render:(e,t)=>{var n=[];return t.group_id.map(e=>{var t=O.find(t=>t.id===parseInt(e));t&&n.push(y.a.createElement(g["a"],null,t.name))}),y.a.createElement(y.a.Fragment,null,n)}}],N=this;return y.a.createElement(b["a"],i()({},this.props,{title:"\u8282\u70b9\u7ba1\u7406"}),y.a.createElement(P.a,{when:C,message:e=>{return window.confirm("\u8282\u70b9\u6392\u5e8f\u8fd8\u6ca1\u6709\u4fdd\u5b58\uff0c\u662f\u5426\u79bb\u5f00")}}),y.a.createElement("div",{className:"mb-0 block block-bottom ".concat(_?"block-mode-loading":""," ").concat(T.a.manage)},y.a.createElement("div",{className:"bg-white"},y.a.createElement("div",{className:"v2board-table-action",style:{padding:15}},y.a.createElement(f["a"],{overlay:y.a.createElement(p["a"],null,y.a.createElement(p["a"].Item,null,y.a.createElement(w["a"],{key:Math.random()},y.a.createElement("a",null,this.getTypeTag("shadowsocks","Shadowsocks")))),y.a.createElement(p["a"].Item,null,y.a.createElement(E["a"],{key:Math.random()},y.a.createElement("a",null,this.getTypeTag("v2ray","V2ray")))),y.a.createElement(p["a"].Item,null,y.a.createElement(k["a"],{key:Math.random()},y.a.createElement("a",null,this.getTypeTag("trojan","Trojan")))))},y.a.createElement(l["a"],null,y.a.createElement(m["a"],{type:"plus"}))),y.a.createElement(s["a"],{placeholder:"\u8f93\u5165\u4efb\u610f\u5173\u952e\u5b57\u641c\u7d22",style:{width:200},className:"ml-2",onChange:e=>this.setState({searchKey:e.target.value})}),!Object(A["c"])()&&y.a.createElement(l["a"],{style:{float:"right"},type:"primary",onClick:()=>{C?this.props.dispatch({type:"serverManage/saveSort"}):this.props.dispatch({type:"serverManage/setState",payload:{sortMode:!0}})}},C?"\u4fdd\u5b58\u6392\u5e8f":"\u7f16\u8f91\u6392\u5e8f")),Object(A["c"])()?y.a.createElement(o["a"],{className:"v2board-table",itemLayout:"vertical",dataSource:M?v.filter(e=>-1!==JSON.stringify(e).indexOf(M)):v,renderItem:e=>y.a.createElement(o["a"].Item,{className:"v2board_node_mobile ".concat(e.parent_id?"child_node":""),actions:[y.a.createElement(y.a.Fragment,null,this.getTypeTag(e.type,e.parent_id?e.id+" => "+e.parent_id:e.id),y.a.createElement(g["a"],null,y.a.createElement(m["a"],{type:"user"})," ",e.online||0),y.a.createElement(g["a"],null,e.rate," x"))],extra:y.a.createElement(y.a.Fragment,null,y.a.createElement(d["a"],{size:"small",checked:parseInt(e.show),onClick:()=>this.update(e,"show",parseInt(e.show)?0:1)}),y.a.createElement(a["a"],{type:"vertical"}),y.a.createElement("span",null,D(e)))},y.a.createElement(o["a"].Item.Meta,{title:y.a.createElement(y.a.Fragment,null,y.a.createElement(h["a"],{status:L[e.available_status]}),e.name),description:"".concat(e.host,":").concat(e.port)}))}):y.a.createElement(x["a"],{onDragEnd:(e,t)=>{N.props.dispatch({type:"serverManage/sort",fromIndex:e,toIndex:t})},nodeSelector:"tr",handleSelector:"i"},y.a.createElement(R["a"],{onContextMenu:e=>{this.record=e,this.forceUpdate()},disableRightClick:C,tableLayout:"auto",dataSource:M?v.filter(e=>-1!==JSON.stringify(e).indexOf(M)):v,columns:C?[{title:"\u6392\u5e8f",dataIndex:"sort",key:"sort",align:"left",width:100,render:(e,t,n)=>{return y.a.createElement("div",null,y.a.createElement(m["a"],{type:"drag",style:{cursor:"move"},title:"\u62d6\u52a8\u6392\u5e8f"}))}},...j].filter(e=>-1!==["sort","id","name"].indexOf(e.dataIndex)):j,pagination:!C&&{pageSize:20},scroll:{x:1300},rowClassName:e=>e.parent_id?"child_node":""},y.a.createElement("ul",{className:"ant-dropdown-menu ant-dropdown-menu-light ant-dropdown-menu-root ant-dropdown-menu-vertical"},y.a.createElement("li",{className:"ant-dropdown-menu-item"},"shadowsocks"===(null===(e=this.record)||void 0===e?void 0:e.type)&&y.a.createElement(w["a"],{key:Math.random(),record:this.record},y.a.createElement("a",null,y.a.createElement(m["a"],{type:"form"})," \u7f16\u8f91")),"v2ray"===(null===(t=this.record)||void 0===t?void 0:t.type)&&y.a.createElement(E["a"],{key:Math.random(),record:this.record},y.a.createElement("a",null,y.a.createElement(m["a"],{type:"form"})," \u7f16\u8f91")),"trojan"===(null===(n=this.record)||void 0===n?void 0:n.type)&&y.a.createElement(k["a"],{key:Math.random(),record:this.record},y.a.createElement("a",null,y.a.createElement(m["a"],{type:"form"})," \u7f16\u8f91"))),y.a.createElement("li",{onClick:()=>this.copy(this.record),className:"ant-dropdown-menu-item"},y.a.createElement("a",null,y.a.createElement(m["a"],{type:"copy"})," \u590d\u5236")),y.a.createElement("li",{onClick:()=>this.drop(this.record),className:"ant-dropdown-menu-item"},y.a.createElement("a",{style:{color:"#ff4d4f"}},y.a.createElement(m["a"],{type:"delete"})," \u5220\u9664"))))))))}}t["default"]=Object(_["c"])(e=>{var t=e.serverManage,n=e.serverGroup;return{serverManage:t,serverGroup:n}})(L)},vA3T:function(e,t,n){"use strict";var r=n("QbLZ"),i=n.n(r),o=n("jo6Y"),a=n.n(o),s=n("iCc5"),l=n.n(s),c=n("V7oC"),u=n.n(c),h=n("FYw3"),d=n.n(h),f=n("mRg0"),p=n.n(f),m=n("q1tI"),g=n.n(m),v=n("17x9"),y=n.n(v),b=n("YEIV"),w=n.n(b),x=n("TSYQ"),_=n.n(x),C=n("hsuR");function S(e,t){var n=e.props,r=n.styles,i=n.panels,o=n.activeKey,a=n.direction,s=e.props.getRef("root"),l=e.props.getRef("nav")||s,c=e.props.getRef("inkBar"),u=e.props.getRef("activeTab"),h=c.style,d=e.props.tabBarPosition,f=Object(C["a"])(i,o);if(t&&(h.display="none"),u){var p=u,m=Object(C["i"])(h);if(Object(C["k"])(h,""),h.width="",h.height="",h.left="",h.top="",h.bottom="",h.right="","top"===d||"bottom"===d){var g=Object(C["c"])(p,l),v=p.offsetWidth;v===s.offsetWidth?v=0:r.inkBar&&void 0!==r.inkBar.width&&(v=parseFloat(r.inkBar.width,10),v&&(g+=(p.offsetWidth-v)/2)),"rtl"===a&&(g=Object(C["e"])(p,"margin-left")-g),m?Object(C["k"])(h,"translate3d("+g+"px,0,0)"):h.left=g+"px",h.width=v+"px"}else{var y=Object(C["f"])(p,l,!0),b=p.offsetHeight;r.inkBar&&void 0!==r.inkBar.height&&(b=parseFloat(r.inkBar.height,10),b&&(y+=(p.offsetHeight-b)/2)),m?(Object(C["k"])(h,"translate3d(0,"+y+"px,0)"),h.top="0"):h.top=y+"px",h.height=b+"px"}}h.display=-1!==f?"block":"none"}var E=function(e){function t(){return l()(this,t),d()(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return p()(t,e),u()(t,[{key:"componentDidMount",value:function(){var e=this;this.timeout=setTimeout(function(){S(e,!0)},0)}},{key:"componentDidUpdate",value:function(){S(this)}},{key:"componentWillUnmount",value:function(){clearTimeout(this.timeout)}},{key:"render",value:function(){var e,t=this.props,n=t.prefixCls,r=t.styles,i=t.inkBarAnimated,o=n+"-ink-bar",a=_()((e={},w()(e,o,!0),w()(e,i?o+"-animated":o+"-no-animated",!0),e));return g.a.createElement("div",{style:r.inkBar,className:a,key:"inkBar",ref:this.props.saveRef("inkBar")})}}]),t}(g.a.Component),k=E;E.propTypes={prefixCls:y.a.string,styles:y.a.object,inkBarAnimated:y.a.bool,saveRef:y.a.func,direction:y.a.string},E.defaultProps={prefixCls:"",inkBarAnimated:!0,styles:{},saveRef:function(){}};var O=n("2W6z"),T=n.n(O),A=function(e){function t(){return l()(this,t),d()(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return p()(t,e),u()(t,[{key:"render",value:function(){var e=this,t=this.props,n=t.panels,r=t.activeKey,o=t.prefixCls,a=t.tabBarGutter,s=t.saveRef,l=t.tabBarPosition,c=t.renderTabBarNode,u=t.direction,h=[];return g.a.Children.forEach(n,function(t,d){if(t){var f=t.key,p=r===f?o+"-tab-active":"";p+=" "+o+"-tab";var m={};t.props.disabled?p+=" "+o+"-tab-disabled":m={onClick:e.props.onTabClick.bind(e,f)};var v={};r===f&&(v.ref=s("activeTab"));var y=a&&d===n.length-1?0:a,b="rtl"===u?"marginLeft":"marginRight",x=w()({},Object(C["j"])(l)?"marginBottom":b,y);T()("tab"in t.props,"There must be `tab` property on children of Tabs.");var _=g.a.createElement("div",i()({role:"tab","aria-disabled":t.props.disabled?"true":"false","aria-selected":r===f?"true":"false"},m,{className:p,key:f,style:x},v),t.props.tab);c&&(_=c(_)),h.push(_)}}),g.a.createElement("div",{ref:s("navTabsContainer")},h)}}]),t}(g.a.Component),M=A;A.propTypes={activeKey:y.a.string,panels:y.a.node,prefixCls:y.a.string,tabBarGutter:y.a.number,onTabClick:y.a.func,saveRef:y.a.func,renderTabBarNode:y.a.func,tabBarPosition:y.a.string,direction:y.a.string},A.defaultProps={panels:[],prefixCls:[],tabBarGutter:null,onTabClick:function(){},saveRef:function(){}};var P=function(e){function t(){return l()(this,t),d()(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return p()(t,e),u()(t,[{key:"render",value:function(){var e=this.props,t=e.prefixCls,n=e.onKeyDown,r=e.className,o=e.extraContent,s=e.style,l=e.tabBarPosition,c=e.children,u=a()(e,["prefixCls","onKeyDown","className","extraContent","style","tabBarPosition","children"]),h=_()(t+"-bar",w()({},r,!!r)),d="top"===l||"bottom"===l,f=d?{float:"right"}:{},p=o&&o.props?o.props.style:{},v=c;return o&&(v=[Object(m["cloneElement"])(o,{key:"extra",style:i()({},f,p)}),Object(m["cloneElement"])(c,{key:"content"})],v=d?v:v.reverse()),g.a.createElement("div",i()({role:"tablist",className:h,tabIndex:"0",ref:this.props.saveRef("root"),onKeyDown:n,style:s},Object(C["b"])(u)),v)}}]),t}(g.a.Component),R=P;P.propTypes={prefixCls:y.a.string,className:y.a.string,style:y.a.object,tabBarPosition:y.a.oneOf(["left","right","top","bottom"]),children:y.a.node,extraContent:y.a.node,onKeyDown:y.a.func,saveRef:y.a.func},P.defaultProps={prefixCls:"",className:"",style:{},tabBarPosition:"top",extraContent:null,children:null,onKeyDown:function(){},saveRef:function(){}};var L=n("sEfC"),D=n.n(L),j=n("bdgK"),N=function(e){function t(e){l()(this,t);var n=d()(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return n.prevTransitionEnd=function(e){if("opacity"===e.propertyName){var t=n.props.getRef("container");n.scrollToActiveTab({target:t,currentTarget:t})}},n.scrollToActiveTab=function(e){var t=n.props.getRef("activeTab"),r=n.props.getRef("navWrap");if((!e||e.target===e.currentTarget)&&t){var i=n.isNextPrevShown()&&n.lastNextPrevShown;if(n.lastNextPrevShown=n.isNextPrevShown(),i){var o=n.getScrollWH(t),a=n.getOffsetWH(r),s=n.offset,l=n.getOffsetLT(r),c=n.getOffsetLT(t);l>c?(s+=l-c,n.setOffset(s)):l+a=0)l=!1,this.setOffset(0,!1),o=0;else if(a1&&void 0!==arguments[1])||arguments[1],n=Math.min(0,e);if(this.offset!==n){this.offset=n;var r={},i=this.props.tabBarPosition,o=this.props.getRef("nav").style,a=Object(C["i"])(o);"left"===i||"right"===i?r=a?{value:"translate3d(0,"+n+"px,0)"}:{name:"top",value:n+"px"}:a?("rtl"===this.props.direction&&(n=-n),r={value:"translate3d("+n+"px,0,0)"}):r={name:"left",value:n+"px"},a?Object(C["k"])(o,r.value):o[r.name]=r.value,t&&this.setNextPrev()}}},{key:"setPrev",value:function(e){this.state.prev!==e&&this.setState({prev:e})}},{key:"setNext",value:function(e){this.state.next!==e&&this.setState({next:e})}},{key:"isNextPrevShown",value:function(e){return e?e.next||e.prev:this.state.next||this.state.prev}},{key:"render",value:function(){var e,t,n,r,i=this.state,o=i.next,a=i.prev,s=this.props,l=s.prefixCls,c=s.scrollAnimated,u=s.navWrapper,h=s.prevIcon,d=s.nextIcon,f=a||o,p=g.a.createElement("span",{onClick:a?this.prev:null,unselectable:"unselectable",className:_()((e={},w()(e,l+"-tab-prev",1),w()(e,l+"-tab-btn-disabled",!a),w()(e,l+"-tab-arrow-show",f),e)),onTransitionEnd:this.prevTransitionEnd},h||g.a.createElement("span",{className:l+"-tab-prev-icon"})),m=g.a.createElement("span",{onClick:o?this.next:null,unselectable:"unselectable",className:_()((t={},w()(t,l+"-tab-next",1),w()(t,l+"-tab-btn-disabled",!o),w()(t,l+"-tab-arrow-show",f),t))},d||g.a.createElement("span",{className:l+"-tab-next-icon"})),v=l+"-nav",y=_()((n={},w()(n,v,!0),w()(n,c?v+"-animated":v+"-no-animated",!0),n));return g.a.createElement("div",{className:_()((r={},w()(r,l+"-nav-container",1),w()(r,l+"-nav-container-scrolling",f),r)),key:"container",ref:this.props.saveRef("container")},p,m,g.a.createElement("div",{className:l+"-nav-wrap",ref:this.props.saveRef("navWrap")},g.a.createElement("div",{className:l+"-nav-scroll"},g.a.createElement("div",{className:y,ref:this.props.saveRef("nav")},u(this.props.children)))))}}]),t}(g.a.Component),I=N;N.propTypes={activeKey:y.a.string,getRef:y.a.func.isRequired,saveRef:y.a.func.isRequired,tabBarPosition:y.a.oneOf(["left","right","top","bottom"]),prefixCls:y.a.string,scrollAnimated:y.a.bool,onPrevClick:y.a.func,onNextClick:y.a.func,navWrapper:y.a.func,children:y.a.node,prevIcon:y.a.node,nextIcon:y.a.node,direction:y.a.node},N.defaultProps={tabBarPosition:"left",prefixCls:"",scrollAnimated:!0,onPrevClick:function(){},onNextClick:function(){},navWrapper:function(e){return e}};var $=function(e){function t(){var e,n,r,i;l()(this,t);for(var o=arguments.length,a=Array(o),s=0;sn)t.push(arguments[n++]);return v[++g]=function(){s("function"==typeof e?e:Function(e),t)},r(g),g},f=function(e){delete v[e]},"process"==n("2we2")(h)?r=function(e){h.nextTick(a(b,e,1))}:m&&m.now?r=function(e){m.now(a(b,e,1))}:p?(i=new p,o=i.port2,i.port1.onmessage=w,r=a(o.postMessage,o,1)):u.addEventListener&&"function"==typeof postMessage&&!u.importScripts?(r=function(e){u.postMessage(e+"","*")},u.addEventListener("message",w,!1)):r=y in c("script")?function(e){l.appendChild(c("script"))[y]=function(){l.removeChild(this),b.call(e)}}:function(e){setTimeout(a(b,e,1),0)}),e.exports={set:d,clear:f}},"vPd/":function(e,t,n){var r=n("kCCV"),i=n("IX3V").each;function o(e,t){this.query=e,this.isUnconditional=t,this.handlers=[],this.mql=window.matchMedia(e);var n=this;this.listener=function(e){n.mql=e.currentTarget||e,n.assess()},this.mql.addListener(this.listener)}o.prototype={constuctor:o,addHandler:function(e){var t=new r(e);this.handlers.push(t),this.matches()&&t.on()},removeHandler:function(e){var t=this.handlers;i(t,function(n,r){if(n.equals(e))return n.destroy(),!t.splice(r,1)})},matches:function(){return this.mql.matches||this.isUnconditional},clear:function(){i(this.handlers,function(e){e.destroy()}),this.mql.removeListener(this.listener),this.handlers.length=0},assess:function(){var e=this.matches()?"on":"off";i(this.handlers,function(t){t[e]()})}},e.exports=o},vgmO:function(e,t,n){(function(t){var n;n="undefined"!==typeof window?window:"undefined"!==typeof t?t:"undefined"!==typeof self?self:{},e.exports=n}).call(this,n("yLpj"))},vpQ4:function(e,t,n){"use strict";function r(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function i(e){for(var t=1;t=e.length?(this._t=void 0,i(1)):i(0,"keys"==t?n:"values"==t?e[n]:[n,e[n]])},"values"),o.Arguments=o.Array,r("keys"),r("values"),r("entries")},w6GO:function(e,t,n){var r=n("5vMV"),i=n("FpHa");e.exports=Object.keys||function(e){return r(e,i)}},w8uh:function(e,t,n){n("Jaki")("Uint16",2,function(e){return function(t,n,r){return e(this,t,n,r)}})},wCXF:function(e,t,n){"use strict";function r(e){"@babel/helpers - typeof";return r="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},r(e)}function i(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function o(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function a(e,t){for(var n=0;n0&&0===this.props.data.length&&this.hasScrollX()&&this.resetScrollX()}},{key:"componentWillUnmount",value:function(){this.resizeEvent&&this.resizeEvent.remove(),this.debouncedWindowResize&&this.debouncedWindowResize.cancel()}},{key:"setScrollPosition",value:function(e){if(this.scrollPosition=e,this.tableNode){var t=this.props.prefixCls;"both"===e?S.default(this.tableNode).remove(new RegExp("^".concat(t,"-scroll-position-.+$"))).add("".concat(t,"-scroll-position-left")).add("".concat(t,"-scroll-position-right")):S.default(this.tableNode).remove(new RegExp("^".concat(t,"-scroll-position-.+$"))).add("".concat(t,"-scroll-position-").concat(e))}}},{key:"setScrollPositionClassName",value:function(){var e=this.bodyTable,t=0===e.scrollLeft,n=e.scrollLeft+1>=e.children[0].getBoundingClientRect().width-e.getBoundingClientRect().width;t&&n?this.setScrollPosition("both"):t?this.setScrollPosition("left"):n?this.setScrollPosition("right"):"middle"!==this.scrollPosition&&this.setScrollPosition("middle")}},{key:"isTableLayoutFixed",value:function(){var e=this.props,t=e.tableLayout,n=e.columns,r=void 0===n?[]:n,i=e.useFixedHeader,o=e.scroll,a=void 0===o?{}:o;return"undefined"!==typeof t?"fixed"===t:!!r.some(function(e){var t=e.ellipsis;return!!t})||(!(!i&&!a.y)||!(!a.x||!0===a.x||"max-content"===a.x))}},{key:"resetScrollX",value:function(){this.headTable&&(this.headTable.scrollLeft=0),this.bodyTable&&(this.bodyTable.scrollLeft=0)}},{key:"hasScrollX",value:function(){var e=this.props.scroll,t=void 0===e?{}:e;return"x"in t}},{key:"renderMainTable",value:function(){var e=this.props,t=e.scroll,n=e.prefixCls,r=this.columnManager.isAnyColumnsFixed(),i=r||t.x||t.y,o=[this.renderTable({columns:this.columnManager.groupedColumns(),isAnyColumnsFixed:r}),this.renderEmptyText(),this.renderFooter()];return i?v.createElement("div",{className:"".concat(n,"-scroll")},o):o}},{key:"renderLeftFixedTable",value:function(){var e=this.props.prefixCls;return v.createElement("div",{className:"".concat(e,"-fixed-left")},this.renderTable({columns:this.columnManager.leftColumns(),fixed:"left"}))}},{key:"renderRightFixedTable",value:function(){var e=this.props.prefixCls;return v.createElement("div",{className:"".concat(e,"-fixed-right")},this.renderTable({columns:this.columnManager.rightColumns(),fixed:"right"}))}},{key:"renderTable",value:function(e){var t=e.columns,n=e.fixed,r=e.isAnyColumnsFixed,i=this.props,o=i.prefixCls,a=i.scroll,s=void 0===a?{}:a,l=s.x||n?"".concat(o,"-fixed"):"",c=v.createElement(A.default,{key:"head",columns:t,fixed:n,tableClassName:l,handleBodyScrollLeft:this.handleBodyScrollLeft,expander:this.expander}),u=v.createElement(M.default,{key:"body",columns:t,fixed:n,tableClassName:l,getRowKey:this.getRowKey,handleWheel:this.handleWheel,handleBodyScroll:this.handleBodyScroll,expander:this.expander,isAnyColumnsFixed:r});return[c,u]}},{key:"renderTitle",value:function(){var e=this.props,t=e.title,n=e.prefixCls;return t?v.createElement("div",{className:"".concat(n,"-title"),key:"title"},t(this.props.data)):null}},{key:"renderFooter",value:function(){var e=this.props,t=e.footer,n=e.prefixCls;return t?v.createElement("div",{className:"".concat(n,"-footer"),key:"footer"},t(this.props.data)):null}},{key:"renderEmptyText",value:function(){var e=this.props,t=e.emptyText,n=e.prefixCls,r=e.data;if(r.length)return null;var i="".concat(n,"-placeholder");return v.createElement("div",{className:i,key:"emptyText"},"function"===typeof t?t():t)}},{key:"render",value:function(){var e,t=this,n=this.props,r=n.prefixCls;this.state.columns?this.columnManager.reset(n.columns):this.state.children&&this.columnManager.reset(null,n.children);var o=E.default(n.prefixCls,n.className,(e={},i(e,"".concat(r,"-fixed-header"),n.useFixedHeader||n.scroll&&n.scroll.y),i(e,"".concat(r,"-scroll-position-left ").concat(r,"-scroll-position-right"),"both"===this.scrollPosition),i(e,"".concat(r,"-scroll-position-").concat(this.scrollPosition),"both"!==this.scrollPosition),i(e,"".concat(r,"-layout-fixed"),this.isTableLayoutFixed()),e)),a=this.columnManager.isAnyColumnsLeftFixed(),s=this.columnManager.isAnyColumnsRightFixed(),l=O.getDataAndAriaProps(n);return v.createElement(_.Provider,{store:this.store},v.createElement(L.default,Object.assign({},n,{columnManager:this.columnManager,getRowKey:this.getRowKey}),function(e){return t.expander=e,v.createElement("div",Object.assign({ref:t.saveTableNodeRef,className:o,style:n.style,id:n.id},l),t.renderTitle(),v.createElement("div",{className:"".concat(r,"-content")},t.renderMainTable(),a&&t.renderLeftFixedTable(),s&&t.renderRightFixedTable()))}))}}],[{key:"getDerivedStateFromProps",value:function(e,t){return e.columns&&e.columns!==t.columns?{columns:e.columns,children:null}:e.children!==t.children?{columns:null,children:e.children}:null}}]),n}(v.Component);D.childContextTypes={table:y.any,components:y.any},D.Column=P.default,D.ColumnGroup=R.default,D.defaultProps={data:[],useFixedHeader:!1,rowKey:"key",rowClassName:function(){return""},onRow:function(){},onHeaderRow:function(){},prefixCls:"rc-table",bodyStyle:{},style:{},showHeader:!0,scroll:{},rowRef:function(){return null},emptyText:function(){return"No Data"}},k.polyfill(D),t.default=D},wD64:function(e,t,n){"use strict";n.r(t);var r=n("d6i3"),i=n.n(r),o=n("p0pE"),a=n.n(o),s=n("t3Un"),l=n("3a4m"),c=n.n(l);t["default"]={name:"passport",state:{loginLoading:!1},reducers:{save(e,t){var n=t.payload;return a()({},e,n)}},effects:{check(e,t){return i.a.mark(function n(){var r,o,a;return i.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.redirect,o=t.put,n.next=4,Object(s["a"])("/passport/auth/check");case 4:if(a=n.sent,200===a.code){n.next=7;break}return n.abrupt("return");case 7:if(!a.data.is_admin){n.next=11;break}return n.next=10,o({type:"user/getUserInfo"});case 10:return n.abrupt("return",c.a.push(r||"dashboard"));case 11:case"end":return n.stop()}},n)})()},login(e,t){return i.a.mark(function n(){var r,o,a,l;return i.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.email,o=e.password,a=t.put,n.next=4,a({type:"save",payload:{loginLoading:!0}});case 4:return n.next=6,Object(s["b"])("/passport/auth/login",{email:r,password:o});case 6:return l=n.sent,n.next=9,a({type:"save",payload:{loginLoading:!1}});case 9:if(200===l.code){n.next=11;break}return n.abrupt("return");case 11:if(l.data.is_admin){n.next=13;break}return n.abrupt("return");case 13:return c.a.push("/dashboard"),n.next=16,a({type:"user/getUserInfo"});case 16:case"end":return n.stop()}},n)})()}}}},wHrr:function(e,t,n){var r=n("wYm8");e.exports=function(e,t,n){if(r(e),void 0===t)return e;switch(n){case 1:return function(n){return e.call(t,n)};case 2:return function(n,r){return e.call(t,n,r)};case 3:return function(n,r,i){return e.call(t,n,r,i)}}return function(){return e.apply(t,arguments)}}},wMpi:function(e,t){function n(e,t){if(null==e)return{};var n,r,i={},o=Object.keys(e);for(r=0;r=0||(i[n]=e[n]);return i}e.exports=n},wOl0:function(e,t,n){var r=function(e){"use strict";var t,n=Object.prototype,r=n.hasOwnProperty,i="function"===typeof Symbol?Symbol:{},o=i.iterator||"@@iterator",a=i.asyncIterator||"@@asyncIterator",s=i.toStringTag||"@@toStringTag";function l(e,t,n,r){var i=t&&t.prototype instanceof m?t:m,o=Object.create(i.prototype),a=new T(r||[]);return o._invoke=S(e,n,a),o}function c(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}e.wrap=l;var u="suspendedStart",h="suspendedYield",d="executing",f="completed",p={};function m(){}function g(){}function v(){}var y={};y[o]=function(){return this};var b=Object.getPrototypeOf,w=b&&b(b(A([])));w&&w!==n&&r.call(w,o)&&(y=w);var x=v.prototype=m.prototype=Object.create(y);function _(e){["next","throw","return"].forEach(function(t){e[t]=function(e){return this._invoke(t,e)}})}function C(e){function t(n,i,o,a){var s=c(e[n],e,i);if("throw"!==s.type){var l=s.arg,u=l.value;return u&&"object"===typeof u&&r.call(u,"__await")?Promise.resolve(u.__await).then(function(e){t("next",e,o,a)},function(e){t("throw",e,o,a)}):Promise.resolve(u).then(function(e){l.value=e,o(l)},function(e){return t("throw",e,o,a)})}a(s.arg)}var n;function i(e,r){function i(){return new Promise(function(n,i){t(e,r,n,i)})}return n=n?n.then(i,i):i()}this._invoke=i}function S(e,t,n){var r=u;return function(i,o){if(r===d)throw new Error("Generator is already running");if(r===f){if("throw"===i)throw o;return M()}n.method=i,n.arg=o;while(1){var a=n.delegate;if(a){var s=E(a,n);if(s){if(s===p)continue;return s}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if(r===u)throw r=f,n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);r=d;var l=c(e,t,n);if("normal"===l.type){if(r=n.done?f:h,l.arg===p)continue;return{value:l.arg,done:n.done}}"throw"===l.type&&(r=f,n.method="throw",n.arg=l.arg)}}}function E(e,n){var r=e.iterator[n.method];if(r===t){if(n.delegate=null,"throw"===n.method){if(e.iterator["return"]&&(n.method="return",n.arg=t,E(e,n),"throw"===n.method))return p;n.method="throw",n.arg=new TypeError("The iterator does not provide a 'throw' method")}return p}var i=c(r,e.iterator,n.arg);if("throw"===i.type)return n.method="throw",n.arg=i.arg,n.delegate=null,p;var o=i.arg;return o?o.done?(n[e.resultName]=o.value,n.next=e.nextLoc,"return"!==n.method&&(n.method="next",n.arg=t),n.delegate=null,p):o:(n.method="throw",n.arg=new TypeError("iterator result is not an object"),n.delegate=null,p)}function k(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function O(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function T(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(k,this),this.reset(!0)}function A(e){if(e){var n=e[o];if(n)return n.call(e);if("function"===typeof e.next)return e;if(!isNaN(e.length)){var i=-1,a=function n(){while(++i=0;--o){var a=this.tryEntries[o],s=a.completion;if("root"===a.tryLoc)return i("end");if(a.tryLoc<=this.prev){var l=r.call(a,"catchLoc"),c=r.call(a,"finallyLoc");if(l&&c){if(this.prev=0;--n){var i=this.tryEntries[n];if(i.tryLoc<=this.prev&&r.call(i,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),O(n),p}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var i=r.arg;O(n)}return i}}throw new Error("illegal catch attempt")},delegateYield:function(e,n,r){return this.delegate={iterator:A(e),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=t),p}},e}(e.exports);try{regeneratorRuntime=r}catch(e){Function("r","regeneratorRuntime = r")(r)}},wUWy:function(e,t){e.exports=function(e){try{return!!e()}catch(e){return!0}}},wYm8:function(e,t){e.exports=function(e){if("function"!=typeof e)throw TypeError(e+" is not a function!");return e}},wZXL:function(e,t,n){var r=n("vPd/"),i=n("IX3V"),o=i.each,a=i.isFunction,s=i.isArray;function l(){if(!window.matchMedia)throw new Error("matchMedia not present, legacy browsers require a polyfill");this.queries={},this.browserIsIncapable=!window.matchMedia("only all").matches}l.prototype={constructor:l,register:function(e,t,n){var i=this.queries,l=n&&this.browserIsIncapable;return i[e]||(i[e]=new r(e,l)),a(t)&&(t={match:t}),s(t)||(t=[t]),o(t,function(t){a(t)&&(t={match:t}),i[e].addHandler(t)}),this},unregister:function(e,t){var n=this.queries[e];return n&&(t?n.removeHandler(t):(n.clear(),delete this.queries[e])),this}},e.exports=l},wgeU:function(e,t){},"wgp+":function(e,t,n){"use strict";var r=n("q1tI"),i=n.n(r),o=n("17x9"),a=n.n(o),s=n("wd/R"),l=n.n(s),c=n("TSYQ"),u=n.n(c),h=n("VCL8");function d(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function f(e,t){for(var n=0;n=0||v&&v.indexOf(p.minute())>=0||y&&y.indexOf(p.second())>=0)return void n.setState({invalid:!0});if(f){if(f.hour()!==p.hour()||f.minute()!==p.minute()||f.second()!==p.second()){var b=f.clone();b.hour(p.hour()),b.minute(p.minute()),b.second(p.second()),d(b)}}else f!==p&&d(p)}else d(null);n.setState({invalid:!1})}),w(v(n),"onKeyDown",function(e){var t=n.props,r=t.onEsc,i=t.onKeyDown;27===e.keyCode&&r(),i(e)});var r=e.value,i=e.format;return n.state={str:r&&r.format(i)||"",invalid:!1},n}return y(t,e),p(t,[{key:"componentDidMount",value:function(){var e=this,t=this.props.focusOnOpen;if(t){var n=window.requestAnimationFrame||window.setTimeout;n(function(){e.refInput.focus(),e.refInput.select()})}}},{key:"componentDidUpdate",value:function(e){var t=this.props,n=t.value,r=t.format;n!==e.value&&this.setState({str:n&&n.format(r)||"",invalid:!1})}},{key:"getProtoValue",value:function(){var e=this.props,t=e.value,n=e.defaultOpenValue;return t||n}},{key:"getInput",value:function(){var e=this,t=this.props,n=t.prefixCls,r=t.placeholder,o=t.inputReadOnly,a=this.state,s=a.invalid,l=a.str,c=s?"".concat(n,"-input-invalid"):"";return i.a.createElement("input",{className:u()("".concat(n,"-input"),c),ref:function(t){e.refInput=t},onKeyDown:this.onKeyDown,value:l,placeholder:r,onChange:this.onInputChange,readOnly:!!o})}},{key:"render",value:function(){var e=this.props.prefixCls;return i.a.createElement("div",{className:"".concat(e,"-input-wrap")},this.getInput())}}]),t}(r["Component"]);w(x,"propTypes",{format:a.a.string,prefixCls:a.a.string,disabledDate:a.a.func,placeholder:a.a.string,clearText:a.a.string,value:a.a.object,inputReadOnly:a.a.bool,hourOptions:a.a.array,minuteOptions:a.a.array,secondOptions:a.a.array,disabledHours:a.a.func,disabledMinutes:a.a.func,disabledSeconds:a.a.func,onChange:a.a.func,onEsc:a.a.func,defaultOpenValue:a.a.object,currentSelectPanel:a.a.string,focusOnOpen:a.a.bool,onKeyDown:a.a.func,clearIcon:a.a.node}),w(x,"defaultProps",{inputReadOnly:!1});var _=x,C=n("i8i4"),S=n.n(C),E=n("xEkU"),k=n.n(E);function O(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function T(e,t){for(var n=0;n=0&&(r=!0),{value:n,disabled:r}},Y=function(e){function t(){var e,n;F(this,t);for(var r=arguments.length,i=new Array(r),o=0;o=12&&u.hour(u.hour()-12)),c(h)}else u.second(+t);i(u)}),K(z(n),"onEnterSelectPanel",function(e){var t=n.props.onCurrentSelectPanelChange;t(e)}),n}return U(t,e),B(t,[{key:"getHourSelect",value:function(e){var t=this,n=this.props,r=n.prefixCls,o=n.hourOptions,a=n.disabledHours,s=n.showHour,l=n.use12Hours,c=n.onEsc;if(!s)return null;var u,h,d=a();return l?(u=[12].concat(o.filter(function(e){return e<12&&e>0})),h=e%12||12):(u=o,h=e),i.a.createElement($,{prefixCls:r,options:u.map(function(e){return G(e,d)}),selectedIndex:u.indexOf(h),type:"hour",onSelect:this.onItemChange,onMouseEnter:function(){return t.onEnterSelectPanel("hour")},onEsc:c})}},{key:"getMinuteSelect",value:function(e){var t=this,n=this.props,r=n.prefixCls,o=n.minuteOptions,a=n.disabledMinutes,s=n.defaultOpenValue,l=n.showMinute,c=n.value,u=n.onEsc;if(!l)return null;var h=c||s,d=a(h.hour());return i.a.createElement($,{prefixCls:r,options:o.map(function(e){return G(e,d)}),selectedIndex:o.indexOf(e),type:"minute",onSelect:this.onItemChange,onMouseEnter:function(){return t.onEnterSelectPanel("minute")},onEsc:u})}},{key:"getSecondSelect",value:function(e){var t=this,n=this.props,r=n.prefixCls,o=n.secondOptions,a=n.disabledSeconds,s=n.showSecond,l=n.defaultOpenValue,c=n.value,u=n.onEsc;if(!s)return null;var h=c||l,d=a(h.hour(),h.minute());return i.a.createElement($,{prefixCls:r,options:o.map(function(e){return G(e,d)}),selectedIndex:o.indexOf(e),type:"second",onSelect:this.onItemChange,onMouseEnter:function(){return t.onEnterSelectPanel("second")},onEsc:u})}},{key:"getAMPMSelect",value:function(){var e=this,t=this.props,n=t.prefixCls,r=t.use12Hours,o=t.format,a=t.isAM,s=t.onEsc;if(!r)return null;var l=["am","pm"].map(function(e){return o.match(/\sA/)?e.toUpperCase():e}).map(function(e){return{value:e}}),c=a?0:1;return i.a.createElement($,{prefixCls:n,options:l,selectedIndex:c,type:"ampm",onSelect:this.onItemChange,onMouseEnter:function(){return e.onEnterSelectPanel("ampm")},onEsc:s})}},{key:"render",value:function(){var e=this.props,t=e.prefixCls,n=e.defaultOpenValue,r=e.value,o=r||n;return i.a.createElement("div",{className:"".concat(t,"-combobox")},this.getHourSelect(o.hour()),this.getMinuteSelect(o.minute()),this.getSecondSelect(o.second()),this.getAMPMSelect(o.hour()))}}]),t}(r["Component"]);K(Y,"propTypes",{format:a.a.string,defaultOpenValue:a.a.object,prefixCls:a.a.string,value:a.a.object,onChange:a.a.func,onAmPmChange:a.a.func,showHour:a.a.bool,showMinute:a.a.bool,showSecond:a.a.bool,hourOptions:a.a.array,minuteOptions:a.a.array,secondOptions:a.a.array,disabledHours:a.a.func,disabledMinutes:a.a.func,disabledSeconds:a.a.func,onCurrentSelectPanelChange:a.a.func,use12Hours:a.a.bool,onEsc:a.a.func,isAM:a.a.bool});var X=Y;function Q(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function Z(e){for(var t=1;t3&&void 0!==arguments[3]?arguments[3]:1,i=[],o=0;o=0&&n.hour()<12}},{key:"render",value:function(){var e=this.props,t=e.prefixCls,n=e.className,r=e.placeholder,o=e.disabledMinutes,a=e.disabledSeconds,s=e.hideDisabledOptions,l=e.showHour,c=e.showMinute,h=e.showSecond,d=e.format,f=e.defaultOpenValue,p=e.clearText,m=e.onEsc,g=e.addon,v=e.use12Hours,y=e.focusOnOpen,b=e.onKeyDown,w=e.hourStep,x=e.minuteStep,C=e.secondStep,S=e.inputReadOnly,E=e.clearIcon,k=this.state,O=k.value,T=k.currentSelectPanel,A=this.disabledHours(),M=o(O?O.hour():null),P=a(O?O.hour():null,O?O.minute():null),R=ce(24,A,s,w),L=ce(60,M,s,x),D=ce(60,P,s,C),j=ue(f,R,L,D);return i.a.createElement("div",{className:u()(n,"".concat(t,"-inner"))},i.a.createElement(_,{clearText:p,prefixCls:t,defaultOpenValue:j,value:O,currentSelectPanel:T,onEsc:m,format:d,placeholder:r,hourOptions:R,minuteOptions:L,secondOptions:D,disabledHours:this.disabledHours,disabledMinutes:o,disabledSeconds:a,onChange:this.onChange,focusOnOpen:y,onKeyDown:b,inputReadOnly:S,clearIcon:E}),i.a.createElement(X,{prefixCls:t,value:O,defaultOpenValue:j,format:d,onChange:this.onChange,onAmPmChange:this.onAmPmChange,showHour:l,showMinute:c,showSecond:h,hourOptions:R,minuteOptions:L,secondOptions:D,disabledHours:this.disabledHours,disabledMinutes:o,disabledSeconds:a,onCurrentSelectPanelChange:this.onCurrentSelectPanelChange,use12Hours:v,onEsc:m,isAM:this.isAM()}),g(this))}}],[{key:"getDerivedStateFromProps",value:function(e,t){return"value"in e?Z({},t,{value:e.value}):null}}]),t}(r["Component"]);se(he,"propTypes",{clearText:a.a.string,prefixCls:a.a.string,className:a.a.string,defaultOpenValue:a.a.object,value:a.a.object,placeholder:a.a.string,format:a.a.string,inputReadOnly:a.a.bool,disabledHours:a.a.func,disabledMinutes:a.a.func,disabledSeconds:a.a.func,hideDisabledOptions:a.a.bool,onChange:a.a.func,onAmPmChange:a.a.func,onEsc:a.a.func,showHour:a.a.bool,showMinute:a.a.bool,showSecond:a.a.bool,use12Hours:a.a.bool,hourStep:a.a.number,minuteStep:a.a.number,secondStep:a.a.number,addon:a.a.func,focusOnOpen:a.a.bool,onKeyDown:a.a.func,clearIcon:a.a.node}),se(he,"defaultProps",{prefixCls:"rc-time-picker-panel",onChange:le,disabledHours:le,disabledMinutes:le,disabledSeconds:le,defaultOpenValue:l()(),use12Hours:!1,addon:le,onKeyDown:le,onAmPmChange:le,inputReadOnly:!1}),Object(h["polyfill"])(he);t["a"]=he},wlPd:function(e,t,n){"use strict";var r=n("il4q"),i=n("Spc3"),o=n("OsVd");e.exports=[].copyWithin||function(e,t){var n=r(this),a=o(n.length),s=i(e,a),l=i(t,a),c=arguments.length>2?arguments[2]:void 0,u=Math.min((void 0===c?a:i(c,a))-l,a-s),h=1;l0)l in n?n[s]=n[l]:delete n[s],s+=h,l+=h;return n}},x1Ya:function(e,t,n){"use strict";var r=n("jo6Y"),i=n.n(r),o=n("QbLZ"),a=n.n(o),s=n("iCc5"),l=n.n(s),c=n("FYw3"),u=n.n(c),h=n("mRg0"),d=n.n(h),f=n("q1tI"),p=n.n(f),m=n("17x9"),g=n.n(m),v=n("TSYQ"),y=n.n(v),b=n("VCL8"),w=function(e){function t(n){l()(this,t);var r=u()(this,e.call(this,n));r.handleChange=function(e){var t=r.props,n=t.disabled,i=t.onChange;n||("checked"in r.props||r.setState({checked:e.target.checked}),i&&i({target:a()({},r.props,{checked:e.target.checked}),stopPropagation:function(){e.stopPropagation()},preventDefault:function(){e.preventDefault()},nativeEvent:e.nativeEvent}))},r.saveInput=function(e){r.input=e};var i="checked"in n?n.checked:n.defaultChecked;return r.state={checked:i},r}return d()(t,e),t.getDerivedStateFromProps=function(e,t){return"checked"in e?a()({},t,{checked:e.checked}):null},t.prototype.focus=function(){this.input.focus()},t.prototype.blur=function(){this.input.blur()},t.prototype.render=function(){var e,t=this.props,n=t.prefixCls,r=t.className,o=t.style,s=t.name,l=t.id,c=t.type,u=t.disabled,h=t.readOnly,d=t.tabIndex,f=t.onClick,m=t.onFocus,g=t.onBlur,v=t.autoFocus,b=t.value,w=i()(t,["prefixCls","className","style","name","id","type","disabled","readOnly","tabIndex","onClick","onFocus","onBlur","autoFocus","value"]),x=Object.keys(w).reduce(function(e,t){return"aria-"!==t.substr(0,5)&&"data-"!==t.substr(0,5)&&"role"!==t||(e[t]=w[t]),e},{}),_=this.state.checked,C=y()(n,r,(e={},e[n+"-checked"]=_,e[n+"-disabled"]=u,e));return p.a.createElement("span",{className:C,style:o},p.a.createElement("input",a()({name:s,id:l,type:c,readOnly:h,disabled:u,tabIndex:d,className:n+"-input",checked:!!_,onClick:f,onFocus:m,onBlur:g,onChange:this.handleChange,autoFocus:v,ref:this.saveInput,value:b},x)),p.a.createElement("span",{className:n+"-inner"}))},t}(f["Component"]);w.propTypes={prefixCls:g.a.string,className:g.a.string,style:g.a.object,name:g.a.string,id:g.a.string,type:g.a.string,defaultChecked:g.a.oneOfType([g.a.number,g.a.bool]),checked:g.a.oneOfType([g.a.number,g.a.bool]),disabled:g.a.bool,onFocus:g.a.func,onBlur:g.a.func,onChange:g.a.func,onClick:g.a.func,tabIndex:g.a.oneOfType([g.a.string,g.a.number]),readOnly:g.a.bool,autoFocus:g.a.bool,value:g.a.any},w.defaultProps={prefixCls:"rc-checkbox",className:"",style:{},type:"checkbox",defaultChecked:!1,onFocus:function(){},onBlur:function(){},onChange:function(){}},Object(b["polyfill"])(w);var x=w;t["a"]=x},x6Kt:function(e,t,n){"use strict";var r=n("IaEH"),i=n("y+Vt");function o(e,t){var n,r,i,o,a,s=t.x,l=t.y,c=t.width,u=t.height,h=t.r;c<0&&(s+=c,c=-c),u<0&&(l+=u,u=-u),"number"===typeof h?n=r=i=o=h:h instanceof Array?1===h.length?n=r=i=o=h[0]:2===h.length?(n=i=h[0],r=o=h[1]):3===h.length?(n=h[0],r=o=h[1],i=h[2]):(n=h[0],r=h[1],i=h[2],o=h[3]):n=r=i=o=0,n+r>c&&(a=n+r,n*=c/a,r*=c/a),i+o>c&&(a=i+o,i*=c/a,o*=c/a),r+i>u&&(a=r+i,r*=u/a,i*=u/a),n+o>u&&(a=n+o,n*=u/a,o*=u/a),e.moveTo(s+n,l),e.lineTo(s+c-r,l),0!==r&&e.arc(s+c-r,l+r,r,-Math.PI/2,0),e.lineTo(s+c,l+u-i),0!==i&&e.arc(s+c-i,l+u-i,i,0,Math.PI/2),e.lineTo(s+o,l+u),0!==o&&e.arc(s+o,l+u-o,o,Math.PI/2,Math.PI),e.lineTo(s,l+n),0!==n&&e.arc(s+n,l+n,n,Math.PI,1.5*Math.PI)}var a=n("nPnh"),s=function(){function e(){this.x=0,this.y=0,this.width=0,this.height=0}return e}(),l={},c=function(e){function t(t){return e.call(this,t)||this}return Object(r["a"])(t,e),t.prototype.getDefaultShape=function(){return new s},t.prototype.buildPath=function(e,t){var n,r,i,s;if(this.subPixelOptimize){var c=Object(a["c"])(l,t,this.style);n=c.x,r=c.y,i=c.width,s=c.height,c.r=t.r,t=c}else n=t.x,r=t.y,i=t.width,s=t.height;t.r?o(e,t):e.rect(n,r,i,s)},t.prototype.isZeroArea=function(){return!this.shape.width||!this.shape.height},t}(i["b"]);c.prototype.type="rect";t["a"]=c},xEkU:function(e,t,n){(function(t){for(var r=n("bQgK"),i="undefined"===typeof window?t:window,o=["moz","webkit"],a="AnimationFrame",s=i["request"+a],l=i["cancel"+a]||i["cancelRequest"+a],c=0;!s&&c=55296&&s<=57343){if(s>=55296&&s<=56319&&r+1=56320&&l<=57343)){u+=encodeURIComponent(e[r]+e[r+1]),r++;continue}u+="%EF%BF%BD"}else u+=encodeURIComponent(e[r]);return u}o.defaultChars=";/?:@&=+$,-_.!~*'()#",o.componentChars="-_.!~*'()",e.exports=o},xI0J:function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.create=t.connect=t.Provider=void 0;var r=n("Z4ex"),i=c(r),o=n("V/6I"),a=c(o),s=n("luuN"),l=c(s);function c(e){return e&&e.__esModule?e:{default:e}}t.Provider=i.default,t.connect=a.default,t.create=l.default},xJie:function(e,t,n){var r=n("oxo0"),i=n("OeOC"),o=n("Lnex")(!1),a=n("J57/")("IE_PROTO");e.exports=function(e,t){var n,s=i(e),l=0,c=[];for(n in s)n!=a&&r(s,n)&&c.push(n);while(t.length>l)r(s,n=t[l++])&&(~o(c,n)||c.push(n));return c}},xKz9:function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=u;var r=o(n("q1tI")),i=o(n("CnBM"));function o(e){return e&&e.__esModule?e:{default:e}}function a(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function s(e){for(var t=1;t","GT":">","Gt":"\u226b","gtdot":"\u22d7","gtlPar":"\u2995","gtquest":"\u2a7c","gtrapprox":"\u2a86","gtrarr":"\u2978","gtrdot":"\u22d7","gtreqless":"\u22db","gtreqqless":"\u2a8c","gtrless":"\u2277","gtrsim":"\u2273","gvertneqq":"\u2269\ufe00","gvnE":"\u2269\ufe00","Hacek":"\u02c7","hairsp":"\u200a","half":"\xbd","hamilt":"\u210b","HARDcy":"\u042a","hardcy":"\u044a","harrcir":"\u2948","harr":"\u2194","hArr":"\u21d4","harrw":"\u21ad","Hat":"^","hbar":"\u210f","Hcirc":"\u0124","hcirc":"\u0125","hearts":"\u2665","heartsuit":"\u2665","hellip":"\u2026","hercon":"\u22b9","hfr":"\ud835\udd25","Hfr":"\u210c","HilbertSpace":"\u210b","hksearow":"\u2925","hkswarow":"\u2926","hoarr":"\u21ff","homtht":"\u223b","hookleftarrow":"\u21a9","hookrightarrow":"\u21aa","hopf":"\ud835\udd59","Hopf":"\u210d","horbar":"\u2015","HorizontalLine":"\u2500","hscr":"\ud835\udcbd","Hscr":"\u210b","hslash":"\u210f","Hstrok":"\u0126","hstrok":"\u0127","HumpDownHump":"\u224e","HumpEqual":"\u224f","hybull":"\u2043","hyphen":"\u2010","Iacute":"\xcd","iacute":"\xed","ic":"\u2063","Icirc":"\xce","icirc":"\xee","Icy":"\u0418","icy":"\u0438","Idot":"\u0130","IEcy":"\u0415","iecy":"\u0435","iexcl":"\xa1","iff":"\u21d4","ifr":"\ud835\udd26","Ifr":"\u2111","Igrave":"\xcc","igrave":"\xec","ii":"\u2148","iiiint":"\u2a0c","iiint":"\u222d","iinfin":"\u29dc","iiota":"\u2129","IJlig":"\u0132","ijlig":"\u0133","Imacr":"\u012a","imacr":"\u012b","image":"\u2111","ImaginaryI":"\u2148","imagline":"\u2110","imagpart":"\u2111","imath":"\u0131","Im":"\u2111","imof":"\u22b7","imped":"\u01b5","Implies":"\u21d2","incare":"\u2105","in":"\u2208","infin":"\u221e","infintie":"\u29dd","inodot":"\u0131","intcal":"\u22ba","int":"\u222b","Int":"\u222c","integers":"\u2124","Integral":"\u222b","intercal":"\u22ba","Intersection":"\u22c2","intlarhk":"\u2a17","intprod":"\u2a3c","InvisibleComma":"\u2063","InvisibleTimes":"\u2062","IOcy":"\u0401","iocy":"\u0451","Iogon":"\u012e","iogon":"\u012f","Iopf":"\ud835\udd40","iopf":"\ud835\udd5a","Iota":"\u0399","iota":"\u03b9","iprod":"\u2a3c","iquest":"\xbf","iscr":"\ud835\udcbe","Iscr":"\u2110","isin":"\u2208","isindot":"\u22f5","isinE":"\u22f9","isins":"\u22f4","isinsv":"\u22f3","isinv":"\u2208","it":"\u2062","Itilde":"\u0128","itilde":"\u0129","Iukcy":"\u0406","iukcy":"\u0456","Iuml":"\xcf","iuml":"\xef","Jcirc":"\u0134","jcirc":"\u0135","Jcy":"\u0419","jcy":"\u0439","Jfr":"\ud835\udd0d","jfr":"\ud835\udd27","jmath":"\u0237","Jopf":"\ud835\udd41","jopf":"\ud835\udd5b","Jscr":"\ud835\udca5","jscr":"\ud835\udcbf","Jsercy":"\u0408","jsercy":"\u0458","Jukcy":"\u0404","jukcy":"\u0454","Kappa":"\u039a","kappa":"\u03ba","kappav":"\u03f0","Kcedil":"\u0136","kcedil":"\u0137","Kcy":"\u041a","kcy":"\u043a","Kfr":"\ud835\udd0e","kfr":"\ud835\udd28","kgreen":"\u0138","KHcy":"\u0425","khcy":"\u0445","KJcy":"\u040c","kjcy":"\u045c","Kopf":"\ud835\udd42","kopf":"\ud835\udd5c","Kscr":"\ud835\udca6","kscr":"\ud835\udcc0","lAarr":"\u21da","Lacute":"\u0139","lacute":"\u013a","laemptyv":"\u29b4","lagran":"\u2112","Lambda":"\u039b","lambda":"\u03bb","lang":"\u27e8","Lang":"\u27ea","langd":"\u2991","langle":"\u27e8","lap":"\u2a85","Laplacetrf":"\u2112","laquo":"\xab","larrb":"\u21e4","larrbfs":"\u291f","larr":"\u2190","Larr":"\u219e","lArr":"\u21d0","larrfs":"\u291d","larrhk":"\u21a9","larrlp":"\u21ab","larrpl":"\u2939","larrsim":"\u2973","larrtl":"\u21a2","latail":"\u2919","lAtail":"\u291b","lat":"\u2aab","late":"\u2aad","lates":"\u2aad\ufe00","lbarr":"\u290c","lBarr":"\u290e","lbbrk":"\u2772","lbrace":"{","lbrack":"[","lbrke":"\u298b","lbrksld":"\u298f","lbrkslu":"\u298d","Lcaron":"\u013d","lcaron":"\u013e","Lcedil":"\u013b","lcedil":"\u013c","lceil":"\u2308","lcub":"{","Lcy":"\u041b","lcy":"\u043b","ldca":"\u2936","ldquo":"\u201c","ldquor":"\u201e","ldrdhar":"\u2967","ldrushar":"\u294b","ldsh":"\u21b2","le":"\u2264","lE":"\u2266","LeftAngleBracket":"\u27e8","LeftArrowBar":"\u21e4","leftarrow":"\u2190","LeftArrow":"\u2190","Leftarrow":"\u21d0","LeftArrowRightArrow":"\u21c6","leftarrowtail":"\u21a2","LeftCeiling":"\u2308","LeftDoubleBracket":"\u27e6","LeftDownTeeVector":"\u2961","LeftDownVectorBar":"\u2959","LeftDownVector":"\u21c3","LeftFloor":"\u230a","leftharpoondown":"\u21bd","leftharpoonup":"\u21bc","leftleftarrows":"\u21c7","leftrightarrow":"\u2194","LeftRightArrow":"\u2194","Leftrightarrow":"\u21d4","leftrightarrows":"\u21c6","leftrightharpoons":"\u21cb","leftrightsquigarrow":"\u21ad","LeftRightVector":"\u294e","LeftTeeArrow":"\u21a4","LeftTee":"\u22a3","LeftTeeVector":"\u295a","leftthreetimes":"\u22cb","LeftTriangleBar":"\u29cf","LeftTriangle":"\u22b2","LeftTriangleEqual":"\u22b4","LeftUpDownVector":"\u2951","LeftUpTeeVector":"\u2960","LeftUpVectorBar":"\u2958","LeftUpVector":"\u21bf","LeftVectorBar":"\u2952","LeftVector":"\u21bc","lEg":"\u2a8b","leg":"\u22da","leq":"\u2264","leqq":"\u2266","leqslant":"\u2a7d","lescc":"\u2aa8","les":"\u2a7d","lesdot":"\u2a7f","lesdoto":"\u2a81","lesdotor":"\u2a83","lesg":"\u22da\ufe00","lesges":"\u2a93","lessapprox":"\u2a85","lessdot":"\u22d6","lesseqgtr":"\u22da","lesseqqgtr":"\u2a8b","LessEqualGreater":"\u22da","LessFullEqual":"\u2266","LessGreater":"\u2276","lessgtr":"\u2276","LessLess":"\u2aa1","lesssim":"\u2272","LessSlantEqual":"\u2a7d","LessTilde":"\u2272","lfisht":"\u297c","lfloor":"\u230a","Lfr":"\ud835\udd0f","lfr":"\ud835\udd29","lg":"\u2276","lgE":"\u2a91","lHar":"\u2962","lhard":"\u21bd","lharu":"\u21bc","lharul":"\u296a","lhblk":"\u2584","LJcy":"\u0409","ljcy":"\u0459","llarr":"\u21c7","ll":"\u226a","Ll":"\u22d8","llcorner":"\u231e","Lleftarrow":"\u21da","llhard":"\u296b","lltri":"\u25fa","Lmidot":"\u013f","lmidot":"\u0140","lmoustache":"\u23b0","lmoust":"\u23b0","lnap":"\u2a89","lnapprox":"\u2a89","lne":"\u2a87","lnE":"\u2268","lneq":"\u2a87","lneqq":"\u2268","lnsim":"\u22e6","loang":"\u27ec","loarr":"\u21fd","lobrk":"\u27e6","longleftarrow":"\u27f5","LongLeftArrow":"\u27f5","Longleftarrow":"\u27f8","longleftrightarrow":"\u27f7","LongLeftRightArrow":"\u27f7","Longleftrightarrow":"\u27fa","longmapsto":"\u27fc","longrightarrow":"\u27f6","LongRightArrow":"\u27f6","Longrightarrow":"\u27f9","looparrowleft":"\u21ab","looparrowright":"\u21ac","lopar":"\u2985","Lopf":"\ud835\udd43","lopf":"\ud835\udd5d","loplus":"\u2a2d","lotimes":"\u2a34","lowast":"\u2217","lowbar":"_","LowerLeftArrow":"\u2199","LowerRightArrow":"\u2198","loz":"\u25ca","lozenge":"\u25ca","lozf":"\u29eb","lpar":"(","lparlt":"\u2993","lrarr":"\u21c6","lrcorner":"\u231f","lrhar":"\u21cb","lrhard":"\u296d","lrm":"\u200e","lrtri":"\u22bf","lsaquo":"\u2039","lscr":"\ud835\udcc1","Lscr":"\u2112","lsh":"\u21b0","Lsh":"\u21b0","lsim":"\u2272","lsime":"\u2a8d","lsimg":"\u2a8f","lsqb":"[","lsquo":"\u2018","lsquor":"\u201a","Lstrok":"\u0141","lstrok":"\u0142","ltcc":"\u2aa6","ltcir":"\u2a79","lt":"<","LT":"<","Lt":"\u226a","ltdot":"\u22d6","lthree":"\u22cb","ltimes":"\u22c9","ltlarr":"\u2976","ltquest":"\u2a7b","ltri":"\u25c3","ltrie":"\u22b4","ltrif":"\u25c2","ltrPar":"\u2996","lurdshar":"\u294a","luruhar":"\u2966","lvertneqq":"\u2268\ufe00","lvnE":"\u2268\ufe00","macr":"\xaf","male":"\u2642","malt":"\u2720","maltese":"\u2720","Map":"\u2905","map":"\u21a6","mapsto":"\u21a6","mapstodown":"\u21a7","mapstoleft":"\u21a4","mapstoup":"\u21a5","marker":"\u25ae","mcomma":"\u2a29","Mcy":"\u041c","mcy":"\u043c","mdash":"\u2014","mDDot":"\u223a","measuredangle":"\u2221","MediumSpace":"\u205f","Mellintrf":"\u2133","Mfr":"\ud835\udd10","mfr":"\ud835\udd2a","mho":"\u2127","micro":"\xb5","midast":"*","midcir":"\u2af0","mid":"\u2223","middot":"\xb7","minusb":"\u229f","minus":"\u2212","minusd":"\u2238","minusdu":"\u2a2a","MinusPlus":"\u2213","mlcp":"\u2adb","mldr":"\u2026","mnplus":"\u2213","models":"\u22a7","Mopf":"\ud835\udd44","mopf":"\ud835\udd5e","mp":"\u2213","mscr":"\ud835\udcc2","Mscr":"\u2133","mstpos":"\u223e","Mu":"\u039c","mu":"\u03bc","multimap":"\u22b8","mumap":"\u22b8","nabla":"\u2207","Nacute":"\u0143","nacute":"\u0144","nang":"\u2220\u20d2","nap":"\u2249","napE":"\u2a70\u0338","napid":"\u224b\u0338","napos":"\u0149","napprox":"\u2249","natural":"\u266e","naturals":"\u2115","natur":"\u266e","nbsp":"\xa0","nbump":"\u224e\u0338","nbumpe":"\u224f\u0338","ncap":"\u2a43","Ncaron":"\u0147","ncaron":"\u0148","Ncedil":"\u0145","ncedil":"\u0146","ncong":"\u2247","ncongdot":"\u2a6d\u0338","ncup":"\u2a42","Ncy":"\u041d","ncy":"\u043d","ndash":"\u2013","nearhk":"\u2924","nearr":"\u2197","neArr":"\u21d7","nearrow":"\u2197","ne":"\u2260","nedot":"\u2250\u0338","NegativeMediumSpace":"\u200b","NegativeThickSpace":"\u200b","NegativeThinSpace":"\u200b","NegativeVeryThinSpace":"\u200b","nequiv":"\u2262","nesear":"\u2928","nesim":"\u2242\u0338","NestedGreaterGreater":"\u226b","NestedLessLess":"\u226a","NewLine":"\\n","nexist":"\u2204","nexists":"\u2204","Nfr":"\ud835\udd11","nfr":"\ud835\udd2b","ngE":"\u2267\u0338","nge":"\u2271","ngeq":"\u2271","ngeqq":"\u2267\u0338","ngeqslant":"\u2a7e\u0338","nges":"\u2a7e\u0338","nGg":"\u22d9\u0338","ngsim":"\u2275","nGt":"\u226b\u20d2","ngt":"\u226f","ngtr":"\u226f","nGtv":"\u226b\u0338","nharr":"\u21ae","nhArr":"\u21ce","nhpar":"\u2af2","ni":"\u220b","nis":"\u22fc","nisd":"\u22fa","niv":"\u220b","NJcy":"\u040a","njcy":"\u045a","nlarr":"\u219a","nlArr":"\u21cd","nldr":"\u2025","nlE":"\u2266\u0338","nle":"\u2270","nleftarrow":"\u219a","nLeftarrow":"\u21cd","nleftrightarrow":"\u21ae","nLeftrightarrow":"\u21ce","nleq":"\u2270","nleqq":"\u2266\u0338","nleqslant":"\u2a7d\u0338","nles":"\u2a7d\u0338","nless":"\u226e","nLl":"\u22d8\u0338","nlsim":"\u2274","nLt":"\u226a\u20d2","nlt":"\u226e","nltri":"\u22ea","nltrie":"\u22ec","nLtv":"\u226a\u0338","nmid":"\u2224","NoBreak":"\u2060","NonBreakingSpace":"\xa0","nopf":"\ud835\udd5f","Nopf":"\u2115","Not":"\u2aec","not":"\xac","NotCongruent":"\u2262","NotCupCap":"\u226d","NotDoubleVerticalBar":"\u2226","NotElement":"\u2209","NotEqual":"\u2260","NotEqualTilde":"\u2242\u0338","NotExists":"\u2204","NotGreater":"\u226f","NotGreaterEqual":"\u2271","NotGreaterFullEqual":"\u2267\u0338","NotGreaterGreater":"\u226b\u0338","NotGreaterLess":"\u2279","NotGreaterSlantEqual":"\u2a7e\u0338","NotGreaterTilde":"\u2275","NotHumpDownHump":"\u224e\u0338","NotHumpEqual":"\u224f\u0338","notin":"\u2209","notindot":"\u22f5\u0338","notinE":"\u22f9\u0338","notinva":"\u2209","notinvb":"\u22f7","notinvc":"\u22f6","NotLeftTriangleBar":"\u29cf\u0338","NotLeftTriangle":"\u22ea","NotLeftTriangleEqual":"\u22ec","NotLess":"\u226e","NotLessEqual":"\u2270","NotLessGreater":"\u2278","NotLessLess":"\u226a\u0338","NotLessSlantEqual":"\u2a7d\u0338","NotLessTilde":"\u2274","NotNestedGreaterGreater":"\u2aa2\u0338","NotNestedLessLess":"\u2aa1\u0338","notni":"\u220c","notniva":"\u220c","notnivb":"\u22fe","notnivc":"\u22fd","NotPrecedes":"\u2280","NotPrecedesEqual":"\u2aaf\u0338","NotPrecedesSlantEqual":"\u22e0","NotReverseElement":"\u220c","NotRightTriangleBar":"\u29d0\u0338","NotRightTriangle":"\u22eb","NotRightTriangleEqual":"\u22ed","NotSquareSubset":"\u228f\u0338","NotSquareSubsetEqual":"\u22e2","NotSquareSuperset":"\u2290\u0338","NotSquareSupersetEqual":"\u22e3","NotSubset":"\u2282\u20d2","NotSubsetEqual":"\u2288","NotSucceeds":"\u2281","NotSucceedsEqual":"\u2ab0\u0338","NotSucceedsSlantEqual":"\u22e1","NotSucceedsTilde":"\u227f\u0338","NotSuperset":"\u2283\u20d2","NotSupersetEqual":"\u2289","NotTilde":"\u2241","NotTildeEqual":"\u2244","NotTildeFullEqual":"\u2247","NotTildeTilde":"\u2249","NotVerticalBar":"\u2224","nparallel":"\u2226","npar":"\u2226","nparsl":"\u2afd\u20e5","npart":"\u2202\u0338","npolint":"\u2a14","npr":"\u2280","nprcue":"\u22e0","nprec":"\u2280","npreceq":"\u2aaf\u0338","npre":"\u2aaf\u0338","nrarrc":"\u2933\u0338","nrarr":"\u219b","nrArr":"\u21cf","nrarrw":"\u219d\u0338","nrightarrow":"\u219b","nRightarrow":"\u21cf","nrtri":"\u22eb","nrtrie":"\u22ed","nsc":"\u2281","nsccue":"\u22e1","nsce":"\u2ab0\u0338","Nscr":"\ud835\udca9","nscr":"\ud835\udcc3","nshortmid":"\u2224","nshortparallel":"\u2226","nsim":"\u2241","nsime":"\u2244","nsimeq":"\u2244","nsmid":"\u2224","nspar":"\u2226","nsqsube":"\u22e2","nsqsupe":"\u22e3","nsub":"\u2284","nsubE":"\u2ac5\u0338","nsube":"\u2288","nsubset":"\u2282\u20d2","nsubseteq":"\u2288","nsubseteqq":"\u2ac5\u0338","nsucc":"\u2281","nsucceq":"\u2ab0\u0338","nsup":"\u2285","nsupE":"\u2ac6\u0338","nsupe":"\u2289","nsupset":"\u2283\u20d2","nsupseteq":"\u2289","nsupseteqq":"\u2ac6\u0338","ntgl":"\u2279","Ntilde":"\xd1","ntilde":"\xf1","ntlg":"\u2278","ntriangleleft":"\u22ea","ntrianglelefteq":"\u22ec","ntriangleright":"\u22eb","ntrianglerighteq":"\u22ed","Nu":"\u039d","nu":"\u03bd","num":"#","numero":"\u2116","numsp":"\u2007","nvap":"\u224d\u20d2","nvdash":"\u22ac","nvDash":"\u22ad","nVdash":"\u22ae","nVDash":"\u22af","nvge":"\u2265\u20d2","nvgt":">\u20d2","nvHarr":"\u2904","nvinfin":"\u29de","nvlArr":"\u2902","nvle":"\u2264\u20d2","nvlt":"<\u20d2","nvltrie":"\u22b4\u20d2","nvrArr":"\u2903","nvrtrie":"\u22b5\u20d2","nvsim":"\u223c\u20d2","nwarhk":"\u2923","nwarr":"\u2196","nwArr":"\u21d6","nwarrow":"\u2196","nwnear":"\u2927","Oacute":"\xd3","oacute":"\xf3","oast":"\u229b","Ocirc":"\xd4","ocirc":"\xf4","ocir":"\u229a","Ocy":"\u041e","ocy":"\u043e","odash":"\u229d","Odblac":"\u0150","odblac":"\u0151","odiv":"\u2a38","odot":"\u2299","odsold":"\u29bc","OElig":"\u0152","oelig":"\u0153","ofcir":"\u29bf","Ofr":"\ud835\udd12","ofr":"\ud835\udd2c","ogon":"\u02db","Ograve":"\xd2","ograve":"\xf2","ogt":"\u29c1","ohbar":"\u29b5","ohm":"\u03a9","oint":"\u222e","olarr":"\u21ba","olcir":"\u29be","olcross":"\u29bb","oline":"\u203e","olt":"\u29c0","Omacr":"\u014c","omacr":"\u014d","Omega":"\u03a9","omega":"\u03c9","Omicron":"\u039f","omicron":"\u03bf","omid":"\u29b6","ominus":"\u2296","Oopf":"\ud835\udd46","oopf":"\ud835\udd60","opar":"\u29b7","OpenCurlyDoubleQuote":"\u201c","OpenCurlyQuote":"\u2018","operp":"\u29b9","oplus":"\u2295","orarr":"\u21bb","Or":"\u2a54","or":"\u2228","ord":"\u2a5d","order":"\u2134","orderof":"\u2134","ordf":"\xaa","ordm":"\xba","origof":"\u22b6","oror":"\u2a56","orslope":"\u2a57","orv":"\u2a5b","oS":"\u24c8","Oscr":"\ud835\udcaa","oscr":"\u2134","Oslash":"\xd8","oslash":"\xf8","osol":"\u2298","Otilde":"\xd5","otilde":"\xf5","otimesas":"\u2a36","Otimes":"\u2a37","otimes":"\u2297","Ouml":"\xd6","ouml":"\xf6","ovbar":"\u233d","OverBar":"\u203e","OverBrace":"\u23de","OverBracket":"\u23b4","OverParenthesis":"\u23dc","para":"\xb6","parallel":"\u2225","par":"\u2225","parsim":"\u2af3","parsl":"\u2afd","part":"\u2202","PartialD":"\u2202","Pcy":"\u041f","pcy":"\u043f","percnt":"%","period":".","permil":"\u2030","perp":"\u22a5","pertenk":"\u2031","Pfr":"\ud835\udd13","pfr":"\ud835\udd2d","Phi":"\u03a6","phi":"\u03c6","phiv":"\u03d5","phmmat":"\u2133","phone":"\u260e","Pi":"\u03a0","pi":"\u03c0","pitchfork":"\u22d4","piv":"\u03d6","planck":"\u210f","planckh":"\u210e","plankv":"\u210f","plusacir":"\u2a23","plusb":"\u229e","pluscir":"\u2a22","plus":"+","plusdo":"\u2214","plusdu":"\u2a25","pluse":"\u2a72","PlusMinus":"\xb1","plusmn":"\xb1","plussim":"\u2a26","plustwo":"\u2a27","pm":"\xb1","Poincareplane":"\u210c","pointint":"\u2a15","popf":"\ud835\udd61","Popf":"\u2119","pound":"\xa3","prap":"\u2ab7","Pr":"\u2abb","pr":"\u227a","prcue":"\u227c","precapprox":"\u2ab7","prec":"\u227a","preccurlyeq":"\u227c","Precedes":"\u227a","PrecedesEqual":"\u2aaf","PrecedesSlantEqual":"\u227c","PrecedesTilde":"\u227e","preceq":"\u2aaf","precnapprox":"\u2ab9","precneqq":"\u2ab5","precnsim":"\u22e8","pre":"\u2aaf","prE":"\u2ab3","precsim":"\u227e","prime":"\u2032","Prime":"\u2033","primes":"\u2119","prnap":"\u2ab9","prnE":"\u2ab5","prnsim":"\u22e8","prod":"\u220f","Product":"\u220f","profalar":"\u232e","profline":"\u2312","profsurf":"\u2313","prop":"\u221d","Proportional":"\u221d","Proportion":"\u2237","propto":"\u221d","prsim":"\u227e","prurel":"\u22b0","Pscr":"\ud835\udcab","pscr":"\ud835\udcc5","Psi":"\u03a8","psi":"\u03c8","puncsp":"\u2008","Qfr":"\ud835\udd14","qfr":"\ud835\udd2e","qint":"\u2a0c","qopf":"\ud835\udd62","Qopf":"\u211a","qprime":"\u2057","Qscr":"\ud835\udcac","qscr":"\ud835\udcc6","quaternions":"\u210d","quatint":"\u2a16","quest":"?","questeq":"\u225f","quot":"\\"","QUOT":"\\"","rAarr":"\u21db","race":"\u223d\u0331","Racute":"\u0154","racute":"\u0155","radic":"\u221a","raemptyv":"\u29b3","rang":"\u27e9","Rang":"\u27eb","rangd":"\u2992","range":"\u29a5","rangle":"\u27e9","raquo":"\xbb","rarrap":"\u2975","rarrb":"\u21e5","rarrbfs":"\u2920","rarrc":"\u2933","rarr":"\u2192","Rarr":"\u21a0","rArr":"\u21d2","rarrfs":"\u291e","rarrhk":"\u21aa","rarrlp":"\u21ac","rarrpl":"\u2945","rarrsim":"\u2974","Rarrtl":"\u2916","rarrtl":"\u21a3","rarrw":"\u219d","ratail":"\u291a","rAtail":"\u291c","ratio":"\u2236","rationals":"\u211a","rbarr":"\u290d","rBarr":"\u290f","RBarr":"\u2910","rbbrk":"\u2773","rbrace":"}","rbrack":"]","rbrke":"\u298c","rbrksld":"\u298e","rbrkslu":"\u2990","Rcaron":"\u0158","rcaron":"\u0159","Rcedil":"\u0156","rcedil":"\u0157","rceil":"\u2309","rcub":"}","Rcy":"\u0420","rcy":"\u0440","rdca":"\u2937","rdldhar":"\u2969","rdquo":"\u201d","rdquor":"\u201d","rdsh":"\u21b3","real":"\u211c","realine":"\u211b","realpart":"\u211c","reals":"\u211d","Re":"\u211c","rect":"\u25ad","reg":"\xae","REG":"\xae","ReverseElement":"\u220b","ReverseEquilibrium":"\u21cb","ReverseUpEquilibrium":"\u296f","rfisht":"\u297d","rfloor":"\u230b","rfr":"\ud835\udd2f","Rfr":"\u211c","rHar":"\u2964","rhard":"\u21c1","rharu":"\u21c0","rharul":"\u296c","Rho":"\u03a1","rho":"\u03c1","rhov":"\u03f1","RightAngleBracket":"\u27e9","RightArrowBar":"\u21e5","rightarrow":"\u2192","RightArrow":"\u2192","Rightarrow":"\u21d2","RightArrowLeftArrow":"\u21c4","rightarrowtail":"\u21a3","RightCeiling":"\u2309","RightDoubleBracket":"\u27e7","RightDownTeeVector":"\u295d","RightDownVectorBar":"\u2955","RightDownVector":"\u21c2","RightFloor":"\u230b","rightharpoondown":"\u21c1","rightharpoonup":"\u21c0","rightleftarrows":"\u21c4","rightleftharpoons":"\u21cc","rightrightarrows":"\u21c9","rightsquigarrow":"\u219d","RightTeeArrow":"\u21a6","RightTee":"\u22a2","RightTeeVector":"\u295b","rightthreetimes":"\u22cc","RightTriangleBar":"\u29d0","RightTriangle":"\u22b3","RightTriangleEqual":"\u22b5","RightUpDownVector":"\u294f","RightUpTeeVector":"\u295c","RightUpVectorBar":"\u2954","RightUpVector":"\u21be","RightVectorBar":"\u2953","RightVector":"\u21c0","ring":"\u02da","risingdotseq":"\u2253","rlarr":"\u21c4","rlhar":"\u21cc","rlm":"\u200f","rmoustache":"\u23b1","rmoust":"\u23b1","rnmid":"\u2aee","roang":"\u27ed","roarr":"\u21fe","robrk":"\u27e7","ropar":"\u2986","ropf":"\ud835\udd63","Ropf":"\u211d","roplus":"\u2a2e","rotimes":"\u2a35","RoundImplies":"\u2970","rpar":")","rpargt":"\u2994","rppolint":"\u2a12","rrarr":"\u21c9","Rrightarrow":"\u21db","rsaquo":"\u203a","rscr":"\ud835\udcc7","Rscr":"\u211b","rsh":"\u21b1","Rsh":"\u21b1","rsqb":"]","rsquo":"\u2019","rsquor":"\u2019","rthree":"\u22cc","rtimes":"\u22ca","rtri":"\u25b9","rtrie":"\u22b5","rtrif":"\u25b8","rtriltri":"\u29ce","RuleDelayed":"\u29f4","ruluhar":"\u2968","rx":"\u211e","Sacute":"\u015a","sacute":"\u015b","sbquo":"\u201a","scap":"\u2ab8","Scaron":"\u0160","scaron":"\u0161","Sc":"\u2abc","sc":"\u227b","sccue":"\u227d","sce":"\u2ab0","scE":"\u2ab4","Scedil":"\u015e","scedil":"\u015f","Scirc":"\u015c","scirc":"\u015d","scnap":"\u2aba","scnE":"\u2ab6","scnsim":"\u22e9","scpolint":"\u2a13","scsim":"\u227f","Scy":"\u0421","scy":"\u0441","sdotb":"\u22a1","sdot":"\u22c5","sdote":"\u2a66","searhk":"\u2925","searr":"\u2198","seArr":"\u21d8","searrow":"\u2198","sect":"\xa7","semi":";","seswar":"\u2929","setminus":"\u2216","setmn":"\u2216","sext":"\u2736","Sfr":"\ud835\udd16","sfr":"\ud835\udd30","sfrown":"\u2322","sharp":"\u266f","SHCHcy":"\u0429","shchcy":"\u0449","SHcy":"\u0428","shcy":"\u0448","ShortDownArrow":"\u2193","ShortLeftArrow":"\u2190","shortmid":"\u2223","shortparallel":"\u2225","ShortRightArrow":"\u2192","ShortUpArrow":"\u2191","shy":"\xad","Sigma":"\u03a3","sigma":"\u03c3","sigmaf":"\u03c2","sigmav":"\u03c2","sim":"\u223c","simdot":"\u2a6a","sime":"\u2243","simeq":"\u2243","simg":"\u2a9e","simgE":"\u2aa0","siml":"\u2a9d","simlE":"\u2a9f","simne":"\u2246","simplus":"\u2a24","simrarr":"\u2972","slarr":"\u2190","SmallCircle":"\u2218","smallsetminus":"\u2216","smashp":"\u2a33","smeparsl":"\u29e4","smid":"\u2223","smile":"\u2323","smt":"\u2aaa","smte":"\u2aac","smtes":"\u2aac\ufe00","SOFTcy":"\u042c","softcy":"\u044c","solbar":"\u233f","solb":"\u29c4","sol":"/","Sopf":"\ud835\udd4a","sopf":"\ud835\udd64","spades":"\u2660","spadesuit":"\u2660","spar":"\u2225","sqcap":"\u2293","sqcaps":"\u2293\ufe00","sqcup":"\u2294","sqcups":"\u2294\ufe00","Sqrt":"\u221a","sqsub":"\u228f","sqsube":"\u2291","sqsubset":"\u228f","sqsubseteq":"\u2291","sqsup":"\u2290","sqsupe":"\u2292","sqsupset":"\u2290","sqsupseteq":"\u2292","square":"\u25a1","Square":"\u25a1","SquareIntersection":"\u2293","SquareSubset":"\u228f","SquareSubsetEqual":"\u2291","SquareSuperset":"\u2290","SquareSupersetEqual":"\u2292","SquareUnion":"\u2294","squarf":"\u25aa","squ":"\u25a1","squf":"\u25aa","srarr":"\u2192","Sscr":"\ud835\udcae","sscr":"\ud835\udcc8","ssetmn":"\u2216","ssmile":"\u2323","sstarf":"\u22c6","Star":"\u22c6","star":"\u2606","starf":"\u2605","straightepsilon":"\u03f5","straightphi":"\u03d5","strns":"\xaf","sub":"\u2282","Sub":"\u22d0","subdot":"\u2abd","subE":"\u2ac5","sube":"\u2286","subedot":"\u2ac3","submult":"\u2ac1","subnE":"\u2acb","subne":"\u228a","subplus":"\u2abf","subrarr":"\u2979","subset":"\u2282","Subset":"\u22d0","subseteq":"\u2286","subseteqq":"\u2ac5","SubsetEqual":"\u2286","subsetneq":"\u228a","subsetneqq":"\u2acb","subsim":"\u2ac7","subsub":"\u2ad5","subsup":"\u2ad3","succapprox":"\u2ab8","succ":"\u227b","succcurlyeq":"\u227d","Succeeds":"\u227b","SucceedsEqual":"\u2ab0","SucceedsSlantEqual":"\u227d","SucceedsTilde":"\u227f","succeq":"\u2ab0","succnapprox":"\u2aba","succneqq":"\u2ab6","succnsim":"\u22e9","succsim":"\u227f","SuchThat":"\u220b","sum":"\u2211","Sum":"\u2211","sung":"\u266a","sup1":"\xb9","sup2":"\xb2","sup3":"\xb3","sup":"\u2283","Sup":"\u22d1","supdot":"\u2abe","supdsub":"\u2ad8","supE":"\u2ac6","supe":"\u2287","supedot":"\u2ac4","Superset":"\u2283","SupersetEqual":"\u2287","suphsol":"\u27c9","suphsub":"\u2ad7","suplarr":"\u297b","supmult":"\u2ac2","supnE":"\u2acc","supne":"\u228b","supplus":"\u2ac0","supset":"\u2283","Supset":"\u22d1","supseteq":"\u2287","supseteqq":"\u2ac6","supsetneq":"\u228b","supsetneqq":"\u2acc","supsim":"\u2ac8","supsub":"\u2ad4","supsup":"\u2ad6","swarhk":"\u2926","swarr":"\u2199","swArr":"\u21d9","swarrow":"\u2199","swnwar":"\u292a","szlig":"\xdf","Tab":"\\t","target":"\u2316","Tau":"\u03a4","tau":"\u03c4","tbrk":"\u23b4","Tcaron":"\u0164","tcaron":"\u0165","Tcedil":"\u0162","tcedil":"\u0163","Tcy":"\u0422","tcy":"\u0442","tdot":"\u20db","telrec":"\u2315","Tfr":"\ud835\udd17","tfr":"\ud835\udd31","there4":"\u2234","therefore":"\u2234","Therefore":"\u2234","Theta":"\u0398","theta":"\u03b8","thetasym":"\u03d1","thetav":"\u03d1","thickapprox":"\u2248","thicksim":"\u223c","ThickSpace":"\u205f\u200a","ThinSpace":"\u2009","thinsp":"\u2009","thkap":"\u2248","thksim":"\u223c","THORN":"\xde","thorn":"\xfe","tilde":"\u02dc","Tilde":"\u223c","TildeEqual":"\u2243","TildeFullEqual":"\u2245","TildeTilde":"\u2248","timesbar":"\u2a31","timesb":"\u22a0","times":"\xd7","timesd":"\u2a30","tint":"\u222d","toea":"\u2928","topbot":"\u2336","topcir":"\u2af1","top":"\u22a4","Topf":"\ud835\udd4b","topf":"\ud835\udd65","topfork":"\u2ada","tosa":"\u2929","tprime":"\u2034","trade":"\u2122","TRADE":"\u2122","triangle":"\u25b5","triangledown":"\u25bf","triangleleft":"\u25c3","trianglelefteq":"\u22b4","triangleq":"\u225c","triangleright":"\u25b9","trianglerighteq":"\u22b5","tridot":"\u25ec","trie":"\u225c","triminus":"\u2a3a","TripleDot":"\u20db","triplus":"\u2a39","trisb":"\u29cd","tritime":"\u2a3b","trpezium":"\u23e2","Tscr":"\ud835\udcaf","tscr":"\ud835\udcc9","TScy":"\u0426","tscy":"\u0446","TSHcy":"\u040b","tshcy":"\u045b","Tstrok":"\u0166","tstrok":"\u0167","twixt":"\u226c","twoheadleftarrow":"\u219e","twoheadrightarrow":"\u21a0","Uacute":"\xda","uacute":"\xfa","uarr":"\u2191","Uarr":"\u219f","uArr":"\u21d1","Uarrocir":"\u2949","Ubrcy":"\u040e","ubrcy":"\u045e","Ubreve":"\u016c","ubreve":"\u016d","Ucirc":"\xdb","ucirc":"\xfb","Ucy":"\u0423","ucy":"\u0443","udarr":"\u21c5","Udblac":"\u0170","udblac":"\u0171","udhar":"\u296e","ufisht":"\u297e","Ufr":"\ud835\udd18","ufr":"\ud835\udd32","Ugrave":"\xd9","ugrave":"\xf9","uHar":"\u2963","uharl":"\u21bf","uharr":"\u21be","uhblk":"\u2580","ulcorn":"\u231c","ulcorner":"\u231c","ulcrop":"\u230f","ultri":"\u25f8","Umacr":"\u016a","umacr":"\u016b","uml":"\xa8","UnderBar":"_","UnderBrace":"\u23df","UnderBracket":"\u23b5","UnderParenthesis":"\u23dd","Union":"\u22c3","UnionPlus":"\u228e","Uogon":"\u0172","uogon":"\u0173","Uopf":"\ud835\udd4c","uopf":"\ud835\udd66","UpArrowBar":"\u2912","uparrow":"\u2191","UpArrow":"\u2191","Uparrow":"\u21d1","UpArrowDownArrow":"\u21c5","updownarrow":"\u2195","UpDownArrow":"\u2195","Updownarrow":"\u21d5","UpEquilibrium":"\u296e","upharpoonleft":"\u21bf","upharpoonright":"\u21be","uplus":"\u228e","UpperLeftArrow":"\u2196","UpperRightArrow":"\u2197","upsi":"\u03c5","Upsi":"\u03d2","upsih":"\u03d2","Upsilon":"\u03a5","upsilon":"\u03c5","UpTeeArrow":"\u21a5","UpTee":"\u22a5","upuparrows":"\u21c8","urcorn":"\u231d","urcorner":"\u231d","urcrop":"\u230e","Uring":"\u016e","uring":"\u016f","urtri":"\u25f9","Uscr":"\ud835\udcb0","uscr":"\ud835\udcca","utdot":"\u22f0","Utilde":"\u0168","utilde":"\u0169","utri":"\u25b5","utrif":"\u25b4","uuarr":"\u21c8","Uuml":"\xdc","uuml":"\xfc","uwangle":"\u29a7","vangrt":"\u299c","varepsilon":"\u03f5","varkappa":"\u03f0","varnothing":"\u2205","varphi":"\u03d5","varpi":"\u03d6","varpropto":"\u221d","varr":"\u2195","vArr":"\u21d5","varrho":"\u03f1","varsigma":"\u03c2","varsubsetneq":"\u228a\ufe00","varsubsetneqq":"\u2acb\ufe00","varsupsetneq":"\u228b\ufe00","varsupsetneqq":"\u2acc\ufe00","vartheta":"\u03d1","vartriangleleft":"\u22b2","vartriangleright":"\u22b3","vBar":"\u2ae8","Vbar":"\u2aeb","vBarv":"\u2ae9","Vcy":"\u0412","vcy":"\u0432","vdash":"\u22a2","vDash":"\u22a8","Vdash":"\u22a9","VDash":"\u22ab","Vdashl":"\u2ae6","veebar":"\u22bb","vee":"\u2228","Vee":"\u22c1","veeeq":"\u225a","vellip":"\u22ee","verbar":"|","Verbar":"\u2016","vert":"|","Vert":"\u2016","VerticalBar":"\u2223","VerticalLine":"|","VerticalSeparator":"\u2758","VerticalTilde":"\u2240","VeryThinSpace":"\u200a","Vfr":"\ud835\udd19","vfr":"\ud835\udd33","vltri":"\u22b2","vnsub":"\u2282\u20d2","vnsup":"\u2283\u20d2","Vopf":"\ud835\udd4d","vopf":"\ud835\udd67","vprop":"\u221d","vrtri":"\u22b3","Vscr":"\ud835\udcb1","vscr":"\ud835\udccb","vsubnE":"\u2acb\ufe00","vsubne":"\u228a\ufe00","vsupnE":"\u2acc\ufe00","vsupne":"\u228b\ufe00","Vvdash":"\u22aa","vzigzag":"\u299a","Wcirc":"\u0174","wcirc":"\u0175","wedbar":"\u2a5f","wedge":"\u2227","Wedge":"\u22c0","wedgeq":"\u2259","weierp":"\u2118","Wfr":"\ud835\udd1a","wfr":"\ud835\udd34","Wopf":"\ud835\udd4e","wopf":"\ud835\udd68","wp":"\u2118","wr":"\u2240","wreath":"\u2240","Wscr":"\ud835\udcb2","wscr":"\ud835\udccc","xcap":"\u22c2","xcirc":"\u25ef","xcup":"\u22c3","xdtri":"\u25bd","Xfr":"\ud835\udd1b","xfr":"\ud835\udd35","xharr":"\u27f7","xhArr":"\u27fa","Xi":"\u039e","xi":"\u03be","xlarr":"\u27f5","xlArr":"\u27f8","xmap":"\u27fc","xnis":"\u22fb","xodot":"\u2a00","Xopf":"\ud835\udd4f","xopf":"\ud835\udd69","xoplus":"\u2a01","xotime":"\u2a02","xrarr":"\u27f6","xrArr":"\u27f9","Xscr":"\ud835\udcb3","xscr":"\ud835\udccd","xsqcup":"\u2a06","xuplus":"\u2a04","xutri":"\u25b3","xvee":"\u22c1","xwedge":"\u22c0","Yacute":"\xdd","yacute":"\xfd","YAcy":"\u042f","yacy":"\u044f","Ycirc":"\u0176","ycirc":"\u0177","Ycy":"\u042b","ycy":"\u044b","yen":"\xa5","Yfr":"\ud835\udd1c","yfr":"\ud835\udd36","YIcy":"\u0407","yicy":"\u0457","Yopf":"\ud835\udd50","yopf":"\ud835\udd6a","Yscr":"\ud835\udcb4","yscr":"\ud835\udcce","YUcy":"\u042e","yucy":"\u044e","yuml":"\xff","Yuml":"\u0178","Zacute":"\u0179","zacute":"\u017a","Zcaron":"\u017d","zcaron":"\u017e","Zcy":"\u0417","zcy":"\u0437","Zdot":"\u017b","zdot":"\u017c","zeetrf":"\u2128","ZeroWidthSpace":"\u200b","Zeta":"\u0396","zeta":"\u03b6","zfr":"\ud835\udd37","Zfr":"\u2128","ZHcy":"\u0416","zhcy":"\u0436","zigrarr":"\u21dd","zopf":"\ud835\udd6b","Zopf":"\u2124","Zscr":"\ud835\udcb5","zscr":"\ud835\udccf","zwj":"\u200d","zwnj":"\u200c"}')},xg5P:function(e,t,n){"use strict";n.r(t),n.d(t,"_onCreate",function(){return h}),n.d(t,"getApp",function(){return d}),n.d(t,"_DvaContainer",function(){return f});var r=n("p0pE"),i=n.n(r),o=n("Hg0r"),a=n("q1tI"),s=n("0Wa5"),l=n.n(s),c=n("RFCh"),u=null;function h(){var e=n("PszG"),t=e.mergeConfig("dva");return u=Object(o["a"])(i()({history:c["default"]},t.config||{},window.g_useSSR?{initialState:window.g_initialData}:{})),u.use(l()()),(t.plugins||[]).forEach(e=>{u.use(e)}),u.model(i()({namespace:"auth"},n("dX6P").default)),u.model(i()({namespace:"config"},n("6lKK").default)),u.model(i()({namespace:"coupon"},n("eOCx").default)),u.model(i()({namespace:"knowledge"},n("mHNb").default)),u.model(i()({namespace:"layout"},n("7tDr").default)),u.model(i()({namespace:"notice"},n("lETv").default)),u.model(i()({namespace:"order"},n("3moC").default)),u.model(i()({namespace:"passport"},n("wD64").default)),u.model(i()({namespace:"payment"},n("N9RS").default)),u.model(i()({namespace:"plan"},n("GmDa").default)),u.model(i()({namespace:"serverGroup"},n("ZlA7").default)),u.model(i()({namespace:"serverManage"},n("1dD/").default)),u.model(i()({namespace:"serverShadowsocks"},n("LMyI").default)),u.model(i()({namespace:"serverTrojan"},n("lWxU").default)),u.model(i()({namespace:"serverV2ray"},n("rB1S").default)),u.model(i()({namespace:"stat"},n("T4gb").default)),u.model(i()({namespace:"ticket"},n("e+9n").default)),u.model(i()({namespace:"user"},n("hlQx").default)),u}function d(){return u}class f extends a["Component"]{render(){var e=d();return e.router(()=>this.props.children),e.start()()}}},"y+Vt":function(e,t,n){"use strict";var r=n("IaEH"),i=n("Gev7"),o=n("IMiH");function a(e,t,n,r,i,o,a){if(0===i)return!1;var s=i,l=0,c=e;if(a>t+s&&a>r+s||ae+s&&o>n+s||ot+d&&h>r+d&&h>o+d&&h>l+d||he+d&&u>n+d&&u>i+d&&u>a+d||ut+u&&c>r+u&&c>o+u||ce+u&&l>n+u&&l>i+u||ln||u+ci&&(i+=d);var p=Math.atan2(l,s);return p<0&&(p+=d),p>=r&&p<=i||p+d>=r&&p+d<=i}var p=n("hyiK"),m=o["a"].CMD,g=2*Math.PI,v=1e-4;function y(e,t){return Math.abs(e-t)t&&u>r&&u>o&&u>l||u1&&x(),p=s["a"](t,r,o,l,w[0]),f>1&&(m=s["a"](t,r,o,l,w[1]))),2===f?vt&&l>r&&l>o||l=0&&u<=1){for(var h=0,d=s["h"](t,r,o,u),f=0;fn||s<-n)return 0;var l=Math.sqrt(n*n-s*s);b[0]=-l,b[1]=l;var c=Math.abs(r-i);if(c<1e-4)return 0;if(c>=g-1e-4){r=0,i=g;var u=o?1:-1;return a>=b[0]+e&&a<=b[1]+e?u:0}if(r>i){var h=r;r=i,i=h}r<0&&(r+=g,i+=g);for(var d=0,f=0;f<2;f++){var p=b[f];if(p+e>a){var m=Math.atan2(s,p);u=o?1:-1;m<0&&(m=g+m),(m>=r&&m<=i||m+g>=r&&m+g<=i)&&(m>Math.PI/2&&m<1.5*Math.PI&&(u=-u),d+=u)}}return d}function E(e,t,n,r,i){for(var o,s,u=e.data,h=e.len(),d=0,g=0,v=0,b=0,w=0,x=0;x1&&(n||(d+=Object(p["a"])(g,v,b,w,r,i))),k&&(g=u[x],v=u[x+1],b=g,w=v),E){case m.M:b=u[x++],w=u[x++],g=b,v=w;break;case m.L:if(n){if(a(g,v,u[x],u[x+1],t,r,i))return!0}else d+=Object(p["a"])(g,v,u[x],u[x+1],r,i)||0;g=u[x++],v=u[x++];break;case m.C:if(n){if(l(g,v,u[x++],u[x++],u[x++],u[x++],u[x],u[x+1],t,r,i))return!0}else d+=_(g,v,u[x++],u[x++],u[x++],u[x++],u[x],u[x+1],r,i)||0;g=u[x++],v=u[x++];break;case m.Q:if(n){if(c(g,v,u[x++],u[x++],u[x],u[x+1],t,r,i))return!0}else d+=C(g,v,u[x++],u[x++],u[x],u[x+1],r,i)||0;g=u[x++],v=u[x++];break;case m.A:var O=u[x++],T=u[x++],A=u[x++],M=u[x++],P=u[x++],R=u[x++];x+=1;var L=!!(1-u[x++]);o=Math.cos(P)*A+O,s=Math.sin(P)*M+T,k?(b=o,w=s):d+=Object(p["a"])(g,v,o,s,r,i);var D=(r-O)*M/A+O;if(n){if(f(O,T,M,P,P+R,L,t,D,i))return!0}else d+=S(O,T,M,P,P+R,L,D,i);g=Math.cos(P+R)*A+O,v=Math.sin(P+R)*M+T;break;case m.R:b=g=u[x++],w=v=u[x++];var j=u[x++],N=u[x++];if(o=b+j,s=w+N,n){if(a(b,w,o,w,t,r,i)||a(o,w,o,s,t,r,i)||a(o,s,b,s,t,r,i)||a(b,s,b,w,t,r,i))return!0}else d+=Object(p["a"])(o,w,o,s,r,i),d+=Object(p["a"])(b,s,b,w,r,i);break;case m.Z:if(n){if(a(g,v,b,w,t,r,i))return!0}else d+=Object(p["a"])(g,v,b,w,r,i);g=b,v=w;break}}return n||y(v,w)||(d+=Object(p["a"])(g,v,b,w,r,i)||0),0!==d}function k(e,t,n){return E(e,0,!1,t,n)}function O(e,t,n,r){return E(e,t,!0,n,r)}var T=n("bYtY"),A=n("Qe9p"),M=n("LPTA"),P=n("S8SX");n.d(t,"a",function(){return R});var R=Object(T["j"])({fill:"#000",stroke:null,strokePercent:1,fillOpacity:1,strokeOpacity:1,lineDashOffset:0,lineWidth:1,lineCap:"butt",miterLimit:10,strokeNoScale:!1,strokeFirst:!1},i["b"]),L={style:Object(T["j"])({fill:!0,stroke:!0,strokePercent:!0,fillOpacity:!0,strokeOpacity:!0,lineDashOffset:!0,lineWidth:!0,miterLimit:!0},i["a"].style)},D=["x","y","rotation","scaleX","scaleY","originX","originY","invisible","culling","z","z2","zlevel","parent"],j=function(e){function t(t){return e.call(this,t)||this}return Object(r["a"])(t,e),t.prototype.update=function(){var n=this;e.prototype.update.call(this);var r=this.style;if(r.decal){var i=this._decalEl=this._decalEl||new t;i.buildPath===t.prototype.buildPath&&(i.buildPath=function(e){n.buildPath(e,n.shape)}),i.silent=!0;var o=i.style;for(var a in r)o[a]!==r[a]&&(o[a]=r[a]);o.fill=r.fill?r.decal:null,o.decal=null,o.shadowColor=null,r.strokeFirst&&(o.stroke=null);for(var s=0;s.5?M["a"]:t>.2?M["c"]:M["d"]}if(e)return M["d"]}return M["a"]},t.prototype.getInsideTextStroke=function(e){var t=this.style.fill;if(Object(T["A"])(t)){var n=this.__zr,r=!(!n||!n.isDarkMode()),i=Object(A["c"])(e,0)0))},t.prototype.hasFill=function(){var e=this.style,t=e.fill;return null!=t&&"none"!==t},t.prototype.getBoundingRect=function(){var e=this._rect,t=this.style,n=!e;if(n){var r=!1;this.path||(r=!0,this.createPathProxy());var i=this.path;(r||this.__dirty&P["b"])&&(i.beginPath(),this.buildPath(i,this.shape,!1),this.pathUpdated()),e=i.getBoundingRect()}if(this._rect=e,this.hasStroke()&&this.path&&this.path.len()>0){var o=this._rectWithStroke||(this._rectWithStroke=e.clone());if(this.__dirty||n){o.copy(e);var a=t.strokeNoScale?this.getLineScale():1,s=t.lineWidth;if(!this.hasFill()){var l=this.strokeContainThreshold;s=Math.max(s,null==l?4:l)}a>1e-10&&(o.width+=s/a,o.height+=s/a,o.x-=s/a/2,o.y-=s/a/2)}return o}return e},t.prototype.contain=function(e,t){var n=this.transformCoordToLocal(e,t),r=this.getBoundingRect(),i=this.style;if(e=n[0],t=n[1],r.contain(e,t)){var o=this.path;if(this.hasStroke()){var a=i.lineWidth,s=i.strokeNoScale?this.getLineScale():1;if(s>1e-10&&(this.hasFill()||(a=Math.max(a,this.strokeContainThreshold)),O(o,a/s,e,t)))return!0}if(this.hasFill())return k(o,e,t)}return!1},t.prototype.dirtyShape=function(){this.__dirty|=P["b"],this._rect&&(this._rect=null),this._decalEl&&this._decalEl.dirtyShape(),this.markRedraw()},t.prototype.dirty=function(){this.dirtyStyle(),this.dirtyShape()},t.prototype.animateShape=function(e){return this.animate("shape",e)},t.prototype.updateDuringAnimation=function(e){"style"===e?this.dirtyStyle():"shape"===e?this.dirtyShape():this.markRedraw()},t.prototype.attrKV=function(t,n){"shape"===t?this.setShape(n):e.prototype.attrKV.call(this,t,n)},t.prototype.setShape=function(e,t){var n=this.shape;return n||(n=this.shape={}),"string"===typeof e?n[e]=t:Object(T["m"])(n,e),this.dirtyShape(),this},t.prototype.shapeChanged=function(){return!!(this.__dirty&P["b"])},t.prototype.createStyle=function(e){return Object(T["h"])(R,e)},t.prototype._innerSaveToNormal=function(t){e.prototype._innerSaveToNormal.call(this,t);var n=this._normalState;t.shape&&!n.shape&&(n.shape=Object(T["m"])({},this.shape))},t.prototype._applyStateObj=function(t,n,r,i,o,a){e.prototype._applyStateObj.call(this,t,n,r,i,o,a);var s,l=!(n&&i);if(n&&n.shape?o?i?s=n.shape:(s=Object(T["m"])({},r.shape),Object(T["m"])(s,n.shape)):(s=Object(T["m"])({},i?this.shape:r.shape),Object(T["m"])(s,n.shape)):l&&(s=r.shape),s)if(o){this.shape=Object(T["m"])({},this.shape);for(var c={},u=Object(T["D"])(s),h=0;h-1}function q(e,t){var n=this.__data__,r=J(n,e);return r<0?n.push([e,t]):n[r][1]=t,this}function K(e){var t=-1,n=e?e.length:0;this.clear();while(++t>1,u=23===t?M(2,-24)-M(2,-77):0,h=0,d=e<0||0===e&&1/e<0?1:0;for(e=A(e),e!=e||e===O?(i=e!=e?1:0,r=l):(r=P(R(e)/L),e*(o=M(2,-r))<1&&(r--,o*=2),e+=r+c>=1?u/o:u*M(2,1-c),e*o>=2&&(r++,o/=2),r+c>=l?(i=0,r=l):r+c>=1?(i=(e*o-1)*M(2,t),r+=c):(i=e*M(2,c-1)*M(2,t),r=0));t>=8;a[h++]=255&i,i/=256,t-=8);for(r=r<0;a[h++]=255&r,r/=256,s-=8);return a[--h]|=128*d,a}function B(e,t,n){var r,i=8*n-t-1,o=(1<>1,s=i-7,l=n-1,c=e[l--],u=127&c;for(c>>=7;s>0;u=256*u+e[l],l--,s-=8);for(r=u&(1<<-s)-1,u>>=-s,s+=t;s>0;r=256*r+e[l],l--,s-=8);if(0===u)u=1-a;else{if(u===o)return r?NaN:c?-O:O;r+=M(2,t),u-=a}return(c?-1:1)*r*M(2,u-t)}function W(e){return e[3]<<24|e[2]<<16|e[1]<<8|e[0]}function H(e){return[255&e]}function z(e){return[255&e,e>>8&255]}function U(e){return[255&e,e>>8&255,e>>16&255,e>>24&255]}function q(e){return V(e,52,8)}function K(e){return V(e,23,4)}function G(e,t,n){m(e[w],t,{get:function(){return this[n]}})}function Y(e,t,n,r){var i=+n,o=f(i);if(o+t>e[$])throw k(_);var a=e[I]._b,s=o+e[F],l=a.slice(s,s+t);return r?l:l.reverse()}function X(e,t,n,r,i,o){var a=+n,s=f(a);if(s+t>e[$])throw k(_);for(var l=e[I]._b,c=s+e[F],u=r(+i),h=0;hee;)(Q=J[ee++])in C||s(C,Q,T[Q]);o||(Z.constructor=C)}var te=new S(new C(2)),ne=S[w].setInt8;te.setInt8(0,2147483648),te.setInt8(1,2147483649),!te.getInt8(0)&&te.getInt8(1)||l(S[w],{setInt8:function(e,t){ne.call(this,e,t<<24>>24)},setUint8:function(e,t){ne.call(this,e,t<<24>>24)}},!0)}else C=function(e){u(this,C,y);var t=f(e);this._b=g.call(new Array(t),0),this[$]=t},S=function(e,t,n){u(this,S,b),u(e,C,b);var r=e[$],i=h(t);if(i<0||i>r)throw k("Wrong offset!");if(n=void 0===n?r-i:d(n),i+n>r)throw k(x);this[I]=e,this[F]=i,this[$]=n},i&&(G(C,j,"_l"),G(S,D,"_b"),G(S,j,"_l"),G(S,N,"_o")),l(S[w],{getInt8:function(e){return Y(this,1,e)[0]<<24>>24},getUint8:function(e){return Y(this,1,e)[0]},getInt16:function(e){var t=Y(this,2,e,arguments[1]);return(t[1]<<8|t[0])<<16>>16},getUint16:function(e){var t=Y(this,2,e,arguments[1]);return t[1]<<8|t[0]},getInt32:function(e){return W(Y(this,4,e,arguments[1]))},getUint32:function(e){return W(Y(this,4,e,arguments[1]))>>>0},getFloat32:function(e){return B(Y(this,4,e,arguments[1]),23,4)},getFloat64:function(e){return B(Y(this,8,e,arguments[1]),52,8)},setInt8:function(e,t){X(this,1,e,H,t)},setUint8:function(e,t){X(this,1,e,H,t)},setInt16:function(e,t){X(this,2,e,z,t,arguments[2])},setUint16:function(e,t){X(this,2,e,z,t,arguments[2])},setInt32:function(e,t){X(this,4,e,U,t,arguments[2])},setUint32:function(e,t){X(this,4,e,U,t,arguments[2])},setFloat32:function(e,t){X(this,4,e,K,t,arguments[2])},setFloat64:function(e,t){X(this,8,e,q,t,arguments[2])}});v(C,y),v(S,b),s(S[w],a.VIEW,!0),t[y]=C,t[b]=S},yLpj:function(e,t){var n;n=function(){return this}();try{n=n||new Function("return this")()}catch(e){"object"===typeof window&&(n=window)}e.exports=n},yVla:function(e,t,n){"use strict";t.__esModule=!0;t.canUseDOM=!("undefined"===typeof window||!window.document||!window.document.createElement),t.getConfirmation=function(e,t){return t(window.confirm(e))},t.supportsHistory=function(){var e=window.navigator.userAgent;return(-1===e.indexOf("Android 2.")&&-1===e.indexOf("Android 4.0")||-1===e.indexOf("Mobile Safari")||-1!==e.indexOf("Chrome")||-1!==e.indexOf("Windows Phone"))&&(window.history&&"pushState"in window.history)},t.supportsPopStateOnHashChange=function(){return-1===window.navigator.userAgent.indexOf("Trident")},t.supportsGoWithoutReloadUsingHash=function(){return-1===window.navigator.userAgent.indexOf("Firefox")},t.isExtraneousPopstateEvent=function(e){return void 0===e.state&&-1===navigator.userAgent.indexOf("CriOS")}},yWgo:function(e,t,n){"use strict";n.d(t,"b",function(){return a}),n.d(t,"c",function(){return s}),n.d(t,"d",function(){return l}),n.d(t,"a",function(){return c});n("miYZ");var r=n("tsqr"),i=(n("wd/R"),n("+QRC")),o=n.n(i);function a(e){return document.cookie.split("; ").reduce((t,n)=>{var r=n.split("=");return r[0]===e?decodeURIComponent(r[1]):t},"")}function s(){return-1!==window.navigator.userAgent.toLowerCase().indexOf("mobile")}function l(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:525600,r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:"/",i=arguments.length>4?arguments[4]:void 0,o=new Date(Date.now()+6e4*n).toGMTString();document.cookie=e+"=".concat(encodeURIComponent(t),";expires=").concat(o,";path=").concat(r)+(i?";domain=".concat(i):"")}function c(e){o()(e),r["a"].success("\u590d\u5236\u6210\u529f")}},ykC2:function(e,t,n){"use strict";n("bbsP");var r=n("/wGt"),i=(n("+L6B"),n("2/Rp")),o=(n("5Dmo"),n("3S7+")),a=(n("Pwec"),n("CtXQ")),s=(n("OaEy"),n("2fM7")),l=(n("5NDa"),n("5rEg")),c=n("p0pE"),u=n.n(c),h=n("q1tI"),d=n.n(h),f=n("/MKj"),p=(n("lc5D"),n("VeWa"),n("umNf"),n("8zNj"));class m extends d.a.Component{constructor(e){super(e),this.state={server:this.props.record||{tls:0,rate:1},visible:!1,childDrawer:{visible:!1}}}onShow(){this.setState({visible:!this.state.visible})}save(){var e=this.state.server;this.props.dispatch({type:"serverTrojan/save",params:e,callback:()=>{this.onShow()}})}showChildDrawer(e,t){this.setState({childDrawer:u()({},this.state.childDrawer,{visible:!this.state.childDrawer.visible,title:e,type:t})})}changeServer(e,t){this.setState({server:u()({},this.state.server,{[e]:t})})}formChange(e,t){this.setState({server:u()({},this.state.server,{[e]:t})})}render(){var e=this.state.server,t=this.props.serverTrojan.saveLoading,n=this.props.serverManage.servers,c=this.props.serverGroup.groups;return d.a.createElement(d.a.Fragment,null,d.a.cloneElement(this.props.children,{onClick:()=>this.setState({visible:!0})}),d.a.createElement(r["a"],{id:"server",maskClosable:!0,title:e.id?"\u7f16\u8f91\u8282\u70b9":"\u65b0\u5efa\u8282\u70b9",width:"80%",visible:this.state.visible,onClose:()=>this.onShow()},d.a.createElement("div",null,d.a.createElement("div",{className:"row"},d.a.createElement("div",{className:"form-group col-8"},d.a.createElement("label",null,"\u8282\u70b9\u540d\u79f0"),d.a.createElement(l["a"],{placeholder:"\u8bf7\u8f93\u5165\u8282\u70b9\u540d\u79f0",value:e.name,onChange:e=>this.formChange("name",e.target.value)})),d.a.createElement("div",{className:"form-group col-4"},d.a.createElement("label",null,"\u500d\u7387"),d.a.createElement(l["a"],{addonAfter:"x",placeholder:"\u8bf7\u8f93\u5165\u8282\u70b9\u500d\u7387",value:e.rate,onChange:e=>this.formChange("rate",e.target.value)}))),d.a.createElement("div",{className:"form-group"},d.a.createElement("label",null,"\u8282\u70b9\u6807\u7b7e"),d.a.createElement(s["a"],{mode:"tags",value:e.tags||[],style:{width:"100%"},placeholder:"\u8f93\u5165\u540e\u56de\u8f66\u6dfb\u52a0\u6807\u7b7e",onChange:e=>this.formChange("tags",e.length>0?e:null)})),d.a.createElement("div",{className:"form-group"},d.a.createElement("label",null,"\u6743\u9650\u7ec4 ",d.a.createElement(p["a"],null,d.a.createElement("a",{href:"javascript:(0);"},"\u6dfb\u52a0\u6743\u9650\u7ec4"))),d.a.createElement(s["a"],{mode:"multiple",value:e.group_id,placeholder:"\u8bf7\u9009\u62e9\u6743\u9650\u7ec4",style:{width:"100%"},onChange:e=>this.formChange("group_id",e)},c.map(e=>{return d.a.createElement(s["a"].Option,{key:e.id},e.name)}))),d.a.createElement("div",{className:"row"},d.a.createElement("div",{className:"form-group col-md-12 col-xs-12"},d.a.createElement("label",null,"\u8282\u70b9\u5730\u5740"),d.a.createElement(l["a"],{placeholder:"\u5730\u5740\u6216IP",value:e.host,onChange:e=>this.formChange("host",e.target.value)}))),d.a.createElement("div",{className:"row"},d.a.createElement("div",{className:"form-group col-md-4 col-xs-12"},d.a.createElement("label",null,"\u8fde\u63a5\u7aef\u53e3"),d.a.createElement(l["a"],{placeholder:"\u7528\u6237\u8fde\u63a5\u7aef\u53e3",value:e.port,onChange:e=>{this.formChange("port",e.target.value)}})),d.a.createElement("div",{className:"form-group col-md-4 col-xs-12"},d.a.createElement("label",null,"\u670d\u52a1\u7aef\u53e3"),d.a.createElement(l["a"],{placeholder:"\u670d\u52a1\u7aef\u5f00\u653e\u7aef\u53e3",value:e.server_port,onChange:e=>{this.formChange("server_port",e.target.value)}})),d.a.createElement("div",{className:"form-group col-md-4 col-xs-12"},d.a.createElement("label",null,d.a.createElement(o["a"],{placement:"top",title:"\u4f7f\u7528\u81ea\u7b7e\u540d\u8bc1\u4e66\u9700\u8981\u5141\u8bb8\u4e0d\u5b89\u5168\uff0c\u7528\u6237\u624d\u53ef\u4ee5\u8fde\u63a5"},"\u5141\u8bb8\u4e0d\u5b89\u5168 ",d.a.createElement(a["a"],{type:"question-circle"}))),d.a.createElement(s["a"],{value:parseInt(e.allow_insecure)?1:0,placeholder:"\u5141\u8bb8\u4e0d\u5b89\u5168",style:{width:"100%"},onChange:e=>this.formChange("allow_insecure",e)},d.a.createElement(s["a"].Option,{key:0,value:0},"\u5426"),d.a.createElement(s["a"].Option,{key:1,value:1},"\u662f")))),d.a.createElement("div",{className:"form-group"},d.a.createElement("label",null,"\u670d\u52a1\u5668\u540d\u79f0\u6307\u793a(sni)"),d.a.createElement(l["a"],{placeholder:"\u5f53\u8282\u70b9\u5730\u5740\u4e0e\u8bc1\u4e66\u4e0d\u4e00\u81f4\u65f6\u7528\u4e8e\u8bc1\u4e66\u9a8c\u8bc1",value:e.server_name,onChange:e=>this.formChange("server_name",e.target.value)})),d.a.createElement("div",{className:"form-group"},d.a.createElement("label",null,d.a.createElement(o["a"],{placement:"top"},"\u7236\u8282\u70b9 ",d.a.createElement("a",{target:"_blank",href:"https://docs.v2board.com/use/node.html#\u7236\u8282\u70b9\u4e0e\u5b50\u8282\u70b9\u5173\u7cfb"},"\u66f4\u591a\u89e3\u7b54"))),d.a.createElement(s["a"],{value:e.parent_id||"",onChange:e=>this.formChange("parent_id",e),style:{width:"100%"}},d.a.createElement(s["a"].Option,{value:""},"\u65e0"),n.map(t=>{if("trojan"===t.type&&t.id!==e.id)return d.a.createElement(s["a"].Option,{key:Math.random(),value:t.id},t.name)})))),d.a.createElement("div",{className:"v2board-drawer-action"},d.a.createElement(i["a"],{style:{marginRight:8},onClick:()=>this.onShow()},"\u53d6\u6d88"),d.a.createElement(i["a"],{loading:t,onClick:()=>this.save(),type:"primary"},"\u63d0\u4ea4"))))}}t["a"]=Object(f["c"])(e=>{var t=e.serverTrojan,n=e.serverGroup,r=e.serverManage;return{serverTrojan:t,serverGroup:n,serverManage:r}})(m)},yoD8:function(e,t,n){"use strict";var r=n("3Oj7"),i=[0,0],o=[0,0],a=new r["a"],s=new r["a"],l=function(){function e(e,t){this._corners=[],this._axes=[],this._origin=[0,0];for(var n=0;n<4;n++)this._corners[n]=new r["a"];for(n=0;n<2;n++)this._axes[n]=new r["a"];e&&this.fromBoundingRect(e,t)}return e.prototype.fromBoundingRect=function(e,t){var n=this._corners,i=this._axes,o=e.x,a=e.y,s=o+e.width,l=a+e.height;if(n[0].set(o,a),n[1].set(s,a),n[2].set(s,l),n[3].set(o,l),t)for(var c=0;c<4;c++)n[c].transform(t);r["a"].sub(i[0],n[1],n[0]),r["a"].sub(i[1],n[3],n[0]),i[0].normalize(),i[1].normalize();for(c=0;c<2;c++)this._origin[c]=i[c].dot(n[0])},e.prototype.intersect=function(e,t){var n=!0,i=!t;return a.set(1/0,1/0),s.set(0,0),!this._intersectCheckOneSide(this,e,a,s,i,1)&&(n=!1,i)?n:!this._intersectCheckOneSide(e,this,a,s,i,-1)&&(n=!1,i)?n:(i||r["a"].copy(t,n?a:s),n)},e.prototype._intersectCheckOneSide=function(e,t,n,a,s,l){for(var c=!0,u=0;u<2;u++){var h=this._axes[u];if(this._getProjMinMaxOnAxis(u,e._corners,i),this._getProjMinMaxOnAxis(u,t._corners,o),i[1]o[1]){if(c=!1,s)return c;var d=Math.abs(o[0]-i[1]),f=Math.abs(i[0]-o[1]);Math.min(d,f)>a.len()&&(d0?!0===a?r.scrollTop(t,b.top+w.top):!1===a?r.scrollTop(t,b.top+x.top):w.top<0?r.scrollTop(t,b.top+w.top):r.scrollTop(t,b.top+x.top):o||(a=void 0===a||!!a,a?r.scrollTop(t,b.top+w.top):r.scrollTop(t,b.top+x.top)),i&&(w.left<0||x.left>0?!0===s?r.scrollLeft(t,b.left+w.left):!1===s?r.scrollLeft(t,b.left+x.left):w.left<0?r.scrollLeft(t,b.left+w.left):r.scrollLeft(t,b.left+x.left):o||(s=void 0===s||!!s,s?r.scrollLeft(t,b.left+w.left):r.scrollLeft(t,b.left+x.left)))}e.exports=i},zxrt:function(e,t,n){"use strict";var r=n("WGNW"),i=n("88Vn"),o=n("yLMY"),a=n("7vYJ"),s=n("Spc3"),l=n("OsVd"),c=n("u8+u"),u=n("c0Oy").ArrayBuffer,h=n("VeyY"),d=o.ArrayBuffer,f=o.DataView,p=i.ABV&&u.isView,m=d.prototype.slice,g=i.VIEW,v="ArrayBuffer";r(r.G+r.W+r.F*(u!==d),{ArrayBuffer:d}),r(r.S+r.F*!i.CONSTR,v,{isView:function(e){return p&&p(e)||c(e)&&g in e}}),r(r.P+r.U+r.F*n("wUWy")(function(){return!new d(2).slice(1,void 0).byteLength}),v,{slice:function(e,t){if(void 0!==m&&void 0===t)return m.call(a(this),e);var n=a(this).byteLength,r=s(e,n),i=s(void 0===t?n:t,n),o=new(h(this,d))(l(i-r)),c=new f(this),u=new f(o),p=0;while(r 0!";if(e!=this.$splits){if(e>this.$splits){while(this.$splitse)t=this.$editors[this.$splits-1],this.$container.removeChild(t.container),this.$splits--;this.resize()}},this.getSplits=function(){return this.$splits},this.getEditor=function(e){return this.$editors[e]},this.getCurrentEditor=function(){return this.$cEditor},this.focus=function(){this.$cEditor.focus()},this.blur=function(){this.$cEditor.blur()},this.setTheme=function(e){this.$editors.forEach(function(t){t.setTheme(e)})},this.setKeyboardHandler=function(e){this.$editors.forEach(function(t){t.setKeyboardHandler(e)})},this.forEach=function(e,t){this.$editors.forEach(e,t)},this.$fontSize="",this.setFontSize=function(e){this.$fontSize=e,this.forEach(function(t){t.setFontSize(e)})},this.$cloneSession=function(e){var t=new s(e.getDocument(),e.getMode()),n=e.getUndoManager();return t.setUndoManager(n),t.setTabSize(e.getTabSize()),t.setUseSoftTabs(e.getUseSoftTabs()),t.setOverwrite(e.getOverwrite()),t.setBreakpoints(e.getBreakpoints()),t.setUseWrapMode(e.getUseWrapMode()),t.setUseWorker(e.getUseWorker()),t.setWrapLimitRange(e.$wrapLimitRange.min,e.$wrapLimitRange.max),t.$foldData=e.$cloneFoldData(),t},this.setSession=function(e,t){var n;n=null==t?this.$cEditor:this.$editors[t];var r=this.$editors.some(function(t){return t.session===e});return r&&(e=this.$cloneSession(e)),n.setSession(e),e},this.getOrientation=function(){return this.$orientation},this.setOrientation=function(e){this.$orientation!=e&&(this.$orientation=e,this.resize())},this.resize=function(){var e,t=this.$container.clientWidth,n=this.$container.clientHeight;if(this.$orientation==this.BESIDE)for(var r=t/this.$splits,i=0;i=3&&":"===e[t-3]?0:t>=3&&"/"===e[t-3]?0:r.match(n.re.no_http)[0].length:0}},"mailto:":{validate:function(e,t,n){var r=e.slice(t);return n.re.mailto||(n.re.mailto=new RegExp("^"+n.re.src_email_name+"@"+n.re.src_host_strict,"i")),n.re.mailto.test(r)?r.match(n.re.mailto)[0].length:0}}},f="a[cdefgilmnoqrstuwxz]|b[abdefghijmnorstvwyz]|c[acdfghiklmnoruvwxyz]|d[ejkmoz]|e[cegrstu]|f[ijkmor]|g[abdefghilmnpqrstuwy]|h[kmnrtu]|i[delmnoqrst]|j[emop]|k[eghimnprwyz]|l[abcikrstuvy]|m[acdeghklmnopqrstuvwxyz]|n[acefgilopruz]|om|p[aefghklmnrstwy]|qa|r[eosuw]|s[abcdeghijklmnortuvxyz]|t[cdfghjklmnortvwz]|u[agksyz]|v[aceginu]|w[fs]|y[et]|z[amw]",p="biz|com|edu|gov|net|org|pro|web|xxx|aero|asia|coop|info|museum|name|shop|\u0440\u0444".split("|");function m(e){e.__index__=-1,e.__text_cache__=""}function g(e){return function(t,n){var r=t.slice(n);return e.test(r)?r.match(e)[0].length:0}}function v(){return function(e,t){t.normalize(e)}}function y(e){var t=e.re=n("sRdV")(e.__opts__),r=e.__tlds__.slice();function i(e){return e.replace("%TLDS%",t.src_tlds)}e.onCompile(),e.__tlds_replaced__||r.push(f),r.push(t.src_xn),t.src_tlds=r.join("|"),t.email_fuzzy=RegExp(i(t.tpl_email_fuzzy),"i"),t.link_fuzzy=RegExp(i(t.tpl_link_fuzzy),"i"),t.link_no_ip_fuzzy=RegExp(i(t.tpl_link_no_ip_fuzzy),"i"),t.host_fuzzy_test=RegExp(i(t.tpl_host_fuzzy_test),"i");var u=[];function h(e,t){throw new Error('(LinkifyIt) Invalid schema "'+e+'": '+t)}e.__compiled__={},Object.keys(e.__schemas__).forEach(function(t){var n=e.__schemas__[t];if(null!==n){var r={validate:null,link:null};if(e.__compiled__[t]=r,a(n))return s(n.validate)?r.validate=g(n.validate):l(n.validate)?r.validate=n.validate:h(t,n),void(l(n.normalize)?r.normalize=n.normalize:n.normalize?h(t,n):r.normalize=v());o(n)?u.push(t):h(t,n)}}),u.forEach(function(t){e.__compiled__[e.__schemas__[t]]&&(e.__compiled__[t].validate=e.__compiled__[e.__schemas__[t]].validate,e.__compiled__[t].normalize=e.__compiled__[e.__schemas__[t]].normalize)}),e.__compiled__[""]={validate:null,normalize:v()};var d=Object.keys(e.__compiled__).filter(function(t){return t.length>0&&e.__compiled__[t]}).map(c).join("|");e.re.schema_test=RegExp("(^|(?!_)(?:[><\uff5c]|"+t.src_ZPCc+"))("+d+")","i"),e.re.schema_search=RegExp("(^|(?!_)(?:[><\uff5c]|"+t.src_ZPCc+"))("+d+")","ig"),e.re.pretest=RegExp("("+e.re.schema_test.source+")|("+e.re.host_fuzzy_test.source+")|@","i"),m(e)}function b(e,t){var n=e.__index__,r=e.__last_index__,i=e.__text_cache__.slice(n,r);this.schema=e.__schema__.toLowerCase(),this.index=n+t,this.lastIndex=r+t,this.raw=i,this.text=i,this.url=i}function w(e,t){var n=new b(e,t);return e.__compiled__[n.schema].normalize(n,e),n}function x(e,t){if(!(this instanceof x))return new x(e,t);t||h(e)&&(t=e,e={}),this.__opts__=r({},u,t),this.__index__=-1,this.__last_index__=-1,this.__schema__="",this.__text_cache__="",this.__schemas__=r({},d,e),this.__compiled__={},this.__tlds__=p,this.__tlds_replaced__=!1,this.re={},y(this)}x.prototype.add=function(e,t){return this.__schemas__[e]=t,y(this),this},x.prototype.set=function(e){return this.__opts__=r(this.__opts__,e),this},x.prototype.test=function(e){if(this.__text_cache__=e,this.__index__=-1,!e.length)return!1;var t,n,r,i,o,a,s,l,c;if(this.re.schema_test.test(e)){s=this.re.schema_search,s.lastIndex=0;while(null!==(t=s.exec(e)))if(i=this.testSchemaAt(e,t[2],s.lastIndex),i){this.__schema__=t[2],this.__index__=t.index+t[1].length,this.__last_index__=t.index+t[0].length+i;break}}return this.__opts__.fuzzyLink&&this.__compiled__["http:"]&&(l=e.search(this.re.host_fuzzy_test),l>=0&&(this.__index__<0||l=0&&null!==(r=e.match(this.re.email_fuzzy))&&(o=r.index+r[1].length,a=r.index+r[0].length,(this.__index__<0||othis.__last_index__)&&(this.__schema__="mailto:",this.__index__=o,this.__last_index__=a))),this.__index__>=0},x.prototype.pretest=function(e){return this.re.pretest.test(e)},x.prototype.testSchemaAt=function(e,t,n){return this.__compiled__[t.toLowerCase()]?this.__compiled__[t.toLowerCase()].validate(e,n,this):0},x.prototype.match=function(e){var t=0,n=[];this.__index__>=0&&this.__text_cache__===e&&(n.push(w(this,t)),t=this.__last_index__);var r=t?e.slice(t):e;while(this.test(r))n.push(w(this,t)),r=r.slice(this.__last_index__),t+=this.__last_index__;return n.length?n:null},x.prototype.tlds=function(e,t){return e=Array.isArray(e)?e:[e],t?(this.__tlds__=this.__tlds__.concat(e).sort().filter(function(e,t,n){return e!==n[t-1]}).reverse(),y(this),this):(this.__tlds__=e.slice(),this.__tlds_replaced__=!0,y(this),this)},x.prototype.normalize=function(e){e.schema||(e.url="http://"+e.url),"mailto:"!==e.schema||/^mailto:/i.test(e.url)||(e.url="mailto:"+e.url)},x.prototype.onCompile=function(){},e.exports=x},"+JPL":function(e,t,n){e.exports={default:n("+SFK"),__esModule:!0}},"+LrT":function(e,t,n){"use strict";var r={childContextTypes:!0,contextTypes:!0,defaultProps:!0,displayName:!0,getDefaultProps:!0,getDerivedStateFromProps:!0,mixins:!0,propTypes:!0,type:!0},i={name:!0,length:!0,prototype:!0,caller:!0,callee:!0,arguments:!0,arity:!0},o=Object.defineProperty,a=Object.getOwnPropertyNames,s=Object.getOwnPropertySymbols,l=Object.getOwnPropertyDescriptor,c=Object.getPrototypeOf,u=c&&c(Object);function h(e,t,n){if("string"!==typeof t){if(u){var d=c(t);d&&d!==u&&h(e,d,n)}var f=a(t);s&&(f=f.concat(s(t)));for(var p=0;px;x++)if((d||x in y)&&(m=y[x],g=b(m,x,v),e))if(n)_[x]=g;else if(g)switch(e){case 3:return!0;case 5:return m;case 6:return x;case 2:_.push(m)}else if(u)return!1;return h?-1:c||u?u:_}}},"+wdc":function(e,t,n){"use strict";var r,i,o,a,s;if("undefined"===typeof window||"function"!==typeof MessageChannel){var l=null,c=null,u=function(){if(null!==l)try{var e=t.unstable_now();l(!0,e),l=null}catch(e){throw setTimeout(u,0),e}},h=Date.now();t.unstable_now=function(){return Date.now()-h},r=function(e){null!==l?setTimeout(r,0,e):(l=e,setTimeout(u,0))},i=function(e,t){c=setTimeout(e,t)},o=function(){clearTimeout(c)},a=function(){return!1},s=t.unstable_forceFrameRate=function(){}}else{var d=window.performance,f=window.Date,p=window.setTimeout,m=window.clearTimeout;if("undefined"!==typeof console){var g=window.cancelAnimationFrame;"function"!==typeof window.requestAnimationFrame&&console.error("This browser doesn't support requestAnimationFrame. Make sure that you load a polyfill in older browsers. https://fb.me/react-polyfills"),"function"!==typeof g&&console.error("This browser doesn't support cancelAnimationFrame. Make sure that you load a polyfill in older browsers. https://fb.me/react-polyfills")}if("object"===typeof d&&"function"===typeof d.now)t.unstable_now=function(){return d.now()};else{var v=f.now();t.unstable_now=function(){return f.now()-v}}var y=!1,b=null,w=-1,x=5,_=0;a=function(){return t.unstable_now()>=_},s=function(){},t.unstable_forceFrameRate=function(e){0>e||125>>1,i=e[r];if(!(void 0!==i&&0T(a,n))void 0!==l&&0>T(l,a)?(e[r]=l,e[s]=n,r=s):(e[r]=a,e[o]=n,r=o);else{if(!(void 0!==l&&0>T(l,n)))break e;e[r]=l,e[s]=n,r=s}}}return t}return null}function T(e,t){var n=e.sortIndex-t.sortIndex;return 0!==n?n:e.id-t.id}var A=[],M=[],P=1,R=null,L=3,D=!1,j=!1,N=!1;function I(e){for(var t=k(M);null!==t;){if(null===t.callback)O(M);else{if(!(t.startTime<=e))break;O(M),t.sortIndex=t.expirationTime,E(A,t)}t=k(M)}}function $(e){if(N=!1,I(e),!j)if(null!==k(A))j=!0,r(F);else{var t=k(M);null!==t&&i($,t.startTime-e)}}function F(e,n){j=!1,N&&(N=!1,o()),D=!0;var r=L;try{for(I(n),R=k(A);null!==R&&(!(R.expirationTime>n)||e&&!a());){var s=R.callback;if(null!==s){R.callback=null,L=R.priorityLevel;var l=s(R.expirationTime<=n);n=t.unstable_now(),"function"===typeof l?R.callback=l:R===k(A)&&O(A),I(n)}else O(A);R=k(A)}if(null!==R)var c=!0;else{var u=k(M);null!==u&&i($,u.startTime-n),c=!1}return c}finally{R=null,L=r,D=!1}}function V(e){switch(e){case 1:return-1;case 2:return 250;case 5:return 1073741823;case 4:return 1e4;default:return 5e3}}var B=s;t.unstable_IdlePriority=5,t.unstable_ImmediatePriority=1,t.unstable_LowPriority=4,t.unstable_NormalPriority=3,t.unstable_Profiling=null,t.unstable_UserBlockingPriority=2,t.unstable_cancelCallback=function(e){e.callback=null},t.unstable_continueExecution=function(){j||D||(j=!0,r(F))},t.unstable_getCurrentPriorityLevel=function(){return L},t.unstable_getFirstCallbackNode=function(){return k(A)},t.unstable_next=function(e){switch(L){case 1:case 2:case 3:var t=3;break;default:t=L}var n=L;L=t;try{return e()}finally{L=n}},t.unstable_pauseExecution=function(){},t.unstable_requestPaint=B,t.unstable_runWithPriority=function(e,t){switch(e){case 1:case 2:case 3:case 4:case 5:break;default:e=3}var n=L;L=e;try{return t()}finally{L=n}},t.unstable_scheduleCallback=function(e,n,a){var s=t.unstable_now();if("object"===typeof a&&null!==a){var l=a.delay;l="number"===typeof l&&0s?(e.sortIndex=l,E(M,e),null===k(A)&&e===k(M)&&(N?o():N=!0,i($,l-s))):(e.sortIndex=a,E(A,e),j||D||(j=!0,r(F))),e},t.unstable_shouldYield=function(){var e=t.unstable_now();I(e);var n=k(A);return n!==R&&null!==R&&null!==n&&null!==n.callback&&n.startTime<=e&&n.expirationTime=0||(i[n]=e[n]);return i}var y=n("2mql"),b=n.n(y),w=n("0vxD"),x=["getDisplayName","methodName","renderCountProp","shouldHandleStateChanges","storeKey","withRef","forwardRef","context"],_=["reactReduxForwardedRef"],S=[],C=[null,null];function E(e,t){var n=e[1];return[t.payload,n+1]}function k(e,t,n){f(function(){return e.apply(void 0,t)},n)}function O(e,t,n,r,i,o,a){e.current=r,t.current=i,n.current=!1,o.current&&(o.current=null,a())}function T(e,t,n,r,i,o,a,s,l,c){if(e){var u=!1,h=null,d=function(){if(!u){var e,n,d=t.getState();try{e=r(d,i.current)}catch(e){n=e,h=e}n||(h=null),e===o.current?a.current||l():(o.current=e,s.current=e,a.current=!0,c({type:"STORE_UPDATED",payload:{error:n}}))}};n.onStateChange=d,n.trySubscribe(),d();var f=function(){if(u=!0,n.tryUnsubscribe(),n.onStateChange=null,h)throw h};return f}}var A=function(){return[null,0]};function M(e,t){void 0===t&&(t={});var n=t,a=n.getDisplayName,s=void 0===a?function(e){return"ConnectAdvanced("+e+")"}:a,l=n.methodName,c=void 0===l?"connectAdvanced":l,u=n.renderCountProp,h=void 0===u?void 0:u,f=n.shouldHandleStateChanges,p=void 0===f||f,m=n.storeKey,y=void 0===m?"store":m,M=(n.withRef,n.forwardRef),P=void 0!==M&&M,R=n.context,L=void 0===R?o:R,D=v(n,x),j=L;return function(t){var n=t.displayName||t.name||"Component",o=s(n),a=g({},D,{getDisplayName:s,methodName:c,renderCountProp:h,shouldHandleStateChanges:p,storeKey:y,displayName:o,wrappedComponentName:n,WrappedComponent:t}),l=D.pure;function u(t){return e(t.dispatch,a)}var f=l?r["useMemo"]:function(e){return e()};function m(e){var n=Object(r["useMemo"])(function(){var t=e.reactReduxForwardedRef,n=v(e,_);return[e.context,t,n]},[e]),o=n[0],a=n[1],s=n[2],l=Object(r["useMemo"])(function(){return o&&o.Consumer&&Object(w["isContextConsumer"])(i.a.createElement(o.Consumer,null))?o:j},[o,j]),c=Object(r["useContext"])(l),h=Boolean(e.store)&&Boolean(e.store.getState)&&Boolean(e.store.dispatch);Boolean(c)&&Boolean(c.store);var m=h?e.store:c.store,y=Object(r["useMemo"])(function(){return u(m)},[m]),b=Object(r["useMemo"])(function(){if(!p)return C;var e=d(m,h?null:c.subscription),t=e.notifyNestedSubs.bind(e);return[e,t]},[m,h,c]),x=b[0],M=b[1],P=Object(r["useMemo"])(function(){return h?c:g({},c,{subscription:x})},[h,c,x]),R=Object(r["useReducer"])(E,S,A),L=R[0],D=L[0],N=R[1];if(D&&D.error)throw D.error;var I=Object(r["useRef"])(),$=Object(r["useRef"])(s),F=Object(r["useRef"])(),V=Object(r["useRef"])(!1),B=f(function(){return F.current&&s===$.current?F.current:y(m.getState(),s)},[m,D,s]);k(O,[$,I,V,s,B,F,M]),k(T,[p,m,x,y,$,I,V,F,M,N],[m,x,y]);var W=Object(r["useMemo"])(function(){return i.a.createElement(t,g({},B,{ref:a}))},[a,t,B]),H=Object(r["useMemo"])(function(){return p?i.a.createElement(l.Provider,{value:P},W):W},[l,W,P]);return H}var x=l?i.a.memo(m):m;if(x.WrappedComponent=t,x.displayName=m.displayName=o,P){var M=i.a.forwardRef(function(e,t){return i.a.createElement(x,g({},e,{reactReduxForwardedRef:t}))});return M.displayName=o,M.WrappedComponent=t,b()(M,t)}return b()(x,t)}}function P(e,t){return e===t?0!==e||0!==t||1/e===1/t:e!==e&&t!==t}function R(e,t){if(P(e,t))return!0;if("object"!==typeof e||null===e||"object"!==typeof t||null===t)return!1;var n=Object.keys(e),r=Object.keys(t);if(n.length!==r.length)return!1;for(var i=0;i=0;r--){var i=t[r](e);if(i)return i}return function(t,r){throw new Error("Invalid value of type "+typeof e+" for "+n+" argument when connecting component "+r.wrappedComponentName+".")}}function te(e,t){return e===t}function ne(e){var t=void 0===e?{}:e,n=t.connectHOC,r=void 0===n?M:n,i=t.mapStateToPropsFactories,o=void 0===i?H:i,a=t.mapDispatchToPropsFactories,s=void 0===a?V:a,l=t.mergePropsFactories,c=void 0===l?G:l,u=t.selectorFactory,h=void 0===u?Z:u;return function(e,t,n,i){void 0===i&&(i={});var a=i,l=a.pure,u=void 0===l||l,d=a.areStatesEqual,f=void 0===d?te:d,p=a.areOwnPropsEqual,m=void 0===p?R:p,y=a.areStatePropsEqual,b=void 0===y?R:y,w=a.areMergedPropsEqual,x=void 0===w?R:w,_=v(a,J),S=ee(e,o,"mapStateToProps"),C=ee(t,s,"mapDispatchToProps"),E=ee(n,c,"mergeProps");return r(h,g({methodName:"connect",getDisplayName:function(e){return"Connect("+e+")"},shouldHandleStateChanges:Boolean(e),initMapStateToProps:S,initMapDispatchToProps:C,initMergeProps:E,pure:u,areStatesEqual:f,areOwnPropsEqual:m,areStatePropsEqual:b,areMergedPropsEqual:x},_))}}var re=ne();var ie=n("i8i4");n.d(t,"a",function(){return m}),n.d(t,"b",function(){return o}),n.d(t,"c",function(){return re}),l(ie["unstable_batchedUpdates"])},"/Mfd":function(e,t,n){var r=n("7vYJ"),i=n("4gcQ"),o=n("WFJy"),a=n("J57/")("IE_PROTO"),s=function(){},l="prototype",c=function(){var e,t=n("SfDG")("iframe"),r=o.length,i="<",a=">";t.style.display="none",n("XI6d").appendChild(t),t.src="javascript:",e=t.contentWindow.document,e.open(),e.write(i+"script"+a+"document.F=Object"+i+"/script"+a),e.close(),c=e.F;while(r--)delete c[l][o[r]];return c()};e.exports=Object.create||function(e,t){var n;return null!==e?(s[l]=r(e),n=new s,s[l]=null,n[a]=e):n=c(),void 0===t?n:i(n,t)}},"/Qhy":function(e,t,n){"use strict";function r(e){return"/"===e.charAt(0)}function i(e,t){for(var n=t,r=n+1,i=e.length;r1&&void 0!==arguments[1]?arguments[1]:"",n=e&&e.split("/")||[],o=t&&t.split("/")||[],a=e&&r(e),s=t&&r(t),l=a||s;if(e&&r(e)?o=n:n.length&&(o.pop(),o=o.concat(n)),!o.length)return"/";var c=void 0;if(o.length){var u=o[o.length-1];c="."===u||".."===u||""===u}else c=!1;for(var h=0,d=o.length;d>=0;d--){var f=o[d];"."===f?i(o,d):".."===f?(i(o,d),h++):h&&(i(o,d),h--)}if(!l)for(;h--;h)o.unshift("..");!l||""===o[0]||o[0]&&r(o[0])||o.unshift("");var p=o.join("/");return c&&"/"!==p.substr(-1)&&(p+="/"),p}n.r(t),t["default"]=o},"/dDc":function(e,t,n){"use strict";var r={transitionstart:{transition:"transitionstart",WebkitTransition:"webkitTransitionStart",MozTransition:"mozTransitionStart",OTransition:"oTransitionStart",msTransition:"MSTransitionStart"},animationstart:{animation:"animationstart",WebkitAnimation:"webkitAnimationStart",MozAnimation:"mozAnimationStart",OAnimation:"oAnimationStart",msAnimation:"MSAnimationStart"}},i={transitionend:{transition:"transitionend",WebkitTransition:"webkitTransitionEnd",MozTransition:"mozTransitionEnd",OTransition:"oTransitionEnd",msTransition:"MSTransitionEnd"},animationend:{animation:"animationend",WebkitAnimation:"webkitAnimationEnd",MozAnimation:"mozAnimationEnd",OAnimation:"oAnimationEnd",msAnimation:"MSAnimationEnd"}},o=[],a=[];function s(){var e=document.createElement("div"),t=e.style;function n(e,n){for(var r in e)if(e.hasOwnProperty(r)){var i=e[r];for(var o in i)if(o in t){n.push(i[o]);break}}}"AnimationEvent"in window||(delete r.animationstart.animation,delete i.animationend.animation),"TransitionEvent"in window||(delete r.transitionstart.transition,delete i.transitionend.transition),n(r,o),n(i,a)}function l(e,t,n){e.addEventListener(t,n,!1)}function c(e,t,n){e.removeEventListener(t,n,!1)}"undefined"!==typeof window&&"undefined"!==typeof document&&s();var u={startEvents:o,addStartEventListener:function(e,t){0!==o.length?o.forEach(function(n){l(e,n,t)}):window.setTimeout(t,0)},removeStartEventListener:function(e,t){0!==o.length&&o.forEach(function(n){c(e,n,t)})},endEvents:a,addEndEventListener:function(e,t){0!==a.length?a.forEach(function(n){l(e,n,t)}):window.setTimeout(t,0)},removeEndEventListener:function(e,t){0!==a.length&&a.forEach(function(n){c(e,n,t)})}};t["a"]=u},"/gYn":function(e,t,n){var r=n("gL7N")("toPrimitive"),i=Date.prototype;r in i||n("VPOE")(i,r,n("CfL3"))},"/mWb":function(e,t,n){"use strict";var r=n("WGNW"),i=n("il4q"),o=n("8BMt"),a=n("BFt8"),s=n("15BC").f;n("8Z/V")&&r(r.P+n("OJuA"),"Object",{__lookupGetter__:function(e){var t,n=i(this),r=o(e,!0);do{if(t=s(n,r))return t.get}while(n=a(n))}})},"/sWw":function(e,t,n){var r=n("c0Oy"),i=n("bV5f"),o=n("FqPH"),a=n("zKnh"),s=n("V5/1").f;e.exports=function(e){var t=i.Symbol||(i.Symbol=o?{}:r.Symbol||{});"_"==e.charAt(0)||e in t||s(t,e,{value:a.f(e)})}},0:function(e,t,n){e.exports=n("KyW6")},"03ni":function(e,t,n){"use strict";var r=n("AUWw"),i=n("ZDr/");e.exports=function(e){var t=String(i(this)),n="",o=r(e);if(o<0||o==1/0)throw RangeError("Count can't be negative");for(;o>0;(o>>>=1)&&(t+=t))1&o&&(n+=t);return n}},"08Qx":function(e,t,n){var r=n("c0Oy"),i=r.navigator;e.exports=i&&i.userAgent||""},"0Wa5":function(e,t,n){"use strict";function r(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function i(e){for(var t=1;t0&&void 0!==arguments[0]?arguments[0]:{},t=e.namespace||s,n=e.only,l=void 0===n?[]:n,c=e.except,u=void 0===c?[]:c;if(l.length>0&&u.length>0)throw Error("It is ambiguous to configurate `only` and `except` items at the same time.");var h={global:!1,models:{},effects:{}},d=r({},t,function(){var e,t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:h,n=arguments.length>1?arguments[1]:void 0,s=n.type,l=n.payload,c=l||{},u=c.namespace,d=c.actionType;switch(s){case o:e=i({},t,{global:!0,models:i({},t.models,r({},u,!0)),effects:i({},t.effects,r({},d,!0))});break;case a:var f=i({},t.effects,r({},d,!1)),p=i({},t.models,r({},u,Object.keys(f).some(function(e){var t=e.split("/")[0];return t===u&&f[e]}))),m=Object.keys(p).some(function(e){return p[e]});e=i({},t,{global:m,models:p,effects:f});break;default:e=t;break}return e});function f(e,t,n,r){var i=t.put,s=n.namespace;return 0===l.length&&0===u.length||l.length>0&&-1!==l.indexOf(r)||u.length>0&&-1===u.indexOf(r)?regeneratorRuntime.mark(function t(){var n=arguments;return regeneratorRuntime.wrap(function(t){while(1)switch(t.prev=t.next){case 0:return t.next=2,i({type:o,payload:{namespace:s,actionType:r}});case 2:return t.next=4,e.apply(void 0,n);case 4:return t.next=6,i({type:a,payload:{namespace:s,actionType:r}});case 6:case"end":return t.stop()}},t)}):e}return{extraReducers:d,onEffect:f}}e.exports=l},"0hpf":function(e,t,n){"use strict";function r(e){"@babel/helpers - typeof";return r="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},r(e)}function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){for(var n=0;n0?arguments[0]:void 0)}},{add:function(e){return r.def(i(this,o),e=0===e?0:e,e)}},r)},"0vxD":function(e,t,n){"use strict";e.exports=n("DUzY")},"0wlq":function(e,t,n){"use strict";var r=n("WGNW"),i=n("8H45"),o=n("il4q"),a=n("OsVd"),s=n("wYm8"),l=n("17jC");r(r.P,"Array",{flatMap:function(e){var t,n,r=o(this);return s(e),t=a(r.length),n=l(r,0),i(n,r,r,t,0,1,e,arguments[1]),n}}),n("DIcO")("flatMap")},1:function(e,t){},"11+Y":function(e,t,n){"use strict";n.r(t);var r=n("jehZ"),i=n.n(r),o=(n("2qtc"),n("kLXV")),a=(n("5NDa"),n("5rEg")),s=(n("g9YV"),n("wCAj")),l=(n("+L6B"),n("2/Rp")),c=(n("/zsF"),n("PArb")),u=(n("Pwec"),n("CtXQ")),h=n("p0pE"),d=n.n(h),f=n("q1tI"),p=n.n(f),m=n("Bl7J"),g=n("/MKj"),v=n("8zNj");class y extends p.a.Component{constructor(e){super(e),this.state={group:[],submit:{},visible:!1}}componentDidMount(){this.props.dispatch({type:"serverGroup/fetch"})}save(){var e=d()({},this.state.submit);this.props.dispatch({type:"serverGroup/save",params:e,callback:()=>{this.modalVisible()}})}drop(e){this.props.dispatch({type:"serverGroup/drop",id:e})}edit(e){var t=this.props.serverGroup.groups;this.setState({submit:d()({},t[e]),visible:!0})}modalVisible(){this.setState({visible:!this.state.visible,submit:{}})}render(){var e=this.props.serverGroup,t=e.groups,n=e.fetchLoading,r=[{title:"\u7ec4ID",dataIndex:"id",key:"id"},{title:"\u7ec4\u540d\u79f0",dataIndex:"name",key:"name"},{title:"\u7528\u6237\u6570\u91cf",dataIndex:"user_count",key:"user_count",render:e=>{return p.a.createElement(p.a.Fragment,null,p.a.createElement(u["a"],{type:"user",style:{cursor:"move"}})," ",e)}},{title:"\u8282\u70b9\u6570\u91cf",dataIndex:"server_count",key:"server_count",render:e=>{return p.a.createElement(p.a.Fragment,null,p.a.createElement(u["a"],{type:"database",style:{cursor:"move"}})," ",e)}},{title:"\u64cd\u4f5c",dataIndex:"action",key:"action",align:"right",render:(e,t,n)=>{return p.a.createElement("div",null,p.a.createElement(v["a"],{record:t,key:t.id},p.a.createElement("a",{href:"javascript:void(0);",onClick:()=>this.edit(n)},"\u7f16\u8f91")),p.a.createElement(c["a"],{type:"vertical"}),p.a.createElement("a",{href:"javascript:void(0);",onClick:()=>this.drop(t.id)},"\u5220\u9664"))}}];return p.a.createElement(m["a"],i()({},this.props,{title:"\u6743\u9650\u7ec4\u7ba1\u7406"}),p.a.createElement("div",{className:"d-flex justify-content-between align-items-center"}),p.a.createElement("div",{className:"block block-rounded ".concat(n?"block-mode-loading":"")},p.a.createElement("div",{className:"bg-white"},p.a.createElement("div",{style:{padding:15}},p.a.createElement(v["a"],null,p.a.createElement(l["a"],{onClick:()=>this.modalVisible()},p.a.createElement(u["a"],{type:"plus"})," \u6dfb\u52a0\u6743\u9650\u7ec4"))),p.a.createElement(s["a"],{tableLayout:"auto",columns:r,dataSource:t,pagination:!1}))),p.a.createElement(o["a"],{title:"".concat(this.state.submit.id?"\u7f16\u8f91\u7ec4":"\u521b\u5efa\u7ec4"),visible:this.state.visible,onCancel:()=>this.modalVisible(),onOk:()=>n||this.save(),okText:n?p.a.createElement(u["a"],{type:"loading"}):"\u63d0\u4ea4",cancelText:"\u53d6\u6d88"},p.a.createElement("div",null,p.a.createElement("div",{className:"form-group"},p.a.createElement("label",{for:"example-text-input-alt"},"\u7ec4\u540d"),p.a.createElement(a["a"],{placeholder:"\u8bf7\u8f93\u5165\u7ec4\u540d",value:this.state.submit.name,onChange:e=>{this.setState({submit:d()({},this.state.submit,{name:e.target.value})})}})))))}}t["default"]=Object(g["c"])(e=>{var t=e.serverGroup;return{serverGroup:t}})(y)},"15BC":function(e,t,n){var r=n("LsAW"),i=n("pQGJ"),o=n("OeOC"),a=n("8BMt"),s=n("oxo0"),l=n("A7R+"),c=Object.getOwnPropertyDescriptor;t.f=n("8Z/V")?c:function(e,t){if(e=o(e),t=a(t,!0),l)try{return c(e,t)}catch(e){}if(s(e,t))return i(!r.f.call(e,t),e[t])}},"16Al":function(e,t,n){"use strict";var r=n("WbBG");function i(){}function o(){}o.resetWarningCache=i,e.exports=function(){function e(e,t,n,i,o,a){if(a!==r){var s=new Error("Calling PropTypes validators directly is not supported by the `prop-types` package. Use PropTypes.checkPropTypes() to call them. Read more at http://fb.me/use-check-prop-types");throw s.name="Invariant Violation",s}}function t(){return e}e.isRequired=e;var n={array:e,bigint:e,bool:e,func:e,number:e,object:e,string:e,symbol:e,any:e,arrayOf:t,element:e,elementType:e,instanceOf:t,node:e,objectOf:t,oneOf:t,oneOfType:t,shape:t,exact:t,checkPropTypes:o,resetWarningCache:i};return n.PropTypes=n,n}},"17jC":function(e,t,n){var r=n("3FhE");e.exports=function(e,t){return new(r(e))(t)}},"17x9":function(e,t,n){e.exports=n("16Al")()},"198K":function(e,t){function n(){throw new TypeError("Invalid attempt to destructure non-iterable instance")}e.exports=n},"1AkM":function(e,t,n){"use strict";n.d(t,"a",function(){return h}),n.d(t,"b",function(){return m});var r=n("Xnb7"),i=n("bYtY"),o=n("6GrX"),a=/\{([a-zA-Z0-9_]+)\|([^}]*)\}/g;function s(e,t,n,r,i){if(!t)return"";var o=(e+"").split("\n");i=l(t,n,r,i);for(var a=0,s=o.length;a=l;u++)c-=l;var h=Object(o["g"])(n,t);return h>c&&(n="",h=0),c=e-h,a.ellipsis=n,a.ellipsisWidth=h,a.contentWidth=c,a.containerWidth=e,a}function c(e,t){var n=t.containerWidth,r=t.font,i=t.contentWidth;if(!n)return"";var a=Object(o["g"])(e,r);if(a<=n)return e;for(var s=0;;s++){if(a<=i||s>=t.maxIterations){e+=t.ellipsis;break}var l=0===s?u(e,i,t.ascCharWidth,t.cnCharWidth):a>0?Math.floor(e.length*i/a):0;e=e.substr(0,l),a=Object(o["g"])(e,r)}return""===e&&(e=t.placeholder),e}function u(e,t,n,r){for(var i=0,o=0,a=e.length;og&&f){var v=Math.floor(g/d);n=n.slice(0,v)}var y=g,b=p;if(a&&(y+=a[0]+a[2],null!=b&&(b+=a[1]+a[3])),e&&u&&null!=b)for(var x=l(p,s,t.ellipsis,{minChar:t.truncateMinChar,placeholder:t.placeholder}),_=0;_f&&g(n,e.substring(f,m),t,d),g(n,l[2],t,d,l[1]),f=a.lastIndex}fu){T>0?(E.tokens=E.tokens.slice(0,T),S(E,O,k),n.lines=n.lines.slice(0,C+1)):n.lines=n.lines.slice(0,C);break e}var j=M.width,N=null==j||"auto"===j;if("string"===typeof j&&"%"===j.charAt(j.length-1))A.percentWidth=j,v.push(A),A.contentWidth=Object(o["g"])(A.text,L);else{if(N){var I=M.backgroundColor,$=I&&I.image;$&&($=r["b"]($),r["c"]($)&&(A.width=Math.max(A.width,$.width*D/$.height)))}var F=x&&null!=c?c-O:null;null!=F&&F0&&v+r.accumWidth>r.width&&(a=t.split("\n"),p=!0),r.accumWidth=v}else{var y=w(t,h,r.width,r.breakAll,r.accumWidth);r.accumWidth=y.accumWidth+g,s=y.linesWidths,a=y.lines}}else a=t.split("\n");for(var b=0;b=33&&t<=255}var y=Object(i["K"])(",&?/;] ".split(""),function(e,t){return e[t]=!0,e},{});function b(e){return!v(e)||!!y[e]}function w(e,t,n,r,i){for(var a=[],s=[],l="",c="",u=0,h=0,d=0;dn:i+h+p>n)?h?(l||c)&&(m?(l||(l=c,c="",u=0,h=u),a.push(l),s.push(h-u),c+=f,u+=p,l="",h=u):(c&&(l+=c,h+=u,c="",u=0),a.push(l),s.push(h),l=f,h=p)):m?(a.push(c),s.push(u),c=f,u=p):(a.push(f),s.push(p)):(h+=p,m?(c+=f,u+=p):(c&&(l+=c,c="",u=0),l+=f))}else c&&(l+=c,h+=u),a.push(l),s.push(h),l="",c="",u=0,h=0}return a.length||l||(l=e,c="",u=0),c&&(l+=c),l&&(a.push(l),s.push(h)),1===a.length&&(h+=i),{accumWidth:h,lines:a,linesWidths:s}}},"1EPD":function(e,t,n){"use strict";function r(e,t){return r=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},r(e,t)}function i(e,t){e.prototype=Object.create(t.prototype),e.prototype.constructor=e,r(e,t)}n.d(t,"a",function(){return i})},"1Jh7":function(e,t,n){"use strict";var r=n("mrSG"),i=n("y+Vt"),o=n("T6xi"),a=function(){function e(){this.points=null,this.percent=1,this.smooth=0,this.smoothConstraint=null}return e}(),s=function(e){function t(t){return e.call(this,t)||this}return Object(r["a"])(t,e),t.prototype.getDefaultStyle=function(){return{stroke:"#000",fill:null}},t.prototype.getDefaultShape=function(){return new a},t.prototype.buildPath=function(e,t){o["a"](e,t,!1)},t}(i["b"]);s.prototype.type="polyline",t["a"]=s},"1MYJ":function(e,t,n){"use strict";var r=n("mrSG"),i=n("y+Vt"),o=function(e){function t(){var t=null!==e&&e.apply(this,arguments)||this;return t.type="compound",t}return Object(r["a"])(t,e),t.prototype._updatePathDirty=function(){for(var e=this.shape.paths,t=this.shapeChanged(),n=0;n=this._maxSize&&a>0){var l=n.head;n.remove(l),delete i[l.key],o=l.value,this._lastRemovedEntry=l}s?s.value=t:s=new r(t),s.key=e,n.insertEntry(s),i[e]=s}return o},e.prototype.get=function(e){var t=this._map[e],n=this._list;if(null!=t)return t!==n.tail&&(n.remove(t),n.insertEntry(t)),t.value},e.prototype.clear=function(){this._list.clear(),this._map={}},e.prototype.len=function(){return this._list.len()},e}();t["a"]=o},"1W/9":function(e,t,n){"use strict";var r=n("q1tI"),i=n.n(r),o=n("i8i4"),a=n.n(o),s=n("17x9"),l=n.n(s),c=n("VCL8"),u=n("PIAm"),h=n("QC+M"),d=n("qx4F");function f(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=t.element,r=void 0===n?document.body:n,i={},o=Object.keys(e);return o.forEach(function(e){i[e]=r.style[e]}),o.forEach(function(t){r.style[t]=e[t]}),i}var p=f;function m(){return document.body.scrollHeight>(window.innerHeight||document.documentElement.clientHeight)&&window.innerWidth>document.body.offsetWidth}var g={},v=function(e){if(m()||e){var t="ant-scrolling-effect",n=new RegExp("".concat(t),"g"),r=document.body.className;if(e){if(!n.test(r))return;return p(g),g={},void(document.body.className=r.replace(n,"").trim())}var i=Object(d["a"])();if(i&&(g=p({position:"relative",width:"calc(100% - ".concat(i,"px)")}),!n.test(r))){var o="".concat(r," ").concat(t);document.body.className=o.trim()}}};function y(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function b(e){for(var t=1;t0&&void 0!==arguments[0]?arguments[0]:{};return n(b(b(b({},t),s),{},{ref:e.savePortal}))},getContainer:this.getContainer,forceRender:r},function(t){var n=t.renderComponent,r=t.removeContainer;return e.renderComponent=n,e.removeContainer=r,null})}}],[{key:"getDerivedStateFromProps",value:function(e,t){var n=t.prevProps,r=t._self,i=e.visible,o=e.getContainer;if(n){var a=n.visible,s=n.getContainer;i!==a&&(R=i&&!a?R+1:R-1);var l="function"===typeof o&&"function"===typeof s;(l?o.toString()!==s.toString():o!==s)&&r.removeCurrentContainer(!1)}return{prevProps:e}}}]),n}(i.a.Component);N.propTypes={wrapperClassName:l.a.string,forceRender:l.a.bool,getContainer:l.a.any,children:l.a.func,visible:l.a.bool};t["a"]=Object(c["polyfill"])(N)},"1bdT":function(e,t,n){"use strict";var r=n("hYLj"),i=n("Bq2U"),o=n("mFDi"),a=n("b9Ot"),s=n("6GrX"),l=n("bYtY"),c=n("LPTA"),u=n("Qe9p"),h=n("ItGF"),d=n("S8SX"),f="__zr_normal__",p=["x","y","scaleX","scaleY","originX","originY","rotation","ignore"],m={x:!0,y:!0,scaleX:!0,scaleY:!0,originX:!0,originY:!0,rotation:!0,ignore:!1},g={},v=new o["a"](0,0,0,0),y=function(){function e(e){this.id=Object(l["o"])(),this.animators=[],this.currentStates=[],this.states={},this._init(e)}return e.prototype._init=function(e){this.attr(e)},e.prototype.drift=function(e,t,n){switch(this.draggable){case"horizontal":t=0;break;case"vertical":e=0;break}var r=this.transform;r||(r=this.transform=[1,0,0,1,0,0]),r[4]+=e,r[5]+=t,this.decomposeTransform(),this.markRedraw()},e.prototype.beforeUpdate=function(){},e.prototype.afterUpdate=function(){},e.prototype.update=function(){this.updateTransform(),this.__dirty&&this.updateInnerText()},e.prototype.updateInnerText=function(e){var t=this._textContent;if(t&&(!t.ignore||e)){this.textConfig||(this.textConfig={});var n=this.textConfig,r=n.local,i=t.innerTransformable,o=void 0,a=void 0,l=!1;i.parent=r?this:null;var c=!1;if(i.copyTransform(t),null!=n.position){var u=v;n.layoutRect?u.copy(n.layoutRect):u.copy(this.getBoundingRect()),r||u.applyTransform(this.transform),this.calculateTextPosition?this.calculateTextPosition(g,n,u):Object(s["d"])(g,n,u),i.x=g.x,i.y=g.y,o=g.align,a=g.verticalAlign;var h=n.origin;if(h&&null!=n.rotation){var f=void 0,p=void 0;"center"===h?(f=.5*u.width,p=.5*u.height):(f=Object(s["h"])(h[0],u.width),p=Object(s["h"])(h[1],u.height)),c=!0,i.originX=-i.x+f+(r?0:u.x),i.originY=-i.y+p+(r?0:u.y)}}null!=n.rotation&&(i.rotation=n.rotation);var m=n.offset;m&&(i.x+=m[0],i.y+=m[1],c||(i.originX=-m[0],i.originY=-m[1]));var y=null==n.inside?"string"===typeof n.position&&n.position.indexOf("inside")>=0:n.inside,b=this._innerTextDefaultStyle||(this._innerTextDefaultStyle={}),w=void 0,x=void 0,_=void 0;y&&this.canBeInsideText()?(w=n.insideFill,x=n.insideStroke,null!=w&&"auto"!==w||(w=this.getInsideTextFill()),null!=x&&"auto"!==x||(x=this.getInsideTextStroke(w),_=!0)):(w=n.outsideFill,x=n.outsideStroke,null!=w&&"auto"!==w||(w=this.getOutsideFill()),null!=x&&"auto"!==x||(x=this.getOutsideStroke(w),_=!0)),w=w||"#000",w===b.fill&&x===b.stroke&&_===b.autoStroke&&o===b.align&&a===b.verticalAlign||(l=!0,b.fill=w,b.stroke=x,b.autoStroke=_,b.align=o,b.verticalAlign=a,t.setDefaultTextStyle(b)),t.__dirty|=d["a"],l&&t.dirtyStyle(!0)}},e.prototype.canBeInsideText=function(){return!0},e.prototype.getInsideTextFill=function(){return"#fff"},e.prototype.getInsideTextStroke=function(e){return"#000"},e.prototype.getOutsideFill=function(){return this.__zr&&this.__zr.isDarkMode()?c["d"]:c["a"]},e.prototype.getOutsideStroke=function(e){var t=this.__zr&&this.__zr.getBackgroundColor(),n="string"===typeof t&&Object(u["d"])(t);n||(n=[255,255,255,1]);for(var r=n[3],i=this.__zr.isDarkMode(),o=0;o<3;o++)n[o]=n[o]*r+(i?0:255)*(1-r);return n[3]=1,Object(u["e"])(n,"rgba")},e.prototype.traverse=function(e,t){},e.prototype.attrKV=function(e,t){"textConfig"===e?this.setTextConfig(t):"textContent"===e?this.setTextContent(t):"clipPath"===e?this.setClipPath(t):"extra"===e?(this.extra=this.extra||{},Object(l["m"])(this.extra,t)):this[e]=t},e.prototype.hide=function(){this.ignore=!0,this.markRedraw()},e.prototype.show=function(){this.ignore=!1,this.markRedraw()},e.prototype.attr=function(e,t){if("string"===typeof e)this.attrKV(e,t);else if(Object(l["z"])(e))for(var n=e,r=Object(l["D"])(n),i=0;i0},e.prototype.getState=function(e){return this.states[e]},e.prototype.ensureState=function(e){var t=this.states;return t[e]||(t[e]={}),t[e]},e.prototype.clearStates=function(e){this.useState(f,!1,e)},e.prototype.useState=function(e,t,n,r){var i=e===f,o=this.hasState();if(o||!i){var a=this.currentStates,s=this.stateTransition;if(!(Object(l["q"])(a,e)>=0)||!t&&1!==a.length){var c;if(this.stateProxy&&!i&&(c=this.stateProxy(e)),c||(c=this.states&&this.states[e]),c||i){i||this.saveCurrentToNormalState(c);var u=!!(c&&c.hoverLayer||r);u&&this._toggleHoverLayerFlag(!0),this._applyStateObj(e,c,this._normalState,t,!n&&!this.__inHover&&s&&s.duration>0,s);var h=this._textContent,p=this._textGuide;return h&&h.useState(e,t,n,u),p&&p.useState(e,t,n,u),i?(this.currentStates=[],this._normalState={}):t?this.currentStates.push(e):this.currentStates=[e],this._updateAnimationTargets(),this.markRedraw(),!u&&this.__inHover&&(this._toggleHoverLayerFlag(!1),this.__dirty&=~d["a"]),c}Object(l["E"])("State "+e+" not exists.")}}},e.prototype.useStates=function(e,t,n){if(e.length){var r=[],i=this.currentStates,o=e.length,a=o===i.length;if(a)for(var s=0;s0,p);var m=this._textContent,g=this._textGuide;m&&m.useStates(e,t,h),g&&g.useStates(e,t,h),this._updateAnimationTargets(),this.currentStates=e.slice(),this.markRedraw(),!h&&this.__inHover&&(this._toggleHoverLayerFlag(!1),this.__dirty&=~d["a"])}else this.clearStates()},e.prototype._updateAnimationTargets=function(){for(var e=0;e=0){var n=this.currentStates.slice();n.splice(t,1),this.useStates(n)}},e.prototype.replaceState=function(e,t,n){var r=this.currentStates.slice(),i=Object(l["q"])(r,e),o=Object(l["q"])(r,t)>=0;i>=0?o?r.splice(i,1):r[i]=t:n&&!o&&r.push(t),this.useStates(r)},e.prototype.toggleState=function(e,t){t?this.useState(e,!0):this.removeState(e)},e.prototype._mergeStates=function(e){for(var t,n={},r=0;r=0&&t.splice(n,1)}),this.animators.push(e),n&&n.animation.addAnimator(e),n&&n.wakeUp()},e.prototype.updateDuringAnimation=function(e){this.markRedraw()},e.prototype.stopAnimation=function(e,t){for(var n=this.animators,r=n.length,i=[],o=0;o8)&&(i("position","_legacyPos","x","y"),i("scale","_legacyScale","scaleX","scaleY"),i("origin","_legacyOrigin","originX","originY"))}(),e}();function b(e,t,n,r,i){n=n||{};var o=[];S(e,"",e,t,n,r,o,i);var a=o.length,s=!1,l=n.done,c=n.aborted,u=function(){s=!0,a--,a<=0&&(s?l&&l():c&&c())},h=function(){a--,a<=0&&(s?l&&l():c&&c())};a||l&&l(),o.length>0&&n.during&&o[0].during(function(e,t){n.during(t)});for(var d=0;d0||o.force&&!s.length){for(var x=e.animators,C=[],E=0;Ee.serverManage);case 4:return l=n.sent,c=l.servers,re.serverManage);case 5:return o=e.sent,a=o.servers,e.next=9,Object(s["b"])("/admin/server/manage/sort",{sorts:a.map(e=>({key:e.type,value:e.id}))});case 9:return l=e.sent,e.next=12,r({type:"setState",payload:{fetchLoading:!1}});case 12:if(200===l.code){e.next=14;break}return e.abrupt("return");case 14:return e.next=16,r({type:"getNodes"});case 16:case"end":return e.stop()}},e)})()}}}},"1dGX":function(e,t,n){"use strict";t.Any=n("y8fO"),t.Cc=n("p7ys"),t.Cf=n("b9EY"),t.P=n("fKCf"),t.Z=n("T8I8")},"1dM+":function(e,t,n){"use strict";n.r(t);var r=n("jehZ"),i=n.n(r),o=(n("+L6B"),n("2/Rp")),a=(n("Znn+"),n("ZTPi")),s=(n("BoS7"),n("Sdc0")),l=n("p0pE"),c=n.n(l),u=n("q1tI"),h=n.n(u),d=n("Bl7J"),f=n("/MKj");class p extends h.a.Component{render(){return h.a.createElement("div",{className:"row ".concat(this.props.isChildren?"v2board-config-children":""),style:{padding:"20px",borderBottom:"1px solid #eee"}},h.a.createElement("div",{className:"col-lg-6"},h.a.createElement("div",{style:{fontWeight:"bold",marginBottom:5}},this.props.title),h.a.createElement("div",{style:{fontSize:12,marginBottom:5,color:"#666"}},this.props.description)),h.a.createElement("div",{className:"col-lg-6 text-right"},this.props.children))}}class m extends h.a.Component{componentDidMount(){this.props.dispatch({type:"config/fetch"}),this.props.dispatch({type:"plan/fetch"}),this.props.dispatch({type:"config/getEmailTemplate"}),this.props.dispatch({type:"config/getThemeTemplate"})}set(e,t,n){var r=this.props.config;this.props.dispatch({type:"config/setState",payload:{[e]:c()({},r[e],{[t]:n})}}),this.inputDelayTimer&&clearTimeout(this.inputDelayTimer),this.inputDelayTimer=setTimeout(function(){this.inputDelayTimer=null,this.props.dispatch({type:"config/save",parentKey:e})}.bind(this),1500)}render(){var e=this.props.config,t=e.site,n=e.invite,r=e.subscribe,l=e.frontend,c=e.server,u=e.tabs,f=e.fetchLoading,m=e.emailTemplate,g=e.themeTemplate,v=e.email,y=e.telegram,b=e.setTelegramWebhookLoading,w=e.app,x=e.testSendMailLoading,_=this.props.plan.plans;return console.log(t),h.a.createElement(d["a"],i()({},this.props,{title:"\u7cfb\u7edf\u914d\u7f6e"}),h.a.createElement("div",{className:"mb-0 block border-bottom ".concat(f?"block-mode-loading":"")},h.a.createElement(a["a"],{onChange:e=>this.setState({tabs:e}),defaultActiveKey:u,size:"large"},h.a.createElement(a["a"].TabPane,{tab:"\u7ad9\u70b9",key:"site"},h.a.createElement("div",{className:""},h.a.createElement(p,{title:"\u7ad9\u70b9\u540d\u79f0",description:"\u7528\u4e8e\u663e\u793a\u9700\u8981\u7ad9\u70b9\u540d\u79f0\u7684\u5730\u65b9\u3002"},h.a.createElement("input",{type:"text",className:"form-control",placeholder:"\u8bf7\u8f93\u5165\u7ad9\u70b9\u540d\u79f0",defaultValue:t.app_name,onChange:e=>this.set("site","app_name",e.target.value)})),h.a.createElement(p,{title:"\u7ad9\u70b9\u63cf\u8ff0",description:"\u7528\u4e8e\u663e\u793a\u9700\u8981\u7ad9\u70b9\u63cf\u8ff0\u7684\u5730\u65b9\u3002"},h.a.createElement("input",{type:"text",className:"form-control",placeholder:"\u8bf7\u8f93\u5165\u7ad9\u70b9\u63cf\u8ff0",defaultValue:t.app_description,onChange:e=>this.set("site","app_description",e.target.value)})),h.a.createElement(p,{title:"\u7ad9\u70b9\u7f51\u5740",description:"\u7cfb\u7edf\u9700\u8981\u5bf9\u5916\u63d0\u4f9b\u7f51\u5740\u7684\u65f6\u5019\u5c06\u4f1a\u4f7f\u7528\u672c\u5904\u7684\u7f51\u5740\uff0c\u5982\uff1a\u652f\u4ed8\u3001\u90ae\u4ef6\u3001\u4fe1\u606f\u63a8\u9001\u7b49\u3002"},h.a.createElement("input",{type:"text",className:"form-control",placeholder:"\u8bf7\u8f93\u5165\u7ad9\u70b9URL\uff0c\u672b\u5c3e\u4e0d\u8981/",defaultValue:t.app_url,onChange:e=>this.set("site","app_url",e.target.value)})),h.a.createElement(p,{title:"\u8ba2\u9605URL",description:"\u7528\u4e8e\u8ba2\u9605\u6240\u4f7f\u7528\uff0c\u7559\u7a7a\u5219\u4e3a\u7ad9\u70b9URL\u3002\u5982\u9700\u591a\u4e2a\u8ba2\u9605URL\u968f\u673a\u83b7\u53d6\u8bf7\u4f7f\u7528\u9017\u53f7\u8fdb\u884c\u5206\u5272\u3002"},h.a.createElement("textarea",{rows:"4",type:"text",className:"form-control",placeholder:"\u8bf7\u8f93\u5165\u8ba2\u9605URL\uff0c\u672b\u5c3e\u4e0d\u8981/\u3002\u9017\u53f7\u5206\u5272\u652f\u6301\u591a\u57df\u540d",defaultValue:t.subscribe_url,onChange:e=>this.set("site","subscribe_url",e.target.value)})),h.a.createElement(p,{title:"\u7528\u6237\u6761\u6b3e(TOS)URL",description:"\u7528\u4e8e\u8df3\u8f6c\u5230\u7528\u6237\u6761\u6b3e(TOS)"},h.a.createElement("input",{type:"text",className:"form-control",placeholder:"\u8bf7\u8f93\u5165\u7528\u6237\u6761\u6b3eURL\uff0c\u672b\u5c3e\u4e0d\u8981/",defaultValue:t.tos_url,onChange:e=>this.set("site","tos_url",e.target.value)})),h.a.createElement(p,{title:"\u5b89\u5168\u6a21\u5f0f",description:"\u5f00\u542f\u540e\u9664\u4e86\u7ad9\u70b9URL\u4ee5\u5916\u7684\u7ed1\u5b9a\u672c\u7ad9\u70b9\u7684\u57df\u540d\u8bbf\u95ee\u90fd\u5c06\u4f1a\u88ab403\u3002"},h.a.createElement(s["a"],{checked:parseInt(t.safe_mode_enable),onChange:e=>this.set("site","safe_mode_enable",e?1:0)})),h.a.createElement(p,{title:"\u505c\u6b62\u65b0\u7528\u6237\u6ce8\u518c",description:"\u5f00\u542f\u540e\u4efb\u4f55\u4eba\u90fd\u5c06\u65e0\u6cd5\u8fdb\u884c\u6ce8\u518c\u3002"},h.a.createElement(s["a"],{checked:parseInt(t.stop_register),onChange:e=>this.set("site","stop_register",e?1:0)})),h.a.createElement(p,{title:"\u90ae\u7bb1\u9a8c\u8bc1",description:"\u5f00\u542f\u540e\u5c06\u4f1a\u5f3a\u5236\u8981\u6c42\u7528\u6237\u8fdb\u884c\u90ae\u7bb1\u9a8c\u8bc1\u3002"},h.a.createElement(s["a"],{checked:parseInt(t.email_verify),onChange:e=>this.set("site","email_verify",e?1:0)})),h.a.createElement(p,{title:"\u7981\u6b62\u4f7f\u7528Gmail\u591a\u522b\u540d",description:"\u5f00\u542f\u540eGmail\u591a\u522b\u540d\u5c06\u65e0\u6cd5\u6ce8\u518c\u3002"},h.a.createElement(s["a"],{checked:parseInt(t.email_gmail_limit_enable),onChange:e=>this.set("site","email_gmail_limit_enable",e?1:0)})),h.a.createElement(p,{title:"\u6ce8\u518c\u8bd5\u7528",description:"\u9009\u62e9\u9700\u8981\u8bd5\u7528\u7684\u8ba2\u9605\uff0c\u5982\u679c\u6ca1\u6709\u9009\u9879\u8bf7\u5148\u524d\u5f80\u8ba2\u9605\u7ba1\u7406\u6dfb\u52a0\u3002"},h.a.createElement("select",{onChange:e=>this.set("site","try_out_plan_id",e.target.value),className:"form-control",value:t.try_out_plan_id,placeholder:"\u8bf7\u9009\u62e9\u8bd5\u7528\u8ba2\u9605"},h.a.createElement("option",{value:0},"\u5173\u95ed"),_.map(e=>{return h.a.createElement("option",{key:Math.random(),value:e.id},e.name)}))),0===t.try_out_plan_id||h.a.createElement(p,{isChildren:!0,title:"\u8bd5\u7528\u65f6\u95f4(\u5c0f\u65f6)"},h.a.createElement("input",{type:"text",className:"form-control",placeholder:"\u8bf7\u8f93\u5165",defaultValue:t.try_out_hour,onChange:e=>this.set("site","try_out_hour",e.target.value)})),h.a.createElement(p,{title:"\u90ae\u7bb1\u540e\u7f00\u767d\u540d\u5355",description:"\u5f00\u542f\u540e\u5728\u540d\u5355\u4e2d\u7684\u90ae\u7bb1\u540e\u7f00\u624d\u5141\u8bb8\u8fdb\u884c\u6ce8\u518c\u3002"},h.a.createElement(s["a"],{checked:parseInt(t.email_whitelist_enable),onChange:e=>this.set("site","email_whitelist_enable",e?1:0)})),t.email_whitelist_enable?h.a.createElement(p,{isChildren:!0,title:"\u767d\u540d\u5355\u540e\u7f00",description:"\u8bf7\u4f7f\u7528\u9017\u53f7\u8fdb\u884c\u5206\u5272\uff0c\u5982\uff1aqq.com,gmail.com\u3002"},h.a.createElement("textarea",{rows:"4",type:"text",className:"form-control",placeholder:"\u8bf7\u8f93\u5165\u540e\u7f00\u57df\u540d\uff0c\u9017\u53f7\u5206\u5272 \u5982\uff1aqq.com,gmail.com",defaultValue:t.email_whitelist_suffix,onChange:e=>this.set("site","email_whitelist_suffix",e.target.value.split(","))})):"",h.a.createElement(p,{title:"\u9632\u673a\u5668\u4eba",description:"\u5f00\u542f\u540e\u5c06\u4f1a\u4f7f\u7528Google reCAPTCHA\u9632\u6b62\u673a\u5668\u4eba\u3002"},h.a.createElement(s["a"],{checked:parseInt(t.recaptcha_enable),onChange:e=>this.set("site","recaptcha_enable",e?1:0)})),t.recaptcha_enable?h.a.createElement(h.a.Fragment,null,h.a.createElement(p,{isChildren:!0,title:"\u5bc6\u94a5",description:"\u5728Google reCAPTCHA\u7533\u8bf7\u7684\u5bc6\u94a5\u3002"},h.a.createElement("input",{type:"text",className:"form-control",placeholder:"\u8bf7\u8f93\u5165",defaultValue:t.recaptcha_key,onChange:e=>this.set("site","recaptcha_key",e.target.value)})),h.a.createElement(p,{isChildren:!0,title:"\u7f51\u7ad9\u5bc6\u94a5",description:"\u5728Google reCAPTCH\u7533\u8bf7\u7684\u7f51\u7ad9\u5bc6\u94a5\u3002"},h.a.createElement("input",{type:"text",className:"form-control",placeholder:"\u8bf7\u8f93\u5165",defaultValue:t.recaptcha_site_key,onChange:e=>this.set("site","recaptcha_site_key",e.target.value)}))):"",h.a.createElement(p,{title:"\u8d27\u5e01\u5355\u4f4d",description:"\u4ec5\u7528\u4e8e\u5c55\u793a\u4f7f\u7528\uff0c\u66f4\u6539\u540e\u7cfb\u7edf\u4e2d\u6240\u6709\u7684\u8d27\u5e01\u5355\u4f4d\u90fd\u5c06\u53d1\u751f\u53d8\u66f4\u3002"},h.a.createElement("input",{type:"text",className:"form-control",placeholder:"CNY",defaultValue:t.currency,onChange:e=>this.set("site","currency",e.target.value)})),h.a.createElement(p,{title:"\u8d27\u5e01\u7b26\u53f7",description:"\u4ec5\u7528\u4e8e\u5c55\u793a\u4f7f\u7528\uff0c\u66f4\u6539\u540e\u7cfb\u7edf\u4e2d\u6240\u6709\u7684\u8d27\u5e01\u5355\u4f4d\u90fd\u5c06\u53d1\u751f\u53d8\u66f4\u3002"},h.a.createElement("input",{type:"text",className:"form-control",placeholder:"\xa5",defaultValue:t.currency_symbol,onChange:e=>this.set("site","currency_symbol",e.target.value)})))),h.a.createElement(a["a"].TabPane,{tab:"\u8ba2\u9605",key:"subscribe"},h.a.createElement("div",{className:""},h.a.createElement(p,{title:"\u5141\u8bb8\u7528\u6237\u66f4\u6539\u8ba2\u9605",description:"\u5f00\u542f\u540e\u7528\u6237\u5c06\u4f1a\u53ef\u4ee5\u5bf9\u8ba2\u9605\u8ba1\u5212\u8fdb\u884c\u53d8\u66f4\u3002"},h.a.createElement(s["a"],{checked:parseInt(r.plan_change_enable),onChange:e=>this.set("subscribe","plan_change_enable",e?1:0)})),h.a.createElement(p,{title:"\u6708\u6d41\u91cf\u91cd\u7f6e\u65b9\u5f0f",description:"\u5168\u5c40\u6d41\u91cf\u91cd\u7f6e\u65b9\u5f0f\uff0c\u9ed8\u8ba4\u6bcf\u67081\u53f7\u3002\u53ef\u4ee5\u5728\u8ba2\u9605\u7ba1\u7406\u4e3a\u8ba2\u9605\u5355\u72ec\u8bbe\u7f6e\u3002"},h.a.createElement("select",{onChange:e=>this.set("subscribe","reset_traffic_method",e.target.value),className:"form-control",value:r.reset_traffic_method,placeholder:"\u8bf7\u9009\u62e9\u8ba2\u9605\u91cd\u7f6e\u65b9\u5f0f"},h.a.createElement("option",{value:0},"\u6bcf\u67081\u53f7"),h.a.createElement("option",{value:1},"\u8ba2\u5355\u65e5"),h.a.createElement("option",{value:2},"\u4e0d\u91cd\u7f6e"))),h.a.createElement(p,{title:"\u5f00\u542f\u6298\u62b5\u65b9\u6848",description:"\u5f00\u542f\u540e\u7528\u6237\u66f4\u6362\u8ba2\u9605\u5c06\u4f1a\u7531\u7cfb\u7edf\u5bf9\u539f\u6709\u8ba2\u9605\u8fdb\u884c\u6298\u62b5\uff0c\u65b9\u6848\u53c2\u8003\u6587\u6863\u3002"},h.a.createElement(s["a"],{checked:parseInt(r.surplus_enable),onChange:e=>this.set("subscribe","surplus_enable",e?1:0)})),h.a.createElement(p,{title:"\u5f53\u8ba2\u9605\u65b0\u8d2d\u65f6\u89e6\u53d1\u4e8b\u4ef6",description:"\u65b0\u8d2d\u8ba2\u9605\u5b8c\u6210\u65f6\u5c06\u89e6\u53d1\u8be5\u4efb\u52a1\u3002"},h.a.createElement("select",{onChange:e=>this.set("subscribe","new_order_event_id",e.target.value),className:"form-control",value:r.new_order_event_id,placeholder:"\u8bf7\u9009\u62e9\u4e8b\u4ef6"},h.a.createElement("option",{value:0},"\u4e0d\u6267\u884c\u4efb\u4f55\u52a8\u4f5c"),h.a.createElement("option",{value:1},"\u91cd\u7f6e\u7528\u6237\u6d41\u91cf"))),h.a.createElement(p,{title:"\u5f53\u8ba2\u9605\u7eed\u8d39\u65f6\u89e6\u53d1\u4e8b\u4ef6",description:"\u7eed\u8d39\u8ba2\u9605\u5b8c\u6210\u65f6\u5c06\u89e6\u53d1\u8be5\u4efb\u52a1\u3002"},h.a.createElement("select",{onChange:e=>this.set("subscribe","renew_order_event_id",e.target.value),className:"form-control",value:r.renew_order_event_id,placeholder:"\u8bf7\u9009\u62e9\u4e8b\u4ef6"},h.a.createElement("option",{value:0},"\u4e0d\u6267\u884c\u4efb\u4f55\u52a8\u4f5c"),h.a.createElement("option",{value:1},"\u91cd\u7f6e\u7528\u6237\u6d41\u91cf"))),h.a.createElement(p,{title:"\u5f53\u8ba2\u9605\u53d8\u66f4\u65f6\u89e6\u53d1\u4e8b\u4ef6",description:"\u53d8\u66f4\u8ba2\u9605\u5b8c\u6210\u65f6\u5c06\u89e6\u53d1\u8be5\u4efb\u52a1\u3002"},h.a.createElement("select",{onChange:e=>this.set("subscribe","change_order_event_id",e.target.value),className:"form-control",value:r.change_order_event_id,placeholder:"\u8bf7\u9009\u62e9\u4e8b\u4ef6"},h.a.createElement("option",{value:0},"\u4e0d\u6267\u884c\u4efb\u4f55\u52a8\u4f5c"),h.a.createElement("option",{value:1},"\u91cd\u7f6e\u7528\u6237\u6d41\u91cf"))))),h.a.createElement(a["a"].TabPane,{tab:"\u9080\u8bf7&\u4f63\u91d1",key:"invite"},h.a.createElement("div",{className:""},h.a.createElement(p,{title:"\u5f00\u542f\u5f3a\u5236\u9080\u8bf7",description:"\u5f00\u542f\u540e\u53ea\u6709\u88ab\u9080\u8bf7\u7684\u7528\u6237\u624d\u53ef\u4ee5\u8fdb\u884c\u6ce8\u518c\u3002"},h.a.createElement(s["a"],{checked:parseInt(n.invite_force),onChange:e=>this.set("invite","invite_force",e?1:0)})),h.a.createElement(p,{title:"\u9080\u8bf7\u4f63\u91d1\u767e\u5206\u6bd4",description:"\u9ed8\u8ba4\u5168\u5c40\u7684\u4f63\u91d1\u5206\u914d\u6bd4\u4f8b\uff0c\u4f60\u53ef\u4ee5\u5728\u7528\u6237\u7ba1\u7406\u5355\u72ec\u914d\u7f6e\u5355\u4e2a\u6bd4\u4f8b\u3002"},h.a.createElement("input",{type:"text",className:"form-control",placeholder:"\u8bf7\u8f93\u5165",defaultValue:n.invite_commission,onChange:e=>this.set("invite","invite_commission",parseInt(e.target.value))})),h.a.createElement(p,{title:"\u7528\u6237\u53ef\u521b\u5efa\u9080\u8bf7\u7801\u4e0a\u9650"},h.a.createElement("input",{type:"text",className:"form-control",placeholder:"\u8bf7\u8f93\u5165",defaultValue:n.invite_gen_limit,onChange:e=>this.set("invite","invite_gen_limit",parseInt(e.target.value))})),h.a.createElement(p,{title:"\u9080\u8bf7\u7801\u6c38\u4e0d\u5931\u6548",description:"\u5f00\u542f\u540e\u9080\u8bf7\u7801\u88ab\u4f7f\u7528\u540e\u5c06\u4e0d\u4f1a\u5931\u6548\uff0c\u5426\u5219\u4f7f\u7528\u8fc7\u540e\u5373\u5931\u6548\u3002"},h.a.createElement(s["a"],{checked:parseInt(n.invite_never_expire),onChange:e=>this.set("invite","invite_never_expire",e?1:0)})),h.a.createElement(p,{title:"\u4f63\u91d1\u4ec5\u9996\u6b21\u53d1\u653e",description:"\u5f00\u542f\u540e\u88ab\u9080\u8bf7\u4eba\u9996\u6b21\u652f\u4ed8\u65f6\u624d\u4f1a\u4ea7\u751f\u4f63\u91d1\uff0c\u53ef\u4ee5\u5728\u7528\u6237\u7ba1\u7406\u5bf9\u7528\u6237\u8fdb\u884c\u5355\u72ec\u914d\u7f6e\u3002"},h.a.createElement(s["a"],{checked:parseInt(n.commission_first_time_enable),onChange:e=>this.set("invite","commission_first_time_enable",e?1:0)})),h.a.createElement(p,{title:"\u4f63\u91d1\u81ea\u52a8\u786e\u8ba4",description:"\u5f00\u542f\u540e\u4f63\u91d1\u5c06\u4f1a\u5728\u8ba2\u5355\u5b8c\u62103\u65e5\u540e\u81ea\u52a8\u8fdb\u884c\u786e\u8ba4\u3002"},h.a.createElement(s["a"],{checked:parseInt(n.commission_auto_check_enable),onChange:e=>this.set("invite","commission_auto_check_enable",e?1:0)})),h.a.createElement(p,{title:"\u63d0\u73b0\u5355\u7533\u8bf7\u95e8\u69db(\u5143)",description:"\u5c0f\u4e8e\u95e8\u69db\u91d1\u989d\u7684\u63d0\u73b0\u5355\u5c06\u4e0d\u4f1a\u88ab\u63d0\u4ea4\u3002"},h.a.createElement("input",{type:"text",className:"form-control",placeholder:"\u8bf7\u8f93\u5165",defaultValue:n.commission_withdraw_limit,onChange:e=>this.set("invite","commission_withdraw_limit",e.target.value)})),h.a.createElement(p,{title:"\u63d0\u73b0\u65b9\u5f0f",description:"\u53ef\u4ee5\u652f\u6301\u7684\u63d0\u73b0\u65b9\u5f0f\u3002"},h.a.createElement("textarea",{rows:"4",type:"text",className:"form-control",placeholder:"\u8bf7\u8f93\u5165\u540e\u7f00\u57df\u540d\uff0c\u9017\u53f7\u5206\u5272 \u5982\uff1a\u652f\u4ed8\u5b9d,USDT,\u8d1d\u5b9d",defaultValue:n.commission_withdraw_method,onChange:e=>this.set("invite","commission_withdraw_method",e.target.value.split(","))})),h.a.createElement(p,{title:"\u5173\u95ed\u63d0\u73b0",description:"\u5173\u95ed\u540e\u5c06\u7981\u6b62\u7528\u6237\u7533\u8bf7\u63d0\u73b0\uff0c\u4e14\u9080\u8bf7\u4f63\u91d1\u5c06\u4f1a\u76f4\u63a5\u8fdb\u5165\u7528\u6237\u4f59\u989d\u3002"},h.a.createElement(s["a"],{checked:parseInt(n.withdraw_close_enable),onChange:e=>this.set("invite","withdraw_close_enable",e?1:0)})),h.a.createElement(p,{title:"\u4e09\u7ea7\u5206\u9500",description:"\u5f00\u542f\u540e\u5c06\u4f63\u91d1\u5c06\u6309\u7167\u8bbe\u7f6e\u76843\u6210\u6bd4\u4f8b\u8fdb\u884c\u5206\u6210\uff0c\u4e09\u6210\u6bd4\u4f8b\u5408\u8ba1\u8bf7\u4e0d\u8981>100%\u3002"},h.a.createElement(s["a"],{checked:parseInt(n.commission_distribution_enable),onChange:e=>this.set("invite","commission_distribution_enable",e?1:0)})),parseInt(n.commission_distribution_enable)?h.a.createElement(h.a.Fragment,null,h.a.createElement(p,{isChildren:!0,title:"\u4e00\u7ea7\u9080\u8bf7\u4eba\u6bd4\u4f8b"},h.a.createElement("input",{type:"text",className:"form-control",placeholder:"\u8bf7\u8f93\u5165\u6bd4\u4f8b\u5982\uff1a50",defaultValue:n.commission_distribution_l1,onChange:e=>this.set("invite","commission_distribution_l1",e.target.value)})),h.a.createElement(p,{isChildren:!0,title:"\u4e8c\u7ea7\u9080\u8bf7\u4eba\u6bd4\u4f8b"},h.a.createElement("input",{type:"text",className:"form-control",placeholder:"\u8bf7\u8f93\u5165\u6bd4\u4f8b\u5982\uff1a30",defaultValue:n.commission_distribution_l2,onChange:e=>this.set("invite","commission_distribution_l2",e.target.value)})),h.a.createElement(p,{isChildren:!0,title:"\u4e09\u7ea7\u9080\u8bf7\u4eba\u6bd4\u4f8b"},h.a.createElement("input",{type:"text",className:"form-control",placeholder:"\u8bf7\u8f93\u5165\u6bd4\u4f8b\u5982\uff1a20",defaultValue:n.commission_distribution_l3,onChange:e=>this.set("invite","commission_distribution_l3",e.target.value)}))):"")),h.a.createElement(a["a"].TabPane,{tab:"\u524d\u7aef",key:"frontend"},h.a.createElement("div",{className:"block-content"},h.a.createElement("div",{className:"row"},h.a.createElement("div",{className:"col-lg-12"},h.a.createElement("div",{className:"alert alert-warning",role:"alert"},h.a.createElement("p",{className:"mb-0"},"\u5982\u679c\u4f60\u91c7\u7528\u524d\u540e\u5206\u79bb\u7684\u65b9\u5f0f\u90e8\u7f72V2board\uff0c\u672c\u9875\u914d\u7f6e\u5c06\u4e0d\u4f1a\u751f\u6548\u3002\u4e86\u89e3",h.a.createElement("b",null,h.a.createElement("a",{href:"https://docs.v2board.com/use/advanced.html#%E5%89%8D%E7%AB%AF%E5%88%86%E7%A6%BB"},"\u524d\u540e\u5206\u79bb"))))))),h.a.createElement("div",{className:""},h.a.createElement(p,{title:"\u4e3b\u9898",description:"\u7528\u6237\u7aef\u4e3b\u9898\uff0c\u65b0\u7684\u4e3b\u9898\u53ef\u4ee5\u4e0a\u4f20\u81f3 public/theme \u76ee\u5f55\u6765\u8c03\u7528"},h.a.createElement("select",{onChange:e=>this.set("frontend","frontend_theme",e.target.value),className:"form-control",value:l.frontend_theme},g.map(e=>{return h.a.createElement("option",{key:Math.random(),value:e},e)}))),h.a.createElement(p,{title:"\u540e\u53f0\u8def\u5f84",description:"\u540e\u53f0\u7ba1\u7406\u754c\u9762\u8def\u5f84\uff0c\u4fee\u6539\u540e\u5c06\u4f1a\u6539\u53d8\u539f\u6709\u7684admin\u8def\u5f84"},h.a.createElement("input",{type:"text",className:"form-control",placeholder:"admin",defaultValue:l.frontend_admin_path,onChange:e=>this.set("frontend","frontend_admin_path",e.target.value)})),h.a.createElement(p,{title:"\u8fb9\u680f\u98ce\u683c"},h.a.createElement(s["a"],{checkedChildren:"\u4eae",unCheckedChildren:"\u6697",checked:"light"===l.frontend_theme_sidebar?1:0,onChange:e=>this.set("site","frontend_theme_sidebar",e?"light":"dark")})),h.a.createElement(p,{title:"\u5934\u90e8\u98ce\u683c"},h.a.createElement(s["a"],{checkedChildren:"\u4eae",unCheckedChildren:"\u6697",checked:"light"===l.frontend_theme_header?1:0,onChange:e=>this.set("site","frontend_theme_header",e?"light":"dark")})),h.a.createElement(p,{title:"\u4e3b\u9898\u8272"},h.a.createElement("select",{className:"form-control",defaultValue:l.frontend_theme_color,onChange:e=>this.set("frontend","frontend_theme_color",e.target.value)},h.a.createElement("option",{value:"default"},"\u9ed8\u8ba4"),h.a.createElement("option",{value:"black"},"\u9ed1\u8272"),h.a.createElement("option",{value:"darkblue"},"\u6697\u84dd\u8272"),h.a.createElement("option",{value:"green"},"\u5976\u7eff\u8272"))),h.a.createElement(p,{title:"\u80cc\u666f",description:"\u5c06\u4f1a\u5728\u767b\u5f55\u9875\u9762\u8fdb\u884c\u5c55\u793a\u3002"},h.a.createElement("input",{type:"text",className:"form-control",placeholder:"https://xxxxx.com/wallpaper.png",defaultValue:l.frontend_background_url,onChange:e=>this.set("frontend","frontend_background_url",e.target.value)})),h.a.createElement(p,{title:"\u7b2c\u4e09\u65b9\u5ba2\u670d\u7cfb\u7edf",description:"\u6307\u5b9a\u5916\u90e8\u5ba2\u670d\u7cfb\u7edf"},h.a.createElement("select",{className:"form-control",defaultValue:l.frontend_customer_service_method,onChange:e=>this.set("frontend","frontend_customer_service_method",e.target.value)},h.a.createElement("option",{value:0},"\u5173\u95ed"),h.a.createElement("option",{value:"crisp"},"Crisp"))),"0"!==l.frontend_customer_service_method?h.a.createElement(p,{isChildren:!0,title:"\u8bc6\u522b\u7801",description:"\u7531\u5ba2\u670d\u7cfb\u7edf\u65b9\u63d0\u4f9b\u7684\u7528\u4e8e\u8bc6\u522b\u60a8\u7684\u4e00\u4e32\u5b57\u7b26"},h.a.createElement("input",{type:"text",className:"form-control",placeholder:"\u8bf7\u8f93\u5165",defaultValue:l.frontend_customer_service_id,onChange:e=>this.set("frontend","frontend_customer_service_id",e.target.value)})):"")),h.a.createElement(a["a"].TabPane,{tab:"\u670d\u52a1\u7aef",key:"server"},h.a.createElement("div",{className:""},h.a.createElement(p,{title:"\u901a\u8baf\u5bc6\u94a5",description:"V2board\u4e0e\u670d\u52a1\u7aef\u901a\u8baf\u7684\u5bc6\u94a5\uff0c\u4ee5\u4fbf\u6570\u636e\u4e0d\u4f1a\u88ab\u4ed6\u4eba\u83b7\u53d6\u3002"},h.a.createElement("input",{type:"text",className:"form-control",placeholder:"\u8bf7\u8f93\u5165",defaultValue:c.server_token,onChange:e=>this.set("server","server_token",e.target.value)})),h.a.createElement(p,{title:"\u6388\u6743\u6587\u4ef6",description:"\u4f60\u4f7f\u7528\u7684\u670d\u52a1\u7aef\u5982\u679c\u8981\u6c42\u4f60\u4f7f\u7528\u6388\u6743\u6587\u4ef6\uff0c\u4f60\u53ef\u4ee5\u5728\u6b64\u586b\u5165\u3002"},h.a.createElement("textarea",{rows:4,type:"text",className:"form-control",placeholder:"\u8bf7\u8f93\u5165",defaultValue:c.server_license,onChange:e=>this.set("server","server_license",e.target.value)})),h.a.createElement(p,{title:"\u8bb0\u5f55\u65e5\u5fd7",description:"\u670d\u52a1\u7aef\u662f\u5426\u8bb0\u5f55\u65e5\u5fd7\uff0c\u5173\u95ed\u53ef\u907f\u514d\u65e5\u5fd7\u5360\u7528\u78c1\u76d8\u7a7a\u95f4\u8fc7\u5927\u3002"},h.a.createElement(s["a"],{checked:parseInt(c.server_log_enable),onChange:e=>this.set("server","server_log_enable",e?1:0)})),h.a.createElement(p,{title:"V2ray\u5168\u5c40\u57df\u540d\u8fc7\u6ee4\u5668",description:"\u6b64\u5904\u7684\u89c4\u5219\u5c06\u4f1a\u4e0e\u8282\u70b9\u914d\u7f6e\u7684\u89c4\u5219\u5408\u5e76\u8fdb\u884c\u8fc7\u6ee4\uff0c\u4e00\u884c\u4e00\u6761\u3002"},h.a.createElement("textarea",{rows:4,type:"text",className:"form-control",placeholder:"\u8bf7\u8f93\u5165",defaultValue:c.server_v2ray_domain,onChange:e=>this.set("server","server_v2ray_domain",e.target.value)})),h.a.createElement(p,{title:"V2ray\u5168\u5c40\u534f\u8bae\u8fc7\u6ee4\u5668",description:"\u6b64\u5904\u7684\u89c4\u5219\u5c06\u4f1a\u4e0e\u8282\u70b9\u914d\u7f6e\u7684\u89c4\u5219\u5408\u5e76\u8fdb\u884c\u8fc7\u6ee4\uff0c\u4e00\u884c\u4e00\u6761\u3002"},h.a.createElement("textarea",{rows:4,type:"text",className:"form-control",placeholder:"\u8bf7\u8f93\u5165",defaultValue:c.server_v2ray_protocol,onChange:e=>this.set("server","server_v2ray_protocol",e.target.value)})))),h.a.createElement(a["a"].TabPane,{tab:"\u90ae\u4ef6",key:"email"},h.a.createElement("div",{className:"block-content"},h.a.createElement("div",{className:"row"},h.a.createElement("div",{className:"col-lg-12"},h.a.createElement("div",{className:"alert alert-warning",role:"alert"},h.a.createElement("p",{className:"mb-0"},"\u5982\u679c\u4f60\u66f4\u6539\u4e86\u672c\u9875\u914d\u7f6e\uff0c\u9700\u8981\u5bf9\u961f\u5217\u670d\u52a1\u8fdb\u884c\u91cd\u542f\u3002\u53e6\u5916\u672c\u9875\u914d\u7f6e\u4f18\u5148\u7ea7\u9ad8\u4e8e.env\u4e2d\u90ae\u4ef6\u914d\u7f6e\u3002"))))),h.a.createElement("div",{className:""},h.a.createElement(p,{title:"SMTP\u670d\u52a1\u5668\u5730\u5740",description:"\u7531\u90ae\u4ef6\u670d\u52a1\u5546\u63d0\u4f9b\u7684\u670d\u52a1\u5730\u5740"},h.a.createElement("input",{type:"text",className:"form-control",placeholder:"\u8bf7\u8f93\u5165",defaultValue:v.email_host,onChange:e=>this.set("email","email_host",e.target.value)})),h.a.createElement(p,{title:"SMTP\u670d\u52a1\u7aef\u53e3",description:"\u5e38\u89c1\u7684\u7aef\u53e3\u670925, 465, 587"},h.a.createElement("input",{type:"text",className:"form-control",placeholder:"\u8bf7\u8f93\u5165",defaultValue:v.email_port,onChange:e=>this.set("email","email_port",e.target.value)})),h.a.createElement(p,{title:"SMTP\u52a0\u5bc6\u65b9\u5f0f",description:"465\u7aef\u53e3\u52a0\u5bc6\u65b9\u5f0f\u4e00\u822c\u4e3aSSL\uff0c587\u7aef\u53e3\u52a0\u5bc6\u65b9\u5f0f\u4e00\u822c\u4e3aTLS"},h.a.createElement("input",{type:"text",className:"form-control",placeholder:"\u8bf7\u8f93\u5165",defaultValue:v.email_encryption,onChange:e=>this.set("email","email_encryption",e.target.value)})),h.a.createElement(p,{title:"SMTP\u8d26\u53f7",description:"\u7531\u90ae\u4ef6\u670d\u52a1\u5546\u63d0\u4f9b\u7684\u8d26\u53f7"},h.a.createElement("input",{type:"text",className:"form-control",placeholder:"\u8bf7\u8f93\u5165",defaultValue:v.email_username,onChange:e=>this.set("email","email_username",e.target.value)})),h.a.createElement(p,{title:"SMTP\u5bc6\u7801",description:"\u7531\u90ae\u4ef6\u670d\u52a1\u5546\u63d0\u4f9b\u7684\u5bc6\u7801"},h.a.createElement("input",{type:"text",className:"form-control",placeholder:"\u8bf7\u8f93\u5165",defaultValue:v.email_password,onChange:e=>this.set("email","email_password",e.target.value)})),h.a.createElement(p,{title:"\u53d1\u4ef6\u5730\u5740",description:"\u7531\u90ae\u4ef6\u670d\u52a1\u5546\u63d0\u4f9b\u7684\u53d1\u4ef6\u5730\u5740"},h.a.createElement("input",{type:"text",className:"form-control",placeholder:"\u8bf7\u8f93\u5165",defaultValue:v.email_from_address,onChange:e=>this.set("email","email_from_address",e.target.value)})),h.a.createElement(p,{title:"\u90ae\u4ef6\u6a21\u677f",description:"\u4f60\u53ef\u4ee5\u5728\u6587\u6863\u67e5\u770b\u5982\u4f55\u81ea\u5b9a\u4e49\u90ae\u4ef6\u6a21\u677f"},h.a.createElement("select",{onChange:e=>this.set("email","email_template",e.target.value),className:"form-control",value:v.email_template},m.map(e=>{return h.a.createElement("option",{key:Math.random(),value:e},e)}))),h.a.createElement(p,{title:"\u53d1\u9001\u6d4b\u8bd5\u90ae\u4ef6",description:"\u90ae\u4ef6\u5c06\u4f1a\u53d1\u9001\u5230\u5f53\u524d\u767b\u9646\u7528\u6237\u90ae\u7bb1"},h.a.createElement(o["a"],{loading:x,type:"primary",onClick:()=>this.props.dispatch({type:"config/testSendMail"})},"\u53d1\u9001\u6d4b\u8bd5\u90ae\u4ef6")))),h.a.createElement(a["a"].TabPane,{tab:"Telegram",key:"telegram"},h.a.createElement("div",{className:""},h.a.createElement(p,{title:"\u673a\u5668\u4ebaToken",description:"\u8bf7\u8f93\u5165\u7531Botfather\u63d0\u4f9b\u7684token\u3002"},h.a.createElement("input",{type:"text",className:"form-control",placeholder:"0000000000:xxxxxxxxx_xxxxxxxxxxxxxxx",defaultValue:y.telegram_bot_token,onChange:e=>this.set("telegram","telegram_bot_token",e.target.value)})),y.telegram_bot_token&&h.a.createElement(p,{title:"\u8bbe\u7f6eWebhook",description:"\u5bf9\u673a\u5668\u4eba\u8fdb\u884cWebhook\u8bbe\u7f6e\uff0c\u4e0d\u8bbe\u7f6e\u5c06\u65e0\u6cd5\u6536\u5230Telegram\u901a\u77e5\u3002"},h.a.createElement(o["a"],{type:"primary",onClick:()=>{this.props.dispatch({type:"config/setTelegramWebhook"})},loading:b,disabled:b},"\u4e00\u952e\u8bbe\u7f6e")),h.a.createElement(p,{title:"\u5f00\u542f\u673a\u5668\u4eba\u901a\u77e5",description:"\u5f00\u542f\u540ebot\u5c06\u4f1a\u5bf9\u7ed1\u5b9a\u4e86telegram\u7684\u7ba1\u7406\u5458\u548c\u7528\u6237\u8fdb\u884c\u57fa\u7840\u901a\u77e5\u3002"},h.a.createElement(s["a"],{checked:parseInt(y.telegram_bot_enable),onChange:e=>this.set("telegram","telegram_bot_enable",e?1:0)})),h.a.createElement(p,{title:"\u7fa4\u7ec4\u5730\u5740",description:"\u586b\u5199\u540e\u5c06\u4f1a\u5728\u7528\u6237\u7aef\u5c55\u793a\uff0c\u6216\u8005\u88ab\u7528\u4e8e\u9700\u8981\u7684\u5730\u65b9\u3002"},h.a.createElement("input",{type:"text",className:"form-control",placeholder:"https://t.me/xxxxxx",defaultValue:y.telegram_discuss_link,onChange:e=>this.set("telegram","telegram_discuss_link",e.target.value)})))),h.a.createElement(a["a"].TabPane,{tab:"APP",key:"app"},h.a.createElement("div",{className:"block-content"},h.a.createElement("div",{className:"row"},h.a.createElement("div",{className:"col-lg-12"},h.a.createElement("div",{className:"alert alert-warning",role:"alert"},h.a.createElement("p",{className:"mb-0"},"\u7528\u4e8e\u81ea\u6709\u5ba2\u6237\u7aef(APP)\u7684\u7248\u672c\u7ba1\u7406\u53ca\u66f4\u65b0"))))),h.a.createElement("div",{className:""},h.a.createElement(p,{title:"Windows",description:"Windows\u7aef\u7248\u672c\u53f7\u53ca\u4e0b\u8f7d\u5730\u5740"},h.a.createElement("input",{type:"text",className:"form-control",placeholder:"1.0.0",defaultValue:w.windows_version,onChange:e=>this.set("app","windows_version",e.target.value)}),h.a.createElement("input",{type:"text",className:"form-control mt-1",placeholder:"https://xxxx.com/xxx.exe",defaultValue:w.windows_download_url,onChange:e=>this.set("app","windows_download_url",e.target.value)})),h.a.createElement(p,{title:"macOS",description:"macOS\u7aef\u7248\u672c\u53f7\u53ca\u4e0b\u8f7d\u5730\u5740"},h.a.createElement("input",{type:"text",className:"form-control",placeholder:"1.0.0",defaultValue:w.macos_version,onChange:e=>this.set("app","macos_version",e.target.value)}),h.a.createElement("input",{type:"text",className:"form-control mt-1",placeholder:"https://xxxx.com/xxx.dmg",defaultValue:w.macos_download_url,onChange:e=>this.set("app","macos_download_url",e.target.value)})),h.a.createElement(p,{title:"Android",description:"Android\u7aef\u7248\u672c\u53f7\u53ca\u4e0b\u8f7d\u5730\u5740"},h.a.createElement("input",{type:"text",className:"form-control",placeholder:"1.0.0",defaultValue:w.android_version,onChange:e=>this.set("app","android_version",e.target.value)}),h.a.createElement("input",{type:"text",className:"form-control mt-1",placeholder:"https://xxxx.com/xxx.apk",defaultValue:w.android_download_url,onChange:e=>this.set("app","android_download_url",e.target.value)})))))))}}t["default"]=Object(f["c"])(e=>{var t=e.plan,n=e.config;return{plan:t,config:n}})(m)},"1j5w":function(e,t,n){"use strict";var r=n("q1tI"),i=n.n(r),o=n("xI0J"),a=n("4IlW"),s=n("2GS6"),l=n("Gytx"),c=n.n(l),u=n("TSYQ"),h=n.n(u);function d(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function f(e){for(var t=1;t0&&setTimeout(function(){e.onMotionEnd({deadline:!0})},i)}})},e.nextFrame=function(t){e.cancelNextFrame(),e.raf=pe()(t)},e.cancelNextFrame=function(){e.raf&&(pe.a.cancel(e.raf),e.raf=null)},e.state={status:ke,statusActive:!1,newStatus:!1,statusStyle:null},e.$cacheEle=null,e.node=null,e.raf=null,e}return le()(t,e),ie()(t,[{key:"componentDidMount",value:function(){this.onDomUpdate()}},{key:"componentDidUpdate",value:function(){this.onDomUpdate()}},{key:"componentWillUnmount",value:function(){this._destroyed=!0,this.removeEventListener(this.$cacheEle),this.cancelNextFrame()}},{key:"render",value:function(){var e,t=this.state,n=t.status,i=t.statusActive,o=t.statusStyle,a=this.props,s=a.children,l=a.motionName,c=a.visible,u=a.removeOnLeave,d=a.leavedClassName,f=a.eventProps;return s?n!==ke&&r(this.props)?s(ee()({},f,{className:h()((e={},Z()(e,Ee(l,n),n!==ke),Z()(e,Ee(l,n+"-active"),n!==ke&&i),Z()(e,l,"string"===typeof l),e)),style:o}),this.setNodeRef):c?s(ee()({},f),this.setNodeRef):u?null:s(ee()({},f,{className:d}),this.setNodeRef):null}}],[{key:"getDerivedStateFromProps",value:function(e,t){var n=t.prevProps,i=t.status;if(!r(e))return{};var o=e.visible,a=e.motionAppear,s=e.motionEnter,l=e.motionLeave,c=e.motionLeaveImmediately,u={prevProps:e};return(i===Oe&&!a||i===Te&&!s||i===Ae&&!l)&&(u.status=ke,u.statusActive=!1,u.newStatus=!1),!n&&o&&a&&(u.status=Oe,u.statusActive=!1,u.newStatus=!0),n&&!n.visible&&o&&s&&(u.status=Te,u.statusActive=!1,u.newStatus=!0),(n&&n.visible&&!o&&l||!n&&c&&!o&&l)&&(u.status=Ae,u.statusActive=!1,u.newStatus=!0),u}}]),t}(i.a.Component);return o.propTypes=ee()({},Me,{internalRef:ue.a.oneOfType([ue.a.object,ue.a.func])}),o.defaultProps={visible:!0,motionEnter:!0,motionAppear:!0,motionLeave:!0,removeOnLeave:!0},Object(he["polyfill"])(o),n?i.a.forwardRef(function(e,t){return i.a.createElement(o,ee()({internalRef:t},e))}):o}var Re=Pe(Ce),Le={adjustX:1,adjustY:1},De={topLeft:{points:["bl","tl"],overflow:Le,offset:[0,-7]},bottomLeft:{points:["tl","bl"],overflow:Le,offset:[0,7]},leftTop:{points:["tr","tl"],overflow:Le,offset:[-4,0]},rightTop:{points:["tl","tr"],overflow:Le,offset:[4,0]}},je=De;function Ne(e){return Ne="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Ne(e)}function Ie(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function $e(e,t){for(var n=0;n=n.subMenuTitle.offsetWidth||(e.style.minWidth="".concat(n.subMenuTitle.offsetWidth,"px"))}},n.saveSubMenuTitle=function(e){n.subMenuTitle=e};var r=e.store,i=e.eventKey,o=r.getState(),s=o.defaultActiveFirst;n.isRootMenu=!1;var l=!1;return s&&(l=s[i]),Xe(r,i,l),n}return He(t,e),Fe(t,[{key:"componentDidMount",value:function(){this.componentDidUpdate()}},{key:"componentDidUpdate",value:function(){var e=this,t=this.props,n=t.mode,r=t.parentMenu,i=t.manualRef;i&&i(this),"horizontal"===n&&r.isRootMenu&&this.props.isOpen&&(this.minWidthTimeout=setTimeout(function(){return e.adjustWidth()},0))}},{key:"componentWillUnmount",value:function(){var e=this.props,t=e.onDestroy,n=e.eventKey;t&&t(n),this.minWidthTimeout&&clearTimeout(this.minWidthTimeout),this.mouseenterTimeout&&clearTimeout(this.mouseenterTimeout)}},{key:"renderChildren",value:function(e){var t=this,n=this.props,i={mode:"horizontal"===n.mode?"vertical":n.mode,visible:this.props.isOpen,level:n.level+1,inlineIndent:n.inlineIndent,focusable:!1,onClick:this.onSubMenuClick,onSelect:this.onSelect,onDeselect:this.onDeselect,onDestroy:this.onDestroy,selectedKeys:n.selectedKeys,eventKey:"".concat(n.eventKey,"-menu-"),openKeys:n.openKeys,motion:n.motion,onOpenChange:this.onOpenChange,subMenuOpenDelay:n.subMenuOpenDelay,parentMenu:this,subMenuCloseDelay:n.subMenuCloseDelay,forceSubMenuRender:n.forceSubMenuRender,triggerSubMenuAction:n.triggerSubMenuAction,builtinPlacements:n.builtinPlacements,defaultActiveFirst:n.store.getState().defaultActiveFirst[V(n.eventKey)],multiple:n.multiple,prefixCls:n.rootPrefixCls,id:this.internalMenuId,manualRef:this.saveMenuInstance,itemIcon:n.itemIcon,expandIcon:n.expandIcon},o=this.haveRendered;if(this.haveRendered=!0,this.haveOpened=this.haveOpened||i.visible||i.forceSubMenuRender,!this.haveOpened)return r["createElement"]("div",null);var a=qe({},n.motion,{leavedClassName:"".concat(n.rootPrefixCls,"-hidden"),removeOnLeave:!1,motionAppear:o||!i.visible||"inline"!==i.mode});return r["createElement"](Re,Object.assign({visible:i.visible},a),function(n){var o=n.className,a=n.style,s=h()("".concat(i.prefixCls,"-sub"),o);return r["createElement"](Ht,Object.assign({},i,{id:t.internalMenuId,className:s,style:a}),e)})}},{key:"render",value:function(){var e,t=qe({},this.props),n=t.isOpen,i=this.getPrefixCls(),o="inline"===t.mode,a=h()(i,"".concat(i,"-").concat(t.mode),(e={},Ke(e,t.className,!!t.className),Ke(e,this.getOpenClassName(),n),Ke(e,this.getActiveClassName(),t.active||n&&!o),Ke(e,this.getDisabledClassName(),t.disabled),Ke(e,this.getSelectedClassName(),this.isChildrenSelected()),e));this.internalMenuId||(t.eventKey?this.internalMenuId="".concat(t.eventKey,"$Menu"):(Ge+=1,this.internalMenuId="$__$".concat(Ge,"$Menu")));var s={},l={},c={};t.disabled||(s={onMouseLeave:this.onMouseLeave,onMouseEnter:this.onMouseEnter},l={onClick:this.onTitleClick},c={onMouseEnter:this.onTitleMouseEnter,onMouseLeave:this.onTitleMouseLeave});var u={};o&&(u.paddingLeft=t.inlineIndent*t.level);var d={};this.props.isOpen&&(d={"aria-owns":this.internalMenuId});var f=null;"horizontal"!==t.mode&&(f=this.props.expandIcon,"function"===typeof this.props.expandIcon&&(f=r["createElement"](this.props.expandIcon,qe({},this.props))));var p=r["createElement"]("div",Object.assign({ref:this.saveSubMenuTitle,style:u,className:"".concat(i,"-title")},c,l,{"aria-expanded":n},d,{"aria-haspopup":"true",title:"string"===typeof t.title?t.title:void 0}),t.title,f||r["createElement"]("i",{className:"".concat(i,"-arrow")})),m=this.renderChildren(t.children),g=t.parentMenu.isRootMenu?t.parentMenu.props.getPopupContainer:function(e){return e.parentNode},v=Ye[t.mode],y=t.popupOffset?{offset:t.popupOffset}:{},b="inline"===t.mode?"":t.popupClassName,w=t.disabled,x=t.triggerSubMenuAction,_=t.subMenuOpenDelay,S=t.forceSubMenuRender,C=t.subMenuCloseDelay,E=t.builtinPlacements;return H.forEach(function(e){return delete t[e]}),delete t.onClick,r["createElement"]("li",Object.assign({},t,s,{className:a,role:"menuitem"}),o&&p,o&&m,!o&&r["createElement"](X["a"],{prefixCls:i,popupClassName:"".concat(i,"-popup ").concat(b),getPopupContainer:g,builtinPlacements:Object.assign({},je,E),popupPlacement:v,popupVisible:n,popupAlign:y,popup:m,action:w?[]:[x],mouseEnterDelay:_,mouseLeaveDelay:C,onPopupVisibleChange:this.onPopupVisibleChange,forceRender:S},p))}}]),t}(r["Component"]);Qe.defaultProps={onMouseEnter:$,onMouseLeave:$,onTitleMouseEnter:$,onTitleMouseLeave:$,onTitleClick:$,manualRef:$,mode:"vertical",title:""};var Ze=Object(o["connect"])(function(e,t){var n=e.openKeys,r=e.activeKey,i=e.selectedKeys,o=t.eventKey,a=t.subMenuKey;return{isOpen:n.indexOf(o)>-1,active:r[a]===o,selectedKeys:i}})(Qe);Ze.isSubMenu=!0;var Je=Ze;function et(e){return et="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},et(e)}function tt(e){return it(e)||rt(e)||nt()}function nt(){throw new TypeError("Invalid attempt to spread non-iterable instance")}function rt(e){if(Symbol.iterator in Object(e)||"[object Arguments]"===Object.prototype.toString.call(e))return Array.from(e)}function it(e){if(Array.isArray(e)){for(var t=0,n=new Array(e.length);t=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(i[n]=e[n])}return i}function ct(e,t){if(null==e)return{};var n,r,i={},o=Object.keys(e);for(r=0;r=0||(i[n]=e[n]);return i}function ut(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function ht(e,t){for(var n=0;n=0});o.forEach(function(e){U(e,"display","inline-block")}),e.menuItemSizes=i.map(function(e){return z(e)}),o.forEach(function(e){U(e,"display","none")}),e.overflowedIndicatorWidth=z(t.children[t.children.length-1]),e.originalTotalWidth=e.menuItemSizes.reduce(function(e,t){return e+t},0),e.handleResize(),U(r,"display","none")}}}},e.handleResize=function(){if("horizontal"===e.props.mode){var t=K["findDOMNode"](mt(e));if(t){var n=z(t);e.overflowedItems=[];var r,i=0;e.originalTotalWidth>n+wt&&(r=-1,e.menuItemSizes.forEach(function(t){i+=t,i+e.overflowedIndicatorWidth<=n&&(r+=1)})),e.setState({lastVisibleIndex:r})}}},e}return gt(t,e),dt(t,[{key:"componentDidMount",value:function(){var e=this;if(this.setChildrenWidthAndResize(),1===this.props.level&&"horizontal"===this.props.mode){var t=K["findDOMNode"](this);if(!t)return;this.resizeObserver=new Y["default"](function(t){t.forEach(e.setChildrenWidthAndResize)}),[].slice.call(t.children).concat(t).forEach(function(t){e.resizeObserver.observe(t)}),"undefined"!==typeof MutationObserver&&(this.mutationObserver=new MutationObserver(function(){e.resizeObserver.disconnect(),[].slice.call(t.children).concat(t).forEach(function(t){e.resizeObserver.observe(t)}),e.setChildrenWidthAndResize()}),this.mutationObserver.observe(t,{attributes:!1,childList:!0,subTree:!1}))}}},{key:"componentWillUnmount",value:function(){this.resizeObserver&&this.resizeObserver.disconnect(),this.mutationObserver&&this.mutationObserver.disconnect()}},{key:"renderChildren",value:function(e){var t=this,n=this.state.lastVisibleIndex;return(e||[]).reduce(function(i,o,a){var s=o;if("horizontal"===t.props.mode){var l=t.getOverflowedSubMenuItem(o.props.eventKey,[]);void 0!==n&&-1!==t.props.className.indexOf("".concat(t.props.prefixCls,"-root"))&&(a>n&&(s=r["cloneElement"](o,{style:{display:"none"},eventKey:"".concat(o.props.eventKey,"-hidden"),className:"".concat(bt)})),a===n+1&&(t.overflowedItems=e.slice(n+1).map(function(e){return r["cloneElement"](e,{key:e.props.eventKey,mode:"vertical-left"})}),l=t.getOverflowedSubMenuItem(o.props.eventKey,t.overflowedItems)));var c=[].concat(tt(i),[l,s]);return a===e.length-1&&c.push(t.getOverflowedSubMenuItem(o.props.eventKey,[],!0)),c}return[].concat(tt(i),[s])},[])}},{key:"render",value:function(){var e=this.props,t=(e.visible,e.prefixCls,e.overflowedIndicator,e.mode,e.level,e.tag),n=e.children,i=(e.theme,lt(e,["visible","prefixCls","overflowedIndicator","mode","level","tag","children","theme"])),o=t;return r["createElement"](o,Object.assign({},i),this.renderChildren(n))}}]),t}(r["Component"]);xt.defaultProps={tag:"div",className:""};var _t=xt;function St(e){return St="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},St(e)}function Ct(){return Ct=Object.assign||function(e){for(var t=1;t1?n-1:0);for(var r=1;r2?r-2:0);for(var i=2;i",'"',"`"," ","\r","\n","\t"],l=["{","}","|","\\","^","`"].concat(s),c=["'"].concat(l),u=["%","/","?",";","#"].concat(c),h=["/","?","#"],d=255,f=/^[+a-z0-9A-Z_-]{0,63}$/,p=/^([+a-z0-9A-Z_-]{0,63})(.*)$/,m={javascript:!0,"javascript:":!0},g={http:!0,https:!0,ftp:!0,gopher:!0,file:!0,"http:":!0,"https:":!0,"ftp:":!0,"gopher:":!0,"file:":!0};function v(e,t){if(e&&e instanceof r)return e;var n=new r;return n.parse(e,t),n}r.prototype.parse=function(e,t){var n,r,o,s,l,c=e;if(c=c.trim(),!t&&1===e.split("#").length){var v=a.exec(c);if(v)return this.pathname=v[1],v[2]&&(this.search=v[2]),this}var y=i.exec(c);if(y&&(y=y[0],o=y.toLowerCase(),this.protocol=y,c=c.substr(y.length)),(t||y||c.match(/^\/\/[^@\/]+@[^@\/]+/))&&(l="//"===c.substr(0,2),!l||y&&m[y]||(c=c.substr(2),this.slashes=!0)),!m[y]&&(l||y&&!g[y])){var b,w,x=-1;for(n=0;n127?k+="x":k+=E[O];if(!k.match(f)){var A=C.slice(0,n),M=C.slice(n+1),P=E.match(p);P&&(A.push(P[1]),M.unshift(P[2])),M.length&&(c=M.join(".")+c),this.hostname=A.join(".");break}}}}this.hostname.length>d&&(this.hostname=""),S&&(this.hostname=this.hostname.substr(1,this.hostname.length-2))}var R=c.indexOf("#");-1!==R&&(this.hash=c.substr(R),c=c.slice(0,R));var L=c.indexOf("?");return-1!==L&&(this.search=c.substr(L),c=c.slice(0,L)),c&&(this.pathname=c),g[o]&&this.hostname&&!this.pathname&&(this.pathname=""),this},r.prototype.parseHost=function(e){var t=o.exec(e);t&&(t=t[0],":"!==t&&(this.port=t.substr(1)),e=e.substr(0,e.length-t.length)),e&&(this.hostname=e)},e.exports=v},"2mql":function(e,t,n){"use strict";var r=n("TOwV"),i={childContextTypes:!0,contextType:!0,contextTypes:!0,defaultProps:!0,displayName:!0,getDefaultProps:!0,getDerivedStateFromError:!0,getDerivedStateFromProps:!0,mixins:!0,propTypes:!0,type:!0},o={name:!0,length:!0,prototype:!0,caller:!0,callee:!0,arguments:!0,arity:!0},a={$$typeof:!0,render:!0,defaultProps:!0,displayName:!0,propTypes:!0},s={$$typeof:!0,compare:!0,defaultProps:!0,displayName:!0,propTypes:!0,type:!0},l={};function c(e){return r.isMemo(e)?s:l[e["$$typeof"]]||i}l[r.ForwardRef]=a,l[r.Memo]=s;var u=Object.defineProperty,h=Object.getOwnPropertyNames,d=Object.getOwnPropertySymbols,f=Object.getOwnPropertyDescriptor,p=Object.getPrototypeOf,m=Object.prototype;function g(e,t,n){if("string"!==typeof t){if(m){var r=p(t);r&&r!==m&&g(e,r,n)}var i=h(t);d&&(i=i.concat(d(t)));for(var a=c(e),s=c(t),l=0;ll,n),i=void 0;return i=t.yearl?e.nextDecade:M.bind(e,t.year),u.a.createElement("td",{role:"gridcell",title:t.title,key:t.content,onClick:i,className:g()(r)},u.a.createElement("a",{className:c+"-year"},t.content))});return u.a.createElement("tr",{key:n,role:"row"},r)}),d=i&&i("year");return u.a.createElement("div",{className:this.prefixCls},u.a.createElement("div",null,u.a.createElement("div",{className:c+"-header"},u.a.createElement("a",{className:c+"-prev-decade-btn",role:"button",onClick:this.previousDecade,title:r.previousDecade}),u.a.createElement("a",{className:c+"-decade-select",role:"button",onClick:t.onDecadePanelShow,title:r.decadeSelect},u.a.createElement("span",{className:c+"-decade-select-content"},s,"-",l),u.a.createElement("span",{className:c+"-decade-select-arrow"},"x")),u.a.createElement("a",{className:c+"-next-decade-btn",role:"button",onClick:this.nextDecade,title:r.nextDecade})),u.a.createElement("div",{className:c+"-body"},u.a.createElement("table",{className:c+"-table",cellSpacing:"0",role:"grid"},u.a.createElement("tbody",{className:c+"-tbody"},h))),d&&u.a.createElement("div",{className:c+"-footer"},d)))},t}(u.a.Component),R=P;P.propTypes={rootPrefixCls:d.a.string,value:d.a.object,defaultValue:d.a.object,renderFooter:d.a.func},P.defaultProps={onSelect:function(){}};var L=4,D=3;function j(e){var t=this.state.value.clone();t.add(e,"years"),this.setState({value:t})}function N(e,t){var n=this.state.value.clone();n.year(e),n.month(this.state.value.month()),this.props.onSelect(n),t.preventDefault()}var I=function(e){function t(n){i()(this,t);var r=a()(this,e.call(this,n));return r.state={value:n.value||n.defaultValue},r.prefixCls=n.rootPrefixCls+"-decade-panel",r.nextCentury=j.bind(r,100),r.previousCentury=j.bind(r,-100),r}return l()(t,e),t.prototype.render=function(){for(var e=this,t=this.state.value,n=this.props,r=n.locale,i=n.renderFooter,o=t.year(),a=100*parseInt(o/100,10),s=a-10,l=a+99,c=[],h=0,d=this.prefixCls,f=0;fl,h=(n={},n[d+"-cell"]=1,n[d+"-selected-cell"]=r<=o&&o<=i,n[d+"-last-century-cell"]=s,n[d+"-next-century-cell"]=c,n),f=r+"-"+i,p=void 0;return p=s?e.previousCentury:c?e.nextCentury:N.bind(e,r),u.a.createElement("td",{key:r,onClick:p,role:"gridcell",className:g()(h)},u.a.createElement("a",{className:d+"-decade"},f))});return u.a.createElement("tr",{key:n,role:"row"},r)});return u.a.createElement("div",{className:this.prefixCls},u.a.createElement("div",{className:d+"-header"},u.a.createElement("a",{className:d+"-prev-century-btn",role:"button",onClick:this.previousCentury,title:r.previousCentury}),u.a.createElement("div",{className:d+"-century"},a,"-",l),u.a.createElement("a",{className:d+"-next-century-btn",role:"button",onClick:this.nextCentury,title:r.nextCentury})),u.a.createElement("div",{className:d+"-body"},u.a.createElement("table",{className:d+"-table",cellSpacing:"0",role:"grid"},u.a.createElement("tbody",{className:d+"-tbody"},b))),y&&u.a.createElement("div",{className:d+"-footer"},y))},t}(u.a.Component),$=I;function F(e){var t=this.props.value.clone();t.add(e,"months"),this.props.onValueChange(t)}function V(e){var t=this.props.value.clone();t.add(e,"years"),this.props.onValueChange(t)}function B(e,t){return e?t:null}I.propTypes={locale:d.a.object,value:d.a.object,defaultValue:d.a.object,rootPrefixCls:d.a.string,renderFooter:d.a.func},I.defaultProps={onSelect:function(){}};var W=function(e){function t(n){i()(this,t);var r=a()(this,e.call(this,n));return H.call(r),r.nextMonth=F.bind(r,1),r.previousMonth=F.bind(r,-1),r.nextYear=V.bind(r,1),r.previousYear=V.bind(r,-1),r.state={yearPanelReferer:null},r}return l()(t,e),t.prototype.render=function(){var e=this,t=this.props,n=t.prefixCls,r=t.locale,i=t.mode,o=t.value,a=t.showTimePicker,s=t.enableNext,l=t.enablePrev,c=t.disabledMonth,h=t.renderFooter,d=null;return"month"===i&&(d=u.a.createElement(k,{locale:r,value:o,rootPrefixCls:n,onSelect:this.onMonthSelect,onYearPanelShow:function(){return e.showYearPanel("month")},disabledDate:c,cellRender:t.monthCellRender,contentRender:t.monthCellContentRender,renderFooter:h,changeYear:this.changeYear})),"year"===i&&(d=u.a.createElement(R,{locale:r,defaultValue:o,rootPrefixCls:n,onSelect:this.onYearSelect,onDecadePanelShow:this.showDecadePanel,renderFooter:h})),"decade"===i&&(d=u.a.createElement($,{locale:r,defaultValue:o,rootPrefixCls:n,onSelect:this.onDecadeSelect,renderFooter:h})),u.a.createElement("div",{className:n+"-header"},u.a.createElement("div",{style:{position:"relative"}},B(l&&!a,u.a.createElement("a",{className:n+"-prev-year-btn",role:"button",onClick:this.previousYear,title:r.previousYear})),B(l&&!a,u.a.createElement("a",{className:n+"-prev-month-btn",role:"button",onClick:this.previousMonth,title:r.previousMonth})),this.monthYearElement(a),B(s&&!a,u.a.createElement("a",{className:n+"-next-month-btn",onClick:this.nextMonth,title:r.nextMonth})),B(s&&!a,u.a.createElement("a",{className:n+"-next-year-btn",onClick:this.nextYear,title:r.nextYear}))),d)},t}(u.a.Component);W.propTypes={prefixCls:d.a.string,value:d.a.object,onValueChange:d.a.func,showTimePicker:d.a.bool,onPanelChange:d.a.func,locale:d.a.object,enablePrev:d.a.any,enableNext:d.a.any,disabledMonth:d.a.func,renderFooter:d.a.func,onMonthSelect:d.a.func},W.defaultProps={enableNext:1,enablePrev:1,onPanelChange:function(){},onValueChange:function(){}};var H=function(){var e=this;this.onMonthSelect=function(t){e.props.onPanelChange(t,"date"),e.props.onMonthSelect?e.props.onMonthSelect(t):e.props.onValueChange(t)},this.onYearSelect=function(t){var n=e.state.yearPanelReferer;e.setState({yearPanelReferer:null}),e.props.onPanelChange(t,n),e.props.onValueChange(t)},this.onDecadeSelect=function(t){e.props.onPanelChange(t,"year"),e.props.onValueChange(t)},this.changeYear=function(t){t>0?e.nextYear():e.previousYear()},this.monthYearElement=function(t){var n=e.props,r=n.prefixCls,i=n.locale,o=n.value,a=o.localeData(),s=i.monthBeforeYear,l=r+"-"+(s?"my-select":"ym-select"),c=t?" "+r+"-time-status":"",h=u.a.createElement("a",{className:r+"-year-select"+c,role:"button",onClick:t?null:function(){return e.showYearPanel("date")},title:t?null:i.yearSelect},o.format(i.yearFormat)),d=u.a.createElement("a",{className:r+"-month-select"+c,role:"button",onClick:t?null:e.showMonthPanel,title:t?null:i.monthSelect},i.monthFormat?o.format(i.monthFormat):a.monthsShort(o)),p=void 0;t&&(p=u.a.createElement("a",{className:r+"-day-select"+c,role:"button"},o.format(i.dayFormat)));var m=[];return m=s?[d,p,h]:[h,d,p],u.a.createElement("span",{className:l},Object(f["a"])(m))},this.showMonthPanel=function(){e.props.onPanelChange(null,"month")},this.showYearPanel=function(t){e.setState({yearPanelReferer:t}),e.props.onPanelChange(null,"year")},this.showDecadePanel=function(){e.props.onPanelChange(null,"decade")}};t["a"]=W},"330p":function(e,t,n){"use strict";var r=n("7tNx"),i=RegExp.prototype.exec,o=String.prototype.replace,a=i,s="lastIndex",l=function(){var e=/a/,t=/b*/g;return i.call(e,"a"),i.call(t,"a"),0!==e[s]||0!==t[s]}(),c=void 0!==/()??/.exec("")[1],u=l||c;u&&(a=function(e){var t,n,a,u,h=this;return c&&(n=new RegExp("^"+h.source+"$(?!\\s)",r.call(h))),l&&(t=h[s]),a=i.call(h,e),l&&a&&(h[s]=h.global?a.index+a[0].length:t),c&&a&&a.length>1&&o.call(a[0],n,function(){for(u=1;u=0;r--){var i=e[r];"."===i?e.splice(r,1):".."===i?(e.splice(r,1),n++):n&&(e.splice(r,1),n--)}if(t)for(;n--;n)e.unshift("..");return e}function r(e){"string"!==typeof e&&(e+="");var t,n=0,r=-1,i=!0;for(t=e.length-1;t>=0;--t)if(47===e.charCodeAt(t)){if(!i){n=t+1;break}}else-1===r&&(i=!1,r=t+1);return-1===r?"":e.slice(n,r)}function i(e,t){if(e.filter)return e.filter(t);for(var n=[],r=0;r=-1&&!r;o--){var a=o>=0?arguments[o]:e.cwd();if("string"!==typeof a)throw new TypeError("Arguments to path.resolve must be strings");a&&(t=a+"/"+t,r="/"===a.charAt(0))}return t=n(i(t.split("/"),function(e){return!!e}),!r).join("/"),(r?"/":"")+t||"."},t.normalize=function(e){var r=t.isAbsolute(e),a="/"===o(e,-1);return e=n(i(e.split("/"),function(e){return!!e}),!r).join("/"),e||r||(e="."),e&&a&&(e+="/"),(r?"/":"")+e},t.isAbsolute=function(e){return"/"===e.charAt(0)},t.join=function(){var e=Array.prototype.slice.call(arguments,0);return t.normalize(i(e,function(e,t){if("string"!==typeof e)throw new TypeError("Arguments to path.join must be strings");return e}).join("/"))},t.relative=function(e,n){function r(e){for(var t=0;t=0;n--)if(""!==e[n])break;return t>n?[]:e.slice(t,n-t+1)}e=t.resolve(e).substr(1),n=t.resolve(n).substr(1);for(var i=r(e.split("/")),o=r(n.split("/")),a=Math.min(i.length,o.length),s=a,l=0;l=1;--o)if(t=e.charCodeAt(o),47===t){if(!i){r=o;break}}else i=!1;return-1===r?n?"/":".":n&&1===r?"/":e.slice(0,r)},t.basename=function(e,t){var n=r(e);return t&&n.substr(-1*t.length)===t&&(n=n.substr(0,n.length-t.length)),n},t.extname=function(e){"string"!==typeof e&&(e+="");for(var t=-1,n=0,r=-1,i=!0,o=0,a=e.length-1;a>=0;--a){var s=e.charCodeAt(a);if(47!==s)-1===r&&(i=!1,r=a+1),46===s?-1===t?t=a:1!==o&&(o=1):-1!==t&&(o=-1);else if(!i){n=a+1;break}}return-1===t||-1===r||0===o||1===o&&t===r-1&&t===n+1?"":e.slice(t,r)};var o="b"==="ab".substr(-1)?function(e,t,n){return e.substr(t,n)}:function(e,t,n){return t<0&&(t=e.length+t),e.substr(t,n)}}).call(this,n("Q2Ig"))},"3FhE":function(e,t,n){var r=n("u8+u"),i=n("EpXD"),o=n("gL7N")("species");e.exports=function(e){var t;return i(e)&&(t=e.constructor,"function"!=typeof t||t!==Array&&!i(t.prototype)||(t=void 0),r(t)&&(t=t[o],null===t&&(t=void 0))),void 0===t?Array:t}},"3GJH":function(e,t,n){n("lCc8");var r=n("WEpk").Object;e.exports=function(e,t){return r.create(e,t)}},"3JrO":function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.rootContainer=a,t.initialProps=s,t.modifyInitialProps=l;var r=o(n("q1tI")),i=n("xg5P");function o(e){return e&&e.__esModule?e:{default:e}}function a(e){return r.default.createElement(i._DvaContainer,null,e)}function s(e){if(e)return e;var t=(0,i.getApp)()._store.getState();return Object.keys(t).reduce(function(e,n){return["@@dva","loading","routing"].includes(n)||(e[n]=t[n]),e},{})}function l(e){return e?{store:(0,i.getApp)()._store}:{}}},"3Oj7":function(e,t,n){"use strict";var r=function(){function e(e,t){this.x=e||0,this.y=t||0}return e.prototype.copy=function(e){return this.x=e.x,this.y=e.y,this},e.prototype.clone=function(){return new e(this.x,this.y)},e.prototype.set=function(e,t){return this.x=e,this.y=t,this},e.prototype.equal=function(e){return e.x===this.x&&e.y===this.y},e.prototype.add=function(e){return this.x+=e.x,this.y+=e.y,this},e.prototype.scale=function(e){this.x*=e,this.y*=e},e.prototype.scaleAndAdd=function(e,t){this.x+=e.x*t,this.y+=e.y*t},e.prototype.sub=function(e){return this.x-=e.x,this.y-=e.y,this},e.prototype.dot=function(e){return this.x*e.x+this.y*e.y},e.prototype.len=function(){return Math.sqrt(this.x*this.x+this.y*this.y)},e.prototype.lenSquare=function(){return this.x*this.x+this.y*this.y},e.prototype.normalize=function(){var e=this.len();return this.x/=e,this.y/=e,this},e.prototype.distance=function(e){var t=this.x-e.x,n=this.y-e.y;return Math.sqrt(t*t+n*n)},e.prototype.distanceSquare=function(e){var t=this.x-e.x,n=this.y-e.y;return t*t+n*n},e.prototype.negate=function(){return this.x=-this.x,this.y=-this.y,this},e.prototype.transform=function(e){if(e){var t=this.x,n=this.y;return this.x=e[0]*t+e[2]*n+e[4],this.y=e[1]*t+e[3]*n+e[5],this}},e.prototype.toArray=function(e){return e[0]=this.x,e[1]=this.y,e},e.prototype.fromArray=function(e){this.x=e[0],this.y=e[1]},e.set=function(e,t,n){e.x=t,e.y=n},e.copy=function(e,t){e.x=t.x,e.y=t.y},e.len=function(e){return Math.sqrt(e.x*e.x+e.y*e.y)},e.lenSquare=function(e){return e.x*e.x+e.y*e.y},e.dot=function(e,t){return e.x*t.x+e.y*t.y},e.add=function(e,t,n){e.x=t.x+n.x,e.y=t.y+n.y},e.sub=function(e,t,n){e.x=t.x-n.x,e.y=t.y-n.y},e.scale=function(e,t,n){e.x=t.x*n,e.y=t.y*n},e.scaleAndAdd=function(e,t,n,r){e.x=t.x+n.x*r,e.y=t.y+n.y*r},e.lerp=function(e,t,n,r){var i=1-r;e.x=i*t.x+r*n.x,e.y=i*t.y+r*n.y},e}();t["a"]=r},"3U8f":function(e,t,n){"use strict";var r=n("mrSG"),i=n("Gev7"),o=n("6GrX"),a=n("y+Vt"),s=n("bYtY"),l=Object(s["j"])({strokeFirst:!0,font:o["a"],x:0,y:0,textAlign:"left",textBaseline:"top",miterLimit:2},a["a"]),c=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return Object(r["a"])(t,e),t.prototype.hasStroke=function(){var e=this.style,t=e.stroke;return null!=t&&"none"!==t&&e.lineWidth>0},t.prototype.hasFill=function(){var e=this.style,t=e.fill;return null!=t&&"none"!==t},t.prototype.createStyle=function(e){return Object(s["h"])(l,e)},t.prototype.setBoundingRect=function(e){this._rect=e},t.prototype.getBoundingRect=function(){var e=this.style;if(!this._rect){var t=e.text;null!=t?t+="":t="";var n=Object(o["e"])(t,e.font,e.textAlign,e.textBaseline);if(n.x+=e.x||0,n.y+=e.y||0,this.hasStroke()){var r=e.lineWidth;n.x-=r/2,n.y-=r/2,n.width+=r,n.height+=r}this._rect=n}return this._rect},t.initDefaultProps=function(){var e=t.prototype;e.dirtyRectTolerance=10}(),t}(i["c"]);c.prototype.type="tspan",t["a"]=c},"3a4m":function(e,t,n){e.exports=n("usdK").default},"3e3G":function(e,t,n){"use strict";var r=n("mrSG"),i=n("QuXc"),o=function(e){function t(t,n,r,i,o){var a=e.call(this,i)||this;return a.x=null==t?.5:t,a.y=null==n?.5:n,a.r=null==r?.5:r,a.type="radial",a.global=o||!1,a}return Object(r["a"])(t,e),t}(i["a"]);t["a"]=o},"3m+/":function(e,t,n){n("/sWw")("asyncIterator")},"3moC":function(e,t,n){"use strict";n.r(t);var r=n("d6i3"),i=n.n(r),o=n("p0pE"),a=n.n(o),s=n("t3Un"),l={orders:[],fetchLoading:!1,assignLoading:!1,pagination:{pageSize:10,current:0},filter:[]};t["default"]={name:"order",state:a()({},l),reducers:{setState(e,t){var n=t.payload;return a()({},e,n)},empty(e){return a()({},e,l)}},effects:{fetch(e,t){return i.a.mark(function e(){var n,r,o,l;return i.a.wrap(function(e){while(1)switch(e.prev=e.next){case 0:return n=t.put,r=t.select,e.next=3,r(e=>e.order);case 3:return o=e.sent,e.next=6,n({type:"setState",payload:{fetchLoading:!0}});case 6:return e.next=8,Object(s["a"])("/admin/order/fetch",a()({filter:o.filter},o.pagination));case 8:return l=e.sent,e.next=11,n({type:"setState",payload:{fetchLoading:!1}});case 11:if(200===l.code){e.next=13;break}return e.abrupt("return");case 13:return e.next=15,n({type:"setState",payload:{orders:l.data}});case 15:return e.next=17,n({type:"setState",payload:{pagination:a()({},o.pagination,{total:l.total})}});case 17:case"end":return e.stop()}},e)})()},filter(e,t){return i.a.mark(function n(){var r,o,a,s,l;return i.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.filter,o=t.put,a=t.select,n.next=4,a(e=>e.order);case 4:return s=n.sent,l=s.pagination,l["current"]=1,n.next=9,o({type:"setState",payload:{filter:r}});case 9:return n.next=11,o({type:"fetch"});case 11:case"end":return n.stop()}},n)})()},addFilter(e,t){return i.a.mark(function n(){var r,o,a,s,l,c,u,h,d;return i.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:if(r=e.key,o=e.condition,a=e.value,s=e.clear,l=t.put,c=t.select,!s){n.next=5;break}return n.next=5,l({filter:[]});case 5:return n.next=7,c(e=>e.order);case 7:return u=n.sent,h=u.filter,d=u.pagination,h.push({key:r,condition:o,value:a}),d["current"]=1,n.next=14,l({type:"setState",payload:{filter:h,pagination:d}});case 14:return n.next=16,l({type:"fetch"});case 16:case"end":return n.stop()}},n)})()},update(e,t){return i.a.mark(function n(){var r,o,a,l,c;return i.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.tradeNo,o=e.key,a=e.value,l=t.put,n.next=4,Object(s["b"])("/admin/order/update",{trade_no:r,[o]:a});case 4:if(c=n.sent,200===c.code){n.next=7;break}return n.abrupt("return");case 7:return n.next=9,l({type:"fetch"});case 9:case"end":return n.stop()}},n)})()},paid(e,t){return i.a.mark(function n(){var r,o,a;return i.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.tradeNo,o=t.put,n.next=4,Object(s["b"])("/admin/order/paid",{trade_no:r});case 4:if(a=n.sent,200===a.code){n.next=7;break}return n.abrupt("return");case 7:return n.next=9,o({type:"fetch"});case 9:case"end":return n.stop()}},n)})()},cancel(e,t){return i.a.mark(function n(){var r,o,a;return i.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.tradeNo,o=t.put,n.next=4,Object(s["b"])("/admin/order/cancel",{trade_no:r});case 4:if(a=n.sent,200===a.code){n.next=7;break}return n.abrupt("return");case 7:return n.next=9,o({type:"fetch"});case 9:case"end":return n.stop()}},n)})()},assign(e,t){return i.a.mark(function n(){var r,o,l,c;return i.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.params,o=e.callback,l=t.put,n.next=4,l({type:"setState",payload:{assignLoading:!0}});case 4:return n.next=6,Object(s["b"])("/admin/order/assign",a()({},r,{total_amount:100*r.total_amount}));case 6:return c=n.sent,n.next=9,l({type:"setState",payload:{assignLoading:!1}});case 9:if(200===c.code){n.next=11;break}return n.abrupt("return");case 11:return n.next=13,l({type:"fetch"});case 13:"function"===typeof o&&o();case 14:case"end":return n.stop()}},n)})()},changeTable(e,t){return i.a.mark(function n(){var r,o,s,l;return i.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.pagination,o=t.select,s=t.put,n.next=4,o(e=>e.order);case 4:return l=n.sent,n.next=7,s({type:"setState",payload:{pagination:a()({},l.pagination,r)}});case 7:return n.next=9,s({type:"fetch"});case 9:case"end":return n.stop()}},n)})()}}}},"48Dx":function(e,t){e.exports=function(e,t){return{value:t,done:!!e}}},"49sm":function(e,t){e.exports=Array.isArray||function(e){return"[object Array]"==Object.prototype.toString.call(e)}},"4IlW":function(e,t,n){"use strict";var r={MAC_ENTER:3,BACKSPACE:8,TAB:9,NUM_CENTER:12,ENTER:13,SHIFT:16,CTRL:17,ALT:18,PAUSE:19,CAPS_LOCK:20,ESC:27,SPACE:32,PAGE_UP:33,PAGE_DOWN:34,END:35,HOME:36,LEFT:37,UP:38,RIGHT:39,DOWN:40,PRINT_SCREEN:44,INSERT:45,DELETE:46,ZERO:48,ONE:49,TWO:50,THREE:51,FOUR:52,FIVE:53,SIX:54,SEVEN:55,EIGHT:56,NINE:57,QUESTION_MARK:63,A:65,B:66,C:67,D:68,E:69,F:70,G:71,H:72,I:73,J:74,K:75,L:76,M:77,N:78,O:79,P:80,Q:81,R:82,S:83,T:84,U:85,V:86,W:87,X:88,Y:89,Z:90,META:91,WIN_KEY_RIGHT:92,CONTEXT_MENU:93,NUM_ZERO:96,NUM_ONE:97,NUM_TWO:98,NUM_THREE:99,NUM_FOUR:100,NUM_FIVE:101,NUM_SIX:102,NUM_SEVEN:103,NUM_EIGHT:104,NUM_NINE:105,NUM_MULTIPLY:106,NUM_PLUS:107,NUM_MINUS:109,NUM_PERIOD:110,NUM_DIVISION:111,F1:112,F2:113,F3:114,F4:115,F5:116,F6:117,F7:118,F8:119,F9:120,F10:121,F11:122,F12:123,NUMLOCK:144,SEMICOLON:186,DASH:189,EQUALS:187,COMMA:188,PERIOD:190,SLASH:191,APOSTROPHE:192,SINGLE_QUOTE:222,OPEN_SQUARE_BRACKET:219,BACKSLASH:220,CLOSE_SQUARE_BRACKET:221,WIN_KEY:224,MAC_FF_META:224,WIN_IME:229,isTextModifyingKeyEvent:function(e){var t=e.keyCode;if(e.altKey&&!e.ctrlKey||e.metaKey||t>=r.F1&&t<=r.F12)return!1;switch(t){case r.ALT:case r.CAPS_LOCK:case r.CONTEXT_MENU:case r.CTRL:case r.DOWN:case r.END:case r.ESC:case r.HOME:case r.INSERT:case r.LEFT:case r.MAC_FF_META:case r.META:case r.NUMLOCK:case r.NUM_CENTER:case r.PAGE_DOWN:case r.PAGE_UP:case r.PAUSE:case r.PRINT_SCREEN:case r.RIGHT:case r.SHIFT:case r.UP:case r.WIN_KEY:case r.WIN_KEY_RIGHT:return!1;default:return!0}},isCharacterKey:function(e){if(e>=r.ZERO&&e<=r.NINE)return!0;if(e>=r.NUM_ZERO&&e<=r.NUM_MULTIPLY)return!0;if(e>=r.A&&e<=r.Z)return!0;if(-1!==window.navigator.userAgent.indexOf("WebKit")&&0===e)return!0;switch(e){case r.SPACE:case r.QUESTION_MARK:case r.NUM_PLUS:case r.NUM_MINUS:case r.NUM_PERIOD:case r.NUM_DIVISION:case r.SEMICOLON:case r.DASH:case r.EQUALS:case r.COMMA:case r.PERIOD:case r.SLASH:case r.APOSTROPHE:case r.SINGLE_QUOTE:case r.OPEN_SQUARE_BRACKET:case r.BACKSLASH:case r.CLOSE_SQUARE_BRACKET:return!0;default:return!1}}};t["a"]=r},"4gcQ":function(e,t,n){var r=n("V5/1"),i=n("7vYJ"),o=n("Igga");e.exports=n("8Z/V")?Object.defineProperties:function(e,t){i(e);var n,a=o(t),s=a.length,l=0;while(s>l)r.f(e,n=a[l++],t[n]);return e}},"4mN7":function(e,t,n){"use strict";n.d(t,"d",function(){return f}),n.d(t,"c",function(){return p}),n.d(t,"b",function(){return v}),n.d(t,"e",function(){return y}),n.d(t,"a",function(){return b});var r=n("QBsz"),i=n("Sj9i"),o=Math.min,a=Math.max,s=Math.sin,l=Math.cos,c=2*Math.PI,u=r["d"](),h=r["d"](),d=r["d"]();function f(e,t,n){if(0!==e.length){for(var r=e[0],i=r[0],s=r[0],l=r[1],c=r[1],u=1;u1e-4)return p[0]=e-n,p[1]=t-i,m[0]=e+n,void(m[1]=t+i);if(u[0]=l(o)*n+e,u[1]=s(o)*i+t,h[0]=l(a)*n+e,h[1]=s(a)*i+t,g(p,u,h),v(m,u,h),o%=c,o<0&&(o+=c),a%=c,a<0&&(a+=c),o>a&&!f?a+=c:oo&&(d[0]=l(w)*n+e,d[1]=s(w)*i+t,g(p,d,p),v(m,d,m))}},"4nmR":function(e,t,n){"use strict";var r=n("vpQ4"),i=n("ANjH"),o=n("7bO/"),a=n("QLaP"),s=n.n(a),l=n("U8pU"),c=n("+0iv"),u=n.n(c),h=n("KQm4");function d(e){if(Array.isArray(e))return e}var f=n("25BE"),p=n("BsWD");function m(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function g(e){return d(e)||Object(f["a"])(e)||Object(p["a"])(e)||m()}var v=n("myn2"),y=n.n(v),b=n("1OyB"),w=n("vuIU"),x=n("QTEQ"),_=n.n(x);n("vgmO");function S(e,t){var n=null==e?null:"undefined"!==typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,i,o=[],a=!0,s=!1;try{for(n=n.call(e);!(a=(r=n.next()).done);a=!0)if(o.push(r.value),t&&o.length===t)break}catch(e){s=!0,i=e}finally{try{a||null==n["return"]||n["return"]()}finally{if(s)throw i}}return o}}function C(e,t){return d(e)||S(e,t)||Object(p["a"])(e,t)||m()}var E=n("o0o1"),k=n.n(E);n.d(t,"a",function(){return oe}),n.d(t,"b",function(){return R});var O=Array.isArray.bind(Array),T=function(e){return"function"===typeof e},A=function(e){return e},M=function(){},P=function(e,t){for(var n=0,r=e.length;n-1&&(t[n]=e[n]),t},{})}var $=function(){function e(){Object(b["a"])(this,e),this._handleActions=null,this.hooks=N.reduce(function(e,t){return e[t]=[],e},{})}return Object(w["a"])(e,[{key:"use",value:function(e){s()(u()(e),"plugin.use: plugin should be plain object");var t=this.hooks;for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(s()(t[n],"plugin.use: unknown plugin property: ".concat(n)),"_handleActions"===n?this._handleActions=e[n]:"extraEnhancers"===n?t[n]=e[n]:t[n].push(e[n]))}},{key:"apply",value:function(e,t){var n=this.hooks,r=["onError","onHmr"];s()(r.indexOf(e)>-1,"plugin.apply: hook ".concat(e," cannot be applied"));var i=n[e];return function(){if(i.length){var e=!0,n=!1,r=void 0;try{for(var o,a=i[Symbol.iterator]();!(e=(o=a.next()).done);e=!0){var s=o.value;s.apply(void 0,arguments)}}catch(e){n=!0,r=e}finally{try{e||null==a.return||a.return()}finally{if(n)throw r}}}else t&&t.apply(void 0,arguments)}}},{key:"get",value:function(e){var t=this.hooks;return s()(e in t,"plugin.get: hook ".concat(e," cannot be got")),"extraReducers"===e?F(t[e]):"onReducer"===e?V(t[e]):t[e]}}]),e}();function F(e){var t={},n=!0,i=!1,o=void 0;try{for(var a,s=e[Symbol.iterator]();!(n=(a=s.next()).done);n=!0){var l=a.value;t=Object(r["a"])({},t,l)}}catch(e){i=!0,o=e}finally{try{n||null==s.return||s.return()}finally{if(i)throw o}}return t}function V(e){return function(t){var n=!0,r=!1,i=void 0;try{for(var o,a=e[Symbol.iterator]();!(n=(o=a.next()).done);n=!0){var s=o.value;t=s(t)}}catch(e){r=!0,i=e}finally{try{n||null==a.return||a.return()}finally{if(r)throw i}}return t}}function B(e){var t=e.reducers,n=e.initialState,r=e.plugin,o=e.sagaMiddleware,a=e.promiseMiddleware,c=e.createOpts.setupMiddlewares,u=void 0===c?A:c,d=r.get("extraEnhancers");s()(O(d),"[app.start] extraEnhancers should be array, but got ".concat(Object(l["a"])(d)));var f=r.get("onAction"),p=u([a,o].concat(Object(h["a"])(_()(f)))),m=i["c"],g=[i["a"].apply(void 0,Object(h["a"])(p))].concat(Object(h["a"])(d));return Object(i["d"])(t,n,m.apply(void 0,Object(h["a"])(g)))}function W(e,t){var n="".concat(t.namespace).concat(L).concat(e),r=n.replace(/\/@@[^/]+?$/,""),i=Array.isArray(t.reducers)?t.reducers[0][r]:t.reducers&&t.reducers[r];return i||t.effects&&t.effects[r]?n:e}function H(e,t,n,r){var i=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{};return k.a.mark(function a(){var s;return k.a.wrap(function(a){while(1)switch(a.prev=a.next){case 0:a.t0=k.a.keys(e);case 1:if((a.t1=a.t0()).done){a.next=7;break}if(s=a.t1.value,!Object.prototype.hasOwnProperty.call(e,s)){a.next=5;break}return a.delegateYield(k.a.mark(function a(){var l,c;return k.a.wrap(function(a){while(1)switch(a.prev=a.next){case 0:return l=z(s,e[s],t,n,r,i),a.next=3,o["b"].fork(l);case 3:return c=a.sent,a.next=6,o["b"].fork(k.a.mark(function e(){return k.a.wrap(function(e){while(1)switch(e.prev=e.next){case 0:return e.next=2,o["b"].take("".concat(t.namespace,"/@@CANCEL_EFFECTS"));case 2:return e.next=4,o["b"].cancel(c);case 4:case"end":return e.stop()}},e)}));case 6:case"end":return a.stop()}},a)})(),"t2",5);case 5:a.next=1;break;case 7:case"end":return a.stop()}},a)})}function z(e,t,n,r,i,a){var l,c,u=k.a.mark(v),d=t,f="takeEvery";if(Array.isArray(t)){var p=C(t,1);d=p[0];var m=t[1];m&&m.type&&(f=m.type,"throttle"===f&&(s()(m.ms,"app.start: opts.ms should be defined if type is throttle"),l=m.ms),"poll"===f&&(s()(m.delay,"app.start: opts.delay should be defined if type is poll"),c=m.delay)),s()(["watcher","takeEvery","takeLatest","throttle","poll"].indexOf(f)>-1,"app.start: effect type should be takeEvery, takeLatest, throttle, poll or watcher")}function g(){}function v(){var t,i,s,l,c,f,p,m,v,y=arguments;return k.a.wrap(function(u){while(1)switch(u.prev=u.next){case 0:for(t=y.length,i=new Array(t),s=0;s0?i[0]:{},c=l.__dva_resolve,f=void 0===c?g:c,p=l.__dva_reject,m=void 0===p?g:p,u.prev=2,u.next=5,o["b"].put({type:"".concat(e).concat(L,"@@start")});case 5:return u.next=7,d.apply(void 0,Object(h["a"])(i.concat(U(n,a))));case 7:return v=u.sent,u.next=10,o["b"].put({type:"".concat(e).concat(L,"@@end")});case 10:f(v),u.next=17;break;case 13:u.prev=13,u.t0=u["catch"](2),r(u.t0,{key:e,effectArgs:i}),u.t0._dontReject||m(u.t0);case 17:case"end":return u.stop()}},u,null,[[2,13]])}var y=q(i,v,n,e);switch(f){case"watcher":return v;case"takeLatest":return k.a.mark(function t(){return k.a.wrap(function(t){while(1)switch(t.prev=t.next){case 0:return t.next=2,o["b"].takeLatest(e,y);case 2:case"end":return t.stop()}},t)});case"throttle":return k.a.mark(function t(){return k.a.wrap(function(t){while(1)switch(t.prev=t.next){case 0:return t.next=2,o["b"].throttle(l,e,y);case 2:case"end":return t.stop()}},t)});case"poll":return k.a.mark(function t(){var n,r,i,a,s,l,u;return k.a.wrap(function(t){while(1)switch(t.prev=t.next){case 0:i=function(e,t){var i;return k.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:i=e.call;case 1:return n.next=4,i(y,t);case 4:return n.next=6,i(r,c);case 6:n.next=1;break;case 8:case"end":return n.stop()}},n)},r=function(e){return new Promise(function(t){return setTimeout(t,e)})},n=k.a.mark(i),a=o["b"].call,s=o["b"].take,l=o["b"].race;case 4:return t.next=7,s("".concat(e,"-start"));case 7:return u=t.sent,t.next=10,l([a(i,o["b"],u),s("".concat(e,"-stop"))]);case 10:t.next=4;break;case 12:case"end":return t.stop()}},t)});default:return k.a.mark(function t(){return k.a.wrap(function(t){while(1)switch(t.prev=t.next){case 0:return t.next=2,o["b"].takeEvery(e,y);case 2:case"end":return t.stop()}},t)})}}function U(e,t){function n(n,r){s()(n,"dispatch: action should be a plain Object with type");var i=t.namespacePrefixWarning,o=void 0===i||i;o&&y()(0!==n.indexOf("".concat(e.namespace).concat(L)),"[".concat(r,"] ").concat(n," should not be prefixed with namespace ").concat(e.namespace))}function i(t){var i=t.type;return n(i,"sagaEffects.put"),o["b"].put(Object(r["a"])({},t,{type:W(i,e)}))}function a(t){var i=t.type;return n(i,"sagaEffects.put.resolve"),o["b"].put.resolve(Object(r["a"])({},t,{type:W(i,e)}))}function l(t){return"string"===typeof t?(n(t,"sagaEffects.take"),o["b"].take(W(t,e))):Array.isArray(t)?o["b"].take(t.map(function(t){return"string"===typeof t?(n(t,"sagaEffects.take"),W(t,e)):t})):o["b"].take(t)}return i.resolve=a,Object(r["a"])({},o["b"],{put:i,take:l})}function q(e,t,n,r){var i=!0,a=!1,s=void 0;try{for(var l,c=e[Symbol.iterator]();!(i=(l=c.next()).done);i=!0){var u=l.value;t=u(t,o["b"],n,r)}}catch(e){a=!0,s=e}finally{try{i||null==c.return||c.return()}finally{if(a)throw s}}return t}function K(e){return e}function G(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:K;return function(n,r){var i=r.type;return s()(i,"dispatch: action should be a plain Object with type"),e===i?t(n,r):n}}function Y(){for(var e=arguments.length,t=new Array(e),n=0;n0&&void 0!==arguments[0]?arguments[0]:t,n=arguments.length>1?arguments[1]:void 0;return r(e,n)}}function Q(e,t,n){return Array.isArray(e)?e[1]((n||X)(e[0],t)):(n||X)(e||{},t)}function Z(e){return function(){return function(e){return function(n){var i=n.type;return t(i)?new Promise(function(t,i){e(Object(r["a"])({__dva_resolve:t,__dva_reject:i},n))}):e(n)}}};function t(t){if(!t||"string"!==typeof t)return!1;var n=t.split(L),r=C(n,1),i=r[0],o=e._models.filter(function(e){return e.namespace===i})[0];return!!(o&&o.effects&&o.effects[t])}}function J(e,t){return function(n){var i=n.type;return s()(i,"dispatch: action should be a plain Object with type"),y()(0!==i.indexOf("".concat(t.namespace).concat(L)),"dispatch: ".concat(i," should not be prefixed with namespace ").concat(t.namespace)),e(Object(r["a"])({},n,{type:W(i,t)}))}}function ee(e,t,n,r){var i=[],o=[];for(var a in e)if(Object.prototype.hasOwnProperty.call(e,a)){var s=e[a],l=s({dispatch:J(n._store.dispatch,t),history:n._history},r);T(l)?i.push(l):o.push(a)}return{funcs:i,nonFuncs:o}}function te(e,t){if(e[t]){var n=e[t],r=n.funcs,i=n.nonFuncs;y()(0===i.length,"[app.unmodel] subscription should return unlistener function, check these subscriptions ".concat(i.join(", ")));var o=!0,a=!1,s=void 0;try{for(var l,c=r[Symbol.iterator]();!(o=(l=c.next()).done);o=!0){var u=l.value;u()}}catch(e){a=!0,s=e}finally{try{o||null==c.return||c.return()}finally{if(a)throw s}}delete e[t]}}var ne=M,re=P,ie={namespace:"@@dva",state:0,reducers:{UPDATE:function(e){return e+1}}};function oe(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=t.initialReducer,a=t.setupApp,l=void 0===a?ne:a,c=new $;c.use(I(e));var u={_models:[j(Object(r["a"])({},ie))],_store:null,_plugin:c,use:c.use.bind(c),model:h,start:m};return u;function h(e){var t=j(Object(r["a"])({},e));return u._models.push(t),t}function d(t,n,r,i){i=h(i);var o=u._store;o.asyncReducers[i.namespace]=Q(i.reducers,i.state,c._handleActions),o.replaceReducer(t()),i.effects&&o.runSaga(u._getSaga(i.effects,i,n,c.get("onEffect"),e)),i.subscriptions&&(r[i.namespace]=ee(i.subscriptions,i,u,n))}function f(e,t,n,r){var i=u._store;delete i.asyncReducers[r],delete t[r],i.replaceReducer(e()),i.dispatch({type:"@@dva/UPDATE"}),i.dispatch({type:"".concat(r,"/@@CANCEL_EFFECTS")}),te(n,r),u._models=u._models.filter(function(e){return e.namespace!==r})}function p(e,t,n,r,i){var o=u._store,a=i.namespace,s=re(u._models,function(e){return e.namespace===a});~s&&(o.dispatch({type:"".concat(a,"/@@CANCEL_EFFECTS")}),delete o.asyncReducers[a],delete t[a],te(n,a),u._models.splice(s,1)),u.model(i),o.dispatch({type:"@@dva/UPDATE"})}function m(){var a=function(e,t){e&&("string"===typeof e&&(e=new Error(e)),e.preventDefault=function(){e._dontReject=!0},c.apply("onError",function(e){throw new Error(e.stack||e)})(e,u._store.dispatch,t))},h=Object(o["a"])(),m=Z(u);u._getSaga=H.bind(null);var g=[],v=Object(r["a"])({},n),y=!0,b=!1,w=void 0;try{for(var x,_=u._models[Symbol.iterator]();!(y=(x=_.next()).done);y=!0){var S=x.value;v[S.namespace]=Q(S.reducers,S.state,c._handleActions),S.effects&&g.push(u._getSaga(S.effects,S,a,c.get("onEffect"),e))}}catch(e){b=!0,w=e}finally{try{y||null==_.return||_.return()}finally{if(b)throw w}}var C=c.get("onReducer"),E=c.get("extraReducers");s()(Object.keys(E).every(function(e){return!(e in v)}),"[app.start] extraReducers is conflict with other reducers, reducers list: ".concat(Object.keys(v).join(", "))),u._store=B({reducers:W(),initialState:e.initialState||{},plugin:c,createOpts:t,sagaMiddleware:h,promiseMiddleware:m});var k=u._store;k.runSaga=h.run,k.asyncReducers={};var O=c.get("onStateChange"),T=!0,A=!1,M=void 0;try{for(var P,R=function(){var e=P.value;k.subscribe(function(){e(k.getState())})},L=O[Symbol.iterator]();!(T=(P=L.next()).done);T=!0)R()}catch(e){A=!0,M=e}finally{try{T||null==L.return||L.return()}finally{if(A)throw M}}g.forEach(h.run),l(u);var D={},j=!0,N=!1,I=void 0;try{for(var $,F=this._models[Symbol.iterator]();!(j=($=F.next()).done);j=!0){var V=$.value;V.subscriptions&&(D[V.namespace]=ee(V.subscriptions,V,u,a))}}catch(e){N=!0,I=e}finally{try{j||null==F.return||F.return()}finally{if(N)throw I}}function W(){return C(Object(i["b"])(Object(r["a"])({},v,E,u._store?u._store.asyncReducers:{})))}u.model=d.bind(u,W,a,D),u.unmodel=f.bind(u,W,v,D),u.replaceModel=p.bind(u,W,v,D,a)}}},"4o36":function(e,t,n){var r=n("wHrr"),i=n("69SZ"),o=n("ULMT"),a=n("7vYJ"),s=n("OsVd"),l=n("BnQZ"),c={},u={};t=e.exports=function(e,t,n,h,d){var f,p,m,g,v=d?function(){return e}:l(e),y=r(n,h,t?2:1),b=0;if("function"!=typeof v)throw TypeError(e+" is not iterable!");if(o(v)){for(f=s(e.length);f>b;b++)if(g=t?y(a(p=e[b])[0],p[1]):y(e[b]),g===c||g===u)return g}else for(m=v.call(e);!(p=m.next()).done;)if(g=i(m,y,p.value,t),g===c||g===u)return g};t.BREAK=c,t.RETURN=u},"5K7Z":function(e,t,n){var r=n("93I4");e.exports=function(e){if(!r(e))throw TypeError(e+" is not an object!");return e}},"5T2Y":function(e,t){var n=e.exports="undefined"!=typeof window&&window.Math==Math?window:"undefined"!=typeof self&&self.Math==Math?self:Function("return this")();"number"==typeof __g&&(__g=n)},"5lmr":function(e,t,n){"use strict";var r=n("q1tI"),i=n.n(r),o=n("17x9"),a=n.n(o),s=n("uciX"),l=n("wd/R"),c=n.n(l),u=n("VCL8"),h=n("TSYQ"),d=n.n(h),f=n("wgp+"),p={adjustX:1,adjustY:1},m=[0,0],g={bottomLeft:{points:["tl","tl"],overflow:p,offset:[0,-3],targetOffset:m},bottomRight:{points:["tr","tr"],overflow:p,offset:[0,-3],targetOffset:m},topRight:{points:["br","br"],overflow:p,offset:[0,3],targetOffset:m},topLeft:{points:["bl","bl"],overflow:p,offset:[0,3],targetOffset:m}},v=g;function y(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function b(e){for(var t=1;t0?b({},t,{},n):null}}]),t}(r["Component"]);T(P,"propTypes",{prefixCls:a.a.string,clearText:a.a.string,value:a.a.object,defaultOpenValue:a.a.object,inputReadOnly:a.a.bool,disabled:a.a.bool,allowEmpty:a.a.bool,defaultValue:a.a.object,open:a.a.bool,defaultOpen:a.a.bool,align:a.a.object,placement:a.a.any,transitionName:a.a.string,getPopupContainer:a.a.func,placeholder:a.a.string,format:a.a.string,showHour:a.a.bool,showMinute:a.a.bool,showSecond:a.a.bool,style:a.a.object,className:a.a.string,popupClassName:a.a.string,popupStyle:a.a.object,disabledHours:a.a.func,disabledMinutes:a.a.func,disabledSeconds:a.a.func,hideDisabledOptions:a.a.bool,onChange:a.a.func,onAmPmChange:a.a.func,onOpen:a.a.func,onClose:a.a.func,onFocus:a.a.func,onBlur:a.a.func,addon:a.a.func,name:a.a.string,autoComplete:a.a.string,use12Hours:a.a.bool,hourStep:a.a.number,minuteStep:a.a.number,secondStep:a.a.number,focusOnOpen:a.a.bool,onKeyDown:a.a.func,autoFocus:a.a.bool,id:a.a.string,inputIcon:a.a.node,clearIcon:a.a.node}),T(P,"defaultProps",{clearText:"clear",prefixCls:"rc-time-picker",defaultOpen:!1,inputReadOnly:!1,style:{},className:"",popupClassName:"",popupStyle:{},align:{},defaultOpenValue:c()(),allowEmpty:!0,showHour:!0,showMinute:!0,showSecond:!0,disabledHours:A,disabledMinutes:A,disabledSeconds:A,hideDisabledOptions:!1,placement:"bottomLeft",onChange:A,onAmPmChange:A,onOpen:A,onClose:A,onFocus:A,onBlur:A,addon:A,use12Hours:!1,focusOnOpen:!1,onKeyDown:A}),Object(u["polyfill"])(P);t["a"]=P},"5vMV":function(e,t,n){var r=n("B+OT"),i=n("NsO/"),o=n("W070")(!1),a=n("VVlx")("IE_PROTO");e.exports=function(e,t){var n,s=i(e),l=0,c=[];for(n in s)n!=a&&r(s,n)&&c.push(n);while(t.length>l)r(s,n=t[l++])&&(~o(c,n)||c.push(n));return c}},"6+eU":function(e,t,n){"use strict";var r=n("YEIV"),i=n.n(r),o=n("QbLZ"),a=n.n(o),s=n("iCc5"),l=n.n(s),c=n("V7oC"),u=n.n(c),h=n("FYw3"),d=n.n(h),f=n("mRg0"),p=n.n(f),m=n("q1tI"),g=n.n(m),v=n("TSYQ"),y=n.n(v),b=n("17x9"),w=n.n(b),x=function(e){var t,n=e.rootPrefixCls+"-item",r=y()(n,n+"-"+e.page,(t={},i()(t,n+"-active",e.active),i()(t,e.className,!!e.className),i()(t,n+"-disabled",!e.page),t)),o=function(){e.onClick(e.page)},a=function(t){e.onKeyPress(t,e.onClick,e.page)};return g.a.createElement("li",{title:e.showTitle?e.page:null,className:r,onClick:o,onKeyPress:a,tabIndex:"0"},e.itemRender(e.page,"page",g.a.createElement("a",null,e.page)))};x.propTypes={page:w.a.number,active:w.a.bool,last:w.a.bool,locale:w.a.object,className:w.a.string,showTitle:w.a.bool,rootPrefixCls:w.a.string,onClick:w.a.func,onKeyPress:w.a.func,itemRender:w.a.func};var _=x,S={ZERO:48,NINE:57,NUMPAD_ZERO:96,NUMPAD_NINE:105,BACKSPACE:8,DELETE:46,ENTER:13,ARROW_UP:38,ARROW_DOWN:40},C=function(e){function t(){var e,n,r,i;l()(this,t);for(var o=arguments.length,a=Array(o),s=0;s=0||e.relatedTarget.className.indexOf(o+"-next")>=0)||i(r.getValidValue())},r.go=function(e){var t=r.state.goInputText;""!==t&&(e.keyCode!==S.ENTER&&"click"!==e.type||(r.setState({goInputText:""}),r.props.quickGo(r.getValidValue())))},i=n,d()(r,i)}return p()(t,e),u()(t,[{key:"getValidValue",value:function(){var e=this.state,t=e.goInputText,n=e.current;return!t||isNaN(t)?n:Number(t)}},{key:"render",value:function(){var e=this,t=this.props,n=t.pageSize,r=t.pageSizeOptions,i=t.locale,o=t.rootPrefixCls,a=t.changeSize,s=t.quickGo,l=t.goButton,c=t.selectComponentClass,u=t.buildOptionText,h=t.selectPrefixCls,d=t.disabled,f=this.state.goInputText,p=o+"-options",m=c,v=null,y=null,b=null;if(!a&&!s)return null;if(a&&m){var w=r.map(function(t,n){return g.a.createElement(m.Option,{key:n,value:t},(u||e.buildOptionText)(t))});v=g.a.createElement(m,{disabled:d,prefixCls:h,showSearch:!1,className:p+"-size-changer",optionLabelProp:"children",dropdownMatchSelectWidth:!1,value:(n||r[0]).toString(),onChange:this.changeSize,getPopupContainer:function(e){return e.parentNode}},w)}return s&&(l&&(b="boolean"===typeof l?g.a.createElement("button",{type:"button",onClick:this.go,onKeyUp:this.go,disabled:d},i.jump_to_confirm):g.a.createElement("span",{onClick:this.go,onKeyUp:this.go},l)),y=g.a.createElement("div",{className:p+"-quick-jumper"},i.jump_to,g.a.createElement("input",{disabled:d,type:"text",value:f,onChange:this.handleChange,onKeyUp:this.go,onBlur:this.handleBlur}),i.page,b)),g.a.createElement("li",{className:""+p},v,y)}}]),t}(g.a.Component);C.propTypes={disabled:w.a.bool,changeSize:w.a.func,quickGo:w.a.func,selectComponentClass:w.a.func,current:w.a.number,pageSizeOptions:w.a.arrayOf(w.a.string),pageSize:w.a.number,buildOptionText:w.a.func,locale:w.a.object,rootPrefixCls:w.a.string,selectPrefixCls:w.a.string,goButton:w.a.oneOfType([w.a.bool,w.a.node])},C.defaultProps={pageSizeOptions:["10","20","30","40"]};var E=C,k=n("N2Kk"),O=n("VCL8");function T(){}function A(e){return"number"===typeof e&&isFinite(e)&&Math.floor(e)===e}function M(e,t,n){return n}function P(e,t,n){var r=e;return"undefined"===typeof r&&(r=t.pageSize),Math.floor((n.total-1)/r)+1}var R=function(e){function t(e){l()(this,t);var n=d()(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));L.call(n);var r=e.onChange!==T,i="current"in e;i&&!r&&console.warn("Warning: You provided a `current` prop to a Pagination component without an `onChange` handler. This will render a read-only component.");var o=e.defaultCurrent;"current"in e&&(o=e.current);var a=e.defaultPageSize;return"pageSize"in e&&(a=e.pageSize),o=Math.min(o,P(a,void 0,e)),n.state={current:o,currentInputValue:o,pageSize:a},n}return p()(t,e),u()(t,[{key:"componentDidUpdate",value:function(e,t){var n=this.props.prefixCls;if(t.current!==this.state.current&&this.paginationNode){var r=this.paginationNode.querySelector("."+n+"-item-"+t.current);r&&document.activeElement===r&&r.blur()}}},{key:"getValidValue",value:function(e){var t=e.target.value,n=P(void 0,this.state,this.props),r=this.state.currentInputValue,i=void 0;return i=""===t?t:isNaN(Number(t))?r:t>=n?n:Number(t),i}},{key:"render",value:function(){var e=this.props,t=e.prefixCls,n=e.className,r=e.disabled;if(!0===this.props.hideOnSinglePage&&this.props.total<=this.state.pageSize)return null;var o=this.props,s=o.locale,l=P(void 0,this.state,this.props),c=[],u=null,h=null,d=null,f=null,p=null,m=o.showQuickJumper&&o.showQuickJumper.goButton,v=o.showLessItems?1:2,b=this.state,w=b.current,x=b.pageSize,S=w-1>0?w-1:0,C=w+1=2*v&&3!==w&&(c[0]=g.a.cloneElement(c[0],{className:t+"-item-after-jump-prev"}),c.unshift(u)),l-w>=2*v&&w!==l-2&&(c[c.length-1]=g.a.cloneElement(c[c.length-1],{className:t+"-item-before-jump-next"}),c.push(h)),1!==j&&c.unshift(d),N!==l&&c.push(f)}var F=null;o.showTotal&&(F=g.a.createElement("li",{className:t+"-total-text"},o.showTotal(o.total,[0===o.total?0:(w-1)*x+1,w*x>o.total?o.total:w*x])));var V=!this.hasPrev()||!l,B=!this.hasNext()||!l;return g.a.createElement("ul",a()({className:y()(t,n,i()({},t+"-disabled",r)),style:o.style,unselectable:"unselectable",ref:this.savePaginationNode},k),F,g.a.createElement("li",{title:o.showTitle?s.prev_page:null,onClick:this.prev,tabIndex:V?null:0,onKeyPress:this.runIfEnterPrev,className:(V?t+"-disabled":"")+" "+t+"-prev","aria-disabled":V},o.itemRender(S,"prev",this.getItemIcon(o.prevIcon))),c,g.a.createElement("li",{title:o.showTitle?s.next_page:null,onClick:this.next,tabIndex:B?null:0,onKeyPress:this.runIfEnterNext,className:(B?t+"-disabled":"")+" "+t+"-next","aria-disabled":B},o.itemRender(C,"next",this.getItemIcon(o.nextIcon))),g.a.createElement(E,{disabled:r,locale:o.locale,rootPrefixCls:t,selectComponentClass:o.selectComponentClass,selectPrefixCls:o.selectPrefixCls,changeSize:this.props.showSizeChanger?this.changePageSize:null,current:this.state.current,pageSize:this.state.pageSize,pageSizeOptions:this.props.pageSizeOptions,quickGo:this.shouldDisplayQuickJumper()?this.handleChange:null,goButton:m}))}}],[{key:"getDerivedStateFromProps",value:function(e,t){var n={};if("current"in e&&(n.current=e.current,e.current!==t.current&&(n.currentInputValue=n.current)),"pageSize"in e&&e.pageSize!==t.pageSize){var r=t.current,i=P(e.pageSize,t,e);r=r>i?i:r,"current"in e||(n.current=r,n.currentInputValue=r),n.pageSize=e.pageSize}return n}}]),t}(g.a.Component);R.propTypes={disabled:w.a.bool,prefixCls:w.a.string,className:w.a.string,current:w.a.number,defaultCurrent:w.a.number,total:w.a.number,pageSize:w.a.number,defaultPageSize:w.a.number,onChange:w.a.func,hideOnSinglePage:w.a.bool,showSizeChanger:w.a.bool,showLessItems:w.a.bool,onShowSizeChange:w.a.func,selectComponentClass:w.a.func,showPrevNextJumpers:w.a.bool,showQuickJumper:w.a.oneOfType([w.a.bool,w.a.object]),showTitle:w.a.bool,pageSizeOptions:w.a.arrayOf(w.a.string),showTotal:w.a.func,locale:w.a.object,style:w.a.object,itemRender:w.a.func,prevIcon:w.a.oneOfType([w.a.func,w.a.node]),nextIcon:w.a.oneOfType([w.a.func,w.a.node]),jumpPrevIcon:w.a.oneOfType([w.a.func,w.a.node]),jumpNextIcon:w.a.oneOfType([w.a.func,w.a.node])},R.defaultProps={defaultCurrent:1,total:0,defaultPageSize:10,onChange:T,className:"",selectPrefixCls:"rc-select",prefixCls:"rc-pagination",selectComponentClass:null,hideOnSinglePage:!1,showPrevNextJumpers:!0,showQuickJumper:!1,showSizeChanger:!1,showLessItems:!1,showTitle:!0,onShowSizeChange:T,locale:k["a"],style:{},itemRender:M};var L=function(){var e=this;this.getJumpPrevPage=function(){return Math.max(1,e.state.current-(e.props.showLessItems?3:5))},this.getJumpNextPage=function(){return Math.min(P(void 0,e.state,e.props),e.state.current+(e.props.showLessItems?3:5))},this.getItemIcon=function(t){var n=e.props.prefixCls,r=t||g.a.createElement("a",{className:n+"-item-link"});return"function"===typeof t&&(r=g.a.createElement(t,a()({},e.props))),r},this.savePaginationNode=function(t){e.paginationNode=t},this.isValid=function(t){return A(t)&&t!==e.state.current},this.shouldDisplayQuickJumper=function(){var t=e.props,n=t.showQuickJumper,r=t.pageSize,i=t.total;return!(i<=r)&&n},this.handleKeyDown=function(e){e.keyCode!==S.ARROW_UP&&e.keyCode!==S.ARROW_DOWN||e.preventDefault()},this.handleKeyUp=function(t){var n=e.getValidValue(t),r=e.state.currentInputValue;n!==r&&e.setState({currentInputValue:n}),t.keyCode===S.ENTER?e.handleChange(n):t.keyCode===S.ARROW_UP?e.handleChange(n-1):t.keyCode===S.ARROW_DOWN&&e.handleChange(n+1)},this.changePageSize=function(t){var n=e.state.current,r=P(t,e.state,e.props);n=n>r?r:n,0===r&&(n=e.state.current),"number"===typeof t&&("pageSize"in e.props||e.setState({pageSize:t}),"current"in e.props||e.setState({current:n,currentInputValue:n})),e.props.onShowSizeChange(n,t)},this.handleChange=function(t){var n=e.props.disabled,r=t;if(e.isValid(r)&&!n){var i=P(void 0,e.state,e.props);r>i?r=i:r<1&&(r=1),"current"in e.props||e.setState({current:r,currentInputValue:r});var o=e.state.pageSize;return e.props.onChange(r,o),r}return e.state.current},this.prev=function(){e.hasPrev()&&e.handleChange(e.state.current-1)},this.next=function(){e.hasNext()&&e.handleChange(e.state.current+1)},this.jumpPrev=function(){e.handleChange(e.getJumpPrevPage())},this.jumpNext=function(){e.handleChange(e.getJumpNextPage())},this.hasPrev=function(){return e.state.current>1},this.hasNext=function(){return e.state.current2?n-2:0),i=2;i=0?parseFloat(e)/100*t:parseFloat(e):e}function b(e,t,n){var r=t.position||"inside",i=null!=t.distance?t.distance:5,o=n.height,a=n.width,s=o/2,l=n.x,c=n.y,u="left",h="top";if(r instanceof Array)l+=y(r[0],n.width),c+=y(r[1],n.height),u=null,h=null;else switch(r){case"left":l-=i,c+=s,u="right",h="middle";break;case"right":l+=i+a,c+=s,h="middle";break;case"top":l+=a/2,c-=i,u="center",h="bottom";break;case"bottom":l+=a/2,c+=o+i,u="center";break;case"inside":l+=a/2,c+=s,u="center",h="middle";break;case"insideLeft":l+=i,c+=s,h="middle";break;case"insideRight":l+=a-i,c+=s,u="right",h="middle";break;case"insideTop":l+=a/2,c+=i,u="center";break;case"insideBottom":l+=a/2,c+=o-i,u="center",h="bottom";break;case"insideTopLeft":l+=i,c+=i;break;case"insideTopRight":l+=a-i,c+=i,u="right";break;case"insideBottomLeft":l+=i,c+=o-i,h="bottom";break;case"insideBottomRight":l+=a-i,c+=o-i,u="right",h="bottom";break}return e=e||{},e.x=l,e.y=c,e.align=u,e.verticalAlign=h,e}},"6Ogq":function(e,t,n){"use strict";var r,i;Object.defineProperty(t,"__esModule",{value:!0});var o={position:"absolute",top:"-9999px",width:"50px",height:"50px"};function a(e){var t=e.direction,n=void 0===t?"vertical":t,a=e.prefixCls;if("undefined"===typeof document||"undefined"===typeof window)return 0;var s="vertical"===n;if(s&&r)return r;if(!s&&i)return i;var l=document.createElement("div");Object.keys(o).forEach(function(e){l.style[e]=o[e]}),l.className="".concat(a,"-hide-scrollbar scroll-div-append-to-body"),s?l.style.overflowY="scroll":l.style.overflowX="scroll",document.body.appendChild(l);var c=0;return s?(c=l.offsetWidth-l.clientWidth,r=c):(c=l.offsetHeight-l.clientHeight,i=c),document.body.removeChild(l),c}function s(e,t,n){var r;function i(){for(var i=arguments.length,o=new Array(i),a=0;a=c?e?"":void 0:(o=s.charCodeAt(l),o<55296||o>56319||l+1===c||(a=s.charCodeAt(l+1))<56320||a>57343?e?s.charAt(l):o:e?s.slice(l,l+2):a-56320+(o-55296<<10)+65536)}}},"6lKK":function(e,t,n){"use strict";n.r(t);n("2qtc");var r=n("kLXV"),i=(n("miYZ"),n("tsqr")),o=n("d6i3"),a=n.n(o),s=n("p0pE"),l=n.n(s),c=n("q1tI"),u=n.n(c),h=n("t3Un"),d={invite:{},site:{},subscribe:{},frontend:{},server:{},pay:{},email:{},telegram:{},app:{},tabs:"site",fetchLoading:!1,emailTemplate:[],themeTemplate:[],setTelegramWebhookLoading:!1};t["default"]={name:"config",state:l()({},d),reducers:{setState(e,t){var n=t.payload;return l()({},e,n)}},effects:{fetch(e,t){return a.a.mark(function e(){var n,r;return a.a.wrap(function(e){while(1)switch(e.prev=e.next){case 0:return n=t.put,e.next=3,n({type:"setState",payload:{fetchLoading:!0}});case 3:return e.next=5,Object(h["a"])("/admin/config/fetch");case 5:return r=e.sent,e.next=8,n({type:"setState",payload:{fetchLoading:!1}});case 8:if(200===r.code){e.next=10;break}return e.abrupt("return");case 10:return"string"===typeof r.data.invite.commission_withdraw_method&&(r.data.invite.commission_withdraw_method=r.data.invite.commission_withdraw_method.split(",")),"string"===typeof r.data.site.email_whitelist_suffix&&(r.data.site.email_whitelist_suffix=r.data.site.email_whitelist_suffix.split(",")),e.next=14,n({type:"setState",payload:l()({},r.data)});case 14:case"end":return e.stop()}},e)})()},save(e,t){return a.a.mark(function n(){var r,o,s,c,u;return a.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.parentKey,o=t.put,s=t.select,n.next=4,s(e=>e.config);case 4:return c=n.sent,n.next=7,Object(h["b"])("/admin/config/save",l()({},c[r]));case 7:if(u=n.sent,200===u.code){n.next=10;break}return n.abrupt("return");case 10:return i["a"].success("\u4fdd\u5b58\u6210\u529f"),n.next=13,o({type:"fetch"});case 13:case"end":return n.stop()}},n)})()},getEmailTemplate(e,t){return a.a.mark(function e(){var n,r;return a.a.wrap(function(e){while(1)switch(e.prev=e.next){case 0:return n=t.put,e.next=3,Object(h["a"])("/admin/config/getEmailTemplate");case 3:if(r=e.sent,200===r.code){e.next=6;break}return e.abrupt("return");case 6:return e.next=8,n({type:"setState",payload:{emailTemplate:r.data}});case 8:case"end":return e.stop()}},e)})()},getThemeTemplate(e,t){return a.a.mark(function e(){var n,r;return a.a.wrap(function(e){while(1)switch(e.prev=e.next){case 0:return n=t.put,e.next=3,Object(h["a"])("/admin/config/getThemeTemplate");case 3:if(r=e.sent,200===r.code){e.next=6;break}return e.abrupt("return");case 6:return e.next=8,n({type:"setState",payload:{themeTemplate:r.data}});case 8:case"end":return e.stop()}},e)})()},setTelegramWebhook(e,t){return a.a.mark(function n(){var r,o,s;return a.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.token,o=t.put,t.select,n.next=4,o({type:"setState",payload:{setTelegramWebhookLoading:!0}});case 4:return n.next=6,Object(h["b"])("/admin/config/setTelegramWebhook",{telegram_bot_token:r});case 6:return s=n.sent,n.next=9,o({type:"setState",payload:{setTelegramWebhookLoading:!1}});case 9:if(200===s.code){n.next=11;break}return n.abrupt("return");case 11:i["a"].success("webhook \u8bbe\u7f6e\u6210\u529f");case 12:case"end":return n.stop()}},n)})()},testSendMail(e,t){return a.a.mark(function e(){var n,i,o,s,l,c,d,f,p,m,g;return a.a.wrap(function(e){while(1)switch(e.prev=e.next){case 0:return m=t.put,e.next=3,m({type:"setState",payload:{testSendMailLoading:!0}});case 3:return e.next=5,Object(h["b"])("/admin/config/testSendMail");case 5:return g=e.sent,e.next=8,m({type:"setState",payload:{testSendMailLoading:!1}});case 8:if(200===g.code){e.next=10;break}return e.abrupt("return");case 10:r["a"][(null===g||void 0===g?void 0:null===(n=g.log)||void 0===n?void 0:n.error)?"error":"success"]({title:(null===g||void 0===g?void 0:null===(i=g.log)||void 0===i?void 0:i.error)?"\u53d1\u9001\u5931\u8d25":"\u53d1\u9001\u6210\u529f",content:u.a.createElement("div",null,(null===g||void 0===g?void 0:null===(o=g.log)||void 0===o?void 0:o.error)&&u.a.createElement("div",null,u.a.createElement("span",null,"\u5931\u8d25\u539f\u56e0:"),u.a.createElement("span",null,null===g||void 0===g?void 0:null===(s=g.log)||void 0===s?void 0:s.error)),u.a.createElement("div",null,u.a.createElement("span",null,"\u6536\u4fe1\u5730\u5740:"),u.a.createElement("span",null,null===g||void 0===g?void 0:null===(l=g.log)||void 0===l?void 0:l.email)),u.a.createElement("div",null,u.a.createElement("span",null,"\u53d1\u4fe1\u670d\u52a1\u5668:"),u.a.createElement("span",null,null===g||void 0===g?void 0:null===(c=g.log)||void 0===c?void 0:c.config.host)),u.a.createElement("div",null,u.a.createElement("span",null,"\u53d1\u4fe1\u7aef\u53e3:"),u.a.createElement("span",null,null===g||void 0===g?void 0:null===(d=g.log)||void 0===d?void 0:d.config.port)),u.a.createElement("div",null,u.a.createElement("span",null,"\u53d1\u4fe1\u52a0\u5bc6\u65b9\u5f0f:"),u.a.createElement("span",null,null===g||void 0===g?void 0:null===(f=g.log)||void 0===f?void 0:f.config.encryption)),u.a.createElement("div",null,u.a.createElement("span",null,"\u53d1\u4fe1\u7528\u6237\u540d:"),u.a.createElement("span",null,null===g||void 0===g?void 0:null===(p=g.log)||void 0===p?void 0:p.config.username)))}),console.log(g);case 12:case"end":return e.stop()}},e)})()}}}},"6tYh":function(e,t,n){var r=n("93I4"),i=n("5K7Z"),o=function(e,t){if(i(e),!r(t)&&null!==t)throw TypeError(t+": can't set as prototype!")};e.exports={set:Object.setPrototypeOf||("__proto__"in{}?function(e,t,r){try{r=n("2GTP")(Function.call,n("vwuL").f(Object.prototype,"__proto__").set,2),r(e,[]),t=!(e instanceof Array)}catch(e){t=!0}return function(e,n){return o(e,n),t?e.__proto__=n:r(e,n),e}}({},!1):void 0),check:o}},"7Cbv":function(e,t,n){"use strict";var r,i=new Uint8Array(16);function o(){if(!r&&(r="undefined"!==typeof crypto&&crypto.getRandomValues&&crypto.getRandomValues.bind(crypto)||"undefined"!==typeof msCrypto&&"function"===typeof msCrypto.getRandomValues&&msCrypto.getRandomValues.bind(msCrypto),!r))throw new Error("crypto.getRandomValues() not supported. See https://github.com/uuidjs/uuid#getrandomvalues-not-supported");return r(i)}var a=/^(?:[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}|00000000-0000-0000-0000-000000000000)$/i;function s(e){return"string"===typeof e&&a.test(e)}for(var l=s,c=[],u=0;u<256;++u)c.push((u+256).toString(16).substr(1));function h(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,n=(c[e[t+0]]+c[e[t+1]]+c[e[t+2]]+c[e[t+3]]+"-"+c[e[t+4]]+c[e[t+5]]+"-"+c[e[t+6]]+c[e[t+7]]+"-"+c[e[t+8]]+c[e[t+9]]+"-"+c[e[t+10]]+c[e[t+11]]+c[e[t+12]]+c[e[t+13]]+c[e[t+14]]+c[e[t+15]]).toLowerCase();if(!l(n))throw TypeError("Stringified UUID is invalid");return n}var d=h;function f(e,t,n){e=e||{};var r=e.random||(e.rng||o)();if(r[6]=15&r[6]|64,r[8]=63&r[8]|128,t){n=n||0;for(var i=0;i<16;++i)t[n+i]=r[i];return t}return d(r)}t["a"]=f},"7ICb":function(e,t,n){"use strict";function r(e){return e.clone().startOf("month")}function i(e){return e.clone().endOf("month")}function o(e,t,n){return e.clone().add(t,n)}function a(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],t=arguments[1],n=arguments[2];return e.some(function(e){return e.isSame(t,n)})}n.d(t,"b",function(){return r}),n.d(t,"a",function(){return i}),n.d(t,"c",function(){return o}),n.d(t,"d",function(){return a})},"7RDE":function(e,t,n){"use strict";var r,i=n("c0Oy"),o=n("+o5p")(0),a=n("rKIl"),s=n("+y51"),l=n("lFUy"),c=n("2Os2"),u=n("u8+u"),h=n("Jc7p"),d=n("Jc7p"),f=!i.ActiveXObject&&"ActiveXObject"in i,p="WeakMap",m=s.getWeak,g=Object.isExtensible,v=c.ufstore,y=function(e){return function(){return e(this,arguments.length>0?arguments[0]:void 0)}},b={get:function(e){if(u(e)){var t=m(e);return!0===t?v(h(this,p)).get(e):t?t[this._i]:void 0}},set:function(e,t){return c.def(h(this,p),e,t)}},w=e.exports=n("nWMQ")(p,y,b,c,!0,!0);d&&f&&(r=c.getConstructor(y,p),l(r.prototype,b),s.NEED=!0,o(["delete","has","get","set"],function(e){var t=w.prototype,n=t[e];a(t,e,function(t,i){if(u(t)&&!g(t)){this._f||(this._f=new r);var o=this._f[e](t,i);return"set"==e?this:o}return n.call(this,t,i)})}))},"7Uk0":function(e,t,n){"use strict";var r=n("il4q"),i=n("Spc3"),o=n("OsVd");e.exports=function(e){var t=r(this),n=o(t.length),a=arguments.length,s=i(a>1?arguments[1]:void 0,n),l=a>2?arguments[2]:void 0,c=void 0===l?n:i(l,n);while(c>s)t[s++]=e;return t}},"7ixt":function(e,t,n){"use strict";n.d(t,"a",function(){return o});var r={adjustX:1,adjustY:1},i=[0,0],o={left:{points:["cr","cl"],overflow:r,offset:[-4,0],targetOffset:i},right:{points:["cl","cr"],overflow:r,offset:[4,0],targetOffset:i},top:{points:["bc","tc"],overflow:r,offset:[0,-4],targetOffset:i},bottom:{points:["tc","bc"],overflow:r,offset:[0,4],targetOffset:i},topLeft:{points:["bl","tl"],overflow:r,offset:[0,-4],targetOffset:i},leftTop:{points:["tr","tl"],overflow:r,offset:[-4,0],targetOffset:i},topRight:{points:["br","tr"],overflow:r,offset:[0,-4],targetOffset:i},rightTop:{points:["tl","tr"],overflow:r,offset:[4,0],targetOffset:i},bottomRight:{points:["tr","br"],overflow:r,offset:[0,4],targetOffset:i},rightBottom:{points:["bl","br"],overflow:r,offset:[4,0],targetOffset:i},bottomLeft:{points:["tl","bl"],overflow:r,offset:[0,4],targetOffset:i},leftBottom:{points:["br","bl"],overflow:r,offset:[-4,0],targetOffset:i}}},"7tDr":function(e,t,n){"use strict";n.r(t);var r=n("d6i3"),i=n.n(r),o=n("p0pE"),a=n.n(o);t["default"]={name:"layout",state:{showNav:!1},reducers:{save(e,t){return a()({},e,t.payload)}},effects:{showNav(e,t){return i.a.mark(function n(){var r,o,s,l;return i.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.show,o=t.put,s=t.select,n.next=4,s(e=>e.layout);case 4:return l=n.sent,n.next=7,o({type:"save",payload:a()({},l,{showNav:"undefined"!==typeof r?r:!l.showNav})});case 7:case"end":return n.stop()}},n)})()}}}},"7tNx":function(e,t,n){"use strict";var r=n("7vYJ");e.exports=function(){var e=r(this),t="";return e.global&&(t+="g"),e.ignoreCase&&(t+="i"),e.multiline&&(t+="m"),e.unicode&&(t+="u"),e.sticky&&(t+="y"),t}},"7tlc":function(e,t,n){(function(e){var r=Object.getOwnPropertyDescriptors||function(e){for(var t=Object.keys(e),n={},r=0;r=o)return e;switch(e){case"%s":return String(r[n++]);case"%d":return Number(r[n++]);case"%j":try{return JSON.stringify(r[n++])}catch(e){return"[Circular]"}default:return e}}),l=r[n];n=3&&(r.depth=arguments[2]),arguments.length>=4&&(r.colors=arguments[3]),y(n)?r.showHidden=n:n&&t._extend(r,n),C(r.showHidden)&&(r.showHidden=!1),C(r.depth)&&(r.depth=2),C(r.colors)&&(r.colors=!1),C(r.customInspect)&&(r.customInspect=!0),r.colors&&(r.stylize=l),h(r,e,r.depth)}function l(e,t){var n=s.styles[t];return n?"\x1b["+s.colors[n][0]+"m"+e+"\x1b["+s.colors[n][1]+"m":e}function c(e,t){return e}function u(e){var t={};return e.forEach(function(e,n){t[e]=!0}),t}function h(e,n,r){if(e.customInspect&&n&&A(n.inspect)&&n.inspect!==t.inspect&&(!n.constructor||n.constructor.prototype!==n)){var i=n.inspect(r,e);return _(i)||(i=h(e,i,r)),i}var o=d(e,n);if(o)return o;var a=Object.keys(n),s=u(a);if(e.showHidden&&(a=Object.getOwnPropertyNames(n)),T(n)&&(a.indexOf("message")>=0||a.indexOf("description")>=0))return f(n);if(0===a.length){if(A(n)){var l=n.name?": "+n.name:"";return e.stylize("[Function"+l+"]","special")}if(E(n))return e.stylize(RegExp.prototype.toString.call(n),"regexp");if(O(n))return e.stylize(Date.prototype.toString.call(n),"date");if(T(n))return f(n)}var c,y="",b=!1,w=["{","}"];if(v(n)&&(b=!0,w=["[","]"]),A(n)){var x=n.name?": "+n.name:"";y=" [Function"+x+"]"}return E(n)&&(y=" "+RegExp.prototype.toString.call(n)),O(n)&&(y=" "+Date.prototype.toUTCString.call(n)),T(n)&&(y=" "+f(n)),0!==a.length||b&&0!=n.length?r<0?E(n)?e.stylize(RegExp.prototype.toString.call(n),"regexp"):e.stylize("[Object]","special"):(e.seen.push(n),c=b?p(e,n,r,s,a):a.map(function(t){return m(e,n,r,s,t,b)}),e.seen.pop(),g(c,y,w)):w[0]+y+w[1]}function d(e,t){if(C(t))return e.stylize("undefined","undefined");if(_(t)){var n="'"+JSON.stringify(t).replace(/^"|"$/g,"").replace(/'/g,"\\'").replace(/\\"/g,'"')+"'";return e.stylize(n,"string")}return x(t)?e.stylize(""+t,"number"):y(t)?e.stylize(""+t,"boolean"):b(t)?e.stylize("null","null"):void 0}function f(e){return"["+Error.prototype.toString.call(e)+"]"}function p(e,t,n,r,i){for(var o=[],a=0,s=t.length;a-1&&(s=o?s.split("\n").map(function(e){return" "+e}).join("\n").substr(2):"\n"+s.split("\n").map(function(e){return" "+e}).join("\n"))):s=e.stylize("[Circular]","special")),C(a)){if(o&&i.match(/^\d+$/))return s;a=JSON.stringify(""+i),a.match(/^"([a-zA-Z_][a-zA-Z_0-9]*)"$/)?(a=a.substr(1,a.length-2),a=e.stylize(a,"name")):(a=a.replace(/'/g,"\\'").replace(/\\"/g,'"').replace(/(^"|"$)/g,"'"),a=e.stylize(a,"string"))}return a+": "+s}function g(e,t,n){var r=e.reduce(function(e,t){return 0,t.indexOf("\n")>=0&&0,e+t.replace(/\u001b\[\d\d?m/g,"").length+1},0);return r>60?n[0]+(""===t?"":t+"\n ")+" "+e.join(",\n ")+" "+n[1]:n[0]+t+" "+e.join(", ")+" "+n[1]}function v(e){return Array.isArray(e)}function y(e){return"boolean"===typeof e}function b(e){return null===e}function w(e){return null==e}function x(e){return"number"===typeof e}function _(e){return"string"===typeof e}function S(e){return"symbol"===typeof e}function C(e){return void 0===e}function E(e){return k(e)&&"[object RegExp]"===P(e)}function k(e){return"object"===typeof e&&null!==e}function O(e){return k(e)&&"[object Date]"===P(e)}function T(e){return k(e)&&("[object Error]"===P(e)||e instanceof Error)}function A(e){return"function"===typeof e}function M(e){return null===e||"boolean"===typeof e||"number"===typeof e||"string"===typeof e||"symbol"===typeof e||"undefined"===typeof e}function P(e){return Object.prototype.toString.call(e)}function R(e){return e<10?"0"+e.toString(10):e.toString(10)}t.debuglog=function(n){if(C(o)&&(o=Object({NODE_ENV:"production"}).NODE_DEBUG||""),n=n.toUpperCase(),!a[n])if(new RegExp("\\b"+n+"\\b","i").test(o)){var r=e.pid;a[n]=function(){var e=t.format.apply(t,arguments);console.error("%s %d: %s",n,r,e)}}else a[n]=function(){};return a[n]},t.inspect=s,s.colors={bold:[1,22],italic:[3,23],underline:[4,24],inverse:[7,27],white:[37,39],grey:[90,39],black:[30,39],blue:[34,39],cyan:[36,39],green:[32,39],magenta:[35,39],red:[31,39],yellow:[33,39]},s.styles={special:"cyan",number:"yellow",boolean:"yellow",undefined:"grey",null:"bold",string:"green",date:"magenta",regexp:"red"},t.isArray=v,t.isBoolean=y,t.isNull=b,t.isNullOrUndefined=w,t.isNumber=x,t.isString=_,t.isSymbol=S,t.isUndefined=C,t.isRegExp=E,t.isObject=k,t.isDate=O,t.isError=T,t.isFunction=A,t.isPrimitive=M,t.isBuffer=n("j/1Z");var L=["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"];function D(){var e=new Date,t=[R(e.getHours()),R(e.getMinutes()),R(e.getSeconds())].join(":");return[e.getDate(),L[e.getMonth()],t].join(" ")}function j(e,t){return Object.prototype.hasOwnProperty.call(e,t)}t.log=function(){console.log("%s - %s",D(),t.format.apply(t,arguments))},t.inherits=n("FfBw"),t._extend=function(e,t){if(!t||!k(t))return e;var n=Object.keys(t),r=n.length;while(r--)e[n[r]]=t[n[r]];return e};var N="undefined"!==typeof Symbol?Symbol("util.promisify.custom"):void 0;function I(e,t){if(!e){var n=new Error("Promise was rejected with a falsy value");n.reason=e,e=n}return t(e)}function $(t){if("function"!==typeof t)throw new TypeError('The "original" argument must be of type Function');function n(){for(var n=[],r=0;r0)g=l(e,t,p,o(p.length),g,h-1)-1;else{if(g>=9007199254740991)throw TypeError();e[g]=p}g++}v++}return g}e.exports=l},"8Z/V":function(e,t,n){e.exports=!n("wUWy")(function(){return 7!=Object.defineProperty({},"a",{get:function(){return 7}}).a})},"8ifW":function(e,t,n){"use strict";(function(e){var r=n("q1tI"),i=n.n(r),o=n("1EPD"),a=n("17x9"),s=n.n(a),l=1073741823,c="undefined"!==typeof globalThis?globalThis:"undefined"!==typeof window?window:"undefined"!==typeof e?e:{};function u(){var e="__global_unique_id__";return c[e]=(c[e]||0)+1}function h(e,t){return e===t?0!==e||1/e===1/t:e!==e&&t!==t}function d(e){var t=[];return{on:function(e){t.push(e)},off:function(e){t=t.filter(function(t){return t!==e})},get:function(){return e},set:function(n,r){e=n,t.forEach(function(t){return t(e,r)})}}}function f(e){return Array.isArray(e)?e[0]:e}function p(e,t){var n,i,a="__create-react-context-"+u()+"__",c=function(e){function n(){var t;return t=e.apply(this,arguments)||this,t.emitter=d(t.props.value),t}Object(o["a"])(n,e);var r=n.prototype;return r.getChildContext=function(){var e;return e={},e[a]=this.emitter,e},r.componentWillReceiveProps=function(e){if(this.props.value!==e.value){var n,r=this.props.value,i=e.value;h(r,i)?n=0:(n="function"===typeof t?t(r,i):l,n|=0,0!==n&&this.emitter.set(e.value,n))}},r.render=function(){return this.props.children},n}(r["Component"]);c.childContextTypes=(n={},n[a]=s.a.object.isRequired,n);var p=function(t){function n(){var e;return e=t.apply(this,arguments)||this,e.state={value:e.getValue()},e.onUpdate=function(t,n){var r=0|e.observedBits;0!==(r&n)&&e.setState({value:e.getValue()})},e}Object(o["a"])(n,t);var r=n.prototype;return r.componentWillReceiveProps=function(e){var t=e.observedBits;this.observedBits=void 0===t||null===t?l:t},r.componentDidMount=function(){this.context[a]&&this.context[a].on(this.onUpdate);var e=this.props.observedBits;this.observedBits=void 0===e||null===e?l:e},r.componentWillUnmount=function(){this.context[a]&&this.context[a].off(this.onUpdate)},r.getValue=function(){return this.context[a]?this.context[a].get():e},r.render=function(){return f(this.props.children)(this.state.value)},n}(r["Component"]);return p.contextTypes=(i={},i[a]=s.a.object,i),{Provider:c,Consumer:p}}var m=i.a.createContext||p;t["a"]=m}).call(this,n("yLpj"))},"8jRI":function(e,t,n){"use strict";var r="%[a-f0-9]{2}",i=new RegExp(r,"gi"),o=new RegExp("("+r+")+","gi");function a(e,t){try{return decodeURIComponent(e.join(""))}catch(e){}if(1===e.length)return e;t=t||1;var n=e.slice(0,t),r=e.slice(t);return Array.prototype.concat.call([],a(n),a(r))}function s(e){try{return decodeURIComponent(e)}catch(r){for(var t=e.match(i),n=1;n=n&&(e.updateKey=a[0].updateKey||a[0].key,a.shift()),a.push(e)),{notices:a}})},r.remove=function(e){r.setState(function(t){return{notices:t.notices.filter(function(t){return t.key!==e})}})},i=n,p()(r,i)}return g()(t,e),d()(t,[{key:"getTransitionName",value:function(){var e=this.props,t=e.transitionName;return!t&&e.animation&&(t=e.prefixCls+"-"+e.animation),t}},{key:"render",value:function(){var e,t=this,n=this.props,r=this.state.notices,i=r.map(function(e,i){var o=Boolean(i===r.length-1&&e.updateKey),a=e.updateKey?e.updateKey:e.key,s=Object(C["a"])(t.remove.bind(t,e.key),e.onClose);return y.a.createElement(T,l()({prefixCls:n.prefixCls},e,{key:a,update:o,onClose:s,onClick:e.onClick,closeIcon:n.closeIcon}),e.content)}),o=(e={},a()(e,n.prefixCls,1),a()(e,n.className,!!n.className),e);return y.a.createElement("div",{className:k()(o),style:n.style},y.a.createElement(S["a"],{transitionName:this.getTransitionName()},i))}}]),t}(v["Component"]);R.propTypes={prefixCls:w.a.string,transitionName:w.a.string,animation:w.a.oneOfType([w.a.string,w.a.object]),style:w.a.object,maxCount:w.a.number,closeIcon:w.a.node},R.defaultProps={prefixCls:"rc-notification",animation:"fade",style:{top:65,left:"50%"}},R.newInstance=function(e,t){var n=e||{},r=n.getContainer,o=i()(n,["getContainer"]),a=document.createElement("div");if(r){var s=r();s.appendChild(a)}else document.body.appendChild(a);var c=!1;function u(e){c||(c=!0,t({notice:function(t){e.add(t)},removeNotice:function(t){e.remove(t)},component:e,destroy:function(){_.a.unmountComponentAtNode(a),a.parentNode.removeChild(a)}}))}_.a.render(y.a.createElement(R,l()({},o,{ref:u})),a)};var L=R;t["a"]=L},"8zNj":function(e,t,n){"use strict";n("2qtc");var r=n("kLXV"),i=(n("5NDa"),n("5rEg")),o=(n("Pwec"),n("CtXQ")),a=n("p0pE"),s=n.n(a),l=n("q1tI"),c=n.n(l),u=(n("Bl7J"),n("/MKj"));class h extends c.a.Component{constructor(e){super(e),this.state={submit:s()({},this.props.record),visible:!1}}save(){var e=s()({},this.state.submit);this.props.dispatch({type:"serverGroup/save",params:e,callback:()=>{this.setState({visible:!1})}})}render(){var e=this.props.serverGroup.fetchLoading;return c.a.createElement(c.a.Fragment,null,c.a.cloneElement(this.props.children,{onClick:()=>this.setState({visible:!0})}),c.a.createElement(r["a"],{title:"".concat(this.state.submit.id?"\u7f16\u8f91\u7ec4":"\u521b\u5efa\u7ec4"),visible:this.state.visible,onCancel:()=>this.setState({visible:!1}),onOk:()=>e||this.save(),okText:e?c.a.createElement(o["a"],{type:"loading"}):"\u63d0\u4ea4",cancelText:"\u53d6\u6d88"},c.a.createElement("div",null,c.a.createElement("div",{className:"form-group"},c.a.createElement("label",{for:"example-text-input-alt"},"\u7ec4\u540d"),c.a.createElement(i["a"],{placeholder:"\u8bf7\u8f93\u5165\u7ec4\u540d",value:this.state.submit.name,onChange:e=>{this.setState({submit:s()({},this.state.submit,{name:e.target.value})})}})))))}}t["a"]=Object(u["c"])(e=>{var t=e.serverGroup;return{serverGroup:t}})(h)},"93I4":function(e,t){e.exports=function(e){return"object"===typeof e?null!==e:"function"===typeof e}},"9Do8":function(e,t,n){"use strict";e.exports=n("zt9T")},"9HFh":function(e,t,n){var r=n("xJie"),i=n("WFJy").concat("length","prototype");t.f=Object.getOwnPropertyNames||function(e){return r(e,i)}},"9R94":function(e,t,n){"use strict";n.d(t,"a",function(){return o});var r=!0,i="Invariant failed";function o(e,t){if(!e){if(r)throw new Error(i);var n="function"===typeof t?t():t,o=n?i+": "+n:i;throw new Error(o)}}},"9WFV":function(e,t,n){var r=n("2we2");e.exports=Object("z").propertyIsEnumerable(0)?Object:function(e){return"String"==r(e)?e.split(""):Object(e)}},"9lTW":function(e,t,n){"use strict";(function(t){function r(e,t){if(e===t)return 0;for(var n=e.length,r=t.length,i=0,o=Math.min(n,r);i=0;c--)if(u[c]!==h[c])return!1;for(c=u.length-1;c>=0;c--)if(l=u[c],!b(e[l],t[l],n,r))return!1;return!0}function _(e,t,n){b(e,t,!0)&&v(e,t,n,"notDeepStrictEqual",_)}function S(e,t){if(!e||!t)return!1;if("[object RegExp]"==Object.prototype.toString.call(t))return t.test(e);try{if(e instanceof t)return!0}catch(e){}return!Error.isPrototypeOf(t)&&!0===t.call({},e)}function C(e){var t;try{e()}catch(e){t=e}return t}function E(e,t,n,r){var i;if("function"!==typeof t)throw new TypeError('"block" argument must be a function');"string"===typeof n&&(r=n,n=null),i=C(t),r=(n&&n.name?" ("+n.name+").":".")+(r?" "+r:"."),e&&!i&&v(i,n,"Missing expected exception"+r);var a="string"===typeof r,s=!e&&o.isError(i),l=!e&&i&&!n;if((s&&a&&S(i,n)||l)&&v(i,n,"Got unwanted exception"+r),e&&i&&n&&!S(i,n)||!e&&i)throw i}h.AssertionError=function(e){this.name="AssertionError",this.actual=e.actual,this.expected=e.expected,this.operator=e.operator,e.message?(this.message=e.message,this.generatedMessage=!1):(this.message=g(this),this.generatedMessage=!0);var t=e.stackStartFunction||v;if(Error.captureStackTrace)Error.captureStackTrace(this,t);else{var n=new Error;if(n.stack){var r=n.stack,i=f(t),o=r.indexOf("\n"+i);if(o>=0){var a=r.indexOf("\n",o+1);r=r.substring(a+1)}this.stack=r}}},o.inherits(h.AssertionError,Error),h.fail=v,h.ok=y,h.equal=function(e,t,n){e!=t&&v(e,t,n,"==",h.equal)},h.notEqual=function(e,t,n){e==t&&v(e,t,n,"!=",h.notEqual)},h.deepEqual=function(e,t,n){b(e,t,!1)||v(e,t,n,"deepEqual",h.deepEqual)},h.deepStrictEqual=function(e,t,n){b(e,t,!0)||v(e,t,n,"deepStrictEqual",h.deepStrictEqual)},h.notDeepEqual=function(e,t,n){b(e,t,!1)&&v(e,t,n,"notDeepEqual",h.notDeepEqual)},h.notDeepStrictEqual=_,h.strictEqual=function(e,t,n){e!==t&&v(e,t,n,"===",h.strictEqual)},h.notStrictEqual=function(e,t,n){e===t&&v(e,t,n,"!==",h.notStrictEqual)},h.throws=function(e,t,n){E(!0,e,t,n)},h.doesNotThrow=function(e,t,n){E(!1,e,t,n)},h.ifError=function(e){if(e)throw e};var k=Object.keys||function(e){var t=[];for(var n in e)a.call(e,n)&&t.push(n);return t}}).call(this,n("yLpj"))},"9nSz":function(e,t,n){"use strict";var r=n("WGNW"),i=n("Y/ne"),o=n("08Qx"),a=/Version\/10\.\d+(\.\d+)?( Mobile\/\w+)? Safari\//.test(o);r(r.P+r.F*a,"String",{padStart:function(e){return i(this,e,arguments.length>1?arguments[1]:void 0,!0)}})},A22h:function(e,t){e.exports=Object.is||function(e,t){return e===t?0!==e||1/e===1/t:e!=e&&t!=t}},A5Xg:function(e,t,n){var r=n("NsO/"),i=n("ar/p").f,o={}.toString,a="object"==typeof window&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[],s=function(e){try{return i(e)}catch(e){return a.slice()}};e.exports.f=function(e){return a&&"[object Window]"==o.call(e)?s(e):i(r(e))}},"A7R+":function(e,t,n){e.exports=!n("8Z/V")&&!n("wUWy")(function(){return 7!=Object.defineProperty(n("SfDG")("div"),"a",{get:function(){return 7}}).a})},AHJs:function(e,t,n){"use strict";function r(e){"@babel/helpers - typeof";return r="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},r(e)}function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&a(e,t)}function a(e,t){return a=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},a(e,t)}function s(e){return function(){var t,n=h(e);if(u()){var r=h(this).constructor;t=Reflect.construct(n,arguments,r)}else t=n.apply(this,arguments);return l(this,t)}}function l(e,t){return!t||"object"!==r(t)&&"function"!==typeof t?c(e):t}function c(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function u(){if("undefined"===typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"===typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],function(){})),!0}catch(e){return!1}}function h(e){return h=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)},h(e)}var d=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)Object.hasOwnProperty.call(e,n)&&(t[n]=e[n]);return t["default"]=e,t};Object.defineProperty(t,"__esModule",{value:!0});var f=d(n("q1tI")),p=function(e){o(n,e);var t=s(n);function n(){return i(this,n),t.apply(this,arguments)}return n}(f.Component);t.default=p,p.isTableColumnGroup=!0},AMgb:function(e,t,n){e.exports=n("j/9B").default},ANjH:function(e,t,n){"use strict";var r=n("rePB");function i(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function o(e){for(var t=1;t2&&void 0!==arguments[2]&&arguments[2];return{type:r,payload:{location:e,action:t,isFirstRendering:n}}},o="@@router/CALL_HISTORY_METHOD",a=function(e){return function(){for(var t=arguments.length,n=new Array(t),r=0;r0?r:n)(e)}},AUvm:function(e,t,n){"use strict";var r=n("5T2Y"),i=n("B+OT"),o=n("jmDH"),a=n("Y7ZC"),s=n("kTiW"),l=n("6/1s").KEY,c=n("KUxP"),u=n("29s/"),h=n("RfKB"),d=n("YqAc"),f=n("UWiX"),p=n("zLkG"),m=n("Zxgi"),g=n("R+7+"),v=n("kAMH"),y=n("5K7Z"),b=n("93I4"),w=n("JB68"),x=n("NsO/"),_=n("G8Mo"),S=n("rr1i"),C=n("oVml"),E=n("A5Xg"),k=n("vwuL"),O=n("mqlF"),T=n("2faE"),A=n("w6GO"),M=k.f,P=T.f,R=E.f,L=r.Symbol,D=r.JSON,j=D&&D.stringify,N="prototype",I=f("_hidden"),$=f("toPrimitive"),F={}.propertyIsEnumerable,V=u("symbol-registry"),B=u("symbols"),W=u("op-symbols"),H=Object[N],z="function"==typeof L&&!!O.f,U=r.QObject,q=!U||!U[N]||!U[N].findChild,K=o&&c(function(){return 7!=C(P({},"a",{get:function(){return P(this,"a",{value:7}).a}})).a})?function(e,t,n){var r=M(H,t);r&&delete H[t],P(e,t,n),r&&e!==H&&P(H,t,r)}:P,G=function(e){var t=B[e]=C(L[N]);return t._k=e,t},Y=z&&"symbol"==typeof L.iterator?function(e){return"symbol"==typeof e}:function(e){return e instanceof L},X=function(e,t,n){return e===H&&X(W,t,n),y(e),t=_(t,!0),y(n),i(B,t)?(n.enumerable?(i(e,I)&&e[I][t]&&(e[I][t]=!1),n=C(n,{enumerable:S(0,!1)})):(i(e,I)||P(e,I,S(1,{})),e[I][t]=!0),K(e,t,n)):P(e,t,n)},Q=function(e,t){y(e);var n,r=g(t=x(t)),i=0,o=r.length;while(o>i)X(e,n=r[i++],t[n]);return e},Z=function(e,t){return void 0===t?C(e):Q(C(e),t)},J=function(e){var t=F.call(this,e=_(e,!0));return!(this===H&&i(B,e)&&!i(W,e))&&(!(t||!i(this,e)||!i(B,e)||i(this,I)&&this[I][e])||t)},ee=function(e,t){if(e=x(e),t=_(t,!0),e!==H||!i(B,t)||i(W,t)){var n=M(e,t);return!n||!i(B,t)||i(e,I)&&e[I][t]||(n.enumerable=!0),n}},te=function(e){var t,n=R(x(e)),r=[],o=0;while(n.length>o)i(B,t=n[o++])||t==I||t==l||r.push(t);return r},ne=function(e){var t,n=e===H,r=R(n?W:x(e)),o=[],a=0;while(r.length>a)!i(B,t=r[a++])||n&&!i(H,t)||o.push(B[t]);return o};z||(L=function(){if(this instanceof L)throw TypeError("Symbol is not a constructor!");var e=d(arguments.length>0?arguments[0]:void 0),t=function(n){this===H&&t.call(W,n),i(this,I)&&i(this[I],e)&&(this[I][e]=!1),K(this,e,S(1,n))};return o&&q&&K(H,e,{configurable:!0,set:t}),G(e)},s(L[N],"toString",function(){return this._k}),k.f=ee,T.f=X,n("ar/p").f=E.f=te,n("NV0k").f=J,O.f=ne,o&&!n("uOPS")&&s(H,"propertyIsEnumerable",J,!0),p.f=function(e){return G(f(e))}),a(a.G+a.W+a.F*!z,{Symbol:L});for(var re="hasInstance,isConcatSpreadable,iterator,match,replace,search,species,split,toPrimitive,toStringTag,unscopables".split(","),ie=0;re.length>ie;)f(re[ie++]);for(var oe=A(f.store),ae=0;oe.length>ae;)m(oe[ae++]);a(a.S+a.F*!z,"Symbol",{for:function(e){return i(V,e+="")?V[e]:V[e]=L(e)},keyFor:function(e){if(!Y(e))throw TypeError(e+" is not a symbol!");for(var t in V)if(V[t]===e)return t},useSetter:function(){q=!0},useSimple:function(){q=!1}}),a(a.S+a.F*!z,"Object",{create:Z,defineProperty:X,defineProperties:Q,getOwnPropertyDescriptor:ee,getOwnPropertyNames:te,getOwnPropertySymbols:ne});var se=c(function(){O.f(1)});a(a.S+a.F*se,"Object",{getOwnPropertySymbols:function(e){return O.f(w(e))}}),D&&a(a.S+a.F*(!z||c(function(){var e=L();return"[null]"!=j([e])||"{}"!=j({a:e})||"{}"!=j(Object(e))})),"JSON",{stringify:function(e){var t,n,r=[e],i=1;while(arguments.length>i)r.push(arguments[i++]);if(n=t=r[1],(b(t)||void 0!==e)&&!Y(e))return v(t)||(t=function(e,t){if("function"==typeof n&&(t=n.call(this,e,t)),!Y(t))return t}),r[1]=t,j.apply(D,r)}}),L[N][$]||n("NegM")(L[N],$,L[N].valueOf),h(L,"Symbol"),h(Math,"Math",!0),h(r.JSON,"JSON",!0)},AyUB:function(e,t,n){e.exports={default:n("3GJH"),__esModule:!0}},"B+OT":function(e,t){var n={}.hasOwnProperty;e.exports=function(e,t){return n.call(e,t)}},B6Jk:function(e,t,n){},B9Yq:function(e,t){e.exports=function(){throw new Error("define cannot be used indirect")}},BC81:function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=function(){return null};t.default=r},BFt8:function(e,t,n){var r=n("oxo0"),i=n("il4q"),o=n("J57/")("IE_PROTO"),a=Object.prototype;e.exports=Object.getPrototypeOf||function(e){return e=i(e),r(e,o)?e[o]:"function"==typeof e.constructor&&e instanceof e.constructor?e.constructor.prototype:e instanceof Object?a:null}},"BGR+":function(e,t,n){"use strict";var r=n("QbLZ"),i=n.n(r);function o(e,t){for(var n=i()({},e),r=0;r=r)t|=1&e,e>>=1;return e+t}function a(e,t,n,r){var i=t+1;if(i===n)return 1;if(r(e[i++],e[t])<0){while(i=0)i++;return i-t}function s(e,t,n){n--;while(t>>1,i(a,e[o])<0?l=o:s=o+1;var c=r-s;switch(c){case 3:e[s+3]=e[s+2];case 2:e[s+2]=e[s+1];case 1:e[s+1]=e[s];break;default:while(c>0)e[s+c]=e[s+c-1],c--}e[s]=a}}function c(e,t,n,r,i,o){var a=0,s=0,l=1;if(o(e,t[n+i])>0){s=r-i;while(l0)a=l,l=1+(l<<1),l<=0&&(l=s);l>s&&(l=s),a+=i,l+=i}else{s=i+1;while(ls&&(l=s);var c=a;a=i-l,l=i-c}a++;while(a>>1);o(e,t[n+u])>0?a=u+1:l=u}return l}function u(e,t,n,r,i,o){var a=0,s=0,l=1;if(o(e,t[n+i])<0){s=i+1;while(ls&&(l=s);var c=a;a=i-l,l=i-c}else{s=r-i;while(l=0)a=l,l=1+(l<<1),l<=0&&(l=s);l>s&&(l=s),a+=i,l+=i}a++;while(a>>1);o(e,t[n+u])<0?l=u:a=u+1}return l}function h(e,t){var n,r,o=i,a=0,s=0;a=e.length;var l=[];function h(e,t){n[s]=e,r[s]=t,s+=1}function d(){while(s>1){var e=s-2;if(e>=1&&r[e-1]<=r[e]+r[e+1]||e>=2&&r[e-2]<=r[e]+r[e-1])r[e-1]r[e+1])break;p(e)}}function f(){while(s>1){var e=s-2;e>0&&r[e-1]=i||g>=i);if(v)break;y<0&&(y=0),y+=2}if(o=y,o<1&&(o=1),1===r){for(h=0;h=0;h--)e[g+h]=e[m+h];if(0===r){w=!0;break}}if(e[p--]=l[f--],1===--s){w=!0;break}if(b=s-c(e[d],l,0,s,s-1,t),0!==b){for(p-=b,f-=b,s-=b,g=p+1,m=f+1,h=0;h=i||b>=i);if(w)break;v<0&&(v=0),v+=2}if(o=v,o<1&&(o=1),1===s){for(p-=r,d-=r,g=p+1,m=d+1,h=r-1;h>=0;h--)e[g+h]=e[m+h];e[p]=l[f]}else{if(0===s)throw new Error;for(m=p-(s-1),h=0;h=0;h--)e[g+h]=e[m+h];e[p]=l[f]}else for(m=p-(s-1),h=0;hd&&(f=d),l(e,n,n+f,n+c,t),c=f}u.pushRun(n,c),u.mergeRuns(),s-=c,n+=c}while(0!==s);u.forceMergeRuns()}}},BjZs:function(e,t,n){"use strict";function r(e){return s(e)||a(e)||o(e)||i()}function i(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function o(e,t){if(e){if("string"===typeof e)return l(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(n):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?l(e,t):void 0}}function a(e){if("undefined"!==typeof Symbol&&Symbol.iterator in Object(e))return Array.from(e)}function s(e){if(Array.isArray(e))return l(e)}function l(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n1&&void 0!==arguments[1]?arguments[1]:0,r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},i=arguments.length>3&&void 0!==arguments[3]?arguments[3]:[];i[n]=i[n]||[];var o=[],a=function(e){var t=i.length-n;e&&!e.children&&t>1&&(!e.rowSpan||e.rowSpan0?(c.children=e(c.children,n+1,c,i),r.colSpan+=c.colSpan):r.colSpan+=1;for(var h=0;h{s.a.push(n),this.props.dispatch({type:"layout/showNav",show:!1})}},r&&r,o.a.createElement("span",{className:"nav-main-link-name"},t)));case"href":return o.a.createElement("li",{key:Math.random(),className:"nav-main-item"},o.a.createElement("a",{className:"nav-main-link",target:"_blank",href:n,rel:"noreferrer"},r&&r,o.a.createElement("span",{className:"nav-main-link-name"},t)))}}isAdmin(){return-1!==this.props.location.pathname.indexOf("admin")}render(){return o.a.createElement("nav",{id:"sidebar"},o.a.createElement("div",{className:"smini-hidden bg-header-dark"},o.a.createElement("div",{className:"content-header justify-content-lg-center bg-black-10"},o.a.createElement("a",{className:"link-fx font-size-lg text-white",href:"/"},o.a.createElement("span",{className:"text-white-75"},window.settings.title?window.settings.title:"V2Board")),o.a.createElement("div",{className:"d-lg-none"},o.a.createElement("a",{className:"text-white ml-2","data-toggle":"layout","data-action":"sidebar_close",href:"javascript:void(0);",onClick:()=>this.props.dispatch({type:"layout/showNav"})},o.a.createElement("i",{className:"fa fa-times-circle"}))))),o.a.createElement("div",{className:"content-side content-side-full"},o.a.createElement("ul",{className:"nav-main"},this.state.nav.map(e=>{return this.renderMenu(e.type,e.title,e.href,e.icon)}))),o.a.createElement("div",{className:"v2board-copyright"},window.settings.title?window.settings.title:"V2Board"," v1.5.5"))}}var h=Object(l["c"])(e=>{var t=e.layout;return{layout:t}})(u),d=n("t3Un"),f=n("nDCI"),p=n("yWgo"),m=window.settings.theme;class g extends o.a.Component{constructor(e){super(e),this.state={showAvatarMenu:!1,showSearchBar:!1}}componentDidMount(){var e=this.props.user.userInfo;e.email||this.props.dispatch({type:"user/getUserInfo"})}showAvatarMenu(){var e=this;this.setState({showAvatarMenu:!this.state.showAvatarMenu},()=>{document.onclick=function(t){e.state.showAvatarMenu&&e.setState({showAvatarMenu:!1}),document.onclick=void 0}})}logout(){Object(d["a"])("/user/logout").then(e=>{s.a.push("/login")})}darkMode(){"1"===Object(p["b"])("dark_mode")?(Object(f["disable"])(),Object(p["d"])("dark_mode",0)):(Object(f["enable"])({brightness:100,contrast:90,sepia:10}),Object(p["d"])("dark_mode",1)),this.forceUpdate()}render(){var e=this.props.user.userInfo;return o.a.createElement("header",{id:"page-header"},o.a.createElement("div",{className:"content-header",style:{maxWidth:"unset"}},o.a.createElement("div",{className:"sidebar-toggle",style:{display:this.props.search?"block":"none"}},o.a.createElement("button",{type:"button",className:"dark"===m.header?"btn btn-primary mr-1 d-lg-none":"btn mr-1 d-lg-none",onClick:()=>this.props.dispatch({type:"layout/showNav"})},o.a.createElement("i",{className:"fa fa-fw fa-bars"})),this.props.search&&o.a.createElement("button",{type:"button",className:"dark"===m.header?"btn btn-primary":"btn",onClick:()=>{this.setState({showSearchBar:!0})}},o.a.createElement("i",{className:"fa fa-fw fa-search"})," ",o.a.createElement("span",{className:"ml-1 d-none d-sm-inline-block"},"\u641c\u7d22"))),o.a.createElement("div",{className:"dark"===m.header?"v2board-container-title text-white":"v2board-container-title text-black"},this.props.title),o.a.createElement("div",null,o.a.createElement("div",{className:"dropdown d-inline-block"},o.a.createElement("button",{type:"button",className:"dark"===m.header?"btn btn-primary mr-1":"btn mr-1",onClick:()=>this.darkMode()},"1"===Object(p["b"])("dark_mode")?o.a.createElement("i",{className:"far fa fa-moon"}):o.a.createElement("i",{className:"far fa fa-sun"}))),this.state.loading?o.a.createElement("div",{className:"spinner-grow text-primary"}):o.a.createElement("div",{className:"dropdown d-inline-block"},o.a.createElement("button",{type:"button",className:"dark"===m.header?"btn btn-primary":"btn",id:"page-header-user-dropdown","data-toggle":"dropdown","aria-haspopup":"true","aria-expanded":"false",onClick:()=>this.showAvatarMenu()},o.a.createElement("i",{className:"far fa fa-user-circle"}),o.a.createElement("span",{className:"d-none d-lg-inline ml-1"},e.email),o.a.createElement("i",{className:"fa fa-fw fa-angle-down ml-1"})),o.a.createElement("div",{className:"dropdown-menu dropdown-menu-right dropdown-menu-lg p-0 ".concat(this.state.showAvatarMenu&&"show"),"aria-labelledby":"page-header-user-dropdown"},o.a.createElement("div",{className:"p-2"},o.a.createElement("a",{className:"dropdown-item d-flex justify-content-between align-items-center",href:"javascript:void(0);",onClick:()=>this.logout()},"\u767b\u51fa",o.a.createElement("i",{className:"fa fa-fw fa-sign-out-alt text-danger ml-1"}))))))),this.props.search&&o.a.createElement("div",{className:"overlay-header bg-dark ".concat(this.state.showSearchBar?"show":"")},o.a.createElement("div",{className:"content-header bg-dark"},o.a.createElement("div",{className:"w-100"},o.a.createElement("div",{className:"input-group"},o.a.createElement("div",{className:"input-group-prepend"},o.a.createElement("button",{type:"button",className:"btn btn-dark",onClick:()=>{this.setState({showSearchBar:!1})}},o.a.createElement("i",{className:"fa fa-fw fa-times-circle"}))),o.a.createElement("input",{type:"text",className:"form-control border-0",placeholder:this.props.search.placeholder,onChange:e=>this.props.search.onChange(e.target.value),defaultValue:this.props.search.defaultValue}))))))}}var v=Object(l["c"])(e=>{var t=e.layout,n=e.user;return{layout:t,user:n}})(g);var y=n("+Gva"),b=window.settings.theme;class w extends o.a.Component{componentDidMount(){window.scrollTo(0,0)}render(){return o.a.createElement(r["a"],{locale:y["a"]},o.a.createElement("div",{id:"page-container",className:"sidebar-o ".concat("dark"===b.sidebar?"sidebar-dark":""," ").concat("dark"===b.header?"page-header-dark":""," side-scroll page-header-fixed main-content-boxed side-trans-enabled ").concat(this.props.layout.showNav&&"sidebar-o-xs")},o.a.createElement("div",{onClick:()=>this.props.dispatch({type:"layout/showNav"}),className:"v2board-nav-mask",style:{display:this.props.layout.showNav?"block":"none"}}),o.a.createElement(h,this.props),o.a.createElement(v,{search:this.props.search,title:this.props.title}),this.props.loading?o.a.createElement("main",{id:"main-container"},o.a.createElement("div",{className:"content content-full"},o.a.createElement("div",{className:"spinner-grow text-primary",role:"status"},o.a.createElement("span",{className:"sr-only"},"Loading...")))):o.a.createElement("main",{id:"main-container"},o.a.createElement("div",{className:"p-0 p-lg-4"},this.props.children))))}}t["a"]=Object(l["c"])(e=>{var t=e.layout;return{layout:t}})(w)},BlVb:function(e,t,n){"use strict";n.d(t,"a",function(){return a});var r=n("hyiK"),i=1e-8;function o(e,t){return Math.abs(e-t)=a)}}for(var d=this.__startIndex;d15)break}}n.prevElClipPaths&&c.restore()};if(d)if(0===d.length)s=l.__endIndex;else for(var w=f.dpr,x=0;x0&&e>r[0]){for(l=0;le)break;s=n[r[l]]}if(r.splice(l+1,0,e),n[e]=t,!t.virtual)if(s){var c=s.dom;c.nextSibling?a.insertBefore(t.dom,c.nextSibling):a.appendChild(t.dom)}else a.firstChild?a.insertBefore(t.dom,a.firstChild):a.appendChild(t.dom);t.__painter=this}else i["E"]("Layer of zlevel "+e+" is not valid")},e.prototype.eachLayer=function(e,t){for(var n=this._zlevelList,r=0;r0?w:0),this._needsManuallyCompositing),h.__builtin__||i["E"]("ZLevel "+c+" has been used by unkown layer "+h.id),h!==s&&(h.__used=!0,h.__startIndex!==a&&(h.__dirty=!0),h.__startIndex=a,h.incremental?h.__drawIndex=-1:h.__drawIndex=a,t(a),s=h),r.__dirty&u["a"]&&!r.__inHover&&(h.__dirty=!0,h.incremental&&h.__drawIndex<0&&(h.__drawIndex=a))}t(a),this.eachBuiltinLayer(function(e,t){!e.__used&&e.getElementCount()>0&&(e.__dirty=!0,e.__startIndex=e.__endIndex=e.__drawIndex=0),e.__dirty&&e.__drawIndex<0&&(e.__drawIndex=e.__startIndex)})},e.prototype.clear=function(){return this.eachBuiltinLayer(this._clearLayer),this},e.prototype._clearLayer=function(e){e.clear()},e.prototype.setBackgroundColor=function(e){this._backgroundColor=e,i["k"](this._layers,function(e){e.setUnpainted()})},e.prototype.configLayer=function(e,t){if(t){var n=this._layerConfig;n[e]?i["G"](n[e],t,!0):n[e]=t;for(var r=0;r.5?t:e}function d(e,t,n,r){for(var i=t.length,o=0;oa;if(s)r.length=a;else for(var l=o;l=2&&this.interpolable&&this.maxTime>0},e.prototype.getAdditiveTrack=function(){return this._additiveTrack},e.prototype.addKeyframe=function(e,t){e>=this.maxTime?this.maxTime=e:this._needsSort=!0;var n=this.keyframes,r=n.length;if(this.interpolable)if(Object(l["t"])(t)){var i=S(t);if(r>0&&this.arrDim!==i)return void(this.interpolable=!1);if(1===i&&"number"!==typeof t[0]||2===i&&"number"!==typeof t[0][0])return void(this.interpolable=!1);if(r>0){var o=n[r-1];this._isAllValueEqual&&(1===i&&v(t,o.value)||(this._isAllValueEqual=!1))}this.arrDim=i}else{if(this.arrDim>0)return void(this.interpolable=!1);if("string"===typeof t){var a=s["d"](t);a?(t=a,this.isValueColor=!0):this.interpolable=!1}else if("number"!==typeof t||isNaN(t))return void(this.interpolable=!1);if(this._isAllValueEqual&&r>0){o=n[r-1];this.isValueColor&&!v(o.value,t)?this._isAllValueEqual=!1:o.value!==t&&(this._isAllValueEqual=!1)}}var c={time:e,value:t,percent:0};return this.keyframes.push(c),c},e.prototype.prepare=function(e){var t=this.keyframes;this._needsSort&&t.sort(function(e,t){return e.time-t.time});for(var n=this.arrDim,r=t.length,i=t[r-1],o=0;o0&&o!==r-1&&g(t[o].value,i.value,n);if(e&&this.needsAnimate()&&e.needsAnimate()&&n===e.arrDim&&this.isValueColor===e.isValueColor&&!e._finished){this._additiveTrack=e;var a=t[0].value;for(o=0;o=0;n--)if(o[n].percent<=t)break;n=Math.min(n,a-2)}else{for(n=this._lastFrame;nt)break;n=Math.min(n-1,a-2)}var m=o[n+1],g=o[n];if(g&&m){this._lastFrame=n,this._lastFramePercent=t;var v=m.percent-g.percent;if(0!==v){var x=(t-g.percent)/v,S=r?this._additiveValue:c?C:e[s];if((l>0||c)&&!S&&(S=this._additiveValue=[]),this.useSpline){var E=o[n][i],k=o[0===n?n:n-1][i],O=o[n>a-2?a-1:n+1][i],T=o[n>a-3?a-1:n+2][i];if(l>0)1===l?b(S,k,E,O,T,x,x*x,x*x*x):w(S,k,E,O,T,x,x*x,x*x*x);else if(c)b(S,k,E,O,T,x,x*x,x*x*x),r||(e[s]=_(S));else{var A=void 0;A=this.interpolable?y(k,E,O,T,x,x*x,x*x*x):O,r?this._additiveValue=A:e[s]=A}}else if(l>0)1===l?d(S,g[i],m[i],x):f(S,g[i],m[i],x);else if(c)d(S,g[i],m[i],x),r||(e[s]=_(S));else{A=void 0;A=this.interpolable?u(g[i],m[i],x):h(g[i],m[i],x),r?this._additiveValue=A:e[s]=A}r&&this._addToTarget(e)}}}},e.prototype._addToTarget=function(e){var t=this.arrDim,n=this.propName,r=this._additiveValue;0===t?this.isValueColor?(s["d"](e[n],C),p(C,C,r,1),e[n]=_(C)):e[n]=e[n]+r:1===t?p(e[n],e[n],r,1):2===t&&m(e[n],e[n],r,1)},e}(),k=function(){function e(e,t,n){this._tracks={},this._trackKeys=[],this._delay=0,this._maxTime=0,this._paused=!1,this._started=0,this._clip=null,this._target=e,this._loop=t,t&&n?Object(l["E"])("Can' use additive animation on looped animation."):this._additiveAnimators=n}return e.prototype.getTarget=function(){return this._target},e.prototype.changeTarget=function(e){this._target=e},e.prototype.when=function(e,t){return this.whenWithKeys(e,t,Object(l["D"])(t))},e.prototype.whenWithKeys=function(e,t,n){for(var r=this._tracks,i=0;i0)){this._started=1;for(var n=this,r=[],i=0;i1){var a=o.pop();i.addKeyframe(a.time,e[r]),i.prepare(i.getAdditiveTrack())}}}},e}();t["b"]=k},BsWD:function(e,t,n){"use strict";n.d(t,"a",function(){return i});var r=n("a3WO");function i(e,t){if(e){if("string"===typeof e)return Object(r["a"])(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?Object(r["a"])(e,t):void 0}}},Bus3:function(e,t,n){n("Jaki")("Int8",1,function(e){return function(t,n,r){return e(this,t,n,r)}})},Bz7s:function(e,t,n){n("8Z/V")&&"g"!=/./g.flags&&n("V5/1").f(RegExp.prototype,"flags",{configurable:!0,get:n("7tNx")})},CTsd:function(e,t,n){var r=n("OeOC"),i=n("9HFh").f,o={}.toString,a="object"==typeof window&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[],s=function(e){try{return i(e)}catch(e){return a.slice()}};e.exports.f=function(e){return a&&"[object Window]"==o.call(e)?s(e):i(r(e))}},CfL3:function(e,t,n){"use strict";var r=n("7vYJ"),i=n("8BMt"),o="number";e.exports=function(e){if("string"!==e&&e!==o&&"default"!==e)throw TypeError("Incorrect hint");return i(r(this),e!=o)}},CgOb:function(e,t,n){"use strict";n("bbsP");var r=n("/wGt"),i=(n("+L6B"),n("2/Rp")),o=(n("BoS7"),n("Sdc0")),a=(n("5Dmo"),n("3S7+")),s=(n("Pwec"),n("CtXQ")),l=(n("OaEy"),n("2fM7")),c=(n("iQDF"),n("+eQT")),u=(n("5NDa"),n("5rEg")),h=n("p0pE"),d=n.n(h),f=n("q1tI"),p=n.n(f),m=n("/MKj"),g=n("wd/R"),v=n.n(g);class y extends p.a.Component{constructor(e){super(e),this.state={visible:!1}}show(){this.setState({visible:!0},()=>{this.props.dispatch({type:"user/getUserInfoById",id:this.props.userId})})}hide(){this.setState({visible:!1},()=>{this.props.dispatch({type:"user/setState",payload:{user:{}}})})}formChange(e,t){this.props.dispatch({type:"user/setState",payload:{user:d()({},this.props.user.user,{[e]:t})}})}submit(){var e=d()({},this.props.user.user);this.props.dispatch({type:"user/update",params:e,callback:()=>{this.hide()}})}render(){var e=this.props.user,t=e.user,n=e.updateLoading,h=this.props.plan.plans,d=this.state.visible;return p.a.createElement(p.a.Fragment,null,p.a.cloneElement(this.props.children,{onClick:()=>this.show()}),p.a.createElement(r["a"],{id:"user",width:"80%",title:"\u7528\u6237\u7ba1\u7406",visible:d,onClose:()=>this.hide(),cancelText:"\u53d6\u6d88"},t.email?p.a.createElement("div",null,p.a.createElement("div",null,p.a.createElement("div",{className:"form-group"},p.a.createElement("label",{for:"example-text-input-alt"},"\u90ae\u7bb1"),p.a.createElement(u["a"],{placeholder:"\u8bf7\u8f93\u5165\u90ae\u7bb1",defaultValue:t.email,onChange:e=>this.formChange("email",e.target.value)})),p.a.createElement("div",{className:"form-group"},p.a.createElement("label",{for:"example-text-input-alt"},"\u9080\u8bf7\u4eba\u90ae\u7bb1"),p.a.createElement(u["a"],{placeholder:"\u8bf7\u8f93\u5165\u9080\u8bf7\u4eba\u90ae\u7bb1",defaultValue:t.invite_user_email,onChange:e=>this.formChange("invite_user_email",e.target.value)})),p.a.createElement("div",{className:"form-group"},p.a.createElement("label",{for:"example-text-input-alt"},"\u5bc6\u7801"),p.a.createElement(u["a"],{defaultValue:t.password,placeholder:"\u5982\u9700\u4fee\u6539\u5bc6\u7801\u8bf7\u8f93\u5165",onChange:e=>this.formChange("password",e.target.value)})),p.a.createElement("div",{className:"row"},p.a.createElement("div",{className:"form-group col-md-6 col-xs-12"},p.a.createElement("label",null,"\u4f59\u989d"),p.a.createElement(u["a"],{type:"number",addonAfter:"\xa5",placeholder:"\u4f59\u989d",defaultValue:t.balance,onChange:e=>this.formChange("balance",e.target.value)})),p.a.createElement("div",{className:"form-group col-md-6 col-xs-12"},p.a.createElement("label",null,"\u63a8\u5e7f\u4f63\u91d1"),p.a.createElement(u["a"],{type:"number",addonAfter:"\xa5",placeholder:"\u63a8\u5e7f\u4f63\u91d1",defaultValue:t.commission_balance,onChange:e=>this.formChange("commission_balance",e.target.value)}))),p.a.createElement("div",{className:"row"},p.a.createElement("div",{className:"form-group col-md-6 col-xs-12"},p.a.createElement("label",null,"\u5df2\u7528\u4e0a\u884c"),p.a.createElement(u["a"],{type:"number",addonAfter:"GB",placeholder:"\u5df2\u7528\u4e0a\u884c",defaultValue:t.u,onChange:e=>this.formChange("u",e.target.value)})),p.a.createElement("div",{className:"form-group col-md-6 col-xs-12"},p.a.createElement("label",null,"\u5df2\u7528\u4e0b\u884c"),p.a.createElement(u["a"],{type:"number",addonAfter:"GB",placeholder:"\u5df2\u7528\u4e0b\u884c",defaultValue:t.d,onChange:e=>this.formChange("d",e.target.value)}))),p.a.createElement("div",{className:"form-group"},p.a.createElement("label",{for:"example-text-input-alt"},"\u6d41\u91cf"),p.a.createElement(u["a"],{type:"number",addonAfter:"GB",defaultValue:t.transfer_enable,placeholder:"\u8bf7\u8f93\u5165\u6d41\u91cf",onChange:e=>this.formChange("transfer_enable",e.target.value)})),p.a.createElement("div",{className:"form-group"},p.a.createElement("label",{for:"example-text-input-alt"},"\u5230\u671f\u65f6\u95f4"),p.a.createElement("div",null,p.a.createElement(c["a"],{placeholder:"\u957f\u671f\u6709\u6548",defaultValue:null!==t.expired_at&&v()(1e3*t.expired_at),style:{width:"100%"},onChange:e=>this.formChange("expired_at",e?e.format("X"):null)}))),p.a.createElement("div",{className:"form-group"},p.a.createElement("label",{for:"example-text-input-alt"},"\u8ba2\u9605\u8ba1\u5212"),p.a.createElement(l["a"],{placeholder:"\u8bf7\u9009\u62e9\u7528\u6237\u8ba2\u9605\u8ba1\u5212",style:{width:"100%"},defaultValue:t.plan_id||null,onChange:e=>this.formChange("plan_id",e)},p.a.createElement(l["a"].Option,{value:null},"\u65e0"),h.map(e=>{return p.a.createElement(l["a"].Option,{key:Math.random(),value:e.id},e.name)}))),p.a.createElement("div",{className:"form-group"},p.a.createElement("label",{for:"example-text-input-alt"},"\u8d26\u6237\u72b6\u6001"),p.a.createElement(l["a"],{style:{width:"100%"},defaultValue:t.banned?1:0,onChange:e=>this.formChange("banned",e)},p.a.createElement(l["a"].Option,{key:1,value:1},"\u5c01\u7981"),p.a.createElement(l["a"].Option,{key:0,value:0},"\u6b63\u5e38"))),p.a.createElement("div",{className:"form-group"},p.a.createElement("label",{for:"example-text-input-alt"},"\u63a8\u8350\u8fd4\u5229\u7c7b\u578b"),p.a.createElement(l["a"],{style:{width:"100%"},defaultValue:parseInt(t.commission_type),onChange:e=>this.formChange("commission_type",e)},p.a.createElement(l["a"].Option,{key:0,value:0},"\u8ddf\u968f\u7cfb\u7edf\u8bbe\u7f6e"),p.a.createElement(l["a"].Option,{key:1,value:1},"\u5faa\u73af\u8fd4\u5229"),p.a.createElement(l["a"].Option,{key:2,value:2},"\u9996\u6b21\u8fd4\u5229"))),p.a.createElement("div",{className:"form-group"},p.a.createElement("label",{for:"example-text-input-alt"},"\u63a8\u8350\u8fd4\u5229\u6bd4\u4f8b"),p.a.createElement(u["a"],{addonAfter:"%",defaultValue:t.commission_rate,placeholder:"\u8bf7\u8f93\u5165\u63a8\u8350\u8fd4\u5229\u6bd4\u4f8b(\u4e3a\u7a7a\u5219\u8ddf\u968f\u7ad9\u70b9\u8bbe\u7f6e\u8fd4\u5229\u6bd4\u4f8b)",onChange:e=>this.formChange("commission_rate",e.target.value)})),p.a.createElement("div",{className:"form-group"},p.a.createElement("label",{for:"example-text-input-alt"},"\u4e13\u4eab\u6298\u6263\u6bd4\u4f8b ",p.a.createElement(a["a"],{placement:"top",title:"\u8bbe\u7f6e\u540e\u8be5\u7528\u6237\u8d2d\u4e70\u4efb\u4f55\u8ba2\u9605\u5c06\u59cb\u7ec8\u4eab\u53d7\u8be5\u6298\u6263"},p.a.createElement(s["a"],{type:"question-circle"}))),p.a.createElement(u["a"],{addonAfter:"%",defaultValue:t.discount,placeholder:"\u8bf7\u8f93\u5165\u4e13\u4eab\u6298\u6263\u6bd4\u4f8b",onChange:e=>this.formChange("discount",e.target.value)})),p.a.createElement("div",{className:"form-group"},p.a.createElement("label",{for:"example-text-input-alt"},"\u662f\u5426\u7ba1\u7406\u5458"),p.a.createElement("div",null,p.a.createElement(o["a"],{checked:t.is_admin,onChange:e=>this.formChange("is_admin",e?1:0)}))),p.a.createElement("div",{className:"form-group"},p.a.createElement("label",{htmlFor:"example-text-input-alt"},"\u662f\u5426\u5458\u5de5"),p.a.createElement("div",null,p.a.createElement(o["a"],{checked:t.is_staff,onChange:e=>this.formChange("is_staff",e?1:0)}))),p.a.createElement("div",{className:"form-group"},p.a.createElement("label",{htmlFor:"example-text-input-alt"},"\u5907\u6ce8"),p.a.createElement("div",null,p.a.createElement(u["a"].TextArea,{rows:4,placeholder:"\u8bf7\u5728\u8fd9\u91cc\u8bb0\u5f55..",defaultValue:t.remarks,onChange:e=>this.formChange("remarks",e.target.value)})))),p.a.createElement("div",{className:"v2board-drawer-action"},p.a.createElement(i["a"],{style:{marginRight:8},onClick:()=>this.hide()},"\u53d6\u6d88"),p.a.createElement(i["a"],{disabled:n,loading:n,onClick:()=>this.submit(),type:"primary"},"\u63d0\u4ea4"))):p.a.createElement(s["a"],{type:"loading",style:{fontSize:24,color:"#415A94"}})))}}t["a"]=Object(m["c"])(e=>{var t=e.user,n=e.plan;return{user:t,plan:n}})(y)},Cit5:function(e,t,n){"use strict";function r(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)Object.hasOwnProperty.call(e,n)&&(t[n]=e[n]);return t["default"]=e,t},o=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});var a=i(n("q1tI")),s=i(n("17x9")),l=o(n("TSYQ")),c=n("6Ogq"),u=o(n("UNrv"));function h(e,t){var n=t.table,i=n.props,o=i.prefixCls,s=i.scroll,h=i.showHeader,d=e.columns,f=e.fixed,p=e.tableClassName,m=e.handleBodyScrollLeft,g=e.expander,v=n.saveRef,y=n.props.useFixedHeader,b={},w=c.measureScrollbar({direction:"vertical"});if(s.y){y=!0;var x=c.measureScrollbar({direction:"horizontal",prefixCls:o});x>0&&!f&&(b.marginBottom="-".concat(x,"px"),b.paddingBottom="0px",b.minWidth="".concat(w,"px"),b.overflowX="scroll",b.overflowY=0===w?"hidden":"scroll")}return y&&h?a.createElement("div",{key:"headTable",ref:f?null:v("headTable"),className:l.default("".concat(o,"-header"),r({},"".concat(o,"-hide-scrollbar"),w>0)),style:b,onScroll:m},a.createElement(u.default,{tableClassName:p,hasHead:!0,hasBody:!1,fixed:f,columns:d,expander:g})):null}t.default=h,h.contextTypes={table:s.any}},CnBM:function(e,t,n){"use strict";var r="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function a(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var s=n("q1tI"),l=n("17x9"),c=[],u=[];function h(e){return"object"===r(n.m)&&e().every(function(e){return"undefined"!==typeof e&&"undefined"!==typeof n.m[e]})}function d(e){var t=e(),n={loading:!0,loaded:null,error:null};return n.promise=t.then(function(e){return n.loading=!1,n.loaded=e,e}).catch(function(e){throw n.loading=!1,n.error=e,e}),n}function f(e){var t={loading:!1,loaded:{},error:null},n=[];try{Object.keys(e).forEach(function(r){var i=d(e[r]);i.loading?t.loading=!0:(t.loaded[r]=i.loaded,t.error=i.error),n.push(i.promise),i.promise.then(function(e){t.loaded[r]=e}).catch(function(e){t.error=e})})}catch(e){t.error=e}return t.promise=Promise.all(n).then(function(e){return t.loading=!1,e}).catch(function(e){throw t.loading=!1,e}),t}function p(e){return e&&e.__esModule?e.default:e}function m(e,t){return s.createElement(p(e),t)}function g(e,t){var n,r;if(!t.loading)throw new Error("react-loadable requires a `loading` component");var d=Object.assign({loader:null,loading:null,delay:200,timeout:null,render:m,webpack:null,modules:null},t),f=null;function p(){return f||(f=e(d.loader)),f.promise}return c.push(p),"function"===typeof d.webpack&&u.push(function(){if(h(d.webpack))return p()}),r=n=function(t){function n(r){i(this,n);var a=o(this,t.call(this,r));return a.retry=function(){a.setState({error:null,loading:!0,timedOut:!1}),f=e(d.loader),a._loadModule()},p(),a.state={error:f.error,pastDelay:!1,timedOut:!1,loading:f.loading,loaded:f.loaded},a}return a(n,t),n.preload=function(){return p()},n.prototype.componentWillMount=function(){this._mounted=!0,this._loadModule()},n.prototype._loadModule=function(){var e=this;if(this.context.loadable&&Array.isArray(d.modules)&&d.modules.forEach(function(t){e.context.loadable.report(t)}),f.loading){"number"===typeof d.delay&&(0===d.delay?this.setState({pastDelay:!0}):this._delay=setTimeout(function(){e.setState({pastDelay:!0})},d.delay)),"number"===typeof d.timeout&&(this._timeout=setTimeout(function(){e.setState({timedOut:!0})},d.timeout));var t=function(){e._mounted&&(e.setState({error:f.error,loaded:f.loaded,loading:f.loading}),e._clearTimeouts())};f.promise.then(function(){t()}).catch(function(e){t()})}},n.prototype.componentWillUnmount=function(){this._mounted=!1,this._clearTimeouts()},n.prototype._clearTimeouts=function(){clearTimeout(this._delay),clearTimeout(this._timeout)},n.prototype.render=function(){return this.state.loading||this.state.error?s.createElement(d.loading,{isLoading:this.state.loading,pastDelay:this.state.pastDelay,timedOut:this.state.timedOut,error:this.state.error,retry:this.retry}):this.state.loaded?d.render(this.state.loaded,this.props):null},n}(s.Component),n.contextTypes={loadable:l.shape({report:l.func.isRequired})},r}function v(e){return g(d,e)}function y(e){if("function"!==typeof e.render)throw new Error("LoadableMap requires a `render(loaded, props)` function");return g(f,e)}v.Map=y;var b=function(e){function t(){return i(this,t),o(this,e.apply(this,arguments))}return a(t,e),t.prototype.getChildContext=function(){return{loadable:{report:this.props.report}}},t.prototype.render=function(){return s.Children.only(this.props.children)},t}(s.Component);function w(e){var t=[];while(e.length){var n=e.pop();t.push(n())}return Promise.all(t).then(function(){if(e.length)return w(e)})}b.propTypes={report:l.func.isRequired},b.childContextTypes={loadable:l.shape({report:l.func.isRequired}).isRequired},v.Capture=b,v.preloadAll=function(){return new Promise(function(e,t){w(c).then(e,t)})},v.preloadReady=function(){return new Promise(function(e,t){w(u).then(e,e)})},e.exports=v},Crw4:function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=P;var r=o(n("q1tI")),i=n("6YkS");function o(e){return e&&e.__esModule?e:{default:e}}function a(e){"@babel/helpers - typeof";return a="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},a(e)}function s(e,t,n,r,i,o,a){try{var s=e[o](a),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(r,i)}function l(e){return function(){var t=this,n=arguments;return new Promise(function(r,i){var o=e.apply(t,n);function a(e){s(o,r,i,a,l,"next",e)}function l(e){s(o,r,i,a,l,"throw",e)}a(void 0)})}}function c(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function u(e,t){for(var n=0;n=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(i[n]=e[n])}return i}function C(e,t){if(null==e)return{};var n,r,i={},o=Object.keys(e);for(r=0;r=0||(i[n]=e[n]);return i}var E={get:function(e){return e._routeInternalComponent},has:function(e){return void 0!==e._routeInternalComponent},set:function(e,t){e._routeInternalComponent=t}},k=function(e){var t=e.path,n=e.exact,o=e.strict,a=e.render,s=e.location,l=e.sensitive,c=S(e,["path","exact","strict","render","location","sensitive"]);return r.default.createElement(i.Route,{path:t,exact:n,strict:o,location:s,sensitive:l,render:function(e){return a(x({},e,{},c))}})};function O(e){var t={};return t}function T(e){if(E.has(e))return E.get(e);var t=e.Routes,n=t.length-1,i=function(e){var t=e.render,n=S(e,["render"]);return t(n)},o=function(){var e=t[n],o=i;i=function(t){return r.default.createElement(e,t,r.default.createElement(o,t))},n-=1};while(n>=0)o();var a=function(t){var n=t.render,o=S(t,["render"]);return r.default.createElement(k,b({},o,{render:function(t){return r.default.createElement(i,b({},t,{route:e,render:n}))}}))};return E.set(e,a),a}var A=!1;function M(e,t){var n,i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};return n=function(n){d(a,n);var o=p(a);function a(e){var t;return c(this,a),t=o.call(this,e),t.wrappedWithInitialProps=!0,t.state={extraProps:x({},i)},A||(A=!window.g_useSSR||e.history&&"POP"!==e.history.action),t}return h(a,[{key:"componentDidMount",value:function(){var e=l(regeneratorRuntime.mark(function e(){return regeneratorRuntime.wrap(function(e){while(1)switch(e.prev=e.next){case 0:A&&this.getInitialProps();case 1:case"end":return e.stop()}},e,this)}));function t(){return e.apply(this,arguments)}return t}()},{key:"componentDidUpdate",value:function(e){var t=this.props.location;e.location.pathname!==t.pathname&&(A=!0,this.getInitialProps())}},{key:"componentWillUnmount",value:function(){A=!0}},{key:"getInitialProps",value:function(){var n=l(regeneratorRuntime.mark(function n(){var r,i,o,a,s;return regeneratorRuntime.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=this.props,i=r.match,o=r.location,a=this.state.extraProps,this.setState({extraProps:x({},a,{fetchingProps:!0})}),n.next=5,e.getInitialProps(x({isServer:!1,route:i,location:o,prevInitialProps:a},t));case 5:if(n.t0=n.sent,n.t0){n.next=8;break}n.t0={};case 8:s=n.t0,s.fetchingProps=!1,this.setState({extraProps:s});case 11:case"end":return n.stop()}},n,this)}));function r(){return n.apply(this,arguments)}return r}()},{key:"render",value:function(){return r.default.createElement(e,x({},this.props,{},this.state.extraProps))}}]),a}(r.default.Component),n}function P(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},o=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},a=n("PszG");return e?r.default.createElement(i.Switch,o,e.map(function(e,n){if(e.redirect)return r.default.createElement(i.Redirect,{key:e.key||n,from:e.path,to:e.redirect,exact:e.exact,strict:e.strict});var o=e.Routes?T(e):k;return r.default.createElement(o,{key:e.key||n,path:e.path,exact:e.exact,strict:e.strict,sensitive:e.sensitive,render:function(n){var i=n.location;A&&(t={});var o=P(e.routes,t,{location:i});if(e.component){var s=O(x({},n,{},t)),l=a.apply("modifyRouteProps",{initialValue:x({},n,{},t,{},s),args:{route:e}}),c=e.component;if(c.getInitialProps){var u=a.apply("modifyInitialProps",{initialValue:{}});c.wrappedWithInitialProps||(c=M(c,u,t),e.component=c)}return r.default.createElement(c,b({key:e.path},l,{route:e}),o)}return o}})})):null}},Ctgt:function(e,t,n){"use strict";n.r(t);var r=n("q1tI"),i=n.n(r),o=n("17x9"),a=n.n(o),s=n("VCL8");function l(){return l=Object.assign||function(e){for(var t=1;t=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(i[n]=e[n])}return i}function u(e,t){if(null==e)return{};var n,r,i={},o=Object.keys(e);for(r=0;r=0||(i[n]=e[n]);return i}function h(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function d(e,t){for(var n=0;n1?arguments[1]:void 0,3);while(n=n?n.n:this._f){r(n.v,n.k,this);while(n&&n.r)n=n.p}},has:function(e){return!!g(p(this,t),e)}}),d&&r(u.prototype,"size",{get:function(){return p(this,t)[m]}}),u},def:function(e,t,n){var r,i,o=g(e,t);return o?o.v=n:(e._l=o={i:i=f(t,!0),k:t,v:n,p:r=e._l,n:void 0,r:!1},e._f||(e._f=o),r&&(r.n=o),e[m]++,"F"!==i&&(e._i[i]=o)),e},getEntry:g,setStrong:function(e,t,n){c(e,t,function(e,n){this._t=p(e,t),this._k=n,this._l=void 0},function(){var e=this,t=e._k,n=e._l;while(n&&n.r)n=n.p;return e._t&&(e._l=n=n?n.n:e._t._f)?u(0,"keys"==t?n.k:"values"==t?n.v:[n.k,n.v]):(e._t=void 0,u(1))},n?"entries":"values",!n,!0),h(t)}}},D8kY:function(e,t,n){var r=n("Ojgd"),i=Math.max,o=Math.min;e.exports=function(e,t){return e=r(e),e<0?i(e+t,0):o(e,t)}},DBt0:function(e,t,n){"use strict";var r=n("7vYJ"),i=n("il4q"),o=n("OsVd"),a=n("AUWw"),s=n("ETUh"),l=n("bsDr"),c=Math.max,u=Math.min,h=Math.floor,d=/\$([$&`']|\d\d?|<[^>]*>)/g,f=/\$([$&`']|\d\d?)/g,p=function(e){return void 0===e?e:String(e)};n("h7Gi")("replace",2,function(e,t,n,m){return[function(r,i){var o=e(this),a=void 0==r?void 0:r[t];return void 0!==a?a.call(r,o,i):n.call(String(o),r,i)},function(e,t){var i=m(n,e,this,t);if(i.done)return i.value;var h=r(e),d=String(this),f="function"===typeof t;f||(t=String(t));var v=h.global;if(v){var y=h.unicode;h.lastIndex=0}var b=[];while(1){var w=l(h,d);if(null===w)break;if(b.push(w),!v)break;var x=String(w[0]);""===x&&(h.lastIndex=s(d,o(h.lastIndex),y))}for(var _="",S=0,C=0;C=S&&(_+=d.slice(S,k)+P,S=k+E.length)}return _+d.slice(S)}];function g(e,t,r,o,a,s){var l=r+e.length,c=o.length,u=f;return void 0!==a&&(a=i(a),u=d),n.call(s,u,function(n,i){var s;switch(i.charAt(0)){case"$":return"$";case"&":return e;case"`":return t.slice(0,r);case"'":return t.slice(l);case"<":s=a[i.slice(1,-1)];break;default:var u=+i;if(0===u)return n;if(u>c){var d=h(u/10);return 0===d?n:d<=c?void 0===o[d-1]?i.charAt(1):o[d-1]+i.charAt(1):n}s=o[u-1]}return void 0===s?"":s})}})},DFAo:function(e,t,n){"use strict";n("Bz7s");var r=n("7vYJ"),i=n("7tNx"),o=n("8Z/V"),a="toString",s=/./[a],l=function(e){n("rKIl")(RegExp.prototype,a,e,!0)};n("wUWy")(function(){return"/a/b"!=s.call({source:"a",flags:"b"})})?l(function(){var e=r(this);return"/".concat(e.source,"/","flags"in e?e.flags:!o&&e instanceof RegExp?i.call(e):void 0)}):s.name!=a&&l(function(){return s.call(this)})},DIcO:function(e,t,n){var r=n("gL7N")("unscopables"),i=Array.prototype;void 0==i[r]&&n("VPOE")(i,r,{}),e.exports=function(e){i[r][e]=!0}},DN2a:function(e,t){window.MutationObserver||(window.MutationObserver=function(e){function t(e){this.i=[],this.m=e}function n(e){(function n(){var r=e.takeRecords();r.length&&e.m(r,e),e.h=setTimeout(n,t._period)})()}function r(t){var n,r={type:null,target:null,addedNodes:[],removedNodes:[],previousSibling:null,nextSibling:null,attributeName:null,attributeNamespace:null,oldValue:null};for(n in t)r[n]!==e&&t[n]!==e&&(r[n]=t[n]);return r}function i(e,t){var n=c(e,t);return function(i){var o=i.length;if(t.a&&3===e.nodeType&&e.nodeValue!==n.a&&i.push(new r({type:"characterData",target:e,oldValue:n.a})),t.b&&n.b&&s(i,e,n.b,t.f),t.c||t.g)var a=l(i,e,n,t);(a||i.length!==o)&&(n=c(e,t))}}function o(e,t){return t.value}function a(e,t){return"style"!==t.name?t.value:e.style.cssText}function s(t,n,i,o){for(var a,s,l={},c=n.attributes,u=c.length;u--;)a=c[u],s=a.name,o&&o[s]===e||(m(n,a)!==i[s]&&t.push(r({type:"attributes",target:n,attributeName:s,oldValue:i[s],attributeNamespace:a.namespaceURI})),l[s]=!0);for(s in i)l[s]||t.push(r({target:n,type:"attributes",attributeName:s,oldValue:i[s]}))}function l(t,n,i,o){function a(e,n,i,a,c){var u,h,d,f=e.length-1;for(c=-~((f-c)/2);d=e.pop();)u=i[d.j],h=a[d.l],o.c&&c&&Math.abs(d.j-d.l)>=f&&(t.push(r({type:"childList",target:n,addedNodes:[u],removedNodes:[u],nextSibling:u.nextSibling,previousSibling:u.previousSibling})),c--),o.b&&h.b&&s(t,u,h.b,o.f),o.a&&3===u.nodeType&&u.nodeValue!==h.a&&t.push(r({type:"characterData",target:u,oldValue:h.a})),o.g&&l(u,h)}function l(n,i){for(var h,d,p,m,g,v=n.childNodes,y=i.c,b=v.length,w=y?y.length:0,x=0,_=0,S=0;_2&&l.push(t),t=[e,n]}function p(e,n,r,i){v(e,r)&&v(n,i)||t.push(e,n,r,i,r,i)}function m(e,n,r,i,o,a){var s=Math.abs(n-e),l=4*Math.tan(s/4)/3,c=nk:A2&&l.push(t),l}function b(e,t,n,i,o,a,s,l,c,u){if(v(e,n)&&v(t,i)&&v(o,s)&&v(a,l))c.push(s,l);else{var h=2/u,d=h*h,f=s-e,p=l-t,m=Math.sqrt(f*f+p*p);f/=m,p/=m;var g=n-e,y=i-t,w=o-s,x=a-l,_=g*g+y*y,S=w*w+x*x;if(_=0&&O=0)c.push(s,l);else{var T=[],A=[];Object(r["g"])(e,n,o,s,.5,T),Object(r["g"])(t,i,a,l,.5,A),b(T[0],A[0],T[1],A[1],T[2],A[2],T[3],A[3],c,u),b(T[4],A[4],T[5],A[5],T[6],A[6],T[7],A[7],c,u)}}}}function w(e,t){var n=y(e),r=[];t=t||1;for(var i=0;i0)for(c=0;cMath.abs(c),h=x([l,c],u?0:1,t),d=(u?s:c)/h.length,f=0;fi,a=x([r,i],o?0:1,t),s=o?"width":"height",l=o?"height":"width",c=o?"x":"y",u=o?"y":"x",h=e[s]/a.length,d=0;d1?null:new h["a"](g*l+e,g*c+t)}function k(e,t,n){var r=new h["a"];h["a"].sub(r,n,t),r.normalize();var i=new h["a"];h["a"].sub(i,e,t);var o=i.dot(r);return o}function O(e,t){var n=e[e.length-1];n&&n[0]===t[0]&&n[1]===t[1]||e.push(t)}function T(e,t,n){for(var r=e.length,i=[],o=0;oa?(d.x=f.x=s+o/2,d.y=l,f.y=l+a):(d.y=f.y=l+a/2,d.x=s,f.x=s+o),T(t,d,f)}function M(e,t,n,r){if(1===n)r.push(t);else{var i=Math.floor(n/2),o=e(t);M(e,o[0],i,r),M(e,o[1],n-i,r)}return r}function P(e,t){for(var n=[],r=0;r0)for(var x=r/n,_=-r/2;_<=r/2;_+=x){var S=Math.sin(_),C=Math.cos(_),E=0;for(b=0;b0;c/=2){var u=0,h=0;(e&c)>0&&(u=1),(t&c)>0&&(h=1),l+=c*c*(3*u^h),0===h&&(1===u&&(e=c-1-e,t=c-1-t),s=e,e=t,t=s)}return l}function X(e){var t=1/0,n=1/0,r=-1/0,i=-1/0,a=Object(o["F"])(e,function(e){var o=e.getBoundingRect(),a=e.getComputedTransform(),s=o.x+o.width/2+(a?a[4]:0),l=o.y+o.height/2+(a?a[5]:0);return t=Math.min(s,t),n=Math.min(l,n),r=Math.max(s,r),i=Math.max(l,i),[s,l]}),s=Object(o["F"])(a,function(o,a){return{cp:o,z:Y(o[0],o[1],t,n,r,i),path:e[a]}});return s.sort(function(e,t){return e.z-t.z}).map(function(e){return e.path})}function Q(e){return D(e.path,e.count)}function Z(){return{fromIndividuals:[],toIndividuals:[],count:0}}function J(e,t,n){var r=[];function a(e){for(var t=0;t=0?t:0)+"#"+e)},b=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};(0,s.default)(d.canUseDOM,"Hash history needs a DOM");var t=window.history,n=(0,d.supportsGoWithoutReloadUsingHash)(),i=e.getUserConfirmation,a=void 0===i?d.getConfirmation:i,u=e.hashType,f=void 0===u?"slash":u,b=e.basename?(0,c.stripTrailingSlash)((0,c.addLeadingSlash)(e.basename)):"",w=m[f],x=w.encodePath,_=w.decodePath,S=function(){var e=_(g());return(0,o.default)(!b||(0,c.hasBasename)(e,b),'You are attempting to use a basename on a page whose URL path does not begin with the basename. Expected path "'+e+'" to begin with "'+b+'".'),b&&(e=(0,c.stripBasename)(e,b)),(0,l.createLocation)(e)},C=(0,h.default)(),E=function(e){r(q,e),q.length=t.length,C.notifyListeners(q.location,q.action)},k=!1,O=null,T=function(){var e=g(),t=x(e);if(e!==t)y(t);else{var n=S(),r=q.location;if(!k&&(0,l.locationsAreEqual)(r,n))return;if(O===(0,c.createPath)(n))return;O=null,A(n)}},A=function(e){if(k)k=!1,E();else{var t="POP";C.confirmTransitionTo(e,t,a,function(n){n?E({action:t,location:e}):M(e)})}},M=function(e){var t=q.location,n=D.lastIndexOf((0,c.createPath)(t));-1===n&&(n=0);var r=D.lastIndexOf((0,c.createPath)(e));-1===r&&(r=0);var i=n-r;i&&(k=!0,$(i))},P=g(),R=x(P);P!==R&&y(R);var L=S(),D=[(0,c.createPath)(L)],j=function(e){return"#"+x(b+(0,c.createPath)(e))},N=function(e,t){(0,o.default)(void 0===t,"Hash history cannot push state; it is ignored");var n="PUSH",r=(0,l.createLocation)(e,void 0,void 0,q.location);C.confirmTransitionTo(r,n,a,function(e){if(e){var t=(0,c.createPath)(r),i=x(b+t),a=g()!==i;if(a){O=t,v(i);var s=D.lastIndexOf((0,c.createPath)(q.location)),l=D.slice(0,-1===s?0:s+1);l.push(t),D=l,E({action:n,location:r})}else(0,o.default)(!1,"Hash history cannot PUSH the same path; a new entry will not be added to the history stack"),E()}})},I=function(e,t){(0,o.default)(void 0===t,"Hash history cannot replace state; it is ignored");var n="REPLACE",r=(0,l.createLocation)(e,void 0,void 0,q.location);C.confirmTransitionTo(r,n,a,function(e){if(e){var t=(0,c.createPath)(r),i=x(b+t),o=g()!==i;o&&(O=t,y(i));var a=D.indexOf((0,c.createPath)(q.location));-1!==a&&(D[a]=t),E({action:n,location:r})}})},$=function(e){(0,o.default)(n,"Hash history go(n) causes a full page reload in this browser"),t.go(e)},F=function(){return $(-1)},V=function(){return $(1)},B=0,W=function(e){B+=e,1===B?window.addEventListener(p,T):0===B&&window.removeEventListener(p,T)},H=!1,z=function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0],t=C.setPrompt(e);return H||(W(1),H=!0),function(){return H&&(H=!1,W(-1)),t()}},U=function(e){var t=C.appendListener(e);return W(1),function(){W(-1),t()}},q={length:t.length,action:"POP",location:L,createHref:j,push:N,replace:I,go:$,goBack:F,goForward:V,block:z,listen:U};return q};t.default=b},ERIh:function(e,t,n){"use strict";n.r(t),n.d(t,"dva",function(){return h});var r=n("yWgo"),i=n("nDCI"),o=n("wd/R"),a=n.n(o),s=(n("XDpg"),window.settings),l=s.theme,c=s.host,u=document.createElement("link");u.rel="stylesheet",u.href=c?"./theme/".concat(l.color,".css"):"./assets/admin/theme/".concat(l.color,".css"),document.getElementsByTagName("head")[0].appendChild(u),a.a.locale("zh-cn"),"1"===Object(r["b"])("dark_mode")&&Object(i["enable"])({brightness:100,contrast:90,sepia:10});var h={config:{onError(e){e.preventDefault()}}}},ETUh:function(e,t,n){"use strict";var r=n("6RnP")(!0);e.exports=function(e,t,n){return t+(n?r(e,t).length:1)}},EVqI:function(e,t,n){"use strict";function r(){return r=Object.assign||function(e){for(var t=1;t{return e.is_me?o.a.createElement("div",null,o.a.createElement("div",{className:"font-size-sm font-italic text-muted animated fadeIn my-2 text-right"},c()(1e3*e.created_at).format("YYYY/MM/DD HH:mm")),o.a.createElement("div",{className:"text-right ml-4"},o.a.createElement("div",{className:"d-inline-block font-w600 animated fadeIn bg-body-light border-3x px-3 py-2 mb-2 shadow-sm mw-100 border-right border-primary rounded-left text-left"},e.message))):o.a.createElement("div",null,o.a.createElement("div",{className:"font-size-sm font-italic text-muted animated fadeIn my-2"},c()(1e3*e.created_at).format("YYYY/MM/DD HH:mm")),o.a.createElement("div",{className:"mr-4"},o.a.createElement("div",{className:"d-inline-block font-w600 animated fadeIn bg-body-light border-3x px-3 py-2 mb-2 shadow-sm mw-100 border-left border-dark rounded-right"},e.message)))})),o.a.createElement("div",{className:"js-chat-form block-content p-2 bg-body-dark"},o.a.createElement("input",{onKeyDown:e=>this.props.onKeyDown(e,()=>{this.refs.message&&(this.refs.message.value="")}),ref:"message",type:"text",className:"js-chat-input form-control form-control-alt",placeholder:"\u8f93\u5165\u5185\u5bb9\u56de\u590d\u5de5\u5355...",onChange:e=>this.props.onChange(e)})))}}class d extends o.a.Component{constructor(e){super(e),this.state={message:void 0,submit:{}}}componentDidMount(){this.props.dispatch({type:"ticket/fetchById",id:this.props.match.params.ticket_id}),this.props.dispatch({type:"plan/fetch"}),this.check()}check(){r=setTimeout(()=>{this.props.dispatch({type:"ticket/fetchById",id:this.props.match.params.ticket_id}),this.check()},5e3)}componentWillUnmount(){clearTimeout(r)}reply(e){this.props.dispatch({type:"ticket/reply",id:this.props.match.params.ticket_id,msg:this.state.message,callback:()=>{e()}})}render(){var e=this.props.user.user,t=this.props.ticket,n=t.ticket,r=t.replyLoading;return o.a.createElement(h,{ticket:n,user:e,onKeyDown:(e,t)=>{13!==e.keyCode||r||this.reply(t)},onChange:e=>{this.setState({message:e.target.value})}})}}t["default"]=Object(a["c"])(e=>{var t=e.user,n=e.ticket;return{user:t,ticket:n}})(d)},FYw3:function(e,t,n){"use strict";t.__esModule=!0;var r=n("EJiy"),i=o(r);function o(e){return e&&e.__esModule?e:{default:e}}t.default=function(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==("undefined"===typeof t?"undefined":(0,i.default)(t))&&"function"!==typeof t?e:t}},FfBw:function(e,t){"function"===typeof Object.create?e.exports=function(e,t){e.super_=t,e.prototype=Object.create(t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}})}:e.exports=function(e,t){e.super_=t;var n=function(){};n.prototype=t.prototype,e.prototype=new n,e.prototype.constructor=e}},FlQf:function(e,t,n){"use strict";var r=n("ccE7")(!0);n("MPFp")(String,"String",function(e){this._t=String(e),this._i=0},function(){var e,t=this._t,n=this._i;return n>=t.length?{value:void 0,done:!0}:(e=r(t,n),this._i+=e.length,{value:e,done:!1})})},Fofx:function(e,t,n){"use strict";function r(){return[1,0,0,1,0,0]}function i(e){return e[0]=1,e[1]=0,e[2]=0,e[3]=1,e[4]=0,e[5]=0,e}function o(e,t){return e[0]=t[0],e[1]=t[1],e[2]=t[2],e[3]=t[3],e[4]=t[4],e[5]=t[5],e}function a(e,t,n){var r=t[0]*n[0]+t[2]*n[1],i=t[1]*n[0]+t[3]*n[1],o=t[0]*n[2]+t[2]*n[3],a=t[1]*n[2]+t[3]*n[3],s=t[0]*n[4]+t[2]*n[5]+t[4],l=t[1]*n[4]+t[3]*n[5]+t[5];return e[0]=r,e[1]=i,e[2]=o,e[3]=a,e[4]=s,e[5]=l,e}function s(e,t,n){return e[0]=t[0],e[1]=t[1],e[2]=t[2],e[3]=t[3],e[4]=t[4]+n[0],e[5]=t[5]+n[1],e}function l(e,t,n){var r=t[0],i=t[2],o=t[4],a=t[1],s=t[3],l=t[5],c=Math.sin(n),u=Math.cos(n);return e[0]=r*u+a*c,e[1]=-r*c+a*u,e[2]=i*u+s*c,e[3]=-i*c+u*s,e[4]=u*o+c*l,e[5]=u*l-c*o,e}function c(e,t,n){var r=n[0],i=n[1];return e[0]=t[0]*r,e[1]=t[1]*i,e[2]=t[2]*r,e[3]=t[3]*i,e[4]=t[4]*r,e[5]=t[5]*i,e}function u(e,t){var n=t[0],r=t[2],i=t[4],o=t[1],a=t[3],s=t[5],l=n*a-o*r;return l?(l=1/l,e[0]=a*l,e[1]=-o*l,e[2]=-r*l,e[3]=n*l,e[4]=(r*s-a*i)*l,e[5]=(o*i-n*s)*l,e):null}n.d(t,"b",function(){return r}),n.d(t,"c",function(){return i}),n.d(t,"a",function(){return o}),n.d(t,"e",function(){return a}),n.d(t,"h",function(){return s}),n.d(t,"f",function(){return l}),n.d(t,"g",function(){return c}),n.d(t,"d",function(){return u})},FpHa:function(e,t){e.exports="constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf".split(",")},FqPH:function(e,t){e.exports=!1},FwrZ:function(e,t,n){"use strict";t.__esModule=!0;t.addLeadingSlash=function(e){return"/"===e.charAt(0)?e:"/"+e},t.stripLeadingSlash=function(e){return"/"===e.charAt(0)?e.substr(1):e};var r=t.hasBasename=function(e,t){return new RegExp("^"+t+"(\\/|\\?|#|$)","i").test(e)};t.stripBasename=function(e,t){return r(e,t)?e.substr(t.length):e},t.stripTrailingSlash=function(e){return"/"===e.charAt(e.length-1)?e.slice(0,-1):e},t.parsePath=function(e){var t=e||"/",n="",r="",i=t.indexOf("#");-1!==i&&(r=t.substr(i),t=t.substr(0,i));var o=t.indexOf("?");return-1!==o&&(n=t.substr(o),t=t.substr(0,o)),{pathname:t,search:"?"===n?"":n,hash:"#"===r?"":r}},t.createPath=function(e){var t=e.pathname,n=e.search,r=e.hash,i=t||"/";return n&&"?"!==n&&(i+="?"===n.charAt(0)?n:"?"+n),r&&"#"!==r&&(i+="#"===r.charAt(0)?r:"#"+r),i}},G7Hh:function(e,t,n){"use strict";var r=n("7vYJ"),i=n("A22h"),o=n("bsDr");n("h7Gi")("search",1,function(e,t,n,a){return[function(n){var r=e(this),i=void 0==n?void 0:n[t];return void 0!==i?i.call(n,r):new RegExp(n)[t](String(r))},function(e){var t=a(n,e,this);if(t.done)return t.value;var s=r(e),l=String(this),c=s.lastIndex;i(c,0)||(s.lastIndex=0);var u=o(s,l);return i(s.lastIndex,c)||(s.lastIndex=c),null===u?-1:u.index}]})},G8Mo:function(e,t,n){var r=n("93I4");e.exports=function(e,t){if(!r(e))return e;var n,i;if(t&&"function"==typeof(n=e.toString)&&!r(i=n.call(e)))return i;if("function"==typeof(n=e.valueOf)&&!r(i=n.call(e)))return i;if(!t&&"function"==typeof(n=e.toString)&&!r(i=n.call(e)))return i;throw TypeError("Can't convert object to primitive value")}},"GB+t":function(e,t,n){"use strict";var r=function(){};e.exports=r},GYWy:function(e,t,n){(function(e,r){var i;(function(o){t&&t.nodeType,e&&e.nodeType;var a="object"==typeof r&&r;a.global!==a&&a.window!==a&&a.self;var s,l=2147483647,c=36,u=1,h=26,d=38,f=700,p=72,m=128,g="-",v=/^xn--/,y=/[^\x20-\x7E]/,b=/[\x2E\u3002\uFF0E\uFF61]/g,w={overflow:"Overflow: input needs wider integers to process","not-basic":"Illegal input >= 0x80 (not a basic code point)","invalid-input":"Invalid input"},x=c-u,_=Math.floor,S=String.fromCharCode;function C(e){throw new RangeError(w[e])}function E(e,t){var n=e.length,r=[];while(n--)r[n]=t(e[n]);return r}function k(e,t){var n=e.split("@"),r="";n.length>1&&(r=n[0]+"@",e=n[1]),e=e.replace(b,".");var i=e.split("."),o=E(i,t).join(".");return r+o}function O(e){var t,n,r=[],i=0,o=e.length;while(i=55296&&t<=56319&&i65535&&(e-=65536,t+=S(e>>>10&1023|55296),e=56320|1023&e),t+=S(e),t}).join("")}function A(e){return e-48<10?e-22:e-65<26?e-65:e-97<26?e-97:c}function M(e,t){return e+22+75*(e<26)-((0!=t)<<5)}function P(e,t,n){var r=0;for(e=n?_(e/f):e>>1,e+=_(e/t);e>x*h>>1;r+=c)e=_(e/x);return _(r+(x+1)*e/(e+d))}function R(e){var t,n,r,i,o,a,s,d,f,v,y=[],b=e.length,w=0,x=m,S=p;for(n=e.lastIndexOf(g),n<0&&(n=0),r=0;r=128&&C("not-basic"),y.push(e.charCodeAt(r));for(i=n>0?n+1:0;i=b&&C("invalid-input"),d=A(e.charCodeAt(i++)),(d>=c||d>_((l-w)/a))&&C("overflow"),w+=d*a,f=s<=S?u:s>=S+h?h:s-S,d_(l/v)&&C("overflow"),a*=v}t=y.length+1,S=P(w-o,t,0==o),_(w/t)>l-x&&C("overflow"),x+=_(w/t),w%=t,y.splice(w++,0,x)}return T(y)}function L(e){var t,n,r,i,o,a,s,d,f,v,y,b,w,x,E,k=[];for(e=O(e),b=e.length,t=m,n=0,o=p,a=0;a=t&&y_((l-n)/w)&&C("overflow"),n+=(s-t)*w,t=s,a=0;al&&C("overflow"),y==t){for(d=n,f=c;;f+=c){if(v=f<=o?u:f>=o+h?h:f-o,d{Object.keys(l["a"].periodText).forEach(t=>{null!==e[t]&&(e[t]=null!==e[t]?e[t]/100:null)})}),e.next=13,n({type:"setState",payload:{plans:r.data}});case 13:case"end":return e.stop()}},e)})()},save(e,t){return i.a.mark(function n(){var r,o,a,c;return i.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.params,o=e.callback,a=t.put,n.next=4,a({type:"setState",payload:{saveLoading:!0}});case 4:return Object.keys(l["a"].periodText).forEach(e=>{null!==r[e]&&(r[e]=null!==r[e]?Math.round(100*r[e]):null)}),n.next=7,Object(s["b"])("/admin/plan/save",r);case 7:return c=n.sent,n.next=10,a({type:"setState",payload:{saveLoading:!1}});case 10:if(200===c.code){n.next=12;break}return n.abrupt("return");case 12:return n.next=14,a({type:"fetch"});case 14:"function"===typeof o&&o();case 15:case"end":return n.stop()}},n)})()},drop(e,t){return i.a.mark(function n(){var r,o,a;return i.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.id,o=t.put,n.next=4,Object(s["b"])("/admin/plan/drop",{id:r});case 4:if(a=n.sent,200===a.code){n.next=7;break}return n.abrupt("return");case 7:return n.next=9,o({type:"fetch"});case 9:case"end":return n.stop()}},n)})()},update(e,t){return i.a.mark(function n(){var r,o,a,l,c;return i.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.id,o=e.key,a=e.value,l=t.put,n.next=4,Object(s["b"])("/admin/plan/update",{id:r,[o]:a});case 4:if(c=n.sent,200===c.code){n.next=7;break}return n.abrupt("return");case 7:return n.next=9,l({type:"fetch"});case 9:case"end":return n.stop()}},n)})()},sort(e,t){return i.a.mark(function n(){var r,o,a,l,c,u,h;return i.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.fromIndex,o=e.toIndex,a=t.select,l=t.put,n.next=4,l({type:"setState",payload:{fetchLoading:!0}});case 4:return n.next=6,a(e=>e.plan);case 6:return c=n.sent,u=c.plans,re.id)});case 13:if(h=n.sent,200===h.code){n.next=16;break}return n.abrupt("return");case 16:return n.next=18,l({type:"fetch"});case 18:case"end":return n.stop()}},n)})()}}}},GrtH:function(e,t,n){"use strict";n.d(t,"e",function(){return l}),n.d(t,"d",function(){return c}),n.d(t,"f",function(){return u}),n.d(t,"b",function(){return h}),n.d(t,"h",function(){return d}),n.d(t,"c",function(){return f}),n.d(t,"g",function(){return g}),n.d(t,"a",function(){return v});var r=n("QbLZ"),i=n.n(r),o=n("wd/R"),a=n.n(o),s={disabledHours:function(){return[]},disabledMinutes:function(){return[]},disabledSeconds:function(){return[]}};function l(e){var t=a()();return t.locale(e.locale()).utcOffset(e.utcOffset()),t}function c(e){return e.format("LL")}function u(e){var t=l(e);return c(t)}function h(e){var t=e.locale(),n=e.localeData();return n["zh-cn"===t?"months":"monthsShort"](e)}function d(e,t){a.a.isMoment(e)&&a.a.isMoment(t)&&(t.hour(e.hour()),t.minute(e.minute()),t.second(e.second()),t.millisecond(e.millisecond()))}function f(e,t){var n=t?t(e):{};return n=i()({},s,n),n}function p(e,t){var n=!1;if(e){var r=e.hour(),i=e.minute(),o=e.second(),a=t.disabledHours();if(-1===a.indexOf(r)){var s=t.disabledMinutes(r);if(-1===s.indexOf(i)){var l=t.disabledSeconds(r,i);n=-1!==l.indexOf(o)}else n=!0}else n=!0}return!n}function m(e,t){var n=f(e,t);return p(e,n)}function g(e,t,n){return(!t||!t(e))&&!(n&&!m(e,n))}function v(e,t){return e?(Array.isArray(t)&&(t=t[0]),e.format(t)):""}},GsrZ:function(e,t){e.exports="\t\n\v\f\r \xa0\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000\u2028\u2029\ufeff"},Gytx:function(e,t){e.exports=function(e,t,n,r){var i=n?n.call(r,e,t):void 0;if(void 0!==i)return!!i;if(e===t)return!0;if("object"!==typeof e||!e||"object"!==typeof t||!t)return!1;var o=Object.keys(e),a=Object.keys(t);if(o.length!==a.length)return!1;for(var s=Object.prototype.hasOwnProperty.bind(t),l=0;l{this.onShow()}})}showChildDrawer(e,t){this.setState({childDrawer:c()({},this.state.childDrawer,{visible:!this.state.childDrawer.visible,title:e,type:t})})}changeServer(e,t){this.setState({server:c()({},this.state.server,{[e]:t})})}formChange(e,t){this.setState({server:c()({},this.state.server,{[e]:t})})}render(){var e=this.state.server,t=this.props.serverShadowsocks.saveLoading,n=this.props.serverManage.servers,l=this.props.serverGroup.groups;return h.a.createElement(h.a.Fragment,null,h.a.cloneElement(this.props.children,{onClick:()=>this.setState({visible:!0})}),h.a.createElement(r["a"],{id:"server",maskClosable:!0,title:e.id?"\u7f16\u8f91\u8282\u70b9":"\u65b0\u5efa\u8282\u70b9",width:"80%",visible:this.state.visible,onClose:()=>this.onShow()},h.a.createElement("div",null,h.a.createElement("div",{className:"row"},h.a.createElement("div",{className:"form-group col-8"},h.a.createElement("label",null,"\u8282\u70b9\u540d\u79f0"),h.a.createElement(s["a"],{placeholder:"\u8bf7\u8f93\u5165\u8282\u70b9\u540d\u79f0",value:e.name,onChange:e=>this.formChange("name",e.target.value)})),h.a.createElement("div",{className:"form-group col-4"},h.a.createElement("label",null,"\u500d\u7387"),h.a.createElement(s["a"],{addonAfter:"x",placeholder:"\u8bf7\u8f93\u5165\u8282\u70b9\u500d\u7387",value:e.rate,onChange:e=>this.formChange("rate",e.target.value)}))),h.a.createElement("div",{className:"form-group"},h.a.createElement("label",null,"\u8282\u70b9\u6807\u7b7e"),h.a.createElement(a["a"],{mode:"tags",value:e.tags||[],style:{width:"100%"},placeholder:"\u8f93\u5165\u540e\u56de\u8f66\u6dfb\u52a0\u6807\u7b7e",onChange:e=>this.formChange("tags",e.length>0?e:null)})),h.a.createElement("div",{className:"form-group"},h.a.createElement("label",null,"\u6743\u9650\u7ec4 ",h.a.createElement(f["a"],null,h.a.createElement("a",{href:"javascript:(0);"},"\u6dfb\u52a0\u6743\u9650\u7ec4"))),h.a.createElement(a["a"],{mode:"multiple",value:e.group_id,placeholder:"\u8bf7\u9009\u62e9\u6743\u9650\u7ec4",style:{width:"100%"},onChange:e=>this.formChange("group_id",e)},l.map(e=>{return h.a.createElement(a["a"].Option,{key:e.id},e.name)}))),h.a.createElement("div",{className:"row"},h.a.createElement("div",{className:"form-group col-md-12 col-xs-12"},h.a.createElement("label",null,"\u8282\u70b9\u5730\u5740"),h.a.createElement(s["a"],{placeholder:"\u5730\u5740\u6216IP",value:e.host,onChange:e=>this.formChange("host",e.target.value)}))),h.a.createElement("div",{className:"row"},h.a.createElement("div",{className:"form-group col-md-6 col-xs-12"},h.a.createElement("label",null,"\u8fde\u63a5\u7aef\u53e3"),h.a.createElement(s["a"],{placeholder:"\u7528\u6237\u8fde\u63a5\u7aef\u53e3",value:e.port,onChange:e=>{this.formChange("port",e.target.value)}})),h.a.createElement("div",{className:"form-group col-md-6 col-xs-12"},h.a.createElement("label",null,"\u670d\u52a1\u7aef\u53e3"),h.a.createElement(s["a"],{placeholder:"\u670d\u52a1\u7aef\u5f00\u653e\u7aef\u53e3",value:e.server_port,onChange:e=>{this.formChange("server_port",e.target.value)}}))),h.a.createElement("div",{className:"form-group"},h.a.createElement("label",null,"\u52a0\u5bc6\u7b97\u6cd5"),h.a.createElement(a["a"],{value:e.cipher,onChange:e=>this.formChange("cipher",e),style:{width:"100%"}},h.a.createElement(a["a"].Option,{value:"aes-128-gcm"},"aes-128-gcm"),h.a.createElement(a["a"].Option,{value:"aes-256-gcm"},"aes-256-gcm"),h.a.createElement(a["a"].Option,{value:"chacha20-ietf-poly1305"},"chacha20-ietf-poly1305"))),h.a.createElement("div",{className:"form-group"},h.a.createElement("label",null,h.a.createElement(o["a"],{placement:"top"},"\u7236\u8282\u70b9 ",h.a.createElement("a",{target:"_blank",href:"https://docs.v2board.com/use/node.html#\u7236\u8282\u70b9\u4e0e\u5b50\u8282\u70b9\u5173\u7cfb"},"\u66f4\u591a\u89e3\u7b54"))),h.a.createElement(a["a"],{value:e.parent_id||"",onChange:e=>this.formChange("parent_id",e),style:{width:"100%"}},h.a.createElement(a["a"].Option,{value:""},"\u65e0"),n.map(t=>{if("shadowsocks"===t.type&&t.id!==e.id)return h.a.createElement(a["a"].Option,{key:Math.random(),value:t.id},t.name)})))),h.a.createElement("div",{className:"v2board-drawer-action"},h.a.createElement(i["a"],{style:{marginRight:8},onClick:()=>this.onShow()},"\u53d6\u6d88"),h.a.createElement(i["a"],{loading:t,onClick:()=>this.save(),type:"primary"},"\u63d0\u4ea4"))))}}t["a"]=Object(d["c"])(e=>{var t=e.serverShadowsocks,n=e.serverGroup,r=e.serverManage;return{serverShadowsocks:t,serverGroup:n,serverManage:r}})(p)},HCMe:function(e,t,n){n("Jaki")("Int32",4,function(e){return function(t,n,r){return e(this,t,n,r)}})},HXXR:function(e,t,n){"use strict";var r,i,o,a,s=n("FqPH"),l=n("c0Oy"),c=n("wHrr"),u=n("2a/h"),h=n("WGNW"),d=n("u8+u"),f=n("wYm8"),p=n("YEVI"),m=n("4o36"),g=n("VeyY"),v=n("vMx4").set,y=n("rTWY")(),b=n("+mmm"),w=n("NaAv"),x=n("08Qx"),_=n("tGd3"),S="Promise",C=l.TypeError,E=l.process,k=E&&E.versions,O=k&&k.v8||"",T=l[S],A="process"==u(E),M=function(){},P=i=b.f,R=!!function(){try{var e=T.resolve(1),t=(e.constructor={})[n("gL7N")("species")]=function(e){e(M,M)};return(A||"function"==typeof PromiseRejectionEvent)&&e.then(M)instanceof t&&0!==O.indexOf("6.6")&&-1===x.indexOf("Chrome/66")}catch(e){}}(),L=function(e){var t;return!(!d(e)||"function"!=typeof(t=e.then))&&t},D=function(e,t){if(!e._n){e._n=!0;var n=e._c;y(function(){var r=e._v,i=1==e._s,o=0,a=function(t){var n,o,a,s=i?t.ok:t.fail,l=t.resolve,c=t.reject,u=t.domain;try{s?(i||(2==e._h&&I(e),e._h=1),!0===s?n=r:(u&&u.enter(),n=s(r),u&&(u.exit(),a=!0)),n===t.promise?c(C("Promise-chain cycle")):(o=L(n))?o.call(n,l,c):l(n)):c(r)}catch(e){u&&!a&&u.exit(),c(e)}};while(n.length>o)a(n[o++]);e._c=[],e._n=!1,t&&!e._h&&j(e)})}},j=function(e){v.call(l,function(){var t,n,r,i=e._v,o=N(e);if(o&&(t=w(function(){A?E.emit("unhandledRejection",i,e):(n=l.onunhandledrejection)?n({promise:e,reason:i}):(r=l.console)&&r.error&&r.error("Unhandled promise rejection",i)}),e._h=A||N(e)?2:1),e._a=void 0,o&&t.e)throw t.v})},N=function(e){return 1!==e._h&&0===(e._a||e._c).length},I=function(e){v.call(l,function(){var t;A?E.emit("rejectionHandled",e):(t=l.onrejectionhandled)&&t({promise:e,reason:e._v})})},$=function(e){var t=this;t._d||(t._d=!0,t=t._w||t,t._v=e,t._s=2,t._a||(t._a=t._c.slice()),D(t,!0))},F=function(e){var t,n=this;if(!n._d){n._d=!0,n=n._w||n;try{if(n===e)throw C("Promise can't be resolved itself");(t=L(e))?y(function(){var r={_w:n,_d:!1};try{t.call(e,c(F,r,1),c($,r,1))}catch(e){$.call(r,e)}}):(n._v=e,n._s=1,D(n,!1))}catch(e){$.call({_w:n,_d:!1},e)}}};R||(T=function(e){p(this,T,S,"_h"),f(e),r.call(this);try{e(c(F,this,1),c($,this,1))}catch(e){$.call(this,e)}},r=function(e){this._c=[],this._a=void 0,this._s=0,this._d=!1,this._v=void 0,this._h=0,this._n=!1},r.prototype=n("zNw+")(T.prototype,{then:function(e,t){var n=P(g(this,T));return n.ok="function"!=typeof e||e,n.fail="function"==typeof t&&t,n.domain=A?E.domain:void 0,this._c.push(n),this._a&&this._a.push(n),this._s&&D(this,!1),n.promise},catch:function(e){return this.then(void 0,e)}}),o=function(){var e=new r;this.promise=e,this.resolve=c(F,e,1),this.reject=c($,e,1)},b.f=P=function(e){return e===T||e===a?new o(e):i(e)}),h(h.G+h.W+h.F*!R,{Promise:T}),n("lvAo")(T,S),n("gRqi")(S),a=n("bV5f")[S],h(h.S+h.F*!R,S,{reject:function(e){var t=P(this),n=t.reject;return n(e),t.promise}}),h(h.S+h.F*(s||!R),S,{resolve:function(e){return _(s&&this===a?T:this,e)}}),h(h.S+h.F*!(R&&n("cQyX")(function(e){T.all(e)["catch"](M)})),S,{all:function(e){var t=this,n=P(t),r=n.resolve,i=n.reject,o=w(function(){var n=[],o=0,a=1;m(e,!1,function(e){var s=o++,l=!1;n.push(void 0),a++,t.resolve(e).then(function(e){l||(l=!0,n[s]=e,--a||r(n))},i)}),--a||r(n)});return o.e&&i(o.v),n.promise},race:function(e){var t=this,n=P(t),r=n.reject,i=w(function(){m(e,!1,function(e){t.resolve(e).then(n.resolve,r)})});return i.e&&r(i.v),n.promise}})},Hfiw:function(e,t,n){var r=n("Y7ZC");r(r.S,"Object",{setPrototypeOf:n("6tYh").set})},Hsns:function(e,t,n){var r=n("93I4"),i=n("5T2Y").document,o=r(i)&&r(i.createElement);e.exports=function(e){return o?i.createElement(e):{}}},I1u9:function(e,t,n){"use strict";n("bbsP");var r=n("/wGt"),i=(n("+L6B"),n("2/Rp")),o=(n("5Dmo"),n("3S7+")),a=(n("OaEy"),n("2fM7")),s=(n("5NDa"),n("5rEg")),l=(n("Pwec"),n("CtXQ")),c=n("p0pE"),u=n.n(c),h=(n("/xke"),n("TeRw")),d=n("q1tI"),f=n.n(d),p=n("/MKj"),m=(n("/zsF"),n("PArb"));class g extends f.a.Component{constructor(e){super(e),this.state={settings:this.props.settings||{servers:[],hosts:{}}}}addHost(){this.state.settings.hosts}addServer(){var e=this.state.settings.servers,t={address:"",port:53,domains:[],expectIPs:[]};e.push(t),this.setState({settings:u()({},this.state.settings,{servers:e})},()=>{this.props.onChange(this.state.settings)})}dropServer(e){var t=this.state.settings.servers;t.splice(e,1),this.setState({settings:u()({},this.state.settings,{servers:t})},()=>{this.props.onChange(this.state.settings)})}changeServer(e,t,n){var r=this.state.settings.servers;"domains"===t?r[e].domains=n.split("\n"):r[e][t]=n,this.setState({settings:u()({},this.state.settings,{servers:r})},()=>{this.props.onChange(this.state.settings)})}render(){var e=this.state.settings.servers;return f.a.createElement(f.a.Fragment,null,f.a.createElement("div",{className:"form-group"},f.a.createElement("label",null,"DNS\u670d\u52a1\u5668\u8868"),e.map((e,t)=>{var n;return f.a.createElement("div",{key:t},f.a.createElement("div",{className:"row"},f.a.createElement(m["a"],{type:"horizontal"},e.address||"\u670d\u52a1\u5668\u7ec4".concat(t+1)," ",f.a.createElement(l["a"],{type:"delete",style:{color:"#ff4d4f"},onClick:()=>this.dropServer(t)})),f.a.createElement("div",{className:"form-group col-md-9 col-xs-12"},f.a.createElement("label",null,"DNS\u670d\u52a1\u5668\u5730\u5740"),f.a.createElement(s["a"],{placeholder:"\u8bf7\u8f93\u5165DNS\u670d\u52a1\u5668\u5730\u5740",value:e.address,onChange:e=>this.changeServer(t,"address",e.target.value)})),f.a.createElement("div",{className:"form-group col-md-3 col-xs-12"},f.a.createElement("label",null,"\u7aef\u53e3"),f.a.createElement(s["a"],{type:"number",placeholder:"\u7aef\u53e3",value:e.port,onChange:e=>this.changeServer(t,"port",parseInt(e.target.value))}))),f.a.createElement("div",{className:"form-group"},f.a.createElement("label",null,"\u57df\u540d"),f.a.createElement(s["a"].TextArea,{rows:5,onChange:e=>this.changeServer(t,"domains",e.target.value),value:null===(n=e.domains)||void 0===n?void 0:n.join("\n"),placeholder:"\u57df\u540d\u5217\u8868\uff0c\u6b64\u5217\u8868\u5305\u542b\u7684\u57df\u540d\uff0c\u5c06\u4f18\u5148\u4f7f\u7528\u6b64\u670d\u52a1\u5668\u8fdb\u884c\u67e5\u8be2\u3002\u4e00\u884c\u4e00\u6761"})))}),f.a.createElement("div",null,f.a.createElement(i["a"],{type:"primary",style:{width:"100%"},onClick:()=>this.addServer()},"\u6dfb\u52a0"))))}}class v extends f.a.Component{constructor(e){super(e);var t=this.props.settings;"{}"!==JSON.stringify(t)&&t||(t={domain:[],protocol:[]}),this.state={settings:t}}change(e,t){var n=this.state.settings;t=t.split("\n"),n[e]=t,this.setState({settings:n}),this.props.onChange(n)}render(){var e=this.state.settings,t=e.domain,n=e.protocol;return f.a.createElement(f.a.Fragment,null,f.a.createElement("div",{className:"form-group"},f.a.createElement("label",null,"\u57df\u540d\u8fc7\u6ee4\u5668"),f.a.createElement(s["a"].TextArea,{value:t&&t.join("\n"),onChange:e=>this.change("domain",e.target.value),rows:5})),f.a.createElement("div",{className:"form-group"},f.a.createElement("label",null,"\u534f\u8bae\u8fc7\u6ee4\u5668"),f.a.createElement(s["a"].TextArea,{value:n&&n.join("\n"),onChange:e=>this.change("protocol",e.target.value),rows:5})))}}n("BoS7");var y=n("Sdc0");class b extends f.a.Component{constructor(e){super(e);var t=this.props.settings;"{}"!==JSON.stringify(t)&&t||(t={serverName:"",allowInsecure:0}),this.state={settings:t}}change(e,t){var n=this.state.settings;n[e]=t,this.setState({settings:n}),this.props.onChange(this.state.settings)}render(){var e=this.state.settings,t=e.serverName,n=e.allowInsecure;return f.a.createElement(f.a.Fragment,null,f.a.createElement("div",null,f.a.createElement("div",{className:"form-group"},f.a.createElement("label",null,"Server Name"),f.a.createElement(s["a"],{value:t,onChange:e=>this.change("serverName",e.target.value),placeholder:"\u4e0d\u4f7f\u7528\u8bf7\u7559\u7a7a"})),f.a.createElement("div",{className:"form-group"},f.a.createElement("label",null,"Allow Insecure"),f.a.createElement("div",null,f.a.createElement(y["a"],{checked:parseInt(n),onChange:e=>this.change("allowInsecure",e?"1":"0")})))))}}var w=n("lc5D"),x=n.n(w);n("VeWa"),n("umNf"),n("t3Un");var _=n("8zNj");class S extends f.a.Component{constructor(e){super(e),this.state={server:this.props.record||{tls:0,rate:1},visible:!1,childDrawer:{visible:!1}}}onShow(){if(this.setState({visible:!this.state.visible}),"object"===typeof this.state.server.networkSettings){var e=this.state.server;e["networkSettings"]=JSON.stringify(e["networkSettings"],null,2),this.setState({server:e})}}save(){try{var e,t,n=this.state.server;"string"===typeof n.networkSettings&&(n.networkSettings=JSON.parse(n.networkSettings)),(null===(e=n.dnsSettings)||void 0===e?void 0:null===(t=e.servers)||void 0===t?void 0:t.length)||(n.dnsSettings=null),console.log(n),this.props.dispatch({type:"serverV2ray/save",params:n,callback:()=>{this.onShow()}})}catch(e){h["a"].error({message:"\u8bf7\u6c42\u5931\u8d25",description:"\u4f20\u8f93\u534f\u8bae\u914d\u7f6e\u683c\u5f0f\u6709\u8bef"})}}showChildDrawer(e,t){this.setState({childDrawer:u()({},this.state.childDrawer,{visible:!this.state.childDrawer.visible,title:e,type:t})})}changeServer(e,t){this.setState({server:u()({},this.state.server,{[e]:t})})}renderChildDrawer(){var e=this.state.server,t=e.networkSettings,n=e.ruleSettings,r=e.tlsSettings,i=e.dnsSettings;switch(this.state.childDrawer.type){case"networkSettings":var o={tcp:"",ws:JSON.stringify({path:"/",headers:{Host:"v2ray.com"}},null,4),grpc:JSON.stringify({serviceName:"GunService"},null,4)};return f.a.createElement("div",{id:"v2ray-protocol"},f.a.createElement("div",{className:"form-group"},f.a.createElement("label",null,"\u534f\u8bae\u8be6\u7ec6\u914d\u7f6e",f.a.createElement("a",{href:"https://www.v2ray.com/chapter_02/05_transport.html"},f.a.createElement(l["a"],{type:"link"}),"\u53c2\u8003")),f.a.createElement(x.a,{placeholder:(null===o||void 0===o?void 0:o[this.state.server.network])||"",mode:"json",theme:"github",fontSize:14,showPrintMargin:!0,showGutter:!0,highlightActiveLine:!0,value:t||"",onChange:e=>this.formChange("networkSettings",e),setOptions:{enableBasicAutocompletion:!1,enableLiveAutocompletion:!1,enableSnippets:!1,showLineNumbers:!0,tabSize:2},ref:"editor"})));case"ruleSettings":return f.a.createElement(v,{settings:n,onChange:e=>this.changeServer("ruleSettings",e)});case"tlsSettings":return f.a.createElement(b,{settings:r,onChange:e=>this.changeServer("tlsSettings",e)});case"dnsSettings":return f.a.createElement(g,{settings:i,onChange:e=>this.changeServer("dnsSettings",e)})}}formChange(e,t){this.refs.editor&&this.refs.editor.editor.resize();var n=this.state.server;n[e]=t,this.setState({server:n})}render(){var e=this.state.server,t=this.props.serverV2ray.saveLoading,n=this.props.serverManage.servers,c=this.props.serverGroup.groups;return f.a.createElement(f.a.Fragment,null,f.a.cloneElement(this.props.children,{onClick:()=>this.onShow()}),f.a.createElement(r["a"],{id:"server",maskClosable:!0,title:e.id?"\u7f16\u8f91\u8282\u70b9":"\u65b0\u5efa\u8282\u70b9",width:"80%",visible:this.state.visible,onClose:()=>this.onShow()},f.a.createElement("div",null,f.a.createElement("div",{className:"row"},f.a.createElement("div",{className:"form-group col-8"},f.a.createElement("label",null,"\u8282\u70b9\u540d\u79f0"),f.a.createElement(s["a"],{placeholder:"\u8bf7\u8f93\u5165\u8282\u70b9\u540d\u79f0",value:e.name,onChange:e=>this.formChange("name",e.target.value)})),f.a.createElement("div",{className:"form-group col-4"},f.a.createElement("label",null,"\u500d\u7387"),f.a.createElement(s["a"],{addonAfter:"x",placeholder:"\u8bf7\u8f93\u5165\u8282\u70b9\u500d\u7387",value:e.rate,onChange:e=>this.formChange("rate",e.target.value)}))),f.a.createElement("div",{className:"form-group"},f.a.createElement("label",null,"\u8282\u70b9\u6807\u7b7e"),f.a.createElement(a["a"],{mode:"tags",value:e.tags||[],style:{width:"100%"},placeholder:"\u8f93\u5165\u540e\u56de\u8f66\u6dfb\u52a0\u6807\u7b7e",onChange:e=>this.formChange("tags",e.length>0?e:null)})),f.a.createElement("div",{className:"form-group"},f.a.createElement("label",null,"\u6743\u9650\u7ec4 ",f.a.createElement(_["a"],null,f.a.createElement("a",{href:"javascript:(0);"},"\u6dfb\u52a0\u6743\u9650\u7ec4"))),f.a.createElement(a["a"],{mode:"multiple",value:e.group_id,placeholder:"\u8bf7\u9009\u62e9\u6743\u9650\u7ec4",style:{width:"100%"},onChange:e=>this.formChange("group_id",e)},c.map(e=>{return f.a.createElement(a["a"].Option,{key:e.id},e.name)}))),f.a.createElement("div",{className:"row"},f.a.createElement("div",{className:"form-group col-md-8 col-xs-12"},f.a.createElement("label",null,"\u8282\u70b9\u5730\u5740"),f.a.createElement(s["a"],{placeholder:"\u8bf7\u8f93\u5165\u8fde\u63a5\u5730\u5740",value:e.host,onChange:e=>this.formChange("host",e.target.value)})),f.a.createElement("div",{className:"form-group col-md-4 col-xs-12"},f.a.createElement("label",null,f.a.createElement(o["a"],{placement:"top",title:"\u652f\u6301TLS\u9700\u8981\u5148\u5728\u8282\u70b9\u670d\u52a1\u5668 /root/.cert/ \u76ee\u5f55\u653e\u7f6e\u8bc1\u4e66"},"TLS ",f.a.createElement(l["a"],{type:"question-circle"}))," ",f.a.createElement("a",{href:"javascript:void(0);",onClick:()=>this.showChildDrawer("\u7f16\u8f91TLS\u914d\u7f6e","tlsSettings")},"\u7f16\u8f91\u914d\u7f6e")),f.a.createElement(a["a"],{value:parseInt(e.tls)?1:0,placeholder:"\u662f\u5426\u652f\u6301TLS",style:{width:"100%"},onChange:e=>this.formChange("tls",e)},f.a.createElement(a["a"].Option,{key:0,value:0},"\u4e0d\u652f\u6301"),f.a.createElement(a["a"].Option,{key:1,value:1},"\u652f\u6301")))),f.a.createElement("div",{className:"row"},f.a.createElement("div",{className:"form-group col-md-6 col-xs-12"},f.a.createElement("label",null,"\u8fde\u63a5\u7aef\u53e3"),f.a.createElement(s["a"],{placeholder:"\u7528\u6237\u8fde\u63a5\u7aef\u53e3",value:e.port,onChange:e=>{this.formChange("port",e.target.value)}})),f.a.createElement("div",{className:"form-group col-md-6 col-xs-12"},f.a.createElement("label",null,"\u670d\u52a1\u7aef\u53e3"),f.a.createElement(s["a"],{placeholder:"\u975eNAT\u540c\u8fde\u63a5\u7aef\u53e3",value:e.server_port,onChange:e=>this.formChange("server_port",e.target.value)}))),f.a.createElement("div",{className:"row"},f.a.createElement("div",{className:"form-group col-md-12 col-xs-12"},f.a.createElement("label",null,"\u4f20\u8f93\u534f\u8bae ",f.a.createElement("a",{href:"javascript:void(0);",onClick:()=>this.showChildDrawer("\u7f16\u8f91\u534f\u8bae\u914d\u7f6e","networkSettings")},"\u7f16\u8f91\u914d\u7f6e")),f.a.createElement(a["a"],{value:e.network,placeholder:"\u9009\u62e9\u4f20\u8f93\u534f\u8bae",style:{width:"100%"},onChange:e=>this.formChange("network",e)},f.a.createElement(a["a"].Option,{value:"tcp"},"TCP"),f.a.createElement(a["a"].Option,{value:"ws"},"WebSocket"),f.a.createElement(a["a"].Option,{value:"grpc"},"gRPC")))),f.a.createElement("div",{className:"form-group"},f.a.createElement("label",null,f.a.createElement(o["a"],{placement:"top"},"\u7236\u8282\u70b9 ",f.a.createElement("a",{target:"_blank",href:"https://docs.v2board.com/use/node.html#\u7236\u8282\u70b9\u4e0e\u5b50\u8282\u70b9\u5173\u7cfb",rel:"noreferrer"},f.a.createElement(l["a"],{type:"read"})))),f.a.createElement(a["a"],{value:e.parent_id||"",onChange:e=>this.formChange("parent_id",e),style:{width:"100%"}},f.a.createElement(a["a"].Option,{value:""},"\u65e0"),n.map(t=>{if("v2ray"===t.type&&t.id!==e.id)return f.a.createElement(a["a"].Option,{key:Math.random(),value:t.id},t.name)}))),f.a.createElement("div",{className:"form-group"},f.a.createElement("label",null,f.a.createElement(o["a"],{placement:"top",title:"\u89c4\u5219\u5185\u7684\u8bbf\u95ee\u5c06\u4f1a\u88ab\u62d2\u7edd"},"\u5ba1\u8ba1\u89c4\u5219 ",f.a.createElement(l["a"],{type:"question-circle"}))),f.a.createElement("div",null,f.a.createElement(i["a"],{type:"primary",style:{width:"100%"},onClick:()=>this.showChildDrawer("\u7f16\u8f91\u5ba1\u8ba1\u89c4\u5219","ruleSettings")},"\u7f16\u8f91\u89c4\u5219"))),f.a.createElement("div",{className:"form-group"},f.a.createElement("label",null,"DNS\u89c4\u5219 ",f.a.createElement(l["a"],{type:"question-circle"})),f.a.createElement("div",null,f.a.createElement(i["a"],{type:"primary",style:{width:"100%"},onClick:()=>this.showChildDrawer("\u7f16\u8f91DNS\u89c4\u5219","dnsSettings")},"\u7f16\u8f91DNS\u89c4\u5219")))),f.a.createElement("div",{className:"v2board-drawer-action"},f.a.createElement(i["a"],{style:{marginRight:8},onClick:()=>this.onShow()},"\u53d6\u6d88"),f.a.createElement(i["a"],{loading:t,onClick:()=>this.save(),type:"primary"},"\u63d0\u4ea4")),f.a.createElement(r["a"],{closable:!1,id:"server",width:"80%",title:this.state.childDrawer.title,visible:this.state.childDrawer.visible,onClose:()=>this.showChildDrawer()},this.renderChildDrawer())))}}t["a"]=Object(p["c"])(e=>{var t=e.serverV2ray,n=e.serverGroup,r=e.serverManage;return{serverV2ray:t,serverGroup:n,serverManage:r}})(S)},IMiH:function(e,t,n){"use strict";n.d(t,"b",function(){return k});var r=n("QBsz"),i=n("mFDi"),o=n("LPTA"),a=n("4mN7"),s=n("Sj9i"),l={M:1,L:2,C:3,Q:4,A:5,Z:6,R:7},c=[],u=[],h=[],d=[],f=[],p=[],m=Math.min,g=Math.max,v=Math.cos,y=Math.sin,b=Math.sqrt,w=Math.abs,x=Math.PI,_=2*x,S="undefined"!==typeof Float32Array,C=[];function E(e){var t=Math.round(e/x*1e8)/1e8;return t%2*x}function k(e,t){var n=E(e[0]);n<0&&(n+=_);var r=n-e[0],i=e[1];i+=r,!t&&i-n>=_?i=n+_:t&&n-i>=_?i=n-_:!t&&n>i?i=n+(_-E(n-i)):t&&n0&&(this._ux=w(n/o["e"]/e)||0,this._uy=w(n/o["e"]/t)||0)},e.prototype.setDPR=function(e){this.dpr=e},e.prototype.setContext=function(e){this._ctx=e},e.prototype.getContext=function(){return this._ctx},e.prototype.beginPath=function(){return this._ctx&&this._ctx.beginPath(),this.reset(),this},e.prototype.reset=function(){this._saveData&&(this._len=0),this._lineDash&&(this._lineDash=null,this._dashOffset=0),this._pathSegLen&&(this._pathSegLen=null,this._pathLen=0),this._version++},e.prototype.moveTo=function(e,t){return this._drawPendingPt(),this.addData(l.M,e,t),this._ctx&&this._ctx.moveTo(e,t),this._x0=e,this._y0=t,this._xi=e,this._yi=t,this},e.prototype.lineTo=function(e,t){var n=w(e-this._xi),r=w(t-this._yi),i=n>this._ux||r>this._uy;if(this.addData(l.L,e,t),this._ctx&&i&&(this._needsDash?this._dashedLineTo(e,t):this._ctx.lineTo(e,t)),i)this._xi=e,this._yi=t,this._pendingPtDist=0;else{var o=n*n+r*r;o>this._pendingPtDist&&(this._pendingPtX=e,this._pendingPtY=t,this._pendingPtDist=o)}return this},e.prototype.bezierCurveTo=function(e,t,n,r,i,o){return this._drawPendingPt(),this.addData(l.C,e,t,n,r,i,o),this._ctx&&(this._needsDash?this._dashedBezierTo(e,t,n,r,i,o):this._ctx.bezierCurveTo(e,t,n,r,i,o)),this._xi=i,this._yi=o,this},e.prototype.quadraticCurveTo=function(e,t,n,r){return this._drawPendingPt(),this.addData(l.Q,e,t,n,r),this._ctx&&(this._needsDash?this._dashedQuadraticTo(e,t,n,r):this._ctx.quadraticCurveTo(e,t,n,r)),this._xi=n,this._yi=r,this},e.prototype.arc=function(e,t,n,r,i,o){this._drawPendingPt(),C[0]=r,C[1]=i,k(C,o),r=C[0],i=C[1];var a=i-r;return this.addData(l.A,e,t,n,n,r,a,0,o?0:1),this._ctx&&this._ctx.arc(e,t,n,r,i,o),this._xi=v(i)*n+e,this._yi=y(i)*n+t,this},e.prototype.arcTo=function(e,t,n,r,i){return this._drawPendingPt(),this._ctx&&this._ctx.arcTo(e,t,n,r,i),this},e.prototype.rect=function(e,t,n,r){return this._drawPendingPt(),this._ctx&&this._ctx.rect(e,t,n,r),this.addData(l.R,e,t,n,r),this},e.prototype.closePath=function(){this._drawPendingPt(),this.addData(l.Z);var e=this._ctx,t=this._x0,n=this._y0;return e&&(this._needsDash&&this._dashedLineTo(t,n),e.closePath()),this._xi=t,this._yi=n,this},e.prototype.fill=function(e){e&&e.fill(),this.toStatic()},e.prototype.stroke=function(e){e&&e.stroke(),this.toStatic()},e.prototype.setLineDash=function(e){if(e instanceof Array){this._lineDash=e,this._dashIdx=0;for(var t=0,n=0;nc.length&&(this._expandData(),c=this.data);for(var u=0;u0&&(this._ctx&&this._ctx.lineTo(this._pendingPtX,this._pendingPtY),this._pendingPtDist=0)},e.prototype._expandData=function(){if(!(this.data instanceof Array)){for(var e=[],t=0;t0&&f<=e||u<0&&f>=e||0===u&&(h>0&&p<=t||h<0&&p>=t))r=this._dashIdx,n=o[r],f+=u*n,p+=h*n,this._dashIdx=(r+1)%v,u>0&&fl||h>0&&pc||a[r%2?"moveTo":"lineTo"](u>=0?m(f,e):g(f,e),h>=0?m(p,t):g(p,t));u=f-e,h=p-t,this._dashOffset=-b(u*u+h*h)},e.prototype._dashedBezierTo=function(e,t,n,r,i,o){var a,l,c,u,h,d=this._ctx,f=this._dashSum,p=this._dashOffset,m=this._lineDash,g=this._xi,v=this._yi,y=0,w=this._dashIdx,x=m.length,_=0;for(p<0&&(p=f+p),p%=f,a=0;a<1;a+=.1)l=Object(s["a"])(g,e,n,i,a+.1)-Object(s["a"])(g,e,n,i,a),c=Object(s["a"])(v,t,r,o,a+.1)-Object(s["a"])(v,t,r,o,a),y+=b(l*l+c*c);for(;wp)break;a=(_-p)/y;while(a<=1)u=Object(s["a"])(g,e,n,i,a),h=Object(s["a"])(v,t,r,o,a),w%2?d.moveTo(u,h):d.lineTo(u,h),a+=m[w]/y,w=(w+1)%x;w%2!==0&&d.lineTo(i,o),l=i-u,c=o-h,this._dashOffset=-b(l*l+c*c)},e.prototype._dashedQuadraticTo=function(e,t,n,r){var i=n,o=r;n=(n+2*e)/3,r=(r+2*t)/3,e=(this._xi+2*e)/3,t=(this._yi+2*t)/3,this._dashedBezierTo(e,t,n,r,i,o)},e.prototype.toStatic=function(){if(this._saveData){this._drawPendingPt();var e=this.data;e instanceof Array&&(e.length=this._len,S&&this._len>11&&(this.data=new Float32Array(e)))}},e.prototype.getBoundingRect=function(){h[0]=h[1]=f[0]=f[1]=Number.MAX_VALUE,d[0]=d[1]=p[0]=p[1]=-Number.MAX_VALUE;var e,t=this.data,n=0,o=0,s=0,c=0;for(e=0;en||w(k)>r||f===t-1)&&(x=Math.sqrt(E*E+k*k),i=S,o=C);break;case l.C:var O=e[f++],T=e[f++],A=(S=e[f++],C=e[f++],e[f++]),M=e[f++];x=Object(s["d"])(i,o,O,T,S,C,A,M,10),i=A,o=M;break;case l.Q:O=e[f++],T=e[f++],S=e[f++],C=e[f++];x=Object(s["k"])(i,o,O,T,S,C,10),i=S,o=C;break;case l.A:var P=e[f++],R=e[f++],L=e[f++],D=e[f++],j=e[f++],N=e[f++],I=N+j;f+=1;e[f++];b&&(a=v(j)*L+P,c=y(j)*D+R),x=g(L,D)*m(_,Math.abs(N)),i=v(I)*L+P,o=y(I)*D+R;break;case l.R:a=i=e[f++],c=o=e[f++];var $=e[f++],F=e[f++];x=2*$+2*F;break;case l.Z:E=a-i,k=c-o;x=Math.sqrt(E*E+k*k),i=a,o=c;break}x>=0&&(u[d++]=x,h+=x)}return this._pathLen=h,h},e.prototype.rebuildPath=function(e,t){var n,r,i,o,a,h,d,f,p,b,x,_=this.data,S=this._ux,C=this._uy,E=this._len,k=t<1,O=0,T=0,A=0;if(!k||(this._pathSegLen||this._calculateLength(),d=this._pathSegLen,f=this._pathLen,p=t*f,p))e:for(var M=0;M0&&(e.lineTo(b,x),A=0),P){case l.M:n=i=_[M++],r=o=_[M++],e.moveTo(i,o);break;case l.L:a=_[M++],h=_[M++];var L=w(a-i),D=w(h-o);if(L>S||D>C){if(k){var j=d[T++];if(O+j>p){var N=(p-O)/j;e.lineTo(i*(1-N)+a*N,o*(1-N)+h*N);break e}O+=j}e.lineTo(a,h),i=a,o=h,A=0}else{var I=L*L+D*D;I>A&&(b=a,x=h,A=I)}break;case l.C:var $=_[M++],F=_[M++],V=_[M++],B=_[M++],W=_[M++],H=_[M++];if(k){j=d[T++];if(O+j>p){N=(p-O)/j;Object(s["g"])(i,$,V,W,N,c),Object(s["g"])(o,F,B,H,N,u),e.bezierCurveTo(c[1],u[1],c[2],u[2],c[3],u[3]);break e}O+=j}e.bezierCurveTo($,F,V,B,W,H),i=W,o=H;break;case l.Q:$=_[M++],F=_[M++],V=_[M++],B=_[M++];if(k){j=d[T++];if(O+j>p){N=(p-O)/j;Object(s["n"])(i,$,V,N,c),Object(s["n"])(o,F,B,N,u),e.quadraticCurveTo(c[1],u[1],c[2],u[2]);break e}O+=j}e.quadraticCurveTo($,F,V,B),i=V,o=B;break;case l.A:var z=_[M++],U=_[M++],q=_[M++],K=_[M++],G=_[M++],Y=_[M++],X=_[M++],Q=!_[M++],Z=q>K?q:K,J=w(q-K)>.001,ee=G+Y,te=!1;if(k){j=d[T++];O+j>p&&(ee=G+Y*(p-O)/j,te=!0),O+=j}if(J&&e.ellipse?e.ellipse(z,U,q,K,X,G,ee,Q):e.arc(z,U,Z,G,ee,Q),te)break e;R&&(n=v(G)*q+z,r=y(G)*K+U),i=v(ee)*q+z,o=y(ee)*K+U;break;case l.R:n=i=_[M],r=o=_[M+1],a=_[M++],h=_[M++];var ne=_[M++],re=_[M++];if(k){j=d[T++];if(O+j>p){var ie=p-O;e.moveTo(a,h),e.lineTo(a+m(ie,ne),h),ie-=ne,ie>0&&e.lineTo(a+ne,h+m(ie,re)),ie-=re,ie>0&&e.lineTo(a+g(ne-ie,0),h+re),ie-=ne,ie>0&&e.lineTo(a,h+g(re-ie,0));break e}O+=j}e.rect(a,h,ne,re);break;case l.Z:if(k){j=d[T++];if(O+j>p){N=(p-O)/j;e.lineTo(i*(1-N)+n*N,o*(1-N)+r*N);break e}O+=j}e.closePath(),i=n,o=r}}},e.prototype.clone=function(){var t=new e,n=this.data;return t.data=n.slice?n.slice():Array.prototype.slice.call(n),t._len=this._len,t},e.CMD=l,e.initDefaultProps=function(){var t=e.prototype;t._saveData=!0,t._needsDash=!1,t._dashOffset=0,t._dashIdx=0,t._dashSum=0,t._ux=0,t._uy=0,t._pendingPtDist=0,t._version=0}(),e}();t["a"]=O},IR7R:function(e,t,n){"use strict";var r=n("WGNW"),i=n("Y/ne"),o=n("08Qx"),a=/Version\/10\.\d+(\.\d+)?( Mobile\/\w+)? Safari\//.test(o);r(r.P+r.F*a,"String",{padEnd:function(e){return i(this,e,arguments.length>1?arguments[1]:void 0,!1)}})},IX3V:function(e,t){function n(e,t){var n,r=0,i=e.length;for(r;r18),a&&(n.weChat=!0),t.canvasSupported=!!document.createElement("canvas").getContext,t.svgSupported="undefined"!==typeof SVGRect,t.touchEventsSupported="ontouchstart"in window&&!n.ie&&!n.edge,t.pointerEventsSupported="onpointerdown"in window&&(n.edge||n.ie&&+n.version>=11),t.domSupported="undefined"!==typeof document;var s=document.documentElement.style;t.transform3dSupported=(n.ie&&"transition"in s||n.edge||"WebKitCSSMatrix"in window&&"m11"in new WebKitCSSMatrix||"MozPerspective"in s)&&!("OTransition"in s),t.transformSupported=t.transform3dSupported||n.ie&&+n.version>=9}"object"===typeof wx&&"function"===typeof wx.getSystemInfoSync?(o.wxa=!0,o.canvasSupported=!0,o.touchEventsSupported=!0):"undefined"===typeof document&&"undefined"!==typeof self?(o.worker=!0,o.canvasSupported=!0):"undefined"===typeof navigator?(o.node=!0,o.canvasSupported=!0,o.svgSupported=!0):a(navigator.userAgent,o),t["a"]=o},IuST:function(e,t){function n(e,t){var n=[],r=!0,i=!1,o=void 0;try{for(var a,s=e[Symbol.iterator]();!(r=(a=s.next()).done);r=!0)if(n.push(a.value),t&&n.length===t)break}catch(e){i=!0,o=e}finally{try{r||null==s["return"]||s["return"]()}finally{if(i)throw o}}return n}e.exports=n},"J57/":function(e,t,n){var r=n("VyuQ")("keys"),i=n("kCK5");e.exports=function(e){return r[e]||(r[e]=i(e))}},JB68:function(e,t,n){var r=n("Jes0");e.exports=function(e){return Object(r(e))}},JDzL:function(e,t,n){"use strict";var r=n("QbLZ"),i=n.n(r),o=n("iCc5"),a=n.n(o),s=n("FYw3"),l=n.n(s),c=n("mRg0"),u=n.n(c),h=n("q1tI"),d=n.n(h),f=n("i8i4"),p=n.n(f),m=n("17x9"),g=n.n(m),v=n("ubZd"),y=n("TSYQ"),b=n.n(y),w=n("JUxu"),x=n("YVYq"),_=n("mwkM"),S=function(e){function t(){return a()(this,t),l()(this,e.apply(this,arguments))}return u()(t,e),t.prototype.onSelect=function(e){this.props.onSelect(e)},t.prototype.getRootDOMNode=function(){return p.a.findDOMNode(this)},t.prototype.render=function(){var e=this.props,t=e.value,n=e.prefixCls,r=e.showOk,o=e.timePicker,a=e.renderFooter,s=e.mode,l=null,c=a&&a(s);if(e.showToday||o||c){var u,h=void 0;e.showToday&&(h=d.a.createElement(w["a"],i()({},e,{value:t})));var f=void 0;(!0===r||!1!==r&&e.timePicker)&&(f=d.a.createElement(x["a"],e));var p=void 0;e.timePicker&&(p=d.a.createElement(_["a"],e));var m=void 0;(h||p||f||c)&&(m=d.a.createElement("span",{className:n+"-footer-btn"},c,Object(v["a"])([h,p,f])));var g=b()(n+"-footer",(u={},u[n+"-footer-show-ok"]=f,u));l=d.a.createElement("div",{className:g},m)}return l},t}(d.a.Component);S.propTypes={prefixCls:g.a.string,showDateInput:g.a.bool,disabledTime:g.a.any,timePicker:g.a.element,selectedValue:g.a.any,showOk:g.a.bool,onSelect:g.a.func,value:g.a.object,renderFooter:g.a.func,defaultValue:g.a.object,mode:g.a.string},t["a"]=S},JUxu:function(e,t,n){"use strict";n.d(t,"a",function(){return a});var r=n("q1tI"),i=n.n(r),o=n("GrtH");function a(e){var t=e.prefixCls,n=e.locale,r=e.value,a=e.timePicker,s=e.disabled,l=e.disabledDate,c=e.onToday,u=e.text,h=(!u&&a?n.now:u)||n.today,d=l&&!Object(o["g"])(Object(o["e"])(r),l),f=d||s,p=f?t+"-today-btn-disabled":"";return i.a.createElement("a",{className:t+"-today-btn "+p,role:"button",onClick:f?null:c,title:Object(o["f"])(r)},h)}},JZE9:function(e,t,n){"use strict";n.r(t);var r=n("jehZ"),i=n.n(r),o=(n("2qtc"),n("kLXV")),a=(n("5NDa"),n("5rEg")),s=(n("g9YV"),n("wCAj")),l=(n("+L6B"),n("2/Rp")),c=(n("Pwec"),n("CtXQ")),u=(n("/zsF"),n("PArb")),h=n("p0pE"),d=n.n(h),f=n("q1tI"),p=n.n(f),m=n("Bl7J"),g=n("wd/R"),v=n.n(g),y=n("/MKj");class b extends p.a.Component{constructor(e){super(e),this.state={visible:!1,submit:{},notices:[]}}componentDidMount(){this.props.dispatch({type:"notice/fetch"})}modalVisible(){this.setState({visible:!this.state.visible},()=>{this.state.visible||this.setState({submit:{}})})}save(){this.props.dispatch({type:"notice/save",params:d()({},this.state.submit),callback:()=>{this.modalVisible()}})}drop(e){this.props.dispatch({type:"notice/drop",id:e.id})}render(){var e=this.props.notice,t=e.notices,n=e.fetchLoading,r=[{title:"#",dataIndex:"id",key:"id"},{title:"\u6807\u9898",dataIndex:"title",key:"title"},{title:"\u521b\u5efa\u65f6\u95f4",dataIndex:"created_at",key:"created_at",align:"right",render:e=>{return v()(1e3*e).format("YYYY/MM/DD HH:mm")}},{title:"\u64cd\u4f5c",dataIndex:"action",key:"action",align:"right",render:(e,n,r)=>{return p.a.createElement("div",null,p.a.createElement("a",{onClick:()=>this.setState({submit:t[r]},()=>this.modalVisible()),href:"javascript:void(0);"},"\u7f16\u8f91"),p.a.createElement(u["a"],{type:"vertical"}),p.a.createElement("a",{onClick:()=>this.drop(n),href:"javascript:void(0);"},"\u5220\u9664"))}}];return p.a.createElement(m["a"],i()({},this.props,{title:"\u516c\u544a\u7ba1\u7406"}),p.a.createElement("div",{className:"d-flex justify-content-between align-items-center"}),p.a.createElement("div",{className:"block block-rounded ".concat(n?"block-mode-loading":"")},p.a.createElement("div",{className:"bg-white"},p.a.createElement("div",{style:{padding:15}},p.a.createElement(l["a"],{onClick:()=>this.modalVisible()},p.a.createElement(c["a"],{type:"plus"})," \u6dfb\u52a0\u516c\u544a")),p.a.createElement(s["a"],{tableLayout:"auto",dataSource:t,pagination:!1,columns:r,scroll:{x:950}}))),p.a.createElement(o["a"],{title:"".concat(this.state.submit.id?"\u7f16\u8f91\u516c\u544a":"\u65b0\u5efa\u516c\u544a"),visible:this.state.visible,onCancel:()=>this.modalVisible(),onOk:()=>this.state.saveLoading||this.save(),okText:this.state.saveLoading?p.a.createElement(c["a"],{type:"loading"}):"\u63d0\u4ea4",cancelText:"\u53d6\u6d88"},p.a.createElement("div",null,p.a.createElement("div",{className:"form-group"},p.a.createElement("label",{for:"example-text-input-alt"},"\u6807\u9898"),p.a.createElement(a["a"],{placeholder:"\u8bf7\u8f93\u5165\u516c\u544a\u6807\u9898",value:this.state.submit.title,onChange:e=>{this.setState({submit:d()({},this.state.submit,{title:e.target.value})})}})),p.a.createElement("div",{className:"form-group"},p.a.createElement("label",{for:"example-text-input-alt"},"\u516c\u544a\u5185\u5bb9"),p.a.createElement(a["a"].TextArea,{rows:12,value:this.state.submit.content,placeholder:"\u8bf7\u8f93\u5165\u516c\u544a\u5185\u5bb9",onChange:e=>{this.setState({submit:d()({},this.state.submit,{content:e.target.value})})}})),p.a.createElement("div",{className:"form-group"},p.a.createElement("label",{for:"example-text-input-alt"},"\u56fe\u7247URL"),p.a.createElement(a["a"],{placeholder:"\u8bf7\u8f93\u5165\u56fe\u7247URL",value:this.state.submit.img_url,onChange:e=>{this.setState({submit:d()({},this.state.submit,{img_url:e.target.value})})}})))))}}t["default"]=Object(y["c"])(e=>{var t=e.notice;return{notice:t}})(b)},Jaki:function(e,t,n){"use strict";if(n("8Z/V")){var r=n("FqPH"),i=n("c0Oy"),o=n("wUWy"),a=n("WGNW"),s=n("88Vn"),l=n("yLMY"),c=n("wHrr"),u=n("YEVI"),h=n("pQGJ"),d=n("VPOE"),f=n("zNw+"),p=n("AUWw"),m=n("OsVd"),g=n("nYLq"),v=n("Spc3"),y=n("8BMt"),b=n("oxo0"),w=n("2a/h"),x=n("u8+u"),_=n("il4q"),S=n("ULMT"),C=n("/Mfd"),E=n("BFt8"),k=n("9HFh").f,O=n("BnQZ"),T=n("kCK5"),A=n("gL7N"),M=n("+o5p"),P=n("Lnex"),R=n("VeyY"),L=n("OERk"),D=n("yw4e"),j=n("cQyX"),N=n("gRqi"),I=n("7Uk0"),$=n("wlPd"),F=n("V5/1"),V=n("15BC"),B=F.f,W=V.f,H=i.RangeError,z=i.TypeError,U=i.Uint8Array,q="ArrayBuffer",K="Shared"+q,G="BYTES_PER_ELEMENT",Y="prototype",X=Array[Y],Q=l.ArrayBuffer,Z=l.DataView,J=M(0),ee=M(2),te=M(3),ne=M(4),re=M(5),ie=M(6),oe=P(!0),ae=P(!1),se=L.values,le=L.keys,ce=L.entries,ue=X.lastIndexOf,he=X.reduce,de=X.reduceRight,fe=X.join,pe=X.sort,me=X.slice,ge=X.toString,ve=X.toLocaleString,ye=A("iterator"),be=A("toStringTag"),we=T("typed_constructor"),xe=T("def_constructor"),_e=s.CONSTR,Se=s.TYPED,Ce=s.VIEW,Ee="Wrong length!",ke=M(1,function(e,t){return Pe(R(e,e[xe]),t)}),Oe=o(function(){return 1===new U(new Uint16Array([1]).buffer)[0]}),Te=!!U&&!!U[Y].set&&o(function(){new U(1).set({})}),Ae=function(e,t){var n=p(e);if(n<0||n%t)throw H("Wrong offset!");return n},Me=function(e){if(x(e)&&Se in e)return e;throw z(e+" is not a typed array!")},Pe=function(e,t){if(!(x(e)&&we in e))throw z("It is not a typed array constructor!");return new e(t)},Re=function(e,t){return Le(R(e,e[xe]),t)},Le=function(e,t){var n=0,r=t.length,i=Pe(e,r);while(r>n)i[n]=t[n++];return i},De=function(e,t,n){B(e,t,{get:function(){return this._d[n]}})},je=function(e){var t,n,r,i,o,a,s=_(e),l=arguments.length,u=l>1?arguments[1]:void 0,h=void 0!==u,d=O(s);if(void 0!=d&&!S(d)){for(a=d.call(s),r=[],t=0;!(o=a.next()).done;t++)r.push(o.value);s=r}for(h&&l>2&&(u=c(u,arguments[2],2)),t=0,n=m(s.length),i=Pe(this,n);n>t;t++)i[t]=h?u(s[t],t):s[t];return i},Ne=function(){var e=0,t=arguments.length,n=Pe(this,t);while(t>e)n[e]=arguments[e++];return n},Ie=!!U&&o(function(){ve.call(new U(1))}),$e=function(){return ve.apply(Ie?me.call(Me(this)):Me(this),arguments)},Fe={copyWithin:function(e,t){return $.call(Me(this),e,t,arguments.length>2?arguments[2]:void 0)},every:function(e){return ne(Me(this),e,arguments.length>1?arguments[1]:void 0)},fill:function(e){return I.apply(Me(this),arguments)},filter:function(e){return Re(this,ee(Me(this),e,arguments.length>1?arguments[1]:void 0))},find:function(e){return re(Me(this),e,arguments.length>1?arguments[1]:void 0)},findIndex:function(e){return ie(Me(this),e,arguments.length>1?arguments[1]:void 0)},forEach:function(e){J(Me(this),e,arguments.length>1?arguments[1]:void 0)},indexOf:function(e){return ae(Me(this),e,arguments.length>1?arguments[1]:void 0)},includes:function(e){return oe(Me(this),e,arguments.length>1?arguments[1]:void 0)},join:function(e){return fe.apply(Me(this),arguments)},lastIndexOf:function(e){return ue.apply(Me(this),arguments)},map:function(e){return ke(Me(this),e,arguments.length>1?arguments[1]:void 0)},reduce:function(e){return he.apply(Me(this),arguments)},reduceRight:function(e){return de.apply(Me(this),arguments)},reverse:function(){var e,t=this,n=Me(t).length,r=Math.floor(n/2),i=0;while(i1?arguments[1]:void 0)},sort:function(e){return pe.call(Me(this),e)},subarray:function(e,t){var n=Me(this),r=n.length,i=v(e,r);return new(R(n,n[xe]))(n.buffer,n.byteOffset+i*n.BYTES_PER_ELEMENT,m((void 0===t?r:v(t,r))-i))}},Ve=function(e,t){return Re(this,me.call(Me(this),e,t))},Be=function(e){Me(this);var t=Ae(arguments[1],1),n=this.length,r=_(e),i=m(r.length),o=0;if(i+t>n)throw H(Ee);while(o255?255:255&r),i.v[f](n*t+i.o,r,Oe)},A=function(e,t){B(e,t,{get:function(){return O(this,t)},set:function(e){return T(this,t,e)},enumerable:!0})};b?(p=n(function(e,n,r,i){u(e,p,c,"_d");var o,a,s,l,h=0,f=0;if(x(n)){if(!(n instanceof Q||(l=w(n))==q||l==K))return Se in n?Le(p,n):je.call(p,n);o=n,f=Ae(r,t);var v=n.byteLength;if(void 0===i){if(v%t)throw H(Ee);if(a=v-f,a<0)throw H(Ee)}else if(a=m(i)*t,a+f>v)throw H(Ee);s=a/t}else s=g(n),a=s*t,o=new Q(a);d(e,"_d",{b:o,o:f,l:a,e:s,v:new Z(o)});while(h{b()}).catch(e=>{window.console&&window.console.error(e)});t["default"]=null;n("hh8c")},L9pr:function(e,t,n){"use strict";t["a"]={today:"\u4eca\u5929",now:"\u6b64\u523b",backToToday:"\u8fd4\u56de\u4eca\u5929",ok:"\u786e\u5b9a",timeSelect:"\u9009\u62e9\u65f6\u95f4",dateSelect:"\u9009\u62e9\u65e5\u671f",weekSelect:"\u9009\u62e9\u5468",clear:"\u6e05\u9664",month:"\u6708",year:"\u5e74",previousMonth:"\u4e0a\u4e2a\u6708 (\u7ffb\u9875\u4e0a\u952e)",nextMonth:"\u4e0b\u4e2a\u6708 (\u7ffb\u9875\u4e0b\u952e)",monthSelect:"\u9009\u62e9\u6708\u4efd",yearSelect:"\u9009\u62e9\u5e74\u4efd",decadeSelect:"\u9009\u62e9\u5e74\u4ee3",yearFormat:"YYYY\u5e74",dayFormat:"D\u65e5",dateFormat:"YYYY\u5e74M\u6708D\u65e5",dateTimeFormat:"YYYY\u5e74M\u6708D\u65e5 HH\u65f6mm\u5206ss\u79d2",previousYear:"\u4e0a\u4e00\u5e74 (Control\u952e\u52a0\u5de6\u65b9\u5411\u952e)",nextYear:"\u4e0b\u4e00\u5e74 (Control\u952e\u52a0\u53f3\u65b9\u5411\u952e)",previousDecade:"\u4e0a\u4e00\u5e74\u4ee3",nextDecade:"\u4e0b\u4e00\u5e74\u4ee3",previousCentury:"\u4e0a\u4e00\u4e16\u7eaa",nextCentury:"\u4e0b\u4e00\u4e16\u7eaa"}},LIAx:function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(t,"__esModule",{value:!0}),t["default"]=a;var i=n("E0u0"),o=r(i);function a(e,t,n,r){function i(t){var r=new o["default"](t);n.call(e,r)}if(e.addEventListener){var a=function(){var n=!1;return"object"===typeof r?n=r.capture||!1:"boolean"===typeof r&&(n=r),e.addEventListener(t,i,r||!1),{v:{remove:function(){e.removeEventListener(t,i,n)}}}}();if("object"===typeof a)return a.v}else if(e.attachEvent)return e.attachEvent("on"+t,i),{remove:function(){e.detachEvent("on"+t,i)}}}e.exports=t["default"]},LMyI:function(e,t,n){"use strict";n.r(t);var r=n("d6i3"),i=n.n(r),o=n("p0pE"),a=n.n(o),s=n("t3Un"),l={switchLoading:{},saveLoading:!1};t["default"]={name:"serverShadowsocks",state:a()({},l),reducers:{setState(e,t){var n=t.payload;return a()({},e,n)}},effects:{update(e,t){return i.a.mark(function n(){var r,o,a,l,c;return i.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.id,o=e.key,a=e.value,l=t.put,n.next=4,Object(s["b"])("/admin/server/shadowsocks/update",{id:r,[o]:a});case 4:if(c=n.sent,200===c.code){n.next=7;break}return n.abrupt("return");case 7:return n.next=9,l({type:"serverManage/getNodes"});case 9:case"end":return n.stop()}},n)})()},drop(e,t){return i.a.mark(function n(){var r,o,a;return i.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.id,o=t.put,n.next=4,Object(s["b"])("/admin/server/shadowsocks/drop",{id:r});case 4:if(a=n.sent,200===a.code){n.next=7;break}return n.abrupt("return");case 7:return n.next=9,o({type:"serverManage/getNodes"});case 9:case"end":return n.stop()}},n)})()},copy(e,t){return i.a.mark(function n(){var r,o,a;return i.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.id,o=t.put,n.next=4,Object(s["b"])("/admin/server/shadowsocks/copy",{id:r});case 4:if(a=n.sent,200===a.code){n.next=7;break}return n.abrupt("return");case 7:return n.next=9,o({type:"serverManage/getNodes"});case 9:case"end":return n.stop()}},n)})()},save(e,t){return i.a.mark(function n(){var r,o,a,l;return i.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.params,o=e.callback,a=t.put,n.next=4,a({type:"setState",payload:{saveLoading:!0}});case 4:return n.next=6,Object(s["b"])("/admin/server/shadowsocks/save",r);case 6:return l=n.sent,n.next=9,a({type:"setState",payload:{saveLoading:!1}});case 9:if(200===l.code){n.next=11;break}return n.abrupt("return");case 11:return n.next=13,a({type:"serverManage/getNodes"});case 13:"function"===typeof o&&o();case 14:case"end":return n.stop()}},n)})()}}}},LPTA:function(e,t,n){"use strict";n.d(t,"e",function(){return i}),n.d(t,"b",function(){return o}),n.d(t,"a",function(){return a}),n.d(t,"d",function(){return s}),n.d(t,"c",function(){return l});var r=1;"undefined"!==typeof window&&(r=Math.max(window.devicePixelRatio||window.screen&&window.screen.deviceXDPI/window.screen.logicalXDPI||1,1));var i=r,o=.4,a="#333",s="#ccc",l="#eee"},LcXL:function(e,t,n){"use strict";var r=n("mrSG"),i=n("bYtY"),o=n("1bdT"),a=n("mFDi"),s=function(e){function t(t){var n=e.call(this)||this;return n.isGroup=!0,n._children=[],n.attr(t),n}return Object(r["a"])(t,e),t.prototype.childrenRef=function(){return this._children},t.prototype.children=function(){return this._children.slice()},t.prototype.childAt=function(e){return this._children[e]},t.prototype.childOfName=function(e){for(var t=this._children,n=0;n=0&&(n.splice(r,0,e),this._doAdd(e))}return this},t.prototype.replace=function(e,t){var n=i["q"](this._children,e);return n>=0&&this.replaceAt(t,n),this},t.prototype.replaceAt=function(e,t){var n=this._children,r=n[t];if(e&&e!==this&&e.parent!==this&&e!==r){n[t]=e,r.parent=null;var i=this.__zr;i&&r.removeSelfFromZr(i),this._doAdd(e)}return this},t.prototype._doAdd=function(e){e.parent&&e.parent.remove(e),e.parent=this;var t=this.__zr;t&&t!==e.__zr&&e.addSelfToZr(t),t&&t.refresh()},t.prototype.remove=function(e){var t=this.__zr,n=this._children,r=i["q"](n,e);return r<0?this:(n.splice(r,1),e.parent=null,t&&e.removeSelfFromZr(t),t&&t.refresh(),this)},t.prototype.removeAll=function(){for(var e=this._children,t=this.__zr,n=0;n0)return!0;return!1}function ce(e,t){var n=new RegExp("[".concat(t.join(),"]"));return e.split(n).filter(function(e){return e})}function ue(e,t){if(t.props.disabled)return!1;var n=J(K(t,this.props.optionFilterProp)).join("");return n.toLowerCase().indexOf(e.toLowerCase())>-1}function he(e,t){if(!Z(t)&&!G(t)&&"string"!==typeof e)throw new Error("Invalid `value` of type `".concat(typeof e,"` supplied to Option, ")+"expected `string` when `tags/combobox` is `true`.")}function de(e,t){return function(n){e[t]=n}}function fe(){var e=(new Date).getTime(),t="xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(/[xy]/g,function(t){var n=(e+16*Math.random())%16|0;return e=Math.floor(e/16),("x"===t?n:7&n|8).toString(16)});return t}function pe(){return pe=Object.assign||function(e){for(var t=1;t1&&void 0!==arguments[1]?arguments[1]:{},r=t.needFocus,i=t.fireSearch,o=n.props,a=n.state;if(a.open!==e){n.props.onDropdownVisibleChange&&n.props.onDropdownVisibleChange(e);var s={open:e,backfillValue:""};!e&&Z(o)&&o.showSearch&&n.setInputValue("",i),e||n.maybeFocus(e,!!r),n.setState($e({open:e},s),function(){e&&n.maybeFocus(e,!!r)})}else n.maybeFocus(e,!!r)},n.setInputValue=function(e){var t=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],r=n.props.onSearch;e!==n.state.inputValue&&n.setState(function(n){return t&&e!==n.inputValue&&r&&r(e),{inputValue:e}},n.forcePopupAlign)},n.getValueByInput=function(e){var t=n.props,r=t.multiple,i=t.tokenSeparators,o=n.state.value,a=!1;return ce(e,i).forEach(function(e){var t=[e];if(r){var i=n.getValueByLabel(e);i&&-1===ne(o,i)&&(o=o.concat(i),a=!0,n.fireSelect(i))}else-1===ne(o,e)&&(o=o.concat(t),a=!0,n.fireSelect(e))}),a?o:void 0},n.getRealOpenState=function(e){var t=n.props.open;if("boolean"===typeof t)return t;var r=(e||n.state).open,i=n._options||[];return!Q(n.props)&&n.props.showSearch||r&&!i.length&&(r=!1),r},n.markMouseDown=function(){n._mouseDown=!0},n.markMouseLeave=function(){n._mouseDown=!1},n.handleBackfill=function(e){if(n.props.backfill&&(Z(n.props)||Y(n.props))){var t=q(e);Y(n.props)&&n.setInputValue(t,!1),n.setState({value:[t],backfillValue:t})}},n.filterOption=function(e,t){var r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:ue,i=n.state.value,o=i[i.length-1];if(!e||o&&o===n.state.backfillValue)return!0;var a=n.props.filterOption;return"filterOption"in n.props?!0===a&&(a=r.bind(ze(n))):a=r.bind(ze(n)),!a||("function"===typeof a?a.call(ze(n),e,t):!t.props.disabled)},n.timeoutFocus=function(){var e=n.props.onFocus;n.focusTimer&&n.clearFocusTime(),n.focusTimer=window.setTimeout(function(){e&&e()},10)},n.clearFocusTime=function(){n.focusTimer&&(clearTimeout(n.focusTimer),n.focusTimer=null)},n.clearBlurTime=function(){n.blurTimer&&(clearTimeout(n.blurTimer),n.blurTimer=null)},n.clearComboboxTime=function(){n.comboboxTimer&&(clearTimeout(n.comboboxTimer),n.comboboxTimer=null)},n.updateFocusClassName=function(){var e=n.rootRef,t=n.props;n._focused?M()(e).add("".concat(t.prefixCls,"-focused")):M()(e).remove("".concat(t.prefixCls,"-focused"))},n.maybeFocus=function(e,t){if(t||e){var r=n.getInputDOMNode(),i=document,o=i.activeElement;r&&(e||Q(n.props))?o!==r&&(r.focus(),n._focused=!0):o!==n.selectionRef&&n.selectionRef&&(n.selectionRef.focus(),n._focused=!0)}},n.removeSelected=function(e,t){var r=n.props;if(!r.disabled&&!n.isChildDisabled(e)){t&&t.stopPropagation&&t.stopPropagation();var i=n.state.value,o=i.filter(function(t){return t!==e}),a=X(r);if(a){var s=e;r.labelInValue&&(s={key:e,label:n.getLabelBySingleValue(e)}),r.onDeselect&&r.onDeselect(s,n.getOptionBySingleValue(e))}n.fireChange(o)}},n.openIfHasChildren=function(){var e=n.props;(r["Children"].count(e.children)||Z(e))&&n.setOpenState(!0)},n.fireSelect=function(e){n.props.onSelect&&n.props.onSelect(n.getVLBySingleValue(e),n.getOptionBySingleValue(e))},n.fireChange=function(e){var t=n.props;"value"in t||n.setState({value:e},n.forcePopupAlign);var r=n.getVLForOnChange(e),i=n.getOptionsBySingleValue(e);t.onChange&&t.onChange(r,X(n.props)?i:i[0])},n.isChildDisabled=function(e){return D(n.props.children).some(function(t){var n=q(t);return n===e&&t.props&&t.props.disabled})},n.forcePopupAlign=function(){n.state.open&&n.selectTriggerRef&&n.selectTriggerRef.triggerRef&&n.selectTriggerRef.triggerRef.forcePopupAlign()},n.renderFilterOptions=function(){var e=n.state.inputValue,t=n.props,i=t.children,o=t.tags,a=t.notFoundContent,s=[],l=[],c=!1,u=n.renderFilterOptionsFromChildren(i,l,s);if(o){var h=n.state.value;h=h.filter(function(t){return-1===l.indexOf(t)&&(!e||String(t).indexOf(String(e))>-1)}),h.sort(function(e,t){return e.length-t.length}),h.forEach(function(e){var t=e,n=r["createElement"](R["b"],{style:oe,role:"option",attribute:ae,value:t,key:t},t);u.push(n),s.push(n)}),e&&s.every(function(t){return q(t)!==e})&&u.unshift(r["createElement"](R["b"],{style:oe,role:"option",attribute:ae,value:e,key:e},e))}return!u.length&&a&&(c=!0,u=[r["createElement"](R["b"],{style:oe,attribute:ae,disabled:!0,role:"option",value:"NOT_FOUND",key:"NOT_FOUND"},a)]),{empty:c,options:u}},n.renderFilterOptionsFromChildren=function(e,t,i){var o=[],a=n.props,s=n.state.inputValue,l=a.tags;return r["Children"].forEach(e,function(e){if(e){var a=e.type;if(a.isSelectOptGroup){var c=e.props.label,u=e.key;if(u||"string"!==typeof c?!c&&u&&(c=u):u=c,s&&n.filterOption(s,e)){var h=D(e.props.children).map(function(e){var t=q(e)||e.key;return r["createElement"](R["b"],$e({key:t,value:t},e.props))});o.push(r["createElement"](R["c"],{key:u,title:c},h))}else{var d=n.renderFilterOptionsFromChildren(e.props.children,t,i);d.length&&o.push(r["createElement"](R["c"],{key:u,title:c},d))}}else{F()(a.isSelectOption,"the children of `Select` should be `Select.Option` or `Select.OptGroup`, "+"instead of `".concat(a.name||a.displayName||e.type,"`."));var f=q(e);if(he(f,n.props),n.filterOption(s,e)){var p=r["createElement"](R["b"],$e({style:oe,attribute:ae,value:f,key:f,role:"option"},e.props));o.push(p),i.push(p)}l&&t.push(f)}}}),o},n.renderTopControlNode=function(){var e=n.state,t=e.open,i=e.inputValue,o=n.state.value,a=n.props,s=a.choiceTransitionName,l=a.prefixCls,c=a.maxTagTextLength,u=a.maxTagCount,h=a.showSearch,d=a.removeIcon,f=a.maxTagPlaceholder,p="".concat(l,"-selection__rendered"),m=null;if(Z(a)){var g=null;if(o.length){var v=!1,y=1;h&&t?(v=!i,v&&(y=.4)):v=!0;var b=o[0],w=n.getOptionInfoBySingleValue(b),x=w.label,_=w.title;g=r["createElement"]("div",{key:"value",className:"".concat(l,"-selection-selected-value"),title:U(_||x),style:{display:v?"block":"none",opacity:y}},x)}m=h?[g,r["createElement"]("div",{className:"".concat(l,"-search ").concat(l,"-search--inline"),key:"input",style:{display:t?"block":"none"}},n.getInputElement())]:[g]}else{var S,C=[],E=o;if(void 0!==u&&o.length>u){E=E.slice(0,u);var k=n.getVLForOnChange(o.slice(u,o.length)),O="+ ".concat(o.length-u," ...");f&&(O="function"===typeof f?f(k):f),S=r["createElement"]("li",$e({style:oe},ae,{role:"presentation",onMouseDown:te,className:"".concat(l,"-selection__choice ").concat(l,"-selection__choice__disabled"),key:"maxTagPlaceholder",title:U(O)}),r["createElement"]("div",{className:"".concat(l,"-selection__choice__content")},O))}X(a)&&(C=E.map(function(e){var t=n.getOptionInfoBySingleValue(e),i=t.label,o=t.title||i;c&&"string"===typeof i&&i.length>c&&(i="".concat(i.slice(0,c),"..."));var a=n.isChildDisabled(e),s=a?"".concat(l,"-selection__choice ").concat(l,"-selection__choice__disabled"):"".concat(l,"-selection__choice");return r["createElement"]("li",$e({style:oe},ae,{onMouseDown:te,className:s,role:"presentation",key:e||Ge,title:U(o)}),r["createElement"]("div",{className:"".concat(l,"-selection__choice__content")},i),a?null:r["createElement"]("span",{onClick:function(t){n.removeSelected(e,t)},className:"".concat(l,"-selection__choice__remove")},d||r["createElement"]("i",{className:"".concat(l,"-selection__choice__remove-icon")},"\xd7")))})),S&&C.push(S),C.push(r["createElement"]("li",{className:"".concat(l,"-search ").concat(l,"-search--inline"),key:"__input"},n.getInputElement())),m=X(a)&&s?r["createElement"](P["a"],{onLeave:n.onChoiceAnimationLeave,component:"ul",transitionName:s},C):r["createElement"]("ul",null,C)}return r["createElement"]("div",{className:p,ref:n.saveTopCtrlRef},n.getPlaceholderElement(),m)};var i=t.getOptionsInfoFromProps(e);if(e.tags&&"function"!==typeof e.filterOption){var o=Object.keys(i).some(function(e){return i[e].disabled});F()(!o,"Please avoid setting option to disabled in tags mode since user can always type text as tag.")}return n.state={value:t.getValueFromProps(e,!0),inputValue:e.combobox?t.getInputValueForCombobox(e,i,!0):"",open:e.defaultOpen,optionsInfo:i,backfillValue:"",skipBuildOptionsInfo:!0,ariaId:""},n.saveInputRef=de(ze(n),"inputRef"),n.saveInputMirrorRef=de(ze(n),"inputMirrorRef"),n.saveTopCtrlRef=de(ze(n),"topCtrlRef"),n.saveSelectTriggerRef=de(ze(n),"selectTriggerRef"),n.saveRootRef=de(ze(n),"rootRef"),n.saveSelectionRef=de(ze(n),"selectionRef"),n}return Ue(t,e),Be(t,[{key:"componentDidMount",value:function(){(this.props.autoFocus||this.state.open)&&this.focus(),this.setState({ariaId:fe()})}},{key:"componentDidUpdate",value:function(){if(X(this.props)){var e=this.getInputDOMNode(),t=this.getInputMirrorDOMNode();e&&e.value&&t?(e.style.width="",e.style.width="".concat(t.clientWidth,"px")):e&&(e.style.width="")}this.forcePopupAlign()}},{key:"componentWillUnmount",value:function(){this.clearFocusTime(),this.clearBlurTime(),this.clearComboboxTime(),this.dropdownContainer&&(N["unmountComponentAtNode"](this.dropdownContainer),document.body.removeChild(this.dropdownContainer),this.dropdownContainer=null)}},{key:"focus",value:function(){Z(this.props)&&this.selectionRef?this.selectionRef.focus():this.getInputDOMNode()&&this.getInputDOMNode().focus()}},{key:"blur",value:function(){Z(this.props)&&this.selectionRef?this.selectionRef.blur():this.getInputDOMNode()&&this.getInputDOMNode().blur()}},{key:"renderArrow",value:function(e){var t=this.props,n=t.showArrow,i=void 0===n?!e:n,o=t.loading,a=t.inputIcon,s=t.prefixCls;if(!i&&!o)return null;var l=o?r["createElement"]("i",{className:"".concat(s,"-arrow-loading")}):r["createElement"]("i",{className:"".concat(s,"-arrow-icon")});return r["createElement"]("span",$e({key:"arrow",className:"".concat(s,"-arrow"),style:oe},ae,{onClick:this.onArrowClick}),a||l)}},{key:"renderClear",value:function(){var e=this.props,t=e.prefixCls,n=e.allowClear,i=e.clearIcon,o=this.state.inputValue,a=this.state.value,s=r["createElement"]("span",$e({key:"clear",className:"".concat(t,"-selection__clear"),onMouseDown:te,style:oe},ae,{onClick:this.onClearSelection}),i||r["createElement"]("i",{className:"".concat(t,"-selection__clear-icon")},"\xd7"));return n?Y(this.props)?o?s:null:o||a.length?s:null:null}},{key:"render",value:function(){var e,t=this.props,n=X(t),i=t.showArrow,o=void 0===i||i,a=this.state,s=t.className,l=t.disabled,c=t.prefixCls,u=t.loading,h=this.renderTopControlNode(),d=this.state,f=d.open,p=d.ariaId;if(f){var m=this.renderFilterOptions();this._empty=m.empty,this._options=m.options}var g=this.getRealOpenState(),v=this._empty,y=this._options||[],b={};Object.keys(t).forEach(function(e){!Object.prototype.hasOwnProperty.call(t,e)||"data-"!==e.substr(0,5)&&"aria-"!==e.substr(0,5)&&"role"!==e||(b[e]=t[e])});var w=$e({},b);Q(t)||(w=$e($e({},w),{onKeyDown:this.onKeyDown,tabIndex:t.disabled?-1:t.tabIndex}));var x=(e={},Ie(e,s,!!s),Ie(e,c,1),Ie(e,"".concat(c,"-open"),f),Ie(e,"".concat(c,"-focused"),f||!!this._focused),Ie(e,"".concat(c,"-combobox"),Y(t)),Ie(e,"".concat(c,"-disabled"),l),Ie(e,"".concat(c,"-enabled"),!l),Ie(e,"".concat(c,"-allow-clear"),!!t.allowClear),Ie(e,"".concat(c,"-no-arrow"),!o),Ie(e,"".concat(c,"-loading"),!!u),e);return r["createElement"](Ne,{onPopupFocus:this.onPopupFocus,onMouseEnter:this.props.onMouseEnter,onMouseLeave:this.props.onMouseLeave,dropdownAlign:t.dropdownAlign,dropdownClassName:t.dropdownClassName,dropdownMatchSelectWidth:t.dropdownMatchSelectWidth,defaultActiveFirstOption:t.defaultActiveFirstOption,dropdownMenuStyle:t.dropdownMenuStyle,transitionName:t.transitionName,animation:t.animation,prefixCls:t.prefixCls,dropdownStyle:t.dropdownStyle,combobox:t.combobox,showSearch:t.showSearch,options:y,empty:v,multiple:n,disabled:l,visible:g,inputValue:a.inputValue,value:a.value,backfillValue:a.backfillValue,firstActiveValue:t.firstActiveValue,onDropdownVisibleChange:this.onDropdownVisibleChange,getPopupContainer:t.getPopupContainer,onMenuSelect:this.onMenuSelect,onMenuDeselect:this.onMenuDeselect,onPopupScroll:t.onPopupScroll,showAction:t.showAction,ref:this.saveSelectTriggerRef,menuItemSelectedIcon:t.menuItemSelectedIcon,dropdownRender:t.dropdownRender,ariaId:p},r["createElement"]("div",{id:t.id,style:t.style,ref:this.saveRootRef,onBlur:this.onOuterBlur,onFocus:this.onOuterFocus,className:T()(x),onMouseDown:this.markMouseDown,onMouseUp:this.markMouseLeave,onMouseOut:this.markMouseLeave},r["createElement"]("div",$e({ref:this.saveSelectionRef,key:"selection",className:"".concat(c,"-selection\n ").concat(c,"-selection--").concat(n?"multiple":"single"),role:"combobox","aria-autocomplete":"list","aria-haspopup":"true","aria-controls":p,"aria-expanded":g},w),h,this.renderClear(),this.renderArrow(!!n))))}}]),t}(r["Component"]);Qe.propTypes=k,Qe.defaultProps={prefixCls:"rc-select",defaultOpen:!1,labelInValue:!1,defaultActiveFirstOption:!0,showSearch:!0,allowClear:!1,placeholder:"",onChange:Ye,onFocus:Ye,onBlur:Ye,onSelect:Ye,onSearch:Ye,onDeselect:Ye,onInputKeyDown:Ye,dropdownMatchSelectWidth:!0,dropdownStyle:{},dropdownMenuStyle:{},optionFilterProp:"value",optionLabelProp:"value",notFoundContent:"Not Found",backfill:!1,showAction:["click"],tokenSeparators:[],autoClearSearchValue:!0,tabIndex:0,dropdownRender:function(e){return e}},Qe.getDerivedStateFromProps=function(e,t){var n=t.skipBuildOptionsInfo?t.optionsInfo:Qe.getOptionsInfoFromProps(e,t),r={optionsInfo:n,skipBuildOptionsInfo:!1};if("open"in e&&(r.open=e.open),e.disabled&&t.open&&(r.open=!1),"value"in e){var i=Qe.getValueFromProps(e);r.value=i,e.combobox&&(r.inputValue=Qe.getInputValueForCombobox(e,n))}return r},Qe.getOptionsFromChildren=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[];return r["Children"].forEach(e,function(e){if(e){var n=e.type;n.isSelectOptGroup?Qe.getOptionsFromChildren(e.props.children,t):t.push(e)}}),t},Qe.getInputValueForCombobox=function(e,t,n){var r=[];if("value"in e&&!n&&(r=J(e.value)),"defaultValue"in e&&n&&(r=J(e.defaultValue)),!r.length)return"";r=r[0];var i=r;return e.labelInValue?i=r.label:t[ee(r)]&&(i=t[ee(r)].label),void 0===i&&(i=""),i},Qe.getLabelFromOption=function(e,t){return K(t,e.optionLabelProp)},Qe.getOptionsInfoFromProps=function(e,t){var n=Qe.getOptionsFromChildren(e.children),r={};if(n.forEach(function(t){var n=q(t);r[ee(n)]={option:t,value:n,label:Qe.getLabelFromOption(e,t),title:t.props.title,disabled:t.props.disabled}}),t){var i=t.optionsInfo,o=t.value;o&&o.forEach(function(e){var t=ee(e);r[t]||void 0===i[t]||(r[t]=i[t])})}return r},Qe.getValueFromProps=function(e,t){var n=[];return"value"in e&&!t&&(n=J(e.value)),"defaultValue"in e&&t&&(n=J(e.defaultValue)),e.labelInValue&&(n=n.map(function(e){return e.key})),n},Qe.displayName="Select",Object(I["polyfill"])(Qe);var Ze=Qe;n.d(t,"b",function(){return b}),n.d(t,"a",function(){return h}),Ze.Option=b,Ze.OptGroup=h;t["c"]=Ze},Lnex:function(e,t,n){var r=n("OeOC"),i=n("OsVd"),o=n("Spc3");e.exports=function(e){return function(t,n,a){var s,l=r(t),c=i(l.length),u=o(a,c);if(e&&n!=n){while(c>u)if(s=l[u++],s!=s)return!0}else for(;c>u;u++)if((e||u in l)&&l[u]===n)return e||u||0;return!e&&-1}}},LpSC:function(e,t,n){n("bZMm"),e.exports=self.fetch.bind(self)},LsAW:function(e,t){t.f={}.propertyIsEnumerable},M1xp:function(e,t,n){var r=n("a0xu");e.exports=Object("z").propertyIsEnumerable(0)?Object:function(e){return"String"==r(e)?e.split(""):Object(e)}},MEGo:function(e,t,n){"use strict";n.d(t,"a",function(){return W}),n.d(t,"b",function(){return H});var r,i=n("LcXL"),o=n("Dagg"),a=n("2fw6"),s=n("x6Kt"),l=n("rmlV"),c=n("yxFR"),u=n("h7HQ"),h=n("1Jh7"),d=n("Fofx"),f=n("NC18"),p=n("bYtY"),m=n("SKnc"),g=n("3e3G"),v=n("3U8f"),y=n("SoAU"),b={fill:"fill",stroke:"stroke","stroke-width":"lineWidth",opacity:"opacity","fill-opacity":"fillOpacity","stroke-opacity":"strokeOpacity","stroke-dasharray":"lineDash","stroke-dashoffset":"lineDashOffset","stroke-linecap":"lineCap","stroke-linejoin":"lineJoin","stroke-miterlimit":"miterLimit","font-family":"fontFamily","font-size":"fontSize","font-style":"fontStyle","font-weight":"fontWeight","text-anchor":"textAlign",visibility:"visibility",display:"display"},w=Object(p["D"])(b),x={"alignment-baseline":"textBaseline","stop-color":"stopColor"},_=Object(p["D"])(x),S=function(){function e(){this._defs={},this._root=null}return e.prototype.parse=function(e,t){t=t||{};var n=Object(y["a"])(e);if(!n)throw new Error("Illegal svg");this._defsUsePending=[];var r=new i["a"];this._root=r;var o=[],a=n.getAttribute("viewBox")||"",l=parseFloat(n.getAttribute("width")||t.width),c=parseFloat(n.getAttribute("height")||t.height);isNaN(l)&&(l=null),isNaN(c)&&(c=null),A(n,r,null,!0,!1);var u,h,d=n.firstChild;while(d)this._parseNode(d,r,o,null,!1,!1),d=d.nextSibling;if(L(this._defs,this._defsUsePending),this._defsUsePending=[],a){var f=j(a);f.length>=4&&(u={x:parseFloat(f[0]||0),y:parseFloat(f[1]||0),width:parseFloat(f[2]),height:parseFloat(f[3])})}if(u&&null!=l&&null!=c&&(h=W(u,{x:0,y:0,width:l,height:c}),!t.ignoreViewBox)){var p=r;r=new i["a"],r.add(p),p.scaleX=p.scaleY=h.scale,p.x=h.x,p.y=h.y}return t.ignoreRootClip||null==l||null==c||r.setClipPath(new s["a"]({shape:{x:0,y:0,width:l,height:c}})),{root:r,width:l,height:c,viewBoxRect:u,viewBoxTransform:h,named:o}},e.prototype._parseNode=function(e,t,n,i,o,a){var s,l=e.nodeName.toLowerCase(),c=i;if("defs"===l&&(o=!0),"text"===l&&(a=!0),"defs"===l||"switch"===l)s=t;else{if(!o){var u=r[l];if(u&&Object(p["p"])(r,l)){s=u.call(this,e,t);var h=e.getAttribute("name");if(h){var d={name:h,namedFrom:null,svgNodeTagLower:l,el:s};n.push(d),"g"===l&&(c=d)}else i&&n.push({name:i.name,namedFrom:i,svgNodeTagLower:l,el:s});t.add(s)}}var f=C[l];if(f&&Object(p["p"])(C,l)){var m=f.call(this,e),g=e.getAttribute("id");g&&(this._defs[g]=m)}}if(s&&s.isGroup){var v=e.firstChild;while(v)1===v.nodeType?this._parseNode(v,s,n,c,o,a):3===v.nodeType&&a&&this._parseText(v,s),v=v.nextSibling}},e.prototype._parseText=function(e,t){var n=new v["a"]({style:{text:e.textContent},silent:!0,x:this._textX||0,y:this._textY||0});O(t,n),A(e,n,this._defsUsePending,!1,!1),M(n,t);var r=n.style,i=r.fontSize;i&&i<9&&(r.fontSize=9,n.scaleX*=i/9,n.scaleY*=i/9);var o=(r.fontSize||r.fontFamily)&&[r.fontStyle,r.fontWeight,(r.fontSize||12)+"px",r.fontFamily||"sans-serif"].join(" ");r.font=o;var a=n.getBoundingRect();return this._textX+=a.width,t.add(n),n},e.internalField=function(){r={g:function(e,t){var n=new i["a"];return O(t,n),A(e,n,this._defsUsePending,!1,!1),n},rect:function(e,t){var n=new s["a"];return O(t,n),A(e,n,this._defsUsePending,!1,!1),n.setShape({x:parseFloat(e.getAttribute("x")||"0"),y:parseFloat(e.getAttribute("y")||"0"),width:parseFloat(e.getAttribute("width")||"0"),height:parseFloat(e.getAttribute("height")||"0")}),n.silent=!0,n},circle:function(e,t){var n=new a["a"];return O(t,n),A(e,n,this._defsUsePending,!1,!1),n.setShape({cx:parseFloat(e.getAttribute("cx")||"0"),cy:parseFloat(e.getAttribute("cy")||"0"),r:parseFloat(e.getAttribute("r")||"0")}),n.silent=!0,n},line:function(e,t){var n=new c["a"];return O(t,n),A(e,n,this._defsUsePending,!1,!1),n.setShape({x1:parseFloat(e.getAttribute("x1")||"0"),y1:parseFloat(e.getAttribute("y1")||"0"),x2:parseFloat(e.getAttribute("x2")||"0"),y2:parseFloat(e.getAttribute("y2")||"0")}),n.silent=!0,n},ellipse:function(e,t){var n=new l["a"];return O(t,n),A(e,n,this._defsUsePending,!1,!1),n.setShape({cx:parseFloat(e.getAttribute("cx")||"0"),cy:parseFloat(e.getAttribute("cy")||"0"),rx:parseFloat(e.getAttribute("rx")||"0"),ry:parseFloat(e.getAttribute("ry")||"0")}),n.silent=!0,n},polygon:function(e,t){var n,r=e.getAttribute("points");r&&(n=T(r));var i=new u["a"]({shape:{points:n||[]},silent:!0});return O(t,i),A(e,i,this._defsUsePending,!1,!1),i},polyline:function(e,t){var n,r=e.getAttribute("points");r&&(n=T(r));var i=new h["a"]({shape:{points:n||[]},silent:!0});return O(t,i),A(e,i,this._defsUsePending,!1,!1),i},image:function(e,t){var n=new o["a"];return O(t,n),A(e,n,this._defsUsePending,!1,!1),n.setStyle({image:e.getAttribute("xlink:href")||e.getAttribute("href"),x:+e.getAttribute("x"),y:+e.getAttribute("y"),width:+e.getAttribute("width"),height:+e.getAttribute("height")}),n.silent=!0,n},text:function(e,t){var n=e.getAttribute("x")||"0",r=e.getAttribute("y")||"0",o=e.getAttribute("dx")||"0",a=e.getAttribute("dy")||"0";this._textX=parseFloat(n)+parseFloat(o),this._textY=parseFloat(r)+parseFloat(a);var s=new i["a"];return O(t,s),A(e,s,this._defsUsePending,!1,!0),s},tspan:function(e,t){var n=e.getAttribute("x"),r=e.getAttribute("y");null!=n&&(this._textX=parseFloat(n)),null!=r&&(this._textY=parseFloat(r));var o=e.getAttribute("dx")||"0",a=e.getAttribute("dy")||"0",s=new i["a"];return O(t,s),A(e,s,this._defsUsePending,!1,!0),this._textX+=parseFloat(o),this._textY+=parseFloat(a),s},path:function(e,t){var n=e.getAttribute("d")||"",r=Object(f["b"])(n);return O(t,r),A(e,r,this._defsUsePending,!1,!1),r.silent=!0,r}}}(),e}(),C={lineargradient:function(e){var t=parseInt(e.getAttribute("x1")||"0",10),n=parseInt(e.getAttribute("y1")||"0",10),r=parseInt(e.getAttribute("x2")||"10",10),i=parseInt(e.getAttribute("y2")||"0",10),o=new m["a"](t,n,r,i);return E(e,o),k(e,o),o},radialgradient:function(e){var t=parseInt(e.getAttribute("cx")||"0",10),n=parseInt(e.getAttribute("cy")||"0",10),r=parseInt(e.getAttribute("r")||"0",10),i=new g["a"](t,n,r);return E(e,i),k(e,i),i}};function E(e,t){var n=e.getAttribute("gradientUnits");"userSpaceOnUse"===n&&(t.global=!0)}function k(e,t){var n=e.firstChild;while(n){if(1===n.nodeType&&"stop"===n.nodeName.toLocaleLowerCase()){var r=n.getAttribute("offset"),i=void 0;i=r&&r.indexOf("%")>0?parseInt(r,10)/100:r?parseFloat(r):0;var o={};V(n,o,o);var a=o.stopColor||n.getAttribute("stop-color")||"#000000";t.colorStops.push({offset:i,color:a})}n=n.nextSibling}}function O(e,t){e&&e.__inheritedStyle&&(t.__inheritedStyle||(t.__inheritedStyle={}),Object(p["j"])(t.__inheritedStyle,e.__inheritedStyle))}function T(e){for(var t=j(e),n=[],r=0;r0;o-=2){var a=r[o],s=r[o-1],l=j(a);switch(i=i||d["b"](),s){case"translate":d["h"](i,i,[parseFloat(l[0]),parseFloat(l[1]||"0")]);break;case"scale":d["g"](i,i,[parseFloat(l[0]),parseFloat(l[1]||l[0])]);break;case"rotate":d["f"](i,i,-parseFloat(l[0])*I);break;case"skewX":var c=Math.tan(parseFloat(l[0])*I);d["e"](i,[1,0,c,1,0,0],i);break;case"skewY":var u=Math.tan(parseFloat(l[0])*I);d["e"](i,[1,u,0,1,0,0],i);break;case"matrix":i[0]=parseFloat(l[0]),i[1]=parseFloat(l[1]),i[2]=parseFloat(l[2]),i[3]=parseFloat(l[3]),i[4]=parseFloat(l[4]),i[5]=parseFloat(l[5]);break}}t.setLocalTransform(i)}}var F=/([^\s:;]+)\s*:\s*([^:;]+)/g;function V(e,t,n){var r=e.getAttribute("style");if(r){var i;F.lastIndex=0;while(null!=(i=F.exec(r))){var o=i[1],a=Object(p["p"])(b,o)?b[o]:null;a&&(t[a]=i[2]);var s=Object(p["p"])(x,o)?x[o]:null;s&&(n[s]=i[2])}}}function B(e,t,n){for(var r=0;r children");r=e}}),r}function C(e,t,n){var r=e.length===t.length;return r&&e.forEach(function(e,i){var o=t[i];e&&o&&(e&&!o||!e&&o?r=!1:e.key!==o.key?r=!1:n&&e.props[n]!==o.props[n]&&(r=!1))}),r}function E(e,t){var n=[],r={},i=[];return e.forEach(function(e){e&&_(t,e.key)?i.length&&(r[e.key]=i,i=[]):i.push(e)}),t.forEach(function(e){e&&Object.prototype.hasOwnProperty.call(r,e.key)&&(n=n.concat(r[e.key])),n.push(e)}),n=n.concat(i),n}var k=n("i8i4"),O=n.n(k),T=n("EJiy"),A=n.n(T),M=n("/dDc"),P=n("PFWz"),R=n.n(P),L=0!==M["a"].endEvents.length,D=["Webkit","Moz","O","ms"],j=["-webkit-","-moz-","-o-","ms-",""];function N(e,t){for(var n=window.getComputedStyle(e,null),r="",i=0;i children");return g.a.createElement(U,{key:n.key,ref:function(t){e.childrenRefs[n.key]=t},animation:t.animation,transitionName:t.transitionName,transitionEnter:t.transitionEnter,transitionAppear:t.transitionAppear,transitionLeave:t.transitionLeave},n)}));var o=t.component;if(o){var a=t;return"string"===typeof o&&(a=i()({className:t.className,style:t.style},t.componentProps)),g.a.createElement(o,a,r)}return r[0]||null}}]),t}(g.a.Component);Y.isAnimate=!0,Y.propTypes={className:y.a.string,style:y.a.object,component:y.a.any,componentProps:y.a.object,animation:y.a.object,transitionName:y.a.oneOfType([y.a.string,y.a.object]),transitionEnter:y.a.bool,transitionAppear:y.a.bool,exclusive:y.a.bool,transitionLeave:y.a.bool,onEnd:y.a.func,onEnter:y.a.func,onLeave:y.a.func,onAppear:y.a.func,showProp:y.a.string,children:y.a.node},Y.defaultProps={animation:{},component:"span",componentProps:{},transitionEnter:!0,transitionLeave:!0,transitionAppear:!1,onEnd:G,onEnter:G,onLeave:G,onAppear:G};var X=function(){var e=this;this.performEnter=function(t){e.childrenRefs[t]&&(e.currentlyAnimatingKeys[t]=!0,e.childrenRefs[t].componentWillEnter(e.handleDoneAdding.bind(e,t,"enter")))},this.performAppear=function(t){e.childrenRefs[t]&&(e.currentlyAnimatingKeys[t]=!0,e.childrenRefs[t].componentWillAppear(e.handleDoneAdding.bind(e,t,"appear")))},this.handleDoneAdding=function(t,n){var r=e.props;if(delete e.currentlyAnimatingKeys[t],!r.exclusive||r===e.nextProps){var i=x(K(r));e.isValidChildByKey(i,t)?"appear"===n?W.allowAppearCallback(r)&&(r.onAppear(t),r.onEnd(t,!0)):W.allowEnterCallback(r)&&(r.onEnter(t),r.onEnd(t,!0)):e.performLeave(t)}},this.performLeave=function(t){e.childrenRefs[t]&&(e.currentlyAnimatingKeys[t]=!0,e.childrenRefs[t].componentWillLeave(e.handleDoneLeaving.bind(e,t)))},this.handleDoneLeaving=function(t){var n=e.props;if(delete e.currentlyAnimatingKeys[t],!n.exclusive||n===e.nextProps){var r=x(K(n));if(e.isValidChildByKey(r,t))e.performEnter(t);else{var i=function(){W.allowLeaveCallback(n)&&(n.onLeave(t),n.onEnd(t,!1))};C(e.state.children,r,n.showProp)?i():e.setState({children:r},i)}}}};t["a"]=w(Y)},MPFp:function(e,t,n){"use strict";var r=n("uOPS"),i=n("Y7ZC"),o=n("kTiW"),a=n("NegM"),s=n("SBuE"),l=n("j2DC"),c=n("RfKB"),u=n("U+KD"),h=n("UWiX")("iterator"),d=!([].keys&&"next"in[].keys()),f="@@iterator",p="keys",m="values",g=function(){return this};e.exports=function(e,t,n,v,y,b,w){l(n,t,v);var x,_,S,C=function(e){if(!d&&e in T)return T[e];switch(e){case p:return function(){return new n(this,e)};case m:return function(){return new n(this,e)}}return function(){return new n(this,e)}},E=t+" Iterator",k=y==m,O=!1,T=e.prototype,A=T[h]||T[f]||y&&T[y],M=A||C(y),P=y?k?C("entries"):M:void 0,R="Array"==t&&T.entries||A;if(R&&(S=u(R.call(new e)),S!==Object.prototype&&S.next&&(c(S,E,!0),r||"function"==typeof S[h]||a(S,h,g))),k&&A&&A.name!==m&&(O=!0,M=function(){return A.call(this)}),r&&!w||!d&&!O&&T[h]||a(T,h,M),s[t]=M,s[E]=g,y)if(x={values:k?M:C(m),keys:b?M:C(p),entries:P},w)for(_ in x)_ in T||o(T,_,x[_]);else i(i.P+i.F*(d||O),t,x);return x}},MWgS:function(e,t,n){"use strict";function r(e,t){if(null==e)return{};var n,r,i={},o=Object.keys(e);for(r=0;r=0||(i[n]=e[n]);return i}n.d(t,"a",function(){return r})},MgzW:function(e,t,n){"use strict";var r=Object.getOwnPropertySymbols,i=Object.prototype.hasOwnProperty,o=Object.prototype.propertyIsEnumerable;function a(e){if(null===e||void 0===e)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(e)}function s(){try{if(!Object.assign)return!1;var e=new String("abc");if(e[5]="de","5"===Object.getOwnPropertyNames(e)[0])return!1;for(var t={},n=0;n<10;n++)t["_"+String.fromCharCode(n)]=n;var r=Object.getOwnPropertyNames(t).map(function(e){return t[e]});if("0123456789"!==r.join(""))return!1;var i={};return"abcdefghijklmnopqrst".split("").forEach(function(e){i[e]=e}),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},i)).join("")}catch(e){return!1}}e.exports=s()?Object.assign:function(e,t){for(var n,s,l=a(e),c=1;c=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}function i(e,t){if(null==e)return{};var n,r,i={},o=Object.keys(e);for(r=0;r=0||(i[n]=e[n]);return i}function o(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function a(e){for(var t=1;t1&&0===n&&i&&"auto"!==i?parseInt(i.toString(),10):i},m);return u.createElement(h,Object.assign({},p,{style:g}),t.map(function(e,t){var n,i=e.column,o=e.isLast,l=r(e,["column","isLast"]),h=i.onHeaderCell?i.onHeaderCell(i):{};return i.align&&(h.style=a({},h.style,{textAlign:i.align})),h.className=d.default(h.className,i.className,(n={},s(n,"".concat(c,"-align-").concat(i.align),!!i.align),s(n,"".concat(c,"-row-cell-ellipsis"),!!i.ellipsis),s(n,"".concat(c,"-row-cell-break-word"),!!i.width),s(n,"".concat(c,"-row-cell-last"),o),n)),u.createElement(f,Object.assign({},l,h,{key:i.key||i.dataIndex||t}))}))}function p(e,t){var n=e.fixedColumnsHeadRowsHeight,r=t.columns,i=t.rows,o=t.fixed,a=n[0];return o&&a&&r?"auto"===a?"auto":a/i.length:null}t.default=h.connect(function(e,t){return{height:p(e,t)}})(f)},MvwC:function(e,t,n){var r=n("5T2Y").document;e.exports=r&&r.documentElement},N2Kk:function(e,t,n){"use strict";t["a"]={items_per_page:"\u6761/\u9875",jump_to:"\u8df3\u81f3",jump_to_confirm:"\u786e\u5b9a",page:"\u9875",prev_page:"\u4e0a\u4e00\u9875",next_page:"\u4e0b\u4e00\u9875",prev_5:"\u5411\u524d 5 \u9875",next_5:"\u5411\u540e 5 \u9875",prev_3:"\u5411\u524d 3 \u9875",next_3:"\u5411\u540e 3 \u9875"}},N4uP:function(e,t,n){var r=n("c0Oy"),i=n("WGNW"),o=n("08Qx"),a=[].slice,s=/MSIE .\./.test(o),l=function(e){return function(t,n){var r=arguments.length>2,i=!!r&&a.call(arguments,2);return e(r?function(){("function"==typeof t?t:Function(t)).apply(this,i)}:t,n)}};i(i.G+i.B+i.F*s,{setTimeout:l(r.setTimeout),setInterval:l(r.setInterval)})},N9RS:function(e,t,n){"use strict";n.r(t);var r=n("d6i3"),i=n.n(r),o=n("p0pE"),a=n.n(o),s=n("t3Un"),l=(n("tI4l"),{payments:[],fetchLoading:!1});t["default"]={name:"payment",state:a()({},l),reducers:{setState(e,t){var n=t.payload;return a()({},e,n)}},effects:{fetch(e,t){return i.a.mark(function e(){var n,r;return i.a.wrap(function(e){while(1)switch(e.prev=e.next){case 0:return n=t.put,e.next=3,n({type:"setState",payload:{fetchLoading:!0}});case 3:return e.next=5,Object(s["a"])("/admin/payment/fetch");case 5:return r=e.sent,e.next=8,n({type:"setState",payload:{fetchLoading:!1}});case 8:if(200===r.code){e.next=10;break}return e.abrupt("return");case 10:return e.next=12,n({type:"setState",payload:{payments:r.data}});case 12:case"end":return e.stop()}},e)})()},getPaymentMethods(e){return i.a.mark(function t(){var n,r;return i.a.wrap(function(t){while(1)switch(t.prev=t.next){case 0:return n=e.complete,t.next=3,Object(s["a"])("/admin/payment/getPaymentMethods");case 3:if(r=t.sent,200===r.code){t.next=6;break}return t.abrupt("return");case 6:n(r.data);case 7:case"end":return t.stop()}},t)})()},getPaymentForm(e){return i.a.mark(function t(){var n,r,o,a;return i.a.wrap(function(t){while(1)switch(t.prev=t.next){case 0:return n=e.complete,r=e.payment,o=e.id,t.next=3,Object(s["b"])("/admin/payment/getPaymentForm",{payment:r,id:o});case 3:if(a=t.sent,200===a.code){t.next=6;break}return t.abrupt("return");case 6:n(a.data);case 7:case"end":return t.stop()}},t)})()},save(e,t){return i.a.mark(function n(){var r,o,l,c;return i.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.params,o=e.complete,l=t.put,n.next=4,Object(s["b"])("/admin/payment/save",a()({},r));case 4:if(c=n.sent,200===c.code){n.next=7;break}return n.abrupt("return");case 7:return"function"===typeof o&&o(c.data),n.next=10,l({type:"fetch"});case 10:case"end":return n.stop()}},n)})()},drop(e,t){return i.a.mark(function n(){var r,o,a;return i.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.id,o=t.put,n.next=4,Object(s["b"])("/admin/payment/drop",{id:r});case 4:if(a=n.sent,200===a.code){n.next=7;break}return n.abrupt("return");case 7:return n.next=9,o({type:"fetch"});case 9:case"end":return n.stop()}},n)})()}}}},NC18:function(e,t,n){"use strict";var r=n("mrSG"),i=n("y+Vt"),o=n("IMiH"),a=n("QBsz"),s=o["a"].CMD,l=[[],[],[]],c=Math.sqrt,u=Math.atan2;function h(e,t){if(t){var n,r,i,o,h,d,f=e.data,p=e.len(),m=s.M,g=s.C,v=s.L,y=s.R,b=s.A,w=s.Q;for(i=0,o=0;i1&&(a*=f(w),s*=f(w));var x=(i===o?-1:1)*f((a*a*(s*s)-a*a*(v*v)-s*s*(d*d))/(a*a*(v*v)+s*s*(d*d)))||0,_=x*a*v/s,S=x*-s*d/a,C=(e+n)/2+m(h)*_-p(h)*S,E=(t+r)/2+p(h)*_+m(h)*S,k=b([1,0],[(d-_)/a,(v-S)/s]),O=[(d-_)/a,(v-S)/s],T=[(-1*d-_)/a,(-1*v-S)/s],A=b(O,T);if(y(O,T)<=-1&&(A=g),y(O,T)>=1&&(A=0),A<0){var M=Math.round(A/g*1e6)/1e6;A=2*g+M%2*g}u.addData(c,C,E,a,s,k,A,h,o)}var x=/([mlvhzcqtsa])([^mlvhzcqtsa]*)/gi,_=/-?([0-9]*\.)?[0-9]+([eE]-?[0-9]+)?/g;function S(e){var t=new o["a"];if(!e)return t;var n,r=0,i=0,a=r,s=i,l=o["a"].CMD,c=e.match(x);if(!c)return t;for(var u=0;u0?arguments[0]:void 0)}},{get:function(e){var t=r.getEntry(i(this,o),e);return t&&t.v},set:function(e,t){return r.def(i(this,o),0===e?0:e,t)}},r,!0)},OERk:function(e,t,n){"use strict";var r=n("DIcO"),i=n("48Dx"),o=n("yw4e"),a=n("OeOC");e.exports=n("XdPT")(Array,"Array",function(e,t){this._t=a(e),this._i=0,this._k=t},function(){var e=this._t,t=this._k,n=this._i++;return!e||n>=e.length?(this._t=void 0,i(1)):i(0,"keys"==t?n:"values"==t?e[n]:[n,e[n]])},"values"),o.Arguments=o.Array,r("keys"),r("values"),r("entries")},OHgp:function(e,t,n){"use strict";var r=n("2a/h"),i={};i[n("gL7N")("toStringTag")]="z",i+""!="[object z]"&&n("rKIl")(Object.prototype,"toString",function(){return"[object "+r(this)+"]"},!0)},OJuA:function(e,t,n){"use strict";e.exports=n("FqPH")||!n("wUWy")(function(){var e=Math.random();__defineSetter__.call(null,e,function(){}),delete n("c0Oy")[e]})},OLES:function(e,t,n){"use strict";var r=n("QbLZ"),i=n.n(r),o=n("jo6Y"),a=n.n(o),s=n("iCc5"),l=n.n(s),c=n("FYw3"),u=n.n(c),h=n("mRg0"),d=n.n(h),f=n("q1tI"),p=n.n(f),m=n("17x9"),g=n.n(m),v=n("uciX"),y=n("7ixt"),b=function(e){function t(){return l()(this,t),u()(this,e.apply(this,arguments))}return d()(t,e),t.prototype.componentDidUpdate=function(){var e=this.props.trigger;e&&e.forcePopupAlign()},t.prototype.render=function(){var e=this.props,t=e.overlay,n=e.prefixCls,r=e.id;return p.a.createElement("div",{className:n+"-inner",id:r,role:"tooltip"},"function"===typeof t?t():t)},t}(p.a.Component);b.propTypes={prefixCls:g.a.string,overlay:g.a.oneOfType([g.a.node,g.a.func]).isRequired,id:g.a.string,trigger:g.a.any};var w=b,x=function(e){function t(){var n,r,i;l()(this,t);for(var o=arguments.length,a=Array(o),s=0;s{if(!this.props.disableRightClick)return{onClick:e=>{this.props.onContextMenu&&(this.props.onContextMenu(void 0),document.getElementById("v2board-table-dropdown").style="display:none;")},onDoubleClick:e=>{},onContextMenu:t=>{this.props.onContextMenu&&(t.preventDefault(),this.forceUpdate(),this.props.onContextMenu&&this.props.onContextMenu(e),document.getElementById("v2board-table-dropdown").style="top: ".concat(t.clientY,"px; left: ").concat(t.clientX,"px;display:unset;"))},onMouseEnter:e=>{},onMouseLeave:e=>{}}}})),s.a.createElement("div",{id:"v2board-table-dropdown",className:"ant-dropdown ant-dropdown-placement-bottomLeft",style:{display:"none",position:"fixed",top:0,left:0},onClick:()=>{this.props.onContextMenu&&(document.getElementById("v2board-table-dropdown").style="display:none;")}},this.props.children))}}},OeOC:function(e,t,n){var r=n("9WFV"),i=n("ZDr/");e.exports=function(e){return r(i(e))}},Ojgd:function(e,t){var n=Math.ceil,r=Math.floor;e.exports=function(e){return isNaN(e=+e)?0:(e>0?r:n)(e)}},OsVd:function(e,t,n){var r=n("AUWw"),i=Math.min;e.exports=function(e){return e>0?i(r(e),9007199254740991):0}},P2sY:function(e,t,n){e.exports={default:n("UbbE"),__esModule:!0}},PFWz:function(e,t,n){try{var r=n("zs13")}catch(e){r=n("zs13")}var i=/\s+/,o=Object.prototype.toString;function a(e){if(!e||!e.nodeType)throw new Error("A DOM element reference is required");this.el=e,this.list=e.classList}e.exports=function(e){return new a(e)},a.prototype.add=function(e){if(this.list)return this.list.add(e),this;var t=this.array(),n=r(t,e);return~n||t.push(e),this.el.className=t.join(" "),this},a.prototype.remove=function(e){if("[object RegExp]"==o.call(e))return this.removeMatching(e);if(this.list)return this.list.remove(e),this;var t=this.array(),n=r(t,e);return~n&&t.splice(n,1),this.el.className=t.join(" "),this},a.prototype.removeMatching=function(e){for(var t=this.array(),n=0;ne.length)&&(t=e.length);for(var n=0,r=new Array(t);n4&&void 0!==arguments[4]&&arguments[4];n&&n.stopPropagation();var a=r.props,l=a.onExpandedRowsChange,c=a.onExpand,u=r.store.getState(),h=u.expandedRowKeys;if(e)h=[].concat(s(h),[i]);else{var d=h.indexOf(i);-1!==d&&(h=M.remove(h,i))}r.props.expandedRowKeys||r.store.setState({expandedRowKeys:h}),r.latestExpandedRows&&T.default(r.latestExpandedRows,h)||(r.latestExpandedRows=h,l(h)),o||c(e,t)},r.renderExpandIndentCell=function(e,t){var n=r.props,i=n.prefixCls,a=n.expandIconAsCell;if(a&&"right"!==t&&e.length){var s={key:"rc-table-expand-icon-cell",className:"".concat(i,"-expand-icon-th"),title:"",rowSpan:e.length};e[0].unshift(o({},s,{column:s}))}},r.renderRows=function(e,t,n,i,o,a,l,c){var u=r.props,h=u.expandedRowClassName,d=u.expandedRowRender,f=u.childrenColumnName,p=n[f],m=[].concat(s(c),[l]),g=o+1;d&&t.push(r.renderExpandedRow(n,i,d,h(n,i,o),m,g,a)),p&&t.push.apply(t,s(e(p,g,m)))};var i=e.data,a=e.childrenColumnName,l=e.defaultExpandAllRows,c=e.expandedRowKeys,u=e.defaultExpandedRowKeys,h=e.getRowKey,d=[],p=s(i);if(l)for(var m=0;m{this.state.visible||this.setState({submit:this.defaultValue})})}generate(){var e=g()({},this.state.submit);this.props.dispatch({type:"coupon/generate",params:e,callback:()=>{this.modalVisible()}})}drop(e){this.props.dispatch({type:"coupon/drop",id:e.id})}tableOnChange(e,t){this.props.dispatch({type:"coupon/changeTable",pagination:e,sort:{sort_type:"ascend"===t.order?"ASC":"DESC",sort:t.columnKey}})}render(){var e=this.props.coupon,t=e.coupons,n=e.fetchLoading,r=e.saveLoading,m=e.pagination,v=this.props.plan.plans,w=[{title:"#",dataIndex:"id",key:"id"},{title:"\u5238\u540d\u79f0",dataIndex:"name",key:"name"},{title:"\u7c7b\u578b",dataIndex:"type",key:"type",render:e=>{return 1===e?"\u91d1\u989d":"\u6bd4\u4f8b"}},{title:"\u5238\u7801",dataIndex:"code",key:"code",render:e=>{return y.a.createElement(f["a"],{style:{cursor:"pointer"},onClick:()=>{S()(e),p["a"].success("\u590d\u5236\u6210\u529f")}},e)}},{title:"\u5269\u4f59\u6b21\u6570",dataIndex:"limit_use",key:"limit_use",render:e=>{return y.a.createElement(f["a"],null,null!==e?e:"\u65e0\u9650")}},{title:"\u6709\u6548\u671f",dataIndex:"started_at",key:"started_at",align:"left",render:(e,t)=>{return"".concat(x()(1e3*t.started_at).format("YYYY/MM/DD HH:mm")," ~ ").concat(x()(1e3*t.ended_at).format("YYYY/MM/DD HH:mm"))}},{title:"\u64cd\u4f5c",dataIndex:"action",key:"action",align:"right",render:(e,n,r)=>{return y.a.createElement("div",null,y.a.createElement("a",{onClick:()=>{this.setState({submit:t[r]},()=>{this.modalVisible()})},href:"javascript:void(0);"},"\u7f16\u8f91"),y.a.createElement(d["a"],{type:"vertical"}),y.a.createElement("a",{onClick:()=>this.drop(n),href:"javascript:void(0);"},"\u5220\u9664"))}}];return y.a.createElement(b["a"],i()({},this.props,{title:"\u4f18\u60e0\u5238\u7ba1\u7406"}),y.a.createElement("div",{className:"mb-0 block border-bottom ".concat(n?"block-mode-loading":"")},y.a.createElement("div",{className:"bg-white"},y.a.createElement("div",{style:{padding:15}},y.a.createElement(u["a"],{onClick:()=>this.modalVisible()},y.a.createElement(h["a"],{type:"plus"})," \u6dfb\u52a0\u4f18\u60e0\u5238")),y.a.createElement(c["a"],{tableLayout:"auto",dataSource:t,columns:w,scroll:{x:1050},pagination:g()({},m,{size:"small",showSizeChanger:!0,pageSizeOptions:[10,50,100,150]}),onChange:(e,t,n)=>this.tableOnChange(e,n)}))),y.a.createElement(o["a"],{title:"".concat(this.state.submit.id?"\u7f16\u8f91\u4f18\u60e0\u5238":"\u65b0\u5efa\u4f18\u60e0\u5238"),visible:this.state.visible,onCancel:()=>this.modalVisible(),onOk:()=>this.generate(),okText:"\u63d0\u4ea4",cancelText:"\u53d6\u6d88",okButtonProps:{loading:r},key:this.key},y.a.createElement("div",null,y.a.createElement("div",{className:"form-group"},y.a.createElement("label",{for:"example-text-input-alt"},"\u540d\u79f0"),y.a.createElement(l["a"],{placeholder:"\u8bf7\u8f93\u5165\u4f18\u60e0\u5238\u540d\u79f0",value:this.state.submit.name,onChange:e=>{this.setState({submit:g()({},this.state.submit,{name:e.target.value})})}})),!this.state.submit.generate_count&&y.a.createElement("div",{className:"form-group"},y.a.createElement("label",{for:"example-text-input-alt"},"\u81ea\u5b9a\u4e49\u4f18\u60e0\u5238\u7801"),y.a.createElement(l["a"],{placeholder:"\u81ea\u5b9a\u4e49\u4f18\u60e0\u5238\u7801(\u7559\u7a7a\u968f\u673a\u751f\u6210)",value:this.state.submit.code,onChange:e=>{this.setState({submit:g()({},this.state.submit,{code:e.target.value,generate_count:void 0})})}})),y.a.createElement("div",{className:"form-group"},y.a.createElement("label",{for:"example-text-input-alt"},"\u4f18\u60e0\u4fe1\u606f"),y.a.createElement(l["a"],{type:"number",addonBefore:y.a.createElement(s["a"],{style:{width:120},value:this.state.submit.type,onChange:e=>{this.setState({submit:g()({},this.state.submit,{type:e})})}},y.a.createElement(s["a"].Option,{value:1},"\u6309\u91d1\u989d\u4f18\u60e0"),y.a.createElement(s["a"].Option,{value:2},"\u6309\u6bd4\u4f8b\u4f18\u60e0")),addonAfter:1===this.state.submit.type?"\xa5":"%",placeholder:"\u8bf7\u8f93\u5165\u503c",value:this.state.submit.value,onChange:e=>{this.setState({submit:g()({},this.state.submit,{value:e.target.value})})}})),y.a.createElement("div",{className:"form-group"},y.a.createElement("label",{for:"example-text-input-alt"},"\u4f18\u60e0\u5238\u6709\u6548\u671f"),y.a.createElement(a["a"].RangePicker,{style:{width:"100%"},showTime:{format:"HH:mm"},format:"YYYY-MM-DD HH:mm",placeholder:["Start Time","End Time"],value:[this.state.submit.started_at?x()(1e3*this.state.submit.started_at):null,this.state.submit.ended_at?x()(1e3*this.state.submit.ended_at):null],onChange:e=>this.setState({submit:g()({},this.state.submit,{started_at:e[0]?e[0].format("X"):null,ended_at:e[1]?e[1].format("X"):null})}),onOk:e=>this.setState({submit:g()({},this.state.submit,{started_at:e[0]?e[0].format("X"):null,ended_at:e[1]?e[1].format("X"):null})})})),y.a.createElement("div",{className:"form-group"},y.a.createElement("label",{for:"example-text-input-alt"},"\u6700\u5927\u4f7f\u7528\u6b21\u6570"),y.a.createElement(l["a"],{placeholder:"\u9650\u5236\u6700\u5927\u4f7f\u7528\u6b21\u6570\uff0c\u7528\u5b8c\u5219\u65e0\u6cd5\u4f7f\u7528(\u4e3a\u7a7a\u5219\u4e0d\u9650\u5236)",value:this.state.submit.limit_use,onChange:e=>{this.setState({submit:g()({},this.state.submit,{limit_use:e.target.value})})}})),y.a.createElement("div",{className:"form-group"},y.a.createElement("label",{htmlFor:"example-text-input-alt"},"\u6bcf\u4e2a\u7528\u6237\u53ef\u4f7f\u7528\u6b21\u6570"),y.a.createElement(l["a"],{placeholder:"\u9650\u5236\u6bcf\u4e2a\u7528\u6237\u53ef\u4f7f\u7528\u6b21\u6570(\u4e3a\u7a7a\u5219\u4e0d\u9650\u5236)",value:this.state.submit.limit_use_with_user,onChange:e=>{this.setState({submit:g()({},this.state.submit,{limit_use_with_user:e.target.value})})}})),y.a.createElement("div",{className:"form-group"},y.a.createElement("label",{for:"example-text-input-alt"},"\u6307\u5b9a\u8ba2\u9605"),y.a.createElement("div",null,y.a.createElement(s["a"],{value:this.state.submit.limit_plan_ids||[],onChange:e=>{this.setState({submit:g()({},this.state.submit,{limit_plan_ids:e.length?e:null})})},mode:"multiple",placeholder:"\u9650\u5236\u6307\u5b9a\u8ba2\u9605\u53ef\u4ee5\u4f7f\u7528\u4f18\u60e0(\u4e3a\u7a7a\u5219\u4e0d\u9650\u5236)",style:{width:"100%"}},v.map(e=>{return y.a.createElement(s["a"].Option,{key:Math.random(),value:"".concat(e.id)},e.name)})))),y.a.createElement("div",{className:"form-group"},y.a.createElement("label",{htmlFor:"example-text-input-alt"},"\u6307\u5b9a\u5468\u671f"),y.a.createElement("div",null,y.a.createElement(s["a"],{value:this.state.submit.limit_period||[],onChange:e=>{this.setState({submit:g()({},this.state.submit,{limit_period:e.length?e:null})})},mode:"multiple",placeholder:"\u9650\u5236\u6307\u5b9a\u5468\u671f\u53ef\u4ee5\u4f7f\u7528\u4f18\u60e0(\u4e3a\u7a7a\u5219\u4e0d\u9650\u5236)",style:{width:"100%"}},Object.keys(E["a"].periodText).map(e=>{return y.a.createElement(s["a"].Option,{key:Math.random(),value:e},E["a"].periodText[e])})))),!this.state.submit.code&&!this.state.submit.id&&y.a.createElement("div",{className:"form-group"},y.a.createElement("label",{htmlFor:"example-text-input-alt"},"\u751f\u6210\u6570\u91cf"),y.a.createElement(l["a"],{placeholder:"\u8f93\u5165\u6570\u91cf\u6279\u91cf\u751f\u6210",value:this.state.submit.generate_count,onChange:e=>{this.setState({submit:g()({},this.state.submit,{generate_count:e.target.value,code:void 0})})}})))))}}t["default"]=Object(C["c"])(e=>{var t=e.coupon,n=e.plan;return{coupon:t,plan:n}})(k)},Q6cQ:function(e,t,n){"use strict";var r=n("u8+u"),i=n("BFt8"),o=n("gL7N")("hasInstance"),a=Function.prototype;o in a||n("V5/1").f(a,o,{value:function(e){if("function"!=typeof this||!r(e))return!1;if(!r(this.prototype))return e instanceof this;while(e=i(e))if(this.prototype===e)return!0;return!1}})},QBsz:function(e,t,n){"use strict";function r(e,t){return null==e&&(e=0),null==t&&(t=0),[e,t]}function i(e){return[e[0],e[1]]}function o(e,t,n){return e[0]=t[0]+n[0],e[1]=t[1]+n[1],e}function a(e,t,n){return e[0]=t[0]-n[0],e[1]=t[1]-n[1],e}function s(e){return Math.sqrt(l(e))}n.d(t,"d",function(){return r}),n.d(t,"c",function(){return i}),n.d(t,"a",function(){return o}),n.d(t,"m",function(){return a}),n.d(t,"l",function(){return c}),n.d(t,"k",function(){return u}),n.d(t,"g",function(){return h}),n.d(t,"e",function(){return d}),n.d(t,"f",function(){return p}),n.d(t,"h",function(){return m}),n.d(t,"b",function(){return g}),n.d(t,"j",function(){return v}),n.d(t,"i",function(){return y});function l(e){return e[0]*e[0]+e[1]*e[1]}function c(e,t,n){return e[0]=t[0]*n,e[1]=t[1]*n,e}function u(e,t){var n=s(t);return 0===n?(e[0]=0,e[1]=0):(e[0]=t[0]/n,e[1]=t[1]/n),e}function h(e,t){return Math.sqrt((e[0]-t[0])*(e[0]-t[0])+(e[1]-t[1])*(e[1]-t[1]))}var d=h;function f(e,t){return(e[0]-t[0])*(e[0]-t[0])+(e[1]-t[1])*(e[1]-t[1])}var p=f;function m(e,t,n,r){return e[0]=t[0]+r*(n[0]-t[0]),e[1]=t[1]+r*(n[1]-t[1]),e}function g(e,t,n){var r=t[0],i=t[1];return e[0]=n[0]*r+n[2]*i+n[4],e[1]=n[1]*r+n[3]*i+n[5],e}function v(e,t,n){return e[0]=Math.min(t[0],n[0]),e[1]=Math.min(t[1],n[1]),e}function y(e,t,n){return e[0]=Math.max(t[0],n[0]),e[1]=Math.max(t[1],n[1]),e}},"QC+M":function(e,t,n){"use strict";n.d(t,"a",function(){return w});var r=n("q1tI"),i=n.n(r),o=n("i8i4"),a=n.n(o),s=n("17x9"),l=n.n(s);function c(e){"@babel/helpers - typeof";return c="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},c(e)}function u(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function h(e,t){for(var n=0;n255?255:e}function a(e){return e<0?0:e>1?1:e}function s(e){var t=e;return t.length&&"%"===t.charAt(t.length-1)?o(parseFloat(t)/100*255):o(parseInt(t,10))}function l(e){var t=e;return t.length&&"%"===t.charAt(t.length-1)?a(parseFloat(t)/100):a(parseFloat(t))}function c(e,t,n){return n<0?n+=1:n>1&&(n-=1),6*n<1?e+(t-e)*n*6:2*n<1?t:3*n<2?e+(t-e)*(2/3-n)*6:e}function u(e,t,n){return e+(t-e)*n}function h(e,t,n,r,i){return e[0]=t,e[1]=n,e[2]=r,e[3]=i,e}function d(e,t){return e[0]=t[0],e[1]=t[1],e[2]=t[2],e[3]=t[3],e}var f=new r["a"](20),p=null;function m(e,t){p&&d(p,t),p=f.put(e,p||t.slice())}function g(e,t){if(e){t=t||[];var n=f.get(e);if(n)return d(t,n);e+="";var r=e.replace(/ /g,"").toLowerCase();if(r in i)return d(t,i[r]),m(e,t),t;var o=r.length;if("#"!==r.charAt(0)){var a=r.indexOf("("),c=r.indexOf(")");if(-1!==a&&c+1===o){var u=r.substr(0,a),p=r.substr(a+1,c-(a+1)).split(","),g=1;switch(u){case"rgba":if(4!==p.length)return 3===p.length?h(t,+p[0],+p[1],+p[2],1):h(t,0,0,0,1);g=l(p.pop());case"rgb":return 3!==p.length?void h(t,0,0,0,1):(h(t,s(p[0]),s(p[1]),s(p[2]),g),m(e,t),t);case"hsla":return 4!==p.length?void h(t,0,0,0,1):(p[3]=l(p[3]),v(p,t),m(e,t),t);case"hsl":return 3!==p.length?void h(t,0,0,0,1):(v(p,t),m(e,t),t);default:return}}h(t,0,0,0,1)}else{if(4===o||5===o){var y=parseInt(r.slice(1,4),16);return y>=0&&y<=4095?(h(t,(3840&y)>>4|(3840&y)>>8,240&y|(240&y)>>4,15&y|(15&y)<<4,5===o?parseInt(r.slice(4),16)/15:1),m(e,t),t):void h(t,0,0,0,1)}if(7===o||9===o){y=parseInt(r.slice(1,7),16);return y>=0&&y<=16777215?(h(t,(16711680&y)>>16,(65280&y)>>8,255&y,9===o?parseInt(r.slice(7),16)/255:1),m(e,t),t):void h(t,0,0,0,1)}}}}function v(e,t){var n=(parseFloat(e[0])%360+360)%360/360,r=l(e[1]),i=l(e[2]),a=i<=.5?i*(r+1):i+r-i*r,s=2*i-a;return t=t||[],h(t,o(255*c(s,a,n+1/3)),o(255*c(s,a,n)),o(255*c(s,a,n-1/3)),1),4===e.length&&(t[3]=e[3]),t}function y(e,t){var n=g(e);if(n){for(var r=0;r<3;r++)n[r]=t<0?n[r]*(1-t)|0:(255-n[r])*t+n[r]|0,n[r]>255?n[r]=255:n[r]<0&&(n[r]=0);return x(n,4===n.length?"rgba":"rgb")}}function b(e){var t=g(e);if(t)return((1<<24)+(t[0]<<16)+(t[1]<<8)+ +t[2]).toString(16).slice(1)}function w(e,t,n){if(t&&t.length&&e>=0&&e<=1){var r=e*(t.length-1),i=Math.floor(r),s=Math.ceil(r),l=g(t[i]),c=g(t[s]),h=r-i,d=x([o(u(l[0],c[0],h)),o(u(l[1],c[1],h)),o(u(l[2],c[2],h)),a(u(l[3],c[3],h))],"rgba");return n?{color:d,leftIndex:i,rightIndex:s,value:r}:d}}function x(e,t){if(e&&e.length){var n=e[0]+","+e[1]+","+e[2];return"rgba"!==t&&"hsva"!==t&&"hsla"!==t||(n+=","+e[3]),t+"("+n+")"}}function _(e,t){var n=g(e);return n?(.299*n[0]+.587*n[1]+.114*n[2])*n[3]/255+(1-n[3])*t:0}},QeHl:function(e,t,n){n("Jaki")("Float32",4,function(e){return function(t,n,r){return e(this,t,n,r)}})},QsMh:function(e,t,n){"use strict";var r=n("WGNW"),i=n("wYm8"),o=n("il4q"),a=n("wUWy"),s=[].sort,l=[1,2,3];r(r.P+r.F*(a(function(){l.sort(void 0)})||!a(function(){l.sort(null)})||!n("l0kz")(s)),"Array",{sort:function(e){return void 0===e?s.call(o(this)):s.call(o(this),i(e))}})},QuXc:function(e,t,n){"use strict";var r=function(){function e(e){this.colorStops=e||[]}return e.prototype.addColorStop=function(e,t){this.colorStops.push({offset:e,color:t})},e}();t["a"]=r},"R+7+":function(e,t,n){var r=n("w6GO"),i=n("mqlF"),o=n("NV0k");e.exports=function(e){var t=r(e),n=i.f;if(n){var a,s=n(e),l=o.f,c=0;while(s.length>c)l.call(e,a=s[c++])&&t.push(a)}return t}},R1X6:function(e,t,n){"use strict";var r=Math.round(9*Math.random()),i="function"===typeof Object.defineProperty,o=function(){function e(){this._id="__ec_inner_"+r++}return e.prototype.get=function(e){return this._guard(e)[this._id]},e.prototype.set=function(e,t){var n=this._guard(e);return i?Object.defineProperty(n,this._id,{value:t,enumerable:!1,configurable:!0}):n[this._id]=t,this},e.prototype["delete"]=function(e){return!!this.has(e)&&(delete this._guard(e)[this._id],!0)},e.prototype.has=function(e){return!!this._guard(e)[this._id]},e.prototype._guard=function(e){if(e!==Object(e))throw TypeError("Value of WeakMap is not a non-null object.");return e},e}();t["a"]=o},"R64+":function(e,t,n){"use strict";t.__esModule=!0;var r=n("GB+t"),i=o(r);function o(e){return e&&e.__esModule?e:{default:e}}var a=function(){var e=null,t=function(t){return(0,i.default)(null==e,"A history supports only one prompt at a time"),e=t,function(){e===t&&(e=null)}},n=function(t,n,r,o){if(null!=e){var a="function"===typeof e?e(t,n):e;"string"===typeof a?"function"===typeof r?r(a,o):((0,i.default)(!1,"A history needs a getUserConfirmation function in order to use a prompt message"),o(!0)):o(!1!==a)}else o(!0)},r=[],o=function(e){var t=!0,n=function(){t&&e.apply(void 0,arguments)};return r.push(n),function(){t=!1,r=r.filter(function(e){return e!==n})}},a=function(){for(var e=arguments.length,t=Array(e),n=0;n{return h[e]}},{title:"\u5de5\u5355\u72b6\u6001",dataIndex:"reply_status",key:"reply_status",render:(e,t)=>{return 1===t.status?d.a.createElement("span",null,d.a.createElement(u["a"],{status:"success"}),"\u5df2\u5173\u95ed"):d.a.createElement("span",null,d.a.createElement(u["a"],{status:e?"error":"processing"}),e?"\u5f85\u56de\u590d":"\u5df2\u56de\u590d")}},{title:"\u521b\u5efa\u65f6\u95f4",dataIndex:"created_at",key:"created_at",render:e=>{return g()(1e3*e).format("YYYY/MM/DD HH:mm")}},{title:"\u6700\u540e\u56de\u590d",dataIndex:"updated_at",key:"updated_at",render:e=>{return g()(1e3*e).format("YYYY/MM/DD HH:mm")}},{title:"\u64cd\u4f5c",dataIndex:"action",key:"action",align:"right",render:(e,t)=>{return d.a.createElement("div",null,d.a.createElement("a",{href:"javascript:void(0);",onClick:()=>this.toChat(t.id)},"\u67e5\u770b"),d.a.createElement(c["a"],{type:"vertical"}),d.a.createElement("a",{disabled:t.status,href:"javascript:void(0);",onClick:()=>this.close(t.id)},"\u5173\u95ed"))}}];return d.a.createElement(f["a"],i()({},this.props,{title:"\u5de5\u5355\u7ba1\u7406"}),d.a.createElement("div",{className:"mb-0 block border-bottom ".concat(n?"block-mode-loading":"")},d.a.createElement("div",{className:"bg-white"},d.a.createElement("div",{className:"p-3"},d.a.createElement(l["a"].Group,{value:a.status,onChange:e=>this.filter(e.target.value)},d.a.createElement(l["a"].Button,{value:0},"\u5df2\u5f00\u542f"),d.a.createElement(l["a"].Button,{value:1},"\u5df2\u5173\u95ed"))),d.a.createElement(o["a"],{tableLayout:"auto",dataSource:t,pagination:s()({},r,{size:"small"}),columns:p,scroll:{x:900},onChange:(e,t,n)=>this.tableOnChange(e,n)}))))}}t["default"]=Object(p["c"])(e=>{var t=e.ticket;return{ticket:t}})(v)},"RU/L":function(e,t,n){n("Rqdy");var r=n("WEpk").Object;e.exports=function(e,t,n){return r.defineProperty(e,t,n)}},RXBc:function(e,t,n){"use strict";n.r(t),n.d(t,"default",function(){return s});var r=n("q1tI"),i=n.n(r),o=n("3a4m"),a=n.n(o);class s extends i.a.Component{componentDidMount(){a.a.push("/login")}render(){return i.a.createElement("div",null)}}},RXMa:function(e,t,n){"use strict";var r=n("mrSG"),i=n("y+Vt"),o=function(){function e(){this.cx=0,this.cy=0,this.r=0,this.r0=0}return e}(),a=function(e){function t(t){return e.call(this,t)||this}return Object(r["a"])(t,e),t.prototype.getDefaultShape=function(){return new o},t.prototype.buildPath=function(e,t){var n=t.cx,r=t.cy,i=2*Math.PI;e.moveTo(n+t.r,r),e.arc(n,r,t.r,0,i,!1),e.moveTo(n+t.r0,r),e.arc(n,r,t.r0,0,i,!0)},t}(i["b"]);a.prototype.type="ring",t["a"]=a},RfKB:function(e,t,n){var r=n("2faE").f,i=n("B+OT"),o=n("UWiX")("toStringTag");e.exports=function(e,t,n){e&&!i(e=n?e:e.prototype,o)&&r(e,o,{configurable:!0,value:t})}},Rqdy:function(e,t,n){var r=n("Y7ZC");r(r.S+r.F*!n("jmDH"),"Object",{defineProperty:n("2faE").f})},S8SX:function(e,t,n){"use strict";n.d(t,"a",function(){return r}),n.d(t,"c",function(){return i}),n.d(t,"b",function(){return o});var r=1,i=2,o=4},SBuE:function(e,t){e.exports={}},SEkw:function(e,t,n){e.exports={default:n("RU/L"),__esModule:!0}},SGa5:function(e,t,n){"use strict";n.r(t);n("Pwec");var r=n("CtXQ"),i=n("q1tI"),o=n.n(i),a=n("/MKj");class s extends o.a.Component{constructor(e){super(e),this.state={},this.keyDown=this.keyDown.bind(this)}keyDown(e){13===e.keyCode&&this.login()}componentDidMount(){var e=this.props.location.query.verify,t=this.props.location.query.redirect;e&&this.props.dispatch({type:"passport/token2Login",verify:e,redirect:t}),this.props.dispatch({type:"passport/check",redirect:t}),window.addEventListener("keydown",this.keyDown,!1)}componentWillUnmount(){window.removeEventListener("keydown",this.keyDown,!1)}login(){this.props.dispatch({type:"passport/login",email:this.refs.email.value,password:this.refs.password.value})}render(){var e=this.props.passport.loginLoading;return o.a.createElement("div",{id:"page-container"},o.a.createElement("main",{id:"main-container"},o.a.createElement("div",{className:"v2board-background",style:{backgroundImage:window.settings.background_url&&"url(".concat(window.settings.background_url,")")}}),o.a.createElement("div",{className:"no-gutters v2board-auth-box"},o.a.createElement("div",{className:"",style:{maxWidth:450,width:"100%",margin:"auto"}},o.a.createElement("div",{className:"block block-rounded block-transparent block-fx-pop w-100 mb-0 overflow-hidden bg-image",style:{boxShadow:"0 0.5rem 2rem #0000000d"}},o.a.createElement("div",{className:"row no-gutters"},o.a.createElement("div",{className:"col-md-12 order-md-1 bg-white"},o.a.createElement("div",{className:"block-content block-content-full px-lg-4 py-md-4 py-lg-4"},o.a.createElement("div",{className:"mb-2 text-center"},o.a.createElement("a",{className:"link-fx font-w700 font-size-h1",href:"javascript:void(0);"},o.a.createElement("span",{className:"text-dark"},window.settings.title||"V2Board")),o.a.createElement("p",{className:"text-uppercase font-w700 font-size-sm text-muted"},"\u767b\u5f55\u5230\u7ba1\u7406\u4e2d\u5fc3")),o.a.createElement("div",{className:"form-group"},o.a.createElement("input",{type:"text",className:"form-control form-control-alt",placeholder:"\u90ae\u7bb1",ref:"email"})),o.a.createElement("div",{className:"form-group"},o.a.createElement("input",{type:"password",className:"form-control form-control-alt",placeholder:"\u5bc6\u7801",ref:"password"})),o.a.createElement("div",{className:"form-group"},o.a.createElement("button",{disabled:e,type:"submit",className:"btn btn-block btn-hero-primary",onClick:()=>this.login()},e?o.a.createElement(r["a"],{type:"loading"}):o.a.createElement("span",null,o.a.createElement("i",{className:"si si-login mr-1"}),"\u767b\u5165")))))))))))}}t["default"]=Object(a["c"])(e=>{var t=e.passport;return{passport:t}})(s)},SKnc:function(e,t,n){"use strict";var r=n("mrSG"),i=n("QuXc"),o=function(e){function t(t,n,r,i,o,a){var s=e.call(this,o)||this;return s.x=null==t?0:t,s.y=null==n?0:n,s.x2=null==r?1:r,s.y2=null==i?0:i,s.type="linear",s.global=a||!1,s}return Object(r["a"])(t,e),t}(i["a"]);t["a"]=o},SPFY:function(e,t,n){n("Jaki")("Float64",8,function(e){return function(t,n,r){return e(this,t,n,r)}})},SfDG:function(e,t,n){var r=n("u8+u"),i=n("c0Oy").document,o=r(i)&&r(i.createElement);e.exports=function(e){return o?i.createElement(e):{}}},Sj9i:function(e,t,n){"use strict";n.d(t,"a",function(){return m}),n.d(t,"b",function(){return g}),n.d(t,"f",function(){return v}),n.d(t,"c",function(){return y}),n.d(t,"g",function(){return b}),n.d(t,"e",function(){return w}),n.d(t,"d",function(){return x}),n.d(t,"h",function(){return _}),n.d(t,"i",function(){return S}),n.d(t,"m",function(){return C}),n.d(t,"j",function(){return E}),n.d(t,"n",function(){return k}),n.d(t,"l",function(){return O}),n.d(t,"k",function(){return T});var r=n("QBsz"),i=Math.pow,o=Math.sqrt,a=1e-8,s=1e-4,l=o(3),c=1/3,u=Object(r["d"])(),h=Object(r["d"])(),d=Object(r["d"])();function f(e){return e>-a&&ea||e<-a}function m(e,t,n,r,i){var o=1-i;return o*o*(o*e+3*i*t)+i*i*(i*r+3*o*n)}function g(e,t,n,r,i){var o=1-i;return 3*(((t-e)*o+2*(n-t)*i)*o+(r-n)*i*i)}function v(e,t,n,r,a,s){var u=r+3*(t-n)-e,h=3*(n-2*t+e),d=3*(t-e),p=e-a,m=h*h-3*u*d,g=h*d-9*u*p,v=d*d-3*h*p,y=0;if(f(m)&&f(g))if(f(h))s[0]=0;else{var b=-d/h;b>=0&&b<=1&&(s[y++]=b)}else{var w=g*g-4*m*v;if(f(w)){var x=g/m,_=(b=-h/u+x,-x/2);b>=0&&b<=1&&(s[y++]=b),_>=0&&_<=1&&(s[y++]=_)}else if(w>0){var S=o(w),C=m*h+1.5*u*(-g+S),E=m*h+1.5*u*(-g-S);C=C<0?-i(-C,c):i(C,c),E=E<0?-i(-E,c):i(E,c);b=(-h-(C+E))/(3*u);b>=0&&b<=1&&(s[y++]=b)}else{var k=(2*m*h-3*u*g)/(2*o(m*m*m)),O=Math.acos(k)/3,T=o(m),A=Math.cos(O),M=(b=(-h-2*T*A)/(3*u),_=(-h+T*(A+l*Math.sin(O)))/(3*u),(-h+T*(A-l*Math.sin(O)))/(3*u));b>=0&&b<=1&&(s[y++]=b),_>=0&&_<=1&&(s[y++]=_),M>=0&&M<=1&&(s[y++]=M)}}return y}function y(e,t,n,r,i){var a=6*n-12*t+6*e,s=9*t+3*r-3*e-9*n,l=3*t-3*e,c=0;if(f(s)){if(p(a)){var u=-l/a;u>=0&&u<=1&&(i[c++]=u)}}else{var h=a*a-4*s*l;if(f(h))i[0]=-a/(2*s);else if(h>0){var d=o(h),m=(u=(-a+d)/(2*s),(-a-d)/(2*s));u>=0&&u<=1&&(i[c++]=u),m>=0&&m<=1&&(i[c++]=m)}}return c}function b(e,t,n,r,i,o){var a=(t-e)*i+e,s=(n-t)*i+t,l=(r-n)*i+n,c=(s-a)*i+a,u=(l-s)*i+s,h=(u-c)*i+c;o[0]=e,o[1]=a,o[2]=c,o[3]=h,o[4]=h,o[5]=u,o[6]=l,o[7]=r}function w(e,t,n,i,a,l,c,f,p,g,v){var y,b,w,x,_,S=.005,C=1/0;u[0]=p,u[1]=g;for(var E=0;E<1;E+=.05)h[0]=m(e,n,a,c,E),h[1]=m(t,i,l,f,E),x=Object(r["f"])(u,h),x=0&&x=0&&u<=1&&(i[c++]=u)}}else{var h=s*s-4*a*l;if(f(h)){u=-s/(2*a);u>=0&&u<=1&&(i[c++]=u)}else if(h>0){var d=o(h),m=(u=(-s+d)/(2*a),(-s-d)/(2*a));u>=0&&u<=1&&(i[c++]=u),m>=0&&m<=1&&(i[c++]=m)}}return c}function E(e,t,n){var r=e+n-2*t;return 0===r?.5:(e-t)/r}function k(e,t,n,r,i){var o=(t-e)*r+e,a=(n-t)*r+t,s=(a-o)*r+o;i[0]=e,i[1]=o,i[2]=s,i[3]=s,i[4]=a,i[5]=n}function O(e,t,n,i,a,l,c,f,p){var m,g=.005,v=1/0;u[0]=c,u[1]=f;for(var y=0;y<1;y+=.05){h[0]=_(e,n,a,y),h[1]=_(t,i,l,y);var b=Object(r["f"])(u,h);b=0&&bR*R+L*L&&(k=T,O=A),{cx:k,cy:O,x01:-u,y01:-h,x11:k*(i/S-1),y11:O*(i/S-1)}}function b(e,t){var n=p(t.r,0),r=p(t.r0||0,0),i=n>0,b=r>0;if(i||b){if(i||(n=r,r=0),r>n){var w=n;n=r,r=w}var x,_=!!t.clockwise,S=t.startAngle,C=t.endAngle;if(S===C)x=0;else{var E=[S,C];Object(o["b"])(E,!_),x=d(E[0]-E[1])}var k=t.cx,O=t.cy,T=t.cornerRadius||0,A=t.innerCornerRadius||0;if(n>g)if(x>s-g)e.moveTo(k+n*c(S),O+n*l(S)),e.arc(k,O,n,S,C,!_),r>g&&(e.moveTo(k+r*c(C),O+r*l(C)),e.arc(k,O,r,C,S,_));else{var M=d(n-r)/2,P=m(M,T),R=m(M,A),L=R,D=P,j=n*c(S),N=n*l(S),I=r*c(C),$=r*l(C),F=void 0,V=void 0,B=void 0,W=void 0;if((P>g||R>g)&&(F=n*c(C),V=n*l(C),B=r*c(S),W=r*l(S),xg)if(D>g){var X=y(B,W,j,N,n,D,_),Q=y(F,V,I,$,n,D,_);e.moveTo(k+X.cx+X.x01,O+X.cy+X.y01),Dg&&x>g)if(L>g){X=y(I,$,F,V,r,-L,_),Q=y(j,N,B,W,r,-L,_);e.lineTo(k+X.cx+X.x01,O+X.cy+X.y01),Lc)l.call(e,a=s[c++])&&t.push(a)}return t}},T4gb:function(e,t,n){"use strict";n.r(t);var r=n("d6i3"),i=n.n(r),o=n("p0pE"),a=n.n(o),s=n("t3Un"),l={};t["default"]={name:"stat",state:a()({},l),reducers:{save(e,t){var n=t.payload;return a()({},e,n)}},effects:{getOverride(e,t){return i.a.mark(function e(){var n,r;return i.a.wrap(function(e){while(1)switch(e.prev=e.next){case 0:return n=t.put,e.next=3,Object(s["a"])("/admin/stat/getOverride");case 3:if(r=e.sent,200===r.code){e.next=6;break}return e.abrupt("return");case 6:return e.next=8,n({type:"save",payload:a()({},r.data)});case 8:case"end":return e.stop()}},e)})()},getOrder(e){return i.a.mark(function t(){var n,r;return i.a.wrap(function(t){while(1)switch(t.prev=t.next){case 0:return n=e.complete,t.next=3,Object(s["a"])("/admin/stat/getOrder");case 3:if(r=t.sent,200===r.code){t.next=6;break}return t.abrupt("return");case 6:n(r.data);case 7:case"end":return t.stop()}},t)})()},getServerLastRank(e){return i.a.mark(function t(){var n,r;return i.a.wrap(function(t){while(1)switch(t.prev=t.next){case 0:return n=e.complete,t.next=3,Object(s["a"])("/admin/stat/getServerLastRank");case 3:if(r=t.sent,200===r.code){t.next=6;break}return t.abrupt("return");case 6:n(r.data);case 7:case"end":return t.stop()}},t)})()}}}},T6xi:function(e,t,n){"use strict";var r=n("QBsz");function i(e,t,n,r,i,o,a){var s=.5*(n-e),l=.5*(r-t);return(2*(t-n)+s+l)*a+(-3*(t-n)-2*s-l)*o+s*i+t}function o(e,t){for(var n=e.length,o=[],a=0,s=1;sn-2?n-1:u+1],m=e[u>n-3?n-1:u+2]);var g=h*h,v=h*g;o.push([i(d[0],f[0],p[0],m[0],h,g,v),i(d[1],f[1],p[1],m[1],h,g,v)])}return o}function a(e,t,n,i){var o,a,s,l,c=[],u=[],h=[],d=[];if(i){s=[1/0,1/0],l=[-1/0,-1/0];for(var f=0,p=e.length;f=2){if(r&&"spline"!==r){var s=a(i,r,n,t.smoothConstraint);e.moveTo(i[0][0],i[0][1]);for(var l=i.length,c=0;c<(n?l:l-1);c++){var u=s[2*c],h=s[2*c+1],d=i[(c+1)%l];e.bezierCurveTo(u[0],u[1],h[0],h[1],d[0],d[1])}}else{"spline"===r&&(i=o(i,n)),e.moveTo(i[0][0],i[0][1]);c=1;for(var f=i.length;c2&&void 0!==arguments[2]?arguments[2]:[],i=e.context.table,o=i.columnManager,a=i.components,s=i.props,l=s.prefixCls,c=s.childrenColumnName,u=s.rowClassName,h=s.rowRef,d=s.onRowClick,f=s.onRowDoubleClick,p=s.onRowContextMenu,m=s.onRowMouseEnter,g=s.onRowMouseLeave,v=s.onRow,y=e.props,w=y.getRowKey,x=y.fixed,_=y.expander,S=y.isAnyColumnsFixed,C=[],O=function(i){var s=t[i],y=w(s,i),O="string"===typeof u?u:u(s,i,n),T={};o.isAnyColumnsFixed()&&(T.onHover=e.handleRowHover);var A=void 0;A="left"===x?o.leftLeafColumns():"right"===x?o.rightLeafColumns():e.getColumns(o.leafColumns());var M="".concat(l,"-row"),P=b.createElement(k.default,Object.assign({},_.props,{fixed:x,index:i,prefixCls:M,record:s,key:y,rowKey:y,onRowClick:d,needIndentSpaced:_.needIndentSpaced,onExpandedChange:_.handleExpandChange}),function(e){return b.createElement(E.default,Object.assign({fixed:x,indent:n,className:O,record:s,index:i,prefixCls:M,childrenColumnName:c,columns:A,onRow:v,onRowDoubleClick:f,onRowContextMenu:p,onRowMouseEnter:m,onRowMouseLeave:g},T,{rowKey:y,ancestorKeys:r,ref:h(s,i,n),components:a,isAnyColumnsFixed:S},e))});C.push(P),_.renderRows(e.renderRows,C,s,i,n,x,y,r)},T=0;T0?(t=t||1,"dashed"===e?[4*t,2*t]:"dotted"===e?[t]:Object(h["y"])(e)?[e]:Object(h["s"])(e)?e:null):null}var f=n("OS9S"),p=n("S8SX");n.d(t,"c",function(){return x}),n.d(t,"b",function(){return V}),n.d(t,"a",function(){return B});var m=new i["a"](!0);function g(e){var t=e.stroke;return!(null==t||"none"===t||!(e.lineWidth>0))}function v(e){return"string"===typeof e&&"none"!==e}function y(e){var t=e.fill;return null!=t&&"none"!==t}function b(e,t){if(null!=t.fillOpacity&&1!==t.fillOpacity){var n=e.globalAlpha;e.globalAlpha=t.fillOpacity*t.opacity,e.fill(),e.globalAlpha=n}else e.fill()}function w(e,t){if(null!=t.strokeOpacity&&1!==t.strokeOpacity){var n=e.globalAlpha;e.globalAlpha=t.strokeOpacity*t.opacity,e.stroke(),e.globalAlpha=n}else e.stroke()}function x(e,t,n){var r=Object(o["a"])(t.image,t.__image,n);if(Object(o["c"])(r)){var i=e.createPattern(r,t.repeat||"repeat");if("function"===typeof DOMMatrix&&i.setTransform){var a=new DOMMatrix;a.rotateSelf(0,0,(t.rotation||0)/Math.PI*180),a.scaleSelf(t.scaleX||1,t.scaleY||1),a.translateSelf(t.x||0,t.y||0),i.setTransform(a)}return i}}function _(e,t,n,r){var i=g(n),o=y(n),s=n.strokePercent,l=s<1,c=!t.path;t.silent&&!l||!c||t.createPathProxy();var u=t.path||m;if(!r){var f=n.fill,v=n.stroke,_=o&&!!f.colorStops,S=i&&!!v.colorStops,C=o&&!!f.image,E=i&&!!v.image,k=void 0,O=void 0,T=void 0,A=void 0,M=void 0;(_||S)&&(M=t.getBoundingRect()),_&&(k=t.__dirty?Object(a["a"])(e,f,M):t.__canvasFillGradient,t.__canvasFillGradient=k),S&&(O=t.__dirty?Object(a["a"])(e,v,M):t.__canvasStrokeGradient,t.__canvasStrokeGradient=O),C&&(T=t.__dirty||!t.__canvasFillPattern?x(e,f,t):t.__canvasFillPattern,t.__canvasFillPattern=T),E&&(A=t.__dirty||!t.__canvasStrokePattern?x(e,v,t):t.__canvasStrokePattern,t.__canvasStrokePattern=T),_?e.fillStyle=k:C&&(T?e.fillStyle=T:o=!1),S?e.strokeStyle=O:E&&(A?e.strokeStyle=A:i=!1)}var P=n.lineDash&&n.lineWidth>0&&d(n.lineDash,n.lineWidth),R=n.lineDashOffset,L=!!e.setLineDash,D=t.getGlobalScale();if(u.setScale(D[0],D[1],t.segmentIgnoreThreshold),P){var j=n.strokeNoScale&&t.getLineScale?t.getLineScale():1;j&&1!==j&&(P=Object(h["F"])(P,function(e){return e/j}),R/=j)}var N=!0;(c||t.__dirty&p["b"]||P&&!L&&i)&&(u.setDPR(e.dpr),l?u.setContext(null):(u.setContext(e),N=!1),u.reset(),P&&!L&&(u.setLineDash(P),u.setLineDashOffset(R)),t.buildPath(u,t.shape,r),u.toStatic(),t.pathUpdated()),N&&u.rebuildPath(e,l?s:1),P&&L&&(e.setLineDash(P),e.lineDashOffset=R),r||(n.strokeFirst?(i&&w(e,n),o&&b(e,n)):(o&&b(e,n),i&&w(e,n))),P&&L&&e.setLineDash([])}function S(e,t,n){var r=t.__image=Object(o["a"])(n.image,t.__image,t,t.onload);if(r&&Object(o["c"])(r)){var i=n.x||0,a=n.y||0,s=t.getWidth(),l=t.getHeight(),c=r.width/r.height;if(null==s&&null!=l?s=l*c:null==l&&null!=s?l=s/c:null==s&&null==l&&(s=r.width,l=r.height),n.sWidth&&n.sHeight){var u=n.sx||0,h=n.sy||0;e.drawImage(r,u,h,n.sWidth,n.sHeight,i,a,s,l)}else if(n.sx&&n.sy){u=n.sx,h=n.sy;var d=s-u,f=l-h;e.drawImage(r,u,h,d,f,i,a,s,l)}else e.drawImage(r,i,a,s,l)}}function C(e,t,n){var r=n.text;if(null!=r&&(r+=""),r){e.font=n.font||u["a"],e.textAlign=n.textAlign,e.textBaseline=n.textBaseline;var i=void 0;if(e.setLineDash){var o=n.lineDash&&n.lineWidth>0&&d(n.lineDash,n.lineWidth),a=n.lineDashOffset;if(o){var s=n.strokeNoScale&&t.getLineScale?t.getLineScale():1;s&&1!==s&&(o=Object(h["F"])(o,function(e){return e/s}),a/=s),e.setLineDash(o),e.lineDashOffset=a,i=!0}}n.strokeFirst?(g(n)&&e.strokeText(r,n.x,n.y),y(n)&&e.fillText(r,n.x,n.y)):(y(n)&&e.fillText(r,n.x,n.y),g(n)&&e.strokeText(r,n.x,n.y)),i&&e.setLineDash([])}}var E=["shadowBlur","shadowOffsetX","shadowOffsetY"],k=[["lineCap","butt"],["lineJoin","miter"],["miterLimit",10]];function O(e,t,n,i,o){var a=!1;if(!i&&(n=n||{},t===n))return!1;if(i||t.opacity!==n.opacity){a||($(e,o),a=!0);var s=Math.max(Math.min(t.opacity,1),0);e.globalAlpha=isNaN(s)?r["b"].opacity:s}(i||t.blend!==n.blend)&&(a||($(e,o),a=!0),e.globalCompositeOperation=t.blend||r["b"].blend);for(var l=0;l0})}var c=function(e,t){var n=t.table,r=n.components,i=n.props,a=i.prefixCls,c=i.showHeader,u=i.onHeaderRow,h=e.expander,d=e.columns,f=e.fixed;if(!c)return null;var p=l({columns:d});h.renderExpandIndentCell(p,f);var m=r.header.wrapper;return o.createElement(m,{className:"".concat(a,"-thead")},p.map(function(e,t){return o.createElement(s.default,{prefixCls:a,key:t,index:t,fixed:f,columns:d,rows:p,row:e,components:r,onHeaderRow:u})}))};c.contextTypes={table:a.any},t.default=c},VPOE:function(e,t,n){var r=n("V5/1"),i=n("pQGJ");e.exports=n("8Z/V")?function(e,t,n){return r.f(e,t,i(1,n))}:function(e,t,n){return e[t]=n,e}},VVlx:function(e,t,n){var r=n("29s/")("keys"),i=n("YqAc");e.exports=function(e){return r[e]||(r[e]=i(e))}},VbXa:function(e,t,n){var r=n("SksO");function i(e,t){e.prototype=Object.create(t.prototype),e.prototype.constructor=e,r(e,t)}e.exports=i,e.exports.__esModule=!0,e.exports["default"]=e.exports},VeWa:function(e,t,n){(function(e){ace.define("ace/mode/json_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/text_highlight_rules"],function(e,t,n){"use strict";var r=e("../lib/oop"),i=e("./text_highlight_rules").TextHighlightRules,o=function(){this.$rules={start:[{token:"variable",regex:'["](?:(?:\\\\.)|(?:[^"\\\\]))*?["]\\s*(?=:)'},{token:"string",regex:'"',next:"string"},{token:"constant.numeric",regex:"0[xX][0-9a-fA-F]+\\b"},{token:"constant.numeric",regex:"[+-]?\\d+(?:(?:\\.\\d*)?(?:[eE][+-]?\\d+)?)?\\b"},{token:"constant.language.boolean",regex:"(?:true|false)\\b"},{token:"text",regex:"['](?:(?:\\\\.)|(?:[^'\\\\]))*?[']"},{token:"comment",regex:"\\/\\/.*$"},{token:"comment.start",regex:"\\/\\*",next:"comment"},{token:"paren.lparen",regex:"[[({]"},{token:"paren.rparen",regex:"[\\])}]"},{token:"text",regex:"\\s+"}],string:[{token:"constant.language.escape",regex:/\\(?:x[0-9a-fA-F]{2}|u[0-9a-fA-F]{4}|["\\\/bfnrt])/},{token:"string",regex:'"|$',next:"start"},{defaultToken:"string"}],comment:[{token:"comment.end",regex:"\\*\\/",next:"start"},{defaultToken:"comment"}]}};r.inherits(o,i),t.JsonHighlightRules=o}),ace.define("ace/mode/matching_brace_outdent",["require","exports","module","ace/range"],function(e,t,n){"use strict";var r=e("../range").Range,i=function(){};(function(){this.checkOutdent=function(e,t){return!!/^\s+$/.test(e)&&/^\s*\}/.test(t)},this.autoOutdent=function(e,t){var n=e.getLine(t),i=n.match(/^(\s*\})/);if(!i)return 0;var o=i[1].length,a=e.findMatchingBracket({row:t,column:o});if(!a||a.row==t)return 0;var s=this.$getIndent(e.getLine(a.row));e.replace(new r(t,0,t,o-1),s)},this.$getIndent=function(e){return e.match(/^\s*/)[0]}}).call(i.prototype),t.MatchingBraceOutdent=i}),ace.define("ace/mode/folding/cstyle",["require","exports","module","ace/lib/oop","ace/range","ace/mode/folding/fold_mode"],function(e,t,n){"use strict";var r=e("../../lib/oop"),i=e("../../range").Range,o=e("./fold_mode").FoldMode,a=t.FoldMode=function(e){e&&(this.foldingStartMarker=new RegExp(this.foldingStartMarker.source.replace(/\|[^|]*?$/,"|"+e.start)),this.foldingStopMarker=new RegExp(this.foldingStopMarker.source.replace(/\|[^|]*?$/,"|"+e.end)))};r.inherits(a,o),function(){this.foldingStartMarker=/([\{\[\(])[^\}\]\)]*$|^\s*(\/\*)/,this.foldingStopMarker=/^[^\[\{\(]*([\}\]\)])|^[\s\*]*(\*\/)/,this.singleLineBlockCommentRe=/^\s*(\/\*).*\*\/\s*$/,this.tripleStarBlockCommentRe=/^\s*(\/\*\*\*).*\*\/\s*$/,this.startRegionRe=/^\s*(\/\*|\/\/)#?region\b/,this._getFoldWidgetBase=this.getFoldWidget,this.getFoldWidget=function(e,t,n){var r=e.getLine(n);if(this.singleLineBlockCommentRe.test(r)&&!this.startRegionRe.test(r)&&!this.tripleStarBlockCommentRe.test(r))return"";var i=this._getFoldWidgetBase(e,t,n);return!i&&this.startRegionRe.test(r)?"start":i},this.getFoldWidgetRange=function(e,t,n,r){var i=e.getLine(n);if(this.startRegionRe.test(i))return this.getCommentRegionBlock(e,i,n);var o=i.match(this.foldingStartMarker);if(o){var a=o.index;if(o[1])return this.openingBracketBlock(e,o[1],n,a);var s=e.getCommentFoldRange(n,a+o[0].length,1);return s&&!s.isMultiLine()&&(r?s=this.getSectionRange(e,n):"all"!=t&&(s=null)),s}if("markbegin"!==t){o=i.match(this.foldingStopMarker);if(o){a=o.index+o[0].length;return o[1]?this.closingBracketBlock(e,o[1],n,a):e.getCommentFoldRange(n,a,-1)}}},this.getSectionRange=function(e,t){var n=e.getLine(t),r=n.search(/\S/),o=t,a=n.length;t+=1;var s=t,l=e.getLength();while(++tc)break;var u=this.getFoldWidgetRange(e,"all",t);if(u){if(u.start.row<=o)break;if(u.isMultiLine())t=u.end.row;else if(r==c)break}s=t}}return new i(o,a,s,e.getLine(s).length)},this.getCommentRegionBlock=function(e,t,n){var r=t.search(/\s*$/),o=e.getLength(),a=n,s=/^\s*(?:\/\*|\/\/|--)#?(end)?region\b/,l=1;while(++na)return new i(a,r,u,t.length)}}.call(a.prototype)}),ace.define("ace/mode/json",["require","exports","module","ace/lib/oop","ace/mode/text","ace/mode/json_highlight_rules","ace/mode/matching_brace_outdent","ace/mode/behaviour/cstyle","ace/mode/folding/cstyle","ace/worker/worker_client"],function(e,t,n){"use strict";var r=e("../lib/oop"),i=e("./text").Mode,o=e("./json_highlight_rules").JsonHighlightRules,a=e("./matching_brace_outdent").MatchingBraceOutdent,s=e("./behaviour/cstyle").CstyleBehaviour,l=e("./folding/cstyle").FoldMode,c=e("../worker/worker_client").WorkerClient,u=function(){this.HighlightRules=o,this.$outdent=new a,this.$behaviour=new s,this.foldingRules=new l};r.inherits(u,i),function(){this.lineCommentStart="//",this.blockComment={start:"/*",end:"*/"},this.getNextLineIndent=function(e,t,n){var r=this.$getIndent(t);if("start"==e){var i=t.match(/^.*[\{\(\[]\s*$/);i&&(r+=n)}return r},this.checkOutdent=function(e,t,n){return this.$outdent.checkOutdent(t,n)},this.autoOutdent=function(e,t,n){this.$outdent.autoOutdent(t,n)},this.createWorker=function(e){var t=new c(["ace"],"ace/mode/json_worker","JsonWorker");return t.attachToDocument(e.getDocument()),t.on("annotate",function(t){e.setAnnotations(t.data)}),t.on("terminate",function(){e.clearAnnotations()}),t},this.$id="ace/mode/json"}.call(u.prototype),t.Mode=u}),function(){ace.require(["ace/mode/json"],function(t){e&&(e.exports=t)})}()}).call(this,n("YuTi")(e))},Vegh:function(e,t,n){"use strict";var r=n("iCc5"),i=n.n(r),o=n("FYw3"),a=n.n(o),s=n("mRg0"),l=n.n(s),c=n("q1tI"),u=n.n(c),h=n("i8i4"),d=n.n(h),f=n("17x9"),p=n.n(f),m=n("4IlW"),g=n("VCL8"),v=n("wd/R"),y=n.n(v),b=n("GrtH"),w=void 0,x=void 0,_=void 0,S=function(e){function t(n){i()(this,t);var r=a()(this,e.call(this,n));C.call(r);var o=n.selectedValue;return r.state={str:Object(b["a"])(o,r.props.format),invalid:!1,hasFocus:!1},r}return l()(t,e),t.prototype.componentDidUpdate=function(){!_||!this.state.hasFocus||this.state.invalid||0===w&&0===x||_.setSelectionRange(w,x)},t.getDerivedStateFromProps=function(e,t){var n={};_&&(w=_.selectionStart,x=_.selectionEnd);var r=e.selectedValue;return t.hasFocus||(n={str:Object(b["a"])(r,e.format),invalid:!1}),n},t.getInstance=function(){return _},t.prototype.render=function(){var e=this.props,t=this.state,n=t.invalid,r=t.str,i=e.locale,o=e.prefixCls,a=e.placeholder,s=e.clearIcon,l=e.inputMode,c=n?o+"-input-invalid":"";return u.a.createElement("div",{className:o+"-input-wrap"},u.a.createElement("div",{className:o+"-date-input-wrap"},u.a.createElement("input",{ref:this.saveDateInput,className:o+"-input "+c,value:r,disabled:e.disabled,placeholder:a,onChange:this.onInputChange,onKeyDown:this.onKeyDown,onFocus:this.onFocus,onBlur:this.onBlur,inputMode:l})),e.showClear?u.a.createElement("a",{role:"button",title:i.clear,onClick:this.onClear},s||u.a.createElement("span",{className:o+"-clear-btn"})):null)},t}(u.a.Component);S.propTypes={prefixCls:p.a.string,timePicker:p.a.object,value:p.a.object,disabledTime:p.a.any,format:p.a.oneOfType([p.a.string,p.a.arrayOf(p.a.string)]),locale:p.a.object,disabledDate:p.a.func,onChange:p.a.func,onClear:p.a.func,placeholder:p.a.string,onSelect:p.a.func,selectedValue:p.a.object,clearIcon:p.a.node,inputMode:p.a.string};var C=function(){var e=this;this.onClear=function(){e.setState({str:""}),e.props.onClear(null)},this.onInputChange=function(t){var n=t.target.value,r=e.props,i=r.disabledDate,o=r.format,a=r.onChange,s=r.selectedValue;if(!n)return a(null),void e.setState({invalid:!1,str:n});var l=y()(n,o,!0);if(l.isValid()){var c=e.props.value.clone();c.year(l.year()).month(l.month()).date(l.date()).hour(l.hour()).minute(l.minute()).second(l.second()),!c||i&&i(c)?e.setState({invalid:!0,str:n}):(s!==c||s&&c&&!s.isSame(c))&&(e.setState({invalid:!1,str:n}),a(c))}else e.setState({invalid:!0,str:n})},this.onFocus=function(){e.setState({hasFocus:!0})},this.onBlur=function(){e.setState(function(e,t){return{hasFocus:!1,str:Object(b["a"])(t.value,t.format)}})},this.onKeyDown=function(t){var n=t.keyCode,r=e.props,i=r.onSelect,o=r.value,a=r.disabledDate;if(n===m["a"].ENTER&&i){var s=!a||!a(o);s&&i(o.clone()),t.preventDefault()}},this.getRootDOMNode=function(){return d.a.findDOMNode(e)},this.focus=function(){_&&_.focus()},this.saveDateInput=function(e){_=e}};Object(g["polyfill"])(S),t["a"]=S},VeyY:function(e,t,n){var r=n("7vYJ"),i=n("wYm8"),o=n("gL7N")("species");e.exports=function(e,t){var n,a=r(e).constructor;return void 0===a||void 0==(n=r(a)[o])?t:i(n)}},VxKu:function(e,t,n){"use strict";var r=n("WGNW"),i=n("Lnex")(!0);r(r.P,"Array",{includes:function(e){return i(this,e,arguments.length>1?arguments[1]:void 0)}}),n("DIcO")("includes")},VyuQ:function(e,t,n){var r=n("bV5f"),i=n("c0Oy"),o="__core-js_shared__",a=i[o]||(i[o]={});(e.exports=function(e,t){return a[e]||(a[e]=void 0!==t?t:{})})("versions",[]).push({version:r.version,mode:n("FqPH")?"pure":"global",copyright:"\xa9 2019 Denis Pushkarev (zloirock.ru)"})},W070:function(e,t,n){var r=n("NsO/"),i=n("tEej"),o=n("D8kY");e.exports=function(e){return function(t,n,a){var s,l=r(t),c=i(l.length),u=o(a,c);if(e&&n!=n){while(c>u)if(s=l[u++],s!=s)return!0}else for(;c>u;u++)if((e||u in l)&&l[u]===n)return e||u||0;return!e&&-1}}},W3Xk:function(e,t,n){var r=n("WGNW"),i=n("ZDr/"),o=n("wUWy"),a=n("GsrZ"),s="["+a+"]",l="\u200b\x85",c=RegExp("^"+s+s+"*"),u=RegExp(s+s+"*$"),h=function(e,t,n){var i={},s=o(function(){return!!a[e]()||l[e]()!=l}),c=i[e]=s?t(d):a[e];n&&(i[n]=c),r(r.P+r.F*s,"String",i)},d=h.trim=function(e,t){return e=String(i(e)),1&t&&(e=e.replace(c,"")),2&t&&(e=e.replace(u,"")),e};e.exports=h},W5Cv:function(e,t,n){"use strict";function r(e,t){var n=window.Element.prototype,r=n.matches||n.mozMatchesSelector||n.msMatchesSelector||n.oMatchesSelector||n.webkitMatchesSelector;if(!e||1!==e.nodeType)return!1;var i=e.parentNode;if(r)return r.call(e,t);for(var o=i.querySelectorAll(t),a=o.length,s=0;s-1}function Xe(e,t){var n=this.__data__,r=ft(n,e);return r<0?(++this.size,n.push([e,t])):n[r][1]=t,this}function Qe(e){var t=-1,n=null==e?0:e.length;this.clear();while(++tc))return!1;var h=s.get(e);if(h&&s.get(t))return h==t;var d=-1,f=!0,p=n&a?new rt:void 0;s.set(e,t),s.set(t,e);while(++d-1&&e%1==0&&e-1&&e%1==0&&e<=s}function Ut(e){var t=typeof e;return null!=e&&("object"==t||"function"==t)}function qt(e){return null!=e&&"object"==typeof e}var Kt=Q?ne(Q):wt;function Gt(e){return Vt(e)?dt(e):xt(e)}function Yt(){return[]}function Xt(){return!1}n.exports=Wt}).call(this,n("yLpj"),n("YuTi")(e))},XaS2:function(e,t,n){"use strict";function r(e){"@babel/helpers - typeof";return r="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},r(e)}function i(e,t){if(null==e)return{};var n,r,i=o(e,t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(r=0;r=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(i[n]=e[n])}return i}function o(e,t){if(null==e)return{};var n,r,i={},o=Object.keys(e);for(r=0;r=0||(i[n]=e[n]);return i}function a(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function s(e){for(var t=1;t=0&&this.setRowHeight())}},{key:"render",value:function(){if(!this.state.shouldRender)return null;var e=this.props,t=e.prefixCls,n=e.columns,r=e.record,o=e.rowKey,a=e.index,l=e.onRow,c=e.indent,u=e.indentSize,h=e.hovered,d=e.height,f=e.visible,p=e.components,m=e.hasExpandIcon,g=e.renderExpandIcon,v=e.renderExpandIconCell,y=e.onRowClick,b=e.onRowDoubleClick,w=e.onRowMouseEnter,_=e.onRowMouseLeave,C=e.onRowContextMenu,E=p.body.row,T=p.body.cell,A=this.props.className;h&&(A+=" ".concat(t,"-hover"));var M=[];v(M);for(var P=0;P=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}e.exports=i},"Y/ne":function(e,t,n){var r=n("OsVd"),i=n("03ni"),o=n("ZDr/");e.exports=function(e,t,n,a){var s=String(o(e)),l=s.length,c=void 0===n?" ":String(n),u=r(t);if(u<=l||""==c)return s;var h=u-l,d=i.call(c,Math.ceil(h/c.length));return d.length>h&&(d=d.slice(0,h)),a?d+s:s+d}},Y7ZC:function(e,t,n){var r=n("5T2Y"),i=n("WEpk"),o=n("2GTP"),a=n("NegM"),s=n("B+OT"),l="prototype",c=function(e,t,n){var u,h,d,f=e&c.F,p=e&c.G,m=e&c.S,g=e&c.P,v=e&c.B,y=e&c.W,b=p?i:i[t]||(i[t]={}),w=b[l],x=p?r:m?r[t]:(r[t]||{})[l];for(u in p&&(n=t),n)h=!f&&x&&void 0!==x[u],h&&s(b,u)||(d=h?x[u]:n[u],b[u]=p&&"function"!=typeof x[u]?n[u]:v&&h?o(d,r):y&&x[u]==d?function(e){var t=function(t,n,r){if(this instanceof e){switch(arguments.length){case 0:return new e;case 1:return new e(t);case 2:return new e(t,n)}return new e(t,n,r)}return e.apply(this,arguments)};return t[l]=e[l],t}(d):g&&"function"==typeof d?o(Function.call,d):d,g&&((b.virtual||(b.virtual={}))[u]=d,e&c.R&&w&&!w[u]&&a(w,u,d)))};c.F=1,c.G=2,c.S=4,c.P=8,c.B=16,c.W=32,c.U=64,c.R=128,e.exports=c},YEIV:function(e,t,n){"use strict";t.__esModule=!0;var r=n("SEkw"),i=o(r);function o(e){return e&&e.__esModule?e:{default:e}}t.default=function(e,t,n){return t in e?(0,i.default)(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}},YEVI:function(e,t){e.exports=function(e,t,n,r){if(!(e instanceof t)||void 0!==r&&r in e)throw TypeError(n+": incorrect invocation!");return e}},YH21:function(e,t,n){"use strict";n.d(t,"b",function(){return l}),n.d(t,"c",function(){return u}),n.d(t,"d",function(){return h}),n.d(t,"a",function(){return f}),n.d(t,"e",function(){return p}),n.d(t,"f",function(){return m});var r=n("ItGF"),i=n("Ze12"),o="undefined"!==typeof window&&!!window.addEventListener,a=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,s=[];function l(e,t,n,i){return n=n||{},i||!r["a"].canvasSupported?c(e,t,n):r["a"].browser.firefox&&r["a"].browser.version<"39"&&null!=t.layerX&&t.layerX!==t.offsetX?(n.zrX=t.layerX,n.zrY=t.layerY):null!=t.offsetX?(n.zrX=t.offsetX,n.zrY=t.offsetY):c(e,t,n),n}function c(e,t,n){if(r["a"].domSupported&&e.getBoundingClientRect){var o=t.clientX,a=t.clientY;if(Object(i["a"])(e)){var l=e.getBoundingClientRect();return n.zrX=o-l.left,void(n.zrY=a-l.top)}if(Object(i["b"])(s,e,o,a))return n.zrX=s[0],void(n.zrY=s[1])}n.zrX=n.zrY=0}function u(e){return e||window.event}function h(e,t,n){if(t=u(t),null!=t.zrX)return t;var r=t.type,i=r&&r.indexOf("touch")>=0;if(i){var o="touchend"!==r?t.targetTouches[0]:t.changedTouches[0];o&&l(e,o,t,n)}else{l(e,t,t,n);var s=d(t);t.zrDelta=s?s/120:-(t.detail||0)/3}var c=t.button;return null==t.which&&void 0!==c&&a.test(t.type)&&(t.which=1&c?1:2&c?3:4&c?2:0),t}function d(e){var t=e.wheelDelta;if(t)return t;var n=e.deltaX,r=e.deltaY;if(null==n||null==r)return t;var i=0!==r?Math.abs(r):Math.abs(n),o=r>0?-1:r<0?1:n>0?-1:1;return 3*i*o}function f(e,t,n,r){o?e.addEventListener(t,n,r):e.attachEvent("on"+t,n)}function p(e,t,n,r){o?e.removeEventListener(t,n,r):e.detachEvent("on"+t,n)}var m=o?function(e){e.preventDefault(),e.stopPropagation(),e.cancelBubble=!0}:function(e){e.returnValue=!1,e.cancelBubble=!0}},YVYq:function(e,t,n){"use strict";n.d(t,"a",function(){return o});var r=n("q1tI"),i=n.n(r);function o(e){var t=e.prefixCls,n=e.locale,r=e.okDisabled,o=e.onOk,a=t+"-ok-btn";return r&&(a+=" "+t+"-ok-btn-disabled"),i.a.createElement("a",{className:a,role:"button",onClick:r?null:o},n.ok)}},Yf6U:function(e,t,n){var r=n("W5Cv");e.exports=function(e,t,n){n=n||document,e={parentNode:e};while((e=e.parentNode)&&e!==n)if(r(e,t))return e}},YqAc:function(e,t){var n=0,r=Math.random();e.exports=function(e){return"Symbol(".concat(void 0===e?"":e,")_",(++n+r).toString(36))}},YqDF:function(e,t,n){"use strict";function r(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function i(e){for(var t=1;t0&&c&&(w.marginBottom="-".concat(_,"px"),w.paddingBottom="0px")}var S,C=l.createElement(h.default,{tableClassName:d,hasHead:!b,hasBody:!0,fixed:c,columns:s,expander:g,getRowKey:f,isAnyColumnsFixed:v});if(c&&s.length)return"left"===s[0].fixed||!0===s[0].fixed?S="fixedColumnsBodyLeft":"right"===s[0].fixed&&(S="fixedColumnsBodyRight"),delete w.overflowX,delete w.overflowY,l.createElement("div",{key:"bodyTable",className:"".concat(o,"-body-outer"),style:i({},w)},l.createElement("div",{className:"".concat(o,"-body-inner"),style:x,ref:y(S),onWheel:m,onScroll:p},C));var E=a&&(a.x||a.y);return l.createElement("div",{tabIndex:E?-1:void 0,key:"bodyTable",className:"".concat(o,"-body"),style:w,ref:y("bodyTable"),onWheel:m,onScroll:p},C)}t.default=d,d.contextTypes={table:c.any}},YuTi:function(e,t){e.exports=function(e){return e.webpackPolyfill||(e.deprecate=function(){},e.paths=[],e.children||(e.children=[]),Object.defineProperty(e,"loaded",{enumerable:!0,get:function(){return e.l}}),Object.defineProperty(e,"id",{enumerable:!0,get:function(){return e.i}}),e.webpackPolyfill=1),e}},Z4ex:function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=function(){function e(e,t){for(var n=0;nt.length?e:t,u=e.length>t.length?t:e,h=c.indexOf(u);if(-1!=h)return l=[new n.Diff(i,c.substring(0,h)),new n.Diff(o,u),new n.Diff(i,c.substring(h+u.length))],e.length>t.length&&(l[0][0]=l[2][0]=r),l;if(1==u.length)return[new n.Diff(r,e),new n.Diff(i,t)];var d=this.diff_halfMatch_(e,t);if(d){var f=d[0],p=d[1],m=d[2],g=d[3],v=d[4],y=this.diff_main(f,m,a,s),b=this.diff_main(p,g,a,s);return y.concat([new n.Diff(o,v)],b)}return a&&e.length>100&&t.length>100?this.diff_lineMode_(e,t,s):this.diff_bisect_(e,t,s)},n.prototype.diff_lineMode_=function(e,t,a){var s=this.diff_linesToChars_(e,t);e=s.chars1,t=s.chars2;var l=s.lineArray,c=this.diff_main(e,t,!1,a);this.diff_charsToLines_(c,l),this.diff_cleanupSemantic(c),c.push(new n.Diff(o,""));var u=0,h=0,d=0,f="",p="";while(u=1&&d>=1){c.splice(u-h-d,h+d),u=u-h-d;for(var m=this.diff_main(f,p,!1,a),g=m.length-1;g>=0;g--)c.splice(u,0,m[g]);u+=m.length}d=0,h=0,f="",p="";break}u++}return c.pop(),c},n.prototype.diff_bisect_=function(e,t,o){for(var a=e.length,s=t.length,l=Math.ceil((a+s)/2),c=l,u=2*l,h=new Array(u),d=new Array(u),f=0;fo)break;for(var x=-w+g;x<=w-v;x+=2){var _=c+x;T=x==-w||x!=w&&h[_-1]a)v+=2;else if(S>s)g+=2;else if(m){var C=c+p-x;if(C>=0&&C=E)return this.diff_bisectSplit_(e,t,T,S,o)}}}for(var k=-w+y;k<=w-b;k+=2){C=c+k;E=k==-w||k!=w&&d[C-1]a)b+=2;else if(O>s)y+=2;else if(!m){_=c+p-k;if(_>=0&&_=E)return this.diff_bisectSplit_(e,t,T,S,o)}}}}return[new n.Diff(r,e),new n.Diff(i,t)]},n.prototype.diff_bisectSplit_=function(e,t,n,r,i){var o=e.substring(0,n),a=t.substring(0,r),s=e.substring(n),l=t.substring(r),c=this.diff_main(o,a,!1,i),u=this.diff_main(s,l,!1,i);return c.concat(u)},n.prototype.diff_linesToChars_=function(e,t){var n=[],r={};function i(e){var t="",i=0,a=-1,s=n.length;while(ar?e=e.substring(n-r):nt.length?e:t,r=e.length>t.length?t:e;if(n.length<4||2*r.length=e.length?[r,o,a,s,u]:null}var a,s,l,c,u,h=o(n,r,Math.ceil(n.length/4)),d=o(n,r,Math.ceil(n.length/2));if(!h&&!d)return null;a=d?h&&h[4].length>d[4].length?h:d:h,e.length>t.length?(s=a[0],l=a[1],c=a[2],u=a[3]):(c=a[0],u=a[1],s=a[2],l=a[3]);var f=a[4];return[s,l,c,u,f]},n.prototype.diff_cleanupSemantic=function(e){var t=!1,a=[],s=0,l=null,c=0,u=0,h=0,d=0,f=0;while(c0?a[s-1]:-1,u=0,h=0,d=0,f=0,l=null,t=!0)),c++;t&&this.diff_cleanupMerge(e),this.diff_cleanupSemanticLossless(e),c=1;while(c=v?(g>=p.length/2||g>=m.length/2)&&(e.splice(c,0,new n.Diff(o,m.substring(0,g))),e[c-1][1]=p.substring(0,p.length-g),e[c+1][1]=m.substring(g),c++):(v>=p.length/2||v>=m.length/2)&&(e.splice(c,0,new n.Diff(o,p.substring(0,v))),e[c-1][0]=i,e[c-1][1]=m.substring(0,m.length-v),e[c+1][0]=r,e[c+1][1]=p.substring(v),c++),c++}c++}},n.prototype.diff_cleanupSemanticLossless=function(e){function t(e,t){if(!e||!t)return 6;var r=e.charAt(e.length-1),i=t.charAt(0),o=r.match(n.nonAlphaNumericRegex_),a=i.match(n.nonAlphaNumericRegex_),s=o&&r.match(n.whitespaceRegex_),l=a&&i.match(n.whitespaceRegex_),c=s&&r.match(n.linebreakRegex_),u=l&&i.match(n.linebreakRegex_),h=c&&e.match(n.blanklineEndRegex_),d=u&&t.match(n.blanklineStartRegex_);return h||d?5:c||u?4:o&&!s&&l?3:s||l?2:o||a?1:0}var r=1;while(r=f&&(f=p,u=i,h=a,d=s)}e[r-1][1]!=u&&(u?e[r-1][1]=u:(e.splice(r-1,1),r--),e[r][1]=h,d?e[r+1][1]=d:(e.splice(r+1,1),r--))}r++}},n.nonAlphaNumericRegex_=/[^a-zA-Z0-9]/,n.whitespaceRegex_=/\s/,n.linebreakRegex_=/[\r\n]/,n.blanklineEndRegex_=/\n\r?\n$/,n.blanklineStartRegex_=/^\r?\n\r?\n/,n.prototype.diff_cleanupEfficiency=function(e){var t=!1,a=[],s=0,l=null,c=0,u=!1,h=!1,d=!1,f=!1;while(c0?a[s-1]:-1,d=f=!1),t=!0)),c++;t&&this.diff_cleanupMerge(e)},n.prototype.diff_cleanupMerge=function(e){e.push(new n.Diff(o,""));var t,a=0,s=0,l=0,c="",u="";while(a1?(0!==s&&0!==l&&(t=this.diff_commonPrefix(u,c),0!==t&&(a-s-l>0&&e[a-s-l-1][0]==o?e[a-s-l-1][1]+=u.substring(0,t):(e.splice(0,0,new n.Diff(o,u.substring(0,t))),a++),u=u.substring(t),c=c.substring(t)),t=this.diff_commonSuffix(u,c),0!==t&&(e[a][1]=u.substring(u.length-t)+e[a][1],u=u.substring(0,u.length-t),c=c.substring(0,c.length-t))),a-=s+l,e.splice(a,s+l),c.length&&(e.splice(a,0,new n.Diff(r,c)),a++),u.length&&(e.splice(a,0,new n.Diff(i,u)),a++),a++):0!==a&&e[a-1][0]==o?(e[a-1][1]+=e[a][1],e.splice(a,1)):a++,l=0,s=0,c="",u="";break}""===e[e.length-1][1]&&e.pop();var h=!1;a=1;while(at)break;s=o,l=a}return e.length!=n&&e[n][0]===r?l:l+(t-s)},n.prototype.diff_prettyHtml=function(e){for(var t=[],n=/&/g,a=//g,l=/\n/g,c=0;c");switch(u){case i:t[c]=''+d+"";break;case r:t[c]=''+d+"";break;case o:t[c]=""+d+"";break}}return t.join("")},n.prototype.diff_text1=function(e){for(var t=[],n=0;nthis.Match_MaxBits)throw new Error("Pattern too long for this browser.");var r=this.match_alphabet_(t),i=this;function o(e,r){var o=e/t.length,a=Math.abs(n-r);return i.Match_Distance?o+a/i.Match_Distance:a?1:o}var a=this.Match_Threshold,s=e.indexOf(t,n);-1!=s&&(a=Math.min(o(0,s),a),s=e.lastIndexOf(t,n+t.length),-1!=s&&(a=Math.min(o(0,s),a)));var l,c,u=1<=p;v--){var y=r[e.charAt(v-1)];if(g[v]=0===f?(g[v+1]<<1|1)&y:(g[v+1]<<1|1)&y|(h[v+1]|h[v])<<1|1|h[v+1],g[v]&u){var b=o(f,v-1);if(b<=a){if(a=b,s=v-1,!(s>n))break;p=Math.max(1,2*n-s)}}}if(o(f+1,n)>a)break;h=g}return s},n.prototype.match_alphabet_=function(e){for(var t={},n=0;n2&&(this.diff_cleanupSemantic(l),this.diff_cleanupEfficiency(l));else if(e&&"object"==typeof e&&"undefined"==typeof t&&"undefined"==typeof a)l=e,s=this.diff_text1(l);else if("string"==typeof e&&t&&"object"==typeof t&&"undefined"==typeof a)s=e,l=t;else{if("string"!=typeof e||"string"!=typeof t||!a||"object"!=typeof a)throw new Error("Unknown call format to patch_make.");s=e,l=a}if(0===l.length)return[];for(var c=[],u=new n.patch_obj,h=0,d=0,f=0,p=s,m=s,g=0;g=2*this.Patch_Margin&&h&&(this.patch_addContext_(u,p),c.push(u),u=new n.patch_obj,h=0,p=m,d=f);break}v!==i&&(d+=y.length),v!==r&&(f+=y.length)}return h&&(this.patch_addContext_(u,p),c.push(u)),c},n.prototype.patch_deepCopy=function(e){for(var t=[],r=0;rthis.Match_MaxBits?(c=this.match_main(t,d.substring(0,this.Match_MaxBits),h),-1!=c&&(f=this.match_main(t,d.substring(d.length-this.Match_MaxBits),h+d.length-this.Match_MaxBits),(-1==f||c>=f)&&(c=-1))):c=this.match_main(t,d,h),-1==c)s[l]=!1,a-=e[l].length2-e[l].length1;else if(s[l]=!0,a=c-h,u=-1==f?t.substring(c,c+d.length):t.substring(c,f+this.Match_MaxBits),d==u)t=t.substring(0,c)+this.diff_text2(e[l].diffs)+t.substring(c+d.length);else{var p=this.diff_main(d,u,!1);if(d.length>this.Match_MaxBits&&this.diff_levenshtein(p)/d.length>this.Patch_DeleteThreshold)s[l]=!1;else{this.diff_cleanupSemanticLossless(p);for(var m,g=0,v=0;vs[0][1].length){var l=t-s[0][1].length;s[0][1]=r.substring(s[0][1].length)+s[0][1],a.start1-=l,a.start2-=l,a.length1+=l,a.length2+=l}if(a=e[e.length-1],s=a.diffs,0==s.length||s[s.length-1][0]!=o)s.push(new n.Diff(o,r)),a.length1+=t,a.length2+=t;else if(t>s[s.length-1][1].length){l=t-s[s.length-1][1].length;s[s.length-1][1]+=r.substring(0,l),a.length1+=l,a.length2+=l}return r},n.prototype.patch_splitMax=function(e){for(var t=this.Match_MaxBits,a=0;a2*t?(h.length1+=p.length,l+=p.length,d=!1,h.diffs.push(new n.Diff(f,p)),s.diffs.shift()):(p=p.substring(0,t-h.length1-this.Patch_Margin),h.length1+=p.length,l+=p.length,f===o?(h.length2+=p.length,c+=p.length):d=!1,h.diffs.push(new n.Diff(f,p)),p==s.diffs[0][1]?s.diffs.shift():s.diffs[0][1]=s.diffs[0][1].substring(p.length))}u=this.diff_text2(h.diffs),u=u.substring(u.length-this.Patch_Margin);var m=this.diff_text1(s.diffs).substring(0,this.Patch_Margin);""!==m&&(h.length1+=m.length,h.length2+=m.length,0!==h.diffs.length&&h.diffs[h.diffs.length-1][0]===o?h.diffs[h.diffs.length-1][1]+=m:h.diffs.push(new n.Diff(o,m))),d||e.splice(++a,0,h)}}},n.prototype.patch_toText=function(e){for(var t=[],n=0;n>1)%2;s.cssText=["position: absolute","visibility: hidden","padding: 0","margin: 0","border-width: 0","user-select: none","width:0","height:0",r[l]+":0",i[c]+":0",r[1-l]+":auto",i[1-c]+":auto",""].join("!important;"),e.appendChild(a),n.push(a)}return n}function d(e,t,n){for(var r=n?"invTrans":"trans",i=t[r],o=t.srcCoords,s=[],l=[],c=!0,u=0;u<4;u++){var h=e[u].getBoundingClientRect(),d=2*u,f=h.left,p=h.top;s.push(f,p),c=c&&o&&f===o[d]&&p===o[d+1],l.push(e[u].offsetLeft,e[u].offsetTop)}return c&&i?i:(t.srcCoords=s,t[r]=n?a(l,s):a(s,l))}function f(e){return"CANVAS"===e.nodeName.toUpperCase()}},Zgoe:function(e,t,n){var r=n("9HFh"),i=n("e6w7"),o=n("7vYJ"),a=n("c0Oy").Reflect;e.exports=a&&a.ownKeys||function(e){var t=r.f(o(e)),n=i.f;return n?t.concat(n(e)):t}},ZlA7:function(e,t,n){"use strict";n.r(t);var r=n("d6i3"),i=n.n(r),o=n("p0pE"),a=n.n(o),s=n("t3Un"),l={groups:[],switchLoading:{},saveLoading:!1,fetchLoading:!1};t["default"]={name:"serverGroup",state:a()({},l),reducers:{setState(e,t){var n=t.payload;return a()({},e,n)}},effects:{fetch(e,t){return i.a.mark(function e(){var n,r;return i.a.wrap(function(e){while(1)switch(e.prev=e.next){case 0:return n=t.put,e.next=3,n({type:"setState",payload:{fetchLoading:!0}});case 3:return e.next=5,Object(s["a"])("/admin/server/group/fetch");case 5:return r=e.sent,e.next=8,n({type:"setState",payload:{fetchLoading:!1}});case 8:if(200===r.code){e.next=10;break}return e.abrupt("return");case 10:return e.next=12,n({type:"setState",payload:{groups:r.data}});case 12:case"end":return e.stop()}},e)})()},drop(e,t){return i.a.mark(function n(){var r,o,a;return i.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.id,o=t.put,n.next=4,Object(s["b"])("/admin/server/group/drop",{id:r});case 4:if(a=n.sent,200===a.code){n.next=7;break}return n.abrupt("return");case 7:return n.next=9,o({type:"fetch"});case 9:case"end":return n.stop()}},n)})()},save(e,t){return i.a.mark(function n(){var r,o,a,l;return i.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.params,o=e.callback,a=t.put,n.next=4,Object(s["b"])("/admin/server/group/save",r);case 4:if(l=n.sent,200===l.code){n.next=7;break}return n.abrupt("return");case 7:return n.next=9,a({type:"fetch"});case 9:"function"===typeof o&&o();case 10:case"end":return n.stop()}},n)})()}}}},Zss7:function(e,t,n){var r;(function(i){var o=/^\s+/,a=/\s+$/,s=0,l=i.round,c=i.min,u=i.max,h=i.random;function d(e,t){if(e=e||"",t=t||{},e instanceof d)return e;if(!(this instanceof d))return new d(e,t);var n=f(e);this._originalInput=e,this._r=n.r,this._g=n.g,this._b=n.b,this._a=n.a,this._roundA=l(100*this._a)/100,this._format=t.format||n.format,this._gradientType=t.gradientType,this._r<1&&(this._r=l(this._r)),this._g<1&&(this._g=l(this._g)),this._b<1&&(this._b=l(this._b)),this._ok=n.ok,this._tc_id=s++}function f(e){var t={r:0,g:0,b:0},n=1,r=null,i=null,o=null,a=!1,s=!1;return"string"==typeof e&&(e=X(e)),"object"==typeof e&&(Y(e.r)&&Y(e.g)&&Y(e.b)?(t=p(e.r,e.g,e.b),a=!0,s="%"===String(e.r).substr(-1)?"prgb":"rgb"):Y(e.h)&&Y(e.s)&&Y(e.v)?(r=U(e.s),i=U(e.v),t=y(e.h,r,i),a=!0,s="hsv"):Y(e.h)&&Y(e.s)&&Y(e.l)&&(r=U(e.s),o=U(e.l),t=g(e.h,r,o),a=!0,s="hsl"),e.hasOwnProperty("a")&&(n=e.a)),n=$(n),{ok:a,format:e.format||s,r:c(255,u(t.r,0)),g:c(255,u(t.g,0)),b:c(255,u(t.b,0)),a:n}}function p(e,t,n){return{r:255*F(e,255),g:255*F(t,255),b:255*F(n,255)}}function m(e,t,n){e=F(e,255),t=F(t,255),n=F(n,255);var r,i,o=u(e,t,n),a=c(e,t,n),s=(o+a)/2;if(o==a)r=i=0;else{var l=o-a;switch(i=s>.5?l/(2-o-a):l/(o+a),o){case e:r=(t-n)/l+(t1&&(n-=1),n<1/6?e+6*(t-e)*n:n<.5?t:n<2/3?e+(t-e)*(2/3-n)*6:e}if(e=F(e,360),t=F(t,100),n=F(n,100),0===t)r=i=o=n;else{var s=n<.5?n*(1+t):n+t-n*t,l=2*n-s;r=a(l,s,e+1/3),i=a(l,s,e),o=a(l,s,e-1/3)}return{r:255*r,g:255*i,b:255*o}}function v(e,t,n){e=F(e,255),t=F(t,255),n=F(n,255);var r,i,o=u(e,t,n),a=c(e,t,n),s=o,l=o-a;if(i=0===o?0:l/o,o==a)r=0;else{switch(o){case e:r=(t-n)/l+(t>1)+720)%360;--t;)r.h=(r.h+i)%360,o.push(d(r));return o}function D(e,t){t=t||6;var n=d(e).toHsv(),r=n.h,i=n.s,o=n.v,a=[],s=1/t;while(t--)a.push(d({h:r,s:i,v:o})),o=(o+s)%1;return a}d.prototype={isDark:function(){return this.getBrightness()<128},isLight:function(){return!this.isDark()},isValid:function(){return this._ok},getOriginalInput:function(){return this._originalInput},getFormat:function(){return this._format},getAlpha:function(){return this._a},getBrightness:function(){var e=this.toRgb();return(299*e.r+587*e.g+114*e.b)/1e3},getLuminance:function(){var e,t,n,r,o,a,s=this.toRgb();return e=s.r/255,t=s.g/255,n=s.b/255,r=e<=.03928?e/12.92:i.pow((e+.055)/1.055,2.4),o=t<=.03928?t/12.92:i.pow((t+.055)/1.055,2.4),a=n<=.03928?n/12.92:i.pow((n+.055)/1.055,2.4),.2126*r+.7152*o+.0722*a},setAlpha:function(e){return this._a=$(e),this._roundA=l(100*this._a)/100,this},toHsv:function(){var e=v(this._r,this._g,this._b);return{h:360*e.h,s:e.s,v:e.v,a:this._a}},toHsvString:function(){var e=v(this._r,this._g,this._b),t=l(360*e.h),n=l(100*e.s),r=l(100*e.v);return 1==this._a?"hsv("+t+", "+n+"%, "+r+"%)":"hsva("+t+", "+n+"%, "+r+"%, "+this._roundA+")"},toHsl:function(){var e=m(this._r,this._g,this._b);return{h:360*e.h,s:e.s,l:e.l,a:this._a}},toHslString:function(){var e=m(this._r,this._g,this._b),t=l(360*e.h),n=l(100*e.s),r=l(100*e.l);return 1==this._a?"hsl("+t+", "+n+"%, "+r+"%)":"hsla("+t+", "+n+"%, "+r+"%, "+this._roundA+")"},toHex:function(e){return b(this._r,this._g,this._b,e)},toHexString:function(e){return"#"+this.toHex(e)},toHex8:function(e){return w(this._r,this._g,this._b,this._a,e)},toHex8String:function(e){return"#"+this.toHex8(e)},toRgb:function(){return{r:l(this._r),g:l(this._g),b:l(this._b),a:this._a}},toRgbString:function(){return 1==this._a?"rgb("+l(this._r)+", "+l(this._g)+", "+l(this._b)+")":"rgba("+l(this._r)+", "+l(this._g)+", "+l(this._b)+", "+this._roundA+")"},toPercentageRgb:function(){return{r:l(100*F(this._r,255))+"%",g:l(100*F(this._g,255))+"%",b:l(100*F(this._b,255))+"%",a:this._a}},toPercentageRgbString:function(){return 1==this._a?"rgb("+l(100*F(this._r,255))+"%, "+l(100*F(this._g,255))+"%, "+l(100*F(this._b,255))+"%)":"rgba("+l(100*F(this._r,255))+"%, "+l(100*F(this._g,255))+"%, "+l(100*F(this._b,255))+"%, "+this._roundA+")"},toName:function(){return 0===this._a?"transparent":!(this._a<1)&&(N[b(this._r,this._g,this._b,!0)]||!1)},toFilter:function(e){var t="#"+x(this._r,this._g,this._b,this._a),n=t,r=this._gradientType?"GradientType = 1, ":"";if(e){var i=d(e);n="#"+x(i._r,i._g,i._b,i._a)}return"progid:DXImageTransform.Microsoft.gradient("+r+"startColorstr="+t+",endColorstr="+n+")"},toString:function(e){var t=!!e;e=e||this._format;var n=!1,r=this._a<1&&this._a>=0,i=!t&&r&&("hex"===e||"hex6"===e||"hex3"===e||"hex4"===e||"hex8"===e||"name"===e);return i?"name"===e&&0===this._a?this.toName():this.toRgbString():("rgb"===e&&(n=this.toRgbString()),"prgb"===e&&(n=this.toPercentageRgbString()),"hex"!==e&&"hex6"!==e||(n=this.toHexString()),"hex3"===e&&(n=this.toHexString(!0)),"hex4"===e&&(n=this.toHex8String(!0)),"hex8"===e&&(n=this.toHex8String()),"name"===e&&(n=this.toName()),"hsl"===e&&(n=this.toHslString()),"hsv"===e&&(n=this.toHsvString()),n||this.toHexString())},clone:function(){return d(this.toString())},_applyModification:function(e,t){var n=e.apply(null,[this].concat([].slice.call(t)));return this._r=n._r,this._g=n._g,this._b=n._b,this.setAlpha(n._a),this},lighten:function(){return this._applyModification(E,arguments)},brighten:function(){return this._applyModification(k,arguments)},darken:function(){return this._applyModification(O,arguments)},desaturate:function(){return this._applyModification(_,arguments)},saturate:function(){return this._applyModification(S,arguments)},greyscale:function(){return this._applyModification(C,arguments)},spin:function(){return this._applyModification(T,arguments)},_applyCombination:function(e,t){return e.apply(null,[this].concat([].slice.call(t)))},analogous:function(){return this._applyCombination(L,arguments)},complement:function(){return this._applyCombination(A,arguments)},monochromatic:function(){return this._applyCombination(D,arguments)},splitcomplement:function(){return this._applyCombination(R,arguments)},triad:function(){return this._applyCombination(M,arguments)},tetrad:function(){return this._applyCombination(P,arguments)}},d.fromRatio=function(e,t){if("object"==typeof e){var n={};for(var r in e)e.hasOwnProperty(r)&&(n[r]="a"===r?e[r]:U(e[r]));e=n}return d(e,t)},d.equals=function(e,t){return!(!e||!t)&&d(e).toRgbString()==d(t).toRgbString()},d.random=function(){return d.fromRatio({r:h(),g:h(),b:h()})},d.mix=function(e,t,n){n=0===n?0:n||50;var r=d(e).toRgb(),i=d(t).toRgb(),o=n/100,a={r:(i.r-r.r)*o+r.r,g:(i.g-r.g)*o+r.g,b:(i.b-r.b)*o+r.b,a:(i.a-r.a)*o+r.a};return d(a)},d.readability=function(e,t){var n=d(e),r=d(t);return(i.max(n.getLuminance(),r.getLuminance())+.05)/(i.min(n.getLuminance(),r.getLuminance())+.05)},d.isReadable=function(e,t,n){var r,i,o=d.readability(e,t);switch(i=!1,r=Q(n),r.level+r.size){case"AAsmall":case"AAAlarge":i=o>=4.5;break;case"AAlarge":i=o>=3;break;case"AAAsmall":i=o>=7;break}return i},d.mostReadable=function(e,t,n){var r,i,o,a,s=null,l=0;n=n||{},i=n.includeFallbackColors,o=n.level,a=n.size;for(var c=0;cl&&(l=r,s=d(t[c]));return d.isReadable(e,s,{level:o,size:a})||!i?s:(n.includeFallbackColors=!1,d.mostReadable(e,["#fff","#000"],n))};var j=d.names={aliceblue:"f0f8ff",antiquewhite:"faebd7",aqua:"0ff",aquamarine:"7fffd4",azure:"f0ffff",beige:"f5f5dc",bisque:"ffe4c4",black:"000",blanchedalmond:"ffebcd",blue:"00f",blueviolet:"8a2be2",brown:"a52a2a",burlywood:"deb887",burntsienna:"ea7e5d",cadetblue:"5f9ea0",chartreuse:"7fff00",chocolate:"d2691e",coral:"ff7f50",cornflowerblue:"6495ed",cornsilk:"fff8dc",crimson:"dc143c",cyan:"0ff",darkblue:"00008b",darkcyan:"008b8b",darkgoldenrod:"b8860b",darkgray:"a9a9a9",darkgreen:"006400",darkgrey:"a9a9a9",darkkhaki:"bdb76b",darkmagenta:"8b008b",darkolivegreen:"556b2f",darkorange:"ff8c00",darkorchid:"9932cc",darkred:"8b0000",darksalmon:"e9967a",darkseagreen:"8fbc8f",darkslateblue:"483d8b",darkslategray:"2f4f4f",darkslategrey:"2f4f4f",darkturquoise:"00ced1",darkviolet:"9400d3",deeppink:"ff1493",deepskyblue:"00bfff",dimgray:"696969",dimgrey:"696969",dodgerblue:"1e90ff",firebrick:"b22222",floralwhite:"fffaf0",forestgreen:"228b22",fuchsia:"f0f",gainsboro:"dcdcdc",ghostwhite:"f8f8ff",gold:"ffd700",goldenrod:"daa520",gray:"808080",green:"008000",greenyellow:"adff2f",grey:"808080",honeydew:"f0fff0",hotpink:"ff69b4",indianred:"cd5c5c",indigo:"4b0082",ivory:"fffff0",khaki:"f0e68c",lavender:"e6e6fa",lavenderblush:"fff0f5",lawngreen:"7cfc00",lemonchiffon:"fffacd",lightblue:"add8e6",lightcoral:"f08080",lightcyan:"e0ffff",lightgoldenrodyellow:"fafad2",lightgray:"d3d3d3",lightgreen:"90ee90",lightgrey:"d3d3d3",lightpink:"ffb6c1",lightsalmon:"ffa07a",lightseagreen:"20b2aa",lightskyblue:"87cefa",lightslategray:"789",lightslategrey:"789",lightsteelblue:"b0c4de",lightyellow:"ffffe0",lime:"0f0",limegreen:"32cd32",linen:"faf0e6",magenta:"f0f",maroon:"800000",mediumaquamarine:"66cdaa",mediumblue:"0000cd",mediumorchid:"ba55d3",mediumpurple:"9370db",mediumseagreen:"3cb371",mediumslateblue:"7b68ee",mediumspringgreen:"00fa9a",mediumturquoise:"48d1cc",mediumvioletred:"c71585",midnightblue:"191970",mintcream:"f5fffa",mistyrose:"ffe4e1",moccasin:"ffe4b5",navajowhite:"ffdead",navy:"000080",oldlace:"fdf5e6",olive:"808000",olivedrab:"6b8e23",orange:"ffa500",orangered:"ff4500",orchid:"da70d6",palegoldenrod:"eee8aa",palegreen:"98fb98",paleturquoise:"afeeee",palevioletred:"db7093",papayawhip:"ffefd5",peachpuff:"ffdab9",peru:"cd853f",pink:"ffc0cb",plum:"dda0dd",powderblue:"b0e0e6",purple:"800080",rebeccapurple:"663399",red:"f00",rosybrown:"bc8f8f",royalblue:"4169e1",saddlebrown:"8b4513",salmon:"fa8072",sandybrown:"f4a460",seagreen:"2e8b57",seashell:"fff5ee",sienna:"a0522d",silver:"c0c0c0",skyblue:"87ceeb",slateblue:"6a5acd",slategray:"708090",slategrey:"708090",snow:"fffafa",springgreen:"00ff7f",steelblue:"4682b4",tan:"d2b48c",teal:"008080",thistle:"d8bfd8",tomato:"ff6347",turquoise:"40e0d0",violet:"ee82ee",wheat:"f5deb3",white:"fff",whitesmoke:"f5f5f5",yellow:"ff0",yellowgreen:"9acd32"},N=d.hexNames=I(j);function I(e){var t={};for(var n in e)e.hasOwnProperty(n)&&(t[e[n]]=n);return t}function $(e){return e=parseFloat(e),(isNaN(e)||e<0||e>1)&&(e=1),e}function F(e,t){W(e)&&(e="100%");var n=H(e);return e=c(t,u(0,parseFloat(e))),n&&(e=parseInt(e*t,10)/100),i.abs(e-t)<1e-6?1:e%t/parseFloat(t)}function V(e){return c(1,u(0,e))}function B(e){return parseInt(e,16)}function W(e){return"string"==typeof e&&-1!=e.indexOf(".")&&1===parseFloat(e)}function H(e){return"string"===typeof e&&-1!=e.indexOf("%")}function z(e){return 1==e.length?"0"+e:""+e}function U(e){return e<=1&&(e=100*e+"%"),e}function q(e){return i.round(255*parseFloat(e)).toString(16)}function K(e){return B(e)/255}var G=function(){var e="[-\\+]?\\d+%?",t="[-\\+]?\\d*\\.\\d+%?",n="(?:"+t+")|(?:"+e+")",r="[\\s|\\(]+("+n+")[,|\\s]+("+n+")[,|\\s]+("+n+")\\s*\\)?",i="[\\s|\\(]+("+n+")[,|\\s]+("+n+")[,|\\s]+("+n+")[,|\\s]+("+n+")\\s*\\)?";return{CSS_UNIT:new RegExp(n),rgb:new RegExp("rgb"+r),rgba:new RegExp("rgba"+i),hsl:new RegExp("hsl"+r),hsla:new RegExp("hsla"+i),hsv:new RegExp("hsv"+r),hsva:new RegExp("hsva"+i),hex3:/^#?([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,hex6:/^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/,hex4:/^#?([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,hex8:/^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/}}();function Y(e){return!!G.CSS_UNIT.exec(e)}function X(e){e=e.replace(o,"").replace(a,"").toLowerCase();var t,n=!1;if(j[e])e=j[e],n=!0;else if("transparent"==e)return{r:0,g:0,b:0,a:0,format:"name"};return(t=G.rgb.exec(e))?{r:t[1],g:t[2],b:t[3]}:(t=G.rgba.exec(e))?{r:t[1],g:t[2],b:t[3],a:t[4]}:(t=G.hsl.exec(e))?{h:t[1],s:t[2],l:t[3]}:(t=G.hsla.exec(e))?{h:t[1],s:t[2],l:t[3],a:t[4]}:(t=G.hsv.exec(e))?{h:t[1],s:t[2],v:t[3]}:(t=G.hsva.exec(e))?{h:t[1],s:t[2],v:t[3],a:t[4]}:(t=G.hex8.exec(e))?{r:B(t[1]),g:B(t[2]),b:B(t[3]),a:K(t[4]),format:n?"name":"hex8"}:(t=G.hex6.exec(e))?{r:B(t[1]),g:B(t[2]),b:B(t[3]),format:n?"name":"hex"}:(t=G.hex4.exec(e))?{r:B(t[1]+""+t[1]),g:B(t[2]+""+t[2]),b:B(t[3]+""+t[3]),a:K(t[4]+""+t[4]),format:n?"name":"hex8"}:!!(t=G.hex3.exec(e))&&{r:B(t[1]+""+t[1]),g:B(t[2]+""+t[2]),b:B(t[3]+""+t[3]),format:n?"name":"hex"}}function Q(e){var t,n;return e=e||{level:"AA",size:"small"},t=(e.level||"AA").toUpperCase(),n=(e.size||"small").toLowerCase(),"AA"!==t&&"AAA"!==t&&(t="AA"),"small"!==n&&"large"!==n&&(n="small"),{level:t,size:n}}e.exports?e.exports=d:(r=function(){return d}.call(t,n,t,e),void 0===r||(e.exports=r))})(Math)},Zxgi:function(e,t,n){var r=n("5T2Y"),i=n("WEpk"),o=n("uOPS"),a=n("zLkG"),s=n("2faE").f;e.exports=function(e){var t=i.Symbol||(i.Symbol=o?{}:r.Symbol||{});"_"==e.charAt(0)||e in t||s(t,e,{value:a.f(e)})}},a0xu:function(e,t){var n={}.toString;e.exports=function(e){return n.call(e).slice(8,-1)}},a3WO:function(e,t,n){"use strict";function r(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n1&&r&&r.length>1){var o=f(r)/f(i);!isFinite(o)&&(o=1),t.pinchScale=o;var a=p(r);return t.pinchX=a[0],t.pinchY=a[1],{type:"pinch",target:e[0].target,event:t}}}}},g="silent";function v(e,t,n){return{type:e,event:n,target:t.target,topTarget:t.topTarget,cancelBubble:!1,offsetX:n.zrX,offsetY:n.zrY,gestureEvent:n.gestureEvent,pinchX:n.pinchX,pinchY:n.pinchY,pinchScale:n.pinchScale,wheelDelta:n.zrDelta,zrByTouch:n.zrByTouch,which:n.which,stop:y}}function y(){h["f"](this.event)}var b=function(e){function t(){var t=null!==e&&e.apply(this,arguments)||this;return t.handler=null,t}return Object(o["a"])(t,e),t.prototype.dispose=function(){},t.prototype.setCursor=function(){},t}(u["a"]),w=function(){function e(e,t){this.x=e,this.y=t}return e}(),x=["click","dblclick","mousewheel","mouseout","mouseup","mousedown","mousemove","contextmenu"],_=function(e){function t(t,n,r,i){var o=e.call(this)||this;return o._hovered=new w(0,0),o.storage=t,o.painter=n,o.painterRoot=i,r=r||new b,o.proxy=null,o.setHandlerProxy(r),o._draggingMgr=new c(o),o}return Object(o["a"])(t,e),t.prototype.setHandlerProxy=function(e){this.proxy&&this.proxy.dispose(),e&&(i["k"](x,function(t){e.on&&e.on(t,this[t],this)},this),e.handler=this),this.proxy=e},t.prototype.mousemove=function(e){var t=e.zrX,n=e.zrY,r=C(this,t,n),i=this._hovered,o=i.target;o&&!o.__zr&&(i=this.findHover(i.x,i.y),o=i.target);var a=this._hovered=r?new w(t,n):this.findHover(t,n),s=a.target,l=this.proxy;l.setCursor&&l.setCursor(s?s.cursor:"default"),o&&s!==o&&this.dispatchToElement(i,"mouseout",e),this.dispatchToElement(a,"mousemove",e),s&&s!==o&&this.dispatchToElement(a,"mouseover",e)},t.prototype.mouseout=function(e){var t=e.zrEventControl;"only_globalout"!==t&&this.dispatchToElement(this._hovered,"mouseout",e),"no_globalout"!==t&&this.trigger("globalout",{type:"globalout",event:e})},t.prototype.resize=function(){this._hovered=new w(0,0)},t.prototype.dispatch=function(e,t){var n=this[e];n&&n.call(this,t)},t.prototype.dispose=function(){this.proxy.dispose(),this.storage=null,this.proxy=null,this.painter=null},t.prototype.setCursorStyle=function(e){var t=this.proxy;t.setCursor&&t.setCursor(e)},t.prototype.dispatchToElement=function(e,t,n){e=e||{};var r=e.target;if(!r||!r.silent){var i="on"+t,o=v(t,e,n);while(r)if(r[i]&&(o.cancelBubble=!!r[i].call(r,o)),r.trigger(t,o),r=r.__hostTarget?r.__hostTarget:r.parent,o.cancelBubble)break;o.cancelBubble||(this.trigger(t,o),this.painter&&this.painter.eachOtherLayer&&this.painter.eachOtherLayer(function(e){"function"===typeof e[i]&&e[i].call(e,o),e.trigger&&e.trigger(t,o)}))}},t.prototype.findHover=function(e,t,n){for(var r=this.storage.getDisplayList(),i=new w(e,t),o=r.length-1;o>=0;o--){var a=void 0;if(r[o]!==n&&!r[o].ignore&&(a=S(r[o],e,t))&&(!i.topTarget&&(i.topTarget=r[o]),a!==g)){i.target=r[o];break}}return i},t.prototype.processGesture=function(e,t){this._gestureMgr||(this._gestureMgr=new d);var n=this._gestureMgr;"start"===t&&n.clear();var r=n.recognize(e,this.findHover(e.zrX,e.zrY,null).target,this.proxy.dom);if("end"===t&&n.clear(),r){var i=r.type;e.gestureEvent=i;var o=new w;o.target=r.target,this.dispatchToElement(o,i,r.event)}},t}(u["a"]);function S(e,t,n){if(e[e.rectHover?"rectContain":"contain"](t,n)){var r=e,i=void 0,o=!1;while(r){if(r.ignoreClip&&(o=!0),!o){var a=r.getClipPath();if(a&&!a.contain(t,n))return!1;r.silent&&(i=!0)}var s=r.__hostTarget;r=s||r.parent}return!i||g}return!1}function C(e,t,n){var r=e.painter;return t<0||t>r.getWidth()||n<0||n>r.getHeight()}i["k"](["click","mousedown","mouseup","mousewheel","dblclick","contextmenu"],function(e){_.prototype[e]=function(t){var n,r,i=t.zrX,o=t.zrY,s=C(this,i,o);if("mouseup"===e&&s||(n=this.findHover(i,o),r=n.target),"mousedown"===e)this._downEl=r,this._downPoint=[t.zrX,t.zrY],this._upEl=r;else if("mouseup"===e)this._upEl=r;else if("click"===e){if(this._downEl!==this._upEl||!this._downPoint||a["e"](this._downPoint,[t.zrX,t.zrY])>4)return;this._downPoint=null}this.dispatchToElement(n,e,t)}});var E=_,k=n("BPZU"),O=n("S8SX"),T=!1;function A(){T||(T=!0,console.warn("z / z2 / zlevel of displayable is invalid, which may cause unexpected errors"))}function M(e,t){return e.zlevel===t.zlevel?e.z===t.z?e.z2-t.z2:e.z-t.z:e.zlevel-t.zlevel}var P=function(){function e(){this._roots=[],this._displayList=[],this._displayListLen=0,this.displayableSortFunc=M}return e.prototype.traverse=function(e,t){for(var n=0;n0&&(c.__clipPaths=[]),isNaN(c.z)&&(A(),c.z=0),isNaN(c.z2)&&(A(),c.z2=0),isNaN(c.zlevel)&&(A(),c.zlevel=0),this._displayList[this._displayListLen++]=c}var u=e.getDecalElement&&e.getDecalElement();u&&this._updateAndAddDisplayable(u,t,n);var h=e.getTextGuideLine();h&&this._updateAndAddDisplayable(h,t,n);var d=e.getTextContent();d&&this._updateAndAddDisplayable(d,t,n)}},e.prototype.addRoot=function(e){e.__zr&&e.__zr.storage===this||this._roots.push(e)},e.prototype.delRoot=function(e){if(e instanceof Array)for(var t=0,n=e.length;t=0&&this._roots.splice(r,1)}},e.prototype.delAllRoots=function(){this._roots=[],this._displayList=[],this._displayListLen=0},e.prototype.getRoots=function(){return this._roots},e.prototype.dispose=function(){this._displayList=null,this._roots=null},e}(),R=P,L=n("mLcG"),D=n("Bq2U"),j=function(e){function t(t){var n=e.call(this)||this;return n._running=!1,n._time=0,n._pausedTime=0,n._pauseStart=0,n._paused=!1,t=t||{},n.stage=t.stage||{},n.onframe=t.onframe||function(){},n}return Object(o["a"])(t,e),t.prototype.addClip=function(e){e.animation&&this.removeClip(e),this._clipsHead?(this._clipsTail.next=e,e.prev=this._clipsTail,e.next=null,this._clipsTail=e):this._clipsHead=this._clipsTail=e,e.animation=this},t.prototype.addAnimator=function(e){e.animation=this;var t=e.getClip();t&&this.addClip(t)},t.prototype.removeClip=function(e){if(e.animation){var t=e.prev,n=e.next;t?t.next=n:this._clipsHead=n,n?n.prev=t:this._clipsTail=t,e.next=e.prev=e.animation=null}},t.prototype.removeAnimator=function(e){var t=e.getClip();t&&this.removeClip(t),e.animation=null},t.prototype.update=function(e){var t=(new Date).getTime()-this._pausedTime,n=t-this._time,r=this._clipsHead;while(r){var i=r.next,o=r.step(t,n);o?(r.ondestroy&&r.ondestroy(),this.removeClip(r),r=i):r=i}this._time=t,e||(this.onframe(n),this.trigger("frame",n),this.stage.update&&this.stage.update())},t.prototype._startLoop=function(){var e=this;function t(){e._running&&(Object(L["a"])(t),!e._paused&&e.update())}this._running=!0,Object(L["a"])(t)},t.prototype.start=function(){this._running||(this._time=(new Date).getTime(),this._pausedTime=0,this._startLoop())},t.prototype.stop=function(){this._running=!1},t.prototype.pause=function(){this._paused||(this._pauseStart=(new Date).getTime(),this._paused=!0)},t.prototype.resume=function(){this._paused&&(this._pausedTime+=(new Date).getTime()-this._pauseStart,this._paused=!1)},t.prototype.clear=function(){var e=this._clipsHead;while(e){var t=e.next;e.prev=e.next=e.animation=null,e=t}this._clipsHead=this._clipsTail=null},t.prototype.isFinished=function(){return null==this._clipsHead},t.prototype.animate=function(e,t){t=t||{},this.start();var n=new D["b"](e,t.loop);return this.addAnimator(n),n},t}(u["a"]),N=j,I=300,$=r["a"].domSupported,F=function(){var e=["click","dblclick","mousewheel","wheel","mouseout","mouseup","mousedown","mousemove","contextmenu"],t=["touchstart","touchend","touchmove"],n={pointerdown:1,pointerup:1,pointermove:1,pointerout:1},r=i["F"](e,function(e){var t=e.replace("mouse","pointer");return n.hasOwnProperty(t)?t:e});return{mouse:e,touch:t,pointer:r}}(),V={mouse:["mousemove","mouseup"],pointer:["pointermove","pointerup"]},B=!1;function W(e){var t=e.pointerType;return"pen"===t||"touch"===t}function H(e){e.touching=!0,null!=e.touchTimer&&(clearTimeout(e.touchTimer),e.touchTimer=null),e.touchTimer=setTimeout(function(){e.touching=!1,e.touchTimer=null},700)}function z(e){e&&(e.zrByTouch=!0)}function U(e,t){return Object(h["d"])(e.dom,new K(e,t),!0)}function q(e,t){var n=t,r=!1;while(n&&9!==n.nodeType&&!(r=n.domBelongToZr||n!==t&&n===e.painterRoot))n=n.parentNode;return r}var K=function(){function e(e,t){this.stopPropagation=i["I"],this.stopImmediatePropagation=i["I"],this.preventDefault=i["I"],this.type=t.type,this.target=this.currentTarget=e.dom,this.pointerType=t.pointerType,this.clientX=t.clientX,this.clientY=t.clientY}return e}(),G={mousedown:function(e){e=Object(h["d"])(this.dom,e),this.__mayPointerCapture=[e.zrX,e.zrY],this.trigger("mousedown",e)},mousemove:function(e){e=Object(h["d"])(this.dom,e);var t=this.__mayPointerCapture;!t||e.zrX===t[0]&&e.zrY===t[1]||this.__togglePointerCapture(!0),this.trigger("mousemove",e)},mouseup:function(e){e=Object(h["d"])(this.dom,e),this.__togglePointerCapture(!1),this.trigger("mouseup",e)},mouseout:function(e){e=Object(h["d"])(this.dom,e);var t=e.toElement||e.relatedTarget;q(this,t)||(this.__pointerCapturing&&(e.zrEventControl="no_globalout"),this.trigger("mouseout",e))},wheel:function(e){B=!0,e=Object(h["d"])(this.dom,e),this.trigger("mousewheel",e)},mousewheel:function(e){B||(e=Object(h["d"])(this.dom,e),this.trigger("mousewheel",e))},touchstart:function(e){e=Object(h["d"])(this.dom,e),z(e),this.__lastTouchMoment=new Date,this.handler.processGesture(e,"start"),G.mousemove.call(this,e),G.mousedown.call(this,e)},touchmove:function(e){e=Object(h["d"])(this.dom,e),z(e),this.handler.processGesture(e,"change"),G.mousemove.call(this,e)},touchend:function(e){e=Object(h["d"])(this.dom,e),z(e),this.handler.processGesture(e,"end"),G.mouseup.call(this,e),+new Date-+this.__lastTouchMoment0&&(this._stillFrameAccum++,this._stillFrameAccum>this._sleepAfterStill&&this.animation.stop())},e.prototype.setSleepAfterStill=function(e){this._sleepAfterStill=e},e.prototype.wakeUp=function(){this.animation.start(),this._stillFrameAccum=0},e.prototype.addHover=function(e){},e.prototype.removeHover=function(e){},e.prototype.clearHover=function(){},e.prototype.refreshHover=function(){this._needsRefreshHover=!0},e.prototype.refreshHoverImmediately=function(){this._needsRefreshHover=!1,this.painter.refreshHover&&"canvas"===this.painter.getType()&&this.painter.refreshHover()},e.prototype.resize=function(e){e=e||{},this.painter.resize(e.width,e.height),this.handler.resize()},e.prototype.clearAnimation=function(){this.animation.clear()},e.prototype.getWidth=function(){return this.painter.getWidth()},e.prototype.getHeight=function(){return this.painter.getHeight()},e.prototype.pathToImage=function(e,t){if(this.painter.pathToImage)return this.painter.pathToImage(e,t)},e.prototype.setCursorStyle=function(e){this.handler.setCursorStyle(e)},e.prototype.findHover=function(e,t){return this.handler.findHover(e,t)},e.prototype.on=function(e,t,n){return this.handler.on(e,t,n),this},e.prototype.off=function(e,t){this.handler.off(e,t)},e.prototype.trigger=function(e,t){this.handler.trigger(e,t)},e.prototype.clear=function(){for(var e=this.storage.getRoots(),t=0;t1&&void 0!==arguments[1]?arguments[1]:{},r=e.props;"value"in r||e.setState({value:t}),("keyboard"===n.source||"dateInputSelect"===n.source||!r.calendar.props.timePicker&&"dateInput"!==n.source||"todayButton"===n.source)&&e.close(e.focus),r.onChange(t)},this.onKeyDown=function(t){e.state.open||t.keyCode!==v["a"].DOWN&&t.keyCode!==v["a"].ENTER||(e.open(),t.preventDefault())},this.onCalendarOk=function(){e.close(e.focus)},this.onCalendarClear=function(){e.close(e.focus)},this.onCalendarBlur=function(){e.setOpen(!1)},this.onVisibleChange=function(t){e.setOpen(t)},this.getCalendarElement=function(){var t=e.props,n=e.state,r=t.calendar.props,i=n.value,o=i,a={ref:e.saveCalendarRef,defaultValue:o||r.defaultValue,selectedValue:i,onKeyDown:e.onCalendarKeyDown,onOk:Object(g["a"])(r.onOk,e.onCalendarOk),onSelect:Object(g["a"])(r.onSelect,e.onCalendarSelect),onClear:Object(g["a"])(r.onClear,e.onCalendarClear),onBlur:Object(g["a"])(r.onBlur,e.onCalendarBlur)};return u.a.cloneElement(t.calendar,a)},this.setOpen=function(t,n){var r=e.props.onOpenChange;e.state.open!==t&&("open"in e.props||e.setState({open:t},n),r(t))},this.open=function(t){e.setOpen(!0,t)},this.close=function(t){e.setOpen(!1,t)},this.focus=function(){e.state.open||d.a.findDOMNode(e).focus()},this.focusCalendar=function(){e.state.open&&e.calendarInstance&&e.calendarInstance.focus()}};Object(m["polyfill"])(E);t["a"]=E},"ar/p":function(e,t,n){var r=n("5vMV"),i=n("FpHa").concat("length","prototype");t.f=Object.getOwnPropertyNames||function(e){return r(e,i)}},b5re:function(e,t,n){e.exports=n("VyuQ")("native-function-to-string",Function.toString)},b9EY:function(e,t){e.exports=/[\xAD\u0600-\u0605\u061C\u06DD\u070F\u08E2\u180E\u200B-\u200F\u202A-\u202E\u2060-\u2064\u2066-\u206F\uFEFF\uFFF9-\uFFFB]|\uD804[\uDCBD\uDCCD]|\uD82F[\uDCA0-\uDCA3]|\uD834[\uDD73-\uDD7A]|\uDB40[\uDC01\uDC20-\uDC7F]/},b9Ot:function(e,t,n){"use strict";var r=function(){function e(e){e&&(this._$eventProcessor=e)}return e.prototype.on=function(e,t,n,r){this._$handlers||(this._$handlers={});var i=this._$handlers;if("function"===typeof t&&(r=n,n=t,t=null),!n||!e)return this;var o=this._$eventProcessor;null!=t&&o&&o.normalizeQuery&&(t=o.normalizeQuery(t)),i[e]||(i[e]=[]);for(var a=0;a=0?parseFloat((o.match(/(?:MSIE |Trident\/[0-9]+[\.0-9]+;.*rv:)([0-9]+[\.0-9]+)/)||[])[1]):parseFloat((o.match(/(?:Trident\/[0-9]+[\.0-9]+;.*rv:)([0-9]+[\.0-9]+)/)||[])[1]),t.isOldIE=t.isIE&&t.isIE<9,t.isGecko=t.isMozilla=o.match(/ Gecko\/\d+/),t.isOpera="object"==typeof opera&&"[object Opera]"==Object.prototype.toString.call(window.opera),t.isWebKit=parseFloat(o.split("WebKit/")[1])||void 0,t.isChrome=parseFloat(o.split(" Chrome/")[1])||void 0,t.isEdge=parseFloat(o.split(" Edge/")[1])||void 0,t.isAIR=o.indexOf("AdobeAIR")>=0,t.isAndroid=o.indexOf("Android")>=0,t.isChromeOS=o.indexOf(" CrOS ")>=0,t.isIOS=/iPad|iPhone|iPod/.test(o)&&!window.MSStream,t.isIOS&&(t.isMac=!0),t.isMobile=t.isIOS||t.isAndroid}),ace.define("ace/lib/dom",["require","exports","module","ace/lib/useragent"],function(e,t,n){"use strict";var r,i=e("./useragent"),o="http://www.w3.org/1999/xhtml";t.buildDom=function e(t,n,r){if("string"==typeof t&&t){var i=document.createTextNode(t);return n&&n.appendChild(i),i}if(!Array.isArray(t))return t&&t.appendChild&&n&&n.appendChild(t),t;if("string"!=typeof t[0]||!t[0]){for(var o=[],a=0;a=1.5,i.isChromeOS&&(t.HI_DPI=!1),"undefined"!==typeof document){var c=document.createElement("div");t.HI_DPI&&void 0!==c.style.transform&&(t.HAS_CSS_TRANSFORMS=!0),i.isEdge||"undefined"===typeof c.style.animationName||(t.HAS_CSS_ANIMATION=!0),c=null}t.HAS_CSS_TRANSFORMS?t.translate=function(e,t,n){e.style.transform="translate("+Math.round(t)+"px, "+Math.round(n)+"px)"}:t.translate=function(e,t,n){e.style.top=Math.round(n)+"px",e.style.left=Math.round(t)+"px"}}),ace.define("ace/lib/oop",["require","exports","module"],function(e,t,n){"use strict";t.inherits=function(e,t){e.super_=t,e.prototype=Object.create(t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}})},t.mixin=function(e,t){for(var n in t)e[n]=t[n];return e},t.implement=function(e,n){t.mixin(e,n)}}),ace.define("ace/lib/keys",["require","exports","module","ace/lib/oop"],function(e,t,n){"use strict";var r=e("./oop"),i=function(){var e,t,n={MODIFIER_KEYS:{16:"Shift",17:"Ctrl",18:"Alt",224:"Meta",91:"MetaLeft",92:"MetaRight",93:"ContextMenu"},KEY_MODS:{ctrl:1,alt:2,option:2,shift:4,super:8,meta:8,command:8,cmd:8,control:1},FUNCTION_KEYS:{8:"Backspace",9:"Tab",13:"Return",19:"Pause",27:"Esc",32:"Space",33:"PageUp",34:"PageDown",35:"End",36:"Home",37:"Left",38:"Up",39:"Right",40:"Down",44:"Print",45:"Insert",46:"Delete",96:"Numpad0",97:"Numpad1",98:"Numpad2",99:"Numpad3",100:"Numpad4",101:"Numpad5",102:"Numpad6",103:"Numpad7",104:"Numpad8",105:"Numpad9","-13":"NumpadEnter",112:"F1",113:"F2",114:"F3",115:"F4",116:"F5",117:"F6",118:"F7",119:"F8",120:"F9",121:"F10",122:"F11",123:"F12",144:"Numlock",145:"Scrolllock"},PRINTABLE_KEYS:{32:" ",48:"0",49:"1",50:"2",51:"3",52:"4",53:"5",54:"6",55:"7",56:"8",57:"9",59:";",61:"=",65:"a",66:"b",67:"c",68:"d",69:"e",70:"f",71:"g",72:"h",73:"i",74:"j",75:"k",76:"l",77:"m",78:"n",79:"o",80:"p",81:"q",82:"r",83:"s",84:"t",85:"u",86:"v",87:"w",88:"x",89:"y",90:"z",107:"+",109:"-",110:".",186:";",187:"=",188:",",189:"-",190:".",191:"/",192:"`",219:"[",220:"\\",221:"]",222:"'",111:"/",106:"*"}};for(t in n.FUNCTION_KEYS)e=n.FUNCTION_KEYS[t].toLowerCase(),n[e]=parseInt(t,10);for(t in n.PRINTABLE_KEYS)e=n.PRINTABLE_KEYS[t].toLowerCase(),n[e]=parseInt(t,10);return r.mixin(n,n.MODIFIER_KEYS),r.mixin(n,n.PRINTABLE_KEYS),r.mixin(n,n.FUNCTION_KEYS),n.enter=n["return"],n.escape=n.esc,n.del=n["delete"],n[173]="-",function(){for(var e=["cmd","ctrl","alt","shift"],t=Math.pow(2,e.length);t--;)n.KEY_MODS[t]=e.filter(function(e){return t&n.KEY_MODS[e]}).join("-")+"-"}(),n.KEY_MODS[0]="",n.KEY_MODS[-1]="input-",n}();r.mixin(t,i),t.keyCodeToString=function(e){var t=i[e];return"string"!=typeof t&&(t=String.fromCharCode(e)),t.toLowerCase()}}),ace.define("ace/lib/event",["require","exports","module","ace/lib/keys","ace/lib/useragent"],function(e,t,n){"use strict";var r,i=e("./keys"),o=e("./useragent"),a=null,s=0;function l(){r=!1;try{document.createComment("").addEventListener("test",function(){},{get passive(){r={passive:!1}}})}catch(e){}}function c(){return void 0==r&&l(),r}function u(e,t,n){this.elem=e,this.type=t,this.callback=n}u.prototype.destroy=function(){d(this.elem,this.type,this.callback),this.elem=this.type=this.callback=void 0};var h=t.addListener=function(e,t,n,r){e.addEventListener(t,n,c()),r&&r.$toDestroy.push(new u(e,t,n))},d=t.removeListener=function(e,t,n){e.removeEventListener(t,n,c())};t.stopEvent=function(e){return t.stopPropagation(e),t.preventDefault(e),!1},t.stopPropagation=function(e){e.stopPropagation&&e.stopPropagation()},t.preventDefault=function(e){e.preventDefault&&e.preventDefault()},t.getButton=function(e){return"dblclick"==e.type?0:"contextmenu"==e.type||o.isMac&&e.ctrlKey&&!e.altKey&&!e.shiftKey?2:e.button},t.capture=function(e,t,n){var r=e&&e.ownerDocument||document;function i(e){t&&t(e),n&&n(e),d(r,"mousemove",t),d(r,"mouseup",i),d(r,"dragstart",i)}return h(r,"mousemove",t),h(r,"mouseup",i),h(r,"dragstart",i),i},t.addMouseWheelListener=function(e,t,n){"onmousewheel"in e?h(e,"mousewheel",function(e){var n=8;void 0!==e.wheelDeltaX?(e.wheelX=-e.wheelDeltaX/n,e.wheelY=-e.wheelDeltaY/n):(e.wheelX=0,e.wheelY=-e.wheelDelta/n),t(e)},n):"onwheel"in e?h(e,"wheel",function(e){var n=.35;switch(e.deltaMode){case e.DOM_DELTA_PIXEL:e.wheelX=e.deltaX*n||0,e.wheelY=e.deltaY*n||0;break;case e.DOM_DELTA_LINE:case e.DOM_DELTA_PAGE:e.wheelX=5*(e.deltaX||0),e.wheelY=5*(e.deltaY||0);break}t(e)},n):h(e,"DOMMouseScroll",function(e){e.axis&&e.axis==e.HORIZONTAL_AXIS?(e.wheelX=5*(e.detail||0),e.wheelY=0):(e.wheelX=0,e.wheelY=5*(e.detail||0)),t(e)},n)},t.addMultiMouseDownListener=function(e,n,r,i,a){var s,l,c,u=0,d={2:"dblclick",3:"tripleclick",4:"quadclick"};function f(e){if(0!==t.getButton(e)?u=0:e.detail>1?(u++,u>4&&(u=1)):u=1,o.isIE){var a=Math.abs(e.clientX-s)>5||Math.abs(e.clientY-l)>5;c&&!a||(u=1),c&&clearTimeout(c),c=setTimeout(function(){c=null},n[u-1]||600),1==u&&(s=e.clientX,l=e.clientY)}if(e._clicks=u,r[i]("mousedown",e),u>4)u=0;else if(u>1)return r[i](d[u],e)}Array.isArray(e)||(e=[e]),e.forEach(function(e){h(e,"mousedown",f,a)})};var f=function(e){return 0|(e.ctrlKey?1:0)|(e.altKey?2:0)|(e.shiftKey?4:0)|(e.metaKey?8:0)};function p(e,t,n){var r=f(t);if(!o.isMac&&a){if(t.getModifierState&&(t.getModifierState("OS")||t.getModifierState("Win"))&&(r|=8),a.altGr){if(3==(3&r))return;a.altGr=0}if(18===n||17===n){var l="location"in t?t.location:t.keyLocation;if(17===n&&1===l)1==a[n]&&(s=t.timeStamp);else if(18===n&&3===r&&2===l){var c=t.timeStamp-s;c<50&&(a.altGr=!0)}}}if(n in i.MODIFIER_KEYS&&(n=-1),!r&&13===n){l="location"in t?t.location:t.keyLocation;if(3===l&&(e(t,r,-n),t.defaultPrevented))return}if(o.isChromeOS&&8&r){if(e(t,r,n),t.defaultPrevented)return;r&=-9}return!!(r||n in i.FUNCTION_KEYS||n in i.PRINTABLE_KEYS)&&e(t,r,n)}function m(){a=Object.create(null)}if(t.getModifierString=function(e){return i.KEY_MODS[f(e)]},t.addCommandKeyListener=function(e,n,r){if(o.isOldGecko||o.isOpera&&!("KeyboardEvent"in window)){var i=null;h(e,"keydown",function(e){i=e.keyCode},r),h(e,"keypress",function(e){return p(n,e,i)},r)}else{var s=null;h(e,"keydown",function(e){a[e.keyCode]=(a[e.keyCode]||0)+1;var t=p(n,e,e.keyCode);return s=e.defaultPrevented,t},r),h(e,"keypress",function(e){s&&(e.ctrlKey||e.altKey||e.shiftKey||e.metaKey)&&(t.stopEvent(e),s=null)},r),h(e,"keyup",function(e){a[e.keyCode]=null},r),a||(m(),h(window,"focus",m))}},"object"==typeof window&&window.postMessage&&!o.isOldIE){var g=1;t.nextTick=function(e,n){n=n||window;var r="zero-timeout-message-"+g++,i=function(o){o.data==r&&(t.stopPropagation(o),d(n,"message",i),e())};h(n,"message",i),n.postMessage(r,"*")}}t.$idleBlocked=!1,t.onIdle=function(e,n){return setTimeout(function n(){t.$idleBlocked?setTimeout(n,100):e()},n)},t.$idleBlockId=null,t.blockIdle=function(e){t.$idleBlockId&&clearTimeout(t.$idleBlockId),t.$idleBlocked=!0,t.$idleBlockId=setTimeout(function(){t.$idleBlocked=!1},e||100)},t.nextFrame="object"==typeof window&&(window.requestAnimationFrame||window.mozRequestAnimationFrame||window.webkitRequestAnimationFrame||window.msRequestAnimationFrame||window.oRequestAnimationFrame),t.nextFrame?t.nextFrame=t.nextFrame.bind(window):t.nextFrame=function(e){setTimeout(e,17)}}),ace.define("ace/range",["require","exports","module"],function(e,t,n){"use strict";var r=function(e,t){return e.row-t.row||e.column-t.column},i=function(e,t,n,r){this.start={row:e,column:t},this.end={row:n,column:r}};(function(){this.isEqual=function(e){return this.start.row===e.start.row&&this.end.row===e.end.row&&this.start.column===e.start.column&&this.end.column===e.end.column},this.toString=function(){return"Range: ["+this.start.row+"/"+this.start.column+"] -> ["+this.end.row+"/"+this.end.column+"]"},this.contains=function(e,t){return 0==this.compare(e,t)},this.compareRange=function(e){var t,n=e.end,r=e.start;return t=this.compare(n.row,n.column),1==t?(t=this.compare(r.row,r.column),1==t?2:0==t?1:0):-1==t?-2:(t=this.compare(r.row,r.column),-1==t?-1:1==t?42:0)},this.comparePoint=function(e){return this.compare(e.row,e.column)},this.containsRange=function(e){return 0==this.comparePoint(e.start)&&0==this.comparePoint(e.end)},this.intersects=function(e){var t=this.compareRange(e);return-1==t||0==t||1==t},this.isEnd=function(e,t){return this.end.row==e&&this.end.column==t},this.isStart=function(e,t){return this.start.row==e&&this.start.column==t},this.setStart=function(e,t){"object"==typeof e?(this.start.column=e.column,this.start.row=e.row):(this.start.row=e,this.start.column=t)},this.setEnd=function(e,t){"object"==typeof e?(this.end.column=e.column,this.end.row=e.row):(this.end.row=e,this.end.column=t)},this.inside=function(e,t){return 0==this.compare(e,t)&&(!this.isEnd(e,t)&&!this.isStart(e,t))},this.insideStart=function(e,t){return 0==this.compare(e,t)&&!this.isEnd(e,t)},this.insideEnd=function(e,t){return 0==this.compare(e,t)&&!this.isStart(e,t)},this.compare=function(e,t){return this.isMultiLine()||e!==this.start.row?ethis.end.row?1:this.start.row===e?t>=this.start.column?0:-1:this.end.row===e?t<=this.end.column?0:1:0:tthis.end.column?1:0},this.compareStart=function(e,t){return this.start.row==e&&this.start.column==t?-1:this.compare(e,t)},this.compareEnd=function(e,t){return this.end.row==e&&this.end.column==t?1:this.compare(e,t)},this.compareInside=function(e,t){return this.end.row==e&&this.end.column==t?1:this.start.row==e&&this.start.column==t?-1:this.compare(e,t)},this.clipRows=function(e,t){if(this.end.row>t)var n={row:t+1,column:0};else if(this.end.rowt)var r={row:t+1,column:0};else if(this.start.row0)1&t&&(n+=e),(t>>=1)&&(e+=e);return n};var r=/^\s\s*/,i=/\s\s*$/;t.stringTrimLeft=function(e){return e.replace(r,"")},t.stringTrimRight=function(e){return e.replace(i,"")},t.copyObject=function(e){var t={};for(var n in e)t[n]=e[n];return t},t.copyArray=function(e){for(var t=[],n=0,r=e.length;nDate.now()-50)||(r=!1)},cancel:function(){r=Date.now()}}}),ace.define("ace/keyboard/textinput",["require","exports","module","ace/lib/event","ace/lib/useragent","ace/lib/dom","ace/lib/lang","ace/clipboard","ace/lib/keys"],function(e,t,n){"use strict";var r=e("../lib/event"),i=e("../lib/useragent"),o=e("../lib/dom"),a=e("../lib/lang"),s=e("../clipboard"),l=i.isChrome<18,c=i.isIE,u=i.isChrome>63,h=400,d=e("../lib/keys"),f=d.KEY_MODS,p=i.isIOS,m=p?/\s/:/\n/,g=i.isMobile,v=function(e,t){var n=o.createElement("textarea");n.className="ace_text-input",n.setAttribute("wrap","off"),n.setAttribute("autocorrect","off"),n.setAttribute("autocapitalize","off"),n.setAttribute("spellcheck",!1),n.style.opacity="0",e.insertBefore(n,e.firstChild);var v=!1,y=!1,b=!1,w=!1,x="";g||(n.style.fontSize="1px");var _=!1,S=!1,C="",E=0,k=0,O=0;try{var T=document.activeElement===n}catch(e){}r.addListener(n,"blur",function(e){S||(t.onBlur(e),T=!1)},t),r.addListener(n,"focus",function(e){if(!S){if(T=!0,i.isEdge)try{if(!document.hasFocus())return}catch(e){}t.onFocus(e),i.isEdge?setTimeout(A):A()}},t),this.$focusScroll=!1,this.focus=function(){if(x||u||"browser"==this.$focusScroll)return n.focus({preventScroll:!0});var e=n.style.top;n.style.position="fixed",n.style.top="0px";try{var t=0!=n.getBoundingClientRect().top}catch(e){return}var r=[];if(t){var i=n.parentElement;while(i&&1==i.nodeType)r.push(i),i.setAttribute("ace_nocontext",!0),i=!i.parentElement&&i.getRootNode?i.getRootNode().host:i.parentElement}n.focus({preventScroll:!0}),t&&r.forEach(function(e){e.removeAttribute("ace_nocontext")}),setTimeout(function(){n.style.position="","0px"==n.style.top&&(n.style.top=e)},0)},this.blur=function(){n.blur()},this.isFocused=function(){return T},t.on("beforeEndOperation",function(){var e=t.curOp,r=e&&e.command&&e.command.name;if("insertstring"!=r){var i=r&&(e.docChanged||e.selectionChanged);b&&i&&(C=n.value="",H()),A()}});var A=p?function(e){if(T&&(!v||e)&&!w){e||(e="");var r="\n ab"+e+"cde fg\n";r!=n.value&&(n.value=C=r);var i=4,o=4+(e.length||(t.selection.isEmpty()?0:1));E==i&&k==o||n.setSelectionRange(i,o),E=i,k=o}}:function(){if(!b&&!w&&(T||L)){b=!0;var e=0,r=0,i="";if(t.session){var o=t.selection,a=o.getRange(),s=o.cursor.row;if(e=a.start.column,r=a.end.column,i=t.session.getLine(s),a.start.row!=s){var l=t.session.getLine(s-1);e=a.start.rows+1?c.length:r,r+=i.length+1,i=i+"\n"+c}else g&&s>0&&(i="\n"+i,r+=1,e+=1);i.length>h&&(e=C.length&&e.value===C&&C&&e.selectionEnd!==k},P=function(e){b||(v?v=!1:M(n)?(t.selectAll(),A()):g&&n.selectionStart!=E&&A())},R=null;this.setInputHandler=function(e){R=e},this.getInputHandler=function(){return R};var L=!1,D=function(e,r){if(L&&(L=!1),y)return A(),e&&t.onPaste(e),y=!1,"";var o=n.selectionStart,a=n.selectionEnd,s=E,l=C.length-k,c=e,u=e.length-o,h=e.length-a,d=0;while(s>0&&C[d]==e[d])d++,s--;c=c.slice(d),d=1;while(l>0&&C.length-d>E-1&&C[C.length-d]==e[e.length-d])d++,l--;u-=d-1,h-=d-1;var f=c.length-d+1;if(f<0&&(s=-f,f=0),c=c.slice(0,f),!r&&!c&&!u&&!s&&!l&&!h)return"";w=!0;var p=!1;return i.isAndroid&&". "==c&&(c=" ",p=!0),c&&!s&&!l&&!u&&!h||_?t.onTextInput(c):t.onTextInput(c,{extendLeft:s,extendRight:l,restoreStart:u,restoreEnd:h}),w=!1,C=e,E=o,k=a,O=h,p?"\n":c},j=function(e){if(b)return W();if(e&&e.inputType){if("historyUndo"==e.inputType)return t.execCommand("undo");if("historyRedo"==e.inputType)return t.execCommand("redo")}var r=n.value,i=D(r,!0);(r.length>h+100||m.test(i)||g&&E<1&&E==k)&&A()},N=function(e,t,n){var r=e.clipboardData||window.clipboardData;if(r&&!l){var i=c||n?"Text":"text/plain";try{return t?!1!==r.setData(i,t):r.getData(i)}catch(e){if(!n)return N(e,t,!0)}}},I=function(e,i){var o=t.getCopyText();if(!o)return r.preventDefault(e);N(e,o)?(p&&(A(o),v=o,setTimeout(function(){v=!1},10)),i?t.onCut():t.onCopy(),r.preventDefault(e)):(v=!0,n.value=o,n.select(),setTimeout(function(){v=!1,A(),i?t.onCut():t.onCopy()}))},$=function(e){I(e,!0)},F=function(e){I(e,!1)},V=function(e){var o=N(e);s.pasteCancelled()||("string"==typeof o?(o&&t.onPaste(o,e),i.isIE&&setTimeout(A),r.preventDefault(e)):(n.value="",y=!0))};r.addCommandKeyListener(n,t.onCommandKey.bind(t),t),r.addListener(n,"select",P,t),r.addListener(n,"input",j,t),r.addListener(n,"cut",$,t),r.addListener(n,"copy",F,t),r.addListener(n,"paste",V,t),"oncut"in n&&"oncopy"in n&&"onpaste"in n||r.addListener(e,"keydown",function(e){if((!i.isMac||e.metaKey)&&e.ctrlKey)switch(e.keyCode){case 67:F(e);break;case 86:V(e);break;case 88:$(e);break}},t);var B=function(e){if(!b&&t.onCompositionStart&&!t.$readOnly&&(b={},!_)){e.data&&(b.useTextareaForIME=!1),setTimeout(W,0),t._signal("compositionStart"),t.on("mousedown",z);var r=t.getSelectionRange();r.end.row=r.start.row,r.end.column=r.start.column,b.markerRange=r,b.selectionStart=E,t.onCompositionStart(b),b.useTextareaForIME?(C=n.value="",E=0,k=0):(n.msGetInputContext&&(b.context=n.msGetInputContext()),n.getInputContext&&(b.context=n.getInputContext()))}},W=function(){if(b&&t.onCompositionUpdate&&!t.$readOnly){if(_)return z();if(b.useTextareaForIME)t.onCompositionUpdate(n.value);else{var e=n.value;D(e),b.markerRange&&(b.context&&(b.markerRange.start.column=b.selectionStart=b.context.compositionStartOffset),b.markerRange.end.column=b.markerRange.start.column+k-b.selectionStart+O)}}},H=function(e){t.onCompositionEnd&&!t.$readOnly&&(b=!1,t.onCompositionEnd(),t.off("mousedown",z),e&&j())};function z(){S=!0,n.blur(),n.focus(),S=!1}var U,q=a.delayedCall(W,50).schedule.bind(null,null);function K(e){27==e.keyCode&&n.value.lengthk&&"\n"==C[o]?a=d.end:rk&&C.slice(0,o).split("\n").length>2?a=d.down:o>k&&" "==C[o-1]?(a=d.right,s=f.option):(o>k||o==k&&k!=E&&r==o)&&(a=d.right),r!==o&&(s|=f.shift),a){var l=t.onCommandKey({},s,a);if(!l&&t.commands){a=d.keyCodeToString(a);var c=t.commands.findKeyCommand(s,a);c&&t.execCommand(c)}E=r,k=o,A("")}}};document.addEventListener("selectionchange",o),t.on("destroy",function(){document.removeEventListener("selectionchange",o)})}r.addListener(n,"mouseup",Y,t),r.addListener(n,"mousedown",function(e){e.preventDefault(),G()},t),r.addListener(t.renderer.scroller,"contextmenu",Y,t),r.addListener(n,"contextmenu",Y,t),p&&X(e,t,n)};t.TextInput=v,t.$setUserAgentForTests=function(e,t){g=e,p=t}}),ace.define("ace/mouse/default_handlers",["require","exports","module","ace/lib/useragent"],function(e,t,n){"use strict";var r=e("../lib/useragent"),i=0,o=550;function a(e){e.$clickSelection=null;var t=e.editor;t.setDefaultHandler("mousedown",this.onMouseDown.bind(e)),t.setDefaultHandler("dblclick",this.onDoubleClick.bind(e)),t.setDefaultHandler("tripleclick",this.onTripleClick.bind(e)),t.setDefaultHandler("quadclick",this.onQuadClick.bind(e)),t.setDefaultHandler("mousewheel",this.onMouseWheel.bind(e));var n=["select","startSelect","selectEnd","selectAllEnd","selectByWordsEnd","selectByLinesEnd","dragWait","dragWaitEnd","focusWait"];n.forEach(function(t){e[t]=this[t]},this),e.selectByLines=this.extendSelectionBy.bind(e,"getLineRange"),e.selectByWords=this.extendSelectionBy.bind(e,"getWordRange")}function s(e,t,n,r){return Math.sqrt(Math.pow(n-e,2)+Math.pow(r-t,2))}function l(e,t){if(e.start.row==e.end.row)var n=2*t.column-e.start.column-e.end.column;else if(e.start.row!=e.end.row-1||e.start.column||e.end.column)n=2*t.row-e.start.row-e.end.row;else var n=t.column-4;return n<0?{cursor:e.start,anchor:e.end}:{cursor:e.end,anchor:e.start}}(function(){this.onMouseDown=function(e){var t=e.inSelection(),n=e.getDocumentPosition();this.mousedownEvent=e;var i=this.editor,o=e.getButton();if(0!==o){var a=i.getSelectionRange(),s=a.isEmpty();return(s||1==o)&&i.selection.moveToPosition(n),void(2==o&&(i.textInput.onContextMenu(e.domEvent),r.isMozilla||e.preventDefault()))}return this.mousedownEvent.time=Date.now(),!t||i.isFocused()||(i.focus(),!this.$focusTimeout||this.$clickSelection||i.inMultiSelectMode)?(this.captureMouse(e),this.startSelect(n,e.domEvent._clicks>1),e.preventDefault()):(this.setState("focusWait"),void this.captureMouse(e))},this.startSelect=function(e,t){e=e||this.editor.renderer.screenToTextCoordinates(this.x,this.y);var n=this.editor;this.mousedownEvent&&(this.mousedownEvent.getShiftKey()?n.selection.selectToPosition(e):t||n.selection.moveToPosition(e),t||this.select(),n.renderer.scroller.setCapture&&n.renderer.scroller.setCapture(),n.setStyle("ace_selecting"),this.setState("select"))},this.select=function(){var e,t=this.editor,n=t.renderer.screenToTextCoordinates(this.x,this.y);if(this.$clickSelection){var r=this.$clickSelection.comparePoint(n);if(-1==r)e=this.$clickSelection.end;else if(1==r)e=this.$clickSelection.start;else{var i=l(this.$clickSelection,n);n=i.cursor,e=i.anchor}t.selection.setSelectionAnchor(e.row,e.column)}t.selection.selectToPosition(n),t.renderer.scrollCursorIntoView()},this.extendSelectionBy=function(e){var t,n=this.editor,r=n.renderer.screenToTextCoordinates(this.x,this.y),i=n.selection[e](r.row,r.column);if(this.$clickSelection){var o=this.$clickSelection.comparePoint(i.start),a=this.$clickSelection.comparePoint(i.end);if(-1==o&&a<=0)t=this.$clickSelection.end,i.end.row==r.row&&i.end.column==r.column||(r=i.start);else if(1==a&&o>=0)t=this.$clickSelection.start,i.start.row==r.row&&i.start.column==r.column||(r=i.end);else if(-1==o&&1==a)r=i.end,t=i.start;else{var s=l(this.$clickSelection,r);r=s.cursor,t=s.anchor}n.selection.setSelectionAnchor(t.row,t.column)}n.selection.selectToPosition(r),n.renderer.scrollCursorIntoView()},this.selectEnd=this.selectAllEnd=this.selectByWordsEnd=this.selectByLinesEnd=function(){this.$clickSelection=null,this.editor.unsetStyle("ace_selecting"),this.editor.renderer.scroller.releaseCapture&&this.editor.renderer.scroller.releaseCapture()},this.focusWait=function(){var e=s(this.mousedownEvent.x,this.mousedownEvent.y,this.x,this.y),t=Date.now();(e>i||t-this.mousedownEvent.time>this.$focusTimeout)&&this.startSelect(this.mousedownEvent.getDocumentPosition())},this.onDoubleClick=function(e){var t=e.getDocumentPosition(),n=this.editor,r=n.session,i=r.getBracketRange(t);i?(i.isEmpty()&&(i.start.column--,i.end.column++),this.setState("select")):(i=n.selection.getWordRange(t.row,t.column),this.setState("selectByWords")),this.$clickSelection=i,this.select()},this.onTripleClick=function(e){var t=e.getDocumentPosition(),n=this.editor;this.setState("selectByLines");var r=n.getSelectionRange();r.isMultiLine()&&r.contains(t.row,t.column)?(this.$clickSelection=n.selection.getLineRange(r.start.row),this.$clickSelection.end=n.selection.getLineRange(r.end.row).end):this.$clickSelection=n.selection.getLineRange(t.row),this.select()},this.onQuadClick=function(e){var t=this.editor;t.selectAll(),this.$clickSelection=t.getSelectionRange(),this.setState("selectAll")},this.onMouseWheel=function(e){if(!e.getAccelKey()){e.getShiftKey()&&e.wheelY&&!e.wheelX&&(e.wheelX=e.wheelY,e.wheelY=0);var t=this.editor;this.$lastScroll||(this.$lastScroll={t:0,vx:0,vy:0,allowed:0});var n=this.$lastScroll,r=e.domEvent.timeStamp,i=r-n.t,a=i?e.wheelX/i:n.vx,s=i?e.wheelY/i:n.vy;i=1&&t.renderer.isScrollableBy(e.wheelX*e.speed,0)&&(c=!0),l<=1&&t.renderer.isScrollableBy(0,e.wheelY*e.speed)&&(c=!0),c)n.allowed=r;else if(r-n.alloweda.session.documentToScreenRow(u.row,u.column))return h()}if(i!=r)if(i=r.text.join("
"),c.setHtml(i),c.show(),a._signal("showGutterTooltip",c),a.on("mousewheel",h),e.$tooltipFollowsMouse)d(n);else{var f=n.domEvent.target,p=f.getBoundingClientRect(),m=c.getElement().style;m.left=p.right+"px",m.top=p.bottom+"px"}}function h(){t&&(t=clearTimeout(t)),i&&(c.hide(),i=null,a._signal("hideGutterTooltip",c),a.off("mousewheel",h))}function d(e){c.setPosition(e.x,e.y)}e.editor.setDefaultHandler("guttermousedown",function(t){if(a.isFocused()&&0==t.getButton()){var n=s.getRegion(t);if("foldWidgets"!=n){var r=t.getDocumentPosition().row,i=a.session.selection;if(t.getShiftKey())i.selectTo(r,0);else{if(2==t.domEvent.detail)return a.selectAll(),t.preventDefault();e.$clickSelection=a.selection.getLineRange(r)}return e.setState("selectByLines"),e.captureMouse(t),t.preventDefault()}}}),e.editor.setDefaultHandler("guttermousemove",function(o){var a=o.domEvent.target||o.domEvent.srcElement;if(r.hasCssClass(a,"ace_fold-widget"))return h();i&&e.$tooltipFollowsMouse&&d(o),n=o,t||(t=setTimeout(function(){t=null,n&&!e.isMousePressed?u():h()},50))}),o.addListener(a.renderer.$gutter,"mouseout",function(e){n=null,i&&!t&&(t=setTimeout(function(){t=null,h()},50))},a),a.on("changeSession",h)}function l(e){a.call(this,e)}i.inherits(l,a),function(){this.setPosition=function(e,t){var n=window.innerWidth||document.documentElement.clientWidth,r=window.innerHeight||document.documentElement.clientHeight,i=this.getWidth(),o=this.getHeight();e+=15,t+=15,e+i>n&&(e-=e+i-n),t+o>r&&(t-=20+o),a.prototype.setPosition.call(this,e,t)}}.call(l.prototype),t.GutterHandler=s}),ace.define("ace/mouse/mouse_event",["require","exports","module","ace/lib/event","ace/lib/useragent"],function(e,t,n){"use strict";var r=e("../lib/event"),i=e("../lib/useragent"),o=t.MouseEvent=function(e,t){this.domEvent=e,this.editor=t,this.x=this.clientX=e.clientX,this.y=this.clientY=e.clientY,this.$pos=null,this.$inSelection=null,this.propagationStopped=!1,this.defaultPrevented=!1};(function(){this.stopPropagation=function(){r.stopPropagation(this.domEvent),this.propagationStopped=!0},this.preventDefault=function(){r.preventDefault(this.domEvent),this.defaultPrevented=!0},this.stop=function(){this.stopPropagation(),this.preventDefault()},this.getDocumentPosition=function(){return this.$pos?this.$pos:(this.$pos=this.editor.renderer.screenToTextCoordinates(this.clientX,this.clientY),this.$pos)},this.inSelection=function(){if(null!==this.$inSelection)return this.$inSelection;var e=this.editor,t=e.getSelectionRange();if(t.isEmpty())this.$inSelection=!1;else{var n=this.getDocumentPosition();this.$inSelection=t.contains(n.row,n.column)}return this.$inSelection},this.getButton=function(){return r.getButton(this.domEvent)},this.getShiftKey=function(){return this.domEvent.shiftKey},this.getAccelKey=i.isMac?function(){return this.domEvent.metaKey}:function(){return this.domEvent.ctrlKey}}).call(o.prototype)}),ace.define("ace/mouse/dragdrop_handler",["require","exports","module","ace/lib/dom","ace/lib/event","ace/lib/useragent"],function(e,t,n){"use strict";var r=e("../lib/dom"),i=e("../lib/event"),o=e("../lib/useragent"),a=200,s=200,l=5;function c(e){var t=e.editor,n=r.createElement("div");n.style.cssText="top:-100px;position:absolute;z-index:2147483647;opacity:0.5",n.textContent="\xa0";var c=["dragWait","dragWaitEnd","startDrag","dragReadyEnd","onMouseDrag"];c.forEach(function(t){e[t]=this[t]},this),t.on("mousedown",this.onMouseDown.bind(e));var h,d,f,p,m,g,v,y,b,w,x,_=t.container,S=0;function C(e,n){var r=Date.now(),i=!n||e.row!=n.row,o=!n||e.column!=n.column;if(!w||i||o)t.moveCursorToPosition(e),w=r,x={x:d,y:f};else{var a=u(x.x,x.y,d,f);a>l?w=null:r-w>=s&&(t.renderer.scrollCursorIntoView(),w=null)}}function E(e,n){var r=Date.now(),i=t.renderer.layerConfig.lineHeight,o=t.renderer.layerConfig.characterWidth,s=t.renderer.scroller.getBoundingClientRect(),l={x:{left:d-s.left,right:s.right-d},y:{top:f-s.top,bottom:s.bottom-f}},c=Math.min(l.x.left,l.x.right),u=Math.min(l.y.top,l.y.bottom),h={row:e.row,column:e.column};c/o<=2&&(h.column+=l.x.left=a&&t.renderer.scrollCursorIntoView(h):b=r:b=null}function k(){var e=g;g=t.renderer.screenToTextCoordinates(d,f),C(g,e),E(g,e)}function O(){m=t.selection.toOrientedRange(),h=t.session.addMarker(m,"ace_selection",t.getSelectionStyle()),t.clearSelection(),t.isFocused()&&t.renderer.$cursorLayer.setBlinking(!1),clearInterval(p),k(),p=setInterval(k,20),S=0,i.addListener(document,"mousemove",M)}function T(){clearInterval(p),t.session.removeMarker(h),h=null,t.selection.fromOrientedRange(m),t.isFocused()&&!y&&t.$resetCursorStyle(),m=null,g=null,S=0,b=null,w=null,i.removeListener(document,"mousemove",M)}this.onDragStart=function(e){if(this.cancelDrag||!_.draggable){var r=this;return setTimeout(function(){r.startSelect(),r.captureMouse(e)},0),e.preventDefault()}m=t.getSelectionRange();var i=e.dataTransfer;i.effectAllowed=t.getReadOnly()?"copy":"copyMove",t.container.appendChild(n),i.setDragImage&&i.setDragImage(n,0,0),setTimeout(function(){t.container.removeChild(n)}),i.clearData(),i.setData("Text",t.session.getTextRange()),y=!0,this.setState("drag")},this.onDragEnd=function(e){if(_.draggable=!1,y=!1,this.setState(null),!t.getReadOnly()){var n=e.dataTransfer.dropEffect;v||"move"!=n||t.session.remove(t.getSelectionRange()),t.$resetCursorStyle()}this.editor.unsetStyle("ace_dragging"),this.editor.renderer.setCursorStyle("")},this.onDragEnter=function(e){if(!t.getReadOnly()&&P(e.dataTransfer))return d=e.clientX,f=e.clientY,h||O(),S++,e.dataTransfer.dropEffect=v=R(e),i.preventDefault(e)},this.onDragOver=function(e){if(!t.getReadOnly()&&P(e.dataTransfer))return d=e.clientX,f=e.clientY,h||(O(),S++),null!==A&&(A=null),e.dataTransfer.dropEffect=v=R(e),i.preventDefault(e)},this.onDragLeave=function(e){if(S--,S<=0&&h)return T(),v=null,i.preventDefault(e)},this.onDrop=function(e){if(g){var n=e.dataTransfer;if(y)switch(v){case"move":m=m.contains(g.row,g.column)?{start:g,end:g}:t.moveText(m,g);break;case"copy":m=t.moveText(m,g,!0);break}else{var r=n.getData("Text");m={start:g,end:t.session.insert(g,r)},t.focus(),v=null}return T(),i.preventDefault(e)}},i.addListener(_,"dragstart",this.onDragStart.bind(e),t),i.addListener(_,"dragend",this.onDragEnd.bind(e),t),i.addListener(_,"dragenter",this.onDragEnter.bind(e),t),i.addListener(_,"dragover",this.onDragOver.bind(e),t),i.addListener(_,"dragleave",this.onDragLeave.bind(e),t),i.addListener(_,"drop",this.onDrop.bind(e),t);var A=null;function M(){null==A&&(A=setTimeout(function(){null!=A&&h&&T()},20))}function P(e){var t=e.types;return!t||Array.prototype.some.call(t,function(e){return"text/plain"==e||"Text"==e})}function R(e){var t=["copy","copymove","all","uninitialized"],n=["move","copymove","linkmove","all","uninitialized"],r=o.isMac?e.altKey:e.ctrlKey,i="uninitialized";try{i=e.dataTransfer.effectAllowed.toLowerCase()}catch(e){}var a="none";return r&&t.indexOf(i)>=0?a="copy":n.indexOf(i)>=0?a="move":t.indexOf(i)>=0&&(a="copy"),a}}function u(e,t,n,r){return Math.sqrt(Math.pow(n-e,2)+Math.pow(r-t,2))}(function(){this.dragWait=function(){var e=Date.now()-this.mousedownEvent.time;e>this.editor.getDragDelay()&&this.startDrag()},this.dragWaitEnd=function(){var e=this.editor.container;e.draggable=!1,this.startSelect(this.mousedownEvent.getDocumentPosition()),this.selectEnd()},this.dragReadyEnd=function(e){this.editor.$resetCursorStyle(),this.editor.unsetStyle("ace_dragging"),this.editor.renderer.setCursorStyle(""),this.dragWaitEnd()},this.startDrag=function(){this.cancelDrag=!1;var e=this.editor,t=e.container;t.draggable=!0,e.renderer.$cursorLayer.setBlinking(!1),e.setStyle("ace_dragging");var n=o.isWin?"default":"move";e.renderer.setCursorStyle(n),this.setState("dragReady")},this.onMouseDrag=function(e){var t=this.editor.container;if(o.isIE&&"dragReady"==this.state){var n=u(this.mousedownEvent.x,this.mousedownEvent.y,this.x,this.y);n>3&&t.dragDrop()}if("dragWait"===this.state){n=u(this.mousedownEvent.x,this.mousedownEvent.y,this.x,this.y);n>0&&(t.draggable=!1,this.startSelect(this.mousedownEvent.getDocumentPosition()))}},this.onMouseDown=function(e){if(this.$dragEnabled){this.mousedownEvent=e;var t=this.editor,n=e.inSelection(),r=e.getButton(),i=e.domEvent.detail||1;if(1===i&&0===r&&n){if(e.editor.inMultiSelectMode&&(e.getAccelKey()||e.getShiftKey()))return;this.mousedownEvent.time=Date.now();var a=e.domEvent.target||e.domEvent.srcElement;if("unselectable"in a&&(a.unselectable="on"),t.getDragDelay()){if(o.isWebKit){this.cancelDrag=!0;var s=t.container;s.draggable=!0}this.setState("dragWait")}else this.startDrag();this.captureMouse(e,this.onMouseDrag.bind(this)),e.defaultPrevented=!0}}}}).call(c.prototype),t.DragdropHandler=c}),ace.define("ace/mouse/touch_handler",["require","exports","module","ace/mouse/mouse_event","ace/lib/event","ace/lib/dom"],function(e,t,n){"use strict";var r=e("./mouse_event").MouseEvent,i=e("../lib/event"),o=e("../lib/dom");t.addTouchListeners=function(e,t){var n,a,s,l,c,u,h,d,f,p="scroll",m=0,g=0,v=0,y=0;function b(){var e=window.navigator&&window.navigator.clipboard,n=!1,r=function(){var r=t.getCopyText(),i=t.session.getUndoManager().hasUndo();f.replaceChild(o.buildDom(n?["span",!r&&["span",{class:"ace_mobile-button",action:"selectall"},"Select All"],r&&["span",{class:"ace_mobile-button",action:"copy"},"Copy"],r&&["span",{class:"ace_mobile-button",action:"cut"},"Cut"],e&&["span",{class:"ace_mobile-button",action:"paste"},"Paste"],i&&["span",{class:"ace_mobile-button",action:"undo"},"Undo"],["span",{class:"ace_mobile-button",action:"find"},"Find"],["span",{class:"ace_mobile-button",action:"openCommandPallete"},"Pallete"]]:["span"]),f.firstChild)},i=function(i){var o=i.target.getAttribute("action");if("more"==o||!n)return n=!n,r();"paste"==o?e.readText().then(function(e){t.execCommand(o,e)}):o&&("cut"!=o&&"copy"!=o||(e?e.writeText(t.getCopyText()):document.execCommand("copy")),t.execCommand(o)),f.firstChild.style.display="none",n=!1,"openCommandPallete"!=o&&t.focus()};f=o.buildDom(["div",{class:"ace_mobile-menu",ontouchstart:function(e){p="menu",e.stopPropagation(),e.preventDefault(),t.textInput.focus()},ontouchend:function(e){e.stopPropagation(),e.preventDefault(),i(e)},onclick:i},["span"],["span",{class:"ace_mobile-button",action:"more"},"..."]],t.container)}function w(){f||b();var e=t.selection.cursor,n=t.renderer.textToScreenCoordinates(e.row,e.column),r=t.renderer.textToScreenCoordinates(0,0).pageX,i=t.renderer.scrollLeft,o=t.container.getBoundingClientRect();f.style.top=n.pageY-o.top-3+"px",n.pageX-o.left=2?t.selection.getLineRange(h.row):t.session.getBracketRange(h);e&&!e.isEmpty()?t.selection.setRange(e):t.selection.selectWord(),p="wait"}function C(){m+=60,u=setInterval(function(){m--<=0&&(clearInterval(u),u=null),Math.abs(v)<.01&&(v=0),Math.abs(y)<.01&&(y=0),m<20&&(v*=.9),m<20&&(y*=.9);var e=t.session.getScrollTop();t.renderer.scrollBy(10*v,10*y),e==t.session.getScrollTop()&&(m=0)},10)}i.addListener(e,"contextmenu",function(e){if(d){var n=t.textInput.getElement();n.focus()}},t),i.addListener(e,"touchstart",function(e){var i=e.touches;if(c||i.length>1)return clearTimeout(c),c=null,s=-1,void(p="zoom");d=t.$mouseHandler.isMousePressed=!0;var o=t.renderer.layerConfig.lineHeight,u=t.renderer.layerConfig.lineHeight,f=e.timeStamp;l=f;var b=i[0],w=b.clientX,x=b.clientY;Math.abs(n-w)+Math.abs(a-x)>o&&(s=-1),n=e.clientX=w,a=e.clientY=x,v=y=0;var C=new r(e,t);if(h=C.getDocumentPosition(),f-s<500&&1==i.length&&!m)g++,e.preventDefault(),e.button=0,S();else{g=0;var E=t.selection.cursor,k=t.selection.isEmpty()?E:t.selection.anchor,O=t.renderer.$cursorLayer.getPixelPosition(E,!0),T=t.renderer.$cursorLayer.getPixelPosition(k,!0),A=t.renderer.scroller.getBoundingClientRect(),M=t.renderer.layerConfig.offset,P=t.renderer.scrollLeft,R=function(e,t){return e/=u,t=t/o-.75,e*e+t*t};if(e.clientXD?"cursor":"anchor"),p=D<3.5?"anchor":L<3.5?"cursor":"scroll",c=setTimeout(_,450)}s=f},t),i.addListener(e,"touchend",function(e){d=t.$mouseHandler.isMousePressed=!1,u&&clearInterval(u),"zoom"==p?(p="",m=0):c?(t.selection.moveToPosition(h),m=0,w()):"scroll"==p?(C(),x()):w(),clearTimeout(c),c=null},t),i.addListener(e,"touchmove",function(e){c&&(clearTimeout(c),c=null);var i=e.touches;if(!(i.length>1||"zoom"==p)){var o=i[0],s=n-o.clientX,u=a-o.clientY;if("wait"==p){if(!(s*s+u*u>4))return e.preventDefault();p="cursor"}n=o.clientX,a=o.clientY,e.clientX=o.clientX,e.clientY=o.clientY;var h=e.timeStamp,d=h-l;if(l=h,"scroll"==p){var f=new r(e,t);f.speed=1,f.wheelX=s,f.wheelY=u,10*Math.abs(s)1&&(i=n[n.length-2]);var a=c[t+"Path"];return null==a?a=c.basePath:"/"==r&&(t=r=""),a&&"/"!=a.slice(-1)&&(a+="/"),a+t+r+i+this.get("suffix")},t.setModuleUrl=function(e,t){return c.$moduleUrls[e]=t},t.$loading={},t.loadModule=function(n,r){var i,a;Array.isArray(n)&&(a=n[0],n=n[1]);try{i=e(n)}catch(e){}if(i&&!t.$loading[n])return r&&r(i);if(t.$loading[n]||(t.$loading[n]=[]),t.$loading[n].push(r),!(t.$loading[n].length>1)){var s=function(){e([n],function(e){t._emit("load.module",{name:n,module:e});var r=t.$loading[n];t.$loading[n]=null,r.forEach(function(t){t&&t(e)})})};if(!t.get("packaged"))return s();o.loadScript(t.moduleUrl(n,a),s),u()}};var u=function(){c.basePath||c.workerPath||c.modePath||c.themePath||Object.keys(c.$moduleUrls).length||(console.error("Unable to infer path to ace from script src,","use ace.config.set('basePath', 'path') to enable dynamic loading of modes and themes","or with webpack use ace/webpack-resolver"),u=function(){})};function h(i){if(l&&l.document){c.packaged=i||e.packaged||r.packaged||l.define&&n("B9Yq").packaged;for(var o={},a="",s=document.currentScript||document._currentScript,u=s&&s.ownerDocument||document,h=u.getElementsByTagName("script"),f=0;f0)if(16==g){for(_=x;_-1){for(_=x;_=0;E--){if(u[E]!=w)break;t[E]=r}}}function D(e,t,n){if(!(i=e){o=d+1;while(o=e)o++;for(s=d,l=o-1;s=t.length||(l=n[i-1])!=p&&l!=m||(c=t[i+1])!=p&&c!=m?g:(o&&(c=m),c==l?c:g);case _:return l=i>0?n[i-1]:v,l==p&&i+10&&n[i-1]==p)return p;if(o)return g;h=i+1,u=t.length;while(h=1425&&R<=2303||64286==R;if(l=t[h],L&&(l==f||l==b))return f}return i<1||(l=t[i-1])==v?g:n[i-1];case v:return o=!1,a=!0,r;case y:return s=!0,g;case E:case k:case T:case A:case O:o=!1;case M:return g}}function N(e){var t=e.charCodeAt(0),n=t>>8;return 0==n?t>191?d:P[t]:5==n?/[\u0591-\u05f4]/.test(e)?f:d:6==n?/[\u0610-\u061a\u064b-\u065f\u06d6-\u06e4\u06e7-\u06ed]/.test(e)?C:/[\u0660-\u0669\u066b-\u066c]/.test(e)?m:1642==t?S:/[\u06f0-\u06f9]/.test(e)?p:b:32==n&&t<=8287?R[255&t]:254==n&&t>=65136?b:g}t.L=d,t.R=f,t.EN=p,t.ON_R=3,t.AN=4,t.R_H=5,t.B=6,t.RLE=7,t.DOT="\xb7",t.doBidiReorder=function(e,n,i){if(e.length<2)return{};var o=e.split(""),a=new Array(o.length),s=new Array(o.length),l=[];r=i?h:u,L(o,l,o.length,n);for(var c=0;cb&&n[c]0&&"\u0644"===o[c-1]&&/\u0622|\u0623|\u0625|\u0627/.test(o[c])&&(l[c-1]=l[c]=t.R_H,c++);o[o.length-1]===t.DOT&&(l[o.length-1]=t.B),"\u202b"===o[0]&&(l[0]=t.RLE);for(c=0;c=0&&(e=this.session.$docRowCache[n])}return e},this.getSplitIndex=function(){var e=0,t=this.session.$screenRowCache;if(t.length){var n,r=this.session.$getRowCacheIndex(t,this.currentRow);while(this.currentRow-e>0){if(n=this.session.$getRowCacheIndex(t,this.currentRow-e-1),n!==r)break;r=n,e++}}else e=this.currentRow;return e},this.updateRowLine=function(e,t){void 0===e&&(e=this.getDocumentRow());var n=e===this.session.getLength()-1,o=n?this.EOF:this.EOL;if(this.wrapIndent=0,this.line=this.session.getLine(e),this.isRtlDir=this.$isRtl||this.line.charAt(0)===this.RLE,this.session.$useWrapMode){var a=this.session.$wrapData[e];a&&(void 0===t&&(t=this.getSplitIndex()),t>0&&a.length?(this.wrapIndent=a.indent,this.wrapOffset=this.wrapIndent*this.charWidths[r.L],this.line=tt?this.session.getOverwrite()?e:e-1:t,i=r.getVisualFromLogicalIdx(n,this.bidiMap),o=this.bidiMap.bidiLevels,a=0;!this.session.getOverwrite()&&e<=t&&o[i]%2!==0&&i++;for(var s=0;st&&o[i]%2===0&&(a+=this.charWidths[o[i]]),this.wrapIndent&&(a+=this.isRtlDir?-1*this.wrapOffset:this.wrapOffset),this.isRtlDir&&(a+=this.rtlLineOffset),a},this.getSelections=function(e,t){var n,r=this.bidiMap,i=r.bidiLevels,o=[],a=0,s=Math.min(e,t)-this.wrapIndent,l=Math.max(e,t)-this.wrapIndent,c=!1,u=!1,h=0;this.wrapIndent&&(a+=this.isRtlDir?-1*this.wrapOffset:this.wrapOffset);for(var d,f=0;f=s&&dn+o/2){if(n+=o,r===i.length-1){o=0;break}o=this.charWidths[i[++r]]}return r>0&&i[r-1]%2!==0&&i[r]%2===0?(e0&&i[r-1]%2===0&&i[r]%2!==0?t=1+(e>n?this.bidiMap.logicalFromVisual[r]:this.bidiMap.logicalFromVisual[r-1]):this.isRtlDir&&r===i.length-1&&0===o&&i[r-1]%2===0||!this.isRtlDir&&0===r&&i[r]%2!==0?t=1+this.bidiMap.logicalFromVisual[r]:(r>0&&i[r-1]%2!==0&&0!==o&&r--,t=this.bidiMap.logicalFromVisual[r]),0===t&&this.isRtlDir&&t++,t+this.wrapIndent}}).call(a.prototype),t.BidiHandler=a}),ace.define("ace/selection",["require","exports","module","ace/lib/oop","ace/lib/lang","ace/lib/event_emitter","ace/range"],function(e,t,n){"use strict";var r=e("./lib/oop"),i=e("./lib/lang"),o=e("./lib/event_emitter").EventEmitter,a=e("./range").Range,s=function(e){this.session=e,this.doc=e.getDocument(),this.clearSelection(),this.cursor=this.lead=this.doc.createAnchor(0,0),this.anchor=this.doc.createAnchor(0,0),this.$silent=!1;var t=this;this.cursor.on("change",function(e){t.$cursorChanged=!0,t.$silent||t._emit("changeCursor"),t.$isEmpty||t.$silent||t._emit("changeSelection"),t.$keepDesiredColumnOnChange||e.old.column==e.value.column||(t.$desiredColumn=null)}),this.anchor.on("change",function(){t.$anchorChanged=!0,t.$isEmpty||t.$silent||t._emit("changeSelection")})};(function(){r.implement(this,o),this.isEmpty=function(){return this.$isEmpty||this.anchor.row==this.lead.row&&this.anchor.column==this.lead.column},this.isMultiLine=function(){return!this.$isEmpty&&this.anchor.row!=this.cursor.row},this.getCursor=function(){return this.lead.getPosition()},this.setSelectionAnchor=function(e,t){this.$isEmpty=!1,this.anchor.setPosition(e,t)},this.getAnchor=this.getSelectionAnchor=function(){return this.$isEmpty?this.getSelectionLead():this.anchor.getPosition()},this.getSelectionLead=function(){return this.lead.getPosition()},this.isBackwards=function(){var e=this.anchor,t=this.lead;return e.row>t.row||e.row==t.row&&e.column>t.column},this.getRange=function(){var e=this.anchor,t=this.lead;return this.$isEmpty?a.fromPoints(t,t):this.isBackwards()?a.fromPoints(t,e):a.fromPoints(e,t)},this.clearSelection=function(){this.$isEmpty||(this.$isEmpty=!0,this._emit("changeSelection"))},this.selectAll=function(){this.$setSelection(0,0,Number.MAX_VALUE,Number.MAX_VALUE)},this.setRange=this.setSelectionRange=function(e,t){var n=t?e.end:e.start,r=t?e.start:e.end;this.$setSelection(n.row,n.column,r.row,r.column)},this.$setSelection=function(e,t,n,r){if(!this.$silent){var i=this.$isEmpty,o=this.inMultiSelectMode;this.$silent=!0,this.$cursorChanged=this.$anchorChanged=!1,this.anchor.setPosition(e,t),this.cursor.setPosition(n,r),this.$isEmpty=!a.comparePoints(this.anchor,this.cursor),this.$silent=!1,this.$cursorChanged&&this._emit("changeCursor"),(this.$cursorChanged||this.$anchorChanged||i!=this.$isEmpty||o)&&this._emit("changeSelection")}},this.$moveSelection=function(e){var t=this.lead;this.$isEmpty&&this.setSelectionAnchor(t.row,t.column),e.call(this)},this.selectTo=function(e,t){this.$moveSelection(function(){this.moveCursorTo(e,t)})},this.selectToPosition=function(e){this.$moveSelection(function(){this.moveCursorToPosition(e)})},this.moveTo=function(e,t){this.clearSelection(),this.moveCursorTo(e,t)},this.moveToPosition=function(e){this.clearSelection(),this.moveCursorToPosition(e)},this.selectUp=function(){this.$moveSelection(this.moveCursorUp)},this.selectDown=function(){this.$moveSelection(this.moveCursorDown)},this.selectRight=function(){this.$moveSelection(this.moveCursorRight)},this.selectLeft=function(){this.$moveSelection(this.moveCursorLeft)},this.selectLineStart=function(){this.$moveSelection(this.moveCursorLineStart)},this.selectLineEnd=function(){this.$moveSelection(this.moveCursorLineEnd)},this.selectFileEnd=function(){this.$moveSelection(this.moveCursorFileEnd)},this.selectFileStart=function(){this.$moveSelection(this.moveCursorFileStart)},this.selectWordRight=function(){this.$moveSelection(this.moveCursorWordRight)},this.selectWordLeft=function(){this.$moveSelection(this.moveCursorWordLeft)},this.getWordRange=function(e,t){if("undefined"==typeof t){var n=e||this.lead;e=n.row,t=n.column}return this.session.getWordRange(e,t)},this.selectWord=function(){this.setSelectionRange(this.getWordRange())},this.selectAWord=function(){var e=this.getCursor(),t=this.session.getAWordRange(e.row,e.column);this.setSelectionRange(t)},this.getLineRange=function(e,t){var n,r="number"==typeof e?e:this.lead.row,i=this.session.getFoldLine(r);return i?(r=i.start.row,n=i.end.row):n=r,!0===t?new a(r,0,n,this.session.getLine(n).length):new a(r,0,n+1,0)},this.selectLine=function(){this.setSelectionRange(this.getLineRange())},this.moveCursorUp=function(){this.moveCursorBy(-1,0)},this.moveCursorDown=function(){this.moveCursorBy(1,0)},this.wouldMoveIntoSoftTab=function(e,t,n){var r=e.column,i=e.column+t;return n<0&&(r=e.column-t,i=e.column),this.session.isTabStop(e)&&this.doc.getLine(e.row).slice(r,i).split(" ").length-1==t},this.moveCursorLeft=function(){var e,t=this.lead.getPosition();if(e=this.session.getFoldAt(t.row,t.column,-1))this.moveCursorTo(e.start.row,e.start.column);else if(0===t.column)t.row>0&&this.moveCursorTo(t.row-1,this.doc.getLine(t.row-1).length);else{var n=this.session.getTabSize();this.wouldMoveIntoSoftTab(t,n,-1)&&!this.session.getNavigateWithinSoftTabs()?this.moveCursorBy(0,-n):this.moveCursorBy(0,-1)}},this.moveCursorRight=function(){var e,t=this.lead.getPosition();if(e=this.session.getFoldAt(t.row,t.column,1))this.moveCursorTo(e.end.row,e.end.column);else if(this.lead.column==this.doc.getLine(this.lead.row).length)this.lead.row0&&(t.column=r)}}this.moveCursorTo(t.row,t.column)},this.moveCursorFileEnd=function(){var e=this.doc.getLength()-1,t=this.doc.getLine(e).length;this.moveCursorTo(e,t)},this.moveCursorFileStart=function(){this.moveCursorTo(0,0)},this.moveCursorLongWordRight=function(){var e=this.lead.row,t=this.lead.column,n=this.doc.getLine(e),r=n.substring(t);this.session.nonTokenRe.lastIndex=0,this.session.tokenRe.lastIndex=0;var i=this.session.getFoldAt(e,t,1);if(i)this.moveCursorTo(i.end.row,i.end.column);else{if(this.session.nonTokenRe.exec(r)&&(t+=this.session.nonTokenRe.lastIndex,this.session.nonTokenRe.lastIndex=0,r=n.substring(t)),t>=n.length)return this.moveCursorTo(e,n.length),this.moveCursorRight(),void(e0&&this.moveCursorWordLeft());this.session.tokenRe.exec(o)&&(n-=this.session.tokenRe.lastIndex,this.session.tokenRe.lastIndex=0),this.moveCursorTo(t,n)}},this.$shortWordEndIndex=function(e){var t,n=0,r=/\s/,i=this.session.tokenRe;if(i.lastIndex=0,this.session.tokenRe.exec(e))n=this.session.tokenRe.lastIndex;else{while((t=e[n])&&r.test(t))n++;if(n<1){i.lastIndex=0;while((t=e[n])&&!i.test(t))if(i.lastIndex=0,n++,r.test(t)){if(n>2){n--;break}while((t=e[n])&&r.test(t))n++;if(n>2)break}}}return i.lastIndex=0,n},this.moveCursorShortWordRight=function(){var e=this.lead.row,t=this.lead.column,n=this.doc.getLine(e),r=n.substring(t),i=this.session.getFoldAt(e,t,1);if(i)return this.moveCursorTo(i.end.row,i.end.column);if(t==n.length){var o=this.doc.getLength();do{e++,r=this.doc.getLine(e)}while(e0&&/^\s*$/.test(r));n=r.length,/\s+$/.test(r)||(r="")}var o=i.stringReverse(r),a=this.$shortWordEndIndex(o);return this.moveCursorTo(t,n-a)},this.moveCursorWordRight=function(){this.session.$selectLongWords?this.moveCursorLongWordRight():this.moveCursorShortWordRight()},this.moveCursorWordLeft=function(){this.session.$selectLongWords?this.moveCursorLongWordLeft():this.moveCursorShortWordLeft()},this.moveCursorBy=function(e,t){var n,r=this.session.documentToScreenPosition(this.lead.row,this.lead.column);if(0===t&&(0!==e&&(this.session.$bidiHandler.isBidiRow(r.row,this.lead.row)?(n=this.session.$bidiHandler.getPosLeft(r.column),r.column=Math.round(n/this.session.$bidiHandler.charWidths[0])):n=r.column*this.session.$bidiHandler.charWidths[0]),this.$desiredColumn?r.column=this.$desiredColumn:this.$desiredColumn=r.column),0!=e&&this.session.lineWidgets&&this.session.lineWidgets[this.lead.row]){var i=this.session.lineWidgets[this.lead.row];e<0?e-=i.rowsAbove||0:e>0&&(e+=i.rowCount-(i.rowsAbove||0))}var o=this.session.screenToDocumentPosition(r.row+e,r.column,n);0!==e&&0===t&&o.row===this.lead.row&&(o.column,this.lead.column),this.moveCursorTo(o.row,o.column+t,0===t)},this.moveCursorToPosition=function(e){this.moveCursorTo(e.row,e.column)},this.moveCursorTo=function(e,t,n){var r=this.session.getFoldAt(e,t,1);r&&(e=r.start.row,t=r.start.column),this.$keepDesiredColumnOnChange=!0;var i=this.session.getLine(e);/[\uDC00-\uDFFF]/.test(i.charAt(t))&&i.charAt(t-1)&&(this.lead.row==e&&this.lead.column==t+1?t-=1:t+=1),this.lead.setPosition(e,t),this.$keepDesiredColumnOnChange=!1,n||(this.$desiredColumn=null)},this.moveCursorToScreen=function(e,t,n){var r=this.session.screenToDocumentPosition(e,t);this.moveCursorTo(r.row,r.column,n)},this.detach=function(){this.lead.detach(),this.anchor.detach()},this.fromOrientedRange=function(e){this.setSelectionRange(e,e.cursor==e.start),this.$desiredColumn=e.desiredColumn||this.$desiredColumn},this.toOrientedRange=function(e){var t=this.getRange();return e?(e.start.column=t.start.column,e.start.row=t.start.row,e.end.column=t.end.column,e.end.row=t.end.row):e=t,e.cursor=this.isBackwards()?e.start:e.end,e.desiredColumn=this.$desiredColumn,e},this.getRangeOfMovements=function(e){var t=this.getCursor();try{e(this);var n=this.getCursor();return a.fromPoints(t,n)}catch(e){return a.fromPoints(t,t)}finally{this.moveCursorToPosition(t)}},this.toJSON=function(){if(this.rangeCount)var e=this.ranges.map(function(e){var t=e.clone();return t.isBackwards=e.cursor==e.start,t});else{e=this.getRange();e.isBackwards=this.isBackwards()}return e},this.fromJSON=function(e){if(void 0==e.start){if(this.rangeList&&e.length>1){this.toSingleRange(e[0]);for(var t=e.length;t--;){var n=a.fromPoints(e[t].start,e[t].end);e[t].isBackwards&&(n.cursor=n.start),this.addRange(n,!0)}return}e=e[0]}this.rangeList&&this.toSingleRange(e),this.setSelectionRange(e,e.isBackwards)},this.isEqual=function(e){if((e.length||this.rangeCount)&&e.length!=this.rangeCount)return!1;if(!e.length||!this.ranges)return this.getRange().isEqual(e);for(var t=this.ranges.length;t--;)if(!this.ranges[t].isEqual(e[t]))return!1;return!0}}).call(s.prototype),t.Selection=s}),ace.define("ace/tokenizer",["require","exports","module","ace/config"],function(e,t,n){"use strict";var r=e("./config"),i=2e3,o=function(e){for(var t in this.states=e,this.regExps={},this.matchMappings={},this.states){for(var n=this.states[t],r=[],i=0,o=this.matchMappings[t]={defaultToken:"text"},a="g",s=[],l=0;l1?this.$applyToken:c.token),h>1&&(/\\\d/.test(c.regex)?u=c.regex.replace(/\\([0-9]+)/g,function(e,t){return"\\"+(parseInt(t,10)+i+1)}):(h=1,u=this.removeCapturingGroups(c.regex)),c.splitRegex||"string"==typeof c.token||s.push(c)),o[i]=l,i+=h,r.push(u),c.onMatch||(c.onMatch=null)}}r.length||(o[0]=0,r.push("$")),s.forEach(function(e){e.splitRegex=this.createSplitterRegexp(e.regex,a)},this),this.regExps[t]=new RegExp("("+r.join(")|(")+")|($)",a)}};(function(){this.$setMaxTokenCount=function(e){i=0|e},this.$applyToken=function(e){var t=this.splitRegex.exec(e).slice(1),n=this.token.apply(this,t);if("string"===typeof n)return[{type:n,value:e}];for(var r=[],i=0,o=n.length;iu){var v=e.substring(u,g-m.length);d.type==f?d.value+=v:(d.type&&c.push(d),d={type:f,value:v})}for(var y=0;yi){h>2*e.length&&this.reportError("infinite loop with in ace tokenizer",{startState:t,line:e});while(u1&&n[0]!==r&&n.unshift("#tmp",r),{tokens:c,state:n.length?n:r}},this.reportError=r.reportError}).call(o.prototype),t.Tokenizer=o}),ace.define("ace/mode/text_highlight_rules",["require","exports","module","ace/lib/lang"],function(e,t,n){"use strict";var r=e("../lib/lang"),i=function(){this.$rules={start:[{token:"empty_line",regex:"^$"},{defaultToken:"text"}]}};(function(){this.addRules=function(e,t){if(t)for(var n in e){for(var r=e[n],i=0;i=this.$rowTokens.length){if(this.$row+=1,e||(e=this.$session.getLength()),this.$row>=e)return this.$row=e-1,null;this.$rowTokens=this.$session.getTokens(this.$row),this.$tokenIndex=0}return this.$rowTokens[this.$tokenIndex]},this.getCurrentToken=function(){return this.$rowTokens[this.$tokenIndex]},this.getCurrentTokenRow=function(){return this.$row},this.getCurrentTokenColumn=function(){var e=this.$rowTokens,t=this.$tokenIndex,n=e[t].start;if(void 0!==n)return n;n=0;while(t>0)t-=1,n+=e[t].value.length;return n},this.getCurrentTokenPosition=function(){return{row:this.$row,column:this.getCurrentTokenColumn()}},this.getCurrentTokenRange=function(){var e=this.$rowTokens[this.$tokenIndex],t=this.getCurrentTokenColumn();return new r(this.$row,t,this.$row,t+e.value.length)}}).call(i.prototype),t.TokenIterator=i}),ace.define("ace/mode/behaviour/cstyle",["require","exports","module","ace/lib/oop","ace/mode/behaviour","ace/token_iterator","ace/lib/lang"],function(e,t,n){"use strict";var r,i=e("../../lib/oop"),o=e("../behaviour").Behaviour,a=e("../../token_iterator").TokenIterator,s=e("../../lib/lang"),l=["text","paren.rparen","rparen","paren","punctuation.operator"],c=["text","paren.rparen","rparen","paren","punctuation.operator","comment"],u={},h={'"':'"',"'":"'"},d=function(e){var t=-1;if(e.multiSelect&&(t=e.selection.index,u.rangeCount!=e.multiSelect.rangeCount&&(u={rangeCount:e.multiSelect.rangeCount})),u[t])return r=u[t];r=u[t]={autoInsertedBrackets:0,autoInsertedRow:-1,autoInsertedLineEnd:"",maybeInsertedBrackets:0,maybeInsertedRow:-1,maybeInsertedLineStart:"",maybeInsertedLineEnd:""}},f=function(e,t,n,r){var i=e.end.row-e.start.row;return{text:n+t+r,selection:[0,e.start.column+1,i,e.end.column+(i?0:1)]}},p=function(e){this.add("braces","insertion",function(t,n,i,o,a){var l=i.getCursorPosition(),c=o.doc.getLine(l.row);if("{"==a){d(i);var u=i.getSelectionRange(),h=o.doc.getTextRange(u);if(""!==h&&"{"!==h&&i.getWrapBehavioursEnabled())return f(u,h,"{","}");if(p.isSaneInsertion(i,o))return/[\]\}\)]/.test(c[l.column])||i.inMultiSelectMode||e&&e.braces?(p.recordAutoInsert(i,o,"}"),{text:"{}",selection:[1,1]}):(p.recordMaybeInsert(i,o,"{"),{text:"{",selection:[1,1]})}else if("}"==a){d(i);var m=c.substring(l.column,l.column+1);if("}"==m){var g=o.$findOpeningBracket("}",{column:l.column+1,row:l.row});if(null!==g&&p.isAutoInsertedClosing(l,c,a))return p.popAutoInsertedClosing(),{text:"",selection:[1,1]}}}else{if("\n"==a||"\r\n"==a){d(i);var v="";p.isMaybeInsertedClosing(l,c)&&(v=s.stringRepeat("}",r.maybeInsertedBrackets),p.clearMaybeInsertedClosing());m=c.substring(l.column,l.column+1);if("}"===m){var y=o.findMatchingBracket({row:l.row,column:l.column+1},"}");if(!y)return null;var b=this.$getIndent(o.getLine(y.row))}else{if(!v)return void p.clearMaybeInsertedClosing();b=this.$getIndent(c)}var w=b+o.getTabString();return{text:"\n"+w+"\n"+b+v,selection:[1,w.length,1,w.length]}}p.clearMaybeInsertedClosing()}}),this.add("braces","deletion",function(e,t,n,i,o){var a=i.doc.getTextRange(o);if(!o.isMultiLine()&&"{"==a){d(n);var s=i.doc.getLine(o.start.row),l=s.substring(o.end.column,o.end.column+1);if("}"==l)return o.end.column++,o;r.maybeInsertedBrackets--}}),this.add("parens","insertion",function(e,t,n,r,i){if("("==i){d(n);var o=n.getSelectionRange(),a=r.doc.getTextRange(o);if(""!==a&&n.getWrapBehavioursEnabled())return f(o,a,"(",")");if(p.isSaneInsertion(n,r))return p.recordAutoInsert(n,r,")"),{text:"()",selection:[1,1]}}else if(")"==i){d(n);var s=n.getCursorPosition(),l=r.doc.getLine(s.row),c=l.substring(s.column,s.column+1);if(")"==c){var u=r.$findOpeningBracket(")",{column:s.column+1,row:s.row});if(null!==u&&p.isAutoInsertedClosing(s,l,i))return p.popAutoInsertedClosing(),{text:"",selection:[1,1]}}}}),this.add("parens","deletion",function(e,t,n,r,i){var o=r.doc.getTextRange(i);if(!i.isMultiLine()&&"("==o){d(n);var a=r.doc.getLine(i.start.row),s=a.substring(i.start.column+1,i.start.column+2);if(")"==s)return i.end.column++,i}}),this.add("brackets","insertion",function(e,t,n,r,i){if("["==i){d(n);var o=n.getSelectionRange(),a=r.doc.getTextRange(o);if(""!==a&&n.getWrapBehavioursEnabled())return f(o,a,"[","]");if(p.isSaneInsertion(n,r))return p.recordAutoInsert(n,r,"]"),{text:"[]",selection:[1,1]}}else if("]"==i){d(n);var s=n.getCursorPosition(),l=r.doc.getLine(s.row),c=l.substring(s.column,s.column+1);if("]"==c){var u=r.$findOpeningBracket("]",{column:s.column+1,row:s.row});if(null!==u&&p.isAutoInsertedClosing(s,l,i))return p.popAutoInsertedClosing(),{text:"",selection:[1,1]}}}}),this.add("brackets","deletion",function(e,t,n,r,i){var o=r.doc.getTextRange(i);if(!i.isMultiLine()&&"["==o){d(n);var a=r.doc.getLine(i.start.row),s=a.substring(i.start.column+1,i.start.column+2);if("]"==s)return i.end.column++,i}}),this.add("string_dquotes","insertion",function(e,t,n,r,i){var o=r.$mode.$quotes||h;if(1==i.length&&o[i]){if(this.lineCommentStart&&-1!=this.lineCommentStart.indexOf(i))return;d(n);var a=i,s=n.getSelectionRange(),l=r.doc.getTextRange(s);if(!(""===l||1==l.length&&o[l])&&n.getWrapBehavioursEnabled())return f(s,l,a,a);if(!l){var c=n.getCursorPosition(),u=r.doc.getLine(c.row),p=u.substring(c.column-1,c.column),m=u.substring(c.column,c.column+1),g=r.getTokenAt(c.row,c.column),v=r.getTokenAt(c.row,c.column+1);if("\\"==p&&g&&/escape/.test(g.type))return null;var y,b=g&&/string|escape/.test(g.type),w=!v||/string|escape/.test(v.type);if(m==a)y=b!==w,y&&/string\.end/.test(v.type)&&(y=!1);else{if(b&&!w)return null;if(b&&w)return null;var x=r.$mode.tokenRe;x.lastIndex=0;var _=x.test(p);x.lastIndex=0;var S=x.test(p);if(_||S)return null;if(m&&!/[\s;,.})\]\\]/.test(m))return null;var C=u[c.column-2];if(p==a&&(C==a||x.test(C)))return null;y=!0}return{text:y?a+a:"",selection:[1,1]}}}}),this.add("string_dquotes","deletion",function(e,t,n,r,i){var o=r.$mode.$quotes||h,a=r.doc.getTextRange(i);if(!i.isMultiLine()&&o.hasOwnProperty(a)){d(n);var s=r.doc.getLine(i.start.row),l=s.substring(i.start.column+1,i.start.column+2);if(l==a)return i.end.column++,i}})};p.isSaneInsertion=function(e,t){var n=e.getCursorPosition(),r=new a(t,n.row,n.column);if(!this.$matchTokenType(r.getCurrentToken()||"text",l)){if(/[)}\]]/.test(e.session.getLine(n.row)[n.column]))return!0;var i=new a(t,n.row,n.column+1);if(!this.$matchTokenType(i.getCurrentToken()||"text",l))return!1}return r.stepForward(),r.getCurrentTokenRow()!==n.row||this.$matchTokenType(r.getCurrentToken()||"text",c)},p.$matchTokenType=function(e,t){return t.indexOf(e.type||e)>-1},p.recordAutoInsert=function(e,t,n){var i=e.getCursorPosition(),o=t.doc.getLine(i.row);this.isAutoInsertedClosing(i,o,r.autoInsertedLineEnd[0])||(r.autoInsertedBrackets=0),r.autoInsertedRow=i.row,r.autoInsertedLineEnd=n+o.substr(i.column),r.autoInsertedBrackets++},p.recordMaybeInsert=function(e,t,n){var i=e.getCursorPosition(),o=t.doc.getLine(i.row);this.isMaybeInsertedClosing(i,o)||(r.maybeInsertedBrackets=0),r.maybeInsertedRow=i.row,r.maybeInsertedLineStart=o.substr(0,i.column)+n,r.maybeInsertedLineEnd=o.substr(i.column),r.maybeInsertedBrackets++},p.isAutoInsertedClosing=function(e,t,n){return r.autoInsertedBrackets>0&&e.row===r.autoInsertedRow&&n===r.autoInsertedLineEnd[0]&&t.substr(e.column)===r.autoInsertedLineEnd},p.isMaybeInsertedClosing=function(e,t){return r.maybeInsertedBrackets>0&&e.row===r.maybeInsertedRow&&t.substr(e.column)===r.maybeInsertedLineEnd&&t.substr(0,e.column)==r.maybeInsertedLineStart},p.popAutoInsertedClosing=function(){r.autoInsertedLineEnd=r.autoInsertedLineEnd.substr(1),r.autoInsertedBrackets--},p.clearMaybeInsertedClosing=function(){r&&(r.maybeInsertedBrackets=0,r.maybeInsertedRow=-1)},i.inherits(p,o),t.CstyleBehaviour=p}),ace.define("ace/unicode",["require","exports","module"],function(e,t,n){"use strict";for(var r=[48,9,8,25,5,0,2,25,48,0,11,0,5,0,6,22,2,30,2,457,5,11,15,4,8,0,2,0,18,116,2,1,3,3,9,0,2,2,2,0,2,19,2,82,2,138,2,4,3,155,12,37,3,0,8,38,10,44,2,0,2,1,2,1,2,0,9,26,6,2,30,10,7,61,2,9,5,101,2,7,3,9,2,18,3,0,17,58,3,100,15,53,5,0,6,45,211,57,3,18,2,5,3,11,3,9,2,1,7,6,2,2,2,7,3,1,3,21,2,6,2,0,4,3,3,8,3,1,3,3,9,0,5,1,2,4,3,11,16,2,2,5,5,1,3,21,2,6,2,1,2,1,2,1,3,0,2,4,5,1,3,2,4,0,8,3,2,0,8,15,12,2,2,8,2,2,2,21,2,6,2,1,2,4,3,9,2,2,2,2,3,0,16,3,3,9,18,2,2,7,3,1,3,21,2,6,2,1,2,4,3,8,3,1,3,2,9,1,5,1,2,4,3,9,2,0,17,1,2,5,4,2,2,3,4,1,2,0,2,1,4,1,4,2,4,11,5,4,4,2,2,3,3,0,7,0,15,9,18,2,2,7,2,2,2,22,2,9,2,4,4,7,2,2,2,3,8,1,2,1,7,3,3,9,19,1,2,7,2,2,2,22,2,9,2,4,3,8,2,2,2,3,8,1,8,0,2,3,3,9,19,1,2,7,2,2,2,22,2,15,4,7,2,2,2,3,10,0,9,3,3,9,11,5,3,1,2,17,4,23,2,8,2,0,3,6,4,0,5,5,2,0,2,7,19,1,14,57,6,14,2,9,40,1,2,0,3,1,2,0,3,0,7,3,2,6,2,2,2,0,2,0,3,1,2,12,2,2,3,4,2,0,2,5,3,9,3,1,35,0,24,1,7,9,12,0,2,0,2,0,5,9,2,35,5,19,2,5,5,7,2,35,10,0,58,73,7,77,3,37,11,42,2,0,4,328,2,3,3,6,2,0,2,3,3,40,2,3,3,32,2,3,3,6,2,0,2,3,3,14,2,56,2,3,3,66,5,0,33,15,17,84,13,619,3,16,2,25,6,74,22,12,2,6,12,20,12,19,13,12,2,2,2,1,13,51,3,29,4,0,5,1,3,9,34,2,3,9,7,87,9,42,6,69,11,28,4,11,5,11,11,39,3,4,12,43,5,25,7,10,38,27,5,62,2,28,3,10,7,9,14,0,89,75,5,9,18,8,13,42,4,11,71,55,9,9,4,48,83,2,2,30,14,230,23,280,3,5,3,37,3,5,3,7,2,0,2,0,2,0,2,30,3,52,2,6,2,0,4,2,2,6,4,3,3,5,5,12,6,2,2,6,67,1,20,0,29,0,14,0,17,4,60,12,5,0,4,11,18,0,5,0,3,9,2,0,4,4,7,0,2,0,2,0,2,3,2,10,3,3,6,4,5,0,53,1,2684,46,2,46,2,132,7,6,15,37,11,53,10,0,17,22,10,6,2,6,2,6,2,6,2,6,2,6,2,6,2,6,2,31,48,0,470,1,36,5,2,4,6,1,5,85,3,1,3,2,2,89,2,3,6,40,4,93,18,23,57,15,513,6581,75,20939,53,1164,68,45,3,268,4,27,21,31,3,13,13,1,2,24,9,69,11,1,38,8,3,102,3,1,111,44,25,51,13,68,12,9,7,23,4,0,5,45,3,35,13,28,4,64,15,10,39,54,10,13,3,9,7,22,4,1,5,66,25,2,227,42,2,1,3,9,7,11171,13,22,5,48,8453,301,3,61,3,105,39,6,13,4,6,11,2,12,2,4,2,0,2,1,2,1,2,107,34,362,19,63,3,53,41,11,5,15,17,6,13,1,25,2,33,4,2,134,20,9,8,25,5,0,2,25,12,88,4,5,3,5,3,5,3,2],i=0,o=[],a=0;a2?r%c!=c-1:r%c==0})}else{if(!this.blockComment)return!1;var f=this.blockComment.start,p=this.blockComment.end,m=new RegExp("^(\\s*)(?:"+l.escapeRegExp(f)+")"),g=new RegExp("(?:"+l.escapeRegExp(p)+")\\s*$"),v=function(e,t){b(e,t)||o&&!/\S/.test(e)||(i.insertInLine({row:t,column:e.length},p),i.insertInLine({row:t,column:s},f))},y=function(e,t){var n;(n=e.match(g))&&i.removeInLine(t,e.length-n[0].length,e.length),(n=e.match(m))&&i.removeInLine(t,n[1].length,n[0].length)},b=function(e,n){if(m.test(e))return!0;for(var r=t.getTokens(n),i=0;ie.length&&(x=e.length)}),s==1/0&&(s=x,o=!1,a=!1),u&&s%c!=0&&(s=Math.floor(s/c)*c),w(a?y:v)},this.toggleBlockComment=function(e,t,n,r){var i=this.blockComment;if(i){!i.start&&i[0]&&(i=i[0]);var o,a,s=new c(t,r.row,r.column),l=s.getCurrentToken(),h=(t.selection,t.selection.toOrientedRange());if(l&&/comment/.test(l.type)){var d,f;while(l&&/comment/.test(l.type)){var p=l.value.indexOf(i.start);if(-1!=p){var m=s.getCurrentTokenRow(),g=s.getCurrentTokenColumn()+p;d=new u(m,g,m,g+i.start.length);break}l=s.stepBackward()}s=new c(t,r.row,r.column),l=s.getCurrentToken();while(l&&/comment/.test(l.type)){p=l.value.indexOf(i.end);if(-1!=p){m=s.getCurrentTokenRow(),g=s.getCurrentTokenColumn()+p;f=new u(m,g,m,g+i.end.length);break}l=s.stepForward()}f&&t.remove(f),d&&(t.remove(d),o=d.start.row,a=-i.start.length)}else a=i.start.length,o=n.start.row,t.insert(n.end,i.end),t.insert(n.start,i.start);h.start.row==o&&(h.start.column+=a),h.end.row==o&&(h.end.column+=a),t.selection.fromOrientedRange(h)}},this.getNextLineIndent=function(e,t,n){return this.$getIndent(t)},this.checkOutdent=function(e,t,n){return!1},this.autoOutdent=function(e,t,n){},this.$getIndent=function(e){return e.match(/^\s*/)[0]},this.createWorker=function(e){return null},this.createModeDelegates=function(e){for(var t in this.$embeds=[],this.$modes={},e)if(e[t]){var n=e[t],i=n.prototype.$id,o=r.$modes[i];o||(r.$modes[i]=o=new n),r.$modes[t]||(r.$modes[t]=o),this.$embeds.push(t),this.$modes[t]=o}var a=["toggleBlockComment","toggleCommentLines","getNextLineIndent","checkOutdent","autoOutdent","transformAction","getCompletions"];for(t=0;tthis.row)){var n=t(e,{row:this.row,column:this.column},this.$insertRight);this.setPosition(n.row,n.column,!0)}},this.setPosition=function(e,t,n){var r;if(r=n?{row:e,column:t}:this.$clipPositionToDocument(e,t),this.row!=r.row||this.column!=r.column){var i={row:this.row,column:this.column};this.row=r.row,this.column=r.column,this._signal("change",{old:i,value:r})}},this.detach=function(){this.document.off("change",this.$onChange)},this.attach=function(e){this.document=e||this.document,this.document.on("change",this.$onChange)},this.$clipPositionToDocument=function(e,t){var n={};return e>=this.document.getLength()?(n.row=Math.max(0,this.document.getLength()-1),n.column=this.document.getLine(n.row).length):e<0?(n.row=0,n.column=0):(n.row=e,n.column=Math.min(this.document.getLine(n.row).length,Math.max(0,t))),t<0&&(n.column=0),n}}).call(o.prototype)}),ace.define("ace/document",["require","exports","module","ace/lib/oop","ace/apply_delta","ace/lib/event_emitter","ace/range","ace/anchor"],function(e,t,n){"use strict";var r=e("./lib/oop"),i=e("./apply_delta").applyDelta,o=e("./lib/event_emitter").EventEmitter,a=e("./range").Range,s=e("./anchor").Anchor,l=function(e){this.$lines=[""],0===e.length?this.$lines=[""]:Array.isArray(e)?this.insertMergedLines({row:0,column:0},e):this.insert({row:0,column:0},e)};(function(){r.implement(this,o),this.setValue=function(e){var t=this.getLength()-1;this.remove(new a(0,0,t,this.getLine(t).length)),this.insert({row:0,column:0},e)},this.getValue=function(){return this.getAllLines().join(this.getNewLineCharacter())},this.createAnchor=function(e,t){return new s(this,e,t)},0==="aaa".split(/a/).length?this.$split=function(e){return e.replace(/\r\n|\r/g,"\n").split("\n")}:this.$split=function(e){return e.split(/\r\n|\r|\n/)},this.$detectNewLine=function(e){var t=e.match(/^.*?(\r\n|\r|\n)/m);this.$autoNewLine=t?t[1]:"\n",this._signal("changeNewLineMode")},this.getNewLineCharacter=function(){switch(this.$newLineMode){case"windows":return"\r\n";case"unix":return"\n";default:return this.$autoNewLine||"\n"}},this.$autoNewLine="",this.$newLineMode="auto",this.setNewLineMode=function(e){this.$newLineMode!==e&&(this.$newLineMode=e,this._signal("changeNewLineMode"))},this.getNewLineMode=function(){return this.$newLineMode},this.isNewLine=function(e){return"\r\n"==e||"\r"==e||"\n"==e},this.getLine=function(e){return this.$lines[e]||""},this.getLines=function(e,t){return this.$lines.slice(e,t+1)},this.getAllLines=function(){return this.getLines(0,this.getLength())},this.getLength=function(){return this.$lines.length},this.getTextRange=function(e){return this.getLinesForRange(e).join(this.getNewLineCharacter())},this.getLinesForRange=function(e){var t;if(e.start.row===e.end.row)t=[this.getLine(e.start.row).substring(e.start.column,e.end.column)];else{t=this.getLines(e.start.row,e.end.row),t[0]=(t[0]||"").substring(e.start.column);var n=t.length-1;e.end.row-e.start.row==n&&(t[n]=t[n].substring(0,e.end.column))}return t},this.insertLines=function(e,t){return console.warn("Use of document.insertLines is deprecated. Use the insertFullLines method instead."),this.insertFullLines(e,t)},this.removeLines=function(e,t){return console.warn("Use of document.removeLines is deprecated. Use the removeFullLines method instead."),this.removeFullLines(e,t)},this.insertNewLine=function(e){return console.warn("Use of document.insertNewLine is deprecated. Use insertMergedLines(position, ['', '']) instead."),this.insertMergedLines(e,["",""])},this.insert=function(e,t){return this.getLength()<=1&&this.$detectNewLine(t),this.insertMergedLines(e,this.$split(t))},this.insertInLine=function(e,t){var n=this.clippedPos(e.row,e.column),r=this.pos(e.row,e.column+t.length);return this.applyDelta({start:n,end:r,action:"insert",lines:[t]},!0),this.clonePos(r)},this.clippedPos=function(e,t){var n=this.getLength();void 0===e?e=n:e<0?e=0:e>=n&&(e=n-1,t=void 0);var r=this.getLine(e);return void 0==t&&(t=r.length),t=Math.min(Math.max(t,0),r.length),{row:e,column:t}},this.clonePos=function(e){return{row:e.row,column:e.column}},this.pos=function(e,t){return{row:e,column:t}},this.$clipPosition=function(e){var t=this.getLength();return e.row>=t?(e.row=Math.max(0,t-1),e.column=this.getLine(t-1).length):(e.row=Math.max(0,e.row),e.column=Math.min(Math.max(e.column,0),this.getLine(e.row).length)),e},this.insertFullLines=function(e,t){e=Math.min(Math.max(e,0),this.getLength());var n=0;e0,r=t=0&&this.applyDelta({start:this.pos(e,this.getLine(e).length),end:this.pos(e+1,0),action:"remove",lines:["",""]})},this.replace=function(e,t){return e instanceof a||(e=a.fromPoints(e.start,e.end)),0===t.length&&e.isEmpty()?e.start:t==this.getTextRange(e)?e.end:(this.remove(e),n=t?this.insert(e.start,t):e.start,n);var n},this.applyDeltas=function(e){for(var t=0;t=0;t--)this.revertDelta(e[t])},this.applyDelta=function(e,t){var n="insert"==e.action;(n?e.lines.length<=1&&!e.lines[0]:!a.comparePoints(e.start,e.end))||(n&&e.lines.length>2e4?this.$splitAndapplyLargeDelta(e,2e4):(i(this.$lines,e,t),this._signal("change",e)))},this.$safeApplyDelta=function(e){var t=this.$lines.length;("remove"==e.action&&e.start.row20){n.running=setTimeout(n.$worker,20);break}}n.currentLine=t,-1==r&&(r=t),o<=r&&n.fireUpdateEvent(o,r)}}};(function(){r.implement(this,i),this.setTokenizer=function(e){this.tokenizer=e,this.lines=[],this.states=[],this.start(0)},this.setDocument=function(e){this.doc=e,this.lines=[],this.states=[],this.stop()},this.fireUpdateEvent=function(e,t){var n={first:e,last:t};this._signal("update",{data:n})},this.start=function(e){this.currentLine=Math.min(e||0,this.currentLine,this.doc.getLength()),this.lines.splice(this.currentLine,this.lines.length),this.states.splice(this.currentLine,this.states.length),this.stop(),this.running=setTimeout(this.$worker,700)},this.scheduleStart=function(){this.running||(this.running=setTimeout(this.$worker,700))},this.$updateOnChange=function(e){var t=e.start.row,n=e.end.row-t;if(0===n)this.lines[t]=null;else if("remove"==e.action)this.lines.splice(t,n+1,null),this.states.splice(t,n+1,null);else{var r=Array(n+1);r.unshift(t,1),this.lines.splice.apply(this.lines,r),this.states.splice.apply(this.states,r)}this.currentLine=Math.min(t,this.currentLine,this.doc.getLength()),this.stop()},this.stop=function(){this.running&&clearTimeout(this.running),this.running=!1},this.getTokens=function(e){return this.lines[e]||this.$tokenizeRow(e)},this.getState=function(e){return this.currentLine==e&&this.$tokenizeRow(e),this.states[e]||"start"},this.$tokenizeRow=function(e){var t=this.doc.getLine(e),n=this.states[e-1],r=this.tokenizer.getLineTokens(t,n,e);return this.states[e]+""!==r.state+""?(this.states[e]=r.state,this.lines[e+1]=null,this.currentLine>e+1&&(this.currentLine=e+1)):this.currentLine==e&&(this.currentLine=e+1),this.lines[e]=r.tokens}}).call(o.prototype),t.BackgroundTokenizer=o}),ace.define("ace/search_highlight",["require","exports","module","ace/lib/lang","ace/lib/oop","ace/range"],function(e,t,n){"use strict";var r=e("./lib/lang"),i=(e("./lib/oop"),e("./range").Range),o=function(e,t,n){this.setRegexp(e),this.clazz=t,this.type=n||"text"};(function(){this.MAX_RANGES=500,this.setRegexp=function(e){this.regExp+""!=e+""&&(this.regExp=e,this.cache=[])},this.update=function(e,t,n,o){if(this.regExp)for(var a=o.firstRow,s=o.lastRow,l=a;l<=s;l++){var c=this.cache[l];null==c&&(c=r.getMatchOffsets(n.getLine(l),this.regExp),c.length>this.MAX_RANGES&&(c=c.slice(0,this.MAX_RANGES)),c=c.map(function(e){return new i(l,e.offset,l,e.offset+e.length)}),this.cache[l]=c.length?c:"");for(var u=c.length;u--;)t.drawSingleLineMarker(e,c[u].toScreenRange(n),this.clazz,o)}}}).call(o.prototype),t.SearchHighlight=o}),ace.define("ace/edit_session/fold_line",["require","exports","module","ace/range"],function(e,t,n){"use strict";var r=e("../range").Range;function i(e,t){this.foldData=e,Array.isArray(t)?this.folds=t:t=this.folds=[t];var n=t[t.length-1];this.range=new r(t[0].start.row,t[0].start.column,n.end.row,n.end.column),this.start=this.range.start,this.end=this.range.end,this.folds.forEach(function(e){e.setFoldLine(this)},this)}(function(){this.shiftRow=function(e){this.start.row+=e,this.end.row+=e,this.folds.forEach(function(t){t.start.row+=e,t.end.row+=e})},this.addFold=function(e){if(e.sameRow){if(e.start.rowthis.endRow)throw new Error("Can't add a fold to this FoldLine as it has no connection");this.folds.push(e),this.folds.sort(function(e,t){return-e.range.compareEnd(t.start.row,t.start.column)}),this.range.compareEnd(e.start.row,e.start.column)>0?(this.end.row=e.end.row,this.end.column=e.end.column):this.range.compareStart(e.end.row,e.end.column)<0&&(this.start.row=e.start.row,this.start.column=e.start.column)}else if(e.start.row==this.end.row)this.folds.push(e),this.end.row=e.end.row,this.end.column=e.end.column;else{if(e.end.row!=this.start.row)throw new Error("Trying to add fold to FoldRow that doesn't have a matching row");this.folds.unshift(e),this.start.row=e.start.row,this.start.column=e.start.column}e.foldLine=this},this.containsRow=function(e){return e>=this.start.row&&e<=this.end.row},this.walk=function(e,t,n){var r,i,o,a=0,s=this.folds,l=!0;null==t&&(t=this.end.row,n=this.end.column);for(var c=0;c0)){var l=i(e,a.start);return 0===s?t&&0!==l?-o-2:o:l>0||0===l&&!t?o:-o-1}}return-o-1},this.add=function(e){var t=!e.isEmpty(),n=this.pointIndex(e.start,t);n<0&&(n=-n-1);var r=this.pointIndex(e.end,t,n);return r<0?r=-r-1:r++,this.ranges.splice(n,r-n,e)},this.addList=function(e){for(var t=[],n=e.length;n--;)t.push.apply(t,this.add(e[n]));return t},this.substractPoint=function(e){var t=this.pointIndex(e);if(t>=0)return this.ranges.splice(t,1)},this.merge=function(){var e=[],t=this.ranges;t=t.sort(function(e,t){return i(e.start,t.start)});for(var n,r=t[0],o=1;o=0},this.containsPoint=function(e){return this.pointIndex(e)>=0},this.rangeAtPoint=function(e){var t=this.pointIndex(e);if(t>=0)return this.ranges[t]},this.clipRows=function(e,t){var n=this.ranges;if(n[0].start.row>t||n[n.length-1].start.row=r)break}if("insert"==e.action)for(var c=i-r,u=-t.column+n.column;ar)break;if(l.start.row==r&&l.start.column>=t.column&&(l.start.column==t.column&&this.$bias<=0||(l.start.column+=u,l.start.row+=c)),l.end.row==r&&l.end.column>=t.column){if(l.end.column==t.column&&this.$bias<0)continue;l.end.column==t.column&&u>0&&al.start.column&&l.end.column==o[a+1].start.column&&(l.end.column-=u),l.end.column+=u,l.end.row+=c}}else for(c=r-i,u=t.column-n.column;ai)break;l.end.rowt.column)&&(l.end.column=t.column,l.end.row=t.row):(l.end.column+=u,l.end.row+=c):l.end.row>i&&(l.end.row+=c),l.start.rowt.column)&&(l.start.column=t.column,l.start.row=t.row):(l.start.column+=u,l.start.row+=c):l.start.row>i&&(l.start.row+=c)}if(0!=c&&a=e)return i;if(i.end.row>e)return null}return null},this.getNextFoldLine=function(e,t){var n=this.$foldData,r=0;for(t&&(r=n.indexOf(t)),-1==r&&(r=0),r;r=e)return i}return null},this.getFoldedRowCount=function(e,t){for(var n=this.$foldData,r=t-e+1,i=0;i=t){s=e?r-=t-s:r=0);break}a>=e&&(r-=s>=e?a-s:a-e+1)}return r},this.$addFoldLine=function(e){return this.$foldData.push(e),this.$foldData.sort(function(e,t){return e.start.row-t.start.row}),e},this.addFold=function(e,t){var n,r=this.$foldData,a=!1;e instanceof o?n=e:(n=new o(t,e),n.collapseChildren=t.collapseChildren),this.$clipRangeToDocument(n.range);var s=n.start.row,l=n.start.column,c=n.end.row,u=n.end.column,h=this.getFoldAt(s,l,1),d=this.getFoldAt(c,u,-1);if(h&&d==h)return h.addSubFold(n);h&&!h.range.isStart(s,l)&&this.removeFold(h),d&&!d.range.isEnd(c,u)&&this.removeFold(d);var f=this.getFoldsInRange(n.range);f.length>0&&(this.removeFolds(f),n.collapseChildren||f.forEach(function(e){n.addSubFold(e)}));for(var p=0;p0&&this.foldAll(e.start.row+1,e.end.row,e.collapseChildren-1),e.subFolds=[]},this.expandFolds=function(e){e.forEach(function(e){this.expandFold(e)},this)},this.unfold=function(e,t){var n,i;if(null==e)n=new r(0,0,this.getLength(),0),null==t&&(t=!0);else if("number"==typeof e)n=new r(e,0,e,this.getLine(e).length);else if("row"in e)n=r.fromPoints(e,e);else{if(Array.isArray(e))return i=[],e.forEach(function(e){i=i.concat(this.unfold(e))},this),i;n=e}i=this.getFoldsInRangeList(n);var o=i;while(1==i.length&&r.comparePoints(i[0].start,n.start)<0&&r.comparePoints(i[0].end,n.end)>0)this.expandFolds(i),i=this.getFoldsInRangeList(n);if(0!=t?this.removeFolds(i):this.expandFolds(i),o.length)return o},this.isRowFolded=function(e,t){return!!this.getFoldLine(e,t)},this.getRowFoldEnd=function(e,t){var n=this.getFoldLine(e,t);return n?n.end.row:e},this.getRowFoldStart=function(e,t){var n=this.getFoldLine(e,t);return n?n.start.row:e},this.getFoldDisplayLine=function(e,t,n,r,i){null==r&&(r=e.start.row),null==i&&(i=0),null==t&&(t=e.end.row),null==n&&(n=this.getLine(t).length);var o=this.doc,a="";return e.walk(function(e,t,n,s){if(!(tu)break}while(o&&l.test(o.type));o=i.stepBackward()}else o=i.getCurrentToken();return c.end.row=i.getCurrentTokenRow(),c.end.column=i.getCurrentTokenColumn()+o.value.length-2,c}},this.foldAll=function(e,t,n,r){void 0==n&&(n=1e5);var i=this.foldWidgets;if(i){t=t||this.getLength(),e=e||0;for(var o=e;o=e&&(o=a.end.row,a.collapseChildren=n,this.addFold("...",a))}}},this.foldToLevel=function(e){this.foldAll();while(e-- >0)this.unfold(null,!1)},this.foldAllComments=function(){var e=this;this.foldAll(null,null,null,function(t){for(var n=e.getTokens(t),r=0;r=0){var o=n[i];if(null==o&&(o=n[i]=this.getFoldWidget(i)),"start"==o){var a=this.getFoldWidgetRange(i);if(r||(r=a),a&&a.end.row>=e)break}i--}return{range:-1!==i&&a,firstRange:r}},this.onFoldWidgetClick=function(e,t){t=t.domEvent;var n={children:t.shiftKey,all:t.ctrlKey||t.metaKey,siblings:t.altKey},r=this.$toggleFoldWidget(e,n);if(!r){var i=t.target||t.srcElement;i&&/ace_fold-widget/.test(i.className)&&(i.className+=" ace_invalid")}},this.$toggleFoldWidget=function(e,t){if(this.getFoldWidget){var n=this.getFoldWidget(e),r=this.getLine(e),i="end"===n?-1:1,o=this.getFoldAt(e,-1===i?0:r.length,i);if(o)return t.children||t.all?this.removeFold(o):this.expandFold(o),o;var a=this.getFoldWidgetRange(e,!0);if(a&&!a.isMultiLine()&&(o=this.getFoldAt(a.start.row,a.start.column,1),o&&a.isEqual(o.range)))return this.removeFold(o),o;if(t.siblings){var s=this.getParentFoldRangeData(e);if(s.range)var l=s.range.start.row+1,c=s.range.end.row;this.foldAll(l,c,t.all?1e4:0)}else t.children?(c=a?a.end.row:this.getLength(),this.foldAll(e+1,c,t.all?1e4:0)):a&&(t.all&&(a.collapseChildren=1e4),this.addFold("...",a));return a}},this.toggleFoldWidget=function(e){var t=this.selection.getCursor().row;t=this.getRowFoldStart(t);var n=this.$toggleFoldWidget(t,{});if(!n){var r=this.getParentFoldRangeData(t,!0);if(n=r.range||r.firstRange,n){t=n.start.row;var i=this.getFoldAt(t,this.getLine(t).length,1);i?this.removeFold(i):this.addFold("...",n)}}},this.updateFoldWidgets=function(e){var t=e.start.row,n=e.end.row-t;if(0===n)this.foldWidgets[t]=null;else if("remove"==e.action)this.foldWidgets.splice(t,n+1,null);else{var r=Array(n+1);r.unshift(t,1),this.foldWidgets.splice.apply(this.foldWidgets,r)}},this.tokenizerUpdateFoldWidgets=function(e){var t=e.data;t.first!=t.last&&this.foldWidgets.length>t.first&&this.foldWidgets.splice(t.first,this.foldWidgets.length)}}t.Folding=s}),ace.define("ace/edit_session/bracket_match",["require","exports","module","ace/token_iterator","ace/range"],function(e,t,n){"use strict";var r=e("../token_iterator").TokenIterator,i=e("../range").Range;function o(){this.findMatchingBracket=function(e,t){if(0==e.column)return null;var n=t||this.getLine(e.row).charAt(e.column-1);if(""==n)return null;var r=n.match(/([\(\[\{])|([\)\]\}])/);return r?r[1]?this.$findClosingBracket(r[1],e):this.$findOpeningBracket(r[2],e):null},this.getBracketRange=function(e){var t,n=this.getLine(e.row),r=!0,o=n.charAt(e.column-1),a=o&&o.match(/([\(\[\{])|([\)\]\}])/);if(a||(o=n.charAt(e.column),e={row:e.row,column:e.column+1},a=o&&o.match(/([\(\[\{])|([\)\]\}])/),r=!1),!a)return null;if(a[1]){var s=this.$findClosingBracket(a[1],e);if(!s)return null;t=i.fromPoints(e,s),r||(t.end.column++,t.start.column--),t.cursor=t.end}else{s=this.$findOpeningBracket(a[2],e);if(!s)return null;t=i.fromPoints(s,e),r||(t.start.column++,t.end.column--),t.cursor=t.start}return t},this.getMatchingBracketRanges=function(e){var t=this.getLine(e.row),n=t.charAt(e.column-1),r=n&&n.match(/([\(\[\{])|([\)\]\}])/);if(r||(n=t.charAt(e.column),e={row:e.row,column:e.column+1},r=n&&n.match(/([\(\[\{])|([\)\]\}])/)),!r)return null;var o=new i(e.row,e.column-1,e.row,e.column),a=r[1]?this.$findClosingBracket(r[1],e):this.$findOpeningBracket(r[2],e);if(!a)return[o];var s=new i(a.row,a.column,a.row,a.column+1);return[o,s]},this.$brackets={")":"(","(":")","]":"[","[":"]","{":"}","}":"{","<":">",">":"<"},this.$findOpeningBracket=function(e,t,n){var i=this.$brackets[e],o=1,a=new r(this,t.row,t.column),s=a.getCurrentToken();if(s||(s=a.stepForward()),s){n||(n=new RegExp("(\\.?"+s.type.replace(".","\\.").replace("rparen",".paren").replace(/\b(?:end)\b/,"(?:start|begin|end)")+")+"));var l=t.column-a.getCurrentTokenColumn()-2,c=s.value;while(1){while(l>=0){var u=c.charAt(l);if(u==i){if(o-=1,0==o)return{row:a.getCurrentTokenRow(),column:l+a.getCurrentTokenColumn()}}else u==e&&(o+=1);l-=1}do{s=a.stepBackward()}while(s&&!n.test(s.type));if(null==s)break;c=s.value,l=c.length-1}return null}},this.$findClosingBracket=function(e,t,n){var i=this.$brackets[e],o=1,a=new r(this,t.row,t.column),s=a.getCurrentToken();if(s||(s=a.stepForward()),s){n||(n=new RegExp("(\\.?"+s.type.replace(".","\\.").replace("lparen",".paren").replace(/\b(?:start|begin)\b/,"(?:start|begin|end)")+")+"));var l=t.column-a.getCurrentTokenColumn();while(1){var c=s.value,u=c.length;while(ln&&(this.$docRowCache.splice(n,t),this.$screenRowCache.splice(n,t))},this.$getRowCacheIndex=function(e,t){var n=0,r=e.length-1;while(n<=r){var i=n+r>>1,o=e[i];if(t>o)n=i+1;else{if(!(t=t)break;return n=r[o],n?(n.index=o,n.start=i-n.value.length,n):null},this.setUndoManager=function(e){if(this.$undoManager=e,this.$informUndoManager&&this.$informUndoManager.cancel(),e){var t=this;e.addSession(this),this.$syncInformUndoManager=function(){t.$informUndoManager.cancel(),t.mergeUndoDeltas=!1},this.$informUndoManager=i.delayedCall(this.$syncInformUndoManager)}else this.$syncInformUndoManager=function(){}},this.markUndoGroup=function(){this.$syncInformUndoManager&&this.$syncInformUndoManager()},this.$defaultUndoManager={undo:function(){},redo:function(){},hasUndo:function(){},hasRedo:function(){},reset:function(){},add:function(){},addSelection:function(){},startNewGroup:function(){},addSession:function(){}},this.getUndoManager=function(){return this.$undoManager||this.$defaultUndoManager},this.getTabString=function(){return this.getUseSoftTabs()?i.stringRepeat(" ",this.getTabSize()):"\t"},this.setUseSoftTabs=function(e){this.setOption("useSoftTabs",e)},this.getUseSoftTabs=function(){return this.$useSoftTabs&&!this.$mode.$indentWithTabs},this.setTabSize=function(e){this.setOption("tabSize",e)},this.getTabSize=function(){return this.$tabSize},this.isTabStop=function(e){return this.$useSoftTabs&&e.column%this.$tabSize===0},this.setNavigateWithinSoftTabs=function(e){this.setOption("navigateWithinSoftTabs",e)},this.getNavigateWithinSoftTabs=function(){return this.$navigateWithinSoftTabs},this.$overwrite=!1,this.setOverwrite=function(e){this.setOption("overwrite",e)},this.getOverwrite=function(){return this.$overwrite},this.toggleOverwrite=function(){this.setOverwrite(!this.$overwrite)},this.addGutterDecoration=function(e,t){this.$decorations[e]||(this.$decorations[e]=""),this.$decorations[e]+=" "+t,this._signal("changeBreakpoint",{})},this.removeGutterDecoration=function(e,t){this.$decorations[e]=(this.$decorations[e]||"").replace(" "+t,""),this._signal("changeBreakpoint",{})},this.getBreakpoints=function(){return this.$breakpoints},this.setBreakpoints=function(e){this.$breakpoints=[];for(var t=0;t0&&(r=!!n.charAt(t-1).match(this.tokenRe)),r||(r=!!n.charAt(t).match(this.tokenRe)),r)var i=this.tokenRe;else if(/^\s+$/.test(n.slice(t-1,t+1)))i=/\s/;else i=this.nonTokenRe;var o=t;if(o>0){do{o--}while(o>=0&&n.charAt(o).match(i));o++}var a=t;while(ae&&(e=t.screenWidth)}),this.lineWidgetWidth=e},this.$computeWidth=function(e){if(this.$modified||e){if(this.$modified=!1,this.$useWrapMode)return this.screenWidth=this.$wrapLimit;for(var t=this.doc.getAllLines(),n=this.$rowLengthCache,r=0,i=0,o=this.$foldData[i],a=o?o.start.row:1/0,s=t.length,l=0;la){if(l=o.end.row+1,l>=s)break;o=this.$foldData[i++],a=o?o.start.row:1/0}null==n[l]&&(n[l]=this.$getStringScreenWidth(t[l])[0]),n[l]>r&&(r=n[l])}this.screenWidth=r}},this.getLine=function(e){return this.doc.getLine(e)},this.getLines=function(e,t){return this.doc.getLines(e,t)},this.getLength=function(){return this.doc.getLength()},this.getTextRange=function(e){return this.doc.getTextRange(e||this.selection.getRange())},this.insert=function(e,t){return this.doc.insert(e,t)},this.remove=function(e){return this.doc.remove(e)},this.removeFullLines=function(e,t){return this.doc.removeFullLines(e,t)},this.undoChanges=function(e,t){if(e.length){this.$fromUndo=!0;for(var n=e.length-1;-1!=n;n--){var r=e[n];"insert"==r.action||"remove"==r.action?this.doc.revertDelta(r):r.folds&&this.addFolds(r.folds)}!t&&this.$undoSelect&&(e.selectionBefore?this.selection.fromJSON(e.selectionBefore):this.selection.setRange(this.$getUndoSelection(e,!0))),this.$fromUndo=!1}},this.redoChanges=function(e,t){if(e.length){this.$fromUndo=!0;for(var n=0;ne.end.column&&(o.start.column+=s),o.end.row==e.end.row&&o.end.column>e.end.column&&(o.end.column+=s)),a&&o.start.row>=e.end.row&&(o.start.row+=a,o.end.row+=a)}if(o.end=this.insert(o.start,r),i.length){var l=e.start,c=o.start;a=c.row-l.row,s=c.column-l.column;this.addFolds(i.map(function(e){return e=e.clone(),e.start.row==l.row&&(e.start.column+=s),e.end.row==l.row&&(e.end.column+=s),e.start.row+=a,e.end.row+=a,e}))}return o},this.indentRows=function(e,t,n){n=n.replace(/\t/g,this.getTabString());for(var r=e;r<=t;r++)this.doc.insertInLine({row:r,column:0},n)},this.outdentRows=function(e){for(var t=e.collapseRows(),n=new u(0,0,0,0),r=this.getTabSize(),i=t.start.row;i<=t.end.row;++i){var o=this.getLine(i);n.start.row=i,n.end.row=i;for(var a=0;a0){r=this.getRowFoldEnd(t+n);if(r>this.doc.getLength()-1)return 0;i=r-t}else{e=this.$clipRowToDocument(e),t=this.$clipRowToDocument(t);i=t-e+1}var o=new u(e,0,t,Number.MAX_VALUE),a=this.getFoldsInRange(o).map(function(e){return e=e.clone(),e.start.row+=i,e.end.row+=i,e}),s=0==n?this.doc.getLines(e,t):this.doc.removeFullLines(e,t);return this.doc.insertFullLines(e+i,s),a.length&&this.addFolds(a),i},this.moveLinesUp=function(e,t){return this.$moveLines(e,t,-1)},this.moveLinesDown=function(e,t){return this.$moveLines(e,t,1)},this.duplicateLines=function(e,t){return this.$moveLines(e,t,0)},this.$clipRowToDocument=function(e){return Math.max(0,Math.min(e,this.doc.getLength()-1))},this.$clipColumnToRow=function(e,t){return t<0?0:Math.min(this.doc.getLine(e).length,t)},this.$clipPositionToDocument=function(e,t){if(t=Math.max(0,t),e<0)e=0,t=0;else{var n=this.doc.getLength();e>=n?(e=n-1,t=this.doc.getLine(n-1).length):t=Math.min(this.doc.getLine(e).length,t)}return{row:e,column:t}},this.$clipRangeToDocument=function(e){e.start.row<0?(e.start.row=0,e.start.column=0):e.start.column=this.$clipColumnToRow(e.start.row,e.start.column);var t=this.doc.getLength()-1;return e.end.row>t?(e.end.row=t,e.end.column=this.doc.getLine(t).length):e.end.column=this.$clipColumnToRow(e.end.row,e.end.column),e},this.$wrapLimit=80,this.$useWrapMode=!1,this.$wrapLimitRange={min:null,max:null},this.setUseWrapMode=function(e){if(e!=this.$useWrapMode){if(this.$useWrapMode=e,this.$modified=!0,this.$resetRowCache(0),e){var t=this.getLength();this.$wrapData=Array(t),this.$updateWrapData(0,t-1)}this._signal("changeWrapMode")}},this.getUseWrapMode=function(){return this.$useWrapMode},this.setWrapLimitRange=function(e,t){this.$wrapLimitRange.min===e&&this.$wrapLimitRange.max===t||(this.$wrapLimitRange={min:e,max:t},this.$modified=!0,this.$bidiHandler.markAsDirty(),this.$useWrapMode&&this._signal("changeWrapMode"))},this.adjustWrapLimit=function(e,t){var n=this.$wrapLimitRange;n.max<0&&(n={min:t,max:t});var r=this.$constrainWrapLimit(e,n.min,n.max);return r!=this.$wrapLimit&&r>1&&(this.$wrapLimit=r,this.$modified=!0,this.$useWrapMode&&(this.$updateWrapData(0,this.getLength()-1),this.$resetRowCache(0),this._signal("changeWrapLimit")),!0)},this.$constrainWrapLimit=function(e,t,n){return t&&(e=Math.max(t,e)),n&&(e=Math.min(n,e)),e},this.getWrapLimit=function(){return this.$wrapLimit},this.setWrapLimit=function(e){this.setWrapLimitRange(e,e)},this.getWrapLimitRange=function(){return{min:this.$wrapLimitRange.min,max:this.$wrapLimitRange.max}},this.$updateInternalDataOnChange=function(e){var t=this.$useWrapMode,n=e.action,r=e.start,i=e.end,o=r.row,a=i.row,s=a-o,l=null;if(this.$updating=!0,0!=s)if("remove"===n){this[t?"$wrapData":"$rowLengthCache"].splice(o,s);var c=this.$foldData;l=this.getFoldsInRange(e),this.removeFolds(l);var u=this.getFoldLine(i.row),h=0;if(u){u.addRemoveChars(i.row,i.column,r.column-i.column),u.shiftRow(-s);var d=this.getFoldLine(o);d&&d!==u&&(d.merge(u),u=d),h=c.indexOf(u)+1}for(h;h=i.row&&u.shiftRow(-s)}a=o}else{var f=Array(s);f.unshift(o,0);var p=t?this.$wrapData:this.$rowLengthCache;p.splice.apply(p,f);c=this.$foldData,u=this.getFoldLine(o),h=0;if(u){var m=u.range.compareInside(r.row,r.column);0==m?(u=u.split(r.row,r.column),u&&(u.shiftRow(s),u.addRemoveChars(a,0,i.column-r.column))):-1==m&&(u.addRemoveChars(o,0,i.column-r.column),u.shiftRow(s)),h=c.indexOf(u)+1}for(h;h=o&&u.shiftRow(s)}}else{s=Math.abs(e.start.column-e.end.column),"remove"===n&&(l=this.getFoldsInRange(e),this.removeFolds(l),s=-s);u=this.getFoldLine(o);u&&u.addRemoveChars(o,r.column,s)}return t&&this.$wrapData.length!=this.doc.getLength()&&console.error("doc.getLength() and $wrapData.length have to be the same!"),this.$updating=!1,t?this.$updateWrapData(o,a):this.$updateRowLengthCache(o,a),l},this.$updateRowLengthCache=function(e,t,n){this.$rowLengthCache[e]=null,this.$rowLengthCache[t]=null},this.$updateWrapData=function(e,t){var r,i,a=this.doc.getAllLines(),s=this.getTabSize(),l=this.$wrapData,c=this.$wrapLimit,u=e;t=Math.min(t,a.length-1);while(u<=t)i=this.getFoldLine(u,i),i?(r=[],i.walk(function(e,t,i,s){var l;if(null!=e){l=this.$getDisplayTokens(e,r.length),l[0]=n;for(var c=1;c=4352&&e<=4447||e>=4515&&e<=4519||e>=4602&&e<=4607||e>=9001&&e<=9002||e>=11904&&e<=11929||e>=11931&&e<=12019||e>=12032&&e<=12245||e>=12272&&e<=12283||e>=12288&&e<=12350||e>=12353&&e<=12438||e>=12441&&e<=12543||e>=12549&&e<=12589||e>=12593&&e<=12686||e>=12688&&e<=12730||e>=12736&&e<=12771||e>=12784&&e<=12830||e>=12832&&e<=12871||e>=12880&&e<=13054||e>=13056&&e<=19903||e>=19968&&e<=42124||e>=42128&&e<=42182||e>=43360&&e<=43388||e>=44032&&e<=55203||e>=55216&&e<=55238||e>=55243&&e<=55291||e>=63744&&e<=64255||e>=65040&&e<=65049||e>=65072&&e<=65106||e>=65108&&e<=65126||e>=65128&&e<=65131||e>=65281&&e<=65376||e>=65504&&e<=65510)}this.$computeWrapSplits=function(e,r,i){if(0==e.length)return[];var a=[],s=e.length,c=0,u=0,d=this.$wrapAsCode,f=this.$indentedSoftWrap,g=r<=Math.max(2*i,8)||!1===f?0:Math.floor(r/2);function v(){var t=0;if(0===g)return t;if(f)for(var n=0;nr-b){var w=c+r-b;if(e[w-1]>=h&&e[w]>=h)y(w);else if(e[w]!=n&&e[w]!=o){var x=Math.max(w-(r-(r>>2)),c-1);while(w>x&&e[w]x&&e[w]x&&e[w]==l)w--}else while(w>x&&e[w]x?y(++w):(w=c+r,e[w]==t&&w--,y(w-b))}else{for(w;w!=c-1;w--)if(e[w]==n)break;if(w>c){y(w);continue}for(w=c+r,w;w39&&s<48||s>57&&s<64?o.push(l):s>=4352&&g(s)?o.push(e,t):o.push(e)}return o},this.$getStringScreenWidth=function(e,t,n){if(0==t)return[0,0];var r,i;for(null==t&&(t=1/0),n=n||0,i=0;i=4352&&g(r)?n+=2:n+=1,n>t)break;return[n,i]},this.lineWidgets=null,this.getRowLength=function(e){var t=1;return this.lineWidgets&&(t+=this.lineWidgets[e]&&this.lineWidgets[e].rowCount||0),this.$useWrapMode&&this.$wrapData[e]?this.$wrapData[e].length+t:t},this.getRowLineCount=function(e){return this.$useWrapMode&&this.$wrapData[e]?this.$wrapData[e].length+1:1},this.getRowWrapIndent=function(e){if(this.$useWrapMode){var t=this.screenToDocumentPosition(e,Number.MAX_VALUE),n=this.$wrapData[t.row];return n.length&&n[0]=0){s=c[u],o=this.$docRowCache[u];var d=e>c[h-1]}else d=!h;var f=this.getLength()-1,p=this.getNextFoldLine(o),m=p?p.start.row:1/0;while(s<=e){if(l=this.getRowLength(o),s+l>e||o>=f)break;s+=l,o++,o>m&&(o=p.end.row+1,p=this.getNextFoldLine(o,p),m=p?p.start.row:1/0),d&&(this.$docRowCache.push(o),this.$screenRowCache.push(s))}if(p&&p.start.row<=o)r=this.getFoldDisplayLine(p),o=p.start.row;else{if(s+l<=e||o>f)return{row:f,column:this.getLine(f).length};r=this.getLine(o),p=null}var g=0,v=Math.floor(e-s);if(this.$useWrapMode){var y=this.$wrapData[o];y&&(i=y[v],v>0&&y.length&&(g=y.indent,a=y[v-1]||y[y.length-1],r=r.substring(a)))}return void 0!==n&&this.$bidiHandler.isBidiRow(s+v,o,v)&&(t=this.$bidiHandler.offsetToCol(n)),a+=this.$getStringScreenWidth(r,t-g)[1],this.$useWrapMode&&a>=i&&(a=i-1),p?p.idxToPosition(a):{row:o,column:a}},this.documentToScreenPosition=function(e,t){if("undefined"===typeof t)var n=this.$clipPositionToDocument(e.row,e.column);else n=this.$clipPositionToDocument(e,t);e=n.row,t=n.column;var r=0,i=null,o=null;o=this.getFoldAt(e,t,1),o&&(e=o.start.row,t=o.start.column);var a,s=0,l=this.$docRowCache,c=this.$getRowCacheIndex(l,e),u=l.length;if(u&&c>=0){s=l[c],r=this.$screenRowCache[c];var h=e>l[u-1]}else h=!u;var d=this.getNextFoldLine(s),f=d?d.start.row:1/0;while(s=f){if(a=d.end.row+1,a>e)break;d=this.getNextFoldLine(a,d),f=d?d.start.row:1/0}else a=s+1;r+=this.getRowLength(s),s=a,h&&(this.$docRowCache.push(s),this.$screenRowCache.push(r))}var p="";d&&s>=f?(p=this.getFoldDisplayLine(d,e,t),i=d.start.row):(p=this.getLine(e).substring(0,t),i=e);var m=0;if(this.$useWrapMode){var g=this.$wrapData[i];if(g){var v=0;while(p.length>=g[v])r++,v++;p=p.substring(g[v-1]||0,p.length),m=v>0?g.indent:0}}return this.lineWidgets&&this.lineWidgets[s]&&this.lineWidgets[s].rowsAbove&&(r+=this.lineWidgets[s].rowsAbove),{row:r,column:m+this.$getStringScreenWidth(p)[0]}},this.documentToScreenColumn=function(e,t){return this.documentToScreenPosition(e,t).column},this.documentToScreenRow=function(e,t){return this.documentToScreenPosition(e,t).row},this.getScreenLength=function(){var e=0,t=null;if(this.$useWrapMode){var n=this.$wrapData.length,r=0,i=(s=0,t=this.$foldData[s++],t?t.start.row:1/0);while(ri&&(r=t.end.row+1,t=this.$foldData[s++],i=t?t.start.row:1/0)}}else{e=this.getLength();for(var a=this.$foldData,s=0;sn)break;return[r,o]})},this.destroy=function(){this.bgTokenizer&&(this.bgTokenizer.setDocument(null),this.bgTokenizer=null),this.$stopWorker(),this.removeAllListeners(),this.doc&&this.doc.off("change",this.$onChange),this.selection.detach()},this.isFullWidth=g}.call(p.prototype),e("./edit_session/folding").Folding.call(p.prototype),e("./edit_session/bracket_match").BracketMatch.call(p.prototype),a.defineOptions(p.prototype,"session",{wrap:{set:function(e){if(e&&"off"!=e?"free"==e?e=!0:"printMargin"==e?e=-1:"string"==typeof e&&(e=parseInt(e,10)||!1):e=!1,this.$wrap!=e)if(this.$wrap=e,e){var t="number"==typeof e?e:null;this.setWrapLimitRange(t,t),this.setUseWrapMode(!0)}else this.setUseWrapMode(!1)},get:function(){return this.getUseWrapMode()?-1==this.$wrap?"printMargin":this.getWrapLimitRange().min?this.$wrap:"free":"off"},handlesSet:!0},wrapMethod:{set:function(e){e="auto"==e?"text"!=this.$mode.type:"text"!=e,e!=this.$wrapAsCode&&(this.$wrapAsCode=e,this.$useWrapMode&&(this.$useWrapMode=!1,this.setUseWrapMode(!0)))},initialValue:"auto"},indentedSoftWrap:{set:function(){this.$useWrapMode&&(this.$useWrapMode=!1,this.setUseWrapMode(!0))},initialValue:!0},firstLineNumber:{set:function(){this._signal("changeBreakpoint")},initialValue:1},useWorker:{set:function(e){this.$useWorker=e,this.$stopWorker(),e&&this.$startWorker()},initialValue:!0},useSoftTabs:{initialValue:!0},tabSize:{set:function(e){e=parseInt(e),e>0&&this.$tabSize!==e&&(this.$modified=!0,this.$rowLengthCache=[],this.$tabSize=e,this._signal("changeTabSize"))},initialValue:4,handlesSet:!0},navigateWithinSoftTabs:{initialValue:!1},foldStyle:{set:function(e){this.setFoldStyle(e)},handlesSet:!0},overwrite:{set:function(e){this._signal("changeOverwrite")},initialValue:!1},newLineMode:{set:function(e){this.doc.setNewLineMode(e)},get:function(){return this.doc.getNewLineMode()},handlesSet:!0},mode:{set:function(e){this.setMode(e)},get:function(){return this.$modeId},handlesSet:!0}}),t.EditSession=p}),ace.define("ace/search",["require","exports","module","ace/lib/lang","ace/lib/oop","ace/range"],function(e,t,n){"use strict";var r=e("./lib/lang"),i=e("./lib/oop"),o=e("./range").Range,a=function(){this.$options={}};function s(e,t){function n(e){return/\w/.test(e)||t.regExp?"\\b":""}return n(e[0])+e+n(e[e.length-1])}(function(){this.set=function(e){return i.mixin(this.$options,e),this},this.getOptions=function(){return r.copyObject(this.$options)},this.setOptions=function(e){this.$options=e},this.find=function(e){var t=this.$options,n=this.$matchIterator(e,t);if(!n)return!1;var r=null;return n.forEach(function(e,n,i,a){return r=new o(e,n,i,a),!(n==a&&t.start&&t.start.start&&0!=t.skipCurrent&&r.isEqual(t.start))||(r=null,!1)}),r},this.findAll=function(e){var t=this.$options;if(!t.needle)return[];this.$assembleRegExp(t);var n=t.range,i=n?e.getLines(n.start.row,n.end.row):e.doc.getAllLines(),a=[],s=t.re;if(t.$isMultiLine){var l,c=s.length,u=i.length-c;e:for(var h=s.offset||0;h<=u;h++){for(var d=0;dm||(a.push(l=new o(h,m,h+c-1,g)),c>2&&(h=h+c-2))}}else for(var v=0;vx&&a[d].end.row==n.end.row)d--;for(a=a.slice(v,d+1),v=0,d=a.length;v=s;n--)if(h(n,Number.MAX_VALUE,e))return;if(0!=t.wrap)for(n=l,s=a.row;n>=s;n--)if(h(n,Number.MAX_VALUE,e))return}};else c=function(e){var n=a.row;if(!h(n,a.column,e)){for(n+=1;n<=l;n++)if(h(n,0,e))return;if(0!=t.wrap)for(n=s,l=a.row;n<=l;n++)if(h(n,0,e))return}};if(t.$isMultiLine)var u=n.length,h=function(t,i,o){var a=r?t-u+1:t;if(!(a<0||a+u>e.getLength())){var s=e.getLine(a),l=s.search(n[0]);if(!(!r&&li))return!!o(a,l,a+u-1,h)||void 0}}};else if(r)h=function(t,r,i){var o,a=e.getLine(t),s=[],l=0;n.lastIndex=0;while(o=n.exec(a)){var c=o[0].length;if(l=o.index,!c){if(l>=a.length)break;n.lastIndex=l+=1}if(o.index+c>r)break;s.push(o.index,c)}for(var u=s.length-1;u>=0;u-=2){var h=s[u-1];c=s[u];if(i(t,h,t,h+c))return!0}};else h=function(t,r,i){var o,a,s=e.getLine(t);n.lastIndex=r;while(a=n.exec(s)){var l=a[0].length;if(o=a.index,i(t,o,t,o+l))return!0;if(!l&&(n.lastIndex=o+=1,o>=s.length))return!1}};return{forEach:c}}}).call(a.prototype),t.Search=a}),ace.define("ace/keyboard/hash_handler",["require","exports","module","ace/lib/keys","ace/lib/useragent"],function(e,t,n){"use strict";var r=e("../lib/keys"),i=e("../lib/useragent"),o=r.KEY_MODS;function a(e,t){this.platform=t||(i.isMac?"mac":"win"),this.commands={},this.commandKeyBinding={},this.addCommands(e),this.$singleCommand=!0}function s(e,t){a.call(this,e,t),this.$singleCommand=!1}s.prototype=a.prototype,function(){function e(e){return"object"==typeof e&&e.bindKey&&e.bindKey.position||(e.isDefault?-100:0)}this.addCommand=function(e){this.commands[e.name]&&this.removeCommand(e),this.commands[e.name]=e,e.bindKey&&this._buildKeyHash(e)},this.removeCommand=function(e,t){var n=e&&("string"===typeof e?e:e.name);e=this.commands[n],t||delete this.commands[n];var r=this.commandKeyBinding;for(var i in r){var o=r[i];if(o==e)delete r[i];else if(Array.isArray(o)){var a=o.indexOf(e);-1!=a&&(o.splice(a,1),1==o.length&&(r[i]=o[0]))}}},this.bindKey=function(e,t,n){if("object"==typeof e&&e&&(void 0==n&&(n=e.position),e=e[this.platform]),e)return"function"==typeof t?this.addCommand({exec:t,bindKey:e,name:t.name||e}):void e.split("|").forEach(function(e){var r="";if(-1!=e.indexOf(" ")){var i=e.split(/\s+/);e=i.pop(),i.forEach(function(e){var t=this.parseKeys(e),n=o[t.hashId]+t.key;r+=(r?" ":"")+n,this._addCommandToBinding(r,"chainKeys")},this),r+=" "}var a=this.parseKeys(e),s=o[a.hashId]+a.key;this._addCommandToBinding(r+s,t,n)},this)},this._addCommandToBinding=function(t,n,r){var i,o=this.commandKeyBinding;if(n)if(!o[t]||this.$singleCommand)o[t]=n;else{Array.isArray(o[t])?-1!=(i=o[t].indexOf(n))&&o[t].splice(i,1):o[t]=[o[t]],"number"!=typeof r&&(r=e(n));var a=o[t];for(i=0;ir)break}a.splice(i,0,n)}else delete o[t]},this.addCommands=function(e){e&&Object.keys(e).forEach(function(t){var n=e[t];if(n){if("string"===typeof n)return this.bindKey(n,t);"function"===typeof n&&(n={exec:n}),"object"===typeof n&&(n.name||(n.name=t),this.addCommand(n))}},this)},this.removeCommands=function(e){Object.keys(e).forEach(function(t){this.removeCommand(e[t])},this)},this.bindKeys=function(e){Object.keys(e).forEach(function(t){this.bindKey(t,e[t])},this)},this._buildKeyHash=function(e){this.bindKey(e.bindKey,e)},this.parseKeys=function(e){var t=e.toLowerCase().split(/[\-\+]([\-\+])?/).filter(function(e){return e}),n=t.pop(),i=r[n];if(r.FUNCTION_KEYS[i])n=r.FUNCTION_KEYS[i].toLowerCase();else{if(!t.length)return{key:n,hashId:-1};if(1==t.length&&"shift"==t[0])return{key:n.toUpperCase(),hashId:-1}}for(var o=0,a=t.length;a--;){var s=r.KEY_MODS[t[a]];if(null==s)return"undefined"!=typeof console&&console.error("invalid modifier "+t[a]+" in "+e),!1;o|=s}return{key:n,hashId:o}},this.findKeyCommand=function(e,t){var n=o[e]+t;return this.commandKeyBinding[n]},this.handleKeyboard=function(e,t,n,r){if(!(r<0)){var i=o[t]+n,a=this.commandKeyBinding[i];return e.$keyChain&&(e.$keyChain+=" "+i,a=this.commandKeyBinding[e.$keyChain]||a),!a||"chainKeys"!=a&&"chainKeys"!=a[a.length-1]?(e.$keyChain&&(t&&4!=t||1!=n.length?(-1==t||r>0)&&(e.$keyChain=""):e.$keyChain=e.$keyChain.slice(0,-i.length-1)),{command:a}):(e.$keyChain=e.$keyChain||i,{command:"null"})}},this.getStatusText=function(e,t){return t.$keyChain||""}}.call(a.prototype),t.HashHandler=a,t.MultiHashHandler=s}),ace.define("ace/commands/command_manager",["require","exports","module","ace/lib/oop","ace/keyboard/hash_handler","ace/lib/event_emitter"],function(e,t,n){"use strict";var r=e("../lib/oop"),i=e("../keyboard/hash_handler").MultiHashHandler,o=e("../lib/event_emitter").EventEmitter,a=function(e,t){i.call(this,t,e),this.byName=this.commands,this.setDefaultHandler("exec",function(e){return e.command.exec(e.editor,e.args||{})})};r.inherits(a,i),function(){r.implement(this,o),this.exec=function(e,t,n){if(Array.isArray(e)){for(var r=e.length;r--;)if(this.exec(e[r],t,n))return!0;return!1}if("string"===typeof e&&(e=this.commands[e]),!e)return!1;if(t&&t.$readOnly&&!e.readOnly)return!1;if(0!=this.$checkCommandState&&e.isAvailable&&!e.isAvailable(t))return!1;var i={editor:t,command:e,args:n};return i.returnValue=this._emit("exec",i),this._signal("afterExec",i),!1!==i.returnValue},this.toggleRecording=function(e){if(!this.$inReplay)return e&&e._emit("changeStatus"),this.recording?(this.macro.pop(),this.off("exec",this.$addCommandToMacro),this.macro.length||(this.macro=this.oldMacro),this.recording=!1):(this.$addCommandToMacro||(this.$addCommandToMacro=function(e){this.macro.push([e.command,e.args])}.bind(this)),this.oldMacro=this.macro,this.macro=[],this.on("exec",this.$addCommandToMacro),this.recording=!0)},this.replay=function(e){if(!this.$inReplay&&this.macro){if(this.recording)return this.toggleRecording(e);try{this.$inReplay=!0,this.macro.forEach(function(t){"string"==typeof t?this.exec(t,e):this.exec(t[0],e,t[1])},this)}finally{this.$inReplay=!1}}},this.trimMacro=function(e){return e.map(function(e){return"string"!=typeof e[0]&&(e[0]=e[0].name),e[1]||(e=e[0]),e})}}.call(a.prototype),t.CommandManager=a}),ace.define("ace/commands/default_commands",["require","exports","module","ace/lib/lang","ace/config","ace/range"],function(e,t,n){"use strict";var r=e("../lib/lang"),i=e("../config"),o=e("../range").Range;function a(e,t){return{win:e,mac:t}}t.commands=[{name:"showSettingsMenu",description:"Show settings menu",bindKey:a("Ctrl-,","Command-,"),exec:function(e){i.loadModule("ace/ext/settings_menu",function(t){t.init(e),e.showSettingsMenu()})},readOnly:!0},{name:"goToNextError",description:"Go to next error",bindKey:a("Alt-E","F4"),exec:function(e){i.loadModule("./ext/error_marker",function(t){t.showErrorMarker(e,1)})},scrollIntoView:"animate",readOnly:!0},{name:"goToPreviousError",description:"Go to previous error",bindKey:a("Alt-Shift-E","Shift-F4"),exec:function(e){i.loadModule("./ext/error_marker",function(t){t.showErrorMarker(e,-1)})},scrollIntoView:"animate",readOnly:!0},{name:"selectall",description:"Select all",bindKey:a("Ctrl-A","Command-A"),exec:function(e){e.selectAll()},readOnly:!0},{name:"centerselection",description:"Center selection",bindKey:a(null,"Ctrl-L"),exec:function(e){e.centerSelection()},readOnly:!0},{name:"gotoline",description:"Go to line...",bindKey:a("Ctrl-L","Command-L"),exec:function(e,t){"number"!==typeof t||isNaN(t)||e.gotoLine(t),e.prompt({$type:"gotoLine"})},readOnly:!0},{name:"fold",bindKey:a("Alt-L|Ctrl-F1","Command-Alt-L|Command-F1"),exec:function(e){e.session.toggleFold(!1)},multiSelectAction:"forEach",scrollIntoView:"center",readOnly:!0},{name:"unfold",bindKey:a("Alt-Shift-L|Ctrl-Shift-F1","Command-Alt-Shift-L|Command-Shift-F1"),exec:function(e){e.session.toggleFold(!0)},multiSelectAction:"forEach",scrollIntoView:"center",readOnly:!0},{name:"toggleFoldWidget",description:"Toggle fold widget",bindKey:a("F2","F2"),exec:function(e){e.session.toggleFoldWidget()},multiSelectAction:"forEach",scrollIntoView:"center",readOnly:!0},{name:"toggleParentFoldWidget",description:"Toggle parent fold widget",bindKey:a("Alt-F2","Alt-F2"),exec:function(e){e.session.toggleFoldWidget(!0)},multiSelectAction:"forEach",scrollIntoView:"center",readOnly:!0},{name:"foldall",description:"Fold all",bindKey:a(null,"Ctrl-Command-Option-0"),exec:function(e){e.session.foldAll()},scrollIntoView:"center",readOnly:!0},{name:"foldAllComments",description:"Fold all comments",bindKey:a(null,"Ctrl-Command-Option-0"),exec:function(e){e.session.foldAllComments()},scrollIntoView:"center",readOnly:!0},{name:"foldOther",description:"Fold other",bindKey:a("Alt-0","Command-Option-0"),exec:function(e){e.session.foldAll(),e.session.unfold(e.selection.getAllRanges())},scrollIntoView:"center",readOnly:!0},{name:"unfoldall",description:"Unfold all",bindKey:a("Alt-Shift-0","Command-Option-Shift-0"),exec:function(e){e.session.unfold()},scrollIntoView:"center",readOnly:!0},{name:"findnext",description:"Find next",bindKey:a("Ctrl-K","Command-G"),exec:function(e){e.findNext()},multiSelectAction:"forEach",scrollIntoView:"center",readOnly:!0},{name:"findprevious",description:"Find previous",bindKey:a("Ctrl-Shift-K","Command-Shift-G"),exec:function(e){e.findPrevious()},multiSelectAction:"forEach",scrollIntoView:"center",readOnly:!0},{name:"selectOrFindNext",description:"Select or find next",bindKey:a("Alt-K","Ctrl-G"),exec:function(e){e.selection.isEmpty()?e.selection.selectWord():e.findNext()},readOnly:!0},{name:"selectOrFindPrevious",description:"Select or find previous",bindKey:a("Alt-Shift-K","Ctrl-Shift-G"),exec:function(e){e.selection.isEmpty()?e.selection.selectWord():e.findPrevious()},readOnly:!0},{name:"find",description:"Find",bindKey:a("Ctrl-F","Command-F"),exec:function(e){i.loadModule("ace/ext/searchbox",function(t){t.Search(e)})},readOnly:!0},{name:"overwrite",description:"Overwrite",bindKey:"Insert",exec:function(e){e.toggleOverwrite()},readOnly:!0},{name:"selecttostart",description:"Select to start",bindKey:a("Ctrl-Shift-Home","Command-Shift-Home|Command-Shift-Up"),exec:function(e){e.getSelection().selectFileStart()},multiSelectAction:"forEach",readOnly:!0,scrollIntoView:"animate",aceCommandGroup:"fileJump"},{name:"gotostart",description:"Go to start",bindKey:a("Ctrl-Home","Command-Home|Command-Up"),exec:function(e){e.navigateFileStart()},multiSelectAction:"forEach",readOnly:!0,scrollIntoView:"animate",aceCommandGroup:"fileJump"},{name:"selectup",description:"Select up",bindKey:a("Shift-Up","Shift-Up|Ctrl-Shift-P"),exec:function(e){e.getSelection().selectUp()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"golineup",description:"Go line up",bindKey:a("Up","Up|Ctrl-P"),exec:function(e,t){e.navigateUp(t.times)},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"selecttoend",description:"Select to end",bindKey:a("Ctrl-Shift-End","Command-Shift-End|Command-Shift-Down"),exec:function(e){e.getSelection().selectFileEnd()},multiSelectAction:"forEach",readOnly:!0,scrollIntoView:"animate",aceCommandGroup:"fileJump"},{name:"gotoend",description:"Go to end",bindKey:a("Ctrl-End","Command-End|Command-Down"),exec:function(e){e.navigateFileEnd()},multiSelectAction:"forEach",readOnly:!0,scrollIntoView:"animate",aceCommandGroup:"fileJump"},{name:"selectdown",description:"Select down",bindKey:a("Shift-Down","Shift-Down|Ctrl-Shift-N"),exec:function(e){e.getSelection().selectDown()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"golinedown",description:"Go line down",bindKey:a("Down","Down|Ctrl-N"),exec:function(e,t){e.navigateDown(t.times)},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"selectwordleft",description:"Select word left",bindKey:a("Ctrl-Shift-Left","Option-Shift-Left"),exec:function(e){e.getSelection().selectWordLeft()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"gotowordleft",description:"Go to word left",bindKey:a("Ctrl-Left","Option-Left"),exec:function(e){e.navigateWordLeft()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"selecttolinestart",description:"Select to line start",bindKey:a("Alt-Shift-Left","Command-Shift-Left|Ctrl-Shift-A"),exec:function(e){e.getSelection().selectLineStart()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"gotolinestart",description:"Go to line start",bindKey:a("Alt-Left|Home","Command-Left|Home|Ctrl-A"),exec:function(e){e.navigateLineStart()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"selectleft",description:"Select left",bindKey:a("Shift-Left","Shift-Left|Ctrl-Shift-B"),exec:function(e){e.getSelection().selectLeft()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"gotoleft",description:"Go to left",bindKey:a("Left","Left|Ctrl-B"),exec:function(e,t){e.navigateLeft(t.times)},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"selectwordright",description:"Select word right",bindKey:a("Ctrl-Shift-Right","Option-Shift-Right"),exec:function(e){e.getSelection().selectWordRight()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"gotowordright",description:"Go to word right",bindKey:a("Ctrl-Right","Option-Right"),exec:function(e){e.navigateWordRight()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"selecttolineend",description:"Select to line end",bindKey:a("Alt-Shift-Right","Command-Shift-Right|Shift-End|Ctrl-Shift-E"),exec:function(e){e.getSelection().selectLineEnd()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"gotolineend",description:"Go to line end",bindKey:a("Alt-Right|End","Command-Right|End|Ctrl-E"),exec:function(e){e.navigateLineEnd()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"selectright",description:"Select right",bindKey:a("Shift-Right","Shift-Right"),exec:function(e){e.getSelection().selectRight()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"gotoright",description:"Go to right",bindKey:a("Right","Right|Ctrl-F"),exec:function(e,t){e.navigateRight(t.times)},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"selectpagedown",description:"Select page down",bindKey:"Shift-PageDown",exec:function(e){e.selectPageDown()},readOnly:!0},{name:"pagedown",description:"Page down",bindKey:a(null,"Option-PageDown"),exec:function(e){e.scrollPageDown()},readOnly:!0},{name:"gotopagedown",description:"Go to page down",bindKey:a("PageDown","PageDown|Ctrl-V"),exec:function(e){e.gotoPageDown()},readOnly:!0},{name:"selectpageup",description:"Select page up",bindKey:"Shift-PageUp",exec:function(e){e.selectPageUp()},readOnly:!0},{name:"pageup",description:"Page up",bindKey:a(null,"Option-PageUp"),exec:function(e){e.scrollPageUp()},readOnly:!0},{name:"gotopageup",description:"Go to page up",bindKey:"PageUp",exec:function(e){e.gotoPageUp()},readOnly:!0},{name:"scrollup",description:"Scroll up",bindKey:a("Ctrl-Up",null),exec:function(e){e.renderer.scrollBy(0,-2*e.renderer.layerConfig.lineHeight)},readOnly:!0},{name:"scrolldown",description:"Scroll down",bindKey:a("Ctrl-Down",null),exec:function(e){e.renderer.scrollBy(0,2*e.renderer.layerConfig.lineHeight)},readOnly:!0},{name:"selectlinestart",description:"Select line start",bindKey:"Shift-Home",exec:function(e){e.getSelection().selectLineStart()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"selectlineend",description:"Select line end",bindKey:"Shift-End",exec:function(e){e.getSelection().selectLineEnd()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"togglerecording",description:"Toggle recording",bindKey:a("Ctrl-Alt-E","Command-Option-E"),exec:function(e){e.commands.toggleRecording(e)},readOnly:!0},{name:"replaymacro",description:"Replay macro",bindKey:a("Ctrl-Shift-E","Command-Shift-E"),exec:function(e){e.commands.replay(e)},readOnly:!0},{name:"jumptomatching",description:"Jump to matching",bindKey:a("Ctrl-\\|Ctrl-P","Command-\\"),exec:function(e){e.jumpToMatching()},multiSelectAction:"forEach",scrollIntoView:"animate",readOnly:!0},{name:"selecttomatching",description:"Select to matching",bindKey:a("Ctrl-Shift-\\|Ctrl-Shift-P","Command-Shift-\\"),exec:function(e){e.jumpToMatching(!0)},multiSelectAction:"forEach",scrollIntoView:"animate",readOnly:!0},{name:"expandToMatching",description:"Expand to matching",bindKey:a("Ctrl-Shift-M","Ctrl-Shift-M"),exec:function(e){e.jumpToMatching(!0,!0)},multiSelectAction:"forEach",scrollIntoView:"animate",readOnly:!0},{name:"passKeysToBrowser",description:"Pass keys to browser",bindKey:a(null,null),exec:function(){},passEvent:!0,readOnly:!0},{name:"copy",description:"Copy",exec:function(e){},readOnly:!0},{name:"cut",description:"Cut",exec:function(e){var t=e.$copyWithEmptySelection&&e.selection.isEmpty(),n=t?e.selection.getLineRange():e.selection.getRange();e._emit("cut",n),n.isEmpty()||e.session.remove(n),e.clearSelection()},scrollIntoView:"cursor",multiSelectAction:"forEach"},{name:"paste",description:"Paste",exec:function(e,t){e.$handlePaste(t)},scrollIntoView:"cursor"},{name:"removeline",description:"Remove line",bindKey:a("Ctrl-D","Command-D"),exec:function(e){e.removeLines()},scrollIntoView:"cursor",multiSelectAction:"forEachLine"},{name:"duplicateSelection",description:"Duplicate selection",bindKey:a("Ctrl-Shift-D","Command-Shift-D"),exec:function(e){e.duplicateSelection()},scrollIntoView:"cursor",multiSelectAction:"forEach"},{name:"sortlines",description:"Sort lines",bindKey:a("Ctrl-Alt-S","Command-Alt-S"),exec:function(e){e.sortLines()},scrollIntoView:"selection",multiSelectAction:"forEachLine"},{name:"togglecomment",description:"Toggle comment",bindKey:a("Ctrl-/","Command-/"),exec:function(e){e.toggleCommentLines()},multiSelectAction:"forEachLine",scrollIntoView:"selectionPart"},{name:"toggleBlockComment",description:"Toggle block comment",bindKey:a("Ctrl-Shift-/","Command-Shift-/"),exec:function(e){e.toggleBlockComment()},multiSelectAction:"forEach",scrollIntoView:"selectionPart"},{name:"modifyNumberUp",description:"Modify number up",bindKey:a("Ctrl-Shift-Up","Alt-Shift-Up"),exec:function(e){e.modifyNumber(1)},scrollIntoView:"cursor",multiSelectAction:"forEach"},{name:"modifyNumberDown",description:"Modify number down",bindKey:a("Ctrl-Shift-Down","Alt-Shift-Down"),exec:function(e){e.modifyNumber(-1)},scrollIntoView:"cursor",multiSelectAction:"forEach"},{name:"replace",description:"Replace",bindKey:a("Ctrl-H","Command-Option-F"),exec:function(e){i.loadModule("ace/ext/searchbox",function(t){t.Search(e,!0)})}},{name:"undo",description:"Undo",bindKey:a("Ctrl-Z","Command-Z"),exec:function(e){e.undo()}},{name:"redo",description:"Redo",bindKey:a("Ctrl-Shift-Z|Ctrl-Y","Command-Shift-Z|Command-Y"),exec:function(e){e.redo()}},{name:"copylinesup",description:"Copy lines up",bindKey:a("Alt-Shift-Up","Command-Option-Up"),exec:function(e){e.copyLinesUp()},scrollIntoView:"cursor"},{name:"movelinesup",description:"Move lines up",bindKey:a("Alt-Up","Option-Up"),exec:function(e){e.moveLinesUp()},scrollIntoView:"cursor"},{name:"copylinesdown",description:"Copy lines down",bindKey:a("Alt-Shift-Down","Command-Option-Down"),exec:function(e){e.copyLinesDown()},scrollIntoView:"cursor"},{name:"movelinesdown",description:"Move lines down",bindKey:a("Alt-Down","Option-Down"),exec:function(e){e.moveLinesDown()},scrollIntoView:"cursor"},{name:"del",description:"Delete",bindKey:a("Delete","Delete|Ctrl-D|Shift-Delete"),exec:function(e){e.remove("right")},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"backspace",description:"Backspace",bindKey:a("Shift-Backspace|Backspace","Ctrl-Backspace|Shift-Backspace|Backspace|Ctrl-H"),exec:function(e){e.remove("left")},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"cut_or_delete",description:"Cut or delete",bindKey:a("Shift-Delete",null),exec:function(e){if(!e.selection.isEmpty())return!1;e.remove("left")},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"removetolinestart",description:"Remove to line start",bindKey:a("Alt-Backspace","Command-Backspace"),exec:function(e){e.removeToLineStart()},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"removetolineend",description:"Remove to line end",bindKey:a("Alt-Delete","Ctrl-K|Command-Delete"),exec:function(e){e.removeToLineEnd()},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"removetolinestarthard",description:"Remove to line start hard",bindKey:a("Ctrl-Shift-Backspace",null),exec:function(e){var t=e.selection.getRange();t.start.column=0,e.session.remove(t)},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"removetolineendhard",description:"Remove to line end hard",bindKey:a("Ctrl-Shift-Delete",null),exec:function(e){var t=e.selection.getRange();t.end.column=Number.MAX_VALUE,e.session.remove(t)},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"removewordleft",description:"Remove word left",bindKey:a("Ctrl-Backspace","Alt-Backspace|Ctrl-Alt-Backspace"),exec:function(e){e.removeWordLeft()},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"removewordright",description:"Remove word right",bindKey:a("Ctrl-Delete","Alt-Delete"),exec:function(e){e.removeWordRight()},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"outdent",description:"Outdent",bindKey:a("Shift-Tab","Shift-Tab"),exec:function(e){e.blockOutdent()},multiSelectAction:"forEach",scrollIntoView:"selectionPart"},{name:"indent",description:"Indent",bindKey:a("Tab","Tab"),exec:function(e){e.indent()},multiSelectAction:"forEach",scrollIntoView:"selectionPart"},{name:"blockoutdent",description:"Block outdent",bindKey:a("Ctrl-[","Ctrl-["),exec:function(e){e.blockOutdent()},multiSelectAction:"forEachLine",scrollIntoView:"selectionPart"},{name:"blockindent",description:"Block indent",bindKey:a("Ctrl-]","Ctrl-]"),exec:function(e){e.blockIndent()},multiSelectAction:"forEachLine",scrollIntoView:"selectionPart"},{name:"insertstring",description:"Insert string",exec:function(e,t){e.insert(t)},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"inserttext",description:"Insert text",exec:function(e,t){e.insert(r.stringRepeat(t.text||"",t.times||1))},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"splitline",description:"Split line",bindKey:a(null,"Ctrl-O"),exec:function(e){e.splitLine()},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"transposeletters",description:"Transpose letters",bindKey:a("Alt-Shift-X","Ctrl-T"),exec:function(e){e.transposeLetters()},multiSelectAction:function(e){e.transposeSelections(1)},scrollIntoView:"cursor"},{name:"touppercase",description:"To uppercase",bindKey:a("Ctrl-U","Ctrl-U"),exec:function(e){e.toUpperCase()},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"tolowercase",description:"To lowercase",bindKey:a("Ctrl-Shift-U","Ctrl-Shift-U"),exec:function(e){e.toLowerCase()},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"autoindent",description:"Auto Indent",bindKey:a(null,null),exec:function(e){e.autoIndent()},multiSelectAction:"forEachLine",scrollIntoView:"animate"},{name:"expandtoline",description:"Expand to line",bindKey:a("Ctrl-Shift-L","Command-Shift-L"),exec:function(e){var t=e.selection.getRange();t.start.column=t.end.column=0,t.end.row++,e.selection.setRange(t,!1)},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"joinlines",description:"Join lines",bindKey:a(null,null),exec:function(e){for(var t=e.selection.isBackwards(),n=t?e.selection.getSelectionLead():e.selection.getSelectionAnchor(),i=t?e.selection.getSelectionAnchor():e.selection.getSelectionLead(),a=e.session.doc.getLine(n.row).length,s=e.session.doc.getTextRange(e.selection.getRange()),l=s.replace(/\n\s*/," ").length,c=e.session.doc.getLine(n.row),u=n.row+1;u<=i.row+1;u++){var h=r.stringTrimLeft(r.stringTrimRight(e.session.doc.getLine(u)));0!==h.length&&(h=" "+h),c+=h}i.row+10?(e.selection.moveCursorTo(n.row,n.column),e.selection.selectTo(n.row,n.column+l)):(a=e.session.doc.getLine(n.row).length>a?a+1:a,e.selection.moveCursorTo(n.row,a))},multiSelectAction:"forEach",readOnly:!0},{name:"invertSelection",description:"Invert selection",bindKey:a(null,null),exec:function(e){var t=e.session.doc.getLength()-1,n=e.session.doc.getLine(t).length,r=e.selection.rangeList.ranges,i=[];r.length<1&&(r=[e.selection.getRange()]);for(var a=0;a=i.lastRow||r.end.row<=i.firstRow)&&this.renderer.scrollSelectionIntoView(this.selection.anchor,this.selection.lead);break;default:break}"animate"==n&&this.renderer.animateScrolling(this.curOp.scrollTop)}var o=this.selection.toJSON();this.curOp.selectionAfter=o,this.$lastSel=this.selection.toJSON(),this.session.getUndoManager().addSelection(o),this.prevOp=this.curOp,this.curOp=null}},this.$mergeableCommands=["backspace","del","insertstring"],this.$historyTracker=function(e){if(this.$mergeUndoDeltas){var t=this.prevOp,n=this.$mergeableCommands,r=t.command&&e.command.name==t.command.name;if("insertstring"==e.command.name){var i=e.args;void 0===this.mergeNextCommand&&(this.mergeNextCommand=!0),r=r&&this.mergeNextCommand&&(!/\s/.test(i)||/\s/.test(t.args)),this.mergeNextCommand=!0}else r=r&&-1!==n.indexOf(e.command.name);"always"!=this.$mergeUndoDeltas&&Date.now()-this.sequenceStartTime>2e3&&(r=!1),r?this.session.mergeUndoDeltas=!0:-1!==n.indexOf(e.command.name)&&(this.sequenceStartTime=Date.now())}},this.setKeyboardHandler=function(e,t){if(e&&"string"===typeof e&&"ace"!=e){this.$keybindingId=e;var n=this;v.loadModule(["keybinding",e],function(r){n.$keybindingId==e&&n.keyBinding.setKeyboardHandler(r&&r.handler),t&&t()})}else this.$keybindingId=null,this.keyBinding.setKeyboardHandler(e),t&&t()},this.getKeyboardHandler=function(){return this.keyBinding.getKeyboardHandler()},this.setSession=function(e){if(this.session!=e){this.curOp&&this.endOperation(),this.curOp={};var t=this.session;if(t){this.session.off("change",this.$onDocumentChange),this.session.off("changeMode",this.$onChangeMode),this.session.off("tokenizerUpdate",this.$onTokenizerUpdate),this.session.off("changeTabSize",this.$onChangeTabSize),this.session.off("changeWrapLimit",this.$onChangeWrapLimit),this.session.off("changeWrapMode",this.$onChangeWrapMode),this.session.off("changeFold",this.$onChangeFold),this.session.off("changeFrontMarker",this.$onChangeFrontMarker),this.session.off("changeBackMarker",this.$onChangeBackMarker),this.session.off("changeBreakpoint",this.$onChangeBreakpoint),this.session.off("changeAnnotation",this.$onChangeAnnotation),this.session.off("changeOverwrite",this.$onCursorChange),this.session.off("changeScrollTop",this.$onScrollTopChange),this.session.off("changeScrollLeft",this.$onScrollLeftChange);var n=this.session.getSelection();n.off("changeCursor",this.$onCursorChange),n.off("changeSelection",this.$onSelectionChange)}this.session=e,e?(this.$onDocumentChange=this.onDocumentChange.bind(this),e.on("change",this.$onDocumentChange),this.renderer.setSession(e),this.$onChangeMode=this.onChangeMode.bind(this),e.on("changeMode",this.$onChangeMode),this.$onTokenizerUpdate=this.onTokenizerUpdate.bind(this),e.on("tokenizerUpdate",this.$onTokenizerUpdate),this.$onChangeTabSize=this.renderer.onChangeTabSize.bind(this.renderer),e.on("changeTabSize",this.$onChangeTabSize),this.$onChangeWrapLimit=this.onChangeWrapLimit.bind(this),e.on("changeWrapLimit",this.$onChangeWrapLimit),this.$onChangeWrapMode=this.onChangeWrapMode.bind(this),e.on("changeWrapMode",this.$onChangeWrapMode),this.$onChangeFold=this.onChangeFold.bind(this),e.on("changeFold",this.$onChangeFold),this.$onChangeFrontMarker=this.onChangeFrontMarker.bind(this),this.session.on("changeFrontMarker",this.$onChangeFrontMarker),this.$onChangeBackMarker=this.onChangeBackMarker.bind(this),this.session.on("changeBackMarker",this.$onChangeBackMarker),this.$onChangeBreakpoint=this.onChangeBreakpoint.bind(this),this.session.on("changeBreakpoint",this.$onChangeBreakpoint),this.$onChangeAnnotation=this.onChangeAnnotation.bind(this),this.session.on("changeAnnotation",this.$onChangeAnnotation),this.$onCursorChange=this.onCursorChange.bind(this),this.session.on("changeOverwrite",this.$onCursorChange),this.$onScrollTopChange=this.onScrollTopChange.bind(this),this.session.on("changeScrollTop",this.$onScrollTopChange),this.$onScrollLeftChange=this.onScrollLeftChange.bind(this),this.session.on("changeScrollLeft",this.$onScrollLeftChange),this.selection=e.getSelection(),this.selection.on("changeCursor",this.$onCursorChange),this.$onSelectionChange=this.onSelectionChange.bind(this),this.selection.on("changeSelection",this.$onSelectionChange),this.onChangeMode(),this.onCursorChange(),this.onScrollTopChange(),this.onScrollLeftChange(),this.onSelectionChange(),this.onChangeFrontMarker(),this.onChangeBackMarker(),this.onChangeBreakpoint(),this.onChangeAnnotation(),this.session.getUseWrapMode()&&this.renderer.adjustWrapLimit(),this.renderer.updateFull()):(this.selection=null,this.renderer.setSession(e)),this._signal("changeSession",{session:e,oldSession:t}),this.curOp=null,t&&t._signal("changeEditor",{oldEditor:this}),e&&e._signal("changeEditor",{editor:this}),e&&e.bgTokenizer&&e.bgTokenizer.scheduleStart()}},this.getSession=function(){return this.session},this.setValue=function(e,t){return this.session.doc.setValue(e),t?1==t?this.navigateFileEnd():-1==t&&this.navigateFileStart():this.selectAll(),e},this.getValue=function(){return this.session.getValue()},this.getSelection=function(){return this.selection},this.resize=function(e){this.renderer.onResize(e)},this.setTheme=function(e,t){this.renderer.setTheme(e,t)},this.getTheme=function(){return this.renderer.getTheme()},this.setStyle=function(e){this.renderer.setStyle(e)},this.unsetStyle=function(e){this.renderer.unsetStyle(e)},this.getFontSize=function(){return this.getOption("fontSize")||i.computedStyle(this.container).fontSize},this.setFontSize=function(e){this.setOption("fontSize",e)},this.$highlightBrackets=function(){if(!this.$highlightPending){var e=this;this.$highlightPending=!0,setTimeout(function(){e.$highlightPending=!1;var t=e.session;if(t&&t.bgTokenizer){t.$bracketHighlight&&(t.$bracketHighlight.markerIds.forEach(function(e){t.removeMarker(e)}),t.$bracketHighlight=null);var n=t.getMatchingBracketRanges(e.getCursorPosition());if(!n&&t.$mode.getMatching&&(n=t.$mode.getMatching(e.session)),n){var r="ace_bracket";Array.isArray(n)?1==n.length&&(r="ace_error_bracket"):n=[n],2==n.length&&(0==f.comparePoints(n[0].end,n[1].start)?n=[f.fromPoints(n[0].start,n[1].end)]:0==f.comparePoints(n[0].start,n[1].end)&&(n=[f.fromPoints(n[1].start,n[0].end)])),t.$bracketHighlight={ranges:n,markerIds:n.map(function(e){return t.addMarker(e,r,"text")})}}}},50)}},this.$highlightTags=function(){if(!this.$highlightTagPending){var e=this;this.$highlightTagPending=!0,setTimeout(function(){e.$highlightTagPending=!1;var t=e.session;if(t&&t.bgTokenizer){var n=e.getCursorPosition(),r=new y(e.session,n.row,n.column),i=r.getCurrentToken();if(!i||!/\b(?:tag-open|tag-name)/.test(i.type))return t.removeMarker(t.$tagHighlight),void(t.$tagHighlight=null);if(-1===i.type.indexOf("tag-open")||(i=r.stepForward(),i)){var o=i.value,a=i.value,s=0,l=r.stepBackward();if("<"===l.value)do{l=i,i=r.stepForward(),i&&(-1!==i.type.indexOf("tag-name")?(a=i.value,o===a&&("<"===l.value?s++:""===i.value&&s--)}while(i&&s>=0);else{do{if(i=l,l=r.stepBackward(),i)if(-1!==i.type.indexOf("tag-name"))o===i.value&&("<"===l.value?s++:""===i.value){var c=0,u=l;while(u){if(-1!==u.type.indexOf("tag-name")&&u.value===o){s--;break}if("<"===u.value)break;u=r.stepBackward(),c++}for(var h=0;h1||(e=!1)),t.$highlightLineMarker&&!e)t.removeMarker(t.$highlightLineMarker.id),t.$highlightLineMarker=null;else if(!t.$highlightLineMarker&&e){var n=new f(e.row,e.column,e.row,1/0);n.id=t.addMarker(n,"ace_active-line","screenLine"),t.$highlightLineMarker=n}else e&&(t.$highlightLineMarker.start.row=e.row,t.$highlightLineMarker.end.row=e.row,t.$highlightLineMarker.start.column=e.column,t._signal("changeBackMarker"))},this.onSelectionChange=function(e){var t=this.session;if(t.$selectionMarker&&t.removeMarker(t.$selectionMarker),t.$selectionMarker=null,this.selection.isEmpty())this.$updateHighlightActiveLine();else{var n=this.selection.getRange(),r=this.getSelectionStyle();t.$selectionMarker=t.addMarker(n,"ace_selection",r)}var i=this.$highlightSelectedWord&&this.$getSelectionHighLightRegexp();this.session.highlight(i),this._signal("changeSelection")},this.$getSelectionHighLightRegexp=function(){var e=this.session,t=this.getSelectionRange();if(!t.isEmpty()&&!t.isMultiLine()){var n=t.start.column,r=t.end.column,i=e.getLine(t.start.row),o=i.substring(n,r);if(!(o.length>5e3)&&/[\w\d]/.test(o)){var a=this.$search.$assembleRegExp({wholeWord:!0,caseSensitive:!0,needle:o}),s=i.substring(n-1,r+1);if(a.test(s))return a}}},this.onChangeFrontMarker=function(){this.renderer.updateFrontMarkers()},this.onChangeBackMarker=function(){this.renderer.updateBackMarkers()},this.onChangeBreakpoint=function(){this.renderer.updateBreakpoints()},this.onChangeAnnotation=function(){this.renderer.setAnnotations(this.session.getAnnotations())},this.onChangeMode=function(e){this.renderer.updateText(),this._emit("changeMode",e)},this.onChangeWrapLimit=function(){this.renderer.updateFull()},this.onChangeWrapMode=function(){this.renderer.onResize(!0)},this.onChangeFold=function(){this.$updateHighlightActiveLine(),this.renderer.updateFull()},this.getSelectedText=function(){return this.session.getTextRange(this.getSelectionRange())},this.getCopyText=function(){var e=this.getSelectedText(),t=this.session.doc.getNewLineCharacter(),n=!1;if(!e&&this.$copyWithEmptySelection){n=!0;for(var r=this.selection.getAllRanges(),i=0;is.search(/\S|$/)){var l=s.substr(i.column).search(/\S|$/);n.doc.removeInLine(i.row,i.column,i.column+l)}}this.clearSelection();var c=i.column,u=n.getState(i.row),h=(s=n.getLine(i.row),r.checkOutdent(u,s,e));if(n.insert(i,e),o&&o.selection&&(2==o.selection.length?this.selection.setSelectionRange(new f(i.row,c+o.selection[0],i.row,c+o.selection[1])):this.selection.setSelectionRange(new f(i.row+o.selection[0],o.selection[1],i.row+o.selection[2],o.selection[3]))),this.$enableAutoIndent){if(n.getDocument().isNewLine(e)){var d=r.getNextLineIndent(u,s.slice(0,i.column),n.getTabString());n.insert({row:i.row+1,column:0},d)}h&&r.autoOutdent(u,n,i.row)}},this.autoIndent=function(){var e,t,n=this.session,r=n.getMode();if(this.selection.isEmpty())e=0,t=n.doc.getLength()-1;else{var i=this.getSelectionRange();e=i.start.row,t=i.end.row}for(var o,a,s,l="",c="",u="",h=n.getTabString(),d=e;d<=t;d++)d>0&&(l=n.getState(d-1),c=n.getLine(d-1),u=r.getNextLineIndent(l,c,h)),o=n.getLine(d),a=r.$getIndent(o),u!==a&&(a.length>0&&(s=new f(d,0,d,a.length),n.remove(s)),u.length>0&&n.insert({row:d,column:0},u)),r.autoOutdent(l,n,d)},this.onTextInput=function(e,t){if(!t)return this.keyBinding.onTextInput(e);this.startOperation({command:{name:"insertstring"}});var n=this.applyComposition.bind(this,e,t);this.selection.rangeCount?this.forEachSelection(n):n(),this.endOperation()},this.applyComposition=function(e,t){if(t.extendLeft||t.extendRight){var n=this.selection.getRange();n.start.column-=t.extendLeft,n.end.column+=t.extendRight,n.start.column<0&&(n.start.row--,n.start.column+=this.session.getLine(n.start.row).length+1),this.selection.setRange(n),e||n.isEmpty()||this.remove()}if(!e&&this.selection.isEmpty()||this.insert(e,!0),t.restoreStart||t.restoreEnd){n=this.selection.getRange();n.start.column-=t.restoreStart,n.end.column-=t.restoreEnd,this.selection.setRange(n)}},this.onCommandKey=function(e,t,n){return this.keyBinding.onCommandKey(e,t,n)},this.setOverwrite=function(e){this.session.setOverwrite(e)},this.getOverwrite=function(){return this.session.getOverwrite()},this.toggleOverwrite=function(){this.session.toggleOverwrite()},this.setScrollSpeed=function(e){this.setOption("scrollSpeed",e)},this.getScrollSpeed=function(){return this.getOption("scrollSpeed")},this.setDragDelay=function(e){this.setOption("dragDelay",e)},this.getDragDelay=function(){return this.getOption("dragDelay")},this.setSelectionStyle=function(e){this.setOption("selectionStyle",e)},this.getSelectionStyle=function(){return this.getOption("selectionStyle")},this.setHighlightActiveLine=function(e){this.setOption("highlightActiveLine",e)},this.getHighlightActiveLine=function(){return this.getOption("highlightActiveLine")},this.setHighlightGutterLine=function(e){this.setOption("highlightGutterLine",e)},this.getHighlightGutterLine=function(){return this.getOption("highlightGutterLine")},this.setHighlightSelectedWord=function(e){this.setOption("highlightSelectedWord",e)},this.getHighlightSelectedWord=function(){return this.$highlightSelectedWord},this.setAnimatedScroll=function(e){this.renderer.setAnimatedScroll(e)},this.getAnimatedScroll=function(){return this.renderer.getAnimatedScroll()},this.setShowInvisibles=function(e){this.renderer.setShowInvisibles(e)},this.getShowInvisibles=function(){return this.renderer.getShowInvisibles()},this.setDisplayIndentGuides=function(e){this.renderer.setDisplayIndentGuides(e)},this.getDisplayIndentGuides=function(){return this.renderer.getDisplayIndentGuides()},this.setShowPrintMargin=function(e){this.renderer.setShowPrintMargin(e)},this.getShowPrintMargin=function(){return this.renderer.getShowPrintMargin()},this.setPrintMarginColumn=function(e){this.renderer.setPrintMarginColumn(e)},this.getPrintMarginColumn=function(){return this.renderer.getPrintMarginColumn()},this.setReadOnly=function(e){this.setOption("readOnly",e)},this.getReadOnly=function(){return this.getOption("readOnly")},this.setBehavioursEnabled=function(e){this.setOption("behavioursEnabled",e)},this.getBehavioursEnabled=function(){return this.getOption("behavioursEnabled")},this.setWrapBehavioursEnabled=function(e){this.setOption("wrapBehavioursEnabled",e)},this.getWrapBehavioursEnabled=function(){return this.getOption("wrapBehavioursEnabled")},this.setShowFoldWidgets=function(e){this.setOption("showFoldWidgets",e)},this.getShowFoldWidgets=function(){return this.getOption("showFoldWidgets")},this.setFadeFoldWidgets=function(e){this.setOption("fadeFoldWidgets",e)},this.getFadeFoldWidgets=function(){return this.getOption("fadeFoldWidgets")},this.remove=function(e){this.selection.isEmpty()&&("left"==e?this.selection.selectLeft():this.selection.selectRight());var t=this.getSelectionRange();if(this.getBehavioursEnabled()){var n=this.session,r=n.getState(t.start.row),i=n.getMode().transformAction(r,"deletion",this,n,t);if(0===t.end.column){var o=n.getTextRange(t);if("\n"==o[o.length-1]){var a=n.getLine(t.end.row);/^\s+$/.test(a)&&(t.end.column=a.length)}}i&&(t=i)}this.session.remove(t),this.clearSelection()},this.removeWordRight=function(){this.selection.isEmpty()&&this.selection.selectWordRight(),this.session.remove(this.getSelectionRange()),this.clearSelection()},this.removeWordLeft=function(){this.selection.isEmpty()&&this.selection.selectWordLeft(),this.session.remove(this.getSelectionRange()),this.clearSelection()},this.removeToLineStart=function(){this.selection.isEmpty()&&this.selection.selectLineStart(),this.selection.isEmpty()&&this.selection.selectLeft(),this.session.remove(this.getSelectionRange()),this.clearSelection()},this.removeToLineEnd=function(){this.selection.isEmpty()&&this.selection.selectLineEnd();var e=this.getSelectionRange();e.start.column==e.end.column&&e.start.row==e.end.row&&(e.end.column=0,e.end.row++),this.session.remove(e),this.clearSelection()},this.splitLine=function(){this.selection.isEmpty()||(this.session.remove(this.getSelectionRange()),this.clearSelection());var e=this.getCursorPosition();this.insert("\n"),this.moveCursorToPosition(e)},this.transposeLetters=function(){if(this.selection.isEmpty()){var e=this.getCursorPosition(),t=e.column;if(0!==t){var n,r,i=this.session.getLine(e.row);tt.toLowerCase()?1:0});var i=new f(0,0,0,0);for(r=e.first;r<=e.last;r++){var o=t.getLine(r);i.start.row=r,i.end.row=r,i.end.column=o.length,t.replace(i,n[r-e.first])}},this.toggleCommentLines=function(){var e=this.session.getState(this.getCursorPosition().row),t=this.$getSelectedRows();this.session.getMode().toggleCommentLines(e,this.session,t.first,t.last)},this.toggleBlockComment=function(){var e=this.getCursorPosition(),t=this.session.getState(e.row),n=this.getSelectionRange();this.session.getMode().toggleBlockComment(t,this.session,n,e)},this.getNumberAt=function(e,t){var n=/[\-]?[0-9]+(?:\.[0-9]+)?/g;n.lastIndex=0;var r=this.session.getLine(e);while(n.lastIndex=t){var o={value:i[0],start:i.index,end:i.index+i[0].length};return o}}return null},this.modifyNumber=function(e){var t=this.selection.getCursor().row,n=this.selection.getCursor().column,r=new f(t,n-1,t,n),i=this.session.getTextRange(r);if(!isNaN(parseFloat(i))&&isFinite(i)){var o=this.getNumberAt(t,n);if(o){var a=o.value.indexOf(".")>=0?o.start+o.value.indexOf(".")+1:o.end,s=o.start+o.value.length-a,l=parseFloat(o.value);l*=Math.pow(10,s),a!==o.end&&n=s&&a<=l&&(n=t,c.selection.clearSelection(),c.moveCursorTo(e,s+r),c.selection.selectTo(e,l+r)),s=l});for(var u,h=this.$toggleWordPairs,d=0;df+1)break;f=p.last}u--,s=this.session.$moveLines(d,f,t?0:e),t&&-1==e&&(h=u+1);while(h<=u)a[h].moveBy(s,0),h++;t||(s=0),l+=s}i.fromOrientedRange(i.ranges[0]),i.rangeList.attach(this.session),this.inVirtualSelectionMode=!1}},this.$getSelectedRows=function(e){return e=(e||this.getSelectionRange()).collapseRows(),{first:this.session.getRowFoldStart(e.start.row),last:this.session.getRowFoldEnd(e.end.row)}},this.onCompositionStart=function(e){this.renderer.showComposition(e)},this.onCompositionUpdate=function(e){this.renderer.setCompositionText(e)},this.onCompositionEnd=function(){this.renderer.hideComposition()},this.getFirstVisibleRow=function(){return this.renderer.getFirstVisibleRow()},this.getLastVisibleRow=function(){return this.renderer.getLastVisibleRow()},this.isRowVisible=function(e){return e>=this.getFirstVisibleRow()&&e<=this.getLastVisibleRow()},this.isRowFullyVisible=function(e){return e>=this.renderer.getFirstFullyVisibleRow()&&e<=this.renderer.getLastFullyVisibleRow()},this.$getVisibleRowCount=function(){return this.renderer.getScrollBottomRow()-this.renderer.getScrollTopRow()+1},this.$moveByPage=function(e,t){var n=this.renderer,r=this.renderer.layerConfig,i=e*Math.floor(r.height/r.lineHeight);!0===t?this.selection.$moveSelection(function(){this.moveCursorBy(i,0)}):!1===t&&(this.selection.moveCursorBy(i,0),this.selection.clearSelection());var o=n.scrollTop;n.scrollBy(0,i*r.lineHeight),null!=t&&n.scrollCursorIntoView(null,.5),n.animateScrolling(o)},this.selectPageDown=function(){this.$moveByPage(1,!0)},this.selectPageUp=function(){this.$moveByPage(-1,!0)},this.gotoPageDown=function(){this.$moveByPage(1,!1)},this.gotoPageUp=function(){this.$moveByPage(-1,!1)},this.scrollPageDown=function(){this.$moveByPage(1)},this.scrollPageUp=function(){this.$moveByPage(-1)},this.scrollToRow=function(e){this.renderer.scrollToRow(e)},this.scrollToLine=function(e,t,n,r){this.renderer.scrollToLine(e,t,n,r)},this.centerSelection=function(){var e=this.getSelectionRange(),t={row:Math.floor(e.start.row+(e.end.row-e.start.row)/2),column:Math.floor(e.start.column+(e.end.column-e.start.column)/2)};this.renderer.alignCursor(t,.5)},this.getCursorPosition=function(){return this.selection.getCursor()},this.getCursorPositionScreen=function(){return this.session.documentToScreenPosition(this.getCursorPosition())},this.getSelectionRange=function(){return this.selection.getRange()},this.selectAll=function(){this.selection.selectAll()},this.clearSelection=function(){this.selection.clearSelection()},this.moveCursorTo=function(e,t){this.selection.moveCursorTo(e,t)},this.moveCursorToPosition=function(e){this.selection.moveCursorToPosition(e)},this.jumpToMatching=function(e,t){var n=this.getCursorPosition(),r=new y(this.session,n.row,n.column),i=r.getCurrentToken(),o=i||r.stepForward();if(o){var a,s,l=!1,c={},u=n.column-o.start,h={")":"(","(":"(","]":"[","[":"[","{":"{","}":"{"};do{if(o.value.match(/[{}()\[\]]/g)){for(;u=0;--o)this.$tryReplace(n[o],e)&&r++;return this.selection.setSelectionRange(i),r},this.$tryReplace=function(e,t){var n=this.session.getTextRange(e);return t=this.$search.replace(n,t),null!==t?(e.end=this.session.replace(e,t),e):null},this.getLastSearchOptions=function(){return this.$search.getOptions()},this.find=function(e,t,n){t||(t={}),"string"==typeof e||e instanceof RegExp?t.needle=e:"object"==typeof e&&r.mixin(t,e);var i=this.selection.getRange();null==t.needle&&(e=this.session.getTextRange(i)||this.$search.$options.needle,e||(i=this.session.getWordRange(i.start.row,i.start.column),e=this.session.getTextRange(i)),this.$search.set({needle:e})),this.$search.set(t),t.start||this.$search.set({start:i});var o=this.$search.find(this.session);return t.preventScroll?o:o?(this.revealRange(o,n),o):(t.backwards?i.start=i.end:i.end=i.start,void this.selection.setRange(i))},this.findNext=function(e,t){this.find({skipCurrent:!0,backwards:!1},e,t)},this.findPrevious=function(e,t){this.find(e,{skipCurrent:!0,backwards:!0},t)},this.revealRange=function(e,t){this.session.unfold(e),this.selection.setSelectionRange(e);var n=this.renderer.scrollTop;this.renderer.scrollSelectionIntoView(e.start,e.end,.5),!1!==t&&this.renderer.animateScrolling(n)},this.undo=function(){this.session.getUndoManager().undo(this.session),this.renderer.scrollCursorIntoView(null,.5)},this.redo=function(){this.session.getUndoManager().redo(this.session),this.renderer.scrollCursorIntoView(null,.5)},this.destroy=function(){this.$toDestroy&&(this.$toDestroy.forEach(function(e){e.destroy()}),this.$toDestroy=null),this.$mouseHandler&&this.$mouseHandler.destroy(),this.renderer.destroy(),this._signal("destroy",this),this.session&&this.session.destroy(),this._$emitInputEvent&&this._$emitInputEvent.cancel(),this.removeAllListeners()},this.setAutoScrollEditorIntoView=function(e){if(e){var t,n=this,r=!1;this.$scrollAnchor||(this.$scrollAnchor=document.createElement("div"));var i=this.$scrollAnchor;i.style.cssText="position:absolute",this.container.insertBefore(i,this.container.firstChild);var o=this.on("changeSelection",function(){r=!0}),a=this.renderer.on("beforeRender",function(){r&&(t=n.renderer.container.getBoundingClientRect())}),s=this.renderer.on("afterRender",function(){if(r&&t&&(n.isFocused()||n.searchBox&&n.searchBox.isFocused())){var e=n.renderer,o=e.$cursorLayer.$pixelPos,a=e.layerConfig,s=o.top-a.offset;r=o.top>=0&&s+t.top<0||!(o.topwindow.innerHeight)&&null,null!=r&&(i.style.top=s+"px",i.style.left=o.left+"px",i.style.height=a.lineHeight+"px",i.scrollIntoView(r)),r=t=null}});this.setAutoScrollEditorIntoView=function(e){e||(delete this.setAutoScrollEditorIntoView,this.off("changeSelection",o),this.renderer.off("afterRender",s),this.renderer.off("beforeRender",a))}}},this.$resetCursorStyle=function(){var e=this.$cursorStyle||"ace",t=this.renderer.$cursorLayer;t&&(t.setSmoothBlinking(/smooth/.test(e)),t.isBlinking=!this.$readOnly&&"wide"!=e,i.setCssClass(t.element,"ace_slim-cursors",/slim/.test(e)))},this.prompt=function(e,t,n){var r=this;v.loadModule("./ext/prompt",function(i){i.prompt(r,e,t,n)})}}.call(w.prototype),v.defineOptions(w.prototype,"editor",{selectionStyle:{set:function(e){this.onSelectionChange(),this._signal("changeSelectionStyle",{data:e})},initialValue:"line"},highlightActiveLine:{set:function(){this.$updateHighlightActiveLine()},initialValue:!0},highlightSelectedWord:{set:function(e){this.$onSelectionChange()},initialValue:!0},readOnly:{set:function(e){this.textInput.setReadOnly(e),this.$resetCursorStyle()},initialValue:!1},copyWithEmptySelection:{set:function(e){this.textInput.setCopyWithEmptySelection(e)},initialValue:!1},cursorStyle:{set:function(e){this.$resetCursorStyle()},values:["ace","slim","smooth","wide"],initialValue:"ace"},mergeUndoDeltas:{values:[!1,!0,"always"],initialValue:!0},behavioursEnabled:{initialValue:!0},wrapBehavioursEnabled:{initialValue:!0},enableAutoIndent:{initialValue:!0},autoScrollEditorIntoView:{set:function(e){this.setAutoScrollEditorIntoView(e)}},keyboardHandler:{set:function(e){this.setKeyboardHandler(e)},get:function(){return this.$keybindingId},handlesSet:!0},value:{set:function(e){this.session.setValue(e)},get:function(){return this.getValue()},handlesSet:!0,hidden:!0},session:{set:function(e){this.setSession(e)},get:function(){return this.session},handlesSet:!0,hidden:!0},showLineNumbers:{set:function(e){this.renderer.$gutterLayer.setShowLineNumbers(e),this.renderer.$loop.schedule(this.renderer.CHANGE_GUTTER),e&&this.$relativeLineNumbers?x.attach(this):x.detach(this)},initialValue:!0},relativeLineNumbers:{set:function(e){this.$showLineNumbers&&e?x.attach(this):x.detach(this)}},placeholder:{set:function(e){this.$updatePlaceholder||(this.$updatePlaceholder=function(){var e=this.session&&(this.renderer.$composition||this.getValue());if(e&&this.renderer.placeholderNode)this.renderer.off("afterRender",this.$updatePlaceholder),i.removeCssClass(this.container,"ace_hasPlaceholder"),this.renderer.placeholderNode.remove(),this.renderer.placeholderNode=null;else if(e||this.renderer.placeholderNode)!e&&this.renderer.placeholderNode&&(this.renderer.placeholderNode.textContent=this.$placeholder||"");else{this.renderer.on("afterRender",this.$updatePlaceholder),i.addCssClass(this.container,"ace_hasPlaceholder");var t=i.createElement("div");t.className="ace_placeholder",t.textContent=this.$placeholder||"",this.renderer.placeholderNode=t,this.renderer.content.appendChild(this.renderer.placeholderNode)}}.bind(this),this.on("input",this.$updatePlaceholder)),this.$updatePlaceholder()}},hScrollBarAlwaysVisible:"renderer",vScrollBarAlwaysVisible:"renderer",highlightGutterLine:"renderer",animatedScroll:"renderer",showInvisibles:"renderer",showPrintMargin:"renderer",printMarginColumn:"renderer",printMargin:"renderer",fadeFoldWidgets:"renderer",showFoldWidgets:"renderer",displayIndentGuides:"renderer",showGutter:"renderer",fontSize:"renderer",fontFamily:"renderer",maxLines:"renderer",minLines:"renderer",scrollPastEnd:"renderer",fixedWidthGutter:"renderer",theme:"renderer",hasCssTransforms:"renderer",maxPixelHeight:"renderer",useTextareaForIME:"renderer",scrollSpeed:"$mouseHandler",dragDelay:"$mouseHandler",dragEnabled:"$mouseHandler",focusTimeout:"$mouseHandler",tooltipFollowsMouse:"$mouseHandler",firstLineNumber:"session",overwrite:"session",newLineMode:"session",useWorker:"session",useSoftTabs:"session",navigateWithinSoftTabs:"session",tabSize:"session",wrap:"session",indentedSoftWrap:"session",foldStyle:"session",mode:"session"});var x={getText:function(e,t){return(Math.abs(e.selection.lead.row-t)||t+1+(t<9?"\xb7":""))+""},getWidth:function(e,t,n){return Math.max(t.toString().length,(n.lastRow+1).toString().length,2)*n.characterWidth},update:function(e,t){t.renderer.$loop.schedule(t.renderer.CHANGE_GUTTER)},attach:function(e){e.renderer.$gutterLayer.$renderer=this,e.on("changeSelection",this.update),this.update(null,e)},detach:function(e){e.renderer.$gutterLayer.$renderer==this&&(e.renderer.$gutterLayer.$renderer=null),e.off("changeSelection",this.update),this.update(null,e)}};t.Editor=w}),ace.define("ace/undomanager",["require","exports","module","ace/range"],function(e,t,n){"use strict";var r=function(){this.$maxRev=0,this.$fromUndo=!1,this.reset()};function i(e,t){for(var n=t;n--;){var r=e[n];if(r&&!r[0].ignore){while(n0},this.canRedo=function(){return this.$redoStack.length>0},this.bookmark=function(e){void 0==e&&(e=this.$rev),this.mark=e},this.isAtBookmark=function(){return this.$rev===this.mark},this.toJSON=function(){},this.fromJSON=function(){},this.hasUndo=this.canUndo,this.hasRedo=this.canRedo,this.isClean=this.isAtBookmark,this.markClean=this.bookmark,this.$prettyPrint=function(e){return e?c(e):c(this.$undoStack)+"\n---\n"+c(this.$redoStack)}}).call(r.prototype);var o=e("./range").Range,a=o.comparePoints;o.comparePoints;function s(e){return{row:e.row,column:e.column}}function l(e){return{start:s(e.start),end:s(e.end),action:e.action,lines:e.lines.slice()}}function c(e){if(e=e||this,Array.isArray(e))return e.map(c).join("\n");var t="";return e.action?(t="insert"==e.action?"+":"-",t+="["+e.lines+"]"):e.value&&(t=Array.isArray(e.value)?e.value.map(u).join("\n"):u(e.value)),e.start&&(t+=u(e)),(e.id||e.rev)&&(t+="\t("+(e.id||e.rev)+")"),t}function u(e){return e.start.row+":"+e.start.column+"=>"+e.end.row+":"+e.end.column}function h(e,t){var n="insert"==e.action,r="insert"==t.action;if(n&&r)if(a(t.start,e.end)>=0)p(t,e,-1);else{if(!(a(t.start,e.start)<=0))return null;p(e,t,1)}else if(n&&!r)if(a(t.start,e.end)>=0)p(t,e,-1);else{if(!(a(t.end,e.start)<=0))return null;p(e,t,-1)}else if(!n&&r)if(a(t.start,e.start)>=0)p(t,e,1);else{if(!(a(t.start,e.start)<=0))return null;p(e,t,1)}else if(!n&&!r)if(a(t.start,e.start)>=0)p(t,e,1);else{if(!(a(t.end,e.start)<=0))return null;p(e,t,-1)}return[t,e]}function d(e,t){for(var n=e.length;n--;)for(var r=0;r=0?p(e,t,-1):a(e.start,t.start)<=0?p(t,e,1):(p(e,o.fromPoints(t.start,e.start),-1),p(t,e,1));else if(!n&&r)a(t.start,e.end)>=0?p(t,e,-1):a(t.start,e.start)<=0?p(e,t,1):(p(t,o.fromPoints(e.start,t.start),-1),p(e,t,1));else if(!n&&!r)if(a(t.start,e.end)>=0)p(t,e,-1);else{var i,s;if(!(a(t.end,e.start)<=0))return a(e.start,t.start)<0&&(i=e,e=g(e,t.start)),a(e.end,t.end)>0&&(s=g(e,t.end)),m(t.end,e.start,e.end,-1),s&&!i&&(e.lines=s.lines,e.start=s.start,e.end=s.end,s=e),[t,i,s].filter(Boolean);p(e,t,-1)}return[t,e]}function p(e,t,n){m(e.start,t.start,t.end,n),m(e.end,t.start,t.end,n)}function m(e,t,n,r){e.row==(1==r?t:n).row&&(e.column+=r*(n.column-t.column)),e.row+=r*(n.row-t.row)}function g(e,t){var n=e.lines,r=e.end;e.end=s(t);var i=e.end.row-e.start.row,o=n.splice(i,n.length),a=i?t.column:t.column-e.start.column;n.push(o[0].substring(0,a)),o[0]=o[0].substr(a);var l={start:s(t),end:r,lines:o,action:e.action};return l}function v(e,t){t=l(t);for(var n=e.length;n--;){for(var r=e[n],i=0;io&&(l=i.end.row+1,i=t.getNextFoldLine(l,i),o=i?i.start.row:1/0),l>r){while(this.$lines.getLength()>s+1)this.$lines.pop();break}a=this.$lines.get(++s),a?a.row=l:(a=this.$lines.createCell(l,e,this.session,c),this.$lines.push(a)),this.$renderCell(a,e,i,l),l++}this._signal("afterRender"),this.$updateGutterWidth(e)},this.$updateGutterWidth=function(e){var t=this.session,n=t.gutterRenderer||this.$renderer,r=t.$firstLineNumber,i=this.$lines.last()?this.$lines.last().text:"";(this.$fixedWidth||t.$useWrapMode)&&(i=t.getLength()+r-1);var o=n?n.getWidth(t,i,e):i.toString().length*e.characterWidth,a=this.$padding||this.$computePadding();o+=a.left+a.right,o===this.gutterWidth||isNaN(o)||(this.gutterWidth=o,this.element.parentNode.style.width=this.element.style.width=Math.ceil(this.gutterWidth)+"px",this._signal("changeGutterWidth",o))},this.$updateCursorRow=function(){if(this.$highlightGutterLine){var e=this.session.selection.getCursor();this.$cursorRow!==e.row&&(this.$cursorRow=e.row)}},this.updateLineHighlight=function(){if(this.$highlightGutterLine){var e=this.session.selection.cursor.row;if(this.$cursorRow=e,!this.$cursorCell||this.$cursorCell.row!=e){this.$cursorCell&&(this.$cursorCell.element.className=this.$cursorCell.element.className.replace("ace_gutter-active-line ",""));var t=this.$lines.cells;this.$cursorCell=null;for(var n=0;n=this.$cursorRow){if(r.row>this.$cursorRow){var i=this.session.getFoldLine(this.$cursorRow);if(!(n>0&&i&&i.start.row==t[n-1].row))break;r=t[n-1]}r.element.className="ace_gutter-active-line "+r.element.className,this.$cursorCell=r;break}}}}},this.scrollLines=function(e){var t=this.config;if(this.config=e,this.$updateCursorRow(),this.$lines.pageChanged(t,e))return this.update(e);this.$lines.moveContainer(e);var n=Math.min(e.lastRow+e.gutterOffset,this.session.getLength()-1),r=this.oldLastRow;if(this.oldLastRow=n,!t||r0;i--)this.$lines.shift();if(r>n)for(i=this.session.getFoldedRowCount(n+1,r);i>0;i--)this.$lines.pop();e.firstRowr&&this.$lines.push(this.$renderLines(e,r+1,n)),this.updateLineHighlight(),this._signal("afterRender"),this.$updateGutterWidth(e)},this.$renderLines=function(e,t,n){var r=[],i=t,o=this.session.getNextFoldLine(i),a=o?o.start.row:1/0;while(1){if(i>a&&(i=o.end.row+1,o=this.session.getNextFoldLine(i,o),a=o?o.start.row:1/0),i>n)break;var s=this.$lines.createCell(i,e,this.session,c);this.$renderCell(s,e,o,i),r.push(s),i++}return r},this.$renderCell=function(e,t,n,i){var o=e.element,a=this.session,s=o.childNodes[0],l=o.childNodes[1],c=a.$firstLineNumber,u=a.$breakpoints,h=a.$decorations,d=a.gutterRenderer||this.$renderer,f=this.$showFoldWidgets&&a.foldWidgets,p=n?n.start.row:Number.MAX_VALUE,m="ace_gutter-cell ";if(this.$highlightGutterLine&&(i==this.$cursorRow||n&&i=p&&this.$cursorRow<=n.end.row)&&(m+="ace_gutter-active-line ",this.$cursorCell!=e&&(this.$cursorCell&&(this.$cursorCell.element.className=this.$cursorCell.element.className.replace("ace_gutter-active-line ","")),this.$cursorCell=e)),u[i]&&(m+=u[i]),h[i]&&(m+=h[i]),this.$annotations[i]&&(m+=this.$annotations[i].className),o.className!=m&&(o.className=m),f){var g=f[i];null==g&&(g=f[i]=a.getFoldWidget(i))}if(g){m="ace_fold-widget ace_"+g;"start"==g&&i==p&&in.right-t.right?"foldWidgets":void 0}}).call(l.prototype),t.Gutter=l}),ace.define("ace/layer/marker",["require","exports","module","ace/range","ace/lib/dom"],function(e,t,n){"use strict";var r=e("../range").Range,i=e("../lib/dom"),o=function(e){this.element=i.createElement("div"),this.element.className="ace_layer ace_marker-layer",e.appendChild(this.element)};(function(){function e(e,t,n,r){return(e?1:0)|(t?2:0)|(n?4:0)|(r?8:0)}this.$padding=0,this.setPadding=function(e){this.$padding=e},this.setSession=function(e){this.session=e},this.setMarkers=function(e){this.markers=e},this.elt=function(e,t){var n=-1!=this.i&&this.element.childNodes[this.i];n?this.i++:(n=document.createElement("div"),this.element.appendChild(n),this.i=-1),n.style.cssText=t,n.className=e},this.update=function(e){if(e){var t;for(var n in this.config=e,this.i=0,this.markers){var r=this.markers[n];if(r.range){var i=r.range.clipRows(e.firstRow,e.lastRow);if(!i.isEmpty())if(i=i.toScreenRange(this.session),r.renderer){var o=this.$getTop(i.start.row,e),a=this.$padding+i.start.column*e.characterWidth;r.renderer(t,i,a,o,e)}else"fullLine"==r.type?this.drawFullLineMarker(t,i,r.clazz,e):"screenLine"==r.type?this.drawScreenLineMarker(t,i,r.clazz,e):i.isMultiLine()?"text"==r.type?this.drawTextMarker(t,i,r.clazz,e):this.drawMultiLineMarker(t,i,r.clazz,e):this.drawSingleLineMarker(t,i,r.clazz+" ace_start ace_br15",e)}else r.update(t,this,this.session,e)}if(-1!=this.i)while(this.if,u==c),o,u==c?0:1,a)},this.drawMultiLineMarker=function(e,t,n,r,i){var o=this.$padding,a=r.lineHeight,s=this.$getTop(t.start.row,r),l=o+t.start.column*r.characterWidth;if(i=i||"",this.session.$bidiHandler.isBidiRow(t.start.row)){var c=t.clone();c.end.row=c.start.row,c.end.column=this.session.getLine(c.start.row).length,this.drawBidiSingleLineMarker(e,c,n+" ace_br1 ace_start",r,null,i)}else this.elt(n+" ace_br1 ace_start","height:"+a+"px;right:0;top:"+s+"px;left:"+l+"px;"+(i||""));if(this.session.$bidiHandler.isBidiRow(t.end.row)){c=t.clone();c.start.row=c.end.row,c.start.column=0,this.drawBidiSingleLineMarker(e,c,n+" ace_br12",r,null,i)}else{s=this.$getTop(t.end.row,r);var u=t.end.column*r.characterWidth;this.elt(n+" ace_br12","height:"+a+"px;width:"+u+"px;top:"+s+"px;left:"+o+"px;"+(i||""))}if(a=(t.end.row-t.start.row-1)*r.lineHeight,!(a<=0)){s=this.$getTop(t.start.row+1,r);var h=(t.start.column?1:0)|(t.end.column?0:8);this.elt(n+(h?" ace_br"+h:""),"height:"+a+"px;right:0;top:"+s+"px;left:"+o+"px;"+(i||""))}},this.drawSingleLineMarker=function(e,t,n,r,i,o){if(this.session.$bidiHandler.isBidiRow(t.start.row))return this.drawBidiSingleLineMarker(e,t,n,r,i,o);var a=r.lineHeight,s=(t.end.column+(i||0)-t.start.column)*r.characterWidth,l=this.$getTop(t.start.row,r),c=this.$padding+t.start.column*r.characterWidth;this.elt(n,"height:"+a+"px;width:"+s+"px;top:"+l+"px;left:"+c+"px;"+(o||""))},this.drawBidiSingleLineMarker=function(e,t,n,r,i,o){var a=r.lineHeight,s=this.$getTop(t.start.row,r),l=this.$padding,c=this.session.$bidiHandler.getSelections(t.start.column,t.end.column);c.forEach(function(e){this.elt(n,"height:"+a+"px;width:"+e.width+(i||0)+"px;top:"+s+"px;left:"+(l+e.left)+"px;"+(o||""))},this)},this.drawFullLineMarker=function(e,t,n,r,i){var o=this.$getTop(t.start.row,r),a=r.lineHeight;t.start.row!=t.end.row&&(a+=this.$getTop(t.end.row,r)-o),this.elt(n,"height:"+a+"px;top:"+o+"px;left:0;right:0;"+(i||""))},this.drawScreenLineMarker=function(e,t,n,r,i){var o=this.$getTop(t.start.row,r),a=r.lineHeight;this.elt(n,"height:"+a+"px;top:"+o+"px;left:0;right:0;"+(i||""))}}).call(o.prototype),t.Marker=o}),ace.define("ace/layer/text",["require","exports","module","ace/lib/oop","ace/lib/dom","ace/lib/lang","ace/layer/lines","ace/lib/event_emitter"],function(e,t,n){"use strict";var r=e("../lib/oop"),i=e("../lib/dom"),o=e("../lib/lang"),a=e("./lines").Lines,s=e("../lib/event_emitter").EventEmitter,l=function(e){this.dom=i,this.element=this.dom.createElement("div"),this.element.className="ace_layer ace_text-layer",e.appendChild(this.element),this.$updateEolChar=this.$updateEolChar.bind(this),this.$lines=new a(this.element)};(function(){r.implement(this,s),this.EOF_CHAR="\xb6",this.EOL_CHAR_LF="\xac",this.EOL_CHAR_CRLF="\xa4",this.EOL_CHAR=this.EOL_CHAR_LF,this.TAB_CHAR="\u2014",this.SPACE_CHAR="\xb7",this.$padding=0,this.MAX_LINE_LENGTH=1e4,this.$updateEolChar=function(){var e=this.session.doc,t="\n"==e.getNewLineCharacter()&&"windows"!=e.getNewLineMode(),n=t?this.EOL_CHAR_LF:this.EOL_CHAR_CRLF;if(this.EOL_CHAR!=n)return this.EOL_CHAR=n,!0},this.setPadding=function(e){this.$padding=e,this.element.style.margin="0 "+e+"px"},this.getLineHeight=function(){return this.$fontMetrics.$characterSize.height||0},this.getCharacterWidth=function(){return this.$fontMetrics.$characterSize.width||0},this.$setFontMetrics=function(e){this.$fontMetrics=e,this.$fontMetrics.on("changeCharacterSize",function(e){this._signal("changeCharacterSize",e)}.bind(this)),this.$pollSizeChanges()},this.checkForSizeChanges=function(){this.$fontMetrics.checkForSizeChanges()},this.$pollSizeChanges=function(){return this.$pollSizeChangesTimer=this.$fontMetrics.$pollSizeChanges()},this.setSession=function(e){this.session=e,e&&this.$computeTabString()},this.showInvisibles=!1,this.showSpaces=!1,this.showTabs=!1,this.showEOL=!1,this.setShowInvisibles=function(e){return this.showInvisibles!=e&&(this.showInvisibles=e,"string"==typeof e?(this.showSpaces=/tab/i.test(e),this.showTabs=/space/i.test(e),this.showEOL=/eol/i.test(e)):this.showSpaces=this.showTabs=this.showEOL=e,this.$computeTabString(),!0)},this.displayIndentGuides=!0,this.setDisplayIndentGuides=function(e){return this.displayIndentGuides!=e&&(this.displayIndentGuides=e,this.$computeTabString(),!0)},this.$tabStrings=[],this.onChangeTabSize=this.$computeTabString=function(){var e=this.session.getTabSize();this.tabSize=e;for(var t=this.$tabStrings=[0],n=1;nu&&(s=l.end.row+1,l=this.session.getNextFoldLine(s,l),u=l?l.start.row:1/0),s>i)break;var h=o[a++];if(h){this.dom.removeChildren(h),this.$renderLine(h,s,s==u&&l),c&&(h.style.top=this.$lines.computeLineTop(s,e,this.session)+"px");var d=e.lineHeight*this.session.getRowLength(s)+"px";h.style.height!=d&&(c=!0,h.style.height=d)}s++}if(c)while(a0;i--)this.$lines.shift();if(t.lastRow>e.lastRow)for(i=this.session.getFoldedRowCount(e.lastRow+1,t.lastRow);i>0;i--)this.$lines.pop();e.firstRowt.lastRow&&this.$lines.push(this.$renderLinesFragment(e,t.lastRow+1,e.lastRow))},this.$renderLinesFragment=function(e,t,n){var r=[],o=t,a=this.session.getNextFoldLine(o),s=a?a.start.row:1/0;while(1){if(o>s&&(o=a.end.row+1,a=this.session.getNextFoldLine(o,a),s=a?a.start.row:1/0),o>n)break;var l=this.$lines.createCell(o,e,this.session),c=l.element;this.dom.removeChildren(c),i.setStyle(c.style,"height",this.$lines.computeLineHeight(o,e,this.session)+"px"),i.setStyle(c.style,"top",this.$lines.computeLineTop(o,e,this.session)+"px"),this.$renderLine(c,o,o==s&&a),this.$useLineGroups()?c.className="ace_line_group":c.className="ace_line",r.push(l),o++}return r},this.update=function(e){this.$lines.moveContainer(e),this.config=e;var t=e.firstRow,n=e.lastRow,r=this.$lines;while(r.getLength())r.pop();r.push(this.$renderLinesFragment(e,t,n))},this.$textToken={text:!0,rparen:!0,lparen:!0},this.$renderToken=function(e,t,n,r){var i,a=this,s=/(\t)|( +)|([\x00-\x1f\x80-\xa0\xad\u1680\u180E\u2000-\u200f\u2028\u2029\u202F\u205F\uFEFF\uFFF9-\uFFFC]+)|(\u3000)|([\u1100-\u115F\u11A3-\u11A7\u11FA-\u11FF\u2329-\u232A\u2E80-\u2E99\u2E9B-\u2EF3\u2F00-\u2FD5\u2FF0-\u2FFB\u3001-\u303E\u3041-\u3096\u3099-\u30FF\u3105-\u312D\u3131-\u318E\u3190-\u31BA\u31C0-\u31E3\u31F0-\u321E\u3220-\u3247\u3250-\u32FE\u3300-\u4DBF\u4E00-\uA48C\uA490-\uA4C6\uA960-\uA97C\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFAFF\uFE10-\uFE19\uFE30-\uFE52\uFE54-\uFE66\uFE68-\uFE6B\uFF01-\uFF60\uFFE0-\uFFE6]|[\uD800-\uDBFF][\uDC00-\uDFFF])/g,l=this.dom.createFragment(this.element),c=0;while(i=s.exec(r)){var u=i[1],h=i[2],d=i[3],f=i[4],p=i[5];if(a.showSpaces||!h){var m=c!=i.index?r.slice(c,i.index):"";if(c=i.index+i[0].length,m&&l.appendChild(this.dom.createTextNode(m,this.element)),u){var g=a.session.getScreenTabSize(t+i.index);l.appendChild(a.$tabStrings[g].cloneNode(!0)),t+=g-1}else if(h)if(a.showSpaces){var v=this.dom.createElement("span");v.className="ace_invisible ace_invisible_space",v.textContent=o.stringRepeat(a.SPACE_CHAR,h.length),l.appendChild(v)}else l.appendChild(this.com.createTextNode(h,this.element));else if(d){v=this.dom.createElement("span");v.className="ace_invisible ace_invisible_space ace_invalid",v.textContent=o.stringRepeat(a.SPACE_CHAR,d.length),l.appendChild(v)}else if(f){t+=1;v=this.dom.createElement("span");v.style.width=2*a.config.characterWidth+"px",v.className=a.showSpaces?"ace_cjk ace_invisible ace_invisible_space":"ace_cjk",v.textContent=a.showSpaces?a.SPACE_CHAR:f,l.appendChild(v)}else if(p){t+=1;v=this.dom.createElement("span");v.style.width=2*a.config.characterWidth+"px",v.className="ace_cjk",v.textContent=p,l.appendChild(v)}}}if(l.appendChild(this.dom.createTextNode(c?r.slice(c):r,this.element)),this.$textToken[n.type])e.appendChild(l);else{var y="ace_"+n.type.replace(/\./g," ace_");v=this.dom.createElement("span");"fold"==n.type&&(v.style.width=n.value.length*this.config.characterWidth+"px"),v.className=y,v.appendChild(l),e.appendChild(v)}return t+r.length},this.renderIndentGuide=function(e,t,n){var r=t.search(this.$indentGuideRe);if(r<=0||r>=n)return t;if(" "==t[0]){r-=r%this.tabSize;for(var i=r/this.tabSize,o=0;o=a)s=this.$renderToken(l,s,u,h.substring(0,a-r)),h=h.substring(a-r),r=a,l=this.$createLineElement(),e.appendChild(l),l.appendChild(this.dom.createTextNode(o.stringRepeat("\xa0",n.indent),this.element)),i++,s=0,a=n[i]||Number.MAX_VALUE;0!=h.length&&(r+=h.length,s=this.$renderToken(l,s,u,h))}}n[n.length-1]>this.MAX_LINE_LENGTH&&this.$renderOverflowMessage(l,s,null,"",!0)},this.$renderSimpleLine=function(e,t){var n=0,r=t[0],i=r.value;this.displayIndentGuides&&(i=this.renderIndentGuide(e,i)),i&&(n=this.$renderToken(e,n,r,i));for(var o=1;othis.MAX_LINE_LENGTH)return this.$renderOverflowMessage(e,n,r,i);n=this.$renderToken(e,n,r,i)}},this.$renderOverflowMessage=function(e,t,n,r,i){n&&this.$renderToken(e,t,n,r.slice(0,this.MAX_LINE_LENGTH-t));var o=this.dom.createElement("span");o.className="ace_inline_button ace_keyword ace_toggle_wrap",o.textContent=i?"":"",e.appendChild(o)},this.$renderLine=function(e,t,n){if(n||0==n||(n=this.session.getFoldLine(t)),n)var r=this.$getFoldLineTokens(t,n);else r=this.session.getTokens(t);var i=e;if(r.length){var o=this.session.getRowSplitData(t);if(o&&o.length){this.$renderWrappedLine(e,r,o);i=e.lastChild}else{i=e;this.$useLineGroups()&&(i=this.$createLineElement(),e.appendChild(i)),this.$renderSimpleLine(i,r)}}else this.$useLineGroups()&&(i=this.$createLineElement(),e.appendChild(i));if(this.showEOL&&i){n&&(t=n.end.row);var a=this.dom.createElement("span");a.className="ace_invisible ace_invisible_eol",a.textContent=t==this.session.getLength()-1?this.EOF_CHAR:this.EOL_CHAR,i.appendChild(a)}},this.$getFoldLineTokens=function(e,t){var n=this.session,r=[];function i(e,t,n){var i=0,o=0;while(o+e[i].value.lengthn-t&&(a=a.substring(0,n-t)),r.push({type:e[i].type,value:a}),o=t+a.length,i+=1}while(on?r.push({type:e[i].type,value:a.substring(0,n-o)}):r.push(e[i]),o+=a.length,i+=1}}var o=n.getTokens(e);return t.walk(function(e,t,a,s,l){null!=e?r.push({type:"fold",value:e}):(l&&(o=n.getTokens(t)),o.length&&i(o,s,a))},t.end.row,this.session.getLine(t.end.row).length),r},this.$useLineGroups=function(){return this.session.getUseWrapMode()},this.destroy=function(){}}).call(l.prototype),t.Text=l}),ace.define("ace/layer/cursor",["require","exports","module","ace/lib/dom"],function(e,t,n){"use strict";var r=e("../lib/dom"),i=function(e){this.element=r.createElement("div"),this.element.className="ace_layer ace_cursor-layer",e.appendChild(this.element),this.isVisible=!1,this.isBlinking=!0,this.blinkInterval=1e3,this.smoothBlinking=!1,this.cursors=[],this.cursor=this.addCursor(),r.addCssClass(this.element,"ace_hidden-cursors"),this.$updateCursors=this.$updateOpacity.bind(this)};(function(){this.$updateOpacity=function(e){for(var t=this.cursors,n=t.length;n--;)r.setStyle(t[n].style,"opacity",e?"":"0")},this.$startCssAnimation=function(){for(var e=this.cursors,t=e.length;t--;)e[t].style.animationDuration=this.blinkInterval+"ms";this.$isAnimating=!0,setTimeout(function(){this.$isAnimating&&r.addCssClass(this.element,"ace_animate-blinking")}.bind(this))},this.$stopCssAnimation=function(){this.$isAnimating=!1,r.removeCssClass(this.element,"ace_animate-blinking")},this.$padding=0,this.setPadding=function(e){this.$padding=e},this.setSession=function(e){this.session=e},this.setBlinking=function(e){e!=this.isBlinking&&(this.isBlinking=e,this.restartTimer())},this.setBlinkInterval=function(e){e!=this.blinkInterval&&(this.blinkInterval=e,this.restartTimer())},this.setSmoothBlinking=function(e){e!=this.smoothBlinking&&(this.smoothBlinking=e,r.setCssClass(this.element,"ace_smooth-blinking",e),this.$updateCursors(!0),this.restartTimer())},this.addCursor=function(){var e=r.createElement("div");return e.className="ace_cursor",this.element.appendChild(e),this.cursors.push(e),e},this.removeCursor=function(){if(this.cursors.length>1){var e=this.cursors.pop();return e.parentNode.removeChild(e),e}},this.hideCursor=function(){this.isVisible=!1,r.addCssClass(this.element,"ace_hidden-cursors"),this.restartTimer()},this.showCursor=function(){this.isVisible=!0,r.removeCssClass(this.element,"ace_hidden-cursors"),this.restartTimer()},this.restartTimer=function(){var e=this.$updateCursors;if(clearInterval(this.intervalId),clearTimeout(this.timeoutId),this.$stopCssAnimation(),this.smoothBlinking&&(this.$isSmoothBlinking=!1,r.removeCssClass(this.element,"ace_smooth-blinking")),e(!0),this.isBlinking&&this.blinkInterval&&this.isVisible)if(this.smoothBlinking&&(this.$isSmoothBlinking=!0,setTimeout(function(){this.$isSmoothBlinking&&r.addCssClass(this.element,"ace_smooth-blinking")}.bind(this))),r.HAS_CSS_ANIMATION)this.$startCssAnimation();else{var t=function(){this.timeoutId=setTimeout(function(){e(!1)},.6*this.blinkInterval)}.bind(this);this.intervalId=setInterval(function(){e(!0),t()},this.blinkInterval),t()}else this.$stopCssAnimation()},this.getPixelPosition=function(e,t){if(!this.config||!this.session)return{left:0,top:0};e||(e=this.session.selection.getCursor());var n=this.session.documentToScreenPosition(e),r=this.$padding+(this.session.$bidiHandler.isBidiRow(n.row,e.row)?this.session.$bidiHandler.getPosLeft(n.column):n.column*this.config.characterWidth),i=(n.row-(t?this.config.firstRowScreen:0))*this.config.lineHeight;return{left:r,top:i}},this.isCursorInView=function(e,t){return e.top>=0&&e.tope.height+e.offset||a.top<0)&&n>1)){var s=this.cursors[i++]||this.addCursor(),l=s.style;this.drawCursor?this.drawCursor(s,a,e,t[n],this.session):this.isCursorInView(a,e)?(r.setStyle(l,"display","block"),r.translate(s,a.left,a.top),r.setStyle(l,"width",Math.round(e.characterWidth)+"px"),r.setStyle(l,"height",e.lineHeight+"px")):r.setStyle(l,"display","none")}}while(this.cursors.length>i)this.removeCursor();var c=this.session.getOverwrite();this.$setOverwrite(c),this.$pixelPos=a,this.restartTimer()},this.drawCursor=null,this.$setOverwrite=function(e){e!=this.overwrite&&(this.overwrite=e,e?r.addCssClass(this.element,"ace_overwrite-cursors"):r.removeCssClass(this.element,"ace_overwrite-cursors"))},this.destroy=function(){clearInterval(this.intervalId),clearTimeout(this.timeoutId)}}).call(i.prototype),t.Cursor=i}),ace.define("ace/scrollbar",["require","exports","module","ace/lib/oop","ace/lib/dom","ace/lib/event","ace/lib/event_emitter"],function(e,t,n){"use strict";var r=e("./lib/oop"),i=e("./lib/dom"),o=e("./lib/event"),a=e("./lib/event_emitter").EventEmitter,s=32768,l=function(e){this.element=i.createElement("div"),this.element.className="ace_scrollbar ace_scrollbar"+this.classSuffix,this.inner=i.createElement("div"),this.inner.className="ace_scrollbar-inner",this.inner.textContent="\xa0",this.element.appendChild(this.inner),e.appendChild(this.element),this.setVisible(!1),this.skipEvent=!1,o.addListener(this.element,"scroll",this.onScroll.bind(this)),o.addListener(this.element,"mousedown",o.preventDefault)};(function(){r.implement(this,a),this.setVisible=function(e){this.element.style.display=e?"":"none",this.isVisible=e,this.coeff=1}}).call(l.prototype);var c=function(e,t){l.call(this,e),this.scrollTop=0,this.scrollHeight=0,t.$scrollbarWidth=this.width=i.scrollbarWidth(e.ownerDocument),this.inner.style.width=this.element.style.width=(this.width||15)+5+"px",this.$minWidth=0};r.inherits(c,l),function(){this.classSuffix="-v",this.onScroll=function(){if(!this.skipEvent){if(this.scrollTop=this.element.scrollTop,1!=this.coeff){var e=this.element.clientHeight/this.scrollHeight;this.scrollTop=this.scrollTop*(1-e)/(this.coeff-e)}this._emit("scroll",{data:this.scrollTop})}this.skipEvent=!1},this.getWidth=function(){return Math.max(this.isVisible?this.width:0,this.$minWidth||0)},this.setHeight=function(e){this.element.style.height=e+"px"},this.setInnerHeight=this.setScrollHeight=function(e){this.scrollHeight=e,e>s?(this.coeff=s/e,e=s):1!=this.coeff&&(this.coeff=1),this.inner.style.height=e+"px"},this.setScrollTop=function(e){this.scrollTop!=e&&(this.skipEvent=!0,this.scrollTop=e,this.element.scrollTop=e*this.coeff)}}.call(c.prototype);var u=function(e,t){l.call(this,e),this.scrollLeft=0,this.height=t.$scrollbarWidth,this.inner.style.height=this.element.style.height=(this.height||15)+5+"px"};r.inherits(u,l),function(){this.classSuffix="-h",this.onScroll=function(){this.skipEvent||(this.scrollLeft=this.element.scrollLeft,this._emit("scroll",{data:this.scrollLeft})),this.skipEvent=!1},this.getHeight=function(){return this.isVisible?this.height:0},this.setWidth=function(e){this.element.style.width=e+"px"},this.setInnerWidth=function(e){this.inner.style.width=e+"px"},this.setScrollWidth=function(e){this.inner.style.width=e+"px"},this.setScrollLeft=function(e){this.scrollLeft!=e&&(this.skipEvent=!0,this.scrollLeft=this.element.scrollLeft=e)}}.call(u.prototype),t.ScrollBar=c,t.ScrollBarV=c,t.ScrollBarH=u,t.VScrollBar=c,t.HScrollBar=u}),ace.define("ace/renderloop",["require","exports","module","ace/lib/event"],function(e,t,n){"use strict";var r=e("./lib/event"),i=function(e,t){this.onRender=e,this.pending=!1,this.changes=0,this.$recursionLimit=2,this.window=t||window;var n=this;this._flush=function(e){n.pending=!1;var t=n.changes;if(t&&(r.blockIdle(100),n.changes=0,n.onRender(t)),n.changes){if(n.$recursionLimit--<0)return;n.schedule()}else n.$recursionLimit=2}};(function(){this.schedule=function(e){this.changes=this.changes|e,this.changes&&!this.pending&&(r.nextFrame(this._flush),this.pending=!0)},this.clear=function(e){var t=this.changes;return this.changes=0,t}}).call(i.prototype),t.RenderLoop=i}),ace.define("ace/layer/font_metrics",["require","exports","module","ace/lib/oop","ace/lib/dom","ace/lib/lang","ace/lib/event","ace/lib/useragent","ace/lib/event_emitter"],function(e,t,n){var r=e("../lib/oop"),i=e("../lib/dom"),o=e("../lib/lang"),a=e("../lib/event"),s=e("../lib/useragent"),l=e("../lib/event_emitter").EventEmitter,c=256,u="function"==typeof ResizeObserver,h=200,d=t.FontMetrics=function(e){this.el=i.createElement("div"),this.$setMeasureNodeStyles(this.el.style,!0),this.$main=i.createElement("div"),this.$setMeasureNodeStyles(this.$main.style),this.$measureNode=i.createElement("div"),this.$setMeasureNodeStyles(this.$measureNode.style),this.el.appendChild(this.$main),this.el.appendChild(this.$measureNode),e.appendChild(this.el),this.$measureNode.textContent=o.stringRepeat("X",c),this.$characterSize={width:0,height:0},u?this.$addObserver():this.checkForSizeChanges()};(function(){r.implement(this,l),this.$characterSize={width:0,height:0},this.$setMeasureNodeStyles=function(e,t){e.width=e.height="auto",e.left=e.top="0px",e.visibility="hidden",e.position="absolute",e.whiteSpace="pre",s.isIE<8?e["font-family"]="inherit":e.font="inherit",e.overflow=t?"hidden":"visible"},this.checkForSizeChanges=function(e){if(void 0===e&&(e=this.$measureSizes()),e&&(this.$characterSize.width!==e.width||this.$characterSize.height!==e.height)){this.$measureNode.style.fontWeight="bold";var t=this.$measureSizes();this.$measureNode.style.fontWeight="",this.$characterSize=e,this.charSizes=Object.create(null),this.allowBoldFonts=t&&t.width===e.width&&t.height===e.height,this._emit("changeCharacterSize",{data:e})}},this.$addObserver=function(){var e=this;this.$observer=new window.ResizeObserver(function(t){e.checkForSizeChanges()}),this.$observer.observe(this.$measureNode)},this.$pollSizeChanges=function(){if(this.$pollSizeChangesTimer||this.$observer)return this.$pollSizeChangesTimer;var e=this;return this.$pollSizeChangesTimer=a.onIdle(function t(){e.checkForSizeChanges(),a.onIdle(t,500)},500)},this.setPolling=function(e){e?this.$pollSizeChanges():this.$pollSizeChangesTimer&&(clearInterval(this.$pollSizeChangesTimer),this.$pollSizeChangesTimer=0)},this.$measureSizes=function(e){var t={height:(e||this.$measureNode).clientHeight,width:(e||this.$measureNode).clientWidth/c};return 0===t.width||0===t.height?null:t},this.$measureCharWidth=function(e){this.$main.textContent=o.stringRepeat(e,c);var t=this.$main.getBoundingClientRect();return t.width/c},this.getCharacterWidth=function(e){var t=this.charSizes[e];return void 0===t&&(t=this.charSizes[e]=this.$measureCharWidth(e)/this.$characterSize.width),t},this.destroy=function(){clearInterval(this.$pollSizeChangesTimer),this.$observer&&this.$observer.disconnect(),this.el&&this.el.parentNode&&this.el.parentNode.removeChild(this.el)},this.$getZoom=function e(t){return t&&t.parentElement?(window.getComputedStyle(t).zoom||1)*e(t.parentElement):1},this.$initTransformMeasureNodes=function(){var e=function(e,t){return["div",{style:"position: absolute;top:"+e+"px;left:"+t+"px;"}]};this.els=i.buildDom([e(0,0),e(h,0),e(0,h),e(h,h)],this.el)},this.transformCoordinates=function(e,t){if(e){var n=this.$getZoom(this.el);e=a(1/n,e)}function r(e,t,n){var r=e[1]*t[0]-e[0]*t[1];return[(-t[1]*n[0]+t[0]*n[1])/r,(+e[1]*n[0]-e[0]*n[1])/r]}function i(e,t){return[e[0]-t[0],e[1]-t[1]]}function o(e,t){return[e[0]+t[0],e[1]+t[1]]}function a(e,t){return[e*t[0],e*t[1]]}function s(e){var t=e.getBoundingClientRect();return[t.left,t.top]}this.els||this.$initTransformMeasureNodes();var l=s(this.els[0]),c=s(this.els[1]),u=s(this.els[2]),d=s(this.els[3]),f=r(i(d,c),i(d,u),i(o(c,u),o(d,l))),p=a(1+f[0],i(c,l)),m=a(1+f[1],i(u,l));if(t){var g=t,v=f[0]*g[0]/h+f[1]*g[1]/h+1,y=o(a(g[0],p),a(g[1],m));return o(a(1/v/h,y),l)}var b=i(e,l),w=r(i(p,a(f[0],b)),i(m,a(f[1],b)),b);return a(h,w)}}).call(d.prototype)}),ace.define("ace/virtual_renderer",["require","exports","module","ace/lib/oop","ace/lib/dom","ace/config","ace/layer/gutter","ace/layer/marker","ace/layer/text","ace/layer/cursor","ace/scrollbar","ace/scrollbar","ace/renderloop","ace/layer/font_metrics","ace/lib/event_emitter","ace/lib/useragent"],function(e,t,n){"use strict";var r=e("./lib/oop"),i=e("./lib/dom"),o=e("./config"),a=e("./layer/gutter").Gutter,s=e("./layer/marker").Marker,l=e("./layer/text").Text,c=e("./layer/cursor").Cursor,u=e("./scrollbar").HScrollBar,h=e("./scrollbar").VScrollBar,d=e("./renderloop").RenderLoop,f=e("./layer/font_metrics").FontMetrics,p=e("./lib/event_emitter").EventEmitter,m='.ace_br1 {border-top-left-radius : 3px;}.ace_br2 {border-top-right-radius : 3px;}.ace_br3 {border-top-left-radius : 3px; border-top-right-radius: 3px;}.ace_br4 {border-bottom-right-radius: 3px;}.ace_br5 {border-top-left-radius : 3px; border-bottom-right-radius: 3px;}.ace_br6 {border-top-right-radius : 3px; border-bottom-right-radius: 3px;}.ace_br7 {border-top-left-radius : 3px; border-top-right-radius: 3px; border-bottom-right-radius: 3px;}.ace_br8 {border-bottom-left-radius : 3px;}.ace_br9 {border-top-left-radius : 3px; border-bottom-left-radius: 3px;}.ace_br10{border-top-right-radius : 3px; border-bottom-left-radius: 3px;}.ace_br11{border-top-left-radius : 3px; border-top-right-radius: 3px; border-bottom-left-radius: 3px;}.ace_br12{border-bottom-right-radius: 3px; border-bottom-left-radius: 3px;}.ace_br13{border-top-left-radius : 3px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px;}.ace_br14{border-top-right-radius : 3px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px;}.ace_br15{border-top-left-radius : 3px; border-top-right-radius: 3px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px;}.ace_editor {position: relative;overflow: hidden;padding: 0;font: 12px/normal \'Monaco\', \'Menlo\', \'Ubuntu Mono\', \'Consolas\', \'source-code-pro\', monospace;direction: ltr;text-align: left;-webkit-tap-highlight-color: rgba(0, 0, 0, 0);}.ace_scroller {position: absolute;overflow: hidden;top: 0;bottom: 0;background-color: inherit;-ms-user-select: none;-moz-user-select: none;-webkit-user-select: none;user-select: none;cursor: text;}.ace_content {position: absolute;box-sizing: border-box;min-width: 100%;contain: style size layout;font-variant-ligatures: no-common-ligatures;}.ace_dragging .ace_scroller:before{position: absolute;top: 0;left: 0;right: 0;bottom: 0;content: \'\';background: rgba(250, 250, 250, 0.01);z-index: 1000;}.ace_dragging.ace_dark .ace_scroller:before{background: rgba(0, 0, 0, 0.01);}.ace_selecting, .ace_selecting * {cursor: text !important;}.ace_gutter {position: absolute;overflow : hidden;width: auto;top: 0;bottom: 0;left: 0;cursor: default;z-index: 4;-ms-user-select: none;-moz-user-select: none;-webkit-user-select: none;user-select: none;contain: style size layout;}.ace_gutter-active-line {position: absolute;left: 0;right: 0;}.ace_scroller.ace_scroll-left {box-shadow: 17px 0 16px -16px rgba(0, 0, 0, 0.4) inset;}.ace_gutter-cell {position: absolute;top: 0;left: 0;right: 0;padding-left: 19px;padding-right: 6px;background-repeat: no-repeat;}.ace_gutter-cell.ace_error {background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAABOFBMVEX/////////QRswFAb/Ui4wFAYwFAYwFAaWGAfDRymzOSH/PxswFAb/SiUwFAYwFAbUPRvjQiDllog5HhHdRybsTi3/Tyv9Tir+Syj/UC3////XurebMBIwFAb/RSHbPx/gUzfdwL3kzMivKBAwFAbbvbnhPx66NhowFAYwFAaZJg8wFAaxKBDZurf/RB6mMxb/SCMwFAYwFAbxQB3+RB4wFAb/Qhy4Oh+4QifbNRcwFAYwFAYwFAb/QRzdNhgwFAYwFAbav7v/Uy7oaE68MBK5LxLewr/r2NXewLswFAaxJw4wFAbkPRy2PyYwFAaxKhLm1tMwFAazPiQwFAaUGAb/QBrfOx3bvrv/VC/maE4wFAbRPBq6MRO8Qynew8Dp2tjfwb0wFAbx6eju5+by6uns4uH9/f36+vr/GkHjAAAAYnRSTlMAGt+64rnWu/bo8eAA4InH3+DwoN7j4eLi4xP99Nfg4+b+/u9B/eDs1MD1mO7+4PHg2MXa347g7vDizMLN4eG+Pv7i5evs/v79yu7S3/DV7/498Yv24eH+4ufQ3Ozu/v7+y13sRqwAAADLSURBVHjaZc/XDsFgGIBhtDrshlitmk2IrbHFqL2pvXf/+78DPokj7+Fz9qpU/9UXJIlhmPaTaQ6QPaz0mm+5gwkgovcV6GZzd5JtCQwgsxoHOvJO15kleRLAnMgHFIESUEPmawB9ngmelTtipwwfASilxOLyiV5UVUyVAfbG0cCPHig+GBkzAENHS0AstVF6bacZIOzgLmxsHbt2OecNgJC83JERmePUYq8ARGkJx6XtFsdddBQgZE2nPR6CICZhawjA4Fb/chv+399kfR+MMMDGOQAAAABJRU5ErkJggg==");background-repeat: no-repeat;background-position: 2px center;}.ace_gutter-cell.ace_warning {background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAAmVBMVEX///8AAAD///8AAAAAAABPSzb/5sAAAAB/blH/73z/ulkAAAAAAAD85pkAAAAAAAACAgP/vGz/rkDerGbGrV7/pkQICAf////e0IsAAAD/oED/qTvhrnUAAAD/yHD/njcAAADuv2r/nz//oTj/p064oGf/zHAAAAA9Nir/tFIAAAD/tlTiuWf/tkIAAACynXEAAAAAAAAtIRW7zBpBAAAAM3RSTlMAABR1m7RXO8Ln31Z36zT+neXe5OzooRDfn+TZ4p3h2hTf4t3k3ucyrN1K5+Xaks52Sfs9CXgrAAAAjklEQVR42o3PbQ+CIBQFYEwboPhSYgoYunIqqLn6/z8uYdH8Vmdnu9vz4WwXgN/xTPRD2+sgOcZjsge/whXZgUaYYvT8QnuJaUrjrHUQreGczuEafQCO/SJTufTbroWsPgsllVhq3wJEk2jUSzX3CUEDJC84707djRc5MTAQxoLgupWRwW6UB5fS++NV8AbOZgnsC7BpEAAAAABJRU5ErkJggg==");background-position: 2px center;}.ace_gutter-cell.ace_info {background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAAAAAA6mKC9AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAAJ0Uk5TAAB2k804AAAAPklEQVQY02NgIB68QuO3tiLznjAwpKTgNyDbMegwisCHZUETUZV0ZqOquBpXj2rtnpSJT1AEnnRmL2OgGgAAIKkRQap2htgAAAAASUVORK5CYII=");background-position: 2px center;}.ace_dark .ace_gutter-cell.ace_info {background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQBAMAAADt3eJSAAAAJFBMVEUAAAChoaGAgIAqKiq+vr6tra1ZWVmUlJSbm5s8PDxubm56enrdgzg3AAAAAXRSTlMAQObYZgAAAClJREFUeNpjYMAPdsMYHegyJZFQBlsUlMFVCWUYKkAZMxZAGdxlDMQBAG+TBP4B6RyJAAAAAElFTkSuQmCC");}.ace_scrollbar {contain: strict;position: absolute;right: 0;bottom: 0;z-index: 6;}.ace_scrollbar-inner {position: absolute;cursor: text;left: 0;top: 0;}.ace_scrollbar-v{overflow-x: hidden;overflow-y: scroll;top: 0;}.ace_scrollbar-h {overflow-x: scroll;overflow-y: hidden;left: 0;}.ace_print-margin {position: absolute;height: 100%;}.ace_text-input {position: absolute;z-index: 0;width: 0.5em;height: 1em;opacity: 0;background: transparent;-moz-appearance: none;appearance: none;border: none;resize: none;outline: none;overflow: hidden;font: inherit;padding: 0 1px;margin: 0 -1px;contain: strict;-ms-user-select: text;-moz-user-select: text;-webkit-user-select: text;user-select: text;white-space: pre!important;}.ace_text-input.ace_composition {background: transparent;color: inherit;z-index: 1000;opacity: 1;}.ace_composition_placeholder { color: transparent }.ace_composition_marker { border-bottom: 1px solid;position: absolute;border-radius: 0;margin-top: 1px;}[ace_nocontext=true] {transform: none!important;filter: none!important;clip-path: none!important;mask : none!important;contain: none!important;perspective: none!important;mix-blend-mode: initial!important;z-index: auto;}.ace_layer {z-index: 1;position: absolute;overflow: hidden;word-wrap: normal;white-space: pre;height: 100%;width: 100%;box-sizing: border-box;pointer-events: none;}.ace_gutter-layer {position: relative;width: auto;text-align: right;pointer-events: auto;height: 1000000px;contain: style size layout;}.ace_text-layer {font: inherit !important;position: absolute;height: 1000000px;width: 1000000px;contain: style size layout;}.ace_text-layer > .ace_line, .ace_text-layer > .ace_line_group {contain: style size layout;position: absolute;top: 0;left: 0;right: 0;}.ace_hidpi .ace_text-layer,.ace_hidpi .ace_gutter-layer,.ace_hidpi .ace_content,.ace_hidpi .ace_gutter {contain: strict;will-change: transform;}.ace_hidpi .ace_text-layer > .ace_line, .ace_hidpi .ace_text-layer > .ace_line_group {contain: strict;}.ace_cjk {display: inline-block;text-align: center;}.ace_cursor-layer {z-index: 4;}.ace_cursor {z-index: 4;position: absolute;box-sizing: border-box;border-left: 2px solid;transform: translatez(0);}.ace_multiselect .ace_cursor {border-left-width: 1px;}.ace_slim-cursors .ace_cursor {border-left-width: 1px;}.ace_overwrite-cursors .ace_cursor {border-left-width: 0;border-bottom: 1px solid;}.ace_hidden-cursors .ace_cursor {opacity: 0.2;}.ace_hasPlaceholder .ace_hidden-cursors .ace_cursor {opacity: 0;}.ace_smooth-blinking .ace_cursor {transition: opacity 0.18s;}.ace_animate-blinking .ace_cursor {animation-duration: 1000ms;animation-timing-function: step-end;animation-name: blink-ace-animate;animation-iteration-count: infinite;}.ace_animate-blinking.ace_smooth-blinking .ace_cursor {animation-duration: 1000ms;animation-timing-function: ease-in-out;animation-name: blink-ace-animate-smooth;}@keyframes blink-ace-animate {from, to { opacity: 1; }60% { opacity: 0; }}@keyframes blink-ace-animate-smooth {from, to { opacity: 1; }45% { opacity: 1; }60% { opacity: 0; }85% { opacity: 0; }}.ace_marker-layer .ace_step, .ace_marker-layer .ace_stack {position: absolute;z-index: 3;}.ace_marker-layer .ace_selection {position: absolute;z-index: 5;}.ace_marker-layer .ace_bracket {position: absolute;z-index: 6;}.ace_marker-layer .ace_error_bracket {position: absolute;border-bottom: 1px solid #DE5555;border-radius: 0;}.ace_marker-layer .ace_active-line {position: absolute;z-index: 2;}.ace_marker-layer .ace_selected-word {position: absolute;z-index: 4;box-sizing: border-box;}.ace_line .ace_fold {box-sizing: border-box;display: inline-block;height: 11px;margin-top: -2px;vertical-align: middle;background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABEAAAAJCAYAAADU6McMAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAJpJREFUeNpi/P//PwOlgAXGYGRklAVSokD8GmjwY1wasKljQpYACtpCFeADcHVQfQyMQAwzwAZI3wJKvCLkfKBaMSClBlR7BOQikCFGQEErIH0VqkabiGCAqwUadAzZJRxQr/0gwiXIal8zQQPnNVTgJ1TdawL0T5gBIP1MUJNhBv2HKoQHHjqNrA4WO4zY0glyNKLT2KIfIMAAQsdgGiXvgnYAAAAASUVORK5CYII="),url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAA3CAYAAADNNiA5AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAACJJREFUeNpi+P//fxgTAwPDBxDxD078RSX+YeEyDFMCIMAAI3INmXiwf2YAAAAASUVORK5CYII=");background-repeat: no-repeat, repeat-x;background-position: center center, top left;color: transparent;border: 1px solid black;border-radius: 2px;cursor: pointer;pointer-events: auto;}.ace_dark .ace_fold {}.ace_fold:hover{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABEAAAAJCAYAAADU6McMAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAJpJREFUeNpi/P//PwOlgAXGYGRklAVSokD8GmjwY1wasKljQpYACtpCFeADcHVQfQyMQAwzwAZI3wJKvCLkfKBaMSClBlR7BOQikCFGQEErIH0VqkabiGCAqwUadAzZJRxQr/0gwiXIal8zQQPnNVTgJ1TdawL0T5gBIP1MUJNhBv2HKoQHHjqNrA4WO4zY0glyNKLT2KIfIMAAQsdgGiXvgnYAAAAASUVORK5CYII="),url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAA3CAYAAADNNiA5AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAACBJREFUeNpi+P//fz4TAwPDZxDxD5X4i5fLMEwJgAADAEPVDbjNw87ZAAAAAElFTkSuQmCC");}.ace_tooltip {background-color: #FFF;background-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.1));border: 1px solid gray;border-radius: 1px;box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);color: black;max-width: 100%;padding: 3px 4px;position: fixed;z-index: 999999;box-sizing: border-box;cursor: default;white-space: pre;word-wrap: break-word;line-height: normal;font-style: normal;font-weight: normal;letter-spacing: normal;pointer-events: none;}.ace_folding-enabled > .ace_gutter-cell {padding-right: 13px;}.ace_fold-widget {box-sizing: border-box;margin: 0 -12px 0 1px;display: none;width: 11px;vertical-align: top;background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAANElEQVR42mWKsQ0AMAzC8ixLlrzQjzmBiEjp0A6WwBCSPgKAXoLkqSot7nN3yMwR7pZ32NzpKkVoDBUxKAAAAABJRU5ErkJggg==");background-repeat: no-repeat;background-position: center;border-radius: 3px;border: 1px solid transparent;cursor: pointer;}.ace_folding-enabled .ace_fold-widget {display: inline-block; }.ace_fold-widget.ace_end {background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAANElEQVR42m3HwQkAMAhD0YzsRchFKI7sAikeWkrxwScEB0nh5e7KTPWimZki4tYfVbX+MNl4pyZXejUO1QAAAABJRU5ErkJggg==");}.ace_fold-widget.ace_closed {background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAAGCAYAAAAG5SQMAAAAOUlEQVR42jXKwQkAMAgDwKwqKD4EwQ26sSOkVWjgIIHAzPiCgaqiqnJHZnKICBERHN194O5b9vbLuAVRL+l0YWnZAAAAAElFTkSuQmCCXA==");}.ace_fold-widget:hover {border: 1px solid rgba(0, 0, 0, 0.3);background-color: rgba(255, 255, 255, 0.2);box-shadow: 0 1px 1px rgba(255, 255, 255, 0.7);}.ace_fold-widget:active {border: 1px solid rgba(0, 0, 0, 0.4);background-color: rgba(0, 0, 0, 0.05);box-shadow: 0 1px 1px rgba(255, 255, 255, 0.8);}.ace_dark .ace_fold-widget {background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAHklEQVQIW2P4//8/AzoGEQ7oGCaLLAhWiSwB146BAQCSTPYocqT0AAAAAElFTkSuQmCC");}.ace_dark .ace_fold-widget.ace_end {background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAH0lEQVQIW2P4//8/AxQ7wNjIAjDMgC4AxjCVKBirIAAF0kz2rlhxpAAAAABJRU5ErkJggg==");}.ace_dark .ace_fold-widget.ace_closed {background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAAFCAYAAACAcVaiAAAAHElEQVQIW2P4//+/AxAzgDADlOOAznHAKgPWAwARji8UIDTfQQAAAABJRU5ErkJggg==");}.ace_dark .ace_fold-widget:hover {box-shadow: 0 1px 1px rgba(255, 255, 255, 0.2);background-color: rgba(255, 255, 255, 0.1);}.ace_dark .ace_fold-widget:active {box-shadow: 0 1px 1px rgba(255, 255, 255, 0.2);}.ace_inline_button {border: 1px solid lightgray;display: inline-block;margin: -1px 8px;padding: 0 5px;pointer-events: auto;cursor: pointer;}.ace_inline_button:hover {border-color: gray;background: rgba(200,200,200,0.2);display: inline-block;pointer-events: auto;}.ace_fold-widget.ace_invalid {background-color: #FFB4B4;border-color: #DE5555;}.ace_fade-fold-widgets .ace_fold-widget {transition: opacity 0.4s ease 0.05s;opacity: 0;}.ace_fade-fold-widgets:hover .ace_fold-widget {transition: opacity 0.05s ease 0.05s;opacity:1;}.ace_underline {text-decoration: underline;}.ace_bold {font-weight: bold;}.ace_nobold .ace_bold {font-weight: normal;}.ace_italic {font-style: italic;}.ace_error-marker {background-color: rgba(255, 0, 0,0.2);position: absolute;z-index: 9;}.ace_highlight-marker {background-color: rgba(255, 255, 0,0.2);position: absolute;z-index: 8;}.ace_mobile-menu {position: absolute;line-height: 1.5;border-radius: 4px;-ms-user-select: none;-moz-user-select: none;-webkit-user-select: none;user-select: none;background: white;box-shadow: 1px 3px 2px grey;border: 1px solid #dcdcdc;color: black;}.ace_dark > .ace_mobile-menu {background: #333;color: #ccc;box-shadow: 1px 3px 2px grey;border: 1px solid #444;}.ace_mobile-button {padding: 2px;cursor: pointer;overflow: hidden;}.ace_mobile-button:hover {background-color: #eee;opacity:1;}.ace_mobile-button:active {background-color: #ddd;}.ace_placeholder {font-family: arial;transform: scale(0.9);transform-origin: left;white-space: pre;opacity: 0.7;margin: 0 10px;}',g=e("./lib/useragent"),v=g.isIE;i.importCssString(m,"ace_editor.css",!1);var y=function(e,t){var n=this;this.container=e||i.createElement("div"),i.addCssClass(this.container,"ace_editor"),i.HI_DPI&&i.addCssClass(this.container,"ace_hidpi"),this.setTheme(t),null==o.get("useStrictCSP")&&o.set("useStrictCSP",!1),this.$gutter=i.createElement("div"),this.$gutter.className="ace_gutter",this.container.appendChild(this.$gutter),this.$gutter.setAttribute("aria-hidden",!0),this.scroller=i.createElement("div"),this.scroller.className="ace_scroller",this.container.appendChild(this.scroller),this.content=i.createElement("div"),this.content.className="ace_content",this.scroller.appendChild(this.content),this.$gutterLayer=new a(this.$gutter),this.$gutterLayer.on("changeGutterWidth",this.onGutterResize.bind(this)),this.$markerBack=new s(this.content);var r=this.$textLayer=new l(this.content);this.canvas=r.element,this.$markerFront=new s(this.content),this.$cursorLayer=new c(this.content),this.$horizScroll=!1,this.$vScroll=!1,this.scrollBar=this.scrollBarV=new h(this.container,this),this.scrollBarH=new u(this.container,this),this.scrollBarV.on("scroll",function(e){n.$scrollAnimation||n.session.setScrollTop(e.data-n.scrollMargin.top)}),this.scrollBarH.on("scroll",function(e){n.$scrollAnimation||n.session.setScrollLeft(e.data-n.scrollMargin.left)}),this.scrollTop=0,this.scrollLeft=0,this.cursorPos={row:0,column:0},this.$fontMetrics=new f(this.container),this.$textLayer.$setFontMetrics(this.$fontMetrics),this.$textLayer.on("changeCharacterSize",function(e){n.updateCharacterSize(),n.onResize(!0,n.gutterWidth,n.$size.width,n.$size.height),n._signal("changeCharacterSize",e)}),this.$size={width:0,height:0,scrollerHeight:0,scrollerWidth:0,$dirty:!0},this.layerConfig={width:1,padding:0,firstRow:0,firstRowScreen:0,lastRow:0,lineHeight:0,characterWidth:0,minHeight:1,maxHeight:1,offset:0,height:1,gutterOffset:1},this.scrollMargin={left:0,right:0,top:0,bottom:0,v:0,h:0},this.margin={left:0,right:0,top:0,bottom:0,v:0,h:0},this.$keepTextAreaAtCursor=!g.isIOS,this.$loop=new d(this.$renderChanges.bind(this),this.container.ownerDocument.defaultView),this.$loop.schedule(this.CHANGE_FULL),this.updateCharacterSize(),this.setPadding(4),o.resetOptions(this),o._signal("renderer",this)};(function(){this.CHANGE_CURSOR=1,this.CHANGE_MARKER=2,this.CHANGE_GUTTER=4,this.CHANGE_SCROLL=8,this.CHANGE_LINES=16,this.CHANGE_TEXT=32,this.CHANGE_SIZE=64,this.CHANGE_MARKER_BACK=128,this.CHANGE_MARKER_FRONT=256,this.CHANGE_FULL=512,this.CHANGE_H_SCROLL=1024,r.implement(this,p),this.updateCharacterSize=function(){this.$textLayer.allowBoldFonts!=this.$allowBoldFonts&&(this.$allowBoldFonts=this.$textLayer.allowBoldFonts,this.setStyle("ace_nobold",!this.$allowBoldFonts)),this.layerConfig.characterWidth=this.characterWidth=this.$textLayer.getCharacterWidth(),this.layerConfig.lineHeight=this.lineHeight=this.$textLayer.getLineHeight(),this.$updatePrintMargin(),i.setStyle(this.scroller.style,"line-height",this.lineHeight+"px")},this.setSession=function(e){this.session&&this.session.doc.off("changeNewLineMode",this.onChangeNewLineMode),this.session=e,e&&this.scrollMargin.top&&e.getScrollTop()<=0&&e.setScrollTop(-this.scrollMargin.top),this.$cursorLayer.setSession(e),this.$markerBack.setSession(e),this.$markerFront.setSession(e),this.$gutterLayer.setSession(e),this.$textLayer.setSession(e),e&&(this.$loop.schedule(this.CHANGE_FULL),this.session.$setFontMetrics(this.$fontMetrics),this.scrollBarH.scrollLeft=this.scrollBarV.scrollTop=null,this.onChangeNewLineMode=this.onChangeNewLineMode.bind(this),this.onChangeNewLineMode(),this.session.doc.on("changeNewLineMode",this.onChangeNewLineMode))},this.updateLines=function(e,t,n){if(void 0===t&&(t=1/0),this.$changedLines?(this.$changedLines.firstRow>e&&(this.$changedLines.firstRow=e),this.$changedLines.lastRowthis.layerConfig.lastRow||this.$loop.schedule(this.CHANGE_LINES)},this.onChangeNewLineMode=function(){this.$loop.schedule(this.CHANGE_TEXT),this.$textLayer.$updateEolChar(),this.session.$bidiHandler.setEolChar(this.$textLayer.EOL_CHAR)},this.onChangeTabSize=function(){this.$loop.schedule(this.CHANGE_TEXT|this.CHANGE_MARKER),this.$textLayer.onChangeTabSize()},this.updateText=function(){this.$loop.schedule(this.CHANGE_TEXT)},this.updateFull=function(e){e?this.$renderChanges(this.CHANGE_FULL,!0):this.$loop.schedule(this.CHANGE_FULL)},this.updateFontSize=function(){this.$textLayer.checkForSizeChanges()},this.$changes=0,this.$updateSizeAsync=function(){this.$loop.pending?this.$size.$dirty=!0:this.onResize()},this.onResize=function(e,t,n,r){if(!(this.resizing>2)){this.resizing>0?this.resizing++:this.resizing=e?1:0;var i=this.container;r||(r=i.clientHeight||i.scrollHeight),n||(n=i.clientWidth||i.scrollWidth);var o=this.$updateCachedSize(e,t,n,r);if(!this.$size.scrollerHeight||!n&&!r)return this.resizing=0;e&&(this.$gutterLayer.$padding=null),e?this.$renderChanges(o|this.$changes,!0):this.$loop.schedule(o|this.$changes),this.resizing&&(this.resizing=0),this.scrollBarH.scrollLeft=this.scrollBarV.scrollTop=null}},this.$updateCachedSize=function(e,t,n,r){r-=this.$extraHeight||0;var o=0,a=this.$size,s={width:a.width,height:a.height,scrollerHeight:a.scrollerHeight,scrollerWidth:a.scrollerWidth};if(r&&(e||a.height!=r)&&(a.height=r,o|=this.CHANGE_SIZE,a.scrollerHeight=a.height,this.$horizScroll&&(a.scrollerHeight-=this.scrollBarH.getHeight()),this.scrollBarV.element.style.bottom=this.scrollBarH.getHeight()+"px",o|=this.CHANGE_SCROLL),n&&(e||a.width!=n)){o|=this.CHANGE_SIZE,a.width=n,null==t&&(t=this.$showGutter?this.$gutter.offsetWidth:0),this.gutterWidth=t,i.setStyle(this.scrollBarH.element.style,"left",t+"px"),i.setStyle(this.scroller.style,"left",t+this.margin.left+"px"),a.scrollerWidth=Math.max(0,n-t-this.scrollBarV.getWidth()-this.margin.h),i.setStyle(this.$gutter.style,"left",this.margin.left+"px");var l=this.scrollBarV.getWidth()+"px";i.setStyle(this.scrollBarH.element.style,"right",l),i.setStyle(this.scroller.style,"right",l),i.setStyle(this.scroller.style,"bottom",this.scrollBarH.getHeight()),(this.session&&this.session.getUseWrapMode()&&this.adjustWrapLimit()||e)&&(o|=this.CHANGE_FULL)}return a.$dirty=!n||!r,o&&this._signal("resize",s),o},this.onGutterResize=function(e){var t=this.$showGutter?e:0;t!=this.gutterWidth&&(this.$changes|=this.$updateCachedSize(!0,t,this.$size.width,this.$size.height)),this.session.getUseWrapMode()&&this.adjustWrapLimit()?this.$loop.schedule(this.CHANGE_FULL):this.$size.$dirty?this.$loop.schedule(this.CHANGE_FULL):this.$computeLayerConfig()},this.adjustWrapLimit=function(){var e=this.$size.scrollerWidth-2*this.$padding,t=Math.floor(e/this.characterWidth);return this.session.adjustWrapLimit(t,this.$showPrintMargin&&this.$printMarginColumn)},this.setAnimatedScroll=function(e){this.setOption("animatedScroll",e)},this.getAnimatedScroll=function(){return this.$animatedScroll},this.setShowInvisibles=function(e){this.setOption("showInvisibles",e),this.session.$bidiHandler.setShowInvisibles(e)},this.getShowInvisibles=function(){return this.getOption("showInvisibles")},this.getDisplayIndentGuides=function(){return this.getOption("displayIndentGuides")},this.setDisplayIndentGuides=function(e){this.setOption("displayIndentGuides",e)},this.setShowPrintMargin=function(e){this.setOption("showPrintMargin",e)},this.getShowPrintMargin=function(){return this.getOption("showPrintMargin")},this.setPrintMarginColumn=function(e){this.setOption("printMarginColumn",e)},this.getPrintMarginColumn=function(){return this.getOption("printMarginColumn")},this.getShowGutter=function(){return this.getOption("showGutter")},this.setShowGutter=function(e){return this.setOption("showGutter",e)},this.getFadeFoldWidgets=function(){return this.getOption("fadeFoldWidgets")},this.setFadeFoldWidgets=function(e){this.setOption("fadeFoldWidgets",e)},this.setHighlightGutterLine=function(e){this.setOption("highlightGutterLine",e)},this.getHighlightGutterLine=function(){return this.getOption("highlightGutterLine")},this.$updatePrintMargin=function(){if(this.$showPrintMargin||this.$printMarginEl){if(!this.$printMarginEl){var e=i.createElement("div");e.className="ace_layer ace_print-margin-layer",this.$printMarginEl=i.createElement("div"),this.$printMarginEl.className="ace_print-margin",e.appendChild(this.$printMarginEl),this.content.insertBefore(e,this.content.firstChild)}var t=this.$printMarginEl.style;t.left=Math.round(this.characterWidth*this.$printMarginColumn+this.$padding)+"px",t.visibility=this.$showPrintMargin?"visible":"hidden",this.session&&-1==this.session.$wrap&&this.adjustWrapLimit()}},this.getContainerElement=function(){return this.container},this.getMouseEventTarget=function(){return this.scroller},this.getTextAreaContainer=function(){return this.container},this.$moveTextAreaToCursor=function(){if(!this.$isMousePressed){var e=this.textarea.style,t=this.$composition;if(this.$keepTextAreaAtCursor||t){var n=this.$cursorLayer.$pixelPos;if(n){t&&t.markerRange&&(n=this.$cursorLayer.getPixelPosition(t.markerRange.start,!0));var r=this.layerConfig,o=n.top,a=n.left;o-=r.offset;var s=t&&t.useTextareaForIME?this.lineHeight:v?0:1;if(o<0||o>r.height-s)i.translate(this.textarea,0,0);else{var l=1,c=this.$size.height-s;if(t)if(t.useTextareaForIME){var u=this.textarea.value;l=this.characterWidth*this.session.$getStringScreenWidth(u)[0]}else o+=this.lineHeight+2;else o+=this.lineHeight;a-=this.scrollLeft,a>this.$size.scrollerWidth-l&&(a=this.$size.scrollerWidth-l),a+=this.gutterWidth+this.margin.left,i.setStyle(e,"height",s+"px"),i.setStyle(e,"width",l+"px"),i.translate(this.textarea,Math.min(a,this.$size.scrollerWidth-l),Math.min(o,c))}}}else i.translate(this.textarea,-100,0)}},this.getFirstVisibleRow=function(){return this.layerConfig.firstRow},this.getFirstFullyVisibleRow=function(){return this.layerConfig.firstRow+(0===this.layerConfig.offset?0:1)},this.getLastFullyVisibleRow=function(){var e=this.layerConfig,t=e.lastRow,n=this.session.documentToScreenRow(t,0)*e.lineHeight;return n-this.session.getScrollTop()>e.height-e.lineHeight?t-1:t},this.getLastVisibleRow=function(){return this.layerConfig.lastRow},this.$padding=null,this.setPadding=function(e){this.$padding=e,this.$textLayer.setPadding(e),this.$cursorLayer.setPadding(e),this.$markerFront.setPadding(e),this.$markerBack.setPadding(e),this.$loop.schedule(this.CHANGE_FULL),this.$updatePrintMargin()},this.setScrollMargin=function(e,t,n,r){var i=this.scrollMargin;i.top=0|e,i.bottom=0|t,i.right=0|r,i.left=0|n,i.v=i.top+i.bottom,i.h=i.left+i.right,i.top&&this.scrollTop<=0&&this.session&&this.session.setScrollTop(-i.top),this.updateFull()},this.setMargin=function(e,t,n,r){var i=this.margin;i.top=0|e,i.bottom=0|t,i.right=0|r,i.left=0|n,i.v=i.top+i.bottom,i.h=i.left+i.right,this.$updateCachedSize(!0,this.gutterWidth,this.$size.width,this.$size.height),this.updateFull()},this.getHScrollBarAlwaysVisible=function(){return this.$hScrollBarAlwaysVisible},this.setHScrollBarAlwaysVisible=function(e){this.setOption("hScrollBarAlwaysVisible",e)},this.getVScrollBarAlwaysVisible=function(){return this.$vScrollBarAlwaysVisible},this.setVScrollBarAlwaysVisible=function(e){this.setOption("vScrollBarAlwaysVisible",e)},this.$updateScrollBarV=function(){var e=this.layerConfig.maxHeight,t=this.$size.scrollerHeight;!this.$maxLines&&this.$scrollPastEnd&&(e-=(t-this.lineHeight)*this.$scrollPastEnd,this.scrollTop>e-t&&(e=this.scrollTop+t,this.scrollBarV.scrollTop=null)),this.scrollBarV.setScrollHeight(e+this.scrollMargin.v),this.scrollBarV.setScrollTop(this.scrollTop+this.scrollMargin.top)},this.$updateScrollBarH=function(){this.scrollBarH.setScrollWidth(this.layerConfig.width+2*this.$padding+this.scrollMargin.h),this.scrollBarH.setScrollLeft(this.scrollLeft+this.scrollMargin.left)},this.$frozen=!1,this.freeze=function(){this.$frozen=!0},this.unfreeze=function(){this.$frozen=!1},this.$renderChanges=function(e,t){if(this.$changes&&(e|=this.$changes,this.$changes=0),this.session&&this.container.offsetWidth&&!this.$frozen&&(e||t)){if(this.$size.$dirty)return this.$changes|=e,this.onResize(!0);this.lineHeight||this.$textLayer.checkForSizeChanges(),this._signal("beforeRender",e),this.session&&this.session.$bidiHandler&&this.session.$bidiHandler.updateCharacterWidths(this.$fontMetrics);var n=this.layerConfig;if(e&this.CHANGE_FULL||e&this.CHANGE_SIZE||e&this.CHANGE_TEXT||e&this.CHANGE_LINES||e&this.CHANGE_SCROLL||e&this.CHANGE_H_SCROLL){if(e|=this.$computeLayerConfig()|this.$loop.clear(),n.firstRow!=this.layerConfig.firstRow&&n.firstRowScreen==this.layerConfig.firstRowScreen){var r=this.scrollTop+(n.firstRow-this.layerConfig.firstRow)*this.lineHeight;r>0&&(this.scrollTop=r,e|=this.CHANGE_SCROLL,e|=this.$computeLayerConfig()|this.$loop.clear())}n=this.layerConfig,this.$updateScrollBarV(),e&this.CHANGE_H_SCROLL&&this.$updateScrollBarH(),i.translate(this.content,-this.scrollLeft,-n.offset);var o=n.width+2*this.$padding+"px",a=n.minHeight+"px";i.setStyle(this.content.style,"width",o),i.setStyle(this.content.style,"height",a)}if(e&this.CHANGE_H_SCROLL&&(i.translate(this.content,-this.scrollLeft,-n.offset),this.scroller.className=this.scrollLeft<=0?"ace_scroller":"ace_scroller ace_scroll-left"),e&this.CHANGE_FULL)return this.$changedLines=null,this.$textLayer.update(n),this.$showGutter&&this.$gutterLayer.update(n),this.$markerBack.update(n),this.$markerFront.update(n),this.$cursorLayer.update(n),this.$moveTextAreaToCursor(),void this._signal("afterRender",e);if(e&this.CHANGE_SCROLL)return this.$changedLines=null,e&this.CHANGE_TEXT||e&this.CHANGE_LINES?this.$textLayer.update(n):this.$textLayer.scrollLines(n),this.$showGutter&&(e&this.CHANGE_GUTTER||e&this.CHANGE_LINES?this.$gutterLayer.update(n):this.$gutterLayer.scrollLines(n)),this.$markerBack.update(n),this.$markerFront.update(n),this.$cursorLayer.update(n),this.$moveTextAreaToCursor(),void this._signal("afterRender",e);e&this.CHANGE_TEXT?(this.$changedLines=null,this.$textLayer.update(n),this.$showGutter&&this.$gutterLayer.update(n)):e&this.CHANGE_LINES?(this.$updateLines()||e&this.CHANGE_GUTTER&&this.$showGutter)&&this.$gutterLayer.update(n):e&this.CHANGE_TEXT||e&this.CHANGE_GUTTER?this.$showGutter&&this.$gutterLayer.update(n):e&this.CHANGE_CURSOR&&this.$highlightGutterLine&&this.$gutterLayer.updateLineHighlight(n),e&this.CHANGE_CURSOR&&(this.$cursorLayer.update(n),this.$moveTextAreaToCursor()),e&(this.CHANGE_MARKER|this.CHANGE_MARKER_FRONT)&&this.$markerFront.update(n),e&(this.CHANGE_MARKER|this.CHANGE_MARKER_BACK)&&this.$markerBack.update(n),this._signal("afterRender",e)}else this.$changes|=e},this.$autosize=function(){var e=this.session.getScreenLength()*this.lineHeight,t=this.$maxLines*this.lineHeight,n=Math.min(t,Math.max((this.$minLines||1)*this.lineHeight,e))+this.scrollMargin.v+(this.$extraHeight||0);this.$horizScroll&&(n+=this.scrollBarH.getHeight()),this.$maxPixelHeight&&n>this.$maxPixelHeight&&(n=this.$maxPixelHeight);var r=n<=2*this.lineHeight,i=!r&&e>t;if(n!=this.desiredHeight||this.$size.height!=this.desiredHeight||i!=this.$vScroll){i!=this.$vScroll&&(this.$vScroll=i,this.scrollBarV.setVisible(i));var o=this.container.clientWidth;this.container.style.height=n+"px",this.$updateCachedSize(!0,this.$gutterWidth,o,n),this.desiredHeight=n,this._signal("autosize")}},this.$computeLayerConfig=function(){var e=this.session,t=this.$size,n=t.height<=2*this.lineHeight,r=this.session.getScreenLength(),i=r*this.lineHeight,o=this.$getLongestLine(),a=!n&&(this.$hScrollBarAlwaysVisible||t.scrollerWidth-o-2*this.$padding<0),s=this.$horizScroll!==a;s&&(this.$horizScroll=a,this.scrollBarH.setVisible(a));var l=this.$vScroll;this.$maxLines&&this.lineHeight>1&&this.$autosize();var c=t.scrollerHeight+this.lineHeight,u=!this.$maxLines&&this.$scrollPastEnd?(t.scrollerHeight-this.lineHeight)*this.$scrollPastEnd:0;i+=u;var h=this.scrollMargin;this.session.setScrollTop(Math.max(-h.top,Math.min(this.scrollTop,i-t.scrollerHeight+h.bottom))),this.session.setScrollLeft(Math.max(-h.left,Math.min(this.scrollLeft,o+2*this.$padding-t.scrollerWidth+h.right)));var d=!n&&(this.$vScrollBarAlwaysVisible||t.scrollerHeight-i+u<0||this.scrollTop>h.top),f=l!==d;f&&(this.$vScroll=d,this.scrollBarV.setVisible(d));var p,m,g=this.scrollTop%this.lineHeight,v=Math.ceil(c/this.lineHeight)-1,y=Math.max(0,Math.round((this.scrollTop-g)/this.lineHeight)),b=y+v,w=this.lineHeight;y=e.screenToDocumentRow(y,0);var x=e.getFoldLine(y);x&&(y=x.start.row),p=e.documentToScreenRow(y,0),m=e.getRowLength(y)*w,b=Math.min(e.screenToDocumentRow(b,0),e.getLength()-1),c=t.scrollerHeight+e.getRowLength(b)*w+m,g=this.scrollTop-p*w;var _=0;return(this.layerConfig.width!=o||s)&&(_=this.CHANGE_H_SCROLL),(s||f)&&(_|=this.$updateCachedSize(!0,this.gutterWidth,t.width,t.height),this._signal("scrollbarVisibilityChanged"),f&&(o=this.$getLongestLine())),this.layerConfig={width:o,padding:this.$padding,firstRow:y,firstRowScreen:p,lastRow:b,lineHeight:w,characterWidth:this.characterWidth,minHeight:c,maxHeight:i,offset:g,gutterOffset:w?Math.max(0,Math.ceil((g+t.height-t.scrollerHeight)/w)):0,height:this.$size.scrollerHeight},this.session.$bidiHandler&&this.session.$bidiHandler.setContentWidth(o-this.$padding),_},this.$updateLines=function(){if(this.$changedLines){var e=this.$changedLines.firstRow,t=this.$changedLines.lastRow;this.$changedLines=null;var n=this.layerConfig;if(!(e>n.lastRow+1)&&!(tthis.$textLayer.MAX_LINE_LENGTH&&(e=this.$textLayer.MAX_LINE_LENGTH+30),Math.max(this.$size.scrollerWidth-2*this.$padding,Math.round(e*this.characterWidth))},this.updateFrontMarkers=function(){this.$markerFront.setMarkers(this.session.getMarkers(!0)),this.$loop.schedule(this.CHANGE_MARKER_FRONT)},this.updateBackMarkers=function(){this.$markerBack.setMarkers(this.session.getMarkers()),this.$loop.schedule(this.CHANGE_MARKER_BACK)},this.addGutterDecoration=function(e,t){this.$gutterLayer.addGutterDecoration(e,t)},this.removeGutterDecoration=function(e,t){this.$gutterLayer.removeGutterDecoration(e,t)},this.updateBreakpoints=function(e){this.$loop.schedule(this.CHANGE_GUTTER)},this.setAnnotations=function(e){this.$gutterLayer.setAnnotations(e),this.$loop.schedule(this.CHANGE_GUTTER)},this.updateCursor=function(){this.$loop.schedule(this.CHANGE_CURSOR)},this.hideCursor=function(){this.$cursorLayer.hideCursor()},this.showCursor=function(){this.$cursorLayer.showCursor()},this.scrollSelectionIntoView=function(e,t,n){this.scrollCursorIntoView(e,n),this.scrollCursorIntoView(t,n)},this.scrollCursorIntoView=function(e,t,n){if(0!==this.$size.scrollerHeight){var r=this.$cursorLayer.getPixelPosition(e),i=r.left,o=r.top,a=n&&n.top||0,s=n&&n.bottom||0,l=this.$scrollAnimation?this.session.getScrollTop():this.scrollTop;l+a>o?(t&&l+a>o+this.lineHeight&&(o-=t*this.$size.scrollerHeight),0===o&&(o=-this.scrollMargin.top),this.session.setScrollTop(o)):l+this.$size.scrollerHeight-si?(i=1-this.scrollMargin.top||(t>0&&this.session.getScrollTop()+this.$size.scrollerHeight-this.layerConfig.maxHeight<-1+this.scrollMargin.bottom||(e<0&&this.session.getScrollLeft()>=1-this.scrollMargin.left||(e>0&&this.session.getScrollLeft()+this.$size.scrollerWidth-this.layerConfig.width<-1+this.scrollMargin.right||void 0)))},this.pixelToScreenCoordinates=function(e,t){var n;if(this.$hasCssTransforms){n={top:0,left:0};var r=this.$fontMetrics.transformCoordinates([e,t]);e=r[1]-this.gutterWidth-this.margin.left,t=r[0]}else n=this.scroller.getBoundingClientRect();var i=e+this.scrollLeft-n.left-this.$padding,o=i/this.characterWidth,a=Math.floor((t+this.scrollTop-n.top)/this.lineHeight),s=this.$blockCursor?Math.floor(o):Math.round(o);return{row:a,column:s,side:o-s>0?1:-1,offsetX:i}},this.screenToTextCoordinates=function(e,t){var n;if(this.$hasCssTransforms){n={top:0,left:0};var r=this.$fontMetrics.transformCoordinates([e,t]);e=r[1]-this.gutterWidth-this.margin.left,t=r[0]}else n=this.scroller.getBoundingClientRect();var i=e+this.scrollLeft-n.left-this.$padding,o=i/this.characterWidth,a=this.$blockCursor?Math.floor(o):Math.round(o),s=Math.floor((t+this.scrollTop-n.top)/this.lineHeight);return this.session.screenToDocumentPosition(s,Math.max(a,0),i)},this.textToScreenCoordinates=function(e,t){var n=this.scroller.getBoundingClientRect(),r=this.session.documentToScreenPosition(e,t),i=this.$padding+(this.session.$bidiHandler.isBidiRow(r.row,e)?this.session.$bidiHandler.getPosLeft(r.column):Math.round(r.column*this.characterWidth)),o=r.row*this.lineHeight;return{pageX:n.left+i-this.scrollLeft,pageY:n.top+o-this.scrollTop}},this.visualizeFocus=function(){i.addCssClass(this.container,"ace_focus")},this.visualizeBlur=function(){i.removeCssClass(this.container,"ace_focus")},this.showComposition=function(e){this.$composition=e,e.cssText||(e.cssText=this.textarea.style.cssText),void 0==e.useTextareaForIME&&(e.useTextareaForIME=this.$useTextareaForIME),this.$useTextareaForIME?(i.addCssClass(this.textarea,"ace_composition"),this.textarea.style.cssText="",this.$moveTextAreaToCursor(),this.$cursorLayer.element.style.display="none"):e.markerId=this.session.addMarker(e.markerRange,"ace_composition_marker","text")},this.setCompositionText=function(e){var t=this.session.selection.cursor;this.addToken(e,"composition_placeholder",t.row,t.column),this.$moveTextAreaToCursor()},this.hideComposition=function(){if(this.$composition){this.$composition.markerId&&this.session.removeMarker(this.$composition.markerId),i.removeCssClass(this.textarea,"ace_composition"),this.textarea.style.cssText=this.$composition.cssText;var e=this.session.selection.cursor;this.removeExtraToken(e.row,e.column),this.$composition=null,this.$cursorLayer.element.style.display=""}},this.addToken=function(e,t,n,r){var i=this.session;i.bgTokenizer.lines[n]=null;var o={type:t,value:e},a=i.getTokens(n);if(null==r)a.push(o);else for(var s=0,l=0;l50&&e.length>this.$doc.getLength()>>1?this.call("setValue",[this.$doc.getValue()]):this.emit("change",{data:e}))}}).call(c.prototype);var u=function(e,t,n){var r=null,i=!1,s=Object.create(o),l=[],u=new c({messageBuffer:l,terminate:function(){},postMessage:function(e){l.push(e),r&&(i?setTimeout(h):h())}});u.setEmitSync=function(e){i=e};var h=function(){var e=l.shift();e.command?r[e.command].apply(r,e.args):e.event&&s._signal(e.event,e.data)};return s.postMessage=function(e){u.onMessage({data:e})},s.callback=function(e,t){this.postMessage({type:"call",id:t,data:e})},s.emit=function(e,t){this.postMessage({type:"event",name:e,data:t})},a.loadModule(["worker",t],function(e){r=new e[n](s);while(l.length)h()}),u};t.UIWorkerClient=u,t.WorkerClient=c,t.createWorker=l}),ace.define("ace/placeholder",["require","exports","module","ace/range","ace/lib/event_emitter","ace/lib/oop"],function(e,t,n){"use strict";var r=e("./range").Range,i=e("./lib/event_emitter").EventEmitter,o=e("./lib/oop"),a=function(e,t,n,r,i,o){var a=this;this.length=t,this.session=e,this.doc=e.getDocument(),this.mainClass=i,this.othersClass=o,this.$onUpdate=this.onUpdate.bind(this),this.doc.on("change",this.$onUpdate),this.$others=r,this.$onCursorChange=function(){setTimeout(function(){a.onCursorChange()})},this.$pos=n;var s=e.getUndoManager().$undoStack||e.getUndoManager().$undostack||{length:-1};this.$undoStackDepth=s.length,this.setup(),e.selection.on("changeCursor",this.$onCursorChange)};(function(){o.implement(this,i),this.setup=function(){var e=this,t=this.doc,n=this.session;this.selectionBefore=n.selection.toJSON(),n.selection.inMultiSelectMode&&n.selection.toSingleRange(),this.pos=t.createAnchor(this.$pos.row,this.$pos.column);var i=this.pos;i.$insertRight=!0,i.detach(),i.markerId=n.addMarker(new r(i.row,i.column,i.row,i.column+this.length),this.mainClass,null,!1),this.others=[],this.$others.forEach(function(n){var r=t.createAnchor(n.row,n.column);r.$insertRight=!0,r.detach(),e.others.push(r)}),n.setUndoSelect(!1)},this.showOtherMarkers=function(){if(!this.othersActive){var e=this.session,t=this;this.othersActive=!0,this.others.forEach(function(n){n.markerId=e.addMarker(new r(n.row,n.column,n.row,n.column+t.length),t.othersClass,null,!1)})}},this.hideOtherMarkers=function(){if(this.othersActive){this.othersActive=!1;for(var e=0;e=this.pos.column&&t.start.column<=this.pos.column+this.length+1,o=t.start.column-this.pos.column;if(this.updateAnchors(e),i&&(this.length+=n),i&&!this.session.$fromUndo)if("insert"===e.action)for(var a=this.others.length-1;a>=0;a--){var s=this.others[a],l={row:s.row,column:s.column+o};this.doc.insertMergedLines(l,e.lines)}else if("remove"===e.action)for(a=this.others.length-1;a>=0;a--){s=this.others[a],l={row:s.row,column:s.column+o};this.doc.remove(new r(l.row,l.column,l.row,l.column-n))}this.$updating=!1,this.updateMarkers()}},this.updateAnchors=function(e){this.pos.onChange(e);for(var t=this.others.length;t--;)this.others[t].onChange(e);this.updateMarkers()},this.updateMarkers=function(){if(!this.$updating){var e=this,t=this.session,n=function(n,i){t.removeMarker(n.markerId),n.markerId=t.addMarker(new r(n.row,n.column,n.row,n.column+e.length),i,null,!1)};n(this.pos,this.mainClass);for(var i=this.others.length;i--;)n(this.others[i],this.othersClass)}},this.onCursorChange=function(e){if(!this.$updating&&this.session){var t=this.session.selection.getCursor();t.row===this.pos.row&&t.column>=this.pos.column&&t.column<=this.pos.column+this.length?(this.showOtherMarkers(),this._emit("cursorEnter",e)):(this.hideOtherMarkers(),this._emit("cursorLeave",e))}},this.detach=function(){this.session.removeMarker(this.pos&&this.pos.markerId),this.hideOtherMarkers(),this.doc.off("change",this.$onUpdate),this.session.selection.off("changeCursor",this.$onCursorChange),this.session.setUndoSelect(!0),this.session=null},this.cancel=function(){if(-1!==this.$undoStackDepth){for(var e=this.session.getUndoManager(),t=(e.$undoStack||e.$undostack).length-this.$undoStackDepth,n=0;n1?e.multiSelect.joinSelections():e.multiSelect.splitIntoLines()},bindKey:{win:"Ctrl-Alt-L",mac:"Ctrl-Alt-L"},readOnly:!0},{name:"splitSelectionIntoLines",description:"Split into lines",exec:function(e){e.multiSelect.splitIntoLines()},readOnly:!0},{name:"alignCursors",description:"Align cursors",exec:function(e){e.alignCursors()},bindKey:{win:"Ctrl-Alt-A",mac:"Ctrl-Alt-A"},scrollIntoView:"cursor"},{name:"findAll",description:"Find all",exec:function(e){e.findAll()},bindKey:{win:"Ctrl-Alt-K",mac:"Ctrl-Alt-G"},scrollIntoView:"cursor",readOnly:!0}],t.multiSelectCommands=[{name:"singleSelection",description:"Single selection",bindKey:"esc",exec:function(e){e.exitMultiSelectMode()},scrollIntoView:"cursor",readOnly:!0,isAvailable:function(e){return e&&e.inMultiSelectMode}}];var r=e("../keyboard/hash_handler").HashHandler;t.keyboardHandler=new r(t.multiSelectCommands)}),ace.define("ace/multi_select",["require","exports","module","ace/range_list","ace/range","ace/selection","ace/mouse/multi_select_handler","ace/lib/event","ace/lib/lang","ace/commands/multi_select_commands","ace/search","ace/edit_session","ace/editor","ace/config"],function(e,t,n){var r=e("./range_list").RangeList,i=e("./range").Range,o=e("./selection").Selection,a=e("./mouse/multi_select_handler").onMouseDown,s=e("./lib/event"),l=e("./lib/lang"),c=e("./commands/multi_select_commands");t.commands=c.defaultCommands.concat(c.multiSelectCommands);var u=e("./search").Search,h=new u;function d(e,t,n){return h.$options.wrap=!0,h.$options.needle=t,h.$options.backwards=-1==n,h.find(e)}var f=e("./edit_session").EditSession;(function(){this.getSelectionMarkers=function(){return this.$selectionMarkers}}).call(f.prototype),function(){this.ranges=null,this.rangeList=null,this.addRange=function(e,t){if(e){if(!this.inMultiSelectMode&&0===this.rangeCount){var n=this.toOrientedRange();if(this.rangeList.add(n),this.rangeList.add(e),2!=this.rangeList.ranges.length)return this.rangeList.removeAll(),t||this.fromOrientedRange(e);this.rangeList.removeAll(),this.rangeList.add(n),this.$onAddRange(n)}e.cursor||(e.cursor=e.end);var r=this.rangeList.add(e);return this.$onAddRange(e),r.length&&this.$onRemoveRange(r),this.rangeCount>1&&!this.inMultiSelectMode&&(this._signal("multiSelect"),this.inMultiSelectMode=!0,this.session.$undoSelect=!1,this.rangeList.attach(this.session)),t||this.fromOrientedRange(e)}},this.toSingleRange=function(e){e=e||this.ranges[0];var t=this.rangeList.removeAll();t.length&&this.$onRemoveRange(t),e&&this.fromOrientedRange(e)},this.substractPoint=function(e){var t=this.rangeList.substractPoint(e);if(t)return this.$onRemoveRange(t),t[0]},this.mergeOverlappingRanges=function(){var e=this.rangeList.merge();e.length&&this.$onRemoveRange(e)},this.$onAddRange=function(e){this.rangeCount=this.rangeList.ranges.length,this.ranges.unshift(e),this._signal("addRange",{range:e})},this.$onRemoveRange=function(e){if(this.rangeCount=this.rangeList.ranges.length,1==this.rangeCount&&this.inMultiSelectMode){var t=this.rangeList.ranges.pop();e.push(t),this.rangeCount=0}for(var n=e.length;n--;){var r=this.ranges.indexOf(e[n]);this.ranges.splice(r,1)}this._signal("removeRange",{ranges:e}),0===this.rangeCount&&this.inMultiSelectMode&&(this.inMultiSelectMode=!1,this._signal("singleSelect"),this.session.$undoSelect=!0,this.rangeList.detach(this.session)),t=t||this.ranges[0],t&&!t.isEqual(this.getRange())&&this.fromOrientedRange(t)},this.$initRangeList=function(){this.rangeList||(this.rangeList=new r,this.ranges=[],this.rangeCount=0)},this.getAllRanges=function(){return this.rangeCount?this.rangeList.ranges.concat():[this.getRange()]},this.splitIntoLines=function(){for(var e=this.ranges.length?this.ranges:[this.getRange()],t=[],n=0;n1){var e=this.rangeList.ranges,t=e[e.length-1],n=i.fromPoints(e[0].start,t.end);this.toSingleRange(),this.setSelectionRange(n,t.cursor==t.start)}else{var r=this.session.documentToScreenPosition(this.cursor),o=this.session.documentToScreenPosition(this.anchor),a=this.rectangularRangeBlock(r,o);a.forEach(this.addRange,this)}},this.rectangularRangeBlock=function(e,t,n){var r=[],o=e.column0)v--;if(v>0){var y=0;while(r[y].isEmpty())y++}for(var b=v;b>=y;b--)r[b].isEmpty()&&r.splice(b,1)}return r}}.call(o.prototype);var p=e("./editor").Editor;function m(e,t){return e.row==t.row&&e.column==t.column}function g(e){e.$multiselectOnSessionChange||(e.$onAddRange=e.$onAddRange.bind(e),e.$onRemoveRange=e.$onRemoveRange.bind(e),e.$onMultiSelect=e.$onMultiSelect.bind(e),e.$onSingleSelect=e.$onSingleSelect.bind(e),e.$multiselectOnSessionChange=t.onSessionChange.bind(e),e.$checkMultiselectChange=e.$checkMultiselectChange.bind(e),e.$multiselectOnSessionChange(e),e.on("changeSession",e.$multiselectOnSessionChange),e.on("mousedown",a),e.commands.addCommands(c.defaultCommands),v(e))}function v(e){if(e.textInput){var t=e.textInput.getElement(),n=!1;s.addListener(t,"keydown",function(t){var i=18==t.keyCode&&!(t.ctrlKey||t.shiftKey||t.metaKey);e.$blockSelectEnabled&&i?n||(e.renderer.setMouseCursor("crosshair"),n=!0):n&&r()},e),s.addListener(t,"keyup",r,e),s.addListener(t,"blur",r,e)}function r(t){n&&(e.renderer.setMouseCursor(""),n=!1)}}(function(){this.updateSelectionMarkers=function(){this.renderer.updateCursor(),this.renderer.updateBackMarkers()},this.addSelectionMarker=function(e){e.cursor||(e.cursor=e.end);var t=this.getSelectionStyle();return e.marker=this.session.addMarker(e,"ace_selection",t),this.session.$selectionMarkers.push(e),this.session.selectionMarkerCount=this.session.$selectionMarkers.length,e},this.removeSelectionMarker=function(e){if(e.marker){this.session.removeMarker(e.marker);var t=this.session.$selectionMarkers.indexOf(e);-1!=t&&this.session.$selectionMarkers.splice(t,1),this.session.selectionMarkerCount=this.session.$selectionMarkers.length}},this.removeSelectionMarkers=function(e){for(var t=this.session.$selectionMarkers,n=e.length;n--;){var r=e[n];if(r.marker){this.session.removeMarker(r.marker);var i=t.indexOf(r);-1!=i&&t.splice(i,1)}}this.session.selectionMarkerCount=t.length},this.$onAddRange=function(e){this.addSelectionMarker(e.range),this.renderer.updateCursor(),this.renderer.updateBackMarkers()},this.$onRemoveRange=function(e){this.removeSelectionMarkers(e.ranges),this.renderer.updateCursor(),this.renderer.updateBackMarkers()},this.$onMultiSelect=function(e){this.inMultiSelectMode||(this.inMultiSelectMode=!0,this.setStyle("ace_multiselect"),this.keyBinding.addKeyboardHandler(c.keyboardHandler),this.commands.setDefaultHandler("exec",this.$onMultiSelectExec),this.renderer.updateCursor(),this.renderer.updateBackMarkers())},this.$onSingleSelect=function(e){this.session.multiSelect.inVirtualMode||(this.inMultiSelectMode=!1,this.unsetStyle("ace_multiselect"),this.keyBinding.removeKeyboardHandler(c.keyboardHandler),this.commands.removeDefaultHandler("exec",this.$onMultiSelectExec),this.renderer.updateCursor(),this.renderer.updateBackMarkers(),this._emit("changeSelection"))},this.$onMultiSelectExec=function(e){var t=e.command,n=e.editor;if(n.multiSelect){if(t.multiSelectAction)"forEach"==t.multiSelectAction?r=n.forEachSelection(t,e.args):"forEachLine"==t.multiSelectAction?r=n.forEachSelection(t,e.args,!0):"single"==t.multiSelectAction?(n.exitMultiSelectMode(),r=t.exec(n,e.args||{})):r=t.multiSelectAction(n,e.args||{});else{var r=t.exec(n,e.args||{});n.multiSelect.addRange(n.multiSelect.toOrientedRange()),n.multiSelect.mergeOverlappingRanges()}return r}},this.forEachSelection=function(e,t,n){if(!this.inVirtualSelectionMode){var r,i=n&&n.keepOrder,a=1==n||n&&n.$byLines,s=this.session,l=this.selection,c=l.rangeList,u=(i?l:c).ranges;if(!u.length)return e.exec?e.exec(this,t||{}):e(this,t||{});var h=l._eventRegistry;l._eventRegistry={};var d=new o(s);this.inVirtualSelectionMode=!0;for(var f=u.length;f--;){if(a)while(f>0&&u[f].start.row==u[f-1].end.row)f--;d.fromOrientedRange(u[f]),d.index=f,this.selection=s.selection=d;var p=e.exec?e.exec(this,t||{}):e(this,t||{});r||void 0===p||(r=p),d.toOrientedRange(u[f])}d.detach(),this.selection=s.selection=l,this.inVirtualSelectionMode=!1,l._eventRegistry=h,l.mergeOverlappingRanges(),l.ranges[0]&&l.fromOrientedRange(l.ranges[0]);var m=this.renderer.$scrollAnimation;return this.onCursorChange(),this.onSelectionChange(),m&&m.from==m.to&&this.renderer.animateScrolling(m.from),r}},this.exitMultiSelectMode=function(){this.inMultiSelectMode&&!this.inVirtualSelectionMode&&this.multiSelect.toSingleRange()},this.getSelectedText=function(){var e="";if(this.inMultiSelectMode&&!this.inVirtualSelectionMode){for(var t=this.multiSelect.rangeList.ranges,n=[],r=0;ra&&(a=n.column),iu?e.insert(r,l.stringRepeat(" ",o-u)):e.remove(new i(r.row,r.column,r.row,r.column-o+u)),t.start.column=t.end.column=a,t.start.row=t.end.row=r.row,t.cursor=t.end}),t.fromOrientedRange(n[0]),this.renderer.updateCursor(),this.renderer.updateBackMarkers()}else{var u=this.selection.getRange(),h=u.start.row,d=u.end.row,f=h==d;if(f){var p,m=this.session.getLength();do{p=this.session.getLine(d)}while(/[=:]/.test(p)&&++d0);h<0&&(h=0),d>=m&&(d=m-1)}var g=this.session.removeFullLines(h,d);g=this.$reAlignText(g,f),this.session.insert({row:h,column:0},g.join("\n")+"\n"),f||(u.start.column=0,u.end.column=g[g.length-1].length),this.selection.setRange(u)}},this.$reAlignText=function(e,t){var n,r,i,o=!0,a=!0;return e.map(function(e){var t=e.match(/(\s*)(.*?)(\s*)([=:].*)/);return t?null==n?(n=t[1].length,r=t[2].length,i=t[3].length,t):(n+r+i!=t[1].length+t[2].length+t[3].length&&(a=!1),n!=t[1].length&&(o=!1),n>t[1].length&&(n=t[1].length),rt[3].length&&(i=t[3].length),t):[e]}).map(t?c:o?a?u:c:h);function s(e){return l.stringRepeat(" ",e)}function c(e){return e[2]?s(n)+e[2]+s(r-e[2].length+i)+e[4].replace(/^([=:])\s+/,"$1 "):e[0]}function u(e){return e[2]?s(n+r-e[2].length)+e[2]+s(i)+e[4].replace(/^([=:])\s+/,"$1 "):e[0]}function h(e){return e[2]?s(n)+e[2]+s(i)+e[4].replace(/^([=:])\s+/,"$1 "):e[0]}}}).call(p.prototype),t.onSessionChange=function(e){var t=e.session;t&&!t.multiSelect&&(t.$selectionMarkers=[],t.selection.$initRangeList(),t.multiSelect=t.selection),this.multiSelect=t&&t.multiSelect;var n=e.oldSession;n&&(n.multiSelect.off("addRange",this.$onAddRange),n.multiSelect.off("removeRange",this.$onRemoveRange),n.multiSelect.off("multiSelect",this.$onMultiSelect),n.multiSelect.off("singleSelect",this.$onSingleSelect),n.multiSelect.lead.off("change",this.$checkMultiselectChange),n.multiSelect.anchor.off("change",this.$checkMultiselectChange)),t&&(t.multiSelect.on("addRange",this.$onAddRange),t.multiSelect.on("removeRange",this.$onRemoveRange),t.multiSelect.on("multiSelect",this.$onMultiSelect),t.multiSelect.on("singleSelect",this.$onSingleSelect),t.multiSelect.lead.on("change",this.$checkMultiselectChange),t.multiSelect.anchor.on("change",this.$checkMultiselectChange)),t&&this.inMultiSelectMode!=t.selection.inMultiSelectMode&&(t.selection.inMultiSelectMode?this.$onMultiSelect():this.$onSingleSelect())},t.MultiSelect=g,e("./config").defineOptions(p.prototype,"editor",{enableMultiselect:{set:function(e){g(this),e?(this.on("changeSession",this.$multiselectOnSessionChange),this.on("mousedown",a)):(this.off("changeSession",this.$multiselectOnSessionChange),this.off("mousedown",a))},value:!0},enableBlockSelect:{set:function(e){this.$blockSelectEnabled=e},value:!0}})}),ace.define("ace/mode/folding/fold_mode",["require","exports","module","ace/range"],function(e,t,n){"use strict";var r=e("../../range").Range,i=t.FoldMode=function(){};(function(){this.foldingStartMarker=null,this.foldingStopMarker=null,this.getFoldWidget=function(e,t,n){var r=e.getLine(n);return this.foldingStartMarker.test(r)?"start":"markbeginend"==t&&this.foldingStopMarker&&this.foldingStopMarker.test(r)?"end":""},this.getFoldWidgetRange=function(e,t,n){return null},this.indentationBlock=function(e,t,n){var i=/\S/,o=e.getLine(t),a=o.search(i);if(-1!=a){var s=n||o.length,l=e.getLength(),c=t,u=t;while(++tc){var f=e.getLine(u).length;return new r(c,s,u,f)}}},this.openingBracketBlock=function(e,t,n,i,o){var a={row:n,column:i+1},s=e.$findClosingBracket(t,a,o);if(s){var l=e.foldWidgets[s.row];return null==l&&(l=e.getFoldWidget(s.row)),"start"==l&&s.row>a.row&&(s.row--,s.column=e.getLine(s.row).length),r.fromPoints(a,s)}},this.closingBracketBlock=function(e,t,n,i,o){var a={row:n,column:i},s=e.$findOpeningBracket(t,a);if(s)return s.column++,a.column--,r.fromPoints(s,a)}}).call(i.prototype)}),ace.define("ace/theme/textmate",["require","exports","module","ace/lib/dom"],function(e,t,n){"use strict";t.isDark=!1,t.cssClass="ace-tm",t.cssText='.ace-tm .ace_gutter {background: #f0f0f0;color: #333;}.ace-tm .ace_print-margin {width: 1px;background: #e8e8e8;}.ace-tm .ace_fold {background-color: #6B72E6;}.ace-tm {background-color: #FFFFFF;color: black;}.ace-tm .ace_cursor {color: black;}.ace-tm .ace_invisible {color: rgb(191, 191, 191);}.ace-tm .ace_storage,.ace-tm .ace_keyword {color: blue;}.ace-tm .ace_constant {color: rgb(197, 6, 11);}.ace-tm .ace_constant.ace_buildin {color: rgb(88, 72, 246);}.ace-tm .ace_constant.ace_language {color: rgb(88, 92, 246);}.ace-tm .ace_constant.ace_library {color: rgb(6, 150, 14);}.ace-tm .ace_invalid {background-color: rgba(255, 0, 0, 0.1);color: red;}.ace-tm .ace_support.ace_function {color: rgb(60, 76, 114);}.ace-tm .ace_support.ace_constant {color: rgb(6, 150, 14);}.ace-tm .ace_support.ace_type,.ace-tm .ace_support.ace_class {color: rgb(109, 121, 222);}.ace-tm .ace_keyword.ace_operator {color: rgb(104, 118, 135);}.ace-tm .ace_string {color: rgb(3, 106, 7);}.ace-tm .ace_comment {color: rgb(76, 136, 107);}.ace-tm .ace_comment.ace_doc {color: rgb(0, 102, 255);}.ace-tm .ace_comment.ace_doc.ace_tag {color: rgb(128, 159, 191);}.ace-tm .ace_constant.ace_numeric {color: rgb(0, 0, 205);}.ace-tm .ace_variable {color: rgb(49, 132, 149);}.ace-tm .ace_xml-pe {color: rgb(104, 104, 91);}.ace-tm .ace_entity.ace_name.ace_function {color: #0000A2;}.ace-tm .ace_heading {color: rgb(12, 7, 255);}.ace-tm .ace_list {color:rgb(185, 6, 144);}.ace-tm .ace_meta.ace_tag {color:rgb(0, 22, 142);}.ace-tm .ace_string.ace_regex {color: rgb(255, 0, 0)}.ace-tm .ace_marker-layer .ace_selection {background: rgb(181, 213, 255);}.ace-tm.ace_multiselect .ace_selection.ace_start {box-shadow: 0 0 3px 0px white;}.ace-tm .ace_marker-layer .ace_step {background: rgb(252, 255, 0);}.ace-tm .ace_marker-layer .ace_stack {background: rgb(164, 229, 101);}.ace-tm .ace_marker-layer .ace_bracket {margin: -1px 0 0 -1px;border: 1px solid rgb(192, 192, 192);}.ace-tm .ace_marker-layer .ace_active-line {background: rgba(0, 0, 0, 0.07);}.ace-tm .ace_gutter-active-line {background-color : #dcdcdc;}.ace-tm .ace_marker-layer .ace_selected-word {background: rgb(250, 250, 255);border: 1px solid rgb(200, 200, 250);}.ace-tm .ace_indent-guide {background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAAE0lEQVQImWP4////f4bLly//BwAmVgd1/w11/gAAAABJRU5ErkJggg==") right repeat-y;}',t.$id="ace/theme/textmate";var r=e("../lib/dom");r.importCssString(t.cssText,t.cssClass,!1)}),ace.define("ace/line_widgets",["require","exports","module","ace/lib/dom"],function(e,t,n){"use strict";var r=e("./lib/dom");function i(e){this.session=e,this.session.widgetManager=this,this.session.getRowLength=this.getRowLength,this.session.$getWidgetScreenLength=this.$getWidgetScreenLength,this.updateOnChange=this.updateOnChange.bind(this),this.renderWidgets=this.renderWidgets.bind(this),this.measureWidgets=this.measureWidgets.bind(this),this.session._changedWidgets=[],this.$onChangeEditor=this.$onChangeEditor.bind(this),this.session.on("change",this.updateOnChange),this.session.on("changeFold",this.updateOnFold),this.session.on("changeEditor",this.$onChangeEditor)}(function(){this.getRowLength=function(e){var t;return t=this.lineWidgets&&this.lineWidgets[e]&&this.lineWidgets[e].rowCount||0,this.$useWrapMode&&this.$wrapData[e]?this.$wrapData[e].length+1+t:1+t},this.$getWidgetScreenLength=function(){var e=0;return this.lineWidgets.forEach(function(t){t&&t.rowCount&&!t.hidden&&(e+=t.rowCount)}),e},this.$onChangeEditor=function(e){this.attach(e.editor)},this.attach=function(e){e&&e.widgetManager&&e.widgetManager!=this&&e.widgetManager.detach(),this.editor!=e&&(this.detach(),this.editor=e,e&&(e.widgetManager=this,e.renderer.on("beforeRender",this.measureWidgets),e.renderer.on("afterRender",this.renderWidgets)))},this.detach=function(e){var t=this.editor;if(t){this.editor=null,t.widgetManager=null,t.renderer.off("beforeRender",this.measureWidgets),t.renderer.off("afterRender",this.renderWidgets);var n=this.session.lineWidgets;n&&n.forEach(function(e){e&&e.el&&e.el.parentNode&&(e._inDocument=!1,e.el.parentNode.removeChild(e.el))})}},this.updateOnFold=function(e,t){var n=t.lineWidgets;if(n&&e.action){for(var r=e.data,i=r.start.row,o=r.end.row,a="add"==e.action,s=i+1;st[n].column&&n++,o.unshift(n,0),t.splice.apply(t,o),this.$updateRows()}}},this.$updateRows=function(){var e=this.session.lineWidgets;if(e){var t=!0;e.forEach(function(e,n){if(e){t=!1,e.row=n;while(e.$oldWidget)e.$oldWidget.row=n,e=e.$oldWidget}}),t&&(this.session.lineWidgets=null)}},this.$registerLineWidget=function(e){this.session.lineWidgets||(this.session.lineWidgets=new Array(this.session.getLength()));var t=this.session.lineWidgets[e.row];return t&&(e.$oldWidget=t,t.el&&t.el.parentNode&&(t.el.parentNode.removeChild(t.el),t._inDocument=!1)),this.session.lineWidgets[e.row]=e,e},this.addLineWidget=function(e){if(this.$registerLineWidget(e),e.session=this.session,!this.editor)return e;var t=this.editor.renderer;e.html&&!e.el&&(e.el=r.createElement("div"),e.el.innerHTML=e.html),e.el&&(r.addCssClass(e.el,"ace_lineWidgetContainer"),e.el.style.position="absolute",e.el.style.zIndex=5,t.container.appendChild(e.el),e._inDocument=!0,e.coverGutter||(e.el.style.zIndex=3),null==e.pixelHeight&&(e.pixelHeight=e.el.offsetHeight)),null==e.rowCount&&(e.rowCount=e.pixelHeight/t.layerConfig.lineHeight);var n=this.session.getFoldAt(e.row,0);if(e.$fold=n,n){var i=this.session.lineWidgets;e.row!=n.end.row||i[n.start.row]?e.hidden=!0:i[n.start.row]=e}return this.session._emit("changeFold",{data:{start:{row:e.row}}}),this.$updateRows(),this.renderWidgets(null,t),this.onWidgetChanged(e),e},this.removeLineWidget=function(e){if(e._inDocument=!1,e.session=null,e.el&&e.el.parentNode&&e.el.parentNode.removeChild(e.el),e.editor&&e.editor.destroy)try{e.editor.destroy()}catch(e){}if(this.session.lineWidgets){var t=this.session.lineWidgets[e.row];if(t==e)this.session.lineWidgets[e.row]=e.$oldWidget,e.$oldWidget&&this.onWidgetChanged(e.$oldWidget);else while(t){if(t.$oldWidget==e){t.$oldWidget=e.$oldWidget;break}t=t.$oldWidget}}this.session._emit("changeFold",{data:{start:{row:e.row}}}),this.$updateRows()},this.getWidgetsAtRow=function(e){var t=this.session.lineWidgets,n=t&&t[e],r=[];while(n)r.push(n),n=n.$oldWidget;return r},this.onWidgetChanged=function(e){this.session._changedWidgets.push(e),this.editor&&this.editor.renderer.updateFull()},this.measureWidgets=function(e,t){var n=this.session._changedWidgets,r=t.layerConfig;if(n&&n.length){for(var i=1/0,o=0;o0&&!r[i])i--;this.firstRow=n.firstRow,this.lastRow=n.lastRow,t.$cursorLayer.config=n;for(var a=i;a<=o;a++){var s=r[a];if(s&&s.el)if(s.hidden)s.el.style.top=-100-(s.pixelHeight||0)+"px";else{s._inDocument||(s._inDocument=!0,t.container.appendChild(s.el));var l=t.$cursorLayer.getPixelPosition({row:a,column:0},!0).top;s.coverLine||(l+=n.lineHeight*this.session.getRowLineCount(s.row)),s.el.style.top=l-n.offset+"px";var c=s.coverGutter?0:t.gutterWidth;s.fixedWidth||(c-=t.scrollLeft),s.el.style.left=c+"px",s.fullWidth&&s.screenWidth&&(s.el.style.minWidth=n.width+2*n.padding+"px"),s.fixedWidth?s.el.style.right=t.scrollBar.getWidth()+"px":s.el.style.right=""}}}}}).call(i.prototype),t.LineWidgets=i}),ace.define("ace/ext/error_marker",["require","exports","module","ace/line_widgets","ace/lib/dom","ace/range"],function(e,t,n){"use strict";var r=e("../line_widgets").LineWidgets,i=e("../lib/dom"),o=e("../range").Range;function a(e,t,n){var r=0,i=e.length-1;while(r<=i){var o=r+i>>1,a=n(t,e[o]);if(a>0)r=o+1;else{if(!(a<0))return o;i=o-1}}return-(r+1)}function s(e,t,n){var r=e.getAnnotations().sort(o.comparePoints);if(r.length){var i=a(r,{row:t,column:-1},o.comparePoints);i<0&&(i=-i-1),i>=r.length?i=n>0?0:r.length-1:0===i&&n<0&&(i=r.length-1);var s=r[i];if(s&&n){if(s.row===t){do{s=r[i+=n]}while(s&&s.row===t);if(!s)return r.slice()}var l=[];t=s.row;do{l[n<0?"unshift":"push"](s),s=r[i+=n]}while(s&&s.row==t);return l.length&&l}}}t.showErrorMarker=function(e,t){var n=e.session;n.widgetManager||(n.widgetManager=new r(n),n.widgetManager.attach(e));var o=e.getCursorPosition(),a=o.row,l=n.widgetManager.getWidgetsAtRow(a).filter(function(e){return"errorMarker"==e.type})[0];l?l.destroy():a-=t;var c,u=s(n,a,t);if(u){var h=u[0];o.column=(h.pos&&"number"!=typeof h.column?h.pos.sc:h.column)||0,o.row=h.row,c=e.renderer.$gutterLayer.$annotations[o.row]}else{if(l)return;c={text:["Looks good!"],className:"ace_ok"}}e.session.unfold(o.row),e.selection.moveToPosition(o);var d={row:o.row,fixedWidth:!0,coverGutter:!0,el:i.createElement("div"),type:"errorMarker"},f=d.el.appendChild(i.createElement("div")),p=d.el.appendChild(i.createElement("div"));p.className="error_widget_arrow "+c.className;var m=e.renderer.$cursorLayer.getPixelPosition(o).left;p.style.left=m+e.renderer.gutterWidth-5+"px",d.el.className="error_widget_wrapper",f.className="error_widget "+c.className,f.innerHTML=c.text.join("
"),f.appendChild(i.createElement("div"));var g=function(e,t,n){if(0===t&&("esc"===n||"return"===n))return d.destroy(),{command:"null"}};d.destroy=function(){e.$mouseHandler.isMousePressed||(e.keyBinding.removeKeyboardHandler(g),n.widgetManager.removeLineWidget(d),e.off("changeSelection",d.destroy),e.off("changeSession",d.destroy),e.off("mouseup",d.destroy),e.off("change",d.destroy))},e.keyBinding.addKeyboardHandler(g),e.on("changeSelection",d.destroy),e.on("changeSession",d.destroy),e.on("mouseup",d.destroy),e.on("change",d.destroy),e.session.widgetManager.addLineWidget(d),d.el.onmousedown=e.focus.bind(e),e.renderer.scrollCursorIntoView(null,.5,{bottom:d.el.offsetHeight})},i.importCssString(" .error_widget_wrapper { background: inherit; color: inherit; border:none } .error_widget { border-top: solid 2px; border-bottom: solid 2px; margin: 5px 0; padding: 10px 40px; white-space: pre-wrap; } .error_widget.ace_error, .error_widget_arrow.ace_error{ border-color: #ff5a5a } .error_widget.ace_warning, .error_widget_arrow.ace_warning{ border-color: #F1D817 } .error_widget.ace_info, .error_widget_arrow.ace_info{ border-color: #5a5a5a } .error_widget.ace_ok, .error_widget_arrow.ace_ok{ border-color: #5aaa5a } .error_widget_arrow { position: absolute; border: solid 5px; border-top-color: transparent!important; border-right-color: transparent!important; border-left-color: transparent!important; top: -5px; }","error_marker.css",!1)}),ace.define("ace/ace",["require","exports","module","ace/lib/fixoldbrowsers","ace/lib/dom","ace/lib/event","ace/range","ace/editor","ace/edit_session","ace/undomanager","ace/virtual_renderer","ace/worker/worker_client","ace/keyboard/hash_handler","ace/placeholder","ace/multi_select","ace/mode/folding/fold_mode","ace/theme/textmate","ace/ext/error_marker","ace/config"],function(e,t,r){"use strict";e("./lib/fixoldbrowsers");var i=e("./lib/dom"),o=e("./lib/event"),a=e("./range").Range,s=e("./editor").Editor,l=e("./edit_session").EditSession,c=e("./undomanager").UndoManager,u=e("./virtual_renderer").VirtualRenderer;e("./worker/worker_client"),e("./keyboard/hash_handler"),e("./placeholder"),e("./multi_select"),e("./mode/folding/fold_mode"),e("./theme/textmate"),e("./ext/error_marker"),t.config=e("./config"),t.require=e,t.define=n("B9Yq"),t.edit=function(e,n){if("string"==typeof e){var r=e;if(e=document.getElementById(r),!e)throw new Error("ace.edit can't find div #"+r)}if(e&&e.env&&e.env.editor instanceof s)return e.env.editor;var a="";if(e&&/input|textarea/i.test(e.tagName)){var l=e;a=l.value,e=i.createElement("pre"),l.parentNode.replaceChild(e,l)}else e&&(a=e.textContent,e.innerHTML="");var c=t.createEditSession(a),h=new s(new u(e),c,n),d={document:c,editor:h,onResize:h.resize.bind(h,null)};return l&&(d.textarea=l),o.addListener(window,"resize",d.onResize),h.on("destroy",function(){o.removeListener(window,"resize",d.onResize),d.editor.container.env=null}),h.container.env=h.env=d,h},t.createEditSession=function(e,t){var n=new l(e,t);return n.setUndoManager(new c),n},t.Range=a,t.Editor=s,t.EditSession=l,t.UndoManager=c,t.VirtualRenderer=u,t.version=t.config.version}),function(){ace.require(["ace/ace"],function(t){for(var n in t&&(t.config.init(!0),t.define=ace.define),window.ace||(window.ace=t),t)t.hasOwnProperty(n)&&(window.ace[n]=t[n]);window.ace["default"]=window.ace,e&&(e.exports=window.ace)})}()}).call(this,n("YuTi")(e))},bV5f:function(e,t){var n=e.exports={version:"2.6.9"};"number"==typeof __e&&(__e=n)},bYtY:function(e,t,n){"use strict";n.d(t,"a",function(){return m}),n.d(t,"o",function(){return v}),n.d(t,"E",function(){return y}),n.d(t,"d",function(){return b}),n.d(t,"G",function(){return w}),n.d(t,"m",function(){return x}),n.d(t,"j",function(){return _}),n.d(t,"f",function(){return S}),n.d(t,"q",function(){return C}),n.d(t,"r",function(){return E}),n.d(t,"H",function(){return k}),n.d(t,"t",function(){return O}),n.d(t,"k",function(){return T}),n.d(t,"F",function(){return A}),n.d(t,"K",function(){return M}),n.d(t,"n",function(){return P}),n.d(t,"D",function(){return R}),n.d(t,"c",function(){return D}),n.d(t,"i",function(){return j}),n.d(t,"s",function(){return N}),n.d(t,"v",function(){return I}),n.d(t,"A",function(){return $}),n.d(t,"B",function(){return F}),n.d(t,"y",function(){return V}),n.d(t,"z",function(){return B}),n.d(t,"C",function(){return H}),n.d(t,"u",function(){return z}),n.d(t,"w",function(){return U}),n.d(t,"x",function(){return q}),n.d(t,"l",function(){return K}),n.d(t,"L",function(){return G}),n.d(t,"M",function(){return Y}),n.d(t,"N",function(){return X}),n.d(t,"P",function(){return Q}),n.d(t,"J",function(){return Z}),n.d(t,"b",function(){return J}),n.d(t,"Q",function(){return ee}),n.d(t,"O",function(){return ne}),n.d(t,"g",function(){return oe}),n.d(t,"e",function(){return ae}),n.d(t,"h",function(){return se}),n.d(t,"p",function(){return le}),n.d(t,"I",function(){return ce});var r={"[object Function]":!0,"[object RegExp]":!0,"[object Date]":!0,"[object Error]":!0,"[object CanvasGradient]":!0,"[object CanvasPattern]":!0,"[object Image]":!0,"[object Canvas]":!0},i={"[object Int8Array]":!0,"[object Uint8Array]":!0,"[object Uint8ClampedArray]":!0,"[object Int16Array]":!0,"[object Uint16Array]":!0,"[object Int32Array]":!0,"[object Uint32Array]":!0,"[object Float32Array]":!0,"[object Float64Array]":!0},o=Object.prototype.toString,a=Array.prototype,s=a.forEach,l=a.filter,c=a.slice,u=a.map,h=function(){}.constructor,d=h?h.prototype:null,f="__proto__",p={};function m(e,t){p[e]=t}var g=2311;function v(){return g++}function y(){for(var e=[],t=0;t-1};function l(e){if("string"!==typeof e&&(e=String(e)),/[^a-z0-9\-#$%&'*+.^_`|~!]/i.test(e)||""===e)throw new TypeError('Invalid character in header field name: "'+e+'"');return e.toLowerCase()}function c(e){return"string"!==typeof e&&(e=String(e)),e}function u(e){var t={next:function(){var t=e.shift();return{done:void 0===t,value:t}}};return i.iterable&&(t[Symbol.iterator]=function(){return t}),t}function h(e){this.map={},e instanceof h?e.forEach(function(e,t){this.append(t,e)},this):Array.isArray(e)?e.forEach(function(e){this.append(e[0],e[1])},this):e&&Object.getOwnPropertyNames(e).forEach(function(t){this.append(t,e[t])},this)}function d(e){if(e.bodyUsed)return Promise.reject(new TypeError("Already read"));e.bodyUsed=!0}function f(e){return new Promise(function(t,n){e.onload=function(){t(e.result)},e.onerror=function(){n(e.error)}})}function p(e){var t=new FileReader,n=f(t);return t.readAsArrayBuffer(e),n}function m(e){var t=new FileReader,n=f(t);return t.readAsText(e),n}function g(e){for(var t=new Uint8Array(e),n=new Array(t.length),r=0;r-1?t:e}function x(e,t){if(!(this instanceof x))throw new TypeError('Please use the "new" operator, this DOM object constructor cannot be called as a function.');t=t||{};var n=t.body;if(e instanceof x){if(e.bodyUsed)throw new TypeError("Already read");this.url=e.url,this.credentials=e.credentials,t.headers||(this.headers=new h(e.headers)),this.method=e.method,this.mode=e.mode,this.signal=e.signal,n||null==e._bodyInit||(n=e._bodyInit,e.bodyUsed=!0)}else this.url=String(e);if(this.credentials=t.credentials||this.credentials||"same-origin",!t.headers&&this.headers||(this.headers=new h(t.headers)),this.method=w(t.method||this.method||"GET"),this.mode=t.mode||this.mode||null,this.signal=t.signal||this.signal,this.referrer=null,("GET"===this.method||"HEAD"===this.method)&&n)throw new TypeError("Body not allowed for GET or HEAD requests");if(this._initBody(n),("GET"===this.method||"HEAD"===this.method)&&("no-store"===t.cache||"no-cache"===t.cache)){var r=/([?&])_=[^&]*/;if(r.test(this.url))this.url=this.url.replace(r,"$1_="+(new Date).getTime());else{var i=/\?/;this.url+=(i.test(this.url)?"&":"?")+"_="+(new Date).getTime()}}}function _(e){var t=new FormData;return e.trim().split("&").forEach(function(e){if(e){var n=e.split("="),r=n.shift().replace(/\+/g," "),i=n.join("=").replace(/\+/g," ");t.append(decodeURIComponent(r),decodeURIComponent(i))}}),t}function S(e){var t=new h,n=e.replace(/\r?\n[\t ]+/g," ");return n.split("\r").map(function(e){return 0===e.indexOf("\n")?e.substr(1,e.length):e}).forEach(function(e){var n=e.split(":"),r=n.shift().trim();if(r){var i=n.join(":").trim();t.append(r,i)}}),t}function C(e,t){if(!(this instanceof C))throw new TypeError('Please use the "new" operator, this DOM object constructor cannot be called as a function.');t||(t={}),this.type="default",this.status=void 0===t.status?200:t.status,this.ok=this.status>=200&&this.status<300,this.statusText=void 0===t.statusText?"":""+t.statusText,this.headers=new h(t.headers),this.url=t.url||"",this._initBody(e)}x.prototype.clone=function(){return new x(this,{body:this._bodyInit})},y.call(x.prototype),y.call(C.prototype),C.prototype.clone=function(){return new C(this._bodyInit,{status:this.status,statusText:this.statusText,headers:new h(this.headers),url:this.url})},C.error=function(){var e=new C(null,{status:0,statusText:""});return e.type="error",e};var E=[301,302,303,307,308];C.redirect=function(e,t){if(-1===E.indexOf(t))throw new RangeError("Invalid status code");return new C(null,{status:t,headers:{location:e}})};var k=r.DOMException;try{new k}catch(e){k=function(e,t){this.message=e,this.name=t;var n=Error(e);this.stack=n.stack},k.prototype=Object.create(Error.prototype),k.prototype.constructor=k}function O(e,t){return new Promise(function(n,o){var a=new x(e,t);if(a.signal&&a.signal.aborted)return o(new k("Aborted","AbortError"));var s=new XMLHttpRequest;function l(){s.abort()}function u(e){try{return""===e&&r.location.href?r.location.href:e}catch(t){return e}}s.onload=function(){var e={status:s.status,statusText:s.statusText,headers:S(s.getAllResponseHeaders()||"")};e.url="responseURL"in s?s.responseURL:e.headers.get("X-Request-URL");var t="response"in s?s.response:s.responseText;setTimeout(function(){n(new C(t,e))},0)},s.onerror=function(){setTimeout(function(){o(new TypeError("Network request failed"))},0)},s.ontimeout=function(){setTimeout(function(){o(new TypeError("Network request failed"))},0)},s.onabort=function(){setTimeout(function(){o(new k("Aborted","AbortError"))},0)},s.open(a.method,u(a.url),!0),"include"===a.credentials?s.withCredentials=!0:"omit"===a.credentials&&(s.withCredentials=!1),"responseType"in s&&(i.blob?s.responseType="blob":i.arrayBuffer&&a.headers.get("Content-Type")&&-1!==a.headers.get("Content-Type").indexOf("application/octet-stream")&&(s.responseType="arraybuffer")),!t||"object"!==typeof t.headers||t.headers instanceof h?a.headers.forEach(function(e,t){s.setRequestHeader(t,e)}):Object.getOwnPropertyNames(t.headers).forEach(function(e){s.setRequestHeader(e,c(t.headers[e]))}),a.signal&&(a.signal.addEventListener("abort",l),s.onreadystatechange=function(){4===s.readyState&&a.signal.removeEventListener("abort",l)}),s.send("undefined"===typeof a._bodyInit?null:a._bodyInit)})}O.polyfill=!0,r.fetch||(r.fetch=O,r.Headers=h,r.Request=x,r.Response=C)},bdgK:function(e,t,n){"use strict";n.r(t),function(e){var n=function(){if("undefined"!==typeof Map)return Map;function e(e,t){var n=-1;return e.some(function(e,r){return e[0]===t&&(n=r,!0)}),n}return function(){function t(){this.__entries__=[]}return Object.defineProperty(t.prototype,"size",{get:function(){return this.__entries__.length},enumerable:!0,configurable:!0}),t.prototype.get=function(t){var n=e(this.__entries__,t),r=this.__entries__[n];return r&&r[1]},t.prototype.set=function(t,n){var r=e(this.__entries__,t);~r?this.__entries__[r][1]=n:this.__entries__.push([t,n])},t.prototype.delete=function(t){var n=this.__entries__,r=e(n,t);~r&&n.splice(r,1)},t.prototype.has=function(t){return!!~e(this.__entries__,t)},t.prototype.clear=function(){this.__entries__.splice(0)},t.prototype.forEach=function(e,t){void 0===t&&(t=null);for(var n=0,r=this.__entries__;n0},e.prototype.connect_=function(){r&&!this.connected_&&(document.addEventListener("transitionend",this.onTransitionEnd_),window.addEventListener("resize",this.refresh),u?(this.mutationsObserver_=new MutationObserver(this.refresh),this.mutationsObserver_.observe(document,{attributes:!0,childList:!0,characterData:!0,subtree:!0})):(document.addEventListener("DOMSubtreeModified",this.refresh),this.mutationEventsAdded_=!0),this.connected_=!0)},e.prototype.disconnect_=function(){r&&this.connected_&&(document.removeEventListener("transitionend",this.onTransitionEnd_),window.removeEventListener("resize",this.refresh),this.mutationsObserver_&&this.mutationsObserver_.disconnect(),this.mutationEventsAdded_&&document.removeEventListener("DOMSubtreeModified",this.refresh),this.mutationsObserver_=null,this.mutationEventsAdded_=!1,this.connected_=!1)},e.prototype.onTransitionEnd_=function(e){var t=e.propertyName,n=void 0===t?"":t,r=c.some(function(e){return!!~n.indexOf(e)});r&&this.refresh()},e.getInstance=function(){return this.instance_||(this.instance_=new e),this.instance_},e.instance_=null,e}(),d=function(e,t){for(var n=0,r=Object.keys(t);n0},e}(),T="undefined"!==typeof WeakMap?new WeakMap:new n,A=function(){function e(t){if(!(this instanceof e))throw new TypeError("Cannot call a class as a function.");if(!arguments.length)throw new TypeError("1 argument required, but only 0 present.");var n=h.getInstance(),r=new O(t,n,this);T.set(this,r)}return e}();["observe","unobserve","disconnect"].forEach(function(e){A.prototype[e]=function(){var t;return(t=T.get(this))[e].apply(t,arguments)}});var M=function(){return"undefined"!==typeof i.ResizeObserver?i.ResizeObserver:A}();t["default"]=M}.call(this,n("yLpj"))},bmIi:function(e,t,n){"use strict";var r=n("/Mfd"),i=n("pQGJ"),o=n("lvAo"),a={};n("VPOE")(a,n("gL7N")("iterator"),function(){return this}),e.exports=function(e,t,n){e.prototype=r(a,{next:i(1,n)}),o(e,t+" Iterator")}},brdU:function(e,t,n){"use strict";n.r(t);var r="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};function i(e,t){if(e===t)return!0;if(null==e||null==t)return!1;if(Array.isArray(e))return Array.isArray(t)&&e.length===t.length&&e.every(function(e,n){return i(e,t[n])});var n="undefined"===typeof e?"undefined":r(e),o="undefined"===typeof t?"undefined":r(t);if(n!==o)return!1;if("object"===n){var a=e.valueOf(),s=t.valueOf();if(a!==e||s!==t)return i(a,s);var l=Object.keys(e),c=Object.keys(t);return l.length===c.length&&l.every(function(n){return i(e[n],t[n])})}return!1}t["default"]=i},bsDr:function(e,t,n){"use strict";var r=n("2a/h"),i=RegExp.prototype.exec;e.exports=function(e,t){var n=e.exec;if("function"===typeof n){var o=n.call(e,t);if("object"!==typeof o)throw new TypeError("RegExp exec method returned something other than an Object or null");return o}if("RegExp"!==r(e))throw new TypeError("RegExp#exec called on incompatible receiver");return i.call(e,t)}},c0Oy:function(e,t){var n=e.exports="undefined"!=typeof window&&window.Math==Math?window:"undefined"!=typeof self&&self.Math==Math?self:Function("return this")();"number"==typeof __g&&(__g=n)},cDf5:function(e,t){function n(t){"@babel/helpers - typeof";return e.exports=n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},e.exports.__esModule=!0,e.exports["default"]=e.exports,n(t)}e.exports=n,e.exports.__esModule=!0,e.exports["default"]=e.exports},cOkC:function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.warning=i,t.note=o,t.resetWarned=a,t.call=s,t.warningOnce=l,t.noteOnce=c,t.default=void 0;var r={};function i(e,t){0}function o(e,t){0}function a(){r={}}function s(e,t,n){t||r[n]||(e(!1,n),r[n]=!0)}function l(e,t){s(i,e,t)}function c(e,t){s(o,e,t)}var u=l;t.default=u},cQyX:function(e,t,n){var r=n("gL7N")("iterator"),i=!1;try{var o=[7][r]();o["return"]=function(){i=!0},Array.from(o,function(){throw 2})}catch(e){}e.exports=function(e,t){if(!t&&!i)return!1;var n=!1;try{var o=[7],a=o[r]();a.next=function(){return{done:n=!0}},o[r]=function(){return a},e(o)}catch(e){}return n}},ccE7:function(e,t,n){var r=n("Ojgd"),i=n("Jes0");e.exports=function(e){return function(t,n){var o,a,s=String(i(t)),l=r(n),c=s.length;return l<0||l>=c?e?"":void 0:(o=s.charCodeAt(l),o<55296||o>56319||l+1===c||(a=s.charCodeAt(l+1))<56320||a>57343?e?s.charAt(l):o:e?s.slice(l,l+2):a-56320+(o-55296<<10)+65536)}}},ck9s:function(e,t,n){"use strict";var r=n("ZFOp"),i=n("MgzW"),o=n("8jRI");function a(e){switch(e.arrayFormat){case"index":return function(t,n,r){return null===n?[l(t,e),"[",r,"]"].join(""):[l(t,e),"[",l(r,e),"]=",l(n,e)].join("")};case"bracket":return function(t,n){return null===n?l(t,e):[l(t,e),"[]=",l(n,e)].join("")};default:return function(t,n){return null===n?l(t,e):[l(t,e),"=",l(n,e)].join("")}}}function s(e){var t;switch(e.arrayFormat){case"index":return function(e,n,r){t=/\[(\d*)\]$/.exec(e),e=e.replace(/\[\d*\]$/,""),t?(void 0===r[e]&&(r[e]={}),r[e][t[1]]=n):r[e]=n};case"bracket":return function(e,n,r){t=/(\[\])$/.exec(e),e=e.replace(/\[\]$/,""),t?void 0!==r[e]?r[e]=[].concat(r[e],n):r[e]=[n]:r[e]=n};default:return function(e,t,n){void 0!==n[e]?n[e]=[].concat(n[e],t):n[e]=t}}}function l(e,t){return t.encode?t.strict?r(e):encodeURIComponent(e):e}function c(e){return Array.isArray(e)?e.sort():"object"===typeof e?c(Object.keys(e)).sort(function(e,t){return Number(e)-Number(t)}).map(function(t){return e[t]}):e}function u(e){var t=e.indexOf("?");return-1===t?"":e.slice(t+1)}function h(e,t){t=i({arrayFormat:"none"},t);var n=s(t),r=Object.create(null);return"string"!==typeof e?r:(e=e.trim().replace(/^[?#&]/,""),e?(e.split("&").forEach(function(e){var t=e.replace(/\+/g," ").split("="),i=t.shift(),a=t.length>0?t.join("="):void 0;a=void 0===a?null:o(a),n(o(i),a,r)}),Object.keys(r).sort().reduce(function(e,t){var n=r[t];return Boolean(n)&&"object"===typeof n&&!Array.isArray(n)?e[t]=c(n):e[t]=n,e},Object.create(null))):r)}t.extract=u,t.parse=h,t.stringify=function(e,t){var n={encode:!0,strict:!0,arrayFormat:"none"};t=i(n,t),!1===t.sort&&(t.sort=function(){});var r=a(t);return e?Object.keys(e).sort(t.sort).map(function(n){var i=e[n];if(void 0===i)return"";if(null===i)return l(n,t);if(Array.isArray(i)){var o=[];return i.slice().forEach(function(e){void 0!==e&&o.push(r(n,e,o.length))}),o.join("&")}return l(n,t)+"="+l(i,t)}).filter(function(e){return e.length>0}).join("&"):""},t.parseUrl=function(e,t){return{url:e.split("?")[0]||"",query:h(u(e),t)}}},d1ca:function(e,t,n){"use strict";n.r(t);var r=n("jehZ"),i=n.n(r),o=n("p0pE"),a=n.n(o),s=(n("+L6B"),n("2/Rp")),l=(n("Awhp"),n("KrTs")),c=(n("5Dmo"),n("3S7+")),u=(n("+BJd"),n("mr32")),h=(n("qVdP"),n("jsC+")),d=(n("lUTK"),n("BvKs")),f=(n("Pwec"),n("CtXQ")),p=(n("2qtc"),n("kLXV")),m=n("q1tI"),g=n.n(m),v=n("Bl7J"),y=(n("5NDa"),n("5rEg")),b=n("/MKj");class w extends g.a.Component{constructor(e){super(e),this.state={visible:!1,submit:{}}}show(){this.setState({visible:!0})}hide(){this.setState({visible:!1})}send(){this.props.dispatch({type:"user/sendMail",params:this.state.submit,callback:()=>{this.hide()}})}render(){var e=this.props.user,t=e.filter,n=e.sendMailLoading,r=this.state.visible;return g.a.createElement(g.a.Fragment,null,g.a.cloneElement(this.props.children,{onClick:()=>this.show()}),g.a.createElement(p["a"],{title:"\u53d1\u9001\u90ae\u4ef6",visible:r,onOk:()=>this.send(),okButtonProps:{loading:n},onCancel:()=>this.hide()},g.a.createElement("div",{className:"form-group"},g.a.createElement("label",{htmlFor:"example-text-input-alt"},"\u6536\u4ef6\u4eba"),g.a.createElement(y["a"],{disabled:!0,value:t.length?"\u8fc7\u6ee4\u7528\u6237":"\u5168\u90e8\u7528\u6237"})),g.a.createElement("div",{className:"form-group"},g.a.createElement("label",{htmlFor:"example-text-input-alt"},"\u4e3b\u9898"),g.a.createElement(y["a"],{placeholder:"\u8bf7\u8f93\u5165\u90ae\u4ef6\u4e3b\u9898",value:this.state.submit.subject,onChange:e=>{this.setState({submit:a()({},this.state.submit,{subject:e.target.value})})}})),g.a.createElement("div",{className:"form-group"},g.a.createElement("label",{htmlFor:"example-text-input-alt"},"\u53d1\u9001\u5185\u5bb9"),g.a.createElement(y["a"].TextArea,{rows:12,value:this.state.submit.content,placeholder:"\u8bf7\u8f93\u5165\u90ae\u4ef6\u5185\u5bb9",onChange:e=>{this.setState({submit:a()({},this.state.submit,{content:e.target.value})})}}))))}}var x=Object(b["c"])(e=>{var t=e.user;return{user:t}})(w),_=n("wd/R"),S=n.n(_),C=n("3a4m"),E=n.n(C),k=n("mCd/"),O=n("CgOb"),T=n("yiO6"),A=n("hVla"),M=(n("OaEy"),n("2fM7")),P=(n("iQDF"),n("+eQT"));class R extends g.a.Component{constructor(e){super(e),this.state={visible:!1,submit:{}}}show(){this.setState({visible:!0})}hide(){this.setState({visible:!1,submit:{}})}formChange(e,t){var n=this.state.submit;n[e]=t,this.setState({submit:n})}submit(){var e=a()({},this.state.submit);this.props.dispatch({type:"user/generate",params:e,callback:()=>{this.hide()}})}render(){var e=this.props.user,t=e.user,n=e.generateLoading,r=this.props.plan.plans,i=this.state,o=i.visible,a=i.submit;return g.a.createElement(g.a.Fragment,null,g.a.cloneElement(this.props.children,{onClick:()=>this.show()}),g.a.createElement(p["a"],{title:"\u521b\u5efa\u7528\u6237",visible:o,onCancel:()=>this.hide(),cancelText:"\u53d6\u6d88",onOk:()=>this.submit(),okButtonProps:{loading:n},okText:"\u751f\u6210"},g.a.createElement("div",null,g.a.createElement("div",{className:"form-group"},g.a.createElement("label",{htmlFor:"example-text-input-alt"},"\u90ae\u7bb1"),g.a.createElement(y["a"].Group,{compact:!0},!a.generate_count&&g.a.createElement(y["a"],{placeholder:"\u8d26\u53f7\uff08\u6279\u91cf\u751f\u6210\u8bf7\u7559\u7a7a\uff09",style:{width:"45%"},value:a.email_prefix,onChange:e=>this.formChange("email_prefix",e.target.value)}),g.a.createElement(y["a"],{placeholder:"@",style:{width:"10%",textAlign:"center"},disabled:!0}),g.a.createElement(y["a"],{placeholder:"\u57df",style:{width:"45%"},value:a.email_suffix,onChange:e=>this.formChange("email_suffix",e.target.value)}))),g.a.createElement("div",{className:"form-group"},g.a.createElement("label",{htmlFor:"example-text-input-alt"},"\u5bc6\u7801"),g.a.createElement(y["a"],{value:a.password,placeholder:"\u7559\u7a7a\u5219\u5bc6\u7801\u4e0e\u90ae\u7bb1\u76f8\u540c",onChange:e=>this.formChange("password",e.target.value)})),g.a.createElement("div",{className:"form-group"},g.a.createElement("label",{htmlFor:"example-text-input-alt"},"\u5230\u671f\u65f6\u95f4"),g.a.createElement("div",null,g.a.createElement(P["a"],{placeholder:"\u8bf7\u9009\u62e9\u7528\u6237\u5230\u671f\u65e5\u671f\uff0c\u4e3a\u7a7a\u5219\u4e0d\u9650\u5236\u5230\u671f\u65f6\u95f4",defaultValue:a.expired_at&&S()(1e3*t.expired_at),style:{width:"100%"},onChange:e=>this.formChange("expired_at",e?e.format("X"):null)}))),g.a.createElement("div",{className:"form-group"},g.a.createElement("label",{htmlFor:"example-text-input-alt"},"\u8ba2\u9605\u8ba1\u5212"),g.a.createElement(M["a"],{placeholder:"\u8bf7\u9009\u62e9\u7528\u6237\u8ba2\u9605\u8ba1\u5212",style:{width:"100%"},value:a.plan_id||null,onChange:e=>this.formChange("plan_id",e)},g.a.createElement(M["a"].Option,{value:null},"\u65e0"),r.map(e=>{return g.a.createElement(M["a"].Option,{key:Math.random(),value:e.id},e.name)}))),!a.email_prefix&&g.a.createElement("div",{className:"form-group"},g.a.createElement("label",{htmlFor:"example-text-input-alt"},"\u751f\u6210\u6570\u91cf"),g.a.createElement(y["a"],{value:a.generate_count,placeholder:"\u5982\u679c\u4e3a\u6279\u91cf\u751f\u6210\u8bf7\u8f93\u5165\u751f\u6210\u6570\u91cf",onChange:e=>this.formChange("generate_count",e.target.value)})))))}}var L=Object(b["c"])(e=>{var t=e.user,n=e.plan;return{user:t,plan:n}})(R),D=n("yWgo"),j=n("Oa6W");n("H9LU"),n("I1u9"),n("ykC2");class N extends g.a.Component{constructor(e){super(e),this.state={sorter:{},visible:!1}}componentWillUnmount(){this.props.dispatch({type:"user/empty"}),this.props.dispatch({type:"user/setState",payload:{filter:[]}})}componentDidMount(){this.props.dispatch({type:"plan/fetch"}),this.props.dispatch({type:"user/fetch"}),this.props.dispatch({type:"serverGroup/fetch"})}tableOnChange(e,t){this.props.dispatch({type:"user/changeTable",pagination:e,sort:{sort_type:"ascend"===t.order?"ASC":"DESC",sort:t.columnKey}})}searchOnChange(e){this.inputDelayTimer&&clearTimeout(this.inputDelayTimer),this.inputDelayTimer=setTimeout(function(){this.inputDelayTimer=null,this.props.dispatch({type:"user/filter",filter:{email:e},pagination:{current:1}})}.bind(this),400)}dumpCSV(){this.props.dispatch({type:"user/dumpCSV"})}ban(){p["a"].confirm({title:"\u63d0\u9192",content:"\u786e\u5b9a\u8981\u8fdb\u884c\u5c01\u7981\u5417\uff1f",onOk:()=>{this.props.dispatch({type:"user/ban"})}})}userFilter(e,t,n){var r=arguments.length>3&&void 0!==arguments[3]&&arguments[3];this.props.dispatch({type:"user/addFilter",key:e,condition:t,value:n,clear:r})}orderFilter(e,t,n){this.props.dispatch({type:"order/addFilter",key:e,condition:t,value:n}),E.a.push("/order")}resetSecret(e){var t=this;p["a"].confirm({title:"\u91cd\u7f6e\u5b89\u5168\u4fe1\u606f",content:"\u786e\u5b9a\u8981\u91cd\u7f6e".concat(e.email,"\u7684\u5b89\u5168\u4fe1\u606f\u5417\uff1f"),onOk(){t.props.dispatch({type:"user/resetSecret",id:e.id})},okText:"\u786e\u5b9a",cancelText:"\u53d6\u6d88"})}render(){var e,t,n,r,o=this.props.user,p=o.users,m=o.pagination,y=o.fetchLoading,b=o.filter,w=this.props.serverGroup.groups,_=this.props.plan.plans,C=[{title:"\u64cd\u4f5c",dataIndex:"action",key:"action",render:(e,t,n)=>{return g.a.createElement(g.a.Fragment,null,g.a.createElement(h["a"],{trigger:"click",overlay:g.a.createElement(d["a"],null,g.a.createElement(d["a"].Item,{onContextMenu:e=>{e.stopPropagation()}},g.a.createElement(O["a"],{userId:t.id,key:t.id},g.a.createElement("a",null,g.a.createElement(f["a"],{type:"edit"})," \u7f16\u8f91"))),g.a.createElement(d["a"].Item,{onContextMenu:e=>{e.stopPropagation()}},g.a.createElement(k["a"],{email:t.email,key:t.email},g.a.createElement("a",null,g.a.createElement(f["a"],{type:"plus"})," \u5206\u914d\u8ba2\u5355"))),g.a.createElement(d["a"].Item,null,g.a.createElement("a",{onClick:()=>Object(D["a"])(t.subscribe_url)},g.a.createElement(f["a"],{type:"copy"})," \u590d\u5236\u8ba2\u9605URL")),g.a.createElement(d["a"].Item,null,g.a.createElement("a",{onClick:()=>this.resetSecret(t)},g.a.createElement(f["a"],{type:"reload"})," \u91cd\u7f6eUUID\u53ca\u8ba2\u9605URL")),g.a.createElement(d["a"].Item,{onClick:()=>this.orderFilter("user_id","=",t.id)},g.a.createElement(f["a"],{type:"account-book"})," TA\u7684\u8ba2\u5355"),g.a.createElement(d["a"].Item,{onClick:()=>this.userFilter("invite_user_id","=",t.id,!0)},g.a.createElement(f["a"],{type:"usergroup-add"})," TA\u7684\u9080\u8bf7"))},g.a.createElement("a",{href:"javascript:void(0);"},"\u64cd\u4f5c ",g.a.createElement(f["a"],{type:"caret-down"}))))}},{title:"ID",dataIndex:"id",key:"id",sorter:!0},{title:"\u90ae\u7bb1",dataIndex:"email",key:"email"},{title:"\u72b6\u6001",dataIndex:"banned",key:"banned",sorter:!0,render:e=>{return g.a.createElement(u["a"],{color:e?"red":"green"},e?"\u5c01\u7981":"\u6b63\u5e38")}},{title:"\u8ba2\u9605",dataIndex:"plan_name",key:"plan_id",sorter:!0,render:e=>{return e||"-"}},{title:"\u6743\u9650\u7ec4",dataIndex:"group_id",key:"group_id",sorter:!0,render:e=>{var t=w.find(t=>t.id===e);return t?t.name:"-"}},{title:g.a.createElement("span",null,"\u5728\u7ebf ",g.a.createElement(c["a"],{placement:"top",title:"\u7528\u623710\u5206\u949f\u5185\u5728\u7ebf\u60c5\u51b5"},g.a.createElement(f["a"],{type:"question-circle"}))),dataIndex:"t",key:"t",align:"center",render:e=>{return g.a.createElement(l["a"],{status:(new Date).getTime()/1e3-600>e?"default":"processing"})}},{title:"\u5df2\u7528(G)",dataIndex:"d",key:"d",sorter:!0,render:(e,t)=>{var n=(parseFloat(t.u)+parseFloat(t.d)).toFixed(2);return g.a.createElement(u["a"],{color:parseFloat(n)>parseFloat(t.transfer_enable)?"red":"green"},n)}},{title:"\u6d41\u91cf(G)",dataIndex:"transfer_enable",key:"transfer_enable",sorter:!0,render:(e,t)=>{return e}},{title:"\u5230\u671f\u65f6\u95f4",dataIndex:"expired_at",key:"expired_at",sorter:!0,render:e=>{return g.a.createElement(u["a"],{color:e<(new Date).getTime()/1e3&&null!==e?"red":"green"},e?S()(1e3*e).format("YYYY/MM/DD HH:mm"):null===e?"\u957f\u671f\u6709\u6548":"-")}},{title:"\u52a0\u5165\u65f6\u95f4",dataIndex:"created_at",key:"created_at",sorter:!0,align:"right",render:e=>{return S()(1e3*e).format("YYYY/MM/DD HH:mm")}}];return g.a.createElement(v["a"],i()({},this.props,{title:"\u7528\u6237\u7ba1\u7406"}),g.a.createElement("div",{className:"mb-0 block border-bottom ".concat(y?"block-mode-loading":"")},g.a.createElement("div",{className:"bg-white"},g.a.createElement("div",{className:"v2board-table-action",style:{padding:15}},g.a.createElement(c["a"],{title:"Tips\uff1a\u53ef\u4ee5\u4f7f\u7528\u8fc7\u6ee4\u5668\u8fc7\u6ee4\u540e\u518d\u4f7f\u7528\u64cd\u4f5c\u5bf9\u8fc7\u6ee4\u7684\u7528\u6237\u8fdb\u884c\u64cd\u4f5c\u3002",placement:"right"},g.a.createElement(T["a"],null,g.a.createElement(A["a"],{key:b.length,value:b,onOk:e=>this.props.dispatch({type:"user/filter",filter:e}),keys:[{key:"email",title:"\u90ae\u7bb1",condition:["\u6a21\u7cca"]},{key:"id",title:"\u7528\u6237ID",condition:["=",">=",">","<","<="]},{key:"plan_id",title:"\u8ba2\u9605",condition:["="],type:"select",options:_.map(e=>({key:e.name,value:e.id}))},{key:"transfer_enable",title:"\u6d41\u91cf",condition:[">=",">","<","<="]},{key:"d",title:"\u4e0b\u884c",condition:[">=",">","<","<="]},{key:"expired_at",title:"\u5230\u671f\u65f6\u95f4",condition:[">=",">","<","<="],type:"date"},{key:"uuid",title:"UUID",condition:["="]},{key:"token",title:"TOKEN",condition:["="]},{key:"banned",title:"\u8d26\u53f7\u72b6\u6001",condition:["="],type:"select",options:[{key:"\u6b63\u5e38",value:0},{key:"\u5c01\u7981",value:1}]},{key:"invite_by_email",title:"\u9080\u8bf7\u4eba\u90ae\u7bb1",condition:["\u6a21\u7cca"]},{key:"invite_user_id",title:"\u9080\u8bf7\u4ebaID",condition:["="]},{key:"remarks",title:"\u5907\u6ce8",condition:["\u6a21\u7cca"]}]},g.a.createElement(s["a"],{type:b.length>0?"primary":""},g.a.createElement(f["a"],{type:"filter"})," \u8fc7\u6ee4\u5668")),g.a.createElement(h["a"],{overlay:g.a.createElement(d["a"],null,g.a.createElement(d["a"].Item,null,g.a.createElement("a",{onClick:()=>this.dumpCSV()},g.a.createElement(f["a"],{type:"file-excel"})," \u5bfc\u51faCSV")),g.a.createElement(d["a"].Item,null,g.a.createElement(x,null,g.a.createElement("a",null,g.a.createElement(f["a"],{type:"mail"})," \u53d1\u9001\u90ae\u4ef6"))),g.a.createElement(d["a"].Item,{disabled:!b.length},g.a.createElement("a",{disabled:!b.length,onClick:()=>this.ban()},g.a.createElement(f["a"],{type:"stop"})," \u6279\u91cf\u5c01\u7981")))},g.a.createElement(s["a"],null,g.a.createElement(f["a"],{type:"select"}),"\u64cd\u4f5c")))),g.a.createElement(L,null,g.a.createElement(s["a"],{className:"ml-2"},g.a.createElement(f["a"],{type:"user-add"})))),g.a.createElement(j["a"],{onContextMenu:e=>{this.record=e,this.forceUpdate()},className:"v2board-table",tableLayout:"auto",dataSource:p,pagination:a()({},m,{size:"small",showSizeChanger:!0,pageSizeOptions:[10,50,100,150]}),columns:C,scroll:{x:1500},onChange:(e,t,n)=>this.tableOnChange(e,n)},g.a.createElement("ul",{className:"ant-dropdown-menu ant-dropdown-menu-light ant-dropdown-menu-root ant-dropdown-menu-vertical"},g.a.createElement("li",{className:"ant-dropdown-menu-item"},g.a.createElement(O["a"],{userId:null===(e=this.record)||void 0===e?void 0:e.id,key:null===(t=this.record)||void 0===t?void 0:t.id},g.a.createElement("a",null,g.a.createElement(f["a"],{type:"edit"})," \u7f16\u8f91"))),g.a.createElement("li",{className:"ant-dropdown-menu-item"},g.a.createElement(k["a"],{email:null===(n=this.record)||void 0===n?void 0:n.email,key:null===(r=this.record)||void 0===r?void 0:r.email},g.a.createElement("a",null,g.a.createElement(f["a"],{type:"plus"})," \u5206\u914d\u8ba2\u5355"))),g.a.createElement("li",{className:"ant-dropdown-menu-item"},g.a.createElement("a",{onClick:()=>{var e;return Object(D["a"])(null===(e=this.record)||void 0===e?void 0:e.subscribe_url)}},g.a.createElement(f["a"],{type:"copy"})," \u590d\u5236\u8ba2\u9605URL")),g.a.createElement("li",{className:"ant-dropdown-menu-item"},g.a.createElement("a",{style:{color:"#ff4d4f"},onClick:()=>this.resetSecret(this.record)},g.a.createElement(f["a"],{type:"reload"})," \u91cd\u7f6eUUID\u53ca\u8ba2\u9605URL")),g.a.createElement("li",{className:"ant-dropdown-menu-item",onClick:()=>{var e;return this.orderFilter("user_id","=",null===(e=this.record)||void 0===e?void 0:e.id)}},g.a.createElement(f["a"],{type:"account-book"})," TA\u7684\u8ba2\u5355"),g.a.createElement("li",{className:"ant-dropdown-menu-item",onClick:()=>{var e;return this.userFilter("invite_user_id","=",null===(e=this.record)||void 0===e?void 0:e.id,!0)}},g.a.createElement(f["a"],{type:"usergroup-add"})," TA\u7684\u9080\u8bf7"))))))}}t["default"]=Object(b["c"])(e=>{var t=e.user,n=e.serverGroup,r=e.plan;return{user:t,serverGroup:n,plan:r}})(N)},d6i3:function(e,t,n){e.exports=n("wOl0")},dX6P:function(e,t,n){"use strict";n.r(t);var r=n("d6i3"),i=n.n(r),o=n("p0pE"),a=n.n(o),s=n("t3Un"),l=n("3a4m"),c=n.n(l);t["default"]={name:"auth",state:{},reducers:{save(e,t){var n=t.payload;return a()({},e,n)}},effects:{login(e,t){return i.a.mark(function n(){var r,o,a;return i.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.action,o=t.put,n.next=4,o({type:"save",payload:{loginLoading:!0}});case 4:return n.next=6,Object(s["b"])("/passport/auth/login",r);case 6:return a=n.sent,n.next=9,o({type:"save",payload:{loginLoading:!1}});case 9:if(200===a.code){n.next=11;break}return n.abrupt("return");case 11:if(a.data.is_admin){n.next=13;break}return n.abrupt("return");case 13:c.a.push("/dashboard");case 14:case"end":return n.stop()}},n)})()},register(e){return i.a.mark(function t(){var n,r,o;return i.a.wrap(function(t){while(1)switch(t.prev=t.next){case 0:return n=e.action,r=e.complete,t.next=3,Object(s["a"])("/passport/auth/register",n);case 3:o=t.sent,o&&r(o);case 5:case"end":return t.stop()}},t)})()}}}},dcFJ:function(e,t,n){"use strict";var r=n("wHrr"),i=n("WGNW"),o=n("il4q"),a=n("69SZ"),s=n("ULMT"),l=n("OsVd"),c=n("aSE1"),u=n("BnQZ");i(i.S+i.F*!n("cQyX")(function(e){Array.from(e)}),"Array",{from:function(e){var t,n,i,h,d=o(e),f="function"==typeof this?this:Array,p=arguments.length,m=p>1?arguments[1]:void 0,g=void 0!==m,v=0,y=u(d);if(g&&(m=r(m,p>2?arguments[2]:void 0,2)),void 0==y||f==Array&&s(y))for(t=l(d.length),n=new f(t);t>v;v++)c(n,v,g?m(d[v],v):d[v]);else for(h=y.call(d),n=new f;!(i=h.next()).done;v++)c(n,v,g?a(h,m,[i.value,v],!0):i.value);return n.length=v,n}})},dl0q:function(e,t,n){n("Zxgi")("observable")},dplF:function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=o;var r=i(n("i8i4"));function i(e){return e&&e.__esModule?e:{default:e}}function o(e){return e instanceof HTMLElement?e:r.default.findDOMNode(e)}},dqUG:function(e,t,n){"use strict";var r=n("mrSG"),i=n("1AkM"),o=n("3U8f"),a=n("bYtY"),s=n("6GrX"),l=n("Dagg"),c=n("x6Kt"),u=n("mFDi"),h=n("Gev7"),d={fill:"#000"},f=2,p={style:Object(a["j"])({fill:!0,stroke:!0,fillOpacity:!0,strokeOpacity:!0,lineWidth:!0,fontSize:!0,lineHeight:!0,width:!0,height:!0,textShadowColor:!0,textShadowBlur:!0,textShadowOffsetX:!0,textShadowOffsetY:!0,backgroundColor:!0,padding:!0,borderColor:!0,borderWidth:!0,borderRadius:!0},h["a"].style)},m=function(e){function t(t){var n=e.call(this)||this;return n.type="text",n._children=[],n._defaultStyle=d,n.attr(t),n}return Object(r["a"])(t,e),t.prototype.childrenRef=function(){return this._children},t.prototype.update=function(){e.prototype.update.call(this),this.styleChanged()&&this._updateSubTexts();for(var t=0;t0,j=null!=e.width&&("truncate"===e.overflow||"break"===e.overflow||"breakAll"===e.overflow),N=a.calculatedLineHeight,I=0;I=0&&(R=_[P],"right"===R.align))this._placeToken(R,e,k,v,M,"right",b),O-=R.width,M-=R.width,P--;A+=(r-(A-g)-(y-M)-O)/2;while(T<=P)R=_[T],this._placeToken(R,e,k,v,A+R.width/2,"center",b),A+=R.width,T++;v+=k}},t.prototype._placeToken=function(e,t,n,r,i,l,c){var h=t.rich[e.styleName]||{};h.text=e.text;var d=e.verticalAlign,p=r+n/2;"top"===d?p=r+e.height/2:"bottom"===d&&(p=r+n-e.height/2);var m=!e.isLineHolder&&C(h);m&&this._renderBackground(h,t,"right"===l?i-e.width:"center"===l?i-e.width/2:i,p-e.height/2,e.width,e.height);var g=!!h.backgroundColor,v=e.textPadding;v&&(i=_(i,l,v),p-=e.height/2-v[0]-e.innerHeight/2);var y=this._getOrCreateChild(o["a"]),b=y.createStyle();y.useStyle(b);var S=this._defaultStyle,E=!1,k=0,O=x("fill"in h?h.fill:"fill"in t?t.fill:(E=!0,S.fill)),T=w("stroke"in h?h.stroke:"stroke"in t?t.stroke:g||c||S.autoStroke&&!E?null:(k=f,S.stroke)),A=h.textShadowBlur>0||t.textShadowBlur>0;b.text=e.text,b.x=i,b.y=p,A&&(b.shadowBlur=h.textShadowBlur||t.textShadowBlur||0,b.shadowColor=h.textShadowColor||t.textShadowColor||"transparent",b.shadowOffsetX=h.textShadowOffsetX||t.textShadowOffsetX||0,b.shadowOffsetY=h.textShadowOffsetY||t.textShadowOffsetY||0),b.textAlign=l,b.textBaseline="middle",b.font=e.font||s["a"],b.opacity=Object(a["N"])(h.opacity,t.opacity,1),T&&(b.lineWidth=Object(a["N"])(h.lineWidth,t.lineWidth,k),b.lineDash=Object(a["M"])(h.lineDash,t.lineDash),b.lineDashOffset=t.lineDashOffset||0,b.stroke=T),O&&(b.fill=O);var M=e.contentWidth,P=e.contentHeight;y.setBoundingRect(new u["a"](Object(s["b"])(b.x,M,b.textAlign),Object(s["c"])(b.y,P,b.textBaseline),M,P))},t.prototype._renderBackground=function(e,t,n,r,i,o){var s,u,h=e.backgroundColor,d=e.borderWidth,f=e.borderColor,p=h&&h.image,m=h&&!p,g=e.borderRadius,v=this;if(m||e.lineHeight||d&&f){s=this._getOrCreateChild(c["a"]),s.useStyle(s.createStyle()),s.style.fill=null;var y=s.shape;y.x=n,y.y=r,y.width=i,y.height=o,y.r=g,s.dirtyShape()}if(m){var b=s.style;b.fill=h||null,b.fillOpacity=Object(a["M"])(e.fillOpacity,1)}else if(p){u=this._getOrCreateChild(l["a"]),u.onload=function(){v.dirtyStyle()};var w=u.style;w.image=h.image,w.x=n,w.y=r,w.width=i,w.height=o}if(d&&f){b=s.style;b.lineWidth=d,b.stroke=f,b.strokeOpacity=Object(a["M"])(e.strokeOpacity,1),b.lineDash=e.borderDash,b.lineDashOffset=e.borderDashOffset||0,s.strokeContainThreshold=0,s.hasFill()&&s.hasStroke()&&(b.strokeFirst=!0,b.lineWidth*=2)}var x=(s||u).style;x.shadowBlur=e.shadowBlur||0,x.shadowColor=e.shadowColor||"transparent",x.shadowOffsetX=e.shadowOffsetX||0,x.shadowOffsetY=e.shadowOffsetY||0,x.opacity=Object(a["N"])(e.opacity,t.opacity,1)},t.makeFont=function(e){var t="";if(e.fontSize||e.fontFamily||e.fontWeight){var n="";n="string"!==typeof e.fontSize||-1===e.fontSize.indexOf("px")&&-1===e.fontSize.indexOf("rem")&&-1===e.fontSize.indexOf("em")?isNaN(+e.fontSize)?"12px":e.fontSize+"px":e.fontSize,t=[e.fontStyle,e.fontWeight,n,e.fontFamily||"sans-serif"].join(" ")}return t&&Object(a["Q"])(t)||e.textFont||e.font},t}(h["c"]),g={left:!0,right:1,center:1},v={top:1,bottom:1,middle:1};function y(e){return b(e),Object(a["k"])(e.rich,b),e}function b(e){if(e){e.font=m.makeFont(e);var t=e.align;"middle"===t&&(t="center"),e.align=null==t||g[t]?t:"left";var n=e.verticalAlign;"center"===n&&(n="middle"),e.verticalAlign=null==n||v[n]?n:"top";var r=e.padding;r&&(e.padding=Object(a["J"])(e.padding))}}function w(e,t){return null==e||t<=0||"transparent"===e||"none"===e?null:e.image||e.colorStops?"#000":e}function x(e){return null==e||"none"===e?null:e.image||e.colorStops?"#000":e}function _(e,t,n){return"right"===t?e-n[1]:"center"===t?e+n[3]/2-n[1]/2:e+n[3]}function S(e){var t=e.text;return null!=t&&(t+=""),t}function C(e){return!!(e.backgroundColor||e.lineHeight||e.borderWidth&&e.borderColor)}t["a"]=m},"e+9n":function(e,t,n){"use strict";n.r(t);n("miYZ");var r=n("tsqr"),i=n("d6i3"),o=n.n(i),a=n("p0pE"),s=n.n(a),l=n("t3Un"),c={tickets:[],fetchLoading:!1,ticket:{message:[]},pagination:{pageSize:10,current:1},filter:{status:0},replyLoading:!1};t["default"]={name:"ticket",state:s()({},c),reducers:{setState(e,t){var n=t.payload;return s()({},e,n)}},effects:{fetch(e,t){return o.a.mark(function e(){var n,r,i,a,c,u;return o.a.wrap(function(e){while(1)switch(e.prev=e.next){case 0:return n=t.put,r=t.select,e.next=3,r(e=>e.ticket);case 3:return i=e.sent,a=i.pagination,c=i.filter,e.next=8,n({type:"setState",payload:{fetchLoading:!0}});case 8:return e.next=10,Object(l["a"])("/admin/ticket/fetch",s()({},a,c));case 10:return u=e.sent,e.next=13,n({type:"setState",payload:{fetchLoading:!1}});case 13:if(200===u.code){e.next=15;break}return e.abrupt("return");case 15:return e.next=17,n({type:"setState",payload:{tickets:u.data,pagination:s()({},a,{total:u.total})}});case 17:case"end":return e.stop()}},e)})()},fetchById(e,t){return o.a.mark(function n(){var r,i,a,s,c,u;return o.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.id,i=t.put,a=t.select,n.next=4,Object(l["a"])("/admin/ticket/fetch",{id:r});case 4:if(s=n.sent,200===s.code){n.next=7;break}return n.abrupt("return");case 7:return n.next=9,i({type:"setState",payload:{ticket:s.data}});case 9:return n.next=11,a(e=>e.user);case 11:if(c=n.sent,u=c.user,!u.id){n.next=15;break}return n.abrupt("return");case 15:return n.next=17,i({type:"user/getUserInfoById",id:s.data.user_id});case 17:case"end":return n.stop()}},n)})()},close(e,t){return o.a.mark(function n(){var r,i,a;return o.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.id,i=t.put,n.next=4,Object(l["b"])("/admin/ticket/close",{id:r});case 4:if(a=n.sent,200===a.code){n.next=7;break}return n.abrupt("return");case 7:return n.next=9,i({type:"fetch"});case 9:case"end":return n.stop()}},n)})()},reply(e,t){return o.a.mark(function n(){var i,a,s,c,u;return o.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return i=e.id,a=e.msg,s=e.callback,c=t.put,r["a"].loading("\u53d1\u9001\u4e2d"),n.next=5,c({type:"setState",payload:{replyLoading:!0}});case 5:return n.next=7,Object(l["b"])("/admin/ticket/reply",{id:i,message:a});case 7:return u=n.sent,n.next=10,c({type:"setState",payload:{replyLoading:!1}});case 10:if(r["a"].destroy(),200===u.code){n.next=13;break}return n.abrupt("return");case 13:return n.next=15,c({type:"fetchById",id:i});case 15:"function"===typeof s&&s();case 16:case"end":return n.stop()}},n)})()},filter(e,t){return o.a.mark(function n(){var r,i,a,l,c;return o.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.pagination,i=e.filter,a=t.put,l=t.select,n.next=4,l(e=>e.ticket);case 4:return c=n.sent,n.next=7,a({type:"setState",payload:{pagination:s()({},c.pagination,r),filter:s()({},c.filter,i)}});case 7:return n.next=9,a({type:"fetch"});case 9:case"end":return n.stop()}},n)})()}}}},e6w7:function(e,t){t.f=Object.getOwnPropertySymbols},eDIo:function(e,t,n){"use strict";var r=n("q1tI"),i=n.n(r),o=n("17x9"),a=n.n(o),s=n("i8i4"),l=n.n(s),c=n("uciX"),u=n("TSYQ"),h=n.n(u),d={adjustX:1,adjustY:1},f=[0,0],p={topLeft:{points:["bl","tl"],overflow:d,offset:[0,-4],targetOffset:f},topCenter:{points:["bc","tc"],overflow:d,offset:[0,-4],targetOffset:f},topRight:{points:["br","tr"],overflow:d,offset:[0,-4],targetOffset:f},bottomLeft:{points:["tl","bl"],overflow:d,offset:[0,4],targetOffset:f},bottomCenter:{points:["tc","bc"],overflow:d,offset:[0,4],targetOffset:f},bottomRight:{points:["tr","br"],overflow:d,offset:[0,4],targetOffset:f}},m=p,g=n("VCL8"),v=Object.assign||function(e){for(var t=1;t=0||Object.prototype.hasOwnProperty.call(e,r)&&(n[r]=e[r]);return n}function b(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function w(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==typeof t&&"function"!==typeof t?e:t}function x(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var _=function(e){function t(n){b(this,t);var r=w(this,e.call(this,n));return S.call(r),r.state="visible"in n?{visible:n.visible}:{visible:n.defaultVisible},r}return x(t,e),t.getDerivedStateFromProps=function(e){return"visible"in e?{visible:e.visible}:null},t.prototype.getOverlayElement=function(){var e=this.props.overlay,t=void 0;return t="function"===typeof e?e():e,t},t.prototype.getMenuElementOrLambda=function(){var e=this.props.overlay;return"function"===typeof e?this.getMenuElement:this.getMenuElement()},t.prototype.getPopupDomNode=function(){return this.trigger.getPopupDomNode()},t.prototype.getOpenClassName=function(){var e=this.props,t=e.openClassName,n=e.prefixCls;return void 0!==t?t:n+"-open"},t.prototype.renderChildren=function(){var e=this.props.children,t=this.state.visible,n=e.props?e.props:{},i=h()(n.className,this.getOpenClassName());return t&&e?Object(r["cloneElement"])(e,{className:i}):e},t.prototype.render=function(){var e=this.props,t=e.prefixCls,n=e.transitionName,r=e.animation,o=e.align,a=e.placement,s=e.getPopupContainer,l=e.showAction,u=e.hideAction,h=e.overlayClassName,d=e.overlayStyle,f=e.trigger,p=y(e,["prefixCls","transitionName","animation","align","placement","getPopupContainer","showAction","hideAction","overlayClassName","overlayStyle","trigger"]),g=u;return g||-1===f.indexOf("contextMenu")||(g=["click"]),i.a.createElement(c["a"],v({},p,{prefixCls:t,ref:this.saveTrigger,popupClassName:h,popupStyle:d,builtinPlacements:m,action:f,showAction:l,hideAction:g||[],popupPlacement:a,popupAlign:o,popupTransitionName:n,popupAnimation:r,popupVisible:this.state.visible,afterPopupVisibleChange:this.afterVisibleChange,popup:this.getMenuElementOrLambda(),onPopupVisibleChange:this.onVisibleChange,getPopupContainer:s}),this.renderChildren())},t}(r["Component"]);_.propTypes={minOverlayWidthMatchTrigger:a.a.bool,onVisibleChange:a.a.func,onOverlayClick:a.a.func,prefixCls:a.a.string,children:a.a.any,transitionName:a.a.string,overlayClassName:a.a.string,openClassName:a.a.string,animation:a.a.any,align:a.a.object,overlayStyle:a.a.object,placement:a.a.string,overlay:a.a.oneOfType([a.a.node,a.a.func]),trigger:a.a.array,alignPoint:a.a.bool,showAction:a.a.array,hideAction:a.a.array,getPopupContainer:a.a.func,visible:a.a.bool,defaultVisible:a.a.bool},_.defaultProps={prefixCls:"rc-dropdown",trigger:["hover"],showAction:[],overlayClassName:"",overlayStyle:{},defaultVisible:!1,onVisibleChange:function(){},placement:"bottomLeft"};var S=function(){var e=this;this.onClick=function(t){var n=e.props,r=e.getOverlayElement().props;"visible"in n||e.setState({visible:!1}),n.onOverlayClick&&n.onOverlayClick(t),r.onClick&&r.onClick(t)},this.onVisibleChange=function(t){var n=e.props;"visible"in n||e.setState({visible:t}),n.onVisibleChange(t)},this.getMinOverlayWidthMatchTrigger=function(){var t=e.props,n=t.minOverlayWidthMatchTrigger,r=t.alignPoint;return"minOverlayWidthMatchTrigger"in e.props?n:!r},this.getMenuElement=function(){var t=e.props.prefixCls,n=e.getOverlayElement(),r={prefixCls:t+"-menu",onClick:e.onClick};return"string"===typeof n.type&&delete r.prefixCls,i.a.cloneElement(n,r)},this.afterVisibleChange=function(t){if(t&&e.getMinOverlayWidthMatchTrigger()){var n=e.getPopupDomNode(),r=l.a.findDOMNode(e);r&&n&&r.offsetWidth>n.offsetWidth&&(n.style.minWidth=r.offsetWidth+"px",e.trigger&&e.trigger._component&&e.trigger._component.alignInstance&&e.trigger._component.alignInstance.forceAlign())}},this.saveTrigger=function(t){e.trigger=t}};Object(g["polyfill"])(_);var C=_;t["a"]=C},eGJ5:function(e,t,n){"use strict";var r=n("QbLZ"),i=n.n(r),o=n("q1tI"),a=n("iCc5"),s=n.n(a),l=n("FYw3"),c=n.n(l),u=n("mRg0"),h=n.n(u),d=n("i8i4"),f=n("4IlW"),p=n("l4aY"),m=n("MFj2"),g=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&t.indexOf(r)<0&&(n[r]=e[r]);if(null!=e&&"function"===typeof Object.getOwnPropertySymbols){var i=0;for(r=Object.getOwnPropertySymbols(e);ithis.setState({visible:!1})})}show(){this.props.dispatch({type:"payment/getPaymentMethods",complete:e=>{this.setState({visible:!0,paymentMethods:e,selectPaymentMethod:this.state.submit.payment||e[0]},()=>{this.onSelectPaymentMethod(this.state.submit.payment||e[0])})}})}onSelectPaymentMethod(e){this.props.dispatch({type:"payment/getPaymentForm",payment:e,id:this.state.submit.id,complete:t=>{this.setState({form:t,selectPaymentMethod:e})}})}configOnChange(e,t){var n=this.state.config;n[e]=t,this.setState({config:n})}submitOnChange(e,t){var n=this.state.submit;n[e]=t,this.setState({submit:n})}render(){var e=this.props.payment.fetchLoading,t=this.state,n=t.paymentMethods,r=t.selectPaymentMethod,i=t.form,o=t.config,a=t.submit;return d.a.createElement(d.a.Fragment,null,d.a.cloneElement(this.props.children,{onClick:()=>this.show()}),d.a.createElement(m["a"],{title:"".concat(this.state.submit.id?"\u7f16\u8f91\u652f\u4ed8\u65b9\u5f0f":"\u6dfb\u52a0\u652f\u4ed8\u65b9\u5f0f"),visible:this.state.visible,onCancel:()=>this.setState({visible:!1}),onOk:()=>e||this.save(),okText:e?d.a.createElement(c["a"],{type:"loading"}):"\u6dfb\u52a0",cancelText:"\u53d6\u6d88"},d.a.createElement("div",null,d.a.createElement("div",{className:"form-group"},d.a.createElement("label",{for:"example-text-input-alt"},"\u663e\u793a\u540d\u79f0"),d.a.createElement(v["a"],{placeholder:"\u7528\u4e8e\u524d\u7aef\u663e\u793a\u4f7f\u7528",defaultValue:a.name,onChange:e=>this.submitOnChange("name",e.target.value)})),d.a.createElement("div",{className:"form-group"},d.a.createElement("label",{htmlFor:"example-text-input-alt"},"\u56fe\u6807URL"),d.a.createElement(v["a"],{placeholder:"\u7528\u4e8e\u524d\u7aef\u663e\u793a\u4f7f\u7528(https://x.com/icon.svg)",defaultValue:a.icon,onChange:e=>this.submitOnChange("icon",e.target.value)})),d.a.createElement("div",{className:"form-group"},d.a.createElement("label",{for:"example-text-input-alt"},"\u63a5\u53e3\u6587\u4ef6"),d.a.createElement("div",null,d.a.createElement(g["a"],{style:{width:"100%"},defaultValue:r,onChange:e=>this.onSelectPaymentMethod(e)},n.map(e=>{return d.a.createElement(g["a"].Option,{value:e},e)})))),Object.keys(i).map(e=>{return d.a.createElement("div",{className:"form-group"},d.a.createElement("label",{for:"example-text-input-alt"},i[e].label),"input"===i[e].type&&d.a.createElement(v["a"],{placeholder:i[e].description,defaultValue:o[e]||i[e].value,onChange:t=>this.configOnChange(e,t.target.value)}))}),"MGate"===r&&d.a.createElement("div",{className:"alert alert-warning mb-0",role:"alert"},d.a.createElement("p",{className:"mb-0"},"MGate TG@nulledsan")))))}}var x=Object(p["c"])(e=>{var t=e.payment;return{payment:t}})(w);class _ extends d.a.Component{constructor(e){super(e),this.state={visible:!1,submit:{show:0}}}componentDidMount(){this.props.dispatch({type:"payment/fetch"})}save(e,t){this.props.dispatch({type:"payment/save",params:{id:e,enable:t}})}render(){var e=this.props.payment,t=e.payments,n=e.fetchLoading,r=[{title:"ID",dataIndex:"id",key:"id"},{title:"\u542f\u7528",dataIndex:"enable",key:"enable",render:(e,t)=>d.a.createElement(u["a"],{checked:parseInt(e),size:"small",onChange:e=>this.save(t.id,e?1:0)})},{title:"\u663e\u793a\u540d\u79f0",dataIndex:"name",key:"name"},{title:"\u652f\u4ed8\u63a5\u53e3",dataIndex:"payment",key:"payment"},{title:d.a.createElement("span",null,"\u901a\u77e5\u5730\u5740 ",d.a.createElement(l["a"],{placement:"top",title:"\u652f\u4ed8\u7f51\u5173\u5c06\u4f1a\u628a\u6570\u636e\u901a\u77e5\u5230\u672c\u5730\u5740\uff0c\u8bf7\u901a\u8fc7\u9632\u706b\u5899\u653e\u884c\u672c\u5730\u5740\u3002"},d.a.createElement(c["a"],{type:"question-circle"}))),dataIndex:"notify_url",key:"notify_url"},{title:"\u64cd\u4f5c",dataIndex:"action",key:"action",align:"right",render:(e,t)=>d.a.createElement(d.a.Fragment,null,d.a.createElement(x,{key:t.id,record:t},d.a.createElement("a",{href:"javascript:void(0);"},"\u7f16\u8f91")),d.a.createElement(s["a"],{type:"vertical"}),d.a.createElement("a",{href:"javascript:void(0)",onClick:()=>this.props.dispatch({type:"payment/drop",id:t.id})},"\u5220\u9664"))}];return d.a.createElement(f["a"],i()({},this.props,{title:"\u8ba2\u9605\u7ba1\u7406"}),d.a.createElement("div",{className:"d-flex justify-content-between align-items-center"}),d.a.createElement("div",{className:"block block-rounded ".concat(n?"block-mode-loading":"")},d.a.createElement("div",{className:"bg-white"},d.a.createElement("div",{style:{padding:15}},d.a.createElement(x,{key:0},d.a.createElement(a["a"],null,d.a.createElement(c["a"],{type:"plus"})," \u6dfb\u52a0\u652f\u4ed8\u65b9\u5f0f"))),d.a.createElement(o["a"],{tableLayout:"auto",dataSource:t,columns:r,pagination:!1,scroll:{x:1300}}))))}}t["default"]=Object(p["c"])(e=>{var t=e.payment;return{payment:t}})(_)},eOCx:function(e,t,n){"use strict";n.r(t);var r=n("d6i3"),i=n.n(r),o=n("p0pE"),a=n.n(o),s=n("t3Un"),l=n("wd/R"),c=n.n(l),u={coupons:[],fetchLoading:!1,saveLoading:!1,pagination:{pageSize:10,current:1},sort:{}};t["default"]={name:"coupon",state:a()({},u),reducers:{setState(e,t){var n=t.payload;return a()({},e,n)}},effects:{fetch(e,t){return i.a.mark(function e(){var n,r,o,l;return i.a.wrap(function(e){while(1)switch(e.prev=e.next){case 0:return n=t.put,r=t.select,e.next=3,r(e=>e.coupon);case 3:return o=e.sent,e.next=6,n({type:"setState",payload:{fetchLoading:!0}});case 6:return e.next=8,Object(s["a"])("/admin/coupon/fetch",a()({},o.pagination,o.sort));case 8:return l=e.sent,e.next=11,n({type:"setState",payload:{fetchLoading:!1}});case 11:if(200===l.code){e.next=13;break}return e.abrupt("return");case 13:return l.data.forEach(e=>{1===e.type&&(e.value=e.value/100)}),e.next=16,n({type:"setState",payload:{coupons:l.data,pagination:a()({},o.pagination,{total:l.total})}});case 16:case"end":return e.stop()}},e)})()},generate(e,t){return i.a.mark(function n(){var r,o,a,l,u,h,d;return i.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.params,o=e.callback,a=t.put,n.next=4,a({type:"setState",payload:{saveLoading:!0}});case 4:return 1===r.type&&(r.value=100*r.value),n.next=7,Object(s["b"])("/admin/coupon/generate",r);case 7:return l=n.sent,n.next=10,a({type:"setState",payload:{saveLoading:!1}});case 10:if(200===l.code){n.next=12;break}return n.abrupt("return");case 12:return r.generate_count&&(u=new Blob([l.buffer],{type:"text/plain,charset=UTF-8"}),h=window.URL.createObjectURL(u),d=document.createElement("a"),d.href=h,d.style.display="none",d.download="COUPON ".concat(c()().format("YYYY-MM-DD HH:mm:ss"),".csv"),d.click(),window.URL.revokeObjectURL(h)),n.next=15,a({type:"fetch"});case 15:"function"===typeof o&&o();case 16:case"end":return n.stop()}},n)})()},drop(e,t){return i.a.mark(function n(){var r,o,a;return i.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.id,o=t.put,n.next=4,Object(s["b"])("/admin/coupon/drop",{id:r});case 4:if(a=n.sent,200===a.code){n.next=7;break}return n.abrupt("return");case 7:return n.next=9,o({type:"fetch"});case 9:case"end":return n.stop()}},n)})()},changeTable(e,t){return i.a.mark(function n(){var r,o,s,l,c;return i.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.pagination,o=e.sort,s=t.select,l=t.put,n.next=4,s(e=>e.coupon);case 4:return c=n.sent,n.next=7,l({type:"setState",payload:{pagination:a()({},c.pagination,r),sort:o}});case 7:return n.next=9,l({type:"fetch"});case 9:case"end":return n.stop()}},n)})()}}}},eUtF:function(e,t,n){e.exports=!n("jmDH")&&!n("KUxP")(function(){return 7!=Object.defineProperty(n("Hsns")("div"),"a",{get:function(){return 7}}).a})},eaoh:function(e,t){e.exports=function(e){if("function"!=typeof e)throw TypeError(e+" is not a function!");return e}},er1Y:function(e,t,n){var r=n("WGNW"),i=n("Zgoe"),o=n("OeOC"),a=n("15BC"),s=n("aSE1");r(r.S,"Object",{getOwnPropertyDescriptors:function(e){var t,n,r=o(e),l=a.f,c=i(r),u={},h=0;while(c.length>h)n=l(r,t=c[h++]),void 0!==n&&s(u,t,n);return u}})},fDcq:function(e,t,n){"use strict";var r=n("iCc5"),i=n.n(r),o=n("FYw3"),a=n.n(o),s=n("mRg0"),l=n.n(s),c=n("q1tI"),u=n.n(c),h={DATE_ROW_COUNT:6,DATE_COL_COUNT:7},d=n("wd/R"),f=n.n(d),p=function(e){function t(){return i()(this,t),a()(this,e.apply(this,arguments))}return l()(t,e),t.prototype.render=function(){for(var e=this.props,t=e.value,n=t.localeData(),r=e.prefixCls,i=[],o=[],a=n.firstDayOfWeek(),s=void 0,l=f()(),c=0;ct.year()?1:e.year()===t.year()&&e.month()>t.month()}function C(e){return"rc-calendar-"+e.year()+"-"+e.month()+"-"+e.date()}var E=function(e){function t(){return i()(this,t),a()(this,e.apply(this,arguments))}return l()(t,e),t.prototype.render=function(){var e=this.props,t=e.contentRender,n=e.prefixCls,r=e.selectedValue,i=e.value,o=e.showWeekNumber,a=e.dateRender,s=e.disabledDate,l=e.hoverValue,c=void 0,d=void 0,f=void 0,p=[],m=Object(w["e"])(i),g=n+"-cell",v=n+"-week-number-cell",y=n+"-date",E=n+"-today",k=n+"-selected-day",O=n+"-selected-date",T=n+"-selected-start-date",A=n+"-selected-end-date",M=n+"-in-range-cell",P=n+"-last-month-cell",R=n+"-next-month-btn-day",L=n+"-disabled-cell",D=n+"-disabled-cell-first-of-row",j=n+"-disabled-cell-last-of-row",N=n+"-last-day-of-month",I=i.clone();I.date(1);var $=I.day(),F=($+7-i.localeData().firstDayOfWeek())%7,V=I.clone();V.add(0-F,"days");var B=0;for(c=0;c0&&(Y=p[B-1]);var X=g,Q=!1,Z=!1;x(f,m)&&(X+=" "+E,z=!0);var J=_(f,i),ee=S(f,i);if(r&&Array.isArray(r)){var te=l.length?l:r;if(!J&&!ee){var ne=te[0],re=te[1];ne&&x(f,ne)&&(Z=!0,q=!0,X+=" "+T),(ne||re)&&(x(f,re)?(Z=!0,q=!0,X+=" "+A):(null!==ne&&void 0!==ne||!f.isBefore(re,"day"))&&(null!==re&&void 0!==re||!f.isAfter(ne,"day"))?f.isAfter(ne,"day")&&f.isBefore(re,"day")&&(X+=" "+M):X+=" "+M)}}else x(f,i)&&(Z=!0,q=!0);x(f,r)&&(X+=" "+O),J&&(X+=" "+P),ee&&(X+=" "+R),f.clone().endOf("month").date()===f.date()&&(X+=" "+N),s&&s(f,i)&&(Q=!0,Y&&s(Y,i)||(X+=" "+D),G&&s(G,i)||(X+=" "+j)),Z&&(X+=" "+k),Q&&(X+=" "+L);var ie=void 0;if(a)ie=a(f,i);else{var oe=t?t(f,i):f.date();ie=u.a.createElement("div",{key:C(f),className:y,"aria-selected":Z,"aria-disabled":Q},oe)}K.push(u.a.createElement("td",{key:B,onClick:Q?void 0:e.onSelect.bind(null,f),onMouseEnter:Q?void 0:e.onDayHover&&e.onDayHover.bind(null,f)||void 0,role:"gridcell",title:Object(w["d"])(f),className:X},ie)),B++}W.push(u.a.createElement("tr",{key:c,role:"row",className:b()((H={},H[n+"-current-week"]=z,H[n+"-active-week"]=q,H))},U,K))}return u.a.createElement("tbody",{className:n+"-tbody"},W)},t}(u.a.Component);E.propTypes={contentRender:v.a.func,dateRender:v.a.func,disabledDate:v.a.func,prefixCls:v.a.string,selectedValue:v.a.oneOfType([v.a.object,v.a.arrayOf(v.a.object)]),value:v.a.object,hoverValue:v.a.any,showWeekNumber:v.a.bool},E.defaultProps={hoverValue:[]};var k=E,O=function(e){function t(){return i()(this,t),a()(this,e.apply(this,arguments))}return l()(t,e),t.prototype.render=function(){var e=this.props,t=e.prefixCls;return u.a.createElement("table",{className:t+"-table",cellSpacing:"0",role:"grid"},u.a.createElement(m,e),u.a.createElement(k,e))},t}(u.a.Component);t["a"]=O},fHKQ:function(e,t,n){var r=n("8Z/V"),i=n("Igga"),o=n("OeOC"),a=n("LsAW").f;e.exports=function(e){return function(t){var n,s=o(t),l=i(s),c=l.length,u=0,h=[];while(c>u)n=l[u++],r&&!a.call(s,n)||h.push(e?[n,s[n]]:s[n]);return h}}},fKCf:function(e,t){e.exports=/[!-#%-\*,-\/:;\?@\[-\]_\{\}\xA1\xA7\xAB\xB6\xB7\xBB\xBF\u037E\u0387\u055A-\u055F\u0589\u058A\u05BE\u05C0\u05C3\u05C6\u05F3\u05F4\u0609\u060A\u060C\u060D\u061B\u061E\u061F\u066A-\u066D\u06D4\u0700-\u070D\u07F7-\u07F9\u0830-\u083E\u085E\u0964\u0965\u0970\u09FD\u0A76\u0AF0\u0C84\u0DF4\u0E4F\u0E5A\u0E5B\u0F04-\u0F12\u0F14\u0F3A-\u0F3D\u0F85\u0FD0-\u0FD4\u0FD9\u0FDA\u104A-\u104F\u10FB\u1360-\u1368\u1400\u166D\u166E\u169B\u169C\u16EB-\u16ED\u1735\u1736\u17D4-\u17D6\u17D8-\u17DA\u1800-\u180A\u1944\u1945\u1A1E\u1A1F\u1AA0-\u1AA6\u1AA8-\u1AAD\u1B5A-\u1B60\u1BFC-\u1BFF\u1C3B-\u1C3F\u1C7E\u1C7F\u1CC0-\u1CC7\u1CD3\u2010-\u2027\u2030-\u2043\u2045-\u2051\u2053-\u205E\u207D\u207E\u208D\u208E\u2308-\u230B\u2329\u232A\u2768-\u2775\u27C5\u27C6\u27E6-\u27EF\u2983-\u2998\u29D8-\u29DB\u29FC\u29FD\u2CF9-\u2CFC\u2CFE\u2CFF\u2D70\u2E00-\u2E2E\u2E30-\u2E4E\u3001-\u3003\u3008-\u3011\u3014-\u301F\u3030\u303D\u30A0\u30FB\uA4FE\uA4FF\uA60D-\uA60F\uA673\uA67E\uA6F2-\uA6F7\uA874-\uA877\uA8CE\uA8CF\uA8F8-\uA8FA\uA8FC\uA92E\uA92F\uA95F\uA9C1-\uA9CD\uA9DE\uA9DF\uAA5C-\uAA5F\uAADE\uAADF\uAAF0\uAAF1\uABEB\uFD3E\uFD3F\uFE10-\uFE19\uFE30-\uFE52\uFE54-\uFE61\uFE63\uFE68\uFE6A\uFE6B\uFF01-\uFF03\uFF05-\uFF0A\uFF0C-\uFF0F\uFF1A\uFF1B\uFF1F\uFF20\uFF3B-\uFF3D\uFF3F\uFF5B\uFF5D\uFF5F-\uFF65]|\uD800[\uDD00-\uDD02\uDF9F\uDFD0]|\uD801\uDD6F|\uD802[\uDC57\uDD1F\uDD3F\uDE50-\uDE58\uDE7F\uDEF0-\uDEF6\uDF39-\uDF3F\uDF99-\uDF9C]|\uD803[\uDF55-\uDF59]|\uD804[\uDC47-\uDC4D\uDCBB\uDCBC\uDCBE-\uDCC1\uDD40-\uDD43\uDD74\uDD75\uDDC5-\uDDC8\uDDCD\uDDDB\uDDDD-\uDDDF\uDE38-\uDE3D\uDEA9]|\uD805[\uDC4B-\uDC4F\uDC5B\uDC5D\uDCC6\uDDC1-\uDDD7\uDE41-\uDE43\uDE60-\uDE6C\uDF3C-\uDF3E]|\uD806[\uDC3B\uDE3F-\uDE46\uDE9A-\uDE9C\uDE9E-\uDEA2]|\uD807[\uDC41-\uDC45\uDC70\uDC71\uDEF7\uDEF8]|\uD809[\uDC70-\uDC74]|\uD81A[\uDE6E\uDE6F\uDEF5\uDF37-\uDF3B\uDF44]|\uD81B[\uDE97-\uDE9A]|\uD82F\uDC9F|\uD836[\uDE87-\uDE8B]|\uD83A[\uDD5E\uDD5F]/},"fKm+":function(e,t,n){"use strict";var r=n("2Os2"),i=n("Jc7p"),o="WeakSet";n("nWMQ")(o,function(e){return function(){return e(this,arguments.length>0?arguments[0]:void 0)}},{add:function(e){return r.def(i(this,o),e,!0)}},r,!1,!0)},fZtv:function(e,t,n){"use strict";(function(t){var n="__global_unique_id__";e.exports=function(){return t[n]=(t[n]||0)+1}}).call(this,n("yLpj"))},fcSX:function(e,t,n){"use strict";var r=n("1W/9"),i=n("q1tI"),o=n("VCL8"),a=n("TSYQ"),s=n.n(a),l=n("qx4F"),c=n("4IlW");function u(e){return Array.isArray(e)?e:[e]}var h={transition:"transitionend",WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend"},d=Object.keys(h).filter(function(e){if("undefined"===typeof document)return!1;var t=document.getElementsByTagName("html")[0];return e in(t?t.style:{})})[0],f=h[d];function p(e,t,n,r){e.addEventListener?e.addEventListener(t,n,r):e.attachEvent&&e.attachEvent("on".concat(t),n)}function m(e,t,n,r){e.removeEventListener?e.removeEventListener(t,n,r):e.attachEvent&&e.detachEvent("on".concat(t),n)}function g(e,t){var n="function"===typeof e?e(t):e;return Array.isArray(n)?2===n.length?n:[n[0],n[1]]:[n]}var v=function(e){return!isNaN(parseFloat(e))&&isFinite(e)},y=!("undefined"!==typeof window&&window.document&&window.document.createElement),b=function e(t,n,r,i){if(!n||n===document||n instanceof Document)return!1;if(n===t.parentNode)return!0;var o=Math.max(Math.abs(r),Math.abs(i))===Math.abs(i),a=Math.max(Math.abs(r),Math.abs(i))===Math.abs(r),s=n.scrollHeight-n.clientHeight,l=n.scrollWidth-n.clientWidth,c=document.defaultView.getComputedStyle(n),u="auto"===c.overflowY||"scroll"===c.overflowY,h="auto"===c.overflowX||"scroll"===c.overflowX,d=s&&u,f=l&&h;return!!(o&&(!d||d&&(n.scrollTop>=s&&i<0||n.scrollTop<=0&&i>0))||a&&(!f||f&&(n.scrollLeft>=l&&l<0||n.scrollLeft<=0&&l>0)))&&e(t,n.parentNode,r,i)};function w(e){return w="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},w(e)}function x(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function _(e,t){if(null==e)return{};var n,r,i=S(e,t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(r=0;r=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(i[n]=e[n])}return i}function S(e,t){if(null==e)return{};var n,r,i={},o=Object.keys(e);for(r=0;r=0||(i[n]=e[n]);return i}function C(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function E(e,t){for(var n=0;n1||(n.startPos={x:e.touches[0].clientX,y:e.touches[0].clientY})},n.removeMoveHandler=function(e){if(!(e.changedTouches.length>1)){var t=e.currentTarget,r=e.changedTouches[0].clientX-n.startPos.x,i=e.changedTouches[0].clientY-n.startPos.y;(t===n.maskDom||t===n.handlerDom||t===n.contentDom&&b(t,e.target,r,i))&&e.preventDefault()}},n.transitionEnd=function(e){var t=e.target;m(t,f,n.transitionEnd),t.style.transition=""},n.onKeyDown=function(e){if(e.keyCode===c["a"].ESC){var t=n.props.onClose;e.stopPropagation(),t&&t(e)}},n.onWrapperTransitionEnd=function(e){var t=n.props,r=t.open,i=t.afterVisibleChange;e.target===n.contentWrapper&&e.propertyName.match(/transform$/)&&(n.dom.style.transition="",!r&&n.getCurrentDrawerSome()&&(document.body.style.overflowX="",n.maskDom&&(n.maskDom.style.left="",n.maskDom.style.width="")),i&&i(!!r))},n.openLevelTransition=function(){var e=n.props,t=e.open,r=e.width,i=e.height,o=n.getHorizontalBoolAndPlacementName(),a=o.isHorizontal,s=o.placementName,l=n.contentDom?n.contentDom.getBoundingClientRect()[a?"width":"height"]:0,c=(a?r:i)||l;n.setLevelAndScrolling(t,s,c)},n.setLevelTransform=function(e,t,r,i){var o=n.props,a=o.placement,s=o.levelMove,l=o.duration,c=o.ease,u=o.showMask;n.levelDom.forEach(function(o){o.style.transition="transform ".concat(l," ").concat(c),p(o,f,n.transitionEnd);var h=e?r:0;if(s){var d=g(s,{target:o,open:e});h=e?d[0]:d[1]||0}var m="number"===typeof h?"".concat(h,"px"):h,v="left"===a||"top"===a?m:"-".concat(m);v=u&&"right"===a&&i?"calc(".concat(v," + ").concat(i,"px)"):v,o.style.transform=h?"".concat(t,"(").concat(v,")"):""})},n.setLevelAndScrolling=function(e,t,r){var i=n.props.onChange;if(!y){var o=document.body.scrollHeight>(window.innerHeight||document.documentElement.clientHeight)&&window.innerWidth>document.body.offsetWidth?Object(l["a"])(!0):0;n.setLevelTransform(e,t,r,o),n.toggleScrollingToDrawerAndBody(o)}i&&i(e)},n.toggleScrollingToDrawerAndBody=function(e){var t=n.props,r=t.getOpenCount,i=t.getContainer,o=t.showMask,a=t.open,s=i&&i(),l=r&&r();if(s&&s.parentNode===document.body&&o){var c=["touchstart"],u=[document.body,n.maskDom,n.handlerDom,n.contentDom];a&&"hidden"!==document.body.style.overflow?(e&&n.addScrollingEffect(e),1===l&&(document.body.style.overflow="hidden"),document.body.style.touchAction="none",u.forEach(function(e,t){e&&p(e,c[t]||"touchmove",t?n.removeMoveHandler:n.removeStartHandler,n.passive)})):n.getCurrentDrawerSome()&&(l||(document.body.style.overflow=""),document.body.style.touchAction="",e&&n.remScrollingEffect(e),u.forEach(function(e,t){e&&m(e,c[t]||"touchmove",t?n.removeMoveHandler:n.removeStartHandler,n.passive)}))}},n.addScrollingEffect=function(e){var t=n.props,r=t.placement,i=t.duration,o=t.ease,a=t.getOpenCount,s=t.switchScrollingEffect,l=a&&a();1===l&&s();var c="width ".concat(i," ").concat(o),u="transform ".concat(i," ").concat(o);switch(n.dom.style.transition="none",r){case"right":n.dom.style.transform="translateX(-".concat(e,"px)");break;case"top":case"bottom":n.dom.style.width="calc(100% - ".concat(e,"px)"),n.dom.style.transform="translateZ(0)";break;default:break}clearTimeout(n.timeout),n.timeout=setTimeout(function(){n.dom&&(n.dom.style.transition="".concat(u,",").concat(c),n.dom.style.width="",n.dom.style.transform="")})},n.remScrollingEffect=function(e){var t,r=n.props,i=r.placement,o=r.duration,a=r.ease,s=r.getOpenCount,l=r.switchScrollingEffect,c=s&&s();c||l(!0),d&&(document.body.style.overflowX="hidden"),n.dom.style.transition="none";var u="width ".concat(o," ").concat(a),h="transform ".concat(o," ").concat(a);switch(i){case"left":n.dom.style.width="100%",u="width 0s ".concat(a," ").concat(o);break;case"right":n.dom.style.transform="translateX(".concat(e,"px)"),n.dom.style.width="100%",u="width 0s ".concat(a," ").concat(o),n.maskDom&&(n.maskDom.style.left="-".concat(e,"px"),n.maskDom.style.width="calc(100% + ".concat(e,"px)"));break;case"top":case"bottom":n.dom.style.width="calc(100% + ".concat(e,"px)"),n.dom.style.height="100%",n.dom.style.transform="translateZ(0)",t="height 0s ".concat(a," ").concat(o);break;default:break}clearTimeout(n.timeout),n.timeout=setTimeout(function(){n.dom&&(n.dom.style.transition="".concat(h,",").concat(t?"".concat(t,","):"").concat(u),n.dom.style.transform="",n.dom.style.width="",n.dom.style.height="")})},n.getCurrentDrawerSome=function(){return!Object.keys(R).some(function(e){return R[e]})},n.getLevelDom=function(e){var t=e.level,r=e.getContainer;if(!y){var i=r&&r(),o=i?i.parentNode:null;if(n.levelDom=[],"all"===t){var a=o?Array.prototype.slice.call(o.children):[];a.forEach(function(e){"SCRIPT"!==e.nodeName&&"STYLE"!==e.nodeName&&"LINK"!==e.nodeName&&e!==i&&n.levelDom.push(e)})}else t&&u(t).forEach(function(e){document.querySelectorAll(e).forEach(function(e){n.levelDom.push(e)})})}},n.getHorizontalBoolAndPlacementName=function(){var e=n.props.placement,t="left"===e||"right"===e,r="translate".concat(t?"X":"Y");return{isHorizontal:t,placementName:r}},n.state={_self:A(n)},n}return M(t,e),k(t,[{key:"componentDidMount",value:function(){var e=this;if(!y){var t=!1;try{window.addEventListener("test",null,Object.defineProperty({},"passive",{get:function(){return t=!0,null}}))}catch(e){}this.passive=!!t&&{passive:!1}}var n=this.props.open;this.drawerId="drawer_id_".concat(Number((Date.now()+Math.random()).toString().replace(".",Math.round(9*Math.random()).toString())).toString(16)),this.getLevelDom(this.props),n&&(R[this.drawerId]=n,this.openLevelTransition(),this.forceUpdate(function(){e.domFocus()}))}},{key:"componentDidUpdate",value:function(e){var t=this.props.open;t!==e.open&&(t&&this.domFocus(),R[this.drawerId]=!!t,this.openLevelTransition())}},{key:"componentWillUnmount",value:function(){var e=this.props,t=e.getOpenCount,n=e.open,r=e.switchScrollingEffect,i="function"===typeof t&&t();delete R[this.drawerId],n&&(this.setLevelTransform(!1),document.body.style.touchAction=""),i||(document.body.style.overflow="",r(!0))}},{key:"render",value:function(){var e,t=this,n=this.props,r=n.className,o=n.children,a=n.style,l=n.width,c=n.height,u=(n.defaultOpen,n.open),h=n.prefixCls,d=n.placement,f=(n.level,n.levelMove,n.ease,n.duration,n.getContainer,n.handler),p=(n.onChange,n.afterVisibleChange,n.showMask),m=n.maskClosable,g=n.maskStyle,y=n.onClose,b=n.onHandleClick,w=n.keyboard,S=(n.getOpenCount,n.switchScrollingEffect,_(n,["className","children","style","width","height","defaultOpen","open","prefixCls","placement","level","levelMove","ease","duration","getContainer","handler","onChange","afterVisibleChange","showMask","maskClosable","maskStyle","onClose","onHandleClick","keyboard","getOpenCount","switchScrollingEffect"])),C=!!this.dom&&u,E=s()(h,(e={},x(e,"".concat(h,"-").concat(d),!0),x(e,"".concat(h,"-open"),C),x(e,r||"",!!r),x(e,"no-mask",!p),e)),k=this.getHorizontalBoolAndPlacementName(),O=k.placementName,T="left"===d||"top"===d?"-100%":"100%",A=C?"":"".concat(O,"(").concat(T,")"),M=f&&i["cloneElement"](f,{onClick:function(e){f.props.onClick&&f.props.onClick(),b&&b(e)},ref:function(e){t.handlerDom=e}});return i["createElement"]("div",Object.assign({},S,{tabIndex:-1,className:E,style:a,ref:function(e){t.dom=e},onKeyDown:C&&w?this.onKeyDown:void 0,onTransitionEnd:this.onWrapperTransitionEnd}),p&&i["createElement"]("div",{className:"".concat(h,"-mask"),onClick:m?y:void 0,style:g,ref:function(e){t.maskDom=e}}),i["createElement"]("div",{className:"".concat(h,"-content-wrapper"),style:{transform:A,msTransform:A,width:v(l)?"".concat(l,"px"):l,height:v(c)?"".concat(c,"px"):c},ref:function(e){t.contentWrapper=e}},i["createElement"]("div",{className:"".concat(h,"-content"),ref:function(e){t.contentDom=e},onTouchStart:C&&p?this.removeStartHandler:void 0,onTouchMove:C&&p?this.removeMoveHandler:void 0},o),M))}}],[{key:"getDerivedStateFromProps",value:function(e,t){var n=t.prevProps,r=t._self,i={prevProps:e};if(void 0!==n){var o=e.placement,a=e.level;o!==n.placement&&(r.contentDom=null),a!==n.level&&r.getLevelDom(e)}return i}}]),t}(i["Component"]);L.defaultProps={switchScrollingEffect:function(){}};var D=Object(o["polyfill"])(L);function j(e){return j="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},j(e)}function N(e,t){if(null==e)return{};var n,r,i=I(e,t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(r=0;r=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(i[n]=e[n])}return i}function I(e,t){if(null==e)return{};var n,r,i={},o=Object.keys(e);for(r=0;r=0||(i[n]=e[n]);return i}function $(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function F(e,t){for(var n=0;nl)r.f(e,n=a[l++],t[n]);return e}},g0MP:function(e,t,n){"use strict";var r=n("GB+t"),i=n.n(r),o=n("QLaP"),a=n.n(o),s=n("/Qhy"),l=n("brdU"),c=function(e){return"/"===e.charAt(0)?e:"/"+e},u=function(e){return"/"===e.charAt(0)?e.substr(1):e},h=function(e,t){return new RegExp("^"+t+"(\\/|\\?|#|$)","i").test(e)},d=function(e,t){return h(e,t)?e.substr(t.length):e},f=function(e){return"/"===e.charAt(e.length-1)?e.slice(0,-1):e},p=function(e){var t=e||"/",n="",r="",i=t.indexOf("#");-1!==i&&(r=t.substr(i),t=t.substr(0,i));var o=t.indexOf("?");return-1!==o&&(n=t.substr(o),t=t.substr(0,o)),{pathname:t,search:"?"===n?"":n,hash:"#"===r?"":r}},m=function(e){var t=e.pathname,n=e.search,r=e.hash,i=t||"/";return n&&"?"!==n&&(i+="?"===n.charAt(0)?n:"?"+n),r&&"#"!==r&&(i+="#"===r.charAt(0)?r:"#"+r),i},g=n("ck9s"),v=n.n(g),y=Object.assign||function(e){for(var t=1;t0&&void 0!==arguments[0]?arguments[0]:{};a()(S,"Browser history needs a DOM");var t=window.history,n=E(),r=!k(),o=e.forceRefresh,s=void 0!==o&&o,l=e.getUserConfirmation,u=void 0===l?C:l,p=e.keyLength,g=void 0===p?6:p,v=e.basename?f(c(e.basename)):"",y=function(e){var t=e||{},n=t.key,r=t.state,o=window.location,a=o.pathname,s=o.search,l=o.hash,c=a+s+l;return i()(!v||h(c,v),'You are attempting to use a basename on a page whose URL path does not begin with the basename. Expected path "'+c+'" to begin with "'+v+'".'),v&&(c=d(c,v)),b(c,r,n)},w=function(){return Math.random().toString(36).substr(2,g)},x=_(),O=function(e){M(Z,e),Z.length=t.length,x.notifyListeners(Z.location,Z.action)},D=function(e){T(e)||I(y(e.state))},j=function(){I(y(L()))},N=!1,I=function(e){if(N)N=!1,O();else{var t="POP";x.confirmTransitionTo(e,t,u,function(n){n?O({action:t,location:e}):$(e)})}},$=function(e){var t=Z.location,n=V.indexOf(t.key);-1===n&&(n=0);var r=V.indexOf(e.key);-1===r&&(r=0);var i=n-r;i&&(N=!0,z(i))},F=y(L()),V=[F.key],B=function(e){return v+m(e)},W=function(e,r){i()(!("object"===("undefined"===typeof e?"undefined":A(e))&&void 0!==e.state&&void 0!==r),"You should avoid providing a 2nd state argument to push when the 1st argument is a location-like object that already has state; it is ignored");var o="PUSH",a=b(e,r,w(),Z.location);x.confirmTransitionTo(a,o,u,function(e){if(e){var r=B(a),l=a.key,c=a.state;if(n)if(t.pushState({key:l,state:c},null,r),s)window.location.href=r;else{var u=V.indexOf(Z.location.key),h=V.slice(0,-1===u?0:u+1);h.push(a.key),V=h,O({action:o,location:a})}else i()(void 0===c,"Browser history cannot push state in browsers that do not support HTML5 history"),window.location.href=r}})},H=function(e,r){i()(!("object"===("undefined"===typeof e?"undefined":A(e))&&void 0!==e.state&&void 0!==r),"You should avoid providing a 2nd state argument to replace when the 1st argument is a location-like object that already has state; it is ignored");var o="REPLACE",a=b(e,r,w(),Z.location);x.confirmTransitionTo(a,o,u,function(e){if(e){var r=B(a),l=a.key,c=a.state;if(n)if(t.replaceState({key:l,state:c},null,r),s)window.location.replace(r);else{var u=V.indexOf(Z.location.key);-1!==u&&(V[u]=a.key),O({action:o,location:a})}else i()(void 0===c,"Browser history cannot replace state in browsers that do not support HTML5 history"),window.location.replace(r)}})},z=function(e){t.go(e)},U=function(){return z(-1)},q=function(){return z(1)},K=0,G=function(e){K+=e,1===K?(window.addEventListener(P,D),r&&window.addEventListener(R,j)):0===K&&(window.removeEventListener(P,D),r&&window.removeEventListener(R,j))},Y=!1,X=function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0],t=x.setPrompt(e);return Y||(G(1),Y=!0),function(){return Y&&(Y=!1,G(-1)),t()}},Q=function(e){var t=x.appendListener(e);return G(1),function(){G(-1),t()}},Z={length:t.length,action:"POP",location:F,createHref:B,push:W,replace:H,go:z,goBack:U,goForward:q,block:X,listen:Q};return Z},j=D,N=Object.assign||function(e){for(var t=1;t=0?t:0)+"#"+e)},W=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};a()(S,"Hash history needs a DOM");var t=window.history,n=O(),r=e.getUserConfirmation,o=void 0===r?C:r,s=e.hashType,l=void 0===s?"slash":s,u=e.basename?f(c(e.basename)):"",p=$[l],g=p.encodePath,v=p.decodePath,y=function(){var e=v(F());return i()(!u||h(e,u),'You are attempting to use a basename on a page whose URL path does not begin with the basename. Expected path "'+e+'" to begin with "'+u+'".'),u&&(e=d(e,u)),b(e)},x=_(),E=function(e){N(J,e),J.length=t.length,x.notifyListeners(J.location,J.action)},k=!1,T=null,A=function(){var e=F(),t=g(e);if(e!==t)B(t);else{var n=y(),r=J.location;if(!k&&w(r,n))return;if(T===m(n))return;T=null,M(n)}},M=function(e){if(k)k=!1,E();else{var t="POP";x.confirmTransitionTo(e,t,o,function(n){n?E({action:t,location:e}):P(e)})}},P=function(e){var t=J.location,n=j.lastIndexOf(m(t));-1===n&&(n=0);var r=j.lastIndexOf(m(e));-1===r&&(r=0);var i=n-r;i&&(k=!0,U(i))},R=F(),L=g(R);R!==L&&B(L);var D=y(),j=[m(D)],W=function(e){return"#"+g(u+m(e))},H=function(e,t){i()(void 0===t,"Hash history cannot push state; it is ignored");var n="PUSH",r=b(e,void 0,void 0,J.location);x.confirmTransitionTo(r,n,o,function(e){if(e){var t=m(r),o=g(u+t),a=F()!==o;if(a){T=t,V(o);var s=j.lastIndexOf(m(J.location)),l=j.slice(0,-1===s?0:s+1);l.push(t),j=l,E({action:n,location:r})}else i()(!1,"Hash history cannot PUSH the same path; a new entry will not be added to the history stack"),E()}})},z=function(e,t){i()(void 0===t,"Hash history cannot replace state; it is ignored");var n="REPLACE",r=b(e,void 0,void 0,J.location);x.confirmTransitionTo(r,n,o,function(e){if(e){var t=m(r),i=g(u+t),o=F()!==i;o&&(T=t,B(i));var a=j.indexOf(m(J.location));-1!==a&&(j[a]=t),E({action:n,location:r})}})},U=function(e){i()(n,"Hash history go(n) causes a full page reload in this browser"),t.go(e)},q=function(){return U(-1)},K=function(){return U(1)},G=0,Y=function(e){G+=e,1===G?window.addEventListener(I,A):0===G&&window.removeEventListener(I,A)},X=!1,Q=function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0],t=x.setPrompt(e);return X||(Y(1),X=!0),function(){return X&&(X=!1,Y(-1)),t()}},Z=function(e){var t=x.appendListener(e);return Y(1),function(){Y(-1),t()}},J={length:t.length,action:"POP",location:D,createHref:W,push:H,replace:z,go:U,goBack:q,goForward:K,block:Q,listen:Z};return J},H=W,z="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},U=Object.assign||function(e){for(var t=1;t0&&void 0!==arguments[0]?arguments[0]:{},t=e.getUserConfirmation,n=e.initialEntries,r=void 0===n?["/"]:n,o=e.initialIndex,a=void 0===o?0:o,s=e.keyLength,l=void 0===s?6:s,c=_(),u=function(e){U(k,e),k.length=k.entries.length,c.notifyListeners(k.location,k.action)},h=function(){return Math.random().toString(36).substr(2,l)},d=q(a,0,r.length-1),f=r.map(function(e){return b(e,void 0,"string"===typeof e?h():e.key||h())}),p=m,g=function(e,n){i()(!("object"===("undefined"===typeof e?"undefined":z(e))&&void 0!==e.state&&void 0!==n),"You should avoid providing a 2nd state argument to push when the 1st argument is a location-like object that already has state; it is ignored");var r="PUSH",o=b(e,n,h(),k.location);c.confirmTransitionTo(o,r,t,function(e){if(e){var t=k.index,n=t+1,i=k.entries.slice(0);i.length>n?i.splice(n,i.length-n,o):i.push(o),u({action:r,location:o,index:n,entries:i})}})},v=function(e,n){i()(!("object"===("undefined"===typeof e?"undefined":z(e))&&void 0!==e.state&&void 0!==n),"You should avoid providing a 2nd state argument to replace when the 1st argument is a location-like object that already has state; it is ignored");var r="REPLACE",o=b(e,n,h(),k.location);c.confirmTransitionTo(o,r,t,function(e){e&&(k.entries[k.index]=o,u({action:r,location:o}))})},y=function(e){var n=q(k.index+e,0,k.entries.length-1),r="POP",i=k.entries[n];c.confirmTransitionTo(i,r,t,function(e){e?u({action:r,location:i,index:n}):u()})},w=function(){return y(-1)},x=function(){return y(1)},S=function(e){var t=k.index+e;return t>=0&&t0&&void 0!==arguments[0]&&arguments[0];return c.setPrompt(e)},E=function(e){return c.appendListener(e)},k={length:f.length,action:"POP",location:f[d],index:d,entries:f,createHref:p,push:g,replace:v,go:y,goBack:w,goForward:x,canGo:S,block:C,listen:E};return k},G=K;n.d(t,"a",function(){return j}),n.d(t,"b",function(){return H}),n.d(t,"d",function(){return G}),n.d(t,"c",function(){return b}),n.d(t,"f",function(){return w}),n.d(t,"e",function(){return m})},gL7N:function(e,t,n){var r=n("VyuQ")("wks"),i=n("kCK5"),o=n("c0Oy").Symbol,a="function"==typeof o,s=e.exports=function(e){return r[e]||(r[e]=a&&o[e]||(a?o:i)("Symbol."+e))};s.store=r},gRqi:function(e,t,n){"use strict";var r=n("c0Oy"),i=n("V5/1"),o=n("8Z/V"),a=n("gL7N")("species");e.exports=function(e){var t=r[e];o&&t&&!t[a]&&i.f(t,a,{configurable:!0,get:function(){return this}})}},h7Gi:function(e,t,n){"use strict";n("q97H");var r=n("rKIl"),i=n("VPOE"),o=n("wUWy"),a=n("ZDr/"),s=n("gL7N"),l=n("330p"),c=s("species"),u=!o(function(){var e=/./;return e.exec=function(){var e=[];return e.groups={a:"7"},e},"7"!=="".replace(e,"$
")}),h=function(){var e=/(?:)/,t=e.exec;e.exec=function(){return t.apply(this,arguments)};var n="ab".split(e);return 2===n.length&&"a"===n[0]&&"b"===n[1]}();e.exports=function(e,t,n){var d=s(e),f=!o(function(){var t={};return t[d]=function(){return 7},7!=""[e](t)}),p=f?!o(function(){var t=!1,n=/a/;return n.exec=function(){return t=!0,null},"split"===e&&(n.constructor={},n.constructor[c]=function(){return n}),n[d](""),!t}):void 0;if(!f||!p||"replace"===e&&!u||"split"===e&&!h){var m=/./[d],g=n(a,d,""[e],function(e,t,n,r,i){return t.exec===l?f&&!i?{done:!0,value:m.call(t,n,r)}:{done:!0,value:e.call(n,t,r)}:{done:!1}}),v=g[0],y=g[1];r(String.prototype,e,v),i(RegExp.prototype,d,2==t?function(e,t){return y.call(e,this,t)}:function(e){return y.call(e,this)})}}},h7HQ:function(e,t,n){"use strict";var r=n("mrSG"),i=n("y+Vt"),o=n("T6xi"),a=function(){function e(){this.points=null,this.smooth=0,this.smoothConstraint=null}return e}(),s=function(e){function t(t){return e.call(this,t)||this}return Object(r["a"])(t,e),t.prototype.getDefaultShape=function(){return new a},t.prototype.buildPath=function(e,t){o["a"](e,t,!0)},t}(i["b"]);s.prototype.type="polygon",t["a"]=s},hDam:function(e,t){e.exports=function(){}},hIUm:function(e,t,n){"use strict";var r=n("oF12"),i=n("7vYJ"),o=n("VeyY"),a=n("ETUh"),s=n("OsVd"),l=n("bsDr"),c=n("330p"),u=n("wUWy"),h=Math.min,d=[].push,f="split",p="length",m="lastIndex",g=4294967295,v=!u(function(){RegExp(g,"y")});n("h7Gi")("split",2,function(e,t,n,u){var y;return y="c"=="abbc"[f](/(b)*/)[1]||4!="test"[f](/(?:)/,-1)[p]||2!="ab"[f](/(?:ab)*/)[p]||4!="."[f](/(.?)(.?)/)[p]||"."[f](/()()/)[p]>1||""[f](/.?/)[p]?function(e,t){var i=String(this);if(void 0===e&&0===t)return[];if(!r(e))return n.call(i,e,t);var o,a,s,l=[],u=(e.ignoreCase?"i":"")+(e.multiline?"m":"")+(e.unicode?"u":"")+(e.sticky?"y":""),h=0,f=void 0===t?g:t>>>0,v=new RegExp(e.source,u+"g");while(o=c.call(v,i)){if(a=v[m],a>h&&(l.push(i.slice(h,o.index)),o[p]>1&&o.index=f))break;v[m]===o.index&&v[m]++}return h===i[p]?!s&&v.test("")||l.push(""):l.push(i.slice(h)),l[p]>f?l.slice(0,f):l}:"0"[f](void 0,0)[p]?function(e,t){return void 0===e&&0===t?[]:n.call(this,e,t)}:n,[function(n,r){var i=e(this),o=void 0==n?void 0:n[t];return void 0!==o?o.call(n,i,r):y.call(String(i),n,r)},function(e,t){var r=u(y,e,this,t,y!==n);if(r.done)return r.value;var c=i(e),d=String(this),f=o(c,RegExp),p=c.unicode,m=(c.ignoreCase?"i":"")+(c.multiline?"m":"")+(c.unicode?"u":"")+(v?"y":"g"),b=new f(v?c:"^(?:"+c.source+")",m),w=void 0===t?g:t>>>0;if(0===w)return[];if(0===d.length)return null===l(b,d)?[d]:[];var x=0,_=0,S=[];while(_{this.setState({select:d()({},this.defaultValue),selectIndex:0})})):u["a"].error("\u503c\u4e0d\u80fd\u4e3a\u7a7a")}onChange(e,t,n,r){var i=this.state.filter;i[n][e]=t,"key"===e&&(i[n]["condition"]=this.props.keys[r].condition[0]),this.setState({filter:i}),"undefined"!==typeof r&&this.setState({keyIndex:r})}onOk(){var e=!0;e&&(this.props.onOk(this.state.filter),this.setState({visible:!1}))}hide(){var e=this.state.select;e["value"]="",this.setState({visible:!1,select:e})}onDelete(e){var t=this.state.filter;t.splice(e,1),this.setState({filter:t})}reset(){this.setState({filter:[]},()=>{this.onOk()})}render(){return p.a.createElement(p.a.Fragment,null,p.a.cloneElement(this.props.children,{onClick:()=>this.show()}),p.a.createElement(r["a"],{onOk:()=>this.onOk(),title:"\u8fc7\u6ee4\u5668",visible:this.state.visible,onClose:()=>this.hide(),className:"v2board-filter-drawer",footer:p.a.createElement(p.a.Fragment,null)},this.state.filter.length>0&&this.state.filter.map((e,t)=>{var n=this.props.keys.find(e=>e.key===this.state.filter[t].key);return p.a.createElement(p.a.Fragment,null,p.a.createElement(l["a"],{type:"horizontal"},"\u6761\u4ef6".concat(t+1)," ",p.a.createElement(c["a"],{type:"delete",style:{color:"#ff4d4f"},onClick:()=>this.onDelete(t)})),p.a.createElement("div",{className:"form-group"},p.a.createElement("label",null,"\u5b57\u6bb5\u540d"),p.a.createElement("div",null,p.a.createElement(s["a"],{value:this.state.filter[t].key,style:{width:"100%"}},this.props.keys.map((e,n)=>{return p.a.createElement(s["a"].Option,{key:n,value:e.key,onClick:()=>this.onChange("key",this.props.keys[n].key,t,n)},e.title)})))),p.a.createElement("div",{className:"form-group"},p.a.createElement("label",null,"\u6761\u4ef6"),p.a.createElement("div",null,p.a.createElement(s["a"],{value:this.state.filter[t].condition,style:{width:"100%"},onChange:e=>this.onChange("condition",e,t)},this.props.keys[this.state.keyIndex].condition.map(e=>{return p.a.createElement(s["a"].Option,{key:e,value:e},e)})))),p.a.createElement("div",{className:"form-group"},p.a.createElement("label",null,"\u6b32\u68c0\u7d22\u5185\u5bb9"),p.a.createElement("div",null,"select"===n.type&&p.a.createElement(s["a"],{defaultValue:this.state.filter[t].value||void 0,style:{width:"100%"},placeholder:"\u8bf7\u9009\u62e9\u503c",onChange:e=>this.onChange("value",e,t)},n.options.map((e,t)=>{return p.a.createElement(s["a"].Option,{value:e.value},e.key)})),"date"===n.type&&p.a.createElement(a["a"],{style:{width:"100%"},onChange:e=>this.onChange("value",e&&e.format("X"),t),showTime:{defaultValue:g()("00:00:00","HH:mm:ss")}}),void 0===n.type&&p.a.createElement(o["a"],{style:{width:"100%"},defaultValue:this.state.filter[t].value||void 0,placeholder:"\u503c",onChange:e=>this.onChange("value",e.target.value,t)}))))}),p.a.createElement(i["a"],{style:{width:"100%"},type:"primary",onClick:()=>this.add()},p.a.createElement(c["a"],{type:"plus"})," \u6dfb\u52a0\u6761\u4ef6"),p.a.createElement("div",{className:"v2board-drawer-action"},p.a.createElement(i["a"],{disabled:!this.state.filter.length,type:"danger",onClick:()=>this.reset(),style:{float:"left"}},"\u91cd\u7f6e"),p.a.createElement(i["a"],{style:{marginRight:8},onClick:()=>this.hide()},"\u53d6\u6d88"),p.a.createElement(i["a"],{disabled:!this.state.filter.length,onClick:()=>this.onOk(),type:"primary"},"\u68c0\u7d22"))))}}},hYLj:function(e,t,n){"use strict";var r=n("Fofx"),i=n("QBsz"),o=r["c"],a=5e-5;function s(e){return e>a||e<-a}var l=[],c=[],u=r["b"](),h=Math.abs,d=function(){function e(){}return e.prototype.getLocalTransform=function(t){return e.getLocalTransform(this,t)},e.prototype.setPosition=function(e){this.x=e[0],this.y=e[1]},e.prototype.setScale=function(e){this.scaleX=e[0],this.scaleY=e[1]},e.prototype.setSkew=function(e){this.skewX=e[0],this.skewY=e[1]},e.prototype.setOrigin=function(e){this.originX=e[0],this.originY=e[1]},e.prototype.needLocalTransform=function(){return s(this.rotation)||s(this.x)||s(this.y)||s(this.scaleX-1)||s(this.scaleY-1)},e.prototype.updateTransform=function(){var e=this.parent&&this.parent.transform,t=this.needLocalTransform(),n=this.transform;t||e?(n=n||r["b"](),t?this.getLocalTransform(n):o(n),e&&(t?r["e"](n,e,n):r["a"](n,e)),this.transform=n,this._resolveGlobalScaleRatio(n)):n&&o(n)},e.prototype._resolveGlobalScaleRatio=function(e){var t=this.globalScaleRatio;if(null!=t&&1!==t){this.getGlobalScale(l);var n=l[0]<0?-1:1,i=l[1]<0?-1:1,o=((l[0]-n)*t+n)/l[0]||0,a=((l[1]-i)*t+i)/l[1]||0;e[0]*=o,e[1]*=o,e[2]*=a,e[3]*=a}this.invTransform=this.invTransform||r["b"](),r["d"](this.invTransform,e)},e.prototype.getComputedTransform=function(){var e=this,t=[];while(e)t.push(e),e=e.parent;while(e=t.pop())e.updateTransform();return this.transform},e.prototype.setLocalTransform=function(e){if(e){var t=e[0]*e[0]+e[1]*e[1],n=e[2]*e[2]+e[3]*e[3],r=Math.atan2(e[1],e[0]),i=Math.PI/2+r-Math.atan2(e[3],e[2]);n=Math.sqrt(n)*Math.cos(i),t=Math.sqrt(t),this.skewX=i,this.skewY=0,this.rotation=-r,this.x=+e[4],this.y=+e[5],this.scaleX=t,this.scaleY=n,this.originX=0,this.originY=0}},e.prototype.decomposeTransform=function(){if(this.transform){var e=this.parent,t=this.transform;e&&e.transform&&(r["e"](c,e.invTransform,t),t=c);var n=this.originX,i=this.originY;(n||i)&&(u[4]=n,u[5]=i,r["e"](c,t,u),c[4]-=n,c[5]-=i,t=c),this.setLocalTransform(t)}},e.prototype.getGlobalScale=function(e){var t=this.transform;return e=e||[],t?(e[0]=Math.sqrt(t[0]*t[0]+t[1]*t[1]),e[1]=Math.sqrt(t[2]*t[2]+t[3]*t[3]),t[0]<0&&(e[0]=-e[0]),t[3]<0&&(e[1]=-e[1]),e):(e[0]=1,e[1]=1,e)},e.prototype.transformCoordToLocal=function(e,t){var n=[e,t],r=this.invTransform;return r&&i["b"](n,n,r),n},e.prototype.transformCoordToGlobal=function(e,t){var n=[e,t],r=this.transform;return r&&i["b"](n,n,r),n},e.prototype.getLineScale=function(){var e=this.transform;return e&&h(e[0]-1)>1e-10&&h(e[3]-1)>1e-10?Math.sqrt(h(e[0]*e[3]-e[2]*e[1])):1},e.prototype.copyTransform=function(e){for(var t=this,n=0;ne.user);case 3:return i=e.sent,e.next=6,n({type:"setState",payload:{fetchLoading:!0}});case 6:return e.next=8,Object(l["a"])("/admin/user/fetch",s()({filter:i.filter},i.pagination,i.sort));case 8:return a=e.sent,e.next=11,n({type:"setState",payload:{fetchLoading:!1}});case 11:if(200===a.code){e.next=13;break}return e.abrupt("return");case 13:return a.data.forEach(e=>{e.password="",e.transfer_enable=(e.transfer_enable/1073741824).toFixed(2),e.u=(e.u/1073741824).toFixed(2),e.d=(e.d/1073741824).toFixed(2),e.commission_balance=(e.commission_balance/100).toFixed(2),e.balance=(e.balance/100).toFixed(2)}),e.next=16,n({type:"setState",payload:{users:a.data,pagination:s()({},i.pagination,{total:a.total})}});case 16:case"end":return e.stop()}},e)})()},filter(e,t){return o.a.mark(function n(){var r,i,a,s,l;return o.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.filter,i=t.put,a=t.select,n.next=4,a(e=>e.user);case 4:return s=n.sent,l=s.pagination,l["current"]=1,n.next=9,i({type:"setState",payload:{filter:r}});case 9:return n.next=11,i({type:"fetch"});case 11:case"end":return n.stop()}},n)})()},changeTable(e,t){return o.a.mark(function n(){var r,i,a,l,c;return o.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.pagination,i=e.sort,a=t.select,l=t.put,n.next=4,a(e=>e.user);case 4:return c=n.sent,n.next=7,l({type:"setState",payload:{pagination:s()({},c.pagination,r),sort:i}});case 7:return n.next=9,l({type:"fetch"});case 9:case"end":return n.stop()}},n)})()},update(e,t){return o.a.mark(function n(){var r,i,a,s;return o.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.params,i=e.callback,a=t.put,n.next=4,a({type:"setState",payload:{updateLoading:!0}});case 4:return r.transfer_enable=1073741824*r.transfer_enable,r.u=Math.round(1073741824*r.u),r.d=Math.round(1073741824*r.d),r.balance=Math.round(100*r.balance),r.commission_balance=Math.round(100*r.commission_balance),r.invite_user&&delete r.invite_user,n.next=12,Object(l["b"])("/admin/user/update",r);case 12:return s=n.sent,n.next=15,a({type:"setState",payload:{updateLoading:!1}});case 15:if(200===s.code){n.next=17;break}return n.abrupt("return");case 17:return n.next=19,a({type:"fetch"});case 19:"function"===typeof i&&i();case 20:case"end":return n.stop()}},n)})()},addFilter(e,t){return o.a.mark(function n(){var r,i,a,s,l,c,u,h,d;return o.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.key,i=e.condition,a=e.value,s=e.clear,l=t.put,c=t.select,n.next=4,c(e=>e.user);case 4:return u=n.sent,h=u.filter,d=u.pagination,s&&(h=[]),h.push({key:r,condition:i,value:a}),d["current"]=1,n.next=12,l({type:"setState",payload:{filter:h,pagination:d}});case 12:return n.next=14,l({type:"fetch"});case 14:case"end":return n.stop()}},n)})()},generate(e,t){return o.a.mark(function n(){var r,i,a,s,c,h,d;return o.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.params,i=e.callback,a=t.put,n.next=4,a({type:"setState",payload:{generateLoading:!0}});case 4:return n.next=6,Object(l["b"])("/admin/user/generate",r);case 6:return s=n.sent,n.next=9,a({type:"setState",payload:{generateLoading:!1}});case 9:if(200===s.code){n.next=11;break}return n.abrupt("return");case 11:return r.generate_count&&(c=new Blob([s.buffer],{type:"text/plain,charset=UTF-8"}),h=window.URL.createObjectURL(c),d=document.createElement("a"),d.href=h,d.style.display="none",d.download="USER ".concat(u()().format("YYYY-MM-DD HH:mm:ss"),".csv"),d.click(),window.URL.revokeObjectURL(h)),n.next=14,a({type:"fetch"});case 14:"function"===typeof i&&i();case 15:case"end":return n.stop()}},n)})()},dumpCSV(e,t){return o.a.mark(function e(){var n,i,a,s,c,h,d;return o.a.wrap(function(e){while(1)switch(e.prev=e.next){case 0:return n=t.select,e.next=3,n(e=>e.user);case 3:return i=e.sent,a=i.filter,r["a"].loading("\u5bfc\u51fa\u4e2d"),e.next=8,Object(l["b"])("/admin/user/dumpCSV",{filter:a});case 8:if(s=e.sent,r["a"].destroy(),200===s.code){e.next=12;break}return e.abrupt("return");case 12:c=new Blob([s.buffer],{type:"text/plain,charset=UTF-8"}),h=window.URL.createObjectURL(c),d=document.createElement("a"),d.href=h,d.style.display="none",d.download=u()().format("YYYY-MM-DD HH:mm:ss")+".csv",d.click(),window.URL.revokeObjectURL(h);case 20:case"end":return e.stop()}},e)})()},sendMail(e,t){return o.a.mark(function n(){var i,a,c,u,h,d,f;return o.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return i=e.params,a=e.callback,c=t.select,u=t.put,n.next=4,c(e=>e.user);case 4:return h=n.sent,d=h.filter,n.next=8,u({type:"setState",payload:{sendMailLoading:!0}});case 8:return n.next=10,Object(l["b"])("/admin/user/sendMail",s()({filter:d},i));case 10:return f=n.sent,n.next=13,u({type:"setState",payload:{sendMailLoading:!1}});case 13:if(200===f.code){n.next=15;break}return n.abrupt("return");case 15:r["a"].success("\u5df2\u52a0\u5165\u961f\u5217\u6267\u884c"),"function"===typeof a&&a();case 17:case"end":return n.stop()}},n)})()},ban(e,t){return o.a.mark(function e(){var n,r,i,a,s;return o.a.wrap(function(e){while(1)switch(e.prev=e.next){case 0:return n=t.select,r=t.put,e.next=3,n(e=>e.user);case 3:return i=e.sent,a=i.filter,e.next=7,Object(l["b"])("/admin/user/ban",{filter:a});case 7:if(s=e.sent,200===s.code){e.next=10;break}return e.abrupt("return");case 10:return e.next=12,r({type:"fetch"});case 12:case"end":return e.stop()}},e)})()},resetSecret(e,t){return o.a.mark(function n(){var i,a,s;return o.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return i=e.id,a=t.put,n.next=4,Object(l["b"])("/admin/user/resetSecret",{id:i});case 4:if(s=n.sent,200===s.code){n.next=7;break}return n.abrupt("return");case 7:return r["a"].success("\u91cd\u7f6e\u6210\u529f"),n.next=10,a({type:"fetch"});case 10:case"end":return n.stop()}},n)})()}}}},hsuR:function(e,t,n){"use strict";n.d(t,"a",function(){return l}),n.d(t,"k",function(){return c}),n.d(t,"i",function(){return u}),n.d(t,"h",function(){return h}),n.d(t,"j",function(){return d}),n.d(t,"g",function(){return f}),n.d(t,"d",function(){return p}),n.d(t,"e",function(){return m}),n.d(t,"b",function(){return g}),n.d(t,"c",function(){return b}),n.d(t,"f",function(){return w});var r=n("YEIV"),i=n.n(r),o=n("q1tI"),a=n.n(o);function s(e){var t=[];return a.a.Children.forEach(e,function(e){e&&t.push(e)}),t}function l(e,t){for(var n=s(e),r=0;r2&&void 0!==arguments[2]?arguments[2]:"ltr",r=d(t)?"translateY":"translateX";return d(t)||"rtl"!==n?r+"("+100*-e+"%) translateZ(0)":r+"("+100*e+"%) translateZ(0)"}function p(e,t){var n=d(t)?"marginTop":"marginLeft";return i()({},n,100*-e+"%")}function m(e,t){return+window.getComputedStyle(e).getPropertyValue(t).replace("px","")}function g(e){return Object.keys(e).reduce(function(t,n){return"aria-"!==n.substr(0,5)&&"data-"!==n.substr(0,5)&&"role"!==n||(t[n]=e[n]),t},{})}function v(e,t){return+e.getPropertyValue(t).replace("px","")}function y(e,t,n,r,i){var o=m(i,"padding-"+e);if(!r||!r.parentNode)return o;var a=r.parentNode.childNodes;return Array.prototype.some.call(a,function(i){var a=window.getComputedStyle(i);return i!==r?(o+=v(a,"margin-"+e),o+=i[t],o+=v(a,"margin-"+n),"content-box"===a.boxSizing&&(o+=v(a,"border-"+e+"-width")+v(a,"border-"+n+"-width")),!1):(o+=v(a,"margin-"+e),!0)}),o}function b(e,t){return y("left","offsetWidth","right",e,t)}function w(e,t){return y("top","offsetHeight","bottom",e,t)}},hyiK:function(e,t,n){"use strict";function r(e,t,n,r,i,o){if(o>t&&o>r||oi?s:0}n.d(t,"a",function(){return r})},i4x8:function(e,t,n){"use strict";n.r(t),n.d(t,"routes",function(){return u}),n.d(t,"default",function(){return d});var r=n("q1tI"),i=n.n(r),o=n("Crw4"),a=n.n(o),s=n("RFCh"),l=n("Hg0r"),c=l["c"].ConnectedRouter,u=[{path:"/config/payment",exact:!0,component:n("eIZb").default},{path:"/config/system",exact:!0,component:n("1dM+").default},{path:"/coupon",exact:!0,component:n("Q55k").default},{path:"/dashboard",exact:!0,component:n("sFYk").default},{path:"/",exact:!0,component:n("RXBc").default},{path:"/knowledge",exact:!0,component:n("jJ5y").default},{path:"/login",exact:!0,component:n("SGa5").default},{path:"/notice",exact:!0,component:n("JZE9").default},{path:"/order",exact:!0,component:n("pi3A").default},{path:"/plan",exact:!0,component:n("ih8c").default},{path:"/server/group",exact:!0,component:n("11+Y").default},{path:"/server/manage",exact:!0,component:n("uzXD").default},{path:"/ticket/:ticket_id",exact:!0,component:n("FPmv").default},{path:"/ticket",exact:!0,component:n("RJTe").default},{path:"/user",exact:!0,component:n("d1ca").default}];window.g_routes=u;var h=n("PszG");h.applyForEach("patchRoutes",{initialValue:u});class d extends i.a.Component{unListen(){}constructor(e){function t(e,t){h.applyForEach("onRouteChange",{initialValue:{routes:u,location:e,action:t}})}super(e),this.unListen=s["default"].listen(t);var n=s["default"].listen.toString().indexOf("callback(history.location, history.action)")>-1;n||t(s["default"].location)}componentWillUnmount(){this.unListen()}render(){var e=this.props||{};return i.a.createElement(c,{history:s["default"]},a()(u,e))}}},iCc5:function(e,t,n){"use strict";t.__esModule=!0,t.default=function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}},ih8c:function(e,t,n){"use strict";n.r(t);var r=n("jehZ"),i=n.n(r),o=(n("+L6B"),n("2/Rp")),a=(n("+BJd"),n("mr32")),s=(n("5Dmo"),n("3S7+")),l=(n("BoS7"),n("Sdc0")),c=(n("qVdP"),n("jsC+")),u=(n("lUTK"),n("BvKs")),h=(n("/zsF"),n("PArb")),d=(n("Pwec"),n("CtXQ")),f=n("p0pE"),p=n.n(f),m=n("q1tI"),g=n.n(m),v=n("Bl7J"),y=n("/MKj"),b=n("tI4l"),w=n("qqou"),x=(n("bbsP"),n("/wGt")),_=(n("OaEy"),n("2fM7")),S=(n("14J3"),n("BMrR")),C=(n("jCWc"),n("kPKH")),E=(n("5NDa"),n("5rEg")),k=n("8zNj");class O extends g.a.Component{constructor(e){super(e),this.state={visible:!1,record:e.record||{show:0,name:null,transfer_enable:null,group_id:void 0,month_price:null,quarter_price:null,half_year_price:null,year_price:null,two_year_price:null,three_year_price:null,onetime_price:null,reset_price:null}},this.show=(()=>{this.setState({visible:!this.state.visible})})}componentDidMount(){this.props.dispatch({type:"serverGroup/fetch"})}priceOnChange(e,t){this.setState({record:p()({},this.state.record,{[e]:""!==t?t:null})})}save(){this.props.dispatch({type:"plan/save",params:p()({},this.state.record),callback:()=>{this.setState({visible:!1})}})}render(){var e,t=this.props.plan.saveLoading,n=this.props.serverGroup.groups;return g.a.createElement(g.a.Fragment,null,g.a.cloneElement(this.props.children,{onClick:()=>this.setState({visible:!0})}),g.a.createElement(x["a"],{id:"plan",maskClosable:!0,onClose:()=>this.setState({visible:!1}),title:"".concat(this.state.record.id?"\u7f16\u8f91\u8ba2\u9605":"\u65b0\u5efa\u8ba2\u9605"),visible:this.state.visible,width:"80%"},g.a.createElement("div",null,(null===(e=this.props.record)||void 0===e?void 0:e.id)?g.a.createElement("div",{className:"alert alert-info",role:"alert"},g.a.createElement("p",{className:"mb-0"},"Tips:\u5957\u9910\u5185\u5bb9\u53d8\u66f4\u5c06\u4f1a\u5b9e\u65f6\u66f4\u65b0\u5230\u5957\u9910\u4e0b\u7684\u6240\u6709\u7528\u6237\u3002")):"",g.a.createElement("div",{className:"form-group"},g.a.createElement("label",{for:"example-text-input-alt"},"\u5957\u9910\u540d\u79f0"),g.a.createElement(E["a"],{placeholder:"\u8bf7\u8f93\u5165\u5957\u9910\u540d\u79f0",value:this.state.record.name,onChange:e=>{this.setState({record:p()({},this.state.record,{name:e.target.value})})}})),g.a.createElement("div",{className:"form-group"},g.a.createElement("label",{for:"example-text-input-alt"},"\u5957\u9910\u63cf\u8ff0"),g.a.createElement(E["a"].TextArea,{rows:4,value:this.state.record.content,placeholder:"\u8bf7\u8f93\u5165\u5957\u9910\u63cf\u8ff0\uff0c\u652f\u6301HTML",onChange:e=>{this.setState({record:p()({},this.state.record,{content:e.target.value})})}})),g.a.createElement(h["a"],{orientation:"center"},"\u552e\u4ef7\u8bbe\u7f6e ",g.a.createElement(s["a"],{placement:"top",title:"\u5c06\u91d1\u989d\u7559\u7a7a\u5219\u4e0d\u4f1a\u8fdb\u884c\u51fa\u552e"},g.a.createElement(d["a"],{type:"info-circle"}))),g.a.createElement(S["a"],{gutter:10},g.a.createElement(C["a"],{md:4},g.a.createElement("div",{className:"form-group"},g.a.createElement("label",{for:"example-text-input-alt"},"\u6708\u4ed8"),g.a.createElement(E["a"],{value:null!==this.state.record.month_price?this.state.record.month_price:void 0,onChange:e=>this.priceOnChange("month_price",e.target.value)}))),g.a.createElement(C["a"],{md:4},g.a.createElement("div",{className:"form-group"},g.a.createElement("label",{for:"example-text-input-alt"},"\u5b63\u4ed8"),g.a.createElement(E["a"],{value:null!==this.state.record.quarter_price?this.state.record.quarter_price:void 0,onChange:e=>this.priceOnChange("quarter_price",e.target.value)}))),g.a.createElement(C["a"],{md:4},g.a.createElement("div",{className:"form-group"},g.a.createElement("label",{for:"example-text-input-alt"},"\u534a\u5e74"),g.a.createElement(E["a"],{value:null!==this.state.record.half_year_price?this.state.record.half_year_price:void 0,onChange:e=>this.priceOnChange("half_year_price",e.target.value)}))),g.a.createElement(C["a"],{md:4},g.a.createElement("div",{className:"form-group"},g.a.createElement("label",{for:"example-text-input-alt"},"\u5e74\u4ed8"),g.a.createElement(E["a"],{value:null!==this.state.record.year_price?this.state.record.year_price:void 0,onChange:e=>this.priceOnChange("year_price",e.target.value)}))),g.a.createElement(C["a"],{md:4},g.a.createElement("div",{className:"form-group"},g.a.createElement("label",{for:"example-text-input-alt"},"\u4e24\u5e74\u4ed8"),g.a.createElement(E["a"],{value:null!==this.state.record.two_year_price?this.state.record.two_year_price:void 0,onChange:e=>this.priceOnChange("two_year_price",e.target.value)}))),g.a.createElement(C["a"],{md:4},g.a.createElement("div",{className:"form-group"},g.a.createElement("label",{for:"example-text-input-alt"},"\u4e09\u5e74\u4ed8"),g.a.createElement(E["a"],{value:null!==this.state.record.three_year_price?this.state.record.three_year_price:void 0,onChange:e=>this.priceOnChange("three_year_price",e.target.value)})))),g.a.createElement(S["a"],{gutter:10},g.a.createElement(C["a"],{md:12},g.a.createElement("div",{className:"form-group"},g.a.createElement("label",{for:"example-text-input-alt"},"\u4e00\u6b21\u6027"),g.a.createElement(E["a"],{addonAfter:"\xa5",value:null!==this.state.record.onetime_price?this.state.record.onetime_price:void 0,onChange:e=>this.priceOnChange("onetime_price",e.target.value)}))),g.a.createElement(C["a"],{md:12},g.a.createElement("div",{className:"form-group"},g.a.createElement("label",{for:"example-text-input-alt"},"\u91cd\u7f6e\u5305"),g.a.createElement(E["a"],{addonAfter:"\xa5",value:null!==this.state.record.reset_price?this.state.record.reset_price:void 0,onChange:e=>this.priceOnChange("reset_price",e.target.value)})))),g.a.createElement(h["a"],null),g.a.createElement("div",{className:"form-group"},g.a.createElement("label",{for:"example-text-input-alt"},"\u5957\u9910\u6d41\u91cf"),g.a.createElement(E["a"],{addonAfter:"GB",placeholder:"\u8bf7\u8f93\u5165\u5957\u9910\u6d41\u91cf",value:this.state.record.transfer_enable,onChange:e=>{this.setState({record:p()({},this.state.record,{transfer_enable:e.target.value})})}})),g.a.createElement("div",{className:"form-group"},g.a.createElement("label",{for:"example-text-input-alt"},"\u6743\u9650\u7ec4 ",g.a.createElement(k["a"],null,g.a.createElement("a",{href:"javascript:(0);"},"\u6dfb\u52a0\u6743\u9650\u7ec4"))),g.a.createElement(_["a"],{placeholder:"\u8bf7\u9009\u62e9\u6743\u9650\u7ec4",style:{width:"100%"},value:this.state.record.group_id,onChange:e=>{this.setState({record:p()({},this.state.record,{group_id:e})})}},n.map(e=>{return g.a.createElement(_["a"].Option,{key:e.id,value:e.id},e.name)}))),g.a.createElement("div",{className:"form-group"},g.a.createElement("label",{htmlFor:"example-text-input-alt"},"\u6d41\u91cf\u91cd\u7f6e\u65b9\u5f0f"),g.a.createElement(_["a"],{placeholder:"\u8bf7\u9009\u62e9\u6743\u9650\u7ec4",style:{width:"100%"},value:this.state.record.reset_traffic_method,onChange:e=>{this.setState({record:p()({},this.state.record,{reset_traffic_method:e})})}},g.a.createElement(_["a"].Option,{key:null,value:null},"\u8ddf\u968f\u7cfb\u7edf\u8bbe\u7f6e"),g.a.createElement(_["a"].Option,{key:0,value:0},"\u6bcf\u67081\u65e5\u91cd\u7f6e"),g.a.createElement(_["a"].Option,{key:1,value:1},"\u8ba2\u5355\u65e5\u91cd\u7f6e"),g.a.createElement(_["a"].Option,{key:2,value:2},"\u4e0d\u91cd\u7f6e")))),g.a.createElement("div",{className:"v2board-drawer-action"},g.a.createElement(o["a"],{style:{marginRight:8},onClick:()=>this.setState({visible:!1})},"\u53d6\u6d88"),g.a.createElement(o["a"],{loading:t,onClick:()=>t||this.save(),type:"primary"},"\u63d0\u4ea4"))))}}var T=Object(y["c"])(e=>{var t=e.plan,n=e.serverGroup;return{plan:t,serverGroup:n}})(O),A=n("Oa6W");n("H9LU"),n("I1u9"),n("ykC2");class M extends g.a.Component{constructor(e){super(e),this.state={visible:!1,submit:{show:0}}}componentDidMount(){this.props.dispatch({type:"plan/fetch"}),this.props.dispatch({type:"serverGroup/fetch"})}balanceFormat(e){var t=arguments.length>1&&void 0!==arguments[1]&&arguments[1];return Object.keys(b["a"].periodText).map(n=>{0!==e[n]&&(e[n]?e[n]=t?Math.round(100*e[n]):e[n]/100:e[n]=null)}),e}drop(e){this.props.dispatch({type:"plan/drop",id:e})}edit(e){var t=this.props.plan.plans;this.setState({submit:p()({},t[e]),visible:!0})}update(e,t,n){this.props.dispatch({type:"plan/update",id:e,key:t,value:n})}render(){var e,t=this.props.plan,n=t.plans,r=t.fetchLoading,f=this.props.serverGroup.groups,p=[{title:"\u64cd\u4f5c",dataIndex:"action",key:"action",render:(e,t)=>{return g.a.createElement(g.a.Fragment,null,g.a.createElement(d["a"],{type:"drag",style:{cursor:"move"}}),g.a.createElement(h["a"],{type:"vertical"}),g.a.createElement(c["a"],{trigger:"click",overlay:g.a.createElement(u["a"],null,g.a.createElement(u["a"].Item,{onContextMenu:e=>{e.stopPropagation()}},g.a.createElement(T,{record:t,key:null===t||void 0===t?void 0:t.id},g.a.createElement("a",null,g.a.createElement(d["a"],{type:"edit"})," \u7f16\u8f91"))),g.a.createElement(u["a"].Item,{style:{color:"#ff4d4f"},onClick:()=>this.drop(t.id)},g.a.createElement(d["a"],{type:"delete"})," \u5220\u9664"))},g.a.createElement("a",{href:"javascript:void(0);"},"\u64cd\u4f5c ",g.a.createElement(d["a"],{type:"caret-down"}))))}},{title:"\u9500\u552e\u72b6\u6001",dataIndex:"show",key:"show",render:(e,t)=>{return g.a.createElement(l["a"],{size:"small",checked:parseInt(e),onClick:()=>this.update(t.id,"show",parseInt(e)?0:1)})}},{title:g.a.createElement("span",null,"\u7eed\u8d39 ",g.a.createElement(s["a"],{placement:"top",title:"\u5728\u8ba2\u9605\u505c\u6b62\u9500\u552e\u65f6\uff0c\u5df2\u8d2d\u7528\u6237\u662f\u5426\u53ef\u4ee5\u7eed\u8d39"},g.a.createElement(d["a"],{type:"question-circle"}))),dataIndex:"renew",key:"renew",render:(e,t)=>{return g.a.createElement(l["a"],{size:"small",checked:parseInt(e),onClick:()=>this.update(t.id,"renew",parseInt(e)?0:1)})}},{title:"\u540d\u79f0",dataIndex:"name",key:"name"},{title:"\u7edf\u8ba1",dataIndex:"count",key:"count",render:e=>{return g.a.createElement(g.a.Fragment,null,g.a.createElement(d["a"],{type:"user",style:{cursor:"move"}})," ",e)}},{title:"\u6d41\u91cf",dataIndex:"transfer_enable",key:"transfer_enable",render:e=>{return g.a.createElement(g.a.Fragment,null,e," GB")}},{title:"\u6708\u4ed8",dataIndex:"month_price",key:"month_price",render:e=>{return null!==e?e.toFixed(2):"-"}},{title:"\u5b63\u4ed8",dataIndex:"quarter_price",key:"quarter_price",render:e=>{return null!==e?e.toFixed(2):"-"}},{title:"\u534a\u5e74\u4ed8",dataIndex:"half_year_price",key:"half_year_price",render:e=>{return null!==e?e.toFixed(2):"-"}},{title:"\u5e74\u4ed8",dataIndex:"year_price",key:"year_price",render:e=>{return null!==e?e.toFixed(2):"-"}},{title:"\u4e24\u5e74\u4ed8",dataIndex:"two_year_price",key:"two_year_price",render:e=>{return null!==e?e.toFixed(2):"-"}},{title:"\u4e09\u5e74\u4ed8",dataIndex:"three_year_price",key:"three_year_price",render:e=>{return null!==e?e.toFixed(2):"-"}},{title:"\u4e00\u6b21\u6027",dataIndex:"onetime_price",key:"onetime_price",render:e=>{return null!==e?e.toFixed(2):"-"}},{title:"\u91cd\u7f6e\u5305",dataIndex:"reset_price",key:"reset_price",render:e=>{return null!==e?e.toFixed(2):"-"}},{title:"\u6743\u9650\u7ec4",dataIndex:"group_id",key:"group_id",render:(e,t)=>{var n=[];return f.map(t=>{t.id===parseInt(e)&&n.push(g.a.createElement(a["a"],null,t.name))}),n}}],m=this;return g.a.createElement(v["a"],i()({},this.props,{title:"\u8ba2\u9605\u7ba1\u7406"}),g.a.createElement("div",{className:"d-flex justify-content-between align-items-center"}),g.a.createElement("div",{className:"block block-rounded ".concat(r?"block-mode-loading":"")},g.a.createElement("div",{className:"bg-white"},g.a.createElement("div",{style:{padding:15}},g.a.createElement(T,null,g.a.createElement(o["a"],null,g.a.createElement(d["a"],{type:"plus"})," \u6dfb\u52a0\u8ba2\u9605"))),g.a.createElement(w["a"],{onDragEnd:(e,t)=>{m.props.dispatch({type:"plan/sort",fromIndex:e,toIndex:t})},nodeSelector:"tr",handleSelector:"i"},g.a.createElement(A["a"],{onContextMenu:e=>{this.record=e,this.forceUpdate()},tableLayout:"auto",dataSource:n,columns:p,pagination:!1,scroll:{x:1300}},g.a.createElement("ul",{className:"ant-dropdown-menu ant-dropdown-menu-light ant-dropdown-menu-root ant-dropdown-menu-vertical"},g.a.createElement("li",{className:"ant-dropdown-menu-item"},g.a.createElement(T,{record:this.record,key:null===(e=this.record)||void 0===e?void 0:e.id},g.a.createElement("a",null,g.a.createElement(d["a"],{type:"edit"})," \u7f16\u8f91"))),g.a.createElement("li",{className:"ant-dropdown-menu-item",onClick:()=>{var e;return this.drop(null===(e=this.record)||void 0===e?void 0:e.id)}},g.a.createElement("a",{style:{color:"#ff4d4f"}},g.a.createElement(d["a"],{type:"delete"})," \u5220\u9664"))))))))}}t["default"]=Object(y["c"])(e=>{var t=e.plan,n=e.serverGroup;return{plan:t,serverGroup:n}})(M)},il4q:function(e,t,n){var r=n("ZDr/");e.exports=function(e){return Object(r(e))}},"j/1Z":function(e,t){e.exports=function(e){return e&&"object"===typeof e&&"function"===typeof e.copy&&"function"===typeof e.fill&&"function"===typeof e.readUInt8}},"j/9B":function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var r=n("6YkS"),i=r.Prompt;t.default=i},j2DC:function(e,t,n){"use strict";var r=n("oVml"),i=n("rr1i"),o=n("RfKB"),a={};n("NegM")(a,n("UWiX")("iterator"),function(){return this}),e.exports=function(e,t,n){e.prototype=r(a,{next:i(1,n)}),o(e,t+" Iterator")}},jB5C:function(e,t,n){"use strict";var r=Object.assign||function(e){for(var t=1;tPromise.resolve().then(()=>k(n("ZM0C")))}),T=new C.a({html:!0,linkify:!0,typographer:!0});class A extends h.a.Component{constructor(e){super(e),this.state={visible:!1,selectedTab:!1}}componentDidMount(){}formChange(e,t){var n=this.props.knowledge.knowledge;n[e]=t,this.props.dispatch({type:"knowledge/setState",payload:{knowledge:n}})}show(){this.props.id&&this.props.dispatch({type:"knowledge/fetchById",id:this.props.id}),this.setState({visible:!0}),this.key=Math.random()}hide(){this.props.dispatch({type:"knowledge/setState",payload:{knowledge:{}}}),this.setState({visible:!1})}save(){this.props.dispatch({type:"knowledge/save",callback:()=>{w["a"].success("\u4fdd\u5b58\u6210\u529f")}})}render(){var e=this.state.visible,t=this.props.knowledge,n=t.knowledge,r=(t.categorys,t.fetchByIdLoading),i=t.saveLoading,o=this.props.id;return h.a.createElement(h.a.Fragment,null,h.a.cloneElement(this.props.children,{onClick:()=>this.show()}),h.a.createElement(v["a"],{width:"80%",visible:e,title:o?"\u7f16\u8f91\u77e5\u8bc6":"\u65b0\u589e\u77e5\u8bc6",id:"knowledge",onClose:()=>this.hide()},r?h.a.createElement(c["a"],{type:"loading"}):h.a.createElement("div",null,h.a.createElement("div",{className:"form-group"},h.a.createElement("label",{htmlFor:"example-text-input-alt"},"\u6807\u9898"),h.a.createElement(b["a"],{placeholder:"\u8bf7\u8f93\u5165\u77e5\u8bc6\u6807\u9898",value:n.title,onChange:e=>this.formChange("title",e.target.value)})),h.a.createElement("div",{className:"form-group"},h.a.createElement("label",{htmlFor:"example-text-input-alt"},"\u5206\u7c7b"),h.a.createElement(b["a"],{placeholder:"\u8bf7\u8f93\u5165\u5206\u7c7b\uff0c\u5206\u7c7b\u5c06\u4f1a\u81ea\u52a8\u5f52\u96c6",value:n.category,onChange:e=>this.formChange("category",e.target.value)})),h.a.createElement("div",{className:"form-group"},h.a.createElement("label",{htmlFor:"example-text-input-alt"},"\u8bed\u8a00"),h.a.createElement(y["a"],{placeholder:"\u8bf7\u9009\u62e9\u77e5\u8bc6\u8bed\u8a00",defaultValue:n.language||1,style:{width:"100%"},value:n.language,onChange:e=>this.formChange("language",e)},h.a.createElement(y["a"].Option,{value:"zh-CN"},"\u4e2d\u6587"),h.a.createElement(y["a"].Option,{value:"en-US"},"English"),h.a.createElement(y["a"].Option,{value:"ja-JP"},"\u65e5\u672c\u8a9e"),h.a.createElement(y["a"].Option,{value:"vi-VN"},"Ti\u1ebfng Vi\u1ec7t"))),h.a.createElement("div",{className:"form-group"},h.a.createElement("label",{htmlFor:"example-text-input-alt"},"\u5185\u5bb9"),h.a.createElement(O,{key:this.key,style:{height:"500px"},renderHTML:e=>T.render(e),value:n.body,onChange:e=>this.formChange("body",e.text),config:{view:{menu:!0,md:!0,fullScreen:!0,hideMenu:!0}}}))),h.a.createElement("div",{className:"v2board-drawer-action"},h.a.createElement(a["a"],{style:{marginRight:8},onClick:()=>this.hide()},"\u53d6\u6d88"),h.a.createElement(a["a"],{loading:i,onClick:()=>this.save(),type:"primary"},"\u63d0\u4ea4"))))}}var M=Object(m["c"])(e=>{var t=e.knowledge;return{knowledge:t}})(A);class P extends h.a.Component{constructor(e){super(e),this.state={visible:!1,submit:{steps:[]}}}componentDidMount(){this.props.dispatch({type:"knowledge/fetch"}),this.props.dispatch({type:"knowledge/getCategory"})}modalVisible(){this.setState({visible:!this.state.visible},()=>{this.state.visible||this.setState({submit:{steps:[]}})})}show(e){this.props.dispatch({type:"knowledge/show",id:e})}drop(e){this.props.dispatch({type:"knowledge/drop",id:e.id})}render(){var e=this.props.knowledge,t=e.knowledges,n=e.fetchLoading,r=(e.categorys,[{title:"\u64cd\u4f5c",dataIndex:"id",key:"id",render:(e,t,n)=>{return h.a.createElement(h.a.Fragment,null,h.a.createElement(c["a"],{type:"drag",style:{cursor:"move"}}),h.a.createElement(l["a"],{type:"vertical"}),h.a.createElement(M,{id:t.id},h.a.createElement("a",{href:"javascript:void(0);"},h.a.createElement(c["a"],{type:"edit"}))),h.a.createElement(l["a"],{type:"vertical"}),h.a.createElement("a",{href:"javascript:void(0);",onClick:()=>{this.drop(t)}},h.a.createElement(c["a"],{type:"delete"})))}},{title:"\u6587\u7ae0ID",dataIndex:"id",key:"id"},{title:"\u663e\u793a",dataIndex:"show",key:"show",render:(e,t)=>{return h.a.createElement(s["a"],{size:"small",onChange:()=>this.show(t.id),checked:e})}},{title:"\u6807\u9898",dataIndex:"title",key:"title"},{title:"\u5206\u7c7b",dataIndex:"category",key:"category"},{title:"\u66f4\u65b0\u65f6\u95f4",dataIndex:"updated_at",key:"updated_at",align:"right",render:e=>{return p()(1e3*e).format("YYYY/MM/DD HH:mm")}}]),u=this;return h.a.createElement(d["a"],i()({},this.props,{title:"\u77e5\u8bc6\u5e93\u7ba1\u7406"}),h.a.createElement("div",{className:"mb-0 block border-bottom ".concat(n?"block-mode-loading":"")},h.a.createElement("div",{className:"bg-white"},h.a.createElement("div",{style:{padding:15}},h.a.createElement(M,null,h.a.createElement(a["a"],null,h.a.createElement(c["a"],{type:"plus"}),"\u65b0\u589e"))),h.a.createElement(g["a"],{onDragEnd:(e,t)=>{u.props.dispatch({type:"knowledge/sort",fromIndex:e,toIndex:t})},nodeSelector:"tr",handleSelector:"i"},h.a.createElement(o["a"],{tableLayout:"auto",dataSource:t,pagination:!1,columns:r,scroll:{x:950}})))))}}t["default"]=Object(m["c"])(e=>{var t=e.knowledge;return{knowledge:t}})(P)},"jN/G":function(e,t,n){"use strict";var r=n("WGNW"),i=n("il4q"),o=n("wYm8"),a=n("V5/1");n("8Z/V")&&r(r.P+n("OJuA"),"Object",{__defineSetter__:function(e,t){a.f(i(this),e,{set:o(t),enumerable:!0,configurable:!0})}})},jTL6:function(e,t,n){"use strict";var r=n("mrSG"),i=n("y+Vt"),o=function(){function e(){this.cx=0,this.cy=0,this.r=0,this.startAngle=0,this.endAngle=2*Math.PI,this.clockwise=!0}return e}(),a=function(e){function t(t){return e.call(this,t)||this}return Object(r["a"])(t,e),t.prototype.getDefaultStyle=function(){return{stroke:"#000",fill:null}},t.prototype.getDefaultShape=function(){return new o},t.prototype.buildPath=function(e,t){var n=t.cx,r=t.cy,i=Math.max(t.r,0),o=t.startAngle,a=t.endAngle,s=t.clockwise,l=Math.cos(o),c=Math.sin(o);e.moveTo(l*i+n,c*i+r),e.arc(n,r,i,o,a,!s)},t}(i["b"]);a.prototype.type="arc",t["a"]=a},jce2:function(e,t,n){"use strict";function r(e){"@babel/helpers - typeof";return r="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},r(e)}function i(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function o(e){for(var t=1;te.length)&&(t=e.length);for(var n=0,r=new Array(t);n1&&-1!==t.indexOf("Macintosh")&&-1!==t.indexOf("Safari")&&(n=!0),n}},jjMW:function(e,t,n){"use strict";var r=n("WGNW"),i=n("il4q"),o=n("8BMt"),a=n("BFt8"),s=n("15BC").f;n("8Z/V")&&r(r.P+n("OJuA"),"Object",{__lookupSetter__:function(e){var t,n=i(this),r=o(e,!0);do{if(t=s(n,r))return t.set}while(n=a(n))}})},jmDH:function(e,t,n){e.exports=!n("KUxP")(function(){return 7!=Object.defineProperty({},"a",{get:function(){return 7}}).a})},jo6Y:function(e,t,n){"use strict";t.__esModule=!0,t.default=function(e,t){var n={};for(var r in e)t.indexOf(r)>=0||Object.prototype.hasOwnProperty.call(e,r)&&(n[r]=e[r]);return n}},jpXb:function(e,t,n){var r=n("wZXL");e.exports=new r},jzd5:function(e,t,n){"use strict";var r={};function i(e){var t,n,i=r[e];if(i)return i;for(i=r[e]=[],t=0;t<128;t++)n=String.fromCharCode(t),i.push(n);for(t=0;t=55296&&l<=57343?"\ufffd\ufffd\ufffd":String.fromCharCode(l),t+=6):240===(248&i)&&t+91114111?c+="\ufffd\ufffd\ufffd\ufffd":(l-=65536,c+=String.fromCharCode(55296+(l>>10),56320+(1023&l))),t+=9):c+="\ufffd";return c})}o.defaultChars=";/?:@&=+$,#",o.componentChars="",e.exports=o},k3GJ:function(e,t,n){"use strict";var r=n("QbLZ"),i=n.n(r),o=n("YEIV"),a=n.n(o),s=n("jo6Y"),l=n.n(s),c=n("iCc5"),u=n.n(c),h=n("V7oC"),d=n.n(h),f=n("FYw3"),p=n.n(f),m=n("mRg0"),g=n.n(m),v=n("q1tI"),y=n.n(v),b=n("17x9"),w=n.n(b),x=n("TSYQ"),_=n.n(x),S=n("xEkU"),C=n.n(S),E=n("VCL8"),k={LEFT:37,UP:38,RIGHT:39,DOWN:40},O=n("hsuR"),T=n("4IlW"),A=n("foW8"),M=n.n(A),P=M()({}),R=P.Provider,L=P.Consumer,D={width:0,height:0,overflow:"hidden",position:"absolute"},j=function(e){function t(){var e,n,r,i;u()(this,t);for(var o=arguments.length,a=Array(o),s=0;s=0}I.propTypes={className:w.a.string,active:w.a.bool,style:w.a.any,destroyInactiveTabPane:w.a.bool,forceRender:w.a.bool,placeholder:w.a.node,rootPrefixCls:w.a.string,children:w.a.node,id:w.a.string},I.defaultProps={placeholder:null};var W=function(e){function t(e){u()(this,t);var n=p()(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));H.call(n);var r=void 0;return r="activeKey"in e?e.activeKey:"defaultActiveKey"in e?e.defaultActiveKey:V(e),n.state={activeKey:r},n}return g()(t,e),d()(t,[{key:"componentWillUnmount",value:function(){this.destroy=!0,C.a.cancel(this.sentinelId)}},{key:"updateSentinelContext",value:function(){var e=this;this.destroy||(C.a.cancel(this.sentinelId),this.sentinelId=C()(function(){e.destroy||e.forceUpdate()}))}},{key:"render",value:function(){var e,t=this.props,n=t.prefixCls,r=t.navWrapper,o=t.tabBarPosition,s=t.className,c=t.renderTabContent,u=t.renderTabBar,h=t.destroyInactiveTabPane,d=t.direction,f=l()(t,["prefixCls","navWrapper","tabBarPosition","className","renderTabContent","renderTabBar","destroyInactiveTabPane","direction"]),p=_()((e={},a()(e,n,1),a()(e,n+"-"+o,1),a()(e,s,!!s),a()(e,n+"-rtl","rtl"===d),e));this.tabBar=u();var m=y.a.cloneElement(this.tabBar,{prefixCls:n,navWrapper:r,key:"tabBar",onKeyDown:this.onNavKeyDown,tabBarPosition:o,onTabClick:this.onTabClick,panels:t.children,activeKey:this.state.activeKey,direction:this.props.direction}),g=y.a.cloneElement(c(),{prefixCls:n,tabBarPosition:o,activeKey:this.state.activeKey,destroyInactiveTabPane:h,children:t.children,onChange:this.setActiveKey,key:"tabContent",direction:this.props.direction}),v=y.a.createElement(N,{key:"sentinelStart",setRef:this.setSentinelStart,nextElement:this.panelSentinelStart}),b=y.a.createElement(N,{key:"sentinelEnd",setRef:this.setSentinelEnd,prevElement:this.panelSentinelEnd}),w=[];return"bottom"===o?w.push(v,g,b,m):w.push(m,v,g,b),y.a.createElement(R,{value:{sentinelStart:this.sentinelStart,sentinelEnd:this.sentinelEnd,setPanelSentinelStart:this.setPanelSentinelStart,setPanelSentinelEnd:this.setPanelSentinelEnd}},y.a.createElement("div",i()({className:p,style:t.style},Object(O["b"])(f),{onScroll:this.onScroll}),w))}}],[{key:"getDerivedStateFromProps",value:function(e,t){var n={};return"activeKey"in e?n.activeKey=e.activeKey:B(e,t.activeKey)||(n.activeKey=V(e)),Object.keys(n).length>0?n:null}}]),t}(y.a.Component),H=function(){var e=this;this.onTabClick=function(t,n){e.tabBar.props.onTabClick&&e.tabBar.props.onTabClick(t,n),e.setActiveKey(t)},this.onNavKeyDown=function(t){var n=t.keyCode;if(n===k.RIGHT||n===k.DOWN){t.preventDefault();var r=e.getNextActiveKey(!0);e.onTabClick(r)}else if(n===k.LEFT||n===k.UP){t.preventDefault();var i=e.getNextActiveKey(!1);e.onTabClick(i)}},this.onScroll=function(e){var t=e.target,n=e.currentTarget;t===n&&t.scrollLeft>0&&(t.scrollLeft=0)},this.setSentinelStart=function(t){e.sentinelStart=t},this.setSentinelEnd=function(t){e.sentinelEnd=t},this.setPanelSentinelStart=function(t){t!==e.panelSentinelStart&&e.updateSentinelContext(),e.panelSentinelStart=t},this.setPanelSentinelEnd=function(t){t!==e.panelSentinelEnd&&e.updateSentinelContext(),e.panelSentinelEnd=t},this.setActiveKey=function(t){e.state.activeKey!==t&&("activeKey"in e.props||e.setState({activeKey:t}),e.props.onChange(t))},this.getNextActiveKey=function(t){var n=e.state.activeKey,r=[];y.a.Children.forEach(e.props.children,function(e){e&&!e.props.disabled&&(t?r.push(e):r.unshift(e))});var i=r.length,o=i&&r[0].key;return r.forEach(function(e,t){e.key===n&&(o=t===i-1?r[0].key:r[t+1].key)}),o}};W.propTypes={destroyInactiveTabPane:w.a.bool,renderTabBar:w.a.func.isRequired,renderTabContent:w.a.func.isRequired,navWrapper:w.a.func,onChange:w.a.func,children:w.a.node,prefixCls:w.a.string,className:w.a.string,tabBarPosition:w.a.string,style:w.a.object,activeKey:w.a.string,defaultActiveKey:w.a.string,direction:w.a.string},W.defaultProps={prefixCls:"rc-tabs",destroyInactiveTabPane:!1,onChange:F,navWrapper:function(e){return e},tabBarPosition:"top",children:null,style:{},direction:"ltr"},W.TabPane=$,Object(E["polyfill"])(W);var z=W;n("bTih");n.d(t,"a",function(){return $});t["b"]=z},kAMH:function(e,t,n){var r=n("a0xu");e.exports=Array.isArray||function(e){return"Array"==r(e)}},kCCV:function(e,t){function n(e){this.options=e,!e.deferSetup&&this.setup()}n.prototype={constructor:n,setup:function(){this.options.setup&&this.options.setup(),this.initialised=!0},on:function(){!this.initialised&&this.setup(),this.options.match&&this.options.match()},off:function(){this.options.unmatch&&this.options.unmatch()},destroy:function(){this.options.destroy?this.options.destroy():this.off()},equals:function(e){return this.options===e||this.options.match===e}},e.exports=n},kCK5:function(e,t){var n=0,r=Math.random();e.exports=function(e){return"Symbol(".concat(void 0===e?"":e,")_",(++n+r).toString(36))}},kTiW:function(e,t,n){e.exports=n("NegM")},kWR5:function(e,t,n){"use strict";var r=n("WGNW"),i=n("bV5f"),o=n("c0Oy"),a=n("VeyY"),s=n("tGd3");r(r.P+r.R,"Promise",{finally:function(e){var t=a(this,i.Promise||o.Promise),n="function"==typeof e;return this.then(n?function(n){return s(t,e()).then(function(){return n})}:e,n?function(n){return s(t,e()).then(function(){throw n})}:e)}})},kgWH:function(e,t,n){n("gRqi")("Array")},kwZ1:function(e,t,n){"use strict";var r=n("jmDH"),i=n("w6GO"),o=n("mqlF"),a=n("NV0k"),s=n("JB68"),l=n("M1xp"),c=Object.assign;e.exports=!c||n("KUxP")(function(){var e={},t={},n=Symbol(),r="abcdefghijklmnopqrst";return e[n]=7,r.split("").forEach(function(e){t[e]=e}),7!=c({},e)[n]||Object.keys(c({},t)).join("")!=r})?function(e,t){var n=s(e),c=arguments.length,u=1,h=o.f,d=a.f;while(c>u){var f,p=l(arguments[u++]),m=h?i(p).concat(h(p)):i(p),g=m.length,v=0;while(g>v)f=m[v++],r&&!d.call(p,f)||(n[f]=p[f])}return n}:c},l0kz:function(e,t,n){"use strict";var r=n("wUWy");e.exports=function(e,t){return!!e&&r(function(){t?e.call(null,function(){},1):e.call(null)})}},l4aY:function(e,t,n){"use strict";function r(e,t){var n=t;while(n){if(n===e)return!0;n=n.parentNode}return!1}n.d(t,"a",function(){return r})},lCc8:function(e,t,n){var r=n("Y7ZC");r(r.S,"Object",{create:n("oVml")})},lETv:function(e,t,n){"use strict";n.r(t);var r=n("d6i3"),i=n.n(r),o=n("p0pE"),a=n.n(o),s=n("t3Un"),l={notices:[],fetchLoading:!1};t["default"]={name:"notice",state:a()({},l),reducers:{setState(e,t){var n=t.payload;return a()({},e,n)}},effects:{fetch(e,t){return i.a.mark(function e(){var n,r;return i.a.wrap(function(e){while(1)switch(e.prev=e.next){case 0:return n=t.put,e.next=3,n({type:"setState",payload:{fetchLoading:!0}});case 3:return e.next=5,Object(s["a"])("/admin/notice/fetch");case 5:return r=e.sent,e.next=8,n({type:"setState",payload:{fetchLoading:!1}});case 8:if(200===r.code){e.next=10;break}return e.abrupt("return");case 10:return e.next=12,n({type:"setState",payload:{notices:r.data}});case 12:case"end":return e.stop()}},e)})()},save(e,t){return i.a.mark(function n(){var r,o,a,l;return i.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.params,o=e.callback,a=t.put,n.next=4,a({type:"setState",payload:{saveLoading:!0}});case 4:return n.next=6,Object(s["b"])("/admin/notice/save",r);case 6:return l=n.sent,n.next=9,a({type:"setState",payload:{saveLoading:!1}});case 9:if(200===l.code){n.next=11;break}return n.abrupt("return");case 11:return n.next=13,a({type:"fetch"});case 13:"function"===typeof o&&o();case 14:case"end":return n.stop()}},n)})()},drop(e,t){return i.a.mark(function n(){var r,o,a;return i.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.id,o=t.put,n.next=4,Object(s["b"])("/admin/notice/drop",{id:r});case 4:if(a=n.sent,200===a.code){n.next=7;break}return n.abrupt("return");case 7:return n.next=9,o({type:"fetch"});case 9:case"end":return n.stop()}},n)})()}}}},lFUy:function(e,t,n){"use strict";var r=n("8Z/V"),i=n("Igga"),o=n("e6w7"),a=n("LsAW"),s=n("il4q"),l=n("9WFV"),c=Object.assign;e.exports=!c||n("wUWy")(function(){var e={},t={},n=Symbol(),r="abcdefghijklmnopqrst";return e[n]=7,r.split("").forEach(function(e){t[e]=e}),7!=c({},e)[n]||Object.keys(c({},t)).join("")!=r})?function(e,t){var n=s(e),c=arguments.length,u=1,h=o.f,d=a.f;while(c>u){var f,p=l(arguments[u++]),m=h?i(p).concat(h(p)):i(p),g=m.length,v=0;while(g>v)f=m[v++],r&&!d.call(p,f)||(n[f]=p[f])}return n}:c},lWxU:function(e,t,n){"use strict";n.r(t);var r=n("d6i3"),i=n.n(r),o=n("p0pE"),a=n.n(o),s=n("t3Un"),l={switchLoading:{},saveLoading:!1};t["default"]={name:"serverTrojan",state:a()({},l),reducers:{setState(e,t){var n=t.payload;return a()({},e,n)}},effects:{update(e,t){return i.a.mark(function n(){var r,o,a,l,c;return i.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.id,o=e.key,a=e.value,l=t.put,n.next=4,Object(s["b"])("/admin/server/trojan/update",{id:r,[o]:a});case 4:if(c=n.sent,200===c.code){n.next=7;break}return n.abrupt("return");case 7:return n.next=9,l({type:"serverManage/getNodes"});case 9:case"end":return n.stop()}},n)})()},drop(e,t){return i.a.mark(function n(){var r,o,a;return i.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.id,o=t.put,n.next=4,Object(s["b"])("/admin/server/trojan/drop",{id:r});case 4:if(a=n.sent,200===a.code){n.next=7;break}return n.abrupt("return");case 7:return n.next=9,o({type:"serverManage/getNodes"});case 9:case"end":return n.stop()}},n)})()},copy(e,t){return i.a.mark(function n(){var r,o,a;return i.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.id,o=t.put,n.next=4,Object(s["b"])("/admin/server/trojan/copy",{id:r});case 4:if(a=n.sent,200===a.code){n.next=7;break}return n.abrupt("return");case 7:return n.next=9,o({type:"serverManage/getNodes"});case 9:case"end":return n.stop()}},n)})()},save(e,t){return i.a.mark(function n(){var r,o,a,l;return i.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.params,o=e.callback,a=t.put,n.next=4,a({type:"setState",payload:{saveLoading:!0}});case 4:return n.next=6,Object(s["b"])("/admin/server/trojan/save",r);case 6:return l=n.sent,n.next=9,a({type:"setState",payload:{saveLoading:!1}});case 9:if(200===l.code){n.next=11;break}return n.abrupt("return");case 11:return n.next=13,a({type:"serverManage/getNodes"});case 13:"function"===typeof o&&o();case 14:case"end":return n.stop()}},n)})()}}}},lZXM:function(e,t,n){"use strict";var r=n("7vYJ"),i=n("OsVd"),o=n("ETUh"),a=n("bsDr");n("h7Gi")("match",1,function(e,t,n,s){return[function(n){var r=e(this),i=void 0==n?void 0:n[t];return void 0!==i?i.call(n,r):new RegExp(n)[t](String(r))},function(e){var t=s(n,e,this);if(t.done)return t.value;var l=r(e),c=String(this);if(!l.global)return a(l,c);var u=l.unicode;l.lastIndex=0;var h,d=[],f=0;while(null!==(h=a(l,c))){var p=String(h[0]);d[f]=p,""===p&&(l.lastIndex=o(c,i(l.lastIndex),u)),f++}return 0===f?null:d}]})},luuN:function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=Object.assign||function(e){for(var t=1;t{this.state.visible||this.setState({submit:{email:this.props.email||void 0,plan_id:void 0,period:void 0,total_amount:void 0}})})}setSubmit(e,t){this.setState({submit:l()({},this.state.submit,{[e]:t})})}ok(){this.props.dispatch({type:"order/assign",params:l()({},this.state.submit),callback:()=>{this.show()}})}render(){var e=this.state,t=e.visible,n=e.submit,s=this.props.plan.plans,l=this.props.order.assignLoading;return u.a.createElement(u.a.Fragment,null,u.a.cloneElement(this.props.children,{onClick:()=>this.show()}),u.a.createElement(r["a"],{title:"\u8ba2\u5355\u5206\u914d",visible:t,onCancel:()=>this.show(),onOk:()=>this.ok(),okText:l?u.a.createElement(a["a"],{type:"loading"}):"\u786e\u5b9a",cancelText:"\u53d6\u6d88"},u.a.createElement("div",{className:"form-group"},u.a.createElement("label",{for:"example-text-input-alt"},"\u7528\u6237\u90ae\u7bb1"),u.a.createElement(o["a"],{placeholder:"\u8bf7\u8f93\u5165\u7528\u6237\u90ae\u7bb1",value:n.email,onChange:e=>this.setSubmit("email",e.target.value)})),u.a.createElement("div",{className:"form-group"},u.a.createElement("label",{for:"example-text-input-alt"},"\u8bf7\u9009\u62e9\u8ba2\u9605"),u.a.createElement("div",null,u.a.createElement(i["a"],{value:n.plan_id,style:{width:"100%"},placeholder:"\u8bf7\u9009\u62e9\u8ba2\u9605",onChange:e=>this.setSubmit("plan_id",e)},s.map(e=>{return u.a.createElement(i["a"].Option,{value:e.id,key:Math.random()},e.name)})))),u.a.createElement("div",{className:"form-group"},u.a.createElement("label",{for:"example-text-input-alt"},"\u8bf7\u9009\u62e9\u5468\u671f"),u.a.createElement("div",null,u.a.createElement(i["a"],{value:n.period,style:{width:"100%"},placeholder:"\u8bf7\u9009\u62e9\u5468\u671f",onChange:e=>this.setSubmit("period",e)},Object.keys(d["a"].periodText).map(e=>{return u.a.createElement(i["a"].Option,{value:e,key:Math.random()},d["a"].periodText[e])})))),u.a.createElement("div",{className:"form-group"},u.a.createElement("label",{for:"example-text-input-alt"},"\u652f\u4ed8\u91d1\u989d"),u.a.createElement(o["a"],{placeholder:"\u8bf7\u8f93\u5165\u9700\u8981\u652f\u4ed8\u7684\u91d1\u989d",addonAfter:"\xa5",value:n.total_amount,onChange:e=>this.setSubmit("total_amount",e.target.value)}))))}}t["a"]=Object(h["c"])(e=>{var t=e.plan,n=e.order;return{plan:t,order:n}})(f)},mFDi:function(e,t,n){"use strict";var r=n("Fofx"),i=n("3Oj7"),o=Math.min,a=Math.max,s=new i["a"],l=new i["a"],c=new i["a"],u=new i["a"],h=new i["a"],d=new i["a"],f=function(){function e(e,t,n,r){n<0&&(e+=n,n=-n),r<0&&(t+=r,r=-r),this.x=e,this.y=t,this.width=n,this.height=r}return e.prototype.union=function(e){var t=o(e.x,this.x),n=o(e.y,this.y);isFinite(this.x)&&isFinite(this.width)?this.width=a(e.x+e.width,this.x+this.width)-t:this.width=e.width,isFinite(this.y)&&isFinite(this.height)?this.height=a(e.y+e.height,this.y+this.height)-n:this.height=e.height,this.x=t,this.y=n},e.prototype.applyTransform=function(t){e.applyTransform(this,this,t)},e.prototype.calculateTransform=function(e){var t=this,n=e.width/t.width,i=e.height/t.height,o=r["b"]();return r["h"](o,o,[-t.x,-t.y]),r["g"](o,o,[n,i]),r["h"](o,o,[e.x,e.y]),o},e.prototype.intersect=function(t,n){if(!t)return!1;t instanceof e||(t=e.create(t));var r=this,o=r.x,a=r.x+r.width,s=r.y,l=r.y+r.height,c=t.x,u=t.x+t.width,f=t.y,p=t.y+t.height,m=!(av&&(v=_,yv&&(v=S,w=n.x&&e<=n.x+n.width&&t>=n.y&&t<=n.y+n.height},e.prototype.clone=function(){return new e(this.x,this.y,this.width,this.height)},e.prototype.copy=function(t){e.copy(this,t)},e.prototype.plain=function(){return{x:this.x,y:this.y,width:this.width,height:this.height}},e.prototype.isFinite=function(){return isFinite(this.x)&&isFinite(this.y)&&isFinite(this.width)&&isFinite(this.height)},e.prototype.isZero=function(){return 0===this.width||0===this.height},e.create=function(t){return new e(t.x,t.y,t.width,t.height)},e.copy=function(e,t){e.x=t.x,e.y=t.y,e.width=t.width,e.height=t.height},e.applyTransform=function(t,n,r){if(r){if(r[1]<1e-5&&r[1]>-1e-5&&r[2]<1e-5&&r[2]>-1e-5){var i=r[0],h=r[3],d=r[4],f=r[5];return t.x=n.x*i+d,t.y=n.y*h+f,t.width=n.width*i,t.height=n.height*h,t.width<0&&(t.x+=t.width,t.width=-t.width),void(t.height<0&&(t.y+=t.height,t.height=-t.height))}s.x=c.x=n.x,s.y=u.y=n.y,l.x=u.x=n.x+n.width,l.y=c.y=n.y+n.height,s.transform(r),u.transform(r),l.transform(r),c.transform(r),t.x=o(s.x,l.x,c.x,u.x),t.y=o(s.y,l.y,c.y,u.y);var p=a(s.x,l.x,c.x,u.x),m=a(s.y,l.y,c.y,u.y);t.width=p-t.x,t.height=m-t.y}else t!==n&&e.copy(t,n)},e}();t["a"]=f},mHNb:function(e,t,n){"use strict";n.r(t);var r=n("d6i3"),i=n.n(r),o=n("p0pE"),a=n.n(o),s=n("t3Un"),l={knowledges:[],fetchLoading:!1,categorys:[],knowledge:{},fetchByIdLoading:!1,saveLoading:!1};t["default"]={name:"knowledge",state:a()({},l),reducers:{setState(e,t){var n=t.payload;return a()({},e,n)}},effects:{fetch(e,t){return i.a.mark(function e(){var n,r;return i.a.wrap(function(e){while(1)switch(e.prev=e.next){case 0:return n=t.put,e.next=3,n({type:"setState",payload:{fetchLoading:!0}});case 3:return e.next=5,Object(s["a"])("/admin/knowledge/fetch");case 5:return r=e.sent,e.next=8,n({type:"setState",payload:{fetchLoading:!1}});case 8:if(200===r.code){e.next=10;break}return e.abrupt("return");case 10:return e.next=12,n({type:"setState",payload:{knowledges:r.data}});case 12:case"end":return e.stop()}},e)})()},fetchById(e,t){return i.a.mark(function n(){var r,o,a;return i.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.id,o=t.put,n.next=4,o({type:"setState",payload:{fetchByIdLoading:!0}});case 4:return n.next=6,Object(s["a"])("/admin/knowledge/fetch",{id:r});case 6:return a=n.sent,n.next=9,o({type:"setState",payload:{fetchByIdLoading:!1}});case 9:if(200===a.code){n.next=11;break}return n.abrupt("return");case 11:return n.next=13,o({type:"setState",payload:{knowledge:a.data}});case 13:case"end":return n.stop()}},n)})()},save(e,t){return i.a.mark(function n(){var r,o,l,c,u,h;return i.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.callback,o=t.put,l=t.select,n.next=4,l(e=>e.knowledge);case 4:return c=n.sent,u=c.knowledge,n.next=8,o({type:"setState",payload:{saveLoading:!0}});case 8:return n.next=10,Object(s["b"])("/admin/knowledge/save",a()({},u));case 10:return h=n.sent,n.next=13,o({type:"setState",payload:{saveLoading:!1}});case 13:if(200===h.code){n.next=15;break}return n.abrupt("return");case 15:return n.next=17,o({type:"fetch"});case 17:"function"===typeof r&&r();case 18:case"end":return n.stop()}},n)})()},drop(e,t){return i.a.mark(function n(){var r,o,a;return i.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.id,o=t.put,n.next=4,Object(s["b"])("/admin/knowledge/drop",{id:r});case 4:if(a=n.sent,200===a.code){n.next=7;break}return n.abrupt("return");case 7:return n.next=9,o({type:"fetch"});case 9:case"end":return n.stop()}},n)})()},show(e,t){return i.a.mark(function n(){var r,o,a;return i.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.id,o=t.put,n.next=4,Object(s["b"])("/admin/knowledge/show",{id:r});case 4:if(a=n.sent,200===a.code){n.next=7;break}return n.abrupt("return");case 7:return n.next=9,o({type:"fetch"});case 9:case"end":return n.stop()}},n)})()},sort(e,t){return i.a.mark(function n(){var r,o,a,l,c,u,h;return i.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.fromIndex,o=e.toIndex,a=t.select,l=t.put,n.next=4,l({type:"setState",payload:{fetchLoading:!0}});case 4:return n.next=6,a(e=>e.knowledge);case 6:return c=n.sent,u=c.knowledges,re.id)});case 13:if(h=n.sent,200===h.code){n.next=16;break}return n.abrupt("return");case 16:return n.next=18,l({type:"fetch"});case 18:case"end":return n.stop()}},n)})()},getCategory(e,t){return i.a.mark(function e(){var n,r;return i.a.wrap(function(e){while(1)switch(e.prev=e.next){case 0:return n=t.put,e.next=3,Object(s["a"])("/admin/knowledge/getCategory");case 3:if(r=e.sent,200===r.code){e.next=6;break}return e.abrupt("return");case 6:return e.next=8,n({type:"setState",payload:{categorys:r.data}});case 8:case"end":return e.stop()}},e)})()}}}},mLcG:function(e,t,n){"use strict";var r;r="undefined"!==typeof window&&(window.requestAnimationFrame&&window.requestAnimationFrame.bind(window)||window.msRequestAnimationFrame&&window.msRequestAnimationFrame.bind(window)||window.mozRequestAnimationFrame||window.webkitRequestAnimationFrame)||function(e){return setTimeout(e,16)},t["a"]=r},mRg0:function(e,t,n){"use strict";t.__esModule=!0;var r=n("s3Ml"),i=c(r),o=n("AyUB"),a=c(o),s=n("EJiy"),l=c(s);function c(e){return e&&e.__esModule?e:{default:e}}t.default=function(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+("undefined"===typeof t?"undefined":(0,l.default)(t)));e.prototype=(0,a.default)(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(i.default?(0,i.default)(e,t):e.__proto__=t)}},mcDz:function(e,t,n){"use strict";t.__esModule=!0,t.locationsAreEqual=t.createLocation=void 0;var r=Object.assign||function(e){for(var t=1;t0&&i[i.length-1])&&(6===o[0]||2===o[0])){a=0;continue}if(3===o[0]&&(!i||o[1]>i[0]&&o[1]=e.length&&(e=void 0),{value:e&&e[r++],done:!e}}};throw new TypeError(t?"Object is not iterable.":"Symbol.iterator is not defined.")}function o(e,t){var n="function"===typeof Symbol&&e[Symbol.iterator];if(!n)return e;var r,i,o=n.call(e),a=[];try{while((void 0===t||t-- >0)&&!(r=o.next()).done)a.push(r.value)}catch(e){i={error:e}}finally{try{r&&!r.done&&(n=o["return"])&&n.call(o)}finally{if(i)throw i.error}}return a}function a(e,t,n){if(n||2===arguments.length)for(var r,i=0,o=t.length;i Promise))`.","See if using `DarkReader.setFetchMethod(window.fetch)`","before `DarkReader.enable()` works."].join(" ")))]})})},S=_;function C(e){S=e||_}function E(e){return n(this,void 0,void 0,function(){return r(this,function(t){switch(t.label){case 0:return[4,S(e)];case 1:return[2,t.sent()]}})})}window.chrome||(window.chrome={}),chrome.runtime||(chrome.runtime={});var k=new Set;function O(){for(var e=[],t=0;t=r){if(f-cte)return!0;for(var t=0,n=0;nte)return!0;return!1}function re(e){var t=new Set,n=new Set,r=new Set;e.forEach(function(e){j(e.addedNodes,function(e){e instanceof Element&&e.isConnected&&t.add(e)}),j(e.removedNodes,function(e){e instanceof Element&&(e.isConnected?(r.add(e),t.delete(e)):n.add(e))})});var i=[],o=[];return t.forEach(function(e){t.has(e.parentElement)&&i.push(e)}),n.forEach(function(e){n.has(e.parentElement)&&o.push(e)}),i.forEach(function(e){return t.delete(e)}),o.forEach(function(e){return n.delete(e)}),{additions:t,moves:r,deletions:n}}var ie,oe=new Map,ae=new WeakMap;function se(e,t){var n,r,i;if(oe.has(e))n=oe.get(e),r=ae.get(n);else{var o=!1,a=!1;n=new MutationObserver(function(t){if(ne(t))!o||q()?r.forEach(function(t){var n=t.onHugeMutations;return n(e)}):a||(i=function(){return r.forEach(function(t){var n=t.onHugeMutations;return n(e)})},G(i),a=!0),o=!0;else{var n=re(t);r.forEach(function(e){var t=e.onMinorMutations;return t(n)})}}),n.observe(e,{childList:!0,subtree:!0}),oe.set(e,n),r=new Set,ae.set(n,r)}return r.add(t),{disconnect:function(){r.delete(t),i&&Y(i),0===r.size&&(n.disconnect(),ae.delete(n),oe.delete(e))}}}var le=new Map;function ce(e){return ie||(ie=document.createElement("a")),ie.href=e,ie.href}function ue(e,t){void 0===t&&(t=null);var n=e+(t?";"+t:"");if(le.has(n))return le.get(n);if(t){var r=new URL(e,ce(t));return le.set(n,r),r}var i=new URL(ce(e));return le.set(e,i),i}function he(e,t){if(t.match(/^data\\?\:/))return t;if(/^\/\//.test(t))return""+location.protocol+t;var n=ue(e),r=ue(t,n.href);return r.href}function de(e){if(e.startsWith("data:"))return!0;var t=ue(e);return t.protocol===location.protocol&&(t.hostname===location.hostname&&(t.port===location.port&&t.pathname===location.pathname))}function fe(e,t,n){j(e,function(e){if(e.selectorText)t(e);else if(e.href)try{fe(e.styleSheet.cssRules,t,n)}catch(e){$("Found a non-loaded link."),n&&n()}else if(e.media){var r=Array.from(e.media),i=r.some(function(e){return e.startsWith("screen")||e.startsWith("all")||e.startsWith("(")}),o=r.some(function(e){return e.startsWith("print")||e.startsWith("speech")});!i&&o||fe(e.cssRules,t,n)}else e.conditionText?CSS.supports(e.conditionText)&&fe(e.cssRules,t,n):F("CSSRule type not supported",e)})}var pe=["background","border","border-color","border-bottom","border-left","border-right","border-top","outline","outline-color"],me=f?pe.map(function(e){var t=new RegExp(e+":\\s*(.*?)\\s*;");return[e,t]}):null;function ge(e,t){j(e,function(n){var r=e.getPropertyValue(n).trim();r&&t(n,r)});var n=e.cssText;n.includes("var(")&&(f?me.forEach(function(e){var r=o(e,2),i=r[0],a=r[1],s=n.match(a);if(s&&s[1]){var l=s[1].trim();t(i,l)}}):pe.forEach(function(n){var r=e.getPropertyValue(n);r&&r.includes("var(")&&t(n,r)}))}var ve=/url\((('.+?')|(".+?")|([^\)]*?))\)/g,ye=/@import\s*(url\()?(('.+?')|(".+?")|([^\)]*?))\)? ?(screen)?;?/g;function be(e){return e.replace(/^url\((.*)\)$/,"$1").trim().replace(/^"(.*)"$/,"$1").replace(/^'(.*)'$/,"$1")}function we(e){var t=ue(e);return""+t.origin+t.pathname.replace(/\?.*$/,"").replace(/(\/)([^\/]+)$/i,"$1")}function xe(e,t){return e.replace(ve,function(e){var n=be(e);try{return'url("'+he(t,n)+'")'}catch(t){return F("Not able to replace relative URL with Absolute URL, skipping"),e}})}var _e=/\/\*[\s\S]*?\*\//g;function Se(e){return e.replace(_e,"")}var Ce=/@font-face\s*{[^}]*}/g;function Ee(e){return e.replace(Ce,"")}function ke(e){var t=e.h,n=e.s,r=e.l,i=e.a,a=void 0===i?1:i;if(0===n){var s=o([r,r,r].map(function(e){return Math.round(255*e)}),3),l=s[0],c=s[1],u=s[2];return{r:l,g:u,b:c,a:a}}var h=(1-Math.abs(2*r-1))*n,d=h*(1-Math.abs(t/60%2-1)),f=r-h/2,p=o((t<60?[h,d,0]:t<120?[d,h,0]:t<180?[0,h,d]:t<240?[0,d,h]:t<300?[d,0,h]:[h,0,d]).map(function(e){return Math.round(255*(e+f))}),3),m=p[0],g=p[1],v=p[2];return{r:m,g:g,b:v,a:a}}function Oe(e){var t=e.r,n=e.g,r=e.b,i=e.a,o=void 0===i?1:i,a=t/255,s=n/255,l=r/255,c=Math.max(a,s,l),u=Math.min(a,s,l),h=c-u,d=(c+u)/2;if(0===h)return{h:0,s:0,l:d,a:o};var f=60*(c===a?(s-l)/h%6:c===s?(l-a)/h+2:(a-s)/h+4);f<0&&(f+=360);var p=h/(1-Math.abs(2*d-1));return{h:f,s:p,l:d,a:o}}function Te(e,t){void 0===t&&(t=0);var n=e.toFixed(t);if(0===t)return n;var r=n.indexOf(".");if(r>=0){var i=n.match(/0+$/);if(i)return i.index===r+1?n.substring(0,r):n.substring(0,i.index)}return n}function Ae(e){var t=e.r,n=e.g,r=e.b,i=e.a;return null!=i&&i<1?"rgba("+Te(t)+", "+Te(n)+", "+Te(r)+", "+Te(i,2)+")":"rgb("+Te(t)+", "+Te(n)+", "+Te(r)+")"}function Me(e){var t=e.r,n=e.g,r=e.b,i=e.a;return"#"+(null!=i&&i<1?[t,n,r,Math.round(255*i)]:[t,n,r]).map(function(e){return(e<16?"0":"")+e.toString(16)}).join("")}function Pe(e){var t=e.h,n=e.s,r=e.l,i=e.a;return null!=i&&i<1?"hsla("+Te(t)+", "+Te(100*n)+"%, "+Te(100*r)+"%, "+Te(i,2)+")":"hsl("+Te(t)+", "+Te(100*n)+"%, "+Te(100*r)+"%)"}var Re=/^rgba?\([^\(\)]+\)$/,Le=/^hsla?\([^\(\)]+\)$/,De=/^#[0-9a-f]+$/i;function je(e){var t=e.trim().toLowerCase();if(t.match(Re))return Ve(t);if(t.match(Le))return He(t);if(t.match(De))return ze(t);if(Xe.has(t))return Ue(t);if(Qe.has(t))return qe(t);if("transparent"===e)return{r:0,g:0,b:0,a:0};throw new Error("Unable to parse "+e)}function Ne(e){var t=[],n=0,r=!1,i=e.indexOf("(");e=e.substring(i+1,e.length-1);for(var o=0;o="0"&&a<="9"||"."===a||"+"===a||"-"===a?r=!0:!r||" "!==a&&","!==a?r||(n=o+1):(t.push(e.substring(n,o)),r=!1,n=o+1)}return r&&t.push(e.substring(n,e.length)),t}function Ie(e,t,n){var r=Ne(e),i=Object.entries(n),a=r.map(function(e){return e.trim()}).map(function(e,n){var r,a=i.find(function(t){var n=o(t,1),r=n[0];return e.endsWith(r)});return r=a?parseFloat(e.substring(0,e.length-a[0].length))/a[1]*t[n]:parseFloat(e),t[n]>1?Math.round(r):r});return a}var $e=[255,255,255,1],Fe={"%":100};function Ve(e){var t=o(Ie(e,$e,Fe),4),n=t[0],r=t[1],i=t[2],a=t[3],s=void 0===a?1:a;return{r:n,g:r,b:i,a:s}}var Be=[360,1,1,1],We={"%":100,deg:360,rad:2*Math.PI,turn:1};function He(e){var t=o(Ie(e,Be,We),4),n=t[0],r=t[1],i=t[2],a=t[3],s=void 0===a?1:a;return ke({h:n,s:r,l:i,a:s})}function ze(e){var t=e.substring(1);switch(t.length){case 3:case 4:var n=o([0,1,2].map(function(e){return parseInt(""+t[e]+t[e],16)}),3),r=n[0],i=n[1],a=n[2],s=3===t.length?1:parseInt(""+t[3]+t[3],16)/255;return{r:r,g:i,b:a,a:s};case 6:case 8:var l=o([0,2,4].map(function(e){return parseInt(t.substring(e,e+2),16)}),3);r=l[0],i=l[1],a=l[2],s=6===t.length?1:parseInt(t.substring(6,8),16)/255;return{r:r,g:i,b:a,a:s}}throw new Error("Unable to parse "+e)}function Ue(e){var t=Xe.get(e);return{r:t>>16&255,g:t>>8&255,b:t>>0&255,a:1}}function qe(e){var t=Qe.get(e);return{r:t>>16&255,g:t>>8&255,b:t>>0&255,a:1}}var Ke=function(e){return e>="0"&&e<="9"},Ge=function(e){return Math.floor(Math.log10(e))+1};function Ye(e){var t=0,n=function(t,n,r){e=e.substring(0,t)+r+e.substring(n)},r=function(){for(var n=0,r=1;r<4;r++){var i=e[t+r];if(" "===i)break;if(!Ke(i))break;n*=10,n+=Number(i)}var o=Ge(n);t+=o;var a=e[t+1];if("%"===a)return t++,n};while(0!==(t=e.indexOf("calc("))){var i=t;t+=4;var o=r();if(!o)break;if(" "!==e[t+1])break;t++;var a=e[t+1];if("+"!==a&&"-"!==a)break;if(t++," "!==e[t+1])break;t++;var s=r();if(!s)break;var l=void 0;l="+"===a?o+s+"%":o-s+"%",n(i,t+2,l)}return e}var Xe=new Map(Object.entries({aliceblue:15792383,antiquewhite:16444375,aqua:65535,aquamarine:8388564,azure:15794175,beige:16119260,bisque:16770244,black:0,blanchedalmond:16772045,blue:255,blueviolet:9055202,brown:10824234,burlywood:14596231,cadetblue:6266528,chartreuse:8388352,chocolate:13789470,coral:16744272,cornflowerblue:6591981,cornsilk:16775388,crimson:14423100,cyan:65535,darkblue:139,darkcyan:35723,darkgoldenrod:12092939,darkgray:11119017,darkgrey:11119017,darkgreen:25600,darkkhaki:12433259,darkmagenta:9109643,darkolivegreen:5597999,darkorange:16747520,darkorchid:10040012,darkred:9109504,darksalmon:15308410,darkseagreen:9419919,darkslateblue:4734347,darkslategray:3100495,darkslategrey:3100495,darkturquoise:52945,darkviolet:9699539,deeppink:16716947,deepskyblue:49151,dimgray:6908265,dimgrey:6908265,dodgerblue:2003199,firebrick:11674146,floralwhite:16775920,forestgreen:2263842,fuchsia:16711935,gainsboro:14474460,ghostwhite:16316671,gold:16766720,goldenrod:14329120,gray:8421504,grey:8421504,green:32768,greenyellow:11403055,honeydew:15794160,hotpink:16738740,indianred:13458524,indigo:4915330,ivory:16777200,khaki:15787660,lavender:15132410,lavenderblush:16773365,lawngreen:8190976,lemonchiffon:16775885,lightblue:11393254,lightcoral:15761536,lightcyan:14745599,lightgoldenrodyellow:16448210,lightgray:13882323,lightgrey:13882323,lightgreen:9498256,lightpink:16758465,lightsalmon:16752762,lightseagreen:2142890,lightskyblue:8900346,lightslategray:7833753,lightslategrey:7833753,lightsteelblue:11584734,lightyellow:16777184,lime:65280,limegreen:3329330,linen:16445670,magenta:16711935,maroon:8388608,mediumaquamarine:6737322,mediumblue:205,mediumorchid:12211667,mediumpurple:9662683,mediumseagreen:3978097,mediumslateblue:8087790,mediumspringgreen:64154,mediumturquoise:4772300,mediumvioletred:13047173,midnightblue:1644912,mintcream:16121850,mistyrose:16770273,moccasin:16770229,navajowhite:16768685,navy:128,oldlace:16643558,olive:8421376,olivedrab:7048739,orange:16753920,orangered:16729344,orchid:14315734,palegoldenrod:15657130,palegreen:10025880,paleturquoise:11529966,palevioletred:14381203,papayawhip:16773077,peachpuff:16767673,peru:13468991,pink:16761035,plum:14524637,powderblue:11591910,purple:8388736,rebeccapurple:6697881,red:16711680,rosybrown:12357519,royalblue:4286945,saddlebrown:9127187,salmon:16416882,sandybrown:16032864,seagreen:3050327,seashell:16774638,sienna:10506797,silver:12632256,skyblue:8900331,slateblue:6970061,slategray:7372944,slategrey:7372944,snow:16775930,springgreen:65407,steelblue:4620980,tan:13808780,teal:32896,thistle:14204888,tomato:16737095,turquoise:4251856,violet:15631086,wheat:16113331,white:16777215,whitesmoke:16119285,yellow:16776960,yellowgreen:10145074})),Qe=new Map(Object.entries({ActiveBorder:3906044,ActiveCaption:0,AppWorkspace:11184810,Background:6513614,ButtonFace:16777215,ButtonHighlight:15329769,ButtonShadow:10461343,ButtonText:0,CaptionText:0,GrayText:8355711,Highlight:11720703,HighlightText:0,InactiveBorder:16777215,InactiveCaption:16777215,InactiveCaptionText:0,InfoBackground:16514245,InfoText:0,Menu:16185078,MenuText:16777215,Scrollbar:11184810,ThreeDDarkShadow:0,ThreeDFace:12632256,ThreeDHighlight:16777215,ThreeDLightShadow:16777215,ThreeDShadow:0,Window:15527148,WindowFrame:11184810,WindowText:0,"-webkit-focus-ring-color":15046400}).map(function(e){var t=o(e,2),n=t[0],r=t[1];return[n.toLowerCase(),r]}));function Ze(e,t,n,r,i){return(e-t)*(i-r)/(n-t)+r}function Je(e,t,n){return Math.min(n,Math.max(t,e))}function et(e,t){for(var n=[],r=0,i=e.length;r200&&i<280;r=o<.24||a>.8&&c}var u=i,h=a;r&&(l?(u=t.h,h=t.s):(u=n.h,h=n.s));var d=Ze(a,0,1,t.l,n.l);return{h:u,s:h,l:d,a:s}}var xt=.4;function _t(e,t){var n=e.h,r=e.s,i=e.l,o=e.a,a=i<.5,s=n>200&&n<280,l=r<.12||i>.8&&s;if(a){var c=Ze(i,0,.5,0,xt);if(l){var u=t.h,h=t.s;return{h:u,s:h,l:c,a:o}}return{h:n,s:r,l:c,a:o}}var d=Ze(i,.5,1,xt,t.l);if(l){var f=t.h;h=t.s;return{h:f,s:h,l:d,a:o}}var p=n,m=n>60&&n<180;if(m){var g=n>120;p=g?Ze(n,120,180,135,180):Ze(n,60,120,60,105)}return{h:p,s:r,l:d,a:o}}function St(e,n){if(0===n.mode)return bt(e,n);var r=st(n);return gt(e,t(t({},n),{mode:0}),_t,r)}var Ct,Et=.55;function kt(e){return Ze(e,205,245,205,220)}function Ot(e,t){var n=e.h,r=e.s,i=e.l,o=e.a,a=i>.5,s=i<.2||r<.24,l=!s&&n>205&&n<245;if(a){var c=Ze(i,.5,1,Et,t.l);if(s){var u=t.h,h=t.s;return{h:u,s:h,l:c,a:o}}var d=n;return l&&(d=kt(n)),{h:d,s:r,l:c,a:o}}if(s){var f=t.h,p=(h=t.s,Ze(i,0,.5,t.l,Et));return{h:f,s:h,l:p,a:o}}var m,g=n;return l?(g=kt(n),m=Ze(i,0,.5,t.l,Math.min(1,Et+.05))):m=Ze(i,0,.5,t.l,Et),{h:g,s:r,l:m,a:o}}function Tt(e,n){if(0===n.mode)return bt(e,n);var r=lt(n);return gt(e,t(t({},n),{mode:0}),Ot,r)}function At(e,t,n){var r=e.h,i=e.s,o=e.l,a=e.a,s=o<.5,l=o<.2||i<.24,c=r,u=i;l&&(s?(c=t.h,u=t.s):(c=n.h,u=n.s));var h=Ze(o,0,1,.5,.2);return{h:c,s:u,l:h,a:a}}function Mt(e,n){if(0===n.mode)return bt(e,n);var r=lt(n),i=st(n);return gt(e,t(t({},n),{mode:0}),At,r,i)}function Pt(e,t){return St(e,t)}function Rt(e,t){return St(e,t)}function Lt(e){var t=[];return t.push('*:not(pre, pre *, code, .far, .fa, .glyphicon, [class*="vjs-"], .fab, .fa-github, .fas, .material-icons, .icofont, .typcn, mu, [class*="mu-"], .glyphicon, .icon) {'),e.useFont&&e.fontFamily&&t.push(" font-family: "+e.fontFamily+" !important;"),e.textStroke>0&&(t.push(" -webkit-text-stroke: "+e.textStroke+"px !important;"),t.push(" text-stroke: "+e.textStroke+"px !important;")),t.push("}"),t.join("\n")}function Dt(e){var t=[];return e.mode===Ct.dark&&t.push("invert(100%) hue-rotate(180deg)"),100!==e.brightness&&t.push("brightness("+e.brightness+"%)"),100!==e.contrast&&t.push("contrast("+e.contrast+"%)"),0!==e.grayscale&&t.push("grayscale("+e.grayscale+"%)"),0!==e.sepia&&t.push("sepia("+e.sepia+"%)"),0===t.length?null:t.join(" ")}function jt(e){return e.slice(0,4).map(function(e){return e.map(function(e){return e.toFixed(3)}).join(" ")}).join(" ")}function Nt(e){return jt(it(e))}(function(e){e[e["light"]=0]="light",e[e["dark"]=1]="dark"})(Ct||(Ct={}));var It=0,$t=new Map,Ft=new Map;function Vt(e){return n(this,void 0,void 0,function(){return r(this,function(t){return[2,new Promise(function(t,n){var r=++It;$t.set(r,t),Ft.set(r,n),chrome.runtime.sendMessage({type:s.CS_FETCH,data:e,id:r})})]})})}chrome.runtime.onMessage.addListener(function(e){var t=e.type,n=e.data,r=e.error,i=e.id;if(t===s.BG_FETCH_RESPONSE){var o=$t.get(i),a=Ft.get(i);$t.delete(i),Ft.delete(i),r?a&&a(r):o&&o(n)}});var Bt=function(){function e(){this.queue=[],this.timerId=null,this.frameDuration=1e3/60}return e.prototype.addToQueue=function(e){this.queue.push(e),this.startQueue()},e.prototype.stopQueue=function(){null!==this.timerId&&(cancelAnimationFrame(this.timerId),this.timerId=null),this.queue=[]},e.prototype.startQueue=function(){var e=this;this.timerId||(this.timerId=requestAnimationFrame(function(){e.timerId=null;var t,n=Date.now();while(t=e.queue.shift())if(t(),Date.now()-n>=e.frameDuration){e.startQueue();break}}))},e}(),Wt=new Bt;function Ht(e){return n(this,void 0,void 0,function(){var i=this;return r(this,function(o){return[2,new Promise(function(o,a){return n(i,void 0,void 0,function(){var n,i,s,l;return r(this,function(r){switch(r.label){case 0:return e.startsWith("data:")?(n=e,[3,4]):[3,1];case 1:return r.trys.push([1,3,,4]),[4,zt(e)];case 2:return n=r.sent(),[3,4];case 3:return i=r.sent(),a(i),[2];case 4:return r.trys.push([4,6,,7]),[4,Ut(n)];case 5:return s=r.sent(),Wt.addToQueue(function(){o(t({src:e,dataURL:n,width:s.naturalWidth,height:s.naturalHeight},Zt(s)))}),[3,7];case 6:return l=r.sent(),a(l),[3,7];case 7:return[2]}})})})]})})}function zt(e){return n(this,void 0,void 0,function(){var t;return r(this,function(n){switch(n.label){case 0:return t=new URL(e),t.origin!==location.origin?[3,2]:[4,w(e)];case 1:return[2,n.sent()];case 2:return[4,Vt({url:e,responseType:"data-url"})];case 3:return[2,n.sent()]}})})}function Ut(e){return n(this,void 0,void 0,function(){return r(this,function(t){return[2,new Promise(function(t,n){var r=new Image;r.onload=function(){return t(r)},r.onerror=function(){return n("Unable to load image "+e)},r.src=e})]})})}var qt,Kt,Gt=1024;function Yt(){var e=Gt,t=Gt;qt=document.createElement("canvas"),qt.width=e,qt.height=t,Kt=qt.getContext("2d"),Kt.imageSmoothingEnabled=!1}function Xt(){qt=null,Kt=null}var Qt=5242880;function Zt(e){qt||Yt();var t=e.naturalWidth,n=e.naturalHeight;if(0===n||0===t)return F("logWarn(Image is empty "+e.currentSrc+")"),null;var r=t*n*4;if(r>Qt)return $("Skipped large image analyzing(Larger than 5mb in memory)"),{isDark:!1,isLight:!1,isTransparent:!1,isLarge:!1,isTooLarge:!0};var i=t*n,o=Math.min(1,Math.sqrt(Gt/i)),a=Math.ceil(t*o),s=Math.ceil(n*o);Kt.clearRect(0,0,a,s),Kt.drawImage(e,0,0,t,n,0,0,a,s);var l,c,u,h,d,f,p,m,g=Kt.getImageData(0,0,a,s),v=g.data,y=.05,b=.4,w=.7,x=0,_=0,S=0;for(u=0;uw&&S++);var C=a*s,E=C-x,k=.7,O=.7,T=.1,A=48e4;return{isDark:_/E>=k,isLight:S/E>=O,isTransparent:x/C>=T,isLarge:i>=A,isTooLarge:!1}}function Jt(e,t){var n=e.dataURL,r=e.width,i=e.height,o=Nt(t),a=['',"",'','',"","",'',""].join("");return"data:image/svg+xml;base64,"+btoa(a)}function en(){Wt&&Wt.stopQueue(),Xt()}function tn(e,t){return Boolean(e&&e.getPropertyPriority(t))}function nn(e,t,n,r,i,o){if(e.startsWith("--")){var a=xn(r,e,t,n,i,o);if(a)return{property:e,value:a,important:tn(n.style,e),sourceValue:t}}else if(t.includes("var(")){a=_n(r,e,t);if(a)return{property:e,value:a,important:tn(n.style,e),sourceValue:t}}else if(e.includes("color")&&"-webkit-print-color-adjust"!==e||"fill"===e||"stroke"===e||"stop-color"===e){a=fn(e,t);if(a)return{property:e,value:a,important:tn(n.style,e),sourceValue:t}}else if("background-image"===e||"list-style-image"===e){a=yn(t,n,i,o);if(a)return{property:e,value:a,important:tn(n.style,e),sourceValue:t}}else if(e.includes("shadow")){a=wn(t);if(a)return{property:e,value:a,important:tn(n.style,e),sourceValue:t}}return null}function rn(e,t,n){var r=[];return t||(r.push("html {"),r.push(" background-color: "+St({r:255,g:255,b:255},e)+" !important;"),r.push("}")),r.push((t?"":"html, body, ")+(n?"input, textarea, select, button":"")+" {"),r.push(" background-color: "+St({r:255,g:255,b:255},e)+";"),r.push("}"),r.push("html, body, "+(n?"input, textarea, select, button":"")+" {"),r.push(" border-color: "+Mt({r:76,g:76,b:76},e)+";"),r.push(" color: "+Tt({r:0,g:0,b:0},e)+";"),r.push("}"),r.push("a {"),r.push(" color: "+Tt({r:0,g:64,b:255},e)+";"),r.push("}"),r.push("table {"),r.push(" border-color: "+Mt({r:128,g:128,b:128},e)+";"),r.push("}"),r.push("::placeholder {"),r.push(" color: "+Tt({r:169,g:169,b:169},e)+";"),r.push("}"),r.push("input:-webkit-autofill,"),r.push("textarea:-webkit-autofill,"),r.push("select:-webkit-autofill {"),r.push(" background-color: "+St({r:250,g:255,b:189},e)+" !important;"),r.push(" color: "+Tt({r:0,g:0,b:0},e)+" !important;"),r.push("}"),e.scrollbarColor&&r.push(sn(e)),e.selectionColor&&r.push(an(e)),r.join("\n")}function on(e){var n,r;if("auto"===e.selectionColor)n=St({r:0,g:96,b:212},t(t({},e),{grayscale:0})),r=Tt({r:255,g:255,b:255},t(t({},e),{grayscale:0}));else{var i=je(e.selectionColor),o=Oe(i);n=e.selectionColor,r=o.l<.5?"#FFF":"#000"}return{backgroundColorSelection:n,foregroundColorSelection:r}}function an(e){var t=[],n=on(e),r=n.backgroundColorSelection,i=n.foregroundColorSelection;return["::selection","::-moz-selection"].forEach(function(e){t.push(e+" {"),t.push(" background-color: "+r+" !important;"),t.push(" color: "+i+" !important;"),t.push("}")}),t.join("\n")}function sn(e){var n,r,i,o,a,s,l=[];if("auto"===e.scrollbarColor)n=St({r:241,g:241,b:241},e),r=Tt({r:96,g:96,b:96},e),i=St({r:176,g:176,b:176},e),o=St({r:144,g:144,b:144},e),a=St({r:96,g:96,b:96},e),s=St({r:255,g:255,b:255},e);else{var c=je(e.scrollbarColor),u=Oe(c),h=u.l>.5,f=function(e){return t(t({},u),{l:Je(u.l+e,0,1)})},p=function(e){return t(t({},u),{l:Je(u.l-e,0,1)})};n=Pe(p(.4)),r=Pe(h?p(.4):f(.4)),i=Pe(u),o=Pe(f(.1)),a=Pe(f(.2))}return l.push("::-webkit-scrollbar {"),l.push(" background-color: "+n+";"),l.push(" color: "+r+";"),l.push("}"),l.push("::-webkit-scrollbar-thumb {"),l.push(" background-color: "+i+";"),l.push("}"),l.push("::-webkit-scrollbar-thumb:hover {"),l.push(" background-color: "+o+";"),l.push("}"),l.push("::-webkit-scrollbar-thumb:active {"),l.push(" background-color: "+a+";"),l.push("}"),l.push("::-webkit-scrollbar-corner {"),l.push(" background-color: "+s+";"),l.push("}"),d&&(l.push("* {"),l.push(" scrollbar-color: "+i+" "+n+";"),l.push("}")),l.join("\n")}function ln(e,t){var n=t.strict,r=[],i=location.hostname.endsWith("microsoft.com");return r.push("html, body, "+(n?"body :not(iframe)"+(i?':not(div[style^="position:absolute;top:0;left:-"]':""):"body > :not(iframe)")+" {"),r.push(" background-color: "+St({r:255,g:255,b:255},e)+" !important;"),r.push(" border-color: "+Mt({r:64,g:64,b:64},e)+" !important;"),r.push(" color: "+Tt({r:0,g:0,b:0},e)+" !important;"),r.push("}"),r.join("\n")}var cn=new Set(["inherit","transparent","initial","currentcolor","none","unset"]),un=new Map;function hn(e){if(e=e.trim(),un.has(e))return un.get(e);e.includes("calc(")&&(e=Ye(e));var t=je(e);return un.set(e,t),t}function dn(e){try{return hn(e)}catch(e){return null}}function fn(e,t){if(cn.has(t.toLowerCase()))return t;try{var n=hn(t);return e.includes("background")?function(e){return St(n,e)}:e.includes("border")||e.includes("outline")?function(e){return Mt(n,e)}:function(e){return Tt(n,e)}}catch(e){return F("Color parse error",e),null}}var pn=/[\-a-z]+gradient\(([^\(\)]*(\(([^\(\)]*(\(.*?\)))*[^\(\)]*\))){0,15}[^\(\)]*\)/g,mn=new Map,gn=new Map;function vn(e,t){if(!e||0===t.length)return!1;if(t.some(function(e){return"*"===e}))return!0;for(var n=e.split(/,\s*/g),r=function(e){var r=t[e];if(n.some(function(e){return e===r}))return{value:!0}},i=0;i2){$("Inverting dark image "+e.src);var u=Jt(e,t(t({},n),{sepia:Je(n.sepia+10,0,100)}));r='url("'+u+'")'}else if(o&&!a&&1===n.mode)if(s)r="none";else{$("Dimming light image "+e.src);var h=Jt(e,n);r='url("'+h+'")'}else if(0===n.mode&&o&&!s){$("Applying filter to image "+e.src);var d=Jt(e,t(t({},n),{brightness:Je(n.brightness-10,5,200),sepia:Je(n.sepia+10,0,100)}));r='url("'+d+'")'}else r=null;return r},m=[],g=0;return h.forEach(function(t,n){var r=t.match,i=t.type,o=t.index,a=g,s=o+r.length;g=s,m.push(function(){return e.substring(a,o)}),m.push("url"===i?f(r):d(r)),n===h.length-1&&m.push(function(){return e.substring(s)})}),function(e){var t=m.filter(Boolean).map(function(t){return t(e)});return t.some(function(e){return e instanceof Promise})?Promise.all(t).then(function(e){return e.join("")}):t.join("")}}catch(t){return F("Unable to parse gradient "+e,t),null}}function bn(e){try{var t=0,n=tt(/(^|\s)(?!calc)([a-z]+\(.+?\)|#[0-9a-f]+|[a-z]+)(.*?(inset|outset)?($|,))/gi,e,2),r=0,i=n.map(function(i,o){var a=t,s=e.indexOf(i,t),l=s+i.length;t=l;var c=dn(i);return c?function(t){return""+e.substring(a,s)+Pt(c,t)+(o===n.length-1?e.substring(l):"")}:(r++,function(){return e.substring(a,l)})});return function(e){var t=i.map(function(t){return t(e)}).join("");return{matchesLength:n.length,unparseableMatchesLength:r,result:t}}}catch(t){return F("Unable to parse shadow "+e,t),null}}function wn(e){var t=bn(e);return t?function(e){return t(e).result}:null}function xn(e,t,n,r,i,o){return e.getModifierForVariable({varName:t,sourceValue:n,rule:r,ignoredImgSelectors:i,isCancelled:o})}function _n(e,t,n){return e.getModifierForVarDependant(t,n)}function Sn(){un.clear(),dt(),mn.clear(),en(),gn.clear()}var Cn=1,En=2,kn=4,On=8,Tn=function(){function e(){this.varTypes=new Map,this.rulesQueue=[],this.definedVars=new Set,this.varRefs=new Map,this.unknownColorVars=new Set,this.unknownBgVars=new Set,this.undefinedVars=new Set,this.initialVarTypes=new Map,this.changedTypeVars=new Set,this.typeChangeSubscriptions=new Map,this.unstableVarValues=new Map}return e.prototype.clear=function(){this.varTypes.clear(),this.rulesQueue.splice(0),this.definedVars.clear(),this.varRefs.clear(),this.unknownColorVars.clear(),this.unknownBgVars.clear(),this.undefinedVars.clear(),this.initialVarTypes.clear(),this.changedTypeVars.clear(),this.typeChangeSubscriptions.clear(),this.unstableVarValues.clear()},e.prototype.isVarType=function(e,t){return this.varTypes.has(e)&&(this.varTypes.get(e)&t)>0},e.prototype.addRulesForMatching=function(e){this.rulesQueue.push(e)},e.prototype.matchVariablesAndDependants=function(){var e=this;this.changedTypeVars.clear(),this.initialVarTypes=new Map(this.varTypes),this.collectRootVariables(),this.collectVariablesAndVarDep(this.rulesQueue),this.rulesQueue.splice(0),this.collectRootVarDependants(),this.varRefs.forEach(function(t,n){t.forEach(function(t){e.varTypes.has(n)&&e.resolveVariableType(t,e.varTypes.get(n))})}),this.unknownColorVars.forEach(function(t){e.unknownBgVars.has(t)?(e.unknownColorVars.delete(t),e.unknownBgVars.delete(t),e.resolveVariableType(t,Cn)):e.isVarType(t,Cn|En|kn)?e.unknownColorVars.delete(t):e.undefinedVars.add(t)}),this.unknownBgVars.forEach(function(t){var n=null!=e.findVarRef(t,function(t){return e.unknownColorVars.has(t)||e.isVarType(t,En|kn)});n?e.itarateVarRefs(t,function(t){e.resolveVariableType(t,Cn)}):e.isVarType(t,Cn|On)?e.unknownBgVars.delete(t):e.undefinedVars.add(t)}),this.changedTypeVars.forEach(function(t){e.typeChangeSubscriptions.has(t)&&e.typeChangeSubscriptions.get(t).forEach(function(e){e()})}),this.changedTypeVars.clear()},e.prototype.getModifierForVariable=function(e){var t=this;return function(n){var r=e.varName,i=e.sourceValue,o=e.rule,a=e.ignoredImgSelectors,s=e.isCancelled,l=function(){var e=[],l=function(o,a,s){if(t.isVarType(r,o)){var l,c=a(r);if(Bn(i))if(Wn(i)){var u=Yn(i,t.unstableVarValues);u||(u=o===Cn?"#ffffff":"#000000"),l=s(u,n)}else l=Dn(i,function(e){return a(e)},function(e){return s(e,n)});else l=s(i,n);e.push({property:c,value:l})}};if(l(Cn,Nn,qn),l(En,In,Kn),l(kn,$n,Gn),t.isVarType(r,On)){var c=Fn(r),u=i;Bn(i)&&(u=Dn(i,function(e){return Nn(e)},function(e){return qn(e,n)}));var h=yn(u,o,a,s);u="function"===typeof h?h(n):h,e.push({property:c,value:u})}return e},c=new Set,u=function(e){var n=function(){var t=l();e(t)};c.add(n),t.subscribeForVarTypeChange(r,n)},h=function(){c.forEach(function(e){t.unsubscribeFromVariableTypeChanges(r,e)})};return{declarations:l(),onTypeChange:{addListener:u,removeListeners:h}}}},e.prototype.getModifierForVarDependant=function(e,t){var n=this;if(t.match(/^\s*(rgb|hsl)a?\(/)){var r=e.startsWith("background"),i="color"===e||"caret-color"===e;return function(e){var o=Yn(t,n.unstableVarValues);o||(o=r?"#ffffff":"#000000");var a=r?qn:i?Kn:Gn;return a(o,e)}}return"background-color"===e?function(e){return Dn(t,function(e){return Nn(e)},function(t){return qn(t,e)})}:"color"===e||"caret-color"===e?function(e){return Dn(t,function(e){return In(e)},function(t){return Kn(t,e)})}:"background"===e||"background-image"===e||"box-shadow"===e?function(r){var i=new Set,o=function(){var o=Dn(t,function(e){return n.isVarType(e,Cn)?Nn(e):n.isVarType(e,On)?Fn(e):(i.add(e),e)},function(e){return qn(e,r)});if("box-shadow"===e){var a=bn(o),s=a(r);if(s.unparseableMatchesLength!==s.matchesLength)return s.result}return o},a=o();return i.size>0?new Promise(function(e){var t=i.values().next().value,r=function(){n.unsubscribeFromVariableTypeChanges(t,r);var i=o();e(i)};n.subscribeForVarTypeChange(t,r)}):a}:e.startsWith("border")||e.startsWith("outline")?function(e){return Dn(t,function(e){return $n(e)},function(t){return Gn(t,e)})}:null},e.prototype.subscribeForVarTypeChange=function(e,t){this.typeChangeSubscriptions.has(e)||this.typeChangeSubscriptions.set(e,new Set);var n=this.typeChangeSubscriptions.get(e);n.has(t)||n.add(t)},e.prototype.unsubscribeFromVariableTypeChanges=function(e,t){this.typeChangeSubscriptions.has(e)&&this.typeChangeSubscriptions.get(e).delete(t)},e.prototype.collectVariablesAndVarDep=function(e){var t=this;e.forEach(function(e){fe(e,function(e){e.style&&ge(e.style,function(e,n){Vn(e)&&t.inspectVariable(e,n),Bn(n)&&t.inspectVarDependant(e,n)})})})},e.prototype.collectRootVariables=function(){var e=this;ge(document.documentElement.style,function(t,n){Vn(t)&&e.inspectVariable(t,n)})},e.prototype.inspectVariable=function(e,t){if(this.unstableVarValues.set(e,t),Bn(t)&&Wn(t)&&(this.unknownColorVars.add(e),this.definedVars.add(e)),!this.definedVars.has(e)){this.definedVars.add(e);var n=dn(t);n?this.unknownColorVars.add(e):(t.includes("url(")||t.includes("linear-gradient(")||t.includes("radial-gradient("))&&this.resolveVariableType(e,On)}},e.prototype.resolveVariableType=function(e,t){var n=this.initialVarTypes.get(e)||0,r=this.varTypes.get(e)||0,i=r|t;this.varTypes.set(e,i),(i!==n||this.undefinedVars.has(e))&&(this.changedTypeVars.add(e),this.undefinedVars.delete(e)),this.unknownColorVars.delete(e),this.unknownBgVars.delete(e)},e.prototype.collectRootVarDependants=function(){var e=this;ge(document.documentElement.style,function(t,n){Bn(n)&&e.inspectVarDependant(t,n)})},e.prototype.inspectVarDependant=function(e,t){var n=this;Vn(e)?this.iterateVarDeps(t,function(t){n.varRefs.has(e)||n.varRefs.set(e,new Set),n.varRefs.get(e).add(t)}):"background-color"===e||"box-shadow"===e?this.iterateVarDeps(t,function(e){return n.resolveVariableType(e,Cn)}):"color"===e||"caret-color"===e?this.iterateVarDeps(t,function(e){return n.resolveVariableType(e,En)}):e.startsWith("border")||e.startsWith("outline")?this.iterateVarDeps(t,function(e){return n.resolveVariableType(e,kn)}):"background"!==e&&"background-image"!==e||this.iterateVarDeps(t,function(e){if(!n.isVarType(e,Cn|On)){var t=null!=n.findVarRef(e,function(e){return n.unknownColorVars.has(e)||n.isVarType(e,En|kn)});n.itarateVarRefs(e,function(e){t?n.resolveVariableType(e,Cn):n.unknownBgVars.add(e)})}})},e.prototype.iterateVarDeps=function(e,t){var n=new Set;jn(e,function(e){return n.add(e)}),n.forEach(function(e){return t(e)})},e.prototype.findVarRef=function(e,t,n){var r,o;if(void 0===n&&(n=new Set),n.has(e))return null;n.add(e);var a=t(e);if(a)return e;var s=this.varRefs.get(e);if(!s||0===s.size)return null;try{for(var l=i(s),c=l.next();!c.done;c=l.next()){var u=c.value,h=this.findVarRef(u,t,n);if(h)return h}}catch(e){r={error:e}}finally{try{c&&!c.done&&(o=l.return)&&o.call(l)}finally{if(r)throw r.error}}return null},e.prototype.itarateVarRefs=function(e,t){this.findVarRef(e,function(e){return t(e),!1})},e.prototype.setOnRootVariableChange=function(e){this.onRootVariableDefined=e},e.prototype.putRootVars=function(e,t){var n,r,a=this,s=e.sheet;s.cssRules.length>0&&s.deleteRule(0);var l=new Map;ge(document.documentElement.style,function(e,n){Vn(e)&&(a.isVarType(e,Cn)&&l.set(Nn(e),qn(n,t)),a.isVarType(e,En)&&l.set(In(e),Kn(n,t)),a.isVarType(e,kn)&&l.set($n(e),Gn(n,t)),a.subscribeForVarTypeChange(e,a.onRootVariableDefined))});var c=[];c.push(":root {");try{for(var u=i(l),h=u.next();!h.done;h=u.next()){var d=o(h.value,2),f=d[0],p=d[1];c.push(" "+f+": "+p+";")}}catch(e){n={error:e}}finally{try{h&&!h.done&&(r=u.return)&&r.call(u)}finally{if(n)throw n.error}}c.push("}");var m=c.join("\n");s.insertRule(m)},e}(),An=new Tn;function Mn(e,t){void 0===t&&(t=0);var n=e.indexOf("var(",t);if(n>=0){var r=rt(e,n+3);return r?{start:n,end:r.end}:null}}function Pn(e){var t,n=[],r=0;while(t=Mn(e,r)){var i=t.start,o=t.end;n.push({start:i,end:o,value:e.substring(i,o)}),r=t.end+1}return n}function Rn(e,t){var n=Pn(e),r=n.length;if(0===r)return e;var i=e.length,o=n.map(function(e){return t(e.value)}),a=[];a.push(e.substring(0,n[0].start));for(var s=0;s=0?(t=e.substring(4,r).trim(),n=e.substring(r+1,e.length-1).trim()):(t=e.substring(4,e.length-1).trim(),n=""),{name:t,fallback:n}}function Dn(e,t,n){var r=function(e){var r,i=Ln(e),o=i.name,a=i.fallback,s=t(o);return a?(r=Bn(a)?Dn(a,t,n):n?n(a):a,"var("+s+", "+r+")"):"var("+s+")"};return Rn(e,r)}function jn(e,t){Dn(e,function(e){return t(e),e})}function Nn(e){return"--darkreader-bg"+e}function In(e){return"--darkreader-text"+e}function $n(e){return"--darkreader-border"+e}function Fn(e){return"--darkreader-bgimg"+e}function Vn(e){return e.startsWith("--")}function Bn(e){return e.includes("var(")}function Wn(e){return e.match(/^\s*(rgb|hsl)a?\(/)}var Hn=/^\d{1,3}, ?\d{1,3}, ?\d{1,3}$/;function zn(e){if(Hn.test(e)){var t=e.split(","),n="rgb(";return t.forEach(function(e){n+=e.trim()+", "}),n=n.substr(0,n.length-2),n+=")",{isRaw:!0,color:n}}return{isRaw:!1,color:e}}function Un(e,t,n){var r=zn(e),i=r.isRaw,o=r.color,a=dn(o);if(a){var s=n(a,t);if(i){var l=dn(s);return l?l.r+", "+l.g+", "+l.b:s}return s}return o}function qn(e,t){return Un(e,t,St)}function Kn(e,t){return Un(e,t,Tt)}function Gn(e,t){return Un(e,t,Mt)}function Yn(e,t,n){void 0===n&&(n=new Set);var r=!1,i=function(e){var i=Ln(e),o=i.name,a=i.fallback;if(n.has(o))return r=!0,null;n.add(o);var s=t.get(o)||a,l=null;return s&&(l=Bn(s)?Yn(s,t,n):s),l||(r=!0,null)},o=Rn(e,i);return r?null:o}var Xn={"background-color":{customProp:"--darkreader-inline-bgcolor",cssProp:"background-color",dataAttr:"data-darkreader-inline-bgcolor"},"background-image":{customProp:"--darkreader-inline-bgimage",cssProp:"background-image",dataAttr:"data-darkreader-inline-bgimage"},"border-color":{customProp:"--darkreader-inline-border",cssProp:"border-color",dataAttr:"data-darkreader-inline-border"},"border-bottom-color":{customProp:"--darkreader-inline-border-bottom",cssProp:"border-bottom-color",dataAttr:"data-darkreader-inline-border-bottom"},"border-left-color":{customProp:"--darkreader-inline-border-left",cssProp:"border-left-color",dataAttr:"data-darkreader-inline-border-left"},"border-right-color":{customProp:"--darkreader-inline-border-right",cssProp:"border-right-color",dataAttr:"data-darkreader-inline-border-right"},"border-top-color":{customProp:"--darkreader-inline-border-top",cssProp:"border-top-color",dataAttr:"data-darkreader-inline-border-top"},"box-shadow":{customProp:"--darkreader-inline-boxshadow",cssProp:"box-shadow",dataAttr:"data-darkreader-inline-boxshadow"},color:{customProp:"--darkreader-inline-color",cssProp:"color",dataAttr:"data-darkreader-inline-color"},fill:{customProp:"--darkreader-inline-fill",cssProp:"fill",dataAttr:"data-darkreader-inline-fill"},stroke:{customProp:"--darkreader-inline-stroke",cssProp:"stroke",dataAttr:"data-darkreader-inline-stroke"},"outline-color":{customProp:"--darkreader-inline-outline",cssProp:"outline-color",dataAttr:"data-darkreader-inline-outline"},"stop-color":{customProp:"--darkreader-inline-stopcolor",cssProp:"stop-color",dataAttr:"data-darkreader-inline-stopcolor"}},Qn=Object.values(Xn),Zn={};Qn.forEach(function(e){var t=e.cssProp,n=e.customProp;return Zn[n]=t});var Jn=["style","fill","stop-color","stroke","bgcolor","color"],er=Jn.map(function(e){return"["+e+"]"}).join(", ");function tr(){return Qn.map(function(e){var t=e.dataAttr,n=e.customProp,r=e.cssProp;return["["+t+"] {"," "+r+": var("+n+") !important;","}"].join("\n")}).join("\n")}function nr(e){var t=[];return e instanceof Element&&e.matches(er)&&t.push(e),(e instanceof Element||g&&e instanceof ShadowRoot||e instanceof Document)&&N(t,e.querySelectorAll(er)),t}var rr=new Map,ir=new Map;function or(e,t){ar(document,e,t),U(document.documentElement,function(n){ar(n.shadowRoot,e,t)})}function ar(e,t,n){rr.has(e)&&(rr.get(e).disconnect(),ir.get(e).disconnect());var r=new WeakSet;function i(e){nr(e).forEach(function(e){r.has(e)||(r.add(e),t(e))}),U(e,function(i){r.has(e)||(r.add(e),n(i.shadowRoot),ar(i.shadowRoot,t,n))})}var s=se(e,{onMinorMutations:function(e){var t=e.additions;t.forEach(function(e){return i(e)})},onHugeMutations:function(){i(e)}});rr.set(e,s);var l=0,c=null,u=W({seconds:10}),h=W({seconds:2}),d=50,f=[],p=null,m=V(function(e){e.forEach(function(e){Jn.includes(e.attributeName)&&t(e.target)})}),g=new MutationObserver(function(e){if(p)f.push.apply(f,a([],o(e),!1));else{l++;var t=Date.now();if(null==c)c=t;else if(l>=d){if(t-c0&&hr(e,n))o.forEach(function(t){e.removeAttribute(Xn[t].dataAttr)});else{if(e.hasAttribute("bgcolor")){var a=e.getAttribute("bgcolor");(a.match(/^[0-9a-f]{3}$/i)||a.match(/^[0-9a-f]{6}$/i))&&(a="#"+a),u("background-color","background-color",a)}if(e.hasAttribute("color")&&"mask-icon"!==e.rel){a=e.getAttribute("color");(a.match(/^[0-9a-f]{3}$/i)||a.match(/^[0-9a-f]{6}$/i))&&(a="#"+a),u("color","color",a)}if(e instanceof SVGElement){if(e.hasAttribute("fill")){var s=32,l=e.getAttribute("fill");if("none"!==l)if(e instanceof SVGTextElement)u("fill","color",l);else{var c=function(){var t=e.getBoundingClientRect(),n=t.width,r=t.height,i=n>s||r>s;u("fill",i?"background-color":"color",l)};X()?c():Z(c)}}e.hasAttribute("stop-color")&&u("stop-color","background-color",e.getAttribute("stop-color"))}if(e.hasAttribute("stroke")){a=e.getAttribute("stroke");u("stroke",e instanceof SVGLineElement||e instanceof SVGTextElement?"border-color":"color",a)}e.style&&ge(e.style,function(t,n){if("background-image"!==t||!n.includes("url"))if(Xn.hasOwnProperty(t))u(t,t,n);else{var r=Zn[t];if(r&&!e.style.getPropertyValue(r)&&!e.hasAttribute(r)){if("background-color"===r&&e.hasAttribute("bgcolor"))return;e.style.setProperty(t,"")}}}),e.style&&e instanceof SVGTextElement&&e.style.fill&&u("fill","color",e.style.getPropertyValue("fill")),j(o,function(t){e.removeAttribute(Xn[t].dataAttr)}),lr.set(e,ur(e,t))}}function u(n,i,a){var s=Xn[n],l=s.customProp,c=s.dataAttr,u=nn(i,a,{},An,r,null);if(u){var h=u.value;"function"===typeof h&&(h=h(t)),e.style.setProperty(l,h),e.hasAttribute(c)||e.setAttribute(c,""),o.delete(n)}}}var fr="theme-color",pr='meta[name="'+fr+'"]',mr=null,gr=null;function vr(e,t){mr=mr||e.content;try{var n=je(mr);e.content=St(n,t)}catch(e){F(e)}}function yr(e){var t=document.querySelector(pr);t?vr(t,e):(gr&&gr.disconnect(),gr=new MutationObserver(function(t){e:for(var n=0;n0){var s=e.parentRule;a={selector:e.selectorText,declarations:o,parentRule:s},w.push(a)}n.set(r,a)}else w.push(n.get(r))},function(){s=!0}),v.forEach(function(e){t.delete(e),n.delete(e)}),i=y,f||g||b){e++;var x=new Map,_=new Map,S=0,C=0,E={rule:null,rules:[],isGroup:!0},k=new WeakMap;r.forEach(function(e){return e()}),r.clear(),w.filter(function(e){return e}).forEach(function(t){var n=t.selector,i=t.declarations,s=t.parentRule,l=A(s),c={selector:n,declarations:[],isGroup:!1},u=c.declarations;function d(t,n,r,i){var o=++S,a={property:t,value:null,important:r,asyncKey:o,sourceValue:i};u.push(a);var s=e;n.then(function(t){t&&!m()&&s===e&&(a.value=t,_r.add(function(){m()||s!==e||P(o)}))})}function f(t,n,i,s){var l=n,c=l.declarations,h=l.onTypeChange,f=++C,p=e,g=u.length,v=[];if(0===c.length){var y={property:t,value:s,important:i,sourceValue:s,varKey:f};u.push(y),v=[y]}c.forEach(function(e){if(e.value instanceof Promise)d(e.property,e.value,i,s);else{var t={property:e.property,value:e.value,important:i,sourceValue:s,varKey:f};u.push(t),v.push(t)}}),h.addListener(function(t){if(!m()&&p===e){var n=t.map(function(e){return{property:e.property,value:e.value,important:i,sourceValue:s,varKey:f}}),r=u.indexOf(v[0],g);u.splice.apply(u,a([r,v.length],o(n),!1)),v=n,R(f)}}),r.add(function(){return h.removeListeners()})}l.rules.push(c),i.forEach(function(e){var t=e.property,n=e.value,r=e.important,i=e.sourceValue;if("function"===typeof n){var o=n(h);o instanceof Promise?d(t,o,r,i):t.startsWith("--")?f(t,o,r,i):u.push({property:t,value:o,important:r,sourceValue:i})}else u.push({property:t,value:n,important:r,sourceValue:i})})});var O=p();M()}function T(e,t,n){var r=n.selector,i=n.declarations,o=function(e){var t=e.property,n=e.value,r=e.important,i=e.sourceValue;return t+": "+(null==n?i:n)+(r?" !important":"")+";"},a="";i.forEach(function(e){a+=o(e)+" "});var s=r+" { "+a+" }";e.insertRule(s,t)}function A(e){if(null==e)return E;if(k.has(e))return k.get(e);var t={rule:e,rules:[],isGroup:!0};k.set(e,t);var n=A(e.parentRule);return n.rules.push(t),t}function M(){function e(e,t){var n=e.rule;if(n instanceof CSSMediaRule){var r=n.media,i=t.cssRules.length;return t.insertRule("@media "+r.mediaText+" {}",i),t.cssRules[i]}return t}function t(n,r,i){n.rules.forEach(function(n){if(n.isGroup){var o=e(n,r);t(n,o,i)}else i(n,r)})}t(E,O,function(e,t){var n=t.cssRules.length;e.declarations.forEach(function(r){var i=r.asyncKey,o=r.varKey;null!=i&&x.set(i,{rule:e,target:t,index:n}),null!=o&&_.set(o,{rule:e,target:t,index:n})}),T(t,n,e)})}function P(e){var t=x.get(e),n=t.rule,r=t.target,i=t.index;r.deleteRule(i),T(r,i,n),x.delete(e)}function R(e){var t=_.get(e),n=t.rule,r=t.target,i=t.index;r.deleteRule(i),T(r,i,n)}}return{modifySheet:u,shouldRebuildStyle:c}}var Cr='style, link[rel*="stylesheet" i]:not([disabled])';function Er(e){return(e instanceof HTMLStyleElement||e instanceof SVGStyleElement||e instanceof HTMLLinkElement&&e.rel&&e.rel.toLowerCase().includes("stylesheet")&&!e.disabled&&(!d||!e.href.startsWith("moz-extension://")))&&!e.classList.contains("darkreader")&&"print"!==e.media.toLowerCase()&&!e.classList.contains("stylus")}function kr(e,t,n){return void 0===t&&(t=[]),void 0===n&&(n=!0),Er(e)?t.push(e):(e instanceof Element||g&&e instanceof ShadowRoot||e===document)&&(j(e.querySelectorAll(Cr),function(e){return kr(e,t,!1)}),n&&U(e,function(e){return kr(e.shadowRoot,t,!1)})),t}var Or=new WeakSet,Tr=new WeakSet,Ar=!1;document.addEventListener("__darkreader__inlineScriptsAllowed",function(){Ar=!0});var Mr=0,Pr=new Map;function Rr(){Pr.clear()}function Lr(e,t){var i=t.update,a=t.loadingStart,s=t.loadingEnd,l=[],c=e;while((c=c.nextElementSibling)&&c.matches(".darkreader"))l.push(c);var d=l.find(function(e){return e.matches(".darkreader--cors")&&!Tr.has(e)})||null,p=l.find(function(e){return e.matches(".darkreader--sync")&&!Or.has(e)})||null,m=null,g=null,v=!1,y=!0,b=Sr(),w=new MutationObserver(function(){i()}),x={attributes:!0,childList:!0,subtree:!0,characterData:!0};function _(){return e instanceof HTMLStyleElement&&e.textContent.trim().match(ye)}function S(e,t){var n=!1;if(e){var r=void 0;e:for(var i=0,o=e.length;i=0;t--)e.deleteRule(t)}function o(){p||k(),g&&g.stop(),E(),null==p.sheet&&(p.textContent="");var e=p.sheet;return r(e),g?g.run():g=z(p,"prev-sibling",function(){R=!0,a()}),p.sheet}function a(){var r=R;R=!1,b.modifySheet({prepareSheet:o,sourceCSSRules:n,theme:e,ignoreImageAnalysis:t,force:r,isAsyncCancelled:function(){return v}}),y=0===p.sheet.cssRules.length,b.shouldRebuildStyle()&&Z(function(){return i()})}n&&(v=!1,a())}function D(){try{return null==e.sheet?[null,null]:[e.sheet.cssRules,null]}catch(e){return[null,e]}}function j(e){return e&&e.message&&e.message.includes("loading")}function N(){var e=o(D(),2),t=e[0],n=e[1];return n?(F(n),null):t}function I(){X(),h||Ar&&e.sheet||q()}var V=null,B=null;function W(){var e=N();return e?e.length:null}function U(){return W()!==V}function q(){V=W(),K();var t=function(){U()&&(V=W(),i()),Ar&&e.sheet?K():B=requestAnimationFrame(t)};t()}function K(){cancelAnimationFrame(B)}var G=!1;function Y(){function e(){G=!1,v||i()}Ar=!0,K(),G||(G=!0,"function"===typeof queueMicrotask?queueMicrotask(e):requestAnimationFrame(e))}function X(){e.addEventListener("__darkreader__updateSheet",Y)}function Q(){e.removeEventListener("__darkreader__updateSheet",Y)}function J(){Q(),K()}function ee(){w.disconnect(),v=!0,m&&m.stop(),g&&g.stop(),J()}function te(){if(ee(),H(d),H(p),s(),Pr.has(A)){var e=Pr.get(A);Pr.delete(A),e&&e()}}function ne(){w.observe(e,x),e instanceof HTMLStyleElement&&I()}var re=10,ie=0;function oe(){p&&(ie++,ie>re?F("Style sheet was moved multiple times",e):(F("Restore style",p,e),E(),m&&m.skip(),g&&g.skip(),y||(R=!0,i())))}return{details:P,render:L,pause:ee,destroy:te,watch:ne,restore:oe}}function Dr(e,t){return n(this,void 0,void 0,function(){return r(this,function(n){return[2,new Promise(function(n,r){var i=function(){e.removeEventListener("load",o),e.removeEventListener("error",a),Pr.delete(t)},o=function(){i(),$("Linkelement "+t+" has been loaded"),n()},a=function(){i(),r("Linkelement "+t+" couldn't be loaded. "+e.href)};Pr.set(t,function(){i(),r()}),e.addEventListener("load",o),e.addEventListener("error",a),e.href||a()})]})})}function jr(e){return be(e.substring(7).trim().replace(/;$/,"").replace(/screen$/,""))}function Nr(e){return n(this,void 0,void 0,function(){return r(this,function(t){switch(t.label){case 0:return e.startsWith("data:")?[4,fetch(e)]:[3,3];case 1:return[4,t.sent().text()];case 2:return[2,t.sent()];case 3:return[4,Vt({url:e,responseType:"text",mimeType:"text/css",origin:window.location.origin})];case 4:return[2,t.sent()]}})})}function Ir(e,t,o){return void 0===o&&(o=new Map),n(this,void 0,void 0,function(){var n,a,s,l,c,u,h,d,f,p,m;return r(this,function(r){switch(r.label){case 0:e=Se(e),e=Ee(e),e=xe(e,t),n=tt(ye,e),r.label=1;case 1:r.trys.push([1,10,11,12]),a=i(n),s=a.next(),r.label=2;case 2:return s.done?[3,9]:(l=s.value,c=jr(l),u=he(t,c),h=void 0,o.has(u)?(h=o.get(u),[3,7]):[3,3]);case 3:return r.trys.push([3,6,,7]),[4,Nr(u)];case 4:return h=r.sent(),o.set(u,h),[4,Ir(h,we(u),o)];case 5:return h=r.sent(),[3,7];case 6:return d=r.sent(),F(d),h="",[3,7];case 7:e=e.split(l).join(h),r.label=8;case 8:return s=a.next(),[3,2];case 9:return[3,12];case 10:return f=r.sent(),p={error:f},[3,12];case 11:try{s&&!s.done&&(m=a.return)&&m.call(a)}finally{if(p)throw p.error}return[7];case 12:return e=e.trim(),[2,e]}})})}function $r(e,t){if(!t)return null;var n=document.createElement("style");return n.classList.add("darkreader"),n.classList.add("darkreader--cors"),n.media="screen",n.textContent=t,e.parentNode.insertBefore(n,e.nextSibling),n.sheet.disabled=!0,Tr.add(n),n}var Fr,Vr,Br=[],Wr=new Map;function Hr(e){y&&j(e.querySelectorAll(":not(:defined)"),function(e){var t=e.tagName.toLowerCase();if(!t.includes("-")){var n=e.getAttribute("is");if(!n)return;t=n}Wr.has(t)||(Wr.set(t,new Set),Kr(t).then(function(){if(Vr){var e=Wr.get(t);Wr.delete(t),Vr(Array.from(e))}})),Wr.get(t).add(e)})}var zr=!1;document.addEventListener("__darkreader__inlineScriptsAllowed",function(){zr=!0});var Ur=new Map;function qr(e){if(zr=!0,Ur.has(e.detail.tag)){var t=Ur.get(e.detail.tag);t()}}function Kr(e){return n(this,void 0,void 0,function(){return r(this,function(t){return[2,new Promise(function(t){if(window.customElements&&"function"===typeof customElements.whenDefined)customElements.whenDefined(e).then(function(){return t()});else if(zr)Ur.set(e,t),document.dispatchEvent(new CustomEvent("__darkreader__addUndefinedResolver",{detail:{tag:e}}));else{var n=function(){var r=Wr.get(e);r&&r.size>0&&(r.values().next().value.matches(":defined")?t():requestAnimationFrame(n))};requestAnimationFrame(n)}})]})})}function Gr(e){Vr=e}function Yr(){Vr=null,Wr.clear(),document.removeEventListener("__darkreader__isDefined",qr)}function Xr(e,t,n){Zr();var r=new Set(e),i=new WeakMap,o=new WeakMap;function a(e){i.set(e,e.previousElementSibling),o.set(e,e.nextElementSibling)}function s(e){i.delete(e),o.delete(e)}function l(e){return e.previousElementSibling!==i.get(e)||e.nextElementSibling!==o.get(e)}function c(e){var n=e.createdStyles,i=e.removedStyles,o=e.movedStyles;n.forEach(function(e){return a(e)}),o.forEach(function(e){return a(e)}),i.forEach(function(e){return s(e)}),n.forEach(function(e){return r.add(e)}),i.forEach(function(e){return r.delete(e)}),n.size+i.size+o.size>0&&t({created:Array.from(n),removed:Array.from(i),moved:Array.from(o),updated:[]})}function u(e){var t=e.additions,n=e.moves,r=e.deletions,i=new Set,o=new Set,a=new Set;t.forEach(function(e){return kr(e).forEach(function(e){return i.add(e)})}),r.forEach(function(e){return kr(e).forEach(function(e){return o.add(e)})}),n.forEach(function(e){return kr(e).forEach(function(e){return a.add(e)})}),c({createdStyles:i,removedStyles:o,movedStyles:a}),t.forEach(function(e){U(e,p),Hr(e)})}function h(e){var t=new Set(kr(e)),n=new Set,i=new Set,o=new Set;t.forEach(function(e){r.has(e)||n.add(e)}),r.forEach(function(e){t.has(e)||i.add(e)}),t.forEach(function(e){n.has(e)||i.has(e)||!l(e)||o.add(e)}),c({createdStyles:n,removedStyles:i,movedStyles:o}),U(e,p),Hr(e)}function d(e){var n=new Set,r=new Set;e.forEach(function(e){var t=e.target;t.isConnected&&(Er(t)?n.add(t):t instanceof HTMLLinkElement&&t.disabled&&r.add(t))}),n.size+r.size>0&&t({updated:Array.from(n),created:[],removed:Array.from(r),moved:[]})}function f(e){var t=se(e,{onMinorMutations:u,onHugeMutations:h}),n=new MutationObserver(d);n.observe(e,{attributes:!0,attributeFilter:["rel","disabled","media"],subtree:!0}),Br.push(t,n),Fr.add(e)}function p(e){var t=e.shadowRoot;null==t||Fr.has(t)||(f(t),n(t))}e.forEach(a),f(document),U(document.documentElement,p),Gr(function(e){var n=[];e.forEach(function(e){return N(n,kr(e.shadowRoot))}),t({created:n,updated:[],removed:[],moved:[]}),e.forEach(function(e){var t=e.shadowRoot;null!=t&&(p(e),U(t,p),Hr(t))})}),document.addEventListener("__darkreader__isDefined",qr),Hr(document)}function Qr(){Br.forEach(function(e){return e.disconnect()}),Br.splice(0,Br.length),Fr=new WeakSet}function Zr(){Qr(),Yr()}function Jr(e){return(e<16?"0":"")+e.toString(16)}function ei(){if("randomUUID"in crypto){var e=crypto.randomUUID();return e.substring(0,8)+e.substring(9,13)+e.substring(14,18)+e.substring(19,23)+e.substring(24)}return Array.from(crypto.getRandomValues(new Uint8Array(16))).map(function(e){return Jr(e)}).join("")}var ti=new WeakMap,ni=new WeakSet;function ri(e){var t=!1;function n(t,n){var r=a([],o(e.adoptedStyleSheets),!1),i=r.indexOf(t),s=r.indexOf(n);i!==s-1&&(s>=0&&r.splice(s,1),r.splice(i+1,0,n),e.adoptedStyleSheets=r)}function r(){t=!0;var n=a([],o(e.adoptedStyleSheets),!1);e.adoptedStyleSheets.forEach(function(e){if(ni.has(e)){var t=n.indexOf(e);t>=0&&n.splice(t,1),ti.delete(e),ni.delete(e)}}),e.adoptedStyleSheets=n}function i(r,i){e.adoptedStyleSheets.forEach(function(e){if(!ni.has(e)){var o=e.rules,a=new CSSStyleSheet,s=Sr();s.modifySheet({prepareSheet:l,sourceCSSRules:o,theme:r,ignoreImageAnalysis:i,force:!1,isAsyncCancelled:function(){return t}})}function l(){for(var t=a.cssRules.length-1;t>=0;t--)a.deleteRule(t);return n(e,a),ti.set(e,a),ni.add(a),a}})}return{render:i,destroy:r}}function ii(e){document.dispatchEvent(new CustomEvent("__darkreader__inlineScriptsAllowed"));var t=Object.getOwnPropertyDescriptor(CSSStyleSheet.prototype,"addRule"),n=Object.getOwnPropertyDescriptor(CSSStyleSheet.prototype,"insertRule"),r=Object.getOwnPropertyDescriptor(CSSStyleSheet.prototype,"deleteRule"),i=Object.getOwnPropertyDescriptor(CSSStyleSheet.prototype,"removeRule"),s=e?Object.getOwnPropertyDescriptor(Document.prototype,"styleSheets"):null,l=location.hostname.endsWith("baidu.com"),c=l?Object.getOwnPropertyDescriptor(Element.prototype,"getElementsByTagName"):null,u=function(){Object.defineProperty(CSSStyleSheet.prototype,"addRule",t),Object.defineProperty(CSSStyleSheet.prototype,"insertRule",n),Object.defineProperty(CSSStyleSheet.prototype,"deleteRule",r),Object.defineProperty(CSSStyleSheet.prototype,"removeRule",i),document.removeEventListener("__darkreader__cleanUp",u),document.removeEventListener("__darkreader__addUndefinedResolver",h),e&&Object.defineProperty(Document.prototype,"styleSheets",s),l&&Object.defineProperty(Element.prototype,"getElementsByTagName",c)},h=function(e){customElements.whenDefined(e.detail.tag).then(function(){document.dispatchEvent(new CustomEvent("__darkreader__isDefined",{detail:{tag:e.detail.tag}}))})};document.addEventListener("__darkreader__cleanUp",u),document.addEventListener("__darkreader__addUndefinedResolver",h);var d=new Event("__darkreader__updateSheet");function f(e,n,r){return t.value.call(this,e,n,r),this.ownerNode&&!this.ownerNode.classList.contains("darkreader")&&this.ownerNode.dispatchEvent(d),-1}function p(e,t){var r=n.value.call(this,e,t);return this.ownerNode&&!this.ownerNode.classList.contains("darkreader")&&this.ownerNode.dispatchEvent(d),r}function m(e){r.value.call(this,e),this.ownerNode&&!this.ownerNode.classList.contains("darkreader")&&this.ownerNode.dispatchEvent(d)}function g(e){i.value.call(this,e),this.ownerNode&&!this.ownerNode.classList.contains("darkreader")&&this.ownerNode.dispatchEvent(d)}function v(){var e=s.get.call(this),t=a([],o(e),!1).filter(function(e){return!e.ownerNode.classList.contains("darkreader")});return Object.setPrototypeOf(t,StyleSheetList.prototype)}function y(e){var t=this;if("style"!==e)return c.value.call(this,e);var n=function(){var n=c.value.call(t,e);return Object.setPrototypeOf(a([],o(n),!1).filter(function(e){return!e.classList.contains("darkreader")}),NodeList.prototype)},r=n(),i={get:function(e,t){return n()[Number(t)]}};return r=new Proxy(r,i),r}Object.defineProperty(CSSStyleSheet.prototype,"addRule",Object.assign({},t,{value:f})),Object.defineProperty(CSSStyleSheet.prototype,"insertRule",Object.assign({},n,{value:p})),Object.defineProperty(CSSStyleSheet.prototype,"deleteRule",Object.assign({},r,{value:m})),Object.defineProperty(CSSStyleSheet.prototype,"removeRule",Object.assign({},i,{value:g})),e&&Object.defineProperty(Document.prototype,"styleSheets",Object.assign({},s,{get:v})),l&&Object.defineProperty(Element.prototype,"getElementsByTagName",Object.assign({},c,{value:y}))}var oi=ei(),ai=new Map,si=[],li=null,ci=null,ui=null,hi=null,di=null;function fi(e,t){void 0===t&&(t=document.head||document);var n=t.querySelector("."+e);return n||(n=document.createElement("style"),n.classList.add("darkreader"),n.classList.add(e),n.media="screen",n.textContent=""),n}function pi(e,t){void 0===t&&(t=document.head||document);var n=t.querySelector("."+e);return n||(n=document.createElement("script"),n.classList.add("darkreader"),n.classList.add(e)),n}var mi=new Map;function gi(e,t){mi.has(t)&&mi.get(t).stop(),mi.set(t,z(e,"parent"))}function vi(){j(mi.values(),function(e){return e.stop()}),mi.clear()}function yi(){var e=fi("darkreader--fallback",document);e.textContent=ln(li,{strict:!0}),document.head.insertBefore(e,document.head.firstChild),gi(e,"fallback");var n=fi("darkreader--user-agent");n.textContent=rn(li,ui,li.styleSystemControls),document.head.insertBefore(n,e.nextSibling),gi(n,"user-agent");var r=fi("darkreader--text");li.useFont||li.textStroke>0?r.textContent=Lt(li):r.textContent="",document.head.insertBefore(r,e.nextSibling),gi(r,"text");var i=fi("darkreader--invert");ci&&Array.isArray(ci.invert)&&ci.invert.length>0?i.textContent=[ci.invert.join(", ")+" {"," filter: "+Dt(t(t({},li),{contrast:0===li.mode?li.contrast:Je(li.contrast-10,0,100)}))+" !important;","}"].join("\n"):i.textContent="",document.head.insertBefore(i,r.nextSibling),gi(i,"invert");var o=fi("darkreader--inline");o.textContent=tr(),document.head.insertBefore(o,i.nextSibling),gi(o,"inline");var a=fi("darkreader--override");a.textContent=ci&&ci.css?xi(ci.css):"",document.head.appendChild(a),gi(a,"override");var s=fi("darkreader--variables"),l=on(li),c=li.darkSchemeBackgroundColor,u=li.darkSchemeTextColor,h=li.lightSchemeBackgroundColor,d=li.lightSchemeTextColor,f=li.mode,p=0===f?h:c,m=0===f?d:u;p=St(je(p),li),m=Tt(je(m),li),s.textContent=[":root {"," --darkreader-neutral-background: "+p+";"," --darkreader-neutral-text: "+m+";"," --darkreader-selection-background: "+l.backgroundColorSelection+";"," --darkreader-selection-text: "+l.foregroundColorSelection+";","}"].join("\n"),document.head.insertBefore(s,o.nextSibling),gi(s,"variables");var g=fi("darkreader--root-vars");document.head.insertBefore(g,s.nextSibling);var v=pi("darkreader--proxy");v.append("("+ii+")(!"+ci.disableStyleSheetsProxy+")"),document.head.insertBefore(v,g.nextSibling),v.remove()}var bi=new Set;function wi(e){var n=fi("darkreader--inline",e);n.textContent=tr(),e.insertBefore(n,e.firstChild);var r=fi("darkreader--override",e);r.textContent=ci&&ci.css?xi(ci.css):"",e.insertBefore(r,n.nextSibling);var i=fi("darkreader--invert",e);ci&&Array.isArray(ci.invert)&&ci.invert.length>0?i.textContent=[ci.invert.join(", ")+" {"," filter: "+Dt(t(t({},li),{contrast:0===li.mode?li.contrast:Je(li.contrast-10,0,100)}))+" !important;","}"].join("\n"):i.textContent="",e.insertBefore(i,r.nextSibling),bi.add(e)}function xi(e){return e.replace(/\${(.+?)}/g,function(e,t){var n=dn(t);return n?yt(n,li):(F("Couldn't parse CSSTemplate's color."),t)})}function _i(){var e=document.querySelector(".darkreader--fallback");e&&(e.textContent="")}function Si(){Ai();var e=kr(document),t=e.filter(function(e){return!ai.has(e)}).map(function(e){return ki(e)});t.map(function(e){return e.details({secondRound:!1})}).filter(function(e){return e&&e.rules.length>0}).forEach(function(e){An.addRulesForMatching(e.rules)}),An.matchVariablesAndDependants(),An.setOnRootVariableChange(function(){An.putRootVars(document.head.querySelector(".darkreader--root-vars"),li)}),An.putRootVars(document.head.querySelector(".darkreader--root-vars"),li),ai.forEach(function(e){return e.render(li,hi)}),0===Ei.size&&_i(),t.forEach(function(e){return e.watch()});var n=I(document.querySelectorAll(er));U(document.documentElement,function(e){wi(e.shadowRoot);var t=e.shadowRoot.querySelectorAll(er);t.length>0&&N(n,t)}),n.forEach(function(e){return dr(e,li,di,hi)}),Ni(document)}var Ci=0,Ei=new Set;function ki(e){var t=++Ci;function n(){if(!q()||!Ri){Ei.add(t),$("Current amount of styles loading: "+Ei.size);var e=document.querySelector(".darkreader--fallback");e.textContent||(e.textContent=ln(li,{strict:!1}))}}function r(){Ei.delete(t),$("Removed loadingStyle "+t+", now awaiting: "+Ei.size),$("To-do to be loaded",Ei),0===Ei.size&&q()&&_i()}function i(){var e=o.details({secondRound:!0});e&&(An.addRulesForMatching(e.rules),An.matchVariablesAndDependants(),o.render(li,hi))}$("New manager for element, with loadingStyleID "+t,e);var o=Lr(e,{update:i,loadingStart:n,loadingEnd:r});return ai.set(e,o),o}function Oi(e){var t=ai.get(e);t&&(t.destroy(),ai.delete(e))}var Ti=V(function(e){ai.forEach(function(e){return e.render(li,hi)}),si.forEach(function(e){return e.render(li,hi)}),e&&e()}),Ai=function(){Ti.cancel()};function Mi(){0!==Ei.size?F("DOM is ready, but still have styles being loaded.",Ei):_i()}var Pi=null,Ri=!document.hidden;function Li(e){var t=Boolean(Pi);Pi=function(){document.hidden||(Di(),e(),Ri=!0)},t||document.addEventListener("visibilitychange",Pi)}function Di(){document.removeEventListener("visibilitychange",Pi),Pi=null}function ji(){function e(){Si(),Ii()}yi(),document.hidden?Li(e):e(),yr(li)}function Ni(e){if(Array.isArray(e.adoptedStyleSheets)&&e.adoptedStyleSheets.length>0){var t=ri(e);si.push(t),t.render(li,hi)}}function Ii(){var e=Array.from(ai.keys());Xr(e,function(e){var t=e.created,n=e.updated,r=e.removed,i=e.moved,o=r,a=t.concat(n).concat(i).filter(function(e){return!ai.has(e)}),s=i.filter(function(e){return ai.has(e)});$("Styles to be removed:",o),o.forEach(function(e){return Oi(e)});var l=a.map(function(e){return ki(e)});l.map(function(e){return e.details({secondRound:!1})}).filter(function(e){return e&&e.rules.length>0}).forEach(function(e){An.addRulesForMatching(e.rules)}),An.matchVariablesAndDependants(),l.forEach(function(e){return e.render(li,hi)}),l.forEach(function(e){return e.watch()}),s.forEach(function(e){return ai.get(e).restore()})},function(e){wi(e),Ni(e)}),or(function(e){if(dr(e,li,di,hi),e===document.documentElement){var t=e.getAttribute("style");t.includes("--")&&(An.matchVariablesAndDependants(),An.putRootVars(document.head.querySelector(".darkreader--root-vars"),li))}},function(e){wi(e);var t=e.querySelectorAll(er);t.length>0&&j(t,function(e){return dr(e,li,di,hi)})}),G(Mi)}function $i(){ai.forEach(function(e){return e.pause()}),vi(),Zr(),sr(),Y(Mi),J()}function Fi(){var e=document.createElement("meta");e.name="darkreader",e.content=oi,document.head.appendChild(e)}function Vi(){var e=document.querySelector('meta[name="darkreader"]');return e?e.content!==oi:(Fi(),!1)}function Bi(e,t,n){if(li=e,ci=t,ci?(hi=Array.isArray(ci.ignoreImageAnalysis)?ci.ignoreImageAnalysis:[],di=Array.isArray(ci.ignoreInlineStyle)?ci.ignoreInlineStyle:[]):(hi=[],di=[]),ui=n,document.head){if(Vi())return;document.documentElement.setAttribute("data-darkreader-mode","dynamic"),document.documentElement.setAttribute("data-darkreader-scheme",li.mode?"dark":"dimmed"),ji()}else{if(!d){var r=fi("darkreader--fallback");document.documentElement.appendChild(r),r.textContent=ln(li,{strict:!0})}var i=new MutationObserver(function(){if(document.head){if(i.disconnect(),Vi())return void Hi();ji()}});i.observe(document,{childList:!0,subtree:!0})}}function Wi(){document.dispatchEvent(new CustomEvent("__darkreader__cleanUp")),H(document.head.querySelector(".darkreader--proxy"))}function Hi(){document.documentElement.removeAttribute("data-darkreader-mode"),document.documentElement.removeAttribute("data-darkreader-scheme"),zi(),H(document.querySelector(".darkreader--fallback")),document.head&&(br(),H(document.head.querySelector(".darkreader--user-agent")),H(document.head.querySelector(".darkreader--text")),H(document.head.querySelector(".darkreader--invert")),H(document.head.querySelector(".darkreader--inline")),H(document.head.querySelector(".darkreader--override")),H(document.head.querySelector(".darkreader--variables")),H(document.head.querySelector(".darkreader--root-vars")),H(document.head.querySelector('meta[name="darkreader"]')),Wi()),bi.forEach(function(e){H(e.querySelector(".darkreader--inline")),H(e.querySelector(".darkreader--override"))}),bi.clear(),j(ai.keys(),function(e){return Oi(e)}),Ei.clear(),Rr(),j(document.querySelectorAll(".darkreader"),H),si.forEach(function(e){e.destroy()}),si.splice(0)}function zi(){An.clear(),le.clear(),Di(),Ai(),$i(),Sn()}var Ui=/url\(\"(blob\:.*?)\"\)/g;function qi(e){return n(this,void 0,void 0,function(){var t,n;return r(this,function(r){switch(r.label){case 0:return t=[],tt(Ui,e,1).forEach(function(e){var n=w(e);t.push(n)}),[4,Promise.all(t)];case 1:return n=r.sent(),[2,e.replace(Ui,function(){return'url("'+n.shift()+'")'})]}})})}var Ki='/*\n _______\n / \\\n .==. .==.\n (( ))==(( ))\n / "==" "=="\\\n /____|| || ||___\\\n ________ ____ ________ ___ ___\n | ___ \\ / \\ | ___ \\ | | / /\n | | \\ \\ / /\\ \\ | | \\ \\| |_/ /\n | | ) / /__\\ \\ | |__/ /| ___ \\\n | |__/ / ______ \\| ____ \\| | \\ \\\n_______|_______/__/ ____ \\__\\__|___\\__\\__|___\\__\\____\n| ___ \\ | ____/ / \\ | ___ \\ | ____| ___ \\\n| | \\ \\| |___ / /\\ \\ | | \\ \\| |___| | \\ \\\n| |__/ /| ____/ /__\\ \\ | | ) | ____| |__/ /\n| ____ \\| |__/ ______ \\| |__/ /| |___| ____ \\\n|__| \\__\\____/__/ \\__\\_______/ |______|__| \\__\\\n https://darkreader.org\n*/\n\n/*! Dark reader generated CSS | Licensed under MIT https://github.com/darkreader/darkreader/blob/master/LICENSE */\n';function Gi(){return n(this,void 0,void 0,function(){function e(e,n){var r=document.querySelector(e);r&&r.textContent&&(t.push("/* "+n+" */"),t.push(r.textContent),t.push(""))}var t,n,i,o,a;return r(this,function(r){switch(r.label){case 0:return t=[Ki],e(".darkreader--fallback","Fallback Style"),e(".darkreader--user-agent","User-Agent Style"),e(".darkreader--text","Text Style"),e(".darkreader--invert","Invert Style"),e(".darkreader--variables","Variables Style"),n=[],document.querySelectorAll(".darkreader--sync").forEach(function(e){j(e.sheet.cssRules,function(e){e&&e.cssText&&n.push(e.cssText)})}),n.length?(i=nt(n.join("\n")),t.push("/* Modified CSS */"),a=(o=t).push,[4,qi(i)]):[3,2];case 1:a.apply(o,[r.sent()]),t.push(""),r.label=2;case 2:return e(".darkreader--override","Override Style"),[2,t.join("\n")]}})})}var Yi=!1,Xi=function(){try{return window.self!==window.top}catch(e){return console.warn(e),!0}}();function Qi(e,n){void 0===e&&(e={}),void 0===n&&(n=null);var r=t(t({},L),e);if(r.engine!==P.dynamicTheme)throw new Error("Theme engine is not supported.");Bi(r,n,Xi),Yi=!0}function Zi(){return Yi}function Ji(){Hi(),Yi=!1}var eo=matchMedia("(prefers-color-scheme: dark)"),to={themeOptions:null,fixes:null};function no(){eo.matches?Qi(to.themeOptions,to.fixes):Ji()}function ro(e,t){void 0===e&&(e={}),void 0===t&&(t=null),e?(to={themeOptions:e,fixes:t},no(),v?eo.addEventListener("change",no):eo.addListener(no)):(v?eo.removeEventListener("change",no):eo.removeListener(no),Ji())}function io(){return n(this,void 0,void 0,function(){return r(this,function(e){switch(e.label){case 0:return[4,Gi()];case 1:return[2,e.sent()]}})})}var oo=C;e.auto=ro,e.disable=Ji,e.enable=Qi,e.exportGeneratedCSS=io,e.isEnabled=Zi,e.setFetchMethod=oo,Object.defineProperty(e,"__esModule",{value:!0})})},nPnh:function(e,t,n){"use strict";n.d(t,"b",function(){return i}),n.d(t,"c",function(){return o}),n.d(t,"a",function(){return a});var r=Math.round;function i(e,t,n){if(t){var i=t.x1,o=t.x2,s=t.y1,l=t.y2;e.x1=i,e.x2=o,e.y1=s,e.y2=l;var c=n&&n.lineWidth;return c?(r(2*i)===r(2*o)&&(e.x1=e.x2=a(i,c,!0)),r(2*s)===r(2*l)&&(e.y1=e.y2=a(s,c,!0)),e):e}}function o(e,t,n){if(t){var r=t.x,i=t.y,o=t.width,s=t.height;e.x=r,e.y=i,e.width=o,e.height=s;var l=n&&n.lineWidth;return l?(e.x=a(r,l,!0),e.y=a(i,l,!0),e.width=Math.max(a(r+o,l,!1)-e.x,0===o?0:1),e.height=Math.max(a(i+s,l,!1)-e.y,0===s?0:1),e):e}}function a(e,t,n){if(!t)return e;var i=r(2*e);return(i+r(t))%2===0?i/2:(i+(n?1:-1))/2}},nWMQ:function(e,t,n){"use strict";var r=n("c0Oy"),i=n("WGNW"),o=n("rKIl"),a=n("zNw+"),s=n("+y51"),l=n("4o36"),c=n("YEVI"),u=n("u8+u"),h=n("wUWy"),d=n("cQyX"),f=n("lvAo"),p=n("QSs8");e.exports=function(e,t,n,m,g,v){var y=r[e],b=y,w=g?"set":"add",x=b&&b.prototype,_={},S=function(e){var t=x[e];o(x,e,"delete"==e?function(e){return!(v&&!u(e))&&t.call(this,0===e?0:e)}:"has"==e?function(e){return!(v&&!u(e))&&t.call(this,0===e?0:e)}:"get"==e?function(e){return v&&!u(e)?void 0:t.call(this,0===e?0:e)}:"add"==e?function(e){return t.call(this,0===e?0:e),this}:function(e,n){return t.call(this,0===e?0:e,n),this})};if("function"==typeof b&&(v||x.forEach&&!h(function(){(new b).entries().next()}))){var C=new b,E=C[w](v?{}:-0,1)!=C,k=h(function(){C.has(1)}),O=d(function(e){new b(e)}),T=!v&&h(function(){var e=new b,t=5;while(t--)e[w](t,t);return!e.has(-0)});O||(b=t(function(t,n){c(t,b,e);var r=p(new y,t,b);return void 0!=n&&l(n,g,r[w],r),r}),b.prototype=x,x.constructor=b),(k||T)&&(S("delete"),S("has"),g&&S("get")),(T||E)&&S(w),v&&x.clear&&delete x.clear}else b=m.getConstructor(t,e,g,w),a(b.prototype,n),s.NEED=!0;return f(b,e),_[e]=b,i(i.G+i.W+i.F*(b!=y),_),v||m.setStrong(b,e,g),b}},nYLq:function(e,t,n){var r=n("AUWw"),i=n("OsVd");e.exports=function(e){if(void 0===e)return 0;var t=r(e),n=i(t);if(t!==n)throw RangeError("Wrong length!");return n}},"nwK/":function(e,t,n){var r=n("V5/1").f,i=Function.prototype,o=/^\s*function ([^ (]*)/,a="name";a in i||n("8Z/V")&&r(i,a,{configurable:!0,get:function(){try{return(""+this).match(o)[1]}catch(e){return""}}})},o0o1:function(e,t,n){e.exports=n("wOl0")},o175:function(e,t,n){n("Jaki")("Uint8",1,function(e){return function(t,n,r){return e(this,t,n,r)}},!0)},o8NH:function(e,t,n){var r=n("Y7ZC");r(r.S+r.F,"Object",{assign:n("kwZ1")})},oF12:function(e,t,n){var r=n("u8+u"),i=n("2we2"),o=n("gL7N")("match");e.exports=function(e){var t;return r(e)&&(void 0!==(t=e[o])?!!t:"RegExp"==i(e))}},oVml:function(e,t,n){var r=n("5K7Z"),i=n("fpC5"),o=n("FpHa"),a=n("VVlx")("IE_PROTO"),s=function(){},l="prototype",c=function(){var e,t=n("Hsns")("iframe"),r=o.length,i="<",a=">";t.style.display="none",n("MvwC").appendChild(t),t.src="javascript:",e=t.contentWindow.document,e.open(),e.write(i+"script"+a+"document.F=Object"+i+"/script"+a),e.close(),c=e.F;while(r--)delete c[l][o[r]];return c()};e.exports=Object.create||function(e,t){var n;return null!==e?(s[l]=r(e),n=new s,s[l]=null,n[a]=e):n=c(),void 0===t?n:i(n,t)}},ohPV:function(e,t,n){"use strict";function r(e,t){e.prototype=Object.create(t.prototype),e.prototype.constructor=e,e.__proto__=t}n.d(t,"a",function(){return r})},oxo0:function(e,t){var n={}.hasOwnProperty;e.exports=function(e,t){return n.call(e,t)}},p0pE:function(e,t,n){var r=n("eHn4");function i(e){for(var t=1;t=e.length?{done:!0}:{done:!1,value:e[t++]}},e:function(e){throw e},f:n}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var r,i,o=!0,a=!1;return{s:function(){r=e[Symbol.iterator]()},n:function(){var e=r.next();return o=e.done,e},e:function(e){a=!0,i=e},f:function(){try{o||null==r.return||r.return()}finally{if(a)throw i}}}}function l(e,t,n,r,i,o,a){try{var s=e[o](a),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(r,i)}function c(e){return function(){var t=this,n=arguments;return new Promise(function(r,i){var o=e.apply(t,n);function a(e){l(o,r,i,a,s,"next",e)}function s(e){l(o,r,i,a,s,"throw",e)}a(void 0)})}}function u(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function h(e){for(var t=1;te.length)&&(t=e.length);for(var n=0,r=new Array(t);n0&&void 0!==arguments[0]?arguments[0]:{};b=[],w=e.validKeys||[]}function _(e){Object.keys(e).forEach(function(e){(0,r.default)(w.concat("default").indexOf(e)>-1,"Invalid key ".concat(e," from plugin"))}),b.push(e)}function S(e){return(0,r.default)(w.indexOf(e)>-1,"Invalid key ".concat(e)),b.filter(function(t){return e in t}).map(function(t){return t[e]})}function C(){for(var e=arguments.length,t=new Array(e),n=0;n{200===e.code&&this.setState({user:e.data,order:this.props.order})}),this.props.order.invite_user_id&&Object(E["a"])("/admin/user/getUserInfoById",{id:this.props.order.invite_user_id}).then(e=>{this.setState({invite_user:e.data})})}onShow(){this.setState({visible:!this.state.visible})}jumpUserFilter(e,t,n){this.props.dispatch({type:"user/addFilter",key:e,condition:t,value:n}),O.a.push("/user")}render(){var e={marginBottom:10};return g.a.createElement("div",null,g.a.createElement("div",{onClick:()=>this.getUserInfo()},this.props.children),g.a.createElement(x["a"],{visible:this.state.visible,title:"\u8ba2\u5355\u4fe1\u606f",onCancel:()=>this.onShow(),footer:!1},this.state.user.email?g.a.createElement("div",null,g.a.createElement(S["a"],{gutter:[16,16],style:e},g.a.createElement(C["a"],{span:6},"\u90ae\u7bb1"),g.a.createElement(C["a"],{span:18},g.a.createElement("a",{onClick:()=>this.jumpUserFilter("email","\u6a21\u7cca",this.state.user.email),href:"javascript:void(0);"},this.state.user.email))),g.a.createElement(S["a"],{gutter:[16,16],style:e},g.a.createElement(C["a"],{span:6},"\u8ba2\u5355\u53f7"),g.a.createElement(C["a"],{span:18},this.state.order.trade_no)),g.a.createElement(S["a"],{gutter:[16,16],style:e},g.a.createElement(C["a"],{span:6},"\u8ba2\u5355\u5468\u671f"),g.a.createElement(C["a"],{span:18},y["a"].periodText[this.state.order.period])),g.a.createElement(S["a"],{gutter:[16,16],style:e},g.a.createElement(C["a"],{span:6},"\u8ba2\u5355\u72b6\u6001"),g.a.createElement(C["a"],{span:18},y["a"].orderStatusText[this.state.order.status])),g.a.createElement(S["a"],{gutter:[16,16],style:e},g.a.createElement(C["a"],{span:6},"\u8ba2\u9605\u8ba1\u5212"),g.a.createElement(C["a"],{span:18},this.state.order.plan_name)),g.a.createElement(S["a"],{gutter:[16,16],style:e},g.a.createElement(C["a"],{span:6},"\u56de\u8c03\u5355\u53f7"),g.a.createElement(C["a"],{span:18},this.state.order.callback_no?this.state.order.callback_no:"-")),g.a.createElement(_["a"],null),g.a.createElement(S["a"],{gutter:[16,16],style:e},g.a.createElement(C["a"],{span:6},"\u652f\u4ed8\u91d1\u989d"),g.a.createElement(C["a"],{span:18},(this.state.order.total_amount/100).toFixed(2))),g.a.createElement(S["a"],{gutter:[16,16],style:e},g.a.createElement(C["a"],{span:6},"\u4f59\u989d\u652f\u4ed8"),g.a.createElement(C["a"],{span:18},(this.state.order.balance_amount/100).toFixed(2))),g.a.createElement(S["a"],{gutter:[16,16],style:e},g.a.createElement(C["a"],{span:6},"\u4f18\u60e0\u91d1\u989d"),g.a.createElement(C["a"],{span:18},(this.state.order.discount_amount/100).toFixed(2))),g.a.createElement(S["a"],{gutter:[16,16],style:e},g.a.createElement(C["a"],{span:6},"\u9000\u56de\u91d1\u989d"),g.a.createElement(C["a"],{span:18},(this.state.order.refund_amount/100).toFixed(2))),g.a.createElement(S["a"],{gutter:[16,16],style:e},g.a.createElement(C["a"],{span:6},"\u6298\u62b5\u91d1\u989d"),g.a.createElement(C["a"],{span:18},(this.state.order.surplus_amount/100).toFixed(2))),g.a.createElement(_["a"],null),g.a.createElement(S["a"],{gutter:[16,16],style:e},g.a.createElement(C["a"],{span:6},"\u521b\u5efa\u65f6\u95f4"),g.a.createElement(C["a"],{span:18},w()(1e3*this.state.order.created_at).format("YYYY-MM-DD HH:mm:ss"))),g.a.createElement(S["a"],{gutter:[16,16],style:e},g.a.createElement(C["a"],{span:6},"\u66f4\u65b0\u65f6\u95f4"),g.a.createElement(C["a"],{span:18},w()(1e3*this.state.order.updated_at).format("YYYY-MM-DD HH:mm:ss"))),this.state.order.invite_user_id&&3===this.state.order.status&&g.a.createElement("div",null,g.a.createElement(_["a"],null),g.a.createElement(S["a"],{gutter:[16,16],style:e},g.a.createElement(C["a"],{span:6},"\u9080\u8bf7\u4eba"),g.a.createElement(C["a"],{span:18},g.a.createElement(d["a"],{title:"\u67e5\u770bTA\u9080\u8bf7\u7684\u4eba"},g.a.createElement("a",{onClick:()=>this.jumpUserFilter("invite_by_email","\u6a21\u7cca",this.state.invite_user.email),href:"javascript:void(0);"},this.state.invite_user.email)))),g.a.createElement(S["a"],{gutter:[16,16],style:e},g.a.createElement(C["a"],{span:6},"\u4f63\u91d1\u91d1\u989d"),g.a.createElement(C["a"],{span:18},(this.state.order.commission_balance/100).toFixed(2))),g.a.createElement(S["a"],{gutter:[16,16],style:e},g.a.createElement(C["a"],{span:6},"\u4f63\u91d1\u72b6\u6001"),g.a.createElement(C["a"],{span:18},y["a"].commissionStatusText[this.state.order.commission_status])))):g.a.createElement(f["a"],{type:"loading",style:{fontSize:24,color:"#415A94"}})))}}var M=Object(T["c"])()(A),P=n("mCd/"),R=n("yiO6"),L=n("hVla");class D extends g.a.Component{constructor(e){super(e),this.state={}}componentWillUnmount(){this.props.dispatch({type:"order/empty"}),this.props.dispatch({type:"order/setState",payload:{filter:[]}})}componentDidMount(){this.props.dispatch({type:"order/fetch"}),this.props.dispatch({type:"plan/fetch"})}update(e,t,n){this.props.dispatch({type:"order/update",tradeNo:e,key:t,value:n})}tableOnChange(e){this.props.dispatch({type:"order/changeTable",pagination:e})}render(){var e=this.props.order,t=e.orders,n=e.fetchLoading,r=e.pagination,a=e.filter,m=[{title:"# \u8ba2\u5355\u53f7",dataIndex:"trade_no",key:"trade_no",render:(e,t)=>{return g.a.createElement(M,{order:t},g.a.createElement("a",{href:"javascript:void(0);"},e.substr(0,3),"...",e.substr(-3)))}},{title:"\u7c7b\u578b",dataIndex:"type",key:"type",render:e=>{var t={1:"\u65b0\u8d2d",2:"\u7eed\u8d39",3:"\u53d8\u66f4",4:"\u6d41\u91cf\u5305"};return t[e]}},{title:"\u8ba2\u9605\u8ba1\u5212",dataIndex:"plan_name",key:"plan_name"},{title:"\u5468\u671f",dataIndex:"period",key:"period",align:"center",render:(e,t)=>{return g.a.createElement(p["a"],null,y["a"].periodText[t.period])}},{title:"\u652f\u4ed8\u91d1\u989d",dataIndex:"total_amount",key:"total_amount",align:"right",render:e=>{return(e/100).toFixed(2)}},{title:g.a.createElement("span",null,g.a.createElement(d["a"],{placement:"top",title:"\u6807\u8bb0\u4e3a[\u5df2\u652f\u4ed8]\u540e\u5c06\u4f1a\u7531\u7cfb\u7edf\u8fdb\u884c\u5f00\u901a\u540e\u5e76\u5b8c\u6210"},"\u8ba2\u5355\u72b6\u6001 ",g.a.createElement(f["a"],{type:"question-circle"}))),dataIndex:"status",key:"status",render:(e,t)=>{var n=["error","processing","default","success","default"];return g.a.createElement("div",null,g.a.createElement(c["a"],{disabled:0!==e,trigger:["click"],overlay:g.a.createElement(h["a"],null,g.a.createElement(h["a"].Item,{key:"1",onClick:e=>{this.props.dispatch({type:"order/paid",tradeNo:t.trade_no})}},"\u5df2\u652f\u4ed8"),g.a.createElement(h["a"].Item,{key:"2",onClick:e=>{this.props.dispatch({type:"order/cancel",tradeNo:t.trade_no})}},"\u53d6\u6d88"))},g.a.createElement("div",null,g.a.createElement(u["a"],{status:n[e]}),g.a.createElement("span",null,y["a"].orderStatusText[e]," "),0===e&&g.a.createElement("a",{href:"javascript:void(0);"},"\u6807\u8bb0\u4e3a ",g.a.createElement(f["a"],{type:"caret-down"})))))}},{title:"\u4f63\u91d1\u91d1\u989d",dataIndex:"commission_balance",key:"commission_balance",align:"right",render:(e,t)=>{return 0===t.status||2===t.status?"-":e?(e/100).toFixed(2):"-"}},{title:g.a.createElement("span",null,"\u4f63\u91d1\u72b6\u6001 ",g.a.createElement(d["a"],{placement:"top",title:"\u6807\u8bb0\u4e3a[\u6709\u6548]\u540e\u5c06\u4f1a\u7531\u7cfb\u7edf\u5904\u7406\u540e\u53d1\u653e\u5230\u7528\u6237\u5e76\u5b8c\u6210"},g.a.createElement(f["a"],{type:"question-circle"}))),dataIndex:"commission_status",key:"commission_status",render:(e,t)=>{if(0===t.status||2===t.status)return"-";if(!t.commission_balance)return"-";var n=["default","processing","success","error"];return 2===t.commission_status?g.a.createElement("div",null,g.a.createElement(u["a"],{status:n[e]}),g.a.createElement("span",null,y["a"].commissionStatusText[e]," ")):g.a.createElement("div",null,g.a.createElement(c["a"],{trigger:["click"],overlay:g.a.createElement(h["a"],null,g.a.createElement(h["a"].Item,{key:"0",disabled:0===e,onClick:e=>{this.update(t.trade_no,"commission_status",e.key)}},"\u5f85\u786e\u8ba4"),g.a.createElement(h["a"].Item,{key:"1",disabled:1===e,onClick:e=>{this.update(t.trade_no,"commission_status",e.key)}},"\u6709\u6548"),g.a.createElement(h["a"].Item,{key:"3",disabled:3===e,onClick:e=>{this.update(t.trade_no,"commission_status",e.key)}},"\u65e0\u6548"))},g.a.createElement("div",null,g.a.createElement(u["a"],{status:n[e]}),g.a.createElement("span",null,y["a"].commissionStatusText[e]," "),g.a.createElement("a",{href:"javascript:void(0);"},"\u6807\u8bb0\u4e3a ",g.a.createElement(f["a"],{type:"caret-down"})))))}},{title:"\u521b\u5efa\u65f6\u95f4",dataIndex:"created_at",key:"created_at",align:"right",render:e=>{return w()(1e3*e).format("YYYY/MM/DD HH:mm")}}];return g.a.createElement(v["a"],i()({},this.props,{title:"\u8ba2\u5355\u7ba1\u7406"}),g.a.createElement("div",{className:"d-flex justify-content-between align-items-center"}),g.a.createElement("div",{className:"block block-rounded ".concat(n?"block-mode-loading":"")},g.a.createElement("div",{className:"bg-white"},g.a.createElement("div",{style:{padding:15}},g.a.createElement(R["a"],null,g.a.createElement(L["a"],{value:a,onOk:e=>this.props.dispatch({type:"order/filter",filter:e}),keys:[{key:"trade_no",title:"\u8ba2\u5355\u53f7",condition:["\u6a21\u7cca","="]},{key:"status",title:"\u8ba2\u5355\u72b6\u6001",type:"select",condition:["="],options:[{key:"\u672a\u652f\u4ed8",value:0},{key:"\u5df2\u652f\u4ed8",value:1},{key:"\u5df2\u53d6\u6d88",value:2},{key:"\u5df2\u5b8c\u6210",value:3}]},{key:"commission_status",title:"\u4f63\u91d1\u72b6\u6001",type:"select",condition:["="],options:[{key:"\u5f85\u786e\u8ba4",value:0},{key:"\u6709\u6548",value:1},{key:"\u65e0\u6548",value:3}]},{key:"user_id",title:"\u7528\u6237ID",condition:["="]},{key:"invite_user_id",title:"\u9080\u8bf7\u4ebaID",condition:["=","!="]},{key:"callback_no",title:"\u56de\u8c03\u5355\u53f7",condition:["\u6a21\u7cca"]}]},g.a.createElement(l["a"],{type:a.length>0?"primary":""},g.a.createElement(f["a"],{type:"filter"})," \u8fc7\u6ee4\u5668"))),g.a.createElement(P["a"],null,g.a.createElement(l["a"],{style:{marginLeft:10}},g.a.createElement(f["a"],{type:"plus"})," \u6dfb\u52a0\u8ba2\u5355"))),g.a.createElement(o["a"],{tableLayout:"auto",dataSource:t,pagination:s()({},r,{size:"small"}),columns:m,scroll:{x:1050},onChange:e=>this.tableOnChange(e)}))))}}t["default"]=Object(T["c"])(e=>{var t=e.order;return{order:t}})(D)},q97H:function(e,t,n){"use strict";var r=n("330p");n("WGNW")({target:"RegExp",proto:!0,forced:r!==/./.exec},{exec:r})},qDJ8:function(e,t,n){"use strict";e.exports=function(e){return null!=e&&"object"===typeof e&&!1===Array.isArray(e)}},qIgq:function(e,t,n){var r=n("Wz2H"),i=n("IuST"),o=n("198K");function a(e,t){return r(e)||i(e,t)||o()}e.exports=a},qT12:function(e,t,n){"use strict";var r="function"===typeof Symbol&&Symbol.for,i=r?Symbol.for("react.element"):60103,o=r?Symbol.for("react.portal"):60106,a=r?Symbol.for("react.fragment"):60107,s=r?Symbol.for("react.strict_mode"):60108,l=r?Symbol.for("react.profiler"):60114,c=r?Symbol.for("react.provider"):60109,u=r?Symbol.for("react.context"):60110,h=r?Symbol.for("react.async_mode"):60111,d=r?Symbol.for("react.concurrent_mode"):60111,f=r?Symbol.for("react.forward_ref"):60112,p=r?Symbol.for("react.suspense"):60113,m=r?Symbol.for("react.suspense_list"):60120,g=r?Symbol.for("react.memo"):60115,v=r?Symbol.for("react.lazy"):60116,y=r?Symbol.for("react.block"):60121,b=r?Symbol.for("react.fundamental"):60117,w=r?Symbol.for("react.responder"):60118,x=r?Symbol.for("react.scope"):60119;function _(e){if("object"===typeof e&&null!==e){var t=e.$$typeof;switch(t){case i:switch(e=e.type,e){case h:case d:case a:case l:case s:case p:return e;default:switch(e=e&&e.$$typeof,e){case u:case f:case v:case g:case c:return e;default:return t}}case o:return t}}}function S(e){return _(e)===d}t.AsyncMode=h,t.ConcurrentMode=d,t.ContextConsumer=u,t.ContextProvider=c,t.Element=i,t.ForwardRef=f,t.Fragment=a,t.Lazy=v,t.Memo=g,t.Portal=o,t.Profiler=l,t.StrictMode=s,t.Suspense=p,t.isAsyncMode=function(e){return S(e)||_(e)===h},t.isConcurrentMode=S,t.isContextConsumer=function(e){return _(e)===u},t.isContextProvider=function(e){return _(e)===c},t.isElement=function(e){return"object"===typeof e&&null!==e&&e.$$typeof===i},t.isForwardRef=function(e){return _(e)===f},t.isFragment=function(e){return _(e)===a},t.isLazy=function(e){return _(e)===v},t.isMemo=function(e){return _(e)===g},t.isPortal=function(e){return _(e)===o},t.isProfiler=function(e){return _(e)===l},t.isStrictMode=function(e){return _(e)===s},t.isSuspense=function(e){return _(e)===p},t.isValidElementType=function(e){return"string"===typeof e||"function"===typeof e||e===a||e===d||e===l||e===s||e===p||e===m||"object"===typeof e&&null!==e&&(e.$$typeof===v||e.$$typeof===g||e.$$typeof===c||e.$$typeof===u||e.$$typeof===f||e.$$typeof===b||e.$$typeof===w||e.$$typeof===x||e.$$typeof===y)},t.typeOf=_},qqou:function(e,t,n){"use strict";var r=n("q1tI"),i=n.n(r);if("undefined"!==typeof Element&&!Element.prototype.matches){var o=Element.prototype;o.matches=o.matchesSelector||o.mozMatchesSelector||o.msMatchesSelector||o.oMatchesSelector||o.webkitMatchesSelector}var a=function(e,t,n){var r=e;while(r){var i=r===n||r===document.body;if(i||1===r.nodeType&&r.matches(t)){i&&(r=null);break}r=r.parentNode}return r},s=function(e){var t=e;do{var n=window.getComputedStyle(t),r=n.overflow;if(("auto"===r||"scroll"===r)&&t&&t.nodeType&&(t.offsetWidth""===t||!e.matches(t)).indexOf(e)},c="tr",u={TOP:1,BOTTOM:3},h="px",d="position:fixed;z-index:9999;height:0;margin-top:-1px;border-bottom:dashed 2px rgba(0,0,0,.3);display:none;";class f extends r["Component"]{constructor(e){super(e),this.onMouseDown=this.onMouseDown.bind(this),this.onDragStart=this.onDragStart.bind(this),this.onDragEnter=this.onDragEnter.bind(this),this.onDragEnd=this.onDragEnd.bind(this),this.autoScroll=this.autoScroll.bind(this),this.state={fromIndex:-1,toIndex:-1},this.scrollElement=null,this.scrollTimerId=-1,this.direction=u.BOTTOM}componentWillUnmount(){this.dragLine&&this.dragLine.parentNode&&(this.dragLine.parentNode.removeChild(this.dragLine),this.dragLine=null,this.cacheDragTarget=null)}onMouseDown(e){var t=this.getHandleNode(e.target);if(t){var n=this.props.handleSelector&&this.props.handleSelector!==this.props.nodeSelector?this.getDragNode(t):t;n&&(t.setAttribute("draggable",!1),n.setAttribute("draggable",!0),n.ondragstart=this.onDragStart,n.ondragend=this.onDragEnd)}}onDragStart(e){var t=this.getDragNode(e.target),n=e;if(t){var r=t.parentNode;n.dataTransfer.setData("Text",""),n.dataTransfer.effectAllowed="move",r.ondragenter=this.onDragEnter,r.ondragover=function(e){return e.preventDefault(),!0};var i=l(t,this.props.ignoreSelector);this.setState({fromIndex:i,toIndex:i}),this.scrollElement=s(r)}}onDragEnter(e){var t,n=this.getDragNode(e.target),r=e;n?(t=l(n,this.props.ignoreSelector),this.props.enableScroll&&this.resolveAutoScroll(r,n)):(t=-1,this.stopAutoScroll()),this.cacheDragTarget=n,this.setState({toIndex:t}),this.fixDragLine(n)}onDragEnd(e){var t=this.getDragNode(e.target);this.stopAutoScroll(),t&&(t.removeAttribute("draggable"),t.ondragstart=null,t.ondragend=null,t.parentNode.ondragenter=null,t.parentNode.ondragover=null,this.state.fromIndex>=0&&this.state.fromIndex!==this.state.toIndex&&this.props.onDragEnd(this.state.fromIndex,this.state.toIndex)),this.hideDragLine(),this.setState({fromIndex:-1,toIndex:-1})}getDragNode(e){return a(e,this.props.nodeSelector,this.dragList)}getHandleNode(e){return a(e,this.props.handleSelector||this.props.nodeSelector,this.dragList)}getDragLine(){return this.dragLine||(this.dragLine=window.document.createElement("div"),this.dragLine.setAttribute("style",d),window.document.body.appendChild(this.dragLine)),this.dragLine.className=this.props.lineClassName||"",this.dragLine}resolveAutoScroll(e,t){if(this.scrollElement){var n=this.scrollElement.getBoundingClientRect(),r=n.top,i=n.height,o=t.offsetHeight,a=e.pageY,s=o*(2/3);this.direction=0,a>r+i-s?this.direction=u.BOTTOM:au+c+2)return void this.hideDragLine()}t.style.left=r+h,t.style.width=o+h,t.style.top=s+h,t.style.display="block"}}render(){return i.a.createElement("div",{role:"presentation",onMouseDown:this.onMouseDown,ref:e=>{this.dragList=e}},this.props.children)}}f.defaultProps={nodeSelector:c,ignoreSelector:"",enableScroll:!0,scrollSpeed:10,handleSelector:"",lineClassName:"",children:null};var p=f,m="px",g="width:0;margin-left:-1px;margin-top:0;border-bottom:0 none;border-left:dashed 2px rgba(0,0,0,.3);",v={RIGHT:2,LEFT:4};class y extends p{getDragLine(){return this.dragLine||(super.getDragLine(),this.dragLine.setAttribute("style",this.dragLine.getAttribute("style")+g)),this.dragLine}resolveAutoScroll(e,t){if(this.scrollElement){var n=this.scrollElement.getBoundingClientRect(),r=n.left,i=n.width,o=t.offsetWidth,a=e.pageX,s=2*o/3;this.direction=0,a>r+i-s?this.direction=v.RIGHT:au+c+2)return void this.hideDragLine()}t.style.top=i+m,t.style.height=a+m,t.style.left=s+m,t.style.display="block"}}}var b=y;p.DragColumn=b;t["a"]=p},qx4F:function(e,t,n){"use strict";var r;function i(e){if("undefined"===typeof document)return 0;if(e||void 0===r){var t=document.createElement("div");t.style.width="100%",t.style.height="200px";var n=document.createElement("div"),i=n.style;i.position="absolute",i.top=0,i.left=0,i.pointerEvents="none",i.visibility="hidden",i.width="200px",i.height="150px",i.overflow="hidden",n.appendChild(t),document.body.appendChild(n);var o=t.offsetWidth;n.style.overflow="scroll";var a=t.offsetWidth;o===a&&(a=n.clientWidth),document.body.removeChild(n),r=o-a}return r}n.d(t,"a",function(){return i})},rA99:function(e,t,n){"use strict";var r=n("mrSG"),i=n("y+Vt"),o=n("QBsz"),a=n("Sj9i"),s=[],l=function(){function e(){this.x1=0,this.y1=0,this.x2=0,this.y2=0,this.cpx1=0,this.cpy1=0,this.percent=1}return e}();function c(e,t,n){var r=e.cpx2,i=e.cpy2;return null===r||null===i?[(n?a["b"]:a["a"])(e.x1,e.cpx1,e.cpx2,e.x2,t),(n?a["b"]:a["a"])(e.y1,e.cpy1,e.cpy2,e.y2,t)]:[(n?a["i"]:a["h"])(e.x1,e.cpx1,e.x2,t),(n?a["i"]:a["h"])(e.y1,e.cpy1,e.y2,t)]}var u=function(e){function t(t){return e.call(this,t)||this}return Object(r["a"])(t,e),t.prototype.getDefaultStyle=function(){return{stroke:"#000",fill:null}},t.prototype.getDefaultShape=function(){return new l},t.prototype.buildPath=function(e,t){var n=t.x1,r=t.y1,i=t.x2,o=t.y2,l=t.cpx1,c=t.cpy1,u=t.cpx2,h=t.cpy2,d=t.percent;0!==d&&(e.moveTo(n,r),null==u||null==h?(d<1&&(Object(a["n"])(n,l,i,d,s),l=s[1],i=s[2],Object(a["n"])(r,c,o,d,s),c=s[1],o=s[2]),e.quadraticCurveTo(l,c,i,o)):(d<1&&(Object(a["g"])(n,l,u,i,d,s),l=s[1],u=s[2],i=s[3],Object(a["g"])(r,c,h,o,d,s),c=s[1],h=s[2],o=s[3]),e.bezierCurveTo(l,c,u,h,i,o)))},t.prototype.pointAt=function(e){return c(this.shape,e,!1)},t.prototype.tangentAt=function(e){var t=c(this.shape,e,!0);return o["k"](t,t)},t}(i["b"]);u.prototype.type="bezier-curve",t["a"]=u},rB1S:function(e,t,n){"use strict";n.r(t);var r=n("d6i3"),i=n.n(r),o=n("p0pE"),a=n.n(o),s=n("t3Un"),l={switchLoading:{},saveLoading:!1};t["default"]={name:"serverV2ray",state:a()({},l),reducers:{setState(e,t){var n=t.payload;return a()({},e,n)}},effects:{update(e,t){return i.a.mark(function n(){var r,o,a,l,c;return i.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.id,o=e.key,a=e.value,l=t.put,n.next=4,Object(s["b"])("/admin/server/v2ray/update",{id:r,[o]:a});case 4:if(c=n.sent,200===c.code){n.next=7;break}return n.abrupt("return");case 7:return n.next=9,l({type:"serverManage/getNodes"});case 9:case"end":return n.stop()}},n)})()},drop(e,t){return i.a.mark(function n(){var r,o,a;return i.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.id,o=t.put,n.next=4,Object(s["b"])("/admin/server/v2ray/drop",{id:r});case 4:if(a=n.sent,200===a.code){n.next=7;break}return n.abrupt("return");case 7:return n.next=9,o({type:"serverManage/getNodes"});case 9:case"end":return n.stop()}},n)})()},copy(e,t){return i.a.mark(function n(){var r,o,a;return i.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.id,o=t.put,n.next=4,Object(s["b"])("/admin/server/v2ray/copy",{id:r});case 4:if(a=n.sent,200===a.code){n.next=7;break}return n.abrupt("return");case 7:return n.next=9,o({type:"serverManage/getNodes"});case 9:case"end":return n.stop()}},n)})()},save(e,t){return i.a.mark(function n(){var r,o,a,l;return i.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.params,o=e.callback,a=t.put,n.next=4,a({type:"setState",payload:{saveLoading:!0}});case 4:return n.next=6,Object(s["b"])("/admin/server/v2ray/save",r);case 6:return l=n.sent,n.next=9,a({type:"setState",payload:{saveLoading:!1}});case 9:if(200===l.code){n.next=11;break}return n.abrupt("return");case 11:return n.next=13,a({type:"serverManage/getNodes"});case 13:"function"===typeof o&&o();case 14:case"end":return n.stop()}},n)})()}}}},rKIl:function(e,t,n){var r=n("c0Oy"),i=n("VPOE"),o=n("oxo0"),a=n("kCK5")("src"),s=n("b5re"),l="toString",c=(""+s).split(l);n("bV5f").inspectSource=function(e){return s.call(e)},(e.exports=function(e,t,n,s){var l="function"==typeof n;l&&(o(n,"name")||i(n,"name",t)),e[t]!==n&&(l&&(o(n,a)||i(n,a,e[t]?""+e[t]:c.join(String(t)))),e===r?e[t]=n:s?e[t]?e[t]=n:i(e,t,n):(delete e[t],i(e,t,n)))})(Function.prototype,l,function(){return"function"==typeof this&&this[a]||s.call(this)})},rTWY:function(e,t,n){var r=n("c0Oy"),i=n("vMx4").set,o=r.MutationObserver||r.WebKitMutationObserver,a=r.process,s=r.Promise,l="process"==n("2we2")(a);e.exports=function(){var e,t,n,c=function(){var r,i;l&&(r=a.domain)&&r.exit();while(e){i=e.fn,e=e.next;try{i()}catch(r){throw e?n():t=void 0,r}}t=void 0,r&&r.enter()};if(l)n=function(){a.nextTick(c)};else if(!o||r.navigator&&r.navigator.standalone)if(s&&s.resolve){var u=s.resolve(void 0);n=function(){u.then(c)}}else n=function(){i.call(r,c)};else{var h=!0,d=document.createTextNode("");new o(c).observe(d,{characterData:!0}),n=function(){d.data=h=!h}}return function(r){var i={fn:r,next:void 0};t&&(t.next=i),e||(e=i,n()),t=i}}},rUcv:function(e,t,n){"use strict";var r=n("c0Oy"),i=n("oxo0"),o=n("8Z/V"),a=n("WGNW"),s=n("rKIl"),l=n("+y51").KEY,c=n("wUWy"),u=n("VyuQ"),h=n("lvAo"),d=n("kCK5"),f=n("gL7N"),p=n("zKnh"),m=n("/sWw"),g=n("T1nr"),v=n("EpXD"),y=n("7vYJ"),b=n("u8+u"),w=n("il4q"),x=n("OeOC"),_=n("8BMt"),S=n("pQGJ"),C=n("/Mfd"),E=n("CTsd"),k=n("15BC"),O=n("e6w7"),T=n("V5/1"),A=n("Igga"),M=k.f,P=T.f,R=E.f,L=r.Symbol,D=r.JSON,j=D&&D.stringify,N="prototype",I=f("_hidden"),$=f("toPrimitive"),F={}.propertyIsEnumerable,V=u("symbol-registry"),B=u("symbols"),W=u("op-symbols"),H=Object[N],z="function"==typeof L&&!!O.f,U=r.QObject,q=!U||!U[N]||!U[N].findChild,K=o&&c(function(){return 7!=C(P({},"a",{get:function(){return P(this,"a",{value:7}).a}})).a})?function(e,t,n){var r=M(H,t);r&&delete H[t],P(e,t,n),r&&e!==H&&P(H,t,r)}:P,G=function(e){var t=B[e]=C(L[N]);return t._k=e,t},Y=z&&"symbol"==typeof L.iterator?function(e){return"symbol"==typeof e}:function(e){return e instanceof L},X=function(e,t,n){return e===H&&X(W,t,n),y(e),t=_(t,!0),y(n),i(B,t)?(n.enumerable?(i(e,I)&&e[I][t]&&(e[I][t]=!1),n=C(n,{enumerable:S(0,!1)})):(i(e,I)||P(e,I,S(1,{})),e[I][t]=!0),K(e,t,n)):P(e,t,n)},Q=function(e,t){y(e);var n,r=g(t=x(t)),i=0,o=r.length;while(o>i)X(e,n=r[i++],t[n]);return e},Z=function(e,t){return void 0===t?C(e):Q(C(e),t)},J=function(e){var t=F.call(this,e=_(e,!0));return!(this===H&&i(B,e)&&!i(W,e))&&(!(t||!i(this,e)||!i(B,e)||i(this,I)&&this[I][e])||t)},ee=function(e,t){if(e=x(e),t=_(t,!0),e!==H||!i(B,t)||i(W,t)){var n=M(e,t);return!n||!i(B,t)||i(e,I)&&e[I][t]||(n.enumerable=!0),n}},te=function(e){var t,n=R(x(e)),r=[],o=0;while(n.length>o)i(B,t=n[o++])||t==I||t==l||r.push(t);return r},ne=function(e){var t,n=e===H,r=R(n?W:x(e)),o=[],a=0;while(r.length>a)!i(B,t=r[a++])||n&&!i(H,t)||o.push(B[t]);return o};z||(L=function(){if(this instanceof L)throw TypeError("Symbol is not a constructor!");var e=d(arguments.length>0?arguments[0]:void 0),t=function(n){this===H&&t.call(W,n),i(this,I)&&i(this[I],e)&&(this[I][e]=!1),K(this,e,S(1,n))};return o&&q&&K(H,e,{configurable:!0,set:t}),G(e)},s(L[N],"toString",function(){return this._k}),k.f=ee,T.f=X,n("9HFh").f=E.f=te,n("LsAW").f=J,O.f=ne,o&&!n("FqPH")&&s(H,"propertyIsEnumerable",J,!0),p.f=function(e){return G(f(e))}),a(a.G+a.W+a.F*!z,{Symbol:L});for(var re="hasInstance,isConcatSpreadable,iterator,match,replace,search,species,split,toPrimitive,toStringTag,unscopables".split(","),ie=0;re.length>ie;)f(re[ie++]);for(var oe=A(f.store),ae=0;oe.length>ae;)m(oe[ae++]);a(a.S+a.F*!z,"Symbol",{for:function(e){return i(V,e+="")?V[e]:V[e]=L(e)},keyFor:function(e){if(!Y(e))throw TypeError(e+" is not a symbol!");for(var t in V)if(V[t]===e)return t},useSetter:function(){q=!0},useSimple:function(){q=!1}}),a(a.S+a.F*!z,"Object",{create:Z,defineProperty:X,defineProperties:Q,getOwnPropertyDescriptor:ee,getOwnPropertyNames:te,getOwnPropertySymbols:ne});var se=c(function(){O.f(1)});a(a.S+a.F*se,"Object",{getOwnPropertySymbols:function(e){return O.f(w(e))}}),D&&a(a.S+a.F*(!z||c(function(){var e=L();return"[null]"!=j([e])||"{}"!=j({a:e})||"{}"!=j(Object(e))})),"JSON",{stringify:function(e){var t,n,r=[e],i=1;while(arguments.length>i)r.push(arguments[i++]);if(n=t=r[1],(b(t)||void 0!==e)&&!Y(e))return v(t)||(t=function(e,t){if("function"==typeof n&&(t=n.call(this,e,t)),!Y(t))return t}),r[1]=t,j.apply(D,r)}}),L[N][$]||n("VPOE")(L[N],$,L[N].valueOf),h(L,"Symbol"),h(Math,"Math",!0),h(r.JSON,"JSON",!0)},rePB:function(e,t,n){"use strict";function r(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}n.d(t,"a",function(){return r})},rmlV:function(e,t,n){"use strict";var r=n("mrSG"),i=n("y+Vt"),o=function(){function e(){this.cx=0,this.cy=0,this.rx=0,this.ry=0}return e}(),a=function(e){function t(t){return e.call(this,t)||this}return Object(r["a"])(t,e),t.prototype.getDefaultShape=function(){return new o},t.prototype.buildPath=function(e,t){var n=.5522848,r=t.cx,i=t.cy,o=t.rx,a=t.ry,s=o*n,l=a*n;e.moveTo(r-o,i),e.bezierCurveTo(r-o,i-l,r-s,i-a,r,i-a),e.bezierCurveTo(r+s,i-a,r+o,i-l,r+o,i),e.bezierCurveTo(r+o,i+l,r+s,i+a,r,i+a),e.bezierCurveTo(r-s,i+a,r-o,i+l,r-o,i),e.closePath()},t}(i["b"]);a.prototype.type="ellipse",t["a"]=a},rr1i:function(e,t){e.exports=function(e,t){return{enumerable:!(1&e),configurable:!(2&e),writable:!(4&e),value:t}}},rrW9:function(e,t){e.exports=function(e,t,n){var r=void 0===n;switch(t.length){case 0:return r?e():e.call(n);case 1:return r?e(t[0]):e.call(n,t[0]);case 2:return r?e(t[0],t[1]):e.call(n,t[0],t[1]);case 3:return r?e(t[0],t[1],t[2]):e.call(n,t[0],t[1],t[2]);case 4:return r?e(t[0],t[1],t[2],t[3]):e.call(n,t[0],t[1],t[2],t[3])}return e.apply(n,t)}},rsGM:function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=a;var r=o(n("LIAx")),i=o(n("i8i4"));function o(e){return e&&e.__esModule?e:{default:e}}function a(e,t,n,o){var a=i.default.unstable_batchedUpdates?function(e){i.default.unstable_batchedUpdates(n,e)}:n;return(0,r.default)(e,t,a,o)}},s3Ml:function(e,t,n){e.exports={default:n("JbBM"),__esModule:!0}},sFYk:function(e,t,n){"use strict";n.r(t);var r=n("jehZ"),i=n.n(r),o=n("d6i3"),a=n.n(o),s=n("1l/V"),l=n.n(s),c=n("q1tI"),u=n.n(c),h=n("Bl7J"),d=n("/MKj"),f=n("3a4m"),p=n.n(f),m=n("t3Un"),g=n("20nU"),v=n("IrRn"),y=n("G+eS"),b=n("k5Tp"),w=n("MJSk"),x=n("LadE"),_=n("Syqx"),S=n("/zI/"),C=n("NiBb"),E=n("TLXH"),k=n("xVpn"),O=n("+V6l");v["a"]([b["a"],w["a"],x["a"],_["a"],S["a"],C["a"],E["a"],O["a"],k["a"]]);class T extends u.a.Component{constructor(e){super(e),this.state={},this.orderChart=u.a.createRef(),this.orderChartObj=void 0,this.serverLastRankChart=u.a.createRef(),this.serverLastRankChartObj=void 0}orderChartRender(e){var t;this.orderChartObj=y["b"](null===(t=this.orderChart)||void 0===t?void 0:t.current,"vintage");var n={tooltip:{trigger:"axis"},legend:{data:[],right:"1%"},grid:{left:"1%",right:"1%",bottom:"3%",containLabel:!0},xAxis:{type:"category",boundaryGap:!1,data:[]},yAxis:{type:"value"},series:[]};e.forEach(e=>{-1===n.legend.data.indexOf(e.type)&&n.legend.data.push(e.type),-1===n.xAxis.data.indexOf(e.date)&&n.xAxis.data.push(e.date);var t=n.series.find(t=>t.name===e.type);t?t.data.push(e.value):n.series.push({name:e.type,type:"line",smooth:!0,data:[e.value]})}),console.log(n),this.orderChartObj.setOption(n),window.addEventListener("resize",this.chartResize.bind(this))}serverLastRankChartRender(e){var t;this.serverLastRankChartObj=y["b"](null===(t=this.serverLastRankChart)||void 0===t?void 0:t.current);var n={tooltip:{trigger:"axis",formatter:e=>{return"".concat(e[0].value," GB")}},grid:{top:"1%",left:"1%",right:"1%",bottom:"3%",containLabel:!0},xAxis:{type:"value"},yAxis:{type:"category",data:[]},series:[{data:[],type:"bar"}]};e.reverse().forEach(e=>{n.yAxis.data.push(e.server_name),n.series[0].data.push(e.total)}),this.serverLastRankChartObj.setOption(n)}chartResize(){this.orderChartObj.resize(),this.serverLastRankChartObj.resize()}componentDidMount(){var e=this;l()(a.a.mark(function t(){return a.a.wrap(function(t){while(1)switch(t.prev=t.next){case 0:return t.next=2,e.checkQueue();case 2:case"end":return t.stop()}},t)}))(),this.props.dispatch({type:"stat/getOverride"}),this.props.dispatch({type:"stat/getOrder",complete:e=>{this.orderChartRender(e)}}),this.props.dispatch({type:"stat/getServerLastRank",complete:e=>{console.log(e),this.serverLastRankChartRender(e)}})}componentWillUnmount(){window.removeEventListener("resize",this.chartResize.bind(this))}orderFilter(){this.props.dispatch({type:"order/addFilter",key:"commission_status",condition:"=",value:0}),this.props.dispatch({type:"order/addFilter",key:"invite_user_id",condition:"!=",value:""}),p.a.push("/order")}checkQueue(){var e=this;return l()(a.a.mark(function t(){var n,r;return a.a.wrap(function(t){while(1)switch(t.prev=t.next){case 0:return n=new URL(g["a"].serviceHost),t.next=3,Object(m["a"])((null===n||void 0===n?void 0:n.origin)+"/monitor/api/stats");case 3:r=t.sent,e.setState({queueStatus:null===r||void 0===r?void 0:r.status});case 5:case"end":return t.stop()}},t)}))()}render(){var e=this.props.stat;return u.a.createElement(h["a"],i()({},this.props,{title:"\u4eea\u8868\u76d8"}),this.state.queueStatus&&"running"!==this.state.queueStatus&&u.a.createElement("div",{className:"row"},u.a.createElement("div",{className:"col-lg-12"},u.a.createElement("div",{className:"alert alert-danger",role:"alert"},u.a.createElement("p",{className:"mb-0"},"\u5f53\u524d\u961f\u5217\u670d\u52a1\u8fd0\u884c\u5f02\u5e38\uff0c\u53ef\u80fd\u4f1a\u5bfc\u81f4\u4e1a\u52a1\u65e0\u6cd5\u4f7f\u7528\u3002")))),u.a.createElement("div",{className:"mb-0 block border-bottom js-classic-nav d-none d-sm-block"},u.a.createElement("div",{className:"block-content block-content-full"},u.a.createElement("div",{className:"row no-gutters border"},u.a.createElement("div",{className:"col-sm-6 col-xl-3 js-appear-enabled animated","data-toggle":"appear"},u.a.createElement("a",{className:"block block-bordered block-link-pop text-center mb-0",onClick:()=>p.a.push("/config/system")},u.a.createElement("div",{className:"block-content block-content-full text-center"},u.a.createElement("i",{className:"fa-2x si si-equalizer text-primary d-none d-sm-inline-block mb-3"}),u.a.createElement("div",{className:"font-w600 text-uppercase"},"\u7cfb\u7edf\u8bbe\u7f6e")))),u.a.createElement("div",{className:"col-sm-6 col-xl-3 js-appear-enabled animated","data-toggle":"appear"},u.a.createElement("a",{className:"block block-bordered block-link-pop text-center mb-0",onClick:()=>p.a.push("/order")},u.a.createElement("div",{className:"block-content block-content-full text-center"},u.a.createElement("i",{className:"fa-2x si si-list text-primary d-none d-sm-inline-block mb-3"}),u.a.createElement("div",{className:"font-w600 text-uppercase"},"\u8ba2\u5355\u7ba1\u7406")))),u.a.createElement("div",{className:"col-sm-6 col-xl-3 js-appear-enabled animated","data-toggle":"appear"},u.a.createElement("a",{className:"block block-bordered block-link-pop text-center mb-0",onClick:()=>p.a.push("/plan")},u.a.createElement("div",{className:"block-content block-content-full text-center"},u.a.createElement("i",{className:"fa-2x si si-bag text-primary d-none d-sm-inline-block mb-3"}),u.a.createElement("div",{className:"font-w600 text-uppercase"},"\u8ba2\u9605\u7ba1\u7406")))),u.a.createElement("div",{className:"col-sm-6 col-xl-3 js-appear-enabled animated","data-toggle":"appear"},u.a.createElement("a",{className:"block block-bordered block-link-pop text-center mb-0",onClick:()=>p.a.push("/user")},u.a.createElement("div",{className:"block-content block-content-full text-center"},u.a.createElement("i",{className:"fa-2x si si-users text-primary d-none d-sm-inline-block mb-3"}),u.a.createElement("div",{className:"font-w600 text-uppercase"},"\u7528\u6237\u7ba1\u7406"))))))),u.a.createElement("div",{className:"row no-gutters"},u.a.createElement("div",{className:"col-lg-12 js-appear-enabled animated","data-toggle":"appear"},u.a.createElement("div",{className:"block border-bottom mb-0"},u.a.createElement("div",{className:"block-content"},u.a.createElement("div",{className:"px-sm-3 pt-sm-3 clearfix"},u.a.createElement("i",{className:"fa fa-chart-line fa-2x text-gray-light float-right"}),u.a.createElement("p",{className:"display-4 text-black font-w300 mb-2"},e.day_income?(e.day_income/100).toFixed(2):"0.00",u.a.createElement("span",{className:"font-size-h5 font-w600 text-muted"},"CNY")),u.a.createElement("p",{className:"text-muted w-75"},"\u672c\u6708\u6536\u5165\u5408\u8ba1 \xa5",e.month_income?(e.month_income/100).toFixed(2):"0.00","\uff0c\u4e0a\u6708\u6536\u5165\u5408\u8ba1 \xa5",e.last_month_income?(e.last_month_income/100).toFixed(2):"0.00","\u3002")),u.a.createElement("div",{className:"px-sm-3 pt-sm-3 py-3 clearfix",id:"orderChart",style:{height:400},ref:this.orderChart})))),u.a.createElement("div",{className:"col-lg-12 js-appear-enabled animated","data-toggle":"appear"},u.a.createElement("div",{className:"block border-bottom mb-0"},u.a.createElement("div",{className:"block-content block-content-full d-flex align-items-center justify-content-between"},u.a.createElement("div",{className:"ml-3"},u.a.createElement("p",{className:"font-size-h2 font-w300 text-black mb-0"},e.month_register_total||"-"),u.a.createElement("a",{onClick:()=>p.a.push("/user"),className:"link-fx font-size-sm font-w600 text-muted text-uppercase mb-0",href:"javascript:void(0)"},"\u672c\u6708\u65b0\u589e\u7528\u6237")),u.a.createElement("div",null,u.a.createElement("i",{className:"far si fa-2x si-users text-primary"})))),u.a.createElement("div",{className:"block border-bottom mb-0"},u.a.createElement("div",{className:"block-content block-content-full d-flex align-items-center justify-content-between"},u.a.createElement("div",{className:"ml-3"},u.a.createElement("p",{className:"font-size-h2 font-w300 text-black mb-0"},e.ticket_pendding_total||"-"),u.a.createElement("a",{onClick:()=>p.a.push("/ticket"),className:"link-fx font-size-sm font-w600 text-muted text-uppercase mb-0",href:"javascript:void(0)"},"\u5f85\u529e\u5de5\u5355")),u.a.createElement("div",null,u.a.createElement("i",{className:"far si fa-2x si-support text-primary"})))),u.a.createElement("div",{className:"block border-bottom mb-0"},u.a.createElement("div",{className:"block-content block-content-full d-flex align-items-center justify-content-between"},u.a.createElement("div",{className:"ml-3"},u.a.createElement("p",{className:"font-size-h2 font-w300 text-black mb-0"},e.commission_pendding_total||"-"),u.a.createElement("a",{onClick:()=>this.orderFilter(),className:"link-fx font-size-sm font-w600 text-muted text-uppercase mb-0",href:"javascript:void(0)"},"\u4f63\u91d1\u5f85\u786e\u8ba4")),u.a.createElement("div",null,u.a.createElement("i",{className:"far si fa-2x si-user-following text-primary"})))))),u.a.createElement("div",{className:"row no-gutters mt-xl-3"},u.a.createElement("div",{className:"col-lg-12 js-appear-enabled animated","data-toggle":"appear"},u.a.createElement("div",{className:"block border-bottom mb-0"},u.a.createElement("div",{class:"block-header block-header-default"},u.a.createElement("h3",{class:"block-title"},"\u6628\u65e5\u8282\u70b9\u6d41\u91cf\u6392\u884c")),u.a.createElement("div",{className:"block-content"},u.a.createElement("div",{className:"px-sm-3 pt-sm-3 py-3 clearfix",id:"serverRankChart",style:{height:400},ref:this.serverLastRankChart}))))))}}t["default"]=Object(d["c"])(e=>{var t=e.stat;return{stat:t}})(T)},sRdV:function(e,t,n){"use strict";e.exports=function(e){var t={};t.src_Any=n("y8fO").source,t.src_Cc=n("p7ys").source,t.src_Z=n("T8I8").source,t.src_P=n("fKCf").source,t.src_ZPCc=[t.src_Z,t.src_P,t.src_Cc].join("|"),t.src_ZCc=[t.src_Z,t.src_Cc].join("|");var r="[><\uff5c]";return t.src_pseudo_letter="(?:(?!"+r+"|"+t.src_ZPCc+")"+t.src_Any+")",t.src_ip4="(?:(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\.){3}(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)",t.src_auth="(?:(?:(?!"+t.src_ZCc+"|[@/\\[\\]()]).)+@)?",t.src_port="(?::(?:6(?:[0-4]\\d{3}|5(?:[0-4]\\d{2}|5(?:[0-2]\\d|3[0-5])))|[1-5]?\\d{1,4}))?",t.src_host_terminator="(?=$|"+r+"|"+t.src_ZPCc+")(?!-|_|:\\d|\\.-|\\.(?!$|"+t.src_ZPCc+"))",t.src_path="(?:[/?#](?:(?!"+t.src_ZCc+"|"+r+"|[()[\\]{}.,\"'?!\\-;]).|\\[(?:(?!"+t.src_ZCc+"|\\]).)*\\]|\\((?:(?!"+t.src_ZCc+"|[)]).)*\\)|\\{(?:(?!"+t.src_ZCc+'|[}]).)*\\}|\\"(?:(?!'+t.src_ZCc+'|["]).)+\\"|\\\'(?:(?!'+t.src_ZCc+"|[']).)+\\'|\\'(?="+t.src_pseudo_letter+"|[-]).|\\.{2,}[a-zA-Z0-9%/&]|\\.(?!"+t.src_ZCc+"|[.]).|"+(e&&e["---"]?"\\-(?!--(?:[^-]|$))(?:-*)|":"\\-+|")+",(?!"+t.src_ZCc+").|;(?!"+t.src_ZCc+").|\\!+(?!"+t.src_ZCc+"|[!]).|\\?(?!"+t.src_ZCc+"|[?]).)+|\\/)?",t.src_email_name='[\\-;:&=\\+\\$,\\.a-zA-Z0-9_][\\-;:&=\\+\\$,\\"\\.a-zA-Z0-9_]*',t.src_xn="xn--[a-z0-9\\-]{1,59}",t.src_domain_root="(?:"+t.src_xn+"|"+t.src_pseudo_letter+"{1,63})",t.src_domain="(?:"+t.src_xn+"|(?:"+t.src_pseudo_letter+")|(?:"+t.src_pseudo_letter+"(?:-|"+t.src_pseudo_letter+"){0,61}"+t.src_pseudo_letter+"))",t.src_host="(?:(?:(?:(?:"+t.src_domain+")\\.)*"+t.src_domain+"))",t.tpl_host_fuzzy="(?:"+t.src_ip4+"|(?:(?:(?:"+t.src_domain+")\\.)+(?:%TLDS%)))",t.tpl_host_no_ip_fuzzy="(?:(?:(?:"+t.src_domain+")\\.)+(?:%TLDS%))",t.src_host_strict=t.src_host+t.src_host_terminator,t.tpl_host_fuzzy_strict=t.tpl_host_fuzzy+t.src_host_terminator,t.src_host_port_strict=t.src_host+t.src_port+t.src_host_terminator,t.tpl_host_port_fuzzy_strict=t.tpl_host_fuzzy+t.src_port+t.src_host_terminator,t.tpl_host_port_no_ip_fuzzy_strict=t.tpl_host_no_ip_fuzzy+t.src_port+t.src_host_terminator,t.tpl_host_fuzzy_test="localhost|www\\.|\\.\\d{1,3}\\.|(?:\\.(?:%TLDS%)(?:"+t.src_ZPCc+"|>|$))",t.tpl_email_fuzzy="(^|"+r+'|"|\\(|'+t.src_ZCc+")("+t.src_email_name+"@"+t.tpl_host_fuzzy_strict+")",t.tpl_link_fuzzy="(^|(?![.:/\\-_@])(?:[$+<=>^`|\uff5c]|"+t.src_ZPCc+"))((?![$+<=>^`|\uff5c])"+t.tpl_host_port_fuzzy_strict+t.src_path+")",t.tpl_link_no_ip_fuzzy="(^|(?![.:/\\-_@])(?:[$+<=>^`|\uff5c]|"+t.src_ZPCc+"))((?![$+<=>^`|\uff5c])"+t.tpl_host_port_no_ip_fuzzy_strict+t.src_path+")",t}},sa7a:function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=p,t.getUrlQuery=void 0;var r=n("6YkS");function i(e,t){return s(e)||a(e,t)||d(e,t)||o()}function o(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function a(e,t){if("undefined"!==typeof Symbol&&Symbol.iterator in Object(e)){var n=[],r=!0,i=!1,o=void 0;try{for(var a,s=e[Symbol.iterator]();!(r=(a=s.next()).done);r=!0)if(n.push(a.value),t&&n.length===t)break}catch(e){i=!0,o=e}finally{try{r||null==s["return"]||s["return"]()}finally{if(i)throw o}}return n}}function s(e){if(Array.isArray(e))return e}function l(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function c(e){for(var t=1;t=e.length?{done:!0}:{done:!1,value:e[t++]}},e:function(e){throw e},f:n}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var r,i,o=!0,a=!1;return{s:function(){r=e[Symbol.iterator]()},n:function(){var e=r.next();return o=e.done,e},e:function(e){a=!0,i=e},f:function(){try{o||null==r.return||r.return()}finally{if(a)throw i}}}}function d(e,t){if(e){if("string"===typeof e)return f(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(n):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?f(e,t):void 0}}function f(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n-1){var t=e.slice(1).split("&");if(Array.isArray(t)&&t.length>0)return t.reduce(function(e,t){var n=t.split("="),r=i(n,2),o=r[0],a=r[1];return c({},e,u({},o,a))},{})}return{}};t.getUrlQuery=m},"saJ+":function(e,t,n){"use strict";function r(e){"@babel/helpers - typeof";return r="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},r(e)}function i(e,t){"function"===typeof e?e(t):"object"===r(e)&&e&&"current"in e&&(e.current=t)}function o(){for(var e=arguments.length,t=new Array(e),n=0;n0&&(i[1-o]=this.state.showTimePicker?i[o]:void 0),this.props.onInputSelect(i),this.fireSelectValueChange(i,null,n||{source:"dateInput"})}}var F=function(e){function t(n){a()(this,t);var r=l()(this,e.call(this,n));V.call(r);var i=n.selectedValue||n.defaultSelectedValue,o=N(n,1);return r.state={selectedValue:i,prevSelectedValue:i,firstSelectedValue:null,hoverValue:n.hoverValue||[],value:o,showTimePicker:!1,mode:n.mode||["date","date"],panelTriggerSource:""},r}return u()(t,e),t.getDerivedStateFromProps=function(e,t){var n={};return"value"in e&&(n.value=N(e,0)),"hoverValue"in e&&!D(t.hoverValue,e.hoverValue)&&(n.hoverValue=e.hoverValue),"selectedValue"in e&&(n.selectedValue=e.selectedValue,n.prevSelectedValue=e.selectedValue),"mode"in e&&!D(t.mode,e.mode)&&(n.mode=e.mode),n},t.prototype.render=function(){var e,t,n=this.props,r=this.state,o=n.prefixCls,a=n.dateInputPlaceholder,s=n.seperator,l=n.timePicker,c=n.showOk,u=n.locale,h=n.showClear,f=n.showToday,p=n.type,m=n.clearIcon,g=r.hoverValue,v=r.selectedValue,b=r.mode,w=r.showTimePicker,x=(e={},e[n.className]=!!n.className,e[o]=1,e[o+"-hidden"]=!n.visible,e[o+"-range"]=1,e[o+"-show-time-picker"]=w,e[o+"-week-number"]=n.showWeekNumber,e),_=y()(x),S={selectedValue:r.selectedValue,onSelect:this.onSelect,onDayHover:"start"===p&&v[1]||"end"===p&&v[0]||g.length?this.onDayHover:void 0},E=void 0,M=void 0;a&&(Array.isArray(a)?(E=a[0],M=a[1]):E=M=a);var P=!0===c||!1!==c&&!!l,R=y()((t={},t[o+"-footer"]=!0,t[o+"-range-bottom"]=!0,t[o+"-footer-show-ok"]=P,t)),L=this.getStartValue(),D=this.getEndValue(),j=Object(C["e"])(L),N=j.month(),I=j.year(),$=L.year()===I&&L.month()===N||D.year()===I&&D.month()===N,F=L.clone().add(1,"months"),V=F.year()===D.year()&&F.month()===D.month(),B=n.renderFooter();return d.a.createElement("div",{ref:this.saveRoot,className:_,style:n.style,tabIndex:"0",onKeyDown:this.onKeyDown},n.renderSidebar(),d.a.createElement("div",{className:o+"-panel"},h&&v[0]&&v[1]?d.a.createElement("a",{role:"button",title:u.clear,onClick:this.clear},m||d.a.createElement("span",{className:o+"-clear-btn"})):null,d.a.createElement("div",{className:o+"-date-panel",onMouseLeave:"both"!==p?this.onDatePanelLeave:void 0,onMouseEnter:"both"!==p?this.onDatePanelEnter:void 0},d.a.createElement(k,i()({},n,S,{hoverValue:g,direction:"left",disabledTime:this.disabledStartTime,disabledMonth:this.disabledStartMonth,format:this.getFormat(),value:L,mode:b[0],placeholder:E,onInputChange:this.onStartInputChange,onInputSelect:this.onStartInputSelect,onValueChange:this.onStartValueChange,onPanelChange:this.onStartPanelChange,showDateInput:this.props.showDateInput,timePicker:l,showTimePicker:w||"time"===b[0],enablePrev:!0,enableNext:!V||this.isMonthYearPanelShow(b[1]),clearIcon:m})),d.a.createElement("span",{className:o+"-range-middle"},s),d.a.createElement(k,i()({},n,S,{hoverValue:g,direction:"right",format:this.getFormat(),timePickerDisabledTime:this.getEndDisableTime(),placeholder:M,value:D,mode:b[1],onInputChange:this.onEndInputChange,onInputSelect:this.onEndInputSelect,onValueChange:this.onEndValueChange,onPanelChange:this.onEndPanelChange,showDateInput:this.props.showDateInput,timePicker:l,showTimePicker:w||"time"===b[1],disabledTime:this.disabledEndTime,disabledMonth:this.disabledEndMonth,enablePrev:!V||this.isMonthYearPanelShow(b[0]),enableNext:!0,clearIcon:m}))),d.a.createElement("div",{className:R},f||n.timePicker||P||B?d.a.createElement("div",{className:o+"-footer-btn"},B,f?d.a.createElement(O["a"],i()({},n,{disabled:$,value:r.value[0],onToday:this.onToday,text:u.backToToday})):null,n.timePicker?d.a.createElement(A["a"],i()({},n,{showTimePicker:w||"time"===b[0]&&"time"===b[1],onOpenTimePicker:this.onOpenTimePicker,onCloseTimePicker:this.onCloseTimePicker,timePickerDisabled:!this.hasSelectedValue()||g.length})):null,P?d.a.createElement(T["a"],i()({},n,{onOk:this.onOk,okDisabled:!this.isAllowedDateAndTime(v)||!this.hasSelectedValue()||g.length})):null):null)))},t}(d.a.Component);F.propTypes=i()({},M["c"],{prefixCls:p.a.string,dateInputPlaceholder:p.a.any,seperator:p.a.string,defaultValue:p.a.any,value:p.a.any,hoverValue:p.a.any,mode:p.a.arrayOf(p.a.oneOf(["time","date","month","year","decade"])),showDateInput:p.a.bool,timePicker:p.a.any,showOk:p.a.bool,showToday:p.a.bool,defaultSelectedValue:p.a.array,selectedValue:p.a.array,onOk:p.a.func,showClear:p.a.bool,locale:p.a.object,onChange:p.a.func,onSelect:p.a.func,onValueChange:p.a.func,onHoverChange:p.a.func,onPanelChange:p.a.func,format:p.a.oneOfType([p.a.string,p.a.arrayOf(p.a.string)]),onClear:p.a.func,type:p.a.any,disabledDate:p.a.func,disabledTime:p.a.func,clearIcon:p.a.node,onKeyDown:p.a.func}),F.defaultProps=i()({},M["b"],{type:"both",seperator:"~",defaultSelectedValue:[],onValueChange:R,onHoverChange:R,onPanelChange:R,disabledTime:R,onInputSelect:R,showToday:!0,showDateInput:!0});var V=function(){var e=this;this.onDatePanelEnter=function(){e.hasSelectedValue()&&e.fireHoverValueChange(e.state.selectedValue.concat())},this.onDatePanelLeave=function(){e.hasSelectedValue()&&e.fireHoverValueChange([])},this.onSelect=function(t){var n=e.props.type,r=e.state,i=r.selectedValue,o=r.prevSelectedValue,a=r.firstSelectedValue,s=void 0;if("both"===n)a?e.compare(a,t)<0?(Object(C["h"])(o[1],t),s=[a,t]):(Object(C["h"])(o[0],t),Object(C["h"])(o[1],a),s=[t,a]):(Object(C["h"])(o[0],t),s=[t]);else if("start"===n){Object(C["h"])(o[0],t);var l=i[1];s=l&&e.compare(l,t)>0?[t,l]:[t]}else{var c=i[0];c&&e.compare(c,t)<=0?(Object(C["h"])(o[1],t),s=[c,t]):(Object(C["h"])(o[0],t),s=[t])}e.fireSelectValueChange(s)},this.onKeyDown=function(t){if("input"!==t.target.nodeName.toLowerCase()){var n=t.keyCode,r=t.ctrlKey||t.metaKey,i=e.state,o=i.selectedValue,a=i.hoverValue,s=i.firstSelectedValue,l=i.value,c=e.props,u=c.onKeyDown,h=c.disabledDate,d=function(n){var r=void 0,i=void 0,c=void 0;if(s?1===a.length?(r=a[0].clone(),i=n(r),c=e.onDayHover(i)):(r=a[0].isSame(s,"day")?a[1]:a[0],i=n(r),c=e.onDayHover(i)):(r=a[0]||o[0]||l[0]||g()(),i=n(r),c=[i],e.fireHoverValueChange(c)),c.length>=2){var u=c.some(function(e){return!Object(P["d"])(l,e,"month")});if(u){var h=c.slice().sort(function(e,t){return e.valueOf()-t.valueOf()});h[0].isSame(h[1],"month")&&(h[1]=h[0].clone().add(1,"month")),e.fireValueChange(h)}}else if(1===c.length){var d=l.findIndex(function(e){return e.isSame(r,"month")});if(-1===d&&(d=0),l.every(function(e){return!e.isSame(i,"month")})){var f=l.slice();f[d]=i.clone(),e.fireValueChange(f)}}return t.preventDefault(),i};switch(n){case w["a"].DOWN:return void d(function(e){return Object(P["c"])(e,1,"weeks")});case w["a"].UP:return void d(function(e){return Object(P["c"])(e,-1,"weeks")});case w["a"].LEFT:return void d(r?function(e){return Object(P["c"])(e,-1,"years")}:function(e){return Object(P["c"])(e,-1,"days")});case w["a"].RIGHT:return void d(r?function(e){return Object(P["c"])(e,1,"years")}:function(e){return Object(P["c"])(e,1,"days")});case w["a"].HOME:return void d(function(e){return Object(P["b"])(e)});case w["a"].END:return void d(function(e){return Object(P["a"])(e)});case w["a"].PAGE_DOWN:return void d(function(e){return Object(P["c"])(e,1,"month")});case w["a"].PAGE_UP:return void d(function(e){return Object(P["c"])(e,-1,"month")});case w["a"].ENTER:var f=void 0;return f=0===a.length?d(function(e){return e}):1===a.length?a[0]:a[0].isSame(s,"day")?a[1]:a[0],!f||h&&h(f)||e.onSelect(f),void t.preventDefault();default:u&&u(t)}}},this.onDayHover=function(t){var n=[],r=e.state,i=r.selectedValue,o=r.firstSelectedValue,a=e.props.type;if("start"===a&&i[1])n=e.compare(t,i[1])<0?[t,i[1]]:[t];else if("end"===a&&i[0])n=e.compare(t,i[0])>0?[i[0],t]:[];else{if(!o)return e.state.hoverValue.length&&e.setState({hoverValue:[]}),n;n=e.compare(t,o)<0?[t,o]:[o,t]}return e.fireHoverValueChange(n),n},this.onToday=function(){var t=Object(C["e"])(e.state.value[0]),n=t.clone().add(1,"months");e.setState({value:[t,n]})},this.onOpenTimePicker=function(){e.setState({showTimePicker:!0})},this.onCloseTimePicker=function(){e.setState({showTimePicker:!1})},this.onOk=function(){var t=e.state.selectedValue;e.isAllowedDateAndTime(t)&&e.props.onOk(e.state.selectedValue)},this.onStartInputChange=function(){for(var t=arguments.length,n=Array(t),r=0;r-1},this.hasSelectedValue=function(){var t=e.state.selectedValue;return!!t[1]&&!!t[0]},this.compare=function(t,n){return e.props.timePicker?t.diff(n):t.diff(n,"days")},this.fireSelectValueChange=function(t,n,r){var i=e.props.timePicker,o=e.state.prevSelectedValue;if(i&&i.props.defaultValue){var a=i.props.defaultValue;!o[0]&&t[0]&&Object(C["h"])(a[0],t[0]),!o[1]&&t[1]&&Object(C["h"])(a[1],t[1])}if("selectedValue"in e.props||e.setState({selectedValue:t}),!e.state.selectedValue[0]||!e.state.selectedValue[1]){var s=t[0]||g()(),l=t[1]||s.clone().add(1,"months");e.setState({selectedValue:t,value:j([s,l])})}t[0]&&!t[1]&&(e.setState({firstSelectedValue:t[0]}),e.fireHoverValueChange(t.concat())),e.props.onChange(t),(n||t[0]&&t[1])&&(e.setState({prevSelectedValue:t,firstSelectedValue:null}),e.fireHoverValueChange([]),e.props.onSelect(t,r))},this.fireValueChange=function(t){var n=e.props;"value"in n||e.setState({value:t}),n.onValueChange(t)},this.fireHoverValueChange=function(t){var n=e.props;"hoverValue"in n||e.setState({hoverValue:t}),n.onHoverChange(t)},this.clear=function(){e.fireSelectValueChange([],!0),e.props.onClear()},this.disabledStartTime=function(t){return e.props.disabledTime(t,"start")},this.disabledEndTime=function(t){return e.props.disabledTime(t,"end")},this.disabledStartMonth=function(t){var n=e.state.value;return t.isAfter(n[1],"month")},this.disabledEndMonth=function(t){var n=e.state.value;return t.isBefore(n[0],"month")}};Object(b["polyfill"])(F);t["a"]=Object(M["a"])(F)},t23M:function(e,t,n){"use strict";function r(e){return r="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},r(e)}function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){for(var n=0;n1)v.default(!1,"Find more than one child node with `children` in ResizeObserver. Will only observe first one.");else if(0===t.length)return v.default(!1,"`children` of ResizeObserver is empty. Nothing is in observe."),null;var n=t[0];if(p.isValidElement(n)&&w.supportRef(n)){var r=n.ref;t[0]=p.cloneElement(n,{ref:y.composeRef(r,this.setChildNode)})}return 1===t.length?t[0]:t.map(function(e,t){return!p.isValidElement(e)||"key"in e&&null!==e.key?e:p.cloneElement(e,{key:"".concat(x,"-").concat(t)})})}}]),t}(p.Component);_.displayName="ResizeObserver",t.default=_},t3Un:function(e,t,n){"use strict";n.d(t,"b",function(){return v}),n.d(t,"a",function(){return y});var r=n("d6i3"),i=n.n(r),o=n("p0pE"),a=n.n(o),s=(n("/xke"),n("TeRw")),l=n("1l/V"),c=n.n(l),u=n("Hg0r"),h=n("20nU"),d=h["a"].serviceHost;function f(e,t){return p.apply(this,arguments)}function p(){return p=c()(i.a.mark(function e(t,n){var r,o;return i.a.wrap(function(e){while(1)switch(e.prev=e.next){case 0:return n=n||{},n.credentials="include",-1!==t.indexOf("http")?t+=t.indexOf("?")>0?"&":"?":t=d+t,e.next=5,Object(u["b"])(t,n);case 5:if(r=e.sent,o={},"application/json"!==r.headers.get("content-type")){e.next=13;break}return e.next=10,r.json();case 10:o=e.sent,e.next=17;break;case 13:return e.next=15,r.arrayBuffer();case 15:e.t0=e.sent,o={buffer:e.t0};case 17:if(403!==r.status){e.next=20;break}return window.location.href=window.location.origin+window.location.pathname,e.abrupt("return",{code:r.status,msg:o.message});case 20:if(200===r.status){e.next=26;break}if(!o.errors){e.next=24;break}return s["a"].error({message:"\u8bf7\u6c42\u5931\u8d25",description:Object.values(o.errors)[0][0],duration:1.5}),e.abrupt("return",{code:r.status,msg:Object.values(o.errors)[0][0]});case 24:return s["a"].error({message:"\u8bf7\u6c42\u5931\u8d25",description:o.message,duration:1.5}),e.abrupt("return",{code:r.status,msg:o.message});case 26:return e.abrupt("return",a()({code:r.status},o));case 27:case"end":return e.stop()}},e)})),p.apply(this,arguments)}var m=(e,t,n)=>{if(null!==t){if("undefined"!==typeof t)if("object"===typeof t)for(var r in t)m(e+"["+r+"]",t[r],n);else n.push("".concat(e,"=").concat(encodeURIComponent(t)))}else n.push("".concat(e,"="))};function g(e){if(!e)return"";if("object"===typeof e&&!(e instanceof Array)){var t=[];for(var n in e)m(n,e[n],t);return t.join("&")}return""}function v(e,t){return f(e,{method:"POST",headers:{"Content-Type":"application/x-www-form-urlencoded"},body:g(t)})}function y(e,t){var n=g(t);return f(n?e+(e.indexOf("?")>0?"&":"?")+n:e,null)}},tEej:function(e,t,n){var r=n("Ojgd"),i=Math.min;e.exports=function(e){return e>0?i(r(e),9007199254740991):0}},tGd3:function(e,t,n){var r=n("7vYJ"),i=n("u8+u"),o=n("+mmm");e.exports=function(e,t){if(r(e),i(t)&&t.constructor===e)return t;var n=o.f(e),a=n.resolve;return a(t),n.promise}},tI4l:function(e,t,n){"use strict";t["a"]={periodText:{month_price:"\u6708\u4ed8",quarter_price:"\u5b63\u4ed8",half_year_price:"\u534a\u5e74\u4ed8",year_price:"\u5e74\u4ed8",two_year_price:"\u4e24\u5e74\u4ed8",three_year_price:"\u4e09\u5e74\u4ed8",onetime_price:"\u4e00\u6b21\u6027",reset_price:"\u6d41\u91cf\u91cd\u7f6e\u5305"},tutorialCategoryText:{1:"Windows",2:"macOS",3:"iOS",4:"Android",5:"Linux",6:"\u8def\u7531\u5668"},tutorialCategoryIcon:{1:"fab fa-2x fa-windows",2:"fab fa-2x fa-apple",3:"fab fa-2x fa-apple",4:"fab fa-2x fa-android",5:"fab fa-2x fa-linux",6:"fa fa-2x fa-wifi"},orderStatusText:{0:"\u5f85\u652f\u4ed8",1:"\u5f00\u901a\u4e2d",2:"\u5df2\u53d6\u6d88",3:"\u5df2\u5b8c\u6210",4:"\u5df2\u6298\u62b5"},commissionStatusText:{0:"\u5f85\u786e\u8ba4",1:"\u53d1\u653e\u4e2d",2:"\u5df2\u53d1\u653e",3:"\u5df2\u9a73\u56de"},ticketStatusText:{0:"\u5f00\u542f",1:"\u5f85\u56de\u590d",2:"\u5f85\u7b54\u590d",3:"\u5173\u95ed"}}},tRgb:function(e,t,n){"use strict";var r=n("AU/w");function i(e){return s(e)||a(e)||o()}function o(){throw new TypeError("Invalid attempt to spread non-iterable instance")}function a(e){if(Symbol.iterator in Object(e)||"[object Arguments]"===Object.prototype.toString.call(e))return Array.from(e)}function s(e){if(Array.isArray(e)){for(var t=0,n=new Array(e.length);t2&&void 0!==arguments[2]&&arguments[2];r.inTimeTravelling?r.inTimeTravelling=!1:a(e,t,n)};return r.unlisten=o.listen(s),s(o.location,o.action,!0),r}return x(t,e),v(t,[{key:"componentWillUnmount",value:function(){this.unlisten(),this.unsubscribe()}},{key:"render",value:function(){var e=this.props,t=e.history,n=e.children;return i.a.createElement(l["e"],{history:t},n)}}]),t}(r["PureComponent"]);o.propTypes={store:a.a.shape({getState:a.a.func.isRequired,subscribe:a.a.func.isRequired}).isRequired,history:a.a.shape({action:a.a.string.isRequired,listen:a.a.func.isRequired,location:a.a.object.isRequired,push:a.a.func.isRequired}).isRequired,basename:a.a.string,children:a.a.oneOfType([a.a.func,a.a.node]),onLocationChanged:a.a.func.isRequired};var u=function(e){return{onLocationChanged:function(t,n,r){return e(Object(c["f"])(t,n,r))}}},h=function(e){var t=e.context||s["b"];if(null==t)throw"Please upgrade to react-redux v6";return i.a.createElement(t.Consumer,null,function(t){var n=t.store;return i.a.createElement(o,p({store:n},e))})};return h.propTypes={context:a.a.object},Object(s["c"])(null,u)(h)},C=S,E=function(e){var t=e.fromJS,n=e.merge,r=function(e){var r=t({location:e.location,action:e.action});return function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:r,i=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},o=i.type,a=i.payload;if(o===c["b"]){var s=a.location,l=a.action,u=a.isFirstRendering;return u?e:n(e,{location:t(s),action:l})}return e}};return r},k=E,O=function(e,t){if(!e)return e;var n=t.length;if(n){for(var r=e,i=0;i=0&&n.left>=0&&n.bottom>n.top&&n.right>n.left?n:null}function Ne(e,t,n,r){var i=Me.clone(e),o={width:t.width,height:t.height};return r.adjustX&&i.left=n.left&&i.left+o.width>n.right&&(o.width-=i.left+o.width-n.right),r.adjustX&&i.left+o.width>n.right&&(i.left=Math.max(n.right-o.width,n.left)),r.adjustY&&i.top=n.top&&i.top+o.height>n.bottom&&(o.height-=i.top+o.height-n.bottom),r.adjustY&&i.top+o.height>n.bottom&&(i.top=Math.max(n.bottom-o.height,n.top)),Me.mix(i,o)}function Ie(e){var t,n,r;if(Me.isWindow(e)||9===e.nodeType){var i=Me.getWindow(e);t={left:Me.getWindowScrollLeft(i),top:Me.getWindowScrollTop(i)},n=Me.viewportWidth(i),r=Me.viewportHeight(i)}else t=Me.offset(e),n=Me.outerWidth(e),r=Me.outerHeight(e);return t.width=n,t.height=r,t}function $e(e,t){var n=t.charAt(0),r=t.charAt(1),i=e.width,o=e.height,a=e.left,s=e.top;return"c"===n?s+=o/2:"b"===n&&(s+=o),"c"===r?a+=i/2:"r"===r&&(a+=i),{left:a,top:s}}function Fe(e,t,n,r,i){var o=$e(t,n[1]),a=$e(e,n[0]),s=[a.left-o.left,a.top-o.top];return{left:Math.round(e.left-s[0]+r[0]-i[0]),top:Math.round(e.top-s[1]+r[1]-i[1])}}function Ve(e,t,n){return e.leftn.right}function Be(e,t,n){return e.topn.bottom}function We(e,t,n){return e.left>n.right||e.left+t.widthn.bottom||e.top+t.height=n.right||r.top>=n.bottom}function Xe(e,t,n){var r=n.target||t,i=Ie(r),o=!Ye(r,n.overflow&&n.overflow.alwaysByViewport);return Ge(e,i,n,o)}function Qe(e,t,n){var r,i,o=Me.getDocument(e),a=o.defaultView||o.parentWindow,s=Me.getWindowScrollLeft(a),l=Me.getWindowScrollTop(a),c=Me.viewportWidth(a),u=Me.viewportHeight(a);r="pageX"in t?t.pageX:s+t.clientX,i="pageY"in t?t.pageY:l+t.clientY;var h={left:r,top:i,width:0,height:0},d=r>=0&&r<=s+c&&i>=0&&i<=l+u,f=[n.points[0],"cc"];return Ge(e,h,R(R({},n),{},{points:f}),d)}Xe.__getOffsetParent=Re,Xe.__getVisibleRectForElement=je;function Ze(e,t){var n=void 0;function r(){n&&(clearTimeout(n),n=null)}function i(){r(),n=setTimeout(e,t)}return i.clear=r,i}function Je(e,t){return e===t||!(!e||!t)&&("pageX"in t&&"pageY"in t?e.pageX===t.pageX&&e.pageY===t.pageY:"clientX"in t&&"clientY"in t&&(e.clientX===t.clientX&&e.clientY===t.clientY))}function et(e){return e&&"object"===typeof e&&e.window===e}function tt(e,t){var n=Math.floor(e),r=Math.floor(t);return Math.abs(n-r)<=1}function nt(e,t){e!==document.activeElement&&Object(y["a"])(t,e)&&e.focus()}function rt(e){return"function"===typeof e&&e?e():null}function it(e){return"object"===typeof e&&e?e:null}var ot=function(e){function t(){var e,n,r,i;a()(this,t);for(var o=arguments.length,s=Array(o),c=0;c1?(!n&&t&&(r.className+=" "+t),d.a.createElement("div",r)):d.a.Children.only(r.children)},t}(h["Component"]);ht.propTypes={children:p.a.any,className:p.a.string,visible:p.a.bool,hiddenClassName:p.a.string};var dt=ht,ft=function(e){function t(){return a()(this,t),l()(this,e.apply(this,arguments))}return u()(t,e),t.prototype.render=function(){var e=this.props,t=e.className;return e.visible||(t+=" "+e.hiddenClassName),d.a.createElement("div",{className:t,onMouseEnter:e.onMouseEnter,onMouseLeave:e.onMouseLeave,onMouseDown:e.onMouseDown,onTouchStart:e.onTouchStart,style:e.style},d.a.createElement(dt,{className:e.prefixCls+"-content",visible:e.visible},e.children))},t}(h["Component"]);ft.propTypes={hiddenClassName:p.a.string,className:p.a.string,prefixCls:p.a.string,onMouseEnter:p.a.func,onMouseLeave:p.a.func,onMouseDown:p.a.func,onTouchStart:p.a.func,children:p.a.any};var pt=ft,mt=function(e){function t(n){a()(this,t);var r=l()(this,e.call(this,n));return gt.call(r),r.state={stretchChecked:!1,targetWidth:void 0,targetHeight:void 0},r.savePopupRef=O.bind(r,"popupInstance"),r.saveAlignRef=O.bind(r,"alignInstance"),r}return u()(t,e),t.prototype.componentDidMount=function(){this.rootNode=this.getPopupDomNode(),this.setStretchSize()},t.prototype.componentDidUpdate=function(){this.setStretchSize()},t.prototype.getPopupDomNode=function(){return g.a.findDOMNode(this.popupInstance)},t.prototype.getMaskTransitionName=function(){var e=this.props,t=e.maskTransitionName,n=e.maskAnimation;return!t&&n&&(t=e.prefixCls+"-"+n),t},t.prototype.getTransitionName=function(){var e=this.props,t=e.transitionName;return!t&&e.animation&&(t=e.prefixCls+"-"+e.animation),t},t.prototype.getClassName=function(e){return this.props.prefixCls+" "+this.props.className+" "+e},t.prototype.getPopupElement=function(){var e=this,t=this.savePopupRef,n=this.state,r=n.stretchChecked,o=n.targetHeight,a=n.targetWidth,s=this.props,l=s.align,c=s.visible,u=s.prefixCls,h=s.style,f=s.getClassNameFromAlign,p=s.destroyPopupOnHide,m=s.stretch,g=s.children,v=s.onMouseEnter,y=s.onMouseLeave,b=s.onMouseDown,w=s.onTouchStart,x=this.getClassName(this.currentAlignClassName||f(l)),_=u+"-hidden";c||(this.currentAlignClassName=null);var S={};m&&(-1!==m.indexOf("height")?S.height=o:-1!==m.indexOf("minHeight")&&(S.minHeight=o),-1!==m.indexOf("width")?S.width=a:-1!==m.indexOf("minWidth")&&(S.minWidth=a),r||(S.visibility="hidden",setTimeout(function(){e.alignInstance&&e.alignInstance.forceAlign()},0)));var C=i()({},S,h,this.getZIndexStyle()),E={className:x,prefixCls:u,ref:t,onMouseEnter:v,onMouseLeave:y,onMouseDown:b,onTouchStart:w,style:C};return p?d.a.createElement(lt["a"],{component:"",exclusive:!0,transitionAppear:!0,transitionName:this.getTransitionName()},c?d.a.createElement(st,{target:this.getAlignTarget(),key:"popup",ref:this.saveAlignRef,monitorWindowResize:!0,align:l,onAlign:this.onAlign},d.a.createElement(pt,i()({visible:!0},E),g)):null):d.a.createElement(lt["a"],{component:"",exclusive:!0,transitionAppear:!0,transitionName:this.getTransitionName(),showProp:"xVisible"},d.a.createElement(st,{target:this.getAlignTarget(),key:"popup",ref:this.saveAlignRef,monitorWindowResize:!0,xVisible:c,childrenProps:{visible:"xVisible"},disabled:!c,align:l,onAlign:this.onAlign},d.a.createElement(pt,i()({hiddenClassName:_},E),g)))},t.prototype.getZIndexStyle=function(){var e={},t=this.props;return void 0!==t.zIndex&&(e.zIndex=t.zIndex),e},t.prototype.getMaskElement=function(){var e=this.props,t=void 0;if(e.mask){var n=this.getMaskTransitionName();t=d.a.createElement(dt,{style:this.getZIndexStyle(),key:"mask",className:e.prefixCls+"-mask",hiddenClassName:e.prefixCls+"-mask-hidden",visible:e.visible}),n&&(t=d.a.createElement(lt["a"],{key:"mask",showProp:"visible",transitionAppear:!0,component:"",transitionName:n},t))}return t},t.prototype.render=function(){return d.a.createElement("div",null,this.getMaskElement(),this.getPopupElement())},t}(h["Component"]);mt.propTypes={visible:p.a.bool,style:p.a.object,getClassNameFromAlign:p.a.func,onAlign:p.a.func,getRootDomNode:p.a.func,align:p.a.any,destroyPopupOnHide:p.a.bool,className:p.a.string,prefixCls:p.a.string,onMouseEnter:p.a.func,onMouseLeave:p.a.func,onMouseDown:p.a.func,onTouchStart:p.a.func,stretch:p.a.string,children:p.a.node,point:p.a.shape({pageX:p.a.number,pageY:p.a.number})};var gt=function(){var e=this;this.onAlign=function(t,n){var r=e.props,i=r.getClassNameFromAlign(n);e.currentAlignClassName!==i&&(e.currentAlignClassName=i,t.className=e.getClassName(i)),r.onAlign(t,n)},this.setStretchSize=function(){var t=e.props,n=t.stretch,r=t.getRootDomNode,i=t.visible,o=e.state,a=o.stretchChecked,s=o.targetHeight,l=o.targetWidth;if(n&&i){var c=r();if(c){var u=c.offsetHeight,h=c.offsetWidth;s===u&&l===h&&a||e.setState({stretchChecked:!0,targetHeight:u,targetWidth:h})}}else a&&e.setState({stretchChecked:!1})},this.getTargetElement=function(){return e.props.getRootDomNode()},this.getAlignTarget=function(){var t=e.props.point;return t||e.getTargetElement}},vt=mt;function yt(){}function bt(){return""}function wt(){return window.document}var xt=["onClick","onMouseDown","onTouchStart","onMouseEnter","onMouseLeave","onFocus","onBlur","onContextMenu"],_t=!!m["createPortal"],St={rcTrigger:p.a.shape({onPopupMouseDown:p.a.func})},Ct=function(e){function t(n){a()(this,t);var r=l()(this,e.call(this,n));Et.call(r);var i=void 0;return i="popupVisible"in n?!!n.popupVisible:!!n.defaultPopupVisible,r.state={prevPopupVisible:i,popupVisible:i},xt.forEach(function(e){r["fire"+e]=function(t){r.fireEvents(e,t)}}),r}return u()(t,e),t.prototype.getChildContext=function(){return{rcTrigger:{onPopupMouseDown:this.onPopupMouseDown}}},t.prototype.componentDidMount=function(){this.componentDidUpdate({},{popupVisible:this.state.popupVisible})},t.prototype.componentDidUpdate=function(e,t){var n=this.props,r=this.state,i=function(){t.popupVisible!==r.popupVisible&&n.afterPopupVisibleChange(r.popupVisible)};if(_t||this.renderComponent(null,i),r.popupVisible){var o=void 0;return this.clickOutsideHandler||!this.isClickToHide()&&!this.isContextMenuToShow()||(o=n.getDocument(),this.clickOutsideHandler=Object(b["a"])(o,"mousedown",this.onDocumentClick)),this.touchOutsideHandler||(o=o||n.getDocument(),this.touchOutsideHandler=Object(b["a"])(o,"touchstart",this.onDocumentClick)),!this.contextMenuOutsideHandler1&&this.isContextMenuToShow()&&(o=o||n.getDocument(),this.contextMenuOutsideHandler1=Object(b["a"])(o,"scroll",this.onContextMenuClose)),void(!this.contextMenuOutsideHandler2&&this.isContextMenuToShow()&&(this.contextMenuOutsideHandler2=Object(b["a"])(window,"blur",this.onContextMenuClose)))}this.clearOutsideHandler()},t.prototype.componentWillUnmount=function(){this.clearDelayTimer(),this.clearOutsideHandler(),clearTimeout(this.mouseDownTimeout)},t.getDerivedStateFromProps=function(e,t){var n=e.popupVisible,r={};return void 0!==n&&t.popupVisible!==n&&(r.popupVisible=n,r.prevPopupVisible=t.popupVisible),r},t.prototype.getPopupDomNode=function(){return this._component&&this._component.getPopupDomNode?this._component.getPopupDomNode():null},t.prototype.getPopupAlign=function(){var e=this.props,t=e.popupPlacement,n=e.popupAlign,r=e.builtinPlacements;return t&&r?E(r,t,n):n},t.prototype.setPopupVisible=function(e,t){var n=this.props.alignPoint,r=this.state.popupVisible;this.clearDelayTimer(),r!==e&&("popupVisible"in this.props||this.setState({popupVisible:e,prevPopupVisible:r}),this.props.onPopupVisibleChange(e)),n&&t&&this.setPoint(t)},t.prototype.delaySetPopupVisible=function(e,t,n){var r=this,i=1e3*t;if(this.clearDelayTimer(),i){var o=n?{pageX:n.pageX,pageY:n.pageY}:null;this.delayTimer=setTimeout(function(){r.setPopupVisible(e,o),r.clearDelayTimer()},i)}else this.setPopupVisible(e,n)},t.prototype.clearDelayTimer=function(){this.delayTimer&&(clearTimeout(this.delayTimer),this.delayTimer=null)},t.prototype.clearOutsideHandler=function(){this.clickOutsideHandler&&(this.clickOutsideHandler.remove(),this.clickOutsideHandler=null),this.contextMenuOutsideHandler1&&(this.contextMenuOutsideHandler1.remove(),this.contextMenuOutsideHandler1=null),this.contextMenuOutsideHandler2&&(this.contextMenuOutsideHandler2.remove(),this.contextMenuOutsideHandler2=null),this.touchOutsideHandler&&(this.touchOutsideHandler.remove(),this.touchOutsideHandler=null)},t.prototype.createTwoChains=function(e){var t=this.props.children.props,n=this.props;return t[e]&&n[e]?this["fire"+e]:t[e]||n[e]},t.prototype.isClickToShow=function(){var e=this.props,t=e.action,n=e.showAction;return-1!==t.indexOf("click")||-1!==n.indexOf("click")},t.prototype.isContextMenuToShow=function(){var e=this.props,t=e.action,n=e.showAction;return-1!==t.indexOf("contextMenu")||-1!==n.indexOf("contextMenu")},t.prototype.isClickToHide=function(){var e=this.props,t=e.action,n=e.hideAction;return-1!==t.indexOf("click")||-1!==n.indexOf("click")},t.prototype.isMouseEnterToShow=function(){var e=this.props,t=e.action,n=e.showAction;return-1!==t.indexOf("hover")||-1!==n.indexOf("mouseEnter")},t.prototype.isMouseLeaveToHide=function(){var e=this.props,t=e.action,n=e.hideAction;return-1!==t.indexOf("hover")||-1!==n.indexOf("mouseLeave")},t.prototype.isFocusToShow=function(){var e=this.props,t=e.action,n=e.showAction;return-1!==t.indexOf("focus")||-1!==n.indexOf("focus")},t.prototype.isBlurToHide=function(){var e=this.props,t=e.action,n=e.hideAction;return-1!==t.indexOf("focus")||-1!==n.indexOf("blur")},t.prototype.forcePopupAlign=function(){this.state.popupVisible&&this._component&&this._component.alignInstance&&this._component.alignInstance.forceAlign()},t.prototype.fireEvents=function(e,t){var n=this.props.children.props[e];n&&n(t);var r=this.props[e];r&&r(t)},t.prototype.close=function(){this.setPopupVisible(!1)},t.prototype.render=function(){var e=this,t=this.state.popupVisible,n=this.props,r=n.children,i=n.forceRender,o=n.alignPoint,a=n.className,s=d.a.Children.only(r),l={key:"trigger"};this.isContextMenuToShow()?l.onContextMenu=this.onContextMenu:l.onContextMenu=this.createTwoChains("onContextMenu"),this.isClickToHide()||this.isClickToShow()?(l.onClick=this.onClick,l.onMouseDown=this.onMouseDown,l.onTouchStart=this.onTouchStart):(l.onClick=this.createTwoChains("onClick"),l.onMouseDown=this.createTwoChains("onMouseDown"),l.onTouchStart=this.createTwoChains("onTouchStart")),this.isMouseEnterToShow()?(l.onMouseEnter=this.onMouseEnter,o&&(l.onMouseMove=this.onMouseMove)):l.onMouseEnter=this.createTwoChains("onMouseEnter"),this.isMouseLeaveToHide()?l.onMouseLeave=this.onMouseLeave:l.onMouseLeave=this.createTwoChains("onMouseLeave"),this.isFocusToShow()||this.isBlurToHide()?(l.onFocus=this.onFocus,l.onBlur=this.onBlur):(l.onFocus=this.createTwoChains("onFocus"),l.onBlur=this.createTwoChains("onBlur"));var c=S()(s&&s.props&&s.props.className,a);c&&(l.className=c);var u=d.a.cloneElement(s,l);if(!_t)return d.a.createElement(w["a"],{parent:this,visible:t,autoMount:!1,forceRender:i,getComponent:this.getComponent,getContainer:this.getContainer},function(t){var n=t.renderComponent;return e.renderComponent=n,u});var h=void 0;return(t||this._component||i)&&(h=d.a.createElement(x["a"],{key:"portal",getContainer:this.getContainer,didUpdate:this.handlePortalUpdate},this.getComponent())),[u,h]},t}(d.a.Component);Ct.propTypes={children:p.a.any,action:p.a.oneOfType([p.a.string,p.a.arrayOf(p.a.string)]),showAction:p.a.any,hideAction:p.a.any,getPopupClassNameFromAlign:p.a.any,onPopupVisibleChange:p.a.func,afterPopupVisibleChange:p.a.func,popup:p.a.oneOfType([p.a.node,p.a.func]).isRequired,popupStyle:p.a.object,prefixCls:p.a.string,popupClassName:p.a.string,className:p.a.string,popupPlacement:p.a.string,builtinPlacements:p.a.object,popupTransitionName:p.a.oneOfType([p.a.string,p.a.object]),popupAnimation:p.a.any,mouseEnterDelay:p.a.number,mouseLeaveDelay:p.a.number,zIndex:p.a.number,focusDelay:p.a.number,blurDelay:p.a.number,getPopupContainer:p.a.func,getDocument:p.a.func,forceRender:p.a.bool,destroyPopupOnHide:p.a.bool,mask:p.a.bool,maskClosable:p.a.bool,onPopupAlign:p.a.func,popupAlign:p.a.object,popupVisible:p.a.bool,defaultPopupVisible:p.a.bool,maskTransitionName:p.a.oneOfType([p.a.string,p.a.object]),maskAnimation:p.a.string,stretch:p.a.string,alignPoint:p.a.bool},Ct.contextTypes=St,Ct.childContextTypes=St,Ct.defaultProps={prefixCls:"rc-trigger-popup",getPopupClassNameFromAlign:bt,getDocument:wt,onPopupVisibleChange:yt,afterPopupVisibleChange:yt,onPopupAlign:yt,popupClassName:"",mouseEnterDelay:0,mouseLeaveDelay:.1,focusDelay:0,blurDelay:.15,popupStyle:{},destroyPopupOnHide:!1,popupAlign:{},defaultPopupVisible:!1,mask:!1,maskClosable:!0,action:[],showAction:[],hideAction:[]};var Et=function(){var e=this;this.onMouseEnter=function(t){var n=e.props.mouseEnterDelay;e.fireEvents("onMouseEnter",t),e.delaySetPopupVisible(!0,n,n?null:t)},this.onMouseMove=function(t){e.fireEvents("onMouseMove",t),e.setPoint(t)},this.onMouseLeave=function(t){e.fireEvents("onMouseLeave",t),e.delaySetPopupVisible(!1,e.props.mouseLeaveDelay)},this.onPopupMouseEnter=function(){e.clearDelayTimer()},this.onPopupMouseLeave=function(t){t.relatedTarget&&!t.relatedTarget.setTimeout&&e._component&&e._component.getPopupDomNode&&Object(y["a"])(e._component.getPopupDomNode(),t.relatedTarget)||e.delaySetPopupVisible(!1,e.props.mouseLeaveDelay)},this.onFocus=function(t){e.fireEvents("onFocus",t),e.clearDelayTimer(),e.isFocusToShow()&&(e.focusTime=Date.now(),e.delaySetPopupVisible(!0,e.props.focusDelay))},this.onMouseDown=function(t){e.fireEvents("onMouseDown",t),e.preClickTime=Date.now()},this.onTouchStart=function(t){e.fireEvents("onTouchStart",t),e.preTouchTime=Date.now()},this.onBlur=function(t){e.fireEvents("onBlur",t),e.clearDelayTimer(),e.isBlurToHide()&&e.delaySetPopupVisible(!1,e.props.blurDelay)},this.onContextMenu=function(t){t.preventDefault(),e.fireEvents("onContextMenu",t),e.setPopupVisible(!0,t)},this.onContextMenuClose=function(){e.isContextMenuToShow()&&e.close()},this.onClick=function(t){if(e.fireEvents("onClick",t),e.focusTime){var n=void 0;if(e.preClickTime&&e.preTouchTime?n=Math.min(e.preClickTime,e.preTouchTime):e.preClickTime?n=e.preClickTime:e.preTouchTime&&(n=e.preTouchTime),Math.abs(n-e.focusTime)<20)return;e.focusTime=0}e.preClickTime=0,e.preTouchTime=0,e.isClickToShow()&&(e.isClickToHide()||e.isBlurToHide())&&t&&t.preventDefault&&t.preventDefault();var r=!e.state.popupVisible;(e.isClickToHide()&&!r||r&&e.isClickToShow())&&e.setPopupVisible(!e.state.popupVisible,t)},this.onPopupMouseDown=function(){var t=e.context.rcTrigger,n=void 0===t?{}:t;e.hasPopupMouseDown=!0,clearTimeout(e.mouseDownTimeout),e.mouseDownTimeout=setTimeout(function(){e.hasPopupMouseDown=!1},0),n.onPopupMouseDown&&n.onPopupMouseDown.apply(n,arguments)},this.onDocumentClick=function(t){if(!e.props.mask||e.props.maskClosable){var n=t.target,r=Object(m["findDOMNode"])(e);Object(y["a"])(r,n)||e.hasPopupMouseDown||e.close()}},this.getRootDomNode=function(){return Object(m["findDOMNode"])(e)},this.getPopupClassNameFromAlign=function(t){var n=[],r=e.props,i=r.popupPlacement,o=r.builtinPlacements,a=r.prefixCls,s=r.alignPoint,l=r.getPopupClassNameFromAlign;return i&&o&&n.push(k(o,a,t,s)),l&&n.push(l(t)),n.join(" ")},this.getComponent=function(){var t=e.props,n=t.prefixCls,r=t.destroyPopupOnHide,o=t.popupClassName,a=t.action,s=t.onPopupAlign,l=t.popupAnimation,c=t.popupTransitionName,u=t.popupStyle,h=t.mask,f=t.maskAnimation,p=t.maskTransitionName,m=t.zIndex,g=t.popup,v=t.stretch,y=t.alignPoint,b=e.state,w=b.popupVisible,x=b.point,_=e.getPopupAlign(),S={};return e.isMouseEnterToShow()&&(S.onMouseEnter=e.onPopupMouseEnter),e.isMouseLeaveToHide()&&(S.onMouseLeave=e.onPopupMouseLeave),S.onMouseDown=e.onPopupMouseDown,S.onTouchStart=e.onPopupMouseDown,d.a.createElement(vt,i()({prefixCls:n,destroyPopupOnHide:r,visible:w,point:y&&x,className:o,action:a,align:_,onAlign:s,animation:l,getClassNameFromAlign:e.getPopupClassNameFromAlign},S,{stretch:v,getRootDomNode:e.getRootDomNode,style:u,mask:h,zIndex:m,transitionName:c,maskAnimation:f,maskTransitionName:p,ref:e.savePopup}),"function"===typeof g?g():g)},this.getContainer=function(){var t=e.props,n=document.createElement("div");n.style.position="absolute",n.style.top="0",n.style.left="0",n.style.width="100%";var r=t.getPopupContainer?t.getPopupContainer(Object(m["findDOMNode"])(e)):t.getDocument().body;return r.appendChild(n),n},this.setPoint=function(t){var n=e.props.alignPoint;n&&t&&e.setState({point:{pageX:t.pageX,pageY:t.pageY}})},this.handlePortalUpdate=function(){e.state.prevPopupVisible!==e.state.popupVisible&&e.props.afterPopupVisibleChange(e.state.popupVisible)},this.savePopup=function(t){e._component=t}};Object(v["polyfill"])(Ct);t["a"]=Ct},uhBA:function(e,t,n){"use strict";var r=Object.prototype.hasOwnProperty,i="~";function o(){}function a(e,t,n){this.fn=e,this.context=t,this.once=n||!1}function s(e,t,n,r,o){if("function"!==typeof n)throw new TypeError("The listener must be a function");var s=new a(n,r||e,o),l=i?i+t:t;return e._events[l]?e._events[l].fn?e._events[l]=[e._events[l],s]:e._events[l].push(s):(e._events[l]=s,e._eventsCount++),e}function l(e,t){0===--e._eventsCount?e._events=new o:delete e._events[t]}function c(){this._events=new o,this._eventsCount=0}Object.create&&(o.prototype=Object.create(null),(new o).__proto__||(i=!1)),c.prototype.eventNames=function(){var e,t,n=[];if(0===this._eventsCount)return n;for(t in e=this._events)r.call(e,t)&&n.push(i?t.slice(1):t);return Object.getOwnPropertySymbols?n.concat(Object.getOwnPropertySymbols(e)):n},c.prototype.listeners=function(e){var t=i?i+e:e,n=this._events[t];if(!n)return[];if(n.fn)return[n.fn];for(var r=0,o=n.length,a=new Array(o);r span {font-weight: normal !important;}.ace-github .ace_marker-layer .ace_step {background: rgb(252, 255, 0);}.ace-github .ace_marker-layer .ace_stack {background: rgb(164, 229, 101);}.ace-github .ace_marker-layer .ace_bracket {margin: -1px 0 0 -1px;border: 1px solid rgb(192, 192, 192);}.ace-github .ace_gutter-active-line {background-color : rgba(0, 0, 0, 0.07);}.ace-github .ace_marker-layer .ace_selected-word {background: rgb(250, 250, 255);border: 1px solid rgb(200, 200, 250);}.ace-github .ace_invisible {color: #BFBFBF}.ace-github .ace_print-margin {width: 1px;background: #e8e8e8;}.ace-github .ace_indent-guide {background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAAE0lEQVQImWP4////f4bLly//BwAmVgd1/w11/gAAAABJRU5ErkJggg==") right repeat-y;}';var r=e("../lib/dom");r.importCssString(t.cssText,t.cssClass,!1)}),function(){ace.require(["ace/theme/github"],function(t){e&&(e.exports=t)})}()}).call(this,n("YuTi")(e))},usdK:function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.push=o,t.replace=a,t.go=s,t.goBack=l,t.goForward=c,t.default=void 0;var r=i(n("RFCh"));function i(e){return e&&e.__esModule?e:{default:e}}function o(){r.default.push.apply(r.default,arguments)}function a(){r.default.replace.apply(r.default,arguments)}function s(){r.default.go.apply(r.default,arguments)}function l(){r.default.goBack.apply(r.default,arguments)}function c(){r.default.goForward.apply(r.default,arguments)}var u={push:o,replace:a,go:s,goBack:l,goForward:c};t.default=u},uzXD:function(e,t,n){"use strict";n.r(t);var r=n("jehZ"),i=n.n(r),o=(n("Mwp2"),n("VXEj")),a=(n("/zsF"),n("PArb")),s=(n("5NDa"),n("5rEg")),l=(n("+L6B"),n("2/Rp")),c=(n("miYZ"),n("tsqr")),u=(n("5Dmo"),n("3S7+")),h=(n("Awhp"),n("KrTs")),d=(n("BoS7"),n("Sdc0")),f=(n("qVdP"),n("jsC+")),p=(n("lUTK"),n("BvKs")),m=(n("Pwec"),n("CtXQ")),g=(n("+BJd"),n("mr32")),v=n("q1tI"),y=n.n(v),b=n("Bl7J"),w=n("H9LU"),x=n("qqou"),_=n("/MKj"),S=n("+QRC"),C=n.n(S),E=n("I1u9"),k=n("ykC2"),O=n("B6Jk"),T=n.n(O),A=n("yWgo"),M=n("AMgb"),P=n.n(M),R=n("Oa6W");class L extends y.a.Component{constructor(e){super(e),this.state={searchKey:void 0,sortMode:!0}}componentDidMount(){this.props.dispatch({type:"serverManage/getNodes"}),this.props.dispatch({type:"serverGroup/fetch"})}getTypeTag(e,t){switch(e){case"shadowsocks":return y.a.createElement(g["a"],{color:"#489851"},t);case"v2ray":return y.a.createElement(g["a"],{color:"#CB3180"},t);case"trojan":return y.a.createElement(g["a"],{color:"#EAB854"},t)}}getDispatchTypeByType(e,t){switch(e){case"shadowsocks":return"serverShadowsocks/".concat(t);case"v2ray":return"serverV2ray/".concat(t);case"trojan":return"serverTrojan/".concat(t)}}copy(e){this.props.dispatch({type:this.getDispatchTypeByType(e.type,"copy"),id:e.id})}update(e,t,n){this.props.dispatch({type:this.getDispatchTypeByType(e.type,"update"),id:e.id,key:t,value:n})}drop(e){this.props.dispatch({type:this.getDispatchTypeByType(e.type,"drop"),id:e.id})}render(){var e,t,n,r=this.props.serverManage,v=r.servers,_=r.fetchLoading,S=r.sortMode,O=this.props.serverGroup.groups,M=this.state.searchKey,L={0:"error",1:"warning",2:"processing"},D=(e,t)=>y.a.createElement(f["a"],{trigger:"click",overlay:y.a.createElement(p["a"],null,y.a.createElement(p["a"].Item,{onContextMenu:e=>{e.stopPropagation()}},"shadowsocks"===e.type&&y.a.createElement(w["a"],{key:e.id,record:e},y.a.createElement("a",null,y.a.createElement(m["a"],{type:"edit"})," \u7f16\u8f91")),"v2ray"===e.type&&y.a.createElement(E["a"],{key:e.id,record:e},y.a.createElement("a",null,y.a.createElement(m["a"],{type:"edit"})," \u7f16\u8f91")),"trojan"===e.type&&y.a.createElement(k["a"],{key:e.id,record:e},y.a.createElement("a",null,y.a.createElement(m["a"],{type:"edit"})," \u7f16\u8f91"))),y.a.createElement(p["a"].Item,{onClick:()=>this.copy(e)},y.a.createElement(m["a"],{type:"copy"})," \u590d\u5236"),y.a.createElement(p["a"].Item,{style:{color:"#ff4d4f"},onClick:()=>this.drop(e)},y.a.createElement(m["a"],{type:"delete"})," \u5220\u9664"))},t||y.a.createElement("a",{href:"javascript:void(0);"},"\u64cd\u4f5c ",y.a.createElement(m["a"],{type:"caret-down"}))),j=[{title:"\u64cd\u4f5c",dataIndex:"action",key:"action",align:"left",width:100,render:(e,t,n)=>{return y.a.createElement("div",null,D(t))}},{title:"\u8282\u70b9ID",dataIndex:"id",key:"id",width:150,render:(e,t)=>{return y.a.createElement("span",null,this.getTypeTag(t.type,t.parent_id?e+" => "+t.parent_id:e))}},{title:"\u663e\u9690",dataIndex:"show",key:"show",render:(e,t)=>{return y.a.createElement(d["a"],{size:"small",checked:parseInt(e),onClick:()=>this.update(t,"show",parseInt(e)?0:1)})}},{title:y.a.createElement("span",null,y.a.createElement(u["a"],{placement:"top",title:y.a.createElement("div",null,y.a.createElement(h["a"],{status:"error"})," \u672a\u8fd0\u884c",y.a.createElement("br",null),y.a.createElement(h["a"],{status:"warning"})," \u65e0\u4eba\u4f7f\u7528\u6216\u670d\u52a1\u7aef\u4e0a\u62a5\u5f02\u5e38",y.a.createElement("br",null),y.a.createElement(h["a"],{status:"processing"})," \u8fd0\u884c\u6b63\u5e38",y.a.createElement("br",null))},"\u8282\u70b9 ",y.a.createElement(m["a"],{type:"question-circle"}))),dataIndex:"name",key:"name",render:(e,t)=>{return y.a.createElement(y.a.Fragment,null,y.a.createElement(h["a"],{status:L[t.available_status]}),y.a.createElement("span",null,e))}},{title:"\u5730\u5740",dataIndex:"host",key:"host",render:(e,t)=>{return y.a.createElement("span",{style:{cursor:"pointer"},onClick:()=>{C()(t.host),c["a"].success("\u590d\u5236\u6210\u529f")}},t.host+":"+t.port)}},{title:y.a.createElement("span",null,y.a.createElement(u["a"],{placement:"top",title:"\u6839\u636e\u670d\u52a1\u7aef\u4e0a\u62a5\u9891\u7387\u800c\u5b9a"},"\u4eba\u6570 ",y.a.createElement(m["a"],{type:"question-circle"}))),dataIndex:"online",key:"online",align:"left",width:130,sorter:(e,t)=>e.online-t.online,render:e=>{return y.a.createElement(y.a.Fragment,null,y.a.createElement(m["a"],{type:"user"})," ",e||0)}},{title:y.a.createElement(u["a"],{placement:"top",title:"\u4f7f\u7528\u7684\u6d41\u91cf\u5c06\u4e58\u4ee5\u500d\u7387\u8fdb\u884c\u6263\u9664"},"\u500d\u7387 ",y.a.createElement(m["a"],{type:"question-circle"})),dataIndex:"rate",key:"rate",align:"center",render:e=>{return y.a.createElement(g["a"],{style:{minWidth:60}},e+" x")}},{title:"\u6743\u9650\u7ec4",dataIndex:"group_id",key:"group_id",align:"right",render:(e,t)=>{var n=[];return t.group_id.map(e=>{var t=O.find(t=>t.id===parseInt(e));t&&n.push(y.a.createElement(g["a"],null,t.name))}),y.a.createElement(y.a.Fragment,null,n)}}],N=this;return y.a.createElement(b["a"],i()({},this.props,{title:"\u8282\u70b9\u7ba1\u7406"}),y.a.createElement(P.a,{when:S,message:e=>{return window.confirm("\u8282\u70b9\u6392\u5e8f\u8fd8\u6ca1\u6709\u4fdd\u5b58\uff0c\u662f\u5426\u79bb\u5f00")}}),y.a.createElement("div",{className:"mb-0 block block-bottom ".concat(_?"block-mode-loading":""," ").concat(T.a.manage)},y.a.createElement("div",{className:"bg-white"},y.a.createElement("div",{className:"v2board-table-action",style:{padding:15}},y.a.createElement(f["a"],{overlay:y.a.createElement(p["a"],null,y.a.createElement(p["a"].Item,null,y.a.createElement(w["a"],{key:Math.random()},y.a.createElement("a",null,this.getTypeTag("shadowsocks","Shadowsocks")))),y.a.createElement(p["a"].Item,null,y.a.createElement(E["a"],{key:Math.random()},y.a.createElement("a",null,this.getTypeTag("v2ray","V2ray")))),y.a.createElement(p["a"].Item,null,y.a.createElement(k["a"],{key:Math.random()},y.a.createElement("a",null,this.getTypeTag("trojan","Trojan")))))},y.a.createElement(l["a"],null,y.a.createElement(m["a"],{type:"plus"}))),y.a.createElement(s["a"],{placeholder:"\u8f93\u5165\u4efb\u610f\u5173\u952e\u5b57\u641c\u7d22",style:{width:200},className:"ml-2",onChange:e=>this.setState({searchKey:e.target.value})}),!Object(A["c"])()&&y.a.createElement(l["a"],{style:{float:"right"},type:"primary",onClick:()=>{S?this.props.dispatch({type:"serverManage/saveSort"}):this.props.dispatch({type:"serverManage/setState",payload:{sortMode:!0}})}},S?"\u4fdd\u5b58\u6392\u5e8f":"\u7f16\u8f91\u6392\u5e8f")),Object(A["c"])()?y.a.createElement(o["a"],{className:"v2board-table",itemLayout:"vertical",dataSource:M?v.filter(e=>-1!==JSON.stringify(e).indexOf(M)):v,renderItem:e=>y.a.createElement(o["a"].Item,{className:"v2board_node_mobile ".concat(e.parent_id?"child_node":""),actions:[y.a.createElement(y.a.Fragment,null,this.getTypeTag(e.type,e.parent_id?e.id+" => "+e.parent_id:e.id),y.a.createElement(g["a"],null,y.a.createElement(m["a"],{type:"user"})," ",e.online||0),y.a.createElement(g["a"],null,e.rate," x"))],extra:y.a.createElement(y.a.Fragment,null,y.a.createElement(d["a"],{size:"small",checked:parseInt(e.show),onClick:()=>this.update(e,"show",parseInt(e.show)?0:1)}),y.a.createElement(a["a"],{type:"vertical"}),y.a.createElement("span",null,D(e)))},y.a.createElement(o["a"].Item.Meta,{title:y.a.createElement(y.a.Fragment,null,y.a.createElement(h["a"],{status:L[e.available_status]}),e.name),description:"".concat(e.host,":").concat(e.port)}))}):y.a.createElement(x["a"],{onDragEnd:(e,t)=>{N.props.dispatch({type:"serverManage/sort",fromIndex:e,toIndex:t})},nodeSelector:"tr",handleSelector:"i"},y.a.createElement(R["a"],{onContextMenu:e=>{this.record=e,this.forceUpdate()},disableRightClick:S,tableLayout:"auto",dataSource:M?v.filter(e=>-1!==JSON.stringify(e).indexOf(M)):v,columns:S?[{title:"\u6392\u5e8f",dataIndex:"sort",key:"sort",align:"left",width:100,render:(e,t,n)=>{return y.a.createElement("div",null,y.a.createElement(m["a"],{type:"drag",style:{cursor:"move"},title:"\u62d6\u52a8\u6392\u5e8f"}))}},...j].filter(e=>-1!==["sort","id","name"].indexOf(e.dataIndex)):j,pagination:!S&&{pageSize:20},scroll:{x:1300},rowClassName:e=>e.parent_id?"child_node":""},y.a.createElement("ul",{className:"ant-dropdown-menu ant-dropdown-menu-light ant-dropdown-menu-root ant-dropdown-menu-vertical"},y.a.createElement("li",{className:"ant-dropdown-menu-item"},"shadowsocks"===(null===(e=this.record)||void 0===e?void 0:e.type)&&y.a.createElement(w["a"],{key:Math.random(),record:this.record},y.a.createElement("a",null,y.a.createElement(m["a"],{type:"form"})," \u7f16\u8f91")),"v2ray"===(null===(t=this.record)||void 0===t?void 0:t.type)&&y.a.createElement(E["a"],{key:Math.random(),record:this.record},y.a.createElement("a",null,y.a.createElement(m["a"],{type:"form"})," \u7f16\u8f91")),"trojan"===(null===(n=this.record)||void 0===n?void 0:n.type)&&y.a.createElement(k["a"],{key:Math.random(),record:this.record},y.a.createElement("a",null,y.a.createElement(m["a"],{type:"form"})," \u7f16\u8f91"))),y.a.createElement("li",{onClick:()=>this.copy(this.record),className:"ant-dropdown-menu-item"},y.a.createElement("a",null,y.a.createElement(m["a"],{type:"copy"})," \u590d\u5236")),y.a.createElement("li",{onClick:()=>this.drop(this.record),className:"ant-dropdown-menu-item"},y.a.createElement("a",{style:{color:"#ff4d4f"}},y.a.createElement(m["a"],{type:"delete"})," \u5220\u9664"))))))))}}t["default"]=Object(_["c"])(e=>{var t=e.serverManage,n=e.serverGroup;return{serverManage:t,serverGroup:n}})(L)},vA3T:function(e,t,n){"use strict";var r=n("QbLZ"),i=n.n(r),o=n("jo6Y"),a=n.n(o),s=n("iCc5"),l=n.n(s),c=n("V7oC"),u=n.n(c),h=n("FYw3"),d=n.n(h),f=n("mRg0"),p=n.n(f),m=n("q1tI"),g=n.n(m),v=n("17x9"),y=n.n(v),b=n("YEIV"),w=n.n(b),x=n("TSYQ"),_=n.n(x),S=n("hsuR");function C(e,t){var n=e.props,r=n.styles,i=n.panels,o=n.activeKey,a=n.direction,s=e.props.getRef("root"),l=e.props.getRef("nav")||s,c=e.props.getRef("inkBar"),u=e.props.getRef("activeTab"),h=c.style,d=e.props.tabBarPosition,f=Object(S["a"])(i,o);if(t&&(h.display="none"),u){var p=u,m=Object(S["i"])(h);if(Object(S["k"])(h,""),h.width="",h.height="",h.left="",h.top="",h.bottom="",h.right="","top"===d||"bottom"===d){var g=Object(S["c"])(p,l),v=p.offsetWidth;v===s.offsetWidth?v=0:r.inkBar&&void 0!==r.inkBar.width&&(v=parseFloat(r.inkBar.width,10),v&&(g+=(p.offsetWidth-v)/2)),"rtl"===a&&(g=Object(S["e"])(p,"margin-left")-g),m?Object(S["k"])(h,"translate3d("+g+"px,0,0)"):h.left=g+"px",h.width=v+"px"}else{var y=Object(S["f"])(p,l,!0),b=p.offsetHeight;r.inkBar&&void 0!==r.inkBar.height&&(b=parseFloat(r.inkBar.height,10),b&&(y+=(p.offsetHeight-b)/2)),m?(Object(S["k"])(h,"translate3d(0,"+y+"px,0)"),h.top="0"):h.top=y+"px",h.height=b+"px"}}h.display=-1!==f?"block":"none"}var E=function(e){function t(){return l()(this,t),d()(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return p()(t,e),u()(t,[{key:"componentDidMount",value:function(){var e=this;this.timeout=setTimeout(function(){C(e,!0)},0)}},{key:"componentDidUpdate",value:function(){C(this)}},{key:"componentWillUnmount",value:function(){clearTimeout(this.timeout)}},{key:"render",value:function(){var e,t=this.props,n=t.prefixCls,r=t.styles,i=t.inkBarAnimated,o=n+"-ink-bar",a=_()((e={},w()(e,o,!0),w()(e,i?o+"-animated":o+"-no-animated",!0),e));return g.a.createElement("div",{style:r.inkBar,className:a,key:"inkBar",ref:this.props.saveRef("inkBar")})}}]),t}(g.a.Component),k=E;E.propTypes={prefixCls:y.a.string,styles:y.a.object,inkBarAnimated:y.a.bool,saveRef:y.a.func,direction:y.a.string},E.defaultProps={prefixCls:"",inkBarAnimated:!0,styles:{},saveRef:function(){}};var O=n("2W6z"),T=n.n(O),A=function(e){function t(){return l()(this,t),d()(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return p()(t,e),u()(t,[{key:"render",value:function(){var e=this,t=this.props,n=t.panels,r=t.activeKey,o=t.prefixCls,a=t.tabBarGutter,s=t.saveRef,l=t.tabBarPosition,c=t.renderTabBarNode,u=t.direction,h=[];return g.a.Children.forEach(n,function(t,d){if(t){var f=t.key,p=r===f?o+"-tab-active":"";p+=" "+o+"-tab";var m={};t.props.disabled?p+=" "+o+"-tab-disabled":m={onClick:e.props.onTabClick.bind(e,f)};var v={};r===f&&(v.ref=s("activeTab"));var y=a&&d===n.length-1?0:a,b="rtl"===u?"marginLeft":"marginRight",x=w()({},Object(S["j"])(l)?"marginBottom":b,y);T()("tab"in t.props,"There must be `tab` property on children of Tabs.");var _=g.a.createElement("div",i()({role:"tab","aria-disabled":t.props.disabled?"true":"false","aria-selected":r===f?"true":"false"},m,{className:p,key:f,style:x},v),t.props.tab);c&&(_=c(_)),h.push(_)}}),g.a.createElement("div",{ref:s("navTabsContainer")},h)}}]),t}(g.a.Component),M=A;A.propTypes={activeKey:y.a.string,panels:y.a.node,prefixCls:y.a.string,tabBarGutter:y.a.number,onTabClick:y.a.func,saveRef:y.a.func,renderTabBarNode:y.a.func,tabBarPosition:y.a.string,direction:y.a.string},A.defaultProps={panels:[],prefixCls:[],tabBarGutter:null,onTabClick:function(){},saveRef:function(){}};var P=function(e){function t(){return l()(this,t),d()(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return p()(t,e),u()(t,[{key:"render",value:function(){var e=this.props,t=e.prefixCls,n=e.onKeyDown,r=e.className,o=e.extraContent,s=e.style,l=e.tabBarPosition,c=e.children,u=a()(e,["prefixCls","onKeyDown","className","extraContent","style","tabBarPosition","children"]),h=_()(t+"-bar",w()({},r,!!r)),d="top"===l||"bottom"===l,f=d?{float:"right"}:{},p=o&&o.props?o.props.style:{},v=c;return o&&(v=[Object(m["cloneElement"])(o,{key:"extra",style:i()({},f,p)}),Object(m["cloneElement"])(c,{key:"content"})],v=d?v:v.reverse()),g.a.createElement("div",i()({role:"tablist",className:h,tabIndex:"0",ref:this.props.saveRef("root"),onKeyDown:n,style:s},Object(S["b"])(u)),v)}}]),t}(g.a.Component),R=P;P.propTypes={prefixCls:y.a.string,className:y.a.string,style:y.a.object,tabBarPosition:y.a.oneOf(["left","right","top","bottom"]),children:y.a.node,extraContent:y.a.node,onKeyDown:y.a.func,saveRef:y.a.func},P.defaultProps={prefixCls:"",className:"",style:{},tabBarPosition:"top",extraContent:null,children:null,onKeyDown:function(){},saveRef:function(){}};var L=n("sEfC"),D=n.n(L),j=n("bdgK"),N=function(e){function t(e){l()(this,t);var n=d()(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return n.prevTransitionEnd=function(e){if("opacity"===e.propertyName){var t=n.props.getRef("container");n.scrollToActiveTab({target:t,currentTarget:t})}},n.scrollToActiveTab=function(e){var t=n.props.getRef("activeTab"),r=n.props.getRef("navWrap");if((!e||e.target===e.currentTarget)&&t){var i=n.isNextPrevShown()&&n.lastNextPrevShown;if(n.lastNextPrevShown=n.isNextPrevShown(),i){var o=n.getScrollWH(t),a=n.getOffsetWH(r),s=n.offset,l=n.getOffsetLT(r),c=n.getOffsetLT(t);l>c?(s+=l-c,n.setOffset(s)):l+a=0)l=!1,this.setOffset(0,!1),o=0;else if(a1&&void 0!==arguments[1])||arguments[1],n=Math.min(0,e);if(this.offset!==n){this.offset=n;var r={},i=this.props.tabBarPosition,o=this.props.getRef("nav").style,a=Object(S["i"])(o);"left"===i||"right"===i?r=a?{value:"translate3d(0,"+n+"px,0)"}:{name:"top",value:n+"px"}:a?("rtl"===this.props.direction&&(n=-n),r={value:"translate3d("+n+"px,0,0)"}):r={name:"left",value:n+"px"},a?Object(S["k"])(o,r.value):o[r.name]=r.value,t&&this.setNextPrev()}}},{key:"setPrev",value:function(e){this.state.prev!==e&&this.setState({prev:e})}},{key:"setNext",value:function(e){this.state.next!==e&&this.setState({next:e})}},{key:"isNextPrevShown",value:function(e){return e?e.next||e.prev:this.state.next||this.state.prev}},{key:"render",value:function(){var e,t,n,r,i=this.state,o=i.next,a=i.prev,s=this.props,l=s.prefixCls,c=s.scrollAnimated,u=s.navWrapper,h=s.prevIcon,d=s.nextIcon,f=a||o,p=g.a.createElement("span",{onClick:a?this.prev:null,unselectable:"unselectable",className:_()((e={},w()(e,l+"-tab-prev",1),w()(e,l+"-tab-btn-disabled",!a),w()(e,l+"-tab-arrow-show",f),e)),onTransitionEnd:this.prevTransitionEnd},h||g.a.createElement("span",{className:l+"-tab-prev-icon"})),m=g.a.createElement("span",{onClick:o?this.next:null,unselectable:"unselectable",className:_()((t={},w()(t,l+"-tab-next",1),w()(t,l+"-tab-btn-disabled",!o),w()(t,l+"-tab-arrow-show",f),t))},d||g.a.createElement("span",{className:l+"-tab-next-icon"})),v=l+"-nav",y=_()((n={},w()(n,v,!0),w()(n,c?v+"-animated":v+"-no-animated",!0),n));return g.a.createElement("div",{className:_()((r={},w()(r,l+"-nav-container",1),w()(r,l+"-nav-container-scrolling",f),r)),key:"container",ref:this.props.saveRef("container")},p,m,g.a.createElement("div",{className:l+"-nav-wrap",ref:this.props.saveRef("navWrap")},g.a.createElement("div",{className:l+"-nav-scroll"},g.a.createElement("div",{className:y,ref:this.props.saveRef("nav")},u(this.props.children)))))}}]),t}(g.a.Component),I=N;N.propTypes={activeKey:y.a.string,getRef:y.a.func.isRequired,saveRef:y.a.func.isRequired,tabBarPosition:y.a.oneOf(["left","right","top","bottom"]),prefixCls:y.a.string,scrollAnimated:y.a.bool,onPrevClick:y.a.func,onNextClick:y.a.func,navWrapper:y.a.func,children:y.a.node,prevIcon:y.a.node,nextIcon:y.a.node,direction:y.a.node},N.defaultProps={tabBarPosition:"left",prefixCls:"",scrollAnimated:!0,onPrevClick:function(){},onNextClick:function(){},navWrapper:function(e){return e}};var $=function(e){function t(){var e,n,r,i;l()(this,t);for(var o=arguments.length,a=Array(o),s=0;sn)t.push(arguments[n++]);return v[++g]=function(){s("function"==typeof e?e:Function(e),t)},r(g),g},f=function(e){delete v[e]},"process"==n("2we2")(h)?r=function(e){h.nextTick(a(b,e,1))}:m&&m.now?r=function(e){m.now(a(b,e,1))}:p?(i=new p,o=i.port2,i.port1.onmessage=w,r=a(o.postMessage,o,1)):u.addEventListener&&"function"==typeof postMessage&&!u.importScripts?(r=function(e){u.postMessage(e+"","*")},u.addEventListener("message",w,!1)):r=y in c("script")?function(e){l.appendChild(c("script"))[y]=function(){l.removeChild(this),b.call(e)}}:function(e){setTimeout(a(b,e,1),0)}),e.exports={set:d,clear:f}},"vPd/":function(e,t,n){var r=n("kCCV"),i=n("IX3V").each;function o(e,t){this.query=e,this.isUnconditional=t,this.handlers=[],this.mql=window.matchMedia(e);var n=this;this.listener=function(e){n.mql=e.currentTarget||e,n.assess()},this.mql.addListener(this.listener)}o.prototype={constuctor:o,addHandler:function(e){var t=new r(e);this.handlers.push(t),this.matches()&&t.on()},removeHandler:function(e){var t=this.handlers;i(t,function(n,r){if(n.equals(e))return n.destroy(),!t.splice(r,1)})},matches:function(){return this.mql.matches||this.isUnconditional},clear:function(){i(this.handlers,function(e){e.destroy()}),this.mql.removeListener(this.listener),this.handlers.length=0},assess:function(){var e=this.matches()?"on":"off";i(this.handlers,function(t){t[e]()})}},e.exports=o},vgmO:function(e,t,n){(function(t){var n;n="undefined"!==typeof window?window:"undefined"!==typeof t?t:"undefined"!==typeof self?self:{},e.exports=n}).call(this,n("yLpj"))},vpQ4:function(e,t,n){"use strict";n.d(t,"a",function(){return i});var r=n("rePB");function i(e){for(var t=1;t=e.length?(this._t=void 0,i(1)):i(0,"keys"==t?n:"values"==t?e[n]:[n,e[n]])},"values"),o.Arguments=o.Array,r("keys"),r("values"),r("entries")},w6GO:function(e,t,n){var r=n("5vMV"),i=n("FpHa");e.exports=Object.keys||function(e){return r(e,i)}},w8uh:function(e,t,n){n("Jaki")("Uint16",2,function(e){return function(t,n,r){return e(this,t,n,r)}})},wCXF:function(e,t,n){"use strict";function r(e){"@babel/helpers - typeof";return r="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},r(e)}function i(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function o(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function a(e,t){for(var n=0;n0&&0===this.props.data.length&&this.hasScrollX()&&this.resetScrollX()}},{key:"componentWillUnmount",value:function(){this.resizeEvent&&this.resizeEvent.remove(),this.debouncedWindowResize&&this.debouncedWindowResize.cancel()}},{key:"setScrollPosition",value:function(e){if(this.scrollPosition=e,this.tableNode){var t=this.props.prefixCls;"both"===e?C.default(this.tableNode).remove(new RegExp("^".concat(t,"-scroll-position-.+$"))).add("".concat(t,"-scroll-position-left")).add("".concat(t,"-scroll-position-right")):C.default(this.tableNode).remove(new RegExp("^".concat(t,"-scroll-position-.+$"))).add("".concat(t,"-scroll-position-").concat(e))}}},{key:"setScrollPositionClassName",value:function(){var e=this.bodyTable,t=0===e.scrollLeft,n=e.scrollLeft+1>=e.children[0].getBoundingClientRect().width-e.getBoundingClientRect().width;t&&n?this.setScrollPosition("both"):t?this.setScrollPosition("left"):n?this.setScrollPosition("right"):"middle"!==this.scrollPosition&&this.setScrollPosition("middle")}},{key:"isTableLayoutFixed",value:function(){var e=this.props,t=e.tableLayout,n=e.columns,r=void 0===n?[]:n,i=e.useFixedHeader,o=e.scroll,a=void 0===o?{}:o;return"undefined"!==typeof t?"fixed"===t:!!r.some(function(e){var t=e.ellipsis;return!!t})||(!(!i&&!a.y)||!(!a.x||!0===a.x||"max-content"===a.x))}},{key:"resetScrollX",value:function(){this.headTable&&(this.headTable.scrollLeft=0),this.bodyTable&&(this.bodyTable.scrollLeft=0)}},{key:"hasScrollX",value:function(){var e=this.props.scroll,t=void 0===e?{}:e;return"x"in t}},{key:"renderMainTable",value:function(){var e=this.props,t=e.scroll,n=e.prefixCls,r=this.columnManager.isAnyColumnsFixed(),i=r||t.x||t.y,o=[this.renderTable({columns:this.columnManager.groupedColumns(),isAnyColumnsFixed:r}),this.renderEmptyText(),this.renderFooter()];return i?v.createElement("div",{className:"".concat(n,"-scroll")},o):o}},{key:"renderLeftFixedTable",value:function(){var e=this.props.prefixCls;return v.createElement("div",{className:"".concat(e,"-fixed-left")},this.renderTable({columns:this.columnManager.leftColumns(),fixed:"left"}))}},{key:"renderRightFixedTable",value:function(){var e=this.props.prefixCls;return v.createElement("div",{className:"".concat(e,"-fixed-right")},this.renderTable({columns:this.columnManager.rightColumns(),fixed:"right"}))}},{key:"renderTable",value:function(e){var t=e.columns,n=e.fixed,r=e.isAnyColumnsFixed,i=this.props,o=i.prefixCls,a=i.scroll,s=void 0===a?{}:a,l=s.x||n?"".concat(o,"-fixed"):"",c=v.createElement(A.default,{key:"head",columns:t,fixed:n,tableClassName:l,handleBodyScrollLeft:this.handleBodyScrollLeft,expander:this.expander}),u=v.createElement(M.default,{key:"body",columns:t,fixed:n,tableClassName:l,getRowKey:this.getRowKey,handleWheel:this.handleWheel,handleBodyScroll:this.handleBodyScroll,expander:this.expander,isAnyColumnsFixed:r});return[c,u]}},{key:"renderTitle",value:function(){var e=this.props,t=e.title,n=e.prefixCls;return t?v.createElement("div",{className:"".concat(n,"-title"),key:"title"},t(this.props.data)):null}},{key:"renderFooter",value:function(){var e=this.props,t=e.footer,n=e.prefixCls;return t?v.createElement("div",{className:"".concat(n,"-footer"),key:"footer"},t(this.props.data)):null}},{key:"renderEmptyText",value:function(){var e=this.props,t=e.emptyText,n=e.prefixCls,r=e.data;if(r.length)return null;var i="".concat(n,"-placeholder");return v.createElement("div",{className:i,key:"emptyText"},"function"===typeof t?t():t)}},{key:"render",value:function(){var e,t=this,n=this.props,r=n.prefixCls;this.state.columns?this.columnManager.reset(n.columns):this.state.children&&this.columnManager.reset(null,n.children);var o=E.default(n.prefixCls,n.className,(e={},i(e,"".concat(r,"-fixed-header"),n.useFixedHeader||n.scroll&&n.scroll.y),i(e,"".concat(r,"-scroll-position-left ").concat(r,"-scroll-position-right"),"both"===this.scrollPosition),i(e,"".concat(r,"-scroll-position-").concat(this.scrollPosition),"both"!==this.scrollPosition),i(e,"".concat(r,"-layout-fixed"),this.isTableLayoutFixed()),e)),a=this.columnManager.isAnyColumnsLeftFixed(),s=this.columnManager.isAnyColumnsRightFixed(),l=O.getDataAndAriaProps(n);return v.createElement(_.Provider,{store:this.store},v.createElement(L.default,Object.assign({},n,{columnManager:this.columnManager,getRowKey:this.getRowKey}),function(e){return t.expander=e,v.createElement("div",Object.assign({ref:t.saveTableNodeRef,className:o,style:n.style,id:n.id},l),t.renderTitle(),v.createElement("div",{className:"".concat(r,"-content")},t.renderMainTable(),a&&t.renderLeftFixedTable(),s&&t.renderRightFixedTable()))}))}}],[{key:"getDerivedStateFromProps",value:function(e,t){return e.columns&&e.columns!==t.columns?{columns:e.columns,children:null}:e.children!==t.children?{columns:null,children:e.children}:null}}]),n}(v.Component);D.childContextTypes={table:y.any,components:y.any},D.Column=P.default,D.ColumnGroup=R.default,D.defaultProps={data:[],useFixedHeader:!1,rowKey:"key",rowClassName:function(){return""},onRow:function(){},onHeaderRow:function(){},prefixCls:"rc-table",bodyStyle:{},style:{},showHeader:!0,scroll:{},rowRef:function(){return null},emptyText:function(){return"No Data"}},k.polyfill(D),t.default=D},wD64:function(e,t,n){"use strict";n.r(t);var r=n("d6i3"),i=n.n(r),o=n("p0pE"),a=n.n(o),s=n("t3Un"),l=n("3a4m"),c=n.n(l);t["default"]={name:"passport",state:{loginLoading:!1},reducers:{save(e,t){var n=t.payload;return a()({},e,n)}},effects:{check(e,t){return i.a.mark(function n(){var r,o,a;return i.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.redirect,o=t.put,n.next=4,Object(s["a"])("/passport/auth/check");case 4:if(a=n.sent,200===a.code){n.next=7;break}return n.abrupt("return");case 7:if(!a.data.is_admin){n.next=11;break}return n.next=10,o({type:"user/getUserInfo"});case 10:return n.abrupt("return",c.a.push(r||"dashboard"));case 11:case"end":return n.stop()}},n)})()},login(e,t){return i.a.mark(function n(){var r,o,a,l;return i.a.wrap(function(n){while(1)switch(n.prev=n.next){case 0:return r=e.email,o=e.password,a=t.put,n.next=4,a({type:"save",payload:{loginLoading:!0}});case 4:return n.next=6,Object(s["b"])("/passport/auth/login",{email:r,password:o});case 6:return l=n.sent,n.next=9,a({type:"save",payload:{loginLoading:!1}});case 9:if(200===l.code){n.next=11;break}return n.abrupt("return");case 11:if(l.data.is_admin){n.next=13;break}return n.abrupt("return");case 13:return c.a.push("/dashboard"),n.next=16,a({type:"user/getUserInfo"});case 16:case"end":return n.stop()}},n)})()}}}},wHrr:function(e,t,n){var r=n("wYm8");e.exports=function(e,t,n){if(r(e),void 0===t)return e;switch(n){case 1:return function(n){return e.call(t,n)};case 2:return function(n,r){return e.call(t,n,r)};case 3:return function(n,r,i){return e.call(t,n,r,i)}}return function(){return e.apply(t,arguments)}}},wMpi:function(e,t){function n(e,t){if(null==e)return{};var n,r,i={},o=Object.keys(e);for(r=0;r=0||(i[n]=e[n]);return i}e.exports=n},wOl0:function(e,t,n){var r=function(e){"use strict";var t,n=Object.prototype,r=n.hasOwnProperty,i="function"===typeof Symbol?Symbol:{},o=i.iterator||"@@iterator",a=i.asyncIterator||"@@asyncIterator",s=i.toStringTag||"@@toStringTag";function l(e,t,n,r){var i=t&&t.prototype instanceof m?t:m,o=Object.create(i.prototype),a=new T(r||[]);return o._invoke=C(e,n,a),o}function c(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}e.wrap=l;var u="suspendedStart",h="suspendedYield",d="executing",f="completed",p={};function m(){}function g(){}function v(){}var y={};y[o]=function(){return this};var b=Object.getPrototypeOf,w=b&&b(b(A([])));w&&w!==n&&r.call(w,o)&&(y=w);var x=v.prototype=m.prototype=Object.create(y);function _(e){["next","throw","return"].forEach(function(t){e[t]=function(e){return this._invoke(t,e)}})}function S(e){function t(n,i,o,a){var s=c(e[n],e,i);if("throw"!==s.type){var l=s.arg,u=l.value;return u&&"object"===typeof u&&r.call(u,"__await")?Promise.resolve(u.__await).then(function(e){t("next",e,o,a)},function(e){t("throw",e,o,a)}):Promise.resolve(u).then(function(e){l.value=e,o(l)},function(e){return t("throw",e,o,a)})}a(s.arg)}var n;function i(e,r){function i(){return new Promise(function(n,i){t(e,r,n,i)})}return n=n?n.then(i,i):i()}this._invoke=i}function C(e,t,n){var r=u;return function(i,o){if(r===d)throw new Error("Generator is already running");if(r===f){if("throw"===i)throw o;return M()}n.method=i,n.arg=o;while(1){var a=n.delegate;if(a){var s=E(a,n);if(s){if(s===p)continue;return s}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if(r===u)throw r=f,n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);r=d;var l=c(e,t,n);if("normal"===l.type){if(r=n.done?f:h,l.arg===p)continue;return{value:l.arg,done:n.done}}"throw"===l.type&&(r=f,n.method="throw",n.arg=l.arg)}}}function E(e,n){var r=e.iterator[n.method];if(r===t){if(n.delegate=null,"throw"===n.method){if(e.iterator["return"]&&(n.method="return",n.arg=t,E(e,n),"throw"===n.method))return p;n.method="throw",n.arg=new TypeError("The iterator does not provide a 'throw' method")}return p}var i=c(r,e.iterator,n.arg);if("throw"===i.type)return n.method="throw",n.arg=i.arg,n.delegate=null,p;var o=i.arg;return o?o.done?(n[e.resultName]=o.value,n.next=e.nextLoc,"return"!==n.method&&(n.method="next",n.arg=t),n.delegate=null,p):o:(n.method="throw",n.arg=new TypeError("iterator result is not an object"),n.delegate=null,p)}function k(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function O(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function T(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(k,this),this.reset(!0)}function A(e){if(e){var n=e[o];if(n)return n.call(e);if("function"===typeof e.next)return e;if(!isNaN(e.length)){var i=-1,a=function n(){while(++i=0;--o){var a=this.tryEntries[o],s=a.completion;if("root"===a.tryLoc)return i("end");if(a.tryLoc<=this.prev){var l=r.call(a,"catchLoc"),c=r.call(a,"finallyLoc");if(l&&c){if(this.prev=0;--n){var i=this.tryEntries[n];if(i.tryLoc<=this.prev&&r.call(i,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),O(n),p}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var i=r.arg;O(n)}return i}}throw new Error("illegal catch attempt")},delegateYield:function(e,n,r){return this.delegate={iterator:A(e),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=t),p}},e}(e.exports);try{regeneratorRuntime=r}catch(e){Function("r","regeneratorRuntime = r")(r)}},wUWy:function(e,t){e.exports=function(e){try{return!!e()}catch(e){return!0}}},wYm8:function(e,t){e.exports=function(e){if("function"!=typeof e)throw TypeError(e+" is not a function!");return e}},wZXL:function(e,t,n){var r=n("vPd/"),i=n("IX3V"),o=i.each,a=i.isFunction,s=i.isArray;function l(){if(!window.matchMedia)throw new Error("matchMedia not present, legacy browsers require a polyfill");this.queries={},this.browserIsIncapable=!window.matchMedia("only all").matches}l.prototype={constructor:l,register:function(e,t,n){var i=this.queries,l=n&&this.browserIsIncapable;return i[e]||(i[e]=new r(e,l)),a(t)&&(t={match:t}),s(t)||(t=[t]),o(t,function(t){a(t)&&(t={match:t}),i[e].addHandler(t)}),this},unregister:function(e,t){var n=this.queries[e];return n&&(t?n.removeHandler(t):(n.clear(),delete this.queries[e])),this}},e.exports=l},wgeU:function(e,t){},"wgp+":function(e,t,n){"use strict";var r=n("q1tI"),i=n.n(r),o=n("17x9"),a=n.n(o),s=n("wd/R"),l=n.n(s),c=n("TSYQ"),u=n.n(c),h=n("VCL8");function d(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function f(e,t){for(var n=0;n=0||v&&v.indexOf(p.minute())>=0||y&&y.indexOf(p.second())>=0)return void n.setState({invalid:!0});if(f){if(f.hour()!==p.hour()||f.minute()!==p.minute()||f.second()!==p.second()){var b=f.clone();b.hour(p.hour()),b.minute(p.minute()),b.second(p.second()),d(b)}}else f!==p&&d(p)}else d(null);n.setState({invalid:!1})}),w(v(n),"onKeyDown",function(e){var t=n.props,r=t.onEsc,i=t.onKeyDown;27===e.keyCode&&r(),i(e)});var r=e.value,i=e.format;return n.state={str:r&&r.format(i)||"",invalid:!1},n}return y(t,e),p(t,[{key:"componentDidMount",value:function(){var e=this,t=this.props.focusOnOpen;if(t){var n=window.requestAnimationFrame||window.setTimeout;n(function(){e.refInput.focus(),e.refInput.select()})}}},{key:"componentDidUpdate",value:function(e){var t=this.props,n=t.value,r=t.format;n!==e.value&&this.setState({str:n&&n.format(r)||"",invalid:!1})}},{key:"getProtoValue",value:function(){var e=this.props,t=e.value,n=e.defaultOpenValue;return t||n}},{key:"getInput",value:function(){var e=this,t=this.props,n=t.prefixCls,r=t.placeholder,o=t.inputReadOnly,a=this.state,s=a.invalid,l=a.str,c=s?"".concat(n,"-input-invalid"):"";return i.a.createElement("input",{className:u()("".concat(n,"-input"),c),ref:function(t){e.refInput=t},onKeyDown:this.onKeyDown,value:l,placeholder:r,onChange:this.onInputChange,readOnly:!!o})}},{key:"render",value:function(){var e=this.props.prefixCls;return i.a.createElement("div",{className:"".concat(e,"-input-wrap")},this.getInput())}}]),t}(r["Component"]);w(x,"propTypes",{format:a.a.string,prefixCls:a.a.string,disabledDate:a.a.func,placeholder:a.a.string,clearText:a.a.string,value:a.a.object,inputReadOnly:a.a.bool,hourOptions:a.a.array,minuteOptions:a.a.array,secondOptions:a.a.array,disabledHours:a.a.func,disabledMinutes:a.a.func,disabledSeconds:a.a.func,onChange:a.a.func,onEsc:a.a.func,defaultOpenValue:a.a.object,currentSelectPanel:a.a.string,focusOnOpen:a.a.bool,onKeyDown:a.a.func,clearIcon:a.a.node}),w(x,"defaultProps",{inputReadOnly:!1});var _=x,S=n("i8i4"),C=n.n(S),E=n("xEkU"),k=n.n(E);function O(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function T(e,t){for(var n=0;n=0&&(r=!0),{value:n,disabled:r}},Y=function(e){function t(){var e,n;F(this,t);for(var r=arguments.length,i=new Array(r),o=0;o=12&&u.hour(u.hour()-12)),c(h)}else u.second(+t);i(u)}),K(z(n),"onEnterSelectPanel",function(e){var t=n.props.onCurrentSelectPanelChange;t(e)}),n}return U(t,e),B(t,[{key:"getHourSelect",value:function(e){var t=this,n=this.props,r=n.prefixCls,o=n.hourOptions,a=n.disabledHours,s=n.showHour,l=n.use12Hours,c=n.onEsc;if(!s)return null;var u,h,d=a();return l?(u=[12].concat(o.filter(function(e){return e<12&&e>0})),h=e%12||12):(u=o,h=e),i.a.createElement($,{prefixCls:r,options:u.map(function(e){return G(e,d)}),selectedIndex:u.indexOf(h),type:"hour",onSelect:this.onItemChange,onMouseEnter:function(){return t.onEnterSelectPanel("hour")},onEsc:c})}},{key:"getMinuteSelect",value:function(e){var t=this,n=this.props,r=n.prefixCls,o=n.minuteOptions,a=n.disabledMinutes,s=n.defaultOpenValue,l=n.showMinute,c=n.value,u=n.onEsc;if(!l)return null;var h=c||s,d=a(h.hour());return i.a.createElement($,{prefixCls:r,options:o.map(function(e){return G(e,d)}),selectedIndex:o.indexOf(e),type:"minute",onSelect:this.onItemChange,onMouseEnter:function(){return t.onEnterSelectPanel("minute")},onEsc:u})}},{key:"getSecondSelect",value:function(e){var t=this,n=this.props,r=n.prefixCls,o=n.secondOptions,a=n.disabledSeconds,s=n.showSecond,l=n.defaultOpenValue,c=n.value,u=n.onEsc;if(!s)return null;var h=c||l,d=a(h.hour(),h.minute());return i.a.createElement($,{prefixCls:r,options:o.map(function(e){return G(e,d)}),selectedIndex:o.indexOf(e),type:"second",onSelect:this.onItemChange,onMouseEnter:function(){return t.onEnterSelectPanel("second")},onEsc:u})}},{key:"getAMPMSelect",value:function(){var e=this,t=this.props,n=t.prefixCls,r=t.use12Hours,o=t.format,a=t.isAM,s=t.onEsc;if(!r)return null;var l=["am","pm"].map(function(e){return o.match(/\sA/)?e.toUpperCase():e}).map(function(e){return{value:e}}),c=a?0:1;return i.a.createElement($,{prefixCls:n,options:l,selectedIndex:c,type:"ampm",onSelect:this.onItemChange,onMouseEnter:function(){return e.onEnterSelectPanel("ampm")},onEsc:s})}},{key:"render",value:function(){var e=this.props,t=e.prefixCls,n=e.defaultOpenValue,r=e.value,o=r||n;return i.a.createElement("div",{className:"".concat(t,"-combobox")},this.getHourSelect(o.hour()),this.getMinuteSelect(o.minute()),this.getSecondSelect(o.second()),this.getAMPMSelect(o.hour()))}}]),t}(r["Component"]);K(Y,"propTypes",{format:a.a.string,defaultOpenValue:a.a.object,prefixCls:a.a.string,value:a.a.object,onChange:a.a.func,onAmPmChange:a.a.func,showHour:a.a.bool,showMinute:a.a.bool,showSecond:a.a.bool,hourOptions:a.a.array,minuteOptions:a.a.array,secondOptions:a.a.array,disabledHours:a.a.func,disabledMinutes:a.a.func,disabledSeconds:a.a.func,onCurrentSelectPanelChange:a.a.func,use12Hours:a.a.bool,onEsc:a.a.func,isAM:a.a.bool});var X=Y;function Q(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function Z(e){for(var t=1;t3&&void 0!==arguments[3]?arguments[3]:1,i=[],o=0;o=0&&n.hour()<12}},{key:"render",value:function(){var e=this.props,t=e.prefixCls,n=e.className,r=e.placeholder,o=e.disabledMinutes,a=e.disabledSeconds,s=e.hideDisabledOptions,l=e.showHour,c=e.showMinute,h=e.showSecond,d=e.format,f=e.defaultOpenValue,p=e.clearText,m=e.onEsc,g=e.addon,v=e.use12Hours,y=e.focusOnOpen,b=e.onKeyDown,w=e.hourStep,x=e.minuteStep,S=e.secondStep,C=e.inputReadOnly,E=e.clearIcon,k=this.state,O=k.value,T=k.currentSelectPanel,A=this.disabledHours(),M=o(O?O.hour():null),P=a(O?O.hour():null,O?O.minute():null),R=ce(24,A,s,w),L=ce(60,M,s,x),D=ce(60,P,s,S),j=ue(f,R,L,D);return i.a.createElement("div",{className:u()(n,"".concat(t,"-inner"))},i.a.createElement(_,{clearText:p,prefixCls:t,defaultOpenValue:j,value:O,currentSelectPanel:T,onEsc:m,format:d,placeholder:r,hourOptions:R,minuteOptions:L,secondOptions:D,disabledHours:this.disabledHours,disabledMinutes:o,disabledSeconds:a,onChange:this.onChange,focusOnOpen:y,onKeyDown:b,inputReadOnly:C,clearIcon:E}),i.a.createElement(X,{prefixCls:t,value:O,defaultOpenValue:j,format:d,onChange:this.onChange,onAmPmChange:this.onAmPmChange,showHour:l,showMinute:c,showSecond:h,hourOptions:R,minuteOptions:L,secondOptions:D,disabledHours:this.disabledHours,disabledMinutes:o,disabledSeconds:a,onCurrentSelectPanelChange:this.onCurrentSelectPanelChange,use12Hours:v,onEsc:m,isAM:this.isAM()}),g(this))}}],[{key:"getDerivedStateFromProps",value:function(e,t){return"value"in e?Z({},t,{value:e.value}):null}}]),t}(r["Component"]);se(he,"propTypes",{clearText:a.a.string,prefixCls:a.a.string,className:a.a.string,defaultOpenValue:a.a.object,value:a.a.object,placeholder:a.a.string,format:a.a.string,inputReadOnly:a.a.bool,disabledHours:a.a.func,disabledMinutes:a.a.func,disabledSeconds:a.a.func,hideDisabledOptions:a.a.bool,onChange:a.a.func,onAmPmChange:a.a.func,onEsc:a.a.func,showHour:a.a.bool,showMinute:a.a.bool,showSecond:a.a.bool,use12Hours:a.a.bool,hourStep:a.a.number,minuteStep:a.a.number,secondStep:a.a.number,addon:a.a.func,focusOnOpen:a.a.bool,onKeyDown:a.a.func,clearIcon:a.a.node}),se(he,"defaultProps",{prefixCls:"rc-time-picker-panel",onChange:le,disabledHours:le,disabledMinutes:le,disabledSeconds:le,defaultOpenValue:l()(),use12Hours:!1,addon:le,onKeyDown:le,onAmPmChange:le,inputReadOnly:!1}),Object(h["polyfill"])(he);t["a"]=he},wlPd:function(e,t,n){"use strict";var r=n("il4q"),i=n("Spc3"),o=n("OsVd");e.exports=[].copyWithin||function(e,t){var n=r(this),a=o(n.length),s=i(e,a),l=i(t,a),c=arguments.length>2?arguments[2]:void 0,u=Math.min((void 0===c?a:i(c,a))-l,a-s),h=1;l0)l in n?n[s]=n[l]:delete n[s],s+=h,l+=h;return n}},x1Ya:function(e,t,n){"use strict";var r=n("jo6Y"),i=n.n(r),o=n("QbLZ"),a=n.n(o),s=n("iCc5"),l=n.n(s),c=n("FYw3"),u=n.n(c),h=n("mRg0"),d=n.n(h),f=n("q1tI"),p=n.n(f),m=n("17x9"),g=n.n(m),v=n("TSYQ"),y=n.n(v),b=n("VCL8"),w=function(e){function t(n){l()(this,t);var r=u()(this,e.call(this,n));r.handleChange=function(e){var t=r.props,n=t.disabled,i=t.onChange;n||("checked"in r.props||r.setState({checked:e.target.checked}),i&&i({target:a()({},r.props,{checked:e.target.checked}),stopPropagation:function(){e.stopPropagation()},preventDefault:function(){e.preventDefault()},nativeEvent:e.nativeEvent}))},r.saveInput=function(e){r.input=e};var i="checked"in n?n.checked:n.defaultChecked;return r.state={checked:i},r}return d()(t,e),t.getDerivedStateFromProps=function(e,t){return"checked"in e?a()({},t,{checked:e.checked}):null},t.prototype.focus=function(){this.input.focus()},t.prototype.blur=function(){this.input.blur()},t.prototype.render=function(){var e,t=this.props,n=t.prefixCls,r=t.className,o=t.style,s=t.name,l=t.id,c=t.type,u=t.disabled,h=t.readOnly,d=t.tabIndex,f=t.onClick,m=t.onFocus,g=t.onBlur,v=t.autoFocus,b=t.value,w=i()(t,["prefixCls","className","style","name","id","type","disabled","readOnly","tabIndex","onClick","onFocus","onBlur","autoFocus","value"]),x=Object.keys(w).reduce(function(e,t){return"aria-"!==t.substr(0,5)&&"data-"!==t.substr(0,5)&&"role"!==t||(e[t]=w[t]),e},{}),_=this.state.checked,S=y()(n,r,(e={},e[n+"-checked"]=_,e[n+"-disabled"]=u,e));return p.a.createElement("span",{className:S,style:o},p.a.createElement("input",a()({name:s,id:l,type:c,readOnly:h,disabled:u,tabIndex:d,className:n+"-input",checked:!!_,onClick:f,onFocus:m,onBlur:g,onChange:this.handleChange,autoFocus:v,ref:this.saveInput,value:b},x)),p.a.createElement("span",{className:n+"-inner"}))},t}(f["Component"]);w.propTypes={prefixCls:g.a.string,className:g.a.string,style:g.a.object,name:g.a.string,id:g.a.string,type:g.a.string,defaultChecked:g.a.oneOfType([g.a.number,g.a.bool]),checked:g.a.oneOfType([g.a.number,g.a.bool]),disabled:g.a.bool,onFocus:g.a.func,onBlur:g.a.func,onChange:g.a.func,onClick:g.a.func,tabIndex:g.a.oneOfType([g.a.string,g.a.number]),readOnly:g.a.bool,autoFocus:g.a.bool,value:g.a.any},w.defaultProps={prefixCls:"rc-checkbox",className:"",style:{},type:"checkbox",defaultChecked:!1,onFocus:function(){},onBlur:function(){},onChange:function(){}},Object(b["polyfill"])(w);var x=w;t["a"]=x},x6Kt:function(e,t,n){"use strict";var r=n("mrSG"),i=n("y+Vt");function o(e,t){var n,r,i,o,a,s=t.x,l=t.y,c=t.width,u=t.height,h=t.r;c<0&&(s+=c,c=-c),u<0&&(l+=u,u=-u),"number"===typeof h?n=r=i=o=h:h instanceof Array?1===h.length?n=r=i=o=h[0]:2===h.length?(n=i=h[0],r=o=h[1]):3===h.length?(n=h[0],r=o=h[1],i=h[2]):(n=h[0],r=h[1],i=h[2],o=h[3]):n=r=i=o=0,n+r>c&&(a=n+r,n*=c/a,r*=c/a),i+o>c&&(a=i+o,i*=c/a,o*=c/a),r+i>u&&(a=r+i,r*=u/a,i*=u/a),n+o>u&&(a=n+o,n*=u/a,o*=u/a),e.moveTo(s+n,l),e.lineTo(s+c-r,l),0!==r&&e.arc(s+c-r,l+r,r,-Math.PI/2,0),e.lineTo(s+c,l+u-i),0!==i&&e.arc(s+c-i,l+u-i,i,0,Math.PI/2),e.lineTo(s+o,l+u),0!==o&&e.arc(s+o,l+u-o,o,Math.PI/2,Math.PI),e.lineTo(s,l+n),0!==n&&e.arc(s+n,l+n,n,Math.PI,1.5*Math.PI)}var a=n("nPnh"),s=function(){function e(){this.x=0,this.y=0,this.width=0,this.height=0}return e}(),l={},c=function(e){function t(t){return e.call(this,t)||this}return Object(r["a"])(t,e),t.prototype.getDefaultShape=function(){return new s},t.prototype.buildPath=function(e,t){var n,r,i,s;if(this.subPixelOptimize){var c=Object(a["c"])(l,t,this.style);n=c.x,r=c.y,i=c.width,s=c.height,c.r=t.r,t=c}else n=t.x,r=t.y,i=t.width,s=t.height;t.r?o(e,t):e.rect(n,r,i,s)},t.prototype.isZeroArea=function(){return!this.shape.width||!this.shape.height},t}(i["b"]);c.prototype.type="rect";t["a"]=c},xEkU:function(e,t,n){(function(t){for(var r=n("bQgK"),i="undefined"===typeof window?t:window,o=["moz","webkit"],a="AnimationFrame",s=i["request"+a],l=i["cancel"+a]||i["cancelRequest"+a],c=0;!s&&c=55296&&s<=57343){if(s>=55296&&s<=56319&&r+1=56320&&l<=57343)){u+=encodeURIComponent(e[r]+e[r+1]),r++;continue}u+="%EF%BF%BD"}else u+=encodeURIComponent(e[r]);return u}o.defaultChars=";/?:@&=+$,-_.!~*'()#",o.componentChars="-_.!~*'()",e.exports=o},xI0J:function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.create=t.connect=t.Provider=void 0;var r=n("Z4ex"),i=c(r),o=n("V/6I"),a=c(o),s=n("luuN"),l=c(s);function c(e){return e&&e.__esModule?e:{default:e}}t.Provider=i.default,t.connect=a.default,t.create=l.default},xJie:function(e,t,n){var r=n("oxo0"),i=n("OeOC"),o=n("Lnex")(!1),a=n("J57/")("IE_PROTO");e.exports=function(e,t){var n,s=i(e),l=0,c=[];for(n in s)n!=a&&r(s,n)&&c.push(n);while(t.length>l)r(s,n=t[l++])&&(~o(c,n)||c.push(n));return c}},xKz9:function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=u;var r=o(n("q1tI")),i=o(n("CnBM"));function o(e){return e&&e.__esModule?e:{default:e}}function a(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function s(e){for(var t=1;t","GT":">","Gt":"\u226b","gtdot":"\u22d7","gtlPar":"\u2995","gtquest":"\u2a7c","gtrapprox":"\u2a86","gtrarr":"\u2978","gtrdot":"\u22d7","gtreqless":"\u22db","gtreqqless":"\u2a8c","gtrless":"\u2277","gtrsim":"\u2273","gvertneqq":"\u2269\ufe00","gvnE":"\u2269\ufe00","Hacek":"\u02c7","hairsp":"\u200a","half":"\xbd","hamilt":"\u210b","HARDcy":"\u042a","hardcy":"\u044a","harrcir":"\u2948","harr":"\u2194","hArr":"\u21d4","harrw":"\u21ad","Hat":"^","hbar":"\u210f","Hcirc":"\u0124","hcirc":"\u0125","hearts":"\u2665","heartsuit":"\u2665","hellip":"\u2026","hercon":"\u22b9","hfr":"\ud835\udd25","Hfr":"\u210c","HilbertSpace":"\u210b","hksearow":"\u2925","hkswarow":"\u2926","hoarr":"\u21ff","homtht":"\u223b","hookleftarrow":"\u21a9","hookrightarrow":"\u21aa","hopf":"\ud835\udd59","Hopf":"\u210d","horbar":"\u2015","HorizontalLine":"\u2500","hscr":"\ud835\udcbd","Hscr":"\u210b","hslash":"\u210f","Hstrok":"\u0126","hstrok":"\u0127","HumpDownHump":"\u224e","HumpEqual":"\u224f","hybull":"\u2043","hyphen":"\u2010","Iacute":"\xcd","iacute":"\xed","ic":"\u2063","Icirc":"\xce","icirc":"\xee","Icy":"\u0418","icy":"\u0438","Idot":"\u0130","IEcy":"\u0415","iecy":"\u0435","iexcl":"\xa1","iff":"\u21d4","ifr":"\ud835\udd26","Ifr":"\u2111","Igrave":"\xcc","igrave":"\xec","ii":"\u2148","iiiint":"\u2a0c","iiint":"\u222d","iinfin":"\u29dc","iiota":"\u2129","IJlig":"\u0132","ijlig":"\u0133","Imacr":"\u012a","imacr":"\u012b","image":"\u2111","ImaginaryI":"\u2148","imagline":"\u2110","imagpart":"\u2111","imath":"\u0131","Im":"\u2111","imof":"\u22b7","imped":"\u01b5","Implies":"\u21d2","incare":"\u2105","in":"\u2208","infin":"\u221e","infintie":"\u29dd","inodot":"\u0131","intcal":"\u22ba","int":"\u222b","Int":"\u222c","integers":"\u2124","Integral":"\u222b","intercal":"\u22ba","Intersection":"\u22c2","intlarhk":"\u2a17","intprod":"\u2a3c","InvisibleComma":"\u2063","InvisibleTimes":"\u2062","IOcy":"\u0401","iocy":"\u0451","Iogon":"\u012e","iogon":"\u012f","Iopf":"\ud835\udd40","iopf":"\ud835\udd5a","Iota":"\u0399","iota":"\u03b9","iprod":"\u2a3c","iquest":"\xbf","iscr":"\ud835\udcbe","Iscr":"\u2110","isin":"\u2208","isindot":"\u22f5","isinE":"\u22f9","isins":"\u22f4","isinsv":"\u22f3","isinv":"\u2208","it":"\u2062","Itilde":"\u0128","itilde":"\u0129","Iukcy":"\u0406","iukcy":"\u0456","Iuml":"\xcf","iuml":"\xef","Jcirc":"\u0134","jcirc":"\u0135","Jcy":"\u0419","jcy":"\u0439","Jfr":"\ud835\udd0d","jfr":"\ud835\udd27","jmath":"\u0237","Jopf":"\ud835\udd41","jopf":"\ud835\udd5b","Jscr":"\ud835\udca5","jscr":"\ud835\udcbf","Jsercy":"\u0408","jsercy":"\u0458","Jukcy":"\u0404","jukcy":"\u0454","Kappa":"\u039a","kappa":"\u03ba","kappav":"\u03f0","Kcedil":"\u0136","kcedil":"\u0137","Kcy":"\u041a","kcy":"\u043a","Kfr":"\ud835\udd0e","kfr":"\ud835\udd28","kgreen":"\u0138","KHcy":"\u0425","khcy":"\u0445","KJcy":"\u040c","kjcy":"\u045c","Kopf":"\ud835\udd42","kopf":"\ud835\udd5c","Kscr":"\ud835\udca6","kscr":"\ud835\udcc0","lAarr":"\u21da","Lacute":"\u0139","lacute":"\u013a","laemptyv":"\u29b4","lagran":"\u2112","Lambda":"\u039b","lambda":"\u03bb","lang":"\u27e8","Lang":"\u27ea","langd":"\u2991","langle":"\u27e8","lap":"\u2a85","Laplacetrf":"\u2112","laquo":"\xab","larrb":"\u21e4","larrbfs":"\u291f","larr":"\u2190","Larr":"\u219e","lArr":"\u21d0","larrfs":"\u291d","larrhk":"\u21a9","larrlp":"\u21ab","larrpl":"\u2939","larrsim":"\u2973","larrtl":"\u21a2","latail":"\u2919","lAtail":"\u291b","lat":"\u2aab","late":"\u2aad","lates":"\u2aad\ufe00","lbarr":"\u290c","lBarr":"\u290e","lbbrk":"\u2772","lbrace":"{","lbrack":"[","lbrke":"\u298b","lbrksld":"\u298f","lbrkslu":"\u298d","Lcaron":"\u013d","lcaron":"\u013e","Lcedil":"\u013b","lcedil":"\u013c","lceil":"\u2308","lcub":"{","Lcy":"\u041b","lcy":"\u043b","ldca":"\u2936","ldquo":"\u201c","ldquor":"\u201e","ldrdhar":"\u2967","ldrushar":"\u294b","ldsh":"\u21b2","le":"\u2264","lE":"\u2266","LeftAngleBracket":"\u27e8","LeftArrowBar":"\u21e4","leftarrow":"\u2190","LeftArrow":"\u2190","Leftarrow":"\u21d0","LeftArrowRightArrow":"\u21c6","leftarrowtail":"\u21a2","LeftCeiling":"\u2308","LeftDoubleBracket":"\u27e6","LeftDownTeeVector":"\u2961","LeftDownVectorBar":"\u2959","LeftDownVector":"\u21c3","LeftFloor":"\u230a","leftharpoondown":"\u21bd","leftharpoonup":"\u21bc","leftleftarrows":"\u21c7","leftrightarrow":"\u2194","LeftRightArrow":"\u2194","Leftrightarrow":"\u21d4","leftrightarrows":"\u21c6","leftrightharpoons":"\u21cb","leftrightsquigarrow":"\u21ad","LeftRightVector":"\u294e","LeftTeeArrow":"\u21a4","LeftTee":"\u22a3","LeftTeeVector":"\u295a","leftthreetimes":"\u22cb","LeftTriangleBar":"\u29cf","LeftTriangle":"\u22b2","LeftTriangleEqual":"\u22b4","LeftUpDownVector":"\u2951","LeftUpTeeVector":"\u2960","LeftUpVectorBar":"\u2958","LeftUpVector":"\u21bf","LeftVectorBar":"\u2952","LeftVector":"\u21bc","lEg":"\u2a8b","leg":"\u22da","leq":"\u2264","leqq":"\u2266","leqslant":"\u2a7d","lescc":"\u2aa8","les":"\u2a7d","lesdot":"\u2a7f","lesdoto":"\u2a81","lesdotor":"\u2a83","lesg":"\u22da\ufe00","lesges":"\u2a93","lessapprox":"\u2a85","lessdot":"\u22d6","lesseqgtr":"\u22da","lesseqqgtr":"\u2a8b","LessEqualGreater":"\u22da","LessFullEqual":"\u2266","LessGreater":"\u2276","lessgtr":"\u2276","LessLess":"\u2aa1","lesssim":"\u2272","LessSlantEqual":"\u2a7d","LessTilde":"\u2272","lfisht":"\u297c","lfloor":"\u230a","Lfr":"\ud835\udd0f","lfr":"\ud835\udd29","lg":"\u2276","lgE":"\u2a91","lHar":"\u2962","lhard":"\u21bd","lharu":"\u21bc","lharul":"\u296a","lhblk":"\u2584","LJcy":"\u0409","ljcy":"\u0459","llarr":"\u21c7","ll":"\u226a","Ll":"\u22d8","llcorner":"\u231e","Lleftarrow":"\u21da","llhard":"\u296b","lltri":"\u25fa","Lmidot":"\u013f","lmidot":"\u0140","lmoustache":"\u23b0","lmoust":"\u23b0","lnap":"\u2a89","lnapprox":"\u2a89","lne":"\u2a87","lnE":"\u2268","lneq":"\u2a87","lneqq":"\u2268","lnsim":"\u22e6","loang":"\u27ec","loarr":"\u21fd","lobrk":"\u27e6","longleftarrow":"\u27f5","LongLeftArrow":"\u27f5","Longleftarrow":"\u27f8","longleftrightarrow":"\u27f7","LongLeftRightArrow":"\u27f7","Longleftrightarrow":"\u27fa","longmapsto":"\u27fc","longrightarrow":"\u27f6","LongRightArrow":"\u27f6","Longrightarrow":"\u27f9","looparrowleft":"\u21ab","looparrowright":"\u21ac","lopar":"\u2985","Lopf":"\ud835\udd43","lopf":"\ud835\udd5d","loplus":"\u2a2d","lotimes":"\u2a34","lowast":"\u2217","lowbar":"_","LowerLeftArrow":"\u2199","LowerRightArrow":"\u2198","loz":"\u25ca","lozenge":"\u25ca","lozf":"\u29eb","lpar":"(","lparlt":"\u2993","lrarr":"\u21c6","lrcorner":"\u231f","lrhar":"\u21cb","lrhard":"\u296d","lrm":"\u200e","lrtri":"\u22bf","lsaquo":"\u2039","lscr":"\ud835\udcc1","Lscr":"\u2112","lsh":"\u21b0","Lsh":"\u21b0","lsim":"\u2272","lsime":"\u2a8d","lsimg":"\u2a8f","lsqb":"[","lsquo":"\u2018","lsquor":"\u201a","Lstrok":"\u0141","lstrok":"\u0142","ltcc":"\u2aa6","ltcir":"\u2a79","lt":"<","LT":"<","Lt":"\u226a","ltdot":"\u22d6","lthree":"\u22cb","ltimes":"\u22c9","ltlarr":"\u2976","ltquest":"\u2a7b","ltri":"\u25c3","ltrie":"\u22b4","ltrif":"\u25c2","ltrPar":"\u2996","lurdshar":"\u294a","luruhar":"\u2966","lvertneqq":"\u2268\ufe00","lvnE":"\u2268\ufe00","macr":"\xaf","male":"\u2642","malt":"\u2720","maltese":"\u2720","Map":"\u2905","map":"\u21a6","mapsto":"\u21a6","mapstodown":"\u21a7","mapstoleft":"\u21a4","mapstoup":"\u21a5","marker":"\u25ae","mcomma":"\u2a29","Mcy":"\u041c","mcy":"\u043c","mdash":"\u2014","mDDot":"\u223a","measuredangle":"\u2221","MediumSpace":"\u205f","Mellintrf":"\u2133","Mfr":"\ud835\udd10","mfr":"\ud835\udd2a","mho":"\u2127","micro":"\xb5","midast":"*","midcir":"\u2af0","mid":"\u2223","middot":"\xb7","minusb":"\u229f","minus":"\u2212","minusd":"\u2238","minusdu":"\u2a2a","MinusPlus":"\u2213","mlcp":"\u2adb","mldr":"\u2026","mnplus":"\u2213","models":"\u22a7","Mopf":"\ud835\udd44","mopf":"\ud835\udd5e","mp":"\u2213","mscr":"\ud835\udcc2","Mscr":"\u2133","mstpos":"\u223e","Mu":"\u039c","mu":"\u03bc","multimap":"\u22b8","mumap":"\u22b8","nabla":"\u2207","Nacute":"\u0143","nacute":"\u0144","nang":"\u2220\u20d2","nap":"\u2249","napE":"\u2a70\u0338","napid":"\u224b\u0338","napos":"\u0149","napprox":"\u2249","natural":"\u266e","naturals":"\u2115","natur":"\u266e","nbsp":"\xa0","nbump":"\u224e\u0338","nbumpe":"\u224f\u0338","ncap":"\u2a43","Ncaron":"\u0147","ncaron":"\u0148","Ncedil":"\u0145","ncedil":"\u0146","ncong":"\u2247","ncongdot":"\u2a6d\u0338","ncup":"\u2a42","Ncy":"\u041d","ncy":"\u043d","ndash":"\u2013","nearhk":"\u2924","nearr":"\u2197","neArr":"\u21d7","nearrow":"\u2197","ne":"\u2260","nedot":"\u2250\u0338","NegativeMediumSpace":"\u200b","NegativeThickSpace":"\u200b","NegativeThinSpace":"\u200b","NegativeVeryThinSpace":"\u200b","nequiv":"\u2262","nesear":"\u2928","nesim":"\u2242\u0338","NestedGreaterGreater":"\u226b","NestedLessLess":"\u226a","NewLine":"\\n","nexist":"\u2204","nexists":"\u2204","Nfr":"\ud835\udd11","nfr":"\ud835\udd2b","ngE":"\u2267\u0338","nge":"\u2271","ngeq":"\u2271","ngeqq":"\u2267\u0338","ngeqslant":"\u2a7e\u0338","nges":"\u2a7e\u0338","nGg":"\u22d9\u0338","ngsim":"\u2275","nGt":"\u226b\u20d2","ngt":"\u226f","ngtr":"\u226f","nGtv":"\u226b\u0338","nharr":"\u21ae","nhArr":"\u21ce","nhpar":"\u2af2","ni":"\u220b","nis":"\u22fc","nisd":"\u22fa","niv":"\u220b","NJcy":"\u040a","njcy":"\u045a","nlarr":"\u219a","nlArr":"\u21cd","nldr":"\u2025","nlE":"\u2266\u0338","nle":"\u2270","nleftarrow":"\u219a","nLeftarrow":"\u21cd","nleftrightarrow":"\u21ae","nLeftrightarrow":"\u21ce","nleq":"\u2270","nleqq":"\u2266\u0338","nleqslant":"\u2a7d\u0338","nles":"\u2a7d\u0338","nless":"\u226e","nLl":"\u22d8\u0338","nlsim":"\u2274","nLt":"\u226a\u20d2","nlt":"\u226e","nltri":"\u22ea","nltrie":"\u22ec","nLtv":"\u226a\u0338","nmid":"\u2224","NoBreak":"\u2060","NonBreakingSpace":"\xa0","nopf":"\ud835\udd5f","Nopf":"\u2115","Not":"\u2aec","not":"\xac","NotCongruent":"\u2262","NotCupCap":"\u226d","NotDoubleVerticalBar":"\u2226","NotElement":"\u2209","NotEqual":"\u2260","NotEqualTilde":"\u2242\u0338","NotExists":"\u2204","NotGreater":"\u226f","NotGreaterEqual":"\u2271","NotGreaterFullEqual":"\u2267\u0338","NotGreaterGreater":"\u226b\u0338","NotGreaterLess":"\u2279","NotGreaterSlantEqual":"\u2a7e\u0338","NotGreaterTilde":"\u2275","NotHumpDownHump":"\u224e\u0338","NotHumpEqual":"\u224f\u0338","notin":"\u2209","notindot":"\u22f5\u0338","notinE":"\u22f9\u0338","notinva":"\u2209","notinvb":"\u22f7","notinvc":"\u22f6","NotLeftTriangleBar":"\u29cf\u0338","NotLeftTriangle":"\u22ea","NotLeftTriangleEqual":"\u22ec","NotLess":"\u226e","NotLessEqual":"\u2270","NotLessGreater":"\u2278","NotLessLess":"\u226a\u0338","NotLessSlantEqual":"\u2a7d\u0338","NotLessTilde":"\u2274","NotNestedGreaterGreater":"\u2aa2\u0338","NotNestedLessLess":"\u2aa1\u0338","notni":"\u220c","notniva":"\u220c","notnivb":"\u22fe","notnivc":"\u22fd","NotPrecedes":"\u2280","NotPrecedesEqual":"\u2aaf\u0338","NotPrecedesSlantEqual":"\u22e0","NotReverseElement":"\u220c","NotRightTriangleBar":"\u29d0\u0338","NotRightTriangle":"\u22eb","NotRightTriangleEqual":"\u22ed","NotSquareSubset":"\u228f\u0338","NotSquareSubsetEqual":"\u22e2","NotSquareSuperset":"\u2290\u0338","NotSquareSupersetEqual":"\u22e3","NotSubset":"\u2282\u20d2","NotSubsetEqual":"\u2288","NotSucceeds":"\u2281","NotSucceedsEqual":"\u2ab0\u0338","NotSucceedsSlantEqual":"\u22e1","NotSucceedsTilde":"\u227f\u0338","NotSuperset":"\u2283\u20d2","NotSupersetEqual":"\u2289","NotTilde":"\u2241","NotTildeEqual":"\u2244","NotTildeFullEqual":"\u2247","NotTildeTilde":"\u2249","NotVerticalBar":"\u2224","nparallel":"\u2226","npar":"\u2226","nparsl":"\u2afd\u20e5","npart":"\u2202\u0338","npolint":"\u2a14","npr":"\u2280","nprcue":"\u22e0","nprec":"\u2280","npreceq":"\u2aaf\u0338","npre":"\u2aaf\u0338","nrarrc":"\u2933\u0338","nrarr":"\u219b","nrArr":"\u21cf","nrarrw":"\u219d\u0338","nrightarrow":"\u219b","nRightarrow":"\u21cf","nrtri":"\u22eb","nrtrie":"\u22ed","nsc":"\u2281","nsccue":"\u22e1","nsce":"\u2ab0\u0338","Nscr":"\ud835\udca9","nscr":"\ud835\udcc3","nshortmid":"\u2224","nshortparallel":"\u2226","nsim":"\u2241","nsime":"\u2244","nsimeq":"\u2244","nsmid":"\u2224","nspar":"\u2226","nsqsube":"\u22e2","nsqsupe":"\u22e3","nsub":"\u2284","nsubE":"\u2ac5\u0338","nsube":"\u2288","nsubset":"\u2282\u20d2","nsubseteq":"\u2288","nsubseteqq":"\u2ac5\u0338","nsucc":"\u2281","nsucceq":"\u2ab0\u0338","nsup":"\u2285","nsupE":"\u2ac6\u0338","nsupe":"\u2289","nsupset":"\u2283\u20d2","nsupseteq":"\u2289","nsupseteqq":"\u2ac6\u0338","ntgl":"\u2279","Ntilde":"\xd1","ntilde":"\xf1","ntlg":"\u2278","ntriangleleft":"\u22ea","ntrianglelefteq":"\u22ec","ntriangleright":"\u22eb","ntrianglerighteq":"\u22ed","Nu":"\u039d","nu":"\u03bd","num":"#","numero":"\u2116","numsp":"\u2007","nvap":"\u224d\u20d2","nvdash":"\u22ac","nvDash":"\u22ad","nVdash":"\u22ae","nVDash":"\u22af","nvge":"\u2265\u20d2","nvgt":">\u20d2","nvHarr":"\u2904","nvinfin":"\u29de","nvlArr":"\u2902","nvle":"\u2264\u20d2","nvlt":"<\u20d2","nvltrie":"\u22b4\u20d2","nvrArr":"\u2903","nvrtrie":"\u22b5\u20d2","nvsim":"\u223c\u20d2","nwarhk":"\u2923","nwarr":"\u2196","nwArr":"\u21d6","nwarrow":"\u2196","nwnear":"\u2927","Oacute":"\xd3","oacute":"\xf3","oast":"\u229b","Ocirc":"\xd4","ocirc":"\xf4","ocir":"\u229a","Ocy":"\u041e","ocy":"\u043e","odash":"\u229d","Odblac":"\u0150","odblac":"\u0151","odiv":"\u2a38","odot":"\u2299","odsold":"\u29bc","OElig":"\u0152","oelig":"\u0153","ofcir":"\u29bf","Ofr":"\ud835\udd12","ofr":"\ud835\udd2c","ogon":"\u02db","Ograve":"\xd2","ograve":"\xf2","ogt":"\u29c1","ohbar":"\u29b5","ohm":"\u03a9","oint":"\u222e","olarr":"\u21ba","olcir":"\u29be","olcross":"\u29bb","oline":"\u203e","olt":"\u29c0","Omacr":"\u014c","omacr":"\u014d","Omega":"\u03a9","omega":"\u03c9","Omicron":"\u039f","omicron":"\u03bf","omid":"\u29b6","ominus":"\u2296","Oopf":"\ud835\udd46","oopf":"\ud835\udd60","opar":"\u29b7","OpenCurlyDoubleQuote":"\u201c","OpenCurlyQuote":"\u2018","operp":"\u29b9","oplus":"\u2295","orarr":"\u21bb","Or":"\u2a54","or":"\u2228","ord":"\u2a5d","order":"\u2134","orderof":"\u2134","ordf":"\xaa","ordm":"\xba","origof":"\u22b6","oror":"\u2a56","orslope":"\u2a57","orv":"\u2a5b","oS":"\u24c8","Oscr":"\ud835\udcaa","oscr":"\u2134","Oslash":"\xd8","oslash":"\xf8","osol":"\u2298","Otilde":"\xd5","otilde":"\xf5","otimesas":"\u2a36","Otimes":"\u2a37","otimes":"\u2297","Ouml":"\xd6","ouml":"\xf6","ovbar":"\u233d","OverBar":"\u203e","OverBrace":"\u23de","OverBracket":"\u23b4","OverParenthesis":"\u23dc","para":"\xb6","parallel":"\u2225","par":"\u2225","parsim":"\u2af3","parsl":"\u2afd","part":"\u2202","PartialD":"\u2202","Pcy":"\u041f","pcy":"\u043f","percnt":"%","period":".","permil":"\u2030","perp":"\u22a5","pertenk":"\u2031","Pfr":"\ud835\udd13","pfr":"\ud835\udd2d","Phi":"\u03a6","phi":"\u03c6","phiv":"\u03d5","phmmat":"\u2133","phone":"\u260e","Pi":"\u03a0","pi":"\u03c0","pitchfork":"\u22d4","piv":"\u03d6","planck":"\u210f","planckh":"\u210e","plankv":"\u210f","plusacir":"\u2a23","plusb":"\u229e","pluscir":"\u2a22","plus":"+","plusdo":"\u2214","plusdu":"\u2a25","pluse":"\u2a72","PlusMinus":"\xb1","plusmn":"\xb1","plussim":"\u2a26","plustwo":"\u2a27","pm":"\xb1","Poincareplane":"\u210c","pointint":"\u2a15","popf":"\ud835\udd61","Popf":"\u2119","pound":"\xa3","prap":"\u2ab7","Pr":"\u2abb","pr":"\u227a","prcue":"\u227c","precapprox":"\u2ab7","prec":"\u227a","preccurlyeq":"\u227c","Precedes":"\u227a","PrecedesEqual":"\u2aaf","PrecedesSlantEqual":"\u227c","PrecedesTilde":"\u227e","preceq":"\u2aaf","precnapprox":"\u2ab9","precneqq":"\u2ab5","precnsim":"\u22e8","pre":"\u2aaf","prE":"\u2ab3","precsim":"\u227e","prime":"\u2032","Prime":"\u2033","primes":"\u2119","prnap":"\u2ab9","prnE":"\u2ab5","prnsim":"\u22e8","prod":"\u220f","Product":"\u220f","profalar":"\u232e","profline":"\u2312","profsurf":"\u2313","prop":"\u221d","Proportional":"\u221d","Proportion":"\u2237","propto":"\u221d","prsim":"\u227e","prurel":"\u22b0","Pscr":"\ud835\udcab","pscr":"\ud835\udcc5","Psi":"\u03a8","psi":"\u03c8","puncsp":"\u2008","Qfr":"\ud835\udd14","qfr":"\ud835\udd2e","qint":"\u2a0c","qopf":"\ud835\udd62","Qopf":"\u211a","qprime":"\u2057","Qscr":"\ud835\udcac","qscr":"\ud835\udcc6","quaternions":"\u210d","quatint":"\u2a16","quest":"?","questeq":"\u225f","quot":"\\"","QUOT":"\\"","rAarr":"\u21db","race":"\u223d\u0331","Racute":"\u0154","racute":"\u0155","radic":"\u221a","raemptyv":"\u29b3","rang":"\u27e9","Rang":"\u27eb","rangd":"\u2992","range":"\u29a5","rangle":"\u27e9","raquo":"\xbb","rarrap":"\u2975","rarrb":"\u21e5","rarrbfs":"\u2920","rarrc":"\u2933","rarr":"\u2192","Rarr":"\u21a0","rArr":"\u21d2","rarrfs":"\u291e","rarrhk":"\u21aa","rarrlp":"\u21ac","rarrpl":"\u2945","rarrsim":"\u2974","Rarrtl":"\u2916","rarrtl":"\u21a3","rarrw":"\u219d","ratail":"\u291a","rAtail":"\u291c","ratio":"\u2236","rationals":"\u211a","rbarr":"\u290d","rBarr":"\u290f","RBarr":"\u2910","rbbrk":"\u2773","rbrace":"}","rbrack":"]","rbrke":"\u298c","rbrksld":"\u298e","rbrkslu":"\u2990","Rcaron":"\u0158","rcaron":"\u0159","Rcedil":"\u0156","rcedil":"\u0157","rceil":"\u2309","rcub":"}","Rcy":"\u0420","rcy":"\u0440","rdca":"\u2937","rdldhar":"\u2969","rdquo":"\u201d","rdquor":"\u201d","rdsh":"\u21b3","real":"\u211c","realine":"\u211b","realpart":"\u211c","reals":"\u211d","Re":"\u211c","rect":"\u25ad","reg":"\xae","REG":"\xae","ReverseElement":"\u220b","ReverseEquilibrium":"\u21cb","ReverseUpEquilibrium":"\u296f","rfisht":"\u297d","rfloor":"\u230b","rfr":"\ud835\udd2f","Rfr":"\u211c","rHar":"\u2964","rhard":"\u21c1","rharu":"\u21c0","rharul":"\u296c","Rho":"\u03a1","rho":"\u03c1","rhov":"\u03f1","RightAngleBracket":"\u27e9","RightArrowBar":"\u21e5","rightarrow":"\u2192","RightArrow":"\u2192","Rightarrow":"\u21d2","RightArrowLeftArrow":"\u21c4","rightarrowtail":"\u21a3","RightCeiling":"\u2309","RightDoubleBracket":"\u27e7","RightDownTeeVector":"\u295d","RightDownVectorBar":"\u2955","RightDownVector":"\u21c2","RightFloor":"\u230b","rightharpoondown":"\u21c1","rightharpoonup":"\u21c0","rightleftarrows":"\u21c4","rightleftharpoons":"\u21cc","rightrightarrows":"\u21c9","rightsquigarrow":"\u219d","RightTeeArrow":"\u21a6","RightTee":"\u22a2","RightTeeVector":"\u295b","rightthreetimes":"\u22cc","RightTriangleBar":"\u29d0","RightTriangle":"\u22b3","RightTriangleEqual":"\u22b5","RightUpDownVector":"\u294f","RightUpTeeVector":"\u295c","RightUpVectorBar":"\u2954","RightUpVector":"\u21be","RightVectorBar":"\u2953","RightVector":"\u21c0","ring":"\u02da","risingdotseq":"\u2253","rlarr":"\u21c4","rlhar":"\u21cc","rlm":"\u200f","rmoustache":"\u23b1","rmoust":"\u23b1","rnmid":"\u2aee","roang":"\u27ed","roarr":"\u21fe","robrk":"\u27e7","ropar":"\u2986","ropf":"\ud835\udd63","Ropf":"\u211d","roplus":"\u2a2e","rotimes":"\u2a35","RoundImplies":"\u2970","rpar":")","rpargt":"\u2994","rppolint":"\u2a12","rrarr":"\u21c9","Rrightarrow":"\u21db","rsaquo":"\u203a","rscr":"\ud835\udcc7","Rscr":"\u211b","rsh":"\u21b1","Rsh":"\u21b1","rsqb":"]","rsquo":"\u2019","rsquor":"\u2019","rthree":"\u22cc","rtimes":"\u22ca","rtri":"\u25b9","rtrie":"\u22b5","rtrif":"\u25b8","rtriltri":"\u29ce","RuleDelayed":"\u29f4","ruluhar":"\u2968","rx":"\u211e","Sacute":"\u015a","sacute":"\u015b","sbquo":"\u201a","scap":"\u2ab8","Scaron":"\u0160","scaron":"\u0161","Sc":"\u2abc","sc":"\u227b","sccue":"\u227d","sce":"\u2ab0","scE":"\u2ab4","Scedil":"\u015e","scedil":"\u015f","Scirc":"\u015c","scirc":"\u015d","scnap":"\u2aba","scnE":"\u2ab6","scnsim":"\u22e9","scpolint":"\u2a13","scsim":"\u227f","Scy":"\u0421","scy":"\u0441","sdotb":"\u22a1","sdot":"\u22c5","sdote":"\u2a66","searhk":"\u2925","searr":"\u2198","seArr":"\u21d8","searrow":"\u2198","sect":"\xa7","semi":";","seswar":"\u2929","setminus":"\u2216","setmn":"\u2216","sext":"\u2736","Sfr":"\ud835\udd16","sfr":"\ud835\udd30","sfrown":"\u2322","sharp":"\u266f","SHCHcy":"\u0429","shchcy":"\u0449","SHcy":"\u0428","shcy":"\u0448","ShortDownArrow":"\u2193","ShortLeftArrow":"\u2190","shortmid":"\u2223","shortparallel":"\u2225","ShortRightArrow":"\u2192","ShortUpArrow":"\u2191","shy":"\xad","Sigma":"\u03a3","sigma":"\u03c3","sigmaf":"\u03c2","sigmav":"\u03c2","sim":"\u223c","simdot":"\u2a6a","sime":"\u2243","simeq":"\u2243","simg":"\u2a9e","simgE":"\u2aa0","siml":"\u2a9d","simlE":"\u2a9f","simne":"\u2246","simplus":"\u2a24","simrarr":"\u2972","slarr":"\u2190","SmallCircle":"\u2218","smallsetminus":"\u2216","smashp":"\u2a33","smeparsl":"\u29e4","smid":"\u2223","smile":"\u2323","smt":"\u2aaa","smte":"\u2aac","smtes":"\u2aac\ufe00","SOFTcy":"\u042c","softcy":"\u044c","solbar":"\u233f","solb":"\u29c4","sol":"/","Sopf":"\ud835\udd4a","sopf":"\ud835\udd64","spades":"\u2660","spadesuit":"\u2660","spar":"\u2225","sqcap":"\u2293","sqcaps":"\u2293\ufe00","sqcup":"\u2294","sqcups":"\u2294\ufe00","Sqrt":"\u221a","sqsub":"\u228f","sqsube":"\u2291","sqsubset":"\u228f","sqsubseteq":"\u2291","sqsup":"\u2290","sqsupe":"\u2292","sqsupset":"\u2290","sqsupseteq":"\u2292","square":"\u25a1","Square":"\u25a1","SquareIntersection":"\u2293","SquareSubset":"\u228f","SquareSubsetEqual":"\u2291","SquareSuperset":"\u2290","SquareSupersetEqual":"\u2292","SquareUnion":"\u2294","squarf":"\u25aa","squ":"\u25a1","squf":"\u25aa","srarr":"\u2192","Sscr":"\ud835\udcae","sscr":"\ud835\udcc8","ssetmn":"\u2216","ssmile":"\u2323","sstarf":"\u22c6","Star":"\u22c6","star":"\u2606","starf":"\u2605","straightepsilon":"\u03f5","straightphi":"\u03d5","strns":"\xaf","sub":"\u2282","Sub":"\u22d0","subdot":"\u2abd","subE":"\u2ac5","sube":"\u2286","subedot":"\u2ac3","submult":"\u2ac1","subnE":"\u2acb","subne":"\u228a","subplus":"\u2abf","subrarr":"\u2979","subset":"\u2282","Subset":"\u22d0","subseteq":"\u2286","subseteqq":"\u2ac5","SubsetEqual":"\u2286","subsetneq":"\u228a","subsetneqq":"\u2acb","subsim":"\u2ac7","subsub":"\u2ad5","subsup":"\u2ad3","succapprox":"\u2ab8","succ":"\u227b","succcurlyeq":"\u227d","Succeeds":"\u227b","SucceedsEqual":"\u2ab0","SucceedsSlantEqual":"\u227d","SucceedsTilde":"\u227f","succeq":"\u2ab0","succnapprox":"\u2aba","succneqq":"\u2ab6","succnsim":"\u22e9","succsim":"\u227f","SuchThat":"\u220b","sum":"\u2211","Sum":"\u2211","sung":"\u266a","sup1":"\xb9","sup2":"\xb2","sup3":"\xb3","sup":"\u2283","Sup":"\u22d1","supdot":"\u2abe","supdsub":"\u2ad8","supE":"\u2ac6","supe":"\u2287","supedot":"\u2ac4","Superset":"\u2283","SupersetEqual":"\u2287","suphsol":"\u27c9","suphsub":"\u2ad7","suplarr":"\u297b","supmult":"\u2ac2","supnE":"\u2acc","supne":"\u228b","supplus":"\u2ac0","supset":"\u2283","Supset":"\u22d1","supseteq":"\u2287","supseteqq":"\u2ac6","supsetneq":"\u228b","supsetneqq":"\u2acc","supsim":"\u2ac8","supsub":"\u2ad4","supsup":"\u2ad6","swarhk":"\u2926","swarr":"\u2199","swArr":"\u21d9","swarrow":"\u2199","swnwar":"\u292a","szlig":"\xdf","Tab":"\\t","target":"\u2316","Tau":"\u03a4","tau":"\u03c4","tbrk":"\u23b4","Tcaron":"\u0164","tcaron":"\u0165","Tcedil":"\u0162","tcedil":"\u0163","Tcy":"\u0422","tcy":"\u0442","tdot":"\u20db","telrec":"\u2315","Tfr":"\ud835\udd17","tfr":"\ud835\udd31","there4":"\u2234","therefore":"\u2234","Therefore":"\u2234","Theta":"\u0398","theta":"\u03b8","thetasym":"\u03d1","thetav":"\u03d1","thickapprox":"\u2248","thicksim":"\u223c","ThickSpace":"\u205f\u200a","ThinSpace":"\u2009","thinsp":"\u2009","thkap":"\u2248","thksim":"\u223c","THORN":"\xde","thorn":"\xfe","tilde":"\u02dc","Tilde":"\u223c","TildeEqual":"\u2243","TildeFullEqual":"\u2245","TildeTilde":"\u2248","timesbar":"\u2a31","timesb":"\u22a0","times":"\xd7","timesd":"\u2a30","tint":"\u222d","toea":"\u2928","topbot":"\u2336","topcir":"\u2af1","top":"\u22a4","Topf":"\ud835\udd4b","topf":"\ud835\udd65","topfork":"\u2ada","tosa":"\u2929","tprime":"\u2034","trade":"\u2122","TRADE":"\u2122","triangle":"\u25b5","triangledown":"\u25bf","triangleleft":"\u25c3","trianglelefteq":"\u22b4","triangleq":"\u225c","triangleright":"\u25b9","trianglerighteq":"\u22b5","tridot":"\u25ec","trie":"\u225c","triminus":"\u2a3a","TripleDot":"\u20db","triplus":"\u2a39","trisb":"\u29cd","tritime":"\u2a3b","trpezium":"\u23e2","Tscr":"\ud835\udcaf","tscr":"\ud835\udcc9","TScy":"\u0426","tscy":"\u0446","TSHcy":"\u040b","tshcy":"\u045b","Tstrok":"\u0166","tstrok":"\u0167","twixt":"\u226c","twoheadleftarrow":"\u219e","twoheadrightarrow":"\u21a0","Uacute":"\xda","uacute":"\xfa","uarr":"\u2191","Uarr":"\u219f","uArr":"\u21d1","Uarrocir":"\u2949","Ubrcy":"\u040e","ubrcy":"\u045e","Ubreve":"\u016c","ubreve":"\u016d","Ucirc":"\xdb","ucirc":"\xfb","Ucy":"\u0423","ucy":"\u0443","udarr":"\u21c5","Udblac":"\u0170","udblac":"\u0171","udhar":"\u296e","ufisht":"\u297e","Ufr":"\ud835\udd18","ufr":"\ud835\udd32","Ugrave":"\xd9","ugrave":"\xf9","uHar":"\u2963","uharl":"\u21bf","uharr":"\u21be","uhblk":"\u2580","ulcorn":"\u231c","ulcorner":"\u231c","ulcrop":"\u230f","ultri":"\u25f8","Umacr":"\u016a","umacr":"\u016b","uml":"\xa8","UnderBar":"_","UnderBrace":"\u23df","UnderBracket":"\u23b5","UnderParenthesis":"\u23dd","Union":"\u22c3","UnionPlus":"\u228e","Uogon":"\u0172","uogon":"\u0173","Uopf":"\ud835\udd4c","uopf":"\ud835\udd66","UpArrowBar":"\u2912","uparrow":"\u2191","UpArrow":"\u2191","Uparrow":"\u21d1","UpArrowDownArrow":"\u21c5","updownarrow":"\u2195","UpDownArrow":"\u2195","Updownarrow":"\u21d5","UpEquilibrium":"\u296e","upharpoonleft":"\u21bf","upharpoonright":"\u21be","uplus":"\u228e","UpperLeftArrow":"\u2196","UpperRightArrow":"\u2197","upsi":"\u03c5","Upsi":"\u03d2","upsih":"\u03d2","Upsilon":"\u03a5","upsilon":"\u03c5","UpTeeArrow":"\u21a5","UpTee":"\u22a5","upuparrows":"\u21c8","urcorn":"\u231d","urcorner":"\u231d","urcrop":"\u230e","Uring":"\u016e","uring":"\u016f","urtri":"\u25f9","Uscr":"\ud835\udcb0","uscr":"\ud835\udcca","utdot":"\u22f0","Utilde":"\u0168","utilde":"\u0169","utri":"\u25b5","utrif":"\u25b4","uuarr":"\u21c8","Uuml":"\xdc","uuml":"\xfc","uwangle":"\u29a7","vangrt":"\u299c","varepsilon":"\u03f5","varkappa":"\u03f0","varnothing":"\u2205","varphi":"\u03d5","varpi":"\u03d6","varpropto":"\u221d","varr":"\u2195","vArr":"\u21d5","varrho":"\u03f1","varsigma":"\u03c2","varsubsetneq":"\u228a\ufe00","varsubsetneqq":"\u2acb\ufe00","varsupsetneq":"\u228b\ufe00","varsupsetneqq":"\u2acc\ufe00","vartheta":"\u03d1","vartriangleleft":"\u22b2","vartriangleright":"\u22b3","vBar":"\u2ae8","Vbar":"\u2aeb","vBarv":"\u2ae9","Vcy":"\u0412","vcy":"\u0432","vdash":"\u22a2","vDash":"\u22a8","Vdash":"\u22a9","VDash":"\u22ab","Vdashl":"\u2ae6","veebar":"\u22bb","vee":"\u2228","Vee":"\u22c1","veeeq":"\u225a","vellip":"\u22ee","verbar":"|","Verbar":"\u2016","vert":"|","Vert":"\u2016","VerticalBar":"\u2223","VerticalLine":"|","VerticalSeparator":"\u2758","VerticalTilde":"\u2240","VeryThinSpace":"\u200a","Vfr":"\ud835\udd19","vfr":"\ud835\udd33","vltri":"\u22b2","vnsub":"\u2282\u20d2","vnsup":"\u2283\u20d2","Vopf":"\ud835\udd4d","vopf":"\ud835\udd67","vprop":"\u221d","vrtri":"\u22b3","Vscr":"\ud835\udcb1","vscr":"\ud835\udccb","vsubnE":"\u2acb\ufe00","vsubne":"\u228a\ufe00","vsupnE":"\u2acc\ufe00","vsupne":"\u228b\ufe00","Vvdash":"\u22aa","vzigzag":"\u299a","Wcirc":"\u0174","wcirc":"\u0175","wedbar":"\u2a5f","wedge":"\u2227","Wedge":"\u22c0","wedgeq":"\u2259","weierp":"\u2118","Wfr":"\ud835\udd1a","wfr":"\ud835\udd34","Wopf":"\ud835\udd4e","wopf":"\ud835\udd68","wp":"\u2118","wr":"\u2240","wreath":"\u2240","Wscr":"\ud835\udcb2","wscr":"\ud835\udccc","xcap":"\u22c2","xcirc":"\u25ef","xcup":"\u22c3","xdtri":"\u25bd","Xfr":"\ud835\udd1b","xfr":"\ud835\udd35","xharr":"\u27f7","xhArr":"\u27fa","Xi":"\u039e","xi":"\u03be","xlarr":"\u27f5","xlArr":"\u27f8","xmap":"\u27fc","xnis":"\u22fb","xodot":"\u2a00","Xopf":"\ud835\udd4f","xopf":"\ud835\udd69","xoplus":"\u2a01","xotime":"\u2a02","xrarr":"\u27f6","xrArr":"\u27f9","Xscr":"\ud835\udcb3","xscr":"\ud835\udccd","xsqcup":"\u2a06","xuplus":"\u2a04","xutri":"\u25b3","xvee":"\u22c1","xwedge":"\u22c0","Yacute":"\xdd","yacute":"\xfd","YAcy":"\u042f","yacy":"\u044f","Ycirc":"\u0176","ycirc":"\u0177","Ycy":"\u042b","ycy":"\u044b","yen":"\xa5","Yfr":"\ud835\udd1c","yfr":"\ud835\udd36","YIcy":"\u0407","yicy":"\u0457","Yopf":"\ud835\udd50","yopf":"\ud835\udd6a","Yscr":"\ud835\udcb4","yscr":"\ud835\udcce","YUcy":"\u042e","yucy":"\u044e","yuml":"\xff","Yuml":"\u0178","Zacute":"\u0179","zacute":"\u017a","Zcaron":"\u017d","zcaron":"\u017e","Zcy":"\u0417","zcy":"\u0437","Zdot":"\u017b","zdot":"\u017c","zeetrf":"\u2128","ZeroWidthSpace":"\u200b","Zeta":"\u0396","zeta":"\u03b6","zfr":"\ud835\udd37","Zfr":"\u2128","ZHcy":"\u0416","zhcy":"\u0436","zigrarr":"\u21dd","zopf":"\ud835\udd6b","Zopf":"\u2124","Zscr":"\ud835\udcb5","zscr":"\ud835\udccf","zwj":"\u200d","zwnj":"\u200c"}')},xg5P:function(e,t,n){"use strict";n.r(t),n.d(t,"_onCreate",function(){return h}),n.d(t,"getApp",function(){return d}),n.d(t,"_DvaContainer",function(){return f});var r=n("p0pE"),i=n.n(r),o=n("Hg0r"),a=n("q1tI"),s=n("0Wa5"),l=n.n(s),c=n("RFCh"),u=null;function h(){var e=n("PszG"),t=e.mergeConfig("dva");return u=Object(o["a"])(i()({history:c["default"]},t.config||{},window.g_useSSR?{initialState:window.g_initialData}:{})),u.use(l()()),(t.plugins||[]).forEach(e=>{u.use(e)}),u.model(i()({namespace:"auth"},n("dX6P").default)),u.model(i()({namespace:"config"},n("6lKK").default)),u.model(i()({namespace:"coupon"},n("eOCx").default)),u.model(i()({namespace:"knowledge"},n("mHNb").default)),u.model(i()({namespace:"layout"},n("7tDr").default)),u.model(i()({namespace:"notice"},n("lETv").default)),u.model(i()({namespace:"order"},n("3moC").default)),u.model(i()({namespace:"passport"},n("wD64").default)),u.model(i()({namespace:"payment"},n("N9RS").default)),u.model(i()({namespace:"plan"},n("GmDa").default)),u.model(i()({namespace:"serverGroup"},n("ZlA7").default)),u.model(i()({namespace:"serverManage"},n("1dD/").default)),u.model(i()({namespace:"serverShadowsocks"},n("LMyI").default)),u.model(i()({namespace:"serverTrojan"},n("lWxU").default)),u.model(i()({namespace:"serverV2ray"},n("rB1S").default)),u.model(i()({namespace:"stat"},n("T4gb").default)),u.model(i()({namespace:"ticket"},n("e+9n").default)),u.model(i()({namespace:"user"},n("hlQx").default)),u}function d(){return u}class f extends a["Component"]{render(){var e=d();return e.router(()=>this.props.children),e.start()()}}},"y+Vt":function(e,t,n){"use strict";var r=n("mrSG"),i=n("Gev7"),o=n("IMiH");function a(e,t,n,r,i,o,a){if(0===i)return!1;var s=i,l=0,c=e;if(a>t+s&&a>r+s||ae+s&&o>n+s||ot+d&&h>r+d&&h>o+d&&h>l+d||he+d&&u>n+d&&u>i+d&&u>a+d||ut+u&&c>r+u&&c>o+u||ce+u&&l>n+u&&l>i+u||ln||u+ci&&(i+=d);var p=Math.atan2(l,s);return p<0&&(p+=d),p>=r&&p<=i||p+d>=r&&p+d<=i}var p=n("hyiK"),m=o["a"].CMD,g=2*Math.PI,v=1e-4;function y(e,t){return Math.abs(e-t)t&&u>r&&u>o&&u>l||u1&&x(),p=s["a"](t,r,o,l,w[0]),f>1&&(m=s["a"](t,r,o,l,w[1]))),2===f?vt&&l>r&&l>o||l=0&&u<=1){for(var h=0,d=s["h"](t,r,o,u),f=0;fn||s<-n)return 0;var l=Math.sqrt(n*n-s*s);b[0]=-l,b[1]=l;var c=Math.abs(r-i);if(c<1e-4)return 0;if(c>=g-1e-4){r=0,i=g;var u=o?1:-1;return a>=b[0]+e&&a<=b[1]+e?u:0}if(r>i){var h=r;r=i,i=h}r<0&&(r+=g,i+=g);for(var d=0,f=0;f<2;f++){var p=b[f];if(p+e>a){var m=Math.atan2(s,p);u=o?1:-1;m<0&&(m=g+m),(m>=r&&m<=i||m+g>=r&&m+g<=i)&&(m>Math.PI/2&&m<1.5*Math.PI&&(u=-u),d+=u)}}return d}function E(e,t,n,r,i){for(var o,s,u=e.data,h=e.len(),d=0,g=0,v=0,b=0,w=0,x=0;x1&&(n||(d+=Object(p["a"])(g,v,b,w,r,i))),k&&(g=u[x],v=u[x+1],b=g,w=v),E){case m.M:b=u[x++],w=u[x++],g=b,v=w;break;case m.L:if(n){if(a(g,v,u[x],u[x+1],t,r,i))return!0}else d+=Object(p["a"])(g,v,u[x],u[x+1],r,i)||0;g=u[x++],v=u[x++];break;case m.C:if(n){if(l(g,v,u[x++],u[x++],u[x++],u[x++],u[x],u[x+1],t,r,i))return!0}else d+=_(g,v,u[x++],u[x++],u[x++],u[x++],u[x],u[x+1],r,i)||0;g=u[x++],v=u[x++];break;case m.Q:if(n){if(c(g,v,u[x++],u[x++],u[x],u[x+1],t,r,i))return!0}else d+=S(g,v,u[x++],u[x++],u[x],u[x+1],r,i)||0;g=u[x++],v=u[x++];break;case m.A:var O=u[x++],T=u[x++],A=u[x++],M=u[x++],P=u[x++],R=u[x++];x+=1;var L=!!(1-u[x++]);o=Math.cos(P)*A+O,s=Math.sin(P)*M+T,k?(b=o,w=s):d+=Object(p["a"])(g,v,o,s,r,i);var D=(r-O)*M/A+O;if(n){if(f(O,T,M,P,P+R,L,t,D,i))return!0}else d+=C(O,T,M,P,P+R,L,D,i);g=Math.cos(P+R)*A+O,v=Math.sin(P+R)*M+T;break;case m.R:b=g=u[x++],w=v=u[x++];var j=u[x++],N=u[x++];if(o=b+j,s=w+N,n){if(a(b,w,o,w,t,r,i)||a(o,w,o,s,t,r,i)||a(o,s,b,s,t,r,i)||a(b,s,b,w,t,r,i))return!0}else d+=Object(p["a"])(o,w,o,s,r,i),d+=Object(p["a"])(b,s,b,w,r,i);break;case m.Z:if(n){if(a(g,v,b,w,t,r,i))return!0}else d+=Object(p["a"])(g,v,b,w,r,i);g=b,v=w;break}}return n||y(v,w)||(d+=Object(p["a"])(g,v,b,w,r,i)||0),0!==d}function k(e,t,n){return E(e,0,!1,t,n)}function O(e,t,n,r){return E(e,t,!0,n,r)}var T=n("bYtY"),A=n("Qe9p"),M=n("LPTA"),P=n("S8SX");n.d(t,"a",function(){return R});var R=Object(T["j"])({fill:"#000",stroke:null,strokePercent:1,fillOpacity:1,strokeOpacity:1,lineDashOffset:0,lineWidth:1,lineCap:"butt",miterLimit:10,strokeNoScale:!1,strokeFirst:!1},i["b"]),L={style:Object(T["j"])({fill:!0,stroke:!0,strokePercent:!0,fillOpacity:!0,strokeOpacity:!0,lineDashOffset:!0,lineWidth:!0,miterLimit:!0},i["a"].style)},D=["x","y","rotation","scaleX","scaleY","originX","originY","invisible","culling","z","z2","zlevel","parent"],j=function(e){function t(t){return e.call(this,t)||this}return Object(r["a"])(t,e),t.prototype.update=function(){var n=this;e.prototype.update.call(this);var r=this.style;if(r.decal){var i=this._decalEl=this._decalEl||new t;i.buildPath===t.prototype.buildPath&&(i.buildPath=function(e){n.buildPath(e,n.shape)}),i.silent=!0;var o=i.style;for(var a in r)o[a]!==r[a]&&(o[a]=r[a]);o.fill=r.fill?r.decal:null,o.decal=null,o.shadowColor=null,r.strokeFirst&&(o.stroke=null);for(var s=0;s.5?M["a"]:t>.2?M["c"]:M["d"]}if(e)return M["d"]}return M["a"]},t.prototype.getInsideTextStroke=function(e){var t=this.style.fill;if(Object(T["A"])(t)){var n=this.__zr,r=!(!n||!n.isDarkMode()),i=Object(A["c"])(e,0)0))},t.prototype.hasFill=function(){var e=this.style,t=e.fill;return null!=t&&"none"!==t},t.prototype.getBoundingRect=function(){var e=this._rect,t=this.style,n=!e;if(n){var r=!1;this.path||(r=!0,this.createPathProxy());var i=this.path;(r||this.__dirty&P["b"])&&(i.beginPath(),this.buildPath(i,this.shape,!1),this.pathUpdated()),e=i.getBoundingRect()}if(this._rect=e,this.hasStroke()&&this.path&&this.path.len()>0){var o=this._rectWithStroke||(this._rectWithStroke=e.clone());if(this.__dirty||n){o.copy(e);var a=t.strokeNoScale?this.getLineScale():1,s=t.lineWidth;if(!this.hasFill()){var l=this.strokeContainThreshold;s=Math.max(s,null==l?4:l)}a>1e-10&&(o.width+=s/a,o.height+=s/a,o.x-=s/a/2,o.y-=s/a/2)}return o}return e},t.prototype.contain=function(e,t){var n=this.transformCoordToLocal(e,t),r=this.getBoundingRect(),i=this.style;if(e=n[0],t=n[1],r.contain(e,t)){var o=this.path;if(this.hasStroke()){var a=i.lineWidth,s=i.strokeNoScale?this.getLineScale():1;if(s>1e-10&&(this.hasFill()||(a=Math.max(a,this.strokeContainThreshold)),O(o,a/s,e,t)))return!0}if(this.hasFill())return k(o,e,t)}return!1},t.prototype.dirtyShape=function(){this.__dirty|=P["b"],this._rect&&(this._rect=null),this._decalEl&&this._decalEl.dirtyShape(),this.markRedraw()},t.prototype.dirty=function(){this.dirtyStyle(),this.dirtyShape()},t.prototype.animateShape=function(e){return this.animate("shape",e)},t.prototype.updateDuringAnimation=function(e){"style"===e?this.dirtyStyle():"shape"===e?this.dirtyShape():this.markRedraw()},t.prototype.attrKV=function(t,n){"shape"===t?this.setShape(n):e.prototype.attrKV.call(this,t,n)},t.prototype.setShape=function(e,t){var n=this.shape;return n||(n=this.shape={}),"string"===typeof e?n[e]=t:Object(T["m"])(n,e),this.dirtyShape(),this},t.prototype.shapeChanged=function(){return!!(this.__dirty&P["b"])},t.prototype.createStyle=function(e){return Object(T["h"])(R,e)},t.prototype._innerSaveToNormal=function(t){e.prototype._innerSaveToNormal.call(this,t);var n=this._normalState;t.shape&&!n.shape&&(n.shape=Object(T["m"])({},this.shape))},t.prototype._applyStateObj=function(t,n,r,i,o,a){e.prototype._applyStateObj.call(this,t,n,r,i,o,a);var s,l=!(n&&i);if(n&&n.shape?o?i?s=n.shape:(s=Object(T["m"])({},r.shape),Object(T["m"])(s,n.shape)):(s=Object(T["m"])({},i?this.shape:r.shape),Object(T["m"])(s,n.shape)):l&&(s=r.shape),s)if(o){this.shape=Object(T["m"])({},this.shape);for(var c={},u=Object(T["D"])(s),h=0;h-1}function q(e,t){var n=this.__data__,r=J(n,e);return r<0?n.push([e,t]):n[r][1]=t,this}function K(e){var t=-1,n=e?e.length:0;this.clear();while(++t>1,u=23===t?M(2,-24)-M(2,-77):0,h=0,d=e<0||0===e&&1/e<0?1:0;for(e=A(e),e!=e||e===O?(i=e!=e?1:0,r=l):(r=P(R(e)/L),e*(o=M(2,-r))<1&&(r--,o*=2),e+=r+c>=1?u/o:u*M(2,1-c),e*o>=2&&(r++,o/=2),r+c>=l?(i=0,r=l):r+c>=1?(i=(e*o-1)*M(2,t),r+=c):(i=e*M(2,c-1)*M(2,t),r=0));t>=8;a[h++]=255&i,i/=256,t-=8);for(r=r<0;a[h++]=255&r,r/=256,s-=8);return a[--h]|=128*d,a}function B(e,t,n){var r,i=8*n-t-1,o=(1<>1,s=i-7,l=n-1,c=e[l--],u=127&c;for(c>>=7;s>0;u=256*u+e[l],l--,s-=8);for(r=u&(1<<-s)-1,u>>=-s,s+=t;s>0;r=256*r+e[l],l--,s-=8);if(0===u)u=1-a;else{if(u===o)return r?NaN:c?-O:O;r+=M(2,t),u-=a}return(c?-1:1)*r*M(2,u-t)}function W(e){return e[3]<<24|e[2]<<16|e[1]<<8|e[0]}function H(e){return[255&e]}function z(e){return[255&e,e>>8&255]}function U(e){return[255&e,e>>8&255,e>>16&255,e>>24&255]}function q(e){return V(e,52,8)}function K(e){return V(e,23,4)}function G(e,t,n){m(e[w],t,{get:function(){return this[n]}})}function Y(e,t,n,r){var i=+n,o=f(i);if(o+t>e[$])throw k(_);var a=e[I]._b,s=o+e[F],l=a.slice(s,s+t);return r?l:l.reverse()}function X(e,t,n,r,i,o){var a=+n,s=f(a);if(s+t>e[$])throw k(_);for(var l=e[I]._b,c=s+e[F],u=r(+i),h=0;hee;)(Q=J[ee++])in S||s(S,Q,T[Q]);o||(Z.constructor=S)}var te=new C(new S(2)),ne=C[w].setInt8;te.setInt8(0,2147483648),te.setInt8(1,2147483649),!te.getInt8(0)&&te.getInt8(1)||l(C[w],{setInt8:function(e,t){ne.call(this,e,t<<24>>24)},setUint8:function(e,t){ne.call(this,e,t<<24>>24)}},!0)}else S=function(e){u(this,S,y);var t=f(e);this._b=g.call(new Array(t),0),this[$]=t},C=function(e,t,n){u(this,C,b),u(e,S,b);var r=e[$],i=h(t);if(i<0||i>r)throw k("Wrong offset!");if(n=void 0===n?r-i:d(n),i+n>r)throw k(x);this[I]=e,this[F]=i,this[$]=n},i&&(G(S,j,"_l"),G(C,D,"_b"),G(C,j,"_l"),G(C,N,"_o")),l(C[w],{getInt8:function(e){return Y(this,1,e)[0]<<24>>24},getUint8:function(e){return Y(this,1,e)[0]},getInt16:function(e){var t=Y(this,2,e,arguments[1]);return(t[1]<<8|t[0])<<16>>16},getUint16:function(e){var t=Y(this,2,e,arguments[1]);return t[1]<<8|t[0]},getInt32:function(e){return W(Y(this,4,e,arguments[1]))},getUint32:function(e){return W(Y(this,4,e,arguments[1]))>>>0},getFloat32:function(e){return B(Y(this,4,e,arguments[1]),23,4)},getFloat64:function(e){return B(Y(this,8,e,arguments[1]),52,8)},setInt8:function(e,t){X(this,1,e,H,t)},setUint8:function(e,t){X(this,1,e,H,t)},setInt16:function(e,t){X(this,2,e,z,t,arguments[2])},setUint16:function(e,t){X(this,2,e,z,t,arguments[2])},setInt32:function(e,t){X(this,4,e,U,t,arguments[2])},setUint32:function(e,t){X(this,4,e,U,t,arguments[2])},setFloat32:function(e,t){X(this,4,e,K,t,arguments[2])},setFloat64:function(e,t){X(this,8,e,q,t,arguments[2])}});v(S,y),v(C,b),s(C[w],a.VIEW,!0),t[y]=S,t[b]=C},yLpj:function(e,t){var n;n=function(){return this}();try{n=n||new Function("return this")()}catch(e){"object"===typeof window&&(n=window)}e.exports=n},yVla:function(e,t,n){"use strict";t.__esModule=!0;t.canUseDOM=!("undefined"===typeof window||!window.document||!window.document.createElement),t.getConfirmation=function(e,t){return t(window.confirm(e))},t.supportsHistory=function(){var e=window.navigator.userAgent;return(-1===e.indexOf("Android 2.")&&-1===e.indexOf("Android 4.0")||-1===e.indexOf("Mobile Safari")||-1!==e.indexOf("Chrome")||-1!==e.indexOf("Windows Phone"))&&(window.history&&"pushState"in window.history)},t.supportsPopStateOnHashChange=function(){return-1===window.navigator.userAgent.indexOf("Trident")},t.supportsGoWithoutReloadUsingHash=function(){return-1===window.navigator.userAgent.indexOf("Firefox")},t.isExtraneousPopstateEvent=function(e){return void 0===e.state&&-1===navigator.userAgent.indexOf("CriOS")}},yWgo:function(e,t,n){"use strict";n.d(t,"b",function(){return a}),n.d(t,"c",function(){return s}),n.d(t,"d",function(){return l}),n.d(t,"a",function(){return c});n("miYZ");var r=n("tsqr"),i=(n("wd/R"),n("+QRC")),o=n.n(i);function a(e){return document.cookie.split("; ").reduce((t,n)=>{var r=n.split("=");return r[0]===e?decodeURIComponent(r[1]):t},"")}function s(){return-1!==window.navigator.userAgent.toLowerCase().indexOf("mobile")}function l(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:525600,r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:"/",i=arguments.length>4?arguments[4]:void 0,o=new Date(Date.now()+6e4*n).toGMTString();document.cookie=e+"=".concat(encodeURIComponent(t),";expires=").concat(o,";path=").concat(r)+(i?";domain=".concat(i):"")}function c(e){o()(e),r["a"].success("\u590d\u5236\u6210\u529f")}},ykC2:function(e,t,n){"use strict";n("bbsP");var r=n("/wGt"),i=(n("+L6B"),n("2/Rp")),o=(n("5Dmo"),n("3S7+")),a=(n("Pwec"),n("CtXQ")),s=(n("OaEy"),n("2fM7")),l=(n("5NDa"),n("5rEg")),c=n("p0pE"),u=n.n(c),h=n("q1tI"),d=n.n(h),f=n("/MKj"),p=(n("lc5D"),n("VeWa"),n("umNf"),n("8zNj"));class m extends d.a.Component{constructor(e){super(e),this.state={server:this.props.record||{tls:0,rate:1},visible:!1,childDrawer:{visible:!1}}}onShow(){this.setState({visible:!this.state.visible})}save(){var e=this.state.server;this.props.dispatch({type:"serverTrojan/save",params:e,callback:()=>{this.onShow()}})}showChildDrawer(e,t){this.setState({childDrawer:u()({},this.state.childDrawer,{visible:!this.state.childDrawer.visible,title:e,type:t})})}changeServer(e,t){this.setState({server:u()({},this.state.server,{[e]:t})})}formChange(e,t){this.setState({server:u()({},this.state.server,{[e]:t})})}render(){var e=this.state.server,t=this.props.serverTrojan.saveLoading,n=this.props.serverManage.servers,c=this.props.serverGroup.groups;return d.a.createElement(d.a.Fragment,null,d.a.cloneElement(this.props.children,{onClick:()=>this.setState({visible:!0})}),d.a.createElement(r["a"],{id:"server",maskClosable:!0,title:e.id?"\u7f16\u8f91\u8282\u70b9":"\u65b0\u5efa\u8282\u70b9",width:"80%",visible:this.state.visible,onClose:()=>this.onShow()},d.a.createElement("div",null,d.a.createElement("div",{className:"row"},d.a.createElement("div",{className:"form-group col-8"},d.a.createElement("label",null,"\u8282\u70b9\u540d\u79f0"),d.a.createElement(l["a"],{placeholder:"\u8bf7\u8f93\u5165\u8282\u70b9\u540d\u79f0",value:e.name,onChange:e=>this.formChange("name",e.target.value)})),d.a.createElement("div",{className:"form-group col-4"},d.a.createElement("label",null,"\u500d\u7387"),d.a.createElement(l["a"],{addonAfter:"x",placeholder:"\u8bf7\u8f93\u5165\u8282\u70b9\u500d\u7387",value:e.rate,onChange:e=>this.formChange("rate",e.target.value)}))),d.a.createElement("div",{className:"form-group"},d.a.createElement("label",null,"\u8282\u70b9\u6807\u7b7e"),d.a.createElement(s["a"],{mode:"tags",value:e.tags||[],style:{width:"100%"},placeholder:"\u8f93\u5165\u540e\u56de\u8f66\u6dfb\u52a0\u6807\u7b7e",onChange:e=>this.formChange("tags",e.length>0?e:null)})),d.a.createElement("div",{className:"form-group"},d.a.createElement("label",null,"\u6743\u9650\u7ec4 ",d.a.createElement(p["a"],null,d.a.createElement("a",{href:"javascript:(0);"},"\u6dfb\u52a0\u6743\u9650\u7ec4"))),d.a.createElement(s["a"],{mode:"multiple",value:e.group_id,placeholder:"\u8bf7\u9009\u62e9\u6743\u9650\u7ec4",style:{width:"100%"},onChange:e=>this.formChange("group_id",e)},c.map(e=>{return d.a.createElement(s["a"].Option,{key:e.id},e.name)}))),d.a.createElement("div",{className:"row"},d.a.createElement("div",{className:"form-group col-md-12 col-xs-12"},d.a.createElement("label",null,"\u8282\u70b9\u5730\u5740"),d.a.createElement(l["a"],{placeholder:"\u5730\u5740\u6216IP",value:e.host,onChange:e=>this.formChange("host",e.target.value)}))),d.a.createElement("div",{className:"row"},d.a.createElement("div",{className:"form-group col-md-4 col-xs-12"},d.a.createElement("label",null,"\u8fde\u63a5\u7aef\u53e3"),d.a.createElement(l["a"],{placeholder:"\u7528\u6237\u8fde\u63a5\u7aef\u53e3",value:e.port,onChange:e=>{this.formChange("port",e.target.value)}})),d.a.createElement("div",{className:"form-group col-md-4 col-xs-12"},d.a.createElement("label",null,"\u670d\u52a1\u7aef\u53e3"),d.a.createElement(l["a"],{placeholder:"\u670d\u52a1\u7aef\u5f00\u653e\u7aef\u53e3",value:e.server_port,onChange:e=>{this.formChange("server_port",e.target.value)}})),d.a.createElement("div",{className:"form-group col-md-4 col-xs-12"},d.a.createElement("label",null,d.a.createElement(o["a"],{placement:"top",title:"\u4f7f\u7528\u81ea\u7b7e\u540d\u8bc1\u4e66\u9700\u8981\u5141\u8bb8\u4e0d\u5b89\u5168\uff0c\u7528\u6237\u624d\u53ef\u4ee5\u8fde\u63a5"},"\u5141\u8bb8\u4e0d\u5b89\u5168 ",d.a.createElement(a["a"],{type:"question-circle"}))),d.a.createElement(s["a"],{value:parseInt(e.allow_insecure)?1:0,placeholder:"\u5141\u8bb8\u4e0d\u5b89\u5168",style:{width:"100%"},onChange:e=>this.formChange("allow_insecure",e)},d.a.createElement(s["a"].Option,{key:0,value:0},"\u5426"),d.a.createElement(s["a"].Option,{key:1,value:1},"\u662f")))),d.a.createElement("div",{className:"form-group"},d.a.createElement("label",null,"\u670d\u52a1\u5668\u540d\u79f0\u6307\u793a(sni)"),d.a.createElement(l["a"],{placeholder:"\u5f53\u8282\u70b9\u5730\u5740\u4e0e\u8bc1\u4e66\u4e0d\u4e00\u81f4\u65f6\u7528\u4e8e\u8bc1\u4e66\u9a8c\u8bc1",value:e.server_name,onChange:e=>this.formChange("server_name",e.target.value)})),d.a.createElement("div",{className:"form-group"},d.a.createElement("label",null,d.a.createElement(o["a"],{placement:"top"},"\u7236\u8282\u70b9 ",d.a.createElement("a",{target:"_blank",href:"https://docs.v2board.com/use/node.html#\u7236\u8282\u70b9\u4e0e\u5b50\u8282\u70b9\u5173\u7cfb"},"\u66f4\u591a\u89e3\u7b54"))),d.a.createElement(s["a"],{value:e.parent_id||"",onChange:e=>this.formChange("parent_id",e),style:{width:"100%"}},d.a.createElement(s["a"].Option,{value:""},"\u65e0"),n.map(t=>{if("trojan"===t.type&&t.id!==e.id)return d.a.createElement(s["a"].Option,{key:Math.random(),value:t.id},t.name)})))),d.a.createElement("div",{className:"v2board-drawer-action"},d.a.createElement(i["a"],{style:{marginRight:8},onClick:()=>this.onShow()},"\u53d6\u6d88"),d.a.createElement(i["a"],{loading:t,onClick:()=>this.save(),type:"primary"},"\u63d0\u4ea4"))))}}t["a"]=Object(f["c"])(e=>{var t=e.serverTrojan,n=e.serverGroup,r=e.serverManage;return{serverTrojan:t,serverGroup:n,serverManage:r}})(m)},yoD8:function(e,t,n){"use strict";var r=n("3Oj7"),i=[0,0],o=[0,0],a=new r["a"],s=new r["a"],l=function(){function e(e,t){this._corners=[],this._axes=[],this._origin=[0,0];for(var n=0;n<4;n++)this._corners[n]=new r["a"];for(n=0;n<2;n++)this._axes[n]=new r["a"];e&&this.fromBoundingRect(e,t)}return e.prototype.fromBoundingRect=function(e,t){var n=this._corners,i=this._axes,o=e.x,a=e.y,s=o+e.width,l=a+e.height;if(n[0].set(o,a),n[1].set(s,a),n[2].set(s,l),n[3].set(o,l),t)for(var c=0;c<4;c++)n[c].transform(t);r["a"].sub(i[0],n[1],n[0]),r["a"].sub(i[1],n[3],n[0]),i[0].normalize(),i[1].normalize();for(c=0;c<2;c++)this._origin[c]=i[c].dot(n[0])},e.prototype.intersect=function(e,t){var n=!0,i=!t;return a.set(1/0,1/0),s.set(0,0),!this._intersectCheckOneSide(this,e,a,s,i,1)&&(n=!1,i)?n:!this._intersectCheckOneSide(e,this,a,s,i,-1)&&(n=!1,i)?n:(i||r["a"].copy(t,n?a:s),n)},e.prototype._intersectCheckOneSide=function(e,t,n,a,s,l){for(var c=!0,u=0;u<2;u++){var h=this._axes[u];if(this._getProjMinMaxOnAxis(u,e._corners,i),this._getProjMinMaxOnAxis(u,t._corners,o),i[1]o[1]){if(c=!1,s)return c;var d=Math.abs(o[0]-i[1]),f=Math.abs(i[0]-o[1]);Math.min(d,f)>a.len()&&(d0?!0===a?r.scrollTop(t,b.top+w.top):!1===a?r.scrollTop(t,b.top+x.top):w.top<0?r.scrollTop(t,b.top+w.top):r.scrollTop(t,b.top+x.top):o||(a=void 0===a||!!a,a?r.scrollTop(t,b.top+w.top):r.scrollTop(t,b.top+x.top)),i&&(w.left<0||x.left>0?!0===s?r.scrollLeft(t,b.left+w.left):!1===s?r.scrollLeft(t,b.left+x.left):w.left<0?r.scrollLeft(t,b.left+w.left):r.scrollLeft(t,b.left+x.left):o||(s=void 0===s||!!s,s?r.scrollLeft(t,b.left+w.left):r.scrollLeft(t,b.left+x.left)))}e.exports=i},zxrt:function(e,t,n){"use strict";var r=n("WGNW"),i=n("88Vn"),o=n("yLMY"),a=n("7vYJ"),s=n("Spc3"),l=n("OsVd"),c=n("u8+u"),u=n("c0Oy").ArrayBuffer,h=n("VeyY"),d=o.ArrayBuffer,f=o.DataView,p=i.ABV&&u.isView,m=d.prototype.slice,g=i.VIEW,v="ArrayBuffer";r(r.G+r.W+r.F*(u!==d),{ArrayBuffer:d}),r(r.S+r.F*!i.CONSTR,v,{isView:function(e){return p&&p(e)||c(e)&&g in e}}),r(r.P+r.U+r.F*n("wUWy")(function(){return!new d(2).slice(1,void 0).byteLength}),v,{slice:function(e,t){if(void 0!==m&&void 0===t)return m.call(a(this),e);var n=a(this).byteLength,r=s(e,n),i=s(void 0===t?n:t,n),o=new(h(this,d))(l(i-r)),c=new f(this),u=new f(o),p=0;while(r-1}e.exports=i},"+Hau":function(e,t,n){"use strict";n.d(t,"d",function(){return s}),n.d(t,"c",function(){return l}),n.d(t,"b",function(){return u}),n.d(t,"a",function(){return c}),n.d(t,"e",function(){return f}),n.d(t,"i",function(){return p}),n.d(t,"B",function(){return m}),n.d(t,"y",function(){return v}),n.d(t,"m",function(){return y}),n.d(t,"q",function(){return b}),n.d(t,"l",function(){return _}),n.d(t,"h",function(){return x}),n.d(t,"r",function(){return w}),n.d(t,"n",function(){return O}),n.d(t,"j",function(){return S}),n.d(t,"w",function(){return M}),n.d(t,"f",function(){return C}),n.d(t,"o",function(){return T}),n.d(t,"u",function(){return j}),n.d(t,"z",function(){return I}),n.d(t,"s",function(){return D}),n.d(t,"k",function(){return A}),n.d(t,"x",function(){return E}),n.d(t,"g",function(){return P}),n.d(t,"p",function(){return L}),n.d(t,"v",function(){return N}),n.d(t,"A",function(){return R}),n.d(t,"t",function(){return z});var r=n("bYtY"),i=n("OELB"),o=n("71kh"),a=n("Qxkt"),s=1e3,l=60*s,u=60*l,c=24*u,f=365*c,d={year:"{yyyy}",month:"{MMM}",day:"{d}",hour:"{HH}:{mm}",minute:"{HH}:{mm}",second:"{HH}:{mm}:{ss}",millisecond:"{HH}:{mm}:{ss} {SSS}",none:"{yyyy}-{MM}-{dd} {HH}:{mm}:{ss} {SSS}"},h="{yyyy}-{MM}-{dd}",p={year:"{yyyy}",month:"{yyyy}-{MM}",day:h,hour:h+" "+d.hour,minute:h+" "+d.minute,second:h+" "+d.second,millisecond:d.none},g=["year","month","day","hour","minute","second","millisecond"],m=["year","half-year","quarter","month","week","half-week","day","half-day","quarter-day","hour","minute","second","millisecond"];function v(e,t){return e+="","0000".substr(0,t-e.length)+e}function y(e){switch(e){case"half-year":case"quarter":return"month";case"week":case"half-week":return"day";case"half-day":case"quarter-day":return"hour";default:return e}}function b(e){return e===y(e)}function _(e){switch(e){case"year":case"month":return"day";case"millisecond":return"millisecond";default:return"second"}}function x(e,t,n,r){var s=i["l"](e),l=s[S(n)](),u=s[M(n)]()+1,c=Math.floor((u-1)/4)+1,f=s[C(n)](),d=s["get"+(n?"UTC":"")+"Day"](),h=s[T(n)](),p=(h-1)%12+1,g=s[j(n)](),m=s[I(n)](),y=s[D(n)](),b=r instanceof a["a"]?r:Object(o["d"])(r||o["a"])||Object(o["c"])(),_=b.getModel("time"),x=_.get("month"),w=_.get("monthAbbr"),k=_.get("dayOfWeek"),O=_.get("dayOfWeekAbbr");return(t||"").replace(/{yyyy}/g,l+"").replace(/{yy}/g,l%100+"").replace(/{Q}/g,c+"").replace(/{MMMM}/g,x[u-1]).replace(/{MMM}/g,w[u-1]).replace(/{MM}/g,v(u,2)).replace(/{M}/g,u+"").replace(/{dd}/g,v(f,2)).replace(/{d}/g,f+"").replace(/{eeee}/g,k[d]).replace(/{ee}/g,O[d]).replace(/{e}/g,d+"").replace(/{HH}/g,v(h,2)).replace(/{H}/g,h+"").replace(/{hh}/g,v(p+"",2)).replace(/{h}/g,p+"").replace(/{mm}/g,v(g,2)).replace(/{m}/g,g+"").replace(/{ss}/g,v(m,2)).replace(/{s}/g,m+"").replace(/{SSS}/g,v(y,3)).replace(/{S}/g,y+"")}function w(e,t,n,i,o){var a=null;if("string"===typeof n)a=n;else if("function"===typeof n)a=n(e.value,t,{level:e.level});else{var s=r["m"]({},d);if(e.level>0)for(var l=0;l=0;--l)if(u[c]){a=u[c];break}a=a||s.none}if(r["s"](a)){var h=null==e.level?0:e.level>=0?e.level:a.length+e.level;h=Math.min(h,a.length-1),a=a[h]}}return x(new Date(e.value),a,o,i)}function k(e,t){var n=i["l"](e),r=n[M(t)]()+1,o=n[C(t)](),a=n[T(t)](),s=n[j(t)](),l=n[I(t)](),u=n[D(t)](),c=0===u,f=c&&0===l,d=f&&0===s,h=d&&0===a,p=h&&1===o,g=p&&1===r;return g?"year":p?"month":h?"day":d?"hour":f?"minute":c?"second":"millisecond"}function O(e,t,n){var r="number"===typeof e?i["l"](e):e;switch(t=t||k(e,n),t){case"year":return r[S(n)]();case"half-year":return r[M(n)]()>=6?1:0;case"quarter":return Math.floor((r[M(n)]()+1)/4);case"month":return r[M(n)]();case"day":return r[C(n)]();case"half-day":return r[T(n)]()/24;case"hour":return r[T(n)]();case"minute":return r[j(n)]();case"second":return r[I(n)]();case"millisecond":return r[D(n)]()}}function S(e){return e?"getUTCFullYear":"getFullYear"}function M(e){return e?"getUTCMonth":"getMonth"}function C(e){return e?"getUTCDate":"getDate"}function T(e){return e?"getUTCHours":"getHours"}function j(e){return e?"getUTCMinutes":"getMinutes"}function I(e){return e?"getUTCSeconds":"getSeconds"}function D(e){return e?"getUTCMilliseconds":"getMilliseconds"}function A(e){return e?"setUTCFullYear":"setFullYear"}function E(e){return e?"setUTCMonth":"setMonth"}function P(e){return e?"setUTCDate":"setDate"}function L(e){return e?"setUTCHours":"setHours"}function N(e){return e?"setUTCMinutes":"setMinutes"}function R(e){return e?"setUTCSeconds":"setSeconds"}function z(e){return e?"setUTCMilliseconds":"setMilliseconds"}},"+K+b":function(e,t,n){var r=n("JHRd");function i(e){var t=new e.constructor(e.byteLength);return new r(t).set(new r(e)),t}e.exports=i},"+Qka":function(e,t,n){var r=n("fmRc"),i=n("t2Dn"),o=n("cq/+"),a=n("T1AV"),s=n("GoyQ"),l=n("mTTR"),u=n("itsj");function c(e,t,n,f,d){e!==t&&o(t,function(o,l){if(d||(d=new r),s(o))a(e,t,l,n,c,f,d);else{var h=f?f(u(e,l),o,l+"",e,t,d):void 0;void 0===h&&(h=o),i(e,l,h)}},l)}e.exports=c},"+TT/":function(e,t,n){"use strict";n.d(t,"a",function(){return f}),n.d(t,"d",function(){return d}),n.d(t,"f",function(){return h}),n.d(t,"b",function(){return p}),n.d(t,"e",function(){return g}),n.d(t,"c",function(){return m});var r=n("bYtY"),i=n("mFDi"),o=n("OELB"),a=n("7aKB"),s=r["k"],l=["left","right","top","bottom","width","height"],u=[["width","left","right"],["height","top","bottom"]];function c(e,t,n,r,i){var o=0,a=0;null==r&&(r=1/0),null==i&&(i=1/0);var s=0;t.eachChild(function(l,u){var c,f,d=l.getBoundingRect(),h=t.childAt(u+1),p=h&&h.getBoundingRect();if("horizontal"===e){var g=d.width+(p?-p.x+d.x:0);c=o+g,c>r||l.newline?(o=0,c=g,a+=s+n,s=d.height):s=Math.max(s,d.height)}else{var m=d.height+(p?-p.y+d.y:0);f=a+m,f>i||l.newline?(o+=s+n,a=0,f=m,s=d.width):s=Math.max(s,d.width)}l.newline||(l.x=o,l.y=a,l.markRedraw(),"horizontal"===e?o=c+n:a=f+n)})}var f=c;r["i"](c,"vertical"),r["i"](c,"horizontal");function d(e,t,n){n=a["g"](n||0);var r=t.width,s=t.height,l=Object(o["m"])(e.left,r),u=Object(o["m"])(e.top,s),c=Object(o["m"])(e.right,r),f=Object(o["m"])(e.bottom,s),d=Object(o["m"])(e.width,r),h=Object(o["m"])(e.height,s),p=n[2]+n[0],g=n[1]+n[3],m=e.aspect;switch(isNaN(d)&&(d=r-c-g-l),isNaN(h)&&(h=s-f-p-u),null!=m&&(isNaN(d)&&isNaN(h)&&(m>r/s?d=.8*r:h=.8*s),isNaN(d)&&(d=m*h),isNaN(h)&&(h=d/m)),isNaN(l)&&(l=r-c-d-g),isNaN(u)&&(u=s-f-h-p),e.left||e.right){case"center":l=r/2-d/2-n[3];break;case"right":l=r-d-g;break}switch(e.top||e.bottom){case"middle":case"center":u=s/2-h/2-n[0];break;case"bottom":u=s-h-p;break}l=l||0,u=u||0,isNaN(d)&&(d=r-g-l-(c||0)),isNaN(h)&&(h=s-p-u-(f||0));var v=new i["a"](l+n[3],u+n[0],d,h);return v.margin=n,v}function h(e,t,n,o,a){var s=!a||!a.hv||a.hv[0],l=!a||!a.hv||a.hv[1],u=a&&a.boundingMode||"all";if(s||l){var c;if("raw"===u)c="group"===e.type?new i["a"](0,0,+t.width||0,+t.height||0):e.getBoundingRect();else if(c=e.getBoundingRect(),e.needLocalTransform()){var f=e.getLocalTransform();c=c.clone(),c.applyTransform(f)}var h=d(r["j"]({width:c.width,height:c.height},t),n,o),p=s?h.x-c.x:0,g=l?h.y-c.y:0;"raw"===u?(e.x=p,e.y=g):(e.x+=p,e.y+=g),e.markRedraw()}}function p(e){var t=e.layoutMode||e.constructor.layoutMode;return r["z"](t)?t:t?{type:t}:null}function g(e,t,n){var i=n&&n.ignoreSize;!r["s"](i)&&(i=[i,i]);var o=l(u[0],0),a=l(u[1],1);function l(n,r){var o={},a=0,l={},u=0,d=2;if(s(n,function(t){l[t]=e[t]}),s(n,function(e){c(t,e)&&(o[e]=l[e]=t[e]),f(o,e)&&a++,f(l,e)&&u++}),i[r])return f(t,n[1])?l[n[2]]=null:f(t,n[2])&&(l[n[1]]=null),l;if(u!==d&&a){if(a>=d)return o;for(var h=0;h0?"top":"bottom",r="center"):Object(f["h"])(o-_)?(i=n>0?"bottom":"top",r="center"):(i="middle",r=o>0&&o<_?n>0?"right":"left":n>0?"left":"right"),{rotation:o,textAlign:r,textVerticalAlign:i}},e.makeAxisEventDataBase=function(e){var t={componentType:e.mainType,componentIndex:e.componentIndex};return t[e.mainType+"Index"]=e.componentIndex,t},e.isLabelSilent=function(e){var t=e.get("tooltip");return e.get("silent")||!(e.get("triggerEvent")||t&&t.show)},e}(),w={axisLine:function(e,t,n,i){var a=t.get(["axisLine","show"]);if("auto"===a&&e.handleAutoShown&&(a=e.handleAutoShown("axisLine")),a){var s=t.axis.getExtent(),l=i.transform,u=[s[0],0],c=[s[1],0];l&&(Object(p["b"])(u,u,l),Object(p["b"])(c,c,l));var f=Object(r["m"])({lineCap:"round"},t.getModel(["axisLine","lineStyle"]).getLineStyle()),h=new o["a"]({subPixelOptimize:!0,shape:{x1:u[0],y1:u[1],x2:c[0],y2:c[1]},style:f,strokeContainThreshold:e.strokeContainThreshold||5,silent:!0,z2:1});h.anid="line",n.add(h);var g=t.get(["axisLine","symbol"]);if(null!=g){var m=t.get(["axisLine","symbolSize"]);"string"===typeof g&&(g=[g,g]),"string"!==typeof m&&"number"!==typeof m||(m=[m,m]);var v=Object(d["b"])(t.get(["axisLine","symbolOffset"])||0,m),y=m[0],b=m[1];Object(r["k"])([{rotate:e.rotation+Math.PI/2,offset:v[0],r:0},{rotate:e.rotation-Math.PI/2,offset:v[1],r:Math.sqrt((u[0]-c[0])*(u[0]-c[0])+(u[1]-c[1])*(u[1]-c[1]))}],function(t,r){if("none"!==g[r]&&null!=g[r]){var i=Object(d["a"])(g[r],-y/2,-b/2,y,b,f.stroke,!0),o=t.r+t.offset;i.attr({rotation:t.rotate,x:u[0]+o*Math.cos(e.rotation),y:u[1]-o*Math.sin(e.rotation),silent:!0,z2:11}),n.add(i)}})}}},axisTickLabel:function(e,t,n,i){var o=j(n,i,t,e),a=D(n,i,t,e);if(O(t,a,o),I(n,i,t,e.tickDirection),t.get(["axisLabel","hideOverlap"])){var s=y(Object(r["F"])(a,function(e){return{label:e,priority:e.z2,defaultAttr:{ignore:e.ignore}}}));b(s)}},axisName:function(e,t,n,i){var o=Object(r["L"])(e.axisName,t.get("name"));if(o){var c,f,d=t.get("nameLocation"),h=e.nameDirection,p=t.getModel("nameTextStyle"),g=t.get("nameGap")||0,m=t.axis.getExtent(),v=m[0]>m[1]?-1:1,y=["start"===d?m[0]-v*g:"end"===d?m[1]+v*g:(m[0]+m[1])/2,C(d)?e.labelOffset+h*g:0],b=t.get("nameRotate");null!=b&&(b=b*_/180),C(d)?c=x.innerTextLayout(e.rotation,null!=b?b:e.rotation,h):(c=k(e.rotation,d,b||0,m),f=e.axisNameAvailableWidth,null!=f&&(f=Math.abs(f/Math.sin(c.rotation)),!isFinite(f)&&(f=null)));var w=p.getFont(),O=t.get("nameTruncate",!0)||{},S=O.ellipsis,M=Object(r["L"])(e.nameTruncateMaxWidth,O.maxWidth,f),T=new a["a"]({x:y[0],y:y[1],rotation:c.rotation,silent:x.isLabelSilent(t),style:Object(u["a"])(p,{text:o,font:w,overflow:"truncate",width:M,ellipsis:S,fill:p.getTextColor()||t.get(["axisLine","lineStyle","color"]),align:p.get("align")||c.textAlign,verticalAlign:p.get("verticalAlign")||c.textVerticalAlign}),z2:1});if(s["setTooltipConfig"]({el:T,componentModel:t,itemName:o}),T.__fullText=o,T.anid="name",t.get("triggerEvent")){var j=x.makeAxisEventDataBase(t);j.targetType="axisName",j.name=o,Object(l["a"])(T).eventData=j}i.add(T),T.updateTransform(),n.add(T),T.decomposeTransform()}}};function k(e,t,n,r){var i,o,a=Object(f["o"])(n-e),s=r[0]>r[1],l="start"===t&&!s||"start"!==t&&s;return Object(f["h"])(a-_/2)?(o=l?"bottom":"top",i="center"):Object(f["h"])(a-1.5*_)?(o=l?"top":"bottom",i="center"):(o="middle",i=a<1.5*_&&a>_/2?l?"left":"right":l?"right":"left"),{rotation:a,textAlign:i,textVerticalAlign:o}}function O(e,t,n){if(!Object(g["i"])(e.axis)){var r=e.get(["axisLabel","showMinLabel"]),i=e.get(["axisLabel","showMaxLabel"]);t=t||[],n=n||[];var o=t[0],a=t[1],s=t[t.length-1],l=t[t.length-2],u=n[0],c=n[1],f=n[n.length-1],d=n[n.length-2];!1===r?(S(o),S(u)):M(o,a)&&(r?(S(a),S(c)):(S(o),S(u))),!1===i?(S(s),S(f)):M(l,s)&&(i?(S(l),S(d)):(S(s),S(f)))}}function S(e){e&&(e.ignore=!0)}function M(e,t){var n=e&&e.getBoundingRect().clone(),r=t&&t.getBoundingRect().clone();if(n&&r){var i=h["c"]([]);return h["f"](i,i,-e.rotation),n.applyTransform(h["e"]([],i,e.getLocalTransform())),r.applyTransform(h["e"]([],i,t.getLocalTransform())),n.intersect(r)}}function C(e){return"middle"===e||"center"===e}function T(e,t,n,r,i){for(var a=[],s=[],l=[],u=0;ut&&(t=e[n]);return isFinite(t)?t:NaN},min:function(e){for(var t=1/0,n=0;n10&&"cartesian2d"===s.type&&a){var u=s.getBaseAxis(),c=s.getOtherAxis(u),f=u.getExtent(),d=n.getDevicePixelRatio(),h=Math.abs(f[1]-f[0])*(d||1),p=Math.round(l/h);if(p>1){"lttb"===a&&e.setData(o.lttbDownSample(o.mapDimension(c.dim),1/p));var g=void 0;"string"===typeof a?g=r[a]:"function"===typeof a&&(g=a),g&&e.setData(o.downSample(o.mapDimension(c.dim),1/p,g,i))}}}}}},"/f6Q":function(e,t,n){"use strict";var r=n("AGgm").isSpace;e.exports=function(e,t,n,i){var o,a,s,l,u=e.bMarks[t]+e.tShift[t],c=e.eMarks[t];if(e.sCount[t]-e.blkIndent>=4)return!1;if(o=e.src.charCodeAt(u++),42!==o&&45!==o&&95!==o)return!1;a=1;while(u=0},t.prototype.getOrient=function(){return"vertical"===this.get("orient")?{index:1,name:"vertical"}:{index:0,name:"horizontal"}},t.type="legend.plain",t.dependencies=["series"],t.defaultOption={zlevel:0,z:4,show:!0,orient:"horizontal",left:"center",top:0,align:"auto",backgroundColor:"rgba(0,0,0,0)",borderColor:"#ccc",borderRadius:0,borderWidth:0,padding:5,itemGap:10,itemWidth:25,itemHeight:14,symbolRotate:"inherit",symbolKeepAspect:!0,inactiveColor:"#ccc",inactiveBorderColor:"#ccc",inactiveBorderWidth:"auto",itemStyle:{color:"inherit",opacity:"inherit",borderColor:"inherit",borderWidth:"auto",borderCap:"inherit",borderJoin:"inherit",borderDashOffset:"inherit",borderMiterLimit:"inherit"},lineStyle:{width:"auto",color:"inherit",inactiveColor:"#ccc",inactiveWidth:2,opacity:"inherit",type:"inherit",cap:"inherit",join:"inherit",dashOffset:"inherit",miterLimit:"inherit"},textStyle:{color:"#333"},selectedMode:!0,selector:!1,selectorLabel:{show:!0,borderRadius:10,padding:[3,5,3,5],fontSize:12,fontFamily:"sans-serif",color:"#666",borderWidth:1,borderColor:"#666"},emphasis:{selectorLabel:{show:!0,color:"#eee",backgroundColor:"#666"}},selectorPosition:"auto",selectorItemGap:7,selectorButtonGap:10,tooltip:{show:!1}},t}(l["a"]),f=c,d=n("Qe9p"),h=n("LcXL"),p=n("dqUG"),g=n("x6Kt"),m=n("IwbS"),v=n("fWwa"),y=n("eDfh"),b=n("eRkO"),_=n("+TT/"),x=n("sS/r"),w=n("oVpE"),k=o["i"],O=o["k"],S=h["a"],M=function(e){function t(){var n=null!==e&&e.apply(this,arguments)||this;return n.type=t.type,n.newlineDisabled=!1,n}return Object(i["a"])(t,e),t.prototype.init=function(){this.group.add(this._contentGroup=new S),this.group.add(this._selectorGroup=new S),this._isFirstRender=!0},t.prototype.getContentGroup=function(){return this._contentGroup},t.prototype.getSelectorGroup=function(){return this._selectorGroup},t.prototype.render=function(e,t,n){var r=this._isFirstRender;if(this._isFirstRender=!1,this.resetInner(),e.get("show",!0)){var i=e.get("align"),a=e.get("orient");i&&"auto"!==i||(i="right"===e.get("left")&&"vertical"===a?"right":"left");var s=e.get("selector",!0),l=e.get("selectorPosition",!0);!s||l&&"auto"!==l||(l="horizontal"===a?"end":"start"),this.renderInner(i,e,t,n,s,a,l);var u=e.getBoxLayoutParams(),c={width:n.getWidth(),height:n.getHeight()},f=e.get("padding"),d=_["d"](u,c,f),h=this.layoutInner(e,i,d,r,s,l),p=_["d"](o["j"]({width:h.width,height:h.height},u),c,f);this.group.x=p.x-h.x,this.group.y=p.y-h.y,this.group.markRedraw(),this.group.add(this._backgroundEl=Object(b["b"])(h,e))}},t.prototype.resetInner=function(){this.getContentGroup().removeAll(),this._backgroundEl&&this.group.remove(this._backgroundEl),this.getSelectorGroup().removeAll()},t.prototype.renderInner=function(e,t,n,r,i,a,s){var l=this.getContentGroup(),u=o["g"](),c=t.get("selectedMode"),f=[];n.eachRawSeries(function(e){!e.get("legendHoverLink")&&f.push(e.id)}),O(t.getData(),function(i,o){var a=i.get("name");if(!this.newlineDisabled&&(""===a||"\n"===a)){var s=new S;return s.newline=!0,void l.add(s)}var h=n.getSeriesByName(a)[0];if(!u.get(a)){if(h){var p=h.getData(),g=p.getVisual("legendLineStyle")||{},m=p.getVisual("legendIcon"),v=p.getVisual("style"),y=this._createItem(h,a,o,i,t,e,g,v,m,c);y.on("click",k(j,a,null,r,f)).on("mouseover",k(D,h.name,null,r,f)).on("mouseout",k(A,h.name,null,r,f)),u.set(a,!0)}else n.eachRawSeries(function(n){if(!u.get(a)&&n.legendVisualProvider){var s=n.legendVisualProvider;if(!s.containName(a))return;var l=s.indexOfName(a),h=s.getItemVisual(l,"style"),p=s.getItemVisual(l,"legendIcon"),g=Object(d["d"])(h.fill);g&&0===g[3]&&(g[3]=.2,h.fill=Object(d["e"])(g,"rgba"));var m=this._createItem(n,a,o,i,t,e,{},h,p,c);m.on("click",k(j,null,a,r,f)).on("mouseover",k(D,null,a,r,f)).on("mouseout",k(A,null,a,r,f)),u.set(a,!0)}},this);0}},this),i&&this._createSelector(i,t,r,a,s)},t.prototype._createSelector=function(e,t,n,r,i){var o=this.getSelectorGroup();O(e,function(e){var r=e.type,i=new p["a"]({style:{x:0,y:0,align:"center",verticalAlign:"middle"},onclick:function(){n.dispatchAction({type:"all"===r?"legendAllSelect":"legendInverseSelect"})}});o.add(i);var a=t.getModel("selectorLabel"),s=t.getModel(["emphasis","selectorLabel"]);Object(y["e"])(i,{normal:a,emphasis:s},{defaultText:e.title}),Object(v["m"])(i)})},t.prototype._createItem=function(e,t,n,r,i,o,a,s,l,u){var c=e.visualDrawType,f=i.get("itemWidth"),d=i.get("itemHeight"),h=i.isSelected(t),b=r.get("symbolRotate"),_=r.get("symbolKeepAspect"),x=r.get("icon");l=x||l||"roundRect";var w=C(l,r,a,s,c,h),k=new S,O=r.getModel("textStyle");if("function"!==typeof e.getLegendIcon||x&&"inherit"!==x){var M="inherit"===x&&e.getData().getVisual("symbol")?"inherit"===b?e.getData().getVisual("symbolRotate"):b:0;k.add(T({itemWidth:f,itemHeight:d,icon:l,iconRotate:M,itemStyle:w.itemStyle,lineStyle:w.lineStyle,symbolKeepAspect:_}))}else k.add(e.getLegendIcon({itemWidth:f,itemHeight:d,icon:l,iconRotate:b,itemStyle:w.itemStyle,lineStyle:w.lineStyle,symbolKeepAspect:_}));var j="left"===o?f+5:-5,I=o,D=i.get("formatter"),A=t;"string"===typeof D&&D?A=D.replace("{name}",null!=t?t:""):"function"===typeof D&&(A=D(t));var E=r.get("inactiveColor");k.add(new p["a"]({style:Object(y["a"])(O,{text:A,x:j,y:d/2,fill:h?O.getTextColor():E,align:I,verticalAlign:"middle"})}));var P=new g["a"]({shape:k.getBoundingRect(),invisible:!0}),L=r.getModel("tooltip");return L.get("show")&&m["setTooltipConfig"]({el:P,componentModel:i,itemName:t,itemTooltipOption:L.option}),k.add(P),k.eachChild(function(e){e.silent=!0}),P.silent=!u,this.getContentGroup().add(k),Object(v["m"])(k),k.__legendDataIndex=n,k},t.prototype.layoutInner=function(e,t,n,r,i,o){var a=this.getContentGroup(),s=this.getSelectorGroup();_["a"](e.get("orient"),a,e.get("itemGap"),n.width,n.height);var l=a.getBoundingRect(),u=[-l.x,-l.y];if(s.markRedraw(),a.markRedraw(),i){_["a"]("horizontal",s,e.get("selectorItemGap",!0));var c=s.getBoundingRect(),f=[-c.x,-c.y],d=e.get("selectorButtonGap",!0),h=e.getOrient().index,p=0===h?"width":"height",g=0===h?"height":"width",m=0===h?"y":"x";"end"===o?f[h]+=l[p]+d:u[h]+=c[p]+d,f[1-h]+=l[g]/2-c[g]/2,s.x=f[0],s.y=f[1],a.x=u[0],a.y=u[1];var v={x:0,y:0};return v[p]=l[p]+d+c[p],v[g]=Math.max(l[g],c[g]),v[m]=Math.min(0,c[m]+f[1-h]),v}return a.x=u[0],a.y=u[1],this.group.getBoundingRect()},t.prototype.remove=function(){this.getContentGroup().removeAll(),this._isFirstRender=!0},t.type="legend.plain",t}(x["a"]);function C(e,t,n,r,i,o){function a(e,t){"auto"===e.lineWidth&&(e.lineWidth=t.lineWidth>0?2:0),O(e,function(n,r){"inherit"===e[r]&&(e[r]=t[r])})}var s=t.getModel("itemStyle"),l=s.getItemStyle(),u=0===e.lastIndexOf("empty",0)?"fill":"stroke";l.decal=r.decal,"inherit"===l.fill&&(l.fill=r[i]),"inherit"===l.stroke&&(l.stroke=r[u]),"inherit"===l.opacity&&(l.opacity=("fill"===i?r:n).opacity),a(l,r);var c=t.getModel("lineStyle"),f=c.getLineStyle();if(a(f,n),"auto"===l.fill&&(l.fill=r.fill),"auto"===l.stroke&&(l.stroke=r.fill),"auto"===f.stroke&&(f.stroke=r.fill),!o){var d=t.get("inactiveBorderWidth"),h=l[u];l.lineWidth="auto"===d?r.lineWidth>0&&h?2:0:l.lineWidth,l.fill=t.get("inactiveColor"),l.stroke=t.get("inactiveBorderColor"),f.stroke=c.get("inactiveColor"),f.lineWidth=c.get("inactiveWidth")}return{itemStyle:l,lineStyle:f}}function T(e){var t=e.icon||"roundRect",n=Object(w["a"])(t,0,0,e.itemWidth,e.itemHeight,e.itemStyle.fill,e.symbolKeepAspect);return n.setStyle(e.itemStyle),n.rotation=(e.iconRotate||0)*Math.PI/180,n.setOrigin([e.itemWidth/2,e.itemHeight/2]),t.indexOf("empty")>-1&&(n.style.stroke=n.style.fill,n.style.fill="#fff",n.style.lineWidth=2),n}function j(e,t,n,r){A(e,t,n,r),n.dispatchAction({type:"legendToggleSelect",name:null!=e?e:t}),D(e,t,n,r)}function I(e){var t,n=e.getZr().storage.getDisplayList(),r=0,i=n.length;while(rn[i],m=[-d.x,-d.y];t||(m[r]=u[l]);var v=[0,0],y=[-h.x,-h.y],b=o["M"](e.get("pageButtonGap",!0),e.get("itemGap",!0));if(p){var x=e.get("pageButtonPosition",!0);"end"===x?y[r]+=n[i]-h[i]:v[r]+=h[i]+b}y[1-r]+=d[a]/2-h[a]/2,u.setPosition(m),c.setPosition(v),f.setPosition(y);var w={x:0,y:0};if(w[i]=p?n[i]:d[i],w[a]=Math.max(d[a],h[a]),w[s]=Math.min(0,h[s]+y[1-r]),c.__rectSize=n[i],p){var k={x:0,y:0};k[i]=Math.max(n[i]-h[i]-b,0),k[a]=w[a],c.setClipPath(new g["a"]({shape:k})),c.__rectSize=k[i]}else f.eachChild(function(e){e.attr({invisible:!0,silent:!0})});var O=this._getPageInfo(e);return null!=O.pageIndex&&Y["h"](u,{x:O.contentPosition[0],y:O.contentPosition[1]},p?e:null),this._updatePageInfoView(e,O),w},t.prototype._pageGo=function(e,t,n){var r=this._getPageInfo(t)[e];null!=r&&n.dispatchAction({type:"legendScroll",scrollDataIndex:r,legendId:t.id})},t.prototype._updatePageInfoView=function(e,t){var n=this._controllerGroup;o["k"](["pagePrev","pageNext"],function(r){var i=r+"DataIndex",o=null!=t[i],a=n.childOfName(r);a&&(a.setStyle("fill",o?e.get("pageIconColor",!0):e.get("pageIconInactiveColor",!0)),a.cursor=o?"pointer":"default")});var r=n.childOfName("pageText"),i=e.get("pageFormatter"),a=t.pageIndex,s=null!=a?a+1:0,l=t.pageCount;r&&i&&r.setStyle("text",o["A"](i)?i.replace("{current}",null==s?"":s+"").replace("{total}",null==l?"":l+""):i({current:s,total:l}))},t.prototype._getPageInfo=function(e){var t=e.get("scrollDataIndex",!0),n=this.getContentGroup(),r=this._containerGroup.__rectSize,i=e.getOrient().index,o=U[i],a=W[i],s=this._findTargetItemIndex(t),l=n.children(),u=l[s],c=l.length,f=c?1:0,d={contentPosition:[n.x,n.y],pageCount:f,pageIndex:f-1,pagePrevDataIndex:null,pageNextDataIndex:null};if(!u)return d;var h=y(u);d.contentPosition[i]=-h.s;for(var p=s+1,g=h,m=h,v=null;p<=c;++p)v=y(l[p]),(!v&&m.e>g.s+r||v&&!b(v,g.s))&&(g=m.i>g.i?m:v,g&&(null==d.pageNextDataIndex&&(d.pageNextDataIndex=g.i),++d.pageCount)),m=v;for(p=s-1,g=h,m=h,v=null;p>=-1;--p)v=y(l[p]),v&&b(m,v.s)||!(g.i=t&&e.s<=t+r}},t.prototype._findTargetItemIndex=function(e){if(!this._showController)return 0;var t,n,r=this.getContentGroup();return r.eachChild(function(r,i){var o=r.__legendDataIndex;null==n&&null!=o&&(n=i),o===e&&(t=i)}),null!=t?t:n},t.type="legend.scroll",t}(E),q=H;function Z(e){e.registerAction("legendScroll","legendscroll",function(e,t){var n=e.scrollDataIndex;null!=n&&t.eachComponent({mainType:"legend",subType:"scroll",query:e},function(e){e.setScrollDataIndex(n)})})}function K(e){Object(r["a"])(R),e.registerComponentModel(V),e.registerComponentView(q),Z(e)}function X(e){Object(r["a"])(R),Object(r["a"])(K)}n.d(t,"a",function(){return X})},"03A+":function(e,t,n){var r=n("JTzB"),i=n("ExA7"),o=Object.prototype,a=o.hasOwnProperty,s=o.propertyIsEnumerable,l=r(function(){return arguments}())?r:function(e){return i(e)&&a.call(e,"callee")&&!s.call(e,"callee")};e.exports=l},"0Cz8":function(e,t,n){var r=n("Xi7e"),i=n("ebwN"),o=n("e4Nc"),a=200;function s(e,t){var n=this.__data__;if(n instanceof r){var s=n.__data__;if(!i||s.length65535?l:u}function p(){return[1/0,-1/0]}function g(e){var t=e.constructor;return t===Array?e.slice():new t(e)}function m(e,t,n,r,i){var o=d[n||"float"];if(i){var a=e[t],s=a&&a.length;if(s!==r){for(var l=new o(r),u=0;uv[1]&&(v[1]=g)}return this._rawCount=this._count=l,{start:s,end:l}},e.prototype._initDataFromProvider=function(e,t,n){for(var r=this._provider,o=this._chunks,a=this._dimensions,s=a.length,l=this._rawExtent,u=Object(i["F"])(a,function(e){return e.property}),c=0;cb[1]&&(b[1]=y)}}!r.persistent&&r.clean&&r.clean(),this._rawCount=this._count=t,this._extent=[]},e.prototype.count=function(){return this._count},e.prototype.get=function(e,t){if(!(t>=0&&t=0&&t=this._rawCount||e<0)return-1;if(!this._indices)return e;var t=this._indices,n=t[e];if(null!=n&&ne))return o;i=o-1}}return-1},e.prototype.indicesOfNearest=function(e,t,n){var r=this._chunks,i=r[e],o=[];if(!i)return o;null==n&&(n=1/0);for(var a=1/0,s=-1,l=0,u=0,c=this.count();u=0&&s<0)&&(a=h,s=d,l=0),d===s&&(o[l++]=u))}return o.length=l,o},e.prototype.getIndices=function(){var e,t=this._indices;if(t){var n=t.constructor,r=this._count;if(n===Array){e=new n(r);for(var i=0;i=f&&b<=d||isNaN(b))&&(l[u++]=m),m++}g=!0}else if(2===o){v=p[r[0]];var _=p[r[1]],x=e[r[1]][0],w=e[r[1]][1];for(y=0;y=f&&b<=d||isNaN(b))&&(k>=x&&k<=w||isNaN(k))&&(l[u++]=m),m++}g=!0}}if(!g)if(1===o)for(y=0;y=f&&b<=d||isNaN(b))&&(l[u++]=O)}else for(y=0;ye[C][1])&&(S=!1)}S&&(l[u++]=t.getRawIndex(y))}return uv[1]&&(v[1]=m)}}}},e.prototype.lttbDownSample=function(e,t){var n,r,i,o=this.clone([e],!0),a=o._chunks,s=a[e],l=this.count(),u=0,c=Math.floor(1/t),f=this.getRawIndex(0),d=new(h(this._rawCount))(Math.ceil(l/c)+2);d[u++]=f;for(var p=1;pn&&(n=r,i=_))}d[u++]=i,f=i}return d[u++]=this.getRawIndex(l-1),o._count=u,o._indices=d,o.getRawIndex=this._getRawIdx,o},e.prototype.downSample=function(e,t,n,r){for(var i=this.clone([e],!0),o=i._chunks,a=[],s=Math.floor(1/t),l=o[e],u=this.count(),c=i._rawExtent[e]=p(),f=new(h(this._rawCount))(Math.ceil(u/s)),d=0,g=0;gu-g&&(s=u-g,a.length=s);for(var m=0;mc[1]&&(c[1]=y),f[d++]=b}return i._count=d,i._indices=f,i._updateGetRawIdx(),i},e.prototype.each=function(e,t){if(this._count)for(var n=e.length,r=this._chunks,i=0,o=this.count();is&&(s=c)}return r=[a,s],this._extent[e]=r,r},e.prototype.getRawDataItem=function(e){var t=this.getRawIndex(e);if(this._provider.persistent)return this._provider.getItem(t);for(var n=[],r=this._chunks,i=0;i=0?this._indices[e]:-1},e.prototype._updateGetRawIdx=function(){this.getRawIndex=this._indices?this._getRawIdx:this._getRawIdxIdentity},e.internalField=function(){function e(e,t,n,r){return Object(o["b"])(e[r],this._dimensions[r])}r={arrayRows:e,objectRows:function(e,t,n,r){return Object(o["b"])(e[t],this._dimensions[r])},keyedColumns:e,original:function(e,t,n,r){var i=e&&(null==e.value?e:e.value);return Object(o["b"])(i instanceof Array?i[r]:i,this._dimensions[r])},typedArray:function(e,t,n,r){return e[r]}}}(),e}();t["b"]=v},"1M3H":function(e,t,n){"use strict";e.exports=n("CK61")},"1nBO":function(e,t,n){"use strict";var r=n("AGgm").normalizeReference,i=n("AGgm").isSpace;e.exports=function(e,t,n,o){var a,s,l,u,c,f,d,h,p,g,m,v,y,b,_,x,w=0,k=e.bMarks[t]+e.tShift[t],O=e.eMarks[t],S=t+1;if(e.sCount[t]-e.blkIndent>=4)return!1;if(91!==e.src.charCodeAt(k))return!1;while(++k3)&&!(e.sCount[S]<0)){for(b=!1,f=0,d=_.length;f0){var h=d.duration,p=d.delay,g=d.easing,m={duration:h,delay:p||0,easing:g,done:s,force:!!s||!!l,setToFinal:!f,scope:e,during:l};c?t.animateFrom(n,m):t.animateTo(n,m)}else t.stopAnimation(),!c&&t.attr(n),l&&l(1),s&&s()}function l(e,t,n,r,i,o){s("update",e,t,n,r,i,o)}function u(e,t,n,r,i,o){s("init",e,t,n,r,i,o)}function c(e){if(!e.__zr)return!0;for(var t=0;t=4)return!1;if(62!==e.src.charCodeAt(M++))return!1;if(i)return!0;l=h=e.sCount[t]+1,32===e.src.charCodeAt(M)?(M++,l++,h++,o=!1,_=!0):9===e.src.charCodeAt(M)?(_=!0,(e.bsCount[t]+h)%4===3?(M++,l++,h++,o=!1):o=!0):_=!1,p=[e.bMarks[t]],e.bMarks[t]=M;while(M=C,y=[e.sCount[t]],e.sCount[t]=h-l,b=[e.tShift[t]],e.tShift[t]=M-e.bMarks[t],w=e.md.block.ruler.getRules("blockquote"),v=e.parentType,e.parentType="blockquote",d=t+1;d=C)break;if(62!==e.src.charCodeAt(M++)||O){if(c)break;for(x=!1,s=0,u=w.length;s=C,g.push(e.bsCount[d]),e.bsCount[d]=e.sCount[d]+1+(_?1:0),y.push(e.sCount[d]),e.sCount[d]=h-l,b.push(e.tShift[d]),e.tShift[d]=M-e.bMarks[d]}}for(m=e.blkIndent,e.blkIndent=0,k=e.push("blockquote_open","blockquote",1),k.markup=">",k.map=f=[t,0],e.md.block.tokenize(e,t,d),k=e.push("blockquote_close","blockquote",-1),k.markup=">",e.lineMax=S,e.parentType=v,f[1]=e.line,s=0;s-1?l:c}():c;function p(e,t){e=e.toUpperCase(),d[e]=new r["a"](t),f[e]=t}function g(e){if(Object(s["A"])(e)){var t=f[e.toUpperCase()]||{};return e===l||e===u?Object(s["d"])(t):Object(s["G"])(Object(s["d"])(t),Object(s["d"])(f[c]),!1)}return Object(s["G"])(Object(s["d"])(e),Object(s["d"])(f[c]),!1)}function m(e){return d[e]}function v(){return d[c]}p(u,o),p(l,a)},"77Zs":function(e,t,n){var r=n("Xi7e");function i(){this.__data__=new r,this.size=0}e.exports=i},"7G+c":function(e,t,n){"use strict";n.d(t,"e",function(){return l}),n.d(t,"b",function(){return u}),n.d(t,"c",function(){return c}),n.d(t,"a",function(){return f}),n.d(t,"d",function(){return d}),n.d(t,"f",function(){return v});var r=n("bYtY"),i=n("B/3G"),o=n("4NO4"),a=n("D5nY"),s=function(){function e(e){this.data=e.data||(e.sourceFormat===i["d"]?{}:[]),this.sourceFormat=e.sourceFormat||i["h"],this.seriesLayoutBy=e.seriesLayoutBy||i["a"],this.startIndex=e.startIndex||0,this.dimensionsDetectedCount=e.dimensionsDetectedCount,this.metaRawOption=e.metaRawOption;var t=this.dimensionsDefine=e.dimensionsDefine;if(t)for(var n=0;n1?"."+t[1]:"")}function s(e,t){return e=(e||"").toLowerCase().replace(/-(.)/g,function(e,t){return t.toUpperCase()}),t&&e&&(e=e.charAt(0).toUpperCase()+e.slice(1)),e}var l=r["J"],u=/([&<>"'])/g,c={"&":"&","<":"<",">":">",'"':""","'":"'"};function f(e){return null==e?"":(e+"").replace(u,function(e,t){return c[t]})}function d(e,t,n){var s="{yyyy}-{MM}-{dd} {hh}:{mm}:{ss}";function l(e){return e&&r["Q"](e)?e:"-"}function u(e){return!(null==e||isNaN(e)||!isFinite(e))}var c="time"===t,f=e instanceof Date;if(c||f){var d=c?Object(i["l"])(e):e;if(!isNaN(+d))return Object(o["h"])(d,s,n);if(f)return"-"}if("ordinal"===t)return r["B"](e)?l(e):r["y"](e)&&u(e)?e+"":"-";var h=Object(i["k"])(e);return u(h)?a(h):r["B"](e)?l(e):"-"}var h=["a","b","c","d","e","f","g"],p=function(e,t){return"{"+e+(null==t?"":t)+"}"};function g(e,t,n){r["s"](t)||(t=[t]);var i=t.length;if(!i)return"";for(var o=t[0].$vars||[],a=0;a':'';var s=n.markerId||"markerX";return{renderMode:a,content:"{"+s+"|} ",style:"subItem"===o?{width:4,height:4,borderRadius:2,backgroundColor:i}:{width:10,height:10,borderRadius:5,backgroundColor:i}}}function v(e,t){return t=t||"transparent",r["A"](e)?e:r["z"](e)&&e.colorStops&&(e.colorStops[0]||{}).color||t}function y(e,t){if("_blank"===t||"blank"===t){var n=window.open();n.opener=null,n.location.href=e}else window.open(e,t)}},"7bO/":function(e,t,n){"use strict";var r={};n.r(r),n.d(r,"take",function(){return Ce}),n.d(r,"takem",function(){return Te}),n.d(r,"put",function(){return je}),n.d(r,"all",function(){return Ie}),n.d(r,"race",function(){return De}),n.d(r,"call",function(){return Ee}),n.d(r,"apply",function(){return Pe}),n.d(r,"cps",function(){return Le}),n.d(r,"fork",function(){return Ne}),n.d(r,"spawn",function(){return Re}),n.d(r,"join",function(){return ze}),n.d(r,"cancel",function(){return Fe}),n.d(r,"select",function(){return Be}),n.d(r,"actionChannel",function(){return Ve}),n.d(r,"cancelled",function(){return Ye}),n.d(r,"flush",function(){return Ge}),n.d(r,"getContext",function(){return Ue}),n.d(r,"setContext",function(){return We}),n.d(r,"takeEvery",function(){return yt}),n.d(r,"takeLatest",function(){return bt}),n.d(r,"throttle",function(){return _t});var i=Object.assign||function(e){for(var t=1;t=0&&e.splice(n,1)}var k={from:function(e){var t=Array(e.length);for(var n in e)b(e,n)&&(t[n]=e[n]);return t}};function O(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=i({},e),n=new Promise(function(e,n){t.resolve=e,t.reject=n});return t.promise=n,t}function S(e){var t=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],n=void 0,r=new Promise(function(r){n=setTimeout(function(){return r(t)},e)});return r[c]=function(){return clearTimeout(n)},r}function M(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0;return function(){return++e}}var C=M(),T=function(e){throw e},j=function(e){return{value:e,done:!0}};function I(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:T,n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"",r=arguments[3],i={name:n,next:e,throw:t,return:j};return r&&(i[l]=!0),"undefined"!==typeof Symbol&&(i[Symbol.iterator]=function(){return i}),i}function D(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"";"undefined"===typeof window?console.log("redux-saga "+e+": "+t+"\n"+(n&&n.stack||n)):console[e](t,n)}function A(e,t){return function(){return e.apply(void 0,arguments)}}var E=function(e,t){return e+" has been deprecated in favor of "+t+", please update your code"},P=function(e){return new Error("\n redux-saga: Error checking hooks detected an inconsistent state. This is likely a bug\n in redux-saga code and not yours. Thanks for reporting this in the project's github repo.\n Error: "+e+"\n")},L=function(e,t){return(e?e+".":"")+"setContext(props): argument "+t+" is not a plain object"},N=function(e){return function(t){return e(Object.defineProperty(t,f,{value:!0}))}},R="Channel's Buffer overflow!",z=1,F=2,B=3,V=4,Y={isEmpty:p,put:g,take:g};function G(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:10,t=arguments[1],n=new Array(e),r=0,i=0,o=0,a=function(t){n[i]=t,i=(i+1)%e,r++},s=function(){if(0!=r){var t=n[o];return n[o]=null,r--,o=(o+1)%e,t}},l=function(){var e=[];while(r)e.push(s());return e};return{isEmpty:function(){return 0==r},put:function(s){if(r0&&void 0!==arguments[0]?arguments[0]:U.fixed(),t=!1,n=[];function r(){if(t&&n.length)throw P("Cannot have a closed channel with pending takers");if(n.length&&!e.isEmpty())throw P("Cannot have pending takers with non empty buffer")}function i(i){if(r(),v(i,_.notUndef,ie),!t){if(!n.length)return e.put(i);for(var o=0;o1&&void 0!==arguments[1]?arguments[1]:U.none(),n=arguments[2];arguments.length>2&&v(n,_.func,"Invalid match function passed to eventChannel");var r=oe(t),i=function(){r.__closed__||(o&&o(),r.close())},o=e(function(e){te(e)?i():n&&!n(e)||r.put(e)});if(r.__closed__&&o(),!_.func(o))throw new Error("in eventChannel: subscribe should return a function to unsubscribe");return{take:r.take,flush:r.flush,close:i}}function se(e){var t=ae(function(t){return e(function(e){e[f]?t(e):Z(function(){return t(e)})})});return $({},t,{take:function(e,n){arguments.length>1&&(v(n,_.func,"channel.take's matcher argument must be a function"),e[u]=n),t.take(e)}})}var le=a("IO"),ue="TAKE",ce="PUT",fe="ALL",de="RACE",he="CALL",pe="CPS",ge="FORK",me="JOIN",ve="CANCEL",ye="SELECT",be="ACTION_CHANNEL",_e="CANCELLED",xe="FLUSH",we="GET_CONTEXT",ke="SET_CONTEXT",Oe="\n(HINT: if you are getting this errors in tests, consider using createMockTask from redux-saga/utils)",Se=function(e,t){var n;return n={},n[le]=!0,n[e]=t,n},Me=function(e){return v(qe.fork(e),_.object,"detach(eff): argument must be a fork effect"),e[ge].detached=!0,e};function Ce(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"*";if(arguments.length&&v(arguments[0],_.notUndef,"take(patternOrChannel): patternOrChannel is undefined"),_.pattern(e))return Se(ue,{pattern:e});if(_.channel(e))return Se(ue,{channel:e});throw new Error("take(patternOrChannel): argument "+String(e)+" is not valid channel or a valid pattern")}Ce.maybe=function(){var e=Ce.apply(void 0,arguments);return e[ue].maybe=!0,e};var Te=A(Ce.maybe,E("takem","take.maybe"));function je(e,t){return arguments.length>1?(v(e,_.notUndef,"put(channel, action): argument channel is undefined"),v(e,_.channel,"put(channel, action): argument "+e+" is not a valid channel"),v(t,_.notUndef,"put(channel, action): argument action is undefined")):(v(e,_.notUndef,"put(action): argument action is undefined"),t=e,e=null),Se(ce,{channel:e,action:t})}function Ie(e){return Se(fe,e)}function De(e){return Se(de,e)}function Ae(e,t,n){v(t,_.notUndef,e+": argument fn is undefined");var r=null;if(_.array(t)){var i=t;r=i[0],t=i[1]}else if(t.fn){var o=t;r=o.context,t=o.fn}return r&&_.string(t)&&_.func(r[t])&&(t=r[t]),v(t,_.func,e+": argument "+t+" is not a function"),{context:r,fn:t,args:n}}function Ee(e){for(var t=arguments.length,n=Array(t>1?t-1:0),r=1;r2&&void 0!==arguments[2]?arguments[2]:[];return Se(he,Ae("apply",{context:e,fn:t},n))}function Le(e){for(var t=arguments.length,n=Array(t>1?t-1:0),r=1;r1?t-1:0),r=1;r1?t-1:0),r=1;r1)return Ie(t.map(function(e){return ze(e)}));var r=t[0];return v(r,_.notUndef,"join(task): argument task is undefined"),v(r,_.task,"join(task): argument "+r+" is not a valid Task object "+Oe),Se(me,r)}function Fe(){for(var e=arguments.length,t=Array(e),n=0;n1)return Ie(t.map(function(e){return Fe(e)}));var r=t[0];return 1===t.length&&(v(r,_.notUndef,"cancel(task): argument task is undefined"),v(r,_.task,"cancel(task): argument "+r+" is not a valid Task object "+Oe)),Se(ve,r||d)}function Be(e){for(var t=arguments.length,n=Array(t>1?t-1:0),r=1;r1&&(v(t,_.notUndef,"actionChannel(pattern, buffer): argument buffer is undefined"),v(t,_.buffer,"actionChannel(pattern, buffer): argument "+t+" is not a valid buffer")),Se(be,{pattern:e,buffer:t})}function Ye(){return Se(_e,{})}function Ge(e){return v(e,_.channel,"flush(channel): argument "+e+" is not valid channel"),Se(xe,e)}function Ue(e){return v(e,_.string,"getContext(prop): argument "+e+" is not a string"),Se(we,e)}function We(e){return v(e,_.object,L(null,e)),Se(ke,e)}je.resolve=function(){var e=je.apply(void 0,arguments);return e[ce].resolve=!0,e},je.sync=A(je.resolve,E("put.sync","put.resolve"));var He=function(e){return function(t){return t&&t[le]&&t[e]}},qe={take:He(ue),put:He(ce),all:He(fe),race:He(de),call:He(he),cps:He(pe),fork:He(ge),join:He(me),cancel:He(ve),select:He(ye),actionChannel:He(be),cancelled:He(_e),flush:He(xe),getContext:He(we),setContext:He(ke)},Ze=Object.assign||function(e){for(var t=1;t1&&void 0!==arguments[1]?arguments[1]:function(){return g},n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:g,r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:g,i=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{},o=arguments.length>5&&void 0!==arguments[5]?arguments[5]:{},a=arguments.length>6&&void 0!==arguments[6]?arguments[6]:0,l=arguments.length>7&&void 0!==arguments[7]?arguments[7]:"anonymous",u=arguments[8];v(e,_.iterator,Qe);var f="[...effects]",h=A(ee,E(f,"all("+f+")")),p=o.sagaMonitor,m=o.logger,y=o.onError,b=m||D,S=function(e){var t=e.sagaStack;!t&&e.stack&&(t=-1!==e.stack.split("\n")[0].indexOf(e.message)?e.stack:"Error: "+e.message+"\n"+e.stack),b("error","uncaught at "+l,t||e.message||e)},M=se(t),T=Object.create(i);z.cancel=g;var j=fe(a,l,e,u),I={name:l,cancel:N,isRunning:!0},P=nt(l,I,F);function N(){I.isRunning&&!I.isCancelled&&(I.isCancelled=!0,z(Je))}function R(){e._isRunning&&!e._isCancelled&&(e._isCancelled=!0,P.cancelAll(),F(Je))}return u&&(u.cancel=R),e._isRunning=!0,z(),j;function z(t,n){if(!I.isRunning)throw new Error("Trying to resume an already finished generator");try{var r=void 0;n?r=e.throw(t):t===Je?(I.isCancelled=!0,z.cancel(),r=_.func(e.return)?e.return(Je):{done:!0,value:Je}):r=t===$e?_.func(e.return)?e.return():{done:!0}:e.next(t),r.done?(I.isMainRunning=!1,I.cont&&I.cont(r.value)):B(r.value,a,"",z)}catch(e){I.isCancelled&&S(e),I.isMainRunning=!1,I.cont(e,!0)}}function F(t,n){e._isRunning=!1,M.close(),n?(t instanceof Error&&Object.defineProperty(t,"sagaStack",{value:"at "+l+" \n "+(t.sagaStack||t.stack),configurable:!0}),j.cont||(t instanceof Error&&y?y(t):S(t)),e._error=t,e._isAborted=!0,e._deferredEnd&&e._deferredEnd.reject(t)):(e._result=t,e._deferredEnd&&e._deferredEnd.resolve(t)),j.cont&&j.cont(t,n),j.joiners.forEach(function(e){return e.cb(t,n)}),j.joiners=null}function B(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"",r=arguments[3],i=C();p&&p.effectTriggered({effectId:i,parentEffectId:t,label:n,effect:e});var o=void 0;function a(e,t){o||(o=!0,r.cancel=g,p&&(t?p.effectRejected(i,e):p.effectResolved(i,e)),r(e,t))}a.cancel=g,r.cancel=function(){if(!o){o=!0;try{a.cancel()}catch(e){S(e)}a.cancel=g,p&&p.effectCancelled(i)}};var s=void 0;return _.promise(e)?V(e,a):_.helper(e)?X(it(e),i,a):_.iterator(e)?Y(e,i,l,a):_.array(e)?h(e,i,a):(s=qe.take(e))?G(s,a):(s=qe.put(e))?W(s,a):(s=qe.all(e))?ee(s,i,a):(s=qe.race(e))?ne(s,i,a):(s=qe.call(e))?H(s,i,a):(s=qe.cps(e))?q(s,a):(s=qe.fork(e))?X(s,i,a):(s=qe.join(e))?$(s,a):(s=qe.cancel(e))?J(s,a):(s=qe.select(e))?re(s,a):(s=qe.actionChannel(e))?ie(s,a):(s=qe.flush(e))?le(s,a):(s=qe.cancelled(e))?oe(s,a):(s=qe.getContext(e))?ue(s,a):(s=qe.setContext(e))?ce(s,a):a(e)}function V(e,t){var n=e[c];_.func(n)?t.cancel=n:_.func(e.abort)&&(t.cancel=function(){return e.abort()}),e.then(t,function(e){return t(e,!0)})}function Y(e,i,a,s){ot(e,t,n,r,T,o,i,a,s)}function G(e,t){var n=e.channel,r=e.pattern,i=e.maybe;n=n||M;var o=function(e){return e instanceof Error?t(e,!0):te(e)&&!i?t($e):t(e)};try{n.take(o,tt(r))}catch(e){return t(e,!0)}t.cancel=o.cancel}function W(e,t){var r=e.channel,i=e.action,o=e.resolve;Z(function(){var e=void 0;try{e=(r?r.put:n)(i)}catch(e){if(r||o)return t(e,!0);S(e)}if(!o||!_.promise(e))return t(e);V(e,t)})}function H(e,t,n){var r=e.context,i=e.fn,o=e.args,a=void 0;try{a=i.apply(r,o)}catch(e){return n(e,!0)}return _.promise(a)?V(a,n):_.iterator(a)?Y(a,t,i.name,n):n(a)}function q(e,t){var n=e.context,r=e.fn,i=e.args;try{var o=function(e,n){return _.undef(e)?t(n):t(e,!0)};r.apply(n,i.concat(o)),o.cancel&&(t.cancel=function(){return o.cancel()})}catch(e){return t(e,!0)}}function X(e,i,a){var s=e.context,l=e.fn,u=e.args,c=e.detached,f=rt({context:s,fn:l,args:u});try{K();var d=ot(f,t,n,r,T,o,i,l.name,c?null:g);c?a(d):f._isRunning?(P.addTask(d),a(d)):f._error?P.abort(f._error):a(d)}finally{Q()}}function $(e,t){if(e.isRunning()){var n={task:j,cb:t};t.cancel=function(){return w(e.joiners,n)},e.joiners.push(n)}else e.isAborted()?t(e.error(),!0):t(e.result())}function J(e,t){e===d&&(e=j),e.isRunning()&&e.cancel(),t()}function ee(e,t,n){var r=Object.keys(e);if(!r.length)return n(_.array(e)?[]:{});var i=0,o=void 0,a={},s={};function l(){i===r.length&&(o=!0,n(_.array(e)?k.from(Ze({},a,{length:r.length})):a))}r.forEach(function(e){var t=function(t,r){o||(r||te(t)||t===$e||t===Je?(n.cancel(),n(t,r)):(a[e]=t,i++,l()))};t.cancel=g,s[e]=t}),n.cancel=function(){o||(o=!0,r.forEach(function(e){return s[e].cancel()}))},r.forEach(function(n){return B(e[n],t,n,s[n])})}function ne(e,t,n){var r=void 0,i=Object.keys(e),o={};i.forEach(function(t){var a=function(o,a){if(!r)if(a)n.cancel(),n(o,!0);else if(!te(o)&&o!==$e&&o!==Je){var s;n.cancel(),r=!0;var l=(s={},s[t]=o,s);n(_.array(e)?[].slice.call(Ze({},l,{length:i.length})):l)}};a.cancel=g,o[t]=a}),n.cancel=function(){r||(r=!0,i.forEach(function(e){return o[e].cancel()}))},i.forEach(function(n){r||B(e[n],t,n,o[n])})}function re(e,t){var n=e.selector,i=e.args;try{var o=n.apply(void 0,[r()].concat(i));t(o)}catch(e){t(e,!0)}}function ie(e,n){var r=e.pattern,i=e.buffer,o=tt(r);o.pattern=r,n(ae(t,i||U.fixed(),o))}function oe(e,t){t(!!I.isCancelled)}function le(e,t){e.flush(t)}function ue(e,t){t(T[e])}function ce(e,t){x.assign(T,e),t()}function fe(e,t,n,r){var i,o,a;return n._deferredEnd=null,o={},o[s]=!0,o.id=e,o.name=t,i="done",a={},a[i]=a[i]||{},a[i].get=function(){if(n._deferredEnd)return n._deferredEnd.promise;var e=O();return n._deferredEnd=e,n._isRunning||(n._error?e.reject(n._error):e.resolve(n._result)),e.promise},o.cont=r,o.joiners=[],o.cancel=R,o.isRunning=function(){return n._isRunning},o.isCancelled=function(){return n._isCancelled},o.isAborted=function(){return n._isAborted},o.result=function(){return n._result},o.error=function(){return n._error},o.setContext=function(e){v(e,_.object,L("task",e)),x.assign(T,e)},Xe(o,a),o}}var at="runSaga(storeInterface, saga, ...args)",st=at+": saga argument must be a Generator function!";function lt(e,t){for(var n=arguments.length,r=Array(n>2?n-2:0),i=2;i=0||Object.prototype.hasOwnProperty.call(e,r)&&(n[r]=e[r]);return n}function ct(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=e.context,n=void 0===t?{}:t,r=ut(e,["context"]),i=r.sagaMonitor,o=r.logger,a=r.onError;if(_.func(r))throw new Error("Saga middleware no longer accept Generator functions. Use sagaMiddleware.run instead");if(o&&!_.func(o))throw new Error("`options.logger` passed to the Saga middleware is not a function!");if(a&&!_.func(a))throw new Error("`options.onError` passed to the Saga middleware is not a function!");if(r.emitter&&!_.func(r.emitter))throw new Error("`options.emitter` passed to the Saga middleware is not a function!");function s(e){var t=e.getState,l=e.dispatch,u=ne();return u.emit=(r.emitter||m)(u.emit),s.run=lt.bind(null,{context:n,subscribe:u.subscribe,dispatch:l,getState:t,sagaMonitor:i,logger:o,onError:a}),function(e){return function(t){i&&i.actionDispatched&&i.actionDispatched(t);var n=e(t);return u.emit(t),n}}}return s.run=function(){throw new Error("Before running a Saga, you must mount the Saga middleware on the Store using applyMiddleware")},s.setContext=function(e){v(e,_.object,L("sagaMiddleware",e)),x.assign(n,e)},s}var ft={done:!0,value:void 0},dt={};function ht(e){return _.channel(e)?"channel":Array.isArray(e)?String(e.map(function(e){return String(e)})):String(e)}function pt(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"iterator",r=void 0,i=t;function o(t,n){if(i===dt)return ft;if(n)throw i=dt,n;r&&r(t);var o=e[i](),a=o[0],s=o[1],l=o[2];return i=a,r=l,i===dt?ft:s}return I(o,function(e){return o(null,e)},n,!0)}function gt(e,t){for(var n=arguments.length,r=Array(n>2?n-2:0),i=2;i2?n-2:0),i=2;i3?r-3:0),o=3;o2?n-2:0),i=2;i2?n-2:0),i=2;i3?r-3:0),o=3;o0){if(++t>=n)return arguments[0]}else t=0;return e.apply(void 0,arguments)}}e.exports=o},"8wmI":function(e,t){function n(e){return null!=e&&"object"==typeof e}e.exports=n},"9Nap":function(e,t,n){var r=n("/9aa"),i=1/0;function o(e){if("string"==typeof e||r(e))return e;var t=e+"";return"0"==t&&1/e==-i?"-0":t}e.exports=o},"9ggG":function(e,t,n){var r=n("Z0cm"),i=n("/9aa"),o=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,a=/^\w*$/;function s(e,t){if(r(e))return!1;var n=typeof e;return!("number"!=n&&"symbol"!=n&&"boolean"!=n&&null!=e&&!i(e))||(a.test(e)||!o.test(e)||null!=t&&e in Object(t))}e.exports=s},AGgm:function(e,t,n){"use strict";function r(e){return Object.prototype.toString.call(e)}function i(e){return"[object String]"===r(e)}var o=Object.prototype.hasOwnProperty;function a(e,t){return o.call(e,t)}function s(e){var t=Array.prototype.slice.call(arguments,1);return t.forEach(function(t){if(t){if("object"!==typeof t)throw new TypeError(t+"must be object");Object.keys(t).forEach(function(n){e[n]=t[n]})}}),e}function l(e,t,n){return[].concat(e.slice(0,t),n,e.slice(t+1))}function u(e){return!(e>=55296&&e<=57343)&&(!(e>=64976&&e<=65007)&&(65535!==(65535&e)&&65534!==(65535&e)&&(!(e>=0&&e<=8)&&(11!==e&&(!(e>=14&&e<=31)&&(!(e>=127&&e<=159)&&!(e>1114111)))))))}function c(e){if(e>65535){e-=65536;var t=55296+(e>>10),n=56320+(1023&e);return String.fromCharCode(t,n)}return String.fromCharCode(e)}var f=/\\([!"#$%&'()*+,\-.\/:;<=>?@[\\\]^_`{|}~])/g,d=/&([a-z#][a-z0-9]{1,31});/gi,h=new RegExp(f.source+"|"+d.source,"gi"),p=/^#((?:x[a-f0-9]{1,8}|[0-9]{1,8}))/i,g=n("vWgF");function m(e,t){var n=0;return a(g,t)?g[t]:35===t.charCodeAt(0)&&p.test(t)&&(n="x"===t[1].toLowerCase()?parseInt(t.slice(2),16):parseInt(t.slice(1),10),u(n))?c(n):e}function v(e){return e.indexOf("\\")<0?e:e.replace(f,"$1")}function y(e){return e.indexOf("\\")<0&&e.indexOf("&")<0?e:e.replace(h,function(e,t,n){return t||m(e,n)})}var b=/[&<>"]/,_=/[&<>"]/g,x={"&":"&","<":"<",">":">",'"':"""};function w(e){return x[e]}function k(e){return b.test(e)?e.replace(_,w):e}var O=/[.?*+^$[\]\\(){}|-]/g;function S(e){return e.replace(O,"\\$&")}function M(e){switch(e){case 9:case 32:return!0}return!1}function C(e){if(e>=8192&&e<=8202)return!0;switch(e){case 9:case 10:case 11:case 12:case 13:case 32:case 160:case 5760:case 8239:case 8287:case 12288:return!0}return!1}var T=n("fKCf");function j(e){return T.test(e)}function I(e){switch(e){case 33:case 34:case 35:case 36:case 37:case 38:case 39:case 40:case 41:case 42:case 43:case 44:case 45:case 46:case 47:case 58:case 59:case 60:case 61:case 62:case 63:case 64:case 91:case 92:case 93:case 94:case 95:case 96:case 123:case 124:case 125:case 126:return!0;default:return!1}}function D(e){return e=e.trim().replace(/\s+/g," "),"\u1e7e"==="\u1e9e".toLowerCase()&&(e=e.replace(/\u1e9e/g,"\xdf")),e.toLowerCase().toUpperCase()}t.lib={},t.lib.mdurl=n("2KYT"),t.lib.ucmicro=n("1dGX"),t.assign=s,t.isString=i,t.has=a,t.unescapeMd=v,t.unescapeAll=y,t.isValidEntityCode=u,t.fromCodePoint=c,t.escapeHtml=k,t.arrayReplaceAt=l,t.isSpace=M,t.isWhiteSpace=C,t.isMdAsciiPunct=I,t.isPunctChar=j,t.escapeRE=S,t.normalizeReference=D},AP2z:function(e,t,n){var r=n("nmnc"),i=Object.prototype,o=i.hasOwnProperty,a=i.toString,s=r?r.toStringTag:void 0;function l(e){var t=o.call(e,s),n=e[s];try{e[s]=void 0;var r=!0}catch(e){}var i=a.call(e);return r&&(t?e[s]=n:delete e[s]),i}e.exports=l},AVZG:function(e,t,n){"use strict";n.d(t,"c",function(){return o}),n.d(t,"b",function(){return a}),n.d(t,"a",function(){return s});var r=n("bYtY"),i=n("4NO4");function o(e,t,n){n=n||{};var i=e.coordinateSystem,o=t.axis,a={},s=o.getAxesOnZeroOf()[0],l=o.position,u=s?"onZero":l,c=o.dim,f=i.getRect(),d=[f.x,f.x+f.width,f.y,f.y+f.height],h={left:0,right:1,top:0,bottom:1,onZero:2},p=t.get("offset")||0,g="x"===c?[d[2]-p,d[3]+p]:[d[0]-p,d[1]+p];if(s){var m=s.toGlobalCoord(s.dataToCoord(0));g[h.onZero]=Math.max(Math.min(m,g[1]),g[0])}a.position=["y"===c?g[h[u]]:d[0],"x"===c?g[h[u]]:d[3]],a.rotation=Math.PI/2*("x"===c?0:1);var v={top:-1,bottom:1,left:-1,right:1};a.labelDirection=a.tickDirection=a.nameDirection=v[l],a.labelOffset=s?g[h[l]]-g[h.onZero]:0,t.get(["axisTick","inside"])&&(a.tickDirection=-a.tickDirection),r["L"](n.labelInside,t.get(["axisLabel","inside"]))&&(a.labelDirection=-a.labelDirection);var y=t.get(["axisLabel","rotate"]);return a.labelRotate="top"===u?-y:y,a.z2=1,a}function a(e){return"cartesian2d"===e.get("coordinateSystem")}function s(e){var t={xAxisModel:null,yAxisModel:null};return r["k"](t,function(n,r){var o=r.replace(/Model$/,""),a=e.getReferringComponents(o,i["b"]).models[0];t[r]=a}),t}},"B/3G":function(e,t,n){"use strict";n.d(t,"i",function(){return i}),n.d(t,"f",function(){return o}),n.d(t,"c",function(){return a}),n.d(t,"e",function(){return s}),n.d(t,"d",function(){return l}),n.d(t,"g",function(){return u}),n.d(t,"h",function(){return c}),n.d(t,"a",function(){return f}),n.d(t,"b",function(){return d});var r=n("bYtY"),i=Object(r["g"])(["tooltip","label","itemName","itemId","itemGroupId","seriesName"]),o="original",a="arrayRows",s="objectRows",l="keyedColumns",u="typedArray",c="unknown",f="column",d="row"},B1jb:function(e,t,n){"use strict";var r=n("AGgm").isSpace;e.exports=function(e,t,n,i){var o,a,s,l,u=e.bMarks[t]+e.tShift[t],c=e.eMarks[t];if(e.sCount[t]-e.blkIndent>=4)return!1;if(o=e.src.charCodeAt(u),35!==o||u>=c)return!1;a=1,o=e.src.charCodeAt(++u);while(35===o&&u6||uu&&r(e.src.charCodeAt(s-1))&&(c=s),e.line=t+1,l=e.push("heading_open","h"+String(a),1),l.markup="########".slice(0,a),l.map=[t,e.line],l=e.push("inline","",0),l.content=e.src.slice(u,c).trim(),l.map=[t,e.line],l.children=[],l=e.push("heading_close","h"+String(a),-1),l.markup="########".slice(0,a),!0))}},B8du:function(e,t){function n(){return!1}e.exports=n},"BPd+":function(e,t,n){"use strict";n.d(t,"b",function(){return v}),n.d(t,"a",function(){return y});var r=n("B/3G"),i=n("4NO4"),o=n("bYtY"),a=n("KxfA"),s=n("t9mh"),l=n("7a4p"),u=n("7G+c"),c=function(){function e(){}return e.prototype.getRawData=function(){throw new Error("not supported")},e.prototype.getRawDataItem=function(e){throw new Error("not supported")},e.prototype.cloneRawData=function(){},e.prototype.getDimensionInfo=function(e){},e.prototype.cloneAllDimensionInfo=function(){},e.prototype.count=function(){},e.prototype.retrieveValue=function(e,t){},e.prototype.retrieveValueFromItem=function(e,t){},e.prototype.convertValue=function(e,t){return Object(s["b"])(e,t)},e}();function f(e,t){var n=new c,i=e.data,s=n.sourceFormat=e.sourceFormat,u=e.startIndex,f="";e.seriesLayoutBy!==r["a"]&&Object(l["c"])(f);var m=[],v={},y=e.dimensionsDefine;if(y)Object(o["k"])(y,function(e,t){var n=e.name,r={index:t,name:n,displayName:e.displayName};if(m.push(r),null!=n){var i="";Object(o["p"])(v,n)&&Object(l["c"])(i),v[n]=r}});else for(var b=0;b=0))try{t.hostname=f.toASCII(t.hostname)}catch(e){}return c.encode(c.format(t))}function y(e){var t=c.parse(e,!0);if(t.hostname&&(!t.protocol||m.indexOf(t.protocol)>=0))try{t.hostname=f.toUnicode(t.hostname)}catch(e){}return c.decode(c.format(t),c.decode.defaultChars+"%")}function b(e,t){if(!(this instanceof b))return new b(e,t);t||r.isString(e)||(t=e||{},e="default"),this.inline=new l,this.block=new s,this.core=new a,this.renderer=new o,this.linkify=new u,this.validateLink=g,this.normalizeLink=v,this.normalizeLinkText=y,this.utils=r,this.helpers=r.assign({},i),this.options={},this.configure(e),t&&this.set(t)}b.prototype.set=function(e){return r.assign(this.options,e),this},b.prototype.configure=function(e){var t,n=this;if(r.isString(e)&&(t=e,e=d[t],!e))throw new Error('Wrong `markdown-it` preset "'+t+'", check name');if(!e)throw new Error("Wrong `markdown-it` preset, can't be empty");return e.options&&n.set(e.options),e.components&&Object.keys(e.components).forEach(function(t){e.components[t].rules&&n[t].ruler.enableOnly(e.components[t].rules),e.components[t].rules2&&n[t].ruler2.enableOnly(e.components[t].rules2)}),this},b.prototype.enable=function(e,t){var n=[];Array.isArray(e)||(e=[e]),["core","block","inline"].forEach(function(t){n=n.concat(this[t].ruler.enable(e,!0))},this),n=n.concat(this.inline.ruler2.enable(e,!0));var r=e.filter(function(e){return n.indexOf(e)<0});if(r.length&&!t)throw new Error("MarkdownIt. Failed to enable unknown rule(s): "+r);return this},b.prototype.disable=function(e,t){var n=[];Array.isArray(e)||(e=[e]),["core","block","inline"].forEach(function(t){n=n.concat(this[t].ruler.disable(e,!0))},this),n=n.concat(this.inline.ruler2.disable(e,!0));var r=e.filter(function(e){return n.indexOf(e)<0});if(r.length&&!t)throw new Error("MarkdownIt. Failed to disable unknown rule(s): "+r);return this},b.prototype.use=function(e){var t=[this].concat(Array.prototype.slice.call(arguments,1));return e.apply(e,t),this},b.prototype.parse=function(e,t){if("string"!==typeof e)throw new Error("Input data should be a String");var n=new this.core.State(e,this,t);return this.core.process(n),n.tokens},b.prototype.render=function(e,t){return t=t||{},this.renderer.render(this.parse(e,t),this.options,t)},b.prototype.parseInline=function(e,t){var n=new this.core.State(e,this,t);return n.inlineMode=!0,this.core.process(n),n.tokens},b.prototype.renderInline=function(e,t){return t=t||{},this.renderer.render(this.parseInline(e,t),this.options,t)},e.exports=b},CWsV:function(e,t,n){"use strict";function r(e,t,n){this.type=e,this.tag=t,this.attrs=null,this.map=null,this.nesting=n,this.level=0,this.children=null,this.content="",this.markup="",this.info="",this.meta=null,this.block=!1,this.hidden=!1}r.prototype.attrIndex=function(e){var t,n,r;if(!this.attrs)return-1;for(t=this.attrs,n=0,r=t.length;n=0&&(n=this.attrs[t][1]),n},r.prototype.attrJoin=function(e,t){var n=this.attrIndex(e);n<0?this.attrPush([e,t]):this.attrs[n][1]=this.attrs[n][1]+" "+t},e.exports=r},CXva:function(e,t,n){"use strict";var r=n("CWsV"),i=n("AGgm").isWhiteSpace,o=n("AGgm").isPunctChar,a=n("AGgm").isMdAsciiPunct;function s(e,t,n,r){this.src=e,this.env=n,this.md=t,this.tokens=r,this.tokens_meta=Array(r.length),this.pos=0,this.posMax=this.src.length,this.level=0,this.pending="",this.pendingLevel=0,this.cache={},this.delimiters=[],this._prev_delimiters=[]}s.prototype.pushPending=function(){var e=new r("text","",0);return e.content=this.pending,e.level=this.pendingLevel,this.tokens.push(e),this.pending="",e},s.prototype.push=function(e,t,n){this.pending&&this.pushPending();var i=new r(e,t,n),o=null;return n<0&&(this.level--,this.delimiters=this._prev_delimiters.pop()),i.level=this.level,n>0&&(this.level++,this._prev_delimiters.push(this.delimiters),this.delimiters=[],o={delimiters:this.delimiters}),this.pendingLevel=this.level,this.tokens.push(i),this.tokens_meta.push(o),i},s.prototype.scanDelims=function(e,t){var n,r,s,l,u,c,f,d,h,p=e,g=!0,m=!0,v=this.posMax,y=this.src.charCodeAt(e);n=e>0?this.src.charCodeAt(e-1):32;while(p=0;a--)r[a]&&!c["j"](r[a])?o=!0:(r[a]=null,!o&&i--);r.length=i,e[n]=r}}),delete e[k],e},t.prototype.getTheme=function(){return this._theme},t.prototype.getLocaleModel=function(){return this._locale},t.prototype.setUpdatePayload=function(e){this._payload=e},t.prototype.getUpdatePayload=function(){return this._payload},t.prototype.getComponent=function(e,t){var n=this._componentsMap.get(e);if(n){var r=n[t||0];if(r)return r;if(null==t)for(var i=0;i=t:"max"===n?e<=t:e===t}function V(e,t){return e.join(",")===t.join(",")}var Y=R,G=o["k"],U=o["z"],W=["areaStyle","lineStyle","nodeStyle","linkStyle","chordStyle","label","labelLine"];function H(e){var t=e&&e.itemStyle;if(t)for(var n=0,r=W.length;n=0;p--){var g=e[p];if(s||(f=g.data.rawIndexOf(g.stackedByDimension,c)),f>=0){var m=g.data.getByRawIndex(g.stackResultDimension,f);if(d>=0&&m>0||d<=0&&m<0){d=Object(he["a"])(d,m),h=m;break}}}return r[0]=d,r[1]=h,r})})}var me=n("T4UG"),ve=n("sS/r"),ye=n("6Ic6"),be=n("x6Kt"),_e=n("Dagg"),xe=n("3qvL"),we=n("y+Vt"),ke=n("hhxK"),Oe=n("fWwa"),Se=n("iLNv"),Me=n("KCsZ"),Ce=n("VR9l"),Te=n("OQFs"),je=Object(c["m"])(),Ie={itemStyle:Object(Me["a"])(Ce["a"],!0),lineStyle:Object(Me["a"])(Te["a"],!0)},De={lineStyle:"stroke",itemStyle:"fill"};function Ae(e,t){var n=e.visualStyleMapper||Ie[t];return n||(console.warn("Unkown style type '"+t+"'."),Ie.itemStyle)}function Ee(e,t){var n=e.visualDrawType||De[t];return n||(console.warn("Unkown style type '"+t+"'."),"fill")}var Pe={createOnAllSeries:!0,performRawSeries:!0,reset:function(e,t){var n=e.getData(),r=e.visualStyleAccessPath||"itemStyle",i=e.getModel(r),a=Ae(e,r),s=a(i),l=i.getShallow("decal");l&&(n.setVisual("decal",l),l.dirty=!0);var u=Ee(e,r),c=s[u],f=Object(o["v"])(c)?c:null,d="auto"===s.fill||"auto"===s.stroke;if(!s[u]||f||d){var h=e.getColorFromPalette(e.name,null,t.getSeriesCount());s[u]||(s[u]=h,n.setVisual("colorFromPalette",!0)),s.fill="auto"===s.fill||"function"===typeof s.fill?h:s.fill,s.stroke="auto"===s.stroke||"function"===typeof s.stroke?h:s.stroke}if(n.setVisual("style",s),n.setVisual("drawType",u),!t.isSeriesFiltered(e)&&f)return n.setVisual("colorFromPalette",!1),{dataEach:function(t,n){var r=e.getDataParams(n),i=Object(o["m"])({},s);i[u]=f(r),t.setItemVisual(n,"style",i)}}}},Le=new f["a"],Ne={createOnAllSeries:!0,performRawSeries:!0,reset:function(e,t){if(!e.ignoreStyleOnData&&!t.isSeriesFiltered(e)){var n=e.getData(),r=e.visualStyleAccessPath||"itemStyle",i=Ae(e,r),a=n.getVisual("drawType");return{dataEach:n.hasItemOption?function(e,t){var n=e.getRawDataItem(t);if(n&&n[r]){Le.option=n[r];var s=i(Le),l=e.ensureUniqueItemVisual(t,"style");Object(o["m"])(l,s),Le.option.decal&&(e.setItemVisual(t,"decal",Le.option.decal),Le.option.decal.dirty=!0),a in s&&e.setItemVisual(t,"colorFromPalette",!1)}}:null}}}},Re={performRawSeries:!0,overallReset:function(e){var t=Object(o["g"])();e.eachSeries(function(e){var n=e.getColorBy();if(!e.isColorBySeries()){var r=e.type+"-"+n,i=t.get(r);i||(i={},t.set(r,i)),je(e).scope=i}}),e.eachSeries(function(t){if(!t.isColorBySeries()&&!e.isSeriesFiltered(t)){var n=t.getRawData(),r={},i=t.getData(),o=je(t).scope,a=t.visualStyleAccessPath||"itemStyle",s=Ee(t,a);i.each(function(e){var t=i.getRawIndex(e);r[t]=e}),n.each(function(e){var a=r[e],l=i.getItemVisual(a,"colorFromPalette");if(l){var u=i.ensureUniqueItemVisual(a,"style"),c=n.getName(e)||e+"",f=n.count();u[s]=t.getColorFromPalette(c,o,f)}})}})}},ze=n("LcXL"),Fe=n("dqUG"),Be=n("jTL6"),Ve=Math.PI;function Ye(e,t){t=t||{},o["j"](t,{text:"loading",textColor:"#000",fontSize:12,fontWeight:"normal",fontStyle:"normal",fontFamily:"sans-serif",maskColor:"rgba(255, 255, 255, 0.8)",showSpinner:!0,color:"#5470c6",spinnerRadius:10,lineWidth:5,zlevel:0});var n=new ze["a"],r=new be["a"]({style:{fill:t.maskColor},zlevel:t.zlevel,z:1e4});n.add(r);var i,a=new Fe["a"]({style:{text:t.text,fill:t.textColor,fontSize:t.fontSize,fontWeight:t.fontWeight,fontStyle:t.fontStyle,fontFamily:t.fontFamily},zlevel:t.zlevel,z:10001}),s=new be["a"]({style:{fill:"none"},textContent:a,textConfig:{position:"right",distance:10},zlevel:t.zlevel,z:10001});return n.add(s),t.showSpinner&&(i=new Be["a"]({shape:{startAngle:-Ve/2,endAngle:-Ve/2+.1,r:t.spinnerRadius},style:{stroke:t.color,lineCap:"round",lineWidth:t.lineWidth},zlevel:t.zlevel,z:10001}),i.animateShape(!0).when(1e3,{endAngle:3*Ve/2}).start("circularInOut"),i.animateShape(!0).when(1e3,{startAngle:3*Ve/2}).delay(300).start("circularInOut"),n.add(i)),n.resize=function(){var n=a.getBoundingRect().width,o=t.showSpinner?t.spinnerRadius:0,l=(e.getWidth()-2*o-(t.showSpinner&&n?10:0)-n)/2-(t.showSpinner&&n?0:5+n/2)+(t.showSpinner?0:n/2)+(n?0:o),u=e.getHeight()/2;t.showSpinner&&i.setShape({cx:l,cy:u}),s.setShape({x:l-o,y:u-o,width:2*o,height:2*o}),r.setShape({x:0,y:0,width:e.getWidth(),height:e.getHeight()})},n.resize(),n}var Ge=n("n7yn"),Ue=n("iRjW"),We=function(){function e(e,t,n,r){this._stageTaskMap=Object(o["g"])(),this.ecInstance=e,this.api=t,n=this._dataProcessorHandlers=n.slice(),r=this._visualHandlers=r.slice(),this._allHandlers=n.concat(r)}return e.prototype.restoreData=function(e,t){e.restoreData(t),this._stageTaskMap.each(function(e){var t=e.overallTask;t&&t.dirty()})},e.prototype.getPerformArgs=function(e,t){if(e.__pipeline){var n=this._pipelineMap.get(e.__pipeline.id),r=n.context,i=!t&&n.progressiveEnabled&&(!r||r.progressiveRender)&&e.__idxInPipeline>n.blockIndex,o=i?n.step:null,a=r&&r.modDataCount,s=null!=a?Math.ceil(a/o):null;return{step:o,modBy:s,modDataCount:a}}},e.prototype.getPipeline=function(e){return this._pipelineMap.get(e)},e.prototype.updateStreamModes=function(e,t){var n=this._pipelineMap.get(e.uid),r=e.getData(),i=r.count(),o=n.progressiveEnabled&&t.incrementalPrepareRender&&i>=n.threshold,a=e.get("large")&&i>=e.get("largeThreshold"),s="mod"===e.get("progressiveChunkMode")?i:null;e.pipelineContext=n.context={progressiveRender:o,modDataCount:s,large:a}},e.prototype.restorePipelines=function(e){var t=this,n=t._pipelineMap=Object(o["g"])();e.eachSeries(function(e){var r=e.getProgressive(),i=e.uid;n.set(i,{id:i,head:null,tail:null,threshold:e.getProgressiveThreshold(),progressiveEnabled:r&&!(e.preventIncremental&&e.preventIncremental()),blockIndex:-1,step:Math.round(r||700),count:0}),t._pipe(e,e.dataTask)})},e.prototype.prepareStageTasks=function(){var e=this._stageTaskMap,t=this.api.getModel(),n=this.api;Object(o["k"])(this._allHandlers,function(r){var i=e.get(r.uid)||e.set(r.uid,{}),a="";Object(o["b"])(!(r.reset&&r.overallReset),a),r.reset&&this._createSeriesStageTask(r,i,t,n),r.overallReset&&this._createOverallStageTask(r,i,t,n)},this)},e.prototype.prepareView=function(e,t,n,r){var i=e.renderTask,o=i.context;o.model=t,o.ecModel=n,o.api=r,i.__block=!e.incrementalPrepareRender,this._pipe(t,i)},e.prototype.performDataProcessorTasks=function(e,t){this._performStageTasks(this._dataProcessorHandlers,e,t,{block:!0})},e.prototype.performVisualTasks=function(e,t,n){this._performStageTasks(this._visualHandlers,e,t,n)},e.prototype._performStageTasks=function(e,t,n,r){r=r||{};var i=!1,a=this;function s(e,t){return e.setDirty&&(!e.dirtyMap||e.dirtyMap.get(t.__pipeline.id))}Object(o["k"])(e,function(e,o){if(!r.visualType||r.visualType===e.visualType){var l=a._stageTaskMap.get(e.uid),u=l.seriesTaskMap,c=l.overallTask;if(c){var f,d=c.agentStubMap;d.each(function(e){s(r,e)&&(e.dirty(),f=!0)}),f&&c.dirty(),a.updatePayload(c,n);var h=a.getPerformArgs(c,r.block);d.each(function(e){e.perform(h)}),c.perform(h)&&(i=!0)}else u&&u.each(function(o,l){s(r,o)&&o.dirty();var u=a.getPerformArgs(o,r.block);u.skip=!e.performRawSeries&&t.isSeriesFiltered(o.context.model),a.updatePayload(o,n),o.perform(u)&&(i=!0)})}}),this.unfinished=i||this.unfinished},e.prototype.performSeriesTasks=function(e){var t;e.eachSeries(function(e){t=e.dataTask.perform()||t}),this.unfinished=t||this.unfinished},e.prototype.plan=function(){this._pipelineMap.each(function(e){var t=e.tail;do{if(t.__block){e.blockIndex=t.__idxInPipeline;break}t=t.getUpstream()}while(t)})},e.prototype.updatePayload=function(e,t){"remain"!==t&&(e.context.payload=t)},e.prototype._createSeriesStageTask=function(e,t,n,r){var i=this,a=t.seriesTaskMap,s=t.seriesTaskMap=Object(o["g"])(),l=e.seriesType,u=e.getTargetSeries;function c(t){var o=t.uid,l=s.set(o,a&&a.get(o)||Object(Ge["a"])({plan:Xe,reset:Qe,count:et}));l.context={model:t,ecModel:n,api:r,useClearVisual:e.isVisual&&!e.isLayout,plan:e.plan,reset:e.reset,scheduler:i},i._pipe(t,l)}e.createOnAllSeries?n.eachRawSeries(c):l?n.eachRawSeriesByType(l,c):u&&u(n,r).each(c)},e.prototype._createOverallStageTask=function(e,t,n,r){var i=this,a=t.overallTask=t.overallTask||Object(Ge["a"])({reset:He});a.context={ecModel:n,api:r,overallReset:e.overallReset,scheduler:i};var s=a.agentStubMap,l=a.agentStubMap=Object(o["g"])(),u=e.seriesType,c=e.getTargetSeries,f=!0,d=!1,h="";function p(e){var t=e.uid,n=l.set(t,s&&s.get(t)||(d=!0,Object(Ge["a"])({reset:qe,onDirty:Ke})));n.context={model:e,overallProgress:f},n.agent=a,n.__block=f,i._pipe(e,n)}Object(o["b"])(!e.createOnAllSeries,h),u?n.eachRawSeriesByType(u,p):c?c(n,r).each(p):(f=!1,Object(o["k"])(n.getSeries(),p)),d&&a.dirty()},e.prototype._pipe=function(e,t){var n=e.uid,r=this._pipelineMap.get(n);!r.head&&(r.head=t),r.tail&&r.tail.pipe(t),r.tail=t,t.__idxInPipeline=r.count++,t.__pipeline=r},e.wrapStageHandler=function(e,t){return Object(o["v"])(e)&&(e={overallReset:e,seriesType:tt(e)}),e.uid=Object(Ue["c"])("stageHandler"),t&&(e.visualType=t),e},e}();function He(e){e.overallReset(e.ecModel,e.api,e.payload)}function qe(e){return e.overallProgress&&Ze}function Ze(){this.agent.dirty(),this.getDownstream().dirty()}function Ke(){this.agent&&this.agent.dirty()}function Xe(e){return e.plan?e.plan(e.model,e.ecModel,e.api,e.payload):null}function Qe(e){e.useClearVisual&&e.data.clearAllVisual();var t=e.resetDefines=Object(c["p"])(e.reset(e.model,e.ecModel,e.api,e.payload));return t.length>1?Object(o["F"])(t,function(e,t){return Je(t)}):$e}var $e=Je(0);function Je(e){return function(t,n){var r=n.data,i=n.resetDefines[e];if(i&&i.dataEach)for(var o=t.start;o0&&c===i.length-u.length){var f=i.slice(0,c);"data"!==f&&(t.mainType=f,t[u.toLowerCase()]=e,o=!0)}}s.hasOwnProperty(i)&&(n[i]=e,o=!0),o||(r[i]=e)})}return{cptQuery:t,dataQuery:n,otherQuery:r}},e.prototype.filter=function(e,t){var n=this.eventInfo;if(!n)return!0;var r=n.targetEl,i=n.packedEvent,o=n.model,a=n.view;if(!o||!a)return!0;var s=t.cptQuery,l=t.dataQuery;return u(s,o,"mainType")&&u(s,o,"subType")&&u(s,o,"index","componentIndex")&&u(s,o,"name")&&u(s,o,"id")&&u(l,i,"name")&&u(l,i,"dataIndex")&&u(l,i,"dataType")&&(!a.filterForExposedEvent||a.filterForExposedEvent(e,t.otherQuery,r,i));function u(e,t,n,r){return null==e[n]||t[r||n]===e[n]}},e.prototype.afterTrigger=function(){this.eventInfo=null},e}(),vt={createOnAllSeries:!0,performRawSeries:!0,reset:function(e,t){var n=e.getData();if(e.legendIcon&&n.setVisual("legendIcon",e.legendIcon),e.hasSymbolVisual){var r=e.get("symbol"),i=e.get("symbolSize"),a=e.get("symbolKeepAspect"),s=e.get("symbolRotate"),l=e.get("symbolOffset"),u=Object(o["v"])(r),c=Object(o["v"])(i),f=Object(o["v"])(s),d=Object(o["v"])(l),h=u||c||f||d,p=!u&&r?r:e.defaultSymbol,g=c?null:i,m=f?null:s,v=d?null:l;if(n.setVisual({legendIcon:e.legendIcon||p,symbol:p,symbolSize:g,symbolKeepAspect:a,symbolRotate:m,symbolOffset:v}),!t.isSeriesFiltered(e))return{dataEach:h?y:null}}function y(t,n){var o=e.getRawValue(n),a=e.getDataParams(n);u&&t.setItemVisual(n,"symbol",r(o,a)),c&&t.setItemVisual(n,"symbolSize",i(o,a)),f&&t.setItemVisual(n,"symbolRotate",s(o,a)),d&&t.setItemVisual(n,"symbolOffset",l(o,a))}}},yt={createOnAllSeries:!0,performRawSeries:!0,reset:function(e,t){if(e.hasSymbolVisual&&!t.isSeriesFiltered(e)){var n=e.getData();return{dataEach:n.hasItemOption?r:null}}function r(e,t){var n=e.getItemModel(t),r=n.getShallow("symbol",!0),i=n.getShallow("symbolSize",!0),o=n.getShallow("symbolRotate",!0),a=n.getShallow("symbolOffset",!0),s=n.getShallow("symbolKeepAspect",!0);null!=r&&e.setItemVisual(t,"symbol",r),null!=i&&e.setItemVisual(t,"symbolSize",i),null!=o&&e.setItemVisual(t,"symbolRotate",o),null!=a&&e.setItemVisual(t,"symbolOffset",a),null!=s&&e.setItemVisual(t,"symbolKeepAspect",s)}}};function bt(e,t,n){switch(n){case"color":var r=e.getItemVisual(t,"style");return r[e.getVisual("drawType")];case"opacity":return e.getItemVisual(t,"style").opacity;case"symbol":case"symbolSize":case"liftZ":return e.getItemVisual(t,n);default:0}}function _t(e,t){switch(t){case"color":var n=e.getVisual("style");return n[e.getVisual("drawType")];case"opacity":return e.getVisual("style").opacity;case"symbol":case"symbolSize":case"liftZ":return e.getVisual(t);default:0}}function xt(e,t,n,r,i){var a=e+t;n.isSilent(a)||r.eachComponent({mainType:"series",subType:"pie"},function(e){for(var t=e.seriesIndex,r=i.selected,s=0;s>1^-(1&s),l=l>>1^-(1&l),s+=i,l+=o,i=s,o=l,r.push([s/n,l/n])}return r}function rn(e,t){return e=tn(e),o["F"](o["n"](e.features,function(e){return e.geometry&&e.properties&&e.geometry.coordinates.length>0}),function(e){var n=e.properties,r=e.geometry,i=[];if("Polygon"===r.type){var a=r.coordinates;i.push({type:"polygon",exterior:a[0],interiors:a.slice(1)})}if("MultiPolygon"===r.type){a=r.coordinates;o["k"](a,function(e){e[0]&&i.push({type:"polygon",exterior:e[0],interiors:e.slice(1)})})}var s=new Kt(n[t||"name"],i,n.cp);return s.properties=n,s})}for(var on=[126,25],an="\u5357\u6d77\u8bf8\u5c9b",sn=[[[0,3.5],[7,11.2],[15,11.9],[30,7],[42,.7],[52,.7],[56,7.7],[59,.7],[64,.7],[64,0],[5,0],[0,3.5]],[[13,16.1],[19,14.7],[16,21.7],[11,23.1],[13,16.1]],[[12,32.2],[14,38.5],[15,38.5],[13,32.2],[12,32.2]],[[16,47.6],[12,53.2],[13,53.2],[18,47.6],[16,47.6]],[[6,64.4],[8,70],[9,70],[8,64.4],[6,64.4]],[[23,82.6],[29,79.8],[30,79.8],[25,82.6],[23,82.6]],[[37,70.7],[43,62.3],[44,62.3],[39,70.7],[37,70.7]],[[48,51.1],[51,45.5],[53,45.5],[50,51.1],[48,51.1]],[[51,35],[51,28.7],[53,28.7],[53,35],[51,35]],[[52,22.4],[55,17.5],[56,17.5],[53,22.4],[52,22.4]],[[58,12.6],[62,7],[63,7],[60,12.6],[58,12.6]],[[0,3.5],[0,93.1],[64,93.1],[64,0],[63,0],[63,92.4],[1,92.4],[1,3.5],[0,3.5]]],ln=0;ln0&&e.unfinished);e.unfinished||this._zr.flush()}}},t.prototype.getDom=function(){return this._dom},t.prototype.getId=function(){return this.id},t.prototype.getZr=function(){return this._zr},t.prototype.setOption=function(e,t,n){if(this._disposed)Or(this.id);else{var r,i,a;if(Object(o["z"])(t)&&(n=t.lazyUpdate,r=t.silent,i=t.replaceMerge,a=t.transition,t=t.notMerge),this[Gn]=!0,!this._model||t){var s=new Y(this._api),l=this._theme,u=this._model=new D;u.scheduler=this._scheduler,u.init(null,null,null,l,this._locale,s)}this._model.setOption(e,{replaceMerge:i},Tr);var c={seriesTransition:a,optionChanged:!0};n?(this[Un]={silent:r,updateParams:c},this[Gn]=!1,this.getZr().wakeUp()):(er(this),rr.update.call(this,null,c),this._zr.flush(),this[Un]=null,this[Gn]=!1,sr.call(this,r),lr.call(this,r))}},t.prototype.setTheme=function(){console.error("ECharts#setTheme() is DEPRECATED in ECharts 3.0")},t.prototype.getModel=function(){return this._model},t.prototype.getOption=function(){return this._model&&this._model.getOption()},t.prototype.getWidth=function(){return this._zr.getWidth()},t.prototype.getHeight=function(){return this._zr.getHeight()},t.prototype.getDevicePixelRatio=function(){return this._zr.painter.dpr||Sn&&window.devicePixelRatio||1},t.prototype.getRenderedCanvas=function(e){if(s["a"].canvasSupported)return e=e||{},this._zr.painter.getRenderedCanvas({backgroundColor:e.backgroundColor||this._model.get("backgroundColor"),pixelRatio:e.pixelRatio||this.getDevicePixelRatio()})},t.prototype.getSvgDataURL=function(){if(s["a"].svgSupported){var e=this._zr,t=e.storage.getDisplayList();return Object(o["k"])(t,function(e){e.stopAnimation(null,!0)}),e.painter.toDataURL()}},t.prototype.getDataURL=function(e){if(!this._disposed){e=e||{};var t=e.excludeComponents,n=this._model,r=[],i=this;Object(o["k"])(t,function(e){n.eachComponent({mainType:e},function(e){var t=i._componentsMap[e.__viewId];t.group.ignore||(r.push(t),t.group.ignore=!0)})});var a="svg"===this._zr.painter.getType()?this.getSvgDataURL():this.getRenderedCanvas(e).toDataURL("image/"+(e&&e.type||"png"));return Object(o["k"])(r,function(e){e.group.ignore=!1}),a}Or(this.id)},t.prototype.getConnectedDataURL=function(e){if(this._disposed)Or(this.id);else if(s["a"].canvasSupported){var t="svg"===e.type,n=this.group,r=Math.min,a=Math.max,l=1/0;if(Er[n]){var u=l,c=l,f=-l,d=-l,h=[],p=e&&e.pixelRatio||this.getDevicePixelRatio();Object(o["k"])(Ar,function(i,s){if(i.group===n){var l=t?i.getZr().painter.getSvgDom().innerHTML:i.getRenderedCanvas(Object(o["d"])(e)),p=i.getDom().getBoundingClientRect();u=r(p.left,u),c=r(p.top,c),f=a(p.right,f),d=a(p.bottom,d),h.push({dom:l,left:p.left,top:p.top})}}),u*=p,c*=p,f*=p,d*=p;var g=f-u,m=d-c,v=Object(o["f"])(),y=i["a"](v,{renderer:t?"svg":"canvas"});if(y.resize({width:g,height:m}),t){var b="";return Object(o["k"])(h,function(e){var t=e.left-u,n=e.top-c;b+=''+e.dom+""}),y.painter.getSvgRoot().innerHTML=b,e.connectedBackgroundColor&&y.painter.setBackgroundColor(e.connectedBackgroundColor),y.refreshImmediately(),y.painter.toDataURL()}return e.connectedBackgroundColor&&y.add(new be["a"]({shape:{x:0,y:0,width:g,height:m},style:{fill:e.connectedBackgroundColor}})),Object(o["k"])(h,function(e){var t=new _e["a"]({style:{x:e.left*p-u,y:e.top*p-c,image:e.dom}});y.add(t)}),y.refreshImmediately(),v.toDataURL("image/"+(e&&e.type||"png"))}return this.getDataURL(e)}},t.prototype.convertToPixel=function(e,t){return ir(this,"convertToPixel",e,t)},t.prototype.convertFromPixel=function(e,t){return ir(this,"convertFromPixel",e,t)},t.prototype.containPixel=function(e,t){if(!this._disposed){var n,r=this._model,i=c["q"](r,e);return Object(o["k"])(i,function(e,r){r.indexOf("Models")>=0&&Object(o["k"])(e,function(e){var i=e.coordinateSystem;if(i&&i.containPoint)n=n||!!i.containPoint(t);else if("seriesModels"===r){var o=this._chartsMap[e.__viewId];o&&o.containPoint&&(n=n||o.containPoint(t,e))}else 0},this)},this),!!n}Or(this.id)},t.prototype.getVisual=function(e,t){var n=this._model,r=c["q"](n,e,{defaultMainType:"series"}),i=r.seriesModel;var o=i.getData(),a=r.hasOwnProperty("dataIndexInside")?r.dataIndexInside:r.hasOwnProperty("dataIndex")?o.indexOfRawIndex(r.dataIndex):null;return null!=a?bt(o,a,t):_t(o,t)},t.prototype.getViewOfComponentModel=function(e){return this._componentsMap[e.__viewId]},t.prototype.getViewOfSeriesModel=function(e){return this._chartsMap[e.__viewId]},t.prototype._initEvents=function(){var e=this;Object(o["k"])(kr,function(t){var n=function(n){var r,i=e.getModel(),a=n.target,s="globalout"===t;if(s?r={}:a&&Object(St["a"])(a,function(e){var t=Object(ke["a"])(e);if(t&&null!=t.dataIndex){var n=t.dataModel||i.getSeriesByIndex(t.seriesIndex);return r=n&&n.getDataParams(t.dataIndex,t.dataType)||{},!0}if(t.eventData)return r=Object(o["m"])({},t.eventData),!0},!0),r){var l=r.componentType,u=r.componentIndex;"markLine"!==l&&"markPoint"!==l&&"markArea"!==l||(l="series",u=r.seriesIndex);var c=l&&null!=u&&i.getComponent(l,u),f=c&&e["series"===c.mainType?"_chartsMap":"_componentsMap"][c.__viewId];0,r.event=n,r.type=t,e._$eventProcessor.eventInfo={targetEl:a,packedEvent:r,model:c,view:f},e.trigger(t,r)}};n.zrEventfulCallAtLast=!0,e._zr.on(t,n,e)}),Object(o["k"])(Mr,function(t,n){e._messageCenter.on(n,function(e){this.trigger(n,e)},e)}),Object(o["k"])(["selectchanged"],function(t){e._messageCenter.on(t,function(e){this.trigger(t,e)},e)}),wt(this._messageCenter,this,this._api)},t.prototype.isDisposed=function(){return this._disposed},t.prototype.clear=function(){this._disposed?Or(this.id):this.setOption({series:[]},!0)},t.prototype.dispose=function(){if(this._disposed)Or(this.id);else{this._disposed=!0,c["u"](this.getDom(),Lr,"");var e=this,t=e._api,n=e._model;Object(o["k"])(e._componentsViews,function(e){e.dispose(n,t)}),Object(o["k"])(e._chartsViews,function(e){e.dispose(n,t)}),e._zr.dispose(),e._dom=e._model=e._chartsMap=e._componentsMap=e._chartsViews=e._componentsViews=e._scheduler=e._api=e._zr=e._throttledZrFlush=e._theme=e._coordSysMgr=e._messageCenter=null,delete Ar[e.id]}},t.prototype.resize=function(e){if(this._disposed)Or(this.id);else{this._zr.resize(e);var t=this._model;if(this._loadingFX&&this._loadingFX.resize(),t){var n=t.resetOption("media"),r=e&&e.silent;this[Un]&&(null==r&&(r=this[Un].silent),n=!0,this[Un]=null),this[Gn]=!0,n&&er(this),rr.update.call(this,{type:"resize",animation:Object(o["m"])({duration:0},e&&e.animation)}),this[Gn]=!1,sr.call(this,r),lr.call(this,r)}}},t.prototype.showLoading=function(e,t){if(this._disposed)Or(this.id);else if(Object(o["z"])(e)&&(t=e,e=""),e=e||"default",this.hideLoading(),Dr[e]){var n=Dr[e](this._api,t),r=this._zr;this._loadingFX=n,r.add(n)}},t.prototype.hideLoading=function(){this._disposed?Or(this.id):(this._loadingFX&&this._zr.remove(this._loadingFX),this._loadingFX=null)},t.prototype.makeActionFromEvent=function(e){var t=Object(o["m"])({},e);return t.type=Mr[e.type],t},t.prototype.dispatchAction=function(e,t){if(this._disposed)Or(this.id);else if(Object(o["z"])(t)||(t={silent:!!t}),Sr[e.type]&&this._model)if(this[Gn])this._pendingActions.push(e);else{var n=t.silent;ar.call(this,e,n);var r=t.flush;r?this._zr.flush():!1!==r&&s["a"].browser.weChat&&this._throttledZrFlush(),sr.call(this,n),lr.call(this,n)}},t.prototype.updateLabelLayout=function(){On.trigger("series:layoutlabels",this._model,this._api,{updatedSeries:[]})},t.prototype.appendData=function(e){if(this._disposed)Or(this.id);else{var t=e.seriesIndex,n=this.getModel(),r=n.getSeriesByIndex(t);0,r.appendData(e),this._scheduler.unfinished=!0,this.getZr().wakeUp()}},t.internalField=function(){function e(e){for(var t=[],n=e.currentStates,r=0;rt.get("hoverLayerThreshold")&&!s["a"].node&&!s["a"].worker&&t.eachSeries(function(t){if(!t.preventUsingHoverLayer){var n=e._chartsMap[t.__viewId];n.__alive&&n.group.traverse(function(e){e.states.emphasis&&(e.states.emphasis.hoverLayer=!0)})}})}function n(e,t){var n=e.get("blendMode")||null;t.group.traverse(function(e){e.isGroup||(e.style.blend=n),e.eachPendingDisplayable&&e.eachPendingDisplayable(function(e){e.style.blend=n})})}function i(e,t){e.preventAutoZ||l(t.group,e.get("z")||0,e.get("zlevel")||0,-1/0)}function l(e,t,n,r){var i=e.getTextContent(),o=e.getTextGuideLine(),a=e.isGroup;if(a)for(var s=e.childrenRef(),u=0;u0?{duration:o,delay:r.get("delay"),easing:r.get("easing")}:null;n.group.traverse(function(t){if(t.states&&t.states.emphasis){if(xe["d"](t))return;if(t instanceof we["b"]&&Object(Oe["B"])(t),t.__dirty){var n=t.prevStates;n&&t.useStates(n)}if(i){t.stateTransition=a;var r=t.getTextContent(),o=t.getTextGuideLine();r&&(r.stateTransition=a),o&&(o.stateTransition=a)}t.__dirty&&e(t)}})}er=function(e){var t=e._scheduler;t.restorePipelines(e._model),t.prepareStageTasks(),tr(e,!0),tr(e,!1),t.plan()},tr=function(e,t){for(var n=e._model,r=e._scheduler,i=t?e._componentsViews:e._chartsViews,o=t?e._componentsMap:e._chartsMap,a=e._zr,s=e._api,l=0;l=0)){Zr.push(n);var a=at.wrapStageHandler(n,i);a.__prio=t,a.__raw=n,e.push(a)}}function Xr(e,t){Dr[e]=t}function Qr(e,t,n){wn.registerMap(e,t,n)}var $r=kt["b"];qr(Pn,Pe),qr(Rn,Ne),qr(Rn,Re),qr(Pn,vt),qr(Rn,yt),qr(Vn,Ft),Fr(de),Br(Tn,pe),Xr("default",Ye),Ur({type:Oe["c"],event:Oe["c"],update:Oe["c"]},o["I"]),Ur({type:Oe["b"],event:Oe["b"],update:Oe["b"]},o["I"]),Ur({type:Oe["f"],event:Oe["f"],update:Oe["f"]},o["I"]),Ur({type:Oe["i"],event:Oe["i"],update:Oe["i"]},o["I"]),Ur({type:Oe["h"],event:Oe["h"],update:Oe["h"]},o["I"]),zr("light",lt),zr("dark",pt)},GDDg:function(e,t,n){"use strict";var r=n("bYtY"),i=n("Qxkt"),o=n("gPAo"),a=n("KxfA"),s=n("B/3G"),l=function(){function e(e,t){this._encode=e,this._schema=t}return e.prototype.get=function(){return{fullDimensions:this._getFullDimensionNames(),encode:this._encode}},e.prototype._getFullDimensionNames=function(){return this._cachedDimNames||(this._cachedDimNames=this._schema?this._schema.makeOutputDimensionNames():[]),this._cachedDimNames},e}();function u(e,t){var n={},i=n.encode={},o=Object(r["g"])(),a=[],u=[],f={};Object(r["k"])(e.dimensions,function(t){var n=e.getDimensionInfo(t),r=n.coordDim;if(r){0;var l=n.coordDimIndex;c(i,r)[l]=t,n.isExtraCoord||(o.set(r,1),d(n.type)&&(a[0]=t),c(f,r)[l]=e.getDimensionIndex(n.name)),n.defaultTooltip&&u.push(t)}s["i"].each(function(e,t){var r=c(i,t),o=n.otherDims[t];null!=o&&!1!==o&&(r[o]=n.name)})});var h=[],p={};o.each(function(e,t){var n=i[t];p[t]=n[0],h=h.concat(n)}),n.dataDimsOnCoord=h,n.dataDimIndicesOnCoord=Object(r["F"])(h,function(t){return e.getDimensionInfo(t).storeDimIndex}),n.encodeFirstDimNotExtra=p;var g=i.label;g&&g.length&&(a=g.slice());var m=i.tooltip;return m&&m.length?u=m.slice():u.length||(u=a.slice()),i.defaultedLabel=a,i.defaultedTooltip=u,n.userOutput=new l(f,t),n}function c(e,t){return e.hasOwnProperty(t)||(e[t]=[]),e[t]}function f(e){return"category"===e?"ordinal":"time"===e?"time":"float"}function d(e){return!("ordinal"===e||"time"===e)}var h,p,g,m,v,y,b,_=function(){function e(e){this.otherDims={},null!=e&&r["m"](this,e)}return e}(),x=_,w=n("4NO4"),k=n("hhxK"),O=n("7G+c"),S=n("0M5g"),M=n("gLkn"),C=r["z"],T=r["F"],j="undefined"===typeof Int32Array?Array:Int32Array,I="e\0\0",D=-1,A=["hasItemOption","_nameList","_idList","_invertedIndicesMap","_dimSummary","userOutput","_rawData","_dimValueGetter","_nameDimIdx","_idDimIdx","_nameRepeatCount"],E=["_approximateExtent"],P=function(){function e(e,t){var n;this.type="list",this._dimOmitted=!1,this._nameList=[],this._idList=[],this._visual={},this._layout={},this._itemVisuals=[],this._itemLayouts=[],this._graphicEls=[],this._approximateExtent={},this._calculationInfo={},this.hasItemOption=!1,this.TRANSFERABLE_METHODS=["cloneShallow","downSample","lttbDownSample","map"],this.CHANGABLE_METHODS=["filterSelf","selectRange"],this.DOWNSAMPLE_METHODS=["downSample","lttbDownSample"];var i=!1;Object(M["d"])(e)?(n=e.dimensions,this._dimOmitted=e.isDimensionOmitted(),this._schema=e):(i=!0,n=e),n=n||["x","y"];for(var o={},a=[],s={},l=!1,u={},c=0;c=t)){var n=this._store,r=n.getProvider();this._updateOrdinalMeta();var i=this._nameList,o=this._idList,a=r.getSource().sourceFormat,l=a===s["f"];if(l&&!r.pure)for(var u=[],c=e;c0},e.prototype.ensureUniqueItemVisual=function(e,t){var n=this._itemVisuals,i=n[e];i||(i=n[e]={});var o=i[t];return null==o&&(o=this.getVisual(t),r["s"](o)?o=o.slice():C(o)&&(o=r["m"]({},o)),i[t]=o),o},e.prototype.setItemVisual=function(e,t,n){var i=this._itemVisuals[e]||{};this._itemVisuals[e]=i,C(t)?r["m"](i,t):i[t]=n},e.prototype.clearAllVisual=function(){this._visual={},this._itemVisuals=[]},e.prototype.setLayout=function(e,t){if(C(e))for(var n in e)e.hasOwnProperty(n)&&this.setLayout(n,e[n]);else this._layout[e]=t},e.prototype.getLayout=function(e){return this._layout[e]},e.prototype.getItemLayout=function(e){return this._itemLayouts[e]},e.prototype.setItemLayout=function(e,t,n){this._itemLayouts[e]=n?r["m"](this._itemLayouts[e]||{},t):t},e.prototype.clearItemLayouts=function(){this._itemLayouts.length=0},e.prototype.setItemGraphicEl=function(e,t){var n=this.hostModel&&this.hostModel.seriesIndex;Object(k["b"])(n,this.dataType,e,t),this._graphicEls[e]=t},e.prototype.getItemGraphicEl=function(e){return this._graphicEls[e]},e.prototype.eachItemGraphicEl=function(e,t){r["k"](this._graphicEls,function(n,r){n&&e&&e.call(t,n,r)})},e.prototype.cloneShallow=function(t){return t||(t=new e(this._schema?this._schema:T(this.dimensions,this._getDimInfo,this),this.hostModel)),v(t,this),t._store=this._store,t},e.prototype.wrapMethod=function(e,t){var n=this[e];"function"===typeof n&&(this.__wrappedMethods=this.__wrappedMethods||[],this.__wrappedMethods.push(e),this[e]=function(){var e=n.apply(this,arguments);return t.apply(this,[e].concat(r["P"](arguments)))})},e.internalField=function(){h=function(e){var t=e._invertedIndicesMap;r["k"](t,function(n,r){var i=e._dimInfos[r],o=i.ordinalMeta,a=e._store;if(o){n=t[r]=new j(o.categories.length);for(var s=0;s1&&(s+="__ec__"+u),r[t]=s}}}(),e}(),L=P,N=n("D5nY");function R(e,t){Object(O["e"])(e)||(e=Object(O["c"])(e)),t=t||{};var n=t.coordDimensions||[],i=t.dimensionsDefine||e.dimensionsDefine||[],o=Object(r["g"])(),a=[],l=F(e,n,i,t.dimensionsCount),u=t.canOmitUnusedDimensions&&Object(M["e"])(l),c=i===e.dimensionsDefine,f=c?Object(M["c"])(e):Object(M["b"])(i),d=t.encodeDefine;!d&&t.encodeDefaulter&&(d=t.encodeDefaulter(e,l));for(var h=Object(r["g"])(d),p=new S["a"](l),g=0;g0&&(i.name=o+(a-1)),a++,t.set(o,a)}}function F(e,t,n,i){var o=Math.max(e.dimensionsDetectedCount||1,t.length,n.length,i||0);return Object(r["k"])(t,function(e){var t;Object(r["z"])(e)&&(t=e.dimsDef)&&(o=Math.max(o,t.length))}),o}function B(e,t,n){var r=t.data;if(n||r.hasOwnProperty(e)){var i=0;while(r.hasOwnProperty(e+i))i++;e+=i}return t.set(e,!0),e}var V=n("HznI"),Y=function(){function e(e){this.coordSysDims=[],this.axisMap=Object(r["g"])(),this.categoryAxisMap=Object(r["g"])(),this.coordSysName=e}return e}();function G(e){var t=e.get("coordinateSystem"),n=new Y(t),r=U[t];if(r)return r(e,n,n.axisMap,n.categoryAxisMap),n}var U={cartesian2d:function(e,t,n,r){var i=e.getReferringComponents("xAxis",w["b"]).models[0],o=e.getReferringComponents("yAxis",w["b"]).models[0];t.coordSysDims=["x","y"],n.set("x",i),n.set("y",o),W(i)&&(r.set("x",i),t.firstCategoryDimIndex=0),W(o)&&(r.set("y",o),null==t.firstCategoryDimIndex&&(t.firstCategoryDimIndex=1))},singleAxis:function(e,t,n,r){var i=e.getReferringComponents("singleAxis",w["b"]).models[0];t.coordSysDims=["single"],n.set("single",i),W(i)&&(r.set("single",i),t.firstCategoryDimIndex=0)},polar:function(e,t,n,r){var i=e.getReferringComponents("polar",w["b"]).models[0],o=i.findAxisModel("radiusAxis"),a=i.findAxisModel("angleAxis");t.coordSysDims=["radius","angle"],n.set("radius",o),n.set("angle",a),W(o)&&(r.set("radius",o),t.firstCategoryDimIndex=0),W(a)&&(r.set("angle",a),null==t.firstCategoryDimIndex&&(t.firstCategoryDimIndex=1))},geo:function(e,t,n,r){t.coordSysDims=["lng","lat"]},parallel:function(e,t,n,i){var o=e.ecModel,a=o.getComponent("parallel",e.get("parallelIndex")),s=t.coordSysDims=a.dimensions.slice();Object(r["k"])(a.parallelAxisIndex,function(e,r){var a=o.getComponent("parallelAxis",e),l=s[r];n.set(l,a),W(a)&&(i.set(l,a),null==t.firstCategoryDimIndex&&(t.firstCategoryDimIndex=r))})}};function W(e){return"category"===e.get("type")}var H=n("7hqr");function q(e,t){var n,i=e.get("coordinateSystem"),o=V["a"].get(i);return t&&t.coordSysDims&&(n=r["F"](t.coordSysDims,function(e){var n={name:e},r=t.axisMap.get(e);if(r){var i=r.get("type");n.type=f(i)}return n})),n||(n=o&&(o.getDimensionsInfo?o.getDimensionsInfo():o.dimensions.slice())||["x","y"]),n}function Z(e,t,n){var i,o;return n&&r["k"](e,function(e,r){var a=e.coordDim,s=n.categoryAxisMap.get(a);s&&(null==i&&(i=r),e.ordinalMeta=s.getOrdinalMeta(),t&&(e.createInvertedIndices=!0)),null!=e.otherDims.itemName&&(o=!0)}),o||null==i||(e[i].otherDims.itemName=0),i}function K(e,t,n){n=n||{};var i,o=t.getSourceManager(),a=!1;e?(a=!0,i=Object(O["c"])(e)):(i=o.getSource(),a=i.sourceFormat===s["f"]);var l=G(t),u=q(t,l),c=n.useEncodeDefaulter,f=r["v"](c)?c:c?r["i"](N["c"],u,t):null,d={coordDimensions:u,generateCoord:n.generateCoord,encodeDefine:t.getEncode(),encodeDefaulter:f,canOmitUnusedDimensions:!a},h=R(i,d),p=Z(h.dimensions,n.createInvertedIndices,l),g=a?null:o.getSharedDataStore(h),m=Object(H["a"])(t,{schema:h,store:g}),v=new L(h,t);v.setCalculationInfo(m);var y=null!=p&&X(i)?function(e,t,n,r){return r===p?n:this.defaultDimValueGetter(e,t,n,r)}:null;return v.hasItemOption=!1,v.initData(a?i:g,null,y),v}function X(e){if(e.sourceFormat===s["f"]){var t=Q(e.data||[]);return null!=t&&!r["s"](Object(w["g"])(t))}}function Q(e){var t=0;while(t=4)return!1;for(d=e.parentType,e.parentType="paragraph";h3)){if(e.sCount[h]>=e.blkIndent&&(l=e.bMarks[h]+e.tShift[h],u=e.eMarks[h],l=u)))){c=61===f?1:2;break}if(!(e.sCount[h]<0)){for(i=!1,o=0,a=p.length;o0&&void 0!==arguments[0]?arguments[0]:{},t=e.history||Object(c["b"])(),n={initialReducer:{router:I(t)},setupMiddlewares:function(e){return[D(t)].concat(Object(o["a"])(e))},setupApp:function(e){e._history=z(t)}},r=Object(p["a"])(e,n),a=r.start;return r.router=s,r.start=l,r;function s(e){u()(A(e),"[app.router] router should be function, but got ".concat(Object(i["a"])(e))),r._router=e}function l(e){L(e)&&(e=d.a.querySelector(e),u()(e,"[app.start] container ".concat(e," not found"))),u()(!e||P(e),"[app.start] container should be HTMLElement"),u()(r._router,"[app.start] router must be registered before app.start()"),r._store||a.call(r);var t=r._store;if(r._getProvider=N.bind(null,t,r),!e)return N(t,this,this._router);R(e,t,r,r._router),r._plugin.apply("onHmr")(R.bind(null,e,t,r))}}function P(e){return"object"===Object(i["a"])(e)&&null!==e&&e.nodeType&&e.nodeName}function L(e){return"string"===typeof e}function N(e,t,n){var i=function(i){return s.a.createElement(h["a"],{store:e},n(Object(r["a"])({app:t,history:t._history},i)))};return i}function R(e,t,r,i){var o=n("i8i4");o.render(s.a.createElement(N(t,r,i)),e)}function z(e){var t=e.listen;return e.listen=function(n){var r=n.toString(),i="handleLocationChange"===n.name&&r.indexOf("onLocationChanged")>-1||r.indexOf(".inTimeTravelling")>-1&&r.indexOf(".inTimeTravelling")>-1&&r.indexOf("arguments[2]")>-1;return n(e.location,e.action),t.call(e,function(){for(var e=arguments.length,t=new Array(e),r=0;r0&&r++,"text"===i[t].type&&t+11||t>0&&!e.noHeader,r=0;Object(i["k"])(e.blocks,function(e){d(e).planLayout(e);var t=e.__gapLevelBetweenSubBlocks;t>=r&&(r=t+(!n||t&&("section"!==e.type||e.noHeader)?0:1))}),e.__gapLevelBetweenSubBlocks=r},build:function(e,t,n,i){var o=t.noHeader,a=m(t),u=p(e,t,o?n:a.html,i);if(o)return u;var c=Object(r["f"])(t.header,"ordinal",e.useUTC),f=l(i,e.renderMode).nameStyle;return"richText"===e.renderMode?_(e,c,f)+a.richText+u:v('
'+Object(r["c"])(c)+"
"+u,n)}},nameValue:{planLayout:function(e){e.__gapLevelBetweenSubBlocks=0},build:function(e,t,n,o){var a=e.renderMode,s=t.noName,u=t.noValue,c=!t.markerType,f=t.name,d=t.value,h=e.useUTC;if(!s||!u){var p=c?"":e.markupStyleCreator.makeTooltipMarker(t.markerType,t.markerColor||"#333",a),g=s?"":Object(r["f"])(f,"ordinal",h),m=t.valueType,w=u?[]:Object(i["s"])(d)?Object(i["F"])(d,function(e,t){return Object(r["f"])(e,Object(i["s"])(m)?m[t]:m,h)}):[Object(r["f"])(d,Object(i["s"])(m)?m[0]:m,h)],k=!c||!s,O=!c&&s,S=l(o,a),M=S.nameStyle,C=S.valueStyle;return"richText"===a?(c?"":p)+(s?"":_(e,g,M))+(u?"":x(e,w,k,O,C)):v((c?"":p)+(s?"":y(g,!c,M))+(u?"":b(w,k,O,C)),n)}}}};function p(e,t,n,r){var a=[],s=t.blocks||[];Object(i["b"])(!s||Object(i["s"])(s)),s=s||[];var l=e.orderMode;if(t.sortBlocks&&l){s=s.slice();var u={valueAsc:"asc",valueDesc:"desc"};if(Object(i["p"])(u,l)){var c=new o["a"](u[l],null);s.sort(function(e,t){return c.evaluate(e.sortParam,t.sortParam)})}else"seriesDesc"===l&&s.reverse()}var f=m(t);if(Object(i["k"])(s,function(t,n){var i=d(t).build(e,t,n>0?f.html:0,r);null!=i&&a.push(i)}),a.length)return"richText"===e.renderMode?a.join(f.richText):v(a.join(""),n)}function g(e,t,n,r,i,o){if(e){var a=d(e);a.planLayout(e);var s={useUTC:i,renderMode:n,orderMode:r,markupStyleCreator:t};return a.build(s,e,0,o)}}function m(e){var t=e.__gapLevelBetweenSubBlocks;return{html:u[t],richText:c[t]}}function v(e,t){var n='
',r="margin: "+t+"px 0 0";return'
'+e+n+"
"}function y(e,t,n){var i=t?"margin-left:2px":"";return''+Object(r["c"])(e)+""}function b(e,t,n,o){var a=n?"10px":"20px",s=t?"float:right;margin-left:"+a:"";return''+Object(i["F"])(e,function(e){return Object(r["c"])(e)}).join("  ")+""}function _(e,t,n){return e.markupStyleCreator.wrapRichTextStyle(t,n)}function x(e,t,n,r,i){var o=[i],a=r?10:20;return n&&o.push({padding:[0,0,0,a],align:"right"}),e.markupStyleCreator.wrapRichTextStyle(t.join(" "),o)}function w(e,t){var n=e.getData().getItemVisual(t,"style"),i=n[e.visualDrawType];return Object(r["b"])(i)}function k(e,t){var n=e.get("padding");return null!=n?n:"richText"===t?[8,10]:10}var O=function(){function e(){this.richTextStyles={},this._nextStyleNameId=Object(a["f"])()}return e.prototype._generateStyleName=function(){return"__EC_aUTo_"+this._nextStyleNameId++},e.prototype.makeTooltipMarker=function(e,t,n){var o="richText"===n?this._generateStyleName():null,a=Object(r["e"])({color:t,type:e,renderMode:n,markerId:o});return Object(i["A"])(a)?a:(this.richTextStyles[o]=a.style,a.content)},e.prototype.wrapRichTextStyle=function(e,t){var n={};Object(i["s"])(t)?Object(i["k"])(t,function(e){return Object(i["m"])(n,e)}):Object(i["m"])(n,t);var r=this._generateStyleName();return this.richTextStyles[r]=n,"{"+r+"|"+e+"}"},e}()},Ioao:function(e,t,n){var r=n("heNW"),i=Math.max;function o(e,t,n){return t=i(void 0===t?e.length-1:t,0),function(){var o=arguments,a=-1,s=i(o.length-t,0),l=Array(s);while(++a=0||(c.push(e),Object(l["v"])(e)&&(e={install:e}),e.install(f))}},IwbS:function(e,t,n){"use strict";n.r(t),n.d(t,"extendShape",function(){return L}),n.d(t,"extendPath",function(){return R}),n.d(t,"registerShape",function(){return z}),n.d(t,"getShapeClass",function(){return F}),n.d(t,"makePath",function(){return B}),n.d(t,"makeImage",function(){return V}),n.d(t,"mergePath",function(){return G}),n.d(t,"resizePath",function(){return U}),n.d(t,"subPixelOptimizeLine",function(){return W}),n.d(t,"subPixelOptimizeRect",function(){return H}),n.d(t,"subPixelOptimize",function(){return q}),n.d(t,"getTransform",function(){return Z}),n.d(t,"applyTransform",function(){return K}),n.d(t,"transformDirection",function(){return X}),n.d(t,"groupTransition",function(){return J}),n.d(t,"clipPointsByRect",function(){return ee}),n.d(t,"clipRectByRect",function(){return te}),n.d(t,"createIcon",function(){return ne}),n.d(t,"linePolygonIntersect",function(){return re}),n.d(t,"lineLineIntersect",function(){return ie}),n.d(t,"setTooltipConfig",function(){return se});var r=n("NC18"),i=n("Fofx"),o=n("QBsz"),a=n("y+Vt");n.d(t,"Path",function(){return a["b"]});var s=n("hYLj"),l=n("Dagg");n.d(t,"Image",function(){return l["a"]});var u=n("LcXL");n.d(t,"Group",function(){return u["a"]});var c=n("dqUG");n.d(t,"Text",function(){return c["a"]});var f=n("2fw6");n.d(t,"Circle",function(){return f["a"]});var d=n("rmlV");n.d(t,"Ellipse",function(){return d["a"]});var h=n("SqI9");n.d(t,"Sector",function(){return h["a"]});var p=n("RXMa");n.d(t,"Ring",function(){return p["a"]});var g=n("h7HQ");n.d(t,"Polygon",function(){return g["a"]});var m=n("1Jh7");n.d(t,"Polyline",function(){return m["a"]});var v=n("x6Kt");n.d(t,"Rect",function(){return v["a"]});var y=n("yxFR");n.d(t,"Line",function(){return y["a"]});var b=n("rA99");n.d(t,"BezierCurve",function(){return b["a"]});var _=n("jTL6");n.d(t,"Arc",function(){return _["a"]});var x=n("1MYJ");n.d(t,"CompoundPath",function(){return x["a"]});var w=n("SKnc");n.d(t,"LinearGradient",function(){return w["a"]});var k=n("3e3G");n.d(t,"RadialGradient",function(){return k["a"]});var O=n("mFDi");n.d(t,"BoundingRect",function(){return O["a"]});var S=n("yoD8");n.d(t,"OrientedBoundingRect",function(){return S["a"]});var M=n("3Oj7");n.d(t,"Point",function(){return M["a"]});var C=n("OS9S");n.d(t,"IncrementalDisplayable",function(){return C["a"]});var T=n("nPnh"),j=n("bYtY"),I=n("hhxK"),D=n("3qvL");n.d(t,"updateProps",function(){return D["h"]}),n.d(t,"initProps",function(){return D["c"]}),n.d(t,"removeElement",function(){return D["e"]}),n.d(t,"removeElementWithFadeOut",function(){return D["f"]}),n.d(t,"isElementRemoved",function(){return D["d"]});var A=Math.max,E=Math.min,P={};function L(e){return a["b"].extend(e)}var N=r["c"];function R(e,t){return N(e,t)}function z(e,t){P[e]=t}function F(e){if(P.hasOwnProperty(e))return P[e]}function B(e,t,n,i){var o=r["b"](e,t);return n&&("center"===i&&(n=Y(n,o.getBoundingRect())),U(o,n)),o}function V(e,t,n){var r=new l["a"]({style:{image:e,x:t.x,y:t.y,width:t.width,height:t.height},onload:function(e){if("center"===n){var i={width:e.width,height:e.height};r.setStyle(Y(t,i))}}});return r}function Y(e,t){var n,r=t.width/t.height,i=e.height*r;i<=e.width?n=e.height:(i=e.width,n=i/r);var o=e.x+e.width/2,a=e.y+e.height/2;return{x:o-i/2,y:a-n/2,width:i,height:n}}var G=r["d"];function U(e,t){if(e.applyTransform){var n=e.getBoundingRect(),r=n.calculateTransform(t);e.applyTransform(r)}}function W(e){return T["b"](e.shape,e.shape,e.style),e}function H(e){return T["c"](e.shape,e.shape,e.style),e}var q=T["a"];function Z(e,t){var n=i["c"]([]);while(e&&e!==t)i["e"](n,e.getLocalTransform(),n),e=e.parent;return n}function K(e,t,n){return t&&!Object(j["t"])(t)&&(t=s["a"].getLocalTransform(t)),n&&(t=i["d"]([],t)),o["b"]([],e,t)}function X(e,t,n){var r=0===t[4]||0===t[5]||0===t[0]?1:Math.abs(2*t[4]/t[0]),i=0===t[4]||0===t[5]||0===t[2]?1:Math.abs(2*t[4]/t[2]),o=["left"===e?-r:"right"===e?r:0,"top"===e?-i:"bottom"===e?i:0];return o=K(o,t,n),Math.abs(o[0])>Math.abs(o[1])?o[0]>0?"right":"left":o[1]>0?"bottom":"top"}function Q(e){return!e.isGroup}function $(e){return null!=e.shape}function J(e,t,n){if(e&&t){var r=i(e);t.traverse(function(e){if(Q(e)&&e.anid){var t=r[e.anid];if(t){var i=o(e);e.attr(o(t)),Object(D["h"])(e,i,n,Object(I["a"])(e).dataIndex)}}})}function i(e){var t={};return e.traverse(function(e){Q(e)&&e.anid&&(t[e.anid]=e)}),t}function o(e){var t={x:e.x,y:e.y,rotation:e.rotation};return $(e)&&(t.shape=Object(j["m"])({},e.shape)),t}}function ee(e,t){return Object(j["F"])(e,function(e){var n=e[0];n=A(n,t.x),n=E(n,t.x+t.width);var r=e[1];return r=A(r,t.y),r=E(r,t.y+t.height),[n,r]})}function te(e,t){var n=A(e.x,t.x),r=E(e.x+e.width,t.x+t.width),i=A(e.y,t.y),o=E(e.y+e.height,t.y+t.height);if(r>=n&&o>=i)return{x:n,y:i,width:r-n,height:o-i}}function ne(e,t,n){var r=Object(j["m"])({rectHover:!0},t),i=r.style={strokeNoScale:!0};if(n=n||{x:-1,y:-1,width:2,height:2},e)return 0===e.indexOf("image://")?(i.image=e.slice(8),Object(j["j"])(i,n),new l["a"](r)):B(e.replace("path://",""),r,n,"center")}function re(e,t,n,r,i){for(var o=0,a=i[i.length-1];o1)return!1;var m=oe(h,p,c,f)/d;return!(m<0||m>1)}function oe(e,t,n,r){return e*r-n*t}function ae(e){return e<=1e-6&&e>=-1e-6}function se(e){var t=e.itemTooltipOption,n=e.componentModel,r=e.itemName,i=Object(j["A"])(t)?{formatter:t}:t,o=n.mainType,a=n.componentIndex,s={componentType:o,name:r,$vars:["name"]};s[o+"Index"]=a;var l=e.formatterParamsExtra;l&&Object(j["k"])(Object(j["D"])(l),function(e){Object(j["p"])(s,e)||(s[e]=l[e],s.$vars.push(e))});var u=Object(I["a"])(e.el);u.componentMainType=o,u.componentIndex=a,u.tooltipConfig={name:r,option:Object(j["j"])({content:r,formatterParams:s},i)}}z("circle",f["a"]),z("ellipse",d["a"]),z("sector",h["a"]),z("ring",p["a"]),z("polygon",g["a"]),z("polyline",m["a"]),z("rect",v["a"]),z("line",y["a"]),z("bezierCurve",b["a"]),z("arc",_["a"])},JHRd:function(e,t,n){var r=n("Kz5y"),i=r.Uint8Array;e.exports=i},JHgL:function(e,t,n){var r=n("QkVE");function i(e){return r(this,e).get(e)}e.exports=i},JSQU:function(e,t,n){var r=n("YESw"),i="__lodash_hash_undefined__";function o(e,t){var n=this.__data__;return this.size+=this.has(e)?0:1,n[e]=r&&void 0===t?i:t,this}e.exports=o},JTzB:function(e,t,n){var r=n("NykK"),i=n("ExA7"),o="[object Arguments]";function a(e){return i(e)&&r(e)==o}e.exports=a},KCsZ:function(e,t,n){"use strict";n.d(t,"a",function(){return i});var r=n("bYtY");function i(e,t){for(var n=0;n=0||o&&r["q"](o,l)<0)){var u=n.getShallow(l,t);null!=u&&(a[e[s][0]]=u)}}return a}}},KMkd:function(e,t){function n(){this.__data__=[],this.size=0}e.exports=n},KOyK:function(e,t,n){"use strict";var r=/^<([a-zA-Z0-9.!#$%&'*+\/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*)>/,i=/^<([a-zA-Z][a-zA-Z0-9+.\-]{1,31}):([^<>\x00-\x20]*)>/;e.exports=function(e,t){var n,o,a,s,l,u,c=e.pos;return 60===e.src.charCodeAt(c)&&(n=e.src.slice(c),!(n.indexOf(">")<0)&&(i.test(n)?(o=n.match(i),s=o[0].slice(1,-1),l=e.md.normalizeLink(s),!!e.md.validateLink(l)&&(t||(u=e.push("link_open","a",1),u.attrs=[["href",l]],u.markup="autolink",u.info="auto",u=e.push("text","",0),u.content=e.md.normalizeLinkText(s),u=e.push("link_close","a",-1),u.markup="autolink",u.info="auto"),e.pos+=o[0].length,!0)):!!r.test(n)&&(a=n.match(r),s=a[0].slice(1,-1),l=e.md.normalizeLink("mailto:"+s),!!e.md.validateLink(l)&&(t||(u=e.push("link_open","a",1),u.attrs=[["href",l]],u.markup="autolink",u.info="auto",u=e.push("text","",0),u.content=e.md.normalizeLinkText(s),u=e.push("link_close","a",-1),u.markup="autolink",u.info="auto"),e.pos+=a[0].length,!0))))}},KfNM:function(e,t){var n=Object.prototype,r=n.toString;function i(e){return r.call(e)}e.exports=i},KxfA:function(e,t,n){"use strict";n.d(t,"a",function(){return d}),n.d(t,"c",function(){return g}),n.d(t,"b",function(){return y}),n.d(t,"d",function(){return x}),n.d(t,"e",function(){return k});var r,i,o,a,s,l=n("bYtY"),u=n("4NO4"),c=n("7G+c"),f=n("B/3G"),d=function(){function e(e,t){var n=Object(c["e"])(e)?e:Object(c["c"])(e);this._source=n;var r=this._data=n.data;n.sourceFormat===f["g"]&&(this._offset=0,this._dimSize=t,this._data=r),s(this,r,n)}return e.prototype.getSource=function(){return this._source},e.prototype.count=function(){return 0},e.prototype.getItem=function(e,t){},e.prototype.appendData=function(e){},e.prototype.clean=function(){},e.protoInitialize=function(){var t=e.prototype;t.pure=!1,t.persistent=!0}(),e.internalField=function(){var e;s=function(e,i,o){var s=o.sourceFormat,u=o.seriesLayoutBy,c=o.startIndex,d=o.dimensionsDefine,h=a[w(s,u)];if(Object(l["m"])(e,h),s===f["g"])e.getItem=t,e.count=r,e.fillStorage=n;else{var p=g(s,u);e.getItem=Object(l["c"])(p,null,i,c,d);var m=y(s,u);e.count=Object(l["c"])(m,null,i,c,d)}};var t=function(e,t){e-=this._offset,t=t||[];for(var n=this._data,r=this._dimSize,i=r*e,o=0;ou&&(u=h)}s[0]=l,s[1]=u}},r=function(){return this._data?this._data.length/this._dimSize:0};function i(e){for(var t=0;t-1?(l+="top:50%",c+="translateY(-50%) rotate("+(o="left"===a?-225:-45)+"deg)"):(l+="left:50%",c+="translateX(-50%) rotate("+(o="top"===a?225:45)+"deg)");var f=o*Math.PI/180,d=s+i,h=d*Math.abs(Math.cos(f))+d*Math.abs(Math.sin(f)),g=Math.round(100*((h-Math.SQRT2*i)/2+Math.SQRT2*i-(h-d)/2))/100;l+=";"+a+":-"+g+"px";var m=t+" solid "+i+"px;",v=["position:absolute;width:"+s+"px;height:"+s+"px;",l+";"+c+";","border-bottom:"+m,"border-right:"+m,"background-color:"+r+";"];return'
'}function C(e,t){var n="cubic-bezier(0.23,1,0.32,1)",r=" "+e/2+"s "+n,i="opacity"+r+",visibility"+r;return t||(r=" "+e+"s "+n,i+=c["a"].transformSupported?","+k+r:",left"+r+",top"+r),w+":"+i}function T(e,t,n){var r=e.toFixed(0)+"px",i=t.toFixed(0)+"px";if(!c["a"].transformSupported)return n?"top:"+i+";left:"+r+";":[["top",i],["left",r]];var o=c["a"].transform3dSupported,a="translate"+(o?"3d":"")+"("+r+","+i+(o?",0":"")+")";return n?"top:0;left:0;"+k+":"+a+";":[["top",0],["left",0],[v,a]]}function j(e){var t=[],n=e.get("fontSize"),r=e.getTextColor();r&&t.push("color:"+r),t.push("font:"+e.getFont()),n&&t.push("line-height:"+Math.round(3*n/2)+"px");var i=e.get("textShadowColor"),o=e.get("textShadowBlur")||0,a=e.get("textShadowOffsetX")||0,s=e.get("textShadowOffsetY")||0;return i&&o&&t.push("text-shadow:"+a+"px "+s+"px "+o+"px "+i),Object(u["k"])(["decoration","align"],function(n){var r=e.get(n);r&&t.push("text-"+n+":"+r)}),t.join(";")}function I(e,t,n){var r=[],i=e.get("transitionDuration"),o=e.get("backgroundColor"),a=e.get("shadowBlur"),s=e.get("shadowColor"),l=e.get("shadowOffsetX"),d=e.get("shadowOffsetY"),h=e.getModel("textStyle"),g=Object(x["d"])(e,"html"),m=l+"px "+d+"px "+a+"px "+s;return r.push("box-shadow:"+m),t&&i&&r.push(C(i,n)),o&&(c["a"].canvasSupported?r.push("background-color:"+o):(r.push("background-color:#"+Object(f["f"])(o)),r.push("filter:alpha(opacity=70)"))),Object(u["k"])(["width","color","radius"],function(t){var n="border-"+t,i=Object(p["h"])(n),o=e.get(i);null!=o&&r.push(n+":"+o+("color"===t?"":"px"))}),r.push(j(h)),null!=g&&r.push("padding:"+Object(p["g"])(g).join("px ")+"px"),r.join(";")+";"}function D(e,t,n,r,i){var o=t&&t.painter;if(n){var a=o&&o.getViewportRoot();a&&Object(h["c"])(e,a,document.body,r,i)}else{e[0]=r,e[1]=i;var s=o&&o.getViewportRootOffset();s&&(e[0]+=s.offsetLeft,e[1]+=s.offsetTop)}e[2]=e[0]/t.getWidth(),e[3]=e[1]/t.getHeight()}var A=function(){function e(e,t,n){if(this._show=!1,this._styleCoord=[0,0,0,0],this._enterable=!0,this._firstShow=!0,this._longHide=!0,c["a"].wxa)return null;var r=document.createElement("div");r.domBelongToZr=!0,this.el=r;var i=this._zr=t.getZr(),o=this._appendToBody=n&&n.appendToBody;D(this._styleCoord,i,o,t.getWidth()/2,t.getHeight()/2),o?document.body.appendChild(r):e.appendChild(r),this._container=e;var a=this;r.onmouseenter=function(){a._enterable&&(clearTimeout(a._hideTimeout),a._show=!0),a._inContent=!0},r.onmousemove=function(e){if(e=e||window.event,!a._enterable){var t=i.handler,n=i.painter.getViewportRoot();Object(d["d"])(n,e,!0),t.dispatch("mousemove",e)}},r.onmouseleave=function(){a._inContent=!1,a._enterable&&a._show&&a.hideLater(a._hideDelay)}}return e.prototype.update=function(e){var t=this._container,n=_(t,"position"),r=t.style;"absolute"!==r.position&&"absolute"!==n&&(r.position="relative");var i=e.get("alwaysShowContent");i&&this._moveIfResized(),this.el.className=e.get("className")||""},e.prototype.show=function(e,t){clearTimeout(this._hideTimeout),clearTimeout(this._longHideTimeout);var n=this.el,r=n.style,i=this._styleCoord;n.innerHTML?r.cssText=O+I(e,!this._firstShow,this._longHide)+T(i[0],i[1],!0)+"border-color:"+Object(p["b"])(t)+";"+(e.get("extraCssText")||"")+";pointer-events:"+(this._enterable?"auto":"none"):r.display="none",this._show=!0,this._firstShow=!1,this._longHide=!1},e.prototype.setContent=function(e,t,n,r,i){var o=this.el;if(null!=e){var a="";if(Object(u["A"])(i)&&"item"===n.get("trigger")&&!g(n)&&(a=M(n,r,i)),Object(u["A"])(e))o.innerHTML=e+a;else if(e){o.innerHTML="",Object(u["s"])(e)||(e=[e]);for(var s=0;s=0?this._tryShow(n,r):"leave"===e&&this._hide(r))},this))},t.prototype._keepShow=function(){var e=this._tooltipModel,t=this._ecModel,n=this._api;if(null!=this._lastX&&null!=this._lastY&&"none"!==e.get("triggerOn")){var r=this;clearTimeout(this._refreshUpdateTimeout),this._refreshUpdateTimeout=setTimeout(function(){!n.isDisposed()&&r.manuallyShowTip(e,t,n,{x:r._lastX,y:r._lastY,dataByCoordSys:r._lastDataByCoordSys})})}},t.prototype.manuallyShowTip=function(e,t,n,r){if(r.from!==this.uid&&!c["a"].node){var i=le(r,n);this._ticket="";var o=r.dataByCoordSys,a=he(r,t,n);if(a){var s=a.el.getBoundingRect().clone();s.applyTransform(a.el.transform),this._tryShow({offsetX:s.x+s.width/2,offsetY:s.y+s.height/2,target:a.el,position:r.position,positionDefault:"bottom"},i)}else if(r.tooltip&&null!=r.x&&null!=r.y){var l=oe;l.x=r.x,l.y=r.y,l.update(),Object($["a"])(l).tooltipConfig={name:null,option:r.tooltip},this._tryShow({offsetX:r.x,offsetY:r.y,target:l},i)}else if(o)this._tryShow({offsetX:r.x,offsetY:r.y,position:r.position,dataByCoordSys:o,tooltipOption:r.tooltipOption},i);else if(null!=r.seriesIndex){if(this._manuallyAxisShowTip(e,t,n,r))return;var u=Object(G["a"])(r,t),f=u.point[0],d=u.point[1];null!=f&&null!=d&&this._tryShow({offsetX:f,offsetY:d,target:u.el,position:r.position,positionDefault:"bottom"},i)}else null!=r.x&&null!=r.y&&(n.dispatchAction({type:"updateAxisPointer",x:r.x,y:r.y}),this._tryShow({offsetX:r.x,offsetY:r.y,position:r.position,target:n.getZr().findHover(r.x,r.y).target},i))}},t.prototype.manuallyHideTip=function(e,t,n,r){var i=this._tooltipContent;!this._alwaysShowContent&&this._tooltipModel&&i.hideLater(this._tooltipModel.get("hideDelay")),this._lastX=this._lastY=this._lastDataByCoordSys=null,r.from!==this.uid&&this._hide(le(r,n))},t.prototype._manuallyAxisShowTip=function(e,t,n,r){var i=r.seriesIndex,o=r.dataIndex,a=t.getComponent("axisPointer").coordSysAxesInfo;if(null!=i&&null!=o&&null!=a){var s=t.getSeriesByIndex(i);if(s){var l=s.getData(),u=se([l.getItemModel(o),s,(s.coordinateSystem||{}).model],this._tooltipModel);if("axis"===u.get("trigger"))return n.dispatchAction({type:"updateAxisPointer",seriesIndex:i,dataIndex:o,position:r.position}),!0}}},t.prototype._tryShow=function(e,t){var n=e.target,r=this._tooltipModel;if(r){this._lastX=e.offsetX,this._lastY=e.offsetY;var i=e.dataByCoordSys;if(i&&i.length)this._showAxisTooltip(i,e);else if(n){var o,a;this._lastDataByCoordSys=null,Object(ee["a"])(n,function(e){return null!=Object($["a"])(e).dataIndex?(o=e,!0):null!=Object($["a"])(e).tooltipConfig?(a=e,!0):void 0},!0),o?this._showSeriesItemTooltip(e,o,t):a?this._showComponentItemTooltip(e,a,t):this._hide(t)}else this._lastDataByCoordSys=null,this._hide(t)}},t.prototype._showOrMove=function(e,t){var n=e.get("showDelay");t=u["c"](t,this),clearTimeout(this._showTimout),n>0?this._showTimout=setTimeout(t,n):t()},t.prototype._showAxisTooltip=function(e,t){var n=this._ecModel,r=this._tooltipModel,i=[t.offsetX,t.offsetY],o=se([t.tooltipOption],r),a=this._renderMode,s=[],l=Object(x["c"])("section",{blocks:[],noHeader:!0}),c=[],f=new x["a"];re(e,function(e){re(e.dataByAxis,function(e){var t=n.getComponent(e.axisDim+"Axis",e.axisIndex),r=e.value;if(t&&null!=r){var i=Z["d"](r,t.axis,n,e.seriesDataIndices,e.valueLabelOpt),o=Object(x["c"])("section",{header:i,noHeader:!u["Q"](i),sortBlocks:!0,blocks:[]});l.blocks.push(o),u["k"](e.seriesDataIndices,function(l){var u=n.getSeriesByIndex(l.seriesIndex),d=l.dataIndexInside,h=u.getDataParams(d);if(!(h.dataIndex<0)){h.axisDim=e.axisDim,h.axisIndex=e.axisIndex,h.axisType=e.axisType,h.axisId=e.axisId,h.axisValue=q["c"](t.axis,{value:r}),h.axisValueLabel=i,h.marker=f.makeTooltipMarker("item",p["b"](h.color),a);var g=Object(J["b"])(u.formatTooltip(d,!0,null));g.markupFragment&&o.blocks.push(g.markupFragment),g.markupText&&c.push(g.markupText),s.push(h)}})}})}),l.blocks.reverse(),c.reverse();var d=t.position,h=o.get("order"),g=Object(x["b"])(l,f,a,h,n.get("useUTC"),o.get("textStyle"));g&&c.unshift(g);var m="richText"===a?"\n\n":"
",v=c.join(m);this._showOrMove(o,function(){this._updateContentNotChangedOnAxis(e,s)?this._updatePosition(o,d,i[0],i[1],this._tooltipContent,s):this._showTooltipContent(o,v,s,Math.random()+"",i[0],i[1],d,null,f)})},t.prototype._showSeriesItemTooltip=function(e,t,n){var r=this._ecModel,i=Object($["a"])(t),o=i.seriesIndex,a=r.getSeriesByIndex(o),s=i.dataModel||a,l=i.dataIndex,u=i.dataType,c=s.getData(u),f=this._renderMode,d=e.positionDefault,h=se([c.getItemModel(l),s,a&&(a.coordinateSystem||{}).model],this._tooltipModel,d?{position:d}:null),g=h.get("trigger");if(null==g||"item"===g){var m=s.getDataParams(l,u),v=new x["a"];m.marker=v.makeTooltipMarker("item",p["b"](m.color),f);var y=Object(J["b"])(s.formatTooltip(l,!1,u)),b=h.get("order"),_=y.markupFragment?Object(x["b"])(y.markupFragment,v,f,b,r.get("useUTC"),h.get("textStyle")):y.markupText,w="item_"+s.name+"_"+l;this._showOrMove(h,function(){this._showTooltipContent(h,_,m,w,e.offsetX,e.offsetY,e.position,e.target,v)}),n({type:"showTip",dataIndexInside:l,dataIndex:c.getRawIndex(l),seriesIndex:o,from:this.uid})}},t.prototype._showComponentItemTooltip=function(e,t,n){var r=Object($["a"])(t),i=r.tooltipConfig,o=i.option||{};if(u["A"](o)){var a=o;o={content:a,formatter:a}}var s=[o],l=this._ecModel.getComponent(r.componentMainType,r.componentIndex);l&&s.push(l),s.push({formatter:o.content});var c=e.positionDefault,f=se(s,this._tooltipModel,c?{position:c}:null),d=f.get("content"),h=Math.random()+"",p=new x["a"];this._showOrMove(f,function(){var n=u["d"](f.get("formatterParams")||{});this._showTooltipContent(f,d,n,h,e.offsetX,e.offsetY,e.position,t,p)}),n({type:"showTip",from:this.uid})},t.prototype._showTooltipContent=function(e,t,n,r,i,o,a,s,l){if(this._ticket="",e.get("showContent")&&e.get("show")){var c=this._tooltipContent,f=e.get("formatter");a=a||e.get("position");var d=t,h=this._getNearestPoint([i,o],n,e.get("trigger"),e.get("borderColor")),g=h.color;if(f)if(u["A"](f)){var m=e.ecModel.get("useUTC"),v=u["s"](n)?n[0]:n,y=v&&v.axisType&&v.axisType.indexOf("time")>=0;d=f,y&&(d=Object(Q["h"])(v.axisValue,d,m)),d=p["d"](d,n,!0)}else if(u["v"](f)){var b=ne(function(t,r){t===this._ticket&&(c.setContent(r,l,e,g,a),this._updatePosition(e,a,i,o,c,n,s))},this);this._ticket=r,d=f(n,r,b)}else d=f;c.setContent(d,l,e,g,a),c.show(e,g),this._updatePosition(e,a,i,o,c,n,s)}},t.prototype._getNearestPoint=function(e,t,n,r){return"axis"===n||u["s"](t)?{color:r||("html"===this._renderMode?"#fff":"none")}:u["s"](t)?void 0:{color:r||t.color||t.borderColor}},t.prototype._doUpdatePosition=function(e,t,n,r,i,o,a){var s=this._api.getWidth(),l=this._api.getHeight();t=t||e.get("position");var c=i.getSize(),f=e.get("align"),d=e.get("verticalAlign"),h=a&&a.getBoundingRect().clone();if(a&&h.applyTransform(a.transform),u["v"](t)&&(t=t([n,r],o,i.el,h,{viewSize:[s,l],contentSize:c.slice()})),u["s"](t))n=ie(t[0],s),r=ie(t[1],l);else if(u["z"](t)){var p=t;p.width=c[0],p.height=c[1];var m=U["d"](p,{width:s,height:l});n=m.x,r=m.y,f=null,d=null}else if(u["A"](t)&&a){var v=fe(t,h,c,e.get("borderWidth"));n=v[0],r=v[1]}else{v=ue(n,r,i,s,l,f?null:20,d?null:20);n=v[0],r=v[1]}if(f&&(n-=de(f)?c[0]/2:"right"===f?c[0]:0),d&&(r-=de(d)?c[1]/2:"bottom"===d?c[1]:0),g(e)){v=ce(n,r,i,s,l);n=v[0],r=v[1]}i.moveTo(n,r)},t.prototype._updateContentNotChangedOnAxis=function(e,t){var n=this._lastDataByCoordSys,r=this._cbParamsList,i=!!n&&n.length===e.length;return i&&re(n,function(n,o){var a=n.dataByAxis||[],s=e[o]||{},l=s.dataByAxis||[];i=i&&a.length===l.length,i&&re(a,function(e,n){var o=l[n]||{},a=e.seriesDataIndices||[],s=o.seriesDataIndices||[];i=i&&e.value===o.value&&e.axisType===o.axisType&&e.axisId===o.axisId&&a.length===s.length,i&&re(a,function(e,t){var n=s[t];i=i&&e.seriesIndex===n.seriesIndex&&e.dataIndex===n.dataIndex}),r&&u["k"](e.seriesDataIndices,function(e){var n=e.seriesIndex,o=t[n],a=r[n];o&&a&&a.data!==o.data&&(i=!1)})})}),this._lastDataByCoordSys=e,this._cbParamsList=t,!!i},t.prototype._hide=function(e){this._lastDataByCoordSys=null,e({type:"hideTip",from:this.uid})},t.prototype.dispose=function(e,t){c["a"].node||(this._tooltipContent.dispose(),H["b"]("itemTooltip",t))},t.type="tooltip",t}(X["a"]);function se(e,t,n){var r,i=t.ecModel;n?(r=new W["a"](n,i,i),r=new W["a"](t.option,r,i)):r=t;for(var o=e.length-1;o>=0;o--){var a=e[o];a&&(a instanceof W["a"]&&(a=a.get("tooltip",!0)),u["A"](a)&&(a={formatter:a}),a&&(r=new W["a"](a,r,i)))}return r}function le(e,t){return e.dispatchAction||u["c"](t.dispatchAction,t)}function ue(e,t,n,r,i,o,a){var s=n.getSize(),l=s[0],u=s[1];return null!=o&&(e+l+o+2>r?e-=l+o:e+=o),null!=a&&(t+u+a>i?t-=u+a:t+=a),[e,t]}function ce(e,t,n,r,i){var o=n.getSize(),a=o[0],s=o[1];return e=Math.min(e+a,r)-a,t=Math.min(t+s,i)-s,e=Math.max(e,0),t=Math.max(t,0),[e,t]}function fe(e,t,n,r){var i=n[0],o=n[1],a=Math.ceil(Math.SQRT2*r)+8,s=0,l=0,u=t.width,c=t.height;switch(e){case"inside":s=t.x+u/2-i/2,l=t.y+c/2-o/2;break;case"top":s=t.x+u/2-i/2,l=t.y-o-a;break;case"bottom":s=t.x+u/2-i/2,l=t.y+c+a;break;case"left":s=t.x-i-a,l=t.y+c/2-o/2;break;case"right":s=t.x+u+a,l=t.y+c/2-o/2}return[s,l]}function de(e){return"center"===e||"middle"===e}function he(e,t,n){var r=Object(K["r"])(e).queryOptionMap,i=r.keys()[0];if(i&&"series"!==i){var o=Object(K["t"])(t,i,r.get(i),{useDefault:!1,enableAll:!1,enableNone:!1}),a=o.models[0];if(a){var s,l=n.getViewOfComponentModel(a);return l.group.traverse(function(t){var n=Object($["a"])(t).tooltipConfig;if(n&&n.name===e.name)return s=t,!0}),s?{componentMainType:i,componentIndex:a.componentIndex,el:s}:void 0}}}var pe=ae;function ge(e){Object(i["a"])(r["a"]),e.registerComponentModel(l),e.registerComponentView(pe),e.registerAction({type:"showTip",event:"showTip",update:"tooltip:manuallyShowTip"},function(){}),e.registerAction({type:"hideTip",event:"hideTip",update:"tooltip:manuallyHideTip"},function(){})}n.d(t,"a",function(){return ge})},LcsW:function(e,t,n){var r=n("kekF"),i=r(Object.getPrototypeOf,Object);e.exports=i},LsHQ:function(e,t,n){var r=n("EA7m"),i=n("mv/X");function o(e){return r(function(t,n){var r=-1,o=n.length,a=o>1?n[o-1]:void 0,s=o>2?n[2]:void 0;a=e.length>3&&"function"==typeof a?(o--,a):void 0,s&&i(n[0],n[1],s)&&(a=o<3?void 0:a,o=1),t=Object(t);while(++r=0}function c(e){return e+"Axis"}function f(e,t){var n,r=Object(o["g"])(),i=[],a=Object(o["g"])();e.eachComponent({mainType:"dataZoom",query:t},function(e){a.get(e.uid)||l(e)});do{n=!1,e.eachComponent("dataZoom",s)}while(n);function s(e){!a.get(e.uid)&&u(e)&&(l(e),n=!0)}function l(e){a.set(e.uid,!0),i.push(e),c(e)}function u(e){var t=!1;return e.eachTargetAxis(function(e,n){var i=r.get(e);i&&i[n]&&(t=!0)}),t}function c(e){e.eachTargetAxis(function(e,t){(r.get(e)||r.set(e,[]))[t]=!0})}return i}var d=n("4NO4"),h=function(){function e(){this.indexList=[],this.indexMap=[]}return e.prototype.add=function(e){this.indexMap[e]||(this.indexList.push(e),this.indexMap[e]=!0)},e}(),p=function(e){function t(){var n=null!==e&&e.apply(this,arguments)||this;return n.type=t.type,n._autoThrottle=!0,n._noTarget=!0,n._rangePropMode=["percent","percent"],n}return Object(i["a"])(t,e),t.prototype.init=function(e,t,n){var r=g(e);this.settledOption=r,this.mergeDefaultAndTheme(e,n),this._doInit(r)},t.prototype.mergeOption=function(e){var t=g(e);Object(o["G"])(this.option,e,!0),Object(o["G"])(this.settledOption,t,!0),this._doInit(t)},t.prototype._doInit=function(e){var t=this.option;this._setDefaultThrottle(e),this._updateRangeUse(e);var n=this.settledOption;Object(o["k"])([["start","startValue"],["end","endValue"]],function(e,r){"value"===this._rangePropMode[r]&&(t[e[0]]=n[e[0]]=null)},this),this._resetTarget()},t.prototype._resetTarget=function(){var e=this.get("orient",!0),t=this._targetAxisInfoMap=Object(o["g"])(),n=this._fillSpecifiedTargetAxis(t);n?this._orient=e||this._makeAutoOrientByTargetAxis():(this._orient=e||"horizontal",this._fillAutoTargetAxisByOrient(t,this._orient)),this._noTarget=!0,t.each(function(e){e.indexList.length&&(this._noTarget=!1)},this)},t.prototype._fillSpecifiedTargetAxis=function(e){var t=!1;return Object(o["k"])(s,function(n){var r=this.getReferringComponents(c(n),d["a"]);if(r.specified){t=!0;var i=new h;Object(o["k"])(r.models,function(e){i.add(e.componentIndex)}),e.set(n,i)}},this),t},t.prototype._fillAutoTargetAxisByOrient=function(e,t){var n=this.ecModel,r=!0;if(r){var i="vertical"===t?"y":"x",a=n.findComponents({mainType:i+"Axis"});l(a,i)}if(r){a=n.findComponents({mainType:"singleAxis",filter:function(e){return e.get("orient",!0)===t}});l(a,"single")}function l(t,n){var i=t[0];if(i){var a=new h;if(a.add(i.componentIndex),e.set(n,a),r=!1,"x"===n||"y"===n){var s=i.getReferringComponents("grid",d["b"]).models[0];s&&Object(o["k"])(t,function(e){i.componentIndex!==e.componentIndex&&s===e.getReferringComponents("grid",d["b"]).models[0]&&a.add(e.componentIndex)})}}}r&&Object(o["k"])(s,function(t){if(r){var i=n.findComponents({mainType:c(t),filter:function(e){return"category"===e.get("type",!0)}});if(i[0]){var o=new h;o.add(i[0].componentIndex),e.set(t,o),r=!1}}},this)},t.prototype._makeAutoOrientByTargetAxis=function(){var e;return this.eachTargetAxis(function(t){!e&&(e=t)},this),"y"===e?"vertical":"horizontal"},t.prototype._setDefaultThrottle=function(e){if(e.hasOwnProperty("throttle")&&(this._autoThrottle=!1),this._autoThrottle){var t=this.ecModel.option;this.option.throttle=t.animation&&t.animationDurationUpdate>0?100:20}},t.prototype._updateRangeUse=function(e){var t=this._rangePropMode,n=this.get("rangeMode");Object(o["k"])([["start","startValue"],["end","endValue"]],function(r,i){var o=null!=e[r[0]],a=null!=e[r[1]];o&&!a?t[i]="percent":!o&&a?t[i]="value":n?t[i]=n[i]:o&&(t[i]="percent")})},t.prototype.noTarget=function(){return this._noTarget},t.prototype.getFirstTargetAxisModel=function(){var e;return this.eachTargetAxis(function(t,n){null==e&&(e=this.ecModel.getComponent(c(t),n))},this),e},t.prototype.eachTargetAxis=function(e,t){this._targetAxisInfoMap.each(function(n,r){Object(o["k"])(n.indexList,function(n){e.call(t,r,n)})})},t.prototype.getAxisProxy=function(e,t){var n=this.getAxisModel(e,t);if(n)return n.__dzAxisProxy},t.prototype.getAxisModel=function(e,t){var n=this._targetAxisInfoMap.get(e);if(n&&n.indexMap[t])return this.ecModel.getComponent(c(e),t)},t.prototype.setRawRange=function(e){var t=this.option,n=this.settledOption;Object(o["k"])([["start","startValue"],["end","endValue"]],function(r){null==e[r[0]]&&null==e[r[1]]||(t[r[0]]=n[r[0]]=e[r[0]],t[r[1]]=n[r[1]]=e[r[1]])},this),this._updateRangeUse(e)},t.prototype.setCalculatedRange=function(e){var t=this.option;Object(o["k"])(["start","startValue","end","endValue"],function(n){t[n]=e[n]})},t.prototype.getPercentRange=function(){var e=this.findRepresentativeAxisProxy();if(e)return e.getDataPercentWindow()},t.prototype.getValueRange=function(e,t){if(null!=e||null!=t)return this.getAxisProxy(e,t).getDataValueWindow();var n=this.findRepresentativeAxisProxy();return n?n.getDataValueWindow():void 0},t.prototype.findRepresentativeAxisProxy=function(e){if(e)return e.__dzAxisProxy;for(var t,n=this._targetAxisInfoMap.keys(),r=0;ro&&(t[1-r]=t[r]+u.sign*o),t}function M(e,t){var n=e[t]-e[1-t];return{span:Math.abs(n),sign:n>0?-1:n<0?1:t?-1:1}}function C(e,t){return Math.min(null!=t[1]?t[1]:1/0,Math.max(null!=t[0]?t[0]:-1/0,e))}var T=n("aX7z"),j=n("U4/e"),I=o["k"],D=O["b"],A=function(){function e(e,t,n,r){this._dimName=e,this._axisIndex=t,this.ecModel=r,this._dataZoomModel=n}return e.prototype.hostedBy=function(e){return this._dataZoomModel===e},e.prototype.getDataValueWindow=function(){return this._valueWindow.slice()},e.prototype.getDataPercentWindow=function(){return this._percentWindow.slice()},e.prototype.getTargetSeriesModels=function(){var e=[];return this.ecModel.eachSeries(function(t){if(u(t)){var n=c(this._dimName),r=t.getReferringComponents(n,d["b"]).models[0];r&&this._axisIndex===r.componentIndex&&e.push(t)}},this),e},e.prototype.getAxisModel=function(){return this.ecModel.getComponent(this._dimName+"Axis",this._axisIndex)},e.prototype.getMinMaxSpan=function(){return o["d"](this._minMaxSpan)},e.prototype.calculateDataWindow=function(e){var t,n=this._dataExtent,r=this.getAxisModel(),i=r.axis.scale,o=this._dataZoomModel.getRangePropMode(),a=[0,100],s=[],l=[];I(["start","end"],function(r,u){var c=e[r],f=e[r+"Value"];"percent"===o[u]?(null==c&&(c=a[u]),f=i.parse(O["i"](c,a,n))):(t=!0,f=null==f?n[u]:i.parse(f),c=O["i"](f,n,a)),l[u]=f,s[u]=c}),D(l),D(s);var u=this._minMaxSpan;function c(e,t,n,r,o){var a=o?"Span":"ValueSpan";S(0,e,n,"all",u["min"+a],u["max"+a]);for(var s=0;s<2;s++)t[s]=O["i"](e[s],n,r,!0),o&&(t[s]=i.parse(t[s]))}return t?c(l,s,n,a,!1):c(s,l,a,n,!0),{valueWindow:l,percentWindow:s}},e.prototype.reset=function(e){if(e===this._dataZoomModel){var t=this.getTargetSeriesModels();this._dataExtent=E(this,this._dimName,t),this._updateMinMaxSpan();var n=this.calculateDataWindow(e.settledOption);this._valueWindow=n.valueWindow,this._percentWindow=n.percentWindow,this._setAxisModel()}},e.prototype.filterData=function(e,t){if(e===this._dataZoomModel){var n=this._dimName,r=this.getTargetSeriesModels(),i=e.get("filterMode"),a=this._valueWindow;"none"!==i&&I(r,function(e){var t=e.getData(),r=t.mapDimensionsAll(n);if(r.length){if("weakFilter"===i){var l=t.getStore(),u=o["F"](r,function(e){return t.getDimensionIndex(e)},t);t.filterSelf(function(e){for(var t,n,i,o=0;oa[1];if(c&&!f&&!d)return!0;c&&(i=!0),f&&(t=!0),d&&(n=!0)}return i&&t&&n})}else I(r,function(n){if("empty"===i)e.setData(t=t.map(n,function(e){return s(e)?e:NaN}));else{var r={};r[n]=a,t.selectRange(r)}});I(r,function(e){t.setApproximateExtent(a,e)})}})}function s(e){return e>=a[0]&&e<=a[1]}},e.prototype._updateMinMaxSpan=function(){var e=this._minMaxSpan={},t=this._dataZoomModel,n=this._dataExtent;I(["min","max"],function(r){var i=t.get(r+"Span"),o=t.get(r+"ValueSpan");null!=o&&(o=this.getAxisModel().axis.scale.parse(o)),null!=o?i=O["i"](n[0]+o,n,[0,100],!0):null!=i&&(o=O["i"](i,[0,100],n,!0)-n[0]),e[r+"Span"]=i,e[r+"ValueSpan"]=o},this)},e.prototype._setAxisModel=function(){var e=this.getAxisModel(),t=this._percentWindow,n=this._valueWindow;if(t){var r=O["d"](n,[0,500]);r=Math.min(r,20);var i=e.axis.scale.rawExtentInfo;0!==t[0]&&i.setDeterminedMinMax("min",+n[0].toFixed(r)),100!==t[1]&&i.setDeterminedMinMax("max",+n[1].toFixed(r)),i.freeze()}},e}();function E(e,t,n){var r=[1/0,-1/0];I(n,function(e){Object(T["j"])(r,e.getData(),t)});var i=e.getAxisModel(),o=Object(j["a"])(i.axis.scale,i,r).calculate();return[o.min,o.max]}var P=A,L={getTargetSeries:function(e){function t(t){e.eachComponent("dataZoom",function(n){n.eachTargetAxis(function(r,i){var o=e.getComponent(c(r),i);t(r,i,o,n)})})}t(function(e,t,n,r){n.__dzAxisProxy=null});var n=[];t(function(t,r,i,o){i.__dzAxisProxy||(i.__dzAxisProxy=new P(t,r,o,e),n.push(i.__dzAxisProxy))});var r=Object(o["g"])();return Object(o["k"])(n,function(e){Object(o["k"])(e.getTargetSeriesModels(),function(e){r.set(e.uid,e)})}),r},overallReset:function(e,t){e.eachComponent("dataZoom",function(e){e.eachTargetAxis(function(t,n){e.getAxisProxy(t,n).reset(e)}),e.eachTargetAxis(function(n,r){e.getAxisProxy(n,r).filterData(e,t)})}),e.eachComponent("dataZoom",function(e){var t=e.findRepresentativeAxisProxy();if(t){var n=t.getDataPercentWindow(),r=t.getDataValueWindow();e.setCalculatedRange({start:n[0],end:n[1],startValue:r[0],endValue:r[1]})}})}},N=L;function R(e){e.registerAction("dataZoom",function(e,t){var n=f(t,e);Object(o["k"])(n,function(t){t.setRawRange({start:e.start,end:e.end,startValue:e.startValue,endValue:e.endValue})})})}var z=!1;function F(e){z||(z=!0,e.registerProcessor(e.PRIORITY.PROCESSOR.FILTER,N),R(e),e.registerSubTypeDefaulter("dataZoom",function(){return"slider"}))}function B(e){e.registerComponentModel(y),e.registerComponentView(k),F(e)}var V=function(){function e(){}return e}(),Y={};function G(e,t){Y[e]=t}function U(e){return Y[e]}var W=function(e){function t(){var n=null!==e&&e.apply(this,arguments)||this;return n.type=t.type,n}return Object(i["a"])(t,e),t.prototype.optionUpdated=function(){e.prototype.optionUpdated.apply(this,arguments);var t=this.ecModel;o["k"](this.option.feature,function(e,n){var r=U(n);r&&(r.getDefaultOption&&(r.defaultOption=r.getDefaultOption(t)),o["G"](e,r.defaultOption))})},t.type="toolbox",t.layoutMode={type:"box",ignoreSize:!0},t.defaultOption={show:!0,z:6,zlevel:0,orient:"horizontal",left:"right",top:"top",backgroundColor:"transparent",borderColor:"#ccc",borderRadius:0,borderWidth:0,padding:5,itemSize:15,itemGap:8,showTitle:!0,iconStyle:{borderColor:"#666",color:"none"},emphasis:{iconStyle:{borderColor:"#3E98C5"}},tooltip:{show:!1,position:"bottom"}},t}(a["a"]),H=W,q=n("6GrX"),Z=n("IwbS"),K=n("fWwa"),X=n("Qxkt"),Q=n("gPAo"),$=n("eRkO"),J=n("iRjW"),ee=n("dqUG"),te=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return Object(i["a"])(t,e),t.prototype.render=function(e,t,n,r){var i=this.group;if(i.removeAll(),e.get("show")){var a=+e.get("itemSize"),s=e.get("feature")||{},l=this._features||(this._features={}),u=[];o["k"](s,function(e,t){u.push(t)}),new Q["a"](this._featureNames||[],u).add(c).update(c).remove(o["i"](c,null)).execute(),this._featureNames=u,$["a"](i,e,n),i.add($["b"](i.getBoundingRect(),e)),i.eachChild(function(e){var t=e.__title,r=e.ensureState("emphasis"),s=r.textConfig||(r.textConfig={}),l=e.getTextContent(),u=l&&l.states.emphasis;if(u&&!o["v"](u)&&t){var c=u.style||(u.style={}),f=q["e"](t,ee["a"].makeFont(c)),d=e.x+i.x,h=e.y+i.y+a,p=!1;h+f.height>n.getHeight()&&(s.position="top",p=!0);var g=p?-5-f.height:a+8;d+f.width/2>n.getWidth()?(s.position=["100%",g],c.align="right"):d-f.width/2<0&&(s.position=[0,g],c.align="left")}})}function c(i,o){var a,c=u[i],d=u[o],h=s[c],p=new X["a"](h,e,e.ecModel);if(r&&null!=r.newTitle&&r.featureName===c&&(h.title=r.newTitle),c&&!d){if(ne(c))a={onclick:p.option.onclick,featureName:c};else{var g=U(c);if(!g)return;a=new g}l[c]=a}else if(a=l[d],!a)return;a.uid=Object(J["c"])("toolbox-feature"),a.model=p,a.ecModel=t,a.api=n;var m=a instanceof V;c||!d?!p.get("show")||m&&a.unusable?m&&a.remove&&a.remove(t,n):(f(p,a,c),p.setIconStatus=function(e,t){var n=this.option,r=this.iconPaths;n.iconStatus=n.iconStatus||{},n.iconStatus[e]=t,r[e]&&("emphasis"===t?K["o"]:K["z"])(r[e])},a instanceof V&&a.render&&a.render(p,t,n,r)):m&&a.dispose&&a.dispose(t,n)}function f(r,s,l){var u,c,f=r.getModel("iconStyle"),d=r.getModel(["emphasis","iconStyle"]),h=s instanceof V&&s.getIcons?s.getIcons():r.get("icon"),p=r.get("title")||{};"string"===typeof h?(u={},u[l]=h):u=h,"string"===typeof p?(c={},c[l]=p):c=p;var g=r.iconPaths={};o["k"](u,function(l,u){var h=Z["createIcon"](l,{},{x:-a/2,y:-a/2,width:a,height:a});h.setStyle(f.getItemStyle());var p=h.ensureState("emphasis");p.style=d.getItemStyle();var m=new ee["a"]({style:{text:c[u],align:d.get("textAlign"),borderRadius:d.get("textBorderRadius"),padding:d.get("textPadding"),fill:null},ignore:!0});h.setTextContent(m),Z["setTooltipConfig"]({el:h,componentModel:e,itemName:u,formatterParamsExtra:{title:c[u]}}),h.__title=c[u],h.on("mouseover",function(){var t=d.getItemStyle(),n="vertical"===e.get("orient")?null==e.get("right")?"right":"left":null==e.get("bottom")?"bottom":"top";m.setStyle({fill:d.get("textFill")||t.fill||t.stroke||"#000",backgroundColor:d.get("textBackgroundColor")}),h.setTextConfig({position:d.get("textPosition")||n}),m.ignore=!e.get("showTitle"),Object(K["o"])(this)}).on("mouseout",function(){"emphasis"!==r.get(["iconStatus",u])&&Object(K["z"])(this),m.hide()}),("emphasis"===r.get(["iconStatus",u])?K["o"]:K["z"])(h),i.add(h),h.on("click",o["c"](s.onclick,s,t,n,u)),g[u]=h})}},t.prototype.updateView=function(e,t,n,r){o["k"](this._features,function(e){e instanceof V&&e.updateView&&e.updateView(e.model,t,n,r)})},t.prototype.remove=function(e,t){o["k"](this._features,function(n){n instanceof V&&n.remove&&n.remove(e,t)}),this.group.removeAll()},t.prototype.dispose=function(e,t){o["k"](this._features,function(n){n instanceof V&&n.dispose&&n.dispose(e,t)})},t.type="toolbox",t}(b["a"]);function ne(e){return 0===e.indexOf("my")}var re=te,ie=n("ItGF"),oe=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return Object(i["a"])(t,e),t.prototype.onclick=function(e,t){var n=this.model,r=n.get("name")||e.get("title.0.text")||"echarts",i="svg"===t.getZr().painter.getType(),o=i?"svg":n.get("type",!0)||"png",a=t.getConnectedDataURL({type:o,backgroundColor:n.get("backgroundColor",!0)||e.get("backgroundColor")||"#fff",connectedBackgroundColor:n.get("connectedBackgroundColor"),excludeComponents:n.get("excludeComponents"),pixelRatio:n.get("pixelRatio")});if("function"!==typeof MouseEvent||!ie["a"].browser.newEdge&&(ie["a"].browser.ie||ie["a"].browser.edge))if(window.navigator.msSaveOrOpenBlob||i){var s=a.split(","),l=s[0].indexOf("base64")>-1,u=i?decodeURIComponent(s[1]):s[1];l&&(u=window.atob(u));var c=r+"."+o;if(window.navigator.msSaveOrOpenBlob){var f=u.length,d=new Uint8Array(f);while(f--)d[f]=u.charCodeAt(f);var h=new Blob([d]);window.navigator.msSaveOrOpenBlob(h,c)}else{var p=document.createElement("iframe");document.body.appendChild(p);var g=p.contentWindow,m=g.document;m.open("image/svg+xml","replace"),m.write(u),m.close(),g.focus(),m.execCommand("SaveAs",!0,c),document.body.removeChild(p)}}else{var v=n.get("lang"),y='',b=window.open();b.document.write(y),b.document.title=r}else{var _=document.createElement("a");_.download=r+"."+o,_.target="_blank",_.href=a;var x=new MouseEvent("click",{view:document.defaultView,bubbles:!0,cancelable:!1});_.dispatchEvent(x)}},t.getDefaultOption=function(e){var t={show:!0,icon:"M4.7,22.9L29.3,45.5L54.7,23.4M4.6,43.6L4.6,58L53.8,58L53.8,43.6M29.2,45.1L29.2,0",title:e.getLocaleModel().get(["toolbox","saveAsImage","title"]),type:"png",connectedBackgroundColor:"#fff",name:"",excludeComponents:["toolbox"],lang:e.getLocaleModel().get(["toolbox","saveAsImage","lang"])};return t},t}(V);oe.prototype.unusable=!ie["a"].canvasSupported;var ae=oe,se=n("G+eS"),le="__ec_magicType_stack__",ue=[["line","bar"],["stack"]],ce=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return Object(i["a"])(t,e),t.prototype.getIcons=function(){var e=this.model,t=e.get("icon"),n={};return o["k"](e.get("type"),function(e){t[e]&&(n[e]=t[e])}),n},t.getDefaultOption=function(e){var t={show:!0,type:[],icon:{line:"M4.1,28.9h7.1l9.3-22l7.4,38l9.7-19.7l3,12.8h14.9M4.1,58h51.4",bar:"M6.7,22.9h10V48h-10V22.9zM24.9,13h10v35h-10V13zM43.2,2h10v46h-10V2zM3.1,58h53.7",stack:"M8.2,38.4l-8.4,4.1l30.6,15.3L60,42.5l-8.1-4.1l-21.5,11L8.2,38.4z M51.9,30l-8.1,4.2l-13.4,6.9l-13.9-6.9L8.2,30l-8.4,4.2l8.4,4.2l22.2,11l21.5-11l8.1-4.2L51.9,30z M51.9,21.7l-8.1,4.2L35.7,30l-5.3,2.8L24.9,30l-8.4-4.1l-8.3-4.2l-8.4,4.2L8.2,30l8.3,4.2l13.9,6.9l13.4-6.9l8.1-4.2l8.1-4.1L51.9,21.7zM30.4,2.2L-0.2,17.5l8.4,4.1l8.3,4.2l8.4,4.2l5.5,2.7l5.3-2.7l8.1-4.2l8.1-4.2l8.1-4.1L30.4,2.2z"},title:e.getLocaleModel().get(["toolbox","magicType","title"]),option:{},seriesIndex:{}};return t},t.prototype.onclick=function(e,t,n){var r=this.model,i=r.get(["seriesIndex",n]);if(fe[n]){var a,s={series:[]},l=function(e){var t=e.subType,i=e.id,a=fe[n](t,i,e,r);a&&(o["j"](a,e.option),s.series.push(a));var l=e.coordinateSystem;if(l&&"cartesian2d"===l.type&&("line"===n||"bar"===n)){var u=l.getAxesByScale("ordinal")[0];if(u){var c=u.dim,f=c+"Axis",h=e.getReferringComponents(f,d["b"]).models[0],p=h.componentIndex;s[f]=s[f]||[];for(var g=0;g<=p;g++)s[f][p]=s[f][p]||{};s[f][p].boundaryGap="bar"===n}}};o["k"](ue,function(e){o["q"](e,n)>=0&&o["k"](e,function(e){r.setIconStatus(e,"normal")})}),r.setIconStatus(n,"emphasis"),e.eachComponent({mainType:"series",query:null==i?null:{seriesIndex:i}},l);var u=n;"stack"===n&&(a=o["G"]({stack:r.option.title.tiled,tiled:r.option.title.stack},r.option.title),"emphasis"!==r.get(["iconStatus",n])&&(u="tiled")),t.dispatchAction({type:"changeMagicType",currentType:u,newOption:s,newTitle:a,featureName:"magicType"})}},t}(V),fe={line:function(e,t,n,r){if("bar"===e)return o["G"]({id:t,type:"line",data:n.get("data"),stack:n.get("stack"),markPoint:n.get("markPoint"),markLine:n.get("markLine")},r.get(["option","line"])||{},!0)},bar:function(e,t,n,r){if("line"===e)return o["G"]({id:t,type:"bar",data:n.get("data"),stack:n.get("stack"),markPoint:n.get("markPoint"),markLine:n.get("markLine")},r.get(["option","bar"])||{},!0)},stack:function(e,t,n,r){var i=n.get("stack")===le;if("line"===e||"bar"===e)return r.setIconStatus("stack",i?"normal":"emphasis"),o["G"]({id:t,stack:i?"":le},r.get(["option","stack"])||{},!0)}};se["c"]({type:"changeMagicType",event:"magicTypeChanged",update:"prepareAndUpdate"},function(e,t){t.mergeOption(e.newOption)});var de=ce,he=n("YH21"),pe=new Array(60).join("-"),ge="\t";function me(e){var t={},n=[],r=[];return e.eachRawSeries(function(e){var i=e.coordinateSystem;if(!i||"cartesian2d"!==i.type&&"polar"!==i.type)n.push(e);else{var o=i.getBaseAxis();if("category"===o.type){var a=o.dim+"_"+o.index;t[a]||(t[a]={categoryAxis:o,valueAxis:i.getOtherAxis(o),series:[]},r.push({axisDim:o.dim,axisIndex:o.index})),t[a].series.push(e)}else n.push(e)}}),{seriesGroupByCategoryAxis:t,other:n,meta:r}}function ve(e){var t=[];return o["k"](e,function(e,n){var r=e.categoryAxis,i=e.valueAxis,a=i.dim,s=[" "].concat(o["F"](e.series,function(e){return e.name})),l=[r.model.getCategories()];o["k"](e.series,function(e){var t=e.getRawData();l.push(e.getRawData().mapArray(t.mapDimension(a),function(e){return e}))});for(var u=[s.join(ge)],c=0;c=0)return!0}var we=new RegExp("["+ge+"]+","g");function ke(e){for(var t=e.split(/\n+/g),n=_e(t.shift()).split(we),r=[],i=o["F"](n,function(e){return{name:e,data:[]}}),a=0;a=0;i--){var o=n[i];if(o[r])break}if(i<0){var a=e.queryComponents({mainType:"dataZoom",subType:"select",id:r})[0];if(a){var s=a.getPercentRange();n[0][r]={dataZoomId:r,start:s[0],end:s[1]}}}}),n.push(t)}function Ae(e){var t=Le(e),n=t[t.length-1];t.length>1&&t.pop();var r={};return je(n,function(e,n){for(var i=t.length-1;i>=0;i--)if(e=t[i][n],e){r[n]=e;break}}),r}function Ee(e){Ie(e).snapshots=null}function Pe(e){return Le(e).length}function Le(e){var t=Ie(e);return t.snapshots||(t.snapshots=[{}]),t.snapshots}var Ne=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return Object(i["a"])(t,e),t.prototype.onclick=function(e,t){Ee(e),t.dispatchAction({type:"restore",from:this.uid})},t.getDefaultOption=function(e){var t={show:!0,icon:"M3.8,33.4 M47,18.9h9.8V8.7 M56.3,20.1 C52.1,9,40.5,0.6,26.8,2.1C12.6,3.7,1.6,16.2,2.1,30.6 M13,41.1H3.1v10.2 M3.7,39.9c4.2,11.1,15.8,19.5,29.5,18 c14.2-1.6,25.2-14.1,24.7-28.5",title:e.getLocaleModel().get(["toolbox","restore","title"])};return t},t}(V);se["c"]({type:"restore",event:"restore",update:"prepareAndUpdate"},function(e,t){t.resetOption("recreate")});var Re=Ne,ze=n("b9Ot"),Fe=n("LcXL"),Be=n("x6Kt"),Ve=n("1Jh7"),Ye=n("h7HQ"),Ge="\0_ec_interaction_mutex";function Ue(e,t,n){var r=He(e);r[t]=n}function We(e,t,n){var r=He(e),i=r[t];i===n&&(r[t]=null)}function He(e){return e[Ge]||(e[Ge]={})}se["c"]({type:"takeGlobalCursor",event:"globalCursorTaken",update:"update"},function(){});var qe=!0,Ze=Math.min,Ke=Math.max,Xe=Math.pow,Qe=1e4,$e=6,Je=6,et="globalPan",tt={w:[0,0],e:[0,1],n:[1,0],s:[1,1]},nt={w:"ew",e:"ew",n:"ns",s:"ns",ne:"nesw",sw:"nesw",nw:"nwse",se:"nwse"},rt={brushStyle:{lineWidth:2,stroke:"rgba(210,219,238,0.3)",fill:"#D2DBEE"},transformable:!0,brushMode:"single",removeOnClick:!1},it=0,ot=function(e){function t(t){var n=e.call(this)||this;return n._track=[],n._covers=[],n._handlers={},n._zr=t,n.group=new Fe["a"],n._uid="brushController_"+it++,Object(o["k"])(Rt,function(e,t){this._handlers[t]=Object(o["c"])(e,this)},n),n}return Object(i["a"])(t,e),t.prototype.enableBrush=function(e){return this._brushType&&this._doDisableBrush(),e.brushType&&this._doEnableBrush(e),this},t.prototype._doEnableBrush=function(e){var t=this._zr;this._enableGlobalPan||Ue(t,et,this._uid),Object(o["k"])(this._handlers,function(e,n){t.on(n,e)}),this._brushType=e.brushType,this._brushOption=Object(o["G"])(Object(o["d"])(rt),e,!0)},t.prototype._doDisableBrush=function(){var e=this._zr;We(e,et,this._uid),Object(o["k"])(this._handlers,function(t,n){e.off(n,t)}),this._brushType=this._brushOption=null},t.prototype.setPanels=function(e){if(e&&e.length){var t=this._panels={};Object(o["k"])(e,function(e){t[e.panelId]=Object(o["d"])(e)})}else this._panels=null;return this},t.prototype.mount=function(e){e=e||{},this._enableGlobalPan=e.enableGlobalPan;var t=this.group;return this._zr.add(t),t.attr({x:e.x||0,y:e.y||0,rotation:e.rotation||0,scaleX:e.scaleX||1,scaleY:e.scaleY||1}),this._transform=t.getLocalTransform(),this},t.prototype.updateCovers=function(e){e=Object(o["F"])(e,function(e){return Object(o["G"])(Object(o["d"])(rt),e,!0)});var t="\0-brush-index-",n=this._covers,r=this._covers=[],i=this,a=this._creatingCover;return new Q["a"](n,e,l,s).add(u).update(u).remove(c).execute(),this;function s(e,n){return(null!=e.id?e.id:t+n)+"-"+e.brushType}function l(e,t){return s(e.__brushOption,t)}function u(t,o){var s=e[t];if(null!=o&&n[o]===a)r[t]=n[o];else{var l=r[t]=null!=o?(n[o].__brushOption=s,n[o]):st(i,at(i,s));ct(i,l)}}function c(e){n[e]!==a&&i.group.remove(n[e])}},t.prototype.unmount=function(){return this.enableBrush(!1),pt(this),this._zr.remove(this.group),this},t.prototype.dispose=function(){this.unmount(),this.off()},t}(ze["a"]);function at(e,t){var n=Bt[t.brushType].createCover(e,t);return n.__brushOption=t,ut(n,t),e.group.add(n),n}function st(e,t){var n=ft(t);return n.endCreating&&(n.endCreating(e,t),ut(t,t.__brushOption)),t}function lt(e,t){var n=t.__brushOption;ft(t).updateCoverShape(e,t,n.range,n)}function ut(e,t){var n=t.z;null==n&&(n=Qe),e.traverse(function(e){e.z=n,e.z2=n})}function ct(e,t){ft(t).updateCommon(e,t),lt(e,t)}function ft(e){return Bt[e.__brushOption.brushType]}function dt(e,t,n){var r,i=e._panels;if(!i)return qe;var a=e._transform;return Object(o["k"])(i,function(e){e.isTargetByCursor(t,n,a)&&(r=e)}),r}function ht(e,t){var n=e._panels;if(!n)return qe;var r=t.__brushOption.panelId;return null!=r?n[r]:qe}function pt(e){var t=e._covers,n=t.length;return Object(o["k"])(t,function(t){e.group.remove(t)},e),t.length=0,!!n}function gt(e,t){var n=Object(o["F"])(e._covers,function(e){var t=e.__brushOption,n=Object(o["d"])(t.range);return{brushType:t.brushType,panelId:t.panelId,range:n}});e.trigger("brush",{areas:n,isEnd:!!t.isEnd,removeOnClick:!!t.removeOnClick})}function mt(e){var t=e._track;if(!t.length)return!1;var n=t[t.length-1],r=t[0],i=n[0]-r[0],o=n[1]-r[1],a=Xe(i*i+o*o,.5);return a>$e}function vt(e){var t=e.length-1;return t<0&&(t=0),[e[0],e[t]]}function yt(e,t,n,r){var i=new Fe["a"];return i.add(new Be["a"]({name:"main",style:wt(n),silent:!0,draggable:!0,cursor:"move",drift:Object(o["i"])(Ct,e,t,i,["n","s","w","e"]),ondragend:Object(o["i"])(gt,t,{isEnd:!0})})),Object(o["k"])(r,function(n){i.add(new Be["a"]({name:n.join(""),style:{opacity:0},draggable:!0,silent:!0,invisible:!0,drift:Object(o["i"])(Ct,e,t,i,n),ondragend:Object(o["i"])(gt,t,{isEnd:!0})}))}),i}function bt(e,t,n,r){var i=r.brushStyle.lineWidth||0,o=Ke(i,Je),a=n[0][0],s=n[1][0],l=a-i/2,u=s-i/2,c=n[0][1],f=n[1][1],d=c-o+i/2,h=f-o+i/2,p=c-a,g=f-s,m=p+i,v=g+i;xt(e,t,"main",a,s,p,g),r.transformable&&(xt(e,t,"w",l,u,o,v),xt(e,t,"e",d,u,o,v),xt(e,t,"n",l,u,m,o),xt(e,t,"s",l,h,m,o),xt(e,t,"nw",l,u,o,o),xt(e,t,"ne",d,u,o,o),xt(e,t,"sw",l,h,o,o),xt(e,t,"se",d,h,o,o))}function _t(e,t){var n=t.__brushOption,r=n.transformable,i=t.childAt(0);i.useStyle(wt(n)),i.attr({silent:!r,cursor:r?"move":"default"}),Object(o["k"])([["w"],["e"],["n"],["s"],["s","e"],["s","w"],["n","e"],["n","w"]],function(n){var i=t.childOfName(n.join("")),o=1===n.length?St(e,n[0]):Mt(e,n);i&&i.attr({silent:!r,invisible:!r,cursor:r?nt[o]+"-resize":null})})}function xt(e,t,n,r,i,o,a){var s=t.childOfName(n);s&&s.setShape(Dt(It(e,t,[[r,i],[r+o,i+a]])))}function wt(e){return Object(o["j"])({strokeNoScale:!0},e.brushStyle)}function kt(e,t,n,r){var i=[Ze(e,n),Ze(t,r)],o=[Ke(e,n),Ke(t,r)];return[[i[0],o[0]],[i[1],o[1]]]}function Ot(e){return Z["getTransform"](e.group)}function St(e,t){var n={w:"left",e:"right",n:"top",s:"bottom"},r={left:"w",right:"e",top:"n",bottom:"s"},i=Z["transformDirection"](n[t],Ot(e));return r[i]}function Mt(e,t){var n=[St(e,t[0]),St(e,t[1])];return("e"===n[0]||"w"===n[0])&&n.reverse(),n.join("")}function Ct(e,t,n,r,i,a){var s=n.__brushOption,l=e.toRectRange(s.range),u=jt(t,i,a);Object(o["k"])(r,function(e){var t=tt[e];l[t[0]][t[1]]+=u[t[0]]}),s.range=e.fromRectRange(kt(l[0][0],l[1][0],l[0][1],l[1][1])),ct(t,n),gt(t,{isEnd:!1})}function Tt(e,t,n,r){var i=t.__brushOption.range,a=jt(e,n,r);Object(o["k"])(i,function(e){e[0]+=a[0],e[1]+=a[1]}),ct(e,t),gt(e,{isEnd:!1})}function jt(e,t,n){var r=e.group,i=r.transformCoordToLocal(t,n),o=r.transformCoordToLocal(0,0);return[i[0]-o[0],i[1]-o[1]]}function It(e,t,n){var r=ht(e,t);return r&&r!==qe?r.clipPath(n,e._transform):Object(o["d"])(n)}function Dt(e){var t=Ze(e[0][0],e[1][0]),n=Ze(e[0][1],e[1][1]),r=Ke(e[0][0],e[1][0]),i=Ke(e[0][1],e[1][1]);return{x:t,y:n,width:r-t,height:i-n}}function At(e,t,n){if(e._brushType&&!Ft(e,t.offsetX,t.offsetY)){var r=e._zr,i=e._covers,o=dt(e,t,n);if(!e._dragging)for(var a=0;ar.getWidth()||n<0||n>r.getHeight()}var Bt={lineX:Vt(0),lineY:Vt(1),rect:{createCover:function(e,t){function n(e){return e}return yt({toRectRange:n,fromRectRange:n},e,t,[["w"],["e"],["n"],["s"],["s","e"],["s","w"],["n","e"],["n","w"]])},getCreatingRange:function(e){var t=vt(e);return kt(t[1][0],t[1][1],t[0][0],t[0][1])},updateCoverShape:function(e,t,n,r){bt(e,t,n,r)},updateCommon:_t,contain:Pt},polygon:{createCover:function(e,t){var n=new Fe["a"];return n.add(new Ve["a"]({name:"main",style:wt(t),silent:!0})),n},getCreatingRange:function(e){return e},endCreating:function(e,t){t.remove(t.childAt(0)),t.add(new Ye["a"]({name:"main",draggable:!0,drift:Object(o["i"])(Tt,e,t),ondragend:Object(o["i"])(gt,e,{isEnd:!0})}))},updateCoverShape:function(e,t,n,r){t.childAt(0).setShape({points:It(e,t,n)})},updateCommon:_t,contain:Pt}};function Vt(e){return{createCover:function(t,n){return yt({toRectRange:function(t){var n=[t,[0,100]];return e&&n.reverse(),n},fromRectRange:function(t){return t[e]}},t,n,[[["w"],["e"]],[["n"],["s"]]][e])},getCreatingRange:function(t){var n=vt(t),r=Ze(n[0][e],n[1][e]),i=Ke(n[0][e],n[1][e]);return[r,i]},updateCoverShape:function(t,n,r,i){var o,a=ht(t,n);if(a!==qe&&a.getLinearBrushOtherExtent)o=a.getLinearBrushOtherExtent(e);else{var s=t._zr;o=[0,[s.getWidth(),s.getHeight()][1-e]]}var l=[r,o];e&&l.reverse(),bt(t,n,l,i)},updateCommon:_t,contain:Pt}}var Yt=ot,Gt=n("mFDi"),Ut={axisPointer:1,tooltip:1,brush:1};function Wt(e,t,n){var r=t.getComponentByElement(e.topTarget),i=r&&r.coordinateSystem;return r&&r!==n&&!Ut.hasOwnProperty(r.mainType)&&i&&i.model!==n}function Ht(e){return e=Kt(e),function(t){return Z["clipPointsByRect"](t,e)}}function qt(e,t){return e=Kt(e),function(n){var r=null!=t?t:n,i=r?e.width:e.height,o=r?e.x:e.y;return[o,o+(i||0)]}}function Zt(e,t,n){var r=Kt(e);return function(e,i){return r.contain(i[0],i[1])&&!Wt(e,t,n)}}function Kt(e){return Gt["a"].create(e)}var Xt=["grid","xAxis","yAxis","geo","graph","polar","radiusAxis","angleAxis","bmap"],Qt=function(){function e(e,t,n){var r=this;this._targetInfoList=[];var i=Jt(t,e);Object(o["k"])(en,function(e,t){(!n||!n.include||Object(o["q"])(n.include,t)>=0)&&e(i,r._targetInfoList)})}return e.prototype.setOutputRanges=function(e,t){return this.matchOutputRanges(e,t,function(e,t,n){if((e.coordRanges||(e.coordRanges=[])).push(t),!e.coordRange){e.coordRange=t;var r=rn[e.brushType](0,n,t);e.__rangeOffset={offset:an[e.brushType](r.values,e.range,[1,1]),xyMinMax:r.xyMinMax}}}),e},e.prototype.matchOutputRanges=function(e,t,n){Object(o["k"])(e,function(e){var r=this.findTargetInfo(e,t);r&&!0!==r&&Object(o["k"])(r.coordSyses,function(r){var i=rn[e.brushType](1,r,e.range,!0);n(e,i.values,r,t)})},this)},e.prototype.setInputRanges=function(e,t){Object(o["k"])(e,function(e){var n=this.findTargetInfo(e,t);if(e.range=e.range||[],n&&!0!==n){e.panelId=n.panelId;var r=rn[e.brushType](0,n.coordSys,e.coordRange),i=e.__rangeOffset;e.range=i?an[e.brushType](r.values,i.offset,ln(r.xyMinMax,i.xyMinMax)):r.values}},this)},e.prototype.makePanelOpts=function(e,t){return Object(o["F"])(this._targetInfoList,function(n){var r=n.getPanelRect();return{panelId:n.panelId,defaultBrushType:t?t(n):null,clipPath:Ht(r),isTargetByCursor:Zt(r,e,n.coordSysModel),getLinearBrushOtherExtent:qt(r)}})},e.prototype.controlSeries=function(e,t,n){var r=this.findTargetInfo(e,n);return!0===r||r&&Object(o["q"])(r.coordSyses,t.coordinateSystem)>=0},e.prototype.findTargetInfo=function(e,t){for(var n=this._targetInfoList,r=Jt(t,e),i=0;ie[1]&&e.reverse(),e}function Jt(e,t){return Object(d["q"])(e,t,{includeMainTypes:Xt})}var en={grid:function(e,t){var n=e.xAxisModels,r=e.yAxisModels,i=e.gridModels,a=Object(o["g"])(),s={},l={};(n||r||i)&&(Object(o["k"])(n,function(e){var t=e.axis.grid.model;a.set(t.id,t),s[t.id]=!0}),Object(o["k"])(r,function(e){var t=e.axis.grid.model;a.set(t.id,t),l[t.id]=!0}),Object(o["k"])(i,function(e){a.set(e.id,e),s[e.id]=!0,l[e.id]=!0}),a.each(function(e){var i=e.coordinateSystem,a=[];Object(o["k"])(i.getCartesians(),function(e,t){(Object(o["q"])(n,e.getAxis("x").model)>=0||Object(o["q"])(r,e.getAxis("y").model)>=0)&&a.push(e)}),t.push({panelId:"grid--"+e.id,gridModel:e,coordSysModel:e,coordSys:a[0],coordSyses:a,getPanelRect:nn.grid,xAxisDeclared:s[e.id],yAxisDeclared:l[e.id]})}))},geo:function(e,t){Object(o["k"])(e.geoModels,function(e){var n=e.coordinateSystem;t.push({panelId:"geo--"+e.id,geoModel:e,coordSysModel:e,coordSys:n,coordSyses:[n],getPanelRect:nn.geo})})}},tn=[function(e,t){var n=e.xAxisModel,r=e.yAxisModel,i=e.gridModel;return!i&&n&&(i=n.axis.grid.model),!i&&r&&(i=r.axis.grid.model),i&&i===t.gridModel},function(e,t){var n=e.geoModel;return n&&n===t.geoModel}],nn={grid:function(){return this.coordSys.master.getRect().clone()},geo:function(){var e=this.coordSys,t=e.getBoundingRect().clone();return t.applyTransform(Z["getTransform"](e)),t}},rn={lineX:Object(o["i"])(on,0),lineY:Object(o["i"])(on,1),rect:function(e,t,n,r){var i=e?t.pointToData([n[0][0],n[1][0]],r):t.dataToPoint([n[0][0],n[1][0]],r),o=e?t.pointToData([n[0][1],n[1][1]],r):t.dataToPoint([n[0][1],n[1][1]],r),a=[$t([i[0],o[0]]),$t([i[1],o[1]])];return{values:a,xyMinMax:a}},polygon:function(e,t,n,r){var i=[[1/0,-1/0],[1/0,-1/0]],a=Object(o["F"])(n,function(n){var o=e?t.pointToData(n,r):t.dataToPoint(n,r);return i[0][0]=Math.min(i[0][0],o[0]),i[1][0]=Math.min(i[1][0],o[1]),i[0][1]=Math.max(i[0][1],o[0]),i[1][1]=Math.max(i[1][1],o[1]),o});return{values:a,xyMinMax:i}}};function on(e,t,n,r){var i=n.getAxis(["x","y"][e]),a=$t(Object(o["F"])([0,1],function(e){return t?i.coordToData(i.toLocalCoord(r[e]),!0):i.toGlobalCoord(i.dataToCoord(r[e]))})),s=[];return s[e]=a,s[1-e]=[NaN,NaN],{values:a,xyMinMax:s}}var an={lineX:Object(o["i"])(sn,0),lineY:Object(o["i"])(sn,1),rect:function(e,t,n){return[[e[0][0]-n[0]*t[0][0],e[0][1]-n[0]*t[0][1]],[e[1][0]-n[1]*t[1][0],e[1][1]-n[1]*t[1][1]]]},polygon:function(e,t,n){return Object(o["F"])(e,function(e,r){return[e[0]-n[0]*t[r][0],e[1]-n[1]*t[r][1]]})}};function sn(e,t,n,r){return[t[0]-r[e]*n[0],t[1]-r[e]*n[1]]}function ln(e,t){var n=un(e),r=un(t),i=[n[0]/r[0],n[1]/r[1]];return isNaN(i[0])&&(i[0]=1),isNaN(i[1])&&(i[1]=1),i}function un(e){return e?[e[0][1]-e[0][0],e[1][1]-e[1][0]]:[NaN,NaN]}var cn=Qt,fn=n("Lx9C"),dn=o["k"],hn=Object(d["n"])("toolbox-dataZoom_"),pn=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return Object(i["a"])(t,e),t.prototype.render=function(e,t,n,r){this._brushController||(this._brushController=new Yt(n.getZr()),this._brushController.on("brush",o["c"](this._onBrush,this)).mount()),yn(e,t,this,r,n),vn(e,t)},t.prototype.onclick=function(e,t,n){gn[n].call(this)},t.prototype.remove=function(e,t){this._brushController&&this._brushController.unmount()},t.prototype.dispose=function(e,t){this._brushController&&this._brushController.dispose()},t.prototype._onBrush=function(e){var t=e.areas;if(e.isEnd&&t.length){var n={},r=this.ecModel;this._brushController.updateCovers([]);var i=new cn(mn(this.model),r,{include:["grid"]});i.matchOutputRanges(t,r,function(e,t,n){if("cartesian2d"===n.type){var r=e.brushType;"rect"===r?(o("x",n,t[0]),o("y",n,t[1])):o({lineX:"x",lineY:"y"}[r],n,t)}}),De(r,n),this._dispatchZoomAction(n)}function o(e,t,i){var o=t.getAxis(e),s=o.model,l=a(e,s,r),u=l.findRepresentativeAxisProxy(s).getMinMaxSpan();null==u.minValueSpan&&null==u.maxValueSpan||(i=S(0,i.slice(),o.scale.getExtent(),0,u.minValueSpan,u.maxValueSpan)),l&&(n[l.id]={dataZoomId:l.id,startValue:i[0],endValue:i[1]})}function a(e,t,n){var r;return n.eachComponent({mainType:"dataZoom",subType:"select"},function(n){var i=n.getAxisModel(e,t.componentIndex);i&&(r=n)}),r}},t.prototype._dispatchZoomAction=function(e){var t=[];dn(e,function(e,n){t.push(o["d"](e))}),t.length&&this.api.dispatchAction({type:"dataZoom",from:this.uid,batch:t})},t.getDefaultOption=function(e){var t={show:!0,filterMode:"filter",icon:{zoom:"M0,13.5h26.9 M13.5,26.9V0 M32.1,13.5H58V58H13.5 V32.1",back:"M22,1.4L9.9,13.5l12.3,12.3 M10.3,13.5H54.9v44.6 H10.3v-26"},title:e.getLocaleModel().get(["toolbox","dataZoom","title"]),brushStyle:{borderWidth:0,color:"rgba(210,219,238,0.2)"}};return t},t}(V),gn={zoom:function(){var e=!this._isZoomActive;this.api.dispatchAction({type:"takeGlobalCursor",key:"dataZoomSelect",dataZoomSelectActive:e})},back:function(){this._dispatchZoomAction(Ae(this.ecModel))}};function mn(e){var t={xAxisIndex:e.get("xAxisIndex",!0),yAxisIndex:e.get("yAxisIndex",!0),xAxisId:e.get("xAxisId",!0),yAxisId:e.get("yAxisId",!0)};return null==t.xAxisIndex&&null==t.xAxisId&&(t.xAxisIndex="all"),null==t.yAxisIndex&&null==t.yAxisId&&(t.yAxisIndex="all"),t}function vn(e,t){e.setIconStatus("back",Pe(t)>1?"emphasis":"normal")}function yn(e,t,n,r,i){var o=n._isZoomActive;r&&"takeGlobalCursor"===r.type&&(o="dataZoomSelect"===r.key&&r.dataZoomSelectActive),n._isZoomActive=o,e.setIconStatus("zoom",o?"emphasis":"normal");var a=new cn(mn(e),t,{include:["grid"]}),s=a.makePanelOpts(i,function(e){return e.xAxisDeclared&&!e.yAxisDeclared?"lineX":!e.xAxisDeclared&&e.yAxisDeclared?"lineY":"rect"});n._brushController.setPanels(s).enableBrush(!(!o||!s.length)&&{brushType:"auto",brushStyle:e.getModel("brushStyle").getItemStyle()})}Object(fn["b"])("dataZoom",function(e){var t=e.getComponent("toolbox",0),n=["feature","dataZoom"];if(t&&null!=t.get(n)){var r=t.getModel(n),i=[],o=mn(r),a=Object(d["q"])(e,o);return dn(a.xAxisModels,function(e){return s(e,"xAxis","xAxisIndex")}),dn(a.yAxisModels,function(e){return s(e,"yAxis","yAxisIndex")}),i}function s(e,t,n){var o=e.componentIndex,a={type:"select",$fromToolbox:!0,filterMode:r.get("filterMode",!0)||"filter",id:hn+t+o};a[n]=o,i.push(a)}});var bn=pn;function _n(e){e.registerComponentModel(H),e.registerComponentView(re),G("saveAsImage",ae),G("magicType",de),G("dataView",Te),G("dataZoom",bn),G("restore",Re),Object(r["a"])(B)}n.d(t,"a",function(){return _n})},MMmD:function(e,t,n){var r=n("lSCD"),i=n("shjB");function o(e){return null!=e&&i(e.length)&&!r(e)}e.exports=o},MrPd:function(e,t,n){var r=n("hypo"),i=n("ljhN"),o=Object.prototype,a=o.hasOwnProperty;function s(e,t,n){var o=e[t];a.call(e,t)&&i(o,n)&&(void 0!==n||t in e)||r(e,t,n)}e.exports=s},N5VM:function(e,t,n){"use strict";var r=this&&this.__extends||function(){var e=function(t,n){return e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])},e(t,n)};return function(t,n){function r(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}(),i=this&&this.__assign||function(){return i=Object.assign||function(e){for(var t,n=1,r=arguments.length;n0&&e.handleMarkers(x,t);for(r=0;r-1&&(u.style.stroke=u.style.fill,u.style.fill="#fff",u.style.lineWidth=2),t},t.type="series.line",t.dependencies=["grid","polar"],t.defaultOption={zlevel:0,z:3,coordinateSystem:"cartesian2d",legendHoverLink:!0,clip:!0,label:{position:"top"},endLabel:{show:!1,valueAnimation:!0,distance:8},lineStyle:{width:2,type:"solid"},emphasis:{scale:!0,lineStyle:{width:"bolder"}},step:!1,smooth:!1,smoothMonotone:null,symbol:"emptyCircle",symbolSize:4,symbolRotate:null,showSymbol:!0,showAllSymbol:"auto",connectNulls:!1,sampling:"none",animationEasing:"linear",progressive:0,hoverLayerThreshold:1/0,universalTransition:{divideShape:"clone"}},t}(o["b"]),u=l,c=n("bYtY"),f=n("3qvL"),d=n("hhxK"),h=n("fWwa"),p=n("x3X8"),g=n("eDfh"),m=n("Dagg"),v=function(e){function t(t,n,r,i){var o=e.call(this)||this;return o.updateData(t,n,r,i),o}return Object(r["a"])(t,e),t.prototype._createSymbol=function(e,t,n,r,i){this.removeAll();var o=Object(a["a"])(e,-1,-1,2,2,null,i);o.attr({z2:100,culling:!0,scaleX:r[0]/2,scaleY:r[1]/2}),o.drift=y,this._symbolType=e,this.add(o)},t.prototype.stopSymbolAnimation=function(e){this.childAt(0).stopAnimation(null,e)},t.prototype.getSymbolType=function(){return this._symbolType},t.prototype.getSymbolPath=function(){return this.childAt(0)},t.prototype.highlight=function(){Object(h["o"])(this.childAt(0))},t.prototype.downplay=function(){Object(h["z"])(this.childAt(0))},t.prototype.setZ=function(e,t){var n=this.childAt(0);n.zlevel=e,n.z=t},t.prototype.setDraggable=function(e){var t=this.childAt(0);t.draggable=e,t.cursor=e?"move":t.cursor},t.prototype.updateData=function(e,n,r,i){this.silent=!1;var o=e.getItemVisual(n,"symbol")||"circle",a=e.hostModel,s=t.getSymbolSize(e,n),l=o!==this._symbolType,u=i&&i.disableAnimation;if(l){var c=e.getItemVisual(n,"symbolKeepAspect");this._createSymbol(o,e,n,s,c)}else{var d=this.childAt(0);d.silent=!1;var h={scaleX:s[0]/2,scaleY:s[1]/2};u?d.attr(h):f["h"](d,h,a,n),Object(f["g"])(d)}if(this._updateCommon(e,n,s,r,i),l){d=this.childAt(0);if(!u){h={scaleX:this._sizeX,scaleY:this._sizeY,style:{opacity:d.style.opacity}};d.scaleX=d.scaleY=0,d.style.opacity=0,f["c"](d,h,a,n)}}u&&this.childAt(0).stopAnimation("remove"),this._seriesModel=a},t.prototype._updateCommon=function(e,t,n,r,i){var o,s,l,u,f,d,v,y,b=this.childAt(0),_=e.hostModel;if(r&&(o=r.emphasisItemStyle,s=r.blurItemStyle,l=r.selectItemStyle,u=r.focus,f=r.blurScope,d=r.labelStatesModels,v=r.hoverScale,y=r.cursorStyle),!r||e.hasItemOption){var x=r&&r.itemModel?r.itemModel:e.getItemModel(t),w=x.getModel("emphasis");o=w.getModel("itemStyle").getItemStyle(),l=x.getModel(["select","itemStyle"]).getItemStyle(),s=x.getModel(["blur","itemStyle"]).getItemStyle(),u=w.get("focus"),f=w.get("blurScope"),d=Object(g["c"])(x),v=w.getShallow("scale"),y=x.getShallow("cursor")}var k=e.getItemVisual(t,"symbolRotate");b.attr("rotation",(k||0)*Math.PI/180||0);var O=Object(a["b"])(e.getItemVisual(t,"symbolOffset"),n);O&&(b.x=O[0],b.y=O[1]),y&&b.attr("cursor",y);var S=e.getItemVisual(t,"style"),M=S.fill;if(b instanceof m["a"]){var C=b.style;b.useStyle(Object(c["m"])({image:C.image,x:C.x,y:C.y,width:C.width,height:C.height},S))}else b.__isEmptyBrush?b.useStyle(Object(c["m"])({},S)):b.useStyle(S),b.style.decal=null,b.setColor(M,i&&i.symbolInnerColor),b.style.strokeNoScale=!0;var T=e.getItemVisual(t,"liftZ"),j=this._z2;null!=T?null==j&&(this._z2=b.z2,b.z2+=T):null!=j&&(b.z2=j,this._z2=null);var I=i&&i.useNameLabel;function D(t){return I?e.getName(t):Object(p["b"])(e,t)}Object(g["e"])(b,d,{labelFetcher:_,labelDataIndex:t,defaultText:D,inheritColor:M,defaultOpacity:S.opacity}),this._sizeX=n[0]/2,this._sizeY=n[1]/2;var A=b.ensureState("emphasis");if(A.style=o,b.ensureState("select").style=l,b.ensureState("blur").style=s,v){var E=Math.max(1.1,3/this._sizeY);A.scaleX=this._sizeX*E,A.scaleY=this._sizeY*E}this.setSymbolScale(1),Object(h["m"])(this,u,f)},t.prototype.setSymbolScale=function(e){this.scaleX=this.scaleY=e},t.prototype.fadeOut=function(e,t){var n=this.childAt(0),r=this._seriesModel,i=Object(d["a"])(this).dataIndex,o=t&&t.animation;if(this.silent=n.silent=!0,t&&t.fadeLabel){var a=n.getTextContent();a&&f["e"](a,{style:{opacity:0}},r,{dataIndex:i,removeOpt:o,cb:function(){n.removeTextContent()}})}else n.removeTextContent();f["e"](n,{style:{opacity:0},scaleX:0,scaleY:0},r,{dataIndex:i,cb:e,removeOpt:o})},t.getSymbolSize=function(e,t){return Object(a["c"])(e.getItemVisual(t,"symbolSize"))},t}(s["a"]);function y(e,t){this.parent.drift(e,t)}var b=v;function _(e,t,n,r){return t&&!isNaN(t[0])&&!isNaN(t[1])&&!(r.isIgnore&&r.isIgnore(n))&&!(r.clipShape&&!r.clipShape.contain(t[0],t[1]))&&"none"!==e.getItemVisual(n,"symbol")}function x(e){return null==e||Object(c["z"])(e)||(e={isIgnore:e}),e||{}}function w(e){var t=e.hostModel,n=t.getModel("emphasis");return{emphasisItemStyle:n.getModel("itemStyle").getItemStyle(),blurItemStyle:t.getModel(["blur","itemStyle"]).getItemStyle(),selectItemStyle:t.getModel(["select","itemStyle"]).getItemStyle(),focus:n.get("focus"),blurScope:n.get("blurScope"),hoverScale:n.get("scale"),labelStatesModels:Object(g["c"])(t),cursorStyle:t.get("cursor")}}var k=function(){function e(e){this.group=new s["a"],this._SymbolCtor=e||b}return e.prototype.updateData=function(e,t){t=x(t);var n=this.group,r=e.hostModel,i=this._data,o=this._SymbolCtor,a=t.disableAnimation,s=w(e),l={disableAnimation:a},u=t.getSymbolPoint||function(t){return e.getItemLayout(t)};i||n.removeAll(),e.diff(i).add(function(r){var i=u(r);if(_(e,i,r,t)){var a=new o(e,r,s,l);a.setPosition(i),e.setItemGraphicEl(r,a),n.add(a)}}).update(function(c,d){var h=i.getItemGraphicEl(d),p=u(c);if(_(e,p,c,t)){var g=e.getItemVisual(c,"symbol")||"circle",m=h&&h.getSymbolType&&h.getSymbolType();if(!h||m&&m!==g)n.remove(h),h=new o(e,c,s,l),h.setPosition(p);else{h.updateData(e,c,s,l);var v={x:p[0],y:p[1]};a?h.attr(v):f["h"](h,v,r)}n.add(h),e.setItemGraphicEl(c,h)}else n.remove(h)}).remove(function(e){var t=i.getItemGraphicEl(e);t&&t.fadeOut(function(){n.remove(t)})}).execute(),this._getSymbolPoint=u,this._data=e},e.prototype.isPersistent=function(){return!0},e.prototype.updateLayout=function(){var e=this,t=this._data;t&&t.eachItemGraphicEl(function(t,n){var r=e._getSymbolPoint(n);t.setPosition(r),t.markRedraw()})},e.prototype.incrementalPrepareUpdate=function(e){this._seriesScope=w(e),this._data=null,this.group.removeAll()},e.prototype.incrementalUpdate=function(e,t,n){function r(e){e.isGroup||(e.incremental=!0,e.ensureState("emphasis").hoverLayer=!0)}n=x(n);for(var i=e.start;i0?n=r[0]:r[1]<0&&(n=r[1]),n}function T(e,t,n,r){var i=NaN;e.stacked&&(i=n.get(n.getCalculationInfo("stackedOverDimension"),r)),isNaN(i)&&(i=e.valueStart);var o=e.baseDataOffset,a=[];return a[o]=n.get(e.baseDim,r),a[1-o]=i,t.dataToPoint(a)}var j="undefined"!==typeof Float32Array,I=j?Float32Array:Array;function D(e){return Object(c["s"])(e)?j?new Float32Array(e):e:new I(e)}function A(e,t){var n=[];return t.diff(e).add(function(e){n.push({cmd:"+",idx:e})}).update(function(e,t){n.push({cmd:"=",idx:t,idx1:e})}).remove(function(e){n.push({cmd:"-",idx:e})}).execute(),n}function E(e,t,n,r,i,o,a,s){for(var l=A(e,t),u=[],c=[],f=[],d=[],h=[],p=[],g=[],m=M(i,t,a),v=e.getLayout("points")||[],y=t.getLayout("points")||[],b=0;b=i||g<0)break;if(Y(v,y)){if(l){g+=o;continue}break}if(g===n)e[o>0?"moveTo":"lineTo"](v,y),f=v,d=y;else{var b=v-u,_=y-c;if(b*b+_*_<.5){g+=o;continue}if(a>0){var x=g+o,w=t[2*x],k=t[2*x+1],O=m+1;if(l)while(Y(w,k)&&O=r||Y(w,k))h=v,p=y;else{M=w-u,C=k-c;var I=v-u,D=w-v,A=y-c,E=k-y,P=void 0,L=void 0;"x"===s?(P=Math.abs(I),L=Math.abs(D),h=v-P*a,p=y,T=v+P*a,j=y):"y"===s?(P=Math.abs(A),L=Math.abs(E),h=v,p=y-P*a,T=v,j=y+P*a):(P=Math.sqrt(I*I+A*A),L=Math.sqrt(D*D+E*E),S=L/(L+P),h=v-M*a*(1-S),p=y-C*a*(1-S),T=v+M*a*S,j=y+C*a*S,T=B(T,V(w,v)),j=B(j,V(k,y)),T=V(T,B(w,v)),j=V(j,B(k,y)),M=T-v,C=j-y,h=v-M*P/L,p=y-C*P/L,h=B(h,V(u,v)),p=B(p,V(c,y)),h=V(h,B(u,v)),p=V(p,B(c,y)),M=v-h,C=y-p,T=v+M*L/P,j=y+C*L/P)}e.bezierCurveTo(f,d,h,p,v,y),f=T,d=j}else e.lineTo(v,y)}u=v,c=y,g+=o}return m}var U=function(){function e(){this.smooth=0,this.smoothConstraint=!0}return e}(),W=function(e){function t(t){var n=e.call(this,t)||this;return n.type="ec-polyline",n}return Object(r["a"])(t,e),t.prototype.getDefaultStyle=function(){return{stroke:"#000",fill:null}},t.prototype.getDefaultShape=function(){return new U},t.prototype.buildPath=function(e,t){var n=t.points,r=0,i=n.length/2;if(t.connectNulls){for(;i>0;i--)if(!Y(n[2*i-2],n[2*i-1]))break;for(;r=0){var y=s?(d-r)*v+r:(f-n)*v+n;return s?[e,y]:[y,e]}n=f,r=d;break;case a.C:f=o[u++],d=o[u++],h=o[u++],p=o[u++],g=o[u++],m=o[u++];var b=s?Object(F["f"])(n,f,h,g,e,l):Object(F["f"])(r,d,p,m,e,l);if(b>0)for(var _=0;_=0){y=s?Object(F["a"])(r,d,p,m,x):Object(F["a"])(n,f,h,g,x);return s?[e,y]:[y,e]}}n=g,r=m;break}}},t}(R["b"]),H=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return Object(r["a"])(t,e),t}(U),q=function(e){function t(t){var n=e.call(this,t)||this;return n.type="ec-polygon",n}return Object(r["a"])(t,e),t.prototype.getDefaultShape=function(){return new H},t.prototype.buildPath=function(e,t){var n=t.points,r=t.stackedOnPoints,i=0,o=n.length/2,a=t.smoothMonotone;if(t.connectNulls){for(;o>0;o--)if(!Y(n[2*o-2],n[2*o-1]))break;for(;it){r&&i.push(a(r,l,t));break}n&&(i.push(a(n,l,0)),n=null),i.push(l),r=l}}return i}function ae(e,t,n){var r=e.getVisual("visualMeta");if(r&&r.length&&e.count()&&"cartesian2d"===t.type){for(var i,o,a=r.length-1;a>=0;a--){var s=e.getDimensionInfo(r[a].dimension);if(i=s&&s.coordDim,"x"===i||"y"===i){o=r[a];break}}if(o){var l=t.getAxis(i),u=c["F"](o.stops,function(e){return{coord:l.toGlobalCoord(l.dataToCoord(e.value)),color:e.color}}),f=u.length,d=o.outerColors.slice();f&&u[0].coord>u[f-1].coord&&(u.reverse(),d.reverse());var h=oe(u,"x"===i?n.getWidth():n.getHeight()),p=h.length;if(!p&&f)return u[0].coord<0?d[1]?d[1]:u[f-1].color:d[0]?d[0]:u[0].color;var g=0,m=h[0].coord-g,v=h[p-1].coord+g,y=v-m;if(y<.001)return"transparent";c["k"](h,function(e){e.offset=(e.coord-m)/y}),h.push({offset:p?h[p-1].offset:.5,color:d[1]||"transparent"}),h.unshift({offset:p?h[0].offset:.5,color:d[0]||"transparent"});var b=new P["a"](0,0,0,0,h,!0);return b[i]=m,b[i+"2"]=v,b}}}function se(e,t,n){var r=e.get("showAllSymbol"),i="auto"===r;if(!r||i){var o=n.getAxesByScale("ordinal")[0];if(o&&(!i||!le(o,t))){var a=t.mapDimension(o.dim),s={};return c["k"](o.getViewLabels(),function(e){var t=o.scale.getRawOrdinalNumber(e.tickValue);s[t]=1}),function(e){return!s.hasOwnProperty(t.get(a,e))}}}}function le(e,t){var n=e.getExtent(),r=Math.abs(n[1]-n[0])/e.scale.count();isNaN(r)&&(r=0);for(var i=t.count(),o=Math.max(1,Math.round(i/5)),a=0;ar)return!1;return!0}function ue(e,t){return isNaN(e)||isNaN(t)}function ce(e){for(var t=e.length/2;t>0;t--)if(!ue(e[2*t-2],e[2*t-1]))break;return t-1}function fe(e,t){return[e[2*t],e[2*t+1]]}function de(e,t,n){for(var r,i,o=e.length/2,a="x"===n?0:1,s=0,l=-1,u=0;u=t||r>=t&&i<=t){l=u;break}s=u,r=i}else r=i;return{range:[s,l],t:(t-r)/(i-r)}}function he(e){if(e.get(["endLabel","show"]))return!0;for(var t=0;t0&&"bolder"===e.get(["emphasis","lineStyle","width"])){var N=v.getState("emphasis").style;N.lineWidth=+v.style.lineWidth+1}Object(d["a"])(v).seriesIndex=e.seriesIndex,Object(h["m"])(v,P,L);var R=ne(e.get("smooth")),z=e.get("smoothMonotone"),F=e.get("connectNulls");if(v.setShape({smooth:R,smoothMonotone:z,connectNulls:F}),y){var B=a.getCalculationInfo("stackedOnSeries"),V=0;y.useStyle(c["j"](l.getAreaStyle(),{fill:D,opacity:.7,lineJoin:"bevel",decal:a.getVisual("style").decal})),B&&(V=ne(B.get("smooth"))),y.setShape({smooth:R,stackedOnSmooth:V,smoothMonotone:z,connectNulls:F}),Object(h["D"])(y,e,"areaStyle"),Object(d["a"])(y).seriesIndex=e.seriesIndex,Object(h["m"])(y,P,L)}var Y=function(e){r._changePolyState(e)};a.eachItemGraphicEl(function(e){e&&(e.onHoverStateChange=Y)}),this._polyline.onHoverStateChange=Y,this._data=a,this._coordSys=i,this._stackedOnPoints=O,this._points=u,this._step=I,this._valueOrigin=w},t.prototype.dispose=function(){},t.prototype.highlight=function(e,t,n,r){var i=e.getData(),o=N["s"](i,r);if(this._changePolyState("emphasis"),!(o instanceof Array)&&null!=o&&o>=0){var a=i.getLayout("points"),s=i.getItemGraphicEl(o);if(!s){var l=a[2*o],u=a[2*o+1];if(isNaN(l)||isNaN(u))return;if(this._clipShapeForSymbol&&!this._clipShapeForSymbol.contain(l,u))return;var c=e.get("zlevel"),f=e.get("z");s=new b(i,o),s.x=l,s.y=u,s.setZ(c,f);var d=s.getSymbolPath().getTextContent();d&&(d.zlevel=c,d.z=f,d.z2=this._polyline.z2+1),s.__temp=!0,i.setItemGraphicEl(o,s),s.stopSymbolAnimation(!0),this.group.add(s)}s.highlight()}else Z["a"].prototype.highlight.call(this,e,t,n,r)},t.prototype.downplay=function(e,t,n,r){var i=e.getData(),o=N["s"](i,r);if(this._changePolyState("normal"),null!=o&&o>=0){var a=i.getItemGraphicEl(o);a&&(a.__temp?(i.setItemGraphicEl(o,null),this.group.remove(a)):a.downplay())}else Z["a"].prototype.downplay.call(this,e,t,n,r)},t.prototype._changePolyState=function(e){var t=this._polygon;Object(h["C"])(this._polyline,e),t&&Object(h["C"])(t,e)},t.prototype._newPolyline=function(e){var t=this._polyline;return t&&this._lineGroup.remove(t),t=new W({shape:{points:e},segmentIgnoreThreshold:2,z2:10}),this._lineGroup.add(t),this._polyline=t,t},t.prototype._newPolygon=function(e,t){var n=this._polygon;return n&&this._lineGroup.remove(n),n=new q({shape:{points:e,stackedOnPoints:t},segmentIgnoreThreshold:2}),this._lineGroup.add(n),this._polygon=n,n},t.prototype._initSymbolLabelAnimation=function(e,t,n){var r,i,o=t.getBaseAxis(),a=o.inverse;"cartesian2d"===t.type?(r=o.isHorizontal(),i=!1):"polar"===t.type&&(r="angle"===o.dim,i=!0);var s=e.hostModel,l=s.get("animationDuration");"function"===typeof l&&(l=l(null));var u=s.get("animationDelay")||0,c="function"===typeof u?u(null):u;e.eachItemGraphicEl(function(e,o){var s=e;if(s){var f=[e.x,e.y],d=void 0,h=void 0,p=void 0;if(n)if(i){var g=n,m=t.pointToCoord(f);r?(d=g.startAngle,h=g.endAngle,p=-m[1]/180*Math.PI):(d=g.r0,h=g.r,p=m[0])}else{var v=n;r?(d=v.x,h=v.x+v.width,p=e.x):(d=v.y+v.height,h=v.y,p=e.y)}var y=h===d?0:(p-d)/(h-d);a&&(y=1-y);var b="function"===typeof u?u(o):l*y+c,_=s.getSymbolPath(),x=_.getTextContent();s.attr({scaleX:0,scaleY:0}),s.animateTo({scaleX:1,scaleY:1},{duration:200,setToFinal:!0,delay:b}),x&&x.animateFrom({style:{opacity:0}},{duration:300,delay:b}),_.disableLabelAnimation=!0}})},t.prototype._initOrUpdateEndLabel=function(e,t,n){var r=e.getModel("endLabel");if(he(e)){var i=e.getData(),o=this._polyline,a=this._endLabel;a||(a=this._endLabel=new L["a"]({z2:200}),a.ignoreClip=!0,o.setTextContent(this._endLabel),o.disableLabelAnimation=!0);var s=ce(i.getLayout("points"));s>=0&&(Object(g["e"])(o,Object(g["c"])(e,"endLabel"),{inheritColor:n,labelFetcher:e,labelDataIndex:s,defaultText:function(e,t,n){return null!=n?Object(p["a"])(i,n):Object(p["b"])(i,e)},enableTextSetter:!0},ge(r,t)),o.textConfig.position=null)}else this._endLabel&&(this._polyline.removeTextContent(),this._endLabel=null)},t.prototype._endLabelOnDuring=function(e,t,n,r,i,o,a){var s=this._endLabel,l=this._polyline;if(s){e<1&&null==r.originalX&&(r.originalX=s.x,r.originalY=s.y);var u=n.getLayout("points"),c=n.hostModel,f=c.get("connectNulls"),d=o.get("precision"),h=o.get("distance")||0,p=a.getBaseAxis(),m=p.isHorizontal(),v=p.inverse,y=t.shape,b=v?m?y.x:y.y+y.height:m?y.x+y.width:y.y,_=(m?h:0)*(v?-1:1),x=(m?0:-h)*(v?-1:1),w=m?"x":"y",k=de(u,b,w),O=k.range,S=O[1]-O[0],M=void 0;if(S>=1){if(S>1&&!f){var C=fe(u,O[0]);s.attr({x:C[0]+_,y:C[1]+x}),i&&(M=c.getRawValue(O[0]))}else{C=l.getPointOn(b,w);C&&s.attr({x:C[0]+_,y:C[1]+x});var T=c.getRawValue(O[0]),j=c.getRawValue(O[1]);i&&(M=N["i"](n,d,T,j,k.t))}r.lastFrameIndex=O[0]}else{var I=1===e||r.lastFrameIndex>0?O[0]:0;C=fe(u,I);i&&(M=c.getRawValue(I)),s.attr({x:C[0]+_,y:C[1]+x})}i&&Object(g["d"])(s).setLabelText(M)}},t.prototype._doUpdateAnimation=function(e,t,n,r,i,o){var a=this._polyline,s=this._polygon,l=e.hostModel,u=E(this._data,e,this._stackedOnPoints,t,this._coordSys,n,this._valueOrigin,o),c=u.current,d=u.stackedOnCurrent,h=u.next,p=u.stackedOnNext;if(i&&(c=ie(u.current,n,i),d=ie(u.stackedOnCurrent,n,i),h=ie(u.next,n,i),p=ie(u.stackedOnNext,n,i)),te(c,h)>3e3||s&&te(d,p)>3e3)return a.stopAnimation(),a.setShape({points:h}),void(s&&(s.stopAnimation(),s.setShape({points:h,stackedOnPoints:p})));a.shape.__points=u.current,a.shape.points=c;var g={shape:{points:h}};u.current!==c&&(g.shape.__points=u.next),a.stopAnimation(),f["h"](a,g,l),s&&(s.setShape({points:c,stackedOnPoints:d}),s.stopAnimation(),f["h"](s,{shape:{stackedOnPoints:p}},l),a.shape.points!==s.shape.points&&(s.shape.points=a.shape.points));for(var m=[],v=u.status,y=0;y0){if(e<=i)return a;if(e>=o)return s}else{if(e>=i)return a;if(e<=o)return s}else{if(e===i)return a;if(e===o)return s}return(e-i)/l*u+a}function s(e,t){switch(e){case"center":case"middle":e="50%";break;case"left":case"top":e="0%";break;case"right":case"bottom":e="100%";break}return"string"===typeof e?o(e).match(/%$/)?parseFloat(e)/100*t:parseFloat(e):null==e?NaN:+e}function l(e,t,n){return null==t&&(t=10),t=Math.min(Math.max(0,t),i),e=(+e).toFixed(t),n?e:+e}function u(e){return e.sort(function(e,t){return e-t}),e}function c(e){if(e=+e,isNaN(e))return 0;if(e>1e-14)for(var t=1,n=0;n<15;n++,t*=10)if(Math.round(e*t)/t===e)return n;return f(e)}function f(e){var t=e.toString().toLowerCase(),n=t.indexOf("e"),r=n>0?+t.slice(n+1):0,i=n>0?n:t.length,o=t.indexOf("."),a=o<0?0:i-1-o;return Math.max(0,a-r)}function d(e,t){var n=Math.log,r=Math.LN10,i=Math.floor(n(e[1]-e[0])/r),o=Math.round(n(Math.abs(t[1]-t[0]))/r),a=Math.min(Math.max(-i+o,0),20);return isFinite(a)?a:20}function h(e,t){var n=Math.max(c(e),c(t)),r=e+t;return n>i?r:l(r,n)}function p(e){var t=2*Math.PI;return(e%t+t)%t}function g(e){return e>-r&&e=10&&t++,t}function _(e,t){var n,r=b(e),i=Math.pow(10,r),o=e/i;return n=t?o<1.5?1:o<2.5?2:o<4?3:o<7?5:10:o<1?1:o<2?2:o<3?3:o<5?5:10,e=n*i,r>=-20?+e.toFixed(r<0?-r:0):e}function x(e){var t=parseFloat(e);return t==e&&(0!==t||"string"!==typeof e||e.indexOf("x")<=0)?t:NaN}function w(e){return!isNaN(x(e))}function k(){return Math.round(9*Math.random())}function O(e,t){return 0===t?e:O(t,e%t)}function S(e,t){return null==e?t:null==t?e:e*t/O(e,t)}},OKJ2:function(e,t,n){"use strict";n.d(t,"a",function(){return s}),n.d(t,"b",function(){return l});var r=n("bYtY"),i=n("KxfA"),o=n("7aKB"),a=/\{@(.+?)\}/g,s=function(){function e(){}return e.prototype.getDataParams=function(e,t){var n=this.getData(t),r=this.getRawValue(e,t),i=n.getRawIndex(e),o=n.getName(e),a=n.getRawDataItem(e),s=n.getItemVisual(e,"style"),l=s&&s[n.getItemVisual(e,"drawType")||"fill"],u=s&&s.stroke,c=this.mainType,f="series"===c,d=n.userOutput&&n.userOutput.get();return{componentType:c,componentSubType:this.subType,componentIndex:this.componentIndex,seriesType:f?this.subType:null,seriesIndex:this.seriesIndex,seriesId:f?this.id:null,seriesName:f?this.name:null,name:o,dataIndex:i,data:a,dataType:t,value:r,color:l,borderColor:u,dimensionNames:d?d.fullDimensions:null,encode:d?d.encode:null,$vars:["seriesName","name","value"]}},e.prototype.getFormattedLabel=function(e,t,n,s,l,u){t=t||"normal";var c=this.getData(n),f=this.getDataParams(e,n);if(u&&(f.value=u.interpolatedValue),null!=s&&r["s"](f.value)&&(f.value=f.value[s]),!l){var d=c.getItemModel(e);l=d.get("normal"===t?["label","formatter"]:[t,"label","formatter"])}if("function"===typeof l)return f.status=t,f.dimensionIndex=s,l(f);if("string"===typeof l){var h=Object(o["d"])(l,f);return h.replace(a,function(t,n){var o=n.length,a=n;"["===a.charAt(0)&&"]"===a.charAt(o-1)&&(a=+a.slice(1,o-1));var s=Object(i["e"])(c,e,a);if(u&&r["s"](u.interpolatedValue)){var l=c.getDimensionIndex(a);l>=0&&(s=u.interpolatedValue[l])}return null!=s?s+"":""})}},e.prototype.getRawValue=function(e,t){return Object(i["e"])(this.getData(t),e)},e.prototype.formatTooltip=function(e,t,n){},e}();function l(e){var t,n;return r["z"](e)?e.type&&(n=e):t=e,{markupText:t,markupFragment:n}}},OQFs:function(e,t,n){"use strict";n.d(t,"a",function(){return i}),n.d(t,"b",function(){return a});var r=n("KCsZ"),i=[["lineWidth","width"],["stroke","color"],["opacity"],["shadowBlur"],["shadowOffsetX"],["shadowOffsetY"],["shadowColor"],["lineDash","type"],["lineDashOffset","dashOffset"],["lineCap","cap"],["lineJoin","join"],["miterLimit"]],o=Object(r["a"])(i),a=function(){function e(){}return e.prototype.getLineStyle=function(e){return o(this,e)},e}()},Q1l4:function(e,t){function n(e,t){var n=-1,r=e.length;t||(t=Array(r));while(++nt)return e[r];return e[n-1]}function s(e,t,n,r,i,o,s){o=o||e;var l=t(o),u=l.paletteIdx||0,c=l.paletteNameMap=l.paletteNameMap||{};if(c.hasOwnProperty(i))return c[i];var f=null!=s&&r?a(r,s):n;if(f=f||n,f&&f.length){var d=f[u];return i&&(c[i]=d),l.paletteIdx=(u+1)%f.length,d}}function l(e,t){t(e).paletteIdx=0,t(e).paletteNameMap={}}},QIyF:function(e,t,n){var r=n("Kz5y"),i=function(){return r.Date.now()};e.exports=i},QcOe:function(e,t,n){var r=n("GoyQ"),i=n("6sVZ"),o=n("7Ix3"),a=Object.prototype,s=a.hasOwnProperty;function l(e){if(!r(e))return o(e);var t=i(e),n=[];for(var a in e)("constructor"!=a||!t&&s.call(e,a))&&n.push(a);return n}e.exports=l},QjYF:function(e,t,n){"use strict";var r=n("AGgm").isSpace;e.exports=function(e,t){var n,i,o=e.pos;if(10!==e.src.charCodeAt(o))return!1;n=e.pending.length-1,i=e.posMax,t||(n>=0&&32===e.pending.charCodeAt(n)?n>=1&&32===e.pending.charCodeAt(n-1)?(e.pending=e.pending.replace(/ +$/,""),e.push("hardbreak","br",0)):(e.pending=e.pending.slice(0,-1),e.push("softbreak","br",0)):e.push("softbreak","br",0)),o++;while(o3)&&!(e.sCount[l]<0)){for(r=!1,i=0,o=u.length;i40&&(s=Math.max(1,Math.floor(a/40)));for(var l=o[0],u=e.dataToCoord(l+1)-e.dataToCoord(l),c=Math.abs(u*Math.cos(r)),f=Math.abs(u*Math.sin(r)),d=0,h=0;l<=o[1];l+=s){var p=0,g=0,m=L["e"](n({value:l}),t.font,"center","top");p=1.3*m.width,g=1.3*m.height,d=Math.max(d,p,7),h=Math.max(h,g,7)}var v=d/c,y=h/f;isNaN(v)&&(v=1/0),isNaN(y)&&(y=1/0);var b=Math.max(0,Math.floor(Math.min(v,y))),_=N(e.model),x=e.getExtent(),w=_.lastAutoInterval,k=_.lastTickCount;return null!=w&&null!=k&&Math.abs(w-b)<=1&&Math.abs(k-a)<=1&&w>b&&_.axisExtent0===x[0]&&_.axisExtent1===x[1]?b=w:(_.lastTickCount=a,_.lastAutoInterval=b,_.axisExtent0=x[0],_.axisExtent1=x[1]),b}function Z(e){var t=e.getLabelModel();return{axisRotate:e.getRotate?e.getRotate():e.isHorizontal&&!e.isHorizontal()?90:0,labelRotate:t.get("rotate")||0,font:t.getFont()}}function K(e,t,n){var r=Object(O["g"])(e),i=e.scale,o=i.getExtent(),a=e.getLabelModel(),s=[],l=Math.max((t||0)+1,1),u=o[0],c=i.count();0!==u&&l>1&&c/l>2&&(u=Math.round(Math.ceil(u/l)*l));var f=Object(O["i"])(e),d=a.get("showMinLabel")||f,h=a.get("showMaxLabel")||f;d&&u!==o[0]&&g(o[0]);for(var p=u;p<=o[1];p+=l)g(p);function g(e){var t={value:e};s.push(n?e:{formattedLabel:r(t),rawLabel:i.getLabel(t),tickValue:e})}return h&&p-l!==o[1]&&g(o[1]),s}function X(e,t,n){var r=e.scale,i=Object(O["g"])(e),o=[];return u["k"](r.getTicks(),function(e){var a=r.getLabel(e),s=e.value;t(e.value,a)&&o.push(n?s:{formattedLabel:i(e),rawLabel:a,tickValue:s})}),o}var Q=[0,1],$=function(){function e(e,t,n){this.onBand=!1,this.inverse=!1,this.dim=e,this.scale=t,this._extent=n||[0,0]}return e.prototype.contain=function(e){var t=this._extent,n=Math.min(t[0],t[1]),r=Math.max(t[0],t[1]);return e>=n&&e<=r},e.prototype.containData=function(e){return this.scale.contain(e)},e.prototype.getExtent=function(){return this._extent.slice()},e.prototype.getPixelPrecision=function(e){return Object(P["d"])(e||this.scale.getExtent(),this._extent)},e.prototype.setExtent=function(e,t){var n=this._extent;n[0]=e,n[1]=t},e.prototype.dataToCoord=function(e,t){var n=this._extent,r=this.scale;return e=r.normalize(e),this.onBand&&"ordinal"===r.type&&(n=n.slice(),J(n,r.count())),Object(P["i"])(e,Q,n,t)},e.prototype.coordToData=function(e,t){var n=this._extent,r=this.scale;this.onBand&&"ordinal"===r.type&&(n=n.slice(),J(n,r.count()));var i=Object(P["i"])(e,n,Q,t);return this.scale.scale(i)},e.prototype.pointToData=function(e,t){},e.prototype.getTicksCoords=function(e){e=e||{};var t=e.tickModel||this.getTickModel(),n=z(this,t),r=n.ticks,i=Object(u["F"])(r,function(e){return{coord:this.dataToCoord("ordinal"===this.scale.type?this.scale.getRawOrdinalNumber(e):e),tickValue:e}},this),o=t.get("alignWithLabel");return ee(this,i,o,e.clamp),i},e.prototype.getMinorTicksCoords=function(){if("ordinal"===this.scale.type)return[];var e=this.model.getModel("minorTick"),t=e.get("splitNumber");t>0&&t<100||(t=5);var n=this.scale.getMinorTicks(t),r=Object(u["F"])(n,function(e){return Object(u["F"])(e,function(e){return{coord:this.dataToCoord(e),tickValue:e}},this)},this);return r},e.prototype.getViewLabels=function(){return R(this).labels},e.prototype.getLabelModel=function(){return this.model.getModel("axisLabel")},e.prototype.getTickModel=function(){return this.model.getModel("axisTick")},e.prototype.getBandWidth=function(){var e=this._extent,t=this.scale.getExtent(),n=t[1]-t[0]+(this.onBand?1:0);0===n&&(n=1);var r=Math.abs(e[1]-e[0]);return Math.abs(r)/n},e.prototype.calculateCategoryInterval=function(){return q(this)},e}();function J(e,t){var n=e[1]-e[0],r=t,i=n/r/2;e[0]+=i,e[1]-=i}function ee(e,t,n,r){var i=t.length;if(e.onBand&&!n&&i){var o,a,s=e.getExtent();if(1===i)t[0].coord=s[0],o=t[1]={coord:s[0]};else{var l=t[i-1].tickValue-t[0].tickValue,c=(t[i-1].coord-t[0].coord)/l;Object(u["k"])(t,function(e){e.coord-=c/2});var f=e.scale.getExtent();a=1+f[1]-t[i-1].tickValue,o={coord:t[i-1].coord+c*a},t.push(o)}var d=s[0]>s[1];h(t[0].coord,s[0])&&(r?t[0].coord=s[0]:t.shift()),r&&h(s[0],t[0].coord)&&t.unshift({coord:s[0]}),h(s[1],o.coord)&&(r?o.coord=s[1]:t.pop()),r&&h(o.coord,s[1])&&t.push({coord:s[1]})}function h(e,t){return e=Object(P["p"])(e),t=Object(P["p"])(t),d?e>t:et[1]&&t.reverse(),t},t.prototype.pointToData=function(e,t){return this.coordToData(this.toLocalCoord(e["x"===this.dim?0:1]),t)},t.prototype.setCategorySortInfo=function(e){if("category"!==this.type)return!1;this.model.option.categorySortInfo=e,this.scale.setSortInfo(e)},t}(te),re=ne,ie=n("AVZG"),oe=function(){function e(e,t,n){this.type="grid",this._coordsMap={},this._coordsList=[],this._axesMap={},this._axesList=[],this.axisPointerEnabled=!0,this.dimensions=I,this._initCartesian(e,t,n),this.model=e}return e.prototype.getRect=function(){return this._rect},e.prototype.update=function(e,t){var n=this._axesMap;this._updateScale(e,this.model),Object(u["k"])(n.x,function(e){Object(O["h"])(e.scale,e.model)}),Object(u["k"])(n.y,function(e){Object(O["h"])(e.scale,e.model)});var r={};Object(u["k"])(n.x,function(e){se(n,"y",e,r)}),Object(u["k"])(n.y,function(e){se(n,"x",e,r)}),this.resize(this.model,t)},e.prototype.resize=function(e,t,n){var r=e.getBoxLayoutParams(),i=!n&&e.get("containLabel"),o=Object(b["d"])(r,{width:t.getWidth(),height:t.getHeight()});this._rect=o;var a=this._axesList;function s(){Object(u["k"])(a,function(e){var t=e.isHorizontal(),n=t?[0,o.width]:[0,o.height],r=e.inverse?1:0;e.setExtent(n[r],n[1-r]),ue(e,t?o.x:o.y)})}s(),i&&(Object(u["k"])(a,function(e){if(!e.model.get(["axisLabel","inside"])){var t=Object(O["b"])(e);if(t){var n=e.isHorizontal()?"height":"width",r=e.model.get(["axisLabel","margin"]);o[n]-=t[n]+r,"top"===e.position?o.y+=t.height+r:"left"===e.position&&(o.x+=t.width+r)}}}),s()),Object(u["k"])(this._coordsList,function(e){e.calcAffineTransform()})},e.prototype.getAxis=function(e,t){var n=this._axesMap[e];if(null!=n)return n[t||0]},e.prototype.getAxes=function(){return this._axesList.slice()},e.prototype.getCartesian=function(e,t){if(null!=e&&null!=t){var n="x"+e+"y"+t;return this._coordsMap[n]}Object(u["z"])(e)&&(t=e.yAxisIndex,e=e.xAxisIndex);for(var r=0,i=this._coordsList;r=a)return-1;if(n=e.src.charCodeAt(o++),n<48||n>57)return-1;for(;;){if(o>=a)return-1;if(n=e.src.charCodeAt(o++),!(n>=48&&n<=57)){if(41===n||46===n)break;return-1}if(o-i>=10)return-1}return o=4)return!1;if(e.listIndent>=0&&e.sCount[t]-e.listIndent>=4&&e.sCount[t]=e.blkIndent&&(L=!0),(j=o(e,t))>=0){if(h=!0,D=e.bMarks[t]+e.tShift[t],b=Number(e.src.substr(D,j-D-1)),L&&1!==b)return!1}else{if(!((j=i(e,t))>=0))return!1;h=!1}if(L&&e.skipSpaces(j)>=e.eMarks[t])return!1;if(y=e.src.charCodeAt(j-1),r)return!0;v=e.tokens.length,h?(P=e.push("ordered_list_open","ol",1),1!==b&&(P.attrs=[["start",b]])):P=e.push("bullet_list_open","ul",1),P.map=m=[t,0],P.markup=String.fromCharCode(y),x=t,I=!1,E=e.md.block.ruler.getRules("list"),O=e.parentType,e.parentType="list";while(x=_?1:w-d,f>4&&(f=1),c=d+f,P=e.push("list_item_open","li",1),P.markup=String.fromCharCode(y),P.map=p=[t,0],C=e.tight,M=e.tShift[t],S=e.sCount[t],k=e.listIndent,e.listIndent=e.blkIndent,e.blkIndent=c,e.tight=!0,e.tShift[t]=l-e.bMarks[t],e.sCount[t]=w,l>=_&&e.isEmpty(t+1)?e.line=Math.min(e.line+2,n):e.md.block.tokenize(e,t,n,!0),e.tight&&!I||(N=!1),I=e.line-t>1&&e.isEmpty(e.line-1),e.blkIndent=e.listIndent,e.listIndent=k,e.tShift[t]=M,e.sCount[t]=S,e.tight=C,P=e.push("list_item_close","li",-1),P.markup=String.fromCharCode(y),x=t=e.line,p[1]=x,l=e.bMarks[t],x>=n)break;if(e.sCount[x]=4)break;for(A=!1,u=0,g=E.length;u9e10&&(this._versionSignBase=0)},e.prototype._getVersionSign=function(){return this._sourceHost.uid+"_"+this._versionSignBase},e.prototype.prepareSource=function(){this._isDirty()&&(this._createSource(),this._dirty=!1)},e.prototype._createSource=function(){this._setLocalSource([],[]);var e,t,n=this._sourceHost,r=this._getUpstreamSourceManagers(),o=!!r.length;if(_(n)){var a=n,s=void 0,l=void 0,u=void 0;if(o){var c=r[0];c.prepareSource(),u=c.getSource(),s=u.data,l=u.sourceFormat,t=[c._getVersionSign()]}else s=a.get("data",!0),l=Object(i["C"])(s)?p["g"]:p["f"],t=[];var f=this._getSourceMetaRawOption()||{},d=u&&u.metaRawOption||{},g=Object(i["M"])(f.seriesLayoutBy,d.seriesLayoutBy)||null,m=Object(i["M"])(f.sourceHeader,d.sourceHeader)||null,v=Object(i["M"])(f.dimensions,d.dimensions),y=g!==d.seriesLayoutBy||!!m!==!!d.sourceHeader||v;e=y?[Object(h["b"])(s,{seriesLayoutBy:g,sourceHeader:m,dimensions:v},l)]:[]}else{var b=n;if(o){var x=this._applyTransform(r);e=x.sourceList,t=x.upstreamSignList}else{var w=b.get("source",!0);e=[Object(h["b"])(w,this._getSourceMetaRawOption(),null)],t=[]}}this._setLocalSource(e,t)},e.prototype._applyTransform=function(e){var t,n=this._sourceHost,r=n.get("transform",!0),o=n.get("fromTransformResult",!0);if(null!=o){var a="";1!==e.length&&x(a)}var s=[],l=[];return Object(i["k"])(e,function(e){e.prepareSource();var t=e.getSource(o||0),n="";null==o||t||x(n),s.push(t),l.push(e._getVersionSign())}),r?t=Object(m["a"])(r,s,{datasetIndex:n.componentIndex}):null!=o&&(t=[Object(h["a"])(s[0])]),{sourceList:t,upstreamSignList:l}},e.prototype._isDirty=function(){if(this._dirty)return!0;for(var e=this._getUpstreamSourceManagers(),t=0;t1||p&&!d){var m=O(h,s,l,f,g);t=m.inlineValues,n=m.inlineValueTypes,r=m.blocks,o=m.inlineValues[0]}else if(d){var v=c.getDimensionInfo(f[0]);o=t=Object(y["e"])(c,l,f[0]),n=v.type}else o=t=p?h[0]:h;var b=Object(a["l"])(s),_=b&&s.name||"",x=c.getName(l),k=u?_:x;return Object(w["c"])("section",{header:_,noHeader:u||!b,sortParam:o,blocks:[Object(w["c"])("nameValue",{markerType:"item",markerColor:g,name:k,noName:!Object(i["Q"])(k),value:t,valueType:n})].concat(r||[])})}function O(e,t,n,r,o){var a=t.getData(),s=Object(i["K"])(e,function(e,t,n){var r=a.getDimensionInfo(n);return e||r&&!1!==r.tooltip&&null!=r.displayName},!1),l=[],u=[],c=[];function f(e,t){var n=a.getDimensionInfo(t);n&&!1!==n.otherDims.tooltip&&(s?c.push(Object(w["c"])("nameValue",{markerType:"subItem",markerColor:o,name:n.displayName,value:e,valueType:n.type})):(l.push(e),u.push(n.type)))}return r.length?Object(i["k"])(r,function(e){f(Object(y["e"])(a,n,e),e)}):Object(i["k"])(e,f),{inlineValues:l,inlineValueTypes:u,blocks:c}}n.d(t,"a",function(){return C});var S=a["m"]();function M(e,t){return e.getName(t)||e.getId(t)}var C="__universalTransitionEnabled",T=function(e){function t(){var t=null!==e&&e.apply(this,arguments)||this;return t._selectedDataIndicesMap={},t}return Object(r["a"])(t,e),t.prototype.init=function(e,t,n){this.seriesIndex=this.componentIndex,this.dataTask=Object(f["a"])({count:D,reset:A}),this.dataTask.context={model:this},this.mergeDefaultAndTheme(e,n);var r=S(this).sourceManager=new b(this);r.prepareSource();var i=this.getInitialData(e,n);P(i,this),this.dataTask.context.data=i,S(this).dataBeforeProcessed=i,j(this),this._initSelectedMapFromData(i)},t.prototype.mergeDefaultAndTheme=function(e,t){var n=Object(c["b"])(this),r=n?Object(c["c"])(e):{},o=this.subType;s["a"].hasClass(o)&&(o+="Series"),i["G"](e,t.getTheme().get(this.subType)),i["G"](e,this.getDefaultOption()),a["e"](e,"label",["show"]),this.fillDataTextStyle(e.data),n&&Object(c["e"])(e,r,n)},t.prototype.mergeOption=function(e,t){e=i["G"](this.option,e,!0),this.fillDataTextStyle(e.data);var n=Object(c["b"])(this);n&&Object(c["e"])(this.option,e,n);var r=S(this).sourceManager;r.dirty(),r.prepareSource();var o=this.getInitialData(e,t);P(o,this),this.dataTask.dirty(),this.dataTask.context.data=o,S(this).dataBeforeProcessed=o,j(this),this._initSelectedMapFromData(o)},t.prototype.fillDataTextStyle=function(e){if(e&&!i["C"](e))for(var t=["show"],n=0;nthis.getShallow("animationThreshold")&&(e=!1),!!e},t.prototype.restoreData=function(){this.dataTask.dirty()},t.prototype.getColorFromPalette=function(e,t,n){var r=this.ecModel,i=l["a"].prototype.getColorFromPalette.call(this,e,t,n);return i||(i=r.getColorFromPalette(e,t,n)),i},t.prototype.coordDimToDataDim=function(e){return this.getRawData().mapDimensionsAll(e)},t.prototype.getProgressive=function(){return this.get("progressive")},t.prototype.getProgressiveThreshold=function(){return this.get("progressiveThreshold")},t.prototype.select=function(e,t){this._innerSelect(this.getData(t),e)},t.prototype.unselect=function(e,t){var n=this.option.selectedMap;if(n)for(var r=this.getData(t),i=0;i=0&&n.push(o)}return n},t.prototype.isSelected=function(e,t){var n=this.option.selectedMap;if(!n)return!1;var r=this.getData(t),i=M(r,e);return n[i]||!1},t.prototype.isUniversalTransitionEnabled=function(){if(this[C])return!0;var e=this.option.universalTransition;return!!e&&(!0===e||e&&e.enabled)},t.prototype._innerSelect=function(e,t){var n,r,i=this.option.selectedMode,o=t.length;if(i&&o)if("multiple"===i)for(var a=this.option.selectedMap||(this.option.selectedMap={}),s=0;s0&&this._innerSelect(e,t)}},t.registerClass=function(e){return s["a"].registerClass(e)},t.protoInitialize=function(){var e=t.prototype;e.type="series.__base__",e.seriesIndex=0,e.ignoreStyleOnData=!1,e.hasSymbolVisual=!1,e.defaultSymbol="circle",e.visualStyleAccessPath="itemStyle",e.visualDrawType="fill"}(),t}(s["a"]);function j(e){var t=e.name;a["l"](e)||(e.name=I(e)||t)}function I(e){var t=e.getRawData(),n=t.mapDimensionsAll("seriesName"),r=[];return i["k"](n,function(e){var n=t.getDimensionInfo(e);n.displayName&&r.push(n.displayName)}),r.join(" ")}function D(e){return e.model.getRawData().count()}function A(e){var t=e.model;return t.setData(t.getRawData().cloneShallow()),E}function E(e,t){t.outputData&&e.end>t.outputData.count()&&t.model.getRawData().cloneShallow(t.outputData)}function P(e,t){i["k"](i["e"](e.CHANGABLE_METHODS,e.DOWNSAMPLE_METHODS),function(n){e.wrapMethod(n,i["i"](L,t))})}function L(e,t){var n=N(e);return n&&n.setOutputEnd((t||this).count()),t}function N(e){var t=(e.ecModel||{}).scheduler,n=t&&t.getPipeline(e.uid);if(n){var r=n.currentTask;if(r){var i=r.agentStubMap;i&&(r=i.get(e.uid))}return r}}i["H"](T,u["a"]),i["H"](T,l["a"]),Object(d["e"])(T,s["a"]);t["b"]=T},TCYN:function(e,t,n){"use strict";var r=/\r\n?|\n/g,i=/\0/g;e.exports=function(e){var t;t=e.src.replace(r,"\n"),t=t.replace(i,"\ufffd"),e.src=t}},TLR5:function(e,t,n){"use strict";var r=n("SINd"),i=[["text",n("usqY")],["newline",n("QjYF")],["escape",n("bgCn")],["backticks",n("SpRm")],["strikethrough",n("kiyR").tokenize],["emphasis",n("yKnv").tokenize],["link",n("zQ/W")],["image",n("ky0j")],["autolink",n("KOyK")],["html_inline",n("wtjL")],["entity",n("W1Rp")]],o=[["balance_pairs",n("g40J")],["strikethrough",n("kiyR").postProcess],["emphasis",n("yKnv").postProcess],["text_collapse",n("IIUr")]];function a(){var e;for(this.ruler=new r,e=0;e=o)break}else e.pending+=e.src[e.pos++]}e.pending&&e.pushPending()},a.prototype.parse=function(e,t,n,r){var i,o,a,s=new this.State(e,t,n,r);for(this.tokenize(s),o=this.ruler2.getRules(""),a=o.length,i=0;ie&&(e=t),e},t.prototype.brushSelector=function(e,t,n){return n.rect(t.getItemLayout(e))},t.type="series.bar",t.dependencies=["grid","polar"],t.defaultOption=Object(f["d"])(c.defaultOption,{clip:!0,roundCap:!1,showBackground:!1,backgroundStyle:{color:"rgba(180, 180, 180, 0.2)",borderColor:null,borderWidth:0,borderType:"solid",borderRadius:0,shadowBlur:0,shadowColor:null,shadowOffsetX:0,shadowOffsetY:0,opacity:1},select:{itemStyle:{borderColor:"#212121"}},realtimeSort:!1}),t}(c),h=d,p=n("y+Vt"),g=n("LcXL"),m=n("3qvL"),v=n("x6Kt"),y=n("SqI9"),b=n("hhxK"),_=n("fWwa"),x=n("eDfh"),w=n("iLNv"),k=n("sK/D"),O=function(){function e(){this.cx=0,this.cy=0,this.r0=0,this.r=0,this.startAngle=0,this.endAngle=2*Math.PI,this.clockwise=!0}return e}(),S=function(e){function t(t){var n=e.call(this,t)||this;return n.type="sausage",n}return Object(a["a"])(t,e),t.prototype.getDefaultShape=function(){return new O},t.prototype.buildPath=function(e,t){var n=t.cx,r=t.cy,i=Math.max(t.r0||0,0),o=Math.max(t.r,0),a=.5*(o-i),s=i+a,l=t.startAngle,u=t.endAngle,c=t.clockwise,f=Math.cos(l),d=Math.sin(l),h=Math.cos(u),p=Math.sin(u),g=c?u-l<2*Math.PI:l-u<2*Math.PI;g&&(e.moveTo(f*i+n,d*i+r),e.arc(f*s+n,d*s+r,a,-Math.PI+l,l,!c)),e.arc(n,r,o,l,u,!c),e.moveTo(h*o+n,p*o+r),e.arc(h*s+n,p*s+r,a,u-2*Math.PI,u-Math.PI,!c),0!==i&&(e.arc(n,r,i,u,l,c),e.moveTo(f*i+n,p*i+r)),e.closePath()},t}(p["b"]),M=S,C=n("6Ic6"),T=n("VCb+"),j=n("x3X8"),I=n("6GrX");function D(e,t){t=t||{};var n=t.isRoundCap;return function(t,r,i){var o=r.position;if(!o||o instanceof Array)return Object(I["d"])(t,r,i);var a=e(o),s=null!=r.distance?r.distance:5,l=this.shape,u=l.cx,c=l.cy,f=l.r,d=l.r0,h=(f+d)/2,p=l.startAngle,g=l.endAngle,m=(p+g)/2,v=n?Math.abs(f-d)/2:0,y=Math.cos,b=Math.sin,_=u+f*y(p),x=c+f*b(p),w="left",k="top";switch(a){case"startArc":_=u+(d-s)*y(m),x=c+(d-s)*b(m),w="center",k="top";break;case"insideStartArc":_=u+(d+s)*y(m),x=c+(d+s)*b(m),w="center",k="bottom";break;case"startAngle":_=u+h*y(p)+E(p,s+v,!1),x=c+h*b(p)+P(p,s+v,!1),w="right",k="middle";break;case"insideStartAngle":_=u+h*y(p)+E(p,-s+v,!1),x=c+h*b(p)+P(p,-s+v,!1),w="left",k="middle";break;case"middle":_=u+h*y(m),x=c+h*b(m),w="center",k="middle";break;case"endArc":_=u+(f+s)*y(m),x=c+(f+s)*b(m),w="center",k="bottom";break;case"insideEndArc":_=u+(f-s)*y(m),x=c+(f-s)*b(m),w="center",k="top";break;case"endAngle":_=u+h*y(g)+E(g,s+v,!0),x=c+h*b(g)+P(g,s+v,!0),w="left",k="middle";break;case"insideEndAngle":_=u+h*y(g)+E(g,-s+v,!0),x=c+h*b(g)+P(g,-s+v,!0),w="right",k="middle";break;default:return Object(I["d"])(t,r,i)}return t=t||{},t.x=_,t.y=x,t.align=w,t.verticalAlign=k,t}}function A(e,t,n,i){if("number"!==typeof i)if(Object(r["s"])(t))e.setTextConfig({rotation:0});else{var o,a=e.shape,s=a.clockwise?a.startAngle:a.endAngle,l=a.clockwise?a.endAngle:a.startAngle,u=(s+l)/2,c=n(t);switch(c){case"startArc":case"insideStartArc":case"middle":case"insideEndArc":case"endArc":o=u;break;case"startAngle":case"insideStartAngle":o=s;break;case"endAngle":case"insideEndAngle":o=l;break;default:return void e.setTextConfig({rotation:0})}var f=1.5*Math.PI-o;"middle"===c&&f>Math.PI/2&&f<1.5*Math.PI&&(f-=Math.PI),e.setTextConfig({rotation:f})}else e.setTextConfig({rotation:i})}function E(e,t,n){return t*Math.sin(e)*(n?-1:1)}function P(e,t,n){return t*Math.cos(e)*(n?1:-1)}var L=[0,0],N=Math.max,R=Math.min;function z(e,t){var n=e.getArea&&e.getArea();if(Object(T["a"])(e,"cartesian2d")){var r=e.getBaseAxis();if("category"!==r.type||!r.onBand){var i=t.getLayout("bandWidth");r.isHorizontal()?(n.x-=i,n.width+=2*i):(n.y-=i,n.height+=2*i)}}return n}var F=function(e){function t(){var n=e.call(this)||this;return n.type=t.type,n._isFirstFrame=!0,n}return Object(a["a"])(t,e),t.prototype.render=function(e,t,n,r){this._model=e,this._removeOnRenderedListener(n),this._updateDrawMode(e);var i=e.get("coordinateSystem");("cartesian2d"===i||"polar"===i)&&(this._isLargeDraw?this._renderLarge(e,t,n):this._renderNormal(e,t,n,r))},t.prototype.incrementalPrepareRender=function(e){this._clear(),this._updateDrawMode(e),this._updateLargeClip(e)},t.prototype.incrementalRender=function(e,t){this._incrementalRenderLarge(e,t)},t.prototype._updateDrawMode=function(e){var t=e.pipelineContext.large;null!=this._isLargeDraw&&t===this._isLargeDraw||(this._isLargeDraw=t,this._clear())},t.prototype._renderNormal=function(e,t,n,r){var i,o=this.group,a=e.getData(),s=this._data,l=e.coordinateSystem,u=l.getBaseAxis();"cartesian2d"===l.type?i=u.isHorizontal():"polar"===l.type&&(i="angle"===u.dim);var c=e.isAnimationEnabled()?e:null,f=Y(e,l);f&&this._enableRealtimeSort(f,a,n);var d=e.get("clip",!0)||f,h=z(l,a);o.removeClipPath();var p=e.get("roundCap",!0),v=e.get("showBackground",!0),y=e.getModel("backgroundStyle"),b=y.get("borderRadius")||0,_=[],x=this._backgroundEls,w=r&&r.isInitSort,k=r&&"changeAxisOrder"===r.type;function O(e){var t=Z[l.type](a,e),n=se(l,i,t);return n.useStyle(y.getItemStyle()),"cartesian2d"===l.type&&n.setShape("r",b),_[e]=n,n}a.diff(s).add(function(t){var n=a.getItemModel(t),r=Z[l.type](a,t,n);if(v&&O(t),a.hasValue(t)&&q[l.type](r)){var s=!1;d&&(s=B[l.type](h,r));var g=V[l.type](e,a,t,r,i,c,u.model,!1,p);Q(g,a,t,n,r,e,i,"polar"===l.type),w?g.attr({shape:r}):f?G(f,c,g,r,t,i,!1,!1):Object(m["c"])(g,{shape:r},e,t),a.setItemGraphicEl(t,g),o.add(g),g.ignore=s}}).update(function(t,n){var r=a.getItemModel(t),g=Z[l.type](a,t,r);if(v){var S=void 0;0===x.length?S=O(n):(S=x[n],S.useStyle(y.getItemStyle()),"cartesian2d"===l.type&&S.setShape("r",b),_[t]=S);var M=Z[l.type](a,t),C=ae(i,M,l);Object(m["h"])(S,{shape:C},c,t)}var T=s.getItemGraphicEl(n);if(a.hasValue(t)&&q[l.type](g)){var j=!1;d&&(j=B[l.type](h,g),j&&o.remove(T)),T?Object(m["g"])(T):T=V[l.type](e,a,t,g,i,c,u.model,!!T,p),k||Q(T,a,t,r,g,e,i,"polar"===l.type),w?T.attr({shape:g}):f?G(f,c,T,g,t,i,!0,k):Object(m["h"])(T,{shape:g},e,t,null),a.setItemGraphicEl(t,T),T.ignore=j,o.add(T)}else o.remove(T)}).remove(function(t){var n=s.getItemGraphicEl(t);n&&Object(m["f"])(n,e,t)}).execute();var S=this._backgroundGroup||(this._backgroundGroup=new g["a"]);S.removeAll();for(var M=0;M<_.length;++M)S.add(_[M]);o.add(S),this._backgroundEls=_,this._data=a},t.prototype._renderLarge=function(e,t,n){this._clear(),te(e,this.group),this._updateLargeClip(e)},t.prototype._incrementalRenderLarge=function(e,t){this._removeBackground(),te(t,this.group,!0)},t.prototype._updateLargeClip=function(e){var t=e.get("clip",!0)?Object(k["a"])(e.coordinateSystem,!1,e):null;t?this.group.setClipPath(t):this.group.removeClipPath()},t.prototype._enableRealtimeSort=function(e,t,n){var r=this;if(t.count()){var i=e.baseAxis;if(this._isFirstFrame)this._dispatchInitSort(t,e,n),this._isFirstFrame=!1;else{var o=function(e){var n=t.getItemGraphicEl(e);if(n){var r=n.shape;return(i.isHorizontal()?Math.abs(r.height):Math.abs(r.width))||0}return 0};this._onRendered=function(){r._updateSortWithinSameData(t,o,i,n)},n.getZr().on("rendered",this._onRendered)}}},t.prototype._dataSort=function(e,t,n){var i=[];return e.each(e.mapDimension(t.dim),function(e,t){var r=n(t);r=null==r?NaN:r,i.push({dataIndex:t,mappedValue:r,ordinalNumber:e})}),i.sort(function(e,t){return t.mappedValue-e.mappedValue}),{ordinalNumbers:Object(r["F"])(i,function(e){return e.ordinalNumber})}},t.prototype._isOrderChangedWithinSameData=function(e,t,n){for(var r=n.scale,i=e.mapDimension(n.dim),o=Number.MAX_VALUE,a=0,s=r.getOrdinalMeta().categories.length;ao)return!0;o=u}return!1},t.prototype._isOrderDifferentInView=function(e,t){for(var n=t.scale,r=n.getExtent(),i=Math.max(0,r[0]),o=Math.min(r[1],n.getOrdinalMeta().categories.length-1);i<=o;++i)if(e.ordinalNumbers[i]!==n.getRawOrdinalNumber(i))return!0},t.prototype._updateSortWithinSameData=function(e,t,n,r){if(this._isOrderChangedWithinSameData(e,t,n)){var i=this._dataSort(e,n,t);this._isOrderDifferentInView(i,n)&&(this._removeOnRenderedListener(r),r.dispatchAction({type:"changeAxisOrder",componentType:n.dim+"Axis",axisId:n.index,sortInfo:i}))}},t.prototype._dispatchInitSort=function(e,t,n){var r=t.baseAxis,i=this._dataSort(e,r,function(n){return e.get(e.mapDimension(t.otherAxis.dim),n)});n.dispatchAction({type:"changeAxisOrder",componentType:r.dim+"Axis",isInitSort:!0,axisId:r.index,sortInfo:i})},t.prototype.remove=function(e,t){this._clear(this._model),this._removeOnRenderedListener(t)},t.prototype.dispose=function(e,t){this._removeOnRenderedListener(t)},t.prototype._removeOnRenderedListener=function(e){this._onRendered&&(e.getZr().off("rendered",this._onRendered),this._onRendered=null)},t.prototype._clear=function(e){var t=this.group,n=this._data;e&&e.isAnimationEnabled()&&n&&!this._isLargeDraw?(this._removeBackground(),this._backgroundEls=[],n.eachItemGraphicEl(function(t){Object(m["f"])(t,e,Object(b["a"])(t).dataIndex)})):t.removeAll(),this._data=null,this._isFirstFrame=!0},t.prototype._removeBackground=function(){this.group.remove(this._backgroundGroup),this._backgroundGroup=null},t.type="bar",t}(C["a"]),B={cartesian2d:function(e,t){var n=t.width<0?-1:1,r=t.height<0?-1:1;n<0&&(t.x+=t.width,t.width=-t.width),r<0&&(t.y+=t.height,t.height=-t.height);var i=e.x+e.width,o=e.y+e.height,a=N(t.x,e.x),s=R(t.x+t.width,i),l=N(t.y,e.y),u=R(t.y+t.height,o),c=si?s:a,t.y=f&&l>o?u:l,t.width=c?0:s-a,t.height=f?0:u-l,n<0&&(t.x+=t.width,t.width=-t.width),r<0&&(t.y+=t.height,t.height=-t.height),c||f},polar:function(e,t){var n=t.r0<=t.r?1:-1;if(n<0){var r=t.r;t.r=t.r0,t.r0=r}var i=R(t.r,e.r),o=N(t.r0,e.r0);t.r=i,t.r0=o;var a=i-o<0;if(n<0){r=t.r;t.r=t.r0,t.r0=r}return a}},V={cartesian2d:function(e,t,n,i,o,a,s,l,u){var c=new v["a"]({shape:Object(r["m"])({},i),z2:1});if(c.__dataIndex=n,c.name="item",a){var f=c.shape,d=o?"height":"width";f[d]=0}return c},polar:function(e,t,n,r,i,o,a,s,l){var u=!i&&l?M:y["a"],c=new u({shape:r,z2:1});c.name="item";var f=X(i);if(c.calculateTextPosition=D(f,{isRoundCap:u===M}),o){var d=c.shape,h=i?"r":"endAngle",p={};d[h]=i?0:r.startAngle,p[h]=r[h],(s?m["h"]:m["c"])(c,{shape:p},o)}return c}};function Y(e,t){var n=e.get("realtimeSort",!0),r=t.getBaseAxis();if(n&&"category"===r.type&&"cartesian2d"===t.type)return{baseAxis:r,otherAxis:t.getOtherAxis(r)}}function G(e,t,n,r,i,o,a,s){var l,u;o?(u={x:r.x,width:r.width},l={y:r.y,height:r.height}):(u={y:r.y,height:r.height},l={x:r.x,width:r.width}),s||(a?m["h"]:m["c"])(n,{shape:l},t,i,null);var c=t?e.baseAxis.model:null;(a?m["h"]:m["c"])(n,{shape:u},c,i)}function U(e,t){for(var n=0;n0?1:-1,a=r.height>0?1:-1;return{x:r.x+o*i/2,y:r.y+a*i/2,width:r.width-o*i,height:r.height-a*i}},polar:function(e,t,n){var r=e.getItemLayout(t);return{cx:r.cx,cy:r.cy,r0:r.r0,r:r.r,startAngle:r.startAngle,endAngle:r.endAngle,clockwise:r.clockwise}}};function K(e){return null!=e.startAngle&&null!=e.endAngle&&e.startAngle===e.endAngle}function X(e){return function(e){var t=e?"Arc":"Angle";return function(e){switch(e){case"start":case"insideStart":case"end":case"insideEnd":return e+t;default:return e}}}(e)}function Q(e,t,n,i,o,a,s,l){var u=t.getItemVisual(n,"style");l||e.setShape("r",i.get(["itemStyle","borderRadius"])||0),e.useStyle(u);var c=i.getShallow("cursor");c&&e.attr("cursor",c);var f=l?s?o.r>=o.r0?"endArc":"startArc":o.endAngle>=o.startAngle?"endAngle":"startAngle":s?o.height>=0?"bottom":"top":o.width>=0?"right":"left",d=Object(x["c"])(i);Object(x["e"])(e,d,{labelFetcher:a,labelDataIndex:n,defaultText:Object(j["b"])(a.getData(),n),inheritColor:u.fill,defaultOpacity:u.opacity,defaultOutsidePosition:f});var h=e.getTextContent();if(l&&h){var p=i.get(["label","position"]);e.textConfig.inside="middle"===p||null,A(e,"outside"===p?f:p,X(s),i.get(["label","rotate"]))}Object(x["f"])(h,d,a.getRawValue(n),function(e){return Object(j["a"])(t,e)});var g=i.getModel(["emphasis"]);Object(_["m"])(e,g.get("focus"),g.get("blurScope")),Object(_["D"])(e,i),K(o)&&(e.style.fill="none",e.style.stroke="none",Object(r["k"])(e.states,function(e){e.style&&(e.style.fill=e.style.stroke="none")}))}function $(e,t){var n=e.get(["itemStyle","borderColor"]);if(!n||"none"===n)return 0;var r=e.get(["itemStyle","borderWidth"])||0,i=isNaN(t.width)?Number.MAX_VALUE:Math.abs(t.width),o=isNaN(t.height)?Number.MAX_VALUE:Math.abs(t.height);return Math.min(r,i,o)}var J=function(){function e(){}return e}(),ee=function(e){function t(t){var n=e.call(this,t)||this;return n.type="largeBar",n}return Object(a["a"])(t,e),t.prototype.getDefaultShape=function(){return new J},t.prototype.buildPath=function(e,t){for(var n=t.points,r=this.__startPoint,i=this.__baseDimIdx,o=0;o=0?n:null},30,!1);function re(e,t,n){var r=e.__baseDimIdx,i=1-r,o=e.shape.points,a=e.__largeDataIndices,s=Math.abs(e.__barWidth/2),l=e.__startPoint[i];L[0]=t,L[1]=n;for(var u=L[r],c=L[1-r],f=u-s,d=u+s,h=0,p=o.length/2;h=f&&m<=d&&(l<=v?c>=l&&c<=v:c>=v&&c<=l))return a[h]}return-1}function ie(e,t,n){var i=n.getVisual("style");e.useStyle(Object(r["m"])({},i)),e.style.fill=null,e.style.stroke=i.fill,e.style.lineWidth=n.getLayout("barWidth")}function oe(e,t,n){var r=t.get("borderColor")||t.get("color"),i=t.getItemStyle();e.useStyle(i),e.style.fill=null,e.style.stroke=r,e.style.lineWidth=n.getLayout("barWidth")}function ae(e,t,n){if(Object(T["a"])(n,"cartesian2d")){var r=t,i=n.getArea();return{x:e?r.x:i.x,y:e?i.y:r.y,width:e?r.width:i.width,height:e?i.height:r.height}}i=n.getArea();var o=t;return{cx:i.cx,cy:i.cy,r0:e?i.r0:o.r0,r:e?i.r:o.r,startAngle:e?o.startAngle:0,endAngle:e?o.endAngle:2*Math.PI}}function se(e,t,n){var r="polar"===e.type?y["a"]:v["a"];return new r({shape:ae(t,n,e),silent:!0,z2:0})}var le=F;function ue(e){e.registerChartView(le),e.registerSeriesModel(h),e.registerLayout(e.PRIORITY.VISUAL.LAYOUT,r["i"](i["b"],"bar")),e.registerLayout(e.PRIORITY.VISUAL.PROGRESSIVE_LAYOUT,i["a"]),e.registerProcessor(e.PRIORITY.PROCESSOR.STATISTIC,Object(o["a"])("bar")),e.registerAction({type:"changeAxisOrder",event:"changeAxisOrder",update:"update"},function(e,t){var n=e.componentType||"series";t.eachComponent({mainType:n,query:e},function(t){e.sortInfo&&t.axis.setCategorySortInfo(e.sortInfo)})})}n.d(t,"a",function(){return ue})},"U4/e":function(e,t,n){"use strict";n.d(t,"a",function(){return l});var r=n("bYtY"),i=n("6GrX"),o=function(){function e(e,t,n){this._prepareParams(e,t,n)}return e.prototype._prepareParams=function(e,t,n){n[1]l&&(s=NaN,l=NaN);var f=Object(r["l"])(s)||Object(r["l"])(l)||e&&!i;this._needCrossZero&&(s>0&&l>0&&!u&&(s=0),s<0&&l<0&&!c&&(l=0));var d=this._determinedMin,h=this._determinedMax;return null!=d&&(s=d,u=!0),null!=h&&(l=h,c=!0),{min:s,max:l,minFixed:u,maxFixed:c,isBlank:f}},e.prototype.modifyDataMinMax=function(e,t){this[s[e]]=t},e.prototype.setDeterminedMinMax=function(e,t){var n=a[e];this[n]=t},e.prototype.freeze=function(){this.frozen=!0},e}(),a={min:"_determinedMin",max:"_determinedMax"},s={min:"_dataMin",max:"_dataMax"};function l(e,t,n){var r=e.rawExtentInfo;return r||(r=new o(e,t,n),e.rawExtentInfo=r,r)}function u(e,t){return null==t?null:Object(r["l"])(t)?NaN:e.parse(t)}},"UNi/":function(e,t){function n(e,t){var n=-1,r=Array(e);while(++n`\\x00-\\x20]+",o="'[^']*'",a='"[^"]*"',s="(?:"+i+"|"+o+"|"+a+")",l="(?:\\s+"+r+"(?:\\s*=\\s*"+s+")?)",u="<[A-Za-z][A-Za-z0-9\\-]*"+l+"*\\s*\\/?>",c="<\\/[A-Za-z][A-Za-z0-9\\-]*\\s*>",f="\x3c!----\x3e|\x3c!--(?:-?[^>-])(?:-?[^-])*--\x3e",d="<[?].*?[?]>",h="]*>",p="",g=new RegExp("^(?:"+u+"|"+c+"|"+f+"|"+d+"|"+h+"|"+p+")"),m=new RegExp("^(?:"+u+"|"+c+")");e.exports.HTML_TAG_RE=g,e.exports.HTML_OPEN_CLOSE_TAG_RE=m},W1Rp:function(e,t,n){"use strict";var r=n("vWgF"),i=n("AGgm").has,o=n("AGgm").isValidEntityCode,a=n("AGgm").fromCodePoint,s=/^&#((?:x[a-f0-9]{1,6}|[0-9]{1,7}));/i,l=/^&([a-z][a-z0-9]{1,31});/i;e.exports=function(e,t){var n,u,c,f=e.pos,d=e.posMax;if(38!==e.src.charCodeAt(f))return!1;if(f+1|$))/i,/<\/(script|pre|style)>/i,!0],[/^/,!0],[/^<\?/,/\?>/,!0],[/^/,!0],[/^/,!0],[new RegExp("^|$))","i"),/^$/,!0],[new RegExp(i.source+"\\s*$"),/^$/,!1]];e.exports=function(e,t,n,r){var i,a,s,l,u=e.bMarks[t]+e.tShift[t],c=e.eMarks[t];if(e.sCount[t]-e.blkIndent>=4)return!1;if(!e.md.options.html)return!1;if(60!==e.src.charCodeAt(u))return!1;for(l=e.src.slice(u,c),i=0;i=11?e:e+12},meridiem:function(e,t,n){var r=100*e+t;return r<600?"\u51cc\u6668":r<900?"\u65e9\u4e0a":r<1130?"\u4e0a\u5348":r<1230?"\u4e2d\u5348":r<1800?"\u4e0b\u5348":"\u665a\u4e0a"},calendar:{sameDay:"[\u4eca\u5929]LT",nextDay:"[\u660e\u5929]LT",nextWeek:function(e){return e.week()!==this.week()?"[\u4e0b]dddLT":"[\u672c]dddLT"},lastDay:"[\u6628\u5929]LT",lastWeek:function(e){return this.week()!==e.week()?"[\u4e0a]dddLT":"[\u672c]dddLT"},sameElse:"L"},dayOfMonthOrdinalParse:/\d{1,2}(\u65e5|\u6708|\u5468)/,ordinal:function(e,t){switch(t){case"d":case"D":case"DDD":return e+"\u65e5";case"M":return e+"\u6708";case"w":case"W":return e+"\u5468";default:return e}},relativeTime:{future:"%s\u540e",past:"%s\u524d",s:"\u51e0\u79d2",ss:"%d \u79d2",m:"1 \u5206\u949f",mm:"%d \u5206\u949f",h:"1 \u5c0f\u65f6",hh:"%d \u5c0f\u65f6",d:"1 \u5929",dd:"%d \u5929",w:"1 \u5468",ww:"%d \u5468",M:"1 \u4e2a\u6708",MM:"%d \u4e2a\u6708",y:"1 \u5e74",yy:"%d \u5e74"},week:{dow:1,doy:4}});return t})},Xi7e:function(e,t,n){var r=n("KMkd"),i=n("adU4"),o=n("tMB7"),a=n("+6XX"),s=n("Z8oC");function l(e){var t=-1,n=null==e?0:e.length;this.clear();while(++tt[1]&&(t[1]=e[1])},e.prototype.unionExtentFromData=function(e,t){this.unionExtent(e.getApproximateExtent(t))},e.prototype.getExtent=function(){return this._extent.slice()},e.prototype.setExtent=function(e,t){var n=this._extent;isNaN(e)||(n[0]=e),isNaN(t)||(n[1]=t)},e.prototype.isInExtentRange=function(e){return this._extent[0]<=e&&this._extent[1]>=e},e.prototype.isBlank=function(){return this._isBlank},e.prototype.setBlank=function(e){this._isBlank=e},e}();o["c"](a);var s=a,l=n("jkPA"),u=n("OELB"),c=u["p"];function f(e,t,n,r){var i={},o=e[1]-e[0],a=i.interval=u["j"](o/t,!0);null!=n&&ar&&(a=i.interval=r);var s=i.intervalPrecision=d(a),l=i.niceTickExtent=[c(Math.ceil(e[0]/a)*a,s),c(Math.floor(e[1]/a)*a,s)];return p(l,e),i}function d(e){return u["e"](e)+2}function h(e,t,n){e[t]=Math.max(Math.min(e[t],n[1]),n[0])}function p(e,t){!isFinite(e[0])&&(e[0]=t[0]),!isFinite(e[1])&&(e[1]=t[1]),h(e,0,t),h(e,1,t),e[0]>e[1]&&(e[0]=e[1])}function g(e,t){return e>=t[0]&&e<=t[1]}function m(e,t){return t[1]===t[0]?.5:(e-t[0])/(t[1]-t[0])}function v(e,t){return e*(t[1]-t[0])+t[0]}var y=function(e){function t(t){var n=e.call(this,t)||this;n.type="ordinal";var i=n.getSetting("ordinalMeta");return i||(i=new l["a"]({})),Object(r["s"])(i)&&(i=new l["a"]({categories:Object(r["F"])(i,function(e){return Object(r["z"])(e)?e.value:e})})),n._ordinalMeta=i,n._extent=n.getSetting("extent")||[0,i.categories.length-1],n}return Object(i["a"])(t,e),t.prototype.parse=function(e){return"string"===typeof e?this._ordinalMeta.getOrdinal(e):Math.round(e)},t.prototype.contain=function(e){return e=this.parse(e),g(e,this._extent)&&null!=this._ordinalMeta.categories[e]},t.prototype.normalize=function(e){return e=this._getTickNumber(this.parse(e)),m(e,this._extent)},t.prototype.scale=function(e){return e=Math.round(v(e,this._extent)),this.getRawOrdinalNumber(e)},t.prototype.getTicks=function(){var e=[],t=this._extent,n=t[0];while(n<=t[1])e.push({value:n}),n++;return e},t.prototype.getMinorTicks=function(e){},t.prototype.setSortInfo=function(e){if(null!=e){for(var t=e.ordinalNumbers,n=this._ordinalNumbersByTick=[],r=this._ticksByOrdinalNumber=[],i=0,o=this._ordinalMeta.categories.length,a=Math.min(o,t.length);i=0&&e=0&&e=e},t.prototype.getOrdinalMeta=function(){return this._ordinalMeta},t.prototype.niceTicks=function(){},t.prototype.niceExtent=function(){},t.type="ordinal",t}(s);s.registerClass(y);var b=y,_=n("7aKB"),x=u["p"],w=function(e){function t(){var t=null!==e&&e.apply(this,arguments)||this;return t.type="interval",t._interval=0,t._intervalPrecision=2,t}return Object(i["a"])(t,e),t.prototype.parse=function(e){return e},t.prototype.contain=function(e){return g(e,this._extent)},t.prototype.normalize=function(e){return m(e,this._extent)},t.prototype.scale=function(e){return v(e,this._extent)},t.prototype.setExtent=function(e,t){var n=this._extent;isNaN(e)||(n[0]=parseFloat(e)),isNaN(t)||(n[1]=parseFloat(t))},t.prototype.unionExtent=function(e){var t=this._extent;e[0]t[1]&&(t[1]=e[1]),this.setExtent(t[0],t[1])},t.prototype.getInterval=function(){return this._interval},t.prototype.setInterval=function(e){this._interval=e,this._niceExtent=this._extent.slice(),this._intervalPrecision=d(e)},t.prototype.getTicks=function(e){var t=this._interval,n=this._extent,r=this._niceExtent,i=this._intervalPrecision,o=[];if(!t)return o;var a=1e4;n[0]a)return[]}var l=o.length?o[o.length-1].value:r[1];return n[1]>l&&(e?o.push({value:x(l+t,i)}):o.push({value:n[1]})),o},t.prototype.getMinorTicks=function(e){for(var t=this.getTicks(!0),n=[],r=this.getExtent(),i=1;ir[0]&&f>>1;e[i][1]n&&(this._approxInterval=n);var o=j.length,a=Math.min(C(j,this._approxInterval,0,o),o-1);this._interval=j[a][1],this._minLevelUnit=j[Math.max(a-1,0)][0]},t.prototype.parse=function(e){return"number"===typeof e?e:+u["l"](e)},t.prototype.contain=function(e){return g(this.parse(e),this._extent)},t.prototype.normalize=function(e){return m(this.parse(e),this._extent)},t.prototype.scale=function(e){return v(e,this._extent)},t.type="time",t}(k),j=[["second",M["d"]],["minute",M["c"]],["hour",M["b"]],["quarter-day",6*M["b"]],["half-day",12*M["b"]],["day",1.2*M["a"]],["half-week",3.5*M["a"]],["week",7*M["a"]],["month",31*M["a"]],["quarter",95*M["a"]],["half-year",M["e"]/2],["year",M["e"]]];function I(e,t,n,r){var i=u["l"](t),o=u["l"](n),a=function(e){return Object(M["n"])(i,e,r)===Object(M["n"])(o,e,r)},s=function(){return a("year")},l=function(){return s()&&a("month")},c=function(){return l()&&a("day")},f=function(){return c()&&a("hour")},d=function(){return f()&&a("minute")},h=function(){return d()&&a("second")},p=function(){return h()&&a("millisecond")};switch(e){case"year":return s();case"month":return l();case"day":return c();case"hour":return f();case"minute":return d();case"second":return h();case"millisecond":return p()}}function D(e,t){return e/=M["a"],e>16?16:e>7.5?7:e>3.5?4:e>1.5?2:1}function A(e){var t=30*M["a"];return e/=t,e>6?6:e>3?3:e>2?2:1}function E(e){return e/=M["b"],e>12?12:e>6?6:e>3.5?4:e>2?2:1}function P(e,t){return e/=t?M["c"]:M["d"],e>30?30:e>20?20:e>15?15:e>10?10:e>5?5:e>2?2:1}function L(e){return u["j"](e,!0)}function N(e,t,n){var r=new Date(e);switch(Object(M["m"])(t)){case"year":case"month":r[Object(M["x"])(n)](0);case"day":r[Object(M["g"])(n)](1);case"hour":r[Object(M["p"])(n)](0);case"minute":r[Object(M["v"])(n)](0);case"second":r[Object(M["A"])(n)](0),r[Object(M["t"])(n)](0)}return r.getTime()}function R(e,t,n,i){var o=1e4,a=M["B"],s=0;function l(e,t,n,r,o,a,s){var l=new Date(t),u=t,c=l[r]();while(u1&&0===u&&o.unshift({value:o[0].value-d})}}for(u=0;u=i[0]&&b<=i[1]&&d++)}var _=(i[1]-i[0])/t;if(d>1.5*_&&h>_/1.5)break;if(c.push(v),d>_||e===a[p])break}f=[]}}}var x=Object(r["n"])(Object(r["F"])(c,function(e){return Object(r["n"])(e,function(e){return e.value>=i[0]&&e.value<=i[1]&&!e.notAdd})}),function(e){return e.length>0}),w=[],k=x.length-1;for(p=0;p0)r*=10;var o=[u["p"](G(t[0]/r)*r),u["p"](Y(t[1]/r)*r)];this._interval=r,this._niceExtent=o}},t.prototype.niceExtent=function(e){B.niceExtent.call(this,e),this._fixMin=e.fixMin,this._fixMax=e.fixMax},t.prototype.parse=function(e){return e},t.prototype.contain=function(e){return e=W(e)/W(this.base),g(e,this._extent)},t.prototype.normalize=function(e){return e=W(e)/W(this.base),m(e,this._extent)},t.prototype.scale=function(e){return e=v(e,this._extent),U(this.base,e)},t.type="log",t}(s),q=H.prototype;function Z(e,t){return V(e,u["e"](t))}q.getMinorTicks=B.getMinorTicks,q.getLabel=B.getLabel,s.registerClass(H);var K=H,X=n("7hqr"),Q=n("U4/e");function $(e,t){var n=e.type,i=Object(Q["a"])(e,t,e.getExtent()).calculate();e.setBlank(i.isBlank);var o=i.min,a=i.max,s=t.ecModel;if(s&&"time"===n){var l=Object(O["d"])("bar",s),u=!1;if(r["k"](l,function(e){u=u||e.getBaseAxis()===t.axis}),u){var c=Object(O["c"])(l),f=J(o,a,t,c);o=f.min,a=f.max}}return{extent:[o,a],fixMin:i.minFixed,fixMax:i.maxFixed}}function J(e,t,n,i){var o=n.axis.getExtent(),a=o[1]-o[0],s=Object(O["e"])(i,n.axis);if(void 0===s)return{min:e,max:t};var l=1/0;r["k"](s,function(e){l=Math.min(e.offset,l)});var u=-1/0;r["k"](s,function(e){u=Math.max(e.offset+e.width,u)}),l=Math.abs(l),u=Math.abs(u);var c=l+u,f=t-e,d=1-(l+u)/a,h=f/d-f;return t+=h*(u/c),e-=h*(l/c),{min:e,max:t}}function ee(e,t){var n=t,r=$(e,n),i=r.extent,o=n.get("splitNumber");e instanceof K&&(e.base=n.get("logBase"));var a=e.type;e.setExtent(i[0],i[1]),e.niceExtent({splitNumber:o,fixMin:r.fixMin,fixMax:r.fixMax,minInterval:"interval"===a||"time"===a?n.get("minInterval"):null,maxInterval:"interval"===a||"time"===a?n.get("maxInterval"):null});var s=n.get("interval");null!=s&&e.setInterval&&e.setInterval(s)}function te(e,t){if(t=t||e.get("type"),t)switch(t){case"category":return new b({ordinalMeta:e.getOrdinalMeta?e.getOrdinalMeta():e.getCategories(),extent:[1/0,-1/0]});case"time":return new z({locale:e.ecModel.getLocaleModel(),useUTC:e.ecModel.get("useUTC")});default:return new(s.getClass(t)||k)}}function ne(e){var t=e.scale.getExtent(),n=t[0],r=t[1];return!(n>0&&r>0||n<0&&r<0)}function re(e){var t=e.getLabelModel().get("formatter"),n="category"===e.type?e.scale.getExtent()[0]:null;return"time"===e.scale.type?function(t){return function(n,r){return e.scale.getFormattedLabel(n,r,t)}}(t):"string"===typeof t?function(t){return function(n){var r=e.scale.getLabel(n),i=t.replace("{value}",null!=r?r:"");return i}}(t):"function"===typeof t?function(t){return function(r,i){return null!=n&&(i=r.value-n),t(ie(e,r),i,null!=r.level?{level:r.level}:null)}}(t):function(t){return e.scale.getLabel(t)}}function ie(e,t){return"category"===e.type?e.scale.getLabel(t):t.value}function oe(e){var t=e.model,n=e.scale;if(t.get(["axisLabel","show"])&&!n.isBlank()){var r,i,o=n.getExtent();n instanceof b?i=n.count():(r=n.getTicks(),i=r.length);var a,s=e.getLabelModel(),l=re(e),u=1;i>40&&(u=Math.ceil(i/40));for(var c=0;ce[1]&&(e[1]=r[1])})}n.d(t,"h",function(){return ee}),n.d(t,"a",function(){return te}),n.d(t,"f",function(){return ne}),n.d(t,"g",function(){return re}),n.d(t,"c",function(){return ie}),n.d(t,"b",function(){return oe}),n.d(t,"e",function(){return se}),n.d(t,"i",function(){return le}),n.d(t,"d",function(){return ue}),n.d(t,"j",function(){return ce})},adU4:function(e,t,n){var r=n("y1pI"),i=Array.prototype,o=i.splice;function a(e){var t=this.__data__,n=r(t,e);if(n<0)return!1;var i=t.length-1;return n==i?t.pop():o.call(t,n,1),--this.size,!0}e.exports=a},b80T:function(e,t,n){var r=n("UNi/"),i=n("03A+"),o=n("Z0cm"),a=n("DSRE"),s=n("wJg7"),l=n("c6wG"),u=Object.prototype,c=u.hasOwnProperty;function f(e,t){var n=o(e),u=!n&&i(e),f=!n&&!u&&a(e),d=!n&&!u&&!f&&l(e),h=n||u||f||d,p=h?r(e.length,String):[],g=p.length;for(var m in e)!t&&!c.call(e,m)||h&&("length"==m||f&&("offset"==m||"parent"==m)||d&&("buffer"==m||"byteLength"==m||"byteOffset"==m)||s(m,g))||p.push(m);return p}e.exports=f},bLfw:function(e,t,n){"use strict";var r=n("f66r"),i=n("bYtY"),o=n("Qxkt"),a=n("iRjW"),s=n("Yl7c"),l=n("4NO4"),u=n("+TT/"),c=Object(l["m"])(),f=function(e){function t(t,n,r){var i=e.call(this,t,n,r)||this;return i.uid=a["c"]("ec_cpt_model"),i}return Object(r["a"])(t,e),t.prototype.init=function(e,t,n){this.mergeDefaultAndTheme(e,n)},t.prototype.mergeDefaultAndTheme=function(e,t){var n=u["b"](this),r=n?u["c"](e):{},o=t.getTheme();i["G"](e,o.get(this.mainType)),i["G"](e,this.getDefaultOption()),n&&u["e"](e,r,n)},t.prototype.mergeOption=function(e,t){i["G"](this.option,e,!0);var n=u["b"](this);n&&u["e"](this.option,e,n)},t.prototype.optionUpdated=function(e,t){},t.prototype.getDefaultOption=function(){var e=this.constructor;if(!Object(s["d"])(e))return e.defaultOption;var t=c(this);if(!t.defaultOption){var n=[],r=e;while(r){var o=r.prototype.defaultOption;o&&n.push(o),r=r.superClass}for(var a={},l=n.length-1;l>=0;l--)a=i["G"](a,n[l],!0);t.defaultOption=a}return t.defaultOption},t.prototype.getReferringComponents=function(e,t){var n=e+"Index",r=e+"Id";return Object(l["t"])(this.ecModel,e,{index:this.get(n,!0),id:this.get(r,!0)},t)},t.prototype.getBoxLayoutParams=function(){var e=this;return{left:e.get("left"),top:e.get("top"),right:e.get("right"),bottom:e.get("bottom"),width:e.get("width"),height:e.get("height")}},t.protoInitialize=function(){var e=t.prototype;e.type="component",e.id="",e.name="",e.mainType="",e.subType="",e.componentIndex=0}(),t}(o["a"]);function d(e){var t=[];return i["k"](f.getClassesByMainType(e),function(e){t=t.concat(e.dependencies||e.prototype.dependencies||[])}),t=i["F"](t,function(e){return Object(s["f"])(e).main}),"dataset"!==e&&i["q"](t,"dataset")<=0&&t.unshift("dataset"),t}Object(s["e"])(f,o["a"]),Object(s["c"])(f),a["a"](f),a["b"](f,d),t["a"]=f},bgCn:function(e,t,n){"use strict";for(var r=n("AGgm").isSpace,i=[],o=0;o<256;o++)i.push(0);"\\!\"#$%&'()*+,./:;<=>?@[]^_`{|}~-".split("").forEach(function(e){i[e.charCodeAt(0)]=1}),e.exports=function(e,t){var n,o=e.pos,a=e.posMax;if(92!==e.src.charCodeAt(o))return!1;if(o++,o=n)break;if(e.sCount[s]=u){e.line=n;break}for(i=0;i0&&this.handleMarkers(k);var C=this.editor.$options;l.editorOptions.forEach(function(t){C.hasOwnProperty(t)?e.editor.setOption(t,e.props[t]):e.props[t]&&console.warn("ReactAce: editor option "+t+" was activated but not found. Did you need to import a related tool or did you possibly mispell the option?")}),this.handleOptions(this.props),Array.isArray(x)&&x.forEach(function(t){"string"===typeof t.exec?e.editor.commands.bindKey(t.bindKey,t.exec):e.editor.commands.addCommand(t)}),b&&this.editor.setKeyboardHandler("ace/keyboard/"+b),n&&(this.refEditor.className+=" "+n),_&&_(this.editor),this.editor.resize(),a&&this.editor.focus()},t.prototype.componentDidUpdate=function(e){for(var t=e,n=this.props,r=0;r"+o(e[t].content)+""},a.code_block=function(e,t,n,r,i){var a=e[t];return""+o(e[t].content)+"\n"},a.fence=function(e,t,n,r,a){var s,l,u,c,f,d=e[t],h=d.info?i(d.info).trim():"",p="",g="";return h&&(u=h.split(/(\s+)/g),p=u[0],g=u.slice(2).join("")),s=n.highlight&&n.highlight(d.content,p,g)||o(d.content),0===s.indexOf(""+s+"\n"):"
"+s+"
\n"},a.image=function(e,t,n,r,i){var o=e[t];return o.attrs[o.attrIndex("alt")][1]=i.renderInlineAsText(o.children,n,r),i.renderToken(e,t,n)},a.hardbreak=function(e,t,n){return n.xhtmlOut?"
\n":"
\n"},a.softbreak=function(e,t,n){return n.breaks?n.xhtmlOut?"
\n":"
\n":"\n"},a.text=function(e,t){return o(e[t].content)},a.html_block=function(e,t){return e[t].content},a.html_inline=function(e,t){return e[t].content},s.prototype.renderAttrs=function(e){var t,n,r;if(!e.attrs)return"";for(r="",t=0,n=e.attrs.length;t\n":">",i)},s.prototype.renderInline=function(e,t,n){for(var r,i="",o=this.rules,a=0,s=e.length;a=0,a=!1;if(e instanceof l["b"]){var s=f(e),u=o&&s.selectFill||s.normalFill,c=o&&s.selectStroke||s.normalStroke;if(O(u)||O(c)){r=r||{};var d=r.style||{};"inherit"===d.fill?(a=!0,r=Object(i["m"])({},r),d=Object(i["m"])({},d),d.fill=u):!O(d.fill)&&O(u)?(a=!0,r=Object(i["m"])({},r),d=Object(i["m"])({},d),d.fill=M(u)):!O(d.stroke)&&O(c)&&(a||(r=Object(i["m"])({},r),d=Object(i["m"])({},d)),d.stroke=M(c)),r.style=d}}if(r&&null==r.z2){a||(r=Object(i["m"])({},r));var h=e.z2EmphasisLift;r.z2=e.z2+(null!=h?h:v)}return r}function F(e,t,n){if(n&&null==n.z2){n=Object(i["m"])({},n);var r=e.z2SelectLift;n.z2=e.z2+(null!=r?r:y)}return n}function B(e,t,n){var r=Object(i["q"])(e.currentStates,t)>=0,o=e.style.opacity,a=r?null:R(e,["opacity"],t,{opacity:1});n=n||{};var s=n.style||{};return null==s.opacity&&(n=Object(i["m"])({},n),s=Object(i["m"])({opacity:r?o:.1*a.opacity},s),n.style=s),n}function V(e,t){var n=this.states[e];if(this.style){if("emphasis"===e)return z(this,e,t,n);if("blur"===e)return B(this,e,n);if("select"===e)return F(this,e,n)}return n}function Y(e){e.stateProxy=V;var t=e.getTextContent(),n=e.getTextGuideLine();t&&(t.stateProxy=V),n&&(n.stateProxy=V)}function G(e,t){!Q(e,t)&&!e.__highByOuter&&L(e,T)}function U(e,t){!Q(e,t)&&!e.__highByOuter&&L(e,j)}function W(e,t){e.__highByOuter|=1<<(t||0),L(e,T)}function H(e,t){!(e.__highByOuter&=~(1<<(t||0)))&&L(e,j)}function q(e){L(e,I)}function Z(e){L(e,D)}function K(e){L(e,A)}function X(e){L(e,E)}function Q(e,t){return e.__highDownSilentOnTouch&&t.zrByTouch}function $(e){var t=e.getModel();t.eachComponent(function(t,n){var r="series"===t?e.getViewOfSeriesModel(n):e.getViewOfComponentModel(n);r.group.traverse(function(e){D(e)})})}function J(e,t,n,r){var o=r.getModel();function a(e,t){for(var n=0;n0){var o={dataIndex:i,seriesIndex:e.seriesIndex};null!=r&&(o.dataType=r),t.push(o)}})}),t}function le(e,t,n){he(e,!0),L(e,Y),ue(e,t,n)}function ue(e,t,n){var r=Object(o["a"])(e);null!=t?(r.focus=t,r.blurScope=n):r.focus&&(r.focus=null)}var ce=["emphasis","blur","select"],fe={itemStyle:"getItemStyle",lineStyle:"getLineStyle",areaStyle:"getAreaStyle"};function de(e,t,n,r){n=n||"itemStyle";for(var i=0;i=n)return l;if(o=e.charCodeAt(t),34!==o&&39!==o&&40!==o)return l;t++,40===o&&(o=41);while(t0&&this.level++,this.tokens.push(i),i},o.prototype.isEmpty=function(e){return this.bMarks[e]+this.tShift[e]>=this.eMarks[e]},o.prototype.skipEmptyLines=function(e){for(var t=this.lineMax;et)if(!i(this.src.charCodeAt(--e)))return e+1;return e},o.prototype.skipChars=function(e,t){for(var n=this.src.length;en)if(t!==this.src.charCodeAt(--e))return e+1;return e},o.prototype.getLines=function(e,t,n,r){var o,a,s,l,u,c,f,d=e;if(e>=t)return"";for(c=new Array(t-e),o=0;dn?new Array(a-n+1).join(" ")+this.src.slice(l,u):this.src.slice(l,u)}return c.join("")},o.prototype.Token=r,e.exports=o},g40J:function(e,t,n){"use strict";function r(e,t){var n,r,i,o,a,s,l,u,c={},f=t.length;for(n=0;na;r-=o.jump+1)if(o=t[r],o.marker===i.marker&&(-1===s&&(s=r),o.open&&o.end<0&&(l=!1,(o.close||i.open)&&(o.length+i.length)%3===0&&(o.length%3===0&&i.length%3===0||(l=!0)),!l))){u=r>0&&!t[r-1].open?t[r-1].jump+1:0,i.jump=n-r+u,i.open=!1,o.end=n,o.jump=u,o.close=!1,s=-1;break}-1!==s&&(c[i.marker][(i.length||0)%3]=s)}}e.exports=function(e){var t,n=e.tokens_meta,i=e.tokens_meta.length;for(r(e,e.delimiters),t=0;t30}},gNPE:function(e,t,n){"use strict";var r=n("AGgm").isSpace;function i(e,t){var n=e.bMarks[t]+e.tShift[t],r=e.eMarks[t];return e.src.substr(n,r-n)}function o(e){var t,n=[],r=0,i=e.length,o=!1,a=0,s="";t=e.charCodeAt(r);while(rn)return!1;if(d=t+1,e.sCount[d]=4)return!1;if(u=e.bMarks[d]+e.tShift[d],u>=e.eMarks[d])return!1;if(s=e.src.charCodeAt(u++),124!==s&&45!==s&&58!==s)return!1;while(u=4)return!1;if(h=o(l),h.length&&""===h[0]&&h.shift(),h.length&&""===h[h.length-1]&&h.pop(),p=h.length,0===p||p!==m.length)return!1;if(a)return!0;for(_=e.parentType,e.parentType="table",w=e.md.block.ruler.getRules("blockquote"),g=e.push("table_open","table",1),g.map=y=[t,0],g=e.push("thead_open","thead",1),g.map=[t,t+1],g=e.push("tr_open","tr",1),g.map=[t,t+1],c=0;c=4)break;for(h=o(l),h.length&&""===h[0]&&h.shift(),h.length&&""===h[h.length-1]&&h.pop(),d===t+2&&(g=e.push("tbody_open","tbody",1),g.map=b=[t+2,0]),g=e.push("tr_open","tr",1),g.map=[d,d+1],c=0;c1){var c=l.shift();1===l.length&&(n[s]=l[0]),this._update&&this._update(c,a)}else 1===u?(n[s]=null,this._update&&this._update(l,a)):this._remove&&this._remove(a)}this._performRestAdd(o,n)},e.prototype._executeMultiple=function(){var e=this._old,t=this._new,n={},i={},o=[],a=[];this._initIndexMap(e,n,o,"_oldKeyGetter"),this._initIndexMap(t,i,a,"_newKeyGetter");for(var s=0;s1&&1===d)this._updateManyToOne&&this._updateManyToOne(c,u),i[l]=null;else if(1===f&&d>1)this._updateOneToMany&&this._updateOneToMany(c,u),i[l]=null;else if(1===f&&1===d)this._update&&this._update(c,u),i[l]=null;else if(f>1&&d>1)this._updateManyToMany&&this._updateManyToMany(c,u),i[l]=null;else if(f>1)for(var h=0;h1)for(var s=0;s=0?f():c=setTimeout(f,-i),l=r};return d.clear=function(){c&&(clearTimeout(c),c=null)},d.debounceNextCall=function(e){s=e},d}function s(e,t,n,s){var l=e[t];if(l){var u=l[r]||l,c=l[o],f=l[i];if(f!==n||c!==s){if(null==n||!s)return e[t]=u;l=e[t]=a(u,n,"debounce"===s),l[r]=u,l[o]=s,l[i]=n}return l}}},iRjW:function(e,t,n){"use strict";n.d(t,"c",function(){return a}),n.d(t,"a",function(){return s}),n.d(t,"b",function(){return l}),n.d(t,"d",function(){return u});var r=n("bYtY"),i=n("Yl7c"),o=Math.round(10*Math.random());function a(e){return[e||"",o++].join("_")}function s(e){var t={};e.registerSubTypeDefaulter=function(e,n){var r=Object(i["f"])(e);t[r.main]=n},e.determineSubType=function(n,r){var o=r.type;if(!o){var a=Object(i["f"])(n).main;e.hasSubTypes(n)&&t[a]&&(o=t[a](r))}return o}}function l(e,t){function n(e){var n={},a=[];return r["k"](e,function(s){var l=i(n,s),u=l.originalDeps=t(s),c=o(u,e);l.entryCount=c.length,0===l.entryCount&&a.push(s),r["k"](c,function(e){r["q"](l.predecessor,e)<0&&l.predecessor.push(e);var t=i(n,e);r["q"](t.successor,e)<0&&t.successor.push(s)})}),{graph:n,noEntryList:a}}function i(e,t){return e[t]||(e[t]={predecessor:[],successor:[]}),e[t]}function o(e,t){var n=[];return r["k"](e,function(e){r["q"](t,e)>=0&&n.push(e)}),n}e.topologicalTravel=function(e,t,i,o){if(e.length){var a=n(t),s=a.graph,l=a.noEntryList,u={};r["k"](e,function(e){u[e]=!0});while(l.length){var c=l.pop(),f=s[c],d=!!u[c];d&&(i.call(o,c,f.originalDeps.slice()),delete u[c]),r["k"](f.successor,d?p:h)}r["k"](u,function(){var e="";throw new Error(e)})}function h(e){s[e].entryCount--,0===s[e].entryCount&&l.push(e)}function p(e){u[e]=!0,h(e)}}}function u(e,t){return r["G"](r["G"]({},e,!0),t,!0)}},"ijE+":function(e,t,n){"use strict";e.exports={options:{html:!1,xhtmlOut:!1,breaks:!1,langPrefix:"language-",linkify:!1,typographer:!1,quotes:"\u201c\u201d\u2018\u2019",highlight:null,maxNesting:100},components:{core:{},block:{},inline:{}}}},itsj:function(e,t){function n(e,t){if(("constructor"!==t||"function"!==typeof e[t])&&"__proto__"!=t)return e[t]}e.exports=n},jYNY:function(e,t,n){var r=n("rgI+"),i=n("o9ul"),o=n("8wmI"),a="[object Object]",s=Function.prototype,l=Object.prototype,u=s.toString,c=l.hasOwnProperty,f=u.call(Object);function d(e){if(!o(e)||r(e)!=a)return!1;var t=i(e);if(null===t)return!0;var n=c.call(t,"constructor")&&t.constructor;return"function"==typeof n&&n instanceof n&&u.call(n)==f}e.exports=d},jeLo:function(e,t,n){var r=n("juv8"),i=n("mTTR");function o(e){return r(e,i(e))}e.exports=o},jkPA:function(e,t,n){"use strict";var r=n("bYtY"),i=0,o=function(){function e(e){this.categories=e.categories||[],this._needCollect=e.needCollect,this._deduplication=e.deduplication,this.uid=++i}return e.createByAxisModel=function(t){var n=t.option,i=n.data,o=i&&Object(r["F"])(i,a);return new e({categories:o,needCollect:!o,deduplication:!1!==n.dedplication})},e.prototype.getOrdinal=function(e){return this._getOrCreateMap().get(e)},e.prototype.parseAndCollect=function(e){var t,n=this._needCollect;if("string"!==typeof e&&!n)return e;if(n&&!this._deduplication)return t=this.categories.length,this.categories[t]=e,t;var r=this._getOrCreateMap();return t=r.get(e),null==t&&(n?(t=this.categories.length,this.categories[t]=e,r.set(e,t)):t=NaN),t},e.prototype._getOrCreateMap=function(){return this._map||(this._map=Object(r["g"])(this.categories))},e}();function a(e){return Object(r["z"])(e)&&null!=e.value?e.value:e+""}t["a"]=o},juv8:function(e,t,n){var r=n("MrPd"),i=n("hypo");function o(e,t,n,o){var a=!n;n||(n={});var s=-1,l=t.length;while(++s=b)return!1;for(m=c,d=e.md.helpers.parseLinkDestination(e.src,c,e.posMax),d.ok&&(v=e.md.normalizeLink(d.str),e.md.validateLink(v)?c=d.pos:v=""),m=c;c=b||41!==e.src.charCodeAt(c))return e.pos=y,!1;c++}else{if("undefined"===typeof e.env.references)return!1;if(c=0?s=e.src.slice(m,c++):c=l+1):c=l+1,s||(s=e.src.slice(u,l)),f=e.env.references[r(s)],!f)return e.pos=y,!1;v=f.href,h=f.title}return t||(a=e.src.slice(u,l),e.md.inline.parse(a,e.md,e.env,g=[]),p=e.push("image","img",0),p.attrs=n=[["src",v],["alt",""]],p.children=g,p.content=a,h&&n.push(["title",h])),e.pos=c,e.posMax=b,!0}},lSCD:function(e,t,n){var r=n("NykK"),i=n("GoyQ"),o="[object AsyncFunction]",a="[object Function]",s="[object GeneratorFunction]",l="[object Proxy]";function u(e){if(!i(e))return!1;var t=r(e);return t==a||t==s||t==o||t==l}e.exports=u},lc5D:function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n("eF/C"),i=n("Uf63");t.diff=i.default;var o=n("N5VM");t.split=o.default,t.default=r.default},ljhN:function(e,t){function n(e,t){return e===t||e!==e&&t!==t}e.exports=n},mSF0:function(e,t,n){"use strict";var r=n("AGgm").arrayReplaceAt;function i(e){return/^\s]/i.test(e)}function o(e){return/^<\/a\s*>/i.test(e)}e.exports=function(e){var t,n,a,s,l,u,c,f,d,h,p,g,m,v,y,b,_,x=e.tokens;if(e.md.options.linkify)for(n=0,a=x.length;n=0;t--)if(u=s[t],"link_close"!==u.type){if("html_inline"===u.type&&(i(u.content)&&m>0&&m--,o(u.content)&&m++),!(m>0)&&"text"===u.type&&e.md.linkify.test(u.content)){for(d=u.content,_=e.md.linkify.match(d),c=[],g=u.level,p=0,f=0;f<_.length;f++)v=_[f].url,y=e.md.normalizeLink(v),e.md.validateLink(y)&&(b=_[f].text,b=_[f].schema?"mailto:"!==_[f].schema||/^mailto:/i.test(b)?e.md.normalizeLinkText(b):e.md.normalizeLinkText("mailto:"+b).replace(/^mailto:/,""):e.md.normalizeLinkText("http://"+b).replace(/^http:\/\//,""),h=_[f].index,h>p&&(l=new e.Token("text","",0),l.content=d.slice(p,h),l.level=g,c.push(l)),l=new e.Token("link_open","a",1),l.attrs=[["href",y]],l.level=g++,l.markup="linkify",l.info="auto",c.push(l),l=new e.Token("text","",0),l.content=b,l.level=g,c.push(l),l=new e.Token("link_close","a",-1),l.level=--g,l.markup="linkify",l.info="auto",c.push(l),p=_[f].lastIndex);p=1)&&(e=1),e}s===u&&l===c||(t="reset"),(this._dirty||"reset"===t)&&(this._dirty=!1,a=this._doReset(i)),this._modBy=u,this._modDataCount=c;var d=e&&e.step;if(this._dueEnd=n?n._outputDueEnd:this._count?this._count(this.context):1/0,this._progress){var h=this._dueIndex,p=Math.min(null!=d?this._dueIndex+d:1/0,this._dueEnd);if(!i&&(a||h1&&r>0?s:a}};return o;function a(){return t=e?null:o=4))break;r++,i=r}return e.line=i,o=e.push("code_block","code",0),o.content=e.getLines(t,i,4+e.blkIndent,!0),o.map=[t,e.line],!0}},nVfU:function(e,t,n){"use strict";n.d(t,"d",function(){return d}),n.d(t,"c",function(){return p}),n.d(t,"e",function(){return m}),n.d(t,"b",function(){return v}),n.d(t,"a",function(){return y});var r=n("bYtY"),i=n("OELB"),o=n("7hqr"),a=n("zM3Q"),s="__ec_stack_",l=.5,u="undefined"!==typeof Float32Array?Float32Array:Array;function c(e){return e.get("stack")||s+e.seriesIndex}function f(e){return e.dim+e.index}function d(e,t){var n=[];return t.eachSeriesByType(e,function(e){b(e)&&!_(e)&&n.push(e)}),n}function h(e){var t={};r["k"](e,function(e){var n=e.coordinateSystem,r=n.getBaseAxis();if("time"===r.type||"value"===r.type)for(var i=e.getData(),o=r.dim+"_"+r.index,a=i.getDimensionIndex(i.mapDimension(r.dim)),s=i.getStore(),l=0,u=s.count();l0&&(a=null===a?l:Math.min(a,l))}n[i]=a}}return n}function p(e){var t=h(e),n=[];return r["k"](e,function(e){var r,o=e.coordinateSystem,a=o.getBaseAxis(),s=a.getExtent();if("category"===a.type)r=a.getBandWidth();else if("value"===a.type||"time"===a.type){var l=a.dim+"_"+a.index,u=t[l],d=Math.abs(s[1]-s[0]),h=a.scale.getExtent(),p=Math.abs(h[1]-h[0]);r=u?d/p*u:d}else{var g=e.getData();r=Math.abs(s[1]-s[0])/g.count()}var m=Object(i["m"])(e.get("barWidth"),r),v=Object(i["m"])(e.get("barMaxWidth"),r),y=Object(i["m"])(e.get("barMinWidth")||1,r),b=e.get("barGap"),_=e.get("barCategoryGap");n.push({bandWidth:r,barWidth:m,barMaxWidth:v,barMinWidth:y,barGap:b,barCategoryGap:_,axisKey:f(a),stackId:c(e)})}),g(n)}function g(e){var t={};r["k"](e,function(e,n){var r=e.axisKey,i=e.bandWidth,o=t[r]||{bandWidth:i,remainedWidth:i,autoWidthCount:0,categoryGap:null,gap:"20%",stacks:{}},a=o.stacks;t[r]=o;var s=e.stackId;a[s]||o.autoWidthCount++,a[s]=a[s]||{width:0,maxWidth:0};var l=e.barWidth;l&&!a[s].width&&(a[s].width=l,l=Math.min(o.remainedWidth,l),o.remainedWidth-=l);var u=e.barMaxWidth;u&&(a[s].maxWidth=u);var c=e.barMinWidth;c&&(a[s].minWidth=c);var f=e.barGap;null!=f&&(o.gap=f);var d=e.barCategoryGap;null!=d&&(o.categoryGap=d)});var n={};return r["k"](t,function(e,t){n[t]={};var o=e.stacks,a=e.bandWidth,s=e.categoryGap;if(null==s){var l=r["D"](o).length;s=Math.max(35-4*l,15)+"%"}var u=Object(i["m"])(s,a),c=Object(i["m"])(e.gap,1),f=e.remainedWidth,d=e.autoWidthCount,h=(f-u)/(d+(d-1)*c);h=Math.max(h,0),r["k"](o,function(e){var t=e.maxWidth,n=e.minWidth;if(e.width){r=e.width;t&&(r=Math.min(r,t)),n&&(r=Math.max(r,n)),e.width=r,f-=r+c*r,d--}else{var r=h;t&&tr&&(r=n),r!==h&&(e.width=r,f-=r+c*r,d--)}}),h=(f-u)/(d+(d-1)*c),h=Math.max(h,0);var p,g=0;r["k"](o,function(e,t){e.width||(e.width=h),p=e,g+=e.width*(1+c)}),p&&(g-=p.width*c);var m=-g/2;r["k"](o,function(e,r){n[t][r]=n[t][r]||{bandWidth:a,offset:m,width:e.width},m+=e.width*(1+c)})}),n}function m(e,t,n){if(e&&t){var r=e[f(t)];return null!=r&&null!=n?r[c(n)]:r}}function v(e,t){var n=d(e,t),i=p(n),a={};r["k"](n,function(e){var t=e.getData(),n=e.coordinateSystem,r=n.getBaseAxis(),s=c(e),l=i[f(r)][s],u=l.offset,d=l.width,h=n.getOtherAxis(r),p=e.get("barMinHeight")||0;a[s]=a[s]||[],t.setLayout({bandWidth:l.bandWidth,offset:u,size:d});for(var g=t.mapDimension(h.dim),m=t.mapDimension(r.dim),v=Object(o["c"])(t,g),y=h.isHorizontal(),b=x(r,h,v),_=t.getStore(),w=t.getDimensionIndex(g),k=t.getDimensionIndex(m),O=0,S=_.count();O=0?"p":"n",j=b;v&&(a[s][C]||(a[s][C]={p:b,n:b}),j=a[s][C][T]);var I=void 0,D=void 0,A=void 0,E=void 0;if(y){var P=n.dataToPoint([M,C]);I=j,D=P[1]+u,A=P[0]-b,E=d,Math.abs(A)l||(d=l),{progress:function(e,t){var l,h=e.count,p=new u(2*h),g=new u(2*h),m=new u(h),v=[],y=[],b=0,_=0,w=t.getStore();while(null!=(l=e.next()))y[f]=w.get(a,l),y[1-f]=w.get(s,l),v=n.dataToPoint(y,null),g[b]=c?r.x+r.width:v[0],p[b++]=v[0],g[b]=c?v[1]:r.y+r.height,p[b++]=v[1],m[_++]=l;t.setLayout({largePoints:p,largeDataIndices:m,largeBackgroundPoints:g,barWidth:d,valueAxisStart:x(i,o,!1),backgroundStart:c?r.x:r.y,valueAxisHorizontal:c})}}}}};function b(e){return e.coordinateSystem&&"cartesian2d"===e.coordinateSystem.type}function _(e){return e.pipelineContext&&e.pipelineContext.large}function x(e,t,n){return t.toGlobalCoord(t.dataToCoord("log"===t.type?1:0))}},nmnc:function(e,t,n){var r=n("Kz5y"),i=r.Symbol;e.exports=i},o9ul:function(e,t,n){var r=n("qxrA"),i=r(Object.getPrototypeOf,Object);e.exports=i},oSSR:function(e,t,n){"use strict";e.exports=function(e){var t,n,r,i=e.tokens;for(n=0,r=i.length;na)return!0;if(o){var s=c["c"](e).seriesDataCount,l=r.getExtent();return Math.abs(l[0]-l[1])/s>a}return!1}return!0===n},e.prototype.makeElOption=function(e,t,n,r,i){},e.prototype.createPointerEl=function(e,t,n,r){var i=t.pointer;if(i){var o=p(e).pointerEl=new s[i.type](g(t.pointer));e.add(o)}},e.prototype.createLabelEl=function(e,t,n,r){if(t.label){var i=p(e).labelEl=new l["a"](g(t.label));e.add(i),_(i,r)}},e.prototype.updatePointerEl=function(e,t,n){var r=p(e).pointerEl;r&&t.pointer&&(r.setStyle(t.pointer.style),n(r,{shape:t.pointer.shape}))},e.prototype.updateLabelEl=function(e,t,n,r){var i=p(e).labelEl;i&&(i.setStyle(t.label.style),n(i,{x:t.label.x,y:t.label.y}),_(i,r))},e.prototype._renderHandle=function(e){if(!this._dragging&&this.updateHandleTransform){var t,n=this._axisPointerModel,r=this._api.getZr(),i=this._handle,a=n.getModel("handle"),l=n.get("status");if(!a.get("show")||!l||"hide"===l)return i&&r.remove(i),void(this._handle=null);this._handle||(t=!0,i=this._handle=s["createIcon"](a.get("icon"),{cursor:"move",draggable:!0,onmousemove:function(e){f["f"](e.event)},onmousedown:m(this._onHandleDragMove,this,0,0),drift:m(this._onHandleDragMove,this),ondragend:m(this._onHandleDragEnd,this)}),r.add(i)),w(i,n,!1),i.setStyle(a.getItemStyle(null,["color","borderColor","borderWidth","opacity","shadowColor","shadowBlur","shadowOffsetX","shadowOffsetY"]));var u=a.get("size");o["s"](u)||(u=[u,u]),i.scaleX=u[0]/2,i.scaleY=u[1]/2,d["a"](this,"_doDispatchAxisPointer",a.get("throttle")||0,"fixRate"),this._moveHandleToValue(e,t)}},e.prototype._moveHandleToValue=function(e,t){y(this._axisPointerModel,!t&&this._moveAnimation,this._handle,x(this.getHandleTransform(e,this._axisModel,this._axisPointerModel)))},e.prototype._onHandleDragMove=function(e,t){var n=this._handle;if(n){this._dragging=!0;var r=this.updateHandleTransform(x(n),[e,t],this._axisModel,this._axisPointerModel);this._payloadInfo=r,n.stopAnimation(),n.attr(x(r)),p(n).lastProp=null,this._doDispatchAxisPointer()}},e.prototype._doDispatchAxisPointer=function(){var e=this._handle;if(e){var t=this._payloadInfo,n=this._axisModel;this._api.dispatchAction({type:"updateAxisPointer",x:t.cursorPoint[0],y:t.cursorPoint[1],tooltipOption:t.tooltipOption,axesInfo:[{axisDim:n.axis.dim,axisIndex:n.componentIndex}]})}},e.prototype._onHandleDragEnd=function(){this._dragging=!1;var e=this._handle;if(e){var t=this._axisPointerModel.get("value");this._moveHandleToValue(t),this._api.dispatchAction({type:"hideTip"})}},e.prototype.clear=function(e){this._lastValue=null,this._lastStatus=null;var t=e.getZr(),n=this._group,r=this._handle;t&&n&&(this._lastGraphicKey=null,n&&t.remove(n),r&&t.remove(r),this._group=null,this._handle=null,this._payloadInfo=null)},e.prototype.doClear=function(){},e.prototype.buildLabel=function(e,t,n){return n=n||0,{x:e[n],y:e[1-n],width:t[n],height:t[1-n]}},e}();function y(e,t,n,r){b(p(n).lastProp,r)||(p(n).lastProp=r,t?u["h"](n,r,e):(n.stopAnimation(),n.attr(r)))}function b(e,t){if(o["z"](e)&&o["z"](t)){var n=!0;return o["k"](t,function(t,r){n=n&&b(e[r],t)}),!!n}return e===t}function _(e,t){e[t.get(["label","show"])?"show":"hide"]()}function x(e){return{x:e.x||0,y:e.y||0,rotation:e.rotation||0}}function w(e,t,n){var r=t.get("z"),i=t.get("zlevel");e&&e.traverse(function(e){"group"!==e.type&&(null!=r&&(e.z=r),null!=i&&(e.zlevel=i),e.silent=n)})}var k=v,O=n("/y7N"),S=n("AVZG"),M=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return Object(i["a"])(t,e),t.prototype.makeElOption=function(e,t,n,r,i){var o=n.axis,a=o.grid,s=r.get("type"),l=C(a,o).getOtherAxis(o).getGlobalExtent(),u=o.toGlobalCoord(o.dataToCoord(t,!0));if(s&&"none"!==s){var c=O["b"](r),f=T[s](o,u,l);f.style=c,e.graphicKey=f.type,e.pointer=f}var d=S["c"](a.model,n);O["a"](t,e,d,n,r,i)},t.prototype.getHandleTransform=function(e,t,n){var r=S["c"](t.axis.grid.model,t,{labelInside:!1});r.labelMargin=n.get(["handle","margin"]);var i=O["c"](t.axis,e,r);return{x:i[0],y:i[1],rotation:r.rotation+(r.labelDirection<0?Math.PI:0)}},t.prototype.updateHandleTransform=function(e,t,n,r){var i=n.axis,o=i.grid,a=i.getGlobalExtent(!0),s=C(o,i).getOtherAxis(i).getGlobalExtent(),l="x"===i.dim?0:1,u=[e.x,e.y];u[l]+=t[l],u[l]=Math.min(a[1],u[l]),u[l]=Math.max(a[0],u[l]);var c=(s[1]+s[0])/2,f=[c,c];f[l]=u[l];var d=[{verticalAlign:"middle"},{align:"center"}];return{x:u[0],y:u[1],rotation:e.rotation,cursorPoint:f,tooltipOption:d[l]}},t}(k);function C(e,t){var n={};return n[t.dim+"AxisIndex"]=t.index,e.getCartesian(n)}var T={line:function(e,t,n){var r=O["e"]([t,n[0]],[t,n[1]],j(e));return{type:"Line",subPixelOptimize:!0,shape:r}},shadow:function(e,t,n){var r=Math.max(1,e.getBandWidth()),i=n[1]-n[0];return{type:"Rect",shape:O["f"]([t-r/2,n[0]],[r,i],j(e))}}};function j(e){return"x"===e.dim?0:1}var I=M,D=n("bLfw"),A=function(e){function t(){var n=null!==e&&e.apply(this,arguments)||this;return n.type=t.type,n}return Object(i["a"])(t,e),t.type="axisPointer",t.defaultOption={show:"auto",zlevel:0,z:50,type:"line",snap:!1,triggerTooltip:!0,value:null,status:null,link:[],animation:null,animationDurationUpdate:200,lineStyle:{color:"#B9BEC9",width:1,type:"dashed"},shadowStyle:{color:"rgba(210,219,238,0.2)"},label:{show:!0,formatter:null,precision:"auto",margin:3,color:"#fff",padding:[5,7,5,7],backgroundColor:"auto",borderColor:null,borderWidth:0,borderRadius:3},handle:{show:!1,icon:"M10.7,11.9v-1.3H9.3v1.3c-4.9,0.3-8.8,4.4-8.8,9.4c0,5,3.9,9.1,8.8,9.4h1.3c4.9-0.3,8.8-4.4,8.8-9.4C19.5,16.3,15.6,12.2,10.7,11.9z M13.3,24.4H6.7v-1.2h6.6z M13.3,22H6.7v-1.2h6.6z M13.3,19.6H6.7v-1.2h6.6z",size:45,margin:50,color:"#333",shadowBlur:3,shadowColor:"#aaa",shadowOffsetX:0,shadowOffsetY:2,throttle:40}},t}(D["a"]),E=A,P=n("F9bG"),L=n("sS/r"),N=function(e){function t(){var n=null!==e&&e.apply(this,arguments)||this;return n.type=t.type,n}return Object(i["a"])(t,e),t.prototype.render=function(e,t,n){var r=t.getComponent("tooltip"),i=e.get("triggerOn")||r&&r.get("triggerOn")||"mousemove|click";P["a"]("axisPointer",n,function(e,t,n){"none"!==i&&("leave"===e||i.indexOf(e)>=0)&&n({type:"updateAxisPointer",currTrigger:e,x:t&&t.offsetX,y:t&&t.offsetY})})},t.prototype.remove=function(e,t){P["b"]("axisPointer",t)},t.prototype.dispose=function(e,t){P["b"]("axisPointer",t)},t.type="axisPointer",t}(L["a"]),R=N,z=n("Ez2D"),F=Object(h["m"])();function B(e,t,n){var r=e.currTrigger,i=[e.x,e.y],a=e,s=e.dispatchAction||Object(o["c"])(n.dispatchAction,n),l=t.getComponent("axisPointer").coordSysAxesInfo;if(l){X(i)&&(i=Object(z["a"])({seriesIndex:a.seriesIndex,dataIndex:a.dataIndex},t).point);var u=X(i),c=a.axesInfo,f=l.axesInfo,d="leave"===r||X(i),h={},p={},g={list:[],map:{}},m={showPointer:Object(o["i"])(G,p),showTooltip:Object(o["i"])(U,g)};Object(o["k"])(l.coordSysMap,function(e,t){var n=u||e.containPoint(i);Object(o["k"])(l.coordSysAxesInfo[t],function(e,t){var r=e.axis,o=Z(c,e);if(!d&&n&&(!c||o)){var a=o&&o.value;null!=a||u||(a=r.pointToData(i)),null!=a&&V(e,a,m,!1,h)}})});var v={};return Object(o["k"])(f,function(e,t){var n=e.linkGroup;n&&!p[t]&&Object(o["k"])(n.axesInfo,function(t,r){var i=p[r];if(t!==e&&i){var o=i.value;n.mapper&&(o=e.axis.scale.parse(n.mapper(o,K(t),K(e)))),v[e.key]=o}})}),Object(o["k"])(v,function(e,t){V(f[t],e,m,!0,h)}),W(p,f,h),H(g,i,e,s),q(f,s,n),h}}function V(e,t,n,r,i){var a=e.axis;if(!a.scale.isBlank()&&a.containData(t))if(e.involveSeries){var s=Y(t,e),l=s.payloadBatch,u=s.snapToValue;l[0]&&null==i.seriesIndex&&Object(o["m"])(i,l[0]),!r&&e.snap&&a.containData(u)&&null!=u&&(t=u),n.showPointer(e,t,l),n.showTooltip(e,s,u)}else n.showPointer(e,t)}function Y(e,t){var n=t.axis,r=n.dim,i=e,a=[],s=Number.MAX_VALUE,l=-1;return Object(o["k"])(t.seriesModels,function(t,u){var c,f,d=t.getData().mapDimensionsAll(r);if(t.getAxisTooltipData){var h=t.getAxisTooltipData(d,e,n);f=h.dataIndices,c=h.nestestValue}else{if(f=t.getData().indicesOfNearest(d[0],e,"category"===n.type?.5:null),!f.length)return;c=t.getData().get(d[0],f[0])}if(null!=c&&isFinite(c)){var p=e-c,g=Math.abs(p);g<=s&&((g=0&&l<0)&&(s=g,l=p,i=c,a.length=0),Object(o["k"])(f,function(e){a.push({seriesIndex:t.seriesIndex,dataIndexInside:e,dataIndex:t.getData().getRawIndex(e)})}))}}),{payloadBatch:a,snapToValue:i}}function G(e,t,n,r){e[t.key]={value:n,payloadBatch:r}}function U(e,t,n,r){var i=n.payloadBatch,o=t.axis,a=o.model,s=t.axisPointerModel;if(t.triggerTooltip&&i.length){var l=t.coordSys.model,u=c["e"](l),f=e.map[u];f||(f=e.map[u]={coordSysId:l.id,coordSysIndex:l.componentIndex,coordSysType:l.type,coordSysMainType:l.mainType,dataByAxis:[]},e.list.push(f)),f.dataByAxis.push({axisDim:o.dim,axisIndex:a.componentIndex,axisType:a.type,axisId:a.id,value:r,valueLabelOpt:{precision:s.get(["label","precision"]),formatter:s.get(["label","formatter"])},seriesDataIndices:i.slice()})}}function W(e,t,n){var r=n.axesInfo=[];Object(o["k"])(t,function(t,n){var i=t.axisPointerModel.option,o=e[n];o?(!t.useHandle&&(i.status="show"),i.value=o.value,i.seriesDataIndices=(o.payloadBatch||[]).slice()):!t.useHandle&&(i.status="hide"),"show"===i.status&&r.push({axisDim:t.axis.dim,axisIndex:t.axis.model.componentIndex,value:i.value})})}function H(e,t,n,r){if(!X(t)&&e.list.length){var i=((e.list[0].dataByAxis[0]||{}).seriesDataIndices||[])[0]||{};r({type:"showTip",escapeConnect:!0,x:t[0],y:t[1],tooltipOption:n.tooltipOption,position:n.position,dataIndexInside:i.dataIndexInside,dataIndex:i.dataIndex,seriesIndex:i.seriesIndex,dataByCoordSys:e.list})}else r({type:"hideTip"})}function q(e,t,n){var r=n.getZr(),i="axisPointerLastHighlights",a=F(r)[i]||{},s=F(r)[i]={};Object(o["k"])(e,function(e,t){var n=e.axisPointerModel.option;"show"===n.status&&Object(o["k"])(n.seriesDataIndices,function(e){var t=e.seriesIndex+" | "+e.dataIndex;s[t]=e})});var l=[],u=[];Object(o["k"])(a,function(e,t){!s[t]&&u.push(e)}),Object(o["k"])(s,function(e,t){!a[t]&&l.push(e)}),u.length&&n.dispatchAction({type:"downplay",escapeConnect:!0,notBlur:!0,batch:u}),l.length&&n.dispatchAction({type:"highlight",escapeConnect:!0,notBlur:!0,batch:l})}function Z(e,t){for(var n=0;n<(e||[]).length;n++){var r=e[n];if(t.axis.dim===r.axisDim&&t.axis.model.componentIndex===r.axisIndex)return r}}function K(e){var t=e.axis.model,n={},r=n.axisDim=e.axis.dim;return n.axisIndex=n[r+"AxisIndex"]=t.componentIndex,n.axisName=n[r+"AxisName"]=t.name,n.axisId=n[r+"AxisId"]=t.id,n}function X(e){return!e||null==e[0]||isNaN(e[0])||null==e[1]||isNaN(e[1])}function Q(e){r["a"].registerAxisPointerClass("CartesianAxisPointer",I),e.registerComponentModel(E),e.registerComponentView(R),e.registerPreprocessor(function(e){if(e){(!e.axisPointer||0===e.axisPointer.length)&&(e.axisPointer={});var t=e.axisPointer.link;t&&!Object(o["s"])(t)&&(e.axisPointer.link=[t])}}),e.registerProcessor(e.PRIORITY.PROCESSOR.STATISTIC,function(e,t){e.getComponent("axisPointer").coordSysAxesInfo=Object(c["a"])(e,t)}),e.registerAction({type:"updateAxisPointer",event:"updateAxisPointer",update:":updateAxisPointer"},B)}n.d(t,"a",function(){return Q})},"rgI+":function(e,t,n){var r=n("e+LU"),i=n("4Vez"),o=n("3m0e"),a="[object Null]",s="[object Undefined]",l=r?r.toStringTag:void 0;function u(e){return null==e?void 0===e?s:a:l&&l in Object(e)?i(e):o(e)}e.exports=u},rzDG:function(e,t,n){"use strict";var r=n("AGgm").isWhiteSpace,i=n("AGgm").isPunctChar,o=n("AGgm").isMdAsciiPunct,a=/['"]/,s=/['"]/g,l="\u2019";function u(e,t,n){return e.substr(0,t)+n+e.substr(t+1)}function c(e,t){var n,a,c,f,d,h,p,g,m,v,y,b,_,x,w,k,O,S,M,C,T;for(M=[],n=0;n=0;O--)if(M[O].level<=p)break;if(M.length=O+1,"text"===a.type){c=a.content,d=0,h=c.length;e:while(d=0)m=c.charCodeAt(f.index-1);else for(O=n-1;O>=0;O--){if("softbreak"===e[O].type||"hardbreak"===e[O].type)break;if(e[O].content){m=e[O].content.charCodeAt(e[O].content.length-1);break}}if(v=32,d=48&&m<=57&&(k=w=!1),w&&k&&(w=y,k=b),w||k){if(k)for(O=M.length-1;O>=0;O--){if(g=M[O],M[O].level=0;t--)"inline"===e.tokens[t].type&&a.test(e.tokens[t].content)&&c(e.tokens[t].children,e)}},sEf8:function(e,t){function n(e){return function(t){return e(t)}}e.exports=n},sEfC:function(e,t,n){var r=n("GoyQ"),i=n("QIyF"),o=n("tLB3"),a="Expected a function",s=Math.max,l=Math.min;function u(e,t,n){var u,c,f,d,h,p,g=0,m=!1,v=!1,y=!0;if("function"!=typeof e)throw new TypeError(a);function b(t){var n=u,r=c;return u=c=void 0,g=t,d=e.apply(r,n),d}function _(e){return g=e,h=setTimeout(k,t),m?b(e):d}function x(e){var n=e-p,r=e-g,i=t-n;return v?l(i,f-r):i}function w(e){var n=e-p,r=e-g;return void 0===p||n>=t||n<0||v&&r>=f}function k(){var e=i();if(w(e))return O(e);h=setTimeout(k,x(e))}function O(e){return h=void 0,y&&u?b(e):(u=c=void 0,d)}function S(){void 0!==h&&clearTimeout(h),g=0,u=p=c=h=void 0}function M(){return void 0===h?d:O(i())}function C(){var e=i(),n=w(e);if(u=arguments,c=this,p=e,n){if(void 0===h)return _(p);if(v)return clearTimeout(h),h=setTimeout(k,t),b(p)}return void 0===h&&(h=setTimeout(k,t)),d}return t=o(t)||0,r(n)&&(m=!!n.leading,v="maxWait"in n,f=v?s(o(n.maxWait)||0,t):f,y="trailing"in n?!!n.trailing:y),C.cancel=S,C.flush=M,C}e.exports=u},"sK/D":function(e,t,n){"use strict";n.d(t,"b",function(){return s}),n.d(t,"c",function(){return l}),n.d(t,"a",function(){return u});var r=n("x6Kt"),i=n("3qvL"),o=n("SqI9"),a=n("OELB");function s(e,t,n,o,a){var s=e.getArea(),l=s.x,u=s.y,c=s.width,f=s.height,d=n.get(["lineStyle","width"])||2;l-=d/2,u-=d/2,c+=d,f+=d,l=Math.floor(l),c=Math.round(c);var h=new r["a"]({shape:{x:l,y:u,width:c,height:f}});if(t){var p=e.getBaseAxis(),g=p.isHorizontal(),m=p.inverse;g?(m&&(h.shape.x+=c),h.shape.width=0):(m||(h.shape.y+=f),h.shape.height=0);var v="function"===typeof a?function(e){a(e,h)}:null;i["c"](h,{shape:{width:c,height:f,x:l,y:u}},n,null,o,v)}return h}function l(e,t,n){var r=e.getArea(),s=Object(a["p"])(r.r0,1),l=Object(a["p"])(r.r,1),u=new o["a"]({shape:{cx:Object(a["p"])(e.cx,1),cy:Object(a["p"])(e.cy,1),r0:s,r:l,startAngle:r.startAngle,endAngle:r.endAngle,clockwise:r.clockwise}});if(t){var c="angle"===e.getBaseAxis().dim;c?u.shape.endAngle=r.startAngle:u.shape.r=s,i["c"](u,{shape:{endAngle:r.endAngle,r:l}},n)}return u}function u(e,t,n,r,i){return e?"polar"===e.type?l(e,t,n):"cartesian2d"===e.type?s(e,t,n,r,i):null:null}},"sS/r":function(e,t,n){"use strict";var r=n("LcXL"),i=n("iRjW"),o=n("Yl7c"),a=function(){function e(){this.group=new r["a"],this.uid=i["c"]("viewComponent")}return e.prototype.init=function(e,t){},e.prototype.render=function(e,t,n,r){},e.prototype.dispose=function(e,t){},e.prototype.updateView=function(e,t,n,r){},e.prototype.updateLayout=function(e,t,n,r){},e.prototype.updateVisual=function(e,t,n,r){},e.prototype.blurSeries=function(e,t){},e}();o["b"](a),o["c"](a),t["a"]=a},shjB:function(e,t){var n=9007199254740991;function r(e){return"number"==typeof e&&e>-1&&e%1==0&&e<=n}e.exports=r},t2Dn:function(e,t,n){var r=n("hypo"),i=n("ljhN");function o(e,t,n){(void 0===n||i(e[t],n))&&(void 0!==n||t in e)||r(e,t,n)}e.exports=o},t9mh:function(e,t,n){"use strict";n.d(t,"b",function(){return a}),n.d(t,"a",function(){return l});var r=n("OELB"),i=n("bYtY"),o=n("7a4p");function a(e,t){var n=t&&t.type;return"ordinal"===n?e:("time"===n&&"number"!==typeof e&&null!=e&&"-"!==e&&(e=+Object(r["l"])(e)),null==e||""===e?NaN:+e)}Object(i["g"])({number:function(e){return parseFloat(e)},time:function(e){return+Object(r["l"])(e)},trim:function(e){return"string"===typeof e?Object(i["Q"])(e):e}});var s={lt:function(e,t){return et},gte:function(e,t){return e>=t}},l=(function(){function e(e,t){if("number"!==typeof t){var n="";0,Object(o["c"])(n)}this._opFn=s[e],this._rvalFloat=Object(r["k"])(t)}e.prototype.evaluate=function(e){return"number"===typeof e?this._opFn(e,this._rvalFloat):this._opFn(Object(r["k"])(e),this._rvalFloat)}}(),function(){function e(e,t){var n="desc"===e;this._resultLT=n?1:-1,null==t&&(t=n?"min":"max"),this._incomparable="min"===t?-1/0:1/0}return e.prototype.evaluate=function(e,t){var n=typeof e,i=typeof t,o="number"===n?e:Object(r["k"])(e),a="number"===i?t:Object(r["k"])(t),s=isNaN(o),l=isNaN(a);if(s&&(o=this._incomparable),l&&(a=this._incomparable),s&&l){var u="string"===n,c="string"===i;u&&(o=c?e:0),c&&(a=u?t:0)}return oa?-this._resultLT:0},e}());(function(){function e(e,t){this._rval=t,this._isEQ=e,this._rvalTypeof=typeof t,this._rvalFloat=Object(r["k"])(t)}e.prototype.evaluate=function(e){var t=e===this._rval;if(!t){var n=typeof e;n===this._rvalTypeof||"number"!==n&&"number"!==this._rvalTypeof||(t=Object(r["k"])(e)===this._rvalFloat)}return this._isEQ?t:!t}})()},tGEx:function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=["minLines","maxLines","readOnly","highlightActiveLine","tabSize","enableBasicAutocompletion","enableLiveAutocompletion","enableSnippets"];t.editorOptions=r;var i=["onChange","onFocus","onInput","onBlur","onCopy","onPaste","onSelectionChange","onCursorChange","onScroll","handleOptions","updateRef"];t.editorEvents=i;var o=function(){var e;return window.ace?(e=window.ace,e.acequire=window.ace.require||window.ace.acequire):e=n("bU/s"),e};t.getAceInstance=o;var a=function(e,t){var n=null;return function(){var r=this,i=arguments;clearTimeout(n),n=setTimeout(function(){e.apply(r,i)},t)}};t.debounce=a},tLB3:function(e,t,n){var r=n("GoyQ"),i=n("/9aa"),o=NaN,a=/^\s+|\s+$/g,s=/^[-+]0x[0-9a-f]+$/i,l=/^0b[01]+$/i,u=/^0o[0-7]+$/i,c=parseInt;function f(e){if("number"==typeof e)return e;if(i(e))return o;if(r(e)){var t="function"==typeof e.valueOf?e.valueOf():e;e=r(t)?t+"":t}if("string"!=typeof e)return 0===e?e:+e;e=e.replace(a,"");var n=l.test(e);return n||u.test(e)?c(e.slice(2),n?2:8):s.test(e)?o:+e}e.exports=f},tMB7:function(e,t,n){var r=n("y1pI");function i(e){var t=this.__data__,n=r(t,e);return n<0?void 0:t[n][1]}e.exports=i},u0qK:function(e,t,n){"use strict";var r=/\+-|\.\.|\?\?\?\?|!!!!|,,|--/,i=/\((c|tm|r|p)\)/i,o=/\((c|tm|r|p)\)/gi,a={c:"\xa9",r:"\xae",p:"\xa7",tm:"\u2122"};function s(e,t){return a[t.toLowerCase()]}function l(e){var t,n,r=0;for(t=e.length-1;t>=0;t--)n=e[t],"text"!==n.type||r||(n.content=n.content.replace(o,s)),"link_open"===n.type&&"auto"===n.info&&r--,"link_close"===n.type&&"auto"===n.info&&r++}function u(e){var t,n,i=0;for(t=e.length-1;t>=0;t--)n=e[t],"text"!==n.type||i||r.test(n.content)&&(n.content=n.content.replace(/\+-/g,"\xb1").replace(/\.{2,}/g,"\u2026").replace(/([?!])\u2026/g,"$1..").replace(/([?!]){4,}/g,"$1$1$1").replace(/,{2,}/g,",").replace(/(^|[^-])---(?=[^-]|$)/gm,"$1\u2014").replace(/(^|\s)--(?=\s|$)/gm,"$1\u2013").replace(/(^|[^-\s])--(?=[^-\s]|$)/gm,"$1\u2013")),"link_open"===n.type&&"auto"===n.info&&i--,"link_close"===n.type&&"auto"===n.info&&i++}e.exports=function(e){var t;if(e.md.options.typographer)for(t=e.tokens.length-1;t>=0;t--)"inline"===e.tokens[t].type&&(i.test(e.tokens[t].content)&&l(e.tokens[t].children),r.test(e.tokens[t].content)&&u(e.tokens[t].children))}},u8Dt:function(e,t,n){var r=n("YESw"),i="__lodash_hash_undefined__",o=Object.prototype,a=o.hasOwnProperty;function s(e){var t=this.__data__;if(r){var n=t[e];return n===i?void 0:n}return a.call(t,e)?t[e]:void 0}e.exports=s},ugOi:function(e,t,n){var r=n("kewz"),i="object"==typeof self&&self&&self.Object===Object&&self,o=r||i||Function("return this")();e.exports=o},usqY:function(e,t,n){"use strict";function r(e){switch(e){case 10:case 33:case 35:case 36:case 37:case 38:case 42:case 43:case 45:case 58:case 60:case 61:case 62:case 64:case 91:case 92:case 93:case 94:case 95:case 96:case 123:case 125:case 126:return!0;default:return!1}}e.exports=function(e,t){var n=e.pos;while(nA.length&&A.push(e)}function L(e,t,n,r){var i=typeof e;"undefined"!==i&&"boolean"!==i||(e=null);var s=!1;if(null===e)s=!0;else switch(i){case"string":case"number":s=!0;break;case"object":switch(e.$$typeof){case o:case a:s=!0}}if(s)return n(r,e,""===t?"."+R(e,0):t),1;if(s=0,t=""===t?".":t+":",Array.isArray(e))for(var l=0;l=4)return!1;if(d+3>h)return!1;if(i=e.src.charCodeAt(d),126!==i&&96!==i)return!1;if(l=d,d=e.skipChars(d,i),o=d-l,o<3)return!1;if(c=e.src.slice(l,d),a=e.src.slice(d,h),96===i&&a.indexOf(String.fromCharCode(i))>=0)return!1;if(r)return!0;for(s=t;;){if(s++,s>=n)break;if(d=l=e.bMarks[s]+e.tShift[s],h=e.eMarks[s],d=4)&&(d=e.skipChars(d,i),!(d-l-1&&e%1==0&&e>>0;for(t=0;t0)for(n=0;n<_.length;n++)r=_[n],i=t[r],c(i)||(e[r]=i);return e}function k(e){w(this,e),this._d=new Date(null!=e._d?e._d.getTime():NaN),this.isValid()||(this._d=new Date(NaN)),!1===x&&(x=!0,i.updateOffset(this),x=!1)}function O(e){return e instanceof k||null!=e&&null!=e._isAMomentObject}function S(e){!1===i.suppressDeprecationWarnings&&"undefined"!==typeof console&&console.warn&&console.warn("Deprecation warning: "+e)}function M(e,t){var n=!0;return p(function(){if(null!=i.deprecationHandler&&i.deprecationHandler(null,e),n){var r,o,a,s=[];for(o=0;o=0;return(o?n?"+":"":"-")+Math.pow(10,Math.max(0,i)).toString().substr(1)+r}var R=/(\[[^\[]*\])|(\\)?([Hh]mm(ss)?|Mo|MM?M?M?|Do|DDDo|DD?D?D?|ddd?d?|do?|w[o|w]?|W[o|W]?|Qo?|N{1,5}|YYYYYY|YYYYY|YYYY|YY|y{2,4}|yo?|gg(ggg?)?|GG(GGG?)?|e|E|a|A|hh?|HH?|kk?|mm?|ss?|S{1,9}|x|X|zz?|ZZ?|.)/g,z=/(\[[^\[]*\])|(\\)?(LTS|LT|LL?L?L?|l{1,4})/g,F={},B={};function V(e,t,n,r){var i=r;"string"===typeof r&&(i=function(){return this[r]()}),e&&(B[e]=i),t&&(B[t[0]]=function(){return N(i.apply(this,arguments),t[1],t[2])}),n&&(B[n]=function(){return this.localeData().ordinal(i.apply(this,arguments),e)})}function Y(e){return e.match(/\[[\s\S]/)?e.replace(/^\[|\]$/g,""):e.replace(/\\/g,"")}function G(e){var t,n,r=e.match(R);for(t=0,n=r.length;t=0&&z.test(e))e=e.replace(z,r),z.lastIndex=0,n-=1;return e}var H={LTS:"h:mm:ss A",LT:"h:mm A",L:"MM/DD/YYYY",LL:"MMMM D, YYYY",LLL:"MMMM D, YYYY h:mm A",LLLL:"dddd, MMMM D, YYYY h:mm A"};function q(e){var t=this._longDateFormat[e],n=this._longDateFormat[e.toUpperCase()];return t||!n?t:(this._longDateFormat[e]=n.match(R).map(function(e){return"MMMM"===e||"MM"===e||"DD"===e||"dddd"===e?e.slice(1):e}).join(""),this._longDateFormat[e])}var Z="Invalid date";function K(){return this._invalidDate}var X="%d",Q=/\d{1,2}/;function $(e){return this._ordinal.replace("%d",e)}var J={future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",w:"a week",ww:"%d weeks",M:"a month",MM:"%d months",y:"a year",yy:"%d years"};function ee(e,t,n,r){var i=this._relativeTime[n];return I(i)?i(e,t,n,r):i.replace(/%d/i,e)}function te(e,t){var n=this._relativeTime[e>0?"future":"past"];return I(n)?n(t):n.replace(/%s/i,t)}var ne={};function re(e,t){var n=e.toLowerCase();ne[n]=ne[n+"s"]=ne[t]=e}function ie(e){return"string"===typeof e?ne[e]||ne[e.toLowerCase()]:void 0}function oe(e){var t,n,r={};for(n in e)l(e,n)&&(t=ie(n),t&&(r[t]=e[n]));return r}var ae={};function se(e,t){ae[e]=t}function le(e){var t,n=[];for(t in e)l(e,t)&&n.push({unit:t,priority:ae[t]});return n.sort(function(e,t){return e.priority-t.priority}),n}function ue(e){return e%4===0&&e%100!==0||e%400===0}function ce(e){return e<0?Math.ceil(e)||0:Math.floor(e)}function fe(e){var t=+e,n=0;return 0!==t&&isFinite(t)&&(n=ce(t)),n}function de(e,t){return function(n){return null!=n?(pe(this,e,n),i.updateOffset(this,t),this):he(this,e)}}function he(e,t){return e.isValid()?e._d["get"+(e._isUTC?"UTC":"")+t]():NaN}function pe(e,t,n){e.isValid()&&!isNaN(n)&&("FullYear"===t&&ue(e.year())&&1===e.month()&&29===e.date()?(n=fe(n),e._d["set"+(e._isUTC?"UTC":"")+t](n,e.month(),et(n,e.month()))):e._d["set"+(e._isUTC?"UTC":"")+t](n))}function ge(e){return e=ie(e),I(this[e])?this[e]():this}function me(e,t){if("object"===typeof e){e=oe(e);var n,r=le(e);for(n=0;n68?1900:2e3)};var vt=de("FullYear",!0);function yt(){return ue(this.year())}function bt(e,t,n,r,i,o,a){var s;return e<100&&e>=0?(s=new Date(e+400,t,n,r,i,o,a),isFinite(s.getFullYear())&&s.setFullYear(e)):s=new Date(e,t,n,r,i,o,a),s}function _t(e){var t,n;return e<100&&e>=0?(n=Array.prototype.slice.call(arguments),n[0]=e+400,t=new Date(Date.UTC.apply(null,n)),isFinite(t.getUTCFullYear())&&t.setUTCFullYear(e)):t=new Date(Date.UTC.apply(null,arguments)),t}function xt(e,t,n){var r=7+t-n,i=(7+_t(e,0,r).getUTCDay()-t)%7;return-i+r-1}function wt(e,t,n,r,i){var o,a,s=(7+n-r)%7,l=xt(e,r,i),u=1+7*(t-1)+s+l;return u<=0?(o=e-1,a=mt(o)+u):u>mt(e)?(o=e+1,a=u-mt(e)):(o=e,a=u),{year:o,dayOfYear:a}}function kt(e,t,n){var r,i,o=xt(e.year(),t,n),a=Math.floor((e.dayOfYear()-o-1)/7)+1;return a<1?(i=e.year()-1,r=a+Ot(i,t,n)):a>Ot(e.year(),t,n)?(r=a-Ot(e.year(),t,n),i=e.year()+1):(i=e.year(),r=a),{week:r,year:i}}function Ot(e,t,n){var r=xt(e,t,n),i=xt(e+1,t,n);return(mt(e)-r+i)/7}function St(e){return kt(e,this._week.dow,this._week.doy).week}V("w",["ww",2],"wo","week"),V("W",["WW",2],"Wo","isoWeek"),re("week","w"),re("isoWeek","W"),se("week",5),se("isoWeek",5),Le("w",ke),Le("ww",ke,be),Le("W",ke),Le("WW",ke,be),Ve(["w","ww","W","WW"],function(e,t,n,r){t[r.substr(0,1)]=fe(e)});var Mt={dow:0,doy:6};function Ct(){return this._week.dow}function Tt(){return this._week.doy}function jt(e){var t=this.localeData().week(this);return null==e?t:this.add(7*(e-t),"d")}function It(e){var t=kt(this,1,4).week;return null==e?t:this.add(7*(e-t),"d")}function Dt(e,t){return"string"!==typeof e?e:isNaN(e)?(e=t.weekdaysParse(e),"number"===typeof e?e:null):parseInt(e,10)}function At(e,t){return"string"===typeof e?t.weekdaysParse(e)%7||7:isNaN(e)?null:e}function Et(e,t){return e.slice(t,7).concat(e.slice(0,t))}V("d",0,"do","day"),V("dd",0,0,function(e){return this.localeData().weekdaysMin(this,e)}),V("ddd",0,0,function(e){return this.localeData().weekdaysShort(this,e)}),V("dddd",0,0,function(e){return this.localeData().weekdays(this,e)}),V("e",0,0,"weekday"),V("E",0,0,"isoWeekday"),re("day","d"),re("weekday","e"),re("isoWeekday","E"),se("day",11),se("weekday",11),se("isoWeekday",11),Le("d",ke),Le("e",ke),Le("E",ke),Le("dd",function(e,t){return t.weekdaysMinRegex(e)}),Le("ddd",function(e,t){return t.weekdaysShortRegex(e)}),Le("dddd",function(e,t){return t.weekdaysRegex(e)}),Ve(["dd","ddd","dddd"],function(e,t,n,r){var i=n._locale.weekdaysParse(e,r,n._strict);null!=i?t.d=i:v(n).invalidWeekday=e}),Ve(["d","e","E"],function(e,t,n,r){t[r]=fe(e)});var Pt="Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),Lt="Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),Nt="Su_Mo_Tu_We_Th_Fr_Sa".split("_"),Rt=Pe,zt=Pe,Ft=Pe;function Bt(e,t){var n=a(this._weekdays)?this._weekdays:this._weekdays[e&&!0!==e&&this._weekdays.isFormat.test(t)?"format":"standalone"];return!0===e?Et(n,this._week.dow):e?n[e.day()]:n}function Vt(e){return!0===e?Et(this._weekdaysShort,this._week.dow):e?this._weekdaysShort[e.day()]:this._weekdaysShort}function Yt(e){return!0===e?Et(this._weekdaysMin,this._week.dow):e?this._weekdaysMin[e.day()]:this._weekdaysMin}function Gt(e,t,n){var r,i,o,a=e.toLocaleLowerCase();if(!this._weekdaysParse)for(this._weekdaysParse=[],this._shortWeekdaysParse=[],this._minWeekdaysParse=[],r=0;r<7;++r)o=g([2e3,1]).day(r),this._minWeekdaysParse[r]=this.weekdaysMin(o,"").toLocaleLowerCase(),this._shortWeekdaysParse[r]=this.weekdaysShort(o,"").toLocaleLowerCase(),this._weekdaysParse[r]=this.weekdays(o,"").toLocaleLowerCase();return n?"dddd"===t?(i=Ge.call(this._weekdaysParse,a),-1!==i?i:null):"ddd"===t?(i=Ge.call(this._shortWeekdaysParse,a),-1!==i?i:null):(i=Ge.call(this._minWeekdaysParse,a),-1!==i?i:null):"dddd"===t?(i=Ge.call(this._weekdaysParse,a),-1!==i?i:(i=Ge.call(this._shortWeekdaysParse,a),-1!==i?i:(i=Ge.call(this._minWeekdaysParse,a),-1!==i?i:null))):"ddd"===t?(i=Ge.call(this._shortWeekdaysParse,a),-1!==i?i:(i=Ge.call(this._weekdaysParse,a),-1!==i?i:(i=Ge.call(this._minWeekdaysParse,a),-1!==i?i:null))):(i=Ge.call(this._minWeekdaysParse,a),-1!==i?i:(i=Ge.call(this._weekdaysParse,a),-1!==i?i:(i=Ge.call(this._shortWeekdaysParse,a),-1!==i?i:null)))}function Ut(e,t,n){var r,i,o;if(this._weekdaysParseExact)return Gt.call(this,e,t,n);for(this._weekdaysParse||(this._weekdaysParse=[],this._minWeekdaysParse=[],this._shortWeekdaysParse=[],this._fullWeekdaysParse=[]),r=0;r<7;r++){if(i=g([2e3,1]).day(r),n&&!this._fullWeekdaysParse[r]&&(this._fullWeekdaysParse[r]=new RegExp("^"+this.weekdays(i,"").replace(".","\\.?")+"$","i"),this._shortWeekdaysParse[r]=new RegExp("^"+this.weekdaysShort(i,"").replace(".","\\.?")+"$","i"),this._minWeekdaysParse[r]=new RegExp("^"+this.weekdaysMin(i,"").replace(".","\\.?")+"$","i")),this._weekdaysParse[r]||(o="^"+this.weekdays(i,"")+"|^"+this.weekdaysShort(i,"")+"|^"+this.weekdaysMin(i,""),this._weekdaysParse[r]=new RegExp(o.replace(".",""),"i")),n&&"dddd"===t&&this._fullWeekdaysParse[r].test(e))return r;if(n&&"ddd"===t&&this._shortWeekdaysParse[r].test(e))return r;if(n&&"dd"===t&&this._minWeekdaysParse[r].test(e))return r;if(!n&&this._weekdaysParse[r].test(e))return r}}function Wt(e){if(!this.isValid())return null!=e?this:NaN;var t=this._isUTC?this._d.getUTCDay():this._d.getDay();return null!=e?(e=Dt(e,this.localeData()),this.add(e-t,"d")):t}function Ht(e){if(!this.isValid())return null!=e?this:NaN;var t=(this.day()+7-this.localeData()._week.dow)%7;return null==e?t:this.add(e-t,"d")}function qt(e){if(!this.isValid())return null!=e?this:NaN;if(null!=e){var t=At(e,this.localeData());return this.day(this.day()%7?t:t-7)}return this.day()||7}function Zt(e){return this._weekdaysParseExact?(l(this,"_weekdaysRegex")||Qt.call(this),e?this._weekdaysStrictRegex:this._weekdaysRegex):(l(this,"_weekdaysRegex")||(this._weekdaysRegex=Rt),this._weekdaysStrictRegex&&e?this._weekdaysStrictRegex:this._weekdaysRegex)}function Kt(e){return this._weekdaysParseExact?(l(this,"_weekdaysRegex")||Qt.call(this),e?this._weekdaysShortStrictRegex:this._weekdaysShortRegex):(l(this,"_weekdaysShortRegex")||(this._weekdaysShortRegex=zt),this._weekdaysShortStrictRegex&&e?this._weekdaysShortStrictRegex:this._weekdaysShortRegex)}function Xt(e){return this._weekdaysParseExact?(l(this,"_weekdaysRegex")||Qt.call(this),e?this._weekdaysMinStrictRegex:this._weekdaysMinRegex):(l(this,"_weekdaysMinRegex")||(this._weekdaysMinRegex=Ft),this._weekdaysMinStrictRegex&&e?this._weekdaysMinStrictRegex:this._weekdaysMinRegex)}function Qt(){function e(e,t){return t.length-e.length}var t,n,r,i,o,a=[],s=[],l=[],u=[];for(t=0;t<7;t++)n=g([2e3,1]).day(t),r=ze(this.weekdaysMin(n,"")),i=ze(this.weekdaysShort(n,"")),o=ze(this.weekdays(n,"")),a.push(r),s.push(i),l.push(o),u.push(r),u.push(i),u.push(o);a.sort(e),s.sort(e),l.sort(e),u.sort(e),this._weekdaysRegex=new RegExp("^("+u.join("|")+")","i"),this._weekdaysShortRegex=this._weekdaysRegex,this._weekdaysMinRegex=this._weekdaysRegex,this._weekdaysStrictRegex=new RegExp("^("+l.join("|")+")","i"),this._weekdaysShortStrictRegex=new RegExp("^("+s.join("|")+")","i"),this._weekdaysMinStrictRegex=new RegExp("^("+a.join("|")+")","i")}function $t(){return this.hours()%12||12}function Jt(){return this.hours()||24}function en(e,t){V(e,0,0,function(){return this.localeData().meridiem(this.hours(),this.minutes(),t)})}function tn(e,t){return t._meridiemParse}function nn(e){return"p"===(e+"").toLowerCase().charAt(0)}V("H",["HH",2],0,"hour"),V("h",["hh",2],0,$t),V("k",["kk",2],0,Jt),V("hmm",0,0,function(){return""+$t.apply(this)+N(this.minutes(),2)}),V("hmmss",0,0,function(){return""+$t.apply(this)+N(this.minutes(),2)+N(this.seconds(),2)}),V("Hmm",0,0,function(){return""+this.hours()+N(this.minutes(),2)}),V("Hmmss",0,0,function(){return""+this.hours()+N(this.minutes(),2)+N(this.seconds(),2)}),en("a",!0),en("A",!1),re("hour","h"),se("hour",13),Le("a",tn),Le("A",tn),Le("H",ke),Le("h",ke),Le("k",ke),Le("HH",ke,be),Le("hh",ke,be),Le("kk",ke,be),Le("hmm",Oe),Le("hmmss",Se),Le("Hmm",Oe),Le("Hmmss",Se),Be(["H","HH"],qe),Be(["k","kk"],function(e,t,n){var r=fe(e);t[qe]=24===r?0:r}),Be(["a","A"],function(e,t,n){n._isPm=n._locale.isPM(e),n._meridiem=e}),Be(["h","hh"],function(e,t,n){t[qe]=fe(e),v(n).bigHour=!0}),Be("hmm",function(e,t,n){var r=e.length-2;t[qe]=fe(e.substr(0,r)),t[Ze]=fe(e.substr(r)),v(n).bigHour=!0}),Be("hmmss",function(e,t,n){var r=e.length-4,i=e.length-2;t[qe]=fe(e.substr(0,r)),t[Ze]=fe(e.substr(r,2)),t[Ke]=fe(e.substr(i)),v(n).bigHour=!0}),Be("Hmm",function(e,t,n){var r=e.length-2;t[qe]=fe(e.substr(0,r)),t[Ze]=fe(e.substr(r))}),Be("Hmmss",function(e,t,n){var r=e.length-4,i=e.length-2;t[qe]=fe(e.substr(0,r)),t[Ze]=fe(e.substr(r,2)),t[Ke]=fe(e.substr(i))});var rn=/[ap]\.?m?\.?/i,on=de("Hours",!0);function an(e,t,n){return e>11?n?"pm":"PM":n?"am":"AM"}var sn,ln={calendar:P,longDateFormat:H,invalidDate:Z,ordinal:X,dayOfMonthOrdinalParse:Q,relativeTime:J,months:tt,monthsShort:nt,week:Mt,weekdays:Pt,weekdaysMin:Nt,weekdaysShort:Lt,meridiemParse:rn},un={},cn={};function fn(e,t){var n,r=Math.min(e.length,t.length);for(n=0;n0){if(r=pn(i.slice(0,t).join("-")),r)return r;if(n&&n.length>=t&&fn(i,n)>=t-1)break;t--}o++}return sn}function pn(n){var r=null;if(void 0===un[n]&&"undefined"!==typeof e&&e&&e.exports)try{r=sn._abbr,t,function(){var e=new Error("Cannot find module 'undefined'");throw e.code="MODULE_NOT_FOUND",e}(),gn(r)}catch(e){un[n]=null}return un[n]}function gn(e,t){var n;return e&&(n=c(t)?yn(e):mn(e,t),n?sn=n:"undefined"!==typeof console&&console.warn&&console.warn("Locale "+e+" not found. Did you forget to load it?")),sn._abbr}function mn(e,t){if(null!==t){var n,r=ln;if(t.abbr=e,null!=un[e])j("defineLocaleOverride","use moment.updateLocale(localeName, config) to change an existing locale. moment.defineLocale(localeName, config) should only be used for creating a new locale See http://momentjs.com/guides/#/warnings/define-locale/ for more info."),r=un[e]._config;else if(null!=t.parentLocale)if(null!=un[t.parentLocale])r=un[t.parentLocale]._config;else{if(n=pn(t.parentLocale),null==n)return cn[t.parentLocale]||(cn[t.parentLocale]=[]),cn[t.parentLocale].push({name:e,config:t}),null;r=n._config}return un[e]=new E(A(r,t)),cn[e]&&cn[e].forEach(function(e){mn(e.name,e.config)}),gn(e),un[e]}return delete un[e],null}function vn(e,t){if(null!=t){var n,r,i=ln;null!=un[e]&&null!=un[e].parentLocale?un[e].set(A(un[e]._config,t)):(r=pn(e),null!=r&&(i=r._config),t=A(i,t),null==r&&(t.abbr=e),n=new E(t),n.parentLocale=un[e],un[e]=n),gn(e)}else null!=un[e]&&(null!=un[e].parentLocale?(un[e]=un[e].parentLocale,e===gn()&&gn(e)):null!=un[e]&&delete un[e]);return un[e]}function yn(e){var t;if(e&&e._locale&&e._locale._abbr&&(e=e._locale._abbr),!e)return sn;if(!a(e)){if(t=pn(e),t)return t;e=[e]}return hn(e)}function bn(){return C(un)}function _n(e){var t,n=e._a;return n&&-2===v(e).overflow&&(t=n[We]<0||n[We]>11?We:n[He]<1||n[He]>et(n[Ue],n[We])?He:n[qe]<0||n[qe]>24||24===n[qe]&&(0!==n[Ze]||0!==n[Ke]||0!==n[Xe])?qe:n[Ze]<0||n[Ze]>59?Ze:n[Ke]<0||n[Ke]>59?Ke:n[Xe]<0||n[Xe]>999?Xe:-1,v(e)._overflowDayOfYear&&(tHe)&&(t=He),v(e)._overflowWeeks&&-1===t&&(t=Qe),v(e)._overflowWeekday&&-1===t&&(t=$e),v(e).overflow=t),e}var xn=/^\s*((?:[+-]\d{6}|\d{4})-(?:\d\d-\d\d|W\d\d-\d|W\d\d|\d\d\d|\d\d))(?:(T| )(\d\d(?::\d\d(?::\d\d(?:[.,]\d+)?)?)?)([+-]\d\d(?::?\d\d)?|\s*Z)?)?$/,wn=/^\s*((?:[+-]\d{6}|\d{4})(?:\d\d\d\d|W\d\d\d|W\d\d|\d\d\d|\d\d|))(?:(T| )(\d\d(?:\d\d(?:\d\d(?:[.,]\d+)?)?)?)([+-]\d\d(?::?\d\d)?|\s*Z)?)?$/,kn=/Z|[+-]\d\d(?::?\d\d)?/,On=[["YYYYYY-MM-DD",/[+-]\d{6}-\d\d-\d\d/],["YYYY-MM-DD",/\d{4}-\d\d-\d\d/],["GGGG-[W]WW-E",/\d{4}-W\d\d-\d/],["GGGG-[W]WW",/\d{4}-W\d\d/,!1],["YYYY-DDD",/\d{4}-\d{3}/],["YYYY-MM",/\d{4}-\d\d/,!1],["YYYYYYMMDD",/[+-]\d{10}/],["YYYYMMDD",/\d{8}/],["GGGG[W]WWE",/\d{4}W\d{3}/],["GGGG[W]WW",/\d{4}W\d{2}/,!1],["YYYYDDD",/\d{7}/],["YYYYMM",/\d{6}/,!1],["YYYY",/\d{4}/,!1]],Sn=[["HH:mm:ss.SSSS",/\d\d:\d\d:\d\d\.\d+/],["HH:mm:ss,SSSS",/\d\d:\d\d:\d\d,\d+/],["HH:mm:ss",/\d\d:\d\d:\d\d/],["HH:mm",/\d\d:\d\d/],["HHmmss.SSSS",/\d\d\d\d\d\d\.\d+/],["HHmmss,SSSS",/\d\d\d\d\d\d,\d+/],["HHmmss",/\d\d\d\d\d\d/],["HHmm",/\d\d\d\d/],["HH",/\d\d/]],Mn=/^\/?Date\((-?\d+)/i,Cn=/^(?:(Mon|Tue|Wed|Thu|Fri|Sat|Sun),?\s)?(\d{1,2})\s(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)\s(\d{2,4})\s(\d\d):(\d\d)(?::(\d\d))?\s(?:(UT|GMT|[ECMP][SD]T)|([Zz])|([+-]\d{4}))$/,Tn={UT:0,GMT:0,EDT:-240,EST:-300,CDT:-300,CST:-360,MDT:-360,MST:-420,PDT:-420,PST:-480};function jn(e){var t,n,r,i,o,a,s=e._i,l=xn.exec(s)||wn.exec(s);if(l){for(v(e).iso=!0,t=0,n=On.length;tmt(o)||0===e._dayOfYear)&&(v(e)._overflowDayOfYear=!0),n=_t(o,0,e._dayOfYear),e._a[We]=n.getUTCMonth(),e._a[He]=n.getUTCDate()),t=0;t<3&&null==e._a[t];++t)e._a[t]=a[t]=r[t];for(;t<7;t++)e._a[t]=a[t]=null==e._a[t]?2===t?1:0:e._a[t];24===e._a[qe]&&0===e._a[Ze]&&0===e._a[Ke]&&0===e._a[Xe]&&(e._nextDay=!0,e._a[qe]=0),e._d=(e._useUTC?_t:bt).apply(null,a),i=e._useUTC?e._d.getUTCDay():e._d.getDay(),null!=e._tzm&&e._d.setUTCMinutes(e._d.getUTCMinutes()-e._tzm),e._nextDay&&(e._a[qe]=24),e._w&&"undefined"!==typeof e._w.d&&e._w.d!==i&&(v(e).weekdayMismatch=!0)}}function Bn(e){var t,n,r,i,o,a,s,l,u;t=e._w,null!=t.GG||null!=t.W||null!=t.E?(o=1,a=4,n=Rn(t.GG,e._a[Ue],kt(Kn(),1,4).year),r=Rn(t.W,1),i=Rn(t.E,1),(i<1||i>7)&&(l=!0)):(o=e._locale._week.dow,a=e._locale._week.doy,u=kt(Kn(),o,a),n=Rn(t.gg,e._a[Ue],u.year),r=Rn(t.w,u.week),null!=t.d?(i=t.d,(i<0||i>6)&&(l=!0)):null!=t.e?(i=t.e+o,(t.e<0||t.e>6)&&(l=!0)):i=o),r<1||r>Ot(n,o,a)?v(e)._overflowWeeks=!0:null!=l?v(e)._overflowWeekday=!0:(s=wt(n,r,i,o,a),e._a[Ue]=s.year,e._dayOfYear=s.dayOfYear)}function Vn(e){if(e._f!==i.ISO_8601)if(e._f!==i.RFC_2822){e._a=[],v(e).empty=!0;var t,n,r,o,a,s,l=""+e._i,u=l.length,c=0;for(r=W(e._f,e._locale).match(R)||[],t=0;t0&&v(e).unusedInput.push(a),l=l.slice(l.indexOf(n)+n.length),c+=n.length),B[o]?(n?v(e).empty=!1:v(e).unusedTokens.push(o),Ye(o,n,e)):e._strict&&!n&&v(e).unusedTokens.push(o);v(e).charsLeftOver=u-c,l.length>0&&v(e).unusedInput.push(l),e._a[qe]<=12&&!0===v(e).bigHour&&e._a[qe]>0&&(v(e).bigHour=void 0),v(e).parsedDateParts=e._a.slice(0),v(e).meridiem=e._meridiem,e._a[qe]=Yn(e._locale,e._a[qe],e._meridiem),s=v(e).era,null!==s&&(e._a[Ue]=e._locale.erasConvertYear(s,e._a[Ue])),Fn(e),_n(e)}else Ln(e);else jn(e)}function Yn(e,t,n){var r;return null==n?t:null!=e.meridiemHour?e.meridiemHour(t,n):null!=e.isPM?(r=e.isPM(n),r&&t<12&&(t+=12),r||12!==t||(t=0),t):t}function Gn(e){var t,n,r,i,o,a,s=!1;if(0===e._f.length)return v(e).invalidFormat=!0,void(e._d=new Date(NaN));for(i=0;ithis?this:e:b()});function $n(e,t){var n,r;if(1===t.length&&a(t[0])&&(t=t[0]),!t.length)return Kn();for(n=t[0],r=1;rthis.clone().month(0).utcOffset()||this.utcOffset()>this.clone().month(5).utcOffset()}function wr(){if(!c(this._isDSTShifted))return this._isDSTShifted;var e,t={};return w(t,this),t=Hn(t),t._a?(e=t._isUTC?g(t._a):Kn(t._a),this._isDSTShifted=this.isValid()&&ur(t._a,e.toArray())>0):this._isDSTShifted=!1,this._isDSTShifted}function kr(){return!!this.isValid()&&!this._isUTC}function Or(){return!!this.isValid()&&this._isUTC}function Sr(){return!!this.isValid()&&(this._isUTC&&0===this._offset)}i.updateOffset=function(){};var Mr=/^(-|\+)?(?:(\d*)[. ])?(\d+):(\d+)(?::(\d+)(\.\d*)?)?$/,Cr=/^(-|\+)?P(?:([-+]?[0-9,.]*)Y)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)W)?(?:([-+]?[0-9,.]*)D)?(?:T(?:([-+]?[0-9,.]*)H)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)S)?)?$/;function Tr(e,t){var n,r,i,o=e,a=null;return sr(e)?o={ms:e._milliseconds,d:e._days,M:e._months}:f(e)||!isNaN(+e)?(o={},t?o[t]=+e:o.milliseconds=+e):(a=Mr.exec(e))?(n="-"===a[1]?-1:1,o={y:0,d:fe(a[He])*n,h:fe(a[qe])*n,m:fe(a[Ze])*n,s:fe(a[Ke])*n,ms:fe(lr(1e3*a[Xe]))*n}):(a=Cr.exec(e))?(n="-"===a[1]?-1:1,o={y:jr(a[2],n),M:jr(a[3],n),w:jr(a[4],n),d:jr(a[5],n),h:jr(a[6],n),m:jr(a[7],n),s:jr(a[8],n)}):null==o?o={}:"object"===typeof o&&("from"in o||"to"in o)&&(i=Dr(Kn(o.from),Kn(o.to)),o={},o.ms=i.milliseconds,o.M=i.months),r=new ar(o),sr(e)&&l(e,"_locale")&&(r._locale=e._locale),sr(e)&&l(e,"_isValid")&&(r._isValid=e._isValid),r}function jr(e,t){var n=e&&parseFloat(e.replace(",","."));return(isNaN(n)?0:n)*t}function Ir(e,t){var n={};return n.months=t.month()-e.month()+12*(t.year()-e.year()),e.clone().add(n.months,"M").isAfter(t)&&--n.months,n.milliseconds=+t-+e.clone().add(n.months,"M"),n}function Dr(e,t){var n;return e.isValid()&&t.isValid()?(t=hr(t,e),e.isBefore(t)?n=Ir(e,t):(n=Ir(t,e),n.milliseconds=-n.milliseconds,n.months=-n.months),n):{milliseconds:0,months:0}}function Ar(e,t){return function(n,r){var i,o;return null===r||isNaN(+r)||(j(t,"moment()."+t+"(period, number) is deprecated. Please use moment()."+t+"(number, period). See http://momentjs.com/guides/#/warnings/add-inverted-param/ for more info."),o=n,n=r,r=o),i=Tr(n,r),Er(this,i,e),this}}function Er(e,t,n,r){var o=t._milliseconds,a=lr(t._days),s=lr(t._months);e.isValid()&&(r=null==r||r,s&&ct(e,he(e,"Month")+s*n),a&&pe(e,"Date",he(e,"Date")+a*n),o&&e._d.setTime(e._d.valueOf()+o*n),r&&i.updateOffset(e,a||s))}Tr.fn=ar.prototype,Tr.invalid=or;var Pr=Ar(1,"add"),Lr=Ar(-1,"subtract");function Nr(e){return"string"===typeof e||e instanceof String}function Rr(e){return O(e)||d(e)||Nr(e)||f(e)||Fr(e)||zr(e)||null===e||void 0===e}function zr(e){var t,n,r=s(e)&&!u(e),i=!1,o=["years","year","y","months","month","M","days","day","d","dates","date","D","hours","hour","h","minutes","minute","m","seconds","second","s","milliseconds","millisecond","ms"];for(t=0;tn.valueOf():n.valueOf()9999?U(n,t?"YYYYYY-MM-DD[T]HH:mm:ss.SSS[Z]":"YYYYYY-MM-DD[T]HH:mm:ss.SSSZ"):I(Date.prototype.toISOString)?t?this.toDate().toISOString():new Date(this.valueOf()+60*this.utcOffset()*1e3).toISOString().replace("Z",U(n,"Z")):U(n,t?"YYYY-MM-DD[T]HH:mm:ss.SSS[Z]":"YYYY-MM-DD[T]HH:mm:ss.SSSZ")}function ei(){if(!this.isValid())return"moment.invalid(/* "+this._i+" */)";var e,t,n,r,i="moment",o="";return this.isLocal()||(i=0===this.utcOffset()?"moment.utc":"moment.parseZone",o="Z"),e="["+i+'("]',t=0<=this.year()&&this.year()<=9999?"YYYY":"YYYYYY",n="-MM-DD[T]HH:mm:ss.SSS",r=o+'[")]',this.format(e+t+n+r)}function ti(e){e||(e=this.isUtc()?i.defaultFormatUtc:i.defaultFormat);var t=U(this,e);return this.localeData().postformat(t)}function ni(e,t){return this.isValid()&&(O(e)&&e.isValid()||Kn(e).isValid())?Tr({to:this,from:e}).locale(this.locale()).humanize(!t):this.localeData().invalidDate()}function ri(e){return this.from(Kn(),e)}function ii(e,t){return this.isValid()&&(O(e)&&e.isValid()||Kn(e).isValid())?Tr({from:this,to:e}).locale(this.locale()).humanize(!t):this.localeData().invalidDate()}function oi(e){return this.to(Kn(),e)}function ai(e){var t;return void 0===e?this._locale._abbr:(t=yn(e),null!=t&&(this._locale=t),this)}i.defaultFormat="YYYY-MM-DDTHH:mm:ssZ",i.defaultFormatUtc="YYYY-MM-DDTHH:mm:ss[Z]";var si=M("moment().lang() is deprecated. Instead, use moment().localeData() to get the language configuration. Use moment().locale() to change languages.",function(e){return void 0===e?this.localeData():this.locale(e)});function li(){return this._locale}var ui=1e3,ci=60*ui,fi=60*ci,di=3506328*fi;function hi(e,t){return(e%t+t)%t}function pi(e,t,n){return e<100&&e>=0?new Date(e+400,t,n)-di:new Date(e,t,n).valueOf()}function gi(e,t,n){return e<100&&e>=0?Date.UTC(e+400,t,n)-di:Date.UTC(e,t,n)}function mi(e){var t,n;if(e=ie(e),void 0===e||"millisecond"===e||!this.isValid())return this;switch(n=this._isUTC?gi:pi,e){case"year":t=n(this.year(),0,1);break;case"quarter":t=n(this.year(),this.month()-this.month()%3,1);break;case"month":t=n(this.year(),this.month(),1);break;case"week":t=n(this.year(),this.month(),this.date()-this.weekday());break;case"isoWeek":t=n(this.year(),this.month(),this.date()-(this.isoWeekday()-1));break;case"day":case"date":t=n(this.year(),this.month(),this.date());break;case"hour":t=this._d.valueOf(),t-=hi(t+(this._isUTC?0:this.utcOffset()*ci),fi);break;case"minute":t=this._d.valueOf(),t-=hi(t,ci);break;case"second":t=this._d.valueOf(),t-=hi(t,ui);break}return this._d.setTime(t),i.updateOffset(this,!0),this}function vi(e){var t,n;if(e=ie(e),void 0===e||"millisecond"===e||!this.isValid())return this;switch(n=this._isUTC?gi:pi,e){case"year":t=n(this.year()+1,0,1)-1;break;case"quarter":t=n(this.year(),this.month()-this.month()%3+3,1)-1;break;case"month":t=n(this.year(),this.month()+1,1)-1;break;case"week":t=n(this.year(),this.month(),this.date()-this.weekday()+7)-1;break;case"isoWeek":t=n(this.year(),this.month(),this.date()-(this.isoWeekday()-1)+7)-1;break;case"day":case"date":t=n(this.year(),this.month(),this.date()+1)-1;break;case"hour":t=this._d.valueOf(),t+=fi-hi(t+(this._isUTC?0:this.utcOffset()*ci),fi)-1;break;case"minute":t=this._d.valueOf(),t+=ci-hi(t,ci)-1;break;case"second":t=this._d.valueOf(),t+=ui-hi(t,ui)-1;break}return this._d.setTime(t),i.updateOffset(this,!0),this}function yi(){return this._d.valueOf()-6e4*(this._offset||0)}function bi(){return Math.floor(this.valueOf()/1e3)}function _i(){return new Date(this.valueOf())}function xi(){var e=this;return[e.year(),e.month(),e.date(),e.hour(),e.minute(),e.second(),e.millisecond()]}function wi(){var e=this;return{years:e.year(),months:e.month(),date:e.date(),hours:e.hours(),minutes:e.minutes(),seconds:e.seconds(),milliseconds:e.milliseconds()}}function ki(){return this.isValid()?this.toISOString():null}function Oi(){return y(this)}function Si(){return p({},v(this))}function Mi(){return v(this).overflow}function Ci(){return{input:this._i,format:this._f,locale:this._locale,isUTC:this._isUTC,strict:this._strict}}function Ti(e,t){var n,r,o,a=this._eras||yn("en")._eras;for(n=0,r=a.length;n=0)return l[r]}function Ii(e,t){var n=e.since<=e.until?1:-1;return void 0===t?i(e.since).year():i(e.since).year()+(t-e.offset)*n}function Di(){var e,t,n,r=this.localeData().eras();for(e=0,t=r.length;eo&&(t=o),Qi.call(this,e,t,n,r,i))}function Qi(e,t,n,r,i){var o=wt(e,t,n,r,i),a=_t(o.year,0,o.dayOfYear);return this.year(a.getUTCFullYear()),this.month(a.getUTCMonth()),this.date(a.getUTCDate()),this}function $i(e){return null==e?Math.ceil((this.month()+1)/3):this.month(3*(e-1)+this.month()%3)}V("N",0,0,"eraAbbr"),V("NN",0,0,"eraAbbr"),V("NNN",0,0,"eraAbbr"),V("NNNN",0,0,"eraName"),V("NNNNN",0,0,"eraNarrow"),V("y",["y",1],"yo","eraYear"),V("y",["yy",2],0,"eraYear"),V("y",["yyy",3],0,"eraYear"),V("y",["yyyy",4],0,"eraYear"),Le("N",zi),Le("NN",zi),Le("NNN",zi),Le("NNNN",Fi),Le("NNNNN",Bi),Be(["N","NN","NNN","NNNN","NNNNN"],function(e,t,n,r){var i=n._locale.erasParse(e,r,n._strict);i?v(n).era=i:v(n).invalidEra=e}),Le("y",je),Le("yy",je),Le("yyy",je),Le("yyyy",je),Le("yo",Vi),Be(["y","yy","yyy","yyyy"],Ue),Be(["yo"],function(e,t,n,r){var i;n._locale._eraYearOrdinalRegex&&(i=e.match(n._locale._eraYearOrdinalRegex)),n._locale.eraYearOrdinalParse?t[Ue]=n._locale.eraYearOrdinalParse(e,i):t[Ue]=parseInt(e,10)}),V(0,["gg",2],0,function(){return this.weekYear()%100}),V(0,["GG",2],0,function(){return this.isoWeekYear()%100}),Gi("gggg","weekYear"),Gi("ggggg","weekYear"),Gi("GGGG","isoWeekYear"),Gi("GGGGG","isoWeekYear"),re("weekYear","gg"),re("isoWeekYear","GG"),se("weekYear",1),se("isoWeekYear",1),Le("G",Ie),Le("g",Ie),Le("GG",ke,be),Le("gg",ke,be),Le("GGGG",Ce,xe),Le("gggg",Ce,xe),Le("GGGGG",Te,we),Le("ggggg",Te,we),Ve(["gggg","ggggg","GGGG","GGGGG"],function(e,t,n,r){t[r.substr(0,2)]=fe(e)}),Ve(["gg","GG"],function(e,t,n,r){t[r]=i.parseTwoDigitYear(e)}),V("Q",0,"Qo","quarter"),re("quarter","Q"),se("quarter",7),Le("Q",ye),Be("Q",function(e,t){t[We]=3*(fe(e)-1)}),V("D",["DD",2],"Do","date"),re("date","D"),se("date",9),Le("D",ke),Le("DD",ke,be),Le("Do",function(e,t){return e?t._dayOfMonthOrdinalParse||t._ordinalParse:t._dayOfMonthOrdinalParseLenient}),Be(["D","DD"],He),Be("Do",function(e,t){t[He]=fe(e.match(ke)[0])});var Ji=de("Date",!0);function eo(e){var t=Math.round((this.clone().startOf("day")-this.clone().startOf("year"))/864e5)+1;return null==e?t:this.add(e-t,"d")}V("DDD",["DDDD",3],"DDDo","dayOfYear"),re("dayOfYear","DDD"),se("dayOfYear",4),Le("DDD",Me),Le("DDDD",_e),Be(["DDD","DDDD"],function(e,t,n){n._dayOfYear=fe(e)}),V("m",["mm",2],0,"minute"),re("minute","m"),se("minute",14),Le("m",ke),Le("mm",ke,be),Be(["m","mm"],Ze);var to=de("Minutes",!1);V("s",["ss",2],0,"second"),re("second","s"),se("second",15),Le("s",ke),Le("ss",ke,be),Be(["s","ss"],Ke);var no,ro,io=de("Seconds",!1);for(V("S",0,0,function(){return~~(this.millisecond()/100)}),V(0,["SS",2],0,function(){return~~(this.millisecond()/10)}),V(0,["SSS",3],0,"millisecond"),V(0,["SSSS",4],0,function(){return 10*this.millisecond()}),V(0,["SSSSS",5],0,function(){return 100*this.millisecond()}),V(0,["SSSSSS",6],0,function(){return 1e3*this.millisecond()}),V(0,["SSSSSSS",7],0,function(){return 1e4*this.millisecond()}),V(0,["SSSSSSSS",8],0,function(){return 1e5*this.millisecond()}),V(0,["SSSSSSSSS",9],0,function(){return 1e6*this.millisecond()}),re("millisecond","ms"),se("millisecond",16),Le("S",Me,ye),Le("SS",Me,be),Le("SSS",Me,_e),no="SSSS";no.length<=9;no+="S")Le(no,je);function oo(e,t){t[Xe]=fe(1e3*("0."+e))}for(no="S";no.length<=9;no+="S")Be(no,oo);function ao(){return this._isUTC?"UTC":""}function so(){return this._isUTC?"Coordinated Universal Time":""}ro=de("Milliseconds",!1),V("z",0,0,"zoneAbbr"),V("zz",0,0,"zoneName");var lo=k.prototype;function uo(e){return Kn(1e3*e)}function co(){return Kn.apply(null,arguments).parseZone()}function fo(e){return e}lo.add=Pr,lo.calendar=Yr,lo.clone=Gr,lo.diff=Xr,lo.endOf=vi,lo.format=ti,lo.from=ni,lo.fromNow=ri,lo.to=ii,lo.toNow=oi,lo.get=ge,lo.invalidAt=Mi,lo.isAfter=Ur,lo.isBefore=Wr,lo.isBetween=Hr,lo.isSame=qr,lo.isSameOrAfter=Zr,lo.isSameOrBefore=Kr,lo.isValid=Oi,lo.lang=si,lo.locale=ai,lo.localeData=li,lo.max=Qn,lo.min=Xn,lo.parsingFlags=Si,lo.set=me,lo.startOf=mi,lo.subtract=Lr,lo.toArray=xi,lo.toObject=wi,lo.toDate=_i,lo.toISOString=Jr,lo.inspect=ei,"undefined"!==typeof Symbol&&null!=Symbol.for&&(lo[Symbol.for("nodejs.util.inspect.custom")]=function(){return"Moment<"+this.format()+">"}),lo.toJSON=ki,lo.toString=$r,lo.unix=bi,lo.valueOf=yi,lo.creationData=Ci,lo.eraName=Di,lo.eraNarrow=Ai,lo.eraAbbr=Ei,lo.eraYear=Pi,lo.year=vt,lo.isLeapYear=yt,lo.weekYear=Ui,lo.isoWeekYear=Wi,lo.quarter=lo.quarters=$i,lo.month=ft,lo.daysInMonth=dt,lo.week=lo.weeks=jt,lo.isoWeek=lo.isoWeeks=It,lo.weeksInYear=Zi,lo.weeksInWeekYear=Ki,lo.isoWeeksInYear=Hi,lo.isoWeeksInISOWeekYear=qi,lo.date=Ji,lo.day=lo.days=Wt,lo.weekday=Ht,lo.isoWeekday=qt,lo.dayOfYear=eo,lo.hour=lo.hours=on,lo.minute=lo.minutes=to,lo.second=lo.seconds=io,lo.millisecond=lo.milliseconds=ro,lo.utcOffset=gr,lo.utc=vr,lo.local=yr,lo.parseZone=br,lo.hasAlignedHourOffset=_r,lo.isDST=xr,lo.isLocal=kr,lo.isUtcOffset=Or,lo.isUtc=Sr,lo.isUTC=Sr,lo.zoneAbbr=ao,lo.zoneName=so,lo.dates=M("dates accessor is deprecated. Use date instead.",Ji),lo.months=M("months accessor is deprecated. Use month instead",ft),lo.years=M("years accessor is deprecated. Use year instead",vt),lo.zone=M("moment().zone is deprecated, use moment().utcOffset instead. http://momentjs.com/guides/#/warnings/zone/",mr),lo.isDSTShifted=M("isDSTShifted is deprecated. See http://momentjs.com/guides/#/warnings/dst-shifted/ for more information",wr);var ho=E.prototype;function po(e,t,n,r){var i=yn(),o=g().set(r,t);return i[n](o,e)}function go(e,t,n){if(f(e)&&(t=e,e=void 0),e=e||"",null!=t)return po(e,t,n,"month");var r,i=[];for(r=0;r<12;r++)i[r]=po(e,r,n,"month");return i}function mo(e,t,n,r){"boolean"===typeof e?(f(t)&&(n=t,t=void 0),t=t||""):(t=e,n=t,e=!1,f(t)&&(n=t,t=void 0),t=t||"");var i,o=yn(),a=e?o._week.dow:0,s=[];if(null!=n)return po(t,(n+a)%7,r,"day");for(i=0;i<7;i++)s[i]=po(t,(i+a)%7,r,"day");return s}function vo(e,t){return go(e,t,"months")}function yo(e,t){return go(e,t,"monthsShort")}function bo(e,t,n){return mo(e,t,n,"weekdays")}function _o(e,t,n){return mo(e,t,n,"weekdaysShort")}function xo(e,t,n){return mo(e,t,n,"weekdaysMin")}ho.calendar=L,ho.longDateFormat=q,ho.invalidDate=K,ho.ordinal=$,ho.preparse=fo,ho.postformat=fo,ho.relativeTime=ee,ho.pastFuture=te,ho.set=D,ho.eras=Ti,ho.erasParse=ji,ho.erasConvertYear=Ii,ho.erasAbbrRegex=Ni,ho.erasNameRegex=Li,ho.erasNarrowRegex=Ri,ho.months=at,ho.monthsShort=st,ho.monthsParse=ut,ho.monthsRegex=pt,ho.monthsShortRegex=ht,ho.week=St,ho.firstDayOfYear=Tt,ho.firstDayOfWeek=Ct,ho.weekdays=Bt,ho.weekdaysMin=Yt,ho.weekdaysShort=Vt,ho.weekdaysParse=Ut,ho.weekdaysRegex=Zt,ho.weekdaysShortRegex=Kt,ho.weekdaysMinRegex=Xt,ho.isPM=nn,ho.meridiem=an,gn("en",{eras:[{since:"0001-01-01",until:1/0,offset:1,name:"Anno Domini",narrow:"AD",abbr:"AD"},{since:"0000-12-31",until:-1/0,offset:1,name:"Before Christ",narrow:"BC",abbr:"BC"}],dayOfMonthOrdinalParse:/\d{1,2}(th|st|nd|rd)/,ordinal:function(e){var t=e%10,n=1===fe(e%100/10)?"th":1===t?"st":2===t?"nd":3===t?"rd":"th";return e+n}}),i.lang=M("moment.lang is deprecated. Use moment.locale instead.",gn),i.langData=M("moment.langData is deprecated. Use moment.localeData instead.",yn);var wo=Math.abs;function ko(){var e=this._data;return this._milliseconds=wo(this._milliseconds),this._days=wo(this._days),this._months=wo(this._months),e.milliseconds=wo(e.milliseconds),e.seconds=wo(e.seconds),e.minutes=wo(e.minutes),e.hours=wo(e.hours),e.months=wo(e.months),e.years=wo(e.years),this}function Oo(e,t,n,r){var i=Tr(t,n);return e._milliseconds+=r*i._milliseconds,e._days+=r*i._days,e._months+=r*i._months,e._bubble()}function So(e,t){return Oo(this,e,t,1)}function Mo(e,t){return Oo(this,e,t,-1)}function Co(e){return e<0?Math.floor(e):Math.ceil(e)}function To(){var e,t,n,r,i,o=this._milliseconds,a=this._days,s=this._months,l=this._data;return o>=0&&a>=0&&s>=0||o<=0&&a<=0&&s<=0||(o+=864e5*Co(Io(s)+a),a=0,s=0),l.milliseconds=o%1e3,e=ce(o/1e3),l.seconds=e%60,t=ce(e/60),l.minutes=t%60,n=ce(t/60),l.hours=n%24,a+=ce(n/24),i=ce(jo(a)),s+=i,a-=Co(Io(i)),r=ce(s/12),s%=12,l.days=a,l.months=s,l.years=r,this}function jo(e){return 4800*e/146097}function Io(e){return 146097*e/4800}function Do(e){if(!this.isValid())return NaN;var t,n,r=this._milliseconds;if(e=ie(e),"month"===e||"quarter"===e||"year"===e)switch(t=this._days+r/864e5,n=this._months+jo(t),e){case"month":return n;case"quarter":return n/3;case"year":return n/12}else switch(t=this._days+Math.round(Io(this._months)),e){case"week":return t/7+r/6048e5;case"day":return t+r/864e5;case"hour":return 24*t+r/36e5;case"minute":return 1440*t+r/6e4;case"second":return 86400*t+r/1e3;case"millisecond":return Math.floor(864e5*t)+r;default:throw new Error("Unknown unit "+e)}}function Ao(){return this.isValid()?this._milliseconds+864e5*this._days+this._months%12*2592e6+31536e6*fe(this._months/12):NaN}function Eo(e){return function(){return this.as(e)}}var Po=Eo("ms"),Lo=Eo("s"),No=Eo("m"),Ro=Eo("h"),zo=Eo("d"),Fo=Eo("w"),Bo=Eo("M"),Vo=Eo("Q"),Yo=Eo("y");function Go(){return Tr(this)}function Uo(e){return e=ie(e),this.isValid()?this[e+"s"]():NaN}function Wo(e){return function(){return this.isValid()?this._data[e]:NaN}}var Ho=Wo("milliseconds"),qo=Wo("seconds"),Zo=Wo("minutes"),Ko=Wo("hours"),Xo=Wo("days"),Qo=Wo("months"),$o=Wo("years");function Jo(){return ce(this.days()/7)}var ea=Math.round,ta={ss:44,s:45,m:45,h:22,d:26,w:null,M:11};function na(e,t,n,r,i){return i.relativeTime(t||1,!!n,e,r)}function ra(e,t,n,r){var i=Tr(e).abs(),o=ea(i.as("s")),a=ea(i.as("m")),s=ea(i.as("h")),l=ea(i.as("d")),u=ea(i.as("M")),c=ea(i.as("w")),f=ea(i.as("y")),d=o<=n.ss&&["s",o]||o0,d[4]=r,na.apply(null,d)}function ia(e){return void 0===e?ea:"function"===typeof e&&(ea=e,!0)}function oa(e,t){return void 0!==ta[e]&&(void 0===t?ta[e]:(ta[e]=t,"s"===e&&(ta.ss=t-1),!0))}function aa(e,t){if(!this.isValid())return this.localeData().invalidDate();var n,r,i=!1,o=ta;return"object"===typeof e&&(t=e,e=!1),"boolean"===typeof e&&(i=e),"object"===typeof t&&(o=Object.assign({},ta,t),null!=t.s&&null==t.ss&&(o.ss=t.s-1)),n=this.localeData(),r=ra(this,!i,o,n),i&&(r=n.pastFuture(+this,r)),n.postformat(r)}var sa=Math.abs;function la(e){return(e>0)-(e<0)||+e}function ua(){if(!this.isValid())return this.localeData().invalidDate();var e,t,n,r,i,o,a,s,l=sa(this._milliseconds)/1e3,u=sa(this._days),c=sa(this._months),f=this.asSeconds();return f?(e=ce(l/60),t=ce(e/60),l%=60,e%=60,n=ce(c/12),c%=12,r=l?l.toFixed(3).replace(/\.?0+$/,""):"",i=f<0?"-":"",o=la(this._months)!==la(f)?"-":"",a=la(this._days)!==la(f)?"-":"",s=la(this._milliseconds)!==la(f)?"-":"",i+"P"+(n?o+n+"Y":"")+(c?o+c+"M":"")+(u?a+u+"D":"")+(t||e||l?"T":"")+(t?s+t+"H":"")+(e?s+e+"M":"")+(l?s+r+"S":"")):"P0D"}var ca=ar.prototype;return ca.isValid=ir,ca.abs=ko,ca.add=So,ca.subtract=Mo,ca.as=Do,ca.asMilliseconds=Po,ca.asSeconds=Lo,ca.asMinutes=No,ca.asHours=Ro,ca.asDays=zo,ca.asWeeks=Fo,ca.asMonths=Bo,ca.asQuarters=Vo,ca.asYears=Yo,ca.valueOf=Ao,ca._bubble=To,ca.clone=Go,ca.get=Uo,ca.milliseconds=Ho,ca.seconds=qo,ca.minutes=Zo,ca.hours=Ko,ca.days=Xo,ca.weeks=Jo,ca.months=Qo,ca.years=$o,ca.humanize=aa,ca.toISOString=ua,ca.toString=ua,ca.toJSON=ua,ca.locale=ai,ca.localeData=li,ca.toIsoString=M("toIsoString() is deprecated. Please use toISOString() instead (notice the capitals)",ua),ca.lang=si,V("X",0,0,"unix"),V("x",0,0,"valueOf"),Le("x",Ie),Le("X",Ee),Be("X",function(e,t,n){n._d=new Date(1e3*parseFloat(e))}),Be("x",function(e,t,n){n._d=new Date(fe(e))}),i.version="2.29.1",o(Kn),i.fn=lo,i.min=Jn,i.max=er,i.now=tr,i.utc=g,i.unix=uo,i.months=vo,i.isDate=d,i.locale=gn,i.invalid=b,i.duration=Tr,i.isMoment=O,i.weekdays=bo,i.parseZone=co,i.localeData=yn,i.isDuration=sr,i.monthsShort=yo,i.weekdaysMin=xo,i.defineLocale=mn,i.updateLocale=vn,i.locales=bn,i.weekdaysShort=_o,i.normalizeUnits=ie,i.relativeTimeRounding=ia,i.relativeTimeThreshold=oa,i.calendarFormat=Vr,i.prototype=lo,i.HTML5_FMT={DATETIME_LOCAL:"YYYY-MM-DDTHH:mm",DATETIME_LOCAL_SECONDS:"YYYY-MM-DDTHH:mm:ss",DATETIME_LOCAL_MS:"YYYY-MM-DDTHH:mm:ss.SSS",DATE:"YYYY-MM-DD",TIME:"HH:mm",TIME_SECONDS:"HH:mm:ss",TIME_MS:"HH:mm:ss.SSS",WEEK:"GGGG-[W]WW",MONTH:"YYYY-MM"},i})}).call(this,n("YuTi")(e))},wtjL:function(e,t,n){"use strict";var r=n("Vwaf").HTML_TAG_RE;function i(e){var t=32|e;return t>=97&&t<=122}e.exports=function(e,t){var n,o,a,s,l=e.pos;return!!e.md.options.html&&(a=e.posMax,!(60!==e.src.charCodeAt(l)||l+2>=a)&&(n=e.src.charCodeAt(l+1),!(33!==n&&63!==n&&47!==n&&!i(n))&&(o=e.src.slice(l).match(r),!!o&&(t||(s=e.push("html_inline","",0),s.content=e.src.slice(l,l+o[0].length)),e.pos+=o[0].length,!0))))}},x3X8:function(e,t,n){"use strict";n.d(t,"b",function(){return o}),n.d(t,"a",function(){return a});var r=n("KxfA"),i=n("bYtY");function o(e,t){var n=e.mapDimensionsAll("defaultedLabel"),i=n.length;if(1===i){var o=Object(r["e"])(e,t,n[0]);return null!=o?o+"":null}if(i){for(var a=[],s=0;s=0&&r.push(t[a])}return r.join(" ")}},xVpn:function(e,t,n){"use strict";var r=n("T4UG"),i=n("bYtY"),o=n("DlA6"),a=n("y+Vt"),s=n("3qvL"),l=n("NC18");function u(e){return Object(i["s"])(e[0])}function c(e,t){for(var n=[],r=e.length,i=0;i=0;i--)if(!n[i].many.length){var l=n[s].many;if(l.length<=1){if(!s)return n;s=0}o=l.length;var u=Math.ceil(o/2);n[i].many=l.slice(u,o),n[s].many=l.slice(0,u),s++}return n}var f={clone:function(e){for(var t=[],n=1-Math.pow(1-e.path.style.opacity,1/e.count),r=0;r0){var h,p,g=r.getModel("universalTransition").get("delay"),m=Object.assign({setToFinal:!0},d);u(e)&&(h=e,p=t),u(t)&&(h=t,p=e);for(var v=h?h===e:e.length>t.length,y=h?c(p,h):c(v?t:e,[v?e:t]),b=0,_=0;_v))for(var r=n.getIndices(),i=b(n),o=0;o0&&i.group.traverse(function(e){e instanceof a["b"]&&!e.animators.length&&e.animateFrom({style:{opacity:0}},o)})})}function C(e){var t=e.getModel("universalTransition").get("seriesKey");return t||e.id}function T(e){return Object(i["s"])(e)?e.sort().join(","):e}function j(e){if(e.hostModel)return e.hostModel.getModel("universalTransition").get("divideShape")}function I(e,t){var n=Object(i["g"])(),r=Object(i["g"])(),o=Object(i["g"])();return Object(i["k"])(e.oldSeries,function(t,n){var a=e.oldData[n],s=C(t),l=T(s);r.set(l,a),Object(i["s"])(s)&&Object(i["k"])(s,function(e){o.set(e,{data:a,key:l})})}),Object(i["k"])(t.updatedSeries,function(e){if(e.isUniversalTransitionEnabled()&&e.isAnimationEnabled()){var t=e.getData(),a=C(e),s=T(a),l=r.get(s);if(l)n.set(s,{oldSeries:[{divide:j(l),data:l}],newSeries:[{divide:j(t),data:t}]});else if(Object(i["s"])(a)){0;var u=[];Object(i["k"])(a,function(e){var t=r.get(e);t&&u.push({divide:j(t),data:t})}),u.length&&n.set(s,{oldSeries:u,newSeries:[{data:t,divide:j(t)}]})}else{var c=o.get(a);if(c){var f=n.get(c.key);f||(f={oldSeries:[{data:c.data,divide:j(c.data)}],newSeries:[]},n.set(c.key,f)),f.newSeries.push({data:t,divide:j(t)})}}}}),n}function D(e,t){for(var n=0;n=0&&o.push({data:t.oldData[n],divide:j(t.oldData[n]),dim:e.dimension})}),Object(i["k"])(Object(g["p"])(e.to),function(e){var t=D(n.updatedSeries,e);if(t>=0){var r=n.updatedSeries[t].getData();a.push({data:r,divide:j(r),dim:e.dimension})}}),o.length>0&&a.length>0&&M(o,a,r)}function E(e){e.registerUpdateLifecycle("series:beforeupdate",function(e,t,n){Object(i["k"])(Object(g["p"])(n.seriesTransition),function(e){Object(i["k"])(Object(g["p"])(e.to),function(e){for(var t=n.updatedSeries,i=0;i=0;n--)r=t[n],95!==r.marker&&42!==r.marker||-1!==r.end&&(i=t[r.end],s=n>0&&t[n-1].end===r.end+1&&t[n-1].token===r.token-1&&t[r.end+1].token===i.token+1&&t[n-1].marker===r.marker,a=String.fromCharCode(r.marker),o=e.tokens[r.token],o.type=s?"strong_open":"em_open",o.tag=s?"strong":"em",o.nesting=1,o.markup=s?a+a:a,o.content="",o=e.tokens[i.token],o.type=s?"strong_close":"em_close",o.tag=s?"strong":"em",o.nesting=-1,o.markup=s?a+a:a,o.content="",s&&(e.tokens[t[n-1].token].content="",e.tokens[t[r.end+1].token].content="",n--))}e.exports.tokenize=function(e,t){var n,r,i,o=e.pos,a=e.src.charCodeAt(o);if(t)return!1;if(95!==a&&42!==a)return!1;for(r=e.scanDelims(e.pos,42===a),n=0;nt}return!1}function X(e,t,n,r,i,o){this.acceptsBooleans=2===t||3===t||4===t,this.attributeName=r,this.attributeNamespace=i,this.mustUseProperty=n,this.propertyName=e,this.type=t,this.sanitizeURL=o}var Q={};"children dangerouslySetInnerHTML defaultValue defaultChecked innerHTML suppressContentEditableWarning suppressHydrationWarning style".split(" ").forEach(function(e){Q[e]=new X(e,0,!1,e,null,!1)}),[["acceptCharset","accept-charset"],["className","class"],["htmlFor","for"],["httpEquiv","http-equiv"]].forEach(function(e){var t=e[0];Q[t]=new X(t,1,!1,e[1],null,!1)}),["contentEditable","draggable","spellCheck","value"].forEach(function(e){Q[e]=new X(e,2,!1,e.toLowerCase(),null,!1)}),["autoReverse","externalResourcesRequired","focusable","preserveAlpha"].forEach(function(e){Q[e]=new X(e,2,!1,e,null,!1)}),"allowFullScreen async autoFocus autoPlay controls default defer disabled disablePictureInPicture formNoValidate hidden loop noModule noValidate open playsInline readOnly required reversed scoped seamless itemScope".split(" ").forEach(function(e){Q[e]=new X(e,3,!1,e.toLowerCase(),null,!1)}),["checked","multiple","muted","selected"].forEach(function(e){Q[e]=new X(e,3,!0,e,null,!1)}),["capture","download"].forEach(function(e){Q[e]=new X(e,4,!1,e,null,!1)}),["cols","rows","size","span"].forEach(function(e){Q[e]=new X(e,6,!1,e,null,!1)}),["rowSpan","start"].forEach(function(e){Q[e]=new X(e,5,!1,e.toLowerCase(),null,!1)});var $=/[\-:]([a-z])/g;function J(e){return e[1].toUpperCase()}"accent-height alignment-baseline arabic-form baseline-shift cap-height clip-path clip-rule color-interpolation color-interpolation-filters color-profile color-rendering dominant-baseline enable-background fill-opacity fill-rule flood-color flood-opacity font-family font-size font-size-adjust font-stretch font-style font-variant font-weight glyph-name glyph-orientation-horizontal glyph-orientation-vertical horiz-adv-x horiz-origin-x image-rendering letter-spacing lighting-color marker-end marker-mid marker-start overline-position overline-thickness paint-order panose-1 pointer-events rendering-intent shape-rendering stop-color stop-opacity strikethrough-position strikethrough-thickness stroke-dasharray stroke-dashoffset stroke-linecap stroke-linejoin stroke-miterlimit stroke-opacity stroke-width text-anchor text-decoration text-rendering underline-position underline-thickness unicode-bidi unicode-range units-per-em v-alphabetic v-hanging v-ideographic v-mathematical vector-effect vert-adv-y vert-origin-x vert-origin-y word-spacing writing-mode xmlns:xlink x-height".split(" ").forEach(function(e){var t=e.replace($,J);Q[t]=new X(t,1,!1,e,null,!1)}),"xlink:actuate xlink:arcrole xlink:role xlink:show xlink:title xlink:type".split(" ").forEach(function(e){var t=e.replace($,J);Q[t]=new X(t,1,!1,e,"http://www.w3.org/1999/xlink",!1)}),["xml:base","xml:lang","xml:space"].forEach(function(e){var t=e.replace($,J);Q[t]=new X(t,1,!1,e,"http://www.w3.org/XML/1998/namespace",!1)}),["tabIndex","crossOrigin"].forEach(function(e){Q[e]=new X(e,1,!1,e.toLowerCase(),null,!1)}),Q.xlinkHref=new X("xlinkHref",1,!1,"xlink:href","http://www.w3.org/1999/xlink",!0),["src","href","action","formAction"].forEach(function(e){Q[e]=new X(e,1,!1,e.toLowerCase(),null,!0)});var ee=r.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;function te(e,t,n,r){var i=Q.hasOwnProperty(t)?Q[t]:null,o=null!==i?0===i.type:!r&&(2=n.length))throw Error(a(93));n=n[0]}t=n}null==t&&(t=""),n=t}e._wrapperState={initialValue:ke(n)}}function Fe(e,t){var n=ke(t.value),r=ke(t.defaultValue);null!=n&&(n=""+n,n!==e.value&&(e.value=n),null==t.defaultValue&&e.defaultValue!==n&&(e.defaultValue=n)),null!=r&&(e.defaultValue=""+r)}function Be(e){var t=e.textContent;t===e._wrapperState.initialValue&&""!==t&&null!==t&&(e.value=t)}var Ve={html:"http://www.w3.org/1999/xhtml",mathml:"http://www.w3.org/1998/Math/MathML",svg:"http://www.w3.org/2000/svg"};function Ye(e){switch(e){case"svg":return"http://www.w3.org/2000/svg";case"math":return"http://www.w3.org/1998/Math/MathML";default:return"http://www.w3.org/1999/xhtml"}}function Ge(e,t){return null==e||"http://www.w3.org/1999/xhtml"===e?Ye(t):"http://www.w3.org/2000/svg"===e&&"foreignObject"===t?"http://www.w3.org/1999/xhtml":e}var Ue,We=function(e){return"undefined"!==typeof MSApp&&MSApp.execUnsafeLocalFunction?function(t,n,r,i){MSApp.execUnsafeLocalFunction(function(){return e(t,n,r,i)})}:e}(function(e,t){if(e.namespaceURI!==Ve.svg||"innerHTML"in e)e.innerHTML=t;else{for(Ue=Ue||document.createElement("div"),Ue.innerHTML=""+t.valueOf().toString()+"",t=Ue.firstChild;e.firstChild;)e.removeChild(e.firstChild);for(;t.firstChild;)e.appendChild(t.firstChild)}});function He(e,t){if(t){var n=e.firstChild;if(n&&n===e.lastChild&&3===n.nodeType)return void(n.nodeValue=t)}e.textContent=t}function qe(e,t){var n={};return n[e.toLowerCase()]=t.toLowerCase(),n["Webkit"+e]="webkit"+t,n["Moz"+e]="moz"+t,n}var Ze={animationend:qe("Animation","AnimationEnd"),animationiteration:qe("Animation","AnimationIteration"),animationstart:qe("Animation","AnimationStart"),transitionend:qe("Transition","TransitionEnd")},Ke={},Xe={};function Qe(e){if(Ke[e])return Ke[e];if(!Ze[e])return e;var t,n=Ze[e];for(t in n)if(n.hasOwnProperty(t)&&t in Xe)return Ke[e]=n[t];return e}T&&(Xe=document.createElement("div").style,"AnimationEvent"in window||(delete Ze.animationend.animation,delete Ze.animationiteration.animation,delete Ze.animationstart.animation),"TransitionEvent"in window||delete Ze.transitionend.transition);var $e=Qe("animationend"),Je=Qe("animationiteration"),et=Qe("animationstart"),tt=Qe("transitionend"),nt="abort canplay canplaythrough durationchange emptied encrypted ended error loadeddata loadedmetadata loadstart pause play playing progress ratechange seeked seeking stalled suspend timeupdate volumechange waiting".split(" "),rt=new("function"===typeof WeakMap?WeakMap:Map);function it(e){var t=rt.get(e);return void 0===t&&(t=new Map,rt.set(e,t)),t}function ot(e){var t=e,n=e;if(e.alternate)for(;t.return;)t=t.return;else{e=t;do{t=e,0!==(1026&t.effectTag)&&(n=t.return),e=t.return}while(e)}return 3===t.tag?n:null}function at(e){if(13===e.tag){var t=e.memoizedState;if(null===t&&(e=e.alternate,null!==e&&(t=e.memoizedState)),null!==t)return t.dehydrated}return null}function st(e){if(ot(e)!==e)throw Error(a(188))}function lt(e){var t=e.alternate;if(!t){if(t=ot(e),null===t)throw Error(a(188));return t!==e?null:e}for(var n=e,r=t;;){var i=n.return;if(null===i)break;var o=i.alternate;if(null===o){if(r=i.return,null!==r){n=r;continue}break}if(i.child===o.child){for(o=i.child;o;){if(o===n)return st(i),e;if(o===r)return st(i),t;o=o.sibling}throw Error(a(188))}if(n.return!==r.return)n=i,r=o;else{for(var s=!1,l=i.child;l;){if(l===n){s=!0,n=i,r=o;break}if(l===r){s=!0,r=i,n=o;break}l=l.sibling}if(!s){for(l=o.child;l;){if(l===n){s=!0,n=o,r=i;break}if(l===r){s=!0,r=o,n=i;break}l=l.sibling}if(!s)throw Error(a(189))}}if(n.alternate!==r)throw Error(a(190))}if(3!==n.tag)throw Error(a(188));return n.stateNode.current===n?e:t}function ut(e){if(e=lt(e),!e)return null;for(var t=e;;){if(5===t.tag||6===t.tag)return t;if(t.child)t.child.return=t,t=t.child;else{if(t===e)break;for(;!t.sibling;){if(!t.return||t.return===e)return null;t=t.return}t.sibling.return=t.return,t=t.sibling}}return null}function ct(e,t){if(null==t)throw Error(a(30));return null==e?t:Array.isArray(e)?Array.isArray(t)?(e.push.apply(e,t),e):(e.push(t),e):Array.isArray(t)?[e].concat(t):[e,t]}function ft(e,t,n){Array.isArray(e)?e.forEach(t,n):e&&t.call(n,e)}var dt=null;function ht(e){if(e){var t=e._dispatchListeners,n=e._dispatchInstances;if(Array.isArray(t))for(var r=0;rvt.length&&vt.push(e)}function bt(e,t,n,r){if(vt.length){var i=vt.pop();return i.topLevelType=e,i.eventSystemFlags=r,i.nativeEvent=t,i.targetInst=n,i}return{topLevelType:e,eventSystemFlags:r,nativeEvent:t,targetInst:n,ancestors:[]}}function _t(e){var t=e.targetInst,n=t;do{if(!n){e.ancestors.push(n);break}var r=n;if(3===r.tag)r=r.stateNode.containerInfo;else{for(;r.return;)r=r.return;r=3!==r.tag?null:r.stateNode.containerInfo}if(!r)break;t=n.tag,5!==t&&6!==t||e.ancestors.push(n),n=Vn(r)}while(n);for(n=0;n=t)return{node:r,offset:t-e};e=n}e:{for(;r;){if(r.nextSibling){r=r.nextSibling;break e}r=r.parentNode}r=void 0}r=_n(r)}}function wn(e,t){return!(!e||!t)&&(e===t||(!e||3!==e.nodeType)&&(t&&3===t.nodeType?wn(e,t.parentNode):"contains"in e?e.contains(t):!!e.compareDocumentPosition&&!!(16&e.compareDocumentPosition(t))))}function kn(){for(var e=window,t=bn();t instanceof e.HTMLIFrameElement;){try{var n="string"===typeof t.contentWindow.location.href}catch(e){n=!1}if(!n)break;e=t.contentWindow,t=bn(e.document)}return t}function On(e){var t=e&&e.nodeName&&e.nodeName.toLowerCase();return t&&("input"===t&&("text"===e.type||"search"===e.type||"tel"===e.type||"url"===e.type||"password"===e.type)||"textarea"===t||"true"===e.contentEditable)}var Sn="$",Mn="/$",Cn="$?",Tn="$!",jn=null,In=null;function Dn(e,t){switch(e){case"button":case"input":case"select":case"textarea":return!!t.autoFocus}return!1}function An(e,t){return"textarea"===e||"option"===e||"noscript"===e||"string"===typeof t.children||"number"===typeof t.children||"object"===typeof t.dangerouslySetInnerHTML&&null!==t.dangerouslySetInnerHTML&&null!=t.dangerouslySetInnerHTML.__html}var En="function"===typeof setTimeout?setTimeout:void 0,Pn="function"===typeof clearTimeout?clearTimeout:void 0;function Ln(e){for(;null!=e;e=e.nextSibling){var t=e.nodeType;if(1===t||3===t)break}return e}function Nn(e){e=e.previousSibling;for(var t=0;e;){if(8===e.nodeType){var n=e.data;if(n===Sn||n===Tn||n===Cn){if(0===t)return e;t--}else n===Mn&&t++}e=e.previousSibling}return null}var Rn=Math.random().toString(36).slice(2),zn="__reactInternalInstance$"+Rn,Fn="__reactEventHandlers$"+Rn,Bn="__reactContainere$"+Rn;function Vn(e){var t=e[zn];if(t)return t;for(var n=e.parentNode;n;){if(t=n[Bn]||n[zn]){if(n=t.alternate,null!==t.child||null!==n&&null!==n.child)for(e=Nn(e);null!==e;){if(n=e[zn])return n;e=Nn(e)}return t}e=n,n=e.parentNode}return null}function Yn(e){return e=e[zn]||e[Bn],!e||5!==e.tag&&6!==e.tag&&13!==e.tag&&3!==e.tag?null:e}function Gn(e){if(5===e.tag||6===e.tag)return e.stateNode;throw Error(a(33))}function Un(e){return e[Fn]||null}function Wn(e){do{e=e.return}while(e&&5!==e.tag);return e||null}function Hn(e,t){var n=e.stateNode;if(!n)return null;var r=g(n);if(!r)return null;n=r[t];e:switch(t){case"onClick":case"onClickCapture":case"onDoubleClick":case"onDoubleClickCapture":case"onMouseDown":case"onMouseDownCapture":case"onMouseMove":case"onMouseMoveCapture":case"onMouseUp":case"onMouseUpCapture":case"onMouseEnter":(r=!r.disabled)||(e=e.type,r=!("button"===e||"input"===e||"select"===e||"textarea"===e)),e=!r;break e;default:e=!1}if(e)return null;if(n&&"function"!==typeof n)throw Error(a(231,t,typeof n));return n}function qn(e,t,n){(t=Hn(e,n.dispatchConfig.phasedRegistrationNames[t]))&&(n._dispatchListeners=ct(n._dispatchListeners,t),n._dispatchInstances=ct(n._dispatchInstances,e))}function Zn(e){if(e&&e.dispatchConfig.phasedRegistrationNames){for(var t=e._targetInst,n=[];t;)n.push(t),t=Wn(t);for(t=n.length;0this.eventPool.length&&this.eventPool.push(e)}function sr(e){e.eventPool=[],e.getPooled=or,e.release=ar}i(ir.prototype,{preventDefault:function(){this.defaultPrevented=!0;var e=this.nativeEvent;e&&(e.preventDefault?e.preventDefault():"unknown"!==typeof e.returnValue&&(e.returnValue=!1),this.isDefaultPrevented=nr)},stopPropagation:function(){var e=this.nativeEvent;e&&(e.stopPropagation?e.stopPropagation():"unknown"!==typeof e.cancelBubble&&(e.cancelBubble=!0),this.isPropagationStopped=nr)},persist:function(){this.isPersistent=nr},isPersistent:rr,destructor:function(){var e,t=this.constructor.Interface;for(e in t)this[e]=null;this.nativeEvent=this._targetInst=this.dispatchConfig=null,this.isPropagationStopped=this.isDefaultPrevented=rr,this._dispatchInstances=this._dispatchListeners=null}}),ir.Interface={type:null,target:null,currentTarget:function(){return null},eventPhase:null,bubbles:null,cancelable:null,timeStamp:function(e){return e.timeStamp||Date.now()},defaultPrevented:null,isTrusted:null},ir.extend=function(e){function t(){}function n(){return r.apply(this,arguments)}var r=this;t.prototype=r.prototype;var o=new t;return i(o,n.prototype),n.prototype=o,n.prototype.constructor=n,n.Interface=i({},r.Interface,e),n.extend=r.extend,sr(n),n},sr(ir);var lr=ir.extend({data:null}),ur=ir.extend({data:null}),cr=[9,13,27,32],fr=T&&"CompositionEvent"in window,dr=null;T&&"documentMode"in document&&(dr=document.documentMode);var hr=T&&"TextEvent"in window&&!dr,pr=T&&(!fr||dr&&8=dr),gr=String.fromCharCode(32),mr={beforeInput:{phasedRegistrationNames:{bubbled:"onBeforeInput",captured:"onBeforeInputCapture"},dependencies:["compositionend","keypress","textInput","paste"]},compositionEnd:{phasedRegistrationNames:{bubbled:"onCompositionEnd",captured:"onCompositionEndCapture"},dependencies:"blur compositionend keydown keypress keyup mousedown".split(" ")},compositionStart:{phasedRegistrationNames:{bubbled:"onCompositionStart",captured:"onCompositionStartCapture"},dependencies:"blur compositionstart keydown keypress keyup mousedown".split(" ")},compositionUpdate:{phasedRegistrationNames:{bubbled:"onCompositionUpdate",captured:"onCompositionUpdateCapture"},dependencies:"blur compositionupdate keydown keypress keyup mousedown".split(" ")}},vr=!1;function yr(e,t){switch(e){case"keyup":return-1!==cr.indexOf(t.keyCode);case"keydown":return 229!==t.keyCode;case"keypress":case"mousedown":case"blur":return!0;default:return!1}}function br(e){return e=e.detail,"object"===typeof e&&"data"in e?e.data:null}var _r=!1;function xr(e,t){switch(e){case"compositionend":return br(t);case"keypress":return 32!==t.which?null:(vr=!0,gr);case"textInput":return e=t.data,e===gr&&vr?null:e;default:return null}}function wr(e,t){if(_r)return"compositionend"===e||!fr&&yr(e,t)?(e=tr(),er=Jn=$n=null,_r=!1,e):null;switch(e){case"paste":return null;case"keypress":if(!(t.ctrlKey||t.altKey||t.metaKey)||t.ctrlKey&&t.altKey){if(t.char&&1=document.documentMode,ii={select:{phasedRegistrationNames:{bubbled:"onSelect",captured:"onSelectCapture"},dependencies:"blur contextmenu dragend focus keydown keyup mousedown mouseup selectionchange".split(" ")}},oi=null,ai=null,si=null,li=!1;function ui(e,t){var n=t.window===t?t.document:9===t.nodeType?t:t.ownerDocument;return li||null==oi||oi!==bn(n)?null:(n=oi,"selectionStart"in n&&On(n)?n={start:n.selectionStart,end:n.selectionEnd}:(n=(n.ownerDocument&&n.ownerDocument.defaultView||window).getSelection(),n={anchorNode:n.anchorNode,anchorOffset:n.anchorOffset,focusNode:n.focusNode,focusOffset:n.focusOffset}),si&&ni(si,n)?null:(si=n,e=ir.getPooled(ii.select,ai,e,t),e.type="select",e.target=oi,Qn(e),e))}var ci={eventTypes:ii,extractEvents:function(e,t,n,r,i,o){if(i=o||(r.window===r?r.document:9===r.nodeType?r:r.ownerDocument),!(o=!i)){e:{i=it(i),o=M.onSelect;for(var a=0;aSi||(e.current=Oi[Si],Oi[Si]=null,Si--)}function Ci(e,t){Si++,Oi[Si]=e.current,e.current=t}var Ti={},ji={current:Ti},Ii={current:!1},Di=Ti;function Ai(e,t){var n=e.type.contextTypes;if(!n)return Ti;var r=e.stateNode;if(r&&r.__reactInternalMemoizedUnmaskedChildContext===t)return r.__reactInternalMemoizedMaskedChildContext;var i,o={};for(i in n)o[i]=t[i];return r&&(e=e.stateNode,e.__reactInternalMemoizedUnmaskedChildContext=t,e.__reactInternalMemoizedMaskedChildContext=o),o}function Ei(e){return e=e.childContextTypes,null!==e&&void 0!==e}function Pi(){Mi(Ii),Mi(ji)}function Li(e,t,n){if(ji.current!==Ti)throw Error(a(168));Ci(ji,t),Ci(Ii,n)}function Ni(e,t,n){var r=e.stateNode;if(e=t.childContextTypes,"function"!==typeof r.getChildContext)return n;for(var o in r=r.getChildContext(),r)if(!(o in e))throw Error(a(108,xe(t)||"Unknown",o));return i({},n,{},r)}function Ri(e){return e=(e=e.stateNode)&&e.__reactInternalMemoizedMergedChildContext||Ti,Di=ji.current,Ci(ji,e),Ci(Ii,Ii.current),!0}function zi(e,t,n){var r=e.stateNode;if(!r)throw Error(a(169));n?(e=Ni(e,t,Di),r.__reactInternalMemoizedMergedChildContext=e,Mi(Ii),Mi(ji),Ci(ji,e)):Mi(Ii),Ci(Ii,n)}var Fi=o.unstable_runWithPriority,Bi=o.unstable_scheduleCallback,Vi=o.unstable_cancelCallback,Yi=o.unstable_requestPaint,Gi=o.unstable_now,Ui=o.unstable_getCurrentPriorityLevel,Wi=o.unstable_ImmediatePriority,Hi=o.unstable_UserBlockingPriority,qi=o.unstable_NormalPriority,Zi=o.unstable_LowPriority,Ki=o.unstable_IdlePriority,Xi={},Qi=o.unstable_shouldYield,$i=void 0!==Yi?Yi:function(){},Ji=null,eo=null,to=!1,no=Gi(),ro=1e4>no?Gi:function(){return Gi()-no};function io(){switch(Ui()){case Wi:return 99;case Hi:return 98;case qi:return 97;case Zi:return 96;case Ki:return 95;default:throw Error(a(332))}}function oo(e){switch(e){case 99:return Wi;case 98:return Hi;case 97:return qi;case 96:return Zi;case 95:return Ki;default:throw Error(a(332))}}function ao(e,t){return e=oo(e),Fi(e,t)}function so(e,t,n){return e=oo(e),Bi(e,t,n)}function lo(e){return null===Ji?(Ji=[e],eo=Bi(Wi,co)):Ji.push(e),Xi}function uo(){if(null!==eo){var e=eo;eo=null,Vi(e)}co()}function co(){if(!to&&null!==Ji){to=!0;var e=0;try{var t=Ji;ao(99,function(){for(;e=t&&(Za=!0),e.firstContext=null)}function wo(e,t){if(vo!==e&&!1!==t&&0!==t)if("number"===typeof t&&1073741823!==t||(vo=e,t=1073741823),t={context:e,observedBits:t,next:null},null===mo){if(null===go)throw Error(a(308));mo=t,go.dependencies={expirationTime:0,firstContext:t,responders:null}}else mo=mo.next=t;return e._currentValue}var ko=!1;function Oo(e){e.updateQueue={baseState:e.memoizedState,baseQueue:null,shared:{pending:null},effects:null}}function So(e,t){e=e.updateQueue,t.updateQueue===e&&(t.updateQueue={baseState:e.baseState,baseQueue:e.baseQueue,shared:e.shared,effects:e.effects})}function Mo(e,t){return e={expirationTime:e,suspenseConfig:t,tag:0,payload:null,callback:null,next:null},e.next=e}function Co(e,t){if(e=e.updateQueue,null!==e){e=e.shared;var n=e.pending;null===n?t.next=t:(t.next=n.next,n.next=t),e.pending=t}}function To(e,t){var n=e.alternate;null!==n&&So(n,e),e=e.updateQueue,n=e.baseQueue,null===n?(e.baseQueue=t.next=t,t.next=t):(t.next=n.next,n.next=t)}function jo(e,t,n,r){var o=e.updateQueue;ko=!1;var a=o.baseQueue,s=o.shared.pending;if(null!==s){if(null!==a){var l=a.next;a.next=s.next,s.next=l}a=s,o.shared.pending=null,l=e.alternate,null!==l&&(l=l.updateQueue,null!==l&&(l.baseQueue=s))}if(null!==a){l=a.next;var u=o.baseState,c=0,f=null,d=null,h=null;if(null!==l){var p=l;do{if(s=p.expirationTime,sc&&(c=s)}else{null!==h&&(h=h.next={expirationTime:1073741823,suspenseConfig:p.suspenseConfig,tag:p.tag,payload:p.payload,callback:p.callback,next:null}),Nl(s,p.suspenseConfig);e:{var m=e,v=p;switch(s=t,g=n,v.tag){case 1:if(m=v.payload,"function"===typeof m){u=m.call(g,u,s);break e}u=m;break e;case 3:m.effectTag=-4097&m.effectTag|64;case 0:if(m=v.payload,s="function"===typeof m?m.call(g,u,s):m,null===s||void 0===s)break e;u=i({},u,s);break e;case 2:ko=!0}}null!==p.callback&&(e.effectTag|=32,s=o.effects,null===s?o.effects=[p]:s.push(p))}if(p=p.next,null===p||p===l){if(s=o.shared.pending,null===s)break;p=a.next=s.next,s.next=l,o.baseQueue=a=s,o.shared.pending=null}}while(1)}null===h?f=u:h.next=d,o.baseState=f,o.baseQueue=h,Rl(c),e.expirationTime=c,e.memoizedState=u}}function Io(e,t,n){if(e=t.effects,t.effects=null,null!==e)for(t=0;tg?(m=f,f=null):m=f.sibling;var v=h(i,f,s[g],l);if(null===v){null===f&&(f=m);break}e&&f&&null===v.alternate&&t(i,f),a=o(v,a,g),null===c?u=v:c.sibling=v,c=v,f=m}if(g===s.length)return n(i,f),u;if(null===f){for(;gm?(v=g,g=null):v=g.sibling;var b=h(i,g,y.value,u);if(null===b){null===g&&(g=v);break}e&&g&&null===b.alternate&&t(i,g),s=o(b,s,m),null===f?c=b:f.sibling=b,f=b,g=v}if(y.done)return n(i,g),c;if(null===g){for(;!y.done;m++,y=l.next())y=d(i,y.value,u),null!==y&&(s=o(y,s,m),null===f?c=y:f.sibling=y,f=y);return c}for(g=r(i,g);!y.done;m++,y=l.next())y=p(g,i,m,y.value,u),null!==y&&(e&&null!==y.alternate&&g.delete(null===y.key?m:y.key),s=o(y,s,m),null===f?c=y:f.sibling=y,f=y);return e&&g.forEach(function(e){return t(i,e)}),c}return function(e,r,o,l){var u="object"===typeof o&&null!==o&&o.type===ae&&null===o.key;u&&(o=o.props.children);var c="object"===typeof o&&null!==o;if(c)switch(o.$$typeof){case ie:e:{for(c=o.key,u=r;null!==u;){if(u.key===c){switch(u.tag){case 7:if(o.type===ae){n(e,u.sibling),r=i(u,o.props.children),r.return=e,e=r;break e}break;default:if(u.elementType===o.type){n(e,u.sibling),r=i(u,o.props),r.ref=Bo(e,u,o),r.return=e,e=r;break e}}n(e,u);break}t(e,u),u=u.sibling}o.type===ae?(r=su(o.props.children,e.mode,l,o.key),r.return=e,e=r):(l=au(o.type,o.key,o.props,null,e.mode,l),l.ref=Bo(e,r,o),l.return=e,e=l)}return s(e);case oe:e:{for(u=o.key;null!==r;){if(r.key===u){if(4===r.tag&&r.stateNode.containerInfo===o.containerInfo&&r.stateNode.implementation===o.implementation){n(e,r.sibling),r=i(r,o.children||[]),r.return=e,e=r;break e}n(e,r);break}t(e,r),r=r.sibling}r=uu(o,e.mode,l),r.return=e,e=r}return s(e)}if("string"===typeof o||"number"===typeof o)return o=""+o,null!==r&&6===r.tag?(n(e,r.sibling),r=i(r,o),r.return=e,e=r):(n(e,r),r=lu(o,e.mode,l),r.return=e,e=r),s(e);if(Fo(o))return g(e,r,o,l);if(be(o))return m(e,r,o,l);if(c&&Vo(e,o),"undefined"===typeof o&&!u)switch(e.tag){case 1:case 0:throw e=e.type,Error(a(152,e.displayName||e.name||"Component"))}return n(e,r)}}var Go=Yo(!0),Uo=Yo(!1),Wo={},Ho={current:Wo},qo={current:Wo},Zo={current:Wo};function Ko(e){if(e===Wo)throw Error(a(174));return e}function Xo(e,t){switch(Ci(Zo,t),Ci(qo,e),Ci(Ho,Wo),e=t.nodeType,e){case 9:case 11:t=(t=t.documentElement)?t.namespaceURI:Ge(null,"");break;default:e=8===e?t.parentNode:t,t=e.namespaceURI||null,e=e.tagName,t=Ge(t,e)}Mi(Ho),Ci(Ho,t)}function Qo(){Mi(Ho),Mi(qo),Mi(Zo)}function $o(e){Ko(Zo.current);var t=Ko(Ho.current),n=Ge(t,e.type);t!==n&&(Ci(qo,e),Ci(Ho,n))}function Jo(e){qo.current===e&&(Mi(Ho),Mi(qo))}var ea={current:0};function ta(e){for(var t=e;null!==t;){if(13===t.tag){var n=t.memoizedState;if(null!==n&&(n=n.dehydrated,null===n||n.data===Cn||n.data===Tn))return t}else if(19===t.tag&&void 0!==t.memoizedProps.revealOrder){if(0!==(64&t.effectTag))return t}else if(null!==t.child){t.child.return=t,t=t.child;continue}if(t===e)break;for(;null===t.sibling;){if(null===t.return||t.return===e)return null;t=t.return}t.sibling.return=t.return,t=t.sibling}return null}function na(e,t){return{responder:e,props:t}}var ra=ee.ReactCurrentDispatcher,ia=ee.ReactCurrentBatchConfig,oa=0,aa=null,sa=null,la=null,ua=!1;function ca(){throw Error(a(321))}function fa(e,t){if(null===t)return!1;for(var n=0;no))throw Error(a(301));o+=1,la=sa=null,t.updateQueue=null,ra.current=Ra,e=n(r,i)}while(t.expirationTime===oa)}if(ra.current=Pa,t=null!==sa&&null!==sa.next,oa=0,la=sa=aa=null,ua=!1,t)throw Error(a(300));return e}function ha(){var e={memoizedState:null,baseState:null,baseQueue:null,queue:null,next:null};return null===la?aa.memoizedState=la=e:la=la.next=e,la}function pa(){if(null===sa){var e=aa.alternate;e=null!==e?e.memoizedState:null}else e=sa.next;var t=null===la?aa.memoizedState:la.next;if(null!==t)la=t,sa=e;else{if(null===e)throw Error(a(310));sa=e,e={memoizedState:sa.memoizedState,baseState:sa.baseState,baseQueue:sa.baseQueue,queue:sa.queue,next:null},null===la?aa.memoizedState=la=e:la=la.next=e}return la}function ga(e,t){return"function"===typeof t?t(e):t}function ma(e){var t=pa(),n=t.queue;if(null===n)throw Error(a(311));n.lastRenderedReducer=e;var r=sa,i=r.baseQueue,o=n.pending;if(null!==o){if(null!==i){var s=i.next;i.next=o.next,o.next=s}r.baseQueue=i=o,n.pending=null}if(null!==i){i=i.next,r=r.baseState;var l=s=o=null,u=i;do{var c=u.expirationTime;if(caa.expirationTime&&(aa.expirationTime=c,Rl(c))}else null!==l&&(l=l.next={expirationTime:1073741823,suspenseConfig:u.suspenseConfig,action:u.action,eagerReducer:u.eagerReducer,eagerState:u.eagerState,next:null}),Nl(c,u.suspenseConfig),r=u.eagerReducer===e?u.eagerState:e(r,u.action);u=u.next}while(null!==u&&u!==i);null===l?o=r:l.next=s,ei(r,t.memoizedState)||(Za=!0),t.memoizedState=r,t.baseState=o,t.baseQueue=l,n.lastRenderedState=r}return[t.memoizedState,n.dispatch]}function va(e){var t=pa(),n=t.queue;if(null===n)throw Error(a(311));n.lastRenderedReducer=e;var r=n.dispatch,i=n.pending,o=t.memoizedState;if(null!==i){n.pending=null;var s=i=i.next;do{o=e(o,s.action),s=s.next}while(s!==i);ei(o,t.memoizedState)||(Za=!0),t.memoizedState=o,null===t.baseQueue&&(t.baseState=o),n.lastRenderedState=o}return[o,r]}function ya(e){var t=ha();return"function"===typeof e&&(e=e()),t.memoizedState=t.baseState=e,e=t.queue={pending:null,dispatch:null,lastRenderedReducer:ga,lastRenderedState:e},e=e.dispatch=Ea.bind(null,aa,e),[t.memoizedState,e]}function ba(e,t,n,r){return e={tag:e,create:t,destroy:n,deps:r,next:null},t=aa.updateQueue,null===t?(t={lastEffect:null},aa.updateQueue=t,t.lastEffect=e.next=e):(n=t.lastEffect,null===n?t.lastEffect=e.next=e:(r=n.next,n.next=e,e.next=r,t.lastEffect=e)),e}function _a(){return pa().memoizedState}function xa(e,t,n,r){var i=ha();aa.effectTag|=e,i.memoizedState=ba(1|t,n,void 0,void 0===r?null:r)}function wa(e,t,n,r){var i=pa();r=void 0===r?null:r;var o=void 0;if(null!==sa){var a=sa.memoizedState;if(o=a.destroy,null!==r&&fa(r,a.deps))return void ba(t,n,o,r)}aa.effectTag|=e,i.memoizedState=ba(1|t,n,o,r)}function ka(e,t){return xa(516,4,e,t)}function Oa(e,t){return wa(516,4,e,t)}function Sa(e,t){return wa(4,2,e,t)}function Ma(e,t){return"function"===typeof t?(e=e(),t(e),function(){t(null)}):null!==t&&void 0!==t?(e=e(),t.current=e,function(){t.current=null}):void 0}function Ca(e,t,n){return n=null!==n&&void 0!==n?n.concat([e]):null,wa(4,2,Ma.bind(null,t,e),n)}function Ta(){}function ja(e,t){return ha().memoizedState=[e,void 0===t?null:t],e}function Ia(e,t){var n=pa();t=void 0===t?null:t;var r=n.memoizedState;return null!==r&&null!==t&&fa(t,r[1])?r[0]:(n.memoizedState=[e,t],e)}function Da(e,t){var n=pa();t=void 0===t?null:t;var r=n.memoizedState;return null!==r&&null!==t&&fa(t,r[1])?r[0]:(e=e(),n.memoizedState=[e,t],e)}function Aa(e,t,n){var r=io();ao(98>r?98:r,function(){e(!0)}),ao(97<\/script>",e=e.removeChild(e.firstChild)):"string"===typeof r.is?e=l.createElement(o,{is:r.is}):(e=l.createElement(o),"select"===o&&(l=e,r.multiple?l.multiple=!0:r.size&&(l.size=r.size))):e=l.createElementNS(e,o),e[zn]=t,e[Fn]=r,is(e,t,!1,!1),t.stateNode=e,l=gn(o,r),o){case"iframe":case"object":case"embed":nn("load",e),u=r;break;case"video":case"audio":for(u=0;ur.tailExpiration&&1t)&&yl.set(e,t)))}}function Sl(e,t){e.expirationTimee?n:e,2>=e&&t!==e?0:e}function Cl(e){if(0!==e.lastExpiredTime)e.callbackExpirationTime=1073741823,e.callbackPriority=99,e.callbackNode=lo(jl.bind(null,e));else{var t=Ml(e),n=e.callbackNode;if(0===t)null!==n&&(e.callbackNode=null,e.callbackExpirationTime=0,e.callbackPriority=90);else{var r=wl();if(1073741823===t?r=99:1===t||2===t?r=95:(r=10*(1073741821-t)-10*(1073741821-r),r=0>=r?99:250>=r?98:5250>=r?97:95),null!==n){var i=e.callbackPriority;if(e.callbackExpirationTime===t&&i>=r)return;n!==Xi&&Vi(n)}e.callbackExpirationTime=t,e.callbackPriority=r,t=1073741823===t?lo(jl.bind(null,e)):so(r,Tl.bind(null,e),{timeout:10*(1073741821-t)-ro()}),e.callbackNode=t}}}function Tl(e,t){if(xl=0,t)return t=wl(),pu(e,t),Cl(e),null;var n=Ml(e);if(0!==n){if(t=e.callbackNode,($s&(Us|Ws))!==Ys)throw Error(a(327));if(Hl(),e===Js&&n===tl||El(e,n),null!==el){var r=$s;$s|=Us;var i=Ll();do{try{Fl();break}catch(t){Pl(e,t)}}while(1);if(yo(),$s=r,Bs.current=i,nl===qs)throw t=rl,El(e,n),du(e,n),Cl(e),t;if(null===el)switch(i=e.finishedWork=e.current.alternate,e.finishedExpirationTime=n,r=nl,Js=null,r){case Hs:case qs:throw Error(a(345));case Zs:pu(e,2=n){e.lastPingedTime=n,El(e,n);break}}if(o=Ml(e),0!==o&&o!==n)break;if(0!==r&&r!==n){e.lastPingedTime=r;break}e.timeoutHandle=En(Gl.bind(null,e),i);break}Gl(e);break;case Xs:if(du(e,n),r=e.lastSuspendedTime,n===r&&(e.nextKnownPendingLevel=Yl(i)),ll&&(i=e.lastPingedTime,0===i||i>=n)){e.lastPingedTime=n,El(e,n);break}if(i=Ml(e),0!==i&&i!==n)break;if(0!==r&&r!==n){e.lastPingedTime=r;break}if(1073741823!==ol?r=10*(1073741821-ol)-ro():1073741823===il?r=0:(r=10*(1073741821-il)-5e3,i=ro(),n=10*(1073741821-n)-i,r=i-r,0>r&&(r=0),r=(120>r?120:480>r?480:1080>r?1080:1920>r?1920:3e3>r?3e3:4320>r?4320:1960*Fs(r/1960))-r,n=r?r=0:(i=0|s.busyDelayMs,o=ro()-(10*(1073741821-o)-(0|s.timeoutMs||5e3)),r=o<=i?0:i+r-o),10 component higher in the tree to provide a loading indicator or placeholder to display."+we(a))}nl!==Qs&&(nl=Zs),s=vs(s,a),f=o;do{switch(f.tag){case 3:l=s,f.effectTag|=4096,f.expirationTime=t;var _=Ns(f,l,t);To(f,_);break e;case 1:l=s;var x=f.type,w=f.stateNode;if(0===(64&f.effectTag)&&("function"===typeof x.getDerivedStateFromError||null!==w&&"function"===typeof w.componentDidCatch&&(null===pl||!pl.has(w)))){f.effectTag|=4096,f.expirationTime=t;var k=Rs(f,l,t);To(f,k);break e}}f=f.return}while(null!==f)}el=Vl(el)}catch(e){t=e;continue}break}while(1)}function Ll(){var e=Bs.current;return Bs.current=Pa,null===e?Pa:e}function Nl(e,t){esl&&(sl=e)}function zl(){for(;null!==el;)el=Bl(el)}function Fl(){for(;null!==el&&!Qi();)el=Bl(el)}function Bl(e){var t=zs(e.alternate,e,tl);return e.memoizedProps=e.pendingProps,null===t&&(t=Vl(e)),Vs.current=null,t}function Vl(e){el=e;do{var t=el.alternate;if(e=el.return,0===(2048&el.effectTag)){if(t=gs(t,el,tl),1===tl||1!==el.childExpirationTime){for(var n=0,r=el.child;null!==r;){var i=r.expirationTime,o=r.childExpirationTime;i>n&&(n=i),o>n&&(n=o),r=r.sibling}el.childExpirationTime=n}if(null!==t)return t;null!==e&&0===(2048&e.effectTag)&&(null===e.firstEffect&&(e.firstEffect=el.firstEffect),null!==el.lastEffect&&(null!==e.lastEffect&&(e.lastEffect.nextEffect=el.firstEffect),e.lastEffect=el.lastEffect),1e?t:e}function Gl(e){var t=io();return ao(99,Ul.bind(null,e,t)),null}function Ul(e,t){do{Hl()}while(null!==ml);if(($s&(Us|Ws))!==Ys)throw Error(a(327));var n=e.finishedWork,r=e.finishedExpirationTime;if(null===n)return null;if(e.finishedWork=null,e.finishedExpirationTime=0,n===e.current)throw Error(a(177));e.callbackNode=null,e.callbackExpirationTime=0,e.callbackPriority=90,e.nextKnownPendingLevel=0;var i=Yl(n);if(e.firstPendingTime=i,r<=e.lastSuspendedTime?e.firstSuspendedTime=e.lastSuspendedTime=e.nextKnownPendingLevel=0:r<=e.firstSuspendedTime&&(e.firstSuspendedTime=r-1),r<=e.lastPingedTime&&(e.lastPingedTime=0),r<=e.lastExpiredTime&&(e.lastExpiredTime=0),e===Js&&(el=Js=null,tl=0),1l&&(c=l,l=s,s=c),c=xn(_,s),f=xn(_,l),c&&f&&(1!==w.rangeCount||w.anchorNode!==c.node||w.anchorOffset!==c.offset||w.focusNode!==f.node||w.focusOffset!==f.offset)&&(x=x.createRange(),x.setStart(c.node,c.offset),w.removeAllRanges(),s>l?(w.addRange(x),w.extend(f.node,f.offset)):(x.setEnd(f.node,f.offset),w.addRange(x)))))),x=[];for(w=_;w=w.parentNode;)1===w.nodeType&&x.push({element:w,left:w.scrollLeft,top:w.scrollTop});for("function"===typeof _.focus&&_.focus(),_=0;_=n?us(e,t,n):(Ci(ea,1&ea.current),t=hs(e,t,n),null!==t?t.sibling:null);Ci(ea,1&ea.current);break;case 19:if(r=t.childExpirationTime>=n,0!==(64&e.effectTag)){if(r)return ds(e,t,n);t.effectTag|=64}if(i=t.memoizedState,null!==i&&(i.rendering=null,i.tail=null),Ci(ea,ea.current),!r)return null}return hs(e,t,n)}Za=!1}}else Za=!1;switch(t.expirationTime=0,t.tag){case 2:if(r=t.type,null!==e&&(e.alternate=null,t.alternate=null,t.effectTag|=2),e=t.pendingProps,i=Ai(t,ji.current),xo(t,n),i=da(null,t,r,e,i,n),t.effectTag|=1,"object"===typeof i&&null!==i&&"function"===typeof i.render&&void 0===i.$$typeof){if(t.tag=1,t.memoizedState=null,t.updateQueue=null,Ei(r)){var o=!0;Ri(t)}else o=!1;t.memoizedState=null!==i.state&&void 0!==i.state?i.state:null,Oo(t);var s=r.getDerivedStateFromProps;"function"===typeof s&&Eo(t,r,s,e),i.updater=Po,t.stateNode=i,i._reactInternalFiber=t,zo(t,r,e,n),t=ns(null,t,r,!0,o,n)}else t.tag=0,Ka(null,t,i,n),t=t.child;return t;case 16:e:{if(i=t.elementType,null!==e&&(e.alternate=null,t.alternate=null,t.effectTag|=2),e=t.pendingProps,_e(i),1!==i._status)throw i._result;switch(i=i._result,t.type=i,o=t.tag=iu(i),e=ho(i,e),o){case 0:t=es(null,t,i,e,n);break e;case 1:t=ts(null,t,i,e,n);break e;case 11:t=Xa(null,t,i,e,n);break e;case 14:t=Qa(null,t,i,ho(i.type,e),r,n);break e}throw Error(a(306,i,""))}return t;case 0:return r=t.type,i=t.pendingProps,i=t.elementType===r?i:ho(r,i),es(e,t,r,i,n);case 1:return r=t.type,i=t.pendingProps,i=t.elementType===r?i:ho(r,i),ts(e,t,r,i,n);case 3:if(rs(t),r=t.updateQueue,null===e||null===r)throw Error(a(282));if(r=t.pendingProps,i=t.memoizedState,i=null!==i?i.element:null,So(e,t),jo(t,r,null,n),r=t.memoizedState.element,r===i)Ha(),t=hs(e,t,n);else{if((i=t.stateNode.hydrate)&&(Fa=Ln(t.stateNode.containerInfo.firstChild),za=t,i=Ba=!0),i)for(n=Uo(t,null,r,n),t.child=n;n;)n.effectTag=-3&n.effectTag|1024,n=n.sibling;else Ka(e,t,r,n),Ha();t=t.child}return t;case 5:return $o(t),null===e&&Ga(t),r=t.type,i=t.pendingProps,o=null!==e?e.memoizedProps:null,s=i.children,An(r,i)?s=null:null!==o&&An(r,o)&&(t.effectTag|=16),Ja(e,t),4&t.mode&&1!==n&&i.hidden?(t.expirationTime=t.childExpirationTime=1,t=null):(Ka(e,t,s,n),t=t.child),t;case 6:return null===e&&Ga(t),null;case 13:return us(e,t,n);case 4:return Xo(t,t.stateNode.containerInfo),r=t.pendingProps,null===e?t.child=Go(t,null,r,n):Ka(e,t,r,n),t.child;case 11:return r=t.type,i=t.pendingProps,i=t.elementType===r?i:ho(r,i),Xa(e,t,r,i,n);case 7:return Ka(e,t,t.pendingProps,n),t.child;case 8:return Ka(e,t,t.pendingProps.children,n),t.child;case 12:return Ka(e,t,t.pendingProps.children,n),t.child;case 10:e:{r=t.type._context,i=t.pendingProps,s=t.memoizedProps,o=i.value;var l=t.type._context;if(Ci(po,l._currentValue),l._currentValue=o,null!==s)if(l=s.value,o=ei(l,o)?0:0|("function"===typeof r._calculateChangedBits?r._calculateChangedBits(l,o):1073741823),0===o){if(s.children===i.children&&!Ii.current){t=hs(e,t,n);break e}}else for(l=t.child,null!==l&&(l.return=t);null!==l;){var u=l.dependencies;if(null!==u){s=l.child;for(var c=u.firstContext;null!==c;){if(c.context===r&&0!==(c.observedBits&o)){1===l.tag&&(c=Mo(n,null),c.tag=2,Co(l,c)),l.expirationTime=t&&e<=t}function du(e,t){var n=e.firstSuspendedTime,r=e.lastSuspendedTime;nt||0===n)&&(e.lastSuspendedTime=t),t<=e.lastPingedTime&&(e.lastPingedTime=0),t<=e.lastExpiredTime&&(e.lastExpiredTime=0)}function hu(e,t){t>e.firstPendingTime&&(e.firstPendingTime=t);var n=e.firstSuspendedTime;0!==n&&(t>=n?e.firstSuspendedTime=e.lastSuspendedTime=e.nextKnownPendingLevel=0:t>=e.lastSuspendedTime&&(e.lastSuspendedTime=t+1),t>e.nextKnownPendingLevel&&(e.nextKnownPendingLevel=t))}function pu(e,t){var n=e.lastExpiredTime;(0===n||n>t)&&(e.lastExpiredTime=t)}function gu(e,t,n,r){var i=t.current,o=wl(),s=Do.suspense;o=kl(o,i,s);e:if(n){n=n._reactInternalFiber;t:{if(ot(n)!==n||1!==n.tag)throw Error(a(170));var l=n;do{switch(l.tag){case 3:l=l.stateNode.context;break t;case 1:if(Ei(l.type)){l=l.stateNode.__reactInternalMemoizedMergedChildContext;break t}}l=l.return}while(null!==l);throw Error(a(171))}if(1===n.tag){var u=n.type;if(Ei(u)){n=Ni(n,u,l);break e}}n=l}else n=Ti;return null===t.context?t.context=n:t.pendingContext=n,t=Mo(o,s),t.payload={element:e},r=void 0===r?null:r,null!==r&&(t.callback=r),Co(i,t),Ol(i,o),o}function mu(e){if(e=e.current,!e.child)return null;switch(e.child.tag){case 5:return e.child.stateNode;default:return e.child.stateNode}}function vu(e,t){e=e.memoizedState,null!==e&&null!==e.dehydrated&&e.retryTime=m)return!1;for(v=u,c=e.md.helpers.parseLinkDestination(e.src,u,e.posMax),c.ok&&(p=e.md.normalizeLink(c.str),e.md.validateLink(p)?u=c.pos:p=""),v=u;u=m||41!==e.src.charCodeAt(u))&&(y=!0),u++}if(y){if("undefined"===typeof e.env.references)return!1;if(u=0?a=e.src.slice(v,u++):u=s+1):u=s+1,a||(a=e.src.slice(l,s)),f=e.env.references[r(a)],!f)return e.pos=g,!1;p=f.href,d=f.title}return t||(e.pos=l,e.posMax=s,h=e.push("link_open","a",1),h.attrs=n=[["href",p]],d&&n.push(["title",d]),e.md.inline.tokenize(e),h=e.push("link_close","a",-1)),e.pos=u,e.posMax=m,!0}},zTMp:function(e,t,n){"use strict";n.d(t,"a",function(){return o}),n.d(t,"b",function(){return f}),n.d(t,"c",function(){return d}),n.d(t,"d",function(){return h}),n.d(t,"e",function(){return g});var r=n("Qxkt"),i=n("bYtY");function o(e,t){var n={axesInfo:{},seriesInvolved:!1,coordSysAxesInfo:{},coordSysMap:{}};return a(n,e,t),n.seriesInvolved&&l(n,e),n}function a(e,t,n){var r=t.getComponent("tooltip"),o=t.getComponent("axisPointer"),a=o.get("link",!0)||[],l=[];Object(i["k"])(n.getCoordinateSystems(),function(n){if(n.axisPointerEnabled){var c=g(n.model),f=e.coordSysAxesInfo[c]={};e.coordSysMap[c]=n;var d=n.model,h=d.getModel("tooltip",r);if(Object(i["k"])(n.getAxes(),Object(i["i"])(b,!1,null)),n.getTooltipAxes&&r&&h.get("show")){var m="axis"===h.get("trigger"),v="cross"===h.get(["axisPointer","type"]),y=n.getTooltipAxes(h.get(["axisPointer","axis"]));(m||v)&&Object(i["k"])(y.baseAxes,Object(i["i"])(b,!v||"cross",m)),v&&Object(i["k"])(y.otherAxes,Object(i["i"])(b,"cross",!1))}}function b(r,i,c){var d=c.model.getModel("axisPointer",o),m=d.get("show");if(m&&("auto"!==m||r||p(d))){null==i&&(i=d.get("triggerTooltip")),d=r?s(c,h,o,t,r,i):d;var v=d.get("snap"),y=g(c.model),b=i||v||"category"===c.type,_=e.axesInfo[y]={key:y,axis:c,coordSys:n,axisPointerModel:d,triggerTooltip:i,involveSeries:b,snap:v,useHandle:p(d),seriesModels:[],linkGroup:null};f[y]=_,e.seriesInvolved=e.seriesInvolved||b;var x=u(a,c);if(null!=x){var w=l[x]||(l[x]={axesInfo:{}});w.axesInfo[y]=_,w.mapper=a[x].mapper,_.linkGroup=w}}}})}function s(e,t,n,o,a,s){var l=t.getModel("axisPointer"),u=["type","snap","lineStyle","shadowStyle","label","animation","animationDurationUpdate","animationEasingUpdate","z"],c={};Object(i["k"])(u,function(e){c[e]=Object(i["d"])(l.get(e))}),c.snap="category"!==e.type&&!!s,"cross"===l.get("type")&&(c.type="line");var f=c.label||(c.label={});if(null==f.show&&(f.show=!1),"cross"===a){var d=l.get(["label","show"]);if(f.show=null==d||d,!s){var h=c.lineStyle=l.get("crossStyle");h&&Object(i["j"])(f,h.textStyle)}}return e.model.getModel("axisPointer",new r["a"](c,n,o))}function l(e,t){t.eachSeries(function(t){var n=t.coordinateSystem,r=t.get(["tooltip","trigger"],!0),o=t.get(["tooltip","show"],!0);n&&"none"!==r&&!1!==r&&"item"!==r&&!1!==o&&!1!==t.get(["axisPointer","show"],!0)&&Object(i["k"])(e.coordSysAxesInfo[g(n.model)],function(e){var r=e.axis;n.getAxis(r.dim)===r&&(e.seriesModels.push(t),null==e.seriesDataCount&&(e.seriesDataCount=0),e.seriesDataCount+=t.getData().count())})})}function u(e,t){for(var n=t.model,r=t.dim,i=0;i=0||e===t}function f(e){var t=d(e);if(t){var n=t.axisPointerModel,r=t.axis.scale,i=n.option,o=n.get("status"),a=n.get("value");null!=a&&(a=r.parse(a));var s=p(n);null==o&&(i.status=s?"show":"hide");var l=r.getExtent().slice();l[0]>l[1]&&l.reverse(),(null==a||a>l[1])&&(a=l[1]),a-1}e.exports=i},"+Hau":function(e,t,n){"use strict";n.d(t,"d",function(){return s}),n.d(t,"c",function(){return l}),n.d(t,"b",function(){return u}),n.d(t,"a",function(){return c}),n.d(t,"e",function(){return f}),n.d(t,"i",function(){return p}),n.d(t,"B",function(){return m}),n.d(t,"y",function(){return v}),n.d(t,"m",function(){return y}),n.d(t,"q",function(){return b}),n.d(t,"l",function(){return _}),n.d(t,"h",function(){return x}),n.d(t,"r",function(){return w}),n.d(t,"n",function(){return O}),n.d(t,"j",function(){return S}),n.d(t,"w",function(){return M}),n.d(t,"f",function(){return C}),n.d(t,"o",function(){return T}),n.d(t,"u",function(){return j}),n.d(t,"z",function(){return I}),n.d(t,"s",function(){return D}),n.d(t,"k",function(){return A}),n.d(t,"x",function(){return E}),n.d(t,"g",function(){return P}),n.d(t,"p",function(){return L}),n.d(t,"v",function(){return N}),n.d(t,"A",function(){return R}),n.d(t,"t",function(){return z});var r=n("bYtY"),i=n("OELB"),o=n("71kh"),a=n("Qxkt"),s=1e3,l=60*s,u=60*l,c=24*u,f=365*c,d={year:"{yyyy}",month:"{MMM}",day:"{d}",hour:"{HH}:{mm}",minute:"{HH}:{mm}",second:"{HH}:{mm}:{ss}",millisecond:"{HH}:{mm}:{ss} {SSS}",none:"{yyyy}-{MM}-{dd} {HH}:{mm}:{ss} {SSS}"},h="{yyyy}-{MM}-{dd}",p={year:"{yyyy}",month:"{yyyy}-{MM}",day:h,hour:h+" "+d.hour,minute:h+" "+d.minute,second:h+" "+d.second,millisecond:d.none},g=["year","month","day","hour","minute","second","millisecond"],m=["year","half-year","quarter","month","week","half-week","day","half-day","quarter-day","hour","minute","second","millisecond"];function v(e,t){return e+="","0000".substr(0,t-e.length)+e}function y(e){switch(e){case"half-year":case"quarter":return"month";case"week":case"half-week":return"day";case"half-day":case"quarter-day":return"hour";default:return e}}function b(e){return e===y(e)}function _(e){switch(e){case"year":case"month":return"day";case"millisecond":return"millisecond";default:return"second"}}function x(e,t,n,r){var s=i["l"](e),l=s[S(n)](),u=s[M(n)]()+1,c=Math.floor((u-1)/4)+1,f=s[C(n)](),d=s["get"+(n?"UTC":"")+"Day"](),h=s[T(n)](),p=(h-1)%12+1,g=s[j(n)](),m=s[I(n)](),y=s[D(n)](),b=r instanceof a["a"]?r:Object(o["d"])(r||o["a"])||Object(o["c"])(),_=b.getModel("time"),x=_.get("month"),w=_.get("monthAbbr"),k=_.get("dayOfWeek"),O=_.get("dayOfWeekAbbr");return(t||"").replace(/{yyyy}/g,l+"").replace(/{yy}/g,l%100+"").replace(/{Q}/g,c+"").replace(/{MMMM}/g,x[u-1]).replace(/{MMM}/g,w[u-1]).replace(/{MM}/g,v(u,2)).replace(/{M}/g,u+"").replace(/{dd}/g,v(f,2)).replace(/{d}/g,f+"").replace(/{eeee}/g,k[d]).replace(/{ee}/g,O[d]).replace(/{e}/g,d+"").replace(/{HH}/g,v(h,2)).replace(/{H}/g,h+"").replace(/{hh}/g,v(p+"",2)).replace(/{h}/g,p+"").replace(/{mm}/g,v(g,2)).replace(/{m}/g,g+"").replace(/{ss}/g,v(m,2)).replace(/{s}/g,m+"").replace(/{SSS}/g,v(y,3)).replace(/{S}/g,y+"")}function w(e,t,n,i,o){var a=null;if("string"===typeof n)a=n;else if("function"===typeof n)a=n(e.value,t,{level:e.level});else{var s=r["m"]({},d);if(e.level>0)for(var l=0;l=0;--l)if(u[c]){a=u[c];break}a=a||s.none}if(r["s"](a)){var h=null==e.level?0:e.level>=0?e.level:a.length+e.level;h=Math.min(h,a.length-1),a=a[h]}}return x(new Date(e.value),a,o,i)}function k(e,t){var n=i["l"](e),r=n[M(t)]()+1,o=n[C(t)](),a=n[T(t)](),s=n[j(t)](),l=n[I(t)](),u=n[D(t)](),c=0===u,f=c&&0===l,d=f&&0===s,h=d&&0===a,p=h&&1===o,g=p&&1===r;return g?"year":p?"month":h?"day":d?"hour":f?"minute":c?"second":"millisecond"}function O(e,t,n){var r="number"===typeof e?i["l"](e):e;switch(t=t||k(e,n),t){case"year":return r[S(n)]();case"half-year":return r[M(n)]()>=6?1:0;case"quarter":return Math.floor((r[M(n)]()+1)/4);case"month":return r[M(n)]();case"day":return r[C(n)]();case"half-day":return r[T(n)]()/24;case"hour":return r[T(n)]();case"minute":return r[j(n)]();case"second":return r[I(n)]();case"millisecond":return r[D(n)]()}}function S(e){return e?"getUTCFullYear":"getFullYear"}function M(e){return e?"getUTCMonth":"getMonth"}function C(e){return e?"getUTCDate":"getDate"}function T(e){return e?"getUTCHours":"getHours"}function j(e){return e?"getUTCMinutes":"getMinutes"}function I(e){return e?"getUTCSeconds":"getSeconds"}function D(e){return e?"getUTCMilliseconds":"getMilliseconds"}function A(e){return e?"setUTCFullYear":"setFullYear"}function E(e){return e?"setUTCMonth":"setMonth"}function P(e){return e?"setUTCDate":"setDate"}function L(e){return e?"setUTCHours":"setHours"}function N(e){return e?"setUTCMinutes":"setMinutes"}function R(e){return e?"setUTCSeconds":"setSeconds"}function z(e){return e?"setUTCMilliseconds":"setMilliseconds"}},"+K+b":function(e,t,n){var r=n("JHRd");function i(e){var t=new e.constructor(e.byteLength);return new r(t).set(new r(e)),t}e.exports=i},"+Qka":function(e,t,n){var r=n("fmRc"),i=n("t2Dn"),o=n("cq/+"),a=n("T1AV"),s=n("GoyQ"),l=n("mTTR"),u=n("itsj");function c(e,t,n,f,d){e!==t&&o(t,function(o,l){if(d||(d=new r),s(o))a(e,t,l,n,c,f,d);else{var h=f?f(u(e,l),o,l+"",e,t,d):void 0;void 0===h&&(h=o),i(e,l,h)}},l)}e.exports=c},"+TT/":function(e,t,n){"use strict";n.d(t,"a",function(){return f}),n.d(t,"d",function(){return d}),n.d(t,"f",function(){return h}),n.d(t,"b",function(){return p}),n.d(t,"e",function(){return g}),n.d(t,"c",function(){return m});var r=n("bYtY"),i=n("mFDi"),o=n("OELB"),a=n("7aKB"),s=r["k"],l=["left","right","top","bottom","width","height"],u=[["width","left","right"],["height","top","bottom"]];function c(e,t,n,r,i){var o=0,a=0;null==r&&(r=1/0),null==i&&(i=1/0);var s=0;t.eachChild(function(l,u){var c,f,d=l.getBoundingRect(),h=t.childAt(u+1),p=h&&h.getBoundingRect();if("horizontal"===e){var g=d.width+(p?-p.x+d.x:0);c=o+g,c>r||l.newline?(o=0,c=g,a+=s+n,s=d.height):s=Math.max(s,d.height)}else{var m=d.height+(p?-p.y+d.y:0);f=a+m,f>i||l.newline?(o+=s+n,a=0,f=m,s=d.width):s=Math.max(s,d.width)}l.newline||(l.x=o,l.y=a,l.markRedraw(),"horizontal"===e?o=c+n:a=f+n)})}var f=c;r["i"](c,"vertical"),r["i"](c,"horizontal");function d(e,t,n){n=a["g"](n||0);var r=t.width,s=t.height,l=Object(o["m"])(e.left,r),u=Object(o["m"])(e.top,s),c=Object(o["m"])(e.right,r),f=Object(o["m"])(e.bottom,s),d=Object(o["m"])(e.width,r),h=Object(o["m"])(e.height,s),p=n[2]+n[0],g=n[1]+n[3],m=e.aspect;switch(isNaN(d)&&(d=r-c-g-l),isNaN(h)&&(h=s-f-p-u),null!=m&&(isNaN(d)&&isNaN(h)&&(m>r/s?d=.8*r:h=.8*s),isNaN(d)&&(d=m*h),isNaN(h)&&(h=d/m)),isNaN(l)&&(l=r-c-d-g),isNaN(u)&&(u=s-f-h-p),e.left||e.right){case"center":l=r/2-d/2-n[3];break;case"right":l=r-d-g;break}switch(e.top||e.bottom){case"middle":case"center":u=s/2-h/2-n[0];break;case"bottom":u=s-h-p;break}l=l||0,u=u||0,isNaN(d)&&(d=r-g-l-(c||0)),isNaN(h)&&(h=s-p-u-(f||0));var v=new i["a"](l+n[3],u+n[0],d,h);return v.margin=n,v}function h(e,t,n,o,a){var s=!a||!a.hv||a.hv[0],l=!a||!a.hv||a.hv[1],u=a&&a.boundingMode||"all";if(s||l){var c;if("raw"===u)c="group"===e.type?new i["a"](0,0,+t.width||0,+t.height||0):e.getBoundingRect();else if(c=e.getBoundingRect(),e.needLocalTransform()){var f=e.getLocalTransform();c=c.clone(),c.applyTransform(f)}var h=d(r["j"]({width:c.width,height:c.height},t),n,o),p=s?h.x-c.x:0,g=l?h.y-c.y:0;"raw"===u?(e.x=p,e.y=g):(e.x+=p,e.y+=g),e.markRedraw()}}function p(e){var t=e.layoutMode||e.constructor.layoutMode;return r["z"](t)?t:t?{type:t}:null}function g(e,t,n){var i=n&&n.ignoreSize;!r["s"](i)&&(i=[i,i]);var o=l(u[0],0),a=l(u[1],1);function l(n,r){var o={},a=0,l={},u=0,d=2;if(s(n,function(t){l[t]=e[t]}),s(n,function(e){c(t,e)&&(o[e]=l[e]=t[e]),f(o,e)&&a++,f(l,e)&&u++}),i[r])return f(t,n[1])?l[n[2]]=null:f(t,n[2])&&(l[n[1]]=null),l;if(u!==d&&a){if(a>=d)return o;for(var h=0;h0?"top":"bottom",r="center"):Object(f["h"])(o-_)?(i=n>0?"bottom":"top",r="center"):(i="middle",r=o>0&&o<_?n>0?"right":"left":n>0?"left":"right"),{rotation:o,textAlign:r,textVerticalAlign:i}},e.makeAxisEventDataBase=function(e){var t={componentType:e.mainType,componentIndex:e.componentIndex};return t[e.mainType+"Index"]=e.componentIndex,t},e.isLabelSilent=function(e){var t=e.get("tooltip");return e.get("silent")||!(e.get("triggerEvent")||t&&t.show)},e}(),w={axisLine:function(e,t,n,i){var a=t.get(["axisLine","show"]);if("auto"===a&&e.handleAutoShown&&(a=e.handleAutoShown("axisLine")),a){var s=t.axis.getExtent(),l=i.transform,u=[s[0],0],c=[s[1],0];l&&(Object(p["b"])(u,u,l),Object(p["b"])(c,c,l));var f=Object(r["m"])({lineCap:"round"},t.getModel(["axisLine","lineStyle"]).getLineStyle()),h=new o["a"]({subPixelOptimize:!0,shape:{x1:u[0],y1:u[1],x2:c[0],y2:c[1]},style:f,strokeContainThreshold:e.strokeContainThreshold||5,silent:!0,z2:1});h.anid="line",n.add(h);var g=t.get(["axisLine","symbol"]);if(null!=g){var m=t.get(["axisLine","symbolSize"]);"string"===typeof g&&(g=[g,g]),"string"!==typeof m&&"number"!==typeof m||(m=[m,m]);var v=Object(d["b"])(t.get(["axisLine","symbolOffset"])||0,m),y=m[0],b=m[1];Object(r["k"])([{rotate:e.rotation+Math.PI/2,offset:v[0],r:0},{rotate:e.rotation-Math.PI/2,offset:v[1],r:Math.sqrt((u[0]-c[0])*(u[0]-c[0])+(u[1]-c[1])*(u[1]-c[1]))}],function(t,r){if("none"!==g[r]&&null!=g[r]){var i=Object(d["a"])(g[r],-y/2,-b/2,y,b,f.stroke,!0),o=t.r+t.offset;i.attr({rotation:t.rotate,x:u[0]+o*Math.cos(e.rotation),y:u[1]-o*Math.sin(e.rotation),silent:!0,z2:11}),n.add(i)}})}}},axisTickLabel:function(e,t,n,i){var o=j(n,i,t,e),a=D(n,i,t,e);if(O(t,a,o),I(n,i,t,e.tickDirection),t.get(["axisLabel","hideOverlap"])){var s=y(Object(r["F"])(a,function(e){return{label:e,priority:e.z2,defaultAttr:{ignore:e.ignore}}}));b(s)}},axisName:function(e,t,n,i){var o=Object(r["L"])(e.axisName,t.get("name"));if(o){var c,f,d=t.get("nameLocation"),h=e.nameDirection,p=t.getModel("nameTextStyle"),g=t.get("nameGap")||0,m=t.axis.getExtent(),v=m[0]>m[1]?-1:1,y=["start"===d?m[0]-v*g:"end"===d?m[1]+v*g:(m[0]+m[1])/2,C(d)?e.labelOffset+h*g:0],b=t.get("nameRotate");null!=b&&(b=b*_/180),C(d)?c=x.innerTextLayout(e.rotation,null!=b?b:e.rotation,h):(c=k(e.rotation,d,b||0,m),f=e.axisNameAvailableWidth,null!=f&&(f=Math.abs(f/Math.sin(c.rotation)),!isFinite(f)&&(f=null)));var w=p.getFont(),O=t.get("nameTruncate",!0)||{},S=O.ellipsis,M=Object(r["L"])(e.nameTruncateMaxWidth,O.maxWidth,f),T=new a["a"]({x:y[0],y:y[1],rotation:c.rotation,silent:x.isLabelSilent(t),style:Object(u["a"])(p,{text:o,font:w,overflow:"truncate",width:M,ellipsis:S,fill:p.getTextColor()||t.get(["axisLine","lineStyle","color"]),align:p.get("align")||c.textAlign,verticalAlign:p.get("verticalAlign")||c.textVerticalAlign}),z2:1});if(s["setTooltipConfig"]({el:T,componentModel:t,itemName:o}),T.__fullText=o,T.anid="name",t.get("triggerEvent")){var j=x.makeAxisEventDataBase(t);j.targetType="axisName",j.name=o,Object(l["a"])(T).eventData=j}i.add(T),T.updateTransform(),n.add(T),T.decomposeTransform()}}};function k(e,t,n,r){var i,o,a=Object(f["o"])(n-e),s=r[0]>r[1],l="start"===t&&!s||"start"!==t&&s;return Object(f["h"])(a-_/2)?(o=l?"bottom":"top",i="center"):Object(f["h"])(a-1.5*_)?(o=l?"top":"bottom",i="center"):(o="middle",i=a<1.5*_&&a>_/2?l?"left":"right":l?"right":"left"),{rotation:a,textAlign:i,textVerticalAlign:o}}function O(e,t,n){if(!Object(g["i"])(e.axis)){var r=e.get(["axisLabel","showMinLabel"]),i=e.get(["axisLabel","showMaxLabel"]);t=t||[],n=n||[];var o=t[0],a=t[1],s=t[t.length-1],l=t[t.length-2],u=n[0],c=n[1],f=n[n.length-1],d=n[n.length-2];!1===r?(S(o),S(u)):M(o,a)&&(r?(S(a),S(c)):(S(o),S(u))),!1===i?(S(s),S(f)):M(l,s)&&(i?(S(l),S(d)):(S(s),S(f)))}}function S(e){e&&(e.ignore=!0)}function M(e,t){var n=e&&e.getBoundingRect().clone(),r=t&&t.getBoundingRect().clone();if(n&&r){var i=h["c"]([]);return h["f"](i,i,-e.rotation),n.applyTransform(h["e"]([],i,e.getLocalTransform())),r.applyTransform(h["e"]([],i,t.getLocalTransform())),n.intersect(r)}}function C(e){return"middle"===e||"center"===e}function T(e,t,n,r,i){for(var a=[],s=[],l=[],u=0;ut&&(t=e[n]);return isFinite(t)?t:NaN},min:function(e){for(var t=1/0,n=0;n10&&"cartesian2d"===s.type&&a){var u=s.getBaseAxis(),c=s.getOtherAxis(u),f=u.getExtent(),d=n.getDevicePixelRatio(),h=Math.abs(f[1]-f[0])*(d||1),p=Math.round(l/h);if(p>1){"lttb"===a&&e.setData(o.lttbDownSample(o.mapDimension(c.dim),1/p));var g=void 0;"string"===typeof a?g=r[a]:"function"===typeof a&&(g=a),g&&e.setData(o.downSample(o.mapDimension(c.dim),1/p,g,i))}}}}}},"/f6Q":function(e,t,n){"use strict";var r=n("AGgm").isSpace;e.exports=function(e,t,n,i){var o,a,s,l,u=e.bMarks[t]+e.tShift[t],c=e.eMarks[t];if(e.sCount[t]-e.blkIndent>=4)return!1;if(o=e.src.charCodeAt(u++),42!==o&&45!==o&&95!==o)return!1;a=1;while(u=0},t.prototype.getOrient=function(){return"vertical"===this.get("orient")?{index:1,name:"vertical"}:{index:0,name:"horizontal"}},t.type="legend.plain",t.dependencies=["series"],t.defaultOption={zlevel:0,z:4,show:!0,orient:"horizontal",left:"center",top:0,align:"auto",backgroundColor:"rgba(0,0,0,0)",borderColor:"#ccc",borderRadius:0,borderWidth:0,padding:5,itemGap:10,itemWidth:25,itemHeight:14,symbolRotate:"inherit",symbolKeepAspect:!0,inactiveColor:"#ccc",inactiveBorderColor:"#ccc",inactiveBorderWidth:"auto",itemStyle:{color:"inherit",opacity:"inherit",borderColor:"inherit",borderWidth:"auto",borderCap:"inherit",borderJoin:"inherit",borderDashOffset:"inherit",borderMiterLimit:"inherit"},lineStyle:{width:"auto",color:"inherit",inactiveColor:"#ccc",inactiveWidth:2,opacity:"inherit",type:"inherit",cap:"inherit",join:"inherit",dashOffset:"inherit",miterLimit:"inherit"},textStyle:{color:"#333"},selectedMode:!0,selector:!1,selectorLabel:{show:!0,borderRadius:10,padding:[3,5,3,5],fontSize:12,fontFamily:"sans-serif",color:"#666",borderWidth:1,borderColor:"#666"},emphasis:{selectorLabel:{show:!0,color:"#eee",backgroundColor:"#666"}},selectorPosition:"auto",selectorItemGap:7,selectorButtonGap:10,tooltip:{show:!1}},t}(l["a"]),f=c,d=n("Qe9p"),h=n("LcXL"),p=n("dqUG"),g=n("x6Kt"),m=n("IwbS"),v=n("fWwa"),y=n("eDfh"),b=n("eRkO"),_=n("+TT/"),x=n("sS/r"),w=n("oVpE"),k=o["i"],O=o["k"],S=h["a"],M=function(e){function t(){var n=null!==e&&e.apply(this,arguments)||this;return n.type=t.type,n.newlineDisabled=!1,n}return Object(i["a"])(t,e),t.prototype.init=function(){this.group.add(this._contentGroup=new S),this.group.add(this._selectorGroup=new S),this._isFirstRender=!0},t.prototype.getContentGroup=function(){return this._contentGroup},t.prototype.getSelectorGroup=function(){return this._selectorGroup},t.prototype.render=function(e,t,n){var r=this._isFirstRender;if(this._isFirstRender=!1,this.resetInner(),e.get("show",!0)){var i=e.get("align"),a=e.get("orient");i&&"auto"!==i||(i="right"===e.get("left")&&"vertical"===a?"right":"left");var s=e.get("selector",!0),l=e.get("selectorPosition",!0);!s||l&&"auto"!==l||(l="horizontal"===a?"end":"start"),this.renderInner(i,e,t,n,s,a,l);var u=e.getBoxLayoutParams(),c={width:n.getWidth(),height:n.getHeight()},f=e.get("padding"),d=_["d"](u,c,f),h=this.layoutInner(e,i,d,r,s,l),p=_["d"](o["j"]({width:h.width,height:h.height},u),c,f);this.group.x=p.x-h.x,this.group.y=p.y-h.y,this.group.markRedraw(),this.group.add(this._backgroundEl=Object(b["b"])(h,e))}},t.prototype.resetInner=function(){this.getContentGroup().removeAll(),this._backgroundEl&&this.group.remove(this._backgroundEl),this.getSelectorGroup().removeAll()},t.prototype.renderInner=function(e,t,n,r,i,a,s){var l=this.getContentGroup(),u=o["g"](),c=t.get("selectedMode"),f=[];n.eachRawSeries(function(e){!e.get("legendHoverLink")&&f.push(e.id)}),O(t.getData(),function(i,o){var a=i.get("name");if(!this.newlineDisabled&&(""===a||"\n"===a)){var s=new S;return s.newline=!0,void l.add(s)}var h=n.getSeriesByName(a)[0];if(!u.get(a)){if(h){var p=h.getData(),g=p.getVisual("legendLineStyle")||{},m=p.getVisual("legendIcon"),v=p.getVisual("style"),y=this._createItem(h,a,o,i,t,e,g,v,m,c);y.on("click",k(j,a,null,r,f)).on("mouseover",k(D,h.name,null,r,f)).on("mouseout",k(A,h.name,null,r,f)),u.set(a,!0)}else n.eachRawSeries(function(n){if(!u.get(a)&&n.legendVisualProvider){var s=n.legendVisualProvider;if(!s.containName(a))return;var l=s.indexOfName(a),h=s.getItemVisual(l,"style"),p=s.getItemVisual(l,"legendIcon"),g=Object(d["d"])(h.fill);g&&0===g[3]&&(g[3]=.2,h.fill=Object(d["e"])(g,"rgba"));var m=this._createItem(n,a,o,i,t,e,{},h,p,c);m.on("click",k(j,null,a,r,f)).on("mouseover",k(D,null,a,r,f)).on("mouseout",k(A,null,a,r,f)),u.set(a,!0)}},this);0}},this),i&&this._createSelector(i,t,r,a,s)},t.prototype._createSelector=function(e,t,n,r,i){var o=this.getSelectorGroup();O(e,function(e){var r=e.type,i=new p["a"]({style:{x:0,y:0,align:"center",verticalAlign:"middle"},onclick:function(){n.dispatchAction({type:"all"===r?"legendAllSelect":"legendInverseSelect"})}});o.add(i);var a=t.getModel("selectorLabel"),s=t.getModel(["emphasis","selectorLabel"]);Object(y["e"])(i,{normal:a,emphasis:s},{defaultText:e.title}),Object(v["m"])(i)})},t.prototype._createItem=function(e,t,n,r,i,o,a,s,l,u){var c=e.visualDrawType,f=i.get("itemWidth"),d=i.get("itemHeight"),h=i.isSelected(t),b=r.get("symbolRotate"),_=r.get("symbolKeepAspect"),x=r.get("icon");l=x||l||"roundRect";var w=C(l,r,a,s,c,h),k=new S,O=r.getModel("textStyle");if("function"!==typeof e.getLegendIcon||x&&"inherit"!==x){var M="inherit"===x&&e.getData().getVisual("symbol")?"inherit"===b?e.getData().getVisual("symbolRotate"):b:0;k.add(T({itemWidth:f,itemHeight:d,icon:l,iconRotate:M,itemStyle:w.itemStyle,lineStyle:w.lineStyle,symbolKeepAspect:_}))}else k.add(e.getLegendIcon({itemWidth:f,itemHeight:d,icon:l,iconRotate:b,itemStyle:w.itemStyle,lineStyle:w.lineStyle,symbolKeepAspect:_}));var j="left"===o?f+5:-5,I=o,D=i.get("formatter"),A=t;"string"===typeof D&&D?A=D.replace("{name}",null!=t?t:""):"function"===typeof D&&(A=D(t));var E=r.get("inactiveColor");k.add(new p["a"]({style:Object(y["a"])(O,{text:A,x:j,y:d/2,fill:h?O.getTextColor():E,align:I,verticalAlign:"middle"})}));var P=new g["a"]({shape:k.getBoundingRect(),invisible:!0}),L=r.getModel("tooltip");return L.get("show")&&m["setTooltipConfig"]({el:P,componentModel:i,itemName:t,itemTooltipOption:L.option}),k.add(P),k.eachChild(function(e){e.silent=!0}),P.silent=!u,this.getContentGroup().add(k),Object(v["m"])(k),k.__legendDataIndex=n,k},t.prototype.layoutInner=function(e,t,n,r,i,o){var a=this.getContentGroup(),s=this.getSelectorGroup();_["a"](e.get("orient"),a,e.get("itemGap"),n.width,n.height);var l=a.getBoundingRect(),u=[-l.x,-l.y];if(s.markRedraw(),a.markRedraw(),i){_["a"]("horizontal",s,e.get("selectorItemGap",!0));var c=s.getBoundingRect(),f=[-c.x,-c.y],d=e.get("selectorButtonGap",!0),h=e.getOrient().index,p=0===h?"width":"height",g=0===h?"height":"width",m=0===h?"y":"x";"end"===o?f[h]+=l[p]+d:u[h]+=c[p]+d,f[1-h]+=l[g]/2-c[g]/2,s.x=f[0],s.y=f[1],a.x=u[0],a.y=u[1];var v={x:0,y:0};return v[p]=l[p]+d+c[p],v[g]=Math.max(l[g],c[g]),v[m]=Math.min(0,c[m]+f[1-h]),v}return a.x=u[0],a.y=u[1],this.group.getBoundingRect()},t.prototype.remove=function(){this.getContentGroup().removeAll(),this._isFirstRender=!0},t.type="legend.plain",t}(x["a"]);function C(e,t,n,r,i,o){function a(e,t){"auto"===e.lineWidth&&(e.lineWidth=t.lineWidth>0?2:0),O(e,function(n,r){"inherit"===e[r]&&(e[r]=t[r])})}var s=t.getModel("itemStyle"),l=s.getItemStyle(),u=0===e.lastIndexOf("empty",0)?"fill":"stroke";l.decal=r.decal,"inherit"===l.fill&&(l.fill=r[i]),"inherit"===l.stroke&&(l.stroke=r[u]),"inherit"===l.opacity&&(l.opacity=("fill"===i?r:n).opacity),a(l,r);var c=t.getModel("lineStyle"),f=c.getLineStyle();if(a(f,n),"auto"===l.fill&&(l.fill=r.fill),"auto"===l.stroke&&(l.stroke=r.fill),"auto"===f.stroke&&(f.stroke=r.fill),!o){var d=t.get("inactiveBorderWidth"),h=l[u];l.lineWidth="auto"===d?r.lineWidth>0&&h?2:0:l.lineWidth,l.fill=t.get("inactiveColor"),l.stroke=t.get("inactiveBorderColor"),f.stroke=c.get("inactiveColor"),f.lineWidth=c.get("inactiveWidth")}return{itemStyle:l,lineStyle:f}}function T(e){var t=e.icon||"roundRect",n=Object(w["a"])(t,0,0,e.itemWidth,e.itemHeight,e.itemStyle.fill,e.symbolKeepAspect);return n.setStyle(e.itemStyle),n.rotation=(e.iconRotate||0)*Math.PI/180,n.setOrigin([e.itemWidth/2,e.itemHeight/2]),t.indexOf("empty")>-1&&(n.style.stroke=n.style.fill,n.style.fill="#fff",n.style.lineWidth=2),n}function j(e,t,n,r){A(e,t,n,r),n.dispatchAction({type:"legendToggleSelect",name:null!=e?e:t}),D(e,t,n,r)}function I(e){var t,n=e.getZr().storage.getDisplayList(),r=0,i=n.length;while(rn[i],m=[-d.x,-d.y];t||(m[r]=u[l]);var v=[0,0],y=[-h.x,-h.y],b=o["M"](e.get("pageButtonGap",!0),e.get("itemGap",!0));if(p){var x=e.get("pageButtonPosition",!0);"end"===x?y[r]+=n[i]-h[i]:v[r]+=h[i]+b}y[1-r]+=d[a]/2-h[a]/2,u.setPosition(m),c.setPosition(v),f.setPosition(y);var w={x:0,y:0};if(w[i]=p?n[i]:d[i],w[a]=Math.max(d[a],h[a]),w[s]=Math.min(0,h[s]+y[1-r]),c.__rectSize=n[i],p){var k={x:0,y:0};k[i]=Math.max(n[i]-h[i]-b,0),k[a]=w[a],c.setClipPath(new g["a"]({shape:k})),c.__rectSize=k[i]}else f.eachChild(function(e){e.attr({invisible:!0,silent:!0})});var O=this._getPageInfo(e);return null!=O.pageIndex&&Y["h"](u,{x:O.contentPosition[0],y:O.contentPosition[1]},p?e:null),this._updatePageInfoView(e,O),w},t.prototype._pageGo=function(e,t,n){var r=this._getPageInfo(t)[e];null!=r&&n.dispatchAction({type:"legendScroll",scrollDataIndex:r,legendId:t.id})},t.prototype._updatePageInfoView=function(e,t){var n=this._controllerGroup;o["k"](["pagePrev","pageNext"],function(r){var i=r+"DataIndex",o=null!=t[i],a=n.childOfName(r);a&&(a.setStyle("fill",o?e.get("pageIconColor",!0):e.get("pageIconInactiveColor",!0)),a.cursor=o?"pointer":"default")});var r=n.childOfName("pageText"),i=e.get("pageFormatter"),a=t.pageIndex,s=null!=a?a+1:0,l=t.pageCount;r&&i&&r.setStyle("text",o["A"](i)?i.replace("{current}",null==s?"":s+"").replace("{total}",null==l?"":l+""):i({current:s,total:l}))},t.prototype._getPageInfo=function(e){var t=e.get("scrollDataIndex",!0),n=this.getContentGroup(),r=this._containerGroup.__rectSize,i=e.getOrient().index,o=U[i],a=W[i],s=this._findTargetItemIndex(t),l=n.children(),u=l[s],c=l.length,f=c?1:0,d={contentPosition:[n.x,n.y],pageCount:f,pageIndex:f-1,pagePrevDataIndex:null,pageNextDataIndex:null};if(!u)return d;var h=y(u);d.contentPosition[i]=-h.s;for(var p=s+1,g=h,m=h,v=null;p<=c;++p)v=y(l[p]),(!v&&m.e>g.s+r||v&&!b(v,g.s))&&(g=m.i>g.i?m:v,g&&(null==d.pageNextDataIndex&&(d.pageNextDataIndex=g.i),++d.pageCount)),m=v;for(p=s-1,g=h,m=h,v=null;p>=-1;--p)v=y(l[p]),v&&b(m,v.s)||!(g.i=t&&e.s<=t+r}},t.prototype._findTargetItemIndex=function(e){if(!this._showController)return 0;var t,n,r=this.getContentGroup();return r.eachChild(function(r,i){var o=r.__legendDataIndex;null==n&&null!=o&&(n=i),o===e&&(t=i)}),null!=t?t:n},t.type="legend.scroll",t}(E),q=H;function Z(e){e.registerAction("legendScroll","legendscroll",function(e,t){var n=e.scrollDataIndex;null!=n&&t.eachComponent({mainType:"legend",subType:"scroll",query:e},function(e){e.setScrollDataIndex(n)})})}function K(e){Object(r["a"])(R),e.registerComponentModel(V),e.registerComponentView(q),Z(e)}function X(e){Object(r["a"])(R),Object(r["a"])(K)}n.d(t,"a",function(){return X})},"03A+":function(e,t,n){var r=n("JTzB"),i=n("ExA7"),o=Object.prototype,a=o.hasOwnProperty,s=o.propertyIsEnumerable,l=r(function(){return arguments}())?r:function(e){return i(e)&&a.call(e,"callee")&&!s.call(e,"callee")};e.exports=l},"0Cz8":function(e,t,n){var r=n("Xi7e"),i=n("ebwN"),o=n("e4Nc"),a=200;function s(e,t){var n=this.__data__;if(n instanceof r){var s=n.__data__;if(!i||s.length65535?l:u}function p(){return[1/0,-1/0]}function g(e){var t=e.constructor;return t===Array?e.slice():new t(e)}function m(e,t,n,r,i){var o=d[n||"float"];if(i){var a=e[t],s=a&&a.length;if(s!==r){for(var l=new o(r),u=0;uv[1]&&(v[1]=g)}return this._rawCount=this._count=l,{start:s,end:l}},e.prototype._initDataFromProvider=function(e,t,n){for(var r=this._provider,o=this._chunks,a=this._dimensions,s=a.length,l=this._rawExtent,u=Object(i["F"])(a,function(e){return e.property}),c=0;cb[1]&&(b[1]=y)}}!r.persistent&&r.clean&&r.clean(),this._rawCount=this._count=t,this._extent=[]},e.prototype.count=function(){return this._count},e.prototype.get=function(e,t){if(!(t>=0&&t=0&&t=this._rawCount||e<0)return-1;if(!this._indices)return e;var t=this._indices,n=t[e];if(null!=n&&ne))return o;i=o-1}}return-1},e.prototype.indicesOfNearest=function(e,t,n){var r=this._chunks,i=r[e],o=[];if(!i)return o;null==n&&(n=1/0);for(var a=1/0,s=-1,l=0,u=0,c=this.count();u=0&&s<0)&&(a=h,s=d,l=0),d===s&&(o[l++]=u))}return o.length=l,o},e.prototype.getIndices=function(){var e,t=this._indices;if(t){var n=t.constructor,r=this._count;if(n===Array){e=new n(r);for(var i=0;i=f&&b<=d||isNaN(b))&&(l[u++]=m),m++}g=!0}else if(2===o){v=p[r[0]];var _=p[r[1]],x=e[r[1]][0],w=e[r[1]][1];for(y=0;y=f&&b<=d||isNaN(b))&&(k>=x&&k<=w||isNaN(k))&&(l[u++]=m),m++}g=!0}}if(!g)if(1===o)for(y=0;y=f&&b<=d||isNaN(b))&&(l[u++]=O)}else for(y=0;ye[C][1])&&(S=!1)}S&&(l[u++]=t.getRawIndex(y))}return uv[1]&&(v[1]=m)}}}},e.prototype.lttbDownSample=function(e,t){var n,r,i,o=this.clone([e],!0),a=o._chunks,s=a[e],l=this.count(),u=0,c=Math.floor(1/t),f=this.getRawIndex(0),d=new(h(this._rawCount))(Math.ceil(l/c)+2);d[u++]=f;for(var p=1;pn&&(n=r,i=_))}d[u++]=i,f=i}return d[u++]=this.getRawIndex(l-1),o._count=u,o._indices=d,o.getRawIndex=this._getRawIdx,o},e.prototype.downSample=function(e,t,n,r){for(var i=this.clone([e],!0),o=i._chunks,a=[],s=Math.floor(1/t),l=o[e],u=this.count(),c=i._rawExtent[e]=p(),f=new(h(this._rawCount))(Math.ceil(u/s)),d=0,g=0;gu-g&&(s=u-g,a.length=s);for(var m=0;mc[1]&&(c[1]=y),f[d++]=b}return i._count=d,i._indices=f,i._updateGetRawIdx(),i},e.prototype.each=function(e,t){if(this._count)for(var n=e.length,r=this._chunks,i=0,o=this.count();is&&(s=c)}return r=[a,s],this._extent[e]=r,r},e.prototype.getRawDataItem=function(e){var t=this.getRawIndex(e);if(this._provider.persistent)return this._provider.getItem(t);for(var n=[],r=this._chunks,i=0;i=0?this._indices[e]:-1},e.prototype._updateGetRawIdx=function(){this.getRawIndex=this._indices?this._getRawIdx:this._getRawIdxIdentity},e.internalField=function(){function e(e,t,n,r){return Object(o["b"])(e[r],this._dimensions[r])}r={arrayRows:e,objectRows:function(e,t,n,r){return Object(o["b"])(e[t],this._dimensions[r])},keyedColumns:e,original:function(e,t,n,r){var i=e&&(null==e.value?e:e.value);return Object(o["b"])(i instanceof Array?i[r]:i,this._dimensions[r])},typedArray:function(e,t,n,r){return e[r]}}}(),e}();t["b"]=v},"1M3H":function(e,t,n){"use strict";e.exports=n("CK61")},"1nBO":function(e,t,n){"use strict";var r=n("AGgm").normalizeReference,i=n("AGgm").isSpace;e.exports=function(e,t,n,o){var a,s,l,u,c,f,d,h,p,g,m,v,y,b,_,x,w=0,k=e.bMarks[t]+e.tShift[t],O=e.eMarks[t],S=t+1;if(e.sCount[t]-e.blkIndent>=4)return!1;if(91!==e.src.charCodeAt(k))return!1;while(++k3)&&!(e.sCount[S]<0)){for(b=!1,f=0,d=_.length;f0){var h=d.duration,p=d.delay,g=d.easing,m={duration:h,delay:p||0,easing:g,done:s,force:!!s||!!l,setToFinal:!f,scope:e,during:l};c?t.animateFrom(n,m):t.animateTo(n,m)}else t.stopAnimation(),!c&&t.attr(n),l&&l(1),s&&s()}function l(e,t,n,r,i,o){s("update",e,t,n,r,i,o)}function u(e,t,n,r,i,o){s("init",e,t,n,r,i,o)}function c(e){if(!e.__zr)return!0;for(var t=0;t32))return l;if(41===i){if(0===o)break;o--}t++}}return s===t?l:0!==o?l:(l.str=r(e.slice(s,t)),l.lines=a,l.pos=t,l.ok=!0,l)}},"5Tg0":function(e,t,n){(function(e){var r=n("Kz5y"),i=t&&!t.nodeType&&t,o=i&&"object"==typeof e&&e&&!e.nodeType&&e,a=o&&o.exports===i,s=a?r.Buffer:void 0,l=s?s.allocUnsafe:void 0;function u(e,t){if(t)return e.slice();var n=e.length,r=l?l(n):new e.constructor(n);return e.copy(r),r}e.exports=u}).call(this,n("YuTi")(e))},"6A5J":function(e,t,n){"use strict";var r=n("AGgm").isSpace;e.exports=function(e,t,n,i){var o,a,s,l,u,c,f,d,h,p,g,m,v,y,b,_,x,w,k,O,S=e.lineMax,M=e.bMarks[t]+e.tShift[t],C=e.eMarks[t];if(e.sCount[t]-e.blkIndent>=4)return!1;if(62!==e.src.charCodeAt(M++))return!1;if(i)return!0;l=h=e.sCount[t]+1,32===e.src.charCodeAt(M)?(M++,l++,h++,o=!1,_=!0):9===e.src.charCodeAt(M)?(_=!0,(e.bsCount[t]+h)%4===3?(M++,l++,h++,o=!1):o=!0):_=!1,p=[e.bMarks[t]],e.bMarks[t]=M;while(M=C,y=[e.sCount[t]],e.sCount[t]=h-l,b=[e.tShift[t]],e.tShift[t]=M-e.bMarks[t],w=e.md.block.ruler.getRules("blockquote"),v=e.parentType,e.parentType="blockquote",d=t+1;d=C)break;if(62!==e.src.charCodeAt(M++)||O){if(c)break;for(x=!1,s=0,u=w.length;s=C,g.push(e.bsCount[d]),e.bsCount[d]=e.sCount[d]+1+(_?1:0),y.push(e.sCount[d]),e.sCount[d]=h-l,b.push(e.tShift[d]),e.tShift[d]=M-e.bMarks[d]}}for(m=e.blkIndent,e.blkIndent=0,k=e.push("blockquote_open","blockquote",1),k.markup=">",k.map=f=[t,0],e.md.block.tokenize(e,t,d),k=e.push("blockquote_close","blockquote",-1),k.markup=">",e.lineMax=S,e.parentType=v,f[1]=e.line,s=0;s-1?l:c}():c;function p(e,t){e=e.toUpperCase(),d[e]=new r["a"](t),f[e]=t}function g(e){if(Object(s["A"])(e)){var t=f[e.toUpperCase()]||{};return e===l||e===u?Object(s["d"])(t):Object(s["G"])(Object(s["d"])(t),Object(s["d"])(f[c]),!1)}return Object(s["G"])(Object(s["d"])(e),Object(s["d"])(f[c]),!1)}function m(e){return d[e]}function v(){return d[c]}p(u,o),p(l,a)},"77Zs":function(e,t,n){var r=n("Xi7e");function i(){this.__data__=new r,this.size=0}e.exports=i},"7G+c":function(e,t,n){"use strict";n.d(t,"e",function(){return l}),n.d(t,"b",function(){return u}),n.d(t,"c",function(){return c}),n.d(t,"a",function(){return f}),n.d(t,"d",function(){return d}),n.d(t,"f",function(){return v});var r=n("bYtY"),i=n("B/3G"),o=n("4NO4"),a=n("D5nY"),s=function(){function e(e){this.data=e.data||(e.sourceFormat===i["d"]?{}:[]),this.sourceFormat=e.sourceFormat||i["h"],this.seriesLayoutBy=e.seriesLayoutBy||i["a"],this.startIndex=e.startIndex||0,this.dimensionsDetectedCount=e.dimensionsDetectedCount,this.metaRawOption=e.metaRawOption;var t=this.dimensionsDefine=e.dimensionsDefine;if(t)for(var n=0;n1?"."+t[1]:"")}function s(e,t){return e=(e||"").toLowerCase().replace(/-(.)/g,function(e,t){return t.toUpperCase()}),t&&e&&(e=e.charAt(0).toUpperCase()+e.slice(1)),e}var l=r["J"],u=/([&<>"'])/g,c={"&":"&","<":"<",">":">",'"':""","'":"'"};function f(e){return null==e?"":(e+"").replace(u,function(e,t){return c[t]})}function d(e,t,n){var s="{yyyy}-{MM}-{dd} {hh}:{mm}:{ss}";function l(e){return e&&r["Q"](e)?e:"-"}function u(e){return!(null==e||isNaN(e)||!isFinite(e))}var c="time"===t,f=e instanceof Date;if(c||f){var d=c?Object(i["l"])(e):e;if(!isNaN(+d))return Object(o["h"])(d,s,n);if(f)return"-"}if("ordinal"===t)return r["B"](e)?l(e):r["y"](e)&&u(e)?e+"":"-";var h=Object(i["k"])(e);return u(h)?a(h):r["B"](e)?l(e):"boolean"===typeof e?e+"":"-"}var h=["a","b","c","d","e","f","g"],p=function(e,t){return"{"+e+(null==t?"":t)+"}"};function g(e,t,n){r["s"](t)||(t=[t]);var i=t.length;if(!i)return"";for(var o=t[0].$vars||[],a=0;a':'';var s=n.markerId||"markerX";return{renderMode:a,content:"{"+s+"|} ",style:"subItem"===o?{width:4,height:4,borderRadius:2,backgroundColor:i}:{width:10,height:10,borderRadius:5,backgroundColor:i}}}function v(e,t){return t=t||"transparent",r["A"](e)?e:r["z"](e)&&e.colorStops&&(e.colorStops[0]||{}).color||t}function y(e,t){if("_blank"===t||"blank"===t){var n=window.open();n.opener=null,n.location.href=e}else window.open(e,t)}},"7bO/":function(e,t,n){"use strict";var r={};n.r(r),n.d(r,"take",function(){return Ce}),n.d(r,"takem",function(){return Te}),n.d(r,"put",function(){return je}),n.d(r,"all",function(){return Ie}),n.d(r,"race",function(){return De}),n.d(r,"call",function(){return Ee}),n.d(r,"apply",function(){return Pe}),n.d(r,"cps",function(){return Le}),n.d(r,"fork",function(){return Ne}),n.d(r,"spawn",function(){return Re}),n.d(r,"join",function(){return ze}),n.d(r,"cancel",function(){return Fe}),n.d(r,"select",function(){return Be}),n.d(r,"actionChannel",function(){return Ve}),n.d(r,"cancelled",function(){return Ye}),n.d(r,"flush",function(){return Ge}),n.d(r,"getContext",function(){return Ue}),n.d(r,"setContext",function(){return We}),n.d(r,"takeEvery",function(){return yt}),n.d(r,"takeLatest",function(){return bt}),n.d(r,"throttle",function(){return _t});var i=Object.assign||function(e){for(var t=1;t=0&&e.splice(n,1)}var k={from:function(e){var t=Array(e.length);for(var n in e)b(e,n)&&(t[n]=e[n]);return t}};function O(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=i({},e),n=new Promise(function(e,n){t.resolve=e,t.reject=n});return t.promise=n,t}function S(e){var t=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],n=void 0,r=new Promise(function(r){n=setTimeout(function(){return r(t)},e)});return r[c]=function(){return clearTimeout(n)},r}function M(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0;return function(){return++e}}var C=M(),T=function(e){throw e},j=function(e){return{value:e,done:!0}};function I(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:T,n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"",r=arguments[3],i={name:n,next:e,throw:t,return:j};return r&&(i[l]=!0),"undefined"!==typeof Symbol&&(i[Symbol.iterator]=function(){return i}),i}function D(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"";"undefined"===typeof window?console.log("redux-saga "+e+": "+t+"\n"+(n&&n.stack||n)):console[e](t,n)}function A(e,t){return function(){return e.apply(void 0,arguments)}}var E=function(e,t){return e+" has been deprecated in favor of "+t+", please update your code"},P=function(e){return new Error("\n redux-saga: Error checking hooks detected an inconsistent state. This is likely a bug\n in redux-saga code and not yours. Thanks for reporting this in the project's github repo.\n Error: "+e+"\n")},L=function(e,t){return(e?e+".":"")+"setContext(props): argument "+t+" is not a plain object"},N=function(e){return function(t){return e(Object.defineProperty(t,f,{value:!0}))}},R="Channel's Buffer overflow!",z=1,F=2,B=3,V=4,Y={isEmpty:p,put:g,take:g};function G(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:10,t=arguments[1],n=new Array(e),r=0,i=0,o=0,a=function(t){n[i]=t,i=(i+1)%e,r++},s=function(){if(0!=r){var t=n[o];return n[o]=null,r--,o=(o+1)%e,t}},l=function(){var e=[];while(r)e.push(s());return e};return{isEmpty:function(){return 0==r},put:function(s){if(r0&&void 0!==arguments[0]?arguments[0]:U.fixed(),t=!1,n=[];function r(){if(t&&n.length)throw P("Cannot have a closed channel with pending takers");if(n.length&&!e.isEmpty())throw P("Cannot have pending takers with non empty buffer")}function i(i){if(r(),v(i,_.notUndef,ie),!t){if(!n.length)return e.put(i);for(var o=0;o1&&void 0!==arguments[1]?arguments[1]:U.none(),n=arguments[2];arguments.length>2&&v(n,_.func,"Invalid match function passed to eventChannel");var r=oe(t),i=function(){r.__closed__||(o&&o(),r.close())},o=e(function(e){te(e)?i():n&&!n(e)||r.put(e)});if(r.__closed__&&o(),!_.func(o))throw new Error("in eventChannel: subscribe should return a function to unsubscribe");return{take:r.take,flush:r.flush,close:i}}function se(e){var t=ae(function(t){return e(function(e){e[f]?t(e):Z(function(){return t(e)})})});return $({},t,{take:function(e,n){arguments.length>1&&(v(n,_.func,"channel.take's matcher argument must be a function"),e[u]=n),t.take(e)}})}var le=a("IO"),ue="TAKE",ce="PUT",fe="ALL",de="RACE",he="CALL",pe="CPS",ge="FORK",me="JOIN",ve="CANCEL",ye="SELECT",be="ACTION_CHANNEL",_e="CANCELLED",xe="FLUSH",we="GET_CONTEXT",ke="SET_CONTEXT",Oe="\n(HINT: if you are getting this errors in tests, consider using createMockTask from redux-saga/utils)",Se=function(e,t){var n;return n={},n[le]=!0,n[e]=t,n},Me=function(e){return v(qe.fork(e),_.object,"detach(eff): argument must be a fork effect"),e[ge].detached=!0,e};function Ce(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"*";if(arguments.length&&v(arguments[0],_.notUndef,"take(patternOrChannel): patternOrChannel is undefined"),_.pattern(e))return Se(ue,{pattern:e});if(_.channel(e))return Se(ue,{channel:e});throw new Error("take(patternOrChannel): argument "+String(e)+" is not valid channel or a valid pattern")}Ce.maybe=function(){var e=Ce.apply(void 0,arguments);return e[ue].maybe=!0,e};var Te=A(Ce.maybe,E("takem","take.maybe"));function je(e,t){return arguments.length>1?(v(e,_.notUndef,"put(channel, action): argument channel is undefined"),v(e,_.channel,"put(channel, action): argument "+e+" is not a valid channel"),v(t,_.notUndef,"put(channel, action): argument action is undefined")):(v(e,_.notUndef,"put(action): argument action is undefined"),t=e,e=null),Se(ce,{channel:e,action:t})}function Ie(e){return Se(fe,e)}function De(e){return Se(de,e)}function Ae(e,t,n){v(t,_.notUndef,e+": argument fn is undefined");var r=null;if(_.array(t)){var i=t;r=i[0],t=i[1]}else if(t.fn){var o=t;r=o.context,t=o.fn}return r&&_.string(t)&&_.func(r[t])&&(t=r[t]),v(t,_.func,e+": argument "+t+" is not a function"),{context:r,fn:t,args:n}}function Ee(e){for(var t=arguments.length,n=Array(t>1?t-1:0),r=1;r2&&void 0!==arguments[2]?arguments[2]:[];return Se(he,Ae("apply",{context:e,fn:t},n))}function Le(e){for(var t=arguments.length,n=Array(t>1?t-1:0),r=1;r1?t-1:0),r=1;r1?t-1:0),r=1;r1)return Ie(t.map(function(e){return ze(e)}));var r=t[0];return v(r,_.notUndef,"join(task): argument task is undefined"),v(r,_.task,"join(task): argument "+r+" is not a valid Task object "+Oe),Se(me,r)}function Fe(){for(var e=arguments.length,t=Array(e),n=0;n1)return Ie(t.map(function(e){return Fe(e)}));var r=t[0];return 1===t.length&&(v(r,_.notUndef,"cancel(task): argument task is undefined"),v(r,_.task,"cancel(task): argument "+r+" is not a valid Task object "+Oe)),Se(ve,r||d)}function Be(e){for(var t=arguments.length,n=Array(t>1?t-1:0),r=1;r1&&(v(t,_.notUndef,"actionChannel(pattern, buffer): argument buffer is undefined"),v(t,_.buffer,"actionChannel(pattern, buffer): argument "+t+" is not a valid buffer")),Se(be,{pattern:e,buffer:t})}function Ye(){return Se(_e,{})}function Ge(e){return v(e,_.channel,"flush(channel): argument "+e+" is not valid channel"),Se(xe,e)}function Ue(e){return v(e,_.string,"getContext(prop): argument "+e+" is not a string"),Se(we,e)}function We(e){return v(e,_.object,L(null,e)),Se(ke,e)}je.resolve=function(){var e=je.apply(void 0,arguments);return e[ce].resolve=!0,e},je.sync=A(je.resolve,E("put.sync","put.resolve"));var He=function(e){return function(t){return t&&t[le]&&t[e]}},qe={take:He(ue),put:He(ce),all:He(fe),race:He(de),call:He(he),cps:He(pe),fork:He(ge),join:He(me),cancel:He(ve),select:He(ye),actionChannel:He(be),cancelled:He(_e),flush:He(xe),getContext:He(we),setContext:He(ke)},Ze=Object.assign||function(e){for(var t=1;t1&&void 0!==arguments[1]?arguments[1]:function(){return g},n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:g,r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:g,i=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{},o=arguments.length>5&&void 0!==arguments[5]?arguments[5]:{},a=arguments.length>6&&void 0!==arguments[6]?arguments[6]:0,l=arguments.length>7&&void 0!==arguments[7]?arguments[7]:"anonymous",u=arguments[8];v(e,_.iterator,Qe);var f="[...effects]",h=A(ee,E(f,"all("+f+")")),p=o.sagaMonitor,m=o.logger,y=o.onError,b=m||D,S=function(e){var t=e.sagaStack;!t&&e.stack&&(t=-1!==e.stack.split("\n")[0].indexOf(e.message)?e.stack:"Error: "+e.message+"\n"+e.stack),b("error","uncaught at "+l,t||e.message||e)},M=se(t),T=Object.create(i);z.cancel=g;var j=fe(a,l,e,u),I={name:l,cancel:N,isRunning:!0},P=nt(l,I,F);function N(){I.isRunning&&!I.isCancelled&&(I.isCancelled=!0,z(Je))}function R(){e._isRunning&&!e._isCancelled&&(e._isCancelled=!0,P.cancelAll(),F(Je))}return u&&(u.cancel=R),e._isRunning=!0,z(),j;function z(t,n){if(!I.isRunning)throw new Error("Trying to resume an already finished generator");try{var r=void 0;n?r=e.throw(t):t===Je?(I.isCancelled=!0,z.cancel(),r=_.func(e.return)?e.return(Je):{done:!0,value:Je}):r=t===$e?_.func(e.return)?e.return():{done:!0}:e.next(t),r.done?(I.isMainRunning=!1,I.cont&&I.cont(r.value)):B(r.value,a,"",z)}catch(e){I.isCancelled&&S(e),I.isMainRunning=!1,I.cont(e,!0)}}function F(t,n){e._isRunning=!1,M.close(),n?(t instanceof Error&&Object.defineProperty(t,"sagaStack",{value:"at "+l+" \n "+(t.sagaStack||t.stack),configurable:!0}),j.cont||(t instanceof Error&&y?y(t):S(t)),e._error=t,e._isAborted=!0,e._deferredEnd&&e._deferredEnd.reject(t)):(e._result=t,e._deferredEnd&&e._deferredEnd.resolve(t)),j.cont&&j.cont(t,n),j.joiners.forEach(function(e){return e.cb(t,n)}),j.joiners=null}function B(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"",r=arguments[3],i=C();p&&p.effectTriggered({effectId:i,parentEffectId:t,label:n,effect:e});var o=void 0;function a(e,t){o||(o=!0,r.cancel=g,p&&(t?p.effectRejected(i,e):p.effectResolved(i,e)),r(e,t))}a.cancel=g,r.cancel=function(){if(!o){o=!0;try{a.cancel()}catch(e){S(e)}a.cancel=g,p&&p.effectCancelled(i)}};var s=void 0;return _.promise(e)?V(e,a):_.helper(e)?X(it(e),i,a):_.iterator(e)?Y(e,i,l,a):_.array(e)?h(e,i,a):(s=qe.take(e))?G(s,a):(s=qe.put(e))?W(s,a):(s=qe.all(e))?ee(s,i,a):(s=qe.race(e))?ne(s,i,a):(s=qe.call(e))?H(s,i,a):(s=qe.cps(e))?q(s,a):(s=qe.fork(e))?X(s,i,a):(s=qe.join(e))?$(s,a):(s=qe.cancel(e))?J(s,a):(s=qe.select(e))?re(s,a):(s=qe.actionChannel(e))?ie(s,a):(s=qe.flush(e))?le(s,a):(s=qe.cancelled(e))?oe(s,a):(s=qe.getContext(e))?ue(s,a):(s=qe.setContext(e))?ce(s,a):a(e)}function V(e,t){var n=e[c];_.func(n)?t.cancel=n:_.func(e.abort)&&(t.cancel=function(){return e.abort()}),e.then(t,function(e){return t(e,!0)})}function Y(e,i,a,s){ot(e,t,n,r,T,o,i,a,s)}function G(e,t){var n=e.channel,r=e.pattern,i=e.maybe;n=n||M;var o=function(e){return e instanceof Error?t(e,!0):te(e)&&!i?t($e):t(e)};try{n.take(o,tt(r))}catch(e){return t(e,!0)}t.cancel=o.cancel}function W(e,t){var r=e.channel,i=e.action,o=e.resolve;Z(function(){var e=void 0;try{e=(r?r.put:n)(i)}catch(e){if(r||o)return t(e,!0);S(e)}if(!o||!_.promise(e))return t(e);V(e,t)})}function H(e,t,n){var r=e.context,i=e.fn,o=e.args,a=void 0;try{a=i.apply(r,o)}catch(e){return n(e,!0)}return _.promise(a)?V(a,n):_.iterator(a)?Y(a,t,i.name,n):n(a)}function q(e,t){var n=e.context,r=e.fn,i=e.args;try{var o=function(e,n){return _.undef(e)?t(n):t(e,!0)};r.apply(n,i.concat(o)),o.cancel&&(t.cancel=function(){return o.cancel()})}catch(e){return t(e,!0)}}function X(e,i,a){var s=e.context,l=e.fn,u=e.args,c=e.detached,f=rt({context:s,fn:l,args:u});try{K();var d=ot(f,t,n,r,T,o,i,l.name,c?null:g);c?a(d):f._isRunning?(P.addTask(d),a(d)):f._error?P.abort(f._error):a(d)}finally{Q()}}function $(e,t){if(e.isRunning()){var n={task:j,cb:t};t.cancel=function(){return w(e.joiners,n)},e.joiners.push(n)}else e.isAborted()?t(e.error(),!0):t(e.result())}function J(e,t){e===d&&(e=j),e.isRunning()&&e.cancel(),t()}function ee(e,t,n){var r=Object.keys(e);if(!r.length)return n(_.array(e)?[]:{});var i=0,o=void 0,a={},s={};function l(){i===r.length&&(o=!0,n(_.array(e)?k.from(Ze({},a,{length:r.length})):a))}r.forEach(function(e){var t=function(t,r){o||(r||te(t)||t===$e||t===Je?(n.cancel(),n(t,r)):(a[e]=t,i++,l()))};t.cancel=g,s[e]=t}),n.cancel=function(){o||(o=!0,r.forEach(function(e){return s[e].cancel()}))},r.forEach(function(n){return B(e[n],t,n,s[n])})}function ne(e,t,n){var r=void 0,i=Object.keys(e),o={};i.forEach(function(t){var a=function(o,a){if(!r)if(a)n.cancel(),n(o,!0);else if(!te(o)&&o!==$e&&o!==Je){var s;n.cancel(),r=!0;var l=(s={},s[t]=o,s);n(_.array(e)?[].slice.call(Ze({},l,{length:i.length})):l)}};a.cancel=g,o[t]=a}),n.cancel=function(){r||(r=!0,i.forEach(function(e){return o[e].cancel()}))},i.forEach(function(n){r||B(e[n],t,n,o[n])})}function re(e,t){var n=e.selector,i=e.args;try{var o=n.apply(void 0,[r()].concat(i));t(o)}catch(e){t(e,!0)}}function ie(e,n){var r=e.pattern,i=e.buffer,o=tt(r);o.pattern=r,n(ae(t,i||U.fixed(),o))}function oe(e,t){t(!!I.isCancelled)}function le(e,t){e.flush(t)}function ue(e,t){t(T[e])}function ce(e,t){x.assign(T,e),t()}function fe(e,t,n,r){var i,o,a;return n._deferredEnd=null,o={},o[s]=!0,o.id=e,o.name=t,i="done",a={},a[i]=a[i]||{},a[i].get=function(){if(n._deferredEnd)return n._deferredEnd.promise;var e=O();return n._deferredEnd=e,n._isRunning||(n._error?e.reject(n._error):e.resolve(n._result)),e.promise},o.cont=r,o.joiners=[],o.cancel=R,o.isRunning=function(){return n._isRunning},o.isCancelled=function(){return n._isCancelled},o.isAborted=function(){return n._isAborted},o.result=function(){return n._result},o.error=function(){return n._error},o.setContext=function(e){v(e,_.object,L("task",e)),x.assign(T,e)},Xe(o,a),o}}var at="runSaga(storeInterface, saga, ...args)",st=at+": saga argument must be a Generator function!";function lt(e,t){for(var n=arguments.length,r=Array(n>2?n-2:0),i=2;i=0||Object.prototype.hasOwnProperty.call(e,r)&&(n[r]=e[r]);return n}function ct(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=e.context,n=void 0===t?{}:t,r=ut(e,["context"]),i=r.sagaMonitor,o=r.logger,a=r.onError;if(_.func(r))throw new Error("Saga middleware no longer accept Generator functions. Use sagaMiddleware.run instead");if(o&&!_.func(o))throw new Error("`options.logger` passed to the Saga middleware is not a function!");if(a&&!_.func(a))throw new Error("`options.onError` passed to the Saga middleware is not a function!");if(r.emitter&&!_.func(r.emitter))throw new Error("`options.emitter` passed to the Saga middleware is not a function!");function s(e){var t=e.getState,l=e.dispatch,u=ne();return u.emit=(r.emitter||m)(u.emit),s.run=lt.bind(null,{context:n,subscribe:u.subscribe,dispatch:l,getState:t,sagaMonitor:i,logger:o,onError:a}),function(e){return function(t){i&&i.actionDispatched&&i.actionDispatched(t);var n=e(t);return u.emit(t),n}}}return s.run=function(){throw new Error("Before running a Saga, you must mount the Saga middleware on the Store using applyMiddleware")},s.setContext=function(e){v(e,_.object,L("sagaMiddleware",e)),x.assign(n,e)},s}var ft={done:!0,value:void 0},dt={};function ht(e){return _.channel(e)?"channel":Array.isArray(e)?String(e.map(function(e){return String(e)})):String(e)}function pt(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"iterator",r=void 0,i=t;function o(t,n){if(i===dt)return ft;if(n)throw i=dt,n;r&&r(t);var o=e[i](),a=o[0],s=o[1],l=o[2];return i=a,r=l,i===dt?ft:s}return I(o,function(e){return o(null,e)},n,!0)}function gt(e,t){for(var n=arguments.length,r=Array(n>2?n-2:0),i=2;i2?n-2:0),i=2;i3?r-3:0),o=3;o2?n-2:0),i=2;i2?n-2:0),i=2;i3?r-3:0),o=3;o0){if(++t>=n)return arguments[0]}else t=0;return e.apply(void 0,arguments)}}e.exports=o},"8wmI":function(e,t){function n(e){return null!=e&&"object"==typeof e}e.exports=n},"9Nap":function(e,t,n){var r=n("/9aa"),i=1/0;function o(e){if("string"==typeof e||r(e))return e;var t=e+"";return"0"==t&&1/e==-i?"-0":t}e.exports=o},"9ggG":function(e,t,n){var r=n("Z0cm"),i=n("/9aa"),o=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,a=/^\w*$/;function s(e,t){if(r(e))return!1;var n=typeof e;return!("number"!=n&&"symbol"!=n&&"boolean"!=n&&null!=e&&!i(e))||(a.test(e)||!o.test(e)||null!=t&&e in Object(t))}e.exports=s},AGgm:function(e,t,n){"use strict";function r(e){return Object.prototype.toString.call(e)}function i(e){return"[object String]"===r(e)}var o=Object.prototype.hasOwnProperty;function a(e,t){return o.call(e,t)}function s(e){var t=Array.prototype.slice.call(arguments,1);return t.forEach(function(t){if(t){if("object"!==typeof t)throw new TypeError(t+"must be object");Object.keys(t).forEach(function(n){e[n]=t[n]})}}),e}function l(e,t,n){return[].concat(e.slice(0,t),n,e.slice(t+1))}function u(e){return!(e>=55296&&e<=57343)&&(!(e>=64976&&e<=65007)&&(65535!==(65535&e)&&65534!==(65535&e)&&(!(e>=0&&e<=8)&&(11!==e&&(!(e>=14&&e<=31)&&(!(e>=127&&e<=159)&&!(e>1114111)))))))}function c(e){if(e>65535){e-=65536;var t=55296+(e>>10),n=56320+(1023&e);return String.fromCharCode(t,n)}return String.fromCharCode(e)}var f=/\\([!"#$%&'()*+,\-.\/:;<=>?@[\\\]^_`{|}~])/g,d=/&([a-z#][a-z0-9]{1,31});/gi,h=new RegExp(f.source+"|"+d.source,"gi"),p=/^#((?:x[a-f0-9]{1,8}|[0-9]{1,8}))/i,g=n("vWgF");function m(e,t){var n=0;return a(g,t)?g[t]:35===t.charCodeAt(0)&&p.test(t)&&(n="x"===t[1].toLowerCase()?parseInt(t.slice(2),16):parseInt(t.slice(1),10),u(n))?c(n):e}function v(e){return e.indexOf("\\")<0?e:e.replace(f,"$1")}function y(e){return e.indexOf("\\")<0&&e.indexOf("&")<0?e:e.replace(h,function(e,t,n){return t||m(e,n)})}var b=/[&<>"]/,_=/[&<>"]/g,x={"&":"&","<":"<",">":">",'"':"""};function w(e){return x[e]}function k(e){return b.test(e)?e.replace(_,w):e}var O=/[.?*+^$[\]\\(){}|-]/g;function S(e){return e.replace(O,"\\$&")}function M(e){switch(e){case 9:case 32:return!0}return!1}function C(e){if(e>=8192&&e<=8202)return!0;switch(e){case 9:case 10:case 11:case 12:case 13:case 32:case 160:case 5760:case 8239:case 8287:case 12288:return!0}return!1}var T=n("fKCf");function j(e){return T.test(e)}function I(e){switch(e){case 33:case 34:case 35:case 36:case 37:case 38:case 39:case 40:case 41:case 42:case 43:case 44:case 45:case 46:case 47:case 58:case 59:case 60:case 61:case 62:case 63:case 64:case 91:case 92:case 93:case 94:case 95:case 96:case 123:case 124:case 125:case 126:return!0;default:return!1}}function D(e){return e=e.trim().replace(/\s+/g," "),"\u1e7e"==="\u1e9e".toLowerCase()&&(e=e.replace(/\u1e9e/g,"\xdf")),e.toLowerCase().toUpperCase()}t.lib={},t.lib.mdurl=n("2KYT"),t.lib.ucmicro=n("1dGX"),t.assign=s,t.isString=i,t.has=a,t.unescapeMd=v,t.unescapeAll=y,t.isValidEntityCode=u,t.fromCodePoint=c,t.escapeHtml=k,t.arrayReplaceAt=l,t.isSpace=M,t.isWhiteSpace=C,t.isMdAsciiPunct=I,t.isPunctChar=j,t.escapeRE=S,t.normalizeReference=D},AP2z:function(e,t,n){var r=n("nmnc"),i=Object.prototype,o=i.hasOwnProperty,a=i.toString,s=r?r.toStringTag:void 0;function l(e){var t=o.call(e,s),n=e[s];try{e[s]=void 0;var r=!0}catch(e){}var i=a.call(e);return r&&(t?e[s]=n:delete e[s]),i}e.exports=l},AVZG:function(e,t,n){"use strict";n.d(t,"c",function(){return o}),n.d(t,"b",function(){return a}),n.d(t,"a",function(){return s});var r=n("bYtY"),i=n("4NO4");function o(e,t,n){n=n||{};var i=e.coordinateSystem,o=t.axis,a={},s=o.getAxesOnZeroOf()[0],l=o.position,u=s?"onZero":l,c=o.dim,f=i.getRect(),d=[f.x,f.x+f.width,f.y,f.y+f.height],h={left:0,right:1,top:0,bottom:1,onZero:2},p=t.get("offset")||0,g="x"===c?[d[2]-p,d[3]+p]:[d[0]-p,d[1]+p];if(s){var m=s.toGlobalCoord(s.dataToCoord(0));g[h.onZero]=Math.max(Math.min(m,g[1]),g[0])}a.position=["y"===c?g[h[u]]:d[0],"x"===c?g[h[u]]:d[3]],a.rotation=Math.PI/2*("x"===c?0:1);var v={top:-1,bottom:1,left:-1,right:1};a.labelDirection=a.tickDirection=a.nameDirection=v[l],a.labelOffset=s?g[h[l]]-g[h.onZero]:0,t.get(["axisTick","inside"])&&(a.tickDirection=-a.tickDirection),r["L"](n.labelInside,t.get(["axisLabel","inside"]))&&(a.labelDirection=-a.labelDirection);var y=t.get(["axisLabel","rotate"]);return a.labelRotate="top"===u?-y:y,a.z2=1,a}function a(e){return"cartesian2d"===e.get("coordinateSystem")}function s(e){var t={xAxisModel:null,yAxisModel:null};return r["k"](t,function(n,r){var o=r.replace(/Model$/,""),a=e.getReferringComponents(o,i["b"]).models[0];t[r]=a}),t}},"B/3G":function(e,t,n){"use strict";n.d(t,"i",function(){return i}),n.d(t,"f",function(){return o}),n.d(t,"c",function(){return a}),n.d(t,"e",function(){return s}),n.d(t,"d",function(){return l}),n.d(t,"g",function(){return u}),n.d(t,"h",function(){return c}),n.d(t,"a",function(){return f}),n.d(t,"b",function(){return d});var r=n("bYtY"),i=Object(r["g"])(["tooltip","label","itemName","itemId","itemGroupId","seriesName"]),o="original",a="arrayRows",s="objectRows",l="keyedColumns",u="typedArray",c="unknown",f="column",d="row"},B1jb:function(e,t,n){"use strict";var r=n("AGgm").isSpace;e.exports=function(e,t,n,i){var o,a,s,l,u=e.bMarks[t]+e.tShift[t],c=e.eMarks[t];if(e.sCount[t]-e.blkIndent>=4)return!1;if(o=e.src.charCodeAt(u),35!==o||u>=c)return!1;a=1,o=e.src.charCodeAt(++u);while(35===o&&u6||uu&&r(e.src.charCodeAt(s-1))&&(c=s),e.line=t+1,l=e.push("heading_open","h"+String(a),1),l.markup="########".slice(0,a),l.map=[t,e.line],l=e.push("inline","",0),l.content=e.src.slice(u,c).trim(),l.map=[t,e.line],l.children=[],l=e.push("heading_close","h"+String(a),-1),l.markup="########".slice(0,a),!0))}},B8du:function(e,t){function n(){return!1}e.exports=n},"BPd+":function(e,t,n){"use strict";n.d(t,"b",function(){return v}),n.d(t,"a",function(){return y});var r=n("B/3G"),i=n("4NO4"),o=n("bYtY"),a=n("KxfA"),s=n("t9mh"),l=n("7a4p"),u=n("7G+c"),c=function(){function e(){}return e.prototype.getRawData=function(){throw new Error("not supported")},e.prototype.getRawDataItem=function(e){throw new Error("not supported")},e.prototype.cloneRawData=function(){},e.prototype.getDimensionInfo=function(e){},e.prototype.cloneAllDimensionInfo=function(){},e.prototype.count=function(){},e.prototype.retrieveValue=function(e,t){},e.prototype.retrieveValueFromItem=function(e,t){},e.prototype.convertValue=function(e,t){return Object(s["b"])(e,t)},e}();function f(e,t){var n=new c,i=e.data,s=n.sourceFormat=e.sourceFormat,u=e.startIndex,f="";e.seriesLayoutBy!==r["a"]&&Object(l["c"])(f);var m=[],v={},y=e.dimensionsDefine;if(y)Object(o["k"])(y,function(e,t){var n=e.name,r={index:t,name:n,displayName:e.displayName};if(m.push(r),null!=n){var i="";Object(o["p"])(v,n)&&Object(l["c"])(i),v[n]=r}});else for(var b=0;b=0))try{t.hostname=f.toASCII(t.hostname)}catch(e){}return c.encode(c.format(t))}function y(e){var t=c.parse(e,!0);if(t.hostname&&(!t.protocol||m.indexOf(t.protocol)>=0))try{t.hostname=f.toUnicode(t.hostname)}catch(e){}return c.decode(c.format(t),c.decode.defaultChars+"%")}function b(e,t){if(!(this instanceof b))return new b(e,t);t||r.isString(e)||(t=e||{},e="default"),this.inline=new l,this.block=new s,this.core=new a,this.renderer=new o,this.linkify=new u,this.validateLink=g,this.normalizeLink=v,this.normalizeLinkText=y,this.utils=r,this.helpers=r.assign({},i),this.options={},this.configure(e),t&&this.set(t)}b.prototype.set=function(e){return r.assign(this.options,e),this},b.prototype.configure=function(e){var t,n=this;if(r.isString(e)&&(t=e,e=d[t],!e))throw new Error('Wrong `markdown-it` preset "'+t+'", check name');if(!e)throw new Error("Wrong `markdown-it` preset, can't be empty");return e.options&&n.set(e.options),e.components&&Object.keys(e.components).forEach(function(t){e.components[t].rules&&n[t].ruler.enableOnly(e.components[t].rules),e.components[t].rules2&&n[t].ruler2.enableOnly(e.components[t].rules2)}),this},b.prototype.enable=function(e,t){var n=[];Array.isArray(e)||(e=[e]),["core","block","inline"].forEach(function(t){n=n.concat(this[t].ruler.enable(e,!0))},this),n=n.concat(this.inline.ruler2.enable(e,!0));var r=e.filter(function(e){return n.indexOf(e)<0});if(r.length&&!t)throw new Error("MarkdownIt. Failed to enable unknown rule(s): "+r);return this},b.prototype.disable=function(e,t){var n=[];Array.isArray(e)||(e=[e]),["core","block","inline"].forEach(function(t){n=n.concat(this[t].ruler.disable(e,!0))},this),n=n.concat(this.inline.ruler2.disable(e,!0));var r=e.filter(function(e){return n.indexOf(e)<0});if(r.length&&!t)throw new Error("MarkdownIt. Failed to disable unknown rule(s): "+r);return this},b.prototype.use=function(e){var t=[this].concat(Array.prototype.slice.call(arguments,1));return e.apply(e,t),this},b.prototype.parse=function(e,t){if("string"!==typeof e)throw new Error("Input data should be a String");var n=new this.core.State(e,this,t);return this.core.process(n),n.tokens},b.prototype.render=function(e,t){return t=t||{},this.renderer.render(this.parse(e,t),this.options,t)},b.prototype.parseInline=function(e,t){var n=new this.core.State(e,this,t);return n.inlineMode=!0,this.core.process(n),n.tokens},b.prototype.renderInline=function(e,t){return t=t||{},this.renderer.render(this.parseInline(e,t),this.options,t)},e.exports=b},CWsV:function(e,t,n){"use strict";function r(e,t,n){this.type=e,this.tag=t,this.attrs=null,this.map=null,this.nesting=n,this.level=0,this.children=null,this.content="",this.markup="",this.info="",this.meta=null,this.block=!1,this.hidden=!1}r.prototype.attrIndex=function(e){var t,n,r;if(!this.attrs)return-1;for(t=this.attrs,n=0,r=t.length;n=0&&(n=this.attrs[t][1]),n},r.prototype.attrJoin=function(e,t){var n=this.attrIndex(e);n<0?this.attrPush([e,t]):this.attrs[n][1]=this.attrs[n][1]+" "+t},e.exports=r},CXva:function(e,t,n){"use strict";var r=n("CWsV"),i=n("AGgm").isWhiteSpace,o=n("AGgm").isPunctChar,a=n("AGgm").isMdAsciiPunct;function s(e,t,n,r){this.src=e,this.env=n,this.md=t,this.tokens=r,this.tokens_meta=Array(r.length),this.pos=0,this.posMax=this.src.length,this.level=0,this.pending="",this.pendingLevel=0,this.cache={},this.delimiters=[],this._prev_delimiters=[],this.backticks={},this.backticksScanned=!1}s.prototype.pushPending=function(){var e=new r("text","",0);return e.content=this.pending,e.level=this.pendingLevel,this.tokens.push(e),this.pending="",e},s.prototype.push=function(e,t,n){this.pending&&this.pushPending();var i=new r(e,t,n),o=null;return n<0&&(this.level--,this.delimiters=this._prev_delimiters.pop()),i.level=this.level,n>0&&(this.level++,this._prev_delimiters.push(this.delimiters),this.delimiters=[],o={delimiters:this.delimiters}),this.pendingLevel=this.level,this.tokens.push(i),this.tokens_meta.push(o),i},s.prototype.scanDelims=function(e,t){var n,r,s,l,u,c,f,d,h,p=e,g=!0,m=!0,v=this.posMax,y=this.src.charCodeAt(e);n=e>0?this.src.charCodeAt(e-1):32;while(p=0;a--)r[a]&&!c["j"](r[a])?o=!0:(r[a]=null,!o&&i--);r.length=i,e[n]=r}}),delete e[k],e},t.prototype.getTheme=function(){return this._theme},t.prototype.getLocaleModel=function(){return this._locale},t.prototype.setUpdatePayload=function(e){this._payload=e},t.prototype.getUpdatePayload=function(){return this._payload},t.prototype.getComponent=function(e,t){var n=this._componentsMap.get(e);if(n){var r=n[t||0];if(r)return r;if(null==t)for(var i=0;i=t:"max"===n?e<=t:e===t}function V(e,t){return e.join(",")===t.join(",")}var Y=R,G=o["k"],U=o["z"],W=["areaStyle","lineStyle","nodeStyle","linkStyle","chordStyle","label","labelLine"];function H(e){var t=e&&e.itemStyle;if(t)for(var n=0,r=W.length;n=0;p--){var g=e[p];if(s||(f=g.data.rawIndexOf(g.stackedByDimension,c)),f>=0){var m=g.data.getByRawIndex(g.stackResultDimension,f);if(d>=0&&m>0||d<=0&&m<0){d=Object(he["a"])(d,m),h=m;break}}}return r[0]=d,r[1]=h,r})})}var me=n("T4UG"),ve=n("sS/r"),ye=n("6Ic6"),be=n("x6Kt"),_e=n("Dagg"),xe=n("3qvL"),we=n("y+Vt"),ke=n("hhxK"),Oe=n("fWwa"),Se=n("iLNv"),Me=n("KCsZ"),Ce=n("VR9l"),Te=n("OQFs"),je=Object(c["m"])(),Ie={itemStyle:Object(Me["a"])(Ce["a"],!0),lineStyle:Object(Me["a"])(Te["a"],!0)},De={lineStyle:"stroke",itemStyle:"fill"};function Ae(e,t){var n=e.visualStyleMapper||Ie[t];return n||(console.warn("Unkown style type '"+t+"'."),Ie.itemStyle)}function Ee(e,t){var n=e.visualDrawType||De[t];return n||(console.warn("Unkown style type '"+t+"'."),"fill")}var Pe={createOnAllSeries:!0,performRawSeries:!0,reset:function(e,t){var n=e.getData(),r=e.visualStyleAccessPath||"itemStyle",i=e.getModel(r),a=Ae(e,r),s=a(i),l=i.getShallow("decal");l&&(n.setVisual("decal",l),l.dirty=!0);var u=Ee(e,r),c=s[u],f=Object(o["v"])(c)?c:null,d="auto"===s.fill||"auto"===s.stroke;if(!s[u]||f||d){var h=e.getColorFromPalette(e.name,null,t.getSeriesCount());s[u]||(s[u]=h,n.setVisual("colorFromPalette",!0)),s.fill="auto"===s.fill||"function"===typeof s.fill?h:s.fill,s.stroke="auto"===s.stroke||"function"===typeof s.stroke?h:s.stroke}if(n.setVisual("style",s),n.setVisual("drawType",u),!t.isSeriesFiltered(e)&&f)return n.setVisual("colorFromPalette",!1),{dataEach:function(t,n){var r=e.getDataParams(n),i=Object(o["m"])({},s);i[u]=f(r),t.setItemVisual(n,"style",i)}}}},Le=new f["a"],Ne={createOnAllSeries:!0,performRawSeries:!0,reset:function(e,t){if(!e.ignoreStyleOnData&&!t.isSeriesFiltered(e)){var n=e.getData(),r=e.visualStyleAccessPath||"itemStyle",i=Ae(e,r),a=n.getVisual("drawType");return{dataEach:n.hasItemOption?function(e,t){var n=e.getRawDataItem(t);if(n&&n[r]){Le.option=n[r];var s=i(Le),l=e.ensureUniqueItemVisual(t,"style");Object(o["m"])(l,s),Le.option.decal&&(e.setItemVisual(t,"decal",Le.option.decal),Le.option.decal.dirty=!0),a in s&&e.setItemVisual(t,"colorFromPalette",!1)}}:null}}}},Re={performRawSeries:!0,overallReset:function(e){var t=Object(o["g"])();e.eachSeries(function(e){var n=e.getColorBy();if(!e.isColorBySeries()){var r=e.type+"-"+n,i=t.get(r);i||(i={},t.set(r,i)),je(e).scope=i}}),e.eachSeries(function(t){if(!t.isColorBySeries()&&!e.isSeriesFiltered(t)){var n=t.getRawData(),r={},i=t.getData(),o=je(t).scope,a=t.visualStyleAccessPath||"itemStyle",s=Ee(t,a);i.each(function(e){var t=i.getRawIndex(e);r[t]=e}),n.each(function(e){var a=r[e],l=i.getItemVisual(a,"colorFromPalette");if(l){var u=i.ensureUniqueItemVisual(a,"style"),c=n.getName(e)||e+"",f=n.count();u[s]=t.getColorFromPalette(c,o,f)}})}})}},ze=n("LcXL"),Fe=n("dqUG"),Be=n("jTL6"),Ve=Math.PI;function Ye(e,t){t=t||{},o["j"](t,{text:"loading",textColor:"#000",fontSize:12,fontWeight:"normal",fontStyle:"normal",fontFamily:"sans-serif",maskColor:"rgba(255, 255, 255, 0.8)",showSpinner:!0,color:"#5470c6",spinnerRadius:10,lineWidth:5,zlevel:0});var n=new ze["a"],r=new be["a"]({style:{fill:t.maskColor},zlevel:t.zlevel,z:1e4});n.add(r);var i,a=new Fe["a"]({style:{text:t.text,fill:t.textColor,fontSize:t.fontSize,fontWeight:t.fontWeight,fontStyle:t.fontStyle,fontFamily:t.fontFamily},zlevel:t.zlevel,z:10001}),s=new be["a"]({style:{fill:"none"},textContent:a,textConfig:{position:"right",distance:10},zlevel:t.zlevel,z:10001});return n.add(s),t.showSpinner&&(i=new Be["a"]({shape:{startAngle:-Ve/2,endAngle:-Ve/2+.1,r:t.spinnerRadius},style:{stroke:t.color,lineCap:"round",lineWidth:t.lineWidth},zlevel:t.zlevel,z:10001}),i.animateShape(!0).when(1e3,{endAngle:3*Ve/2}).start("circularInOut"),i.animateShape(!0).when(1e3,{startAngle:3*Ve/2}).delay(300).start("circularInOut"),n.add(i)),n.resize=function(){var n=a.getBoundingRect().width,o=t.showSpinner?t.spinnerRadius:0,l=(e.getWidth()-2*o-(t.showSpinner&&n?10:0)-n)/2-(t.showSpinner&&n?0:5+n/2)+(t.showSpinner?0:n/2)+(n?0:o),u=e.getHeight()/2;t.showSpinner&&i.setShape({cx:l,cy:u}),s.setShape({x:l-o,y:u-o,width:2*o,height:2*o}),r.setShape({x:0,y:0,width:e.getWidth(),height:e.getHeight()})},n.resize(),n}var Ge=n("n7yn"),Ue=n("iRjW"),We=function(){function e(e,t,n,r){this._stageTaskMap=Object(o["g"])(),this.ecInstance=e,this.api=t,n=this._dataProcessorHandlers=n.slice(),r=this._visualHandlers=r.slice(),this._allHandlers=n.concat(r)}return e.prototype.restoreData=function(e,t){e.restoreData(t),this._stageTaskMap.each(function(e){var t=e.overallTask;t&&t.dirty()})},e.prototype.getPerformArgs=function(e,t){if(e.__pipeline){var n=this._pipelineMap.get(e.__pipeline.id),r=n.context,i=!t&&n.progressiveEnabled&&(!r||r.progressiveRender)&&e.__idxInPipeline>n.blockIndex,o=i?n.step:null,a=r&&r.modDataCount,s=null!=a?Math.ceil(a/o):null;return{step:o,modBy:s,modDataCount:a}}},e.prototype.getPipeline=function(e){return this._pipelineMap.get(e)},e.prototype.updateStreamModes=function(e,t){var n=this._pipelineMap.get(e.uid),r=e.getData(),i=r.count(),o=n.progressiveEnabled&&t.incrementalPrepareRender&&i>=n.threshold,a=e.get("large")&&i>=e.get("largeThreshold"),s="mod"===e.get("progressiveChunkMode")?i:null;e.pipelineContext=n.context={progressiveRender:o,modDataCount:s,large:a}},e.prototype.restorePipelines=function(e){var t=this,n=t._pipelineMap=Object(o["g"])();e.eachSeries(function(e){var r=e.getProgressive(),i=e.uid;n.set(i,{id:i,head:null,tail:null,threshold:e.getProgressiveThreshold(),progressiveEnabled:r&&!(e.preventIncremental&&e.preventIncremental()),blockIndex:-1,step:Math.round(r||700),count:0}),t._pipe(e,e.dataTask)})},e.prototype.prepareStageTasks=function(){var e=this._stageTaskMap,t=this.api.getModel(),n=this.api;Object(o["k"])(this._allHandlers,function(r){var i=e.get(r.uid)||e.set(r.uid,{}),a="";Object(o["b"])(!(r.reset&&r.overallReset),a),r.reset&&this._createSeriesStageTask(r,i,t,n),r.overallReset&&this._createOverallStageTask(r,i,t,n)},this)},e.prototype.prepareView=function(e,t,n,r){var i=e.renderTask,o=i.context;o.model=t,o.ecModel=n,o.api=r,i.__block=!e.incrementalPrepareRender,this._pipe(t,i)},e.prototype.performDataProcessorTasks=function(e,t){this._performStageTasks(this._dataProcessorHandlers,e,t,{block:!0})},e.prototype.performVisualTasks=function(e,t,n){this._performStageTasks(this._visualHandlers,e,t,n)},e.prototype._performStageTasks=function(e,t,n,r){r=r||{};var i=!1,a=this;function s(e,t){return e.setDirty&&(!e.dirtyMap||e.dirtyMap.get(t.__pipeline.id))}Object(o["k"])(e,function(e,o){if(!r.visualType||r.visualType===e.visualType){var l=a._stageTaskMap.get(e.uid),u=l.seriesTaskMap,c=l.overallTask;if(c){var f,d=c.agentStubMap;d.each(function(e){s(r,e)&&(e.dirty(),f=!0)}),f&&c.dirty(),a.updatePayload(c,n);var h=a.getPerformArgs(c,r.block);d.each(function(e){e.perform(h)}),c.perform(h)&&(i=!0)}else u&&u.each(function(o,l){s(r,o)&&o.dirty();var u=a.getPerformArgs(o,r.block);u.skip=!e.performRawSeries&&t.isSeriesFiltered(o.context.model),a.updatePayload(o,n),o.perform(u)&&(i=!0)})}}),this.unfinished=i||this.unfinished},e.prototype.performSeriesTasks=function(e){var t;e.eachSeries(function(e){t=e.dataTask.perform()||t}),this.unfinished=t||this.unfinished},e.prototype.plan=function(){this._pipelineMap.each(function(e){var t=e.tail;do{if(t.__block){e.blockIndex=t.__idxInPipeline;break}t=t.getUpstream()}while(t)})},e.prototype.updatePayload=function(e,t){"remain"!==t&&(e.context.payload=t)},e.prototype._createSeriesStageTask=function(e,t,n,r){var i=this,a=t.seriesTaskMap,s=t.seriesTaskMap=Object(o["g"])(),l=e.seriesType,u=e.getTargetSeries;function c(t){var o=t.uid,l=s.set(o,a&&a.get(o)||Object(Ge["a"])({plan:Xe,reset:Qe,count:et}));l.context={model:t,ecModel:n,api:r,useClearVisual:e.isVisual&&!e.isLayout,plan:e.plan,reset:e.reset,scheduler:i},i._pipe(t,l)}e.createOnAllSeries?n.eachRawSeries(c):l?n.eachRawSeriesByType(l,c):u&&u(n,r).each(c)},e.prototype._createOverallStageTask=function(e,t,n,r){var i=this,a=t.overallTask=t.overallTask||Object(Ge["a"])({reset:He});a.context={ecModel:n,api:r,overallReset:e.overallReset,scheduler:i};var s=a.agentStubMap,l=a.agentStubMap=Object(o["g"])(),u=e.seriesType,c=e.getTargetSeries,f=!0,d=!1,h="";function p(e){var t=e.uid,n=l.set(t,s&&s.get(t)||(d=!0,Object(Ge["a"])({reset:qe,onDirty:Ke})));n.context={model:e,overallProgress:f},n.agent=a,n.__block=f,i._pipe(e,n)}Object(o["b"])(!e.createOnAllSeries,h),u?n.eachRawSeriesByType(u,p):c?c(n,r).each(p):(f=!1,Object(o["k"])(n.getSeries(),p)),d&&a.dirty()},e.prototype._pipe=function(e,t){var n=e.uid,r=this._pipelineMap.get(n);!r.head&&(r.head=t),r.tail&&r.tail.pipe(t),r.tail=t,t.__idxInPipeline=r.count++,t.__pipeline=r},e.wrapStageHandler=function(e,t){return Object(o["v"])(e)&&(e={overallReset:e,seriesType:tt(e)}),e.uid=Object(Ue["c"])("stageHandler"),t&&(e.visualType=t),e},e}();function He(e){e.overallReset(e.ecModel,e.api,e.payload)}function qe(e){return e.overallProgress&&Ze}function Ze(){this.agent.dirty(),this.getDownstream().dirty()}function Ke(){this.agent&&this.agent.dirty()}function Xe(e){return e.plan?e.plan(e.model,e.ecModel,e.api,e.payload):null}function Qe(e){e.useClearVisual&&e.data.clearAllVisual();var t=e.resetDefines=Object(c["p"])(e.reset(e.model,e.ecModel,e.api,e.payload));return t.length>1?Object(o["F"])(t,function(e,t){return Je(t)}):$e}var $e=Je(0);function Je(e){return function(t,n){var r=n.data,i=n.resetDefines[e];if(i&&i.dataEach)for(var o=t.start;o0&&c===i.length-u.length){var f=i.slice(0,c);"data"!==f&&(t.mainType=f,t[u.toLowerCase()]=e,o=!0)}}s.hasOwnProperty(i)&&(n[i]=e,o=!0),o||(r[i]=e)})}return{cptQuery:t,dataQuery:n,otherQuery:r}},e.prototype.filter=function(e,t){var n=this.eventInfo;if(!n)return!0;var r=n.targetEl,i=n.packedEvent,o=n.model,a=n.view;if(!o||!a)return!0;var s=t.cptQuery,l=t.dataQuery;return u(s,o,"mainType")&&u(s,o,"subType")&&u(s,o,"index","componentIndex")&&u(s,o,"name")&&u(s,o,"id")&&u(l,i,"name")&&u(l,i,"dataIndex")&&u(l,i,"dataType")&&(!a.filterForExposedEvent||a.filterForExposedEvent(e,t.otherQuery,r,i));function u(e,t,n,r){return null==e[n]||t[r||n]===e[n]}},e.prototype.afterTrigger=function(){this.eventInfo=null},e}(),vt={createOnAllSeries:!0,performRawSeries:!0,reset:function(e,t){var n=e.getData();if(e.legendIcon&&n.setVisual("legendIcon",e.legendIcon),e.hasSymbolVisual){var r=e.get("symbol"),i=e.get("symbolSize"),a=e.get("symbolKeepAspect"),s=e.get("symbolRotate"),l=e.get("symbolOffset"),u=Object(o["v"])(r),c=Object(o["v"])(i),f=Object(o["v"])(s),d=Object(o["v"])(l),h=u||c||f||d,p=!u&&r?r:e.defaultSymbol,g=c?null:i,m=f?null:s,v=d?null:l;if(n.setVisual({legendIcon:e.legendIcon||p,symbol:p,symbolSize:g,symbolKeepAspect:a,symbolRotate:m,symbolOffset:v}),!t.isSeriesFiltered(e))return{dataEach:h?y:null}}function y(t,n){var o=e.getRawValue(n),a=e.getDataParams(n);u&&t.setItemVisual(n,"symbol",r(o,a)),c&&t.setItemVisual(n,"symbolSize",i(o,a)),f&&t.setItemVisual(n,"symbolRotate",s(o,a)),d&&t.setItemVisual(n,"symbolOffset",l(o,a))}}},yt={createOnAllSeries:!0,performRawSeries:!0,reset:function(e,t){if(e.hasSymbolVisual&&!t.isSeriesFiltered(e)){var n=e.getData();return{dataEach:n.hasItemOption?r:null}}function r(e,t){var n=e.getItemModel(t),r=n.getShallow("symbol",!0),i=n.getShallow("symbolSize",!0),o=n.getShallow("symbolRotate",!0),a=n.getShallow("symbolOffset",!0),s=n.getShallow("symbolKeepAspect",!0);null!=r&&e.setItemVisual(t,"symbol",r),null!=i&&e.setItemVisual(t,"symbolSize",i),null!=o&&e.setItemVisual(t,"symbolRotate",o),null!=a&&e.setItemVisual(t,"symbolOffset",a),null!=s&&e.setItemVisual(t,"symbolKeepAspect",s)}}};function bt(e,t,n){switch(n){case"color":var r=e.getItemVisual(t,"style");return r[e.getVisual("drawType")];case"opacity":return e.getItemVisual(t,"style").opacity;case"symbol":case"symbolSize":case"liftZ":return e.getItemVisual(t,n);default:0}}function _t(e,t){switch(t){case"color":var n=e.getVisual("style");return n[e.getVisual("drawType")];case"opacity":return e.getVisual("style").opacity;case"symbol":case"symbolSize":case"liftZ":return e.getVisual(t);default:0}}function xt(e,t,n,r,i){var a=e+t;n.isSilent(a)||r.eachComponent({mainType:"series",subType:"pie"},function(e){for(var t=e.seriesIndex,r=i.selected,s=0;s>1^-(1&s),l=l>>1^-(1&l),s+=i,l+=o,i=s,o=l,r.push([s/n,l/n])}return r}function rn(e,t){return e=tn(e),o["F"](o["n"](e.features,function(e){return e.geometry&&e.properties&&e.geometry.coordinates.length>0}),function(e){var n=e.properties,r=e.geometry,i=[];if("Polygon"===r.type){var a=r.coordinates;i.push({type:"polygon",exterior:a[0],interiors:a.slice(1)})}if("MultiPolygon"===r.type){a=r.coordinates;o["k"](a,function(e){e[0]&&i.push({type:"polygon",exterior:e[0],interiors:e.slice(1)})})}var s=new Kt(n[t||"name"],i,n.cp);return s.properties=n,s})}for(var on=[126,25],an="\u5357\u6d77\u8bf8\u5c9b",sn=[[[0,3.5],[7,11.2],[15,11.9],[30,7],[42,.7],[52,.7],[56,7.7],[59,.7],[64,.7],[64,0],[5,0],[0,3.5]],[[13,16.1],[19,14.7],[16,21.7],[11,23.1],[13,16.1]],[[12,32.2],[14,38.5],[15,38.5],[13,32.2],[12,32.2]],[[16,47.6],[12,53.2],[13,53.2],[18,47.6],[16,47.6]],[[6,64.4],[8,70],[9,70],[8,64.4],[6,64.4]],[[23,82.6],[29,79.8],[30,79.8],[25,82.6],[23,82.6]],[[37,70.7],[43,62.3],[44,62.3],[39,70.7],[37,70.7]],[[48,51.1],[51,45.5],[53,45.5],[50,51.1],[48,51.1]],[[51,35],[51,28.7],[53,28.7],[53,35],[51,35]],[[52,22.4],[55,17.5],[56,17.5],[53,22.4],[52,22.4]],[[58,12.6],[62,7],[63,7],[60,12.6],[58,12.6]],[[0,3.5],[0,93.1],[64,93.1],[64,0],[63,0],[63,92.4],[1,92.4],[1,3.5],[0,3.5]]],ln=0;ln0&&e.unfinished);e.unfinished||this._zr.flush()}}},t.prototype.getDom=function(){return this._dom},t.prototype.getId=function(){return this.id},t.prototype.getZr=function(){return this._zr},t.prototype.setOption=function(e,t,n){if(this._disposed)Or(this.id);else{var r,i,a;if(Object(o["z"])(t)&&(n=t.lazyUpdate,r=t.silent,i=t.replaceMerge,a=t.transition,t=t.notMerge),this[Gn]=!0,!this._model||t){var s=new Y(this._api),l=this._theme,u=this._model=new D;u.scheduler=this._scheduler,u.init(null,null,null,l,this._locale,s)}this._model.setOption(e,{replaceMerge:i},Tr);var c={seriesTransition:a,optionChanged:!0};n?(this[Un]={silent:r,updateParams:c},this[Gn]=!1,this.getZr().wakeUp()):(er(this),rr.update.call(this,null,c),this._zr.flush(),this[Un]=null,this[Gn]=!1,sr.call(this,r),lr.call(this,r))}},t.prototype.setTheme=function(){console.error("ECharts#setTheme() is DEPRECATED in ECharts 3.0")},t.prototype.getModel=function(){return this._model},t.prototype.getOption=function(){return this._model&&this._model.getOption()},t.prototype.getWidth=function(){return this._zr.getWidth()},t.prototype.getHeight=function(){return this._zr.getHeight()},t.prototype.getDevicePixelRatio=function(){return this._zr.painter.dpr||Sn&&window.devicePixelRatio||1},t.prototype.getRenderedCanvas=function(e){if(s["a"].canvasSupported)return e=e||{},this._zr.painter.getRenderedCanvas({backgroundColor:e.backgroundColor||this._model.get("backgroundColor"),pixelRatio:e.pixelRatio||this.getDevicePixelRatio()})},t.prototype.getSvgDataURL=function(){if(s["a"].svgSupported){var e=this._zr,t=e.storage.getDisplayList();return Object(o["k"])(t,function(e){e.stopAnimation(null,!0)}),e.painter.toDataURL()}},t.prototype.getDataURL=function(e){if(!this._disposed){e=e||{};var t=e.excludeComponents,n=this._model,r=[],i=this;Object(o["k"])(t,function(e){n.eachComponent({mainType:e},function(e){var t=i._componentsMap[e.__viewId];t.group.ignore||(r.push(t),t.group.ignore=!0)})});var a="svg"===this._zr.painter.getType()?this.getSvgDataURL():this.getRenderedCanvas(e).toDataURL("image/"+(e&&e.type||"png"));return Object(o["k"])(r,function(e){e.group.ignore=!1}),a}Or(this.id)},t.prototype.getConnectedDataURL=function(e){if(this._disposed)Or(this.id);else if(s["a"].canvasSupported){var t="svg"===e.type,n=this.group,r=Math.min,a=Math.max,l=1/0;if(Er[n]){var u=l,c=l,f=-l,d=-l,h=[],p=e&&e.pixelRatio||this.getDevicePixelRatio();Object(o["k"])(Ar,function(i,s){if(i.group===n){var l=t?i.getZr().painter.getSvgDom().innerHTML:i.getRenderedCanvas(Object(o["d"])(e)),p=i.getDom().getBoundingClientRect();u=r(p.left,u),c=r(p.top,c),f=a(p.right,f),d=a(p.bottom,d),h.push({dom:l,left:p.left,top:p.top})}}),u*=p,c*=p,f*=p,d*=p;var g=f-u,m=d-c,v=Object(o["f"])(),y=i["a"](v,{renderer:t?"svg":"canvas"});if(y.resize({width:g,height:m}),t){var b="";return Object(o["k"])(h,function(e){var t=e.left-u,n=e.top-c;b+=''+e.dom+""}),y.painter.getSvgRoot().innerHTML=b,e.connectedBackgroundColor&&y.painter.setBackgroundColor(e.connectedBackgroundColor),y.refreshImmediately(),y.painter.toDataURL()}return e.connectedBackgroundColor&&y.add(new be["a"]({shape:{x:0,y:0,width:g,height:m},style:{fill:e.connectedBackgroundColor}})),Object(o["k"])(h,function(e){var t=new _e["a"]({style:{x:e.left*p-u,y:e.top*p-c,image:e.dom}});y.add(t)}),y.refreshImmediately(),v.toDataURL("image/"+(e&&e.type||"png"))}return this.getDataURL(e)}},t.prototype.convertToPixel=function(e,t){return ir(this,"convertToPixel",e,t)},t.prototype.convertFromPixel=function(e,t){return ir(this,"convertFromPixel",e,t)},t.prototype.containPixel=function(e,t){if(!this._disposed){var n,r=this._model,i=c["q"](r,e);return Object(o["k"])(i,function(e,r){r.indexOf("Models")>=0&&Object(o["k"])(e,function(e){var i=e.coordinateSystem;if(i&&i.containPoint)n=n||!!i.containPoint(t);else if("seriesModels"===r){var o=this._chartsMap[e.__viewId];o&&o.containPoint&&(n=n||o.containPoint(t,e))}else 0},this)},this),!!n}Or(this.id)},t.prototype.getVisual=function(e,t){var n=this._model,r=c["q"](n,e,{defaultMainType:"series"}),i=r.seriesModel;var o=i.getData(),a=r.hasOwnProperty("dataIndexInside")?r.dataIndexInside:r.hasOwnProperty("dataIndex")?o.indexOfRawIndex(r.dataIndex):null;return null!=a?bt(o,a,t):_t(o,t)},t.prototype.getViewOfComponentModel=function(e){return this._componentsMap[e.__viewId]},t.prototype.getViewOfSeriesModel=function(e){return this._chartsMap[e.__viewId]},t.prototype._initEvents=function(){var e=this;Object(o["k"])(kr,function(t){var n=function(n){var r,i=e.getModel(),a=n.target,s="globalout"===t;if(s?r={}:a&&Object(St["a"])(a,function(e){var t=Object(ke["a"])(e);if(t&&null!=t.dataIndex){var n=t.dataModel||i.getSeriesByIndex(t.seriesIndex);return r=n&&n.getDataParams(t.dataIndex,t.dataType)||{},!0}if(t.eventData)return r=Object(o["m"])({},t.eventData),!0},!0),r){var l=r.componentType,u=r.componentIndex;"markLine"!==l&&"markPoint"!==l&&"markArea"!==l||(l="series",u=r.seriesIndex);var c=l&&null!=u&&i.getComponent(l,u),f=c&&e["series"===c.mainType?"_chartsMap":"_componentsMap"][c.__viewId];0,r.event=n,r.type=t,e._$eventProcessor.eventInfo={targetEl:a,packedEvent:r,model:c,view:f},e.trigger(t,r)}};n.zrEventfulCallAtLast=!0,e._zr.on(t,n,e)}),Object(o["k"])(Mr,function(t,n){e._messageCenter.on(n,function(e){this.trigger(n,e)},e)}),Object(o["k"])(["selectchanged"],function(t){e._messageCenter.on(t,function(e){this.trigger(t,e)},e)}),wt(this._messageCenter,this,this._api)},t.prototype.isDisposed=function(){return this._disposed},t.prototype.clear=function(){this._disposed?Or(this.id):this.setOption({series:[]},!0)},t.prototype.dispose=function(){if(this._disposed)Or(this.id);else{this._disposed=!0,c["u"](this.getDom(),Lr,"");var e=this,t=e._api,n=e._model;Object(o["k"])(e._componentsViews,function(e){e.dispose(n,t)}),Object(o["k"])(e._chartsViews,function(e){e.dispose(n,t)}),e._zr.dispose(),e._dom=e._model=e._chartsMap=e._componentsMap=e._chartsViews=e._componentsViews=e._scheduler=e._api=e._zr=e._throttledZrFlush=e._theme=e._coordSysMgr=e._messageCenter=null,delete Ar[e.id]}},t.prototype.resize=function(e){if(this._disposed)Or(this.id);else{this._zr.resize(e);var t=this._model;if(this._loadingFX&&this._loadingFX.resize(),t){var n=t.resetOption("media"),r=e&&e.silent;this[Un]&&(null==r&&(r=this[Un].silent),n=!0,this[Un]=null),this[Gn]=!0,n&&er(this),rr.update.call(this,{type:"resize",animation:Object(o["m"])({duration:0},e&&e.animation)}),this[Gn]=!1,sr.call(this,r),lr.call(this,r)}}},t.prototype.showLoading=function(e,t){if(this._disposed)Or(this.id);else if(Object(o["z"])(e)&&(t=e,e=""),e=e||"default",this.hideLoading(),Dr[e]){var n=Dr[e](this._api,t),r=this._zr;this._loadingFX=n,r.add(n)}},t.prototype.hideLoading=function(){this._disposed?Or(this.id):(this._loadingFX&&this._zr.remove(this._loadingFX),this._loadingFX=null)},t.prototype.makeActionFromEvent=function(e){var t=Object(o["m"])({},e);return t.type=Mr[e.type],t},t.prototype.dispatchAction=function(e,t){if(this._disposed)Or(this.id);else if(Object(o["z"])(t)||(t={silent:!!t}),Sr[e.type]&&this._model)if(this[Gn])this._pendingActions.push(e);else{var n=t.silent;ar.call(this,e,n);var r=t.flush;r?this._zr.flush():!1!==r&&s["a"].browser.weChat&&this._throttledZrFlush(),sr.call(this,n),lr.call(this,n)}},t.prototype.updateLabelLayout=function(){On.trigger("series:layoutlabels",this._model,this._api,{updatedSeries:[]})},t.prototype.appendData=function(e){if(this._disposed)Or(this.id);else{var t=e.seriesIndex,n=this.getModel(),r=n.getSeriesByIndex(t);0,r.appendData(e),this._scheduler.unfinished=!0,this.getZr().wakeUp()}},t.internalField=function(){function e(e){for(var t=[],n=e.currentStates,r=0;rt.get("hoverLayerThreshold")&&!s["a"].node&&!s["a"].worker&&t.eachSeries(function(t){if(!t.preventUsingHoverLayer){var n=e._chartsMap[t.__viewId];n.__alive&&n.group.traverse(function(e){e.states.emphasis&&(e.states.emphasis.hoverLayer=!0)})}})}function n(e,t){var n=e.get("blendMode")||null;t.group.traverse(function(e){e.isGroup||(e.style.blend=n),e.eachPendingDisplayable&&e.eachPendingDisplayable(function(e){e.style.blend=n})})}function i(e,t){e.preventAutoZ||l(t.group,e.get("z")||0,e.get("zlevel")||0,-1/0)}function l(e,t,n,r){var i=e.getTextContent(),o=e.getTextGuideLine(),a=e.isGroup;if(a)for(var s=e.childrenRef(),u=0;u0?{duration:o,delay:r.get("delay"),easing:r.get("easing")}:null;n.group.traverse(function(t){if(t.states&&t.states.emphasis){if(xe["d"](t))return;if(t instanceof we["b"]&&Object(Oe["B"])(t),t.__dirty){var n=t.prevStates;n&&t.useStates(n)}if(i){t.stateTransition=a;var r=t.getTextContent(),o=t.getTextGuideLine();r&&(r.stateTransition=a),o&&(o.stateTransition=a)}t.__dirty&&e(t)}})}er=function(e){var t=e._scheduler;t.restorePipelines(e._model),t.prepareStageTasks(),tr(e,!0),tr(e,!1),t.plan()},tr=function(e,t){for(var n=e._model,r=e._scheduler,i=t?e._componentsViews:e._chartsViews,o=t?e._componentsMap:e._chartsMap,a=e._zr,s=e._api,l=0;l=0)){Zr.push(n);var a=at.wrapStageHandler(n,i);a.__prio=t,a.__raw=n,e.push(a)}}function Xr(e,t){Dr[e]=t}function Qr(e,t,n){wn.registerMap(e,t,n)}var $r=kt["b"];qr(Pn,Pe),qr(Rn,Ne),qr(Rn,Re),qr(Pn,vt),qr(Rn,yt),qr(Vn,Ft),Fr(de),Br(Tn,pe),Xr("default",Ye),Ur({type:Oe["c"],event:Oe["c"],update:Oe["c"]},o["I"]),Ur({type:Oe["b"],event:Oe["b"],update:Oe["b"]},o["I"]),Ur({type:Oe["f"],event:Oe["f"],update:Oe["f"]},o["I"]),Ur({type:Oe["i"],event:Oe["i"],update:Oe["i"]},o["I"]),Ur({type:Oe["h"],event:Oe["h"],update:Oe["h"]},o["I"]),zr("light",lt),zr("dark",pt)},GDDg:function(e,t,n){"use strict";var r=n("bYtY"),i=n("Qxkt"),o=n("gPAo"),a=n("KxfA"),s=n("B/3G"),l=function(){function e(e,t){this._encode=e,this._schema=t}return e.prototype.get=function(){return{fullDimensions:this._getFullDimensionNames(),encode:this._encode}},e.prototype._getFullDimensionNames=function(){return this._cachedDimNames||(this._cachedDimNames=this._schema?this._schema.makeOutputDimensionNames():[]),this._cachedDimNames},e}();function u(e,t){var n={},i=n.encode={},o=Object(r["g"])(),a=[],u=[],f={};Object(r["k"])(e.dimensions,function(t){var n=e.getDimensionInfo(t),r=n.coordDim;if(r){0;var l=n.coordDimIndex;c(i,r)[l]=t,n.isExtraCoord||(o.set(r,1),d(n.type)&&(a[0]=t),c(f,r)[l]=e.getDimensionIndex(n.name)),n.defaultTooltip&&u.push(t)}s["i"].each(function(e,t){var r=c(i,t),o=n.otherDims[t];null!=o&&!1!==o&&(r[o]=n.name)})});var h=[],p={};o.each(function(e,t){var n=i[t];p[t]=n[0],h=h.concat(n)}),n.dataDimsOnCoord=h,n.dataDimIndicesOnCoord=Object(r["F"])(h,function(t){return e.getDimensionInfo(t).storeDimIndex}),n.encodeFirstDimNotExtra=p;var g=i.label;g&&g.length&&(a=g.slice());var m=i.tooltip;return m&&m.length?u=m.slice():u.length||(u=a.slice()),i.defaultedLabel=a,i.defaultedTooltip=u,n.userOutput=new l(f,t),n}function c(e,t){return e.hasOwnProperty(t)||(e[t]=[]),e[t]}function f(e){return"category"===e?"ordinal":"time"===e?"time":"float"}function d(e){return!("ordinal"===e||"time"===e)}var h,p,g,m,v,y,b,_=function(){function e(e){this.otherDims={},null!=e&&r["m"](this,e)}return e}(),x=_,w=n("4NO4"),k=n("hhxK"),O=n("7G+c"),S=n("0M5g"),M=n("gLkn"),C=r["z"],T=r["F"],j="undefined"===typeof Int32Array?Array:Int32Array,I="e\0\0",D=-1,A=["hasItemOption","_nameList","_idList","_invertedIndicesMap","_dimSummary","userOutput","_rawData","_dimValueGetter","_nameDimIdx","_idDimIdx","_nameRepeatCount"],E=["_approximateExtent"],P=function(){function e(e,t){var n;this.type="list",this._dimOmitted=!1,this._nameList=[],this._idList=[],this._visual={},this._layout={},this._itemVisuals=[],this._itemLayouts=[],this._graphicEls=[],this._approximateExtent={},this._calculationInfo={},this.hasItemOption=!1,this.TRANSFERABLE_METHODS=["cloneShallow","downSample","lttbDownSample","map"],this.CHANGABLE_METHODS=["filterSelf","selectRange"],this.DOWNSAMPLE_METHODS=["downSample","lttbDownSample"];var i=!1;Object(M["d"])(e)?(n=e.dimensions,this._dimOmitted=e.isDimensionOmitted(),this._schema=e):(i=!0,n=e),n=n||["x","y"];for(var o={},a=[],s={},l=!1,u={},c=0;c=t)){var n=this._store,r=n.getProvider();this._updateOrdinalMeta();var i=this._nameList,o=this._idList,a=r.getSource().sourceFormat,l=a===s["f"];if(l&&!r.pure)for(var u=[],c=e;c0},e.prototype.ensureUniqueItemVisual=function(e,t){var n=this._itemVisuals,i=n[e];i||(i=n[e]={});var o=i[t];return null==o&&(o=this.getVisual(t),r["s"](o)?o=o.slice():C(o)&&(o=r["m"]({},o)),i[t]=o),o},e.prototype.setItemVisual=function(e,t,n){var i=this._itemVisuals[e]||{};this._itemVisuals[e]=i,C(t)?r["m"](i,t):i[t]=n},e.prototype.clearAllVisual=function(){this._visual={},this._itemVisuals=[]},e.prototype.setLayout=function(e,t){if(C(e))for(var n in e)e.hasOwnProperty(n)&&this.setLayout(n,e[n]);else this._layout[e]=t},e.prototype.getLayout=function(e){return this._layout[e]},e.prototype.getItemLayout=function(e){return this._itemLayouts[e]},e.prototype.setItemLayout=function(e,t,n){this._itemLayouts[e]=n?r["m"](this._itemLayouts[e]||{},t):t},e.prototype.clearItemLayouts=function(){this._itemLayouts.length=0},e.prototype.setItemGraphicEl=function(e,t){var n=this.hostModel&&this.hostModel.seriesIndex;Object(k["b"])(n,this.dataType,e,t),this._graphicEls[e]=t},e.prototype.getItemGraphicEl=function(e){return this._graphicEls[e]},e.prototype.eachItemGraphicEl=function(e,t){r["k"](this._graphicEls,function(n,r){n&&e&&e.call(t,n,r)})},e.prototype.cloneShallow=function(t){return t||(t=new e(this._schema?this._schema:T(this.dimensions,this._getDimInfo,this),this.hostModel)),v(t,this),t._store=this._store,t},e.prototype.wrapMethod=function(e,t){var n=this[e];"function"===typeof n&&(this.__wrappedMethods=this.__wrappedMethods||[],this.__wrappedMethods.push(e),this[e]=function(){var e=n.apply(this,arguments);return t.apply(this,[e].concat(r["P"](arguments)))})},e.internalField=function(){h=function(e){var t=e._invertedIndicesMap;r["k"](t,function(n,r){var i=e._dimInfos[r],o=i.ordinalMeta,a=e._store;if(o){n=t[r]=new j(o.categories.length);for(var s=0;s1&&(s+="__ec__"+u),r[t]=s}}}(),e}(),L=P,N=n("D5nY");function R(e,t){Object(O["e"])(e)||(e=Object(O["c"])(e)),t=t||{};var n=t.coordDimensions||[],i=t.dimensionsDefine||e.dimensionsDefine||[],o=Object(r["g"])(),a=[],l=F(e,n,i,t.dimensionsCount),u=t.canOmitUnusedDimensions&&Object(M["e"])(l),c=i===e.dimensionsDefine,f=c?Object(M["c"])(e):Object(M["b"])(i),d=t.encodeDefine;!d&&t.encodeDefaulter&&(d=t.encodeDefaulter(e,l));for(var h=Object(r["g"])(d),p=new S["a"](l),g=0;g0&&(i.name=o+(a-1)),a++,t.set(o,a)}}function F(e,t,n,i){var o=Math.max(e.dimensionsDetectedCount||1,t.length,n.length,i||0);return Object(r["k"])(t,function(e){var t;Object(r["z"])(e)&&(t=e.dimsDef)&&(o=Math.max(o,t.length))}),o}function B(e,t,n){var r=t.data;if(n||r.hasOwnProperty(e)){var i=0;while(r.hasOwnProperty(e+i))i++;e+=i}return t.set(e,!0),e}var V=n("HznI"),Y=function(){function e(e){this.coordSysDims=[],this.axisMap=Object(r["g"])(),this.categoryAxisMap=Object(r["g"])(),this.coordSysName=e}return e}();function G(e){var t=e.get("coordinateSystem"),n=new Y(t),r=U[t];if(r)return r(e,n,n.axisMap,n.categoryAxisMap),n}var U={cartesian2d:function(e,t,n,r){var i=e.getReferringComponents("xAxis",w["b"]).models[0],o=e.getReferringComponents("yAxis",w["b"]).models[0];t.coordSysDims=["x","y"],n.set("x",i),n.set("y",o),W(i)&&(r.set("x",i),t.firstCategoryDimIndex=0),W(o)&&(r.set("y",o),null==t.firstCategoryDimIndex&&(t.firstCategoryDimIndex=1))},singleAxis:function(e,t,n,r){var i=e.getReferringComponents("singleAxis",w["b"]).models[0];t.coordSysDims=["single"],n.set("single",i),W(i)&&(r.set("single",i),t.firstCategoryDimIndex=0)},polar:function(e,t,n,r){var i=e.getReferringComponents("polar",w["b"]).models[0],o=i.findAxisModel("radiusAxis"),a=i.findAxisModel("angleAxis");t.coordSysDims=["radius","angle"],n.set("radius",o),n.set("angle",a),W(o)&&(r.set("radius",o),t.firstCategoryDimIndex=0),W(a)&&(r.set("angle",a),null==t.firstCategoryDimIndex&&(t.firstCategoryDimIndex=1))},geo:function(e,t,n,r){t.coordSysDims=["lng","lat"]},parallel:function(e,t,n,i){var o=e.ecModel,a=o.getComponent("parallel",e.get("parallelIndex")),s=t.coordSysDims=a.dimensions.slice();Object(r["k"])(a.parallelAxisIndex,function(e,r){var a=o.getComponent("parallelAxis",e),l=s[r];n.set(l,a),W(a)&&(i.set(l,a),null==t.firstCategoryDimIndex&&(t.firstCategoryDimIndex=r))})}};function W(e){return"category"===e.get("type")}var H=n("7hqr");function q(e,t){var n,i=e.get("coordinateSystem"),o=V["a"].get(i);return t&&t.coordSysDims&&(n=r["F"](t.coordSysDims,function(e){var n={name:e},r=t.axisMap.get(e);if(r){var i=r.get("type");n.type=f(i)}return n})),n||(n=o&&(o.getDimensionsInfo?o.getDimensionsInfo():o.dimensions.slice())||["x","y"]),n}function Z(e,t,n){var i,o;return n&&r["k"](e,function(e,r){var a=e.coordDim,s=n.categoryAxisMap.get(a);s&&(null==i&&(i=r),e.ordinalMeta=s.getOrdinalMeta(),t&&(e.createInvertedIndices=!0)),null!=e.otherDims.itemName&&(o=!0)}),o||null==i||(e[i].otherDims.itemName=0),i}function K(e,t,n){n=n||{};var i,o=t.getSourceManager(),a=!1;e?(a=!0,i=Object(O["c"])(e)):(i=o.getSource(),a=i.sourceFormat===s["f"]);var l=G(t),u=q(t,l),c=n.useEncodeDefaulter,f=r["v"](c)?c:c?r["i"](N["c"],u,t):null,d={coordDimensions:u,generateCoord:n.generateCoord,encodeDefine:t.getEncode(),encodeDefaulter:f,canOmitUnusedDimensions:!a},h=R(i,d),p=Z(h.dimensions,n.createInvertedIndices,l),g=a?null:o.getSharedDataStore(h),m=Object(H["a"])(t,{schema:h,store:g}),v=new L(h,t);v.setCalculationInfo(m);var y=null!=p&&X(i)?function(e,t,n,r){return r===p?n:this.defaultDimValueGetter(e,t,n,r)}:null;return v.hasItemOption=!1,v.initData(a?i:g,null,y),v}function X(e){if(e.sourceFormat===s["f"]){var t=Q(e.data||[]);return null!=t&&!r["s"](Object(w["g"])(t))}}function Q(e){var t=0;while(t=4)return!1;for(d=e.parentType,e.parentType="paragraph";h3)){if(e.sCount[h]>=e.blkIndent&&(l=e.bMarks[h]+e.tShift[h],u=e.eMarks[h],l=u)))){c=61===f?1:2;break}if(!(e.sCount[h]<0)){for(i=!1,o=0,a=p.length;o0&&void 0!==arguments[0]?arguments[0]:{},t=e.history||Object(c["b"])(),n={initialReducer:{router:I(t)},setupMiddlewares:function(e){return[D(t)].concat(Object(o["a"])(e))},setupApp:function(e){e._history=z(t)}},r=Object(p["a"])(e,n),a=r.start;return r.router=s,r.start=l,r;function s(e){u()(A(e),"[app.router] router should be function, but got ".concat(Object(i["a"])(e))),r._router=e}function l(e){L(e)&&(e=d.a.querySelector(e),u()(e,"[app.start] container ".concat(e," not found"))),u()(!e||P(e),"[app.start] container should be HTMLElement"),u()(r._router,"[app.start] router must be registered before app.start()"),r._store||a.call(r);var t=r._store;if(r._getProvider=N.bind(null,t,r),!e)return N(t,this,this._router);R(e,t,r,r._router),r._plugin.apply("onHmr")(R.bind(null,e,t,r))}}function P(e){return"object"===Object(i["a"])(e)&&null!==e&&e.nodeType&&e.nodeName}function L(e){return"string"===typeof e}function N(e,t,n){var i=function(i){return s.a.createElement(h["a"],{store:e},n(Object(r["a"])({app:t,history:t._history},i)))};return i}function R(e,t,r,i){var o=n("i8i4");o.render(s.a.createElement(N(t,r,i)),e)}function z(e){var t=e.listen;return e.listen=function(n){var r=n.toString(),i="handleLocationChange"===n.name&&r.indexOf("onLocationChanged")>-1||r.indexOf(".inTimeTravelling")>-1&&r.indexOf(".inTimeTravelling")>-1&&r.indexOf("arguments[2]")>-1;return n(e.location,e.action),t.call(e,function(){for(var e=arguments.length,t=new Array(e),r=0;r0&&r++,"text"===i[t].type&&t+11||t>0&&!e.noHeader,r=0;Object(i["k"])(e.blocks,function(e){d(e).planLayout(e);var t=e.__gapLevelBetweenSubBlocks;t>=r&&(r=t+(!n||t&&("section"!==e.type||e.noHeader)?0:1))}),e.__gapLevelBetweenSubBlocks=r},build:function(e,t,n,i){var o=t.noHeader,a=m(t),u=p(e,t,o?n:a.html,i);if(o)return u;var c=Object(r["f"])(t.header,"ordinal",e.useUTC),f=l(i,e.renderMode).nameStyle;return"richText"===e.renderMode?_(e,c,f)+a.richText+u:v('
'+Object(r["c"])(c)+"
"+u,n)}},nameValue:{planLayout:function(e){e.__gapLevelBetweenSubBlocks=0},build:function(e,t,n,o){var a=e.renderMode,s=t.noName,u=t.noValue,c=!t.markerType,f=t.name,d=t.value,h=e.useUTC;if(!s||!u){var p=c?"":e.markupStyleCreator.makeTooltipMarker(t.markerType,t.markerColor||"#333",a),g=s?"":Object(r["f"])(f,"ordinal",h),m=t.valueType,w=u?[]:Object(i["s"])(d)?Object(i["F"])(d,function(e,t){return Object(r["f"])(e,Object(i["s"])(m)?m[t]:m,h)}):[Object(r["f"])(d,Object(i["s"])(m)?m[0]:m,h)],k=!c||!s,O=!c&&s,S=l(o,a),M=S.nameStyle,C=S.valueStyle;return"richText"===a?(c?"":p)+(s?"":_(e,g,M))+(u?"":x(e,w,k,O,C)):v((c?"":p)+(s?"":y(g,!c,M))+(u?"":b(w,k,O,C)),n)}}}};function p(e,t,n,r){var a=[],s=t.blocks||[];Object(i["b"])(!s||Object(i["s"])(s)),s=s||[];var l=e.orderMode;if(t.sortBlocks&&l){s=s.slice();var u={valueAsc:"asc",valueDesc:"desc"};if(Object(i["p"])(u,l)){var c=new o["a"](u[l],null);s.sort(function(e,t){return c.evaluate(e.sortParam,t.sortParam)})}else"seriesDesc"===l&&s.reverse()}var f=m(t);if(Object(i["k"])(s,function(t,n){var i=d(t).build(e,t,n>0?f.html:0,r);null!=i&&a.push(i)}),a.length)return"richText"===e.renderMode?a.join(f.richText):v(a.join(""),n)}function g(e,t,n,r,i,o){if(e){var a=d(e);a.planLayout(e);var s={useUTC:i,renderMode:n,orderMode:r,markupStyleCreator:t};return a.build(s,e,0,o)}}function m(e){var t=e.__gapLevelBetweenSubBlocks;return{html:u[t],richText:c[t]}}function v(e,t){var n='
',r="margin: "+t+"px 0 0";return'
'+e+n+"
"}function y(e,t,n){var i=t?"margin-left:2px":"";return''+Object(r["c"])(e)+""}function b(e,t,n,o){var a=n?"10px":"20px",s=t?"float:right;margin-left:"+a:"";return''+Object(i["F"])(e,function(e){return Object(r["c"])(e)}).join("  ")+""}function _(e,t,n){return e.markupStyleCreator.wrapRichTextStyle(t,n)}function x(e,t,n,r,i){var o=[i],a=r?10:20;return n&&o.push({padding:[0,0,0,a],align:"right"}),e.markupStyleCreator.wrapRichTextStyle(t.join(" "),o)}function w(e,t){var n=e.getData().getItemVisual(t,"style"),i=n[e.visualDrawType];return Object(r["b"])(i)}function k(e,t){var n=e.get("padding");return null!=n?n:"richText"===t?[8,10]:10}var O=function(){function e(){this.richTextStyles={},this._nextStyleNameId=Object(a["f"])()}return e.prototype._generateStyleName=function(){return"__EC_aUTo_"+this._nextStyleNameId++},e.prototype.makeTooltipMarker=function(e,t,n){var o="richText"===n?this._generateStyleName():null,a=Object(r["e"])({color:t,type:e,renderMode:n,markerId:o});return Object(i["A"])(a)?a:(this.richTextStyles[o]=a.style,a.content)},e.prototype.wrapRichTextStyle=function(e,t){var n={};Object(i["s"])(t)?Object(i["k"])(t,function(e){return Object(i["m"])(n,e)}):Object(i["m"])(n,t);var r=this._generateStyleName();return this.richTextStyles[r]=n,"{"+r+"|"+e+"}"},e}()},Ioao:function(e,t,n){var r=n("heNW"),i=Math.max;function o(e,t,n){return t=i(void 0===t?e.length-1:t,0),function(){var o=arguments,a=-1,s=i(o.length-t,0),l=Array(s);while(++a=0||(c.push(e),Object(l["v"])(e)&&(e={install:e}),e.install(f))}},IwbS:function(e,t,n){"use strict";n.r(t),n.d(t,"extendShape",function(){return L}),n.d(t,"extendPath",function(){return R}),n.d(t,"registerShape",function(){return z}),n.d(t,"getShapeClass",function(){return F}),n.d(t,"makePath",function(){return B}),n.d(t,"makeImage",function(){return V}),n.d(t,"mergePath",function(){return G}),n.d(t,"resizePath",function(){return U}),n.d(t,"subPixelOptimizeLine",function(){return W}),n.d(t,"subPixelOptimizeRect",function(){return H}),n.d(t,"subPixelOptimize",function(){return q}),n.d(t,"getTransform",function(){return Z}),n.d(t,"applyTransform",function(){return K}),n.d(t,"transformDirection",function(){return X}),n.d(t,"groupTransition",function(){return J}),n.d(t,"clipPointsByRect",function(){return ee}),n.d(t,"clipRectByRect",function(){return te}),n.d(t,"createIcon",function(){return ne}),n.d(t,"linePolygonIntersect",function(){return re}),n.d(t,"lineLineIntersect",function(){return ie}),n.d(t,"setTooltipConfig",function(){return se});var r=n("NC18"),i=n("Fofx"),o=n("QBsz"),a=n("y+Vt");n.d(t,"Path",function(){return a["b"]});var s=n("hYLj"),l=n("Dagg");n.d(t,"Image",function(){return l["a"]});var u=n("LcXL");n.d(t,"Group",function(){return u["a"]});var c=n("dqUG");n.d(t,"Text",function(){return c["a"]});var f=n("2fw6");n.d(t,"Circle",function(){return f["a"]});var d=n("rmlV");n.d(t,"Ellipse",function(){return d["a"]});var h=n("SqI9");n.d(t,"Sector",function(){return h["a"]});var p=n("RXMa");n.d(t,"Ring",function(){return p["a"]});var g=n("h7HQ");n.d(t,"Polygon",function(){return g["a"]});var m=n("1Jh7");n.d(t,"Polyline",function(){return m["a"]});var v=n("x6Kt");n.d(t,"Rect",function(){return v["a"]});var y=n("yxFR");n.d(t,"Line",function(){return y["a"]});var b=n("rA99");n.d(t,"BezierCurve",function(){return b["a"]});var _=n("jTL6");n.d(t,"Arc",function(){return _["a"]});var x=n("1MYJ");n.d(t,"CompoundPath",function(){return x["a"]});var w=n("SKnc");n.d(t,"LinearGradient",function(){return w["a"]});var k=n("3e3G");n.d(t,"RadialGradient",function(){return k["a"]});var O=n("mFDi");n.d(t,"BoundingRect",function(){return O["a"]});var S=n("yoD8");n.d(t,"OrientedBoundingRect",function(){return S["a"]});var M=n("3Oj7");n.d(t,"Point",function(){return M["a"]});var C=n("OS9S");n.d(t,"IncrementalDisplayable",function(){return C["a"]});var T=n("nPnh"),j=n("bYtY"),I=n("hhxK"),D=n("3qvL");n.d(t,"updateProps",function(){return D["h"]}),n.d(t,"initProps",function(){return D["c"]}),n.d(t,"removeElement",function(){return D["e"]}),n.d(t,"removeElementWithFadeOut",function(){return D["f"]}),n.d(t,"isElementRemoved",function(){return D["d"]});var A=Math.max,E=Math.min,P={};function L(e){return a["b"].extend(e)}var N=r["c"];function R(e,t){return N(e,t)}function z(e,t){P[e]=t}function F(e){if(P.hasOwnProperty(e))return P[e]}function B(e,t,n,i){var o=r["b"](e,t);return n&&("center"===i&&(n=Y(n,o.getBoundingRect())),U(o,n)),o}function V(e,t,n){var r=new l["a"]({style:{image:e,x:t.x,y:t.y,width:t.width,height:t.height},onload:function(e){if("center"===n){var i={width:e.width,height:e.height};r.setStyle(Y(t,i))}}});return r}function Y(e,t){var n,r=t.width/t.height,i=e.height*r;i<=e.width?n=e.height:(i=e.width,n=i/r);var o=e.x+e.width/2,a=e.y+e.height/2;return{x:o-i/2,y:a-n/2,width:i,height:n}}var G=r["d"];function U(e,t){if(e.applyTransform){var n=e.getBoundingRect(),r=n.calculateTransform(t);e.applyTransform(r)}}function W(e){return T["b"](e.shape,e.shape,e.style),e}function H(e){return T["c"](e.shape,e.shape,e.style),e}var q=T["a"];function Z(e,t){var n=i["c"]([]);while(e&&e!==t)i["e"](n,e.getLocalTransform(),n),e=e.parent;return n}function K(e,t,n){return t&&!Object(j["t"])(t)&&(t=s["a"].getLocalTransform(t)),n&&(t=i["d"]([],t)),o["b"]([],e,t)}function X(e,t,n){var r=0===t[4]||0===t[5]||0===t[0]?1:Math.abs(2*t[4]/t[0]),i=0===t[4]||0===t[5]||0===t[2]?1:Math.abs(2*t[4]/t[2]),o=["left"===e?-r:"right"===e?r:0,"top"===e?-i:"bottom"===e?i:0];return o=K(o,t,n),Math.abs(o[0])>Math.abs(o[1])?o[0]>0?"right":"left":o[1]>0?"bottom":"top"}function Q(e){return!e.isGroup}function $(e){return null!=e.shape}function J(e,t,n){if(e&&t){var r=i(e);t.traverse(function(e){if(Q(e)&&e.anid){var t=r[e.anid];if(t){var i=o(e);e.attr(o(t)),Object(D["h"])(e,i,n,Object(I["a"])(e).dataIndex)}}})}function i(e){var t={};return e.traverse(function(e){Q(e)&&e.anid&&(t[e.anid]=e)}),t}function o(e){var t={x:e.x,y:e.y,rotation:e.rotation};return $(e)&&(t.shape=Object(j["m"])({},e.shape)),t}}function ee(e,t){return Object(j["F"])(e,function(e){var n=e[0];n=A(n,t.x),n=E(n,t.x+t.width);var r=e[1];return r=A(r,t.y),r=E(r,t.y+t.height),[n,r]})}function te(e,t){var n=A(e.x,t.x),r=E(e.x+e.width,t.x+t.width),i=A(e.y,t.y),o=E(e.y+e.height,t.y+t.height);if(r>=n&&o>=i)return{x:n,y:i,width:r-n,height:o-i}}function ne(e,t,n){var r=Object(j["m"])({rectHover:!0},t),i=r.style={strokeNoScale:!0};if(n=n||{x:-1,y:-1,width:2,height:2},e)return 0===e.indexOf("image://")?(i.image=e.slice(8),Object(j["j"])(i,n),new l["a"](r)):B(e.replace("path://",""),r,n,"center")}function re(e,t,n,r,i){for(var o=0,a=i[i.length-1];o1)return!1;var m=oe(h,p,c,f)/d;return!(m<0||m>1)}function oe(e,t,n,r){return e*r-n*t}function ae(e){return e<=1e-6&&e>=-1e-6}function se(e){var t=e.itemTooltipOption,n=e.componentModel,r=e.itemName,i=Object(j["A"])(t)?{formatter:t}:t,o=n.mainType,a=n.componentIndex,s={componentType:o,name:r,$vars:["name"]};s[o+"Index"]=a;var l=e.formatterParamsExtra;l&&Object(j["k"])(Object(j["D"])(l),function(e){Object(j["p"])(s,e)||(s[e]=l[e],s.$vars.push(e))});var u=Object(I["a"])(e.el);u.componentMainType=o,u.componentIndex=a,u.tooltipConfig={name:r,option:Object(j["j"])({content:r,formatterParams:s},i)}}z("circle",f["a"]),z("ellipse",d["a"]),z("sector",h["a"]),z("ring",p["a"]),z("polygon",g["a"]),z("polyline",m["a"]),z("rect",v["a"]),z("line",y["a"]),z("bezierCurve",b["a"]),z("arc",_["a"])},JHRd:function(e,t,n){var r=n("Kz5y"),i=r.Uint8Array;e.exports=i},JHgL:function(e,t,n){var r=n("QkVE");function i(e){return r(this,e).get(e)}e.exports=i},JSQU:function(e,t,n){var r=n("YESw"),i="__lodash_hash_undefined__";function o(e,t){var n=this.__data__;return this.size+=this.has(e)?0:1,n[e]=r&&void 0===t?i:t,this}e.exports=o},JTzB:function(e,t,n){var r=n("NykK"),i=n("ExA7"),o="[object Arguments]";function a(e){return i(e)&&r(e)==o}e.exports=a},KCsZ:function(e,t,n){"use strict";n.d(t,"a",function(){return i});var r=n("bYtY");function i(e,t){for(var n=0;n=0||o&&r["q"](o,l)<0)){var u=n.getShallow(l,t);null!=u&&(a[e[s][0]]=u)}}return a}}},KMkd:function(e,t){function n(){this.__data__=[],this.size=0}e.exports=n},KOyK:function(e,t,n){"use strict";var r=/^([a-zA-Z0-9.!#$%&'*+\/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*)$/,i=/^([a-zA-Z][a-zA-Z0-9+.\-]{1,31}):([^<>\x00-\x20]*)$/;e.exports=function(e,t){var n,o,a,s,l,u,c=e.pos;if(60!==e.src.charCodeAt(c))return!1;for(l=e.pos,u=e.posMax;;){if(++c>=u)return!1;if(s=e.src.charCodeAt(c),60===s)return!1;if(62===s)break}return n=e.src.slice(l+1,c),i.test(n)?(o=e.md.normalizeLink(n),!!e.md.validateLink(o)&&(t||(a=e.push("link_open","a",1),a.attrs=[["href",o]],a.markup="autolink",a.info="auto",a=e.push("text","",0),a.content=e.md.normalizeLinkText(n),a=e.push("link_close","a",-1),a.markup="autolink",a.info="auto"),e.pos+=n.length+2,!0)):!!r.test(n)&&(o=e.md.normalizeLink("mailto:"+n),!!e.md.validateLink(o)&&(t||(a=e.push("link_open","a",1),a.attrs=[["href",o]],a.markup="autolink",a.info="auto",a=e.push("text","",0),a.content=e.md.normalizeLinkText(n),a=e.push("link_close","a",-1),a.markup="autolink",a.info="auto"),e.pos+=n.length+2,!0))}},KfNM:function(e,t){var n=Object.prototype,r=n.toString;function i(e){return r.call(e)}e.exports=i},KxfA:function(e,t,n){"use strict";n.d(t,"a",function(){return d}),n.d(t,"c",function(){return g}),n.d(t,"b",function(){return y}),n.d(t,"d",function(){return x}),n.d(t,"e",function(){return k});var r,i,o,a,s,l=n("bYtY"),u=n("4NO4"),c=n("7G+c"),f=n("B/3G"),d=function(){function e(e,t){var n=Object(c["e"])(e)?e:Object(c["c"])(e);this._source=n;var r=this._data=n.data;n.sourceFormat===f["g"]&&(this._offset=0,this._dimSize=t,this._data=r),s(this,r,n)}return e.prototype.getSource=function(){return this._source},e.prototype.count=function(){return 0},e.prototype.getItem=function(e,t){},e.prototype.appendData=function(e){},e.prototype.clean=function(){},e.protoInitialize=function(){var t=e.prototype;t.pure=!1,t.persistent=!0}(),e.internalField=function(){var e;s=function(e,i,o){var s=o.sourceFormat,u=o.seriesLayoutBy,c=o.startIndex,d=o.dimensionsDefine,h=a[w(s,u)];if(Object(l["m"])(e,h),s===f["g"])e.getItem=t,e.count=r,e.fillStorage=n;else{var p=g(s,u);e.getItem=Object(l["c"])(p,null,i,c,d);var m=y(s,u);e.count=Object(l["c"])(m,null,i,c,d)}};var t=function(e,t){e-=this._offset,t=t||[];for(var n=this._data,r=this._dimSize,i=r*e,o=0;ou&&(u=h)}s[0]=l,s[1]=u}},r=function(){return this._data?this._data.length/this._dimSize:0};function i(e){for(var t=0;t-1?(l+="top:50%",c+="translateY(-50%) rotate("+(o="left"===a?-225:-45)+"deg)"):(l+="left:50%",c+="translateX(-50%) rotate("+(o="top"===a?225:45)+"deg)");var f=o*Math.PI/180,d=s+i,h=d*Math.abs(Math.cos(f))+d*Math.abs(Math.sin(f)),g=Math.round(100*((h-Math.SQRT2*i)/2+Math.SQRT2*i-(h-d)/2))/100;l+=";"+a+":-"+g+"px";var m=t+" solid "+i+"px;",v=["position:absolute;width:"+s+"px;height:"+s+"px;",l+";"+c+";","border-bottom:"+m,"border-right:"+m,"background-color:"+r+";"];return'
'}function C(e,t){var n="cubic-bezier(0.23,1,0.32,1)",r=" "+e/2+"s "+n,i="opacity"+r+",visibility"+r;return t||(r=" "+e+"s "+n,i+=c["a"].transformSupported?","+k+r:",left"+r+",top"+r),w+":"+i}function T(e,t,n){var r=e.toFixed(0)+"px",i=t.toFixed(0)+"px";if(!c["a"].transformSupported)return n?"top:"+i+";left:"+r+";":[["top",i],["left",r]];var o=c["a"].transform3dSupported,a="translate"+(o?"3d":"")+"("+r+","+i+(o?",0":"")+")";return n?"top:0;left:0;"+k+":"+a+";":[["top",0],["left",0],[v,a]]}function j(e){var t=[],n=e.get("fontSize"),r=e.getTextColor();r&&t.push("color:"+r),t.push("font:"+e.getFont()),n&&t.push("line-height:"+Math.round(3*n/2)+"px");var i=e.get("textShadowColor"),o=e.get("textShadowBlur")||0,a=e.get("textShadowOffsetX")||0,s=e.get("textShadowOffsetY")||0;return i&&o&&t.push("text-shadow:"+a+"px "+s+"px "+o+"px "+i),Object(u["k"])(["decoration","align"],function(n){var r=e.get(n);r&&t.push("text-"+n+":"+r)}),t.join(";")}function I(e,t,n){var r=[],i=e.get("transitionDuration"),o=e.get("backgroundColor"),a=e.get("shadowBlur"),s=e.get("shadowColor"),l=e.get("shadowOffsetX"),d=e.get("shadowOffsetY"),h=e.getModel("textStyle"),g=Object(x["d"])(e,"html"),m=l+"px "+d+"px "+a+"px "+s;return r.push("box-shadow:"+m),t&&i&&r.push(C(i,n)),o&&(c["a"].canvasSupported?r.push("background-color:"+o):(r.push("background-color:#"+Object(f["f"])(o)),r.push("filter:alpha(opacity=70)"))),Object(u["k"])(["width","color","radius"],function(t){var n="border-"+t,i=Object(p["h"])(n),o=e.get(i);null!=o&&r.push(n+":"+o+("color"===t?"":"px"))}),r.push(j(h)),null!=g&&r.push("padding:"+Object(p["g"])(g).join("px ")+"px"),r.join(";")+";"}function D(e,t,n,r,i){var o=t&&t.painter;if(n){var a=o&&o.getViewportRoot();a&&Object(h["c"])(e,a,document.body,r,i)}else{e[0]=r,e[1]=i;var s=o&&o.getViewportRootOffset();s&&(e[0]+=s.offsetLeft,e[1]+=s.offsetTop)}e[2]=e[0]/t.getWidth(),e[3]=e[1]/t.getHeight()}var A=function(){function e(e,t,n){if(this._show=!1,this._styleCoord=[0,0,0,0],this._enterable=!0,this._firstShow=!0,this._longHide=!0,c["a"].wxa)return null;var r=document.createElement("div");r.domBelongToZr=!0,this.el=r;var i=this._zr=t.getZr(),o=this._appendToBody=n&&n.appendToBody;D(this._styleCoord,i,o,t.getWidth()/2,t.getHeight()/2),o?document.body.appendChild(r):e.appendChild(r),this._container=e;var a=this;r.onmouseenter=function(){a._enterable&&(clearTimeout(a._hideTimeout),a._show=!0),a._inContent=!0},r.onmousemove=function(e){if(e=e||window.event,!a._enterable){var t=i.handler,n=i.painter.getViewportRoot();Object(d["d"])(n,e,!0),t.dispatch("mousemove",e)}},r.onmouseleave=function(){a._inContent=!1,a._enterable&&a._show&&a.hideLater(a._hideDelay)}}return e.prototype.update=function(e){var t=this._container,n=_(t,"position"),r=t.style;"absolute"!==r.position&&"absolute"!==n&&(r.position="relative");var i=e.get("alwaysShowContent");i&&this._moveIfResized(),this.el.className=e.get("className")||""},e.prototype.show=function(e,t){clearTimeout(this._hideTimeout),clearTimeout(this._longHideTimeout);var n=this.el,r=n.style,i=this._styleCoord;n.innerHTML?r.cssText=O+I(e,!this._firstShow,this._longHide)+T(i[0],i[1],!0)+"border-color:"+Object(p["b"])(t)+";"+(e.get("extraCssText")||"")+";pointer-events:"+(this._enterable?"auto":"none"):r.display="none",this._show=!0,this._firstShow=!1,this._longHide=!1},e.prototype.setContent=function(e,t,n,r,i){var o=this.el;if(null!=e){var a="";if(Object(u["A"])(i)&&"item"===n.get("trigger")&&!g(n)&&(a=M(n,r,i)),Object(u["A"])(e))o.innerHTML=e+a;else if(e){o.innerHTML="",Object(u["s"])(e)||(e=[e]);for(var s=0;s=0?this._tryShow(n,r):"leave"===e&&this._hide(r))},this))},t.prototype._keepShow=function(){var e=this._tooltipModel,t=this._ecModel,n=this._api;if(null!=this._lastX&&null!=this._lastY&&"none"!==e.get("triggerOn")){var r=this;clearTimeout(this._refreshUpdateTimeout),this._refreshUpdateTimeout=setTimeout(function(){!n.isDisposed()&&r.manuallyShowTip(e,t,n,{x:r._lastX,y:r._lastY,dataByCoordSys:r._lastDataByCoordSys})})}},t.prototype.manuallyShowTip=function(e,t,n,r){if(r.from!==this.uid&&!c["a"].node){var i=le(r,n);this._ticket="";var o=r.dataByCoordSys,a=he(r,t,n);if(a){var s=a.el.getBoundingRect().clone();s.applyTransform(a.el.transform),this._tryShow({offsetX:s.x+s.width/2,offsetY:s.y+s.height/2,target:a.el,position:r.position,positionDefault:"bottom"},i)}else if(r.tooltip&&null!=r.x&&null!=r.y){var l=oe;l.x=r.x,l.y=r.y,l.update(),Object($["a"])(l).tooltipConfig={name:null,option:r.tooltip},this._tryShow({offsetX:r.x,offsetY:r.y,target:l},i)}else if(o)this._tryShow({offsetX:r.x,offsetY:r.y,position:r.position,dataByCoordSys:o,tooltipOption:r.tooltipOption},i);else if(null!=r.seriesIndex){if(this._manuallyAxisShowTip(e,t,n,r))return;var u=Object(G["a"])(r,t),f=u.point[0],d=u.point[1];null!=f&&null!=d&&this._tryShow({offsetX:f,offsetY:d,target:u.el,position:r.position,positionDefault:"bottom"},i)}else null!=r.x&&null!=r.y&&(n.dispatchAction({type:"updateAxisPointer",x:r.x,y:r.y}),this._tryShow({offsetX:r.x,offsetY:r.y,position:r.position,target:n.getZr().findHover(r.x,r.y).target},i))}},t.prototype.manuallyHideTip=function(e,t,n,r){var i=this._tooltipContent;!this._alwaysShowContent&&this._tooltipModel&&i.hideLater(this._tooltipModel.get("hideDelay")),this._lastX=this._lastY=this._lastDataByCoordSys=null,r.from!==this.uid&&this._hide(le(r,n))},t.prototype._manuallyAxisShowTip=function(e,t,n,r){var i=r.seriesIndex,o=r.dataIndex,a=t.getComponent("axisPointer").coordSysAxesInfo;if(null!=i&&null!=o&&null!=a){var s=t.getSeriesByIndex(i);if(s){var l=s.getData(),u=se([l.getItemModel(o),s,(s.coordinateSystem||{}).model],this._tooltipModel);if("axis"===u.get("trigger"))return n.dispatchAction({type:"updateAxisPointer",seriesIndex:i,dataIndex:o,position:r.position}),!0}}},t.prototype._tryShow=function(e,t){var n=e.target,r=this._tooltipModel;if(r){this._lastX=e.offsetX,this._lastY=e.offsetY;var i=e.dataByCoordSys;if(i&&i.length)this._showAxisTooltip(i,e);else if(n){var o,a;this._lastDataByCoordSys=null,Object(ee["a"])(n,function(e){return null!=Object($["a"])(e).dataIndex?(o=e,!0):null!=Object($["a"])(e).tooltipConfig?(a=e,!0):void 0},!0),o?this._showSeriesItemTooltip(e,o,t):a?this._showComponentItemTooltip(e,a,t):this._hide(t)}else this._lastDataByCoordSys=null,this._hide(t)}},t.prototype._showOrMove=function(e,t){var n=e.get("showDelay");t=u["c"](t,this),clearTimeout(this._showTimout),n>0?this._showTimout=setTimeout(t,n):t()},t.prototype._showAxisTooltip=function(e,t){var n=this._ecModel,r=this._tooltipModel,i=[t.offsetX,t.offsetY],o=se([t.tooltipOption],r),a=this._renderMode,s=[],l=Object(x["c"])("section",{blocks:[],noHeader:!0}),c=[],f=new x["a"];re(e,function(e){re(e.dataByAxis,function(e){var t=n.getComponent(e.axisDim+"Axis",e.axisIndex),r=e.value;if(t&&null!=r){var i=Z["d"](r,t.axis,n,e.seriesDataIndices,e.valueLabelOpt),o=Object(x["c"])("section",{header:i,noHeader:!u["Q"](i),sortBlocks:!0,blocks:[]});l.blocks.push(o),u["k"](e.seriesDataIndices,function(l){var u=n.getSeriesByIndex(l.seriesIndex),d=l.dataIndexInside,h=u.getDataParams(d);if(!(h.dataIndex<0)){h.axisDim=e.axisDim,h.axisIndex=e.axisIndex,h.axisType=e.axisType,h.axisId=e.axisId,h.axisValue=q["c"](t.axis,{value:r}),h.axisValueLabel=i,h.marker=f.makeTooltipMarker("item",p["b"](h.color),a);var g=Object(J["b"])(u.formatTooltip(d,!0,null));g.markupFragment&&o.blocks.push(g.markupFragment),g.markupText&&c.push(g.markupText),s.push(h)}})}})}),l.blocks.reverse(),c.reverse();var d=t.position,h=o.get("order"),g=Object(x["b"])(l,f,a,h,n.get("useUTC"),o.get("textStyle"));g&&c.unshift(g);var m="richText"===a?"\n\n":"
",v=c.join(m);this._showOrMove(o,function(){this._updateContentNotChangedOnAxis(e,s)?this._updatePosition(o,d,i[0],i[1],this._tooltipContent,s):this._showTooltipContent(o,v,s,Math.random()+"",i[0],i[1],d,null,f)})},t.prototype._showSeriesItemTooltip=function(e,t,n){var r=this._ecModel,i=Object($["a"])(t),o=i.seriesIndex,a=r.getSeriesByIndex(o),s=i.dataModel||a,l=i.dataIndex,u=i.dataType,c=s.getData(u),f=this._renderMode,d=e.positionDefault,h=se([c.getItemModel(l),s,a&&(a.coordinateSystem||{}).model],this._tooltipModel,d?{position:d}:null),g=h.get("trigger");if(null==g||"item"===g){var m=s.getDataParams(l,u),v=new x["a"];m.marker=v.makeTooltipMarker("item",p["b"](m.color),f);var y=Object(J["b"])(s.formatTooltip(l,!1,u)),b=h.get("order"),_=y.markupFragment?Object(x["b"])(y.markupFragment,v,f,b,r.get("useUTC"),h.get("textStyle")):y.markupText,w="item_"+s.name+"_"+l;this._showOrMove(h,function(){this._showTooltipContent(h,_,m,w,e.offsetX,e.offsetY,e.position,e.target,v)}),n({type:"showTip",dataIndexInside:l,dataIndex:c.getRawIndex(l),seriesIndex:o,from:this.uid})}},t.prototype._showComponentItemTooltip=function(e,t,n){var r=Object($["a"])(t),i=r.tooltipConfig,o=i.option||{};if(u["A"](o)){var a=o;o={content:a,formatter:a}}var s=[o],l=this._ecModel.getComponent(r.componentMainType,r.componentIndex);l&&s.push(l),s.push({formatter:o.content});var c=e.positionDefault,f=se(s,this._tooltipModel,c?{position:c}:null),d=f.get("content"),h=Math.random()+"",p=new x["a"];this._showOrMove(f,function(){var n=u["d"](f.get("formatterParams")||{});this._showTooltipContent(f,d,n,h,e.offsetX,e.offsetY,e.position,t,p)}),n({type:"showTip",from:this.uid})},t.prototype._showTooltipContent=function(e,t,n,r,i,o,a,s,l){if(this._ticket="",e.get("showContent")&&e.get("show")){var c=this._tooltipContent,f=e.get("formatter");a=a||e.get("position");var d=t,h=this._getNearestPoint([i,o],n,e.get("trigger"),e.get("borderColor")),g=h.color;if(f)if(u["A"](f)){var m=e.ecModel.get("useUTC"),v=u["s"](n)?n[0]:n,y=v&&v.axisType&&v.axisType.indexOf("time")>=0;d=f,y&&(d=Object(Q["h"])(v.axisValue,d,m)),d=p["d"](d,n,!0)}else if(u["v"](f)){var b=ne(function(t,r){t===this._ticket&&(c.setContent(r,l,e,g,a),this._updatePosition(e,a,i,o,c,n,s))},this);this._ticket=r,d=f(n,r,b)}else d=f;c.setContent(d,l,e,g,a),c.show(e,g),this._updatePosition(e,a,i,o,c,n,s)}},t.prototype._getNearestPoint=function(e,t,n,r){return"axis"===n||u["s"](t)?{color:r||("html"===this._renderMode?"#fff":"none")}:u["s"](t)?void 0:{color:r||t.color||t.borderColor}},t.prototype._doUpdatePosition=function(e,t,n,r,i,o,a){var s=this._api.getWidth(),l=this._api.getHeight();t=t||e.get("position");var c=i.getSize(),f=e.get("align"),d=e.get("verticalAlign"),h=a&&a.getBoundingRect().clone();if(a&&h.applyTransform(a.transform),u["v"](t)&&(t=t([n,r],o,i.el,h,{viewSize:[s,l],contentSize:c.slice()})),u["s"](t))n=ie(t[0],s),r=ie(t[1],l);else if(u["z"](t)){var p=t;p.width=c[0],p.height=c[1];var m=U["d"](p,{width:s,height:l});n=m.x,r=m.y,f=null,d=null}else if(u["A"](t)&&a){var v=fe(t,h,c,e.get("borderWidth"));n=v[0],r=v[1]}else{v=ue(n,r,i,s,l,f?null:20,d?null:20);n=v[0],r=v[1]}if(f&&(n-=de(f)?c[0]/2:"right"===f?c[0]:0),d&&(r-=de(d)?c[1]/2:"bottom"===d?c[1]:0),g(e)){v=ce(n,r,i,s,l);n=v[0],r=v[1]}i.moveTo(n,r)},t.prototype._updateContentNotChangedOnAxis=function(e,t){var n=this._lastDataByCoordSys,r=this._cbParamsList,i=!!n&&n.length===e.length;return i&&re(n,function(n,o){var a=n.dataByAxis||[],s=e[o]||{},l=s.dataByAxis||[];i=i&&a.length===l.length,i&&re(a,function(e,n){var o=l[n]||{},a=e.seriesDataIndices||[],s=o.seriesDataIndices||[];i=i&&e.value===o.value&&e.axisType===o.axisType&&e.axisId===o.axisId&&a.length===s.length,i&&re(a,function(e,t){var n=s[t];i=i&&e.seriesIndex===n.seriesIndex&&e.dataIndex===n.dataIndex}),r&&u["k"](e.seriesDataIndices,function(e){var n=e.seriesIndex,o=t[n],a=r[n];o&&a&&a.data!==o.data&&(i=!1)})})}),this._lastDataByCoordSys=e,this._cbParamsList=t,!!i},t.prototype._hide=function(e){this._lastDataByCoordSys=null,e({type:"hideTip",from:this.uid})},t.prototype.dispose=function(e,t){c["a"].node||(this._tooltipContent.dispose(),H["b"]("itemTooltip",t))},t.type="tooltip",t}(X["a"]);function se(e,t,n){var r,i=t.ecModel;n?(r=new W["a"](n,i,i),r=new W["a"](t.option,r,i)):r=t;for(var o=e.length-1;o>=0;o--){var a=e[o];a&&(a instanceof W["a"]&&(a=a.get("tooltip",!0)),u["A"](a)&&(a={formatter:a}),a&&(r=new W["a"](a,r,i)))}return r}function le(e,t){return e.dispatchAction||u["c"](t.dispatchAction,t)}function ue(e,t,n,r,i,o,a){var s=n.getSize(),l=s[0],u=s[1];return null!=o&&(e+l+o+2>r?e-=l+o:e+=o),null!=a&&(t+u+a>i?t-=u+a:t+=a),[e,t]}function ce(e,t,n,r,i){var o=n.getSize(),a=o[0],s=o[1];return e=Math.min(e+a,r)-a,t=Math.min(t+s,i)-s,e=Math.max(e,0),t=Math.max(t,0),[e,t]}function fe(e,t,n,r){var i=n[0],o=n[1],a=Math.ceil(Math.SQRT2*r)+8,s=0,l=0,u=t.width,c=t.height;switch(e){case"inside":s=t.x+u/2-i/2,l=t.y+c/2-o/2;break;case"top":s=t.x+u/2-i/2,l=t.y-o-a;break;case"bottom":s=t.x+u/2-i/2,l=t.y+c+a;break;case"left":s=t.x-i-a,l=t.y+c/2-o/2;break;case"right":s=t.x+u+a,l=t.y+c/2-o/2}return[s,l]}function de(e){return"center"===e||"middle"===e}function he(e,t,n){var r=Object(K["r"])(e).queryOptionMap,i=r.keys()[0];if(i&&"series"!==i){var o=Object(K["t"])(t,i,r.get(i),{useDefault:!1,enableAll:!1,enableNone:!1}),a=o.models[0];if(a){var s,l=n.getViewOfComponentModel(a);return l.group.traverse(function(t){var n=Object($["a"])(t).tooltipConfig;if(n&&n.name===e.name)return s=t,!0}),s?{componentMainType:i,componentIndex:a.componentIndex,el:s}:void 0}}}var pe=ae;function ge(e){Object(i["a"])(r["a"]),e.registerComponentModel(l),e.registerComponentView(pe),e.registerAction({type:"showTip",event:"showTip",update:"tooltip:manuallyShowTip"},function(){}),e.registerAction({type:"hideTip",event:"hideTip",update:"tooltip:manuallyHideTip"},function(){})}n.d(t,"a",function(){return ge})},LcsW:function(e,t,n){var r=n("kekF"),i=r(Object.getPrototypeOf,Object);e.exports=i},LsHQ:function(e,t,n){var r=n("EA7m"),i=n("mv/X");function o(e){return r(function(t,n){var r=-1,o=n.length,a=o>1?n[o-1]:void 0,s=o>2?n[2]:void 0;a=e.length>3&&"function"==typeof a?(o--,a):void 0,s&&i(n[0],n[1],s)&&(a=o<3?void 0:a,o=1),t=Object(t);while(++r=0}function c(e){return e+"Axis"}function f(e,t){var n,r=Object(o["g"])(),i=[],a=Object(o["g"])();e.eachComponent({mainType:"dataZoom",query:t},function(e){a.get(e.uid)||l(e)});do{n=!1,e.eachComponent("dataZoom",s)}while(n);function s(e){!a.get(e.uid)&&u(e)&&(l(e),n=!0)}function l(e){a.set(e.uid,!0),i.push(e),c(e)}function u(e){var t=!1;return e.eachTargetAxis(function(e,n){var i=r.get(e);i&&i[n]&&(t=!0)}),t}function c(e){e.eachTargetAxis(function(e,t){(r.get(e)||r.set(e,[]))[t]=!0})}return i}var d=n("4NO4"),h=function(){function e(){this.indexList=[],this.indexMap=[]}return e.prototype.add=function(e){this.indexMap[e]||(this.indexList.push(e),this.indexMap[e]=!0)},e}(),p=function(e){function t(){var n=null!==e&&e.apply(this,arguments)||this;return n.type=t.type,n._autoThrottle=!0,n._noTarget=!0,n._rangePropMode=["percent","percent"],n}return Object(i["a"])(t,e),t.prototype.init=function(e,t,n){var r=g(e);this.settledOption=r,this.mergeDefaultAndTheme(e,n),this._doInit(r)},t.prototype.mergeOption=function(e){var t=g(e);Object(o["G"])(this.option,e,!0),Object(o["G"])(this.settledOption,t,!0),this._doInit(t)},t.prototype._doInit=function(e){var t=this.option;this._setDefaultThrottle(e),this._updateRangeUse(e);var n=this.settledOption;Object(o["k"])([["start","startValue"],["end","endValue"]],function(e,r){"value"===this._rangePropMode[r]&&(t[e[0]]=n[e[0]]=null)},this),this._resetTarget()},t.prototype._resetTarget=function(){var e=this.get("orient",!0),t=this._targetAxisInfoMap=Object(o["g"])(),n=this._fillSpecifiedTargetAxis(t);n?this._orient=e||this._makeAutoOrientByTargetAxis():(this._orient=e||"horizontal",this._fillAutoTargetAxisByOrient(t,this._orient)),this._noTarget=!0,t.each(function(e){e.indexList.length&&(this._noTarget=!1)},this)},t.prototype._fillSpecifiedTargetAxis=function(e){var t=!1;return Object(o["k"])(s,function(n){var r=this.getReferringComponents(c(n),d["a"]);if(r.specified){t=!0;var i=new h;Object(o["k"])(r.models,function(e){i.add(e.componentIndex)}),e.set(n,i)}},this),t},t.prototype._fillAutoTargetAxisByOrient=function(e,t){var n=this.ecModel,r=!0;if(r){var i="vertical"===t?"y":"x",a=n.findComponents({mainType:i+"Axis"});l(a,i)}if(r){a=n.findComponents({mainType:"singleAxis",filter:function(e){return e.get("orient",!0)===t}});l(a,"single")}function l(t,n){var i=t[0];if(i){var a=new h;if(a.add(i.componentIndex),e.set(n,a),r=!1,"x"===n||"y"===n){var s=i.getReferringComponents("grid",d["b"]).models[0];s&&Object(o["k"])(t,function(e){i.componentIndex!==e.componentIndex&&s===e.getReferringComponents("grid",d["b"]).models[0]&&a.add(e.componentIndex)})}}}r&&Object(o["k"])(s,function(t){if(r){var i=n.findComponents({mainType:c(t),filter:function(e){return"category"===e.get("type",!0)}});if(i[0]){var o=new h;o.add(i[0].componentIndex),e.set(t,o),r=!1}}},this)},t.prototype._makeAutoOrientByTargetAxis=function(){var e;return this.eachTargetAxis(function(t){!e&&(e=t)},this),"y"===e?"vertical":"horizontal"},t.prototype._setDefaultThrottle=function(e){if(e.hasOwnProperty("throttle")&&(this._autoThrottle=!1),this._autoThrottle){var t=this.ecModel.option;this.option.throttle=t.animation&&t.animationDurationUpdate>0?100:20}},t.prototype._updateRangeUse=function(e){var t=this._rangePropMode,n=this.get("rangeMode");Object(o["k"])([["start","startValue"],["end","endValue"]],function(r,i){var o=null!=e[r[0]],a=null!=e[r[1]];o&&!a?t[i]="percent":!o&&a?t[i]="value":n?t[i]=n[i]:o&&(t[i]="percent")})},t.prototype.noTarget=function(){return this._noTarget},t.prototype.getFirstTargetAxisModel=function(){var e;return this.eachTargetAxis(function(t,n){null==e&&(e=this.ecModel.getComponent(c(t),n))},this),e},t.prototype.eachTargetAxis=function(e,t){this._targetAxisInfoMap.each(function(n,r){Object(o["k"])(n.indexList,function(n){e.call(t,r,n)})})},t.prototype.getAxisProxy=function(e,t){var n=this.getAxisModel(e,t);if(n)return n.__dzAxisProxy},t.prototype.getAxisModel=function(e,t){var n=this._targetAxisInfoMap.get(e);if(n&&n.indexMap[t])return this.ecModel.getComponent(c(e),t)},t.prototype.setRawRange=function(e){var t=this.option,n=this.settledOption;Object(o["k"])([["start","startValue"],["end","endValue"]],function(r){null==e[r[0]]&&null==e[r[1]]||(t[r[0]]=n[r[0]]=e[r[0]],t[r[1]]=n[r[1]]=e[r[1]])},this),this._updateRangeUse(e)},t.prototype.setCalculatedRange=function(e){var t=this.option;Object(o["k"])(["start","startValue","end","endValue"],function(n){t[n]=e[n]})},t.prototype.getPercentRange=function(){var e=this.findRepresentativeAxisProxy();if(e)return e.getDataPercentWindow()},t.prototype.getValueRange=function(e,t){if(null!=e||null!=t)return this.getAxisProxy(e,t).getDataValueWindow();var n=this.findRepresentativeAxisProxy();return n?n.getDataValueWindow():void 0},t.prototype.findRepresentativeAxisProxy=function(e){if(e)return e.__dzAxisProxy;for(var t,n=this._targetAxisInfoMap.keys(),r=0;ro&&(t[1-r]=t[r]+u.sign*o),t}function M(e,t){var n=e[t]-e[1-t];return{span:Math.abs(n),sign:n>0?-1:n<0?1:t?-1:1}}function C(e,t){return Math.min(null!=t[1]?t[1]:1/0,Math.max(null!=t[0]?t[0]:-1/0,e))}var T=n("aX7z"),j=n("U4/e"),I=o["k"],D=O["b"],A=function(){function e(e,t,n,r){this._dimName=e,this._axisIndex=t,this.ecModel=r,this._dataZoomModel=n}return e.prototype.hostedBy=function(e){return this._dataZoomModel===e},e.prototype.getDataValueWindow=function(){return this._valueWindow.slice()},e.prototype.getDataPercentWindow=function(){return this._percentWindow.slice()},e.prototype.getTargetSeriesModels=function(){var e=[];return this.ecModel.eachSeries(function(t){if(u(t)){var n=c(this._dimName),r=t.getReferringComponents(n,d["b"]).models[0];r&&this._axisIndex===r.componentIndex&&e.push(t)}},this),e},e.prototype.getAxisModel=function(){return this.ecModel.getComponent(this._dimName+"Axis",this._axisIndex)},e.prototype.getMinMaxSpan=function(){return o["d"](this._minMaxSpan)},e.prototype.calculateDataWindow=function(e){var t,n=this._dataExtent,r=this.getAxisModel(),i=r.axis.scale,o=this._dataZoomModel.getRangePropMode(),a=[0,100],s=[],l=[];I(["start","end"],function(r,u){var c=e[r],f=e[r+"Value"];"percent"===o[u]?(null==c&&(c=a[u]),f=i.parse(O["i"](c,a,n))):(t=!0,f=null==f?n[u]:i.parse(f),c=O["i"](f,n,a)),l[u]=f,s[u]=c}),D(l),D(s);var u=this._minMaxSpan;function c(e,t,n,r,o){var a=o?"Span":"ValueSpan";S(0,e,n,"all",u["min"+a],u["max"+a]);for(var s=0;s<2;s++)t[s]=O["i"](e[s],n,r,!0),o&&(t[s]=i.parse(t[s]))}return t?c(l,s,n,a,!1):c(s,l,a,n,!0),{valueWindow:l,percentWindow:s}},e.prototype.reset=function(e){if(e===this._dataZoomModel){var t=this.getTargetSeriesModels();this._dataExtent=E(this,this._dimName,t),this._updateMinMaxSpan();var n=this.calculateDataWindow(e.settledOption);this._valueWindow=n.valueWindow,this._percentWindow=n.percentWindow,this._setAxisModel()}},e.prototype.filterData=function(e,t){if(e===this._dataZoomModel){var n=this._dimName,r=this.getTargetSeriesModels(),i=e.get("filterMode"),a=this._valueWindow;"none"!==i&&I(r,function(e){var t=e.getData(),r=t.mapDimensionsAll(n);if(r.length){if("weakFilter"===i){var l=t.getStore(),u=o["F"](r,function(e){return t.getDimensionIndex(e)},t);t.filterSelf(function(e){for(var t,n,i,o=0;oa[1];if(c&&!f&&!d)return!0;c&&(i=!0),f&&(t=!0),d&&(n=!0)}return i&&t&&n})}else I(r,function(n){if("empty"===i)e.setData(t=t.map(n,function(e){return s(e)?e:NaN}));else{var r={};r[n]=a,t.selectRange(r)}});I(r,function(e){t.setApproximateExtent(a,e)})}})}function s(e){return e>=a[0]&&e<=a[1]}},e.prototype._updateMinMaxSpan=function(){var e=this._minMaxSpan={},t=this._dataZoomModel,n=this._dataExtent;I(["min","max"],function(r){var i=t.get(r+"Span"),o=t.get(r+"ValueSpan");null!=o&&(o=this.getAxisModel().axis.scale.parse(o)),null!=o?i=O["i"](n[0]+o,n,[0,100],!0):null!=i&&(o=O["i"](i,[0,100],n,!0)-n[0]),e[r+"Span"]=i,e[r+"ValueSpan"]=o},this)},e.prototype._setAxisModel=function(){var e=this.getAxisModel(),t=this._percentWindow,n=this._valueWindow;if(t){var r=O["d"](n,[0,500]);r=Math.min(r,20);var i=e.axis.scale.rawExtentInfo;0!==t[0]&&i.setDeterminedMinMax("min",+n[0].toFixed(r)),100!==t[1]&&i.setDeterminedMinMax("max",+n[1].toFixed(r)),i.freeze()}},e}();function E(e,t,n){var r=[1/0,-1/0];I(n,function(e){Object(T["j"])(r,e.getData(),t)});var i=e.getAxisModel(),o=Object(j["a"])(i.axis.scale,i,r).calculate();return[o.min,o.max]}var P=A,L={getTargetSeries:function(e){function t(t){e.eachComponent("dataZoom",function(n){n.eachTargetAxis(function(r,i){var o=e.getComponent(c(r),i);t(r,i,o,n)})})}t(function(e,t,n,r){n.__dzAxisProxy=null});var n=[];t(function(t,r,i,o){i.__dzAxisProxy||(i.__dzAxisProxy=new P(t,r,o,e),n.push(i.__dzAxisProxy))});var r=Object(o["g"])();return Object(o["k"])(n,function(e){Object(o["k"])(e.getTargetSeriesModels(),function(e){r.set(e.uid,e)})}),r},overallReset:function(e,t){e.eachComponent("dataZoom",function(e){e.eachTargetAxis(function(t,n){e.getAxisProxy(t,n).reset(e)}),e.eachTargetAxis(function(n,r){e.getAxisProxy(n,r).filterData(e,t)})}),e.eachComponent("dataZoom",function(e){var t=e.findRepresentativeAxisProxy();if(t){var n=t.getDataPercentWindow(),r=t.getDataValueWindow();e.setCalculatedRange({start:n[0],end:n[1],startValue:r[0],endValue:r[1]})}})}},N=L;function R(e){e.registerAction("dataZoom",function(e,t){var n=f(t,e);Object(o["k"])(n,function(t){t.setRawRange({start:e.start,end:e.end,startValue:e.startValue,endValue:e.endValue})})})}var z=!1;function F(e){z||(z=!0,e.registerProcessor(e.PRIORITY.PROCESSOR.FILTER,N),R(e),e.registerSubTypeDefaulter("dataZoom",function(){return"slider"}))}function B(e){e.registerComponentModel(y),e.registerComponentView(k),F(e)}var V=function(){function e(){}return e}(),Y={};function G(e,t){Y[e]=t}function U(e){return Y[e]}var W=function(e){function t(){var n=null!==e&&e.apply(this,arguments)||this;return n.type=t.type,n}return Object(i["a"])(t,e),t.prototype.optionUpdated=function(){e.prototype.optionUpdated.apply(this,arguments);var t=this.ecModel;o["k"](this.option.feature,function(e,n){var r=U(n);r&&(r.getDefaultOption&&(r.defaultOption=r.getDefaultOption(t)),o["G"](e,r.defaultOption))})},t.type="toolbox",t.layoutMode={type:"box",ignoreSize:!0},t.defaultOption={show:!0,z:6,zlevel:0,orient:"horizontal",left:"right",top:"top",backgroundColor:"transparent",borderColor:"#ccc",borderRadius:0,borderWidth:0,padding:5,itemSize:15,itemGap:8,showTitle:!0,iconStyle:{borderColor:"#666",color:"none"},emphasis:{iconStyle:{borderColor:"#3E98C5"}},tooltip:{show:!1,position:"bottom"}},t}(a["a"]),H=W,q=n("6GrX"),Z=n("IwbS"),K=n("fWwa"),X=n("Qxkt"),Q=n("gPAo"),$=n("eRkO"),J=n("iRjW"),ee=n("dqUG"),te=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return Object(i["a"])(t,e),t.prototype.render=function(e,t,n,r){var i=this.group;if(i.removeAll(),e.get("show")){var a=+e.get("itemSize"),s=e.get("feature")||{},l=this._features||(this._features={}),u=[];o["k"](s,function(e,t){u.push(t)}),new Q["a"](this._featureNames||[],u).add(c).update(c).remove(o["i"](c,null)).execute(),this._featureNames=u,$["a"](i,e,n),i.add($["b"](i.getBoundingRect(),e)),i.eachChild(function(e){var t=e.__title,r=e.ensureState("emphasis"),s=r.textConfig||(r.textConfig={}),l=e.getTextContent(),u=l&&l.states.emphasis;if(u&&!o["v"](u)&&t){var c=u.style||(u.style={}),f=q["e"](t,ee["a"].makeFont(c)),d=e.x+i.x,h=e.y+i.y+a,p=!1;h+f.height>n.getHeight()&&(s.position="top",p=!0);var g=p?-5-f.height:a+8;d+f.width/2>n.getWidth()?(s.position=["100%",g],c.align="right"):d-f.width/2<0&&(s.position=[0,g],c.align="left")}})}function c(i,o){var a,c=u[i],d=u[o],h=s[c],p=new X["a"](h,e,e.ecModel);if(r&&null!=r.newTitle&&r.featureName===c&&(h.title=r.newTitle),c&&!d){if(ne(c))a={onclick:p.option.onclick,featureName:c};else{var g=U(c);if(!g)return;a=new g}l[c]=a}else if(a=l[d],!a)return;a.uid=Object(J["c"])("toolbox-feature"),a.model=p,a.ecModel=t,a.api=n;var m=a instanceof V;c||!d?!p.get("show")||m&&a.unusable?m&&a.remove&&a.remove(t,n):(f(p,a,c),p.setIconStatus=function(e,t){var n=this.option,r=this.iconPaths;n.iconStatus=n.iconStatus||{},n.iconStatus[e]=t,r[e]&&("emphasis"===t?K["o"]:K["z"])(r[e])},a instanceof V&&a.render&&a.render(p,t,n,r)):m&&a.dispose&&a.dispose(t,n)}function f(r,s,l){var u,c,f=r.getModel("iconStyle"),d=r.getModel(["emphasis","iconStyle"]),h=s instanceof V&&s.getIcons?s.getIcons():r.get("icon"),p=r.get("title")||{};"string"===typeof h?(u={},u[l]=h):u=h,"string"===typeof p?(c={},c[l]=p):c=p;var g=r.iconPaths={};o["k"](u,function(l,u){var h=Z["createIcon"](l,{},{x:-a/2,y:-a/2,width:a,height:a});h.setStyle(f.getItemStyle());var p=h.ensureState("emphasis");p.style=d.getItemStyle();var m=new ee["a"]({style:{text:c[u],align:d.get("textAlign"),borderRadius:d.get("textBorderRadius"),padding:d.get("textPadding"),fill:null},ignore:!0});h.setTextContent(m),Z["setTooltipConfig"]({el:h,componentModel:e,itemName:u,formatterParamsExtra:{title:c[u]}}),h.__title=c[u],h.on("mouseover",function(){var t=d.getItemStyle(),n="vertical"===e.get("orient")?null==e.get("right")?"right":"left":null==e.get("bottom")?"bottom":"top";m.setStyle({fill:d.get("textFill")||t.fill||t.stroke||"#000",backgroundColor:d.get("textBackgroundColor")}),h.setTextConfig({position:d.get("textPosition")||n}),m.ignore=!e.get("showTitle"),Object(K["o"])(this)}).on("mouseout",function(){"emphasis"!==r.get(["iconStatus",u])&&Object(K["z"])(this),m.hide()}),("emphasis"===r.get(["iconStatus",u])?K["o"]:K["z"])(h),i.add(h),h.on("click",o["c"](s.onclick,s,t,n,u)),g[u]=h})}},t.prototype.updateView=function(e,t,n,r){o["k"](this._features,function(e){e instanceof V&&e.updateView&&e.updateView(e.model,t,n,r)})},t.prototype.remove=function(e,t){o["k"](this._features,function(n){n instanceof V&&n.remove&&n.remove(e,t)}),this.group.removeAll()},t.prototype.dispose=function(e,t){o["k"](this._features,function(n){n instanceof V&&n.dispose&&n.dispose(e,t)})},t.type="toolbox",t}(b["a"]);function ne(e){return 0===e.indexOf("my")}var re=te,ie=n("ItGF"),oe=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return Object(i["a"])(t,e),t.prototype.onclick=function(e,t){var n=this.model,r=n.get("name")||e.get("title.0.text")||"echarts",i="svg"===t.getZr().painter.getType(),o=i?"svg":n.get("type",!0)||"png",a=t.getConnectedDataURL({type:o,backgroundColor:n.get("backgroundColor",!0)||e.get("backgroundColor")||"#fff",connectedBackgroundColor:n.get("connectedBackgroundColor"),excludeComponents:n.get("excludeComponents"),pixelRatio:n.get("pixelRatio")});if("function"!==typeof MouseEvent||!ie["a"].browser.newEdge&&(ie["a"].browser.ie||ie["a"].browser.edge))if(window.navigator.msSaveOrOpenBlob||i){var s=a.split(","),l=s[0].indexOf("base64")>-1,u=i?decodeURIComponent(s[1]):s[1];l&&(u=window.atob(u));var c=r+"."+o;if(window.navigator.msSaveOrOpenBlob){var f=u.length,d=new Uint8Array(f);while(f--)d[f]=u.charCodeAt(f);var h=new Blob([d]);window.navigator.msSaveOrOpenBlob(h,c)}else{var p=document.createElement("iframe");document.body.appendChild(p);var g=p.contentWindow,m=g.document;m.open("image/svg+xml","replace"),m.write(u),m.close(),g.focus(),m.execCommand("SaveAs",!0,c),document.body.removeChild(p)}}else{var v=n.get("lang"),y='',b=window.open();b.document.write(y),b.document.title=r}else{var _=document.createElement("a");_.download=r+"."+o,_.target="_blank",_.href=a;var x=new MouseEvent("click",{view:document.defaultView,bubbles:!0,cancelable:!1});_.dispatchEvent(x)}},t.getDefaultOption=function(e){var t={show:!0,icon:"M4.7,22.9L29.3,45.5L54.7,23.4M4.6,43.6L4.6,58L53.8,58L53.8,43.6M29.2,45.1L29.2,0",title:e.getLocaleModel().get(["toolbox","saveAsImage","title"]),type:"png",connectedBackgroundColor:"#fff",name:"",excludeComponents:["toolbox"],lang:e.getLocaleModel().get(["toolbox","saveAsImage","lang"])};return t},t}(V);oe.prototype.unusable=!ie["a"].canvasSupported;var ae=oe,se=n("G+eS"),le="__ec_magicType_stack__",ue=[["line","bar"],["stack"]],ce=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return Object(i["a"])(t,e),t.prototype.getIcons=function(){var e=this.model,t=e.get("icon"),n={};return o["k"](e.get("type"),function(e){t[e]&&(n[e]=t[e])}),n},t.getDefaultOption=function(e){var t={show:!0,type:[],icon:{line:"M4.1,28.9h7.1l9.3-22l7.4,38l9.7-19.7l3,12.8h14.9M4.1,58h51.4",bar:"M6.7,22.9h10V48h-10V22.9zM24.9,13h10v35h-10V13zM43.2,2h10v46h-10V2zM3.1,58h53.7",stack:"M8.2,38.4l-8.4,4.1l30.6,15.3L60,42.5l-8.1-4.1l-21.5,11L8.2,38.4z M51.9,30l-8.1,4.2l-13.4,6.9l-13.9-6.9L8.2,30l-8.4,4.2l8.4,4.2l22.2,11l21.5-11l8.1-4.2L51.9,30z M51.9,21.7l-8.1,4.2L35.7,30l-5.3,2.8L24.9,30l-8.4-4.1l-8.3-4.2l-8.4,4.2L8.2,30l8.3,4.2l13.9,6.9l13.4-6.9l8.1-4.2l8.1-4.1L51.9,21.7zM30.4,2.2L-0.2,17.5l8.4,4.1l8.3,4.2l8.4,4.2l5.5,2.7l5.3-2.7l8.1-4.2l8.1-4.2l8.1-4.1L30.4,2.2z"},title:e.getLocaleModel().get(["toolbox","magicType","title"]),option:{},seriesIndex:{}};return t},t.prototype.onclick=function(e,t,n){var r=this.model,i=r.get(["seriesIndex",n]);if(fe[n]){var a,s={series:[]},l=function(e){var t=e.subType,i=e.id,a=fe[n](t,i,e,r);a&&(o["j"](a,e.option),s.series.push(a));var l=e.coordinateSystem;if(l&&"cartesian2d"===l.type&&("line"===n||"bar"===n)){var u=l.getAxesByScale("ordinal")[0];if(u){var c=u.dim,f=c+"Axis",h=e.getReferringComponents(f,d["b"]).models[0],p=h.componentIndex;s[f]=s[f]||[];for(var g=0;g<=p;g++)s[f][p]=s[f][p]||{};s[f][p].boundaryGap="bar"===n}}};o["k"](ue,function(e){o["q"](e,n)>=0&&o["k"](e,function(e){r.setIconStatus(e,"normal")})}),r.setIconStatus(n,"emphasis"),e.eachComponent({mainType:"series",query:null==i?null:{seriesIndex:i}},l);var u=n;"stack"===n&&(a=o["G"]({stack:r.option.title.tiled,tiled:r.option.title.stack},r.option.title),"emphasis"!==r.get(["iconStatus",n])&&(u="tiled")),t.dispatchAction({type:"changeMagicType",currentType:u,newOption:s,newTitle:a,featureName:"magicType"})}},t}(V),fe={line:function(e,t,n,r){if("bar"===e)return o["G"]({id:t,type:"line",data:n.get("data"),stack:n.get("stack"),markPoint:n.get("markPoint"),markLine:n.get("markLine")},r.get(["option","line"])||{},!0)},bar:function(e,t,n,r){if("line"===e)return o["G"]({id:t,type:"bar",data:n.get("data"),stack:n.get("stack"),markPoint:n.get("markPoint"),markLine:n.get("markLine")},r.get(["option","bar"])||{},!0)},stack:function(e,t,n,r){var i=n.get("stack")===le;if("line"===e||"bar"===e)return r.setIconStatus("stack",i?"normal":"emphasis"),o["G"]({id:t,stack:i?"":le},r.get(["option","stack"])||{},!0)}};se["c"]({type:"changeMagicType",event:"magicTypeChanged",update:"prepareAndUpdate"},function(e,t){t.mergeOption(e.newOption)});var de=ce,he=n("YH21"),pe=new Array(60).join("-"),ge="\t";function me(e){var t={},n=[],r=[];return e.eachRawSeries(function(e){var i=e.coordinateSystem;if(!i||"cartesian2d"!==i.type&&"polar"!==i.type)n.push(e);else{var o=i.getBaseAxis();if("category"===o.type){var a=o.dim+"_"+o.index;t[a]||(t[a]={categoryAxis:o,valueAxis:i.getOtherAxis(o),series:[]},r.push({axisDim:o.dim,axisIndex:o.index})),t[a].series.push(e)}else n.push(e)}}),{seriesGroupByCategoryAxis:t,other:n,meta:r}}function ve(e){var t=[];return o["k"](e,function(e,n){var r=e.categoryAxis,i=e.valueAxis,a=i.dim,s=[" "].concat(o["F"](e.series,function(e){return e.name})),l=[r.model.getCategories()];o["k"](e.series,function(e){var t=e.getRawData();l.push(e.getRawData().mapArray(t.mapDimension(a),function(e){return e}))});for(var u=[s.join(ge)],c=0;c=0)return!0}var we=new RegExp("["+ge+"]+","g");function ke(e){for(var t=e.split(/\n+/g),n=_e(t.shift()).split(we),r=[],i=o["F"](n,function(e){return{name:e,data:[]}}),a=0;a=0;i--){var o=n[i];if(o[r])break}if(i<0){var a=e.queryComponents({mainType:"dataZoom",subType:"select",id:r})[0];if(a){var s=a.getPercentRange();n[0][r]={dataZoomId:r,start:s[0],end:s[1]}}}}),n.push(t)}function Ae(e){var t=Le(e),n=t[t.length-1];t.length>1&&t.pop();var r={};return je(n,function(e,n){for(var i=t.length-1;i>=0;i--)if(e=t[i][n],e){r[n]=e;break}}),r}function Ee(e){Ie(e).snapshots=null}function Pe(e){return Le(e).length}function Le(e){var t=Ie(e);return t.snapshots||(t.snapshots=[{}]),t.snapshots}var Ne=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return Object(i["a"])(t,e),t.prototype.onclick=function(e,t){Ee(e),t.dispatchAction({type:"restore",from:this.uid})},t.getDefaultOption=function(e){var t={show:!0,icon:"M3.8,33.4 M47,18.9h9.8V8.7 M56.3,20.1 C52.1,9,40.5,0.6,26.8,2.1C12.6,3.7,1.6,16.2,2.1,30.6 M13,41.1H3.1v10.2 M3.7,39.9c4.2,11.1,15.8,19.5,29.5,18 c14.2-1.6,25.2-14.1,24.7-28.5",title:e.getLocaleModel().get(["toolbox","restore","title"])};return t},t}(V);se["c"]({type:"restore",event:"restore",update:"prepareAndUpdate"},function(e,t){t.resetOption("recreate")});var Re=Ne,ze=n("b9Ot"),Fe=n("LcXL"),Be=n("x6Kt"),Ve=n("1Jh7"),Ye=n("h7HQ"),Ge="\0_ec_interaction_mutex";function Ue(e,t,n){var r=He(e);r[t]=n}function We(e,t,n){var r=He(e),i=r[t];i===n&&(r[t]=null)}function He(e){return e[Ge]||(e[Ge]={})}se["c"]({type:"takeGlobalCursor",event:"globalCursorTaken",update:"update"},function(){});var qe=!0,Ze=Math.min,Ke=Math.max,Xe=Math.pow,Qe=1e4,$e=6,Je=6,et="globalPan",tt={w:[0,0],e:[0,1],n:[1,0],s:[1,1]},nt={w:"ew",e:"ew",n:"ns",s:"ns",ne:"nesw",sw:"nesw",nw:"nwse",se:"nwse"},rt={brushStyle:{lineWidth:2,stroke:"rgba(210,219,238,0.3)",fill:"#D2DBEE"},transformable:!0,brushMode:"single",removeOnClick:!1},it=0,ot=function(e){function t(t){var n=e.call(this)||this;return n._track=[],n._covers=[],n._handlers={},n._zr=t,n.group=new Fe["a"],n._uid="brushController_"+it++,Object(o["k"])(Rt,function(e,t){this._handlers[t]=Object(o["c"])(e,this)},n),n}return Object(i["a"])(t,e),t.prototype.enableBrush=function(e){return this._brushType&&this._doDisableBrush(),e.brushType&&this._doEnableBrush(e),this},t.prototype._doEnableBrush=function(e){var t=this._zr;this._enableGlobalPan||Ue(t,et,this._uid),Object(o["k"])(this._handlers,function(e,n){t.on(n,e)}),this._brushType=e.brushType,this._brushOption=Object(o["G"])(Object(o["d"])(rt),e,!0)},t.prototype._doDisableBrush=function(){var e=this._zr;We(e,et,this._uid),Object(o["k"])(this._handlers,function(t,n){e.off(n,t)}),this._brushType=this._brushOption=null},t.prototype.setPanels=function(e){if(e&&e.length){var t=this._panels={};Object(o["k"])(e,function(e){t[e.panelId]=Object(o["d"])(e)})}else this._panels=null;return this},t.prototype.mount=function(e){e=e||{},this._enableGlobalPan=e.enableGlobalPan;var t=this.group;return this._zr.add(t),t.attr({x:e.x||0,y:e.y||0,rotation:e.rotation||0,scaleX:e.scaleX||1,scaleY:e.scaleY||1}),this._transform=t.getLocalTransform(),this},t.prototype.updateCovers=function(e){e=Object(o["F"])(e,function(e){return Object(o["G"])(Object(o["d"])(rt),e,!0)});var t="\0-brush-index-",n=this._covers,r=this._covers=[],i=this,a=this._creatingCover;return new Q["a"](n,e,l,s).add(u).update(u).remove(c).execute(),this;function s(e,n){return(null!=e.id?e.id:t+n)+"-"+e.brushType}function l(e,t){return s(e.__brushOption,t)}function u(t,o){var s=e[t];if(null!=o&&n[o]===a)r[t]=n[o];else{var l=r[t]=null!=o?(n[o].__brushOption=s,n[o]):st(i,at(i,s));ct(i,l)}}function c(e){n[e]!==a&&i.group.remove(n[e])}},t.prototype.unmount=function(){return this.enableBrush(!1),pt(this),this._zr.remove(this.group),this},t.prototype.dispose=function(){this.unmount(),this.off()},t}(ze["a"]);function at(e,t){var n=Bt[t.brushType].createCover(e,t);return n.__brushOption=t,ut(n,t),e.group.add(n),n}function st(e,t){var n=ft(t);return n.endCreating&&(n.endCreating(e,t),ut(t,t.__brushOption)),t}function lt(e,t){var n=t.__brushOption;ft(t).updateCoverShape(e,t,n.range,n)}function ut(e,t){var n=t.z;null==n&&(n=Qe),e.traverse(function(e){e.z=n,e.z2=n})}function ct(e,t){ft(t).updateCommon(e,t),lt(e,t)}function ft(e){return Bt[e.__brushOption.brushType]}function dt(e,t,n){var r,i=e._panels;if(!i)return qe;var a=e._transform;return Object(o["k"])(i,function(e){e.isTargetByCursor(t,n,a)&&(r=e)}),r}function ht(e,t){var n=e._panels;if(!n)return qe;var r=t.__brushOption.panelId;return null!=r?n[r]:qe}function pt(e){var t=e._covers,n=t.length;return Object(o["k"])(t,function(t){e.group.remove(t)},e),t.length=0,!!n}function gt(e,t){var n=Object(o["F"])(e._covers,function(e){var t=e.__brushOption,n=Object(o["d"])(t.range);return{brushType:t.brushType,panelId:t.panelId,range:n}});e.trigger("brush",{areas:n,isEnd:!!t.isEnd,removeOnClick:!!t.removeOnClick})}function mt(e){var t=e._track;if(!t.length)return!1;var n=t[t.length-1],r=t[0],i=n[0]-r[0],o=n[1]-r[1],a=Xe(i*i+o*o,.5);return a>$e}function vt(e){var t=e.length-1;return t<0&&(t=0),[e[0],e[t]]}function yt(e,t,n,r){var i=new Fe["a"];return i.add(new Be["a"]({name:"main",style:wt(n),silent:!0,draggable:!0,cursor:"move",drift:Object(o["i"])(Ct,e,t,i,["n","s","w","e"]),ondragend:Object(o["i"])(gt,t,{isEnd:!0})})),Object(o["k"])(r,function(n){i.add(new Be["a"]({name:n.join(""),style:{opacity:0},draggable:!0,silent:!0,invisible:!0,drift:Object(o["i"])(Ct,e,t,i,n),ondragend:Object(o["i"])(gt,t,{isEnd:!0})}))}),i}function bt(e,t,n,r){var i=r.brushStyle.lineWidth||0,o=Ke(i,Je),a=n[0][0],s=n[1][0],l=a-i/2,u=s-i/2,c=n[0][1],f=n[1][1],d=c-o+i/2,h=f-o+i/2,p=c-a,g=f-s,m=p+i,v=g+i;xt(e,t,"main",a,s,p,g),r.transformable&&(xt(e,t,"w",l,u,o,v),xt(e,t,"e",d,u,o,v),xt(e,t,"n",l,u,m,o),xt(e,t,"s",l,h,m,o),xt(e,t,"nw",l,u,o,o),xt(e,t,"ne",d,u,o,o),xt(e,t,"sw",l,h,o,o),xt(e,t,"se",d,h,o,o))}function _t(e,t){var n=t.__brushOption,r=n.transformable,i=t.childAt(0);i.useStyle(wt(n)),i.attr({silent:!r,cursor:r?"move":"default"}),Object(o["k"])([["w"],["e"],["n"],["s"],["s","e"],["s","w"],["n","e"],["n","w"]],function(n){var i=t.childOfName(n.join("")),o=1===n.length?St(e,n[0]):Mt(e,n);i&&i.attr({silent:!r,invisible:!r,cursor:r?nt[o]+"-resize":null})})}function xt(e,t,n,r,i,o,a){var s=t.childOfName(n);s&&s.setShape(Dt(It(e,t,[[r,i],[r+o,i+a]])))}function wt(e){return Object(o["j"])({strokeNoScale:!0},e.brushStyle)}function kt(e,t,n,r){var i=[Ze(e,n),Ze(t,r)],o=[Ke(e,n),Ke(t,r)];return[[i[0],o[0]],[i[1],o[1]]]}function Ot(e){return Z["getTransform"](e.group)}function St(e,t){var n={w:"left",e:"right",n:"top",s:"bottom"},r={left:"w",right:"e",top:"n",bottom:"s"},i=Z["transformDirection"](n[t],Ot(e));return r[i]}function Mt(e,t){var n=[St(e,t[0]),St(e,t[1])];return("e"===n[0]||"w"===n[0])&&n.reverse(),n.join("")}function Ct(e,t,n,r,i,a){var s=n.__brushOption,l=e.toRectRange(s.range),u=jt(t,i,a);Object(o["k"])(r,function(e){var t=tt[e];l[t[0]][t[1]]+=u[t[0]]}),s.range=e.fromRectRange(kt(l[0][0],l[1][0],l[0][1],l[1][1])),ct(t,n),gt(t,{isEnd:!1})}function Tt(e,t,n,r){var i=t.__brushOption.range,a=jt(e,n,r);Object(o["k"])(i,function(e){e[0]+=a[0],e[1]+=a[1]}),ct(e,t),gt(e,{isEnd:!1})}function jt(e,t,n){var r=e.group,i=r.transformCoordToLocal(t,n),o=r.transformCoordToLocal(0,0);return[i[0]-o[0],i[1]-o[1]]}function It(e,t,n){var r=ht(e,t);return r&&r!==qe?r.clipPath(n,e._transform):Object(o["d"])(n)}function Dt(e){var t=Ze(e[0][0],e[1][0]),n=Ze(e[0][1],e[1][1]),r=Ke(e[0][0],e[1][0]),i=Ke(e[0][1],e[1][1]);return{x:t,y:n,width:r-t,height:i-n}}function At(e,t,n){if(e._brushType&&!Ft(e,t.offsetX,t.offsetY)){var r=e._zr,i=e._covers,o=dt(e,t,n);if(!e._dragging)for(var a=0;ar.getWidth()||n<0||n>r.getHeight()}var Bt={lineX:Vt(0),lineY:Vt(1),rect:{createCover:function(e,t){function n(e){return e}return yt({toRectRange:n,fromRectRange:n},e,t,[["w"],["e"],["n"],["s"],["s","e"],["s","w"],["n","e"],["n","w"]])},getCreatingRange:function(e){var t=vt(e);return kt(t[1][0],t[1][1],t[0][0],t[0][1])},updateCoverShape:function(e,t,n,r){bt(e,t,n,r)},updateCommon:_t,contain:Pt},polygon:{createCover:function(e,t){var n=new Fe["a"];return n.add(new Ve["a"]({name:"main",style:wt(t),silent:!0})),n},getCreatingRange:function(e){return e},endCreating:function(e,t){t.remove(t.childAt(0)),t.add(new Ye["a"]({name:"main",draggable:!0,drift:Object(o["i"])(Tt,e,t),ondragend:Object(o["i"])(gt,e,{isEnd:!0})}))},updateCoverShape:function(e,t,n,r){t.childAt(0).setShape({points:It(e,t,n)})},updateCommon:_t,contain:Pt}};function Vt(e){return{createCover:function(t,n){return yt({toRectRange:function(t){var n=[t,[0,100]];return e&&n.reverse(),n},fromRectRange:function(t){return t[e]}},t,n,[[["w"],["e"]],[["n"],["s"]]][e])},getCreatingRange:function(t){var n=vt(t),r=Ze(n[0][e],n[1][e]),i=Ke(n[0][e],n[1][e]);return[r,i]},updateCoverShape:function(t,n,r,i){var o,a=ht(t,n);if(a!==qe&&a.getLinearBrushOtherExtent)o=a.getLinearBrushOtherExtent(e);else{var s=t._zr;o=[0,[s.getWidth(),s.getHeight()][1-e]]}var l=[r,o];e&&l.reverse(),bt(t,n,l,i)},updateCommon:_t,contain:Pt}}var Yt=ot,Gt=n("mFDi"),Ut={axisPointer:1,tooltip:1,brush:1};function Wt(e,t,n){var r=t.getComponentByElement(e.topTarget),i=r&&r.coordinateSystem;return r&&r!==n&&!Ut.hasOwnProperty(r.mainType)&&i&&i.model!==n}function Ht(e){return e=Kt(e),function(t){return Z["clipPointsByRect"](t,e)}}function qt(e,t){return e=Kt(e),function(n){var r=null!=t?t:n,i=r?e.width:e.height,o=r?e.x:e.y;return[o,o+(i||0)]}}function Zt(e,t,n){var r=Kt(e);return function(e,i){return r.contain(i[0],i[1])&&!Wt(e,t,n)}}function Kt(e){return Gt["a"].create(e)}var Xt=["grid","xAxis","yAxis","geo","graph","polar","radiusAxis","angleAxis","bmap"],Qt=function(){function e(e,t,n){var r=this;this._targetInfoList=[];var i=Jt(t,e);Object(o["k"])(en,function(e,t){(!n||!n.include||Object(o["q"])(n.include,t)>=0)&&e(i,r._targetInfoList)})}return e.prototype.setOutputRanges=function(e,t){return this.matchOutputRanges(e,t,function(e,t,n){if((e.coordRanges||(e.coordRanges=[])).push(t),!e.coordRange){e.coordRange=t;var r=rn[e.brushType](0,n,t);e.__rangeOffset={offset:an[e.brushType](r.values,e.range,[1,1]),xyMinMax:r.xyMinMax}}}),e},e.prototype.matchOutputRanges=function(e,t,n){Object(o["k"])(e,function(e){var r=this.findTargetInfo(e,t);r&&!0!==r&&Object(o["k"])(r.coordSyses,function(r){var i=rn[e.brushType](1,r,e.range,!0);n(e,i.values,r,t)})},this)},e.prototype.setInputRanges=function(e,t){Object(o["k"])(e,function(e){var n=this.findTargetInfo(e,t);if(e.range=e.range||[],n&&!0!==n){e.panelId=n.panelId;var r=rn[e.brushType](0,n.coordSys,e.coordRange),i=e.__rangeOffset;e.range=i?an[e.brushType](r.values,i.offset,ln(r.xyMinMax,i.xyMinMax)):r.values}},this)},e.prototype.makePanelOpts=function(e,t){return Object(o["F"])(this._targetInfoList,function(n){var r=n.getPanelRect();return{panelId:n.panelId,defaultBrushType:t?t(n):null,clipPath:Ht(r),isTargetByCursor:Zt(r,e,n.coordSysModel),getLinearBrushOtherExtent:qt(r)}})},e.prototype.controlSeries=function(e,t,n){var r=this.findTargetInfo(e,n);return!0===r||r&&Object(o["q"])(r.coordSyses,t.coordinateSystem)>=0},e.prototype.findTargetInfo=function(e,t){for(var n=this._targetInfoList,r=Jt(t,e),i=0;ie[1]&&e.reverse(),e}function Jt(e,t){return Object(d["q"])(e,t,{includeMainTypes:Xt})}var en={grid:function(e,t){var n=e.xAxisModels,r=e.yAxisModels,i=e.gridModels,a=Object(o["g"])(),s={},l={};(n||r||i)&&(Object(o["k"])(n,function(e){var t=e.axis.grid.model;a.set(t.id,t),s[t.id]=!0}),Object(o["k"])(r,function(e){var t=e.axis.grid.model;a.set(t.id,t),l[t.id]=!0}),Object(o["k"])(i,function(e){a.set(e.id,e),s[e.id]=!0,l[e.id]=!0}),a.each(function(e){var i=e.coordinateSystem,a=[];Object(o["k"])(i.getCartesians(),function(e,t){(Object(o["q"])(n,e.getAxis("x").model)>=0||Object(o["q"])(r,e.getAxis("y").model)>=0)&&a.push(e)}),t.push({panelId:"grid--"+e.id,gridModel:e,coordSysModel:e,coordSys:a[0],coordSyses:a,getPanelRect:nn.grid,xAxisDeclared:s[e.id],yAxisDeclared:l[e.id]})}))},geo:function(e,t){Object(o["k"])(e.geoModels,function(e){var n=e.coordinateSystem;t.push({panelId:"geo--"+e.id,geoModel:e,coordSysModel:e,coordSys:n,coordSyses:[n],getPanelRect:nn.geo})})}},tn=[function(e,t){var n=e.xAxisModel,r=e.yAxisModel,i=e.gridModel;return!i&&n&&(i=n.axis.grid.model),!i&&r&&(i=r.axis.grid.model),i&&i===t.gridModel},function(e,t){var n=e.geoModel;return n&&n===t.geoModel}],nn={grid:function(){return this.coordSys.master.getRect().clone()},geo:function(){var e=this.coordSys,t=e.getBoundingRect().clone();return t.applyTransform(Z["getTransform"](e)),t}},rn={lineX:Object(o["i"])(on,0),lineY:Object(o["i"])(on,1),rect:function(e,t,n,r){var i=e?t.pointToData([n[0][0],n[1][0]],r):t.dataToPoint([n[0][0],n[1][0]],r),o=e?t.pointToData([n[0][1],n[1][1]],r):t.dataToPoint([n[0][1],n[1][1]],r),a=[$t([i[0],o[0]]),$t([i[1],o[1]])];return{values:a,xyMinMax:a}},polygon:function(e,t,n,r){var i=[[1/0,-1/0],[1/0,-1/0]],a=Object(o["F"])(n,function(n){var o=e?t.pointToData(n,r):t.dataToPoint(n,r);return i[0][0]=Math.min(i[0][0],o[0]),i[1][0]=Math.min(i[1][0],o[1]),i[0][1]=Math.max(i[0][1],o[0]),i[1][1]=Math.max(i[1][1],o[1]),o});return{values:a,xyMinMax:i}}};function on(e,t,n,r){var i=n.getAxis(["x","y"][e]),a=$t(Object(o["F"])([0,1],function(e){return t?i.coordToData(i.toLocalCoord(r[e]),!0):i.toGlobalCoord(i.dataToCoord(r[e]))})),s=[];return s[e]=a,s[1-e]=[NaN,NaN],{values:a,xyMinMax:s}}var an={lineX:Object(o["i"])(sn,0),lineY:Object(o["i"])(sn,1),rect:function(e,t,n){return[[e[0][0]-n[0]*t[0][0],e[0][1]-n[0]*t[0][1]],[e[1][0]-n[1]*t[1][0],e[1][1]-n[1]*t[1][1]]]},polygon:function(e,t,n){return Object(o["F"])(e,function(e,r){return[e[0]-n[0]*t[r][0],e[1]-n[1]*t[r][1]]})}};function sn(e,t,n,r){return[t[0]-r[e]*n[0],t[1]-r[e]*n[1]]}function ln(e,t){var n=un(e),r=un(t),i=[n[0]/r[0],n[1]/r[1]];return isNaN(i[0])&&(i[0]=1),isNaN(i[1])&&(i[1]=1),i}function un(e){return e?[e[0][1]-e[0][0],e[1][1]-e[1][0]]:[NaN,NaN]}var cn=Qt,fn=n("Lx9C"),dn=o["k"],hn=Object(d["n"])("toolbox-dataZoom_"),pn=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return Object(i["a"])(t,e),t.prototype.render=function(e,t,n,r){this._brushController||(this._brushController=new Yt(n.getZr()),this._brushController.on("brush",o["c"](this._onBrush,this)).mount()),yn(e,t,this,r,n),vn(e,t)},t.prototype.onclick=function(e,t,n){gn[n].call(this)},t.prototype.remove=function(e,t){this._brushController&&this._brushController.unmount()},t.prototype.dispose=function(e,t){this._brushController&&this._brushController.dispose()},t.prototype._onBrush=function(e){var t=e.areas;if(e.isEnd&&t.length){var n={},r=this.ecModel;this._brushController.updateCovers([]);var i=new cn(mn(this.model),r,{include:["grid"]});i.matchOutputRanges(t,r,function(e,t,n){if("cartesian2d"===n.type){var r=e.brushType;"rect"===r?(o("x",n,t[0]),o("y",n,t[1])):o({lineX:"x",lineY:"y"}[r],n,t)}}),De(r,n),this._dispatchZoomAction(n)}function o(e,t,i){var o=t.getAxis(e),s=o.model,l=a(e,s,r),u=l.findRepresentativeAxisProxy(s).getMinMaxSpan();null==u.minValueSpan&&null==u.maxValueSpan||(i=S(0,i.slice(),o.scale.getExtent(),0,u.minValueSpan,u.maxValueSpan)),l&&(n[l.id]={dataZoomId:l.id,startValue:i[0],endValue:i[1]})}function a(e,t,n){var r;return n.eachComponent({mainType:"dataZoom",subType:"select"},function(n){var i=n.getAxisModel(e,t.componentIndex);i&&(r=n)}),r}},t.prototype._dispatchZoomAction=function(e){var t=[];dn(e,function(e,n){t.push(o["d"](e))}),t.length&&this.api.dispatchAction({type:"dataZoom",from:this.uid,batch:t})},t.getDefaultOption=function(e){var t={show:!0,filterMode:"filter",icon:{zoom:"M0,13.5h26.9 M13.5,26.9V0 M32.1,13.5H58V58H13.5 V32.1",back:"M22,1.4L9.9,13.5l12.3,12.3 M10.3,13.5H54.9v44.6 H10.3v-26"},title:e.getLocaleModel().get(["toolbox","dataZoom","title"]),brushStyle:{borderWidth:0,color:"rgba(210,219,238,0.2)"}};return t},t}(V),gn={zoom:function(){var e=!this._isZoomActive;this.api.dispatchAction({type:"takeGlobalCursor",key:"dataZoomSelect",dataZoomSelectActive:e})},back:function(){this._dispatchZoomAction(Ae(this.ecModel))}};function mn(e){var t={xAxisIndex:e.get("xAxisIndex",!0),yAxisIndex:e.get("yAxisIndex",!0),xAxisId:e.get("xAxisId",!0),yAxisId:e.get("yAxisId",!0)};return null==t.xAxisIndex&&null==t.xAxisId&&(t.xAxisIndex="all"),null==t.yAxisIndex&&null==t.yAxisId&&(t.yAxisIndex="all"),t}function vn(e,t){e.setIconStatus("back",Pe(t)>1?"emphasis":"normal")}function yn(e,t,n,r,i){var o=n._isZoomActive;r&&"takeGlobalCursor"===r.type&&(o="dataZoomSelect"===r.key&&r.dataZoomSelectActive),n._isZoomActive=o,e.setIconStatus("zoom",o?"emphasis":"normal");var a=new cn(mn(e),t,{include:["grid"]}),s=a.makePanelOpts(i,function(e){return e.xAxisDeclared&&!e.yAxisDeclared?"lineX":!e.xAxisDeclared&&e.yAxisDeclared?"lineY":"rect"});n._brushController.setPanels(s).enableBrush(!(!o||!s.length)&&{brushType:"auto",brushStyle:e.getModel("brushStyle").getItemStyle()})}Object(fn["b"])("dataZoom",function(e){var t=e.getComponent("toolbox",0),n=["feature","dataZoom"];if(t&&null!=t.get(n)){var r=t.getModel(n),i=[],o=mn(r),a=Object(d["q"])(e,o);return dn(a.xAxisModels,function(e){return s(e,"xAxis","xAxisIndex")}),dn(a.yAxisModels,function(e){return s(e,"yAxis","yAxisIndex")}),i}function s(e,t,n){var o=e.componentIndex,a={type:"select",$fromToolbox:!0,filterMode:r.get("filterMode",!0)||"filter",id:hn+t+o};a[n]=o,i.push(a)}});var bn=pn;function _n(e){e.registerComponentModel(H),e.registerComponentView(re),G("saveAsImage",ae),G("magicType",de),G("dataView",Te),G("dataZoom",bn),G("restore",Re),Object(r["a"])(B)}n.d(t,"a",function(){return _n})},MMmD:function(e,t,n){var r=n("lSCD"),i=n("shjB");function o(e){return null!=e&&i(e.length)&&!r(e)}e.exports=o},MrPd:function(e,t,n){var r=n("hypo"),i=n("ljhN"),o=Object.prototype,a=o.hasOwnProperty;function s(e,t,n){var o=e[t];a.call(e,t)&&i(o,n)&&(void 0!==n||t in e)||r(e,t,n)}e.exports=s},N5VM:function(e,t,n){"use strict";var r=this&&this.__extends||function(){var e=function(t,n){return e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])},e(t,n)};return function(t,n){function r(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}(),i=this&&this.__assign||function(){return i=Object.assign||function(e){for(var t,n=1,r=arguments.length;n0&&e.handleMarkers(x,t);for(r=0;r-1&&(u.style.stroke=u.style.fill,u.style.fill="#fff",u.style.lineWidth=2),t},t.type="series.line",t.dependencies=["grid","polar"],t.defaultOption={zlevel:0,z:3,coordinateSystem:"cartesian2d",legendHoverLink:!0,clip:!0,label:{position:"top"},endLabel:{show:!1,valueAnimation:!0,distance:8},lineStyle:{width:2,type:"solid"},emphasis:{scale:!0,lineStyle:{width:"bolder"}},step:!1,smooth:!1,smoothMonotone:null,symbol:"emptyCircle",symbolSize:4,symbolRotate:null,showSymbol:!0,showAllSymbol:"auto",connectNulls:!1,sampling:"none",animationEasing:"linear",progressive:0,hoverLayerThreshold:1/0,universalTransition:{divideShape:"clone"},triggerLineEvent:!1},t}(o["b"]),u=l,c=n("bYtY"),f=n("3qvL"),d=n("hhxK"),h=n("fWwa"),p=n("x3X8"),g=n("eDfh"),m=n("Dagg"),v=function(e){function t(t,n,r,i){var o=e.call(this)||this;return o.updateData(t,n,r,i),o}return Object(r["a"])(t,e),t.prototype._createSymbol=function(e,t,n,r,i){this.removeAll();var o=Object(a["a"])(e,-1,-1,2,2,null,i);o.attr({z2:100,culling:!0,scaleX:r[0]/2,scaleY:r[1]/2}),o.drift=y,this._symbolType=e,this.add(o)},t.prototype.stopSymbolAnimation=function(e){this.childAt(0).stopAnimation(null,e)},t.prototype.getSymbolType=function(){return this._symbolType},t.prototype.getSymbolPath=function(){return this.childAt(0)},t.prototype.highlight=function(){Object(h["o"])(this.childAt(0))},t.prototype.downplay=function(){Object(h["z"])(this.childAt(0))},t.prototype.setZ=function(e,t){var n=this.childAt(0);n.zlevel=e,n.z=t},t.prototype.setDraggable=function(e){var t=this.childAt(0);t.draggable=e,t.cursor=e?"move":t.cursor},t.prototype.updateData=function(e,n,r,i){this.silent=!1;var o=e.getItemVisual(n,"symbol")||"circle",a=e.hostModel,s=t.getSymbolSize(e,n),l=o!==this._symbolType,u=i&&i.disableAnimation;if(l){var c=e.getItemVisual(n,"symbolKeepAspect");this._createSymbol(o,e,n,s,c)}else{var d=this.childAt(0);d.silent=!1;var h={scaleX:s[0]/2,scaleY:s[1]/2};u?d.attr(h):f["h"](d,h,a,n),Object(f["g"])(d)}if(this._updateCommon(e,n,s,r,i),l){d=this.childAt(0);if(!u){h={scaleX:this._sizeX,scaleY:this._sizeY,style:{opacity:d.style.opacity}};d.scaleX=d.scaleY=0,d.style.opacity=0,f["c"](d,h,a,n)}}u&&this.childAt(0).stopAnimation("remove"),this._seriesModel=a},t.prototype._updateCommon=function(e,t,n,r,i){var o,s,l,u,f,d,v,y,b=this.childAt(0),_=e.hostModel;if(r&&(o=r.emphasisItemStyle,s=r.blurItemStyle,l=r.selectItemStyle,u=r.focus,f=r.blurScope,d=r.labelStatesModels,v=r.hoverScale,y=r.cursorStyle),!r||e.hasItemOption){var x=r&&r.itemModel?r.itemModel:e.getItemModel(t),w=x.getModel("emphasis");o=w.getModel("itemStyle").getItemStyle(),l=x.getModel(["select","itemStyle"]).getItemStyle(),s=x.getModel(["blur","itemStyle"]).getItemStyle(),u=w.get("focus"),f=w.get("blurScope"),d=Object(g["c"])(x),v=w.getShallow("scale"),y=x.getShallow("cursor")}var k=e.getItemVisual(t,"symbolRotate");b.attr("rotation",(k||0)*Math.PI/180||0);var O=Object(a["b"])(e.getItemVisual(t,"symbolOffset"),n);O&&(b.x=O[0],b.y=O[1]),y&&b.attr("cursor",y);var S=e.getItemVisual(t,"style"),M=S.fill;if(b instanceof m["a"]){var C=b.style;b.useStyle(Object(c["m"])({image:C.image,x:C.x,y:C.y,width:C.width,height:C.height},S))}else b.__isEmptyBrush?b.useStyle(Object(c["m"])({},S)):b.useStyle(S),b.style.decal=null,b.setColor(M,i&&i.symbolInnerColor),b.style.strokeNoScale=!0;var T=e.getItemVisual(t,"liftZ"),j=this._z2;null!=T?null==j&&(this._z2=b.z2,b.z2+=T):null!=j&&(b.z2=j,this._z2=null);var I=i&&i.useNameLabel;function D(t){return I?e.getName(t):Object(p["b"])(e,t)}Object(g["e"])(b,d,{labelFetcher:_,labelDataIndex:t,defaultText:D,inheritColor:M,defaultOpacity:S.opacity}),this._sizeX=n[0]/2,this._sizeY=n[1]/2;var A=b.ensureState("emphasis");if(A.style=o,b.ensureState("select").style=l,b.ensureState("blur").style=s,v){var E=Math.max(1.1,3/this._sizeY);A.scaleX=this._sizeX*E,A.scaleY=this._sizeY*E}this.setSymbolScale(1),Object(h["m"])(this,u,f)},t.prototype.setSymbolScale=function(e){this.scaleX=this.scaleY=e},t.prototype.fadeOut=function(e,t){var n=this.childAt(0),r=this._seriesModel,i=Object(d["a"])(this).dataIndex,o=t&&t.animation;if(this.silent=n.silent=!0,t&&t.fadeLabel){var a=n.getTextContent();a&&f["e"](a,{style:{opacity:0}},r,{dataIndex:i,removeOpt:o,cb:function(){n.removeTextContent()}})}else n.removeTextContent();f["e"](n,{style:{opacity:0},scaleX:0,scaleY:0},r,{dataIndex:i,cb:e,removeOpt:o})},t.getSymbolSize=function(e,t){return Object(a["c"])(e.getItemVisual(t,"symbolSize"))},t}(s["a"]);function y(e,t){this.parent.drift(e,t)}var b=v;function _(e,t,n,r){return t&&!isNaN(t[0])&&!isNaN(t[1])&&!(r.isIgnore&&r.isIgnore(n))&&!(r.clipShape&&!r.clipShape.contain(t[0],t[1]))&&"none"!==e.getItemVisual(n,"symbol")}function x(e){return null==e||Object(c["z"])(e)||(e={isIgnore:e}),e||{}}function w(e){var t=e.hostModel,n=t.getModel("emphasis");return{emphasisItemStyle:n.getModel("itemStyle").getItemStyle(),blurItemStyle:t.getModel(["blur","itemStyle"]).getItemStyle(),selectItemStyle:t.getModel(["select","itemStyle"]).getItemStyle(),focus:n.get("focus"),blurScope:n.get("blurScope"),hoverScale:n.get("scale"),labelStatesModels:Object(g["c"])(t),cursorStyle:t.get("cursor")}}var k=function(){function e(e){this.group=new s["a"],this._SymbolCtor=e||b}return e.prototype.updateData=function(e,t){t=x(t);var n=this.group,r=e.hostModel,i=this._data,o=this._SymbolCtor,a=t.disableAnimation,s=w(e),l={disableAnimation:a},u=t.getSymbolPoint||function(t){return e.getItemLayout(t)};i||n.removeAll(),e.diff(i).add(function(r){var i=u(r);if(_(e,i,r,t)){var a=new o(e,r,s,l);a.setPosition(i),e.setItemGraphicEl(r,a),n.add(a)}}).update(function(c,d){var h=i.getItemGraphicEl(d),p=u(c);if(_(e,p,c,t)){var g=e.getItemVisual(c,"symbol")||"circle",m=h&&h.getSymbolType&&h.getSymbolType();if(!h||m&&m!==g)n.remove(h),h=new o(e,c,s,l),h.setPosition(p);else{h.updateData(e,c,s,l);var v={x:p[0],y:p[1]};a?h.attr(v):f["h"](h,v,r)}n.add(h),e.setItemGraphicEl(c,h)}else n.remove(h)}).remove(function(e){var t=i.getItemGraphicEl(e);t&&t.fadeOut(function(){n.remove(t)})}).execute(),this._getSymbolPoint=u,this._data=e},e.prototype.isPersistent=function(){return!0},e.prototype.updateLayout=function(){var e=this,t=this._data;t&&t.eachItemGraphicEl(function(t,n){var r=e._getSymbolPoint(n);t.setPosition(r),t.markRedraw()})},e.prototype.incrementalPrepareUpdate=function(e){this._seriesScope=w(e),this._data=null,this.group.removeAll()},e.prototype.incrementalUpdate=function(e,t,n){function r(e){e.isGroup||(e.incremental=!0,e.ensureState("emphasis").hoverLayer=!0)}n=x(n);for(var i=e.start;i0?n=r[0]:r[1]<0&&(n=r[1]),n}function T(e,t,n,r){var i=NaN;e.stacked&&(i=n.get(n.getCalculationInfo("stackedOverDimension"),r)),isNaN(i)&&(i=e.valueStart);var o=e.baseDataOffset,a=[];return a[o]=n.get(e.baseDim,r),a[1-o]=i,t.dataToPoint(a)}var j="undefined"!==typeof Float32Array,I=j?Float32Array:Array;function D(e){return Object(c["s"])(e)?j?new Float32Array(e):e:new I(e)}function A(e,t){var n=[];return t.diff(e).add(function(e){n.push({cmd:"+",idx:e})}).update(function(e,t){n.push({cmd:"=",idx:t,idx1:e})}).remove(function(e){n.push({cmd:"-",idx:e})}).execute(),n}function E(e,t,n,r,i,o,a,s){for(var l=A(e,t),u=[],c=[],f=[],d=[],h=[],p=[],g=[],m=M(i,t,a),v=e.getLayout("points")||[],y=t.getLayout("points")||[],b=0;b=i||g<0)break;if(Y(v,y)){if(l){g+=o;continue}break}if(g===n)e[o>0?"moveTo":"lineTo"](v,y),f=v,d=y;else{var b=v-u,_=y-c;if(b*b+_*_<.5){g+=o;continue}if(a>0){var x=g+o,w=t[2*x],k=t[2*x+1];while(w===v&&k===y&&m=r||Y(w,k))h=v,p=y;else{M=w-u,C=k-c;var I=v-u,D=w-v,A=y-c,E=k-y,P=void 0,L=void 0;"x"===s?(P=Math.abs(I),L=Math.abs(D),h=v-P*a,p=y,T=v+P*a,j=y):"y"===s?(P=Math.abs(A),L=Math.abs(E),h=v,p=y-P*a,T=v,j=y+P*a):(P=Math.sqrt(I*I+A*A),L=Math.sqrt(D*D+E*E),S=L/(L+P),h=v-M*a*(1-S),p=y-C*a*(1-S),T=v+M*a*S,j=y+C*a*S,T=B(T,V(w,v)),j=B(j,V(k,y)),T=V(T,B(w,v)),j=V(j,B(k,y)),M=T-v,C=j-y,h=v-M*P/L,p=y-C*P/L,h=B(h,V(u,v)),p=B(p,V(c,y)),h=V(h,B(u,v)),p=V(p,B(c,y)),M=v-h,C=y-p,T=v+M*L/P,j=y+C*L/P)}e.bezierCurveTo(f,d,h,p,v,y),f=T,d=j}else e.lineTo(v,y)}u=v,c=y,g+=o}return m}var U=function(){function e(){this.smooth=0,this.smoothConstraint=!0}return e}(),W=function(e){function t(t){var n=e.call(this,t)||this;return n.type="ec-polyline",n}return Object(r["a"])(t,e),t.prototype.getDefaultStyle=function(){return{stroke:"#000",fill:null}},t.prototype.getDefaultShape=function(){return new U},t.prototype.buildPath=function(e,t){var n=t.points,r=0,i=n.length/2;if(t.connectNulls){for(;i>0;i--)if(!Y(n[2*i-2],n[2*i-1]))break;for(;r=0){var y=s?(d-r)*v+r:(f-n)*v+n;return s?[e,y]:[y,e]}n=f,r=d;break;case a.C:f=o[u++],d=o[u++],h=o[u++],p=o[u++],g=o[u++],m=o[u++];var b=s?Object(F["f"])(n,f,h,g,e,l):Object(F["f"])(r,d,p,m,e,l);if(b>0)for(var _=0;_=0){y=s?Object(F["a"])(r,d,p,m,x):Object(F["a"])(n,f,h,g,x);return s?[e,y]:[y,e]}}n=g,r=m;break}}},t}(R["b"]),H=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return Object(r["a"])(t,e),t}(U),q=function(e){function t(t){var n=e.call(this,t)||this;return n.type="ec-polygon",n}return Object(r["a"])(t,e),t.prototype.getDefaultShape=function(){return new H},t.prototype.buildPath=function(e,t){var n=t.points,r=t.stackedOnPoints,i=0,o=n.length/2,a=t.smoothMonotone;if(t.connectNulls){for(;o>0;o--)if(!Y(n[2*o-2],n[2*o-1]))break;for(;it){r?i.push(a(r,l,t)):n&&i.push(a(n,l,0),a(n,l,t));break}n&&(i.push(a(n,l,0)),n=null),i.push(l),r=l}}return i}function ae(e,t,n){var r=e.getVisual("visualMeta");if(r&&r.length&&e.count()&&"cartesian2d"===t.type){for(var i,o,a=r.length-1;a>=0;a--){var s=e.getDimensionInfo(r[a].dimension);if(i=s&&s.coordDim,"x"===i||"y"===i){o=r[a];break}}if(o){var l=t.getAxis(i),u=c["F"](o.stops,function(e){return{coord:l.toGlobalCoord(l.dataToCoord(e.value)),color:e.color}}),f=u.length,d=o.outerColors.slice();f&&u[0].coord>u[f-1].coord&&(u.reverse(),d.reverse());var h=oe(u,"x"===i?n.getWidth():n.getHeight()),p=h.length;if(!p&&f)return u[0].coord<0?d[1]?d[1]:u[f-1].color:d[0]?d[0]:u[0].color;var g=10,m=h[0].coord-g,v=h[p-1].coord+g,y=v-m;if(y<.001)return"transparent";c["k"](h,function(e){e.offset=(e.coord-m)/y}),h.push({offset:p?h[p-1].offset:.5,color:d[1]||"transparent"}),h.unshift({offset:p?h[0].offset:.5,color:d[0]||"transparent"});var b=new P["a"](0,0,0,0,h,!0);return b[i]=m,b[i+"2"]=v,b}}}function se(e,t,n){var r=e.get("showAllSymbol"),i="auto"===r;if(!r||i){var o=n.getAxesByScale("ordinal")[0];if(o&&(!i||!le(o,t))){var a=t.mapDimension(o.dim),s={};return c["k"](o.getViewLabels(),function(e){var t=o.scale.getRawOrdinalNumber(e.tickValue);s[t]=1}),function(e){return!s.hasOwnProperty(t.get(a,e))}}}}function le(e,t){var n=e.getExtent(),r=Math.abs(n[1]-n[0])/e.scale.count();isNaN(r)&&(r=0);for(var i=t.count(),o=Math.max(1,Math.round(i/5)),a=0;ar)return!1;return!0}function ue(e,t){return isNaN(e)||isNaN(t)}function ce(e){for(var t=e.length/2;t>0;t--)if(!ue(e[2*t-2],e[2*t-1]))break;return t-1}function fe(e,t){return[e[2*t],e[2*t+1]]}function de(e,t,n){for(var r,i,o=e.length/2,a="x"===n?0:1,s=0,l=-1,u=0;u=t||r>=t&&i<=t){l=u;break}s=u,r=i}else r=i;return{range:[s,l],t:(t-r)/(i-r)}}function he(e){if(e.get(["endLabel","show"]))return!0;for(var t=0;t0&&"bolder"===e.get(["emphasis","lineStyle","width"])){var N=v.getState("emphasis").style;N.lineWidth=+v.style.lineWidth+1}Object(d["a"])(v).seriesIndex=e.seriesIndex,Object(h["m"])(v,P,L);var R=ne(e.get("smooth")),z=e.get("smoothMonotone"),F=e.get("connectNulls");if(v.setShape({smooth:R,smoothMonotone:z,connectNulls:F}),y){var B=a.getCalculationInfo("stackedOnSeries"),V=0;y.useStyle(c["j"](l.getAreaStyle(),{fill:D,opacity:.7,lineJoin:"bevel",decal:a.getVisual("style").decal})),B&&(V=ne(B.get("smooth"))),y.setShape({smooth:R,stackedOnSmooth:V,smoothMonotone:z,connectNulls:F}),Object(h["D"])(y,e,"areaStyle"),Object(d["a"])(y).seriesIndex=e.seriesIndex,Object(h["m"])(y,P,L)}var Y=function(e){r._changePolyState(e)};a.eachItemGraphicEl(function(e){e&&(e.onHoverStateChange=Y)}),this._polyline.onHoverStateChange=Y,this._data=a,this._coordSys=i,this._stackedOnPoints=O,this._points=u,this._step=I,this._valueOrigin=w,e.get("triggerLineEvent")&&(this.packEventData(e,v),y&&this.packEventData(e,y))},t.prototype.packEventData=function(e,t){Object(d["a"])(t).eventData={componentType:"series",componentSubType:"line",componentIndex:e.componentIndex,seriesIndex:e.seriesIndex,seriesName:e.name,seriesType:"line"}},t.prototype.highlight=function(e,t,n,r){var i=e.getData(),o=N["s"](i,r);if(this._changePolyState("emphasis"),!(o instanceof Array)&&null!=o&&o>=0){var a=i.getLayout("points"),s=i.getItemGraphicEl(o);if(!s){var l=a[2*o],u=a[2*o+1];if(isNaN(l)||isNaN(u))return;if(this._clipShapeForSymbol&&!this._clipShapeForSymbol.contain(l,u))return;var c=e.get("zlevel"),f=e.get("z");s=new b(i,o),s.x=l,s.y=u,s.setZ(c,f);var d=s.getSymbolPath().getTextContent();d&&(d.zlevel=c,d.z=f,d.z2=this._polyline.z2+1),s.__temp=!0,i.setItemGraphicEl(o,s),s.stopSymbolAnimation(!0),this.group.add(s)}s.highlight()}else Z["a"].prototype.highlight.call(this,e,t,n,r)},t.prototype.downplay=function(e,t,n,r){var i=e.getData(),o=N["s"](i,r);if(this._changePolyState("normal"),null!=o&&o>=0){var a=i.getItemGraphicEl(o);a&&(a.__temp?(i.setItemGraphicEl(o,null),this.group.remove(a)):a.downplay())}else Z["a"].prototype.downplay.call(this,e,t,n,r)},t.prototype._changePolyState=function(e){var t=this._polygon;Object(h["C"])(this._polyline,e),t&&Object(h["C"])(t,e)},t.prototype._newPolyline=function(e){var t=this._polyline;return t&&this._lineGroup.remove(t),t=new W({shape:{points:e},segmentIgnoreThreshold:2,z2:10}),this._lineGroup.add(t),this._polyline=t,t},t.prototype._newPolygon=function(e,t){var n=this._polygon;return n&&this._lineGroup.remove(n),n=new q({shape:{points:e,stackedOnPoints:t},segmentIgnoreThreshold:2}),this._lineGroup.add(n),this._polygon=n,n},t.prototype._initSymbolLabelAnimation=function(e,t,n){var r,i,o=t.getBaseAxis(),a=o.inverse;"cartesian2d"===t.type?(r=o.isHorizontal(),i=!1):"polar"===t.type&&(r="angle"===o.dim,i=!0);var s=e.hostModel,l=s.get("animationDuration");"function"===typeof l&&(l=l(null));var u=s.get("animationDelay")||0,c="function"===typeof u?u(null):u;e.eachItemGraphicEl(function(e,o){var s=e;if(s){var f=[e.x,e.y],d=void 0,h=void 0,p=void 0;if(n)if(i){var g=n,m=t.pointToCoord(f);r?(d=g.startAngle,h=g.endAngle,p=-m[1]/180*Math.PI):(d=g.r0,h=g.r,p=m[0])}else{var v=n;r?(d=v.x,h=v.x+v.width,p=e.x):(d=v.y+v.height,h=v.y,p=e.y)}var y=h===d?0:(p-d)/(h-d);a&&(y=1-y);var b="function"===typeof u?u(o):l*y+c,_=s.getSymbolPath(),x=_.getTextContent();s.attr({scaleX:0,scaleY:0}),s.animateTo({scaleX:1,scaleY:1},{duration:200,setToFinal:!0,delay:b}),x&&x.animateFrom({style:{opacity:0}},{duration:300,delay:b}),_.disableLabelAnimation=!0}})},t.prototype._initOrUpdateEndLabel=function(e,t,n){var r=e.getModel("endLabel");if(he(e)){var i=e.getData(),o=this._polyline,a=this._endLabel;a||(a=this._endLabel=new L["a"]({z2:200}),a.ignoreClip=!0,o.setTextContent(this._endLabel),o.disableLabelAnimation=!0);var s=ce(i.getLayout("points"));s>=0&&(Object(g["e"])(o,Object(g["c"])(e,"endLabel"),{inheritColor:n,labelFetcher:e,labelDataIndex:s,defaultText:function(e,t,n){return null!=n?Object(p["a"])(i,n):Object(p["b"])(i,e)},enableTextSetter:!0},ge(r,t)),o.textConfig.position=null)}else this._endLabel&&(this._polyline.removeTextContent(),this._endLabel=null)},t.prototype._endLabelOnDuring=function(e,t,n,r,i,o,a){var s=this._endLabel,l=this._polyline;if(s){e<1&&null==r.originalX&&(r.originalX=s.x,r.originalY=s.y);var u=n.getLayout("points"),c=n.hostModel,f=c.get("connectNulls"),d=o.get("precision"),h=o.get("distance")||0,p=a.getBaseAxis(),m=p.isHorizontal(),v=p.inverse,y=t.shape,b=v?m?y.x:y.y+y.height:m?y.x+y.width:y.y,_=(m?h:0)*(v?-1:1),x=(m?0:-h)*(v?-1:1),w=m?"x":"y",k=de(u,b,w),O=k.range,S=O[1]-O[0],M=void 0;if(S>=1){if(S>1&&!f){var C=fe(u,O[0]);s.attr({x:C[0]+_,y:C[1]+x}),i&&(M=c.getRawValue(O[0]))}else{C=l.getPointOn(b,w);C&&s.attr({x:C[0]+_,y:C[1]+x});var T=c.getRawValue(O[0]),j=c.getRawValue(O[1]);i&&(M=N["i"](n,d,T,j,k.t))}r.lastFrameIndex=O[0]}else{var I=1===e||r.lastFrameIndex>0?O[0]:0;C=fe(u,I);i&&(M=c.getRawValue(I)),s.attr({x:C[0]+_,y:C[1]+x})}i&&Object(g["d"])(s).setLabelText(M)}},t.prototype._doUpdateAnimation=function(e,t,n,r,i,o){var a=this._polyline,s=this._polygon,l=e.hostModel,u=E(this._data,e,this._stackedOnPoints,t,this._coordSys,n,this._valueOrigin,o),c=u.current,d=u.stackedOnCurrent,h=u.next,p=u.stackedOnNext;if(i&&(c=ie(u.current,n,i),d=ie(u.stackedOnCurrent,n,i),h=ie(u.next,n,i),p=ie(u.stackedOnNext,n,i)),te(c,h)>3e3||s&&te(d,p)>3e3)return a.stopAnimation(),a.setShape({points:h}),void(s&&(s.stopAnimation(),s.setShape({points:h,stackedOnPoints:p})));a.shape.__points=u.current,a.shape.points=c;var g={shape:{points:h}};u.current!==c&&(g.shape.__points=u.next),a.stopAnimation(),f["h"](a,g,l),s&&(s.setShape({points:c,stackedOnPoints:d}),s.stopAnimation(),f["h"](s,{shape:{stackedOnPoints:p}},l),a.shape.points!==s.shape.points&&(s.shape.points=a.shape.points));for(var m=[],v=u.status,y=0;y0){if(e<=i)return a;if(e>=o)return s}else{if(e>=i)return a;if(e<=o)return s}else{if(e===i)return a;if(e===o)return s}return(e-i)/l*u+a}function s(e,t){switch(e){case"center":case"middle":e="50%";break;case"left":case"top":e="0%";break;case"right":case"bottom":e="100%";break}return"string"===typeof e?o(e).match(/%$/)?parseFloat(e)/100*t:parseFloat(e):null==e?NaN:+e}function l(e,t,n){return null==t&&(t=10),t=Math.min(Math.max(0,t),i),e=(+e).toFixed(t),n?e:+e}function u(e){return e.sort(function(e,t){return e-t}),e}function c(e){if(e=+e,isNaN(e))return 0;if(e>1e-14)for(var t=1,n=0;n<15;n++,t*=10)if(Math.round(e*t)/t===e)return n;return f(e)}function f(e){var t=e.toString().toLowerCase(),n=t.indexOf("e"),r=n>0?+t.slice(n+1):0,i=n>0?n:t.length,o=t.indexOf("."),a=o<0?0:i-1-o;return Math.max(0,a-r)}function d(e,t){var n=Math.log,r=Math.LN10,i=Math.floor(n(e[1]-e[0])/r),o=Math.round(n(Math.abs(t[1]-t[0]))/r),a=Math.min(Math.max(-i+o,0),20);return isFinite(a)?a:20}function h(e,t){var n=Math.max(c(e),c(t)),r=e+t;return n>i?r:l(r,n)}function p(e){var t=2*Math.PI;return(e%t+t)%t}function g(e){return e>-r&&e=10&&t++,t}function _(e,t){var n,r=b(e),i=Math.pow(10,r),o=e/i;return n=t?o<1.5?1:o<2.5?2:o<4?3:o<7?5:10:o<1?1:o<2?2:o<3?3:o<5?5:10,e=n*i,r>=-20?+e.toFixed(r<0?-r:0):e}function x(e){var t=parseFloat(e);return t==e&&(0!==t||"string"!==typeof e||e.indexOf("x")<=0)?t:NaN}function w(e){return!isNaN(x(e))}function k(){return Math.round(9*Math.random())}function O(e,t){return 0===t?e:O(t,e%t)}function S(e,t){return null==e?t:null==t?e:e*t/O(e,t)}},OKJ2:function(e,t,n){"use strict";n.d(t,"a",function(){return s}),n.d(t,"b",function(){return l});var r=n("bYtY"),i=n("KxfA"),o=n("7aKB"),a=/\{@(.+?)\}/g,s=function(){function e(){}return e.prototype.getDataParams=function(e,t){var n=this.getData(t),r=this.getRawValue(e,t),i=n.getRawIndex(e),o=n.getName(e),a=n.getRawDataItem(e),s=n.getItemVisual(e,"style"),l=s&&s[n.getItemVisual(e,"drawType")||"fill"],u=s&&s.stroke,c=this.mainType,f="series"===c,d=n.userOutput&&n.userOutput.get();return{componentType:c,componentSubType:this.subType,componentIndex:this.componentIndex,seriesType:f?this.subType:null,seriesIndex:this.seriesIndex,seriesId:f?this.id:null,seriesName:f?this.name:null,name:o,dataIndex:i,data:a,dataType:t,value:r,color:l,borderColor:u,dimensionNames:d?d.fullDimensions:null,encode:d?d.encode:null,$vars:["seriesName","name","value"]}},e.prototype.getFormattedLabel=function(e,t,n,s,l,u){t=t||"normal";var c=this.getData(n),f=this.getDataParams(e,n);if(u&&(f.value=u.interpolatedValue),null!=s&&r["s"](f.value)&&(f.value=f.value[s]),!l){var d=c.getItemModel(e);l=d.get("normal"===t?["label","formatter"]:[t,"label","formatter"])}if("function"===typeof l)return f.status=t,f.dimensionIndex=s,l(f);if("string"===typeof l){var h=Object(o["d"])(l,f);return h.replace(a,function(t,n){var o=n.length,a=n;"["===a.charAt(0)&&"]"===a.charAt(o-1)&&(a=+a.slice(1,o-1));var s=Object(i["e"])(c,e,a);if(u&&r["s"](u.interpolatedValue)){var l=c.getDimensionIndex(a);l>=0&&(s=u.interpolatedValue[l])}return null!=s?s+"":""})}},e.prototype.getRawValue=function(e,t){return Object(i["e"])(this.getData(t),e)},e.prototype.formatTooltip=function(e,t,n){},e}();function l(e){var t,n;return r["z"](e)?e.type&&(n=e):t=e,{markupText:t,markupFragment:n}}},OQFs:function(e,t,n){"use strict";n.d(t,"a",function(){return i}),n.d(t,"b",function(){return a});var r=n("KCsZ"),i=[["lineWidth","width"],["stroke","color"],["opacity"],["shadowBlur"],["shadowOffsetX"],["shadowOffsetY"],["shadowColor"],["lineDash","type"],["lineDashOffset","dashOffset"],["lineCap","cap"],["lineJoin","join"],["miterLimit"]],o=Object(r["a"])(i),a=function(){function e(){}return e.prototype.getLineStyle=function(e){return o(this,e)},e}()},Q1l4:function(e,t){function n(e,t){var n=-1,r=e.length;t||(t=Array(r));while(++nt)return e[r];return e[n-1]}function s(e,t,n,r,i,o,s){o=o||e;var l=t(o),u=l.paletteIdx||0,c=l.paletteNameMap=l.paletteNameMap||{};if(c.hasOwnProperty(i))return c[i];var f=null!=s&&r?a(r,s):n;if(f=f||n,f&&f.length){var d=f[u];return i&&(c[i]=d),l.paletteIdx=(u+1)%f.length,d}}function l(e,t){t(e).paletteIdx=0,t(e).paletteNameMap={}}},QIyF:function(e,t,n){var r=n("Kz5y"),i=function(){return r.Date.now()};e.exports=i},QcOe:function(e,t,n){var r=n("GoyQ"),i=n("6sVZ"),o=n("7Ix3"),a=Object.prototype,s=a.hasOwnProperty;function l(e){if(!r(e))return o(e);var t=i(e),n=[];for(var a in e)("constructor"!=a||!t&&s.call(e,a))&&n.push(a);return n}e.exports=l},QjYF:function(e,t,n){"use strict";var r=n("AGgm").isSpace;e.exports=function(e,t){var n,i,o=e.pos;if(10!==e.src.charCodeAt(o))return!1;n=e.pending.length-1,i=e.posMax,t||(n>=0&&32===e.pending.charCodeAt(n)?n>=1&&32===e.pending.charCodeAt(n-1)?(e.pending=e.pending.replace(/ +$/,""),e.push("hardbreak","br",0)):(e.pending=e.pending.slice(0,-1),e.push("softbreak","br",0)):e.push("softbreak","br",0)),o++;while(o3)&&!(e.sCount[l]<0)){for(r=!1,i=0,o=u.length;i40&&(s=Math.max(1,Math.floor(a/40)));for(var l=o[0],u=e.dataToCoord(l+1)-e.dataToCoord(l),c=Math.abs(u*Math.cos(r)),f=Math.abs(u*Math.sin(r)),d=0,h=0;l<=o[1];l+=s){var p=0,g=0,m=L["e"](n({value:l}),t.font,"center","top");p=1.3*m.width,g=1.3*m.height,d=Math.max(d,p,7),h=Math.max(h,g,7)}var v=d/c,y=h/f;isNaN(v)&&(v=1/0),isNaN(y)&&(y=1/0);var b=Math.max(0,Math.floor(Math.min(v,y))),_=N(e.model),x=e.getExtent(),w=_.lastAutoInterval,k=_.lastTickCount;return null!=w&&null!=k&&Math.abs(w-b)<=1&&Math.abs(k-a)<=1&&w>b&&_.axisExtent0===x[0]&&_.axisExtent1===x[1]?b=w:(_.lastTickCount=a,_.lastAutoInterval=b,_.axisExtent0=x[0],_.axisExtent1=x[1]),b}function Z(e){var t=e.getLabelModel();return{axisRotate:e.getRotate?e.getRotate():e.isHorizontal&&!e.isHorizontal()?90:0,labelRotate:t.get("rotate")||0,font:t.getFont()}}function K(e,t,n){var r=Object(O["g"])(e),i=e.scale,o=i.getExtent(),a=e.getLabelModel(),s=[],l=Math.max((t||0)+1,1),u=o[0],c=i.count();0!==u&&l>1&&c/l>2&&(u=Math.round(Math.ceil(u/l)*l));var f=Object(O["i"])(e),d=a.get("showMinLabel")||f,h=a.get("showMaxLabel")||f;d&&u!==o[0]&&g(o[0]);for(var p=u;p<=o[1];p+=l)g(p);function g(e){var t={value:e};s.push(n?e:{formattedLabel:r(t),rawLabel:i.getLabel(t),tickValue:e})}return h&&p-l!==o[1]&&g(o[1]),s}function X(e,t,n){var r=e.scale,i=Object(O["g"])(e),o=[];return u["k"](r.getTicks(),function(e){var a=r.getLabel(e),s=e.value;t(e.value,a)&&o.push(n?s:{formattedLabel:i(e),rawLabel:a,tickValue:s})}),o}var Q=[0,1],$=function(){function e(e,t,n){this.onBand=!1,this.inverse=!1,this.dim=e,this.scale=t,this._extent=n||[0,0]}return e.prototype.contain=function(e){var t=this._extent,n=Math.min(t[0],t[1]),r=Math.max(t[0],t[1]);return e>=n&&e<=r},e.prototype.containData=function(e){return this.scale.contain(e)},e.prototype.getExtent=function(){return this._extent.slice()},e.prototype.getPixelPrecision=function(e){return Object(P["d"])(e||this.scale.getExtent(),this._extent)},e.prototype.setExtent=function(e,t){var n=this._extent;n[0]=e,n[1]=t},e.prototype.dataToCoord=function(e,t){var n=this._extent,r=this.scale;return e=r.normalize(e),this.onBand&&"ordinal"===r.type&&(n=n.slice(),J(n,r.count())),Object(P["i"])(e,Q,n,t)},e.prototype.coordToData=function(e,t){var n=this._extent,r=this.scale;this.onBand&&"ordinal"===r.type&&(n=n.slice(),J(n,r.count()));var i=Object(P["i"])(e,n,Q,t);return this.scale.scale(i)},e.prototype.pointToData=function(e,t){},e.prototype.getTicksCoords=function(e){e=e||{};var t=e.tickModel||this.getTickModel(),n=z(this,t),r=n.ticks,i=Object(u["F"])(r,function(e){return{coord:this.dataToCoord("ordinal"===this.scale.type?this.scale.getRawOrdinalNumber(e):e),tickValue:e}},this),o=t.get("alignWithLabel");return ee(this,i,o,e.clamp),i},e.prototype.getMinorTicksCoords=function(){if("ordinal"===this.scale.type)return[];var e=this.model.getModel("minorTick"),t=e.get("splitNumber");t>0&&t<100||(t=5);var n=this.scale.getMinorTicks(t),r=Object(u["F"])(n,function(e){return Object(u["F"])(e,function(e){return{coord:this.dataToCoord(e),tickValue:e}},this)},this);return r},e.prototype.getViewLabels=function(){return R(this).labels},e.prototype.getLabelModel=function(){return this.model.getModel("axisLabel")},e.prototype.getTickModel=function(){return this.model.getModel("axisTick")},e.prototype.getBandWidth=function(){var e=this._extent,t=this.scale.getExtent(),n=t[1]-t[0]+(this.onBand?1:0);0===n&&(n=1);var r=Math.abs(e[1]-e[0]);return Math.abs(r)/n},e.prototype.calculateCategoryInterval=function(){return q(this)},e}();function J(e,t){var n=e[1]-e[0],r=t,i=n/r/2;e[0]+=i,e[1]-=i}function ee(e,t,n,r){var i=t.length;if(e.onBand&&!n&&i){var o,a,s=e.getExtent();if(1===i)t[0].coord=s[0],o=t[1]={coord:s[0]};else{var l=t[i-1].tickValue-t[0].tickValue,c=(t[i-1].coord-t[0].coord)/l;Object(u["k"])(t,function(e){e.coord-=c/2});var f=e.scale.getExtent();a=1+f[1]-t[i-1].tickValue,o={coord:t[i-1].coord+c*a},t.push(o)}var d=s[0]>s[1];h(t[0].coord,s[0])&&(r?t[0].coord=s[0]:t.shift()),r&&h(s[0],t[0].coord)&&t.unshift({coord:s[0]}),h(s[1],o.coord)&&(r?o.coord=s[1]:t.pop()),r&&h(o.coord,s[1])&&t.push({coord:s[1]})}function h(e,t){return e=Object(P["p"])(e),t=Object(P["p"])(t),d?e>t:et[1]&&t.reverse(),t},t.prototype.pointToData=function(e,t){return this.coordToData(this.toLocalCoord(e["x"===this.dim?0:1]),t)},t.prototype.setCategorySortInfo=function(e){if("category"!==this.type)return!1;this.model.option.categorySortInfo=e,this.scale.setSortInfo(e)},t}(te),re=ne,ie=n("AVZG"),oe=function(){function e(e,t,n){this.type="grid",this._coordsMap={},this._coordsList=[],this._axesMap={},this._axesList=[],this.axisPointerEnabled=!0,this.dimensions=I,this._initCartesian(e,t,n),this.model=e}return e.prototype.getRect=function(){return this._rect},e.prototype.update=function(e,t){var n=this._axesMap;this._updateScale(e,this.model),Object(u["k"])(n.x,function(e){Object(O["h"])(e.scale,e.model)}),Object(u["k"])(n.y,function(e){Object(O["h"])(e.scale,e.model)});var r={};Object(u["k"])(n.x,function(e){se(n,"y",e,r)}),Object(u["k"])(n.y,function(e){se(n,"x",e,r)}),this.resize(this.model,t)},e.prototype.resize=function(e,t,n){var r=e.getBoxLayoutParams(),i=!n&&e.get("containLabel"),o=Object(b["d"])(r,{width:t.getWidth(),height:t.getHeight()});this._rect=o;var a=this._axesList;function s(){Object(u["k"])(a,function(e){var t=e.isHorizontal(),n=t?[0,o.width]:[0,o.height],r=e.inverse?1:0;e.setExtent(n[r],n[1-r]),ue(e,t?o.x:o.y)})}s(),i&&(Object(u["k"])(a,function(e){if(!e.model.get(["axisLabel","inside"])){var t=Object(O["b"])(e);if(t){var n=e.isHorizontal()?"height":"width",r=e.model.get(["axisLabel","margin"]);o[n]-=t[n]+r,"top"===e.position?o.y+=t.height+r:"left"===e.position&&(o.x+=t.width+r)}}}),s()),Object(u["k"])(this._coordsList,function(e){e.calcAffineTransform()})},e.prototype.getAxis=function(e,t){var n=this._axesMap[e];if(null!=n)return n[t||0]},e.prototype.getAxes=function(){return this._axesList.slice()},e.prototype.getCartesian=function(e,t){if(null!=e&&null!=t){var n="x"+e+"y"+t;return this._coordsMap[n]}Object(u["z"])(e)&&(t=e.yAxisIndex,e=e.xAxisIndex);for(var r=0,i=this._coordsList;r=a)return-1;if(n=e.src.charCodeAt(o++),n<48||n>57)return-1;for(;;){if(o>=a)return-1;if(n=e.src.charCodeAt(o++),!(n>=48&&n<=57)){if(41===n||46===n)break;return-1}if(o-i>=10)return-1}return o=4)return!1;if(e.listIndent>=0&&e.sCount[t]-e.listIndent>=4&&e.sCount[t]=e.blkIndent&&(L=!0),(j=o(e,t))>=0){if(h=!0,D=e.bMarks[t]+e.tShift[t],b=Number(e.src.slice(D,j-1)),L&&1!==b)return!1}else{if(!((j=i(e,t))>=0))return!1;h=!1}if(L&&e.skipSpaces(j)>=e.eMarks[t])return!1;if(y=e.src.charCodeAt(j-1),r)return!0;v=e.tokens.length,h?(P=e.push("ordered_list_open","ol",1),1!==b&&(P.attrs=[["start",b]])):P=e.push("bullet_list_open","ul",1),P.map=m=[t,0],P.markup=String.fromCharCode(y),x=t,I=!1,E=e.md.block.ruler.getRules("list"),O=e.parentType,e.parentType="list";while(x=_?1:w-d,f>4&&(f=1),c=d+f,P=e.push("list_item_open","li",1),P.markup=String.fromCharCode(y),P.map=p=[t,0],h&&(P.info=e.src.slice(D,j-1)),C=e.tight,M=e.tShift[t],S=e.sCount[t],k=e.listIndent,e.listIndent=e.blkIndent,e.blkIndent=c,e.tight=!0,e.tShift[t]=l-e.bMarks[t],e.sCount[t]=w,l>=_&&e.isEmpty(t+1)?e.line=Math.min(e.line+2,n):e.md.block.tokenize(e,t,n,!0),e.tight&&!I||(N=!1),I=e.line-t>1&&e.isEmpty(e.line-1),e.blkIndent=e.listIndent,e.listIndent=k,e.tShift[t]=M,e.sCount[t]=S,e.tight=C,P=e.push("list_item_close","li",-1),P.markup=String.fromCharCode(y),x=t=e.line,p[1]=x,l=e.bMarks[t],x>=n)break;if(e.sCount[x]=4)break;for(A=!1,u=0,g=E.length;u9e10&&(this._versionSignBase=0)},e.prototype._getVersionSign=function(){return this._sourceHost.uid+"_"+this._versionSignBase},e.prototype.prepareSource=function(){this._isDirty()&&(this._createSource(),this._dirty=!1)},e.prototype._createSource=function(){this._setLocalSource([],[]);var e,t,n=this._sourceHost,r=this._getUpstreamSourceManagers(),o=!!r.length;if(_(n)){var a=n,s=void 0,l=void 0,u=void 0;if(o){var c=r[0];c.prepareSource(),u=c.getSource(),s=u.data,l=u.sourceFormat,t=[c._getVersionSign()]}else s=a.get("data",!0),l=Object(i["C"])(s)?p["g"]:p["f"],t=[];var f=this._getSourceMetaRawOption()||{},d=u&&u.metaRawOption||{},g=Object(i["M"])(f.seriesLayoutBy,d.seriesLayoutBy)||null,m=Object(i["M"])(f.sourceHeader,d.sourceHeader)||null,v=Object(i["M"])(f.dimensions,d.dimensions),y=g!==d.seriesLayoutBy||!!m!==!!d.sourceHeader||v;e=y?[Object(h["b"])(s,{seriesLayoutBy:g,sourceHeader:m,dimensions:v},l)]:[]}else{var b=n;if(o){var x=this._applyTransform(r);e=x.sourceList,t=x.upstreamSignList}else{var w=b.get("source",!0);e=[Object(h["b"])(w,this._getSourceMetaRawOption(),null)],t=[]}}this._setLocalSource(e,t)},e.prototype._applyTransform=function(e){var t,n=this._sourceHost,r=n.get("transform",!0),o=n.get("fromTransformResult",!0);if(null!=o){var a="";1!==e.length&&x(a)}var s=[],l=[];return Object(i["k"])(e,function(e){e.prepareSource();var t=e.getSource(o||0),n="";null==o||t||x(n),s.push(t),l.push(e._getVersionSign())}),r?t=Object(m["a"])(r,s,{datasetIndex:n.componentIndex}):null!=o&&(t=[Object(h["a"])(s[0])]),{sourceList:t,upstreamSignList:l}},e.prototype._isDirty=function(){if(this._dirty)return!0;for(var e=this._getUpstreamSourceManagers(),t=0;t1||p&&!d){var m=O(h,s,l,f,g);t=m.inlineValues,n=m.inlineValueTypes,r=m.blocks,o=m.inlineValues[0]}else if(d){var v=c.getDimensionInfo(f[0]);o=t=Object(y["e"])(c,l,f[0]),n=v.type}else o=t=p?h[0]:h;var b=Object(a["l"])(s),_=b&&s.name||"",x=c.getName(l),k=u?_:x;return Object(w["c"])("section",{header:_,noHeader:u||!b,sortParam:o,blocks:[Object(w["c"])("nameValue",{markerType:"item",markerColor:g,name:k,noName:!Object(i["Q"])(k),value:t,valueType:n})].concat(r||[])})}function O(e,t,n,r,o){var a=t.getData(),s=Object(i["K"])(e,function(e,t,n){var r=a.getDimensionInfo(n);return e||r&&!1!==r.tooltip&&null!=r.displayName},!1),l=[],u=[],c=[];function f(e,t){var n=a.getDimensionInfo(t);n&&!1!==n.otherDims.tooltip&&(s?c.push(Object(w["c"])("nameValue",{markerType:"subItem",markerColor:o,name:n.displayName,value:e,valueType:n.type})):(l.push(e),u.push(n.type)))}return r.length?Object(i["k"])(r,function(e){f(Object(y["e"])(a,n,e),e)}):Object(i["k"])(e,f),{inlineValues:l,inlineValueTypes:u,blocks:c}}n.d(t,"a",function(){return C});var S=a["m"]();function M(e,t){return e.getName(t)||e.getId(t)}var C="__universalTransitionEnabled",T=function(e){function t(){var t=null!==e&&e.apply(this,arguments)||this;return t._selectedDataIndicesMap={},t}return Object(r["a"])(t,e),t.prototype.init=function(e,t,n){this.seriesIndex=this.componentIndex,this.dataTask=Object(f["a"])({count:D,reset:A}),this.dataTask.context={model:this},this.mergeDefaultAndTheme(e,n);var r=S(this).sourceManager=new b(this);r.prepareSource();var i=this.getInitialData(e,n);P(i,this),this.dataTask.context.data=i,S(this).dataBeforeProcessed=i,j(this),this._initSelectedMapFromData(i)},t.prototype.mergeDefaultAndTheme=function(e,t){var n=Object(c["b"])(this),r=n?Object(c["c"])(e):{},o=this.subType;s["a"].hasClass(o)&&(o+="Series"),i["G"](e,t.getTheme().get(this.subType)),i["G"](e,this.getDefaultOption()),a["e"](e,"label",["show"]),this.fillDataTextStyle(e.data),n&&Object(c["e"])(e,r,n)},t.prototype.mergeOption=function(e,t){e=i["G"](this.option,e,!0),this.fillDataTextStyle(e.data);var n=Object(c["b"])(this);n&&Object(c["e"])(this.option,e,n);var r=S(this).sourceManager;r.dirty(),r.prepareSource();var o=this.getInitialData(e,t);P(o,this),this.dataTask.dirty(),this.dataTask.context.data=o,S(this).dataBeforeProcessed=o,j(this),this._initSelectedMapFromData(o)},t.prototype.fillDataTextStyle=function(e){if(e&&!i["C"](e))for(var t=["show"],n=0;nthis.getShallow("animationThreshold")&&(e=!1),!!e},t.prototype.restoreData=function(){this.dataTask.dirty()},t.prototype.getColorFromPalette=function(e,t,n){var r=this.ecModel,i=l["a"].prototype.getColorFromPalette.call(this,e,t,n);return i||(i=r.getColorFromPalette(e,t,n)),i},t.prototype.coordDimToDataDim=function(e){return this.getRawData().mapDimensionsAll(e)},t.prototype.getProgressive=function(){return this.get("progressive")},t.prototype.getProgressiveThreshold=function(){return this.get("progressiveThreshold")},t.prototype.select=function(e,t){this._innerSelect(this.getData(t),e)},t.prototype.unselect=function(e,t){var n=this.option.selectedMap;if(n)for(var r=this.getData(t),i=0;i=0&&n.push(o)}return n},t.prototype.isSelected=function(e,t){var n=this.option.selectedMap;if(!n)return!1;var r=this.getData(t),i=M(r,e);return n[i]||!1},t.prototype.isUniversalTransitionEnabled=function(){if(this[C])return!0;var e=this.option.universalTransition;return!!e&&(!0===e||e&&e.enabled)},t.prototype._innerSelect=function(e,t){var n,r,i=this.option.selectedMode,o=t.length;if(i&&o)if("multiple"===i)for(var a=this.option.selectedMap||(this.option.selectedMap={}),s=0;s0&&this._innerSelect(e,t)}},t.registerClass=function(e){return s["a"].registerClass(e)},t.protoInitialize=function(){var e=t.prototype;e.type="series.__base__",e.seriesIndex=0,e.ignoreStyleOnData=!1,e.hasSymbolVisual=!1,e.defaultSymbol="circle",e.visualStyleAccessPath="itemStyle",e.visualDrawType="fill"}(),t}(s["a"]);function j(e){var t=e.name;a["l"](e)||(e.name=I(e)||t)}function I(e){var t=e.getRawData(),n=t.mapDimensionsAll("seriesName"),r=[];return i["k"](n,function(e){var n=t.getDimensionInfo(e);n.displayName&&r.push(n.displayName)}),r.join(" ")}function D(e){return e.model.getRawData().count()}function A(e){var t=e.model;return t.setData(t.getRawData().cloneShallow()),E}function E(e,t){t.outputData&&e.end>t.outputData.count()&&t.model.getRawData().cloneShallow(t.outputData)}function P(e,t){i["k"](i["e"](e.CHANGABLE_METHODS,e.DOWNSAMPLE_METHODS),function(n){e.wrapMethod(n,i["i"](L,t))})}function L(e,t){var n=N(e);return n&&n.setOutputEnd((t||this).count()),t}function N(e){var t=(e.ecModel||{}).scheduler,n=t&&t.getPipeline(e.uid);if(n){var r=n.currentTask;if(r){var i=r.agentStubMap;i&&(r=i.get(e.uid))}return r}}i["H"](T,u["a"]),i["H"](T,l["a"]),Object(d["e"])(T,s["a"]);t["b"]=T},TCYN:function(e,t,n){"use strict";var r=/\r\n?|\n/g,i=/\0/g;e.exports=function(e){var t;t=e.src.replace(r,"\n"),t=t.replace(i,"\ufffd"),e.src=t}},TLR5:function(e,t,n){"use strict";var r=n("SINd"),i=[["text",n("usqY")],["newline",n("QjYF")],["escape",n("bgCn")],["backticks",n("SpRm")],["strikethrough",n("kiyR").tokenize],["emphasis",n("yKnv").tokenize],["link",n("zQ/W")],["image",n("ky0j")],["autolink",n("KOyK")],["html_inline",n("wtjL")],["entity",n("W1Rp")]],o=[["balance_pairs",n("g40J")],["strikethrough",n("kiyR").postProcess],["emphasis",n("yKnv").postProcess],["text_collapse",n("IIUr")]];function a(){var e;for(this.ruler=new r,e=0;e=o)break}else e.pending+=e.src[e.pos++]}e.pending&&e.pushPending()},a.prototype.parse=function(e,t,n,r){var i,o,a,s=new this.State(e,t,n,r);for(this.tokenize(s),o=this.ruler2.getRules(""),a=o.length,i=0;ie&&(e=t),e},t.prototype.brushSelector=function(e,t,n){return n.rect(t.getItemLayout(e))},t.type="series.bar",t.dependencies=["grid","polar"],t.defaultOption=Object(f["d"])(c.defaultOption,{clip:!0,roundCap:!1,showBackground:!1,backgroundStyle:{color:"rgba(180, 180, 180, 0.2)",borderColor:null,borderWidth:0,borderType:"solid",borderRadius:0,shadowBlur:0,shadowColor:null,shadowOffsetX:0,shadowOffsetY:0,opacity:1},select:{itemStyle:{borderColor:"#212121"}},realtimeSort:!1}),t}(c),h=d,p=n("y+Vt"),g=n("LcXL"),m=n("3qvL"),v=n("x6Kt"),y=n("SqI9"),b=n("hhxK"),_=n("fWwa"),x=n("eDfh"),w=n("iLNv"),k=n("sK/D"),O=function(){function e(){this.cx=0,this.cy=0,this.r0=0,this.r=0,this.startAngle=0,this.endAngle=2*Math.PI,this.clockwise=!0}return e}(),S=function(e){function t(t){var n=e.call(this,t)||this;return n.type="sausage",n}return Object(a["a"])(t,e),t.prototype.getDefaultShape=function(){return new O},t.prototype.buildPath=function(e,t){var n=t.cx,r=t.cy,i=Math.max(t.r0||0,0),o=Math.max(t.r,0),a=.5*(o-i),s=i+a,l=t.startAngle,u=t.endAngle,c=t.clockwise,f=Math.cos(l),d=Math.sin(l),h=Math.cos(u),p=Math.sin(u),g=c?u-l<2*Math.PI:l-u<2*Math.PI;g&&(e.moveTo(f*i+n,d*i+r),e.arc(f*s+n,d*s+r,a,-Math.PI+l,l,!c)),e.arc(n,r,o,l,u,!c),e.moveTo(h*o+n,p*o+r),e.arc(h*s+n,p*s+r,a,u-2*Math.PI,u-Math.PI,!c),0!==i&&(e.arc(n,r,i,u,l,c),e.moveTo(f*i+n,p*i+r)),e.closePath()},t}(p["b"]),M=S,C=n("6Ic6"),T=n("VCb+"),j=n("x3X8"),I=n("6GrX");function D(e,t){t=t||{};var n=t.isRoundCap;return function(t,r,i){var o=r.position;if(!o||o instanceof Array)return Object(I["d"])(t,r,i);var a=e(o),s=null!=r.distance?r.distance:5,l=this.shape,u=l.cx,c=l.cy,f=l.r,d=l.r0,h=(f+d)/2,p=l.startAngle,g=l.endAngle,m=(p+g)/2,v=n?Math.abs(f-d)/2:0,y=Math.cos,b=Math.sin,_=u+f*y(p),x=c+f*b(p),w="left",k="top";switch(a){case"startArc":_=u+(d-s)*y(m),x=c+(d-s)*b(m),w="center",k="top";break;case"insideStartArc":_=u+(d+s)*y(m),x=c+(d+s)*b(m),w="center",k="bottom";break;case"startAngle":_=u+h*y(p)+E(p,s+v,!1),x=c+h*b(p)+P(p,s+v,!1),w="right",k="middle";break;case"insideStartAngle":_=u+h*y(p)+E(p,-s+v,!1),x=c+h*b(p)+P(p,-s+v,!1),w="left",k="middle";break;case"middle":_=u+h*y(m),x=c+h*b(m),w="center",k="middle";break;case"endArc":_=u+(f+s)*y(m),x=c+(f+s)*b(m),w="center",k="bottom";break;case"insideEndArc":_=u+(f-s)*y(m),x=c+(f-s)*b(m),w="center",k="top";break;case"endAngle":_=u+h*y(g)+E(g,s+v,!0),x=c+h*b(g)+P(g,s+v,!0),w="left",k="middle";break;case"insideEndAngle":_=u+h*y(g)+E(g,-s+v,!0),x=c+h*b(g)+P(g,-s+v,!0),w="right",k="middle";break;default:return Object(I["d"])(t,r,i)}return t=t||{},t.x=_,t.y=x,t.align=w,t.verticalAlign=k,t}}function A(e,t,n,i){if("number"!==typeof i)if(Object(r["s"])(t))e.setTextConfig({rotation:0});else{var o,a=e.shape,s=a.clockwise?a.startAngle:a.endAngle,l=a.clockwise?a.endAngle:a.startAngle,u=(s+l)/2,c=n(t);switch(c){case"startArc":case"insideStartArc":case"middle":case"insideEndArc":case"endArc":o=u;break;case"startAngle":case"insideStartAngle":o=s;break;case"endAngle":case"insideEndAngle":o=l;break;default:return void e.setTextConfig({rotation:0})}var f=1.5*Math.PI-o;"middle"===c&&f>Math.PI/2&&f<1.5*Math.PI&&(f-=Math.PI),e.setTextConfig({rotation:f})}else e.setTextConfig({rotation:i})}function E(e,t,n){return t*Math.sin(e)*(n?-1:1)}function P(e,t,n){return t*Math.cos(e)*(n?1:-1)}var L=[0,0],N=Math.max,R=Math.min;function z(e,t){var n=e.getArea&&e.getArea();if(Object(T["a"])(e,"cartesian2d")){var r=e.getBaseAxis();if("category"!==r.type||!r.onBand){var i=t.getLayout("bandWidth");r.isHorizontal()?(n.x-=i,n.width+=2*i):(n.y-=i,n.height+=2*i)}}return n}var F=function(e){function t(){var n=e.call(this)||this;return n.type=t.type,n._isFirstFrame=!0,n}return Object(a["a"])(t,e),t.prototype.render=function(e,t,n,r){this._model=e,this._removeOnRenderedListener(n),this._updateDrawMode(e);var i=e.get("coordinateSystem");("cartesian2d"===i||"polar"===i)&&(this._isLargeDraw?this._renderLarge(e,t,n):this._renderNormal(e,t,n,r))},t.prototype.incrementalPrepareRender=function(e){this._clear(),this._updateDrawMode(e),this._updateLargeClip(e)},t.prototype.incrementalRender=function(e,t){this._incrementalRenderLarge(e,t)},t.prototype._updateDrawMode=function(e){var t=e.pipelineContext.large;null!=this._isLargeDraw&&t===this._isLargeDraw||(this._isLargeDraw=t,this._clear())},t.prototype._renderNormal=function(e,t,n,r){var i,o=this.group,a=e.getData(),s=this._data,l=e.coordinateSystem,u=l.getBaseAxis();"cartesian2d"===l.type?i=u.isHorizontal():"polar"===l.type&&(i="angle"===u.dim);var c=e.isAnimationEnabled()?e:null,f=Y(e,l);f&&this._enableRealtimeSort(f,a,n);var d=e.get("clip",!0)||f,h=z(l,a);o.removeClipPath();var p=e.get("roundCap",!0),v=e.get("showBackground",!0),y=e.getModel("backgroundStyle"),b=y.get("borderRadius")||0,_=[],w=this._backgroundEls,k=r&&r.isInitSort,O=r&&"changeAxisOrder"===r.type;function S(e){var t=Z[l.type](a,e),n=se(l,i,t);return n.useStyle(y.getItemStyle()),"cartesian2d"===l.type&&n.setShape("r",b),_[e]=n,n}a.diff(s).add(function(t){var n=a.getItemModel(t),r=Z[l.type](a,t,n);if(v&&S(t),a.hasValue(t)&&q[l.type](r)){var s=!1;d&&(s=B[l.type](h,r));var g=V[l.type](e,a,t,r,i,c,u.model,!1,p);f&&(g.forceLabelAnimation=!0),Q(g,a,t,n,r,e,i,"polar"===l.type),k?g.attr({shape:r}):f?G(f,c,g,r,t,i,!1,!1):Object(m["c"])(g,{shape:r},e,t),a.setItemGraphicEl(t,g),o.add(g),g.ignore=s}}).update(function(t,n){var r=a.getItemModel(t),g=Z[l.type](a,t,r);if(v){var M=void 0;0===w.length?M=S(n):(M=w[n],M.useStyle(y.getItemStyle()),"cartesian2d"===l.type&&M.setShape("r",b),_[t]=M);var C=Z[l.type](a,t),T=ae(i,C,l);Object(m["h"])(M,{shape:T},c,t)}var j=s.getItemGraphicEl(n);if(a.hasValue(t)&&q[l.type](g)){var I=!1;if(d&&(I=B[l.type](h,g),I&&o.remove(j)),j?Object(m["g"])(j):j=V[l.type](e,a,t,g,i,c,u.model,!!j,p),f&&(j.forceLabelAnimation=!0),O){var D=j.getTextContent();if(D){var A=Object(x["d"])(D);null!=A.prevValue&&(A.prevValue=A.value)}}O||Q(j,a,t,r,g,e,i,"polar"===l.type),k?j.attr({shape:g}):f?G(f,c,j,g,t,i,!0,O):Object(m["h"])(j,{shape:g},e,t,null),a.setItemGraphicEl(t,j),j.ignore=I,o.add(j)}else o.remove(j)}).remove(function(t){var n=s.getItemGraphicEl(t);n&&Object(m["f"])(n,e,t)}).execute();var M=this._backgroundGroup||(this._backgroundGroup=new g["a"]);M.removeAll();for(var C=0;C<_.length;++C)M.add(_[C]);o.add(M),this._backgroundEls=_,this._data=a},t.prototype._renderLarge=function(e,t,n){this._clear(),te(e,this.group),this._updateLargeClip(e)},t.prototype._incrementalRenderLarge=function(e,t){this._removeBackground(),te(t,this.group,!0)},t.prototype._updateLargeClip=function(e){var t=e.get("clip",!0)?Object(k["a"])(e.coordinateSystem,!1,e):null;t?this.group.setClipPath(t):this.group.removeClipPath()},t.prototype._enableRealtimeSort=function(e,t,n){var r=this;if(t.count()){var i=e.baseAxis;if(this._isFirstFrame)this._dispatchInitSort(t,e,n),this._isFirstFrame=!1;else{var o=function(e){var n=t.getItemGraphicEl(e);if(n){var r=n.shape;return(i.isHorizontal()?Math.abs(r.height):Math.abs(r.width))||0}return 0};this._onRendered=function(){r._updateSortWithinSameData(t,o,i,n)},n.getZr().on("rendered",this._onRendered)}}},t.prototype._dataSort=function(e,t,n){var i=[];return e.each(e.mapDimension(t.dim),function(e,t){var r=n(t);r=null==r?NaN:r,i.push({dataIndex:t,mappedValue:r,ordinalNumber:e})}),i.sort(function(e,t){return t.mappedValue-e.mappedValue}),{ordinalNumbers:Object(r["F"])(i,function(e){return e.ordinalNumber})}},t.prototype._isOrderChangedWithinSameData=function(e,t,n){for(var r=n.scale,i=e.mapDimension(n.dim),o=Number.MAX_VALUE,a=0,s=r.getOrdinalMeta().categories.length;ao)return!0;o=u}return!1},t.prototype._isOrderDifferentInView=function(e,t){for(var n=t.scale,r=n.getExtent(),i=Math.max(0,r[0]),o=Math.min(r[1],n.getOrdinalMeta().categories.length-1);i<=o;++i)if(e.ordinalNumbers[i]!==n.getRawOrdinalNumber(i))return!0},t.prototype._updateSortWithinSameData=function(e,t,n,r){if(this._isOrderChangedWithinSameData(e,t,n)){var i=this._dataSort(e,n,t);this._isOrderDifferentInView(i,n)&&(this._removeOnRenderedListener(r),r.dispatchAction({type:"changeAxisOrder",componentType:n.dim+"Axis",axisId:n.index,sortInfo:i}))}},t.prototype._dispatchInitSort=function(e,t,n){var r=t.baseAxis,i=this._dataSort(e,r,function(n){return e.get(e.mapDimension(t.otherAxis.dim),n)});n.dispatchAction({type:"changeAxisOrder",componentType:r.dim+"Axis",isInitSort:!0,axisId:r.index,sortInfo:i})},t.prototype.remove=function(e,t){this._clear(this._model),this._removeOnRenderedListener(t)},t.prototype.dispose=function(e,t){this._removeOnRenderedListener(t)},t.prototype._removeOnRenderedListener=function(e){this._onRendered&&(e.getZr().off("rendered",this._onRendered),this._onRendered=null)},t.prototype._clear=function(e){var t=this.group,n=this._data;e&&e.isAnimationEnabled()&&n&&!this._isLargeDraw?(this._removeBackground(),this._backgroundEls=[],n.eachItemGraphicEl(function(t){Object(m["f"])(t,e,Object(b["a"])(t).dataIndex)})):t.removeAll(),this._data=null,this._isFirstFrame=!0},t.prototype._removeBackground=function(){this.group.remove(this._backgroundGroup),this._backgroundGroup=null},t.type="bar",t}(C["a"]),B={cartesian2d:function(e,t){var n=t.width<0?-1:1,r=t.height<0?-1:1;n<0&&(t.x+=t.width,t.width=-t.width),r<0&&(t.y+=t.height,t.height=-t.height);var i=e.x+e.width,o=e.y+e.height,a=N(t.x,e.x),s=R(t.x+t.width,i),l=N(t.y,e.y),u=R(t.y+t.height,o),c=si?s:a,t.y=f&&l>o?u:l,t.width=c?0:s-a,t.height=f?0:u-l,n<0&&(t.x+=t.width,t.width=-t.width),r<0&&(t.y+=t.height,t.height=-t.height),c||f},polar:function(e,t){var n=t.r0<=t.r?1:-1;if(n<0){var r=t.r;t.r=t.r0,t.r0=r}var i=R(t.r,e.r),o=N(t.r0,e.r0);t.r=i,t.r0=o;var a=i-o<0;if(n<0){r=t.r;t.r=t.r0,t.r0=r}return a}},V={cartesian2d:function(e,t,n,i,o,a,s,l,u){var c=new v["a"]({shape:Object(r["m"])({},i),z2:1});if(c.__dataIndex=n,c.name="item",a){var f=c.shape,d=o?"height":"width";f[d]=0}return c},polar:function(e,t,n,r,i,o,a,s,l){var u=!i&&l?M:y["a"],c=new u({shape:r,z2:1});c.name="item";var f=X(i);if(c.calculateTextPosition=D(f,{isRoundCap:u===M}),o){var d=c.shape,h=i?"r":"endAngle",p={};d[h]=i?0:r.startAngle,p[h]=r[h],(s?m["h"]:m["c"])(c,{shape:p},o)}return c}};function Y(e,t){var n=e.get("realtimeSort",!0),r=t.getBaseAxis();if(n&&"category"===r.type&&"cartesian2d"===t.type)return{baseAxis:r,otherAxis:t.getOtherAxis(r)}}function G(e,t,n,r,i,o,a,s){var l,u;o?(u={x:r.x,width:r.width},l={y:r.y,height:r.height}):(u={y:r.y,height:r.height},l={x:r.x,width:r.width}),s||(a?m["h"]:m["c"])(n,{shape:l},t,i,null);var c=t?e.baseAxis.model:null;(a?m["h"]:m["c"])(n,{shape:u},c,i)}function U(e,t){for(var n=0;n0?1:-1,a=r.height>0?1:-1;return{x:r.x+o*i/2,y:r.y+a*i/2,width:r.width-o*i,height:r.height-a*i}},polar:function(e,t,n){var r=e.getItemLayout(t);return{cx:r.cx,cy:r.cy,r0:r.r0,r:r.r,startAngle:r.startAngle,endAngle:r.endAngle,clockwise:r.clockwise}}};function K(e){return null!=e.startAngle&&null!=e.endAngle&&e.startAngle===e.endAngle}function X(e){return function(e){var t=e?"Arc":"Angle";return function(e){switch(e){case"start":case"insideStart":case"end":case"insideEnd":return e+t;default:return e}}}(e)}function Q(e,t,n,i,o,a,s,l){var u=t.getItemVisual(n,"style");l||e.setShape("r",i.get(["itemStyle","borderRadius"])||0),e.useStyle(u);var c=i.getShallow("cursor");c&&e.attr("cursor",c);var f=l?s?o.r>=o.r0?"endArc":"startArc":o.endAngle>=o.startAngle?"endAngle":"startAngle":s?o.height>=0?"bottom":"top":o.width>=0?"right":"left",d=Object(x["c"])(i);Object(x["e"])(e,d,{labelFetcher:a,labelDataIndex:n,defaultText:Object(j["b"])(a.getData(),n),inheritColor:u.fill,defaultOpacity:u.opacity,defaultOutsidePosition:f});var h=e.getTextContent();if(l&&h){var p=i.get(["label","position"]);e.textConfig.inside="middle"===p||null,A(e,"outside"===p?f:p,X(s),i.get(["label","rotate"]))}Object(x["f"])(h,d,a.getRawValue(n),function(e){return Object(j["a"])(t,e)});var g=i.getModel(["emphasis"]);Object(_["m"])(e,g.get("focus"),g.get("blurScope")),Object(_["D"])(e,i),K(o)&&(e.style.fill="none",e.style.stroke="none",Object(r["k"])(e.states,function(e){e.style&&(e.style.fill=e.style.stroke="none")}))}function $(e,t){var n=e.get(["itemStyle","borderColor"]);if(!n||"none"===n)return 0;var r=e.get(["itemStyle","borderWidth"])||0,i=isNaN(t.width)?Number.MAX_VALUE:Math.abs(t.width),o=isNaN(t.height)?Number.MAX_VALUE:Math.abs(t.height);return Math.min(r,i,o)}var J=function(){function e(){}return e}(),ee=function(e){function t(t){var n=e.call(this,t)||this;return n.type="largeBar",n}return Object(a["a"])(t,e),t.prototype.getDefaultShape=function(){return new J},t.prototype.buildPath=function(e,t){for(var n=t.points,r=this.__startPoint,i=this.__baseDimIdx,o=0;o=0?n:null},30,!1);function re(e,t,n){var r=e.__baseDimIdx,i=1-r,o=e.shape.points,a=e.__largeDataIndices,s=Math.abs(e.__barWidth/2),l=e.__startPoint[i];L[0]=t,L[1]=n;for(var u=L[r],c=L[1-r],f=u-s,d=u+s,h=0,p=o.length/2;h=f&&m<=d&&(l<=v?c>=l&&c<=v:c>=v&&c<=l))return a[h]}return-1}function ie(e,t,n){var i=n.getVisual("style");e.useStyle(Object(r["m"])({},i)),e.style.fill=null,e.style.stroke=i.fill,e.style.lineWidth=n.getLayout("barWidth")}function oe(e,t,n){var r=t.get("borderColor")||t.get("color"),i=t.getItemStyle();e.useStyle(i),e.style.fill=null,e.style.stroke=r,e.style.lineWidth=n.getLayout("barWidth")}function ae(e,t,n){if(Object(T["a"])(n,"cartesian2d")){var r=t,i=n.getArea();return{x:e?r.x:i.x,y:e?i.y:r.y,width:e?r.width:i.width,height:e?i.height:r.height}}i=n.getArea();var o=t;return{cx:i.cx,cy:i.cy,r0:e?i.r0:o.r0,r:e?i.r:o.r,startAngle:e?o.startAngle:0,endAngle:e?o.endAngle:2*Math.PI}}function se(e,t,n){var r="polar"===e.type?y["a"]:v["a"];return new r({shape:ae(t,n,e),silent:!0,z2:0})}var le=F;function ue(e){e.registerChartView(le),e.registerSeriesModel(h),e.registerLayout(e.PRIORITY.VISUAL.LAYOUT,r["i"](i["b"],"bar")),e.registerLayout(e.PRIORITY.VISUAL.PROGRESSIVE_LAYOUT,i["a"]),e.registerProcessor(e.PRIORITY.PROCESSOR.STATISTIC,Object(o["a"])("bar")),e.registerAction({type:"changeAxisOrder",event:"changeAxisOrder",update:"update"},function(e,t){var n=e.componentType||"series";t.eachComponent({mainType:n,query:e},function(t){e.sortInfo&&t.axis.setCategorySortInfo(e.sortInfo)})})}n.d(t,"a",function(){return ue})},TO8r:function(e,t){var n=/\s/;function r(e){var t=e.length;while(t--&&n.test(e.charAt(t)));return t}e.exports=r},"U4/e":function(e,t,n){"use strict";n.d(t,"a",function(){return l});var r=n("bYtY"),i=n("6GrX"),o=function(){function e(e,t,n){this._prepareParams(e,t,n)}return e.prototype._prepareParams=function(e,t,n){n[1]0&&l>0&&!u&&(s=0),s<0&&l<0&&!c&&(l=0));var d=this._determinedMin,h=this._determinedMax;return null!=d&&(s=d,u=!0),null!=h&&(l=h,c=!0),{min:s,max:l,minFixed:u,maxFixed:c,isBlank:f}},e.prototype.modifyDataMinMax=function(e,t){this[s[e]]=t},e.prototype.setDeterminedMinMax=function(e,t){var n=a[e];this[n]=t},e.prototype.freeze=function(){this.frozen=!0},e}(),a={min:"_determinedMin",max:"_determinedMax"},s={min:"_dataMin",max:"_dataMax"};function l(e,t,n){var r=e.rawExtentInfo;return r||(r=new o(e,t,n),e.rawExtentInfo=r,r)}function u(e,t){return null==t?null:Object(r["l"])(t)?NaN:e.parse(t)}},"UNi/":function(e,t){function n(e,t){var n=-1,r=Array(e);while(++n`\\x00-\\x20]+",o="'[^']*'",a='"[^"]*"',s="(?:"+i+"|"+o+"|"+a+")",l="(?:\\s+"+r+"(?:\\s*=\\s*"+s+")?)",u="<[A-Za-z][A-Za-z0-9\\-]*"+l+"*\\s*\\/?>",c="<\\/[A-Za-z][A-Za-z0-9\\-]*\\s*>",f="\x3c!----\x3e|\x3c!--(?:-?[^>-])(?:-?[^-])*--\x3e",d="<[?][\\s\\S]*?[?]>",h="]*>",p="",g=new RegExp("^(?:"+u+"|"+c+"|"+f+"|"+d+"|"+h+"|"+p+")"),m=new RegExp("^(?:"+u+"|"+c+")");e.exports.HTML_TAG_RE=g,e.exports.HTML_OPEN_CLOSE_TAG_RE=m},W1Rp:function(e,t,n){"use strict";var r=n("vWgF"),i=n("AGgm").has,o=n("AGgm").isValidEntityCode,a=n("AGgm").fromCodePoint,s=/^&#((?:x[a-f0-9]{1,6}|[0-9]{1,7}));/i,l=/^&([a-z][a-z0-9]{1,31});/i;e.exports=function(e,t){var n,u,c,f=e.pos,d=e.posMax;if(38!==e.src.charCodeAt(f))return!1;if(f+1|$))/i,/<\/(script|pre|style|textarea)>/i,!0],[/^/,!0],[/^<\?/,/\?>/,!0],[/^/,!0],[/^/,!0],[new RegExp("^|$))","i"),/^$/,!0],[new RegExp(i.source+"\\s*$"),/^$/,!1]];e.exports=function(e,t,n,r){var i,a,s,l,u=e.bMarks[t]+e.tShift[t],c=e.eMarks[t];if(e.sCount[t]-e.blkIndent>=4)return!1;if(!e.md.options.html)return!1;if(60!==e.src.charCodeAt(u))return!1;for(l=e.src.slice(u,c),i=0;i=11?e:e+12},meridiem:function(e,t,n){var r=100*e+t;return r<600?"\u51cc\u6668":r<900?"\u65e9\u4e0a":r<1130?"\u4e0a\u5348":r<1230?"\u4e2d\u5348":r<1800?"\u4e0b\u5348":"\u665a\u4e0a"},calendar:{sameDay:"[\u4eca\u5929]LT",nextDay:"[\u660e\u5929]LT",nextWeek:function(e){return e.week()!==this.week()?"[\u4e0b]dddLT":"[\u672c]dddLT"},lastDay:"[\u6628\u5929]LT",lastWeek:function(e){return this.week()!==e.week()?"[\u4e0a]dddLT":"[\u672c]dddLT"},sameElse:"L"},dayOfMonthOrdinalParse:/\d{1,2}(\u65e5|\u6708|\u5468)/,ordinal:function(e,t){switch(t){case"d":case"D":case"DDD":return e+"\u65e5";case"M":return e+"\u6708";case"w":case"W":return e+"\u5468";default:return e}},relativeTime:{future:"%s\u540e",past:"%s\u524d",s:"\u51e0\u79d2",ss:"%d \u79d2",m:"1 \u5206\u949f",mm:"%d \u5206\u949f",h:"1 \u5c0f\u65f6",hh:"%d \u5c0f\u65f6",d:"1 \u5929",dd:"%d \u5929",w:"1 \u5468",ww:"%d \u5468",M:"1 \u4e2a\u6708",MM:"%d \u4e2a\u6708",y:"1 \u5e74",yy:"%d \u5e74"},week:{dow:1,doy:4}});return t})},Xi7e:function(e,t,n){var r=n("KMkd"),i=n("adU4"),o=n("tMB7"),a=n("+6XX"),s=n("Z8oC");function l(e){var t=-1,n=null==e?0:e.length;this.clear();while(++tt[1]&&(t[1]=e[1])},e.prototype.unionExtentFromData=function(e,t){this.unionExtent(e.getApproximateExtent(t))},e.prototype.getExtent=function(){return this._extent.slice()},e.prototype.setExtent=function(e,t){var n=this._extent;isNaN(e)||(n[0]=e),isNaN(t)||(n[1]=t)},e.prototype.isInExtentRange=function(e){return this._extent[0]<=e&&this._extent[1]>=e},e.prototype.isBlank=function(){return this._isBlank},e.prototype.setBlank=function(e){this._isBlank=e},e}();o["c"](a);var s=a,l=n("jkPA"),u=n("OELB"),c=u["p"];function f(e,t,n,r){var i={},o=e[1]-e[0],a=i.interval=u["j"](o/t,!0);null!=n&&ar&&(a=i.interval=r);var s=i.intervalPrecision=d(a),l=i.niceTickExtent=[c(Math.ceil(e[0]/a)*a,s),c(Math.floor(e[1]/a)*a,s)];return p(l,e),i}function d(e){return u["e"](e)+2}function h(e,t,n){e[t]=Math.max(Math.min(e[t],n[1]),n[0])}function p(e,t){!isFinite(e[0])&&(e[0]=t[0]),!isFinite(e[1])&&(e[1]=t[1]),h(e,0,t),h(e,1,t),e[0]>e[1]&&(e[0]=e[1])}function g(e,t){return e>=t[0]&&e<=t[1]}function m(e,t){return t[1]===t[0]?.5:(e-t[0])/(t[1]-t[0])}function v(e,t){return e*(t[1]-t[0])+t[0]}var y=function(e){function t(t){var n=e.call(this,t)||this;n.type="ordinal";var i=n.getSetting("ordinalMeta");return i||(i=new l["a"]({})),Object(r["s"])(i)&&(i=new l["a"]({categories:Object(r["F"])(i,function(e){return Object(r["z"])(e)?e.value:e})})),n._ordinalMeta=i,n._extent=n.getSetting("extent")||[0,i.categories.length-1],n}return Object(i["a"])(t,e),t.prototype.parse=function(e){return"string"===typeof e?this._ordinalMeta.getOrdinal(e):Math.round(e)},t.prototype.contain=function(e){return e=this.parse(e),g(e,this._extent)&&null!=this._ordinalMeta.categories[e]},t.prototype.normalize=function(e){return e=this._getTickNumber(this.parse(e)),m(e,this._extent)},t.prototype.scale=function(e){return e=Math.round(v(e,this._extent)),this.getRawOrdinalNumber(e)},t.prototype.getTicks=function(){var e=[],t=this._extent,n=t[0];while(n<=t[1])e.push({value:n}),n++;return e},t.prototype.getMinorTicks=function(e){},t.prototype.setSortInfo=function(e){if(null!=e){for(var t=e.ordinalNumbers,n=this._ordinalNumbersByTick=[],r=this._ticksByOrdinalNumber=[],i=0,o=this._ordinalMeta.categories.length,a=Math.min(o,t.length);i=0&&e=0&&e=e},t.prototype.getOrdinalMeta=function(){return this._ordinalMeta},t.prototype.niceTicks=function(){},t.prototype.niceExtent=function(){},t.type="ordinal",t}(s);s.registerClass(y);var b=y,_=n("7aKB"),x=u["p"],w=function(e){function t(){var t=null!==e&&e.apply(this,arguments)||this;return t.type="interval",t._interval=0,t._intervalPrecision=2,t}return Object(i["a"])(t,e),t.prototype.parse=function(e){return e},t.prototype.contain=function(e){return g(e,this._extent)},t.prototype.normalize=function(e){return m(e,this._extent)},t.prototype.scale=function(e){return v(e,this._extent)},t.prototype.setExtent=function(e,t){var n=this._extent;isNaN(e)||(n[0]=parseFloat(e)),isNaN(t)||(n[1]=parseFloat(t))},t.prototype.unionExtent=function(e){var t=this._extent;e[0]t[1]&&(t[1]=e[1]),this.setExtent(t[0],t[1])},t.prototype.getInterval=function(){return this._interval},t.prototype.setInterval=function(e){this._interval=e,this._niceExtent=this._extent.slice(),this._intervalPrecision=d(e)},t.prototype.getTicks=function(e){var t=this._interval,n=this._extent,r=this._niceExtent,i=this._intervalPrecision,o=[];if(!t)return o;var a=1e4;n[0]a)return[]}var l=o.length?o[o.length-1].value:r[1];return n[1]>l&&(e?o.push({value:x(l+t,i)}):o.push({value:n[1]})),o},t.prototype.getMinorTicks=function(e){for(var t=this.getTicks(!0),n=[],r=this.getExtent(),i=1;ir[0]&&f>>1;e[i][1]n&&(this._approxInterval=n);var o=j.length,a=Math.min(C(j,this._approxInterval,0,o),o-1);this._interval=j[a][1],this._minLevelUnit=j[Math.max(a-1,0)][0]},t.prototype.parse=function(e){return"number"===typeof e?e:+u["l"](e)},t.prototype.contain=function(e){return g(this.parse(e),this._extent)},t.prototype.normalize=function(e){return m(this.parse(e),this._extent)},t.prototype.scale=function(e){return v(e,this._extent)},t.type="time",t}(k),j=[["second",M["d"]],["minute",M["c"]],["hour",M["b"]],["quarter-day",6*M["b"]],["half-day",12*M["b"]],["day",1.2*M["a"]],["half-week",3.5*M["a"]],["week",7*M["a"]],["month",31*M["a"]],["quarter",95*M["a"]],["half-year",M["e"]/2],["year",M["e"]]];function I(e,t,n,r){var i=u["l"](t),o=u["l"](n),a=function(e){return Object(M["n"])(i,e,r)===Object(M["n"])(o,e,r)},s=function(){return a("year")},l=function(){return s()&&a("month")},c=function(){return l()&&a("day")},f=function(){return c()&&a("hour")},d=function(){return f()&&a("minute")},h=function(){return d()&&a("second")},p=function(){return h()&&a("millisecond")};switch(e){case"year":return s();case"month":return l();case"day":return c();case"hour":return f();case"minute":return d();case"second":return h();case"millisecond":return p()}}function D(e,t){return e/=M["a"],e>16?16:e>7.5?7:e>3.5?4:e>1.5?2:1}function A(e){var t=30*M["a"];return e/=t,e>6?6:e>3?3:e>2?2:1}function E(e){return e/=M["b"],e>12?12:e>6?6:e>3.5?4:e>2?2:1}function P(e,t){return e/=t?M["c"]:M["d"],e>30?30:e>20?20:e>15?15:e>10?10:e>5?5:e>2?2:1}function L(e){return u["j"](e,!0)}function N(e,t,n){var r=new Date(e);switch(Object(M["m"])(t)){case"year":case"month":r[Object(M["x"])(n)](0);case"day":r[Object(M["g"])(n)](1);case"hour":r[Object(M["p"])(n)](0);case"minute":r[Object(M["v"])(n)](0);case"second":r[Object(M["A"])(n)](0),r[Object(M["t"])(n)](0)}return r.getTime()}function R(e,t,n,i){var o=1e4,a=M["B"],s=0;function l(e,t,n,r,o,a,s){var l=new Date(t),u=t,c=l[r]();while(u1&&0===u&&o.unshift({value:o[0].value-d})}}for(u=0;u=i[0]&&b<=i[1]&&d++)}var _=(i[1]-i[0])/t;if(d>1.5*_&&h>_/1.5)break;if(c.push(v),d>_||e===a[p])break}f=[]}}}var x=Object(r["n"])(Object(r["F"])(c,function(e){return Object(r["n"])(e,function(e){return e.value>=i[0]&&e.value<=i[1]&&!e.notAdd})}),function(e){return e.length>0}),w=[],k=x.length-1;for(p=0;p0)r*=10;var o=[u["p"](G(t[0]/r)*r),u["p"](Y(t[1]/r)*r)];this._interval=r,this._niceExtent=o}},t.prototype.niceExtent=function(e){B.niceExtent.call(this,e),this._fixMin=e.fixMin,this._fixMax=e.fixMax},t.prototype.parse=function(e){return e},t.prototype.contain=function(e){return e=W(e)/W(this.base),g(e,this._extent)},t.prototype.normalize=function(e){return e=W(e)/W(this.base),m(e,this._extent)},t.prototype.scale=function(e){return e=v(e,this._extent),U(this.base,e)},t.type="log",t}(s),q=H.prototype;function Z(e,t){return V(e,u["e"](t))}q.getMinorTicks=B.getMinorTicks,q.getLabel=B.getLabel,s.registerClass(H);var K=H,X=n("7hqr"),Q=n("U4/e");function $(e,t){var n=e.type,i=Object(Q["a"])(e,t,e.getExtent()).calculate();e.setBlank(i.isBlank);var o=i.min,a=i.max,s=t.ecModel;if(s&&"time"===n){var l=Object(O["d"])("bar",s),u=!1;if(r["k"](l,function(e){u=u||e.getBaseAxis()===t.axis}),u){var c=Object(O["c"])(l),f=J(o,a,t,c);o=f.min,a=f.max}}return{extent:[o,a],fixMin:i.minFixed,fixMax:i.maxFixed}}function J(e,t,n,i){var o=n.axis.getExtent(),a=o[1]-o[0],s=Object(O["e"])(i,n.axis);if(void 0===s)return{min:e,max:t};var l=1/0;r["k"](s,function(e){l=Math.min(e.offset,l)});var u=-1/0;r["k"](s,function(e){u=Math.max(e.offset+e.width,u)}),l=Math.abs(l),u=Math.abs(u);var c=l+u,f=t-e,d=1-(l+u)/a,h=f/d-f;return t+=h*(u/c),e-=h*(l/c),{min:e,max:t}}function ee(e,t){var n=t,r=$(e,n),i=r.extent,o=n.get("splitNumber");e instanceof K&&(e.base=n.get("logBase"));var a=e.type;e.setExtent(i[0],i[1]),e.niceExtent({splitNumber:o,fixMin:r.fixMin,fixMax:r.fixMax,minInterval:"interval"===a||"time"===a?n.get("minInterval"):null,maxInterval:"interval"===a||"time"===a?n.get("maxInterval"):null});var s=n.get("interval");null!=s&&e.setInterval&&e.setInterval(s)}function te(e,t){if(t=t||e.get("type"),t)switch(t){case"category":return new b({ordinalMeta:e.getOrdinalMeta?e.getOrdinalMeta():e.getCategories(),extent:[1/0,-1/0]});case"time":return new z({locale:e.ecModel.getLocaleModel(),useUTC:e.ecModel.get("useUTC")});default:return new(s.getClass(t)||k)}}function ne(e){var t=e.scale.getExtent(),n=t[0],r=t[1];return!(n>0&&r>0||n<0&&r<0)}function re(e){var t=e.getLabelModel().get("formatter"),n="category"===e.type?e.scale.getExtent()[0]:null;return"time"===e.scale.type?function(t){return function(n,r){return e.scale.getFormattedLabel(n,r,t)}}(t):"string"===typeof t?function(t){return function(n){var r=e.scale.getLabel(n),i=t.replace("{value}",null!=r?r:"");return i}}(t):"function"===typeof t?function(t){return function(r,i){return null!=n&&(i=r.value-n),t(ie(e,r),i,null!=r.level?{level:r.level}:null)}}(t):function(t){return e.scale.getLabel(t)}}function ie(e,t){return"category"===e.type?e.scale.getLabel(t):t.value}function oe(e){var t=e.model,n=e.scale;if(t.get(["axisLabel","show"])&&!n.isBlank()){var r,i,o=n.getExtent();n instanceof b?i=n.count():(r=n.getTicks(),i=r.length);var a,s=e.getLabelModel(),l=re(e),u=1;i>40&&(u=Math.ceil(i/40));for(var c=0;ce[1]&&(e[1]=r[1])})}n.d(t,"h",function(){return ee}),n.d(t,"a",function(){return te}),n.d(t,"f",function(){return ne}),n.d(t,"g",function(){return re}),n.d(t,"c",function(){return ie}),n.d(t,"b",function(){return oe}),n.d(t,"e",function(){return se}),n.d(t,"i",function(){return le}),n.d(t,"d",function(){return ue}),n.d(t,"j",function(){return ce})},adU4:function(e,t,n){var r=n("y1pI"),i=Array.prototype,o=i.splice;function a(e){var t=this.__data__,n=r(t,e);if(n<0)return!1;var i=t.length-1;return n==i?t.pop():o.call(t,n,1),--this.size,!0}e.exports=a},b80T:function(e,t,n){var r=n("UNi/"),i=n("03A+"),o=n("Z0cm"),a=n("DSRE"),s=n("wJg7"),l=n("c6wG"),u=Object.prototype,c=u.hasOwnProperty;function f(e,t){var n=o(e),u=!n&&i(e),f=!n&&!u&&a(e),d=!n&&!u&&!f&&l(e),h=n||u||f||d,p=h?r(e.length,String):[],g=p.length;for(var m in e)!t&&!c.call(e,m)||h&&("length"==m||f&&("offset"==m||"parent"==m)||d&&("buffer"==m||"byteLength"==m||"byteOffset"==m)||s(m,g))||p.push(m);return p}e.exports=f},bLfw:function(e,t,n){"use strict";var r=n("mrSG"),i=n("bYtY"),o=n("Qxkt"),a=n("iRjW"),s=n("Yl7c"),l=n("4NO4"),u=n("+TT/"),c=Object(l["m"])(),f=function(e){function t(t,n,r){var i=e.call(this,t,n,r)||this;return i.uid=a["c"]("ec_cpt_model"),i}return Object(r["a"])(t,e),t.prototype.init=function(e,t,n){this.mergeDefaultAndTheme(e,n)},t.prototype.mergeDefaultAndTheme=function(e,t){var n=u["b"](this),r=n?u["c"](e):{},o=t.getTheme();i["G"](e,o.get(this.mainType)),i["G"](e,this.getDefaultOption()),n&&u["e"](e,r,n)},t.prototype.mergeOption=function(e,t){i["G"](this.option,e,!0);var n=u["b"](this);n&&u["e"](this.option,e,n)},t.prototype.optionUpdated=function(e,t){},t.prototype.getDefaultOption=function(){var e=this.constructor;if(!Object(s["d"])(e))return e.defaultOption;var t=c(this);if(!t.defaultOption){var n=[],r=e;while(r){var o=r.prototype.defaultOption;o&&n.push(o),r=r.superClass}for(var a={},l=n.length-1;l>=0;l--)a=i["G"](a,n[l],!0);t.defaultOption=a}return t.defaultOption},t.prototype.getReferringComponents=function(e,t){var n=e+"Index",r=e+"Id";return Object(l["t"])(this.ecModel,e,{index:this.get(n,!0),id:this.get(r,!0)},t)},t.prototype.getBoxLayoutParams=function(){var e=this;return{left:e.get("left"),top:e.get("top"),right:e.get("right"),bottom:e.get("bottom"),width:e.get("width"),height:e.get("height")}},t.protoInitialize=function(){var e=t.prototype;e.type="component",e.id="",e.name="",e.mainType="",e.subType="",e.componentIndex=0}(),t}(o["a"]);function d(e){var t=[];return i["k"](f.getClassesByMainType(e),function(e){t=t.concat(e.dependencies||e.prototype.dependencies||[])}),t=i["F"](t,function(e){return Object(s["f"])(e).main}),"dataset"!==e&&i["q"](t,"dataset")<=0&&t.unshift("dataset"),t}Object(s["e"])(f,o["a"]),Object(s["c"])(f),a["a"](f),a["b"](f,d),t["a"]=f},bgCn:function(e,t,n){"use strict";for(var r=n("AGgm").isSpace,i=[],o=0;o<256;o++)i.push(0);"\\!\"#$%&'()*+,./:;<=>?@[]^_`{|}~-".split("").forEach(function(e){i[e.charCodeAt(0)]=1}),e.exports=function(e,t){var n,o=e.pos,a=e.posMax;if(92!==e.src.charCodeAt(o))return!1;if(o++,o=n)break;if(e.sCount[s]=u){e.line=n;break}for(i=0;i0&&this.handleMarkers(k);var C=this.editor.$options;l.editorOptions.forEach(function(t){C.hasOwnProperty(t)?e.editor.setOption(t,e.props[t]):e.props[t]&&console.warn("ReactAce: editor option "+t+" was activated but not found. Did you need to import a related tool or did you possibly mispell the option?")}),this.handleOptions(this.props),Array.isArray(x)&&x.forEach(function(t){"string"===typeof t.exec?e.editor.commands.bindKey(t.bindKey,t.exec):e.editor.commands.addCommand(t)}),b&&this.editor.setKeyboardHandler("ace/keyboard/"+b),n&&(this.refEditor.className+=" "+n),_&&_(this.editor),this.editor.resize(),a&&this.editor.focus()},t.prototype.componentDidUpdate=function(e){for(var t=e,n=this.props,r=0;r"+o(e[t].content)+""},a.code_block=function(e,t,n,r,i){var a=e[t];return""+o(e[t].content)+"\n"},a.fence=function(e,t,n,r,a){var s,l,u,c,f,d=e[t],h=d.info?i(d.info).trim():"",p="",g="";return h&&(u=h.split(/(\s+)/g),p=u[0],g=u.slice(2).join("")),s=n.highlight&&n.highlight(d.content,p,g)||o(d.content),0===s.indexOf(""+s+"\n"):"
"+s+"
\n"},a.image=function(e,t,n,r,i){var o=e[t];return o.attrs[o.attrIndex("alt")][1]=i.renderInlineAsText(o.children,n,r),i.renderToken(e,t,n)},a.hardbreak=function(e,t,n){return n.xhtmlOut?"
\n":"
\n"},a.softbreak=function(e,t,n){return n.breaks?n.xhtmlOut?"
\n":"
\n":"\n"},a.text=function(e,t){return o(e[t].content)},a.html_block=function(e,t){return e[t].content},a.html_inline=function(e,t){return e[t].content},s.prototype.renderAttrs=function(e){var t,n,r;if(!e.attrs)return"";for(r="",t=0,n=e.attrs.length;t\n":">",i)},s.prototype.renderInline=function(e,t,n){for(var r,i="",o=this.rules,a=0,s=e.length;a=0,a=!1;if(e instanceof l["b"]){var s=f(e),u=o&&s.selectFill||s.normalFill,c=o&&s.selectStroke||s.normalStroke;if(O(u)||O(c)){r=r||{};var d=r.style||{};"inherit"===d.fill?(a=!0,r=Object(i["m"])({},r),d=Object(i["m"])({},d),d.fill=u):!O(d.fill)&&O(u)?(a=!0,r=Object(i["m"])({},r),d=Object(i["m"])({},d),d.fill=M(u)):!O(d.stroke)&&O(c)&&(a||(r=Object(i["m"])({},r),d=Object(i["m"])({},d)),d.stroke=M(c)),r.style=d}}if(r&&null==r.z2){a||(r=Object(i["m"])({},r));var h=e.z2EmphasisLift;r.z2=e.z2+(null!=h?h:v)}return r}function F(e,t,n){if(n&&null==n.z2){n=Object(i["m"])({},n);var r=e.z2SelectLift;n.z2=e.z2+(null!=r?r:y)}return n}function B(e,t,n){var r=Object(i["q"])(e.currentStates,t)>=0,o=e.style.opacity,a=r?null:R(e,["opacity"],t,{opacity:1});n=n||{};var s=n.style||{};return null==s.opacity&&(n=Object(i["m"])({},n),s=Object(i["m"])({opacity:r?o:.1*a.opacity},s),n.style=s),n}function V(e,t){var n=this.states[e];if(this.style){if("emphasis"===e)return z(this,e,t,n);if("blur"===e)return B(this,e,n);if("select"===e)return F(this,e,n)}return n}function Y(e){e.stateProxy=V;var t=e.getTextContent(),n=e.getTextGuideLine();t&&(t.stateProxy=V),n&&(n.stateProxy=V)}function G(e,t){!Q(e,t)&&!e.__highByOuter&&L(e,T)}function U(e,t){!Q(e,t)&&!e.__highByOuter&&L(e,j)}function W(e,t){e.__highByOuter|=1<<(t||0),L(e,T)}function H(e,t){!(e.__highByOuter&=~(1<<(t||0)))&&L(e,j)}function q(e){L(e,I)}function Z(e){L(e,D)}function K(e){L(e,A)}function X(e){L(e,E)}function Q(e,t){return e.__highDownSilentOnTouch&&t.zrByTouch}function $(e){var t=e.getModel();t.eachComponent(function(t,n){var r="series"===t?e.getViewOfSeriesModel(n):e.getViewOfComponentModel(n);r.group.traverse(function(e){D(e)})})}function J(e,t,n,r){var o=r.getModel();function a(e,t){for(var n=0;n0){var o={dataIndex:i,seriesIndex:e.seriesIndex};null!=r&&(o.dataType=r),t.push(o)}})}),t}function le(e,t,n){he(e,!0),L(e,Y),ue(e,t,n)}function ue(e,t,n){var r=Object(o["a"])(e);null!=t?(r.focus=t,r.blurScope=n):r.focus&&(r.focus=null)}var ce=["emphasis","blur","select"],fe={itemStyle:"getItemStyle",lineStyle:"getLineStyle",areaStyle:"getAreaStyle"};function de(e,t,n,r){n=n||"itemStyle";for(var i=0;i=n)return l;if(o=e.charCodeAt(t),34!==o&&39!==o&&40!==o)return l;t++,40===o&&(o=41);while(t0&&this.level++,this.tokens.push(i),i},o.prototype.isEmpty=function(e){return this.bMarks[e]+this.tShift[e]>=this.eMarks[e]},o.prototype.skipEmptyLines=function(e){for(var t=this.lineMax;et)if(!i(this.src.charCodeAt(--e)))return e+1;return e},o.prototype.skipChars=function(e,t){for(var n=this.src.length;en)if(t!==this.src.charCodeAt(--e))return e+1;return e},o.prototype.getLines=function(e,t,n,r){var o,a,s,l,u,c,f,d=e;if(e>=t)return"";for(c=new Array(t-e),o=0;dn?new Array(a-n+1).join(" ")+this.src.slice(l,u):this.src.slice(l,u)}return c.join("")},o.prototype.Token=r,e.exports=o},g40J:function(e,t,n){"use strict";function r(e,t){var n,r,i,o,a,s,l,u,c={},f=t.length;if(f){var d=0,h=-2,p=[];for(n=0;na;r-=p[r]+1)if(o=t[r],o.marker===i.marker&&o.open&&o.end<0&&(l=!1,(o.close||i.open)&&(o.length+i.length)%3===0&&(o.length%3===0&&i.length%3===0||(l=!0)),!l)){u=r>0&&!t[r-1].open?p[r-1]+1:0,p[n]=n-r+u,p[r]=u,i.open=!1,o.end=n,o.close=!1,s=-1,h=-2;break}-1!==s&&(c[i.marker][(i.open?3:0)+(i.length||0)%3]=s)}}}e.exports=function(e){var t,n=e.tokens_meta,i=e.tokens_meta.length;for(r(e,e.delimiters),t=0;t30}},gNPE:function(e,t,n){"use strict";var r=n("AGgm").isSpace;function i(e,t){var n=e.bMarks[t]+e.tShift[t],r=e.eMarks[t];return e.src.substr(n,r-n)}function o(e){var t,n=[],r=0,i=e.length,o=!1,a=0,s="";t=e.charCodeAt(r);while(rn)return!1;if(d=t+1,e.sCount[d]=4)return!1;if(u=e.bMarks[d]+e.tShift[d],u>=e.eMarks[d])return!1;if(k=e.src.charCodeAt(u++),124!==k&&45!==k&&58!==k)return!1;if(u>=e.eMarks[d])return!1;if(O=e.src.charCodeAt(u++),124!==O&&45!==O&&58!==O&&!r(O))return!1;if(45===k&&r(O))return!1;while(u=4)return!1;if(h=o(l),h.length&&""===h[0]&&h.shift(),h.length&&""===h[h.length-1]&&h.pop(),p=h.length,0===p||p!==m.length)return!1;if(a)return!0;for(_=e.parentType,e.parentType="table",w=e.md.block.ruler.getRules("blockquote"),g=e.push("table_open","table",1),g.map=y=[t,0],g=e.push("thead_open","thead",1),g.map=[t,t+1],g=e.push("tr_open","tr",1),g.map=[t,t+1],c=0;c=4)break;for(h=o(l),h.length&&""===h[0]&&h.shift(),h.length&&""===h[h.length-1]&&h.pop(),d===t+2&&(g=e.push("tbody_open","tbody",1),g.map=b=[t+2,0]),g=e.push("tr_open","tr",1),g.map=[d,d+1],c=0;c1){var c=l.shift();1===l.length&&(n[s]=l[0]),this._update&&this._update(c,a)}else 1===u?(n[s]=null,this._update&&this._update(l,a)):this._remove&&this._remove(a)}this._performRestAdd(o,n)},e.prototype._executeMultiple=function(){var e=this._old,t=this._new,n={},i={},o=[],a=[];this._initIndexMap(e,n,o,"_oldKeyGetter"),this._initIndexMap(t,i,a,"_newKeyGetter");for(var s=0;s1&&1===d)this._updateManyToOne&&this._updateManyToOne(c,u),i[l]=null;else if(1===f&&d>1)this._updateOneToMany&&this._updateOneToMany(c,u),i[l]=null;else if(1===f&&1===d)this._update&&this._update(c,u),i[l]=null;else if(f>1&&d>1)this._updateManyToMany&&this._updateManyToMany(c,u),i[l]=null;else if(f>1)for(var h=0;h1)for(var s=0;s=0?f():c=setTimeout(f,-i),l=r};return d.clear=function(){c&&(clearTimeout(c),c=null)},d.debounceNextCall=function(e){s=e},d}function s(e,t,n,s){var l=e[t];if(l){var u=l[r]||l,c=l[o],f=l[i];if(f!==n||c!==s){if(null==n||!s)return e[t]=u;l=e[t]=a(u,n,"debounce"===s),l[r]=u,l[o]=s,l[i]=n}return l}}},iRjW:function(e,t,n){"use strict";n.d(t,"c",function(){return a}),n.d(t,"a",function(){return s}),n.d(t,"b",function(){return l}),n.d(t,"d",function(){return u});var r=n("bYtY"),i=n("Yl7c"),o=Math.round(10*Math.random());function a(e){return[e||"",o++].join("_")}function s(e){var t={};e.registerSubTypeDefaulter=function(e,n){var r=Object(i["f"])(e);t[r.main]=n},e.determineSubType=function(n,r){var o=r.type;if(!o){var a=Object(i["f"])(n).main;e.hasSubTypes(n)&&t[a]&&(o=t[a](r))}return o}}function l(e,t){function n(e){var n={},a=[];return r["k"](e,function(s){var l=i(n,s),u=l.originalDeps=t(s),c=o(u,e);l.entryCount=c.length,0===l.entryCount&&a.push(s),r["k"](c,function(e){r["q"](l.predecessor,e)<0&&l.predecessor.push(e);var t=i(n,e);r["q"](t.successor,e)<0&&t.successor.push(s)})}),{graph:n,noEntryList:a}}function i(e,t){return e[t]||(e[t]={predecessor:[],successor:[]}),e[t]}function o(e,t){var n=[];return r["k"](e,function(e){r["q"](t,e)>=0&&n.push(e)}),n}e.topologicalTravel=function(e,t,i,o){if(e.length){var a=n(t),s=a.graph,l=a.noEntryList,u={};r["k"](e,function(e){u[e]=!0});while(l.length){var c=l.pop(),f=s[c],d=!!u[c];d&&(i.call(o,c,f.originalDeps.slice()),delete u[c]),r["k"](f.successor,d?p:h)}r["k"](u,function(){var e="";throw new Error(e)})}function h(e){s[e].entryCount--,0===s[e].entryCount&&l.push(e)}function p(e){u[e]=!0,h(e)}}}function u(e,t){return r["G"](r["G"]({},e,!0),t,!0)}},"ijE+":function(e,t,n){"use strict";e.exports={options:{html:!1,xhtmlOut:!1,breaks:!1,langPrefix:"language-",linkify:!1,typographer:!1,quotes:"\u201c\u201d\u2018\u2019",highlight:null,maxNesting:100},components:{core:{},block:{},inline:{}}}},itsj:function(e,t){function n(e,t){if(("constructor"!==t||"function"!==typeof e[t])&&"__proto__"!=t)return e[t]}e.exports=n},jXQH:function(e,t,n){var r=n("TO8r"),i=/^\s+/;function o(e){return e?e.slice(0,r(e)+1).replace(i,""):e}e.exports=o},jYNY:function(e,t,n){var r=n("rgI+"),i=n("o9ul"),o=n("8wmI"),a="[object Object]",s=Function.prototype,l=Object.prototype,u=s.toString,c=l.hasOwnProperty,f=u.call(Object);function d(e){if(!o(e)||r(e)!=a)return!1;var t=i(e);if(null===t)return!0;var n=c.call(t,"constructor")&&t.constructor;return"function"==typeof n&&n instanceof n&&u.call(n)==f}e.exports=d},jeLo:function(e,t,n){var r=n("juv8"),i=n("mTTR");function o(e){return r(e,i(e))}e.exports=o},jkPA:function(e,t,n){"use strict";var r=n("bYtY"),i=0,o=function(){function e(e){this.categories=e.categories||[],this._needCollect=e.needCollect,this._deduplication=e.deduplication,this.uid=++i}return e.createByAxisModel=function(t){var n=t.option,i=n.data,o=i&&Object(r["F"])(i,a);return new e({categories:o,needCollect:!o,deduplication:!1!==n.dedplication})},e.prototype.getOrdinal=function(e){return this._getOrCreateMap().get(e)},e.prototype.parseAndCollect=function(e){var t,n=this._needCollect;if("string"!==typeof e&&!n)return e;if(n&&!this._deduplication)return t=this.categories.length,this.categories[t]=e,t;var r=this._getOrCreateMap();return t=r.get(e),null==t&&(n?(t=this.categories.length,this.categories[t]=e,r.set(e,t)):t=NaN),t},e.prototype._getOrCreateMap=function(){return this._map||(this._map=Object(r["g"])(this.categories))},e}();function a(e){return Object(r["z"])(e)&&null!=e.value?e.value:e+""}t["a"]=o},juv8:function(e,t,n){var r=n("MrPd"),i=n("hypo");function o(e,t,n,o){var a=!n;n||(n={});var s=-1,l=t.length;while(++s=b)return!1;for(m=c,d=e.md.helpers.parseLinkDestination(e.src,c,e.posMax),d.ok&&(v=e.md.normalizeLink(d.str),e.md.validateLink(v)?c=d.pos:v=""),m=c;c=b||41!==e.src.charCodeAt(c))return e.pos=y,!1;c++}else{if("undefined"===typeof e.env.references)return!1;if(c=0?s=e.src.slice(m,c++):c=l+1):c=l+1,s||(s=e.src.slice(u,l)),f=e.env.references[r(s)],!f)return e.pos=y,!1;v=f.href,h=f.title}return t||(a=e.src.slice(u,l),e.md.inline.parse(a,e.md,e.env,g=[]),p=e.push("image","img",0),p.attrs=n=[["src",v],["alt",""]],p.children=g,p.content=a,h&&n.push(["title",h])),e.pos=c,e.posMax=b,!0}},lSCD:function(e,t,n){var r=n("NykK"),i=n("GoyQ"),o="[object AsyncFunction]",a="[object Function]",s="[object GeneratorFunction]",l="[object Proxy]";function u(e){if(!i(e))return!1;var t=r(e);return t==a||t==s||t==o||t==l}e.exports=u},lc5D:function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n("eF/C"),i=n("Uf63");t.diff=i.default;var o=n("N5VM");t.split=o.default,t.default=r.default},ljhN:function(e,t){function n(e,t){return e===t||e!==e&&t!==t}e.exports=n},mSF0:function(e,t,n){"use strict";var r=n("AGgm").arrayReplaceAt;function i(e){return/^\s]/i.test(e)}function o(e){return/^<\/a\s*>/i.test(e)}e.exports=function(e){var t,n,a,s,l,u,c,f,d,h,p,g,m,v,y,b,_,x=e.tokens;if(e.md.options.linkify)for(n=0,a=x.length;n=0;t--)if(u=s[t],"link_close"!==u.type){if("html_inline"===u.type&&(i(u.content)&&m>0&&m--,o(u.content)&&m++),!(m>0)&&"text"===u.type&&e.md.linkify.test(u.content)){for(d=u.content,_=e.md.linkify.match(d),c=[],g=u.level,p=0,f=0;f<_.length;f++)v=_[f].url,y=e.md.normalizeLink(v),e.md.validateLink(y)&&(b=_[f].text,b=_[f].schema?"mailto:"!==_[f].schema||/^mailto:/i.test(b)?e.md.normalizeLinkText(b):e.md.normalizeLinkText("mailto:"+b).replace(/^mailto:/,""):e.md.normalizeLinkText("http://"+b).replace(/^http:\/\//,""),h=_[f].index,h>p&&(l=new e.Token("text","",0),l.content=d.slice(p,h),l.level=g,c.push(l)),l=new e.Token("link_open","a",1),l.attrs=[["href",y]],l.level=g++,l.markup="linkify",l.info="auto",c.push(l),l=new e.Token("text","",0),l.content=b,l.level=g,c.push(l),l=new e.Token("link_close","a",-1),l.level=--g,l.markup="linkify",l.info="auto",c.push(l),p=_[f].lastIndex);p=1)&&(e=1),e}s===u&&l===c||(t="reset"),(this._dirty||"reset"===t)&&(this._dirty=!1,a=this._doReset(i)),this._modBy=u,this._modDataCount=c;var d=e&&e.step;if(this._dueEnd=n?n._outputDueEnd:this._count?this._count(this.context):1/0,this._progress){var h=this._dueIndex,p=Math.min(null!=d?this._dueIndex+d:1/0,this._dueEnd);if(!i&&(a||h1&&r>0?s:a}};return o;function a(){return t=e?null:o=4))break;r++,i=r}return e.line=i,o=e.push("code_block","code",0),o.content=e.getLines(t,i,4+e.blkIndent,!1)+"\n",o.map=[t,e.line],!0}},nVfU:function(e,t,n){"use strict";n.d(t,"d",function(){return d}),n.d(t,"c",function(){return p}),n.d(t,"e",function(){return m}),n.d(t,"b",function(){return v}),n.d(t,"a",function(){return y});var r=n("bYtY"),i=n("OELB"),o=n("7hqr"),a=n("zM3Q"),s="__ec_stack_",l=.5,u="undefined"!==typeof Float32Array?Float32Array:Array;function c(e){return e.get("stack")||s+e.seriesIndex}function f(e){return e.dim+e.index}function d(e,t){var n=[];return t.eachSeriesByType(e,function(e){b(e)&&!_(e)&&n.push(e)}),n}function h(e){var t={};r["k"](e,function(e){var n=e.coordinateSystem,r=n.getBaseAxis();if("time"===r.type||"value"===r.type)for(var i=e.getData(),o=r.dim+"_"+r.index,a=i.getDimensionIndex(i.mapDimension(r.dim)),s=i.getStore(),l=0,u=s.count();l0&&(a=null===a?l:Math.min(a,l))}n[i]=a}}return n}function p(e){var t=h(e),n=[];return r["k"](e,function(e){var r,o=e.coordinateSystem,a=o.getBaseAxis(),s=a.getExtent();if("category"===a.type)r=a.getBandWidth();else if("value"===a.type||"time"===a.type){var l=a.dim+"_"+a.index,u=t[l],d=Math.abs(s[1]-s[0]),h=a.scale.getExtent(),p=Math.abs(h[1]-h[0]);r=u?d/p*u:d}else{var g=e.getData();r=Math.abs(s[1]-s[0])/g.count()}var m=Object(i["m"])(e.get("barWidth"),r),v=Object(i["m"])(e.get("barMaxWidth"),r),y=Object(i["m"])(e.get("barMinWidth")||1,r),b=e.get("barGap"),_=e.get("barCategoryGap");n.push({bandWidth:r,barWidth:m,barMaxWidth:v,barMinWidth:y,barGap:b,barCategoryGap:_,axisKey:f(a),stackId:c(e)})}),g(n)}function g(e){var t={};r["k"](e,function(e,n){var r=e.axisKey,i=e.bandWidth,o=t[r]||{bandWidth:i,remainedWidth:i,autoWidthCount:0,categoryGap:null,gap:"20%",stacks:{}},a=o.stacks;t[r]=o;var s=e.stackId;a[s]||o.autoWidthCount++,a[s]=a[s]||{width:0,maxWidth:0};var l=e.barWidth;l&&!a[s].width&&(a[s].width=l,l=Math.min(o.remainedWidth,l),o.remainedWidth-=l);var u=e.barMaxWidth;u&&(a[s].maxWidth=u);var c=e.barMinWidth;c&&(a[s].minWidth=c);var f=e.barGap;null!=f&&(o.gap=f);var d=e.barCategoryGap;null!=d&&(o.categoryGap=d)});var n={};return r["k"](t,function(e,t){n[t]={};var o=e.stacks,a=e.bandWidth,s=e.categoryGap;if(null==s){var l=r["D"](o).length;s=Math.max(35-4*l,15)+"%"}var u=Object(i["m"])(s,a),c=Object(i["m"])(e.gap,1),f=e.remainedWidth,d=e.autoWidthCount,h=(f-u)/(d+(d-1)*c);h=Math.max(h,0),r["k"](o,function(e){var t=e.maxWidth,n=e.minWidth;if(e.width){r=e.width;t&&(r=Math.min(r,t)),n&&(r=Math.max(r,n)),e.width=r,f-=r+c*r,d--}else{var r=h;t&&tr&&(r=n),r!==h&&(e.width=r,f-=r+c*r,d--)}}),h=(f-u)/(d+(d-1)*c),h=Math.max(h,0);var p,g=0;r["k"](o,function(e,t){e.width||(e.width=h),p=e,g+=e.width*(1+c)}),p&&(g-=p.width*c);var m=-g/2;r["k"](o,function(e,r){n[t][r]=n[t][r]||{bandWidth:a,offset:m,width:e.width},m+=e.width*(1+c)})}),n}function m(e,t,n){if(e&&t){var r=e[f(t)];return null!=r&&null!=n?r[c(n)]:r}}function v(e,t){var n=d(e,t),i=p(n),a={};r["k"](n,function(e){var t=e.getData(),n=e.coordinateSystem,r=n.getBaseAxis(),s=c(e),l=i[f(r)][s],u=l.offset,d=l.width,h=n.getOtherAxis(r),p=e.get("barMinHeight")||0;a[s]=a[s]||[],t.setLayout({bandWidth:l.bandWidth,offset:u,size:d});for(var g=t.mapDimension(h.dim),m=t.mapDimension(r.dim),v=Object(o["c"])(t,g),y=h.isHorizontal(),b=x(r,h,v),_=t.getStore(),w=t.getDimensionIndex(g),k=t.getDimensionIndex(m),O=0,S=_.count();O=0?"p":"n",j=b;v&&(a[s][C]||(a[s][C]={p:b,n:b}),j=a[s][C][T]);var I=void 0,D=void 0,A=void 0,E=void 0;if(y){var P=n.dataToPoint([M,C]);I=j,D=P[1]+u,A=P[0]-b,E=d,Math.abs(A)l||(d=l),{progress:function(e,t){var l,h=e.count,p=new u(2*h),g=new u(2*h),m=new u(h),v=[],y=[],b=0,_=0,w=t.getStore();while(null!=(l=e.next()))y[f]=w.get(a,l),y[1-f]=w.get(s,l),v=n.dataToPoint(y,null),g[b]=c?r.x+r.width:v[0],p[b++]=v[0],g[b]=c?v[1]:r.y+r.height,p[b++]=v[1],m[_++]=l;t.setLayout({largePoints:p,largeDataIndices:m,largeBackgroundPoints:g,barWidth:d,valueAxisStart:x(i,o,!1),backgroundStart:c?r.x:r.y,valueAxisHorizontal:c})}}}}};function b(e){return e.coordinateSystem&&"cartesian2d"===e.coordinateSystem.type}function _(e){return e.pipelineContext&&e.pipelineContext.large}function x(e,t,n){return t.toGlobalCoord(t.dataToCoord("log"===t.type?1:0))}},nmnc:function(e,t,n){var r=n("Kz5y"),i=r.Symbol;e.exports=i},o9ul:function(e,t,n){var r=n("qxrA"),i=r(Object.getPrototypeOf,Object);e.exports=i},oSSR:function(e,t,n){"use strict";e.exports=function(e){var t,n,r,i=e.tokens;for(n=0,r=i.length;na)return!0;if(o){var s=c["c"](e).seriesDataCount,l=r.getExtent();return Math.abs(l[0]-l[1])/s>a}return!1}return!0===n},e.prototype.makeElOption=function(e,t,n,r,i){},e.prototype.createPointerEl=function(e,t,n,r){var i=t.pointer;if(i){var o=p(e).pointerEl=new s[i.type](g(t.pointer));e.add(o)}},e.prototype.createLabelEl=function(e,t,n,r){if(t.label){var i=p(e).labelEl=new l["a"](g(t.label));e.add(i),_(i,r)}},e.prototype.updatePointerEl=function(e,t,n){var r=p(e).pointerEl;r&&t.pointer&&(r.setStyle(t.pointer.style),n(r,{shape:t.pointer.shape}))},e.prototype.updateLabelEl=function(e,t,n,r){var i=p(e).labelEl;i&&(i.setStyle(t.label.style),n(i,{x:t.label.x,y:t.label.y}),_(i,r))},e.prototype._renderHandle=function(e){if(!this._dragging&&this.updateHandleTransform){var t,n=this._axisPointerModel,r=this._api.getZr(),i=this._handle,a=n.getModel("handle"),l=n.get("status");if(!a.get("show")||!l||"hide"===l)return i&&r.remove(i),void(this._handle=null);this._handle||(t=!0,i=this._handle=s["createIcon"](a.get("icon"),{cursor:"move",draggable:!0,onmousemove:function(e){f["f"](e.event)},onmousedown:m(this._onHandleDragMove,this,0,0),drift:m(this._onHandleDragMove,this),ondragend:m(this._onHandleDragEnd,this)}),r.add(i)),w(i,n,!1),i.setStyle(a.getItemStyle(null,["color","borderColor","borderWidth","opacity","shadowColor","shadowBlur","shadowOffsetX","shadowOffsetY"]));var u=a.get("size");o["s"](u)||(u=[u,u]),i.scaleX=u[0]/2,i.scaleY=u[1]/2,d["a"](this,"_doDispatchAxisPointer",a.get("throttle")||0,"fixRate"),this._moveHandleToValue(e,t)}},e.prototype._moveHandleToValue=function(e,t){y(this._axisPointerModel,!t&&this._moveAnimation,this._handle,x(this.getHandleTransform(e,this._axisModel,this._axisPointerModel)))},e.prototype._onHandleDragMove=function(e,t){var n=this._handle;if(n){this._dragging=!0;var r=this.updateHandleTransform(x(n),[e,t],this._axisModel,this._axisPointerModel);this._payloadInfo=r,n.stopAnimation(),n.attr(x(r)),p(n).lastProp=null,this._doDispatchAxisPointer()}},e.prototype._doDispatchAxisPointer=function(){var e=this._handle;if(e){var t=this._payloadInfo,n=this._axisModel;this._api.dispatchAction({type:"updateAxisPointer",x:t.cursorPoint[0],y:t.cursorPoint[1],tooltipOption:t.tooltipOption,axesInfo:[{axisDim:n.axis.dim,axisIndex:n.componentIndex}]})}},e.prototype._onHandleDragEnd=function(){this._dragging=!1;var e=this._handle;if(e){var t=this._axisPointerModel.get("value");this._moveHandleToValue(t),this._api.dispatchAction({type:"hideTip"})}},e.prototype.clear=function(e){this._lastValue=null,this._lastStatus=null;var t=e.getZr(),n=this._group,r=this._handle;t&&n&&(this._lastGraphicKey=null,n&&t.remove(n),r&&t.remove(r),this._group=null,this._handle=null,this._payloadInfo=null)},e.prototype.doClear=function(){},e.prototype.buildLabel=function(e,t,n){return n=n||0,{x:e[n],y:e[1-n],width:t[n],height:t[1-n]}},e}();function y(e,t,n,r){b(p(n).lastProp,r)||(p(n).lastProp=r,t?u["h"](n,r,e):(n.stopAnimation(),n.attr(r)))}function b(e,t){if(o["z"](e)&&o["z"](t)){var n=!0;return o["k"](t,function(t,r){n=n&&b(e[r],t)}),!!n}return e===t}function _(e,t){e[t.get(["label","show"])?"show":"hide"]()}function x(e){return{x:e.x||0,y:e.y||0,rotation:e.rotation||0}}function w(e,t,n){var r=t.get("z"),i=t.get("zlevel");e&&e.traverse(function(e){"group"!==e.type&&(null!=r&&(e.z=r),null!=i&&(e.zlevel=i),e.silent=n)})}var k=v,O=n("/y7N"),S=n("AVZG"),M=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return Object(i["a"])(t,e),t.prototype.makeElOption=function(e,t,n,r,i){var o=n.axis,a=o.grid,s=r.get("type"),l=C(a,o).getOtherAxis(o).getGlobalExtent(),u=o.toGlobalCoord(o.dataToCoord(t,!0));if(s&&"none"!==s){var c=O["b"](r),f=T[s](o,u,l);f.style=c,e.graphicKey=f.type,e.pointer=f}var d=S["c"](a.model,n);O["a"](t,e,d,n,r,i)},t.prototype.getHandleTransform=function(e,t,n){var r=S["c"](t.axis.grid.model,t,{labelInside:!1});r.labelMargin=n.get(["handle","margin"]);var i=O["c"](t.axis,e,r);return{x:i[0],y:i[1],rotation:r.rotation+(r.labelDirection<0?Math.PI:0)}},t.prototype.updateHandleTransform=function(e,t,n,r){var i=n.axis,o=i.grid,a=i.getGlobalExtent(!0),s=C(o,i).getOtherAxis(i).getGlobalExtent(),l="x"===i.dim?0:1,u=[e.x,e.y];u[l]+=t[l],u[l]=Math.min(a[1],u[l]),u[l]=Math.max(a[0],u[l]);var c=(s[1]+s[0])/2,f=[c,c];f[l]=u[l];var d=[{verticalAlign:"middle"},{align:"center"}];return{x:u[0],y:u[1],rotation:e.rotation,cursorPoint:f,tooltipOption:d[l]}},t}(k);function C(e,t){var n={};return n[t.dim+"AxisIndex"]=t.index,e.getCartesian(n)}var T={line:function(e,t,n){var r=O["e"]([t,n[0]],[t,n[1]],j(e));return{type:"Line",subPixelOptimize:!0,shape:r}},shadow:function(e,t,n){var r=Math.max(1,e.getBandWidth()),i=n[1]-n[0];return{type:"Rect",shape:O["f"]([t-r/2,n[0]],[r,i],j(e))}}};function j(e){return"x"===e.dim?0:1}var I=M,D=n("bLfw"),A=function(e){function t(){var n=null!==e&&e.apply(this,arguments)||this;return n.type=t.type,n}return Object(i["a"])(t,e),t.type="axisPointer",t.defaultOption={show:"auto",zlevel:0,z:50,type:"line",snap:!1,triggerTooltip:!0,value:null,status:null,link:[],animation:null,animationDurationUpdate:200,lineStyle:{color:"#B9BEC9",width:1,type:"dashed"},shadowStyle:{color:"rgba(210,219,238,0.2)"},label:{show:!0,formatter:null,precision:"auto",margin:3,color:"#fff",padding:[5,7,5,7],backgroundColor:"auto",borderColor:null,borderWidth:0,borderRadius:3},handle:{show:!1,icon:"M10.7,11.9v-1.3H9.3v1.3c-4.9,0.3-8.8,4.4-8.8,9.4c0,5,3.9,9.1,8.8,9.4h1.3c4.9-0.3,8.8-4.4,8.8-9.4C19.5,16.3,15.6,12.2,10.7,11.9z M13.3,24.4H6.7v-1.2h6.6z M13.3,22H6.7v-1.2h6.6z M13.3,19.6H6.7v-1.2h6.6z",size:45,margin:50,color:"#333",shadowBlur:3,shadowColor:"#aaa",shadowOffsetX:0,shadowOffsetY:2,throttle:40}},t}(D["a"]),E=A,P=n("F9bG"),L=n("sS/r"),N=function(e){function t(){var n=null!==e&&e.apply(this,arguments)||this;return n.type=t.type,n}return Object(i["a"])(t,e),t.prototype.render=function(e,t,n){var r=t.getComponent("tooltip"),i=e.get("triggerOn")||r&&r.get("triggerOn")||"mousemove|click";P["a"]("axisPointer",n,function(e,t,n){"none"!==i&&("leave"===e||i.indexOf(e)>=0)&&n({type:"updateAxisPointer",currTrigger:e,x:t&&t.offsetX,y:t&&t.offsetY})})},t.prototype.remove=function(e,t){P["b"]("axisPointer",t)},t.prototype.dispose=function(e,t){P["b"]("axisPointer",t)},t.type="axisPointer",t}(L["a"]),R=N,z=n("Ez2D"),F=Object(h["m"])();function B(e,t,n){var r=e.currTrigger,i=[e.x,e.y],a=e,s=e.dispatchAction||Object(o["c"])(n.dispatchAction,n),l=t.getComponent("axisPointer").coordSysAxesInfo;if(l){X(i)&&(i=Object(z["a"])({seriesIndex:a.seriesIndex,dataIndex:a.dataIndex},t).point);var u=X(i),c=a.axesInfo,f=l.axesInfo,d="leave"===r||X(i),h={},p={},g={list:[],map:{}},m={showPointer:Object(o["i"])(G,p),showTooltip:Object(o["i"])(U,g)};Object(o["k"])(l.coordSysMap,function(e,t){var n=u||e.containPoint(i);Object(o["k"])(l.coordSysAxesInfo[t],function(e,t){var r=e.axis,o=Z(c,e);if(!d&&n&&(!c||o)){var a=o&&o.value;null!=a||u||(a=r.pointToData(i)),null!=a&&V(e,a,m,!1,h)}})});var v={};return Object(o["k"])(f,function(e,t){var n=e.linkGroup;n&&!p[t]&&Object(o["k"])(n.axesInfo,function(t,r){var i=p[r];if(t!==e&&i){var o=i.value;n.mapper&&(o=e.axis.scale.parse(n.mapper(o,K(t),K(e)))),v[e.key]=o}})}),Object(o["k"])(v,function(e,t){V(f[t],e,m,!0,h)}),W(p,f,h),H(g,i,e,s),q(f,s,n),h}}function V(e,t,n,r,i){var a=e.axis;if(!a.scale.isBlank()&&a.containData(t))if(e.involveSeries){var s=Y(t,e),l=s.payloadBatch,u=s.snapToValue;l[0]&&null==i.seriesIndex&&Object(o["m"])(i,l[0]),!r&&e.snap&&a.containData(u)&&null!=u&&(t=u),n.showPointer(e,t,l),n.showTooltip(e,s,u)}else n.showPointer(e,t)}function Y(e,t){var n=t.axis,r=n.dim,i=e,a=[],s=Number.MAX_VALUE,l=-1;return Object(o["k"])(t.seriesModels,function(t,u){var c,f,d=t.getData().mapDimensionsAll(r);if(t.getAxisTooltipData){var h=t.getAxisTooltipData(d,e,n);f=h.dataIndices,c=h.nestestValue}else{if(f=t.getData().indicesOfNearest(d[0],e,"category"===n.type?.5:null),!f.length)return;c=t.getData().get(d[0],f[0])}if(null!=c&&isFinite(c)){var p=e-c,g=Math.abs(p);g<=s&&((g=0&&l<0)&&(s=g,l=p,i=c,a.length=0),Object(o["k"])(f,function(e){a.push({seriesIndex:t.seriesIndex,dataIndexInside:e,dataIndex:t.getData().getRawIndex(e)})}))}}),{payloadBatch:a,snapToValue:i}}function G(e,t,n,r){e[t.key]={value:n,payloadBatch:r}}function U(e,t,n,r){var i=n.payloadBatch,o=t.axis,a=o.model,s=t.axisPointerModel;if(t.triggerTooltip&&i.length){var l=t.coordSys.model,u=c["e"](l),f=e.map[u];f||(f=e.map[u]={coordSysId:l.id,coordSysIndex:l.componentIndex,coordSysType:l.type,coordSysMainType:l.mainType,dataByAxis:[]},e.list.push(f)),f.dataByAxis.push({axisDim:o.dim,axisIndex:a.componentIndex,axisType:a.type,axisId:a.id,value:r,valueLabelOpt:{precision:s.get(["label","precision"]),formatter:s.get(["label","formatter"])},seriesDataIndices:i.slice()})}}function W(e,t,n){var r=n.axesInfo=[];Object(o["k"])(t,function(t,n){var i=t.axisPointerModel.option,o=e[n];o?(!t.useHandle&&(i.status="show"),i.value=o.value,i.seriesDataIndices=(o.payloadBatch||[]).slice()):!t.useHandle&&(i.status="hide"),"show"===i.status&&r.push({axisDim:t.axis.dim,axisIndex:t.axis.model.componentIndex,value:i.value})})}function H(e,t,n,r){if(!X(t)&&e.list.length){var i=((e.list[0].dataByAxis[0]||{}).seriesDataIndices||[])[0]||{};r({type:"showTip",escapeConnect:!0,x:t[0],y:t[1],tooltipOption:n.tooltipOption,position:n.position,dataIndexInside:i.dataIndexInside,dataIndex:i.dataIndex,seriesIndex:i.seriesIndex,dataByCoordSys:e.list})}else r({type:"hideTip"})}function q(e,t,n){var r=n.getZr(),i="axisPointerLastHighlights",a=F(r)[i]||{},s=F(r)[i]={};Object(o["k"])(e,function(e,t){var n=e.axisPointerModel.option;"show"===n.status&&Object(o["k"])(n.seriesDataIndices,function(e){var t=e.seriesIndex+" | "+e.dataIndex;s[t]=e})});var l=[],u=[];Object(o["k"])(a,function(e,t){!s[t]&&u.push(e)}),Object(o["k"])(s,function(e,t){!a[t]&&l.push(e)}),u.length&&n.dispatchAction({type:"downplay",escapeConnect:!0,notBlur:!0,batch:u}),l.length&&n.dispatchAction({type:"highlight",escapeConnect:!0,notBlur:!0,batch:l})}function Z(e,t){for(var n=0;n<(e||[]).length;n++){var r=e[n];if(t.axis.dim===r.axisDim&&t.axis.model.componentIndex===r.axisIndex)return r}}function K(e){var t=e.axis.model,n={},r=n.axisDim=e.axis.dim;return n.axisIndex=n[r+"AxisIndex"]=t.componentIndex,n.axisName=n[r+"AxisName"]=t.name,n.axisId=n[r+"AxisId"]=t.id,n}function X(e){return!e||null==e[0]||isNaN(e[0])||null==e[1]||isNaN(e[1])}function Q(e){r["a"].registerAxisPointerClass("CartesianAxisPointer",I),e.registerComponentModel(E),e.registerComponentView(R),e.registerPreprocessor(function(e){if(e){(!e.axisPointer||0===e.axisPointer.length)&&(e.axisPointer={});var t=e.axisPointer.link;t&&!Object(o["s"])(t)&&(e.axisPointer.link=[t])}}),e.registerProcessor(e.PRIORITY.PROCESSOR.STATISTIC,function(e,t){e.getComponent("axisPointer").coordSysAxesInfo=Object(c["a"])(e,t)}),e.registerAction({type:"updateAxisPointer",event:"updateAxisPointer",update:":updateAxisPointer"},B)}n.d(t,"a",function(){return Q})},"rgI+":function(e,t,n){var r=n("e+LU"),i=n("4Vez"),o=n("3m0e"),a="[object Null]",s="[object Undefined]",l=r?r.toStringTag:void 0;function u(e){return null==e?void 0===e?s:a:l&&l in Object(e)?i(e):o(e)}e.exports=u},rzDG:function(e,t,n){"use strict";var r=n("AGgm").isWhiteSpace,i=n("AGgm").isPunctChar,o=n("AGgm").isMdAsciiPunct,a=/['"]/,s=/['"]/g,l="\u2019";function u(e,t,n){return e.substr(0,t)+n+e.substr(t+1)}function c(e,t){var n,a,c,f,d,h,p,g,m,v,y,b,_,x,w,k,O,S,M,C,T;for(M=[],n=0;n=0;O--)if(M[O].level<=p)break;if(M.length=O+1,"text"===a.type){c=a.content,d=0,h=c.length;e:while(d=0)m=c.charCodeAt(f.index-1);else for(O=n-1;O>=0;O--){if("softbreak"===e[O].type||"hardbreak"===e[O].type)break;if(e[O].content){m=e[O].content.charCodeAt(e[O].content.length-1);break}}if(v=32,d=48&&m<=57&&(k=w=!1),w&&k&&(w=y,k=b),w||k){if(k)for(O=M.length-1;O>=0;O--){if(g=M[O],M[O].level=0;t--)"inline"===e.tokens[t].type&&a.test(e.tokens[t].content)&&c(e.tokens[t].children,e)}},sEf8:function(e,t){function n(e){return function(t){return e(t)}}e.exports=n},sEfC:function(e,t,n){var r=n("GoyQ"),i=n("QIyF"),o=n("tLB3"),a="Expected a function",s=Math.max,l=Math.min;function u(e,t,n){var u,c,f,d,h,p,g=0,m=!1,v=!1,y=!0;if("function"!=typeof e)throw new TypeError(a);function b(t){var n=u,r=c;return u=c=void 0,g=t,d=e.apply(r,n),d}function _(e){return g=e,h=setTimeout(k,t),m?b(e):d}function x(e){var n=e-p,r=e-g,i=t-n;return v?l(i,f-r):i}function w(e){var n=e-p,r=e-g;return void 0===p||n>=t||n<0||v&&r>=f}function k(){var e=i();if(w(e))return O(e);h=setTimeout(k,x(e))}function O(e){return h=void 0,y&&u?b(e):(u=c=void 0,d)}function S(){void 0!==h&&clearTimeout(h),g=0,u=p=c=h=void 0}function M(){return void 0===h?d:O(i())}function C(){var e=i(),n=w(e);if(u=arguments,c=this,p=e,n){if(void 0===h)return _(p);if(v)return clearTimeout(h),h=setTimeout(k,t),b(p)}return void 0===h&&(h=setTimeout(k,t)),d}return t=o(t)||0,r(n)&&(m=!!n.leading,v="maxWait"in n,f=v?s(o(n.maxWait)||0,t):f,y="trailing"in n?!!n.trailing:y),C.cancel=S,C.flush=M,C}e.exports=u},"sK/D":function(e,t,n){"use strict";n.d(t,"b",function(){return s}),n.d(t,"c",function(){return l}),n.d(t,"a",function(){return u});var r=n("x6Kt"),i=n("3qvL"),o=n("SqI9"),a=n("OELB");function s(e,t,n,o,a){var s=e.getArea(),l=s.x,u=s.y,c=s.width,f=s.height,d=n.get(["lineStyle","width"])||2;l-=d/2,u-=d/2,c+=d,f+=d,l=Math.floor(l),c=Math.round(c);var h=new r["a"]({shape:{x:l,y:u,width:c,height:f}});if(t){var p=e.getBaseAxis(),g=p.isHorizontal(),m=p.inverse;g?(m&&(h.shape.x+=c),h.shape.width=0):(m||(h.shape.y+=f),h.shape.height=0);var v="function"===typeof a?function(e){a(e,h)}:null;i["c"](h,{shape:{width:c,height:f,x:l,y:u}},n,null,o,v)}return h}function l(e,t,n){var r=e.getArea(),s=Object(a["p"])(r.r0,1),l=Object(a["p"])(r.r,1),u=new o["a"]({shape:{cx:Object(a["p"])(e.cx,1),cy:Object(a["p"])(e.cy,1),r0:s,r:l,startAngle:r.startAngle,endAngle:r.endAngle,clockwise:r.clockwise}});if(t){var c="angle"===e.getBaseAxis().dim;c?u.shape.endAngle=r.startAngle:u.shape.r=s,i["c"](u,{shape:{endAngle:r.endAngle,r:l}},n)}return u}function u(e,t,n,r,i){return e?"polar"===e.type?l(e,t,n):"cartesian2d"===e.type?s(e,t,n,r,i):null:null}},"sS/r":function(e,t,n){"use strict";var r=n("LcXL"),i=n("iRjW"),o=n("Yl7c"),a=function(){function e(){this.group=new r["a"],this.uid=i["c"]("viewComponent")}return e.prototype.init=function(e,t){},e.prototype.render=function(e,t,n,r){},e.prototype.dispose=function(e,t){},e.prototype.updateView=function(e,t,n,r){},e.prototype.updateLayout=function(e,t,n,r){},e.prototype.updateVisual=function(e,t,n,r){},e.prototype.blurSeries=function(e,t){},e}();o["b"](a),o["c"](a),t["a"]=a},shjB:function(e,t){var n=9007199254740991;function r(e){return"number"==typeof e&&e>-1&&e%1==0&&e<=n}e.exports=r},t2Dn:function(e,t,n){var r=n("hypo"),i=n("ljhN");function o(e,t,n){(void 0===n||i(e[t],n))&&(void 0!==n||t in e)||r(e,t,n)}e.exports=o},t9mh:function(e,t,n){"use strict";n.d(t,"b",function(){return a}),n.d(t,"a",function(){return l});var r=n("OELB"),i=n("bYtY"),o=n("7a4p");function a(e,t){var n=t&&t.type;return"ordinal"===n?e:("time"===n&&"number"!==typeof e&&null!=e&&"-"!==e&&(e=+Object(r["l"])(e)),null==e||""===e?NaN:+e)}Object(i["g"])({number:function(e){return parseFloat(e)},time:function(e){return+Object(r["l"])(e)},trim:function(e){return"string"===typeof e?Object(i["Q"])(e):e}});var s={lt:function(e,t){return et},gte:function(e,t){return e>=t}},l=(function(){function e(e,t){if("number"!==typeof t){var n="";0,Object(o["c"])(n)}this._opFn=s[e],this._rvalFloat=Object(r["k"])(t)}e.prototype.evaluate=function(e){return"number"===typeof e?this._opFn(e,this._rvalFloat):this._opFn(Object(r["k"])(e),this._rvalFloat)}}(),function(){function e(e,t){var n="desc"===e;this._resultLT=n?1:-1,null==t&&(t=n?"min":"max"),this._incomparable="min"===t?-1/0:1/0}return e.prototype.evaluate=function(e,t){var n=typeof e,i=typeof t,o="number"===n?e:Object(r["k"])(e),a="number"===i?t:Object(r["k"])(t),s=isNaN(o),l=isNaN(a);if(s&&(o=this._incomparable),l&&(a=this._incomparable),s&&l){var u="string"===n,c="string"===i;u&&(o=c?e:0),c&&(a=u?t:0)}return oa?-this._resultLT:0},e}());(function(){function e(e,t){this._rval=t,this._isEQ=e,this._rvalTypeof=typeof t,this._rvalFloat=Object(r["k"])(t)}e.prototype.evaluate=function(e){var t=e===this._rval;if(!t){var n=typeof e;n===this._rvalTypeof||"number"!==n&&"number"!==this._rvalTypeof||(t=Object(r["k"])(e)===this._rvalFloat)}return this._isEQ?t:!t}})()},tGEx:function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=["minLines","maxLines","readOnly","highlightActiveLine","tabSize","enableBasicAutocompletion","enableLiveAutocompletion","enableSnippets"];t.editorOptions=r;var i=["onChange","onFocus","onInput","onBlur","onCopy","onPaste","onSelectionChange","onCursorChange","onScroll","handleOptions","updateRef"];t.editorEvents=i;var o=function(){var e;return window.ace?(e=window.ace,e.acequire=window.ace.require||window.ace.acequire):e=n("bU/s"),e};t.getAceInstance=o;var a=function(e,t){var n=null;return function(){var r=this,i=arguments;clearTimeout(n),n=setTimeout(function(){e.apply(r,i)},t)}};t.debounce=a},tLB3:function(e,t,n){var r=n("jXQH"),i=n("GoyQ"),o=n("/9aa"),a=NaN,s=/^[-+]0x[0-9a-f]+$/i,l=/^0b[01]+$/i,u=/^0o[0-7]+$/i,c=parseInt;function f(e){if("number"==typeof e)return e;if(o(e))return a;if(i(e)){var t="function"==typeof e.valueOf?e.valueOf():e;e=i(t)?t+"":t}if("string"!=typeof e)return 0===e?e:+e;e=r(e);var n=l.test(e);return n||u.test(e)?c(e.slice(2),n?2:8):s.test(e)?a:+e}e.exports=f},tMB7:function(e,t,n){var r=n("y1pI");function i(e){var t=this.__data__,n=r(t,e);return n<0?void 0:t[n][1]}e.exports=i},u0qK:function(e,t,n){"use strict";var r=/\+-|\.\.|\?\?\?\?|!!!!|,,|--/,i=/\((c|tm|r|p)\)/i,o=/\((c|tm|r|p)\)/gi,a={c:"\xa9",r:"\xae",p:"\xa7",tm:"\u2122"};function s(e,t){return a[t.toLowerCase()]}function l(e){var t,n,r=0;for(t=e.length-1;t>=0;t--)n=e[t],"text"!==n.type||r||(n.content=n.content.replace(o,s)),"link_open"===n.type&&"auto"===n.info&&r--,"link_close"===n.type&&"auto"===n.info&&r++}function u(e){var t,n,i=0;for(t=e.length-1;t>=0;t--)n=e[t],"text"!==n.type||i||r.test(n.content)&&(n.content=n.content.replace(/\+-/g,"\xb1").replace(/\.{2,}/g,"\u2026").replace(/([?!])\u2026/g,"$1..").replace(/([?!]){4,}/g,"$1$1$1").replace(/,{2,}/g,",").replace(/(^|[^-])---(?=[^-]|$)/gm,"$1\u2014").replace(/(^|\s)--(?=\s|$)/gm,"$1\u2013").replace(/(^|[^-\s])--(?=[^-\s]|$)/gm,"$1\u2013")),"link_open"===n.type&&"auto"===n.info&&i--,"link_close"===n.type&&"auto"===n.info&&i++}e.exports=function(e){var t;if(e.md.options.typographer)for(t=e.tokens.length-1;t>=0;t--)"inline"===e.tokens[t].type&&(i.test(e.tokens[t].content)&&l(e.tokens[t].children),r.test(e.tokens[t].content)&&u(e.tokens[t].children))}},u8Dt:function(e,t,n){var r=n("YESw"),i="__lodash_hash_undefined__",o=Object.prototype,a=o.hasOwnProperty;function s(e){var t=this.__data__;if(r){var n=t[e];return n===i?void 0:n}return a.call(t,e)?t[e]:void 0}e.exports=s},ugOi:function(e,t,n){var r=n("kewz"),i="object"==typeof self&&self&&self.Object===Object&&self,o=r||i||Function("return this")();e.exports=o},usqY:function(e,t,n){"use strict";function r(e){switch(e){case 10:case 33:case 35:case 36:case 37:case 38:case 42:case 43:case 45:case 58:case 60:case 61:case 62:case 64:case 91:case 92:case 93:case 94:case 95:case 96:case 123:case 125:case 126:return!0;default:return!1}}e.exports=function(e,t){var n=e.pos;while(nA.length&&A.push(e)}function L(e,t,n,r){var i=typeof e;"undefined"!==i&&"boolean"!==i||(e=null);var s=!1;if(null===e)s=!0;else switch(i){case"string":case"number":s=!0;break;case"object":switch(e.$$typeof){case o:case a:s=!0}}if(s)return n(r,e,""===t?"."+R(e,0):t),1;if(s=0,t=""===t?".":t+":",Array.isArray(e))for(var l=0;l=4)return!1;if(d+3>h)return!1;if(i=e.src.charCodeAt(d),126!==i&&96!==i)return!1;if(l=d,d=e.skipChars(d,i),o=d-l,o<3)return!1;if(c=e.src.slice(l,d),a=e.src.slice(d,h),96===i&&a.indexOf(String.fromCharCode(i))>=0)return!1;if(r)return!0;for(s=t;;){if(s++,s>=n)break;if(d=l=e.bMarks[s]+e.tShift[s],h=e.eMarks[s],d=4)&&(d=e.skipChars(d,i),!(d-l-1&&e%1==0&&e>>0;for(t=0;t0)for(n=0;n<_.length;n++)r=_[n],i=t[r],c(i)||(e[r]=i);return e}function k(e){w(this,e),this._d=new Date(null!=e._d?e._d.getTime():NaN),this.isValid()||(this._d=new Date(NaN)),!1===x&&(x=!0,i.updateOffset(this),x=!1)}function O(e){return e instanceof k||null!=e&&null!=e._isAMomentObject}function S(e){!1===i.suppressDeprecationWarnings&&"undefined"!==typeof console&&console.warn&&console.warn("Deprecation warning: "+e)}function M(e,t){var n=!0;return p(function(){if(null!=i.deprecationHandler&&i.deprecationHandler(null,e),n){var r,o,a,s=[];for(o=0;o=0;return(o?n?"+":"":"-")+Math.pow(10,Math.max(0,i)).toString().substr(1)+r}var R=/(\[[^\[]*\])|(\\)?([Hh]mm(ss)?|Mo|MM?M?M?|Do|DDDo|DD?D?D?|ddd?d?|do?|w[o|w]?|W[o|W]?|Qo?|N{1,5}|YYYYYY|YYYYY|YYYY|YY|y{2,4}|yo?|gg(ggg?)?|GG(GGG?)?|e|E|a|A|hh?|HH?|kk?|mm?|ss?|S{1,9}|x|X|zz?|ZZ?|.)/g,z=/(\[[^\[]*\])|(\\)?(LTS|LT|LL?L?L?|l{1,4})/g,F={},B={};function V(e,t,n,r){var i=r;"string"===typeof r&&(i=function(){return this[r]()}),e&&(B[e]=i),t&&(B[t[0]]=function(){return N(i.apply(this,arguments),t[1],t[2])}),n&&(B[n]=function(){return this.localeData().ordinal(i.apply(this,arguments),e)})}function Y(e){return e.match(/\[[\s\S]/)?e.replace(/^\[|\]$/g,""):e.replace(/\\/g,"")}function G(e){var t,n,r=e.match(R);for(t=0,n=r.length;t=0&&z.test(e))e=e.replace(z,r),z.lastIndex=0,n-=1;return e}var H={LTS:"h:mm:ss A",LT:"h:mm A",L:"MM/DD/YYYY",LL:"MMMM D, YYYY",LLL:"MMMM D, YYYY h:mm A",LLLL:"dddd, MMMM D, YYYY h:mm A"};function q(e){var t=this._longDateFormat[e],n=this._longDateFormat[e.toUpperCase()];return t||!n?t:(this._longDateFormat[e]=n.match(R).map(function(e){return"MMMM"===e||"MM"===e||"DD"===e||"dddd"===e?e.slice(1):e}).join(""),this._longDateFormat[e])}var Z="Invalid date";function K(){return this._invalidDate}var X="%d",Q=/\d{1,2}/;function $(e){return this._ordinal.replace("%d",e)}var J={future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",w:"a week",ww:"%d weeks",M:"a month",MM:"%d months",y:"a year",yy:"%d years"};function ee(e,t,n,r){var i=this._relativeTime[n];return I(i)?i(e,t,n,r):i.replace(/%d/i,e)}function te(e,t){var n=this._relativeTime[e>0?"future":"past"];return I(n)?n(t):n.replace(/%s/i,t)}var ne={};function re(e,t){var n=e.toLowerCase();ne[n]=ne[n+"s"]=ne[t]=e}function ie(e){return"string"===typeof e?ne[e]||ne[e.toLowerCase()]:void 0}function oe(e){var t,n,r={};for(n in e)l(e,n)&&(t=ie(n),t&&(r[t]=e[n]));return r}var ae={};function se(e,t){ae[e]=t}function le(e){var t,n=[];for(t in e)l(e,t)&&n.push({unit:t,priority:ae[t]});return n.sort(function(e,t){return e.priority-t.priority}),n}function ue(e){return e%4===0&&e%100!==0||e%400===0}function ce(e){return e<0?Math.ceil(e)||0:Math.floor(e)}function fe(e){var t=+e,n=0;return 0!==t&&isFinite(t)&&(n=ce(t)),n}function de(e,t){return function(n){return null!=n?(pe(this,e,n),i.updateOffset(this,t),this):he(this,e)}}function he(e,t){return e.isValid()?e._d["get"+(e._isUTC?"UTC":"")+t]():NaN}function pe(e,t,n){e.isValid()&&!isNaN(n)&&("FullYear"===t&&ue(e.year())&&1===e.month()&&29===e.date()?(n=fe(n),e._d["set"+(e._isUTC?"UTC":"")+t](n,e.month(),et(n,e.month()))):e._d["set"+(e._isUTC?"UTC":"")+t](n))}function ge(e){return e=ie(e),I(this[e])?this[e]():this}function me(e,t){if("object"===typeof e){e=oe(e);var n,r=le(e);for(n=0;n68?1900:2e3)};var vt=de("FullYear",!0);function yt(){return ue(this.year())}function bt(e,t,n,r,i,o,a){var s;return e<100&&e>=0?(s=new Date(e+400,t,n,r,i,o,a),isFinite(s.getFullYear())&&s.setFullYear(e)):s=new Date(e,t,n,r,i,o,a),s}function _t(e){var t,n;return e<100&&e>=0?(n=Array.prototype.slice.call(arguments),n[0]=e+400,t=new Date(Date.UTC.apply(null,n)),isFinite(t.getUTCFullYear())&&t.setUTCFullYear(e)):t=new Date(Date.UTC.apply(null,arguments)),t}function xt(e,t,n){var r=7+t-n,i=(7+_t(e,0,r).getUTCDay()-t)%7;return-i+r-1}function wt(e,t,n,r,i){var o,a,s=(7+n-r)%7,l=xt(e,r,i),u=1+7*(t-1)+s+l;return u<=0?(o=e-1,a=mt(o)+u):u>mt(e)?(o=e+1,a=u-mt(e)):(o=e,a=u),{year:o,dayOfYear:a}}function kt(e,t,n){var r,i,o=xt(e.year(),t,n),a=Math.floor((e.dayOfYear()-o-1)/7)+1;return a<1?(i=e.year()-1,r=a+Ot(i,t,n)):a>Ot(e.year(),t,n)?(r=a-Ot(e.year(),t,n),i=e.year()+1):(i=e.year(),r=a),{week:r,year:i}}function Ot(e,t,n){var r=xt(e,t,n),i=xt(e+1,t,n);return(mt(e)-r+i)/7}function St(e){return kt(e,this._week.dow,this._week.doy).week}V("w",["ww",2],"wo","week"),V("W",["WW",2],"Wo","isoWeek"),re("week","w"),re("isoWeek","W"),se("week",5),se("isoWeek",5),Le("w",ke),Le("ww",ke,be),Le("W",ke),Le("WW",ke,be),Ve(["w","ww","W","WW"],function(e,t,n,r){t[r.substr(0,1)]=fe(e)});var Mt={dow:0,doy:6};function Ct(){return this._week.dow}function Tt(){return this._week.doy}function jt(e){var t=this.localeData().week(this);return null==e?t:this.add(7*(e-t),"d")}function It(e){var t=kt(this,1,4).week;return null==e?t:this.add(7*(e-t),"d")}function Dt(e,t){return"string"!==typeof e?e:isNaN(e)?(e=t.weekdaysParse(e),"number"===typeof e?e:null):parseInt(e,10)}function At(e,t){return"string"===typeof e?t.weekdaysParse(e)%7||7:isNaN(e)?null:e}function Et(e,t){return e.slice(t,7).concat(e.slice(0,t))}V("d",0,"do","day"),V("dd",0,0,function(e){return this.localeData().weekdaysMin(this,e)}),V("ddd",0,0,function(e){return this.localeData().weekdaysShort(this,e)}),V("dddd",0,0,function(e){return this.localeData().weekdays(this,e)}),V("e",0,0,"weekday"),V("E",0,0,"isoWeekday"),re("day","d"),re("weekday","e"),re("isoWeekday","E"),se("day",11),se("weekday",11),se("isoWeekday",11),Le("d",ke),Le("e",ke),Le("E",ke),Le("dd",function(e,t){return t.weekdaysMinRegex(e)}),Le("ddd",function(e,t){return t.weekdaysShortRegex(e)}),Le("dddd",function(e,t){return t.weekdaysRegex(e)}),Ve(["dd","ddd","dddd"],function(e,t,n,r){var i=n._locale.weekdaysParse(e,r,n._strict);null!=i?t.d=i:v(n).invalidWeekday=e}),Ve(["d","e","E"],function(e,t,n,r){t[r]=fe(e)});var Pt="Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),Lt="Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),Nt="Su_Mo_Tu_We_Th_Fr_Sa".split("_"),Rt=Pe,zt=Pe,Ft=Pe;function Bt(e,t){var n=a(this._weekdays)?this._weekdays:this._weekdays[e&&!0!==e&&this._weekdays.isFormat.test(t)?"format":"standalone"];return!0===e?Et(n,this._week.dow):e?n[e.day()]:n}function Vt(e){return!0===e?Et(this._weekdaysShort,this._week.dow):e?this._weekdaysShort[e.day()]:this._weekdaysShort}function Yt(e){return!0===e?Et(this._weekdaysMin,this._week.dow):e?this._weekdaysMin[e.day()]:this._weekdaysMin}function Gt(e,t,n){var r,i,o,a=e.toLocaleLowerCase();if(!this._weekdaysParse)for(this._weekdaysParse=[],this._shortWeekdaysParse=[],this._minWeekdaysParse=[],r=0;r<7;++r)o=g([2e3,1]).day(r),this._minWeekdaysParse[r]=this.weekdaysMin(o,"").toLocaleLowerCase(),this._shortWeekdaysParse[r]=this.weekdaysShort(o,"").toLocaleLowerCase(),this._weekdaysParse[r]=this.weekdays(o,"").toLocaleLowerCase();return n?"dddd"===t?(i=Ge.call(this._weekdaysParse,a),-1!==i?i:null):"ddd"===t?(i=Ge.call(this._shortWeekdaysParse,a),-1!==i?i:null):(i=Ge.call(this._minWeekdaysParse,a),-1!==i?i:null):"dddd"===t?(i=Ge.call(this._weekdaysParse,a),-1!==i?i:(i=Ge.call(this._shortWeekdaysParse,a),-1!==i?i:(i=Ge.call(this._minWeekdaysParse,a),-1!==i?i:null))):"ddd"===t?(i=Ge.call(this._shortWeekdaysParse,a),-1!==i?i:(i=Ge.call(this._weekdaysParse,a),-1!==i?i:(i=Ge.call(this._minWeekdaysParse,a),-1!==i?i:null))):(i=Ge.call(this._minWeekdaysParse,a),-1!==i?i:(i=Ge.call(this._weekdaysParse,a),-1!==i?i:(i=Ge.call(this._shortWeekdaysParse,a),-1!==i?i:null)))}function Ut(e,t,n){var r,i,o;if(this._weekdaysParseExact)return Gt.call(this,e,t,n);for(this._weekdaysParse||(this._weekdaysParse=[],this._minWeekdaysParse=[],this._shortWeekdaysParse=[],this._fullWeekdaysParse=[]),r=0;r<7;r++){if(i=g([2e3,1]).day(r),n&&!this._fullWeekdaysParse[r]&&(this._fullWeekdaysParse[r]=new RegExp("^"+this.weekdays(i,"").replace(".","\\.?")+"$","i"),this._shortWeekdaysParse[r]=new RegExp("^"+this.weekdaysShort(i,"").replace(".","\\.?")+"$","i"),this._minWeekdaysParse[r]=new RegExp("^"+this.weekdaysMin(i,"").replace(".","\\.?")+"$","i")),this._weekdaysParse[r]||(o="^"+this.weekdays(i,"")+"|^"+this.weekdaysShort(i,"")+"|^"+this.weekdaysMin(i,""),this._weekdaysParse[r]=new RegExp(o.replace(".",""),"i")),n&&"dddd"===t&&this._fullWeekdaysParse[r].test(e))return r;if(n&&"ddd"===t&&this._shortWeekdaysParse[r].test(e))return r;if(n&&"dd"===t&&this._minWeekdaysParse[r].test(e))return r;if(!n&&this._weekdaysParse[r].test(e))return r}}function Wt(e){if(!this.isValid())return null!=e?this:NaN;var t=this._isUTC?this._d.getUTCDay():this._d.getDay();return null!=e?(e=Dt(e,this.localeData()),this.add(e-t,"d")):t}function Ht(e){if(!this.isValid())return null!=e?this:NaN;var t=(this.day()+7-this.localeData()._week.dow)%7;return null==e?t:this.add(e-t,"d")}function qt(e){if(!this.isValid())return null!=e?this:NaN;if(null!=e){var t=At(e,this.localeData());return this.day(this.day()%7?t:t-7)}return this.day()||7}function Zt(e){return this._weekdaysParseExact?(l(this,"_weekdaysRegex")||Qt.call(this),e?this._weekdaysStrictRegex:this._weekdaysRegex):(l(this,"_weekdaysRegex")||(this._weekdaysRegex=Rt),this._weekdaysStrictRegex&&e?this._weekdaysStrictRegex:this._weekdaysRegex)}function Kt(e){return this._weekdaysParseExact?(l(this,"_weekdaysRegex")||Qt.call(this),e?this._weekdaysShortStrictRegex:this._weekdaysShortRegex):(l(this,"_weekdaysShortRegex")||(this._weekdaysShortRegex=zt),this._weekdaysShortStrictRegex&&e?this._weekdaysShortStrictRegex:this._weekdaysShortRegex)}function Xt(e){return this._weekdaysParseExact?(l(this,"_weekdaysRegex")||Qt.call(this),e?this._weekdaysMinStrictRegex:this._weekdaysMinRegex):(l(this,"_weekdaysMinRegex")||(this._weekdaysMinRegex=Ft),this._weekdaysMinStrictRegex&&e?this._weekdaysMinStrictRegex:this._weekdaysMinRegex)}function Qt(){function e(e,t){return t.length-e.length}var t,n,r,i,o,a=[],s=[],l=[],u=[];for(t=0;t<7;t++)n=g([2e3,1]).day(t),r=ze(this.weekdaysMin(n,"")),i=ze(this.weekdaysShort(n,"")),o=ze(this.weekdays(n,"")),a.push(r),s.push(i),l.push(o),u.push(r),u.push(i),u.push(o);a.sort(e),s.sort(e),l.sort(e),u.sort(e),this._weekdaysRegex=new RegExp("^("+u.join("|")+")","i"),this._weekdaysShortRegex=this._weekdaysRegex,this._weekdaysMinRegex=this._weekdaysRegex,this._weekdaysStrictRegex=new RegExp("^("+l.join("|")+")","i"),this._weekdaysShortStrictRegex=new RegExp("^("+s.join("|")+")","i"),this._weekdaysMinStrictRegex=new RegExp("^("+a.join("|")+")","i")}function $t(){return this.hours()%12||12}function Jt(){return this.hours()||24}function en(e,t){V(e,0,0,function(){return this.localeData().meridiem(this.hours(),this.minutes(),t)})}function tn(e,t){return t._meridiemParse}function nn(e){return"p"===(e+"").toLowerCase().charAt(0)}V("H",["HH",2],0,"hour"),V("h",["hh",2],0,$t),V("k",["kk",2],0,Jt),V("hmm",0,0,function(){return""+$t.apply(this)+N(this.minutes(),2)}),V("hmmss",0,0,function(){return""+$t.apply(this)+N(this.minutes(),2)+N(this.seconds(),2)}),V("Hmm",0,0,function(){return""+this.hours()+N(this.minutes(),2)}),V("Hmmss",0,0,function(){return""+this.hours()+N(this.minutes(),2)+N(this.seconds(),2)}),en("a",!0),en("A",!1),re("hour","h"),se("hour",13),Le("a",tn),Le("A",tn),Le("H",ke),Le("h",ke),Le("k",ke),Le("HH",ke,be),Le("hh",ke,be),Le("kk",ke,be),Le("hmm",Oe),Le("hmmss",Se),Le("Hmm",Oe),Le("Hmmss",Se),Be(["H","HH"],qe),Be(["k","kk"],function(e,t,n){var r=fe(e);t[qe]=24===r?0:r}),Be(["a","A"],function(e,t,n){n._isPm=n._locale.isPM(e),n._meridiem=e}),Be(["h","hh"],function(e,t,n){t[qe]=fe(e),v(n).bigHour=!0}),Be("hmm",function(e,t,n){var r=e.length-2;t[qe]=fe(e.substr(0,r)),t[Ze]=fe(e.substr(r)),v(n).bigHour=!0}),Be("hmmss",function(e,t,n){var r=e.length-4,i=e.length-2;t[qe]=fe(e.substr(0,r)),t[Ze]=fe(e.substr(r,2)),t[Ke]=fe(e.substr(i)),v(n).bigHour=!0}),Be("Hmm",function(e,t,n){var r=e.length-2;t[qe]=fe(e.substr(0,r)),t[Ze]=fe(e.substr(r))}),Be("Hmmss",function(e,t,n){var r=e.length-4,i=e.length-2;t[qe]=fe(e.substr(0,r)),t[Ze]=fe(e.substr(r,2)),t[Ke]=fe(e.substr(i))});var rn=/[ap]\.?m?\.?/i,on=de("Hours",!0);function an(e,t,n){return e>11?n?"pm":"PM":n?"am":"AM"}var sn,ln={calendar:P,longDateFormat:H,invalidDate:Z,ordinal:X,dayOfMonthOrdinalParse:Q,relativeTime:J,months:tt,monthsShort:nt,week:Mt,weekdays:Pt,weekdaysMin:Nt,weekdaysShort:Lt,meridiemParse:rn},un={},cn={};function fn(e,t){var n,r=Math.min(e.length,t.length);for(n=0;n0){if(r=pn(i.slice(0,t).join("-")),r)return r;if(n&&n.length>=t&&fn(i,n)>=t-1)break;t--}o++}return sn}function pn(n){var r=null;if(void 0===un[n]&&"undefined"!==typeof e&&e&&e.exports)try{r=sn._abbr,t,function(){var e=new Error("Cannot find module 'undefined'");throw e.code="MODULE_NOT_FOUND",e}(),gn(r)}catch(e){un[n]=null}return un[n]}function gn(e,t){var n;return e&&(n=c(t)?yn(e):mn(e,t),n?sn=n:"undefined"!==typeof console&&console.warn&&console.warn("Locale "+e+" not found. Did you forget to load it?")),sn._abbr}function mn(e,t){if(null!==t){var n,r=ln;if(t.abbr=e,null!=un[e])j("defineLocaleOverride","use moment.updateLocale(localeName, config) to change an existing locale. moment.defineLocale(localeName, config) should only be used for creating a new locale See http://momentjs.com/guides/#/warnings/define-locale/ for more info."),r=un[e]._config;else if(null!=t.parentLocale)if(null!=un[t.parentLocale])r=un[t.parentLocale]._config;else{if(n=pn(t.parentLocale),null==n)return cn[t.parentLocale]||(cn[t.parentLocale]=[]),cn[t.parentLocale].push({name:e,config:t}),null;r=n._config}return un[e]=new E(A(r,t)),cn[e]&&cn[e].forEach(function(e){mn(e.name,e.config)}),gn(e),un[e]}return delete un[e],null}function vn(e,t){if(null!=t){var n,r,i=ln;null!=un[e]&&null!=un[e].parentLocale?un[e].set(A(un[e]._config,t)):(r=pn(e),null!=r&&(i=r._config),t=A(i,t),null==r&&(t.abbr=e),n=new E(t),n.parentLocale=un[e],un[e]=n),gn(e)}else null!=un[e]&&(null!=un[e].parentLocale?(un[e]=un[e].parentLocale,e===gn()&&gn(e)):null!=un[e]&&delete un[e]);return un[e]}function yn(e){var t;if(e&&e._locale&&e._locale._abbr&&(e=e._locale._abbr),!e)return sn;if(!a(e)){if(t=pn(e),t)return t;e=[e]}return hn(e)}function bn(){return C(un)}function _n(e){var t,n=e._a;return n&&-2===v(e).overflow&&(t=n[We]<0||n[We]>11?We:n[He]<1||n[He]>et(n[Ue],n[We])?He:n[qe]<0||n[qe]>24||24===n[qe]&&(0!==n[Ze]||0!==n[Ke]||0!==n[Xe])?qe:n[Ze]<0||n[Ze]>59?Ze:n[Ke]<0||n[Ke]>59?Ke:n[Xe]<0||n[Xe]>999?Xe:-1,v(e)._overflowDayOfYear&&(tHe)&&(t=He),v(e)._overflowWeeks&&-1===t&&(t=Qe),v(e)._overflowWeekday&&-1===t&&(t=$e),v(e).overflow=t),e}var xn=/^\s*((?:[+-]\d{6}|\d{4})-(?:\d\d-\d\d|W\d\d-\d|W\d\d|\d\d\d|\d\d))(?:(T| )(\d\d(?::\d\d(?::\d\d(?:[.,]\d+)?)?)?)([+-]\d\d(?::?\d\d)?|\s*Z)?)?$/,wn=/^\s*((?:[+-]\d{6}|\d{4})(?:\d\d\d\d|W\d\d\d|W\d\d|\d\d\d|\d\d|))(?:(T| )(\d\d(?:\d\d(?:\d\d(?:[.,]\d+)?)?)?)([+-]\d\d(?::?\d\d)?|\s*Z)?)?$/,kn=/Z|[+-]\d\d(?::?\d\d)?/,On=[["YYYYYY-MM-DD",/[+-]\d{6}-\d\d-\d\d/],["YYYY-MM-DD",/\d{4}-\d\d-\d\d/],["GGGG-[W]WW-E",/\d{4}-W\d\d-\d/],["GGGG-[W]WW",/\d{4}-W\d\d/,!1],["YYYY-DDD",/\d{4}-\d{3}/],["YYYY-MM",/\d{4}-\d\d/,!1],["YYYYYYMMDD",/[+-]\d{10}/],["YYYYMMDD",/\d{8}/],["GGGG[W]WWE",/\d{4}W\d{3}/],["GGGG[W]WW",/\d{4}W\d{2}/,!1],["YYYYDDD",/\d{7}/],["YYYYMM",/\d{6}/,!1],["YYYY",/\d{4}/,!1]],Sn=[["HH:mm:ss.SSSS",/\d\d:\d\d:\d\d\.\d+/],["HH:mm:ss,SSSS",/\d\d:\d\d:\d\d,\d+/],["HH:mm:ss",/\d\d:\d\d:\d\d/],["HH:mm",/\d\d:\d\d/],["HHmmss.SSSS",/\d\d\d\d\d\d\.\d+/],["HHmmss,SSSS",/\d\d\d\d\d\d,\d+/],["HHmmss",/\d\d\d\d\d\d/],["HHmm",/\d\d\d\d/],["HH",/\d\d/]],Mn=/^\/?Date\((-?\d+)/i,Cn=/^(?:(Mon|Tue|Wed|Thu|Fri|Sat|Sun),?\s)?(\d{1,2})\s(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)\s(\d{2,4})\s(\d\d):(\d\d)(?::(\d\d))?\s(?:(UT|GMT|[ECMP][SD]T)|([Zz])|([+-]\d{4}))$/,Tn={UT:0,GMT:0,EDT:-240,EST:-300,CDT:-300,CST:-360,MDT:-360,MST:-420,PDT:-420,PST:-480};function jn(e){var t,n,r,i,o,a,s=e._i,l=xn.exec(s)||wn.exec(s);if(l){for(v(e).iso=!0,t=0,n=On.length;tmt(o)||0===e._dayOfYear)&&(v(e)._overflowDayOfYear=!0),n=_t(o,0,e._dayOfYear),e._a[We]=n.getUTCMonth(),e._a[He]=n.getUTCDate()),t=0;t<3&&null==e._a[t];++t)e._a[t]=a[t]=r[t];for(;t<7;t++)e._a[t]=a[t]=null==e._a[t]?2===t?1:0:e._a[t];24===e._a[qe]&&0===e._a[Ze]&&0===e._a[Ke]&&0===e._a[Xe]&&(e._nextDay=!0,e._a[qe]=0),e._d=(e._useUTC?_t:bt).apply(null,a),i=e._useUTC?e._d.getUTCDay():e._d.getDay(),null!=e._tzm&&e._d.setUTCMinutes(e._d.getUTCMinutes()-e._tzm),e._nextDay&&(e._a[qe]=24),e._w&&"undefined"!==typeof e._w.d&&e._w.d!==i&&(v(e).weekdayMismatch=!0)}}function Bn(e){var t,n,r,i,o,a,s,l,u;t=e._w,null!=t.GG||null!=t.W||null!=t.E?(o=1,a=4,n=Rn(t.GG,e._a[Ue],kt(Kn(),1,4).year),r=Rn(t.W,1),i=Rn(t.E,1),(i<1||i>7)&&(l=!0)):(o=e._locale._week.dow,a=e._locale._week.doy,u=kt(Kn(),o,a),n=Rn(t.gg,e._a[Ue],u.year),r=Rn(t.w,u.week),null!=t.d?(i=t.d,(i<0||i>6)&&(l=!0)):null!=t.e?(i=t.e+o,(t.e<0||t.e>6)&&(l=!0)):i=o),r<1||r>Ot(n,o,a)?v(e)._overflowWeeks=!0:null!=l?v(e)._overflowWeekday=!0:(s=wt(n,r,i,o,a),e._a[Ue]=s.year,e._dayOfYear=s.dayOfYear)}function Vn(e){if(e._f!==i.ISO_8601)if(e._f!==i.RFC_2822){e._a=[],v(e).empty=!0;var t,n,r,o,a,s,l=""+e._i,u=l.length,c=0;for(r=W(e._f,e._locale).match(R)||[],t=0;t0&&v(e).unusedInput.push(a),l=l.slice(l.indexOf(n)+n.length),c+=n.length),B[o]?(n?v(e).empty=!1:v(e).unusedTokens.push(o),Ye(o,n,e)):e._strict&&!n&&v(e).unusedTokens.push(o);v(e).charsLeftOver=u-c,l.length>0&&v(e).unusedInput.push(l),e._a[qe]<=12&&!0===v(e).bigHour&&e._a[qe]>0&&(v(e).bigHour=void 0),v(e).parsedDateParts=e._a.slice(0),v(e).meridiem=e._meridiem,e._a[qe]=Yn(e._locale,e._a[qe],e._meridiem),s=v(e).era,null!==s&&(e._a[Ue]=e._locale.erasConvertYear(s,e._a[Ue])),Fn(e),_n(e)}else Ln(e);else jn(e)}function Yn(e,t,n){var r;return null==n?t:null!=e.meridiemHour?e.meridiemHour(t,n):null!=e.isPM?(r=e.isPM(n),r&&t<12&&(t+=12),r||12!==t||(t=0),t):t}function Gn(e){var t,n,r,i,o,a,s=!1;if(0===e._f.length)return v(e).invalidFormat=!0,void(e._d=new Date(NaN));for(i=0;ithis?this:e:b()});function $n(e,t){var n,r;if(1===t.length&&a(t[0])&&(t=t[0]),!t.length)return Kn();for(n=t[0],r=1;rthis.clone().month(0).utcOffset()||this.utcOffset()>this.clone().month(5).utcOffset()}function wr(){if(!c(this._isDSTShifted))return this._isDSTShifted;var e,t={};return w(t,this),t=Hn(t),t._a?(e=t._isUTC?g(t._a):Kn(t._a),this._isDSTShifted=this.isValid()&&ur(t._a,e.toArray())>0):this._isDSTShifted=!1,this._isDSTShifted}function kr(){return!!this.isValid()&&!this._isUTC}function Or(){return!!this.isValid()&&this._isUTC}function Sr(){return!!this.isValid()&&(this._isUTC&&0===this._offset)}i.updateOffset=function(){};var Mr=/^(-|\+)?(?:(\d*)[. ])?(\d+):(\d+)(?::(\d+)(\.\d*)?)?$/,Cr=/^(-|\+)?P(?:([-+]?[0-9,.]*)Y)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)W)?(?:([-+]?[0-9,.]*)D)?(?:T(?:([-+]?[0-9,.]*)H)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)S)?)?$/;function Tr(e,t){var n,r,i,o=e,a=null;return sr(e)?o={ms:e._milliseconds,d:e._days,M:e._months}:f(e)||!isNaN(+e)?(o={},t?o[t]=+e:o.milliseconds=+e):(a=Mr.exec(e))?(n="-"===a[1]?-1:1,o={y:0,d:fe(a[He])*n,h:fe(a[qe])*n,m:fe(a[Ze])*n,s:fe(a[Ke])*n,ms:fe(lr(1e3*a[Xe]))*n}):(a=Cr.exec(e))?(n="-"===a[1]?-1:1,o={y:jr(a[2],n),M:jr(a[3],n),w:jr(a[4],n),d:jr(a[5],n),h:jr(a[6],n),m:jr(a[7],n),s:jr(a[8],n)}):null==o?o={}:"object"===typeof o&&("from"in o||"to"in o)&&(i=Dr(Kn(o.from),Kn(o.to)),o={},o.ms=i.milliseconds,o.M=i.months),r=new ar(o),sr(e)&&l(e,"_locale")&&(r._locale=e._locale),sr(e)&&l(e,"_isValid")&&(r._isValid=e._isValid),r}function jr(e,t){var n=e&&parseFloat(e.replace(",","."));return(isNaN(n)?0:n)*t}function Ir(e,t){var n={};return n.months=t.month()-e.month()+12*(t.year()-e.year()),e.clone().add(n.months,"M").isAfter(t)&&--n.months,n.milliseconds=+t-+e.clone().add(n.months,"M"),n}function Dr(e,t){var n;return e.isValid()&&t.isValid()?(t=hr(t,e),e.isBefore(t)?n=Ir(e,t):(n=Ir(t,e),n.milliseconds=-n.milliseconds,n.months=-n.months),n):{milliseconds:0,months:0}}function Ar(e,t){return function(n,r){var i,o;return null===r||isNaN(+r)||(j(t,"moment()."+t+"(period, number) is deprecated. Please use moment()."+t+"(number, period). See http://momentjs.com/guides/#/warnings/add-inverted-param/ for more info."),o=n,n=r,r=o),i=Tr(n,r),Er(this,i,e),this}}function Er(e,t,n,r){var o=t._milliseconds,a=lr(t._days),s=lr(t._months);e.isValid()&&(r=null==r||r,s&&ct(e,he(e,"Month")+s*n),a&&pe(e,"Date",he(e,"Date")+a*n),o&&e._d.setTime(e._d.valueOf()+o*n),r&&i.updateOffset(e,a||s))}Tr.fn=ar.prototype,Tr.invalid=or;var Pr=Ar(1,"add"),Lr=Ar(-1,"subtract");function Nr(e){return"string"===typeof e||e instanceof String}function Rr(e){return O(e)||d(e)||Nr(e)||f(e)||Fr(e)||zr(e)||null===e||void 0===e}function zr(e){var t,n,r=s(e)&&!u(e),i=!1,o=["years","year","y","months","month","M","days","day","d","dates","date","D","hours","hour","h","minutes","minute","m","seconds","second","s","milliseconds","millisecond","ms"];for(t=0;tn.valueOf():n.valueOf()9999?U(n,t?"YYYYYY-MM-DD[T]HH:mm:ss.SSS[Z]":"YYYYYY-MM-DD[T]HH:mm:ss.SSSZ"):I(Date.prototype.toISOString)?t?this.toDate().toISOString():new Date(this.valueOf()+60*this.utcOffset()*1e3).toISOString().replace("Z",U(n,"Z")):U(n,t?"YYYY-MM-DD[T]HH:mm:ss.SSS[Z]":"YYYY-MM-DD[T]HH:mm:ss.SSSZ")}function ei(){if(!this.isValid())return"moment.invalid(/* "+this._i+" */)";var e,t,n,r,i="moment",o="";return this.isLocal()||(i=0===this.utcOffset()?"moment.utc":"moment.parseZone",o="Z"),e="["+i+'("]',t=0<=this.year()&&this.year()<=9999?"YYYY":"YYYYYY",n="-MM-DD[T]HH:mm:ss.SSS",r=o+'[")]',this.format(e+t+n+r)}function ti(e){e||(e=this.isUtc()?i.defaultFormatUtc:i.defaultFormat);var t=U(this,e);return this.localeData().postformat(t)}function ni(e,t){return this.isValid()&&(O(e)&&e.isValid()||Kn(e).isValid())?Tr({to:this,from:e}).locale(this.locale()).humanize(!t):this.localeData().invalidDate()}function ri(e){return this.from(Kn(),e)}function ii(e,t){return this.isValid()&&(O(e)&&e.isValid()||Kn(e).isValid())?Tr({from:this,to:e}).locale(this.locale()).humanize(!t):this.localeData().invalidDate()}function oi(e){return this.to(Kn(),e)}function ai(e){var t;return void 0===e?this._locale._abbr:(t=yn(e),null!=t&&(this._locale=t),this)}i.defaultFormat="YYYY-MM-DDTHH:mm:ssZ",i.defaultFormatUtc="YYYY-MM-DDTHH:mm:ss[Z]";var si=M("moment().lang() is deprecated. Instead, use moment().localeData() to get the language configuration. Use moment().locale() to change languages.",function(e){return void 0===e?this.localeData():this.locale(e)});function li(){return this._locale}var ui=1e3,ci=60*ui,fi=60*ci,di=3506328*fi;function hi(e,t){return(e%t+t)%t}function pi(e,t,n){return e<100&&e>=0?new Date(e+400,t,n)-di:new Date(e,t,n).valueOf()}function gi(e,t,n){return e<100&&e>=0?Date.UTC(e+400,t,n)-di:Date.UTC(e,t,n)}function mi(e){var t,n;if(e=ie(e),void 0===e||"millisecond"===e||!this.isValid())return this;switch(n=this._isUTC?gi:pi,e){case"year":t=n(this.year(),0,1);break;case"quarter":t=n(this.year(),this.month()-this.month()%3,1);break;case"month":t=n(this.year(),this.month(),1);break;case"week":t=n(this.year(),this.month(),this.date()-this.weekday());break;case"isoWeek":t=n(this.year(),this.month(),this.date()-(this.isoWeekday()-1));break;case"day":case"date":t=n(this.year(),this.month(),this.date());break;case"hour":t=this._d.valueOf(),t-=hi(t+(this._isUTC?0:this.utcOffset()*ci),fi);break;case"minute":t=this._d.valueOf(),t-=hi(t,ci);break;case"second":t=this._d.valueOf(),t-=hi(t,ui);break}return this._d.setTime(t),i.updateOffset(this,!0),this}function vi(e){var t,n;if(e=ie(e),void 0===e||"millisecond"===e||!this.isValid())return this;switch(n=this._isUTC?gi:pi,e){case"year":t=n(this.year()+1,0,1)-1;break;case"quarter":t=n(this.year(),this.month()-this.month()%3+3,1)-1;break;case"month":t=n(this.year(),this.month()+1,1)-1;break;case"week":t=n(this.year(),this.month(),this.date()-this.weekday()+7)-1;break;case"isoWeek":t=n(this.year(),this.month(),this.date()-(this.isoWeekday()-1)+7)-1;break;case"day":case"date":t=n(this.year(),this.month(),this.date()+1)-1;break;case"hour":t=this._d.valueOf(),t+=fi-hi(t+(this._isUTC?0:this.utcOffset()*ci),fi)-1;break;case"minute":t=this._d.valueOf(),t+=ci-hi(t,ci)-1;break;case"second":t=this._d.valueOf(),t+=ui-hi(t,ui)-1;break}return this._d.setTime(t),i.updateOffset(this,!0),this}function yi(){return this._d.valueOf()-6e4*(this._offset||0)}function bi(){return Math.floor(this.valueOf()/1e3)}function _i(){return new Date(this.valueOf())}function xi(){var e=this;return[e.year(),e.month(),e.date(),e.hour(),e.minute(),e.second(),e.millisecond()]}function wi(){var e=this;return{years:e.year(),months:e.month(),date:e.date(),hours:e.hours(),minutes:e.minutes(),seconds:e.seconds(),milliseconds:e.milliseconds()}}function ki(){return this.isValid()?this.toISOString():null}function Oi(){return y(this)}function Si(){return p({},v(this))}function Mi(){return v(this).overflow}function Ci(){return{input:this._i,format:this._f,locale:this._locale,isUTC:this._isUTC,strict:this._strict}}function Ti(e,t){var n,r,o,a=this._eras||yn("en")._eras;for(n=0,r=a.length;n=0)return l[r]}function Ii(e,t){var n=e.since<=e.until?1:-1;return void 0===t?i(e.since).year():i(e.since).year()+(t-e.offset)*n}function Di(){var e,t,n,r=this.localeData().eras();for(e=0,t=r.length;eo&&(t=o),Qi.call(this,e,t,n,r,i))}function Qi(e,t,n,r,i){var o=wt(e,t,n,r,i),a=_t(o.year,0,o.dayOfYear);return this.year(a.getUTCFullYear()),this.month(a.getUTCMonth()),this.date(a.getUTCDate()),this}function $i(e){return null==e?Math.ceil((this.month()+1)/3):this.month(3*(e-1)+this.month()%3)}V("N",0,0,"eraAbbr"),V("NN",0,0,"eraAbbr"),V("NNN",0,0,"eraAbbr"),V("NNNN",0,0,"eraName"),V("NNNNN",0,0,"eraNarrow"),V("y",["y",1],"yo","eraYear"),V("y",["yy",2],0,"eraYear"),V("y",["yyy",3],0,"eraYear"),V("y",["yyyy",4],0,"eraYear"),Le("N",zi),Le("NN",zi),Le("NNN",zi),Le("NNNN",Fi),Le("NNNNN",Bi),Be(["N","NN","NNN","NNNN","NNNNN"],function(e,t,n,r){var i=n._locale.erasParse(e,r,n._strict);i?v(n).era=i:v(n).invalidEra=e}),Le("y",je),Le("yy",je),Le("yyy",je),Le("yyyy",je),Le("yo",Vi),Be(["y","yy","yyy","yyyy"],Ue),Be(["yo"],function(e,t,n,r){var i;n._locale._eraYearOrdinalRegex&&(i=e.match(n._locale._eraYearOrdinalRegex)),n._locale.eraYearOrdinalParse?t[Ue]=n._locale.eraYearOrdinalParse(e,i):t[Ue]=parseInt(e,10)}),V(0,["gg",2],0,function(){return this.weekYear()%100}),V(0,["GG",2],0,function(){return this.isoWeekYear()%100}),Gi("gggg","weekYear"),Gi("ggggg","weekYear"),Gi("GGGG","isoWeekYear"),Gi("GGGGG","isoWeekYear"),re("weekYear","gg"),re("isoWeekYear","GG"),se("weekYear",1),se("isoWeekYear",1),Le("G",Ie),Le("g",Ie),Le("GG",ke,be),Le("gg",ke,be),Le("GGGG",Ce,xe),Le("gggg",Ce,xe),Le("GGGGG",Te,we),Le("ggggg",Te,we),Ve(["gggg","ggggg","GGGG","GGGGG"],function(e,t,n,r){t[r.substr(0,2)]=fe(e)}),Ve(["gg","GG"],function(e,t,n,r){t[r]=i.parseTwoDigitYear(e)}),V("Q",0,"Qo","quarter"),re("quarter","Q"),se("quarter",7),Le("Q",ye),Be("Q",function(e,t){t[We]=3*(fe(e)-1)}),V("D",["DD",2],"Do","date"),re("date","D"),se("date",9),Le("D",ke),Le("DD",ke,be),Le("Do",function(e,t){return e?t._dayOfMonthOrdinalParse||t._ordinalParse:t._dayOfMonthOrdinalParseLenient}),Be(["D","DD"],He),Be("Do",function(e,t){t[He]=fe(e.match(ke)[0])});var Ji=de("Date",!0);function eo(e){var t=Math.round((this.clone().startOf("day")-this.clone().startOf("year"))/864e5)+1;return null==e?t:this.add(e-t,"d")}V("DDD",["DDDD",3],"DDDo","dayOfYear"),re("dayOfYear","DDD"),se("dayOfYear",4),Le("DDD",Me),Le("DDDD",_e),Be(["DDD","DDDD"],function(e,t,n){n._dayOfYear=fe(e)}),V("m",["mm",2],0,"minute"),re("minute","m"),se("minute",14),Le("m",ke),Le("mm",ke,be),Be(["m","mm"],Ze);var to=de("Minutes",!1);V("s",["ss",2],0,"second"),re("second","s"),se("second",15),Le("s",ke),Le("ss",ke,be),Be(["s","ss"],Ke);var no,ro,io=de("Seconds",!1);for(V("S",0,0,function(){return~~(this.millisecond()/100)}),V(0,["SS",2],0,function(){return~~(this.millisecond()/10)}),V(0,["SSS",3],0,"millisecond"),V(0,["SSSS",4],0,function(){return 10*this.millisecond()}),V(0,["SSSSS",5],0,function(){return 100*this.millisecond()}),V(0,["SSSSSS",6],0,function(){return 1e3*this.millisecond()}),V(0,["SSSSSSS",7],0,function(){return 1e4*this.millisecond()}),V(0,["SSSSSSSS",8],0,function(){return 1e5*this.millisecond()}),V(0,["SSSSSSSSS",9],0,function(){return 1e6*this.millisecond()}),re("millisecond","ms"),se("millisecond",16),Le("S",Me,ye),Le("SS",Me,be),Le("SSS",Me,_e),no="SSSS";no.length<=9;no+="S")Le(no,je);function oo(e,t){t[Xe]=fe(1e3*("0."+e))}for(no="S";no.length<=9;no+="S")Be(no,oo);function ao(){return this._isUTC?"UTC":""}function so(){return this._isUTC?"Coordinated Universal Time":""}ro=de("Milliseconds",!1),V("z",0,0,"zoneAbbr"),V("zz",0,0,"zoneName");var lo=k.prototype;function uo(e){return Kn(1e3*e)}function co(){return Kn.apply(null,arguments).parseZone()}function fo(e){return e}lo.add=Pr,lo.calendar=Yr,lo.clone=Gr,lo.diff=Xr,lo.endOf=vi,lo.format=ti,lo.from=ni,lo.fromNow=ri,lo.to=ii,lo.toNow=oi,lo.get=ge,lo.invalidAt=Mi,lo.isAfter=Ur,lo.isBefore=Wr,lo.isBetween=Hr,lo.isSame=qr,lo.isSameOrAfter=Zr,lo.isSameOrBefore=Kr,lo.isValid=Oi,lo.lang=si,lo.locale=ai,lo.localeData=li,lo.max=Qn,lo.min=Xn,lo.parsingFlags=Si,lo.set=me,lo.startOf=mi,lo.subtract=Lr,lo.toArray=xi,lo.toObject=wi,lo.toDate=_i,lo.toISOString=Jr,lo.inspect=ei,"undefined"!==typeof Symbol&&null!=Symbol.for&&(lo[Symbol.for("nodejs.util.inspect.custom")]=function(){return"Moment<"+this.format()+">"}),lo.toJSON=ki,lo.toString=$r,lo.unix=bi,lo.valueOf=yi,lo.creationData=Ci,lo.eraName=Di,lo.eraNarrow=Ai,lo.eraAbbr=Ei,lo.eraYear=Pi,lo.year=vt,lo.isLeapYear=yt,lo.weekYear=Ui,lo.isoWeekYear=Wi,lo.quarter=lo.quarters=$i,lo.month=ft,lo.daysInMonth=dt,lo.week=lo.weeks=jt,lo.isoWeek=lo.isoWeeks=It,lo.weeksInYear=Zi,lo.weeksInWeekYear=Ki,lo.isoWeeksInYear=Hi,lo.isoWeeksInISOWeekYear=qi,lo.date=Ji,lo.day=lo.days=Wt,lo.weekday=Ht,lo.isoWeekday=qt,lo.dayOfYear=eo,lo.hour=lo.hours=on,lo.minute=lo.minutes=to,lo.second=lo.seconds=io,lo.millisecond=lo.milliseconds=ro,lo.utcOffset=gr,lo.utc=vr,lo.local=yr,lo.parseZone=br,lo.hasAlignedHourOffset=_r,lo.isDST=xr,lo.isLocal=kr,lo.isUtcOffset=Or,lo.isUtc=Sr,lo.isUTC=Sr,lo.zoneAbbr=ao,lo.zoneName=so,lo.dates=M("dates accessor is deprecated. Use date instead.",Ji),lo.months=M("months accessor is deprecated. Use month instead",ft),lo.years=M("years accessor is deprecated. Use year instead",vt),lo.zone=M("moment().zone is deprecated, use moment().utcOffset instead. http://momentjs.com/guides/#/warnings/zone/",mr),lo.isDSTShifted=M("isDSTShifted is deprecated. See http://momentjs.com/guides/#/warnings/dst-shifted/ for more information",wr);var ho=E.prototype;function po(e,t,n,r){var i=yn(),o=g().set(r,t);return i[n](o,e)}function go(e,t,n){if(f(e)&&(t=e,e=void 0),e=e||"",null!=t)return po(e,t,n,"month");var r,i=[];for(r=0;r<12;r++)i[r]=po(e,r,n,"month");return i}function mo(e,t,n,r){"boolean"===typeof e?(f(t)&&(n=t,t=void 0),t=t||""):(t=e,n=t,e=!1,f(t)&&(n=t,t=void 0),t=t||"");var i,o=yn(),a=e?o._week.dow:0,s=[];if(null!=n)return po(t,(n+a)%7,r,"day");for(i=0;i<7;i++)s[i]=po(t,(i+a)%7,r,"day");return s}function vo(e,t){return go(e,t,"months")}function yo(e,t){return go(e,t,"monthsShort")}function bo(e,t,n){return mo(e,t,n,"weekdays")}function _o(e,t,n){return mo(e,t,n,"weekdaysShort")}function xo(e,t,n){return mo(e,t,n,"weekdaysMin")}ho.calendar=L,ho.longDateFormat=q,ho.invalidDate=K,ho.ordinal=$,ho.preparse=fo,ho.postformat=fo,ho.relativeTime=ee,ho.pastFuture=te,ho.set=D,ho.eras=Ti,ho.erasParse=ji,ho.erasConvertYear=Ii,ho.erasAbbrRegex=Ni,ho.erasNameRegex=Li,ho.erasNarrowRegex=Ri,ho.months=at,ho.monthsShort=st,ho.monthsParse=ut,ho.monthsRegex=pt,ho.monthsShortRegex=ht,ho.week=St,ho.firstDayOfYear=Tt,ho.firstDayOfWeek=Ct,ho.weekdays=Bt,ho.weekdaysMin=Yt,ho.weekdaysShort=Vt,ho.weekdaysParse=Ut,ho.weekdaysRegex=Zt,ho.weekdaysShortRegex=Kt,ho.weekdaysMinRegex=Xt,ho.isPM=nn,ho.meridiem=an,gn("en",{eras:[{since:"0001-01-01",until:1/0,offset:1,name:"Anno Domini",narrow:"AD",abbr:"AD"},{since:"0000-12-31",until:-1/0,offset:1,name:"Before Christ",narrow:"BC",abbr:"BC"}],dayOfMonthOrdinalParse:/\d{1,2}(th|st|nd|rd)/,ordinal:function(e){var t=e%10,n=1===fe(e%100/10)?"th":1===t?"st":2===t?"nd":3===t?"rd":"th";return e+n}}),i.lang=M("moment.lang is deprecated. Use moment.locale instead.",gn),i.langData=M("moment.langData is deprecated. Use moment.localeData instead.",yn);var wo=Math.abs;function ko(){var e=this._data;return this._milliseconds=wo(this._milliseconds),this._days=wo(this._days),this._months=wo(this._months),e.milliseconds=wo(e.milliseconds),e.seconds=wo(e.seconds),e.minutes=wo(e.minutes),e.hours=wo(e.hours),e.months=wo(e.months),e.years=wo(e.years),this}function Oo(e,t,n,r){var i=Tr(t,n);return e._milliseconds+=r*i._milliseconds,e._days+=r*i._days,e._months+=r*i._months,e._bubble()}function So(e,t){return Oo(this,e,t,1)}function Mo(e,t){return Oo(this,e,t,-1)}function Co(e){return e<0?Math.floor(e):Math.ceil(e)}function To(){var e,t,n,r,i,o=this._milliseconds,a=this._days,s=this._months,l=this._data;return o>=0&&a>=0&&s>=0||o<=0&&a<=0&&s<=0||(o+=864e5*Co(Io(s)+a),a=0,s=0),l.milliseconds=o%1e3,e=ce(o/1e3),l.seconds=e%60,t=ce(e/60),l.minutes=t%60,n=ce(t/60),l.hours=n%24,a+=ce(n/24),i=ce(jo(a)),s+=i,a-=Co(Io(i)),r=ce(s/12),s%=12,l.days=a,l.months=s,l.years=r,this}function jo(e){return 4800*e/146097}function Io(e){return 146097*e/4800}function Do(e){if(!this.isValid())return NaN;var t,n,r=this._milliseconds;if(e=ie(e),"month"===e||"quarter"===e||"year"===e)switch(t=this._days+r/864e5,n=this._months+jo(t),e){case"month":return n;case"quarter":return n/3;case"year":return n/12}else switch(t=this._days+Math.round(Io(this._months)),e){case"week":return t/7+r/6048e5;case"day":return t+r/864e5;case"hour":return 24*t+r/36e5;case"minute":return 1440*t+r/6e4;case"second":return 86400*t+r/1e3;case"millisecond":return Math.floor(864e5*t)+r;default:throw new Error("Unknown unit "+e)}}function Ao(){return this.isValid()?this._milliseconds+864e5*this._days+this._months%12*2592e6+31536e6*fe(this._months/12):NaN}function Eo(e){return function(){return this.as(e)}}var Po=Eo("ms"),Lo=Eo("s"),No=Eo("m"),Ro=Eo("h"),zo=Eo("d"),Fo=Eo("w"),Bo=Eo("M"),Vo=Eo("Q"),Yo=Eo("y");function Go(){return Tr(this)}function Uo(e){return e=ie(e),this.isValid()?this[e+"s"]():NaN}function Wo(e){return function(){return this.isValid()?this._data[e]:NaN}}var Ho=Wo("milliseconds"),qo=Wo("seconds"),Zo=Wo("minutes"),Ko=Wo("hours"),Xo=Wo("days"),Qo=Wo("months"),$o=Wo("years");function Jo(){return ce(this.days()/7)}var ea=Math.round,ta={ss:44,s:45,m:45,h:22,d:26,w:null,M:11};function na(e,t,n,r,i){return i.relativeTime(t||1,!!n,e,r)}function ra(e,t,n,r){var i=Tr(e).abs(),o=ea(i.as("s")),a=ea(i.as("m")),s=ea(i.as("h")),l=ea(i.as("d")),u=ea(i.as("M")),c=ea(i.as("w")),f=ea(i.as("y")),d=o<=n.ss&&["s",o]||o0,d[4]=r,na.apply(null,d)}function ia(e){return void 0===e?ea:"function"===typeof e&&(ea=e,!0)}function oa(e,t){return void 0!==ta[e]&&(void 0===t?ta[e]:(ta[e]=t,"s"===e&&(ta.ss=t-1),!0))}function aa(e,t){if(!this.isValid())return this.localeData().invalidDate();var n,r,i=!1,o=ta;return"object"===typeof e&&(t=e,e=!1),"boolean"===typeof e&&(i=e),"object"===typeof t&&(o=Object.assign({},ta,t),null!=t.s&&null==t.ss&&(o.ss=t.s-1)),n=this.localeData(),r=ra(this,!i,o,n),i&&(r=n.pastFuture(+this,r)),n.postformat(r)}var sa=Math.abs;function la(e){return(e>0)-(e<0)||+e}function ua(){if(!this.isValid())return this.localeData().invalidDate();var e,t,n,r,i,o,a,s,l=sa(this._milliseconds)/1e3,u=sa(this._days),c=sa(this._months),f=this.asSeconds();return f?(e=ce(l/60),t=ce(e/60),l%=60,e%=60,n=ce(c/12),c%=12,r=l?l.toFixed(3).replace(/\.?0+$/,""):"",i=f<0?"-":"",o=la(this._months)!==la(f)?"-":"",a=la(this._days)!==la(f)?"-":"",s=la(this._milliseconds)!==la(f)?"-":"",i+"P"+(n?o+n+"Y":"")+(c?o+c+"M":"")+(u?a+u+"D":"")+(t||e||l?"T":"")+(t?s+t+"H":"")+(e?s+e+"M":"")+(l?s+r+"S":"")):"P0D"}var ca=ar.prototype;return ca.isValid=ir,ca.abs=ko,ca.add=So,ca.subtract=Mo,ca.as=Do,ca.asMilliseconds=Po,ca.asSeconds=Lo,ca.asMinutes=No,ca.asHours=Ro,ca.asDays=zo,ca.asWeeks=Fo,ca.asMonths=Bo,ca.asQuarters=Vo,ca.asYears=Yo,ca.valueOf=Ao,ca._bubble=To,ca.clone=Go,ca.get=Uo,ca.milliseconds=Ho,ca.seconds=qo,ca.minutes=Zo,ca.hours=Ko,ca.days=Xo,ca.weeks=Jo,ca.months=Qo,ca.years=$o,ca.humanize=aa,ca.toISOString=ua,ca.toString=ua,ca.toJSON=ua,ca.locale=ai,ca.localeData=li,ca.toIsoString=M("toIsoString() is deprecated. Please use toISOString() instead (notice the capitals)",ua),ca.lang=si,V("X",0,0,"unix"),V("x",0,0,"valueOf"),Le("x",Ie),Le("X",Ee),Be("X",function(e,t,n){n._d=new Date(1e3*parseFloat(e))}),Be("x",function(e,t,n){n._d=new Date(fe(e))}),i.version="2.29.1",o(Kn),i.fn=lo,i.min=Jn,i.max=er,i.now=tr,i.utc=g,i.unix=uo,i.months=vo,i.isDate=d,i.locale=gn,i.invalid=b,i.duration=Tr,i.isMoment=O,i.weekdays=bo,i.parseZone=co,i.localeData=yn,i.isDuration=sr,i.monthsShort=yo,i.weekdaysMin=xo,i.defineLocale=mn,i.updateLocale=vn,i.locales=bn,i.weekdaysShort=_o,i.normalizeUnits=ie,i.relativeTimeRounding=ia,i.relativeTimeThreshold=oa,i.calendarFormat=Vr,i.prototype=lo,i.HTML5_FMT={DATETIME_LOCAL:"YYYY-MM-DDTHH:mm",DATETIME_LOCAL_SECONDS:"YYYY-MM-DDTHH:mm:ss",DATETIME_LOCAL_MS:"YYYY-MM-DDTHH:mm:ss.SSS",DATE:"YYYY-MM-DD",TIME:"HH:mm",TIME_SECONDS:"HH:mm:ss",TIME_MS:"HH:mm:ss.SSS",WEEK:"GGGG-[W]WW",MONTH:"YYYY-MM"},i})}).call(this,n("YuTi")(e))},wtjL:function(e,t,n){"use strict";var r=n("Vwaf").HTML_TAG_RE;function i(e){var t=32|e;return t>=97&&t<=122}e.exports=function(e,t){var n,o,a,s,l=e.pos;return!!e.md.options.html&&(a=e.posMax,!(60!==e.src.charCodeAt(l)||l+2>=a)&&(n=e.src.charCodeAt(l+1),!(33!==n&&63!==n&&47!==n&&!i(n))&&(o=e.src.slice(l).match(r),!!o&&(t||(s=e.push("html_inline","",0),s.content=e.src.slice(l,l+o[0].length)),e.pos+=o[0].length,!0))))}},x3X8:function(e,t,n){"use strict";n.d(t,"b",function(){return o}),n.d(t,"a",function(){return a});var r=n("KxfA"),i=n("bYtY");function o(e,t){var n=e.mapDimensionsAll("defaultedLabel"),i=n.length;if(1===i){var o=Object(r["e"])(e,t,n[0]);return null!=o?o+"":null}if(i){for(var a=[],s=0;s=0&&r.push(t[a])}return r.join(" ")}},xVpn:function(e,t,n){"use strict";var r=n("T4UG"),i=n("bYtY"),o=n("DlA6"),a=n("y+Vt"),s=n("3qvL"),l=n("NC18");function u(e){return Object(i["s"])(e[0])}function c(e,t){for(var n=[],r=e.length,i=0;i=0;i--)if(!n[i].many.length){var l=n[s].many;if(l.length<=1){if(!s)return n;s=0}o=l.length;var u=Math.ceil(o/2);n[i].many=l.slice(u,o),n[s].many=l.slice(0,u),s++}return n}var f={clone:function(e){for(var t=[],n=1-Math.pow(1-e.path.style.opacity,1/e.count),r=0;r0){var h,p,g=r.getModel("universalTransition").get("delay"),m=Object.assign({setToFinal:!0},d);u(e)&&(h=e,p=t),u(t)&&(h=t,p=e);for(var v=h?h===e:e.length>t.length,y=h?c(p,h):c(v?t:e,[v?e:t]),b=0,_=0;_v))for(var r=n.getIndices(),i=b(n),o=0;o0&&i.group.traverse(function(e){e instanceof a["b"]&&!e.animators.length&&e.animateFrom({style:{opacity:0}},o)})})}function C(e){var t=e.getModel("universalTransition").get("seriesKey");return t||e.id}function T(e){return Object(i["s"])(e)?e.sort().join(","):e}function j(e){if(e.hostModel)return e.hostModel.getModel("universalTransition").get("divideShape")}function I(e,t){var n=Object(i["g"])(),r=Object(i["g"])(),o=Object(i["g"])();return Object(i["k"])(e.oldSeries,function(t,n){var a=e.oldData[n],s=C(t),l=T(s);r.set(l,a),Object(i["s"])(s)&&Object(i["k"])(s,function(e){o.set(e,{data:a,key:l})})}),Object(i["k"])(t.updatedSeries,function(e){if(e.isUniversalTransitionEnabled()&&e.isAnimationEnabled()){var t=e.getData(),a=C(e),s=T(a),l=r.get(s);if(l)n.set(s,{oldSeries:[{divide:j(l),data:l}],newSeries:[{divide:j(t),data:t}]});else if(Object(i["s"])(a)){0;var u=[];Object(i["k"])(a,function(e){var t=r.get(e);t&&u.push({divide:j(t),data:t})}),u.length&&n.set(s,{oldSeries:u,newSeries:[{data:t,divide:j(t)}]})}else{var c=o.get(a);if(c){var f=n.get(c.key);f||(f={oldSeries:[{data:c.data,divide:j(c.data)}],newSeries:[]},n.set(c.key,f)),f.newSeries.push({data:t,divide:j(t)})}}}}),n}function D(e,t){for(var n=0;n=0&&o.push({data:t.oldData[n],divide:j(t.oldData[n]),dim:e.dimension})}),Object(i["k"])(Object(g["p"])(e.to),function(e){var t=D(n.updatedSeries,e);if(t>=0){var r=n.updatedSeries[t].getData();a.push({data:r,divide:j(r),dim:e.dimension})}}),o.length>0&&a.length>0&&M(o,a,r)}function E(e){e.registerUpdateLifecycle("series:beforeupdate",function(e,t,n){Object(i["k"])(Object(g["p"])(n.seriesTransition),function(e){Object(i["k"])(Object(g["p"])(e.to),function(e){for(var t=n.updatedSeries,i=0;i=0;n--)r=t[n],95!==r.marker&&42!==r.marker||-1!==r.end&&(i=t[r.end],s=n>0&&t[n-1].end===r.end+1&&t[n-1].marker===r.marker&&t[n-1].token===r.token-1&&t[r.end+1].token===i.token+1,a=String.fromCharCode(r.marker),o=e.tokens[r.token],o.type=s?"strong_open":"em_open",o.tag=s?"strong":"em",o.nesting=1,o.markup=s?a+a:a,o.content="",o=e.tokens[i.token],o.type=s?"strong_close":"em_close",o.tag=s?"strong":"em",o.nesting=-1,o.markup=s?a+a:a,o.content="",s&&(e.tokens[t[n-1].token].content="",e.tokens[t[r.end+1].token].content="",n--))}e.exports.tokenize=function(e,t){var n,r,i,o=e.pos,a=e.src.charCodeAt(o);if(t)return!1;if(95!==a&&42!==a)return!1;for(r=e.scanDelims(e.pos,42===a),n=0;nt}return!1}function X(e,t,n,r,i,o){this.acceptsBooleans=2===t||3===t||4===t,this.attributeName=r,this.attributeNamespace=i,this.mustUseProperty=n,this.propertyName=e,this.type=t,this.sanitizeURL=o}var Q={};"children dangerouslySetInnerHTML defaultValue defaultChecked innerHTML suppressContentEditableWarning suppressHydrationWarning style".split(" ").forEach(function(e){Q[e]=new X(e,0,!1,e,null,!1)}),[["acceptCharset","accept-charset"],["className","class"],["htmlFor","for"],["httpEquiv","http-equiv"]].forEach(function(e){var t=e[0];Q[t]=new X(t,1,!1,e[1],null,!1)}),["contentEditable","draggable","spellCheck","value"].forEach(function(e){Q[e]=new X(e,2,!1,e.toLowerCase(),null,!1)}),["autoReverse","externalResourcesRequired","focusable","preserveAlpha"].forEach(function(e){Q[e]=new X(e,2,!1,e,null,!1)}),"allowFullScreen async autoFocus autoPlay controls default defer disabled disablePictureInPicture formNoValidate hidden loop noModule noValidate open playsInline readOnly required reversed scoped seamless itemScope".split(" ").forEach(function(e){Q[e]=new X(e,3,!1,e.toLowerCase(),null,!1)}),["checked","multiple","muted","selected"].forEach(function(e){Q[e]=new X(e,3,!0,e,null,!1)}),["capture","download"].forEach(function(e){Q[e]=new X(e,4,!1,e,null,!1)}),["cols","rows","size","span"].forEach(function(e){Q[e]=new X(e,6,!1,e,null,!1)}),["rowSpan","start"].forEach(function(e){Q[e]=new X(e,5,!1,e.toLowerCase(),null,!1)});var $=/[\-:]([a-z])/g;function J(e){return e[1].toUpperCase()}"accent-height alignment-baseline arabic-form baseline-shift cap-height clip-path clip-rule color-interpolation color-interpolation-filters color-profile color-rendering dominant-baseline enable-background fill-opacity fill-rule flood-color flood-opacity font-family font-size font-size-adjust font-stretch font-style font-variant font-weight glyph-name glyph-orientation-horizontal glyph-orientation-vertical horiz-adv-x horiz-origin-x image-rendering letter-spacing lighting-color marker-end marker-mid marker-start overline-position overline-thickness paint-order panose-1 pointer-events rendering-intent shape-rendering stop-color stop-opacity strikethrough-position strikethrough-thickness stroke-dasharray stroke-dashoffset stroke-linecap stroke-linejoin stroke-miterlimit stroke-opacity stroke-width text-anchor text-decoration text-rendering underline-position underline-thickness unicode-bidi unicode-range units-per-em v-alphabetic v-hanging v-ideographic v-mathematical vector-effect vert-adv-y vert-origin-x vert-origin-y word-spacing writing-mode xmlns:xlink x-height".split(" ").forEach(function(e){var t=e.replace($,J);Q[t]=new X(t,1,!1,e,null,!1)}),"xlink:actuate xlink:arcrole xlink:role xlink:show xlink:title xlink:type".split(" ").forEach(function(e){var t=e.replace($,J);Q[t]=new X(t,1,!1,e,"http://www.w3.org/1999/xlink",!1)}),["xml:base","xml:lang","xml:space"].forEach(function(e){var t=e.replace($,J);Q[t]=new X(t,1,!1,e,"http://www.w3.org/XML/1998/namespace",!1)}),["tabIndex","crossOrigin"].forEach(function(e){Q[e]=new X(e,1,!1,e.toLowerCase(),null,!1)}),Q.xlinkHref=new X("xlinkHref",1,!1,"xlink:href","http://www.w3.org/1999/xlink",!0),["src","href","action","formAction"].forEach(function(e){Q[e]=new X(e,1,!1,e.toLowerCase(),null,!0)});var ee=r.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;function te(e,t,n,r){var i=Q.hasOwnProperty(t)?Q[t]:null,o=null!==i?0===i.type:!r&&(2=n.length))throw Error(a(93));n=n[0]}t=n}null==t&&(t=""),n=t}e._wrapperState={initialValue:ke(n)}}function Fe(e,t){var n=ke(t.value),r=ke(t.defaultValue);null!=n&&(n=""+n,n!==e.value&&(e.value=n),null==t.defaultValue&&e.defaultValue!==n&&(e.defaultValue=n)),null!=r&&(e.defaultValue=""+r)}function Be(e){var t=e.textContent;t===e._wrapperState.initialValue&&""!==t&&null!==t&&(e.value=t)}var Ve={html:"http://www.w3.org/1999/xhtml",mathml:"http://www.w3.org/1998/Math/MathML",svg:"http://www.w3.org/2000/svg"};function Ye(e){switch(e){case"svg":return"http://www.w3.org/2000/svg";case"math":return"http://www.w3.org/1998/Math/MathML";default:return"http://www.w3.org/1999/xhtml"}}function Ge(e,t){return null==e||"http://www.w3.org/1999/xhtml"===e?Ye(t):"http://www.w3.org/2000/svg"===e&&"foreignObject"===t?"http://www.w3.org/1999/xhtml":e}var Ue,We=function(e){return"undefined"!==typeof MSApp&&MSApp.execUnsafeLocalFunction?function(t,n,r,i){MSApp.execUnsafeLocalFunction(function(){return e(t,n,r,i)})}:e}(function(e,t){if(e.namespaceURI!==Ve.svg||"innerHTML"in e)e.innerHTML=t;else{for(Ue=Ue||document.createElement("div"),Ue.innerHTML=""+t.valueOf().toString()+"",t=Ue.firstChild;e.firstChild;)e.removeChild(e.firstChild);for(;t.firstChild;)e.appendChild(t.firstChild)}});function He(e,t){if(t){var n=e.firstChild;if(n&&n===e.lastChild&&3===n.nodeType)return void(n.nodeValue=t)}e.textContent=t}function qe(e,t){var n={};return n[e.toLowerCase()]=t.toLowerCase(),n["Webkit"+e]="webkit"+t,n["Moz"+e]="moz"+t,n}var Ze={animationend:qe("Animation","AnimationEnd"),animationiteration:qe("Animation","AnimationIteration"),animationstart:qe("Animation","AnimationStart"),transitionend:qe("Transition","TransitionEnd")},Ke={},Xe={};function Qe(e){if(Ke[e])return Ke[e];if(!Ze[e])return e;var t,n=Ze[e];for(t in n)if(n.hasOwnProperty(t)&&t in Xe)return Ke[e]=n[t];return e}T&&(Xe=document.createElement("div").style,"AnimationEvent"in window||(delete Ze.animationend.animation,delete Ze.animationiteration.animation,delete Ze.animationstart.animation),"TransitionEvent"in window||delete Ze.transitionend.transition);var $e=Qe("animationend"),Je=Qe("animationiteration"),et=Qe("animationstart"),tt=Qe("transitionend"),nt="abort canplay canplaythrough durationchange emptied encrypted ended error loadeddata loadedmetadata loadstart pause play playing progress ratechange seeked seeking stalled suspend timeupdate volumechange waiting".split(" "),rt=new("function"===typeof WeakMap?WeakMap:Map);function it(e){var t=rt.get(e);return void 0===t&&(t=new Map,rt.set(e,t)),t}function ot(e){var t=e,n=e;if(e.alternate)for(;t.return;)t=t.return;else{e=t;do{t=e,0!==(1026&t.effectTag)&&(n=t.return),e=t.return}while(e)}return 3===t.tag?n:null}function at(e){if(13===e.tag){var t=e.memoizedState;if(null===t&&(e=e.alternate,null!==e&&(t=e.memoizedState)),null!==t)return t.dehydrated}return null}function st(e){if(ot(e)!==e)throw Error(a(188))}function lt(e){var t=e.alternate;if(!t){if(t=ot(e),null===t)throw Error(a(188));return t!==e?null:e}for(var n=e,r=t;;){var i=n.return;if(null===i)break;var o=i.alternate;if(null===o){if(r=i.return,null!==r){n=r;continue}break}if(i.child===o.child){for(o=i.child;o;){if(o===n)return st(i),e;if(o===r)return st(i),t;o=o.sibling}throw Error(a(188))}if(n.return!==r.return)n=i,r=o;else{for(var s=!1,l=i.child;l;){if(l===n){s=!0,n=i,r=o;break}if(l===r){s=!0,r=i,n=o;break}l=l.sibling}if(!s){for(l=o.child;l;){if(l===n){s=!0,n=o,r=i;break}if(l===r){s=!0,r=o,n=i;break}l=l.sibling}if(!s)throw Error(a(189))}}if(n.alternate!==r)throw Error(a(190))}if(3!==n.tag)throw Error(a(188));return n.stateNode.current===n?e:t}function ut(e){if(e=lt(e),!e)return null;for(var t=e;;){if(5===t.tag||6===t.tag)return t;if(t.child)t.child.return=t,t=t.child;else{if(t===e)break;for(;!t.sibling;){if(!t.return||t.return===e)return null;t=t.return}t.sibling.return=t.return,t=t.sibling}}return null}function ct(e,t){if(null==t)throw Error(a(30));return null==e?t:Array.isArray(e)?Array.isArray(t)?(e.push.apply(e,t),e):(e.push(t),e):Array.isArray(t)?[e].concat(t):[e,t]}function ft(e,t,n){Array.isArray(e)?e.forEach(t,n):e&&t.call(n,e)}var dt=null;function ht(e){if(e){var t=e._dispatchListeners,n=e._dispatchInstances;if(Array.isArray(t))for(var r=0;rvt.length&&vt.push(e)}function bt(e,t,n,r){if(vt.length){var i=vt.pop();return i.topLevelType=e,i.eventSystemFlags=r,i.nativeEvent=t,i.targetInst=n,i}return{topLevelType:e,eventSystemFlags:r,nativeEvent:t,targetInst:n,ancestors:[]}}function _t(e){var t=e.targetInst,n=t;do{if(!n){e.ancestors.push(n);break}var r=n;if(3===r.tag)r=r.stateNode.containerInfo;else{for(;r.return;)r=r.return;r=3!==r.tag?null:r.stateNode.containerInfo}if(!r)break;t=n.tag,5!==t&&6!==t||e.ancestors.push(n),n=Vn(r)}while(n);for(n=0;n=t)return{node:r,offset:t-e};e=n}e:{for(;r;){if(r.nextSibling){r=r.nextSibling;break e}r=r.parentNode}r=void 0}r=_n(r)}}function wn(e,t){return!(!e||!t)&&(e===t||(!e||3!==e.nodeType)&&(t&&3===t.nodeType?wn(e,t.parentNode):"contains"in e?e.contains(t):!!e.compareDocumentPosition&&!!(16&e.compareDocumentPosition(t))))}function kn(){for(var e=window,t=bn();t instanceof e.HTMLIFrameElement;){try{var n="string"===typeof t.contentWindow.location.href}catch(e){n=!1}if(!n)break;e=t.contentWindow,t=bn(e.document)}return t}function On(e){var t=e&&e.nodeName&&e.nodeName.toLowerCase();return t&&("input"===t&&("text"===e.type||"search"===e.type||"tel"===e.type||"url"===e.type||"password"===e.type)||"textarea"===t||"true"===e.contentEditable)}var Sn="$",Mn="/$",Cn="$?",Tn="$!",jn=null,In=null;function Dn(e,t){switch(e){case"button":case"input":case"select":case"textarea":return!!t.autoFocus}return!1}function An(e,t){return"textarea"===e||"option"===e||"noscript"===e||"string"===typeof t.children||"number"===typeof t.children||"object"===typeof t.dangerouslySetInnerHTML&&null!==t.dangerouslySetInnerHTML&&null!=t.dangerouslySetInnerHTML.__html}var En="function"===typeof setTimeout?setTimeout:void 0,Pn="function"===typeof clearTimeout?clearTimeout:void 0;function Ln(e){for(;null!=e;e=e.nextSibling){var t=e.nodeType;if(1===t||3===t)break}return e}function Nn(e){e=e.previousSibling;for(var t=0;e;){if(8===e.nodeType){var n=e.data;if(n===Sn||n===Tn||n===Cn){if(0===t)return e;t--}else n===Mn&&t++}e=e.previousSibling}return null}var Rn=Math.random().toString(36).slice(2),zn="__reactInternalInstance$"+Rn,Fn="__reactEventHandlers$"+Rn,Bn="__reactContainere$"+Rn;function Vn(e){var t=e[zn];if(t)return t;for(var n=e.parentNode;n;){if(t=n[Bn]||n[zn]){if(n=t.alternate,null!==t.child||null!==n&&null!==n.child)for(e=Nn(e);null!==e;){if(n=e[zn])return n;e=Nn(e)}return t}e=n,n=e.parentNode}return null}function Yn(e){return e=e[zn]||e[Bn],!e||5!==e.tag&&6!==e.tag&&13!==e.tag&&3!==e.tag?null:e}function Gn(e){if(5===e.tag||6===e.tag)return e.stateNode;throw Error(a(33))}function Un(e){return e[Fn]||null}function Wn(e){do{e=e.return}while(e&&5!==e.tag);return e||null}function Hn(e,t){var n=e.stateNode;if(!n)return null;var r=g(n);if(!r)return null;n=r[t];e:switch(t){case"onClick":case"onClickCapture":case"onDoubleClick":case"onDoubleClickCapture":case"onMouseDown":case"onMouseDownCapture":case"onMouseMove":case"onMouseMoveCapture":case"onMouseUp":case"onMouseUpCapture":case"onMouseEnter":(r=!r.disabled)||(e=e.type,r=!("button"===e||"input"===e||"select"===e||"textarea"===e)),e=!r;break e;default:e=!1}if(e)return null;if(n&&"function"!==typeof n)throw Error(a(231,t,typeof n));return n}function qn(e,t,n){(t=Hn(e,n.dispatchConfig.phasedRegistrationNames[t]))&&(n._dispatchListeners=ct(n._dispatchListeners,t),n._dispatchInstances=ct(n._dispatchInstances,e))}function Zn(e){if(e&&e.dispatchConfig.phasedRegistrationNames){for(var t=e._targetInst,n=[];t;)n.push(t),t=Wn(t);for(t=n.length;0this.eventPool.length&&this.eventPool.push(e)}function sr(e){e.eventPool=[],e.getPooled=or,e.release=ar}i(ir.prototype,{preventDefault:function(){this.defaultPrevented=!0;var e=this.nativeEvent;e&&(e.preventDefault?e.preventDefault():"unknown"!==typeof e.returnValue&&(e.returnValue=!1),this.isDefaultPrevented=nr)},stopPropagation:function(){var e=this.nativeEvent;e&&(e.stopPropagation?e.stopPropagation():"unknown"!==typeof e.cancelBubble&&(e.cancelBubble=!0),this.isPropagationStopped=nr)},persist:function(){this.isPersistent=nr},isPersistent:rr,destructor:function(){var e,t=this.constructor.Interface;for(e in t)this[e]=null;this.nativeEvent=this._targetInst=this.dispatchConfig=null,this.isPropagationStopped=this.isDefaultPrevented=rr,this._dispatchInstances=this._dispatchListeners=null}}),ir.Interface={type:null,target:null,currentTarget:function(){return null},eventPhase:null,bubbles:null,cancelable:null,timeStamp:function(e){return e.timeStamp||Date.now()},defaultPrevented:null,isTrusted:null},ir.extend=function(e){function t(){}function n(){return r.apply(this,arguments)}var r=this;t.prototype=r.prototype;var o=new t;return i(o,n.prototype),n.prototype=o,n.prototype.constructor=n,n.Interface=i({},r.Interface,e),n.extend=r.extend,sr(n),n},sr(ir);var lr=ir.extend({data:null}),ur=ir.extend({data:null}),cr=[9,13,27,32],fr=T&&"CompositionEvent"in window,dr=null;T&&"documentMode"in document&&(dr=document.documentMode);var hr=T&&"TextEvent"in window&&!dr,pr=T&&(!fr||dr&&8=dr),gr=String.fromCharCode(32),mr={beforeInput:{phasedRegistrationNames:{bubbled:"onBeforeInput",captured:"onBeforeInputCapture"},dependencies:["compositionend","keypress","textInput","paste"]},compositionEnd:{phasedRegistrationNames:{bubbled:"onCompositionEnd",captured:"onCompositionEndCapture"},dependencies:"blur compositionend keydown keypress keyup mousedown".split(" ")},compositionStart:{phasedRegistrationNames:{bubbled:"onCompositionStart",captured:"onCompositionStartCapture"},dependencies:"blur compositionstart keydown keypress keyup mousedown".split(" ")},compositionUpdate:{phasedRegistrationNames:{bubbled:"onCompositionUpdate",captured:"onCompositionUpdateCapture"},dependencies:"blur compositionupdate keydown keypress keyup mousedown".split(" ")}},vr=!1;function yr(e,t){switch(e){case"keyup":return-1!==cr.indexOf(t.keyCode);case"keydown":return 229!==t.keyCode;case"keypress":case"mousedown":case"blur":return!0;default:return!1}}function br(e){return e=e.detail,"object"===typeof e&&"data"in e?e.data:null}var _r=!1;function xr(e,t){switch(e){case"compositionend":return br(t);case"keypress":return 32!==t.which?null:(vr=!0,gr);case"textInput":return e=t.data,e===gr&&vr?null:e;default:return null}}function wr(e,t){if(_r)return"compositionend"===e||!fr&&yr(e,t)?(e=tr(),er=Jn=$n=null,_r=!1,e):null;switch(e){case"paste":return null;case"keypress":if(!(t.ctrlKey||t.altKey||t.metaKey)||t.ctrlKey&&t.altKey){if(t.char&&1=document.documentMode,ii={select:{phasedRegistrationNames:{bubbled:"onSelect",captured:"onSelectCapture"},dependencies:"blur contextmenu dragend focus keydown keyup mousedown mouseup selectionchange".split(" ")}},oi=null,ai=null,si=null,li=!1;function ui(e,t){var n=t.window===t?t.document:9===t.nodeType?t:t.ownerDocument;return li||null==oi||oi!==bn(n)?null:(n=oi,"selectionStart"in n&&On(n)?n={start:n.selectionStart,end:n.selectionEnd}:(n=(n.ownerDocument&&n.ownerDocument.defaultView||window).getSelection(),n={anchorNode:n.anchorNode,anchorOffset:n.anchorOffset,focusNode:n.focusNode,focusOffset:n.focusOffset}),si&&ni(si,n)?null:(si=n,e=ir.getPooled(ii.select,ai,e,t),e.type="select",e.target=oi,Qn(e),e))}var ci={eventTypes:ii,extractEvents:function(e,t,n,r,i,o){if(i=o||(r.window===r?r.document:9===r.nodeType?r:r.ownerDocument),!(o=!i)){e:{i=it(i),o=M.onSelect;for(var a=0;aSi||(e.current=Oi[Si],Oi[Si]=null,Si--)}function Ci(e,t){Si++,Oi[Si]=e.current,e.current=t}var Ti={},ji={current:Ti},Ii={current:!1},Di=Ti;function Ai(e,t){var n=e.type.contextTypes;if(!n)return Ti;var r=e.stateNode;if(r&&r.__reactInternalMemoizedUnmaskedChildContext===t)return r.__reactInternalMemoizedMaskedChildContext;var i,o={};for(i in n)o[i]=t[i];return r&&(e=e.stateNode,e.__reactInternalMemoizedUnmaskedChildContext=t,e.__reactInternalMemoizedMaskedChildContext=o),o}function Ei(e){return e=e.childContextTypes,null!==e&&void 0!==e}function Pi(){Mi(Ii),Mi(ji)}function Li(e,t,n){if(ji.current!==Ti)throw Error(a(168));Ci(ji,t),Ci(Ii,n)}function Ni(e,t,n){var r=e.stateNode;if(e=t.childContextTypes,"function"!==typeof r.getChildContext)return n;for(var o in r=r.getChildContext(),r)if(!(o in e))throw Error(a(108,xe(t)||"Unknown",o));return i({},n,{},r)}function Ri(e){return e=(e=e.stateNode)&&e.__reactInternalMemoizedMergedChildContext||Ti,Di=ji.current,Ci(ji,e),Ci(Ii,Ii.current),!0}function zi(e,t,n){var r=e.stateNode;if(!r)throw Error(a(169));n?(e=Ni(e,t,Di),r.__reactInternalMemoizedMergedChildContext=e,Mi(Ii),Mi(ji),Ci(ji,e)):Mi(Ii),Ci(Ii,n)}var Fi=o.unstable_runWithPriority,Bi=o.unstable_scheduleCallback,Vi=o.unstable_cancelCallback,Yi=o.unstable_requestPaint,Gi=o.unstable_now,Ui=o.unstable_getCurrentPriorityLevel,Wi=o.unstable_ImmediatePriority,Hi=o.unstable_UserBlockingPriority,qi=o.unstable_NormalPriority,Zi=o.unstable_LowPriority,Ki=o.unstable_IdlePriority,Xi={},Qi=o.unstable_shouldYield,$i=void 0!==Yi?Yi:function(){},Ji=null,eo=null,to=!1,no=Gi(),ro=1e4>no?Gi:function(){return Gi()-no};function io(){switch(Ui()){case Wi:return 99;case Hi:return 98;case qi:return 97;case Zi:return 96;case Ki:return 95;default:throw Error(a(332))}}function oo(e){switch(e){case 99:return Wi;case 98:return Hi;case 97:return qi;case 96:return Zi;case 95:return Ki;default:throw Error(a(332))}}function ao(e,t){return e=oo(e),Fi(e,t)}function so(e,t,n){return e=oo(e),Bi(e,t,n)}function lo(e){return null===Ji?(Ji=[e],eo=Bi(Wi,co)):Ji.push(e),Xi}function uo(){if(null!==eo){var e=eo;eo=null,Vi(e)}co()}function co(){if(!to&&null!==Ji){to=!0;var e=0;try{var t=Ji;ao(99,function(){for(;e=t&&(Za=!0),e.firstContext=null)}function wo(e,t){if(vo!==e&&!1!==t&&0!==t)if("number"===typeof t&&1073741823!==t||(vo=e,t=1073741823),t={context:e,observedBits:t,next:null},null===mo){if(null===go)throw Error(a(308));mo=t,go.dependencies={expirationTime:0,firstContext:t,responders:null}}else mo=mo.next=t;return e._currentValue}var ko=!1;function Oo(e){e.updateQueue={baseState:e.memoizedState,baseQueue:null,shared:{pending:null},effects:null}}function So(e,t){e=e.updateQueue,t.updateQueue===e&&(t.updateQueue={baseState:e.baseState,baseQueue:e.baseQueue,shared:e.shared,effects:e.effects})}function Mo(e,t){return e={expirationTime:e,suspenseConfig:t,tag:0,payload:null,callback:null,next:null},e.next=e}function Co(e,t){if(e=e.updateQueue,null!==e){e=e.shared;var n=e.pending;null===n?t.next=t:(t.next=n.next,n.next=t),e.pending=t}}function To(e,t){var n=e.alternate;null!==n&&So(n,e),e=e.updateQueue,n=e.baseQueue,null===n?(e.baseQueue=t.next=t,t.next=t):(t.next=n.next,n.next=t)}function jo(e,t,n,r){var o=e.updateQueue;ko=!1;var a=o.baseQueue,s=o.shared.pending;if(null!==s){if(null!==a){var l=a.next;a.next=s.next,s.next=l}a=s,o.shared.pending=null,l=e.alternate,null!==l&&(l=l.updateQueue,null!==l&&(l.baseQueue=s))}if(null!==a){l=a.next;var u=o.baseState,c=0,f=null,d=null,h=null;if(null!==l){var p=l;do{if(s=p.expirationTime,sc&&(c=s)}else{null!==h&&(h=h.next={expirationTime:1073741823,suspenseConfig:p.suspenseConfig,tag:p.tag,payload:p.payload,callback:p.callback,next:null}),Nl(s,p.suspenseConfig);e:{var m=e,v=p;switch(s=t,g=n,v.tag){case 1:if(m=v.payload,"function"===typeof m){u=m.call(g,u,s);break e}u=m;break e;case 3:m.effectTag=-4097&m.effectTag|64;case 0:if(m=v.payload,s="function"===typeof m?m.call(g,u,s):m,null===s||void 0===s)break e;u=i({},u,s);break e;case 2:ko=!0}}null!==p.callback&&(e.effectTag|=32,s=o.effects,null===s?o.effects=[p]:s.push(p))}if(p=p.next,null===p||p===l){if(s=o.shared.pending,null===s)break;p=a.next=s.next,s.next=l,o.baseQueue=a=s,o.shared.pending=null}}while(1)}null===h?f=u:h.next=d,o.baseState=f,o.baseQueue=h,Rl(c),e.expirationTime=c,e.memoizedState=u}}function Io(e,t,n){if(e=t.effects,t.effects=null,null!==e)for(t=0;tg?(m=f,f=null):m=f.sibling;var v=h(i,f,s[g],l);if(null===v){null===f&&(f=m);break}e&&f&&null===v.alternate&&t(i,f),a=o(v,a,g),null===c?u=v:c.sibling=v,c=v,f=m}if(g===s.length)return n(i,f),u;if(null===f){for(;gm?(v=g,g=null):v=g.sibling;var b=h(i,g,y.value,u);if(null===b){null===g&&(g=v);break}e&&g&&null===b.alternate&&t(i,g),s=o(b,s,m),null===f?c=b:f.sibling=b,f=b,g=v}if(y.done)return n(i,g),c;if(null===g){for(;!y.done;m++,y=l.next())y=d(i,y.value,u),null!==y&&(s=o(y,s,m),null===f?c=y:f.sibling=y,f=y);return c}for(g=r(i,g);!y.done;m++,y=l.next())y=p(g,i,m,y.value,u),null!==y&&(e&&null!==y.alternate&&g.delete(null===y.key?m:y.key),s=o(y,s,m),null===f?c=y:f.sibling=y,f=y);return e&&g.forEach(function(e){return t(i,e)}),c}return function(e,r,o,l){var u="object"===typeof o&&null!==o&&o.type===ae&&null===o.key;u&&(o=o.props.children);var c="object"===typeof o&&null!==o;if(c)switch(o.$$typeof){case ie:e:{for(c=o.key,u=r;null!==u;){if(u.key===c){switch(u.tag){case 7:if(o.type===ae){n(e,u.sibling),r=i(u,o.props.children),r.return=e,e=r;break e}break;default:if(u.elementType===o.type){n(e,u.sibling),r=i(u,o.props),r.ref=Bo(e,u,o),r.return=e,e=r;break e}}n(e,u);break}t(e,u),u=u.sibling}o.type===ae?(r=su(o.props.children,e.mode,l,o.key),r.return=e,e=r):(l=au(o.type,o.key,o.props,null,e.mode,l),l.ref=Bo(e,r,o),l.return=e,e=l)}return s(e);case oe:e:{for(u=o.key;null!==r;){if(r.key===u){if(4===r.tag&&r.stateNode.containerInfo===o.containerInfo&&r.stateNode.implementation===o.implementation){n(e,r.sibling),r=i(r,o.children||[]),r.return=e,e=r;break e}n(e,r);break}t(e,r),r=r.sibling}r=uu(o,e.mode,l),r.return=e,e=r}return s(e)}if("string"===typeof o||"number"===typeof o)return o=""+o,null!==r&&6===r.tag?(n(e,r.sibling),r=i(r,o),r.return=e,e=r):(n(e,r),r=lu(o,e.mode,l),r.return=e,e=r),s(e);if(Fo(o))return g(e,r,o,l);if(be(o))return m(e,r,o,l);if(c&&Vo(e,o),"undefined"===typeof o&&!u)switch(e.tag){case 1:case 0:throw e=e.type,Error(a(152,e.displayName||e.name||"Component"))}return n(e,r)}}var Go=Yo(!0),Uo=Yo(!1),Wo={},Ho={current:Wo},qo={current:Wo},Zo={current:Wo};function Ko(e){if(e===Wo)throw Error(a(174));return e}function Xo(e,t){switch(Ci(Zo,t),Ci(qo,e),Ci(Ho,Wo),e=t.nodeType,e){case 9:case 11:t=(t=t.documentElement)?t.namespaceURI:Ge(null,"");break;default:e=8===e?t.parentNode:t,t=e.namespaceURI||null,e=e.tagName,t=Ge(t,e)}Mi(Ho),Ci(Ho,t)}function Qo(){Mi(Ho),Mi(qo),Mi(Zo)}function $o(e){Ko(Zo.current);var t=Ko(Ho.current),n=Ge(t,e.type);t!==n&&(Ci(qo,e),Ci(Ho,n))}function Jo(e){qo.current===e&&(Mi(Ho),Mi(qo))}var ea={current:0};function ta(e){for(var t=e;null!==t;){if(13===t.tag){var n=t.memoizedState;if(null!==n&&(n=n.dehydrated,null===n||n.data===Cn||n.data===Tn))return t}else if(19===t.tag&&void 0!==t.memoizedProps.revealOrder){if(0!==(64&t.effectTag))return t}else if(null!==t.child){t.child.return=t,t=t.child;continue}if(t===e)break;for(;null===t.sibling;){if(null===t.return||t.return===e)return null;t=t.return}t.sibling.return=t.return,t=t.sibling}return null}function na(e,t){return{responder:e,props:t}}var ra=ee.ReactCurrentDispatcher,ia=ee.ReactCurrentBatchConfig,oa=0,aa=null,sa=null,la=null,ua=!1;function ca(){throw Error(a(321))}function fa(e,t){if(null===t)return!1;for(var n=0;no))throw Error(a(301));o+=1,la=sa=null,t.updateQueue=null,ra.current=Ra,e=n(r,i)}while(t.expirationTime===oa)}if(ra.current=Pa,t=null!==sa&&null!==sa.next,oa=0,la=sa=aa=null,ua=!1,t)throw Error(a(300));return e}function ha(){var e={memoizedState:null,baseState:null,baseQueue:null,queue:null,next:null};return null===la?aa.memoizedState=la=e:la=la.next=e,la}function pa(){if(null===sa){var e=aa.alternate;e=null!==e?e.memoizedState:null}else e=sa.next;var t=null===la?aa.memoizedState:la.next;if(null!==t)la=t,sa=e;else{if(null===e)throw Error(a(310));sa=e,e={memoizedState:sa.memoizedState,baseState:sa.baseState,baseQueue:sa.baseQueue,queue:sa.queue,next:null},null===la?aa.memoizedState=la=e:la=la.next=e}return la}function ga(e,t){return"function"===typeof t?t(e):t}function ma(e){var t=pa(),n=t.queue;if(null===n)throw Error(a(311));n.lastRenderedReducer=e;var r=sa,i=r.baseQueue,o=n.pending;if(null!==o){if(null!==i){var s=i.next;i.next=o.next,o.next=s}r.baseQueue=i=o,n.pending=null}if(null!==i){i=i.next,r=r.baseState;var l=s=o=null,u=i;do{var c=u.expirationTime;if(caa.expirationTime&&(aa.expirationTime=c,Rl(c))}else null!==l&&(l=l.next={expirationTime:1073741823,suspenseConfig:u.suspenseConfig,action:u.action,eagerReducer:u.eagerReducer,eagerState:u.eagerState,next:null}),Nl(c,u.suspenseConfig),r=u.eagerReducer===e?u.eagerState:e(r,u.action);u=u.next}while(null!==u&&u!==i);null===l?o=r:l.next=s,ei(r,t.memoizedState)||(Za=!0),t.memoizedState=r,t.baseState=o,t.baseQueue=l,n.lastRenderedState=r}return[t.memoizedState,n.dispatch]}function va(e){var t=pa(),n=t.queue;if(null===n)throw Error(a(311));n.lastRenderedReducer=e;var r=n.dispatch,i=n.pending,o=t.memoizedState;if(null!==i){n.pending=null;var s=i=i.next;do{o=e(o,s.action),s=s.next}while(s!==i);ei(o,t.memoizedState)||(Za=!0),t.memoizedState=o,null===t.baseQueue&&(t.baseState=o),n.lastRenderedState=o}return[o,r]}function ya(e){var t=ha();return"function"===typeof e&&(e=e()),t.memoizedState=t.baseState=e,e=t.queue={pending:null,dispatch:null,lastRenderedReducer:ga,lastRenderedState:e},e=e.dispatch=Ea.bind(null,aa,e),[t.memoizedState,e]}function ba(e,t,n,r){return e={tag:e,create:t,destroy:n,deps:r,next:null},t=aa.updateQueue,null===t?(t={lastEffect:null},aa.updateQueue=t,t.lastEffect=e.next=e):(n=t.lastEffect,null===n?t.lastEffect=e.next=e:(r=n.next,n.next=e,e.next=r,t.lastEffect=e)),e}function _a(){return pa().memoizedState}function xa(e,t,n,r){var i=ha();aa.effectTag|=e,i.memoizedState=ba(1|t,n,void 0,void 0===r?null:r)}function wa(e,t,n,r){var i=pa();r=void 0===r?null:r;var o=void 0;if(null!==sa){var a=sa.memoizedState;if(o=a.destroy,null!==r&&fa(r,a.deps))return void ba(t,n,o,r)}aa.effectTag|=e,i.memoizedState=ba(1|t,n,o,r)}function ka(e,t){return xa(516,4,e,t)}function Oa(e,t){return wa(516,4,e,t)}function Sa(e,t){return wa(4,2,e,t)}function Ma(e,t){return"function"===typeof t?(e=e(),t(e),function(){t(null)}):null!==t&&void 0!==t?(e=e(),t.current=e,function(){t.current=null}):void 0}function Ca(e,t,n){return n=null!==n&&void 0!==n?n.concat([e]):null,wa(4,2,Ma.bind(null,t,e),n)}function Ta(){}function ja(e,t){return ha().memoizedState=[e,void 0===t?null:t],e}function Ia(e,t){var n=pa();t=void 0===t?null:t;var r=n.memoizedState;return null!==r&&null!==t&&fa(t,r[1])?r[0]:(n.memoizedState=[e,t],e)}function Da(e,t){var n=pa();t=void 0===t?null:t;var r=n.memoizedState;return null!==r&&null!==t&&fa(t,r[1])?r[0]:(e=e(),n.memoizedState=[e,t],e)}function Aa(e,t,n){var r=io();ao(98>r?98:r,function(){e(!0)}),ao(97<\/script>",e=e.removeChild(e.firstChild)):"string"===typeof r.is?e=l.createElement(o,{is:r.is}):(e=l.createElement(o),"select"===o&&(l=e,r.multiple?l.multiple=!0:r.size&&(l.size=r.size))):e=l.createElementNS(e,o),e[zn]=t,e[Fn]=r,is(e,t,!1,!1),t.stateNode=e,l=gn(o,r),o){case"iframe":case"object":case"embed":nn("load",e),u=r;break;case"video":case"audio":for(u=0;ur.tailExpiration&&1t)&&yl.set(e,t)))}}function Sl(e,t){e.expirationTimee?n:e,2>=e&&t!==e?0:e}function Cl(e){if(0!==e.lastExpiredTime)e.callbackExpirationTime=1073741823,e.callbackPriority=99,e.callbackNode=lo(jl.bind(null,e));else{var t=Ml(e),n=e.callbackNode;if(0===t)null!==n&&(e.callbackNode=null,e.callbackExpirationTime=0,e.callbackPriority=90);else{var r=wl();if(1073741823===t?r=99:1===t||2===t?r=95:(r=10*(1073741821-t)-10*(1073741821-r),r=0>=r?99:250>=r?98:5250>=r?97:95),null!==n){var i=e.callbackPriority;if(e.callbackExpirationTime===t&&i>=r)return;n!==Xi&&Vi(n)}e.callbackExpirationTime=t,e.callbackPriority=r,t=1073741823===t?lo(jl.bind(null,e)):so(r,Tl.bind(null,e),{timeout:10*(1073741821-t)-ro()}),e.callbackNode=t}}}function Tl(e,t){if(xl=0,t)return t=wl(),pu(e,t),Cl(e),null;var n=Ml(e);if(0!==n){if(t=e.callbackNode,($s&(Us|Ws))!==Ys)throw Error(a(327));if(Hl(),e===Js&&n===tl||El(e,n),null!==el){var r=$s;$s|=Us;var i=Ll();do{try{Fl();break}catch(t){Pl(e,t)}}while(1);if(yo(),$s=r,Bs.current=i,nl===qs)throw t=rl,El(e,n),du(e,n),Cl(e),t;if(null===el)switch(i=e.finishedWork=e.current.alternate,e.finishedExpirationTime=n,r=nl,Js=null,r){case Hs:case qs:throw Error(a(345));case Zs:pu(e,2=n){e.lastPingedTime=n,El(e,n);break}}if(o=Ml(e),0!==o&&o!==n)break;if(0!==r&&r!==n){e.lastPingedTime=r;break}e.timeoutHandle=En(Gl.bind(null,e),i);break}Gl(e);break;case Xs:if(du(e,n),r=e.lastSuspendedTime,n===r&&(e.nextKnownPendingLevel=Yl(i)),ll&&(i=e.lastPingedTime,0===i||i>=n)){e.lastPingedTime=n,El(e,n);break}if(i=Ml(e),0!==i&&i!==n)break;if(0!==r&&r!==n){e.lastPingedTime=r;break}if(1073741823!==ol?r=10*(1073741821-ol)-ro():1073741823===il?r=0:(r=10*(1073741821-il)-5e3,i=ro(),n=10*(1073741821-n)-i,r=i-r,0>r&&(r=0),r=(120>r?120:480>r?480:1080>r?1080:1920>r?1920:3e3>r?3e3:4320>r?4320:1960*Fs(r/1960))-r,n=r?r=0:(i=0|s.busyDelayMs,o=ro()-(10*(1073741821-o)-(0|s.timeoutMs||5e3)),r=o<=i?0:i+r-o),10 component higher in the tree to provide a loading indicator or placeholder to display."+we(a))}nl!==Qs&&(nl=Zs),s=vs(s,a),f=o;do{switch(f.tag){case 3:l=s,f.effectTag|=4096,f.expirationTime=t;var _=Ns(f,l,t);To(f,_);break e;case 1:l=s;var x=f.type,w=f.stateNode;if(0===(64&f.effectTag)&&("function"===typeof x.getDerivedStateFromError||null!==w&&"function"===typeof w.componentDidCatch&&(null===pl||!pl.has(w)))){f.effectTag|=4096,f.expirationTime=t;var k=Rs(f,l,t);To(f,k);break e}}f=f.return}while(null!==f)}el=Vl(el)}catch(e){t=e;continue}break}while(1)}function Ll(){var e=Bs.current;return Bs.current=Pa,null===e?Pa:e}function Nl(e,t){esl&&(sl=e)}function zl(){for(;null!==el;)el=Bl(el)}function Fl(){for(;null!==el&&!Qi();)el=Bl(el)}function Bl(e){var t=zs(e.alternate,e,tl);return e.memoizedProps=e.pendingProps,null===t&&(t=Vl(e)),Vs.current=null,t}function Vl(e){el=e;do{var t=el.alternate;if(e=el.return,0===(2048&el.effectTag)){if(t=gs(t,el,tl),1===tl||1!==el.childExpirationTime){for(var n=0,r=el.child;null!==r;){var i=r.expirationTime,o=r.childExpirationTime;i>n&&(n=i),o>n&&(n=o),r=r.sibling}el.childExpirationTime=n}if(null!==t)return t;null!==e&&0===(2048&e.effectTag)&&(null===e.firstEffect&&(e.firstEffect=el.firstEffect),null!==el.lastEffect&&(null!==e.lastEffect&&(e.lastEffect.nextEffect=el.firstEffect),e.lastEffect=el.lastEffect),1e?t:e}function Gl(e){var t=io();return ao(99,Ul.bind(null,e,t)),null}function Ul(e,t){do{Hl()}while(null!==ml);if(($s&(Us|Ws))!==Ys)throw Error(a(327));var n=e.finishedWork,r=e.finishedExpirationTime;if(null===n)return null;if(e.finishedWork=null,e.finishedExpirationTime=0,n===e.current)throw Error(a(177));e.callbackNode=null,e.callbackExpirationTime=0,e.callbackPriority=90,e.nextKnownPendingLevel=0;var i=Yl(n);if(e.firstPendingTime=i,r<=e.lastSuspendedTime?e.firstSuspendedTime=e.lastSuspendedTime=e.nextKnownPendingLevel=0:r<=e.firstSuspendedTime&&(e.firstSuspendedTime=r-1),r<=e.lastPingedTime&&(e.lastPingedTime=0),r<=e.lastExpiredTime&&(e.lastExpiredTime=0),e===Js&&(el=Js=null,tl=0),1l&&(c=l,l=s,s=c),c=xn(_,s),f=xn(_,l),c&&f&&(1!==w.rangeCount||w.anchorNode!==c.node||w.anchorOffset!==c.offset||w.focusNode!==f.node||w.focusOffset!==f.offset)&&(x=x.createRange(),x.setStart(c.node,c.offset),w.removeAllRanges(),s>l?(w.addRange(x),w.extend(f.node,f.offset)):(x.setEnd(f.node,f.offset),w.addRange(x)))))),x=[];for(w=_;w=w.parentNode;)1===w.nodeType&&x.push({element:w,left:w.scrollLeft,top:w.scrollTop});for("function"===typeof _.focus&&_.focus(),_=0;_=n?us(e,t,n):(Ci(ea,1&ea.current),t=hs(e,t,n),null!==t?t.sibling:null);Ci(ea,1&ea.current);break;case 19:if(r=t.childExpirationTime>=n,0!==(64&e.effectTag)){if(r)return ds(e,t,n);t.effectTag|=64}if(i=t.memoizedState,null!==i&&(i.rendering=null,i.tail=null),Ci(ea,ea.current),!r)return null}return hs(e,t,n)}Za=!1}}else Za=!1;switch(t.expirationTime=0,t.tag){case 2:if(r=t.type,null!==e&&(e.alternate=null,t.alternate=null,t.effectTag|=2),e=t.pendingProps,i=Ai(t,ji.current),xo(t,n),i=da(null,t,r,e,i,n),t.effectTag|=1,"object"===typeof i&&null!==i&&"function"===typeof i.render&&void 0===i.$$typeof){if(t.tag=1,t.memoizedState=null,t.updateQueue=null,Ei(r)){var o=!0;Ri(t)}else o=!1;t.memoizedState=null!==i.state&&void 0!==i.state?i.state:null,Oo(t);var s=r.getDerivedStateFromProps;"function"===typeof s&&Eo(t,r,s,e),i.updater=Po,t.stateNode=i,i._reactInternalFiber=t,zo(t,r,e,n),t=ns(null,t,r,!0,o,n)}else t.tag=0,Ka(null,t,i,n),t=t.child;return t;case 16:e:{if(i=t.elementType,null!==e&&(e.alternate=null,t.alternate=null,t.effectTag|=2),e=t.pendingProps,_e(i),1!==i._status)throw i._result;switch(i=i._result,t.type=i,o=t.tag=iu(i),e=ho(i,e),o){case 0:t=es(null,t,i,e,n);break e;case 1:t=ts(null,t,i,e,n);break e;case 11:t=Xa(null,t,i,e,n);break e;case 14:t=Qa(null,t,i,ho(i.type,e),r,n);break e}throw Error(a(306,i,""))}return t;case 0:return r=t.type,i=t.pendingProps,i=t.elementType===r?i:ho(r,i),es(e,t,r,i,n);case 1:return r=t.type,i=t.pendingProps,i=t.elementType===r?i:ho(r,i),ts(e,t,r,i,n);case 3:if(rs(t),r=t.updateQueue,null===e||null===r)throw Error(a(282));if(r=t.pendingProps,i=t.memoizedState,i=null!==i?i.element:null,So(e,t),jo(t,r,null,n),r=t.memoizedState.element,r===i)Ha(),t=hs(e,t,n);else{if((i=t.stateNode.hydrate)&&(Fa=Ln(t.stateNode.containerInfo.firstChild),za=t,i=Ba=!0),i)for(n=Uo(t,null,r,n),t.child=n;n;)n.effectTag=-3&n.effectTag|1024,n=n.sibling;else Ka(e,t,r,n),Ha();t=t.child}return t;case 5:return $o(t),null===e&&Ga(t),r=t.type,i=t.pendingProps,o=null!==e?e.memoizedProps:null,s=i.children,An(r,i)?s=null:null!==o&&An(r,o)&&(t.effectTag|=16),Ja(e,t),4&t.mode&&1!==n&&i.hidden?(t.expirationTime=t.childExpirationTime=1,t=null):(Ka(e,t,s,n),t=t.child),t;case 6:return null===e&&Ga(t),null;case 13:return us(e,t,n);case 4:return Xo(t,t.stateNode.containerInfo),r=t.pendingProps,null===e?t.child=Go(t,null,r,n):Ka(e,t,r,n),t.child;case 11:return r=t.type,i=t.pendingProps,i=t.elementType===r?i:ho(r,i),Xa(e,t,r,i,n);case 7:return Ka(e,t,t.pendingProps,n),t.child;case 8:return Ka(e,t,t.pendingProps.children,n),t.child;case 12:return Ka(e,t,t.pendingProps.children,n),t.child;case 10:e:{r=t.type._context,i=t.pendingProps,s=t.memoizedProps,o=i.value;var l=t.type._context;if(Ci(po,l._currentValue),l._currentValue=o,null!==s)if(l=s.value,o=ei(l,o)?0:0|("function"===typeof r._calculateChangedBits?r._calculateChangedBits(l,o):1073741823),0===o){if(s.children===i.children&&!Ii.current){t=hs(e,t,n);break e}}else for(l=t.child,null!==l&&(l.return=t);null!==l;){var u=l.dependencies;if(null!==u){s=l.child;for(var c=u.firstContext;null!==c;){if(c.context===r&&0!==(c.observedBits&o)){1===l.tag&&(c=Mo(n,null),c.tag=2,Co(l,c)),l.expirationTime=t&&e<=t}function du(e,t){var n=e.firstSuspendedTime,r=e.lastSuspendedTime;nt||0===n)&&(e.lastSuspendedTime=t),t<=e.lastPingedTime&&(e.lastPingedTime=0),t<=e.lastExpiredTime&&(e.lastExpiredTime=0)}function hu(e,t){t>e.firstPendingTime&&(e.firstPendingTime=t);var n=e.firstSuspendedTime;0!==n&&(t>=n?e.firstSuspendedTime=e.lastSuspendedTime=e.nextKnownPendingLevel=0:t>=e.lastSuspendedTime&&(e.lastSuspendedTime=t+1),t>e.nextKnownPendingLevel&&(e.nextKnownPendingLevel=t))}function pu(e,t){var n=e.lastExpiredTime;(0===n||n>t)&&(e.lastExpiredTime=t)}function gu(e,t,n,r){var i=t.current,o=wl(),s=Do.suspense;o=kl(o,i,s);e:if(n){n=n._reactInternalFiber;t:{if(ot(n)!==n||1!==n.tag)throw Error(a(170));var l=n;do{switch(l.tag){case 3:l=l.stateNode.context;break t;case 1:if(Ei(l.type)){l=l.stateNode.__reactInternalMemoizedMergedChildContext;break t}}l=l.return}while(null!==l);throw Error(a(171))}if(1===n.tag){var u=n.type;if(Ei(u)){n=Ni(n,u,l);break e}}n=l}else n=Ti;return null===t.context?t.context=n:t.pendingContext=n,t=Mo(o,s),t.payload={element:e},r=void 0===r?null:r,null!==r&&(t.callback=r),Co(i,t),Ol(i,o),o}function mu(e){if(e=e.current,!e.child)return null;switch(e.child.tag){case 5:return e.child.stateNode;default:return e.child.stateNode}}function vu(e,t){e=e.memoizedState,null!==e&&null!==e.dehydrated&&e.retryTime=m)return!1;if(v=u,c=e.md.helpers.parseLinkDestination(e.src,u,e.posMax),c.ok){for(h=e.md.normalizeLink(c.str),e.md.validateLink(h)?u=c.pos:h="",v=u;u=m||41!==e.src.charCodeAt(u))&&(y=!0),u++}if(y){if("undefined"===typeof e.env.references)return!1;if(u=0?a=e.src.slice(v,u++):u=s+1):u=s+1,a||(a=e.src.slice(l,s)),f=e.env.references[r(a)],!f)return e.pos=g,!1;h=f.href,p=f.title}return t||(e.pos=l,e.posMax=s,d=e.push("link_open","a",1),d.attrs=n=[["href",h]],p&&n.push(["title",p]),e.md.inline.tokenize(e),d=e.push("link_close","a",-1)),e.pos=u,e.posMax=m,!0}},zTMp:function(e,t,n){"use strict";n.d(t,"a",function(){return o}),n.d(t,"b",function(){return f}),n.d(t,"c",function(){return d}),n.d(t,"d",function(){return h}),n.d(t,"e",function(){return g});var r=n("Qxkt"),i=n("bYtY");function o(e,t){var n={axesInfo:{},seriesInvolved:!1,coordSysAxesInfo:{},coordSysMap:{}};return a(n,e,t),n.seriesInvolved&&l(n,e),n}function a(e,t,n){var r=t.getComponent("tooltip"),o=t.getComponent("axisPointer"),a=o.get("link",!0)||[],l=[];Object(i["k"])(n.getCoordinateSystems(),function(n){if(n.axisPointerEnabled){var c=g(n.model),f=e.coordSysAxesInfo[c]={};e.coordSysMap[c]=n;var d=n.model,h=d.getModel("tooltip",r);if(Object(i["k"])(n.getAxes(),Object(i["i"])(b,!1,null)),n.getTooltipAxes&&r&&h.get("show")){var m="axis"===h.get("trigger"),v="cross"===h.get(["axisPointer","type"]),y=n.getTooltipAxes(h.get(["axisPointer","axis"]));(m||v)&&Object(i["k"])(y.baseAxes,Object(i["i"])(b,!v||"cross",m)),v&&Object(i["k"])(y.otherAxes,Object(i["i"])(b,"cross",!1))}}function b(r,i,c){var d=c.model.getModel("axisPointer",o),m=d.get("show");if(m&&("auto"!==m||r||p(d))){null==i&&(i=d.get("triggerTooltip")),d=r?s(c,h,o,t,r,i):d;var v=d.get("snap"),y=g(c.model),b=i||v||"category"===c.type,_=e.axesInfo[y]={key:y,axis:c,coordSys:n,axisPointerModel:d,triggerTooltip:i,involveSeries:b,snap:v,useHandle:p(d),seriesModels:[],linkGroup:null};f[y]=_,e.seriesInvolved=e.seriesInvolved||b;var x=u(a,c);if(null!=x){var w=l[x]||(l[x]={axesInfo:{}});w.axesInfo[y]=_,w.mapper=a[x].mapper,_.linkGroup=w}}}})}function s(e,t,n,o,a,s){var l=t.getModel("axisPointer"),u=["type","snap","lineStyle","shadowStyle","label","animation","animationDurationUpdate","animationEasingUpdate","z"],c={};Object(i["k"])(u,function(e){c[e]=Object(i["d"])(l.get(e))}),c.snap="category"!==e.type&&!!s,"cross"===l.get("type")&&(c.type="line");var f=c.label||(c.label={});if(null==f.show&&(f.show=!1),"cross"===a){var d=l.get(["label","show"]);if(f.show=null==d||d,!s){var h=c.lineStyle=l.get("crossStyle");h&&Object(i["j"])(f,h.textStyle)}}return e.model.getModel("axisPointer",new r["a"](c,n,o))}function l(e,t){t.eachSeries(function(t){var n=t.coordinateSystem,r=t.get(["tooltip","trigger"],!0),o=t.get(["tooltip","show"],!0);n&&"none"!==r&&!1!==r&&"item"!==r&&!1!==o&&!1!==t.get(["axisPointer","show"],!0)&&Object(i["k"])(e.coordSysAxesInfo[g(n.model)],function(e){var r=e.axis;n.getAxis(r.dim)===r&&(e.seriesModels.push(t),null==e.seriesDataCount&&(e.seriesDataCount=0),e.seriesDataCount+=t.getData().count())})})}function u(e,t){for(var n=t.model,r=t.dim,i=0;i=0||e===t}function f(e){var t=d(e);if(t){var n=t.axisPointerModel,r=t.axis.scale,i=n.option,o=n.get("status"),a=n.get("value");null!=a&&(a=r.parse(a));var s=p(n);null==o&&(i.status=s?"show":"hide");var l=r.getExtent().slice();l[0]>l[1]&&l.reverse(),(null==a||a>l[1])&&(a=l[1]),a