From 848484682ac450ee1e4f9f654ce1bd4542bc5fbd Mon Sep 17 00:00:00 2001 From: Kakune55 Date: Thu, 17 Oct 2024 09:29:28 +0800 Subject: [PATCH] =?UTF-8?q?feat=EF=BC=9A=E5=AE=8C=E6=88=90=E7=AE=80?= =?UTF-8?q?=E6=98=93=E7=9A=84=E7=9A=84=E5=89=8D=E7=AB=AF=E5=92=8C=E5=90=8E?= =?UTF-8?q?=E7=AB=AFapi?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitattributes | 1 - .gitignore | 40 +- README.md | 17 - .../__pycache__/chatglmTurbo.cpython-311.pyc | Bin 1575 -> 0 bytes .../__pycache__/gpt35Turbo.cpython-311.pyc | Bin 1577 -> 0 bytes .../__pycache__/gpt4Turbo.cpython-311.pyc | Bin 1581 -> 0 bytes .../__pycache__/qwenTurbo.cpython-311.pyc | Bin 1307 -> 0 bytes apiModule/chatglmTurbo.py | 27 - apiModule/gpt35Turbo.py | 28 - apiModule/gpt4Turbo.py | 28 - apiModule/qwenTurbo.py | 31 - config.py | 19 - configUtil.py | 84 + dao/db/user.py | 89 + db.py | 226 -- doc/clientConfig.md | 7 - doc/serverapi.md | 17 - frontend/env.d.ts | 3 + frontend/index.html | 13 + frontend/package-lock.json | 1861 +++++++++++++++++ frontend/package.json | 30 + frontend/public/favicon.ico | Bin 0 -> 4286 bytes frontend/src/App.vue | 34 + frontend/src/assets/base.css | 86 + frontend/src/assets/main.css | 35 + frontend/src/main.ts | 15 + frontend/src/router/index.ts | 29 + frontend/src/views/ChatPage.vue | 340 +++ frontend/src/views/LoginPage.vue | 136 ++ frontend/tsconfig.app.json | 14 + frontend/tsconfig.json | 11 + frontend/tsconfig.node.json | 19 + frontend/vite.config.ts | 16 + log.py | 26 - main.py | 148 +- model/glm-4-flash.py | 32 + model/util.py | 57 + requirements.txt | 7 +- router/chat.py | 21 + router/page.py | 30 + router/user.py | 19 + app_control.sh => server.sh | 0 static/echarts.min.js | 45 - static/img/bg_ants.png | Bin 43030 -> 0 bytes static/img/bg_boobs.png | Bin 21614 -> 0 bytes static/img/bg_circles.png | Bin 21786 -> 0 bytes static/img/bg_cross.png | Bin 4314 -> 0 bytes static/img/bg_diag.png | Bin 10744 -> 0 bytes static/img/bg_fuzzy.png | Bin 39777 -> 0 bytes static/img/bg_fuzzy_bits.png | Bin 20277 -> 0 bytes static/img/bg_life.png | Bin 19239 -> 0 bytes static/img/bg_yourls.png | Bin 13616 -> 0 bytes static/img/loading.gif | Bin 137004 -> 0 bytes static/index.css | 78 - static/loading.css | 270 --- static/menu.css | 52 - static/menu.js | 9 - static/popup.css | 171 -- static/popupMessagesBox.js | 59 - templates/createKey.html | 74 - templates/favicon.ico | Bin 9662 -> 0 bytes templates/index.html | 282 --- templates/keylist.html | 81 - templates/login.html | 63 - templates/loglist.html | 84 - templates/lookupKey.html | 61 - templates/status.html | 152 -- 67 files changed, 3024 insertions(+), 2053 deletions(-) delete mode 100644 README.md delete mode 100644 apiModule/__pycache__/chatglmTurbo.cpython-311.pyc delete mode 100644 apiModule/__pycache__/gpt35Turbo.cpython-311.pyc delete mode 100644 apiModule/__pycache__/gpt4Turbo.cpython-311.pyc delete mode 100644 apiModule/__pycache__/qwenTurbo.cpython-311.pyc delete mode 100644 apiModule/chatglmTurbo.py delete mode 100644 apiModule/gpt35Turbo.py delete mode 100644 apiModule/gpt4Turbo.py delete mode 100644 apiModule/qwenTurbo.py delete mode 100644 config.py create mode 100644 configUtil.py create mode 100644 dao/db/user.py delete mode 100644 db.py delete mode 100644 doc/clientConfig.md delete mode 100644 doc/serverapi.md create mode 100644 frontend/env.d.ts create mode 100644 frontend/index.html create mode 100644 frontend/package-lock.json create mode 100644 frontend/package.json create mode 100644 frontend/public/favicon.ico create mode 100644 frontend/src/App.vue create mode 100644 frontend/src/assets/base.css create mode 100644 frontend/src/assets/main.css create mode 100644 frontend/src/main.ts create mode 100644 frontend/src/router/index.ts create mode 100644 frontend/src/views/ChatPage.vue create mode 100644 frontend/src/views/LoginPage.vue create mode 100644 frontend/tsconfig.app.json create mode 100644 frontend/tsconfig.json create mode 100644 frontend/tsconfig.node.json create mode 100644 frontend/vite.config.ts delete mode 100644 log.py create mode 100644 model/glm-4-flash.py create mode 100644 model/util.py create mode 100644 router/chat.py create mode 100644 router/page.py create mode 100644 router/user.py rename app_control.sh => server.sh (100%) delete mode 100644 static/echarts.min.js delete mode 100644 static/img/bg_ants.png delete mode 100644 static/img/bg_boobs.png delete mode 100644 static/img/bg_circles.png delete mode 100644 static/img/bg_cross.png delete mode 100644 static/img/bg_diag.png delete mode 100644 static/img/bg_fuzzy.png delete mode 100644 static/img/bg_fuzzy_bits.png delete mode 100644 static/img/bg_life.png delete mode 100644 static/img/bg_yourls.png delete mode 100644 static/img/loading.gif delete mode 100644 static/index.css delete mode 100644 static/loading.css delete mode 100644 static/menu.css delete mode 100644 static/menu.js delete mode 100644 static/popup.css delete mode 100644 static/popupMessagesBox.js delete mode 100644 templates/createKey.html delete mode 100644 templates/favicon.ico delete mode 100644 templates/index.html delete mode 100644 templates/keylist.html delete mode 100644 templates/login.html delete mode 100644 templates/loglist.html delete mode 100644 templates/lookupKey.html delete mode 100644 templates/status.html diff --git a/.gitattributes b/.gitattributes index a28d821..e69de29 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1 +0,0 @@ -*.html linguist-language=Python diff --git a/.gitignore b/.gitignore index 35df236..226cb85 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,37 @@ -/__pycache__ -*.json -APPData.db +__pycache__ +.venv +test.py +data + + +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* +lerna-debug.log* + +node_modules +.DS_Store +dist +dist-ssr +coverage +*.local + +/cypress/videos/ +/cypress/screenshots/ + +# Editor directories and files +.vscode/* +!.vscode/extensions.json +.idea +*.suo +*.ntvs* +*.njsproj +*.sln +*.sw? + +*.tsbuildinfo + diff --git a/README.md b/README.md deleted file mode 100644 index 2545017..0000000 --- a/README.md +++ /dev/null @@ -1,17 +0,0 @@ -# PyGetGPT -使用python构建的简易语言模型api调用系统 -使用web页面作为GUI易于部署 ---- -## 使用的外部库 -- flask -- flask_cors -- zhipuai -- pymysql -- requests -- openai - -## 使用pip安装依赖 -~~~ bash -pip install pymysql requests flask zhipuai openai -pip install pymysql requests flask zhipuai openai -i https://pypi.tuna.tsinghua.edu.cn/simple -~~~ diff --git a/apiModule/__pycache__/chatglmTurbo.cpython-311.pyc b/apiModule/__pycache__/chatglmTurbo.cpython-311.pyc deleted file mode 100644 index fb3b32646a4006fd4f56e4cfb5428ef003a7d332..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1575 zcmb7D%}*Og6rc5ay=%bO*sB1ElmdxTR*4#=sFhlgR6tr#B?ux(RZ*+f;@Q{>w%3{+ zBbg5gMLBTf&?q_dz==}9!G|9B6F9EXNU=t$gwzu^SF{&SePgh_fmCWoquDp_{oe0= z%-dfgkq!iFHb|{#5TQTBrMUtZ!s(A7yg?XYDTn6IztX%EK$f)F#GoC(>@__R4)nKW zxh-2LB{vN?gq2s)d=N`dk)fUl^$hPyXHA;Pp z1=;B^Xy2eU2}?^2JGnza-CT=OQ`+`>H7wL&8lZQ>$wOwi! zD3=!;O2oYIU>blYhYb;%)C7{OW2Y^bh(SG*hPYC4&5Xsns6)+MiaJYH!9Dp@ILLW7 zV<=o*$=bz|Y4dO+Xv!?wJY*M^0m)^T60W$#oJ|dxbO|pt3rRSn%r#=UMW^6euJ|7Y z1_sW?(_bc^Lq%@#d)stU$;VE*l!t=cL<;ztg9V^r^!{Ri9@1^r6Z0S#NIM`@v*$3toDW%`JJk6*jl( zMOQs-^*GwoqO0l#(~aHX%4hrctNIrQ54`B8r;VOMFOeZN=Fm`x7*igCiF;vZ#8aAh z0%Wej%cPd9a-;pfA~FOpG62V!HVWebFZPIh3|BFc?sst1Wl551sMq_@K8_D=-TCQ$ hHGYf5Z*9-8_(dwjxv9P_VMv($h;EuH8`pZF_VR-s>dd>g0|+SlvL_`=e(? zdFI=PSO=Z=Ha(@n|A?w!f4300r>OEZtO533z20Lh^(yH5dhXuj->X0C-_FW+HmeO! zq1%+67zLkO8Qgzb)emvtt=4|mx}dodkGK*-;MeD#3N6yg6FygkSN5Sl2b~@*s}B$k z0x3fGsf17s0x7NlE3UL@;jJ)2lOExvR*?uTXO%c9ak%iUS(p@szD5``RtRgzkfP6E z%w*gsaiK0*oXUO*FXL9Z@dt@Kq!-agJNuC}z2} zN=huL3V)eGTrRXcAhqba&?#YMc!MwrFOf*R`aJh>=4(itWfn}s%4Tj^xyl;k%`$T) zzgt<#%&*T8J~#g`W0cK%7OoUYMt)3F59POXwY)Ag@O}(9=?H|B-C|)V&=#s|p`Fq1 zHn%ok#D;c1abh3*8Jm0_o2*Aij)yKhy<-ntgV|I)gQ2Dm#Z!MFU%dZsxoqp(`adBQ zA3p0fSDStIW$m$Z`MN#u8O-|7c&=IAUX;TGy%&i{ZpVLbm2O^2uDdp_AM+;RZ)~W8noXuk0Xhl!QBf-kx?fy zx;NuQCTkN;jww>68VQDYU{XCoEEorf|Djr3o$N9!F863wPtLsENj)7 zk&A^5rsUwG4~F(oicfBebI_p&L)&|g>#z_pP%!kQn~K{@PJJVLB^4(S=wo>EX5PSSg}~(_L9mJcuX-*9Pr_&4KHQuxFqn zs~wr3tm-P>*x&mfe?WOkSi}A&%7PCo4^b-6ke9R7;BuK?zjlLH=%OV;(-oe#s980* zX_bUpp+$jmZOGstlb3)_Y(=KHp z^31mnu@2hrZF)+D{}ENe{!SrqS5f6_SOe_c`aqYh)T^NH>AHKBf4Ba;|7ljf^I2_p z3Z15O#VGjP%HZC!s!rhGYpwmRbwP6_9(5&zz^}(W6eIZDe4p_D;`zlDtc)MTc5;si5#% zWl}Os;mzd@E`m90wOk}}D4Fo*C^5K%khjbnVIs6-mQ0qbrGP1mEjG-$(OfsALyS$;!K}64J)gE zY~?DekT=t3On$$zsL!p>5I!^aNH@yn0}EG*M2F%{Jd)qjweq^qzjuD1dDTnh6x>bF_=!DULSiXjh-!d#+_{EmM!gcJ4cg(Y?={#1$to?j+v-Eq*xv z>zB^dy#2-Fqp8P7le#mh+Y#Lk=*N)}J2G+tbwMemHGC;Qjl&7rY?YSGW!V!0-vL=@ zP~z+gfi^7~jAY^G)GF#vhz^4TO#*uv_z0#EnsAd|g`=EA_7$+Eswhew_1mvn$I;|Y z|L&!u=&%zV-kWlw>Dssxy}jjs60XOFb}sLZAH_zT*vQ@kCzh$*aAK37iZs3b%4ie4 IhP5F53#fi;8UO$Q diff --git a/apiModule/__pycache__/qwenTurbo.cpython-311.pyc b/apiModule/__pycache__/qwenTurbo.cpython-311.pyc deleted file mode 100644 index e2b776b54f2215acba6783378471cd9976914bb7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1307 zcma)5&1)M+6rY{_lJ#M!i5w?R`e7w5R*GB5!8L7ZC@E2jV>dJo6d?#3%{X3L-dWGi zrm>JglpK60#fL%#b-^b$#ceV4l7FDkqXc^pdlK~I+k(j@r@mQL-do$p@b>-Q*Sz`7 z>`%E|8iD-&@(cQ#iqKyYj0A8jryclwj|d`4167A#rK-djS20Euua9!kA>p&BH zDY4bWu4+X4-*tLYM~r=3)yWu1JyWU%QSPI1`b6%q9FA>$MIGVuM=Vr*-e?vq*KOE! zOW4eLZ{1@~nES*RYmD2?*jL8Q>@DU9D4JW@b}84PO^E9FY+!^;u;s~4vx;P(r4VH! zj`J~siP}OxAX_2YKHk9&cqE1#eIE~f0;)!`er5}~(La*#CQ>6GLM<%fTN!$OF%Dsd zqceurjZx+y^gKH2yQ31br9MHtNK!4Z6V?EYC8!DIB)zKMMUtf=E8G zWo5ar%;gx(v}Ap5NW0;3w&{v84)sk&Xd~2Z$MpeodA878vpvE1HpI2~KFl?05z4(# zt3&$9jW}tOdY<)|a!K>apVDP8UqG8s6ZEMFbzg?VtYE@wJQQq$I$qi2S(&Lfm_@uW z#p#w$Jpqkf<_WIFU51M2{T9fpoAnQB4?LK!_N8sH zhqX^x-QR@Q;?*j)xZ^*n-P^8EQMtELvs`9-?+hlU2Zf8B+nvjiiYLY+T`!~~1Zr2?)uIBrP#Rn*buRa(rXyX2 zIFd>?WD=-d?PUQKir+MUoZX-MRXx7;htZv?^rk9-Tz7l3_BPiZDz8Ms60efi-?4@zrh|&|vT_r;QrsH}42ChXnU;qFB diff --git a/apiModule/chatglmTurbo.py b/apiModule/chatglmTurbo.py deleted file mode 100644 index 7791b57..0000000 --- a/apiModule/chatglmTurbo.py +++ /dev/null @@ -1,27 +0,0 @@ -import zhipuai , config - -zhipuai.api_key = config.readConf()["chatglmturbo"]["Authorization"] - -def service(prompt,history = ""): - if history == "": - response = zhipuai.model_api.invoke( - model="chatglm_turbo", - prompt=[ - {"role": "user", "content": prompt}, - ] - ) - else: - response = zhipuai.model_api.invoke( - model="chatglm_turbo", - prompt=[ - {"role": "user", "content": history[1]["user"]}, - {"role": "assistant", "content": history[1]["bot"]}, - {"role": "user", "content": history[0]["user"]}, - {"role": "assistant", "content": history[0]["bot"]}, - {"role": "user", "content": prompt}, - ] - ) - if response["code"] == 200: - return 200, str(response["data"]["choices"][0]["content"]).split('"')[1], response["data"]["usage"]['total_tokens'] - else: - return 50 , str(response["code"])+response["msg"], 0 diff --git a/apiModule/gpt35Turbo.py b/apiModule/gpt35Turbo.py deleted file mode 100644 index 88002bf..0000000 --- a/apiModule/gpt35Turbo.py +++ /dev/null @@ -1,28 +0,0 @@ -import openai , config - -openai.api_key = config.readConf()["gpt3.5turbo"]["Authorization"] -openai.base_url = config.readConf()["gpt3.5turbo"]["url"] - -def service(prompt,history = ""): - if history == "": - response = openai.chat.completions.create( - model="gpt-3.5-turbo", - messages=[ - {"role": "user", "content": prompt}, - ] - ) - else: - response = openai.chat.completions.create( - model="gpt-3.5-turbo", - messages=[ - {"role": "user", "content": history[1]["user"]}, - {"role": "assistant", "content": history[1]["bot"]}, - {"role": "user", "content": history[0]["user"]}, - {"role": "assistant", "content": history[0]["bot"]}, - {"role": "user", "content": prompt}, - ] - ) - if response.choices[0].finish_reason == "stop": - return 200, response.choices[0].message.content, int(response.usage.total_tokens*3) #三倍tokens消耗 - else: - return 50 , "API Error!", 0 \ No newline at end of file diff --git a/apiModule/gpt4Turbo.py b/apiModule/gpt4Turbo.py deleted file mode 100644 index 0e41fbf..0000000 --- a/apiModule/gpt4Turbo.py +++ /dev/null @@ -1,28 +0,0 @@ -import openai , config - -openai.api_key = config.readConf()["gpt4.0turbo"]["Authorization"] -openai.base_url = config.readConf()["gpt4.0turbo"]["url"] - -def service(prompt,history = ""): - if history == "": - response = openai.chat.completions.create( - model="gpt-4-1106-preview", - messages=[ - {"role": "user", "content": prompt}, - ] - ) - else: - response = openai.chat.completions.create( - model="gpt-4-1106-preview", - messages=[ - {"role": "user", "content": history[1]["user"]}, - {"role": "assistant", "content": history[1]["bot"]}, - {"role": "user", "content": history[0]["user"]}, - {"role": "assistant", "content": history[0]["bot"]}, - {"role": "user", "content": prompt}, - ] - ) - if response.choices[0].finish_reason == "stop": - return 200, response.choices[0].message.content, int(response.usage.total_tokens*45) #45倍tokens消耗 - else: - return 50 , "API Error!", 0 \ No newline at end of file diff --git a/apiModule/qwenTurbo.py b/apiModule/qwenTurbo.py deleted file mode 100644 index 70344dd..0000000 --- a/apiModule/qwenTurbo.py +++ /dev/null @@ -1,31 +0,0 @@ -import requests , json , config - -# 设置请求的目标URL -url = config.readConf()["qwenturbo"]["url"] # 替换为你的API端点URL -header = { - "Content-Type":"application/json", - "Authorization":config.readConf()["qwenturbo"]["Authorization"] -} - -def service(prompt,history = ""): - # 设置请求数据 - if history == "": - data = { - "model": "qwen-turbo", - "input":{ - "prompt":f"{prompt}" - } - } - else: - data = { - "model": "qwen-turbo", - "input":{ - "prompt":f"{prompt}", - "history":history - } - } - # 发送POST请求 - response = json.loads(requests.post(url, json=data ,headers=header).text) - if 'code' in response: - return 50,response['code']+response['message'],0 - return 200,response['output']['text'],response["usage"]["total_tokens"] \ No newline at end of file diff --git a/config.py b/config.py deleted file mode 100644 index 4929030..0000000 --- a/config.py +++ /dev/null @@ -1,19 +0,0 @@ -import json - -def readConf(): - with open('config.json') as f: - return json.load(f) - -def updateConf(data_dict): - # 打开JSON文件并读取内容 - file_path = 'config.json' - with open(file_path, 'r') as json_file: - existing_data = json.load(json_file) - - # 将新的数据合并到现有的数据中 - existing_data.update(data_dict) - - # 再次打开文件(这次是以写模式),并将更新后的数据保存回文件 - with open(file_path, 'w') as json_file: - json.dump(existing_data, json_file, indent=4, ensure_ascii=False) - diff --git a/configUtil.py b/configUtil.py new file mode 100644 index 0000000..654cb2c --- /dev/null +++ b/configUtil.py @@ -0,0 +1,84 @@ +import configparser + +class ConfigUtil: + # 初始化ConfigParser对象 + config = configparser.ConfigParser() + + def __init__(self,path:str): + # 读取并加载配置文件config.ini + self.config.read(path,encoding="utf-8") + + def get(self, section: str, key: str) -> str: + """ + 获取配置项的字符串值 + + 参数: + section (str): 配置文件中的节名 + key (str): 节中的配置项键名 + + 返回: + str: 配置项的字符串值 + """ + return self.config.get(section, key) + + def getBool(self, section: str, key: str) -> bool: + """ + 获取配置项的布尔值 + + 参数: + section (str): 配置文件中的节名 + key (str): 节中的配置项键名 + + 返回: + bool: 配置项的布尔值 + """ + return self.config.getboolean(section, key) + + def getInt(self, section: str, key: str) -> int: + """ + 获取配置项的整数值 + + 参数: + section (str): 配置文件中的节名 + key (str): 节中的配置项键名 + + 返回: + int: 配置项的整数值 + """ + return self.config.getint(section, key) + + def getFloat(self, section: str, key: str) -> float: + """ + 获取配置项的浮点数值 + + 参数: + section (str): 配置文件中的节名 + key (str): 节中的配置项键名 + + 返回: + float: 配置项的浮点数值 + """ + return self.config.getfloat(section, key) + + + def getSectionList(self) -> list: + """ + 获取配置文件中的所有节名 + + 返回: + list: 所有节名的列表 + """ + return self.config.sections() + + + def getKeyList(self, section: str) -> list: + """ + 获取指定节中的所有键名 + + 参数: + section (str): 配置文件中的节名 + + 返回: + list: 指定节中的所有键名的列表 + """ + return self.config.options(section) \ No newline at end of file diff --git a/dao/db/user.py b/dao/db/user.py new file mode 100644 index 0000000..27cb792 --- /dev/null +++ b/dao/db/user.py @@ -0,0 +1,89 @@ +import sqlite3, time +import configUtil + +def getConnection() -> sqlite3.Connection: + return sqlite3.connect(configUtil.ConfigUtil("config.ini").get("database","path")) + + +def init(): + conn = getConnection() + cursor = conn.cursor() + cursor.execute( + ''' + CREATE TABLE User ( + uid TEXT, + email TEXT, + password_hash TEXT, + created_at INT, + surplus INT); + ''' + ) + conn.commit() + cursor.close() + conn.close() + print("数据库初始化完成") + + +def addUser(uid: str, email: str, password_hash: str) -> bool: + conn = getConnection() + cursor = conn.cursor() + try: + cursor.execute( + "INSERT INTO User (uid, email, password_hash, created_at, surplus) VALUES (?, ?, ?, ?, ?);", + [uid, email, password_hash, int(time.time()), 0] + ) + conn.commit() + return True + except sqlite3.IntegrityError: + return False + + +def checkUser(uid: str,password_hash) -> bool: + """检查用户与密码是否合法 可输入邮箱或uid""" + conn = getConnection() + cursor = conn.cursor() + cursor.execute("SELECT * FROM User WHERE ( uid = ? AND password_hash = ? ) OR ( email = ? AND password_hash = ? )",[uid,password_hash,uid,password_hash]) + result = cursor.fetchone() + return result != None + + +def getUser(uid: str) -> dict: + """获取用户信息""" + conn = getConnection() + cursor = conn.cursor() + cursor.execute("SELECT * FROM User WHERE uid = ?",[uid]) + result = cursor.fetchone() + return {"uid":result[0],"email":result[1],"password_hash":result[2],"created_at":result[3],"surplus":result[4]} + + +def updateUserSurplus(uid: str, surplus: int) -> bool: + """更新用户剩余额度""" + conn = getConnection() + cursor = conn.cursor() + try: + cursor.execute("UPDATE User SET surplus = ? WHERE uid = ?",[surplus,uid]) + conn.commit() + cursor.close() + conn.close() + except: return False + return True + +def getUserSurplus(uid: str) -> int: + """获取用户剩余额度""" + return getUser(uid)["surplus"] + + +def updateUserPasswd(uid: str, password_hash: str) -> bool: + """更新用户密码""" + conn = getConnection() + cursor = conn.cursor() + try: + cursor.execute("UPDATE User SET password_hash = ? WHERE uid = ?",[password_hash,uid]) + conn.commit() + cursor.close() + conn.close() + except: return False + return True + + + diff --git a/db.py b/db.py deleted file mode 100644 index 4000764..0000000 --- a/db.py +++ /dev/null @@ -1,226 +0,0 @@ -import config , uuid , pathlib - -def getconn(): - try: - import sqlite3 - conn = sqlite3.connect(config.readConf()["db"]["path"]) - return conn - except: - print("DB ERROR") - return 0 - -def dbIsOK(): - #打开数据库连接 - path = pathlib.Path(config.readConf()["db"]["path"]) - if not path.is_file(): - init() - - try: - getconn() - return True - except: - return False - -def init(): - #打开数据库连接 - db = getconn() - # 使用 cursor() 方法创建一个游标对象 cursor - cursor = db.cursor() - #建表 - cursor.execute( - ''' - CREATE TABLE usersurplus ( - userkey TEXT, - surplus INT); - ''') - cursor.execute( - ''' - CREATE TABLE log ( - ip TEXT, - time INT, - tokens INT, - model TEXT, - userkey TEXT); - ''') - # 提交事务 - db.commit() - - # 关闭连接 - db.close() - -def userSurplus(userkey): #查询userkey剩余配额 - #打开数据库连接 - db = getconn() - # 使用 cursor() 方法创建一个游标对象 cursor - cursor = db.cursor() - - # 使用 execute() 方法执行 SQL 查询 - cursor.execute("SELECT surplus FROM usersurplus WHERE userkey = ?;",[userkey]) - # 使用 fetchone() 方法获取单条数据. - data = cursor.fetchone() - - # 关闭连接 - db.close() - - if data != None: - return data[0] - return -99999 - -def reduce_value(userkey, value): # 减去对应的值 - #打开数据库连接 - db = getconn() - # 使用 cursor() 方法创建一个游标对象 cursor - cursor = db.cursor() - - # 执行 SQL 查询以获取当前值 - cursor.execute("SELECT surplus FROM usersurplus WHERE userkey = ?;",[userkey]) - current_value = cursor.fetchone()[0] - - # 如果没有找到用户,则返回错误信息 - if current_value is None: - db.close() - return -1 - - # 计算新的值 - new_value = current_value - value - - # 更新数据库中的值 - cursor.execute("UPDATE usersurplus SET surplus= ? WHERE userkey= ?;",[new_value,userkey]) - - # 提交事务 - db.commit() - - # 关闭连接 - db.close() - - # 返回新值 - return 0 - -def getAllKey(): - #打开数据库连接 - db = getconn() - # 使用 cursor() 方法创建一个游标对象 cursor - cursor = db.cursor() - - # 使用 execute() 方法执行 SQL 查询 - cursor.execute("SELECT * FROM usersurplus ;") - # 使用 fetchall() 方法获取结果集 - data = cursor.fetchall() - - # 关闭连接 - db.close() - - return data - - -def delKey(userkey): - #打开数据库连接 - db = getconn() - # 使用 cursor() 方法创建一个游标对象 cursor - cursor = db.cursor() - - # 使用 execute() 方法执行 SQL 查询 - cursor.execute("DELETE FROM usersurplus WHERE userkey = ?;", [userkey]) - - # 提交事务 - db.commit() - - if cursor.rowcount > 0: - db.close() # 使用 rowcount() 方法查询受影响行数 - return True - db.close() - return False - - -def createKey(quota,number=1,key="null"): - #打开数据库连接 - db = getconn() - # 使用 cursor() 方法创建一个游标对象 cursor - cursor = db.cursor() - - # 使用 execute() 方法执行 SQL 查询 - output = [] - - if key == "null": - for i in range(int(number)): - key = str(uuid.uuid1()) - output.append(key) - cursor.execute("INSERT INTO usersurplus (userkey,surplus) VALUES (?, ?);", [key, quota]) - else: - cursor.execute("INSERT INTO usersurplus (userkey,surplus) VALUES (?, ?);", [key, quota]) - output.append(key) - - - # 提交事务 - db.commit() - - db.close() - - return output - - -def newLog(ip:str, time:int, tokens:int, model:str, userkey:str): - #打开数据库连接 - db = getconn() - # 使用 cursor() 方法创建一个游标对象 cursor - cursor = db.cursor() - - # 使用 execute() 方法执行 SQL 查询 - - cursor.execute("INSERT INTO log (ip, time, tokens, model, userkey) VALUES (?, ?, ?, ?, ?);", [ip, time, tokens, model, userkey]) - - # 提交事务 - db.commit() - - db.close() - - -def getlog(num:int): - #打开数据库连接 - db = getconn() - # 使用 cursor() 方法创建一个游标对象 cursor - cursor = db.cursor() - - # 使用 execute() 方法执行 SQL 查询 - cursor.execute("SELECT * FROM log order by time desc limit ?;", [num]) - # 使用 fetchall() 方法获取结果集 - data = cursor.fetchall() - - # 关闭连接 - db.close() - - return data - -def getLogAllModel(): - #打开数据库连接 - db = getconn() - # 使用 cursor() 方法创建一个游标对象 cursor - cursor = db.cursor() - - # 使用 execute() 方法执行 SQL 查询 - cursor.execute("SELECT DISTINCT model FROM log ;") - # 使用 fetchall() 方法获取结果集 - data = cursor.fetchall() - - # 关闭连接 - db.close() - - return data - -def countLog(key:str, value:str): - #打开数据库连接 - db = getconn() - # 使用 cursor() 方法创建一个游标对象 cursor - cursor = db.cursor() - try: - # 使用 execute() 方法执行 SQL 查询 - cursor.execute(f"SELECT COUNT(*) FROM log WHERE {key} = ?;", [value]) - # 使用 fetchone() 方法获取结果 - data = cursor.fetchone() - - # 关闭连接 - db.close() - except Exception as e: - return e - - return data[0] diff --git a/doc/clientConfig.md b/doc/clientConfig.md deleted file mode 100644 index 36afe45..0000000 --- a/doc/clientConfig.md +++ /dev/null @@ -1,7 +0,0 @@ -# 配置文件说明 -{"url": "<此处为api URL>", "userkey": "<此处为你的UserKey>", "context": <此处为1 开启上下位关联功能 默认0关闭>} -注意:开启上下文关联会消耗大量的token -# 什么是Token -在大型语言模型中,"token"是指文本中的一个最小单位。 通常,一个token可以是一个单词、一个标点符号、一个数字、一个符号等。 在自然语言处理中,tokenization是将一个句子或文本分成tokens的过程。 在大型语言模型的训练和应用中,模型接收一串tokens作为输入,并尝试预测下一个最可能的token。 -# 上下文关联 -在使用上下文关联时,模型除了处理你当前的问题时还需要一并将历史对话的一部分共同处理。所以需要消耗更多的token。在本应用中token消耗平均值大约是不开启上下文功能的300%。 \ No newline at end of file diff --git a/doc/serverapi.md b/doc/serverapi.md deleted file mode 100644 index 66694e2..0000000 --- a/doc/serverapi.md +++ /dev/null @@ -1,17 +0,0 @@ -# server API 接口文档 - -## 请求格式(json) -| 键 | 类型 | 必选 | 示例 | -|---------|------|-----|-----| -| prompt | str | yes | "你好" | -| userkey | str | yes | "2b3j41b2xh1hz1" | -| history | list | no | "history":[{"user":"XXXXXX","bot":"XXXXXX"},{"user":"XXXXXX""bot":"XXXXXX"}] | - - -## 返回格式(json) -| 键 | 类型 | 示例 | -|----|------|------| -| code | int | 200 | -| output | str | "你好" | -| surplus | int | 10000 | -| | \ No newline at end of file diff --git a/frontend/env.d.ts b/frontend/env.d.ts new file mode 100644 index 0000000..ea4ee32 --- /dev/null +++ b/frontend/env.d.ts @@ -0,0 +1,3 @@ +/// + +declare module "*.vue" diff --git a/frontend/index.html b/frontend/index.html new file mode 100644 index 0000000..a888544 --- /dev/null +++ b/frontend/index.html @@ -0,0 +1,13 @@ + + + + + + + Vite App + + +
+ + + diff --git a/frontend/package-lock.json b/frontend/package-lock.json new file mode 100644 index 0000000..4773db6 --- /dev/null +++ b/frontend/package-lock.json @@ -0,0 +1,1861 @@ +{ + "name": "frontend", + "version": "0.0.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "frontend", + "version": "0.0.0", + "dependencies": { + "axios": "^1.7.7", + "element-plus": "^2.8.5", + "marked": "^14.1.3", + "vue": "^3.5.11", + "vue-router": "^4.4.5" + }, + "devDependencies": { + "@tsconfig/node20": "^20.1.4", + "@types/node": "^20.16.11", + "@vitejs/plugin-vue": "^5.1.4", + "@vue/tsconfig": "^0.5.1", + "npm-run-all2": "^6.2.3", + "typescript": "~5.5.4", + "vite": "^5.4.8", + "vue-tsc": "^2.1.6" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.25.7", + "resolved": "https://registry.npmmirror.com/@babel/helper-string-parser/-/helper-string-parser-7.25.7.tgz", + "integrity": "sha512-CbkjYdsJNHFk8uqpEkpCvRs3YRp9tY6FmFY7wLMSYuGYkrdUi7r2lc4/wqsvlHoMznX3WJ9IP8giGPq68T/Y6g==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.25.7", + "resolved": "https://registry.npmmirror.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.7.tgz", + "integrity": "sha512-AM6TzwYqGChO45oiuPqwL2t20/HdMC1rTPAesnBCgPCSF1x3oN9MVUwQV2iyz4xqWrctwK5RNC8LV22kaQCNYg==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/parser": { + "version": "7.25.8", + "resolved": "https://registry.npmmirror.com/@babel/parser/-/parser-7.25.8.tgz", + "integrity": "sha512-HcttkxzdPucv3nNFmfOOMfFf64KgdJVqm1KaCm25dPGMLElo9nsLvXeJECQg8UzPuBGLyTSA0ZzqCtDSzKTEoQ==", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.25.8" + }, + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/types": { + "version": "7.25.8", + "resolved": "https://registry.npmmirror.com/@babel/types/-/types-7.25.8.tgz", + "integrity": "sha512-JWtuCu8VQsMladxVz/P4HzHUGCAwpuqacmowgXFs5XjxIgKuNjnLokQzuVjlTvIzODaDmpjT3oxcC48vyk9EWg==", + "license": "MIT", + "dependencies": { + "@babel/helper-string-parser": "^7.25.7", + "@babel/helper-validator-identifier": "^7.25.7", + "to-fast-properties": "^2.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@ctrl/tinycolor": { + "version": "3.6.1", + "resolved": "https://registry.npmmirror.com/@ctrl/tinycolor/-/tinycolor-3.6.1.tgz", + "integrity": "sha512-SITSV6aIXsuVNV3f3O0f2n/cgyEDWoSqtZMYiAmcsYHydcKrOz3gUxB/iXd/Qf08+IZX4KpgNbvUdMBmWz+kcA==", + "license": "MIT", + "engines": { + "node": ">=10" + } + }, + "node_modules/@element-plus/icons-vue": { + "version": "2.3.1", + "resolved": "https://registry.npmmirror.com/@element-plus/icons-vue/-/icons-vue-2.3.1.tgz", + "integrity": "sha512-XxVUZv48RZAd87ucGS48jPf6pKu0yV5UCg9f4FFwtrYxXOwWuVJo6wOvSLKEoMQKjv8GsX/mhP6UsC1lRwbUWg==", + "license": "MIT", + "peerDependencies": { + "vue": "^3.2.0" + } + }, + "node_modules/@esbuild/aix-ppc64": { + "version": "0.21.5", + "resolved": "https://registry.npmmirror.com/@esbuild/aix-ppc64/-/aix-ppc64-0.21.5.tgz", + "integrity": "sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "aix" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/android-arm": { + "version": "0.21.5", + "resolved": "https://registry.npmmirror.com/@esbuild/android-arm/-/android-arm-0.21.5.tgz", + "integrity": "sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/android-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmmirror.com/@esbuild/android-arm64/-/android-arm64-0.21.5.tgz", + "integrity": "sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/android-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmmirror.com/@esbuild/android-x64/-/android-x64-0.21.5.tgz", + "integrity": "sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/darwin-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmmirror.com/@esbuild/darwin-arm64/-/darwin-arm64-0.21.5.tgz", + "integrity": "sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/darwin-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmmirror.com/@esbuild/darwin-x64/-/darwin-x64-0.21.5.tgz", + "integrity": "sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/freebsd-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmmirror.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.5.tgz", + "integrity": "sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/freebsd-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmmirror.com/@esbuild/freebsd-x64/-/freebsd-x64-0.21.5.tgz", + "integrity": "sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-arm": { + "version": "0.21.5", + "resolved": "https://registry.npmmirror.com/@esbuild/linux-arm/-/linux-arm-0.21.5.tgz", + "integrity": "sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmmirror.com/@esbuild/linux-arm64/-/linux-arm64-0.21.5.tgz", + "integrity": "sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-ia32": { + "version": "0.21.5", + "resolved": "https://registry.npmmirror.com/@esbuild/linux-ia32/-/linux-ia32-0.21.5.tgz", + "integrity": "sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-loong64": { + "version": "0.21.5", + "resolved": "https://registry.npmmirror.com/@esbuild/linux-loong64/-/linux-loong64-0.21.5.tgz", + "integrity": "sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-mips64el": { + "version": "0.21.5", + "resolved": "https://registry.npmmirror.com/@esbuild/linux-mips64el/-/linux-mips64el-0.21.5.tgz", + "integrity": "sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==", + "cpu": [ + "mips64el" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-ppc64": { + "version": "0.21.5", + "resolved": "https://registry.npmmirror.com/@esbuild/linux-ppc64/-/linux-ppc64-0.21.5.tgz", + "integrity": "sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-riscv64": { + "version": "0.21.5", + "resolved": "https://registry.npmmirror.com/@esbuild/linux-riscv64/-/linux-riscv64-0.21.5.tgz", + "integrity": "sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-s390x": { + "version": "0.21.5", + "resolved": "https://registry.npmmirror.com/@esbuild/linux-s390x/-/linux-s390x-0.21.5.tgz", + "integrity": "sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmmirror.com/@esbuild/linux-x64/-/linux-x64-0.21.5.tgz", + "integrity": "sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/netbsd-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmmirror.com/@esbuild/netbsd-x64/-/netbsd-x64-0.21.5.tgz", + "integrity": "sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/openbsd-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmmirror.com/@esbuild/openbsd-x64/-/openbsd-x64-0.21.5.tgz", + "integrity": "sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/sunos-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmmirror.com/@esbuild/sunos-x64/-/sunos-x64-0.21.5.tgz", + "integrity": "sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmmirror.com/@esbuild/win32-arm64/-/win32-arm64-0.21.5.tgz", + "integrity": "sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-ia32": { + "version": "0.21.5", + "resolved": "https://registry.npmmirror.com/@esbuild/win32-ia32/-/win32-ia32-0.21.5.tgz", + "integrity": "sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmmirror.com/@esbuild/win32-x64/-/win32-x64-0.21.5.tgz", + "integrity": "sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@floating-ui/core": { + "version": "1.6.8", + "resolved": "https://registry.npmmirror.com/@floating-ui/core/-/core-1.6.8.tgz", + "integrity": "sha512-7XJ9cPU+yI2QeLS+FCSlqNFZJq8arvswefkZrYI1yQBbftw6FyrZOxYSh+9S7z7TpeWlRt9zJ5IhM1WIL334jA==", + "license": "MIT", + "dependencies": { + "@floating-ui/utils": "^0.2.8" + } + }, + "node_modules/@floating-ui/dom": { + "version": "1.6.11", + "resolved": "https://registry.npmmirror.com/@floating-ui/dom/-/dom-1.6.11.tgz", + "integrity": "sha512-qkMCxSR24v2vGkhYDo/UzxfJN3D4syqSjyuTFz6C7XcpU1pASPRieNI0Kj5VP3/503mOfYiGY891ugBX1GlABQ==", + "license": "MIT", + "dependencies": { + "@floating-ui/core": "^1.6.0", + "@floating-ui/utils": "^0.2.8" + } + }, + "node_modules/@floating-ui/utils": { + "version": "0.2.8", + "resolved": "https://registry.npmmirror.com/@floating-ui/utils/-/utils-0.2.8.tgz", + "integrity": "sha512-kym7SodPp8/wloecOpcmSnWJsK7M0E5Wg8UcFA+uO4B9s5d0ywXOEro/8HM9x0rW+TljRzul/14UYz3TleT3ig==", + "license": "MIT" + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.5.0", + "resolved": "https://registry.npmmirror.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", + "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==", + "license": "MIT" + }, + "node_modules/@popperjs/core": { + "name": "@sxzz/popperjs-es", + "version": "2.11.7", + "resolved": "https://registry.npmmirror.com/@sxzz/popperjs-es/-/popperjs-es-2.11.7.tgz", + "integrity": "sha512-Ccy0NlLkzr0Ex2FKvh2X+OyERHXJ88XJ1MXtsI9y9fGexlaXaVTPzBCRBwIxFkORuOb+uBqeu+RqnpgYTEZRUQ==", + "license": "MIT", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/popperjs" + } + }, + "node_modules/@rollup/rollup-android-arm-eabi": { + "version": "4.24.0", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.24.0.tgz", + "integrity": "sha512-Q6HJd7Y6xdB48x8ZNVDOqsbh2uByBhgK8PiQgPhwkIw/HC/YX5Ghq2mQY5sRMZWHb3VsFkWooUVOZHKr7DmDIA==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-android-arm64": { + "version": "4.24.0", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.24.0.tgz", + "integrity": "sha512-ijLnS1qFId8xhKjT81uBHuuJp2lU4x2yxa4ctFPtG+MqEE6+C5f/+X/bStmxapgmwLwiL3ih122xv8kVARNAZA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-darwin-arm64": { + "version": "4.24.0", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.24.0.tgz", + "integrity": "sha512-bIv+X9xeSs1XCk6DVvkO+S/z8/2AMt/2lMqdQbMrmVpgFvXlmde9mLcbQpztXm1tajC3raFDqegsH18HQPMYtA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-darwin-x64": { + "version": "4.24.0", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.24.0.tgz", + "integrity": "sha512-X6/nOwoFN7RT2svEQWUsW/5C/fYMBe4fnLK9DQk4SX4mgVBiTA9h64kjUYPvGQ0F/9xwJ5U5UfTbl6BEjaQdBQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-linux-arm-gnueabihf": { + "version": "4.24.0", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.24.0.tgz", + "integrity": "sha512-0KXvIJQMOImLCVCz9uvvdPgfyWo93aHHp8ui3FrtOP57svqrF/roSSR5pjqL2hcMp0ljeGlU4q9o/rQaAQ3AYA==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm-musleabihf": { + "version": "4.24.0", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.24.0.tgz", + "integrity": "sha512-it2BW6kKFVh8xk/BnHfakEeoLPv8STIISekpoF+nBgWM4d55CZKc7T4Dx1pEbTnYm/xEKMgy1MNtYuoA8RFIWw==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-gnu": { + "version": "4.24.0", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.24.0.tgz", + "integrity": "sha512-i0xTLXjqap2eRfulFVlSnM5dEbTVque/3Pi4g2y7cxrs7+a9De42z4XxKLYJ7+OhE3IgxvfQM7vQc43bwTgPwA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-musl": { + "version": "4.24.0", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.24.0.tgz", + "integrity": "sha512-9E6MKUJhDuDh604Qco5yP/3qn3y7SLXYuiC0Rpr89aMScS2UAmK1wHP2b7KAa1nSjWJc/f/Lc0Wl1L47qjiyQw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-powerpc64le-gnu": { + "version": "4.24.0", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.24.0.tgz", + "integrity": "sha512-2XFFPJ2XMEiF5Zi2EBf4h73oR1V/lycirxZxHZNc93SqDN/IWhYYSYj8I9381ikUFXZrz2v7r2tOVk2NBwxrWw==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-gnu": { + "version": "4.24.0", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.24.0.tgz", + "integrity": "sha512-M3Dg4hlwuntUCdzU7KjYqbbd+BLq3JMAOhCKdBE3TcMGMZbKkDdJ5ivNdehOssMCIokNHFOsv7DO4rlEOfyKpg==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-s390x-gnu": { + "version": "4.24.0", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.24.0.tgz", + "integrity": "sha512-mjBaoo4ocxJppTorZVKWFpy1bfFj9FeCMJqzlMQGjpNPY9JwQi7OuS1axzNIk0nMX6jSgy6ZURDZ2w0QW6D56g==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-gnu": { + "version": "4.24.0", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.24.0.tgz", + "integrity": "sha512-ZXFk7M72R0YYFN5q13niV0B7G8/5dcQ9JDp8keJSfr3GoZeXEoMHP/HlvqROA3OMbMdfr19IjCeNAnPUG93b6A==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-musl": { + "version": "4.24.0", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.24.0.tgz", + "integrity": "sha512-w1i+L7kAXZNdYl+vFvzSZy8Y1arS7vMgIy8wusXJzRrPyof5LAb02KGr1PD2EkRcl73kHulIID0M501lN+vobQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-win32-arm64-msvc": { + "version": "4.24.0", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.24.0.tgz", + "integrity": "sha512-VXBrnPWgBpVDCVY6XF3LEW0pOU51KbaHhccHw6AS6vBWIC60eqsH19DAeeObl+g8nKAz04QFdl/Cefta0xQtUQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-ia32-msvc": { + "version": "4.24.0", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.24.0.tgz", + "integrity": "sha512-xrNcGDU0OxVcPTH/8n/ShH4UevZxKIO6HJFK0e15XItZP2UcaiLFd5kiX7hJnqCbSztUF8Qot+JWBC/QXRPYWQ==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-x64-msvc": { + "version": "4.24.0", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.24.0.tgz", + "integrity": "sha512-fbMkAF7fufku0N2dE5TBXcNlg0pt0cJue4xBRE2Qc5Vqikxr4VCgKj/ht6SMdFcOacVA9rqF70APJ8RN/4vMJw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@tsconfig/node20": { + "version": "20.1.4", + "resolved": "https://registry.npmmirror.com/@tsconfig/node20/-/node20-20.1.4.tgz", + "integrity": "sha512-sqgsT69YFeLWf5NtJ4Xq/xAF8p4ZQHlmGW74Nu2tD4+g5fAsposc4ZfaaPixVu4y01BEiDCWLRDCvDM5JOsRxg==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/estree": { + "version": "1.0.6", + "resolved": "https://registry.npmmirror.com/@types/estree/-/estree-1.0.6.tgz", + "integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/lodash": { + "version": "4.17.10", + "resolved": "https://registry.npmmirror.com/@types/lodash/-/lodash-4.17.10.tgz", + "integrity": "sha512-YpS0zzoduEhuOWjAotS6A5AVCva7X4lVlYLF0FYHAY9sdraBfnatttHItlWeZdGhuEkf+OzMNg2ZYAx8t+52uQ==", + "license": "MIT" + }, + "node_modules/@types/lodash-es": { + "version": "4.17.12", + "resolved": "https://registry.npmmirror.com/@types/lodash-es/-/lodash-es-4.17.12.tgz", + "integrity": "sha512-0NgftHUcV4v34VhXm8QBSftKVXtbkBG3ViCjs6+eJ5a6y6Mi/jiFGPc1sC7QK+9BFhWrURE3EOggmWaSxL9OzQ==", + "license": "MIT", + "dependencies": { + "@types/lodash": "*" + } + }, + "node_modules/@types/node": { + "version": "20.16.11", + "resolved": "https://registry.npmmirror.com/@types/node/-/node-20.16.11.tgz", + "integrity": "sha512-y+cTCACu92FyA5fgQSAI8A1H429g7aSK2HsO7K4XYUWc4dY5IUz55JSDIYT6/VsOLfGy8vmvQYC2hfb0iF16Uw==", + "dev": true, + "license": "MIT", + "dependencies": { + "undici-types": "~6.19.2" + } + }, + "node_modules/@types/web-bluetooth": { + "version": "0.0.16", + "resolved": "https://registry.npmmirror.com/@types/web-bluetooth/-/web-bluetooth-0.0.16.tgz", + "integrity": "sha512-oh8q2Zc32S6gd/j50GowEjKLoOVOwHP/bWVjKJInBwQqdOYMdPrf1oVlelTlyfFK3CKxL1uahMDAr+vy8T7yMQ==", + "license": "MIT" + }, + "node_modules/@vitejs/plugin-vue": { + "version": "5.1.4", + "resolved": "https://registry.npmmirror.com/@vitejs/plugin-vue/-/plugin-vue-5.1.4.tgz", + "integrity": "sha512-N2XSI2n3sQqp5w7Y/AN/L2XDjBIRGqXko+eDp42sydYSBeJuSm5a1sLf8zakmo8u7tA8NmBgoDLA1HeOESjp9A==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^18.0.0 || >=20.0.0" + }, + "peerDependencies": { + "vite": "^5.0.0", + "vue": "^3.2.25" + } + }, + "node_modules/@volar/language-core": { + "version": "2.4.6", + "resolved": "https://registry.npmmirror.com/@volar/language-core/-/language-core-2.4.6.tgz", + "integrity": "sha512-FxUfxaB8sCqvY46YjyAAV6c3mMIq/NWQMVvJ+uS4yxr1KzOvyg61gAuOnNvgCvO4TZ7HcLExBEsWcDu4+K4E8A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@volar/source-map": "2.4.6" + } + }, + "node_modules/@volar/source-map": { + "version": "2.4.6", + "resolved": "https://registry.npmmirror.com/@volar/source-map/-/source-map-2.4.6.tgz", + "integrity": "sha512-Nsh7UW2ruK+uURIPzjJgF0YRGP5CX9nQHypA2OMqdM2FKy7rh+uv3XgPnWPw30JADbKvZ5HuBzG4gSbVDYVtiw==", + "dev": true, + "license": "MIT" + }, + "node_modules/@volar/typescript": { + "version": "2.4.6", + "resolved": "https://registry.npmmirror.com/@volar/typescript/-/typescript-2.4.6.tgz", + "integrity": "sha512-NMIrA7y5OOqddL9VtngPWYmdQU03htNKFtAYidbYfWA0TOhyGVd9tfcP4TsLWQ+RBWDZCbBqsr8xzU0ZOxYTCQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@volar/language-core": "2.4.6", + "path-browserify": "^1.0.1", + "vscode-uri": "^3.0.8" + } + }, + "node_modules/@vue/compiler-core": { + "version": "3.5.12", + "resolved": "https://registry.npmmirror.com/@vue/compiler-core/-/compiler-core-3.5.12.tgz", + "integrity": "sha512-ISyBTRMmMYagUxhcpyEH0hpXRd/KqDU4ymofPgl2XAkY9ZhQ+h0ovEZJIiPop13UmR/54oA2cgMDjgroRelaEw==", + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.25.3", + "@vue/shared": "3.5.12", + "entities": "^4.5.0", + "estree-walker": "^2.0.2", + "source-map-js": "^1.2.0" + } + }, + "node_modules/@vue/compiler-dom": { + "version": "3.5.12", + "resolved": "https://registry.npmmirror.com/@vue/compiler-dom/-/compiler-dom-3.5.12.tgz", + "integrity": "sha512-9G6PbJ03uwxLHKQ3P42cMTi85lDRvGLB2rSGOiQqtXELat6uI4n8cNz9yjfVHRPIu+MsK6TE418Giruvgptckg==", + "license": "MIT", + "dependencies": { + "@vue/compiler-core": "3.5.12", + "@vue/shared": "3.5.12" + } + }, + "node_modules/@vue/compiler-sfc": { + "version": "3.5.12", + "resolved": "https://registry.npmmirror.com/@vue/compiler-sfc/-/compiler-sfc-3.5.12.tgz", + "integrity": "sha512-2k973OGo2JuAa5+ZlekuQJtitI5CgLMOwgl94BzMCsKZCX/xiqzJYzapl4opFogKHqwJk34vfsaKpfEhd1k5nw==", + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.25.3", + "@vue/compiler-core": "3.5.12", + "@vue/compiler-dom": "3.5.12", + "@vue/compiler-ssr": "3.5.12", + "@vue/shared": "3.5.12", + "estree-walker": "^2.0.2", + "magic-string": "^0.30.11", + "postcss": "^8.4.47", + "source-map-js": "^1.2.0" + } + }, + "node_modules/@vue/compiler-ssr": { + "version": "3.5.12", + "resolved": "https://registry.npmmirror.com/@vue/compiler-ssr/-/compiler-ssr-3.5.12.tgz", + "integrity": "sha512-eLwc7v6bfGBSM7wZOGPmRavSWzNFF6+PdRhE+VFJhNCgHiF8AM7ccoqcv5kBXA2eWUfigD7byekvf/JsOfKvPA==", + "license": "MIT", + "dependencies": { + "@vue/compiler-dom": "3.5.12", + "@vue/shared": "3.5.12" + } + }, + "node_modules/@vue/compiler-vue2": { + "version": "2.7.16", + "resolved": "https://registry.npmmirror.com/@vue/compiler-vue2/-/compiler-vue2-2.7.16.tgz", + "integrity": "sha512-qYC3Psj9S/mfu9uVi5WvNZIzq+xnXMhOwbTFKKDD7b1lhpnn71jXSFdTQ+WsIEk0ONCd7VV2IMm7ONl6tbQ86A==", + "dev": true, + "license": "MIT", + "dependencies": { + "de-indent": "^1.0.2", + "he": "^1.2.0" + } + }, + "node_modules/@vue/devtools-api": { + "version": "6.6.4", + "resolved": "https://registry.npmmirror.com/@vue/devtools-api/-/devtools-api-6.6.4.tgz", + "integrity": "sha512-sGhTPMuXqZ1rVOk32RylztWkfXTRhuS7vgAKv0zjqk8gbsHkJ7xfFf+jbySxt7tWObEJwyKaHMikV/WGDiQm8g==", + "license": "MIT" + }, + "node_modules/@vue/language-core": { + "version": "2.1.6", + "resolved": "https://registry.npmmirror.com/@vue/language-core/-/language-core-2.1.6.tgz", + "integrity": "sha512-MW569cSky9R/ooKMh6xa2g1D0AtRKbL56k83dzus/bx//RDJk24RHWkMzbAlXjMdDNyxAaagKPRquBIxkxlCkg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@volar/language-core": "~2.4.1", + "@vue/compiler-dom": "^3.4.0", + "@vue/compiler-vue2": "^2.7.16", + "@vue/shared": "^3.4.0", + "computeds": "^0.0.1", + "minimatch": "^9.0.3", + "muggle-string": "^0.4.1", + "path-browserify": "^1.0.1" + }, + "peerDependencies": { + "typescript": "*" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@vue/reactivity": { + "version": "3.5.12", + "resolved": "https://registry.npmmirror.com/@vue/reactivity/-/reactivity-3.5.12.tgz", + "integrity": "sha512-UzaN3Da7xnJXdz4Okb/BGbAaomRHc3RdoWqTzlvd9+WBR5m3J39J1fGcHes7U3za0ruYn/iYy/a1euhMEHvTAg==", + "license": "MIT", + "dependencies": { + "@vue/shared": "3.5.12" + } + }, + "node_modules/@vue/runtime-core": { + "version": "3.5.12", + "resolved": "https://registry.npmmirror.com/@vue/runtime-core/-/runtime-core-3.5.12.tgz", + "integrity": "sha512-hrMUYV6tpocr3TL3Ad8DqxOdpDe4zuQY4HPY3X/VRh+L2myQO8MFXPAMarIOSGNu0bFAjh1yBkMPXZBqCk62Uw==", + "license": "MIT", + "dependencies": { + "@vue/reactivity": "3.5.12", + "@vue/shared": "3.5.12" + } + }, + "node_modules/@vue/runtime-dom": { + "version": "3.5.12", + "resolved": "https://registry.npmmirror.com/@vue/runtime-dom/-/runtime-dom-3.5.12.tgz", + "integrity": "sha512-q8VFxR9A2MRfBr6/55Q3umyoN7ya836FzRXajPB6/Vvuv0zOPL+qltd9rIMzG/DbRLAIlREmnLsplEF/kotXKA==", + "license": "MIT", + "dependencies": { + "@vue/reactivity": "3.5.12", + "@vue/runtime-core": "3.5.12", + "@vue/shared": "3.5.12", + "csstype": "^3.1.3" + } + }, + "node_modules/@vue/server-renderer": { + "version": "3.5.12", + "resolved": "https://registry.npmmirror.com/@vue/server-renderer/-/server-renderer-3.5.12.tgz", + "integrity": "sha512-I3QoeDDeEPZm8yR28JtY+rk880Oqmj43hreIBVTicisFTx/Dl7JpG72g/X7YF8hnQD3IFhkky5i2bPonwrTVPg==", + "license": "MIT", + "dependencies": { + "@vue/compiler-ssr": "3.5.12", + "@vue/shared": "3.5.12" + }, + "peerDependencies": { + "vue": "3.5.12" + } + }, + "node_modules/@vue/shared": { + "version": "3.5.12", + "resolved": "https://registry.npmmirror.com/@vue/shared/-/shared-3.5.12.tgz", + "integrity": "sha512-L2RPSAwUFbgZH20etwrXyVyCBu9OxRSi8T/38QsvnkJyvq2LufW2lDCOzm7t/U9C1mkhJGWYfCuFBCmIuNivrg==", + "license": "MIT" + }, + "node_modules/@vue/tsconfig": { + "version": "0.5.1", + "resolved": "https://registry.npmmirror.com/@vue/tsconfig/-/tsconfig-0.5.1.tgz", + "integrity": "sha512-VcZK7MvpjuTPx2w6blwnwZAu5/LgBUtejFOi3pPGQFXQN5Ela03FUtd2Qtg4yWGGissVL0dr6Ro1LfOFh+PCuQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/@vueuse/core": { + "version": "9.13.0", + "resolved": "https://registry.npmmirror.com/@vueuse/core/-/core-9.13.0.tgz", + "integrity": "sha512-pujnclbeHWxxPRqXWmdkKV5OX4Wk4YeK7wusHqRwU0Q7EFusHoqNA/aPhB6KCh9hEqJkLAJo7bb0Lh9b+OIVzw==", + "license": "MIT", + "dependencies": { + "@types/web-bluetooth": "^0.0.16", + "@vueuse/metadata": "9.13.0", + "@vueuse/shared": "9.13.0", + "vue-demi": "*" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, + "node_modules/@vueuse/core/node_modules/vue-demi": { + "version": "0.14.10", + "resolved": "https://registry.npmmirror.com/vue-demi/-/vue-demi-0.14.10.tgz", + "integrity": "sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==", + "hasInstallScript": true, + "license": "MIT", + "bin": { + "vue-demi-fix": "bin/vue-demi-fix.js", + "vue-demi-switch": "bin/vue-demi-switch.js" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + }, + "peerDependencies": { + "@vue/composition-api": "^1.0.0-rc.1", + "vue": "^3.0.0-0 || ^2.6.0" + }, + "peerDependenciesMeta": { + "@vue/composition-api": { + "optional": true + } + } + }, + "node_modules/@vueuse/metadata": { + "version": "9.13.0", + "resolved": "https://registry.npmmirror.com/@vueuse/metadata/-/metadata-9.13.0.tgz", + "integrity": "sha512-gdU7TKNAUVlXXLbaF+ZCfte8BjRJQWPCa2J55+7/h+yDtzw3vOoGQDRXzI6pyKyo6bXFT5/QoPE4hAknExjRLQ==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, + "node_modules/@vueuse/shared": { + "version": "9.13.0", + "resolved": "https://registry.npmmirror.com/@vueuse/shared/-/shared-9.13.0.tgz", + "integrity": "sha512-UrnhU+Cnufu4S6JLCPZnkWh0WwZGUp72ktOF2DFptMlOs3TOdVv8xJN53zhHGARmVOsz5KqOls09+J1NR6sBKw==", + "license": "MIT", + "dependencies": { + "vue-demi": "*" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, + "node_modules/@vueuse/shared/node_modules/vue-demi": { + "version": "0.14.10", + "resolved": "https://registry.npmmirror.com/vue-demi/-/vue-demi-0.14.10.tgz", + "integrity": "sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==", + "hasInstallScript": true, + "license": "MIT", + "bin": { + "vue-demi-fix": "bin/vue-demi-fix.js", + "vue-demi-switch": "bin/vue-demi-switch.js" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + }, + "peerDependencies": { + "@vue/composition-api": "^1.0.0-rc.1", + "vue": "^3.0.0-0 || ^2.6.0" + }, + "peerDependenciesMeta": { + "@vue/composition-api": { + "optional": true + } + } + }, + "node_modules/ansi-styles": { + "version": "6.2.1", + "resolved": "https://registry.npmmirror.com/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/async-validator": { + "version": "4.2.5", + "resolved": "https://registry.npmmirror.com/async-validator/-/async-validator-4.2.5.tgz", + "integrity": "sha512-7HhHjtERjqlNbZtqNqy2rckN/SpOOlmDliet+lP7k+eKZEjPk3DgyeU9lIXLdeLz0uBbbVp+9Qdow9wJWgwwfg==", + "license": "MIT" + }, + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmmirror.com/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", + "license": "MIT" + }, + "node_modules/axios": { + "version": "1.7.7", + "resolved": "https://registry.npmmirror.com/axios/-/axios-1.7.7.tgz", + "integrity": "sha512-S4kL7XrjgBmvdGut0sN3yJxqYzrDOnivkBiN0OFs6hLiUam3UPvswUo0kqGyhqUZGEOytHyumEdXsAkgCOUf3Q==", + "license": "MIT", + "dependencies": { + "follow-redirects": "^1.15.6", + "form-data": "^4.0.0", + "proxy-from-env": "^1.1.0" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmmirror.com/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true, + "license": "MIT" + }, + "node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmmirror.com/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "license": "MIT", + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/computeds": { + "version": "0.0.1", + "resolved": "https://registry.npmmirror.com/computeds/-/computeds-0.0.1.tgz", + "integrity": "sha512-7CEBgcMjVmitjYo5q8JTJVra6X5mQ20uTThdK+0kR7UEaDrAWEQcRiBtWJzga4eRpP6afNwwLsX2SET2JhVB1Q==", + "dev": true, + "license": "MIT" + }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmmirror.com/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "license": "MIT", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/csstype": { + "version": "3.1.3", + "resolved": "https://registry.npmmirror.com/csstype/-/csstype-3.1.3.tgz", + "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==", + "license": "MIT" + }, + "node_modules/dayjs": { + "version": "1.11.13", + "resolved": "https://registry.npmmirror.com/dayjs/-/dayjs-1.11.13.tgz", + "integrity": "sha512-oaMBel6gjolK862uaPQOVTA7q3TZhuSvuMQAAglQDOWYO9A91IrAOUJEyKVlqJlHE0vq5p5UXxzdPfMH/x6xNg==", + "license": "MIT" + }, + "node_modules/de-indent": { + "version": "1.0.2", + "resolved": "https://registry.npmmirror.com/de-indent/-/de-indent-1.0.2.tgz", + "integrity": "sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==", + "dev": true, + "license": "MIT" + }, + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "license": "MIT", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/element-plus": { + "version": "2.8.5", + "resolved": "https://registry.npmmirror.com/element-plus/-/element-plus-2.8.5.tgz", + "integrity": "sha512-Px+kPbRTVvn5oa5+9saa7QEOnUweKXm0JVI7yJHzKF/doQGixwcFMsQEF2+3Fy62EA/7dRRKVuhsNGGZYNk3cw==", + "license": "MIT", + "dependencies": { + "@ctrl/tinycolor": "^3.4.1", + "@element-plus/icons-vue": "^2.3.1", + "@floating-ui/dom": "^1.0.1", + "@popperjs/core": "npm:@sxzz/popperjs-es@^2.11.7", + "@types/lodash": "^4.14.182", + "@types/lodash-es": "^4.17.6", + "@vueuse/core": "^9.1.0", + "async-validator": "^4.2.5", + "dayjs": "^1.11.3", + "escape-html": "^1.0.3", + "lodash": "^4.17.21", + "lodash-es": "^4.17.21", + "lodash-unified": "^1.0.2", + "memoize-one": "^6.0.0", + "normalize-wheel-es": "^1.2.0" + }, + "peerDependencies": { + "vue": "^3.2.0" + } + }, + "node_modules/entities": { + "version": "4.5.0", + "resolved": "https://registry.npmmirror.com/entities/-/entities-4.5.0.tgz", + "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/esbuild": { + "version": "0.21.5", + "resolved": "https://registry.npmmirror.com/esbuild/-/esbuild-0.21.5.tgz", + "integrity": "sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=12" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.21.5", + "@esbuild/android-arm": "0.21.5", + "@esbuild/android-arm64": "0.21.5", + "@esbuild/android-x64": "0.21.5", + "@esbuild/darwin-arm64": "0.21.5", + "@esbuild/darwin-x64": "0.21.5", + "@esbuild/freebsd-arm64": "0.21.5", + "@esbuild/freebsd-x64": "0.21.5", + "@esbuild/linux-arm": "0.21.5", + "@esbuild/linux-arm64": "0.21.5", + "@esbuild/linux-ia32": "0.21.5", + "@esbuild/linux-loong64": "0.21.5", + "@esbuild/linux-mips64el": "0.21.5", + "@esbuild/linux-ppc64": "0.21.5", + "@esbuild/linux-riscv64": "0.21.5", + "@esbuild/linux-s390x": "0.21.5", + "@esbuild/linux-x64": "0.21.5", + "@esbuild/netbsd-x64": "0.21.5", + "@esbuild/openbsd-x64": "0.21.5", + "@esbuild/sunos-x64": "0.21.5", + "@esbuild/win32-arm64": "0.21.5", + "@esbuild/win32-ia32": "0.21.5", + "@esbuild/win32-x64": "0.21.5" + } + }, + "node_modules/escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmmirror.com/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", + "license": "MIT" + }, + "node_modules/estree-walker": { + "version": "2.0.2", + "resolved": "https://registry.npmmirror.com/estree-walker/-/estree-walker-2.0.2.tgz", + "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", + "license": "MIT" + }, + "node_modules/follow-redirects": { + "version": "1.15.9", + "resolved": "https://registry.npmmirror.com/follow-redirects/-/follow-redirects-1.15.9.tgz", + "integrity": "sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==", + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" + } + ], + "license": "MIT", + "engines": { + "node": ">=4.0" + }, + "peerDependenciesMeta": { + "debug": { + "optional": true + } + } + }, + "node_modules/form-data": { + "version": "4.0.1", + "resolved": "https://registry.npmmirror.com/form-data/-/form-data-4.0.1.tgz", + "integrity": "sha512-tzN8e4TX8+kkxGPK8D5u0FNmjPUjw3lwC9lSLxxoB/+GtsJG91CO8bSWy73APlgAZzZbXEYZJuxjkHH2w+Ezhw==", + "license": "MIT", + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmmirror.com/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/he": { + "version": "1.2.0", + "resolved": "https://registry.npmmirror.com/he/-/he-1.2.0.tgz", + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", + "dev": true, + "license": "MIT", + "bin": { + "he": "bin/he" + } + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true, + "license": "ISC" + }, + "node_modules/json-parse-even-better-errors": { + "version": "3.0.2", + "resolved": "https://registry.npmmirror.com/json-parse-even-better-errors/-/json-parse-even-better-errors-3.0.2.tgz", + "integrity": "sha512-fi0NG4bPjCHunUJffmLd0gxssIgkNmArMvis4iNah6Owg1MCJjWhEcDLmsK6iGkJq3tHwbDkTlce70/tmXN4cQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmmirror.com/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", + "license": "MIT" + }, + "node_modules/lodash-es": { + "version": "4.17.21", + "resolved": "https://registry.npmmirror.com/lodash-es/-/lodash-es-4.17.21.tgz", + "integrity": "sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==", + "license": "MIT" + }, + "node_modules/lodash-unified": { + "version": "1.0.3", + "resolved": "https://registry.npmmirror.com/lodash-unified/-/lodash-unified-1.0.3.tgz", + "integrity": "sha512-WK9qSozxXOD7ZJQlpSqOT+om2ZfcT4yO+03FuzAHD0wF6S0l0090LRPDx3vhTTLZ8cFKpBn+IOcVXK6qOcIlfQ==", + "license": "MIT", + "peerDependencies": { + "@types/lodash-es": "*", + "lodash": "*", + "lodash-es": "*" + } + }, + "node_modules/magic-string": { + "version": "0.30.12", + "resolved": "https://registry.npmmirror.com/magic-string/-/magic-string-0.30.12.tgz", + "integrity": "sha512-Ea8I3sQMVXr8JhN4z+H/d8zwo+tYDgHE9+5G4Wnrwhs0gaK9fXTKx0Tw5Xwsd/bCPTTZNRAdpyzvoeORe9LYpw==", + "license": "MIT", + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.5.0" + } + }, + "node_modules/marked": { + "version": "14.1.3", + "resolved": "https://registry.npmmirror.com/marked/-/marked-14.1.3.tgz", + "integrity": "sha512-ZibJqTULGlt9g5k4VMARAktMAjXoVnnr+Y3aCqW1oDftcV4BA3UmrBifzXoZyenHRk75csiPu9iwsTj4VNBT0g==", + "license": "MIT", + "bin": { + "marked": "bin/marked.js" + }, + "engines": { + "node": ">= 18" + } + }, + "node_modules/memoize-one": { + "version": "6.0.0", + "resolved": "https://registry.npmmirror.com/memoize-one/-/memoize-one-6.0.0.tgz", + "integrity": "sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw==", + "license": "MIT" + }, + "node_modules/memorystream": { + "version": "0.3.1", + "resolved": "https://registry.npmmirror.com/memorystream/-/memorystream-0.3.1.tgz", + "integrity": "sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==", + "dev": true, + "engines": { + "node": ">= 0.10.0" + } + }, + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmmirror.com/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmmirror.com/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "license": "MIT", + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/minimatch": { + "version": "9.0.5", + "resolved": "https://registry.npmmirror.com/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/muggle-string": { + "version": "0.4.1", + "resolved": "https://registry.npmmirror.com/muggle-string/-/muggle-string-0.4.1.tgz", + "integrity": "sha512-VNTrAak/KhO2i8dqqnqnAHOa3cYBwXEZe9h+D5h/1ZqFSTEFHdM65lR7RoIqq3tBBYavsOXV84NoHXZ0AkPyqQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/nanoid": { + "version": "3.3.7", + "resolved": "https://registry.npmmirror.com/nanoid/-/nanoid-3.3.7.tgz", + "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/normalize-wheel-es": { + "version": "1.2.0", + "resolved": "https://registry.npmmirror.com/normalize-wheel-es/-/normalize-wheel-es-1.2.0.tgz", + "integrity": "sha512-Wj7+EJQ8mSuXr2iWfnujrimU35R2W4FAErEyTmJoJ7ucwTn2hOUSsRehMb5RSYkxXGTM7Y9QpvPmp++w5ftoJw==", + "license": "BSD-3-Clause" + }, + "node_modules/npm-normalize-package-bin": { + "version": "3.0.1", + "resolved": "https://registry.npmmirror.com/npm-normalize-package-bin/-/npm-normalize-package-bin-3.0.1.tgz", + "integrity": "sha512-dMxCf+zZ+3zeQZXKxmyuCKlIDPGuv8EF940xbkC4kQVDTtqoh6rJFO+JTKSA6/Rwi0getWmtuy4Itup0AMcaDQ==", + "dev": true, + "license": "ISC", + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/npm-run-all2": { + "version": "6.2.3", + "resolved": "https://registry.npmmirror.com/npm-run-all2/-/npm-run-all2-6.2.3.tgz", + "integrity": "sha512-5RsxC7jEc/RjxOYBVdEfrJf5FsJ0pHA7jr2/OxrThXknajETCTYjigOCG3iaGjdYIKEQlDuCG0ir0T1HTva8pg==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^6.2.1", + "cross-spawn": "^7.0.3", + "memorystream": "^0.3.1", + "minimatch": "^9.0.0", + "pidtree": "^0.6.0", + "read-package-json-fast": "^3.0.2", + "shell-quote": "^1.7.3" + }, + "bin": { + "npm-run-all": "bin/npm-run-all/index.js", + "npm-run-all2": "bin/npm-run-all/index.js", + "run-p": "bin/run-p/index.js", + "run-s": "bin/run-s/index.js" + }, + "engines": { + "node": "^14.18.0 || ^16.13.0 || >=18.0.0", + "npm": ">= 8" + } + }, + "node_modules/path-browserify": { + "version": "1.0.1", + "resolved": "https://registry.npmmirror.com/path-browserify/-/path-browserify-1.0.1.tgz", + "integrity": "sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==", + "dev": true, + "license": "MIT" + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmmirror.com/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/picocolors": { + "version": "1.1.0", + "resolved": "https://registry.npmmirror.com/picocolors/-/picocolors-1.1.0.tgz", + "integrity": "sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw==", + "license": "ISC" + }, + "node_modules/pidtree": { + "version": "0.6.0", + "resolved": "https://registry.npmmirror.com/pidtree/-/pidtree-0.6.0.tgz", + "integrity": "sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==", + "dev": true, + "license": "MIT", + "bin": { + "pidtree": "bin/pidtree.js" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/postcss": { + "version": "8.4.47", + "resolved": "https://registry.npmmirror.com/postcss/-/postcss-8.4.47.tgz", + "integrity": "sha512-56rxCq7G/XfB4EkXq9Egn5GCqugWvDFjafDOThIdMBsI15iqPqR5r15TfSr1YPYeEI19YeaXMCbY6u88Y76GLQ==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "nanoid": "^3.3.7", + "picocolors": "^1.1.0", + "source-map-js": "^1.2.1" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/proxy-from-env": { + "version": "1.1.0", + "resolved": "https://registry.npmmirror.com/proxy-from-env/-/proxy-from-env-1.1.0.tgz", + "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==", + "license": "MIT" + }, + "node_modules/read-package-json-fast": { + "version": "3.0.2", + "resolved": "https://registry.npmmirror.com/read-package-json-fast/-/read-package-json-fast-3.0.2.tgz", + "integrity": "sha512-0J+Msgym3vrLOUB3hzQCuZHII0xkNGCtz/HJH9xZshwv9DbDwkw1KaE3gx/e2J5rpEY5rtOy6cyhKOPrkP7FZw==", + "dev": true, + "license": "ISC", + "dependencies": { + "json-parse-even-better-errors": "^3.0.0", + "npm-normalize-package-bin": "^3.0.0" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/rollup": { + "version": "4.24.0", + "resolved": "https://registry.npmmirror.com/rollup/-/rollup-4.24.0.tgz", + "integrity": "sha512-DOmrlGSXNk1DM0ljiQA+i+o0rSLhtii1je5wgk60j49d1jHT5YYttBv1iWOnYSTG+fZZESUOSNiAl89SIet+Cg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/estree": "1.0.6" + }, + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=18.0.0", + "npm": ">=8.0.0" + }, + "optionalDependencies": { + "@rollup/rollup-android-arm-eabi": "4.24.0", + "@rollup/rollup-android-arm64": "4.24.0", + "@rollup/rollup-darwin-arm64": "4.24.0", + "@rollup/rollup-darwin-x64": "4.24.0", + "@rollup/rollup-linux-arm-gnueabihf": "4.24.0", + "@rollup/rollup-linux-arm-musleabihf": "4.24.0", + "@rollup/rollup-linux-arm64-gnu": "4.24.0", + "@rollup/rollup-linux-arm64-musl": "4.24.0", + "@rollup/rollup-linux-powerpc64le-gnu": "4.24.0", + "@rollup/rollup-linux-riscv64-gnu": "4.24.0", + "@rollup/rollup-linux-s390x-gnu": "4.24.0", + "@rollup/rollup-linux-x64-gnu": "4.24.0", + "@rollup/rollup-linux-x64-musl": "4.24.0", + "@rollup/rollup-win32-arm64-msvc": "4.24.0", + "@rollup/rollup-win32-ia32-msvc": "4.24.0", + "@rollup/rollup-win32-x64-msvc": "4.24.0", + "fsevents": "~2.3.2" + } + }, + "node_modules/semver": { + "version": "7.6.3", + "resolved": "https://registry.npmmirror.com/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "license": "MIT", + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmmirror.com/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/shell-quote": { + "version": "1.8.1", + "resolved": "https://registry.npmmirror.com/shell-quote/-/shell-quote-1.8.1.tgz", + "integrity": "sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/source-map-js": { + "version": "1.2.1", + "resolved": "https://registry.npmmirror.com/source-map-js/-/source-map-js-1.2.1.tgz", + "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/typescript": { + "version": "5.5.4", + "resolved": "https://registry.npmmirror.com/typescript/-/typescript-5.5.4.tgz", + "integrity": "sha512-Mtq29sKDAEYP7aljRgtPOpTvOfbwRWlS6dPRzwjdE+C0R4brX/GUyhHSecbHMFLNBLcJIPt9nl9yG5TZ1weH+Q==", + "devOptional": true, + "license": "Apache-2.0", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/undici-types": { + "version": "6.19.8", + "resolved": "https://registry.npmmirror.com/undici-types/-/undici-types-6.19.8.tgz", + "integrity": "sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==", + "dev": true, + "license": "MIT" + }, + "node_modules/vite": { + "version": "5.4.9", + "resolved": "https://registry.npmmirror.com/vite/-/vite-5.4.9.tgz", + "integrity": "sha512-20OVpJHh0PAM0oSOELa5GaZNWeDjcAvQjGXy2Uyr+Tp+/D2/Hdz6NLgpJLsarPTA2QJ6v8mX2P1ZfbsSKvdMkg==", + "dev": true, + "license": "MIT", + "dependencies": { + "esbuild": "^0.21.3", + "postcss": "^8.4.43", + "rollup": "^4.20.0" + }, + "bin": { + "vite": "bin/vite.js" + }, + "engines": { + "node": "^18.0.0 || >=20.0.0" + }, + "funding": { + "url": "https://github.com/vitejs/vite?sponsor=1" + }, + "optionalDependencies": { + "fsevents": "~2.3.3" + }, + "peerDependencies": { + "@types/node": "^18.0.0 || >=20.0.0", + "less": "*", + "lightningcss": "^1.21.0", + "sass": "*", + "sass-embedded": "*", + "stylus": "*", + "sugarss": "*", + "terser": "^5.4.0" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "less": { + "optional": true + }, + "lightningcss": { + "optional": true + }, + "sass": { + "optional": true + }, + "sass-embedded": { + "optional": true + }, + "stylus": { + "optional": true + }, + "sugarss": { + "optional": true + }, + "terser": { + "optional": true + } + } + }, + "node_modules/vscode-uri": { + "version": "3.0.8", + "resolved": "https://registry.npmmirror.com/vscode-uri/-/vscode-uri-3.0.8.tgz", + "integrity": "sha512-AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw==", + "dev": true, + "license": "MIT" + }, + "node_modules/vue": { + "version": "3.5.12", + "resolved": "https://registry.npmmirror.com/vue/-/vue-3.5.12.tgz", + "integrity": "sha512-CLVZtXtn2ItBIi/zHZ0Sg1Xkb7+PU32bJJ8Bmy7ts3jxXTcbfsEfBivFYYWz1Hur+lalqGAh65Coin0r+HRUfg==", + "license": "MIT", + "dependencies": { + "@vue/compiler-dom": "3.5.12", + "@vue/compiler-sfc": "3.5.12", + "@vue/runtime-dom": "3.5.12", + "@vue/server-renderer": "3.5.12", + "@vue/shared": "3.5.12" + }, + "peerDependencies": { + "typescript": "*" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/vue-router": { + "version": "4.4.5", + "resolved": "https://registry.npmmirror.com/vue-router/-/vue-router-4.4.5.tgz", + "integrity": "sha512-4fKZygS8cH1yCyuabAXGUAsyi1b2/o/OKgu/RUb+znIYOxPRxdkytJEx+0wGcpBE1pX6vUgh5jwWOKRGvuA/7Q==", + "license": "MIT", + "dependencies": { + "@vue/devtools-api": "^6.6.4" + }, + "funding": { + "url": "https://github.com/sponsors/posva" + }, + "peerDependencies": { + "vue": "^3.2.0" + } + }, + "node_modules/vue-tsc": { + "version": "2.1.6", + "resolved": "https://registry.npmmirror.com/vue-tsc/-/vue-tsc-2.1.6.tgz", + "integrity": "sha512-f98dyZp5FOukcYmbFpuSCJ4Z0vHSOSmxGttZJCsFeX0M4w/Rsq0s4uKXjcSRsZqsRgQa6z7SfuO+y0HVICE57Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@volar/typescript": "~2.4.1", + "@vue/language-core": "2.1.6", + "semver": "^7.5.4" + }, + "bin": { + "vue-tsc": "bin/vue-tsc.js" + }, + "peerDependencies": { + "typescript": ">=5.0.0" + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmmirror.com/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "license": "ISC", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + } + } +} diff --git a/frontend/package.json b/frontend/package.json new file mode 100644 index 0000000..51c5cf9 --- /dev/null +++ b/frontend/package.json @@ -0,0 +1,30 @@ +{ + "name": "frontend", + "version": "0.0.0", + "private": true, + "type": "module", + "scripts": { + "dev": "vite", + "build": "run-p type-check \"build-only {@}\" --", + "preview": "vite preview", + "build-only": "vite build", + "type-check": "vue-tsc --build --force" + }, + "dependencies": { + "axios": "^1.7.7", + "element-plus": "^2.8.5", + "marked": "^14.1.3", + "vue": "^3.5.11", + "vue-router": "^4.4.5" + }, + "devDependencies": { + "@tsconfig/node20": "^20.1.4", + "@types/node": "^20.16.11", + "@vitejs/plugin-vue": "^5.1.4", + "@vue/tsconfig": "^0.5.1", + "npm-run-all2": "^6.2.3", + "typescript": "~5.5.4", + "vite": "^5.4.8", + "vue-tsc": "^2.1.6" + } +} diff --git a/frontend/public/favicon.ico b/frontend/public/favicon.ico new file mode 100644 index 0000000000000000000000000000000000000000..df36fcfb72584e00488330b560ebcf34a41c64c2 GIT binary patch literal 4286 zcmds*O-Phc6o&64GDVCEQHxsW(p4>LW*W<827=Unuo8sGpRux(DN@jWP-e29Wl%wj zY84_aq9}^Am9-cWTD5GGEo#+5Fi2wX_P*bo+xO!)p*7B;iKlbFd(U~_d(U?#hLj56 zPhFkj-|A6~Qk#@g^#D^U0XT1cu=c-vu1+SElX9NR;kzAUV(q0|dl0|%h|dI$%VICy zJnu2^L*Te9JrJMGh%-P79CL0}dq92RGU6gI{v2~|)p}sG5x0U*z<8U;Ij*hB9z?ei z@g6Xq-pDoPl=MANPiR7%172VA%r)kevtV-_5H*QJKFmd;8yA$98zCxBZYXTNZ#QFk2(TX0;Y2dt&WitL#$96|gJY=3xX zpCoi|YNzgO3R`f@IiEeSmKrPSf#h#Qd<$%Ej^RIeeYfsxhPMOG`S`Pz8q``=511zm zAm)MX5AV^5xIWPyEu7u>qYs?pn$I4nL9J!=K=SGlKLXpE<5x+2cDTXq?brj?n6sp= zphe9;_JHf40^9~}9i08r{XM$7HB!`{Ys~TK0kx<}ZQng`UPvH*11|q7&l9?@FQz;8 zx!=3<4seY*%=OlbCbcae?5^V_}*K>Uo6ZWV8mTyE^B=DKy7-sdLYkR5Z?paTgK-zyIkKjIcpyO z{+uIt&YSa_$QnN_@t~L014dyK(fOOo+W*MIxbA6Ndgr=Y!f#Tokqv}n<7-9qfHkc3 z=>a|HWqcX8fzQCT=dqVbogRq!-S>H%yA{1w#2Pn;=e>JiEj7Hl;zdt-2f+j2%DeVD zsW0Ab)ZK@0cIW%W7z}H{&~yGhn~D;aiP4=;m-HCo`BEI+Kd6 z={Xwx{TKxD#iCLfl2vQGDitKtN>z|-AdCN|$jTFDg0m3O`WLD4_s#$S literal 0 HcmV?d00001 diff --git a/frontend/src/App.vue b/frontend/src/App.vue new file mode 100644 index 0000000..d3095de --- /dev/null +++ b/frontend/src/App.vue @@ -0,0 +1,34 @@ + + + + + diff --git a/frontend/src/assets/base.css b/frontend/src/assets/base.css new file mode 100644 index 0000000..8816868 --- /dev/null +++ b/frontend/src/assets/base.css @@ -0,0 +1,86 @@ +/* color palette from */ +:root { + --vt-c-white: #ffffff; + --vt-c-white-soft: #f8f8f8; + --vt-c-white-mute: #f2f2f2; + + --vt-c-black: #181818; + --vt-c-black-soft: #222222; + --vt-c-black-mute: #282828; + + --vt-c-indigo: #2c3e50; + + --vt-c-divider-light-1: rgba(60, 60, 60, 0.29); + --vt-c-divider-light-2: rgba(60, 60, 60, 0.12); + --vt-c-divider-dark-1: rgba(84, 84, 84, 0.65); + --vt-c-divider-dark-2: rgba(84, 84, 84, 0.48); + + --vt-c-text-light-1: var(--vt-c-indigo); + --vt-c-text-light-2: rgba(60, 60, 60, 0.66); + --vt-c-text-dark-1: var(--vt-c-white); + --vt-c-text-dark-2: rgba(235, 235, 235, 0.64); +} + +/* semantic color variables for this project */ +:root { + --color-background: var(--vt-c-white); + --color-background-soft: var(--vt-c-white-soft); + --color-background-mute: var(--vt-c-white-mute); + + --color-border: var(--vt-c-divider-light-2); + --color-border-hover: var(--vt-c-divider-light-1); + + --color-heading: var(--vt-c-text-light-1); + --color-text: var(--vt-c-text-light-1); + + --section-gap: 160px; +} + +@media (prefers-color-scheme: dark) { + :root { + --color-background: var(--vt-c-black); + --color-background-soft: var(--vt-c-black-soft); + --color-background-mute: var(--vt-c-black-mute); + + --color-border: var(--vt-c-divider-dark-2); + --color-border-hover: var(--vt-c-divider-dark-1); + + --color-heading: var(--vt-c-text-dark-1); + --color-text: var(--vt-c-text-dark-2); + } +} + +*, +*::before, +*::after { + box-sizing: border-box; + margin: 0; + font-weight: normal; +} + +body { + min-height: 100vh; + color: var(--color-text); + background: var(--color-background); + transition: + color 0.5s, + background-color 0.5s; + line-height: 1.6; + font-family: + Inter, + -apple-system, + BlinkMacSystemFont, + 'Segoe UI', + Roboto, + Oxygen, + Ubuntu, + Cantarell, + 'Fira Sans', + 'Droid Sans', + 'Helvetica Neue', + sans-serif; + font-size: 15px; + text-rendering: optimizeLegibility; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} diff --git a/frontend/src/assets/main.css b/frontend/src/assets/main.css new file mode 100644 index 0000000..36fb845 --- /dev/null +++ b/frontend/src/assets/main.css @@ -0,0 +1,35 @@ +@import './base.css'; + +#app { + max-width: 1280px; + margin: 0 auto; + padding: 2rem; + font-weight: normal; +} + +a, +.green { + text-decoration: none; + color: hsla(160, 100%, 37%, 1); + transition: 0.4s; + padding: 3px; +} + +@media (hover: hover) { + a:hover { + background-color: hsla(160, 100%, 37%, 0.2); + } +} + +@media (min-width: 1024px) { + body { + display: flex; + place-items: center; + } + + #app { + display: grid; + grid-template-columns: 1fr 1fr; + padding: 0 2rem; + } +} diff --git a/frontend/src/main.ts b/frontend/src/main.ts new file mode 100644 index 0000000..f086d28 --- /dev/null +++ b/frontend/src/main.ts @@ -0,0 +1,15 @@ +import './assets/main.css' + +import { createApp } from 'vue'; +import App from './App.vue'; +import router from './router'; +// import ElementPlus from 'element-plus'; +// import 'element-plus/dist/index.css'; + +const app = createApp(App); + +app.use(router); +// app.use(ElementPlus); + +app.mount('#app'); + diff --git a/frontend/src/router/index.ts b/frontend/src/router/index.ts new file mode 100644 index 0000000..9ef576b --- /dev/null +++ b/frontend/src/router/index.ts @@ -0,0 +1,29 @@ + + + +import { createRouter, createWebHistory } from 'vue-router'; +import ChatPage from '../views/ChatPage.vue'; +import LoginPage from '../views/LoginPage.vue'; + +const routes = [ + { path: '/', redirect: '/chat' }, + { path: '/login', component: LoginPage }, + { path: '/chat', component: ChatPage }, // 聊天页面 +]; + +const router = createRouter({ + history: createWebHistory(), + routes, +}); + +// 路由守卫,确保用户登录后才能访问聊天页面 +router.beforeEach((to, from, next) => { + const isAuthenticated = document.cookie.includes('auth_token'); // 假设后端返回的是这个Cookie + if (to.path === '/chat' && !isAuthenticated) { + next('/login'); // 未登录时跳转到登录页面 + } else { + next(); // 允许进入 + } +}); + +export default router; diff --git a/frontend/src/views/ChatPage.vue b/frontend/src/views/ChatPage.vue new file mode 100644 index 0000000..8cad3ea --- /dev/null +++ b/frontend/src/views/ChatPage.vue @@ -0,0 +1,340 @@ + + + + + diff --git a/frontend/src/views/LoginPage.vue b/frontend/src/views/LoginPage.vue new file mode 100644 index 0000000..5ca71d5 --- /dev/null +++ b/frontend/src/views/LoginPage.vue @@ -0,0 +1,136 @@ + + + + + diff --git a/frontend/tsconfig.app.json b/frontend/tsconfig.app.json new file mode 100644 index 0000000..e14c754 --- /dev/null +++ b/frontend/tsconfig.app.json @@ -0,0 +1,14 @@ +{ + "extends": "@vue/tsconfig/tsconfig.dom.json", + "include": ["env.d.ts", "src/**/*", "src/**/*.vue"], + "exclude": ["src/**/__tests__/*"], + "compilerOptions": { + "composite": true, + "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo", + + "baseUrl": ".", + "paths": { + "@/*": ["./src/*"] + } + } +} diff --git a/frontend/tsconfig.json b/frontend/tsconfig.json new file mode 100644 index 0000000..66b5e57 --- /dev/null +++ b/frontend/tsconfig.json @@ -0,0 +1,11 @@ +{ + "files": [], + "references": [ + { + "path": "./tsconfig.node.json" + }, + { + "path": "./tsconfig.app.json" + } + ] +} diff --git a/frontend/tsconfig.node.json b/frontend/tsconfig.node.json new file mode 100644 index 0000000..f094063 --- /dev/null +++ b/frontend/tsconfig.node.json @@ -0,0 +1,19 @@ +{ + "extends": "@tsconfig/node20/tsconfig.json", + "include": [ + "vite.config.*", + "vitest.config.*", + "cypress.config.*", + "nightwatch.conf.*", + "playwright.config.*" + ], + "compilerOptions": { + "composite": true, + "noEmit": true, + "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo", + + "module": "ESNext", + "moduleResolution": "Bundler", + "types": ["node"] + } +} diff --git a/frontend/vite.config.ts b/frontend/vite.config.ts new file mode 100644 index 0000000..21d97d5 --- /dev/null +++ b/frontend/vite.config.ts @@ -0,0 +1,16 @@ +import { fileURLToPath, URL } from 'node:url' + +import { defineConfig } from 'vite' +import vue from '@vitejs/plugin-vue' + +// https://vite.dev/config/ +export default defineConfig({ + plugins: [ + vue(), + ], + resolve: { + alias: { + '@': fileURLToPath(new URL('./src', import.meta.url)) + } + } +}) diff --git a/log.py b/log.py deleted file mode 100644 index ece8a7c..0000000 --- a/log.py +++ /dev/null @@ -1,26 +0,0 @@ -import json -import time as times -import db - -def newLog(ip:str,tokens:int, model:str, userkey:str): - db.newLog(ip, int(times.time()), tokens, model, userkey) - -def getlog(num:int): - if num < 0: - num = 10 - rawdata = db.getlog(num) - data = [] - for i in rawdata: - item = list(i) - item[1] = times.strftime("%Y-%m-%d %H:%M:%S",times.localtime(i[1])) - data.append(item) - - return data - -def modelChartsData(): #按模型用量统计 - data = [] - model = db.getLogAllModel() - for item in model: - data.append({'value':db.countLog("model",item[0]),'name':item[0]}) - return data - \ No newline at end of file diff --git a/main.py b/main.py index e1bcfd7..fd16963 100644 --- a/main.py +++ b/main.py @@ -1,142 +1,16 @@ -import flask -from flask_cors import CORS -import db , config , log -from apiModule import qwenTurbo , chatglmTurbo , gpt35Turbo , gpt4Turbo +from fastapi import FastAPI -app = flask.Flask(__name__) -CORS(app,origins="*") -app.secret_key = b'SQ-{kJE;m(jEBi|{yq]v' -app.config['TRUSTED_PROXIES'] = ['proxy_ip'] +import router.chat +import router.page +import router.user -@app.route('/api/user', methods=['POST']) -def post_data(): - userRequest = flask.request.json - surplusToken = db.userSurplus(userRequest['userkey']) - - if userRequest["prompt"] == "": - return {"code":42,"output":"Input is empty"} - - if userRequest["prompt"] == "": - return {"code":42,"output":"UserKey is empty"} - - if surplusToken == -99999: # 判断用户是否存在和余额 - return {"code":41,"output":"UserKey not found"} - elif surplusToken <= 0: - return {"code":40,"output":"Token has been use up"} - - if userRequest["model"] == "qwen-turbo": # 调用qwen-Turbo - if userRequest["context"] == 1: # 是否使用上文关联 - code , output , tokenUsed = qwenTurbo.service(userRequest['prompt'],userRequest['history']) - elif userRequest["context"] == 0: - code , output , tokenUsed = qwenTurbo.service(userRequest['prompt']) - - if userRequest["model"] == "chatglm-turbo": # 调用chatglm-turbo - if userRequest["context"] == 1: # 是否使用上文关联 - code , output , tokenUsed = chatglmTurbo.service(userRequest['prompt'],userRequest['history']) - elif userRequest["context"] == 0: - code , output , tokenUsed = chatglmTurbo.service(userRequest['prompt']) - - if userRequest["model"] == "gpt3.5-turbo": # 调用gpt3.5-turbo - if userRequest["context"] == 1: # 是否使用上文关联 - code , output , tokenUsed = gpt35Turbo.service(userRequest['prompt'],userRequest['history']) - elif userRequest["context"] == 0: - code , output , tokenUsed = gpt35Turbo.service(userRequest['prompt']) - - if userRequest["model"] == "gpt4.0-turbo": # 调用gpt4.0-turbo - if userRequest["context"] == 1: # 是否使用上文关联 - code , output , tokenUsed = gpt4Turbo.service(userRequest['prompt'],userRequest['history']) - elif userRequest["context"] == 0: - code , output , tokenUsed = gpt4Turbo.service(userRequest['prompt']) - - db.reduce_value(userRequest['userkey'], tokenUsed) - log.newLog(flask.request.headers.get('X-Forwarded-For').split(",")[0], tokenUsed, userRequest["model"], userRequest['userkey']) - return {"code":code,"output":output,"surplus":surplusToken} +app = FastAPI() +app.include_router(router.chat.router) +app.include_router(router.user.router) +app.include_router(router.page.router) -@app.route('/') -def index(): - return flask.render_template('index.html') +if __name__ == "__main__": + import uvicorn - -@app.route('/login', methods=['POST','GET']) -def login(): - if flask.request.method == 'GET': - return flask.render_template('login.html') - userRequest = flask.request.form - if userRequest["password"] != config.readConf()["adminkey"]: - return flask.render_template('login.html') - flask.session["admin"] = True - return flask.redirect(flask.url_for('admin')) - - -@app.route('/admin') -def admin(): - if "admin" in flask.session : - status = {} - status["db"] = db.dbIsOK() - return flask.render_template("status.html" ,status=status) - return flask.redirect('login') - - -@app.route('/admin/list') -def adminList(): - if "admin" in flask.session : - data = db.getAllKey() - return flask.render_template("keylist.html",data=data) - return flask.redirect('login') - -@app.route('/api/modelcount') -def apiModelCount(): - if "admin" in flask.session : - data = log.modelChartsData() - return data - return flask.abort(403) - -@app.route('/admin/log', methods=['GET']) -def adminListLog(): - if "admin" in flask.session : - if 'show' in flask.request.args: - try: - shownum = int(flask.request.values.get('show')) - except: - return flask.abort(400) - else: - return flask.abort(400) - data = log.getlog(shownum) - return flask.render_template("loglist.html",data=data) - return flask.redirect('login') - -@app.route('/admin/createkey', methods=['POST','GET']) -def createkey(): - if "admin" in flask.session : - if flask.request.method == "GET": - return flask.render_template("createKey.html",resq="null") - if "number" in flask.request.form: # 创建单个还是多个 - resq = db.createKey(flask.request.form["quota"], flask.request.form["number"]) - elif "key" in flask.request.form: - resq = db.createKey(flask.request.form["quota"],1,flask.request.form["key"]) - - return flask.render_template("createKey.html",resq=resq) - return flask.redirect('login') - -@app.route('/admin/lookupkey', methods=['POST','GET']) -def lookupkey(): - if "admin" in flask.session : - if flask.request.method == "GET": - return flask.render_template("lookupKey.html",resq="null") - resq = db.userSurplus(flask.request.form["key"]) - return flask.render_template("lookupKey.html",resq=resq) - return flask.redirect('login') - -@app.route('/admin/operate', methods=['POST','GET']) -def operate(): - if "admin" in flask.session : - if flask.request.args['type'] == "del": - if db.delKey(flask.request.args['target']): - return "成功 返回上一页并刷新" - return "失败 返回上一页并刷新" - return "拒绝访问" - - -if __name__ == '__main__': - app.run(debug=bool(config.readConf()["appconf"]["debug"]),host=config.readConf()["appconf"]["host"],port=config.readConf()["appconf"]["port"]) \ No newline at end of file + uvicorn.run("main:app", host="0.0.0.0", port=8000, reload=True) \ No newline at end of file diff --git a/model/glm-4-flash.py b/model/glm-4-flash.py new file mode 100644 index 0000000..ee94c90 --- /dev/null +++ b/model/glm-4-flash.py @@ -0,0 +1,32 @@ +from zhipuai import ZhipuAI +from model.util import InputData, OutputData, getModelAPIKey + +# client = ZhipuAI(api_key="") # 填写您自己的APIKey +# response = client.chat.completions.create( +# model="glm-4-0520", # 填写需要调用的模型编码 +# messages=[ +# {"role": "user", "content": "作为一名营销专家,请为我的产品创作一个吸引人的slogan"}, +# {"role": "assistant", "content": "当然,为了创作一个吸引人的slogan,请告诉我一些关于您产品的信息"}, +# {"role": "user", "content": "智谱AI开放平台"}, +# {"role": "assistant", "content": "智启未来,谱绘无限一智谱AI,让创新触手可及!"}, +# {"role": "user", "content": "创造一个更精准、吸引人的slogan"} +# ], +# ) +# print(response.choices[0].message) + + + +def predict(input_data:InputData): + client = ZhipuAI(api_key=getModelAPIKey("glm-4-flash")) + response = client.chat.completions.create( + model="glm-4-flash", # 填写需要调用的模型编码 + messages=[ + {"role": "user", "content": input_data.message}], + ) + if response.choices[0].finish_reason == "stop": + return OutputData(response.choices[0].message.content,200,response.usage.total_tokens) + elif response.choices[0].finish_reason == "length": + return OutputData(response.choices[0].message.content,201,response.usage.total_tokens) + elif response.choices[0].finish_reason == "network_error": + return OutputData("Server Network Error",500,0) + else: return OutputData("Unknown Error",500,0) diff --git a/model/util.py b/model/util.py new file mode 100644 index 0000000..e26ef28 --- /dev/null +++ b/model/util.py @@ -0,0 +1,57 @@ +import importlib +from configUtil import ConfigUtil + + +class InputData: + def __init__(self, message): + self.message = message + +class OutputData: + def __init__(self, message,code,tokenUsed): + self.message = message + self.code = code + self.tokenUsed = tokenUsed + + + +def getModels() -> list: + model_config = ConfigUtil("data/models.ini") + out = [] + for model in model_config.getSectionList(): + if model_config.getBool(model, "enabled") == False: + continue + out.append(model) + return out + + +def getModelsInfo() -> list: + model_config = ConfigUtil("data/models.ini") + out = [] + for model in model_config.getSectionList(): + if model_config.getBool(model, "enabled") == False: + continue + util = { + "name":model_config.get(model, "name"), + "id":model, + } + out.append(util) + return out + + +def getModelAPIKey(model: str) -> str: + model_config = ConfigUtil("data/models.ini") + try: + return model_config.get(model, "key") + except: + return "Model API key not found" + +def requestModel(model: str, input_data: InputData) -> OutputData: + if model not in getModels(): + ret = OutputData("Model not found",404,0) + else: + module = importlib.import_module(f"model.{model}") + ret = module.predict(input_data) + resq = {} + for key in ret.__dict__: resq[key] = ret.__dict__[key] + return resq + diff --git a/requirements.txt b/requirements.txt index 9c382d1..855d6c6 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,6 +1,3 @@ -pymysql requests -flask -zhipuai -openai -flask_cors \ No newline at end of file +fastapi[standard]==0.115.0 +zhipuai \ No newline at end of file diff --git a/router/chat.py b/router/chat.py new file mode 100644 index 0000000..b1a2bd9 --- /dev/null +++ b/router/chat.py @@ -0,0 +1,21 @@ +from fastapi import APIRouter +from model.util import InputData, getModels, getModelsInfo, requestModel +from pydantic import BaseModel + +router = APIRouter() + +class ChatRequest(BaseModel): + model: str + message: str +@router.post("/api/chat") +def chat(req: ChatRequest): + model_name = req.model + input_data = InputData(req.message) + #调用模型 + ret = requestModel(model_name, input_data) + return ret + + +@router.get("/api/chat/models") +def get_models(): + return {"models": getModelsInfo()} \ No newline at end of file diff --git a/router/page.py b/router/page.py new file mode 100644 index 0000000..016176f --- /dev/null +++ b/router/page.py @@ -0,0 +1,30 @@ +from fastapi import APIRouter +from fastapi.staticfiles import StaticFiles +from starlette.responses import FileResponse + + +router = APIRouter() + +# 将 Vue 构建后的 dist 目录中的 assets 作为静态资源目录 +#router.mount("/assets", StaticFiles(directory="frontend/dist/assets"), name="assets") +@router.get("/assets/{path:path}") +async def serve_static(path: str): + if path.endswith(".css"): + return FileResponse(f"frontend/dist/assets/{path}",media_type="text/css") + elif path.endswith(".js"): + return FileResponse(f"frontend/dist/assets/{path}",media_type="text/javascript") + elif path.endswith(".png"): + return FileResponse(f"frontend/dist/assets/{path}",media_type="image/png") + else: + return FileResponse(f"frontend/dist/assets/{path}") + + +# 根路径提供 index.html +@router.get("/") +async def serve_vue_app(): + return FileResponse("frontend/dist/index.html") + +# 通用路由处理,确保 history 模式下的路由正常工作 +@router.get("/{full_path:path}") +async def serve_vue_app_catch_all(full_path: str): + return FileResponse("frontend/dist/index.html") \ No newline at end of file diff --git a/router/user.py b/router/user.py new file mode 100644 index 0000000..019cf97 --- /dev/null +++ b/router/user.py @@ -0,0 +1,19 @@ +from fastapi import APIRouter, Response +from pydantic import BaseModel + +import dao.db.user as user + + +router = APIRouter() + +class LoginRequest(BaseModel): + userinfo: str | None = None + password: str + +@router.post("/api/user/login") +def login(response: Response,LoginRequest: LoginRequest): + #if not user.checkUser(uid, password_hash): + if False: + return {"code": 401, "message": "Invalid credentials"} + response.set_cookie(key="auth_token", value="1234567890") + return {"code": 200, "message": "Login successful"} \ No newline at end of file diff --git a/app_control.sh b/server.sh similarity index 100% rename from app_control.sh rename to server.sh diff --git a/static/echarts.min.js b/static/echarts.min.js deleted file mode 100644 index 3e09d31..0000000 --- a/static/echarts.min.js +++ /dev/null @@ -1,45 +0,0 @@ - -/* -* Licensed to the Apache Software Foundation (ASF) under one -* or more contributor license agreements. See the NOTICE file -* distributed with this work for additional information -* regarding copyright ownership. The ASF licenses this file -* to you under the Apache License, Version 2.0 (the -* "License"); you may not use this file except in compliance -* with the License. You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, -* software distributed under the License is distributed on an -* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -* KIND, either express or implied. See the License for the -* specific language governing permissions and limitations -* under the License. -*/ - -!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?e(exports):"function"==typeof define&&define.amd?define(["exports"],e):e((t="undefined"!=typeof globalThis?globalThis:t||self).echarts={})}(this,(function(t){"use strict"; -/*! ***************************************************************************** - Copyright (c) Microsoft Corporation. - - Permission to use, copy, modify, and/or distribute this software for any - purpose with or without fee is hereby granted. - - THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH - REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY - AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, - INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM - LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR - OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR - PERFORMANCE OF THIS SOFTWARE. - ***************************************************************************** */var e=function(t,n){return e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},e(t,n)};function n(t,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}var i=function(){this.firefox=!1,this.ie=!1,this.edge=!1,this.newEdge=!1,this.weChat=!1},r=new function(){this.browser=new i,this.node=!1,this.wxa=!1,this.worker=!1,this.svgSupported=!1,this.touchEventsSupported=!1,this.pointerEventsSupported=!1,this.domSupported=!1,this.transformSupported=!1,this.transform3dSupported=!1,this.hasGlobalWindow="undefined"!=typeof window};"object"==typeof wx&&"function"==typeof wx.getSystemInfoSync?(r.wxa=!0,r.touchEventsSupported=!0):"undefined"==typeof document&&"undefined"!=typeof self?r.worker=!0:"undefined"==typeof navigator?(r.node=!0,r.svgSupported=!0):function(t,e){var n=e.browser,i=t.match(/Firefox\/([\d.]+)/),r=t.match(/MSIE\s([\d.]+)/)||t.match(/Trident\/.+?rv:(([\d.]+))/),o=t.match(/Edge?\/([\d.]+)/),a=/micromessenger/i.test(t);i&&(n.firefox=!0,n.version=i[1]);r&&(n.ie=!0,n.version=r[1]);o&&(n.edge=!0,n.version=o[1],n.newEdge=+o[1].split(".")[0]>18);a&&(n.weChat=!0);e.svgSupported="undefined"!=typeof SVGRect,e.touchEventsSupported="ontouchstart"in window&&!n.ie&&!n.edge,e.pointerEventsSupported="onpointerdown"in window&&(n.edge||n.ie&&+n.version>=11),e.domSupported="undefined"!=typeof document;var s=document.documentElement.style;e.transform3dSupported=(n.ie&&"transition"in s||n.edge||"WebKitCSSMatrix"in window&&"m11"in new WebKitCSSMatrix||"MozPerspective"in s)&&!("OTransition"in s),e.transformSupported=e.transform3dSupported||n.ie&&+n.version>=9}(navigator.userAgent,r);var o="sans-serif",a="12px "+o;var s,l,u=function(t){var e={};if("undefined"==typeof JSON)return e;for(var n=0;n=0)o=r*t.length;else for(var c=0;c>1)%2;a.style.cssText=["position: absolute","visibility: hidden","padding: 0","margin: 0","border-width: 0","user-select: none","width:0","height:0",i[s]+":0",r[l]+":0",i[1-s]+":auto",r[1-l]+":auto",""].join("!important;"),t.appendChild(a),n.push(a)}return n}(e,a),l=function(t,e,n){for(var i=n?"invTrans":"trans",r=e[i],o=e.srcCoords,a=[],s=[],l=!0,u=0;u<4;u++){var h=t[u].getBoundingClientRect(),c=2*u,p=h.left,d=h.top;a.push(p,d),l=l&&o&&p===o[c]&&d===o[c+1],s.push(t[u].offsetLeft,t[u].offsetTop)}return l&&r?r:(e.srcCoords=a,e[i]=n?$t(s,a):$t(a,s))}(s,a,o);if(l)return l(t,n,i),!0}return!1}function ee(t){return"CANVAS"===t.nodeName.toUpperCase()}var ne=/([&<>"'])/g,ie={"&":"&","<":"<",">":">",'"':""","'":"'"};function re(t){return null==t?"":(t+"").replace(ne,(function(t,e){return ie[e]}))}var oe=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,ae=[],se=r.browser.firefox&&+r.browser.version.split(".")[0]<39;function le(t,e,n,i){return n=n||{},i?ue(t,e,n):se&&null!=e.layerX&&e.layerX!==e.offsetX?(n.zrX=e.layerX,n.zrY=e.layerY):null!=e.offsetX?(n.zrX=e.offsetX,n.zrY=e.offsetY):ue(t,e,n),n}function ue(t,e,n){if(r.domSupported&&t.getBoundingClientRect){var i=e.clientX,o=e.clientY;if(ee(t)){var a=t.getBoundingClientRect();return n.zrX=i-a.left,void(n.zrY=o-a.top)}if(te(ae,t,i,o))return n.zrX=ae[0],void(n.zrY=ae[1])}n.zrX=n.zrY=0}function he(t){return t||window.event}function ce(t,e,n){if(null!=(e=he(e)).zrX)return e;var i=e.type;if(i&&i.indexOf("touch")>=0){var r="touchend"!==i?e.targetTouches[0]:e.changedTouches[0];r&&le(t,r,e,n)}else{le(t,e,e,n);var o=function(t){var e=t.wheelDelta;if(e)return e;var n=t.deltaX,i=t.deltaY;if(null==n||null==i)return e;return 3*(0!==i?Math.abs(i):Math.abs(n))*(i>0?-1:i<0?1:n>0?-1:1)}(e);e.zrDelta=o?o/120:-(e.detail||0)/3}var a=e.button;return null==e.which&&void 0!==a&&oe.test(e.type)&&(e.which=1&a?1:2&a?3:4&a?2:0),e}function pe(t,e,n,i){t.addEventListener(e,n,i)}var de=function(t){t.preventDefault(),t.stopPropagation(),t.cancelBubble=!0};function fe(t){return 2===t.which||3===t.which}var ge=function(){function t(){this._track=[]}return t.prototype.recognize=function(t,e,n){return this._doTrack(t,e,n),this._recognize(t)},t.prototype.clear=function(){return this._track.length=0,this},t.prototype._doTrack=function(t,e,n){var i=t.touches;if(i){for(var r={points:[],touches:[],target:e,event:t},o=0,a=i.length;o1&&r&&r.length>1){var a=ye(r)/ye(o);!isFinite(a)&&(a=1),e.pinchScale=a;var s=[((i=r)[0][0]+i[1][0])/2,(i[0][1]+i[1][1])/2];return e.pinchX=s[0],e.pinchY=s[1],{type:"pinch",target:t[0].target,event:e}}}}};function me(){return[1,0,0,1,0,0]}function xe(t){return t[0]=1,t[1]=0,t[2]=0,t[3]=1,t[4]=0,t[5]=0,t}function _e(t,e){return t[0]=e[0],t[1]=e[1],t[2]=e[2],t[3]=e[3],t[4]=e[4],t[5]=e[5],t}function be(t,e,n){var i=e[0]*n[0]+e[2]*n[1],r=e[1]*n[0]+e[3]*n[1],o=e[0]*n[2]+e[2]*n[3],a=e[1]*n[2]+e[3]*n[3],s=e[0]*n[4]+e[2]*n[5]+e[4],l=e[1]*n[4]+e[3]*n[5]+e[5];return t[0]=i,t[1]=r,t[2]=o,t[3]=a,t[4]=s,t[5]=l,t}function we(t,e,n){return t[0]=e[0],t[1]=e[1],t[2]=e[2],t[3]=e[3],t[4]=e[4]+n[0],t[5]=e[5]+n[1],t}function Se(t,e,n){var i=e[0],r=e[2],o=e[4],a=e[1],s=e[3],l=e[5],u=Math.sin(n),h=Math.cos(n);return t[0]=i*h+a*u,t[1]=-i*u+a*h,t[2]=r*h+s*u,t[3]=-r*u+h*s,t[4]=h*o+u*l,t[5]=h*l-u*o,t}function Me(t,e,n){var i=n[0],r=n[1];return t[0]=e[0]*i,t[1]=e[1]*r,t[2]=e[2]*i,t[3]=e[3]*r,t[4]=e[4]*i,t[5]=e[5]*r,t}function Ie(t,e){var n=e[0],i=e[2],r=e[4],o=e[1],a=e[3],s=e[5],l=n*a-o*i;return l?(l=1/l,t[0]=a*l,t[1]=-o*l,t[2]=-i*l,t[3]=n*l,t[4]=(i*s-a*r)*l,t[5]=(o*r-n*s)*l,t):null}function Te(t){var e=[1,0,0,1,0,0];return _e(e,t),e}var Ce=Object.freeze({__proto__:null,create:me,identity:xe,copy:_e,mul:be,translate:we,rotate:Se,scale:Me,invert:Ie,clone:Te}),De=function(){function t(t,e){this.x=t||0,this.y=e||0}return t.prototype.copy=function(t){return this.x=t.x,this.y=t.y,this},t.prototype.clone=function(){return new t(this.x,this.y)},t.prototype.set=function(t,e){return this.x=t,this.y=e,this},t.prototype.equal=function(t){return t.x===this.x&&t.y===this.y},t.prototype.add=function(t){return this.x+=t.x,this.y+=t.y,this},t.prototype.scale=function(t){this.x*=t,this.y*=t},t.prototype.scaleAndAdd=function(t,e){this.x+=t.x*e,this.y+=t.y*e},t.prototype.sub=function(t){return this.x-=t.x,this.y-=t.y,this},t.prototype.dot=function(t){return this.x*t.x+this.y*t.y},t.prototype.len=function(){return Math.sqrt(this.x*this.x+this.y*this.y)},t.prototype.lenSquare=function(){return this.x*this.x+this.y*this.y},t.prototype.normalize=function(){var t=this.len();return this.x/=t,this.y/=t,this},t.prototype.distance=function(t){var e=this.x-t.x,n=this.y-t.y;return Math.sqrt(e*e+n*n)},t.prototype.distanceSquare=function(t){var e=this.x-t.x,n=this.y-t.y;return e*e+n*n},t.prototype.negate=function(){return this.x=-this.x,this.y=-this.y,this},t.prototype.transform=function(t){if(t){var e=this.x,n=this.y;return this.x=t[0]*e+t[2]*n+t[4],this.y=t[1]*e+t[3]*n+t[5],this}},t.prototype.toArray=function(t){return t[0]=this.x,t[1]=this.y,t},t.prototype.fromArray=function(t){this.x=t[0],this.y=t[1]},t.set=function(t,e,n){t.x=e,t.y=n},t.copy=function(t,e){t.x=e.x,t.y=e.y},t.len=function(t){return Math.sqrt(t.x*t.x+t.y*t.y)},t.lenSquare=function(t){return t.x*t.x+t.y*t.y},t.dot=function(t,e){return t.x*e.x+t.y*e.y},t.add=function(t,e,n){t.x=e.x+n.x,t.y=e.y+n.y},t.sub=function(t,e,n){t.x=e.x-n.x,t.y=e.y-n.y},t.scale=function(t,e,n){t.x=e.x*n,t.y=e.y*n},t.scaleAndAdd=function(t,e,n,i){t.x=e.x+n.x*i,t.y=e.y+n.y*i},t.lerp=function(t,e,n,i){var r=1-i;t.x=r*e.x+i*n.x,t.y=r*e.y+i*n.y},t}(),Ae=Math.min,ke=Math.max,Le=new De,Pe=new De,Oe=new De,Re=new De,Ne=new De,Ee=new De,ze=function(){function t(t,e,n,i){n<0&&(t+=n,n=-n),i<0&&(e+=i,i=-i),this.x=t,this.y=e,this.width=n,this.height=i}return t.prototype.union=function(t){var e=Ae(t.x,this.x),n=Ae(t.y,this.y);isFinite(this.x)&&isFinite(this.width)?this.width=ke(t.x+t.width,this.x+this.width)-e:this.width=t.width,isFinite(this.y)&&isFinite(this.height)?this.height=ke(t.y+t.height,this.y+this.height)-n:this.height=t.height,this.x=e,this.y=n},t.prototype.applyTransform=function(e){t.applyTransform(this,this,e)},t.prototype.calculateTransform=function(t){var e=this,n=t.width/e.width,i=t.height/e.height,r=[1,0,0,1,0,0];return we(r,r,[-e.x,-e.y]),Me(r,r,[n,i]),we(r,r,[t.x,t.y]),r},t.prototype.intersect=function(e,n){if(!e)return!1;e instanceof t||(e=t.create(e));var i=this,r=i.x,o=i.x+i.width,a=i.y,s=i.y+i.height,l=e.x,u=e.x+e.width,h=e.y,c=e.y+e.height,p=!(of&&(f=x,gf&&(f=_,v=n.x&&t<=n.x+n.width&&e>=n.y&&e<=n.y+n.height},t.prototype.clone=function(){return new t(this.x,this.y,this.width,this.height)},t.prototype.copy=function(e){t.copy(this,e)},t.prototype.plain=function(){return{x:this.x,y:this.y,width:this.width,height:this.height}},t.prototype.isFinite=function(){return isFinite(this.x)&&isFinite(this.y)&&isFinite(this.width)&&isFinite(this.height)},t.prototype.isZero=function(){return 0===this.width||0===this.height},t.create=function(e){return new t(e.x,e.y,e.width,e.height)},t.copy=function(t,e){t.x=e.x,t.y=e.y,t.width=e.width,t.height=e.height},t.applyTransform=function(e,n,i){if(i){if(i[1]<1e-5&&i[1]>-1e-5&&i[2]<1e-5&&i[2]>-1e-5){var r=i[0],o=i[3],a=i[4],s=i[5];return e.x=n.x*r+a,e.y=n.y*o+s,e.width=n.width*r,e.height=n.height*o,e.width<0&&(e.x+=e.width,e.width=-e.width),void(e.height<0&&(e.y+=e.height,e.height=-e.height))}Le.x=Oe.x=n.x,Le.y=Re.y=n.y,Pe.x=Re.x=n.x+n.width,Pe.y=Oe.y=n.y+n.height,Le.transform(i),Re.transform(i),Pe.transform(i),Oe.transform(i),e.x=Ae(Le.x,Pe.x,Oe.x,Re.x),e.y=Ae(Le.y,Pe.y,Oe.y,Re.y);var l=ke(Le.x,Pe.x,Oe.x,Re.x),u=ke(Le.y,Pe.y,Oe.y,Re.y);e.width=l-e.x,e.height=u-e.y}else e!==n&&t.copy(e,n)},t}(),Ve="silent";function Be(){de(this.event)}var Fe=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.handler=null,e}return n(e,t),e.prototype.dispose=function(){},e.prototype.setCursor=function(){},e}(jt),Ge=function(t,e){this.x=t,this.y=e},We=["click","dblclick","mousewheel","mouseout","mouseup","mousedown","mousemove","contextmenu"],He=new ze(0,0,0,0),Ye=function(t){function e(e,n,i,r,o){var a=t.call(this)||this;return a._hovered=new Ge(0,0),a.storage=e,a.painter=n,a.painterRoot=r,a._pointerSize=o,i=i||new Fe,a.proxy=null,a.setHandlerProxy(i),a._draggingMgr=new Zt(a),a}return n(e,t),e.prototype.setHandlerProxy=function(t){this.proxy&&this.proxy.dispose(),t&&(E(We,(function(e){t.on&&t.on(e,this[e],this)}),this),t.handler=this),this.proxy=t},e.prototype.mousemove=function(t){var e=t.zrX,n=t.zrY,i=Ze(this,e,n),r=this._hovered,o=r.target;o&&!o.__zr&&(o=(r=this.findHover(r.x,r.y)).target);var a=this._hovered=i?new Ge(e,n):this.findHover(e,n),s=a.target,l=this.proxy;l.setCursor&&l.setCursor(s?s.cursor:"default"),o&&s!==o&&this.dispatchToElement(r,"mouseout",t),this.dispatchToElement(a,"mousemove",t),s&&s!==o&&this.dispatchToElement(a,"mouseover",t)},e.prototype.mouseout=function(t){var e=t.zrEventControl;"only_globalout"!==e&&this.dispatchToElement(this._hovered,"mouseout",t),"no_globalout"!==e&&this.trigger("globalout",{type:"globalout",event:t})},e.prototype.resize=function(){this._hovered=new Ge(0,0)},e.prototype.dispatch=function(t,e){var n=this[t];n&&n.call(this,e)},e.prototype.dispose=function(){this.proxy.dispose(),this.storage=null,this.proxy=null,this.painter=null},e.prototype.setCursorStyle=function(t){var e=this.proxy;e.setCursor&&e.setCursor(t)},e.prototype.dispatchToElement=function(t,e,n){var i=(t=t||{}).target;if(!i||!i.silent){for(var r="on"+e,o=function(t,e,n){return{type:t,event:n,target:e.target,topTarget:e.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:Be}}(e,t,n);i&&(i[r]&&(o.cancelBubble=!!i[r].call(i,o)),i.trigger(e,o),i=i.__hostTarget?i.__hostTarget:i.parent,!o.cancelBubble););o.cancelBubble||(this.trigger(e,o),this.painter&&this.painter.eachOtherLayer&&this.painter.eachOtherLayer((function(t){"function"==typeof t[r]&&t[r].call(t,o),t.trigger&&t.trigger(e,o)})))}},e.prototype.findHover=function(t,e,n){var i=this.storage.getDisplayList(),r=new Ge(t,e);if(Ue(i,r,t,e,n),this._pointerSize&&!r.target){for(var o=[],a=this._pointerSize,s=a/2,l=new ze(t-s,e-s,a,a),u=i.length-1;u>=0;u--){var h=i[u];h===n||h.ignore||h.ignoreCoarsePointer||h.parent&&h.parent.ignoreCoarsePointer||(He.copy(h.getBoundingRect()),h.transform&&He.applyTransform(h.transform),He.intersect(l)&&o.push(h))}if(o.length)for(var c=Math.PI/12,p=2*Math.PI,d=0;d=0;o--){var a=t[o],s=void 0;if(a!==r&&!a.ignore&&(s=Xe(a,n,i))&&(!e.topTarget&&(e.topTarget=a),s!==Ve)){e.target=a;break}}}function Ze(t,e,n){var i=t.painter;return e<0||e>i.getWidth()||n<0||n>i.getHeight()}E(["click","mousedown","mouseup","mousewheel","dblclick","contextmenu"],(function(t){Ye.prototype[t]=function(e){var n,i,r=e.zrX,o=e.zrY,a=Ze(this,r,o);if("mouseup"===t&&a||(i=(n=this.findHover(r,o)).target),"mousedown"===t)this._downEl=i,this._downPoint=[e.zrX,e.zrY],this._upEl=i;else if("mouseup"===t)this._upEl=i;else if("click"===t){if(this._downEl!==this._upEl||!this._downPoint||Vt(this._downPoint,[e.zrX,e.zrY])>4)return;this._downPoint=null}this.dispatchToElement(n,t,e)}}));function je(t,e,n,i){var r=e+1;if(r===n)return 1;if(i(t[r++],t[e])<0){for(;r=0;)r++;return r-e}function qe(t,e,n,i,r){for(i===e&&i++;i>>1])<0?l=o:s=o+1;var u=i-s;switch(u){case 3:t[s+3]=t[s+2];case 2:t[s+2]=t[s+1];case 1:t[s+1]=t[s];break;default:for(;u>0;)t[s+u]=t[s+u-1],u--}t[s]=a}}function Ke(t,e,n,i,r,o){var a=0,s=0,l=1;if(o(t,e[n+r])>0){for(s=i-r;l0;)a=l,(l=1+(l<<1))<=0&&(l=s);l>s&&(l=s),a+=r,l+=r}else{for(s=r+1;ls&&(l=s);var u=a;a=r-l,l=r-u}for(a++;a>>1);o(t,e[n+h])>0?a=h+1:l=h}return l}function $e(t,e,n,i,r,o){var a=0,s=0,l=1;if(o(t,e[n+r])<0){for(s=r+1;ls&&(l=s);var u=a;a=r-l,l=r-u}else{for(s=i-r;l=0;)a=l,(l=1+(l<<1))<=0&&(l=s);l>s&&(l=s),a+=r,l+=r}for(a++;a>>1);o(t,e[n+h])<0?l=h:a=h+1}return l}function Je(t,e){var n,i,r=7,o=0;t.length;var a=[];function s(s){var l=n[s],u=i[s],h=n[s+1],c=i[s+1];i[s]=u+c,s===o-3&&(n[s+1]=n[s+2],i[s+1]=i[s+2]),o--;var p=$e(t[h],t,l,u,0,e);l+=p,0!==(u-=p)&&0!==(c=Ke(t[l+u-1],t,h,c,c-1,e))&&(u<=c?function(n,i,o,s){var l=0;for(l=0;l=7||d>=7);if(f)break;g<0&&(g=0),g+=2}if((r=g)<1&&(r=1),1===i){for(l=0;l=0;l--)t[d+l]=t[p+l];return void(t[c]=a[h])}var f=r;for(;;){var g=0,y=0,v=!1;do{if(e(a[h],t[u])<0){if(t[c--]=t[u--],g++,y=0,0==--i){v=!0;break}}else if(t[c--]=a[h--],y++,g=0,1==--s){v=!0;break}}while((g|y)=0;l--)t[d+l]=t[p+l];if(0===i){v=!0;break}}if(t[c--]=a[h--],1==--s){v=!0;break}if(0!==(y=s-Ke(t[u],a,0,s,s-1,e))){for(s-=y,d=(c-=y)+1,p=(h-=y)+1,l=0;l=7||y>=7);if(v)break;f<0&&(f=0),f+=2}(r=f)<1&&(r=1);if(1===s){for(d=(c-=i)+1,p=(u-=i)+1,l=i-1;l>=0;l--)t[d+l]=t[p+l];t[c]=a[h]}else{if(0===s)throw new Error;for(p=c-(s-1),l=0;l1;){var t=o-2;if(t>=1&&i[t-1]<=i[t]+i[t+1]||t>=2&&i[t-2]<=i[t]+i[t-1])i[t-1]i[t+1])break;s(t)}},forceMergeRuns:function(){for(;o>1;){var t=o-2;t>0&&i[t-1]=32;)e|=1&t,t>>=1;return t+e}(r);do{if((o=je(t,n,i,e))s&&(l=s),qe(t,n,n+l,n+o,e),o=l}a.pushRun(n,o),a.mergeRuns(),r-=o,n+=o}while(0!==r);a.forceMergeRuns()}}}var tn=!1;function en(){tn||(tn=!0,console.warn("z / z2 / zlevel of displayable is invalid, which may cause unexpected errors"))}function nn(t,e){return t.zlevel===e.zlevel?t.z===e.z?t.z2-e.z2:t.z-e.z:t.zlevel-e.zlevel}var rn=function(){function t(){this._roots=[],this._displayList=[],this._displayListLen=0,this.displayableSortFunc=nn}return t.prototype.traverse=function(t,e){for(var n=0;n0&&(u.__clipPaths=[]),isNaN(u.z)&&(en(),u.z=0),isNaN(u.z2)&&(en(),u.z2=0),isNaN(u.zlevel)&&(en(),u.zlevel=0),this._displayList[this._displayListLen++]=u}var h=t.getDecalElement&&t.getDecalElement();h&&this._updateAndAddDisplayable(h,e,n);var c=t.getTextGuideLine();c&&this._updateAndAddDisplayable(c,e,n);var p=t.getTextContent();p&&this._updateAndAddDisplayable(p,e,n)}},t.prototype.addRoot=function(t){t.__zr&&t.__zr.storage===this||this._roots.push(t)},t.prototype.delRoot=function(t){if(t instanceof Array)for(var e=0,n=t.length;e=0&&this._roots.splice(i,1)}},t.prototype.delAllRoots=function(){this._roots=[],this._displayList=[],this._displayListLen=0},t.prototype.getRoots=function(){return this._roots},t.prototype.dispose=function(){this._displayList=null,this._roots=null},t}(),on=r.hasGlobalWindow&&(window.requestAnimationFrame&&window.requestAnimationFrame.bind(window)||window.msRequestAnimationFrame&&window.msRequestAnimationFrame.bind(window)||window.mozRequestAnimationFrame||window.webkitRequestAnimationFrame)||function(t){return setTimeout(t,16)},an={linear:function(t){return t},quadraticIn:function(t){return t*t},quadraticOut:function(t){return t*(2-t)},quadraticInOut:function(t){return(t*=2)<1?.5*t*t:-.5*(--t*(t-2)-1)},cubicIn:function(t){return t*t*t},cubicOut:function(t){return--t*t*t+1},cubicInOut:function(t){return(t*=2)<1?.5*t*t*t:.5*((t-=2)*t*t+2)},quarticIn:function(t){return t*t*t*t},quarticOut:function(t){return 1- --t*t*t*t},quarticInOut:function(t){return(t*=2)<1?.5*t*t*t*t:-.5*((t-=2)*t*t*t-2)},quinticIn:function(t){return t*t*t*t*t},quinticOut:function(t){return--t*t*t*t*t+1},quinticInOut:function(t){return(t*=2)<1?.5*t*t*t*t*t:.5*((t-=2)*t*t*t*t+2)},sinusoidalIn:function(t){return 1-Math.cos(t*Math.PI/2)},sinusoidalOut:function(t){return Math.sin(t*Math.PI/2)},sinusoidalInOut:function(t){return.5*(1-Math.cos(Math.PI*t))},exponentialIn:function(t){return 0===t?0:Math.pow(1024,t-1)},exponentialOut:function(t){return 1===t?1:1-Math.pow(2,-10*t)},exponentialInOut:function(t){return 0===t?0:1===t?1:(t*=2)<1?.5*Math.pow(1024,t-1):.5*(2-Math.pow(2,-10*(t-1)))},circularIn:function(t){return 1-Math.sqrt(1-t*t)},circularOut:function(t){return Math.sqrt(1- --t*t)},circularInOut:function(t){return(t*=2)<1?-.5*(Math.sqrt(1-t*t)-1):.5*(Math.sqrt(1-(t-=2)*t)+1)},elasticIn:function(t){var e,n=.1;return 0===t?0:1===t?1:(!n||n<1?(n=1,e=.1):e=.4*Math.asin(1/n)/(2*Math.PI),-n*Math.pow(2,10*(t-=1))*Math.sin((t-e)*(2*Math.PI)/.4))},elasticOut:function(t){var e,n=.1;return 0===t?0:1===t?1:(!n||n<1?(n=1,e=.1):e=.4*Math.asin(1/n)/(2*Math.PI),n*Math.pow(2,-10*t)*Math.sin((t-e)*(2*Math.PI)/.4)+1)},elasticInOut:function(t){var e,n=.1,i=.4;return 0===t?0:1===t?1:(!n||n<1?(n=1,e=.1):e=i*Math.asin(1/n)/(2*Math.PI),(t*=2)<1?n*Math.pow(2,10*(t-=1))*Math.sin((t-e)*(2*Math.PI)/i)*-.5:n*Math.pow(2,-10*(t-=1))*Math.sin((t-e)*(2*Math.PI)/i)*.5+1)},backIn:function(t){var e=1.70158;return t*t*((e+1)*t-e)},backOut:function(t){var e=1.70158;return--t*t*((e+1)*t+e)+1},backInOut:function(t){var e=2.5949095;return(t*=2)<1?t*t*((e+1)*t-e)*.5:.5*((t-=2)*t*((e+1)*t+e)+2)},bounceIn:function(t){return 1-an.bounceOut(1-t)},bounceOut:function(t){return t<1/2.75?7.5625*t*t:t<2/2.75?7.5625*(t-=1.5/2.75)*t+.75:t<2.5/2.75?7.5625*(t-=2.25/2.75)*t+.9375:7.5625*(t-=2.625/2.75)*t+.984375},bounceInOut:function(t){return t<.5?.5*an.bounceIn(2*t):.5*an.bounceOut(2*t-1)+.5}},sn=Math.pow,ln=Math.sqrt,un=1e-8,hn=1e-4,cn=ln(3),pn=1/3,dn=Mt(),fn=Mt(),gn=Mt();function yn(t){return t>-1e-8&&tun||t<-1e-8}function mn(t,e,n,i,r){var o=1-r;return o*o*(o*t+3*r*e)+r*r*(r*i+3*o*n)}function xn(t,e,n,i,r){var o=1-r;return 3*(((e-t)*o+2*(n-e)*r)*o+(i-n)*r*r)}function _n(t,e,n,i,r,o){var a=i+3*(e-n)-t,s=3*(n-2*e+t),l=3*(e-t),u=t-r,h=s*s-3*a*l,c=s*l-9*a*u,p=l*l-3*s*u,d=0;if(yn(h)&&yn(c)){if(yn(s))o[0]=0;else(M=-l/s)>=0&&M<=1&&(o[d++]=M)}else{var f=c*c-4*h*p;if(yn(f)){var g=c/h,y=-g/2;(M=-s/a+g)>=0&&M<=1&&(o[d++]=M),y>=0&&y<=1&&(o[d++]=y)}else if(f>0){var v=ln(f),m=h*s+1.5*a*(-c+v),x=h*s+1.5*a*(-c-v);(M=(-s-((m=m<0?-sn(-m,pn):sn(m,pn))+(x=x<0?-sn(-x,pn):sn(x,pn))))/(3*a))>=0&&M<=1&&(o[d++]=M)}else{var _=(2*h*s-3*a*c)/(2*ln(h*h*h)),b=Math.acos(_)/3,w=ln(h),S=Math.cos(b),M=(-s-2*w*S)/(3*a),I=(y=(-s+w*(S+cn*Math.sin(b)))/(3*a),(-s+w*(S-cn*Math.sin(b)))/(3*a));M>=0&&M<=1&&(o[d++]=M),y>=0&&y<=1&&(o[d++]=y),I>=0&&I<=1&&(o[d++]=I)}}return d}function bn(t,e,n,i,r){var o=6*n-12*e+6*t,a=9*e+3*i-3*t-9*n,s=3*e-3*t,l=0;if(yn(a)){if(vn(o))(h=-s/o)>=0&&h<=1&&(r[l++]=h)}else{var u=o*o-4*a*s;if(yn(u))r[0]=-o/(2*a);else if(u>0){var h,c=ln(u),p=(-o-c)/(2*a);(h=(-o+c)/(2*a))>=0&&h<=1&&(r[l++]=h),p>=0&&p<=1&&(r[l++]=p)}}return l}function wn(t,e,n,i,r,o){var a=(e-t)*r+t,s=(n-e)*r+e,l=(i-n)*r+n,u=(s-a)*r+a,h=(l-s)*r+s,c=(h-u)*r+u;o[0]=t,o[1]=a,o[2]=u,o[3]=c,o[4]=c,o[5]=h,o[6]=l,o[7]=i}function Sn(t,e,n,i,r,o,a,s,l,u,h){var c,p,d,f,g,y=.005,v=1/0;dn[0]=l,dn[1]=u;for(var m=0;m<1;m+=.05)fn[0]=mn(t,n,r,a,m),fn[1]=mn(e,i,o,s,m),(f=Ft(dn,fn))=0&&f=0&&y=1?1:_n(0,i,o,1,t,s)&&mn(0,r,a,1,s[0])}}}var On=function(){function t(t){this._inited=!1,this._startTime=0,this._pausedTime=0,this._paused=!1,this._life=t.life||1e3,this._delay=t.delay||0,this.loop=t.loop||!1,this.onframe=t.onframe||bt,this.ondestroy=t.ondestroy||bt,this.onrestart=t.onrestart||bt,t.easing&&this.setEasing(t.easing)}return t.prototype.step=function(t,e){if(this._inited||(this._startTime=t+this._delay,this._inited=!0),!this._paused){var n=this._life,i=t-this._startTime-this._pausedTime,r=i/n;r<0&&(r=0),r=Math.min(r,1);var o=this.easingFunc,a=o?o(r):r;if(this.onframe(a),1===r){if(!this.loop)return!0;var s=i%n;this._startTime=t-s,this._pausedTime=0,this.onrestart()}return!1}this._pausedTime+=e},t.prototype.pause=function(){this._paused=!0},t.prototype.resume=function(){this._paused=!1},t.prototype.setEasing=function(t){this.easing=t,this.easingFunc=X(t)?t:an[t]||Pn(t)},t}(),Rn=function(t){this.value=t},Nn=function(){function t(){this._len=0}return t.prototype.insert=function(t){var e=new Rn(t);return this.insertEntry(e),e},t.prototype.insertEntry=function(t){this.head?(this.tail.next=t,t.prev=this.tail,t.next=null,this.tail=t):this.head=this.tail=t,this._len++},t.prototype.remove=function(t){var e=t.prev,n=t.next;e?e.next=n:this.head=n,n?n.prev=e:this.tail=e,t.next=t.prev=null,this._len--},t.prototype.len=function(){return this._len},t.prototype.clear=function(){this.head=this.tail=null,this._len=0},t}(),En=function(){function t(t){this._list=new Nn,this._maxSize=10,this._map={},this._maxSize=t}return t.prototype.put=function(t,e){var n=this._list,i=this._map,r=null;if(null==i[t]){var o=n.len(),a=this._lastRemovedEntry;if(o>=this._maxSize&&o>0){var s=n.head;n.remove(s),delete i[s.key],r=s.value,this._lastRemovedEntry=s}a?a.value=e:a=new Rn(e),a.key=t,n.insertEntry(a),i[t]=a}return r},t.prototype.get=function(t){var e=this._map[t],n=this._list;if(null!=e)return e!==n.tail&&(n.remove(e),n.insertEntry(e)),e.value},t.prototype.clear=function(){this._list.clear(),this._map={}},t.prototype.len=function(){return this._list.len()},t}(),zn={transparent:[0,0,0,0],aliceblue:[240,248,255,1],antiquewhite:[250,235,215,1],aqua:[0,255,255,1],aquamarine:[127,255,212,1],azure:[240,255,255,1],beige:[245,245,220,1],bisque:[255,228,196,1],black:[0,0,0,1],blanchedalmond:[255,235,205,1],blue:[0,0,255,1],blueviolet:[138,43,226,1],brown:[165,42,42,1],burlywood:[222,184,135,1],cadetblue:[95,158,160,1],chartreuse:[127,255,0,1],chocolate:[210,105,30,1],coral:[255,127,80,1],cornflowerblue:[100,149,237,1],cornsilk:[255,248,220,1],crimson:[220,20,60,1],cyan:[0,255,255,1],darkblue:[0,0,139,1],darkcyan:[0,139,139,1],darkgoldenrod:[184,134,11,1],darkgray:[169,169,169,1],darkgreen:[0,100,0,1],darkgrey:[169,169,169,1],darkkhaki:[189,183,107,1],darkmagenta:[139,0,139,1],darkolivegreen:[85,107,47,1],darkorange:[255,140,0,1],darkorchid:[153,50,204,1],darkred:[139,0,0,1],darksalmon:[233,150,122,1],darkseagreen:[143,188,143,1],darkslateblue:[72,61,139,1],darkslategray:[47,79,79,1],darkslategrey:[47,79,79,1],darkturquoise:[0,206,209,1],darkviolet:[148,0,211,1],deeppink:[255,20,147,1],deepskyblue:[0,191,255,1],dimgray:[105,105,105,1],dimgrey:[105,105,105,1],dodgerblue:[30,144,255,1],firebrick:[178,34,34,1],floralwhite:[255,250,240,1],forestgreen:[34,139,34,1],fuchsia:[255,0,255,1],gainsboro:[220,220,220,1],ghostwhite:[248,248,255,1],gold:[255,215,0,1],goldenrod:[218,165,32,1],gray:[128,128,128,1],green:[0,128,0,1],greenyellow:[173,255,47,1],grey:[128,128,128,1],honeydew:[240,255,240,1],hotpink:[255,105,180,1],indianred:[205,92,92,1],indigo:[75,0,130,1],ivory:[255,255,240,1],khaki:[240,230,140,1],lavender:[230,230,250,1],lavenderblush:[255,240,245,1],lawngreen:[124,252,0,1],lemonchiffon:[255,250,205,1],lightblue:[173,216,230,1],lightcoral:[240,128,128,1],lightcyan:[224,255,255,1],lightgoldenrodyellow:[250,250,210,1],lightgray:[211,211,211,1],lightgreen:[144,238,144,1],lightgrey:[211,211,211,1],lightpink:[255,182,193,1],lightsalmon:[255,160,122,1],lightseagreen:[32,178,170,1],lightskyblue:[135,206,250,1],lightslategray:[119,136,153,1],lightslategrey:[119,136,153,1],lightsteelblue:[176,196,222,1],lightyellow:[255,255,224,1],lime:[0,255,0,1],limegreen:[50,205,50,1],linen:[250,240,230,1],magenta:[255,0,255,1],maroon:[128,0,0,1],mediumaquamarine:[102,205,170,1],mediumblue:[0,0,205,1],mediumorchid:[186,85,211,1],mediumpurple:[147,112,219,1],mediumseagreen:[60,179,113,1],mediumslateblue:[123,104,238,1],mediumspringgreen:[0,250,154,1],mediumturquoise:[72,209,204,1],mediumvioletred:[199,21,133,1],midnightblue:[25,25,112,1],mintcream:[245,255,250,1],mistyrose:[255,228,225,1],moccasin:[255,228,181,1],navajowhite:[255,222,173,1],navy:[0,0,128,1],oldlace:[253,245,230,1],olive:[128,128,0,1],olivedrab:[107,142,35,1],orange:[255,165,0,1],orangered:[255,69,0,1],orchid:[218,112,214,1],palegoldenrod:[238,232,170,1],palegreen:[152,251,152,1],paleturquoise:[175,238,238,1],palevioletred:[219,112,147,1],papayawhip:[255,239,213,1],peachpuff:[255,218,185,1],peru:[205,133,63,1],pink:[255,192,203,1],plum:[221,160,221,1],powderblue:[176,224,230,1],purple:[128,0,128,1],red:[255,0,0,1],rosybrown:[188,143,143,1],royalblue:[65,105,225,1],saddlebrown:[139,69,19,1],salmon:[250,128,114,1],sandybrown:[244,164,96,1],seagreen:[46,139,87,1],seashell:[255,245,238,1],sienna:[160,82,45,1],silver:[192,192,192,1],skyblue:[135,206,235,1],slateblue:[106,90,205,1],slategray:[112,128,144,1],slategrey:[112,128,144,1],snow:[255,250,250,1],springgreen:[0,255,127,1],steelblue:[70,130,180,1],tan:[210,180,140,1],teal:[0,128,128,1],thistle:[216,191,216,1],tomato:[255,99,71,1],turquoise:[64,224,208,1],violet:[238,130,238,1],wheat:[245,222,179,1],white:[255,255,255,1],whitesmoke:[245,245,245,1],yellow:[255,255,0,1],yellowgreen:[154,205,50,1]};function Vn(t){return(t=Math.round(t))<0?0:t>255?255:t}function Bn(t){return t<0?0:t>1?1:t}function Fn(t){var e=t;return e.length&&"%"===e.charAt(e.length-1)?Vn(parseFloat(e)/100*255):Vn(parseInt(e,10))}function Gn(t){var e=t;return e.length&&"%"===e.charAt(e.length-1)?Bn(parseFloat(e)/100):Bn(parseFloat(e))}function Wn(t,e,n){return n<0?n+=1:n>1&&(n-=1),6*n<1?t+(e-t)*n*6:2*n<1?e:3*n<2?t+(e-t)*(2/3-n)*6:t}function Hn(t,e,n){return t+(e-t)*n}function Yn(t,e,n,i,r){return t[0]=e,t[1]=n,t[2]=i,t[3]=r,t}function Xn(t,e){return t[0]=e[0],t[1]=e[1],t[2]=e[2],t[3]=e[3],t}var Un=new En(20),Zn=null;function jn(t,e){Zn&&Xn(Zn,e),Zn=Un.put(t,Zn||e.slice())}function qn(t,e){if(t){e=e||[];var n=Un.get(t);if(n)return Xn(e,n);var i=(t+="").replace(/ /g,"").toLowerCase();if(i in zn)return Xn(e,zn[i]),jn(t,e),e;var r,o=i.length;if("#"===i.charAt(0))return 4===o||5===o?(r=parseInt(i.slice(1,4),16))>=0&&r<=4095?(Yn(e,(3840&r)>>4|(3840&r)>>8,240&r|(240&r)>>4,15&r|(15&r)<<4,5===o?parseInt(i.slice(4),16)/15:1),jn(t,e),e):void Yn(e,0,0,0,1):7===o||9===o?(r=parseInt(i.slice(1,7),16))>=0&&r<=16777215?(Yn(e,(16711680&r)>>16,(65280&r)>>8,255&r,9===o?parseInt(i.slice(7),16)/255:1),jn(t,e),e):void Yn(e,0,0,0,1):void 0;var a=i.indexOf("("),s=i.indexOf(")");if(-1!==a&&s+1===o){var l=i.substr(0,a),u=i.substr(a+1,s-(a+1)).split(","),h=1;switch(l){case"rgba":if(4!==u.length)return 3===u.length?Yn(e,+u[0],+u[1],+u[2],1):Yn(e,0,0,0,1);h=Gn(u.pop());case"rgb":return u.length>=3?(Yn(e,Fn(u[0]),Fn(u[1]),Fn(u[2]),3===u.length?h:Gn(u[3])),jn(t,e),e):void Yn(e,0,0,0,1);case"hsla":return 4!==u.length?void Yn(e,0,0,0,1):(u[3]=Gn(u[3]),Kn(u,e),jn(t,e),e);case"hsl":return 3!==u.length?void Yn(e,0,0,0,1):(Kn(u,e),jn(t,e),e);default:return}}Yn(e,0,0,0,1)}}function Kn(t,e){var n=(parseFloat(t[0])%360+360)%360/360,i=Gn(t[1]),r=Gn(t[2]),o=r<=.5?r*(i+1):r+i-r*i,a=2*r-o;return Yn(e=e||[],Vn(255*Wn(a,o,n+1/3)),Vn(255*Wn(a,o,n)),Vn(255*Wn(a,o,n-1/3)),1),4===t.length&&(e[3]=t[3]),e}function $n(t,e){var n=qn(t);if(n){for(var i=0;i<3;i++)n[i]=e<0?n[i]*(1-e)|0:(255-n[i])*e+n[i]|0,n[i]>255?n[i]=255:n[i]<0&&(n[i]=0);return ri(n,4===n.length?"rgba":"rgb")}}function Jn(t,e,n){if(e&&e.length&&t>=0&&t<=1){n=n||[];var i=t*(e.length-1),r=Math.floor(i),o=Math.ceil(i),a=e[r],s=e[o],l=i-r;return n[0]=Vn(Hn(a[0],s[0],l)),n[1]=Vn(Hn(a[1],s[1],l)),n[2]=Vn(Hn(a[2],s[2],l)),n[3]=Bn(Hn(a[3],s[3],l)),n}}var Qn=Jn;function ti(t,e,n){if(e&&e.length&&t>=0&&t<=1){var i=t*(e.length-1),r=Math.floor(i),o=Math.ceil(i),a=qn(e[r]),s=qn(e[o]),l=i-r,u=ri([Vn(Hn(a[0],s[0],l)),Vn(Hn(a[1],s[1],l)),Vn(Hn(a[2],s[2],l)),Bn(Hn(a[3],s[3],l))],"rgba");return n?{color:u,leftIndex:r,rightIndex:o,value:i}:u}}var ei=ti;function ni(t,e,n,i){var r=qn(t);if(t)return r=function(t){if(t){var e,n,i=t[0]/255,r=t[1]/255,o=t[2]/255,a=Math.min(i,r,o),s=Math.max(i,r,o),l=s-a,u=(s+a)/2;if(0===l)e=0,n=0;else{n=u<.5?l/(s+a):l/(2-s-a);var h=((s-i)/6+l/2)/l,c=((s-r)/6+l/2)/l,p=((s-o)/6+l/2)/l;i===s?e=p-c:r===s?e=1/3+h-p:o===s&&(e=2/3+c-h),e<0&&(e+=1),e>1&&(e-=1)}var d=[360*e,n,u];return null!=t[3]&&d.push(t[3]),d}}(r),null!=e&&(r[0]=function(t){return(t=Math.round(t))<0?0:t>360?360:t}(e)),null!=n&&(r[1]=Gn(n)),null!=i&&(r[2]=Gn(i)),ri(Kn(r),"rgba")}function ii(t,e){var n=qn(t);if(n&&null!=e)return n[3]=Bn(e),ri(n,"rgba")}function ri(t,e){if(t&&t.length){var n=t[0]+","+t[1]+","+t[2];return"rgba"!==e&&"hsva"!==e&&"hsla"!==e||(n+=","+t[3]),e+"("+n+")"}}function oi(t,e){var n=qn(t);return n?(.299*n[0]+.587*n[1]+.114*n[2])*n[3]/255+(1-n[3])*e:0}var ai=Object.freeze({__proto__:null,parse:qn,lift:$n,toHex:function(t){var e=qn(t);if(e)return((1<<24)+(e[0]<<16)+(e[1]<<8)+ +e[2]).toString(16).slice(1)},fastLerp:Jn,fastMapToColor:Qn,lerp:ti,mapToColor:ei,modifyHSL:ni,modifyAlpha:ii,stringify:ri,lum:oi,random:function(){return ri([Math.round(255*Math.random()),Math.round(255*Math.random()),Math.round(255*Math.random())],"rgb")}}),si=Math.round;function li(t){var e;if(t&&"transparent"!==t){if("string"==typeof t&&t.indexOf("rgba")>-1){var n=qn(t);n&&(t="rgb("+n[0]+","+n[1]+","+n[2]+")",e=n[3])}}else t="none";return{color:t,opacity:null==e?1:e}}var ui=1e-4;function hi(t){return t-1e-4}function ci(t){return si(1e3*t)/1e3}function pi(t){return si(1e4*t)/1e4}var di={left:"start",right:"end",center:"middle",middle:"middle"};function fi(t){return t&&!!t.image}function gi(t){return fi(t)||function(t){return t&&!!t.svgElement}(t)}function yi(t){return"linear"===t.type}function vi(t){return"radial"===t.type}function mi(t){return t&&("linear"===t.type||"radial"===t.type)}function xi(t){return"url(#"+t+")"}function _i(t){var e=t.getGlobalScale(),n=Math.max(e[0],e[1]);return Math.max(Math.ceil(Math.log(n)/Math.log(10)),1)}function bi(t){var e=t.x||0,n=t.y||0,i=(t.rotation||0)*wt,r=rt(t.scaleX,1),o=rt(t.scaleY,1),a=t.skewX||0,s=t.skewY||0,l=[];return(e||n)&&l.push("translate("+e+"px,"+n+"px)"),i&&l.push("rotate("+i+")"),1===r&&1===o||l.push("scale("+r+","+o+")"),(a||s)&&l.push("skew("+si(a*wt)+"deg, "+si(s*wt)+"deg)"),l.join(" ")}var wi=r.hasGlobalWindow&&X(window.btoa)?function(t){return window.btoa(unescape(encodeURIComponent(t)))}:"undefined"!=typeof Buffer?function(t){return Buffer.from(t).toString("base64")}:function(t){return null},Si=Array.prototype.slice;function Mi(t,e,n){return(e-t)*n+t}function Ii(t,e,n,i){for(var r=e.length,o=0;oi?e:t,o=Math.min(n,i),a=r[o-1]||{color:[0,0,0,0],offset:0},s=o;sa)i.length=a;else for(var s=o;s=1},t.prototype.getAdditiveTrack=function(){return this._additiveTrack},t.prototype.addKeyframe=function(t,e,n){this._needsSort=!0;var i=this.keyframes,r=i.length,o=!1,a=6,s=e;if(N(e)){var l=function(t){return N(t&&t[0])?2:1}(e);a=l,(1===l&&!j(e[0])||2===l&&!j(e[0][0]))&&(o=!0)}else if(j(e)&&!nt(e))a=0;else if(U(e))if(isNaN(+e)){var u=qn(e);u&&(s=u,a=3)}else a=0;else if(Q(e)){var h=A({},s);h.colorStops=z(e.colorStops,(function(t){return{offset:t.offset,color:qn(t.color)}})),yi(e)?a=4:vi(e)&&(a=5),s=h}0===r?this.valType=a:a===this.valType&&6!==a||(o=!0),this.discrete=this.discrete||o;var c={time:t,value:s,rawValue:e,percent:0};return n&&(c.easing=n,c.easingFunc=X(n)?n:an[n]||Pn(n)),i.push(c),c},t.prototype.prepare=function(t,e){var n=this.keyframes;this._needsSort&&n.sort((function(t,e){return t.time-e.time}));for(var i=this.valType,r=n.length,o=n[r-1],a=this.discrete,s=Oi(i),l=Pi(i),u=0;u=0&&!(l[n].percent<=e);n--);n=d(n,u-2)}else{for(n=p;ne);n++);n=d(n-1,u-2)}r=l[n+1],i=l[n]}if(i&&r){this._lastFr=n,this._lastFrP=e;var f=r.percent-i.percent,g=0===f?1:d((e-i.percent)/f,1);r.easingFunc&&(g=r.easingFunc(g));var y=o?this._additiveValue:c?Ri:t[h];if(!Oi(s)&&!c||y||(y=this._additiveValue=[]),this.discrete)t[h]=g<1?i.rawValue:r.rawValue;else if(Oi(s))1===s?Ii(y,i[a],r[a],g):function(t,e,n,i){for(var r=e.length,o=r&&e[0].length,a=0;a0&&s.addKeyframe(0,ki(l),i),this._trackKeys.push(a)}s.addKeyframe(t,ki(e[a]),i)}return this._maxTime=Math.max(this._maxTime,t),this},t.prototype.pause=function(){this._clip.pause(),this._paused=!0},t.prototype.resume=function(){this._clip.resume(),this._paused=!1},t.prototype.isPaused=function(){return!!this._paused},t.prototype.duration=function(t){return this._maxTime=t,this._force=!0,this},t.prototype._doneCallback=function(){this._setTracksFinished(),this._clip=null;var t=this._doneCbs;if(t)for(var e=t.length,n=0;n0)){this._started=1;for(var e=this,n=[],i=this._maxTime||0,r=0;r1){var a=o.pop();r.addKeyframe(a.time,t[i]),r.prepare(this._maxTime,r.getAdditiveTrack())}}}},t}();function zi(){return(new Date).getTime()}var Vi,Bi,Fi=function(t){function e(e){var n=t.call(this)||this;return n._running=!1,n._time=0,n._pausedTime=0,n._pauseStart=0,n._paused=!1,e=e||{},n.stage=e.stage||{},n}return n(e,t),e.prototype.addClip=function(t){t.animation&&this.removeClip(t),this._head?(this._tail.next=t,t.prev=this._tail,t.next=null,this._tail=t):this._head=this._tail=t,t.animation=this},e.prototype.addAnimator=function(t){t.animation=this;var e=t.getClip();e&&this.addClip(e)},e.prototype.removeClip=function(t){if(t.animation){var e=t.prev,n=t.next;e?e.next=n:this._head=n,n?n.prev=e:this._tail=e,t.next=t.prev=t.animation=null}},e.prototype.removeAnimator=function(t){var e=t.getClip();e&&this.removeClip(e),t.animation=null},e.prototype.update=function(t){for(var e=zi()-this._pausedTime,n=e-this._time,i=this._head;i;){var r=i.next;i.step(e,n)?(i.ondestroy(),this.removeClip(i),i=r):i=r}this._time=e,t||(this.trigger("frame",n),this.stage.update&&this.stage.update())},e.prototype._startLoop=function(){var t=this;this._running=!0,on((function e(){t._running&&(on(e),!t._paused&&t.update())}))},e.prototype.start=function(){this._running||(this._time=zi(),this._pausedTime=0,this._startLoop())},e.prototype.stop=function(){this._running=!1},e.prototype.pause=function(){this._paused||(this._pauseStart=zi(),this._paused=!0)},e.prototype.resume=function(){this._paused&&(this._pausedTime+=zi()-this._pauseStart,this._paused=!1)},e.prototype.clear=function(){for(var t=this._head;t;){var e=t.next;t.prev=t.next=t.animation=null,t=e}this._head=this._tail=null},e.prototype.isFinished=function(){return null==this._head},e.prototype.animate=function(t,e){e=e||{},this.start();var n=new Ei(t,e.loop);return this.addAnimator(n),n},e}(jt),Gi=r.domSupported,Wi=(Bi={pointerdown:1,pointerup:1,pointermove:1,pointerout:1},{mouse:Vi=["click","dblclick","mousewheel","wheel","mouseout","mouseup","mousedown","mousemove","contextmenu"],touch:["touchstart","touchend","touchmove"],pointer:z(Vi,(function(t){var e=t.replace("mouse","pointer");return Bi.hasOwnProperty(e)?e:t}))}),Hi=["mousemove","mouseup"],Yi=["pointermove","pointerup"],Xi=!1;function Ui(t){var e=t.pointerType;return"pen"===e||"touch"===e}function Zi(t){t&&(t.zrByTouch=!0)}function ji(t,e){for(var n=e,i=!1;n&&9!==n.nodeType&&!(i=n.domBelongToZr||n!==e&&n===t.painterRoot);)n=n.parentNode;return i}var qi=function(t,e){this.stopPropagation=bt,this.stopImmediatePropagation=bt,this.preventDefault=bt,this.type=e.type,this.target=this.currentTarget=t.dom,this.pointerType=e.pointerType,this.clientX=e.clientX,this.clientY=e.clientY},Ki={mousedown:function(t){t=ce(this.dom,t),this.__mayPointerCapture=[t.zrX,t.zrY],this.trigger("mousedown",t)},mousemove:function(t){t=ce(this.dom,t);var e=this.__mayPointerCapture;!e||t.zrX===e[0]&&t.zrY===e[1]||this.__togglePointerCapture(!0),this.trigger("mousemove",t)},mouseup:function(t){t=ce(this.dom,t),this.__togglePointerCapture(!1),this.trigger("mouseup",t)},mouseout:function(t){ji(this,(t=ce(this.dom,t)).toElement||t.relatedTarget)||(this.__pointerCapturing&&(t.zrEventControl="no_globalout"),this.trigger("mouseout",t))},wheel:function(t){Xi=!0,t=ce(this.dom,t),this.trigger("mousewheel",t)},mousewheel:function(t){Xi||(t=ce(this.dom,t),this.trigger("mousewheel",t))},touchstart:function(t){Zi(t=ce(this.dom,t)),this.__lastTouchMoment=new Date,this.handler.processGesture(t,"start"),Ki.mousemove.call(this,t),Ki.mousedown.call(this,t)},touchmove:function(t){Zi(t=ce(this.dom,t)),this.handler.processGesture(t,"change"),Ki.mousemove.call(this,t)},touchend:function(t){Zi(t=ce(this.dom,t)),this.handler.processGesture(t,"end"),Ki.mouseup.call(this,t),+new Date-+this.__lastTouchMoment<300&&Ki.click.call(this,t)},pointerdown:function(t){Ki.mousedown.call(this,t)},pointermove:function(t){Ui(t)||Ki.mousemove.call(this,t)},pointerup:function(t){Ki.mouseup.call(this,t)},pointerout:function(t){Ui(t)||Ki.mouseout.call(this,t)}};E(["click","dblclick","contextmenu"],(function(t){Ki[t]=function(e){e=ce(this.dom,e),this.trigger(t,e)}}));var $i={pointermove:function(t){Ui(t)||$i.mousemove.call(this,t)},pointerup:function(t){$i.mouseup.call(this,t)},mousemove:function(t){this.trigger("mousemove",t)},mouseup:function(t){var e=this.__pointerCapturing;this.__togglePointerCapture(!1),this.trigger("mouseup",t),e&&(t.zrEventControl="only_globalout",this.trigger("mouseout",t))}};function Ji(t,e){var n=e.domHandlers;r.pointerEventsSupported?E(Wi.pointer,(function(i){tr(e,i,(function(e){n[i].call(t,e)}))})):(r.touchEventsSupported&&E(Wi.touch,(function(i){tr(e,i,(function(r){n[i].call(t,r),function(t){t.touching=!0,null!=t.touchTimer&&(clearTimeout(t.touchTimer),t.touchTimer=null),t.touchTimer=setTimeout((function(){t.touching=!1,t.touchTimer=null}),700)}(e)}))})),E(Wi.mouse,(function(i){tr(e,i,(function(r){r=he(r),e.touching||n[i].call(t,r)}))})))}function Qi(t,e){function n(n){tr(e,n,(function(i){i=he(i),ji(t,i.target)||(i=function(t,e){return ce(t.dom,new qi(t,e),!0)}(t,i),e.domHandlers[n].call(t,i))}),{capture:!0})}r.pointerEventsSupported?E(Yi,n):r.touchEventsSupported||E(Hi,n)}function tr(t,e,n,i){t.mounted[e]=n,t.listenerOpts[e]=i,pe(t.domTarget,e,n,i)}function er(t){var e,n,i,r,o=t.mounted;for(var a in o)o.hasOwnProperty(a)&&(e=t.domTarget,n=a,i=o[a],r=t.listenerOpts[a],e.removeEventListener(n,i,r));t.mounted={}}var nr=function(t,e){this.mounted={},this.listenerOpts={},this.touching=!1,this.domTarget=t,this.domHandlers=e},ir=function(t){function e(e,n){var i=t.call(this)||this;return i.__pointerCapturing=!1,i.dom=e,i.painterRoot=n,i._localHandlerScope=new nr(e,Ki),Gi&&(i._globalHandlerScope=new nr(document,$i)),Ji(i,i._localHandlerScope),i}return n(e,t),e.prototype.dispose=function(){er(this._localHandlerScope),Gi&&er(this._globalHandlerScope)},e.prototype.setCursor=function(t){this.dom.style&&(this.dom.style.cursor=t||"default")},e.prototype.__togglePointerCapture=function(t){if(this.__mayPointerCapture=null,Gi&&+this.__pointerCapturing^+t){this.__pointerCapturing=t;var e=this._globalHandlerScope;t?Qi(this,e):er(e)}},e}(jt),rr=1;r.hasGlobalWindow&&(rr=Math.max(window.devicePixelRatio||window.screen&&window.screen.deviceXDPI/window.screen.logicalXDPI||1,1));var or=rr,ar="#333",sr="#ccc",lr=xe,ur=5e-5;function hr(t){return t>ur||t<-5e-5}var cr=[],pr=[],dr=[1,0,0,1,0,0],fr=Math.abs,gr=function(){function t(){}return t.prototype.getLocalTransform=function(e){return t.getLocalTransform(this,e)},t.prototype.setPosition=function(t){this.x=t[0],this.y=t[1]},t.prototype.setScale=function(t){this.scaleX=t[0],this.scaleY=t[1]},t.prototype.setSkew=function(t){this.skewX=t[0],this.skewY=t[1]},t.prototype.setOrigin=function(t){this.originX=t[0],this.originY=t[1]},t.prototype.needLocalTransform=function(){return hr(this.rotation)||hr(this.x)||hr(this.y)||hr(this.scaleX-1)||hr(this.scaleY-1)||hr(this.skewX)||hr(this.skewY)},t.prototype.updateTransform=function(){var t=this.parent&&this.parent.transform,e=this.needLocalTransform(),n=this.transform;e||t?(n=n||[1,0,0,1,0,0],e?this.getLocalTransform(n):lr(n),t&&(e?be(n,t,n):_e(n,t)),this.transform=n,this._resolveGlobalScaleRatio(n)):n&&(lr(n),this.invTransform=null)},t.prototype._resolveGlobalScaleRatio=function(t){var e=this.globalScaleRatio;if(null!=e&&1!==e){this.getGlobalScale(cr);var n=cr[0]<0?-1:1,i=cr[1]<0?-1:1,r=((cr[0]-n)*e+n)/cr[0]||0,o=((cr[1]-i)*e+i)/cr[1]||0;t[0]*=r,t[1]*=r,t[2]*=o,t[3]*=o}this.invTransform=this.invTransform||[1,0,0,1,0,0],Ie(this.invTransform,t)},t.prototype.getComputedTransform=function(){for(var t=this,e=[];t;)e.push(t),t=t.parent;for(;t=e.pop();)t.updateTransform();return this.transform},t.prototype.setLocalTransform=function(t){if(t){var e=t[0]*t[0]+t[1]*t[1],n=t[2]*t[2]+t[3]*t[3],i=Math.atan2(t[1],t[0]),r=Math.PI/2+i-Math.atan2(t[3],t[2]);n=Math.sqrt(n)*Math.cos(r),e=Math.sqrt(e),this.skewX=r,this.skewY=0,this.rotation=-i,this.x=+t[4],this.y=+t[5],this.scaleX=e,this.scaleY=n,this.originX=0,this.originY=0}},t.prototype.decomposeTransform=function(){if(this.transform){var t=this.parent,e=this.transform;t&&t.transform&&(be(pr,t.invTransform,e),e=pr);var n=this.originX,i=this.originY;(n||i)&&(dr[4]=n,dr[5]=i,be(pr,e,dr),pr[4]-=n,pr[5]-=i,e=pr),this.setLocalTransform(e)}},t.prototype.getGlobalScale=function(t){var e=this.transform;return t=t||[],e?(t[0]=Math.sqrt(e[0]*e[0]+e[1]*e[1]),t[1]=Math.sqrt(e[2]*e[2]+e[3]*e[3]),e[0]<0&&(t[0]=-t[0]),e[3]<0&&(t[1]=-t[1]),t):(t[0]=1,t[1]=1,t)},t.prototype.transformCoordToLocal=function(t,e){var n=[t,e],i=this.invTransform;return i&&Wt(n,n,i),n},t.prototype.transformCoordToGlobal=function(t,e){var n=[t,e],i=this.transform;return i&&Wt(n,n,i),n},t.prototype.getLineScale=function(){var t=this.transform;return t&&fr(t[0]-1)>1e-10&&fr(t[3]-1)>1e-10?Math.sqrt(fr(t[0]*t[3]-t[2]*t[1])):1},t.prototype.copyTransform=function(t){vr(this,t)},t.getLocalTransform=function(t,e){e=e||[];var n=t.originX||0,i=t.originY||0,r=t.scaleX,o=t.scaleY,a=t.anchorX,s=t.anchorY,l=t.rotation||0,u=t.x,h=t.y,c=t.skewX?Math.tan(t.skewX):0,p=t.skewY?Math.tan(-t.skewY):0;if(n||i||a||s){var d=n+a,f=i+s;e[4]=-d*r-c*f*o,e[5]=-f*o-p*d*r}else e[4]=e[5]=0;return e[0]=r,e[3]=o,e[1]=p*r,e[2]=c*o,l&&Se(e,e,l),e[4]+=n+u,e[5]+=i+h,e},t.initDefaultProps=function(){var e=t.prototype;e.scaleX=e.scaleY=e.globalScaleRatio=1,e.x=e.y=e.originX=e.originY=e.skewX=e.skewY=e.rotation=e.anchorX=e.anchorY=0}(),t}(),yr=["x","y","originX","originY","anchorX","anchorY","rotation","scaleX","scaleY","skewX","skewY"];function vr(t,e){for(var n=0;n=0?parseFloat(t)/100*e:parseFloat(t):t}function Tr(t,e,n){var i=e.position||"inside",r=null!=e.distance?e.distance:5,o=n.height,a=n.width,s=o/2,l=n.x,u=n.y,h="left",c="top";if(i instanceof Array)l+=Ir(i[0],n.width),u+=Ir(i[1],n.height),h=null,c=null;else switch(i){case"left":l-=r,u+=s,h="right",c="middle";break;case"right":l+=r+a,u+=s,c="middle";break;case"top":l+=a/2,u-=r,h="center",c="bottom";break;case"bottom":l+=a/2,u+=o+r,h="center";break;case"inside":l+=a/2,u+=s,h="center",c="middle";break;case"insideLeft":l+=r,u+=s,c="middle";break;case"insideRight":l+=a-r,u+=s,h="right",c="middle";break;case"insideTop":l+=a/2,u+=r,h="center";break;case"insideBottom":l+=a/2,u+=o-r,h="center",c="bottom";break;case"insideTopLeft":l+=r,u+=r;break;case"insideTopRight":l+=a-r,u+=r,h="right";break;case"insideBottomLeft":l+=r,u+=o-r,c="bottom";break;case"insideBottomRight":l+=a-r,u+=o-r,h="right",c="bottom"}return(t=t||{}).x=l,t.y=u,t.align=h,t.verticalAlign=c,t}var Cr="__zr_normal__",Dr=yr.concat(["ignore"]),Ar=V(yr,(function(t,e){return t[e]=!0,t}),{ignore:!1}),kr={},Lr=new ze(0,0,0,0),Pr=function(){function t(t){this.id=M(),this.animators=[],this.currentStates=[],this.states={},this._init(t)}return t.prototype._init=function(t){this.attr(t)},t.prototype.drift=function(t,e,n){switch(this.draggable){case"horizontal":e=0;break;case"vertical":t=0}var i=this.transform;i||(i=this.transform=[1,0,0,1,0,0]),i[4]+=t,i[5]+=e,this.decomposeTransform(),this.markRedraw()},t.prototype.beforeUpdate=function(){},t.prototype.afterUpdate=function(){},t.prototype.update=function(){this.updateTransform(),this.__dirty&&this.updateInnerText()},t.prototype.updateInnerText=function(t){var e=this._textContent;if(e&&(!e.ignore||t)){this.textConfig||(this.textConfig={});var n=this.textConfig,i=n.local,r=e.innerTransformable,o=void 0,a=void 0,s=!1;r.parent=i?this:null;var l=!1;if(r.copyTransform(e),null!=n.position){var u=Lr;n.layoutRect?u.copy(n.layoutRect):u.copy(this.getBoundingRect()),i||u.applyTransform(this.transform),this.calculateTextPosition?this.calculateTextPosition(kr,n,u):Tr(kr,n,u),r.x=kr.x,r.y=kr.y,o=kr.align,a=kr.verticalAlign;var h=n.origin;if(h&&null!=n.rotation){var c=void 0,p=void 0;"center"===h?(c=.5*u.width,p=.5*u.height):(c=Ir(h[0],u.width),p=Ir(h[1],u.height)),l=!0,r.originX=-r.x+c+(i?0:u.x),r.originY=-r.y+p+(i?0:u.y)}}null!=n.rotation&&(r.rotation=n.rotation);var d=n.offset;d&&(r.x+=d[0],r.y+=d[1],l||(r.originX=-d[0],r.originY=-d[1]));var f=null==n.inside?"string"==typeof n.position&&n.position.indexOf("inside")>=0:n.inside,g=this._innerTextDefaultStyle||(this._innerTextDefaultStyle={}),y=void 0,v=void 0,m=void 0;f&&this.canBeInsideText()?(y=n.insideFill,v=n.insideStroke,null!=y&&"auto"!==y||(y=this.getInsideTextFill()),null!=v&&"auto"!==v||(v=this.getInsideTextStroke(y),m=!0)):(y=n.outsideFill,v=n.outsideStroke,null!=y&&"auto"!==y||(y=this.getOutsideFill()),null!=v&&"auto"!==v||(v=this.getOutsideStroke(y),m=!0)),(y=y||"#000")===g.fill&&v===g.stroke&&m===g.autoStroke&&o===g.align&&a===g.verticalAlign||(s=!0,g.fill=y,g.stroke=v,g.autoStroke=m,g.align=o,g.verticalAlign=a,e.setDefaultTextStyle(g)),e.__dirty|=1,s&&e.dirtyStyle(!0)}},t.prototype.canBeInsideText=function(){return!0},t.prototype.getInsideTextFill=function(){return"#fff"},t.prototype.getInsideTextStroke=function(t){return"#000"},t.prototype.getOutsideFill=function(){return this.__zr&&this.__zr.isDarkMode()?sr:ar},t.prototype.getOutsideStroke=function(t){var e=this.__zr&&this.__zr.getBackgroundColor(),n="string"==typeof e&&qn(e);n||(n=[255,255,255,1]);for(var i=n[3],r=this.__zr.isDarkMode(),o=0;o<3;o++)n[o]=n[o]*i+(r?0:255)*(1-i);return n[3]=1,ri(n,"rgba")},t.prototype.traverse=function(t,e){},t.prototype.attrKV=function(t,e){"textConfig"===t?this.setTextConfig(e):"textContent"===t?this.setTextContent(e):"clipPath"===t?this.setClipPath(e):"extra"===t?(this.extra=this.extra||{},A(this.extra,e)):this[t]=e},t.prototype.hide=function(){this.ignore=!0,this.markRedraw()},t.prototype.show=function(){this.ignore=!1,this.markRedraw()},t.prototype.attr=function(t,e){if("string"==typeof t)this.attrKV(t,e);else if(q(t))for(var n=G(t),i=0;i0},t.prototype.getState=function(t){return this.states[t]},t.prototype.ensureState=function(t){var e=this.states;return e[t]||(e[t]={}),e[t]},t.prototype.clearStates=function(t){this.useState(Cr,!1,t)},t.prototype.useState=function(t,e,n,i){var r=t===Cr;if(this.hasState()||!r){var o=this.currentStates,a=this.stateTransition;if(!(P(o,t)>=0)||!e&&1!==o.length){var s;if(this.stateProxy&&!r&&(s=this.stateProxy(t)),s||(s=this.states&&this.states[t]),s||r){r||this.saveCurrentToNormalState(s);var l=!!(s&&s.hoverLayer||i);l&&this._toggleHoverLayerFlag(!0),this._applyStateObj(t,s,this._normalState,e,!n&&!this.__inHover&&a&&a.duration>0,a);var u=this._textContent,h=this._textGuide;return u&&u.useState(t,e,n,l),h&&h.useState(t,e,n,l),r?(this.currentStates=[],this._normalState={}):e?this.currentStates.push(t):this.currentStates=[t],this._updateAnimationTargets(),this.markRedraw(),!l&&this.__inHover&&(this._toggleHoverLayerFlag(!1),this.__dirty&=-2),s}I("State "+t+" not exists.")}}},t.prototype.useStates=function(t,e,n){if(t.length){var i=[],r=this.currentStates,o=t.length,a=o===r.length;if(a)for(var s=0;s0,d);var f=this._textContent,g=this._textGuide;f&&f.useStates(t,e,c),g&&g.useStates(t,e,c),this._updateAnimationTargets(),this.currentStates=t.slice(),this.markRedraw(),!c&&this.__inHover&&(this._toggleHoverLayerFlag(!1),this.__dirty&=-2)}else this.clearStates()},t.prototype._updateAnimationTargets=function(){for(var t=0;t=0){var n=this.currentStates.slice();n.splice(e,1),this.useStates(n)}},t.prototype.replaceState=function(t,e,n){var i=this.currentStates.slice(),r=P(i,t),o=P(i,e)>=0;r>=0?o?i.splice(r,1):i[r]=e:n&&!o&&i.push(e),this.useStates(i)},t.prototype.toggleState=function(t,e){e?this.useState(t,!0):this.removeState(t)},t.prototype._mergeStates=function(t){for(var e,n={},i=0;i=0&&e.splice(n,1)})),this.animators.push(t),n&&n.animation.addAnimator(t),n&&n.wakeUp()},t.prototype.updateDuringAnimation=function(t){this.markRedraw()},t.prototype.stopAnimation=function(t,e){for(var n=this.animators,i=n.length,r=[],o=0;o0&&n.during&&o[0].during((function(t,e){n.during(e)}));for(var p=0;p0||r.force&&!a.length){var w,S=void 0,M=void 0,I=void 0;if(s){M={},p&&(S={});for(_=0;_=0&&(n.splice(i,0,t),this._doAdd(t))}return this},e.prototype.replace=function(t,e){var n=P(this._children,t);return n>=0&&this.replaceAt(e,n),this},e.prototype.replaceAt=function(t,e){var n=this._children,i=n[e];if(t&&t!==this&&t.parent!==this&&t!==i){n[e]=t,i.parent=null;var r=this.__zr;r&&i.removeSelfFromZr(r),this._doAdd(t)}return this},e.prototype._doAdd=function(t){t.parent&&t.parent.remove(t),t.parent=this;var e=this.__zr;e&&e!==t.__zr&&t.addSelfToZr(e),e&&e.refresh()},e.prototype.remove=function(t){var e=this.__zr,n=this._children,i=P(n,t);return i<0||(n.splice(i,1),t.parent=null,e&&t.removeSelfFromZr(e),e&&e.refresh()),this},e.prototype.removeAll=function(){for(var t=this._children,e=this.__zr,n=0;n0&&(this._stillFrameAccum++,this._stillFrameAccum>this._sleepAfterStill&&this.animation.stop())},t.prototype.setSleepAfterStill=function(t){this._sleepAfterStill=t},t.prototype.wakeUp=function(){this.animation.start(),this._stillFrameAccum=0},t.prototype.refreshHover=function(){this._needsRefreshHover=!0},t.prototype.refreshHoverImmediately=function(){this._needsRefreshHover=!1,this.painter.refreshHover&&"canvas"===this.painter.getType()&&this.painter.refreshHover()},t.prototype.resize=function(t){t=t||{},this.painter.resize(t.width,t.height),this.handler.resize()},t.prototype.clearAnimation=function(){this.animation.clear()},t.prototype.getWidth=function(){return this.painter.getWidth()},t.prototype.getHeight=function(){return this.painter.getHeight()},t.prototype.setCursorStyle=function(t){this.handler.setCursorStyle(t)},t.prototype.findHover=function(t,e){return this.handler.findHover(t,e)},t.prototype.on=function(t,e,n){return this.handler.on(t,e,n),this},t.prototype.off=function(t,e){this.handler.off(t,e)},t.prototype.trigger=function(t,e){this.handler.trigger(t,e)},t.prototype.clear=function(){for(var t=this.storage.getRoots(),e=0;e0){if(t<=r)return a;if(t>=o)return s}else{if(t>=r)return a;if(t<=o)return s}else{if(t===r)return a;if(t===o)return s}return(t-r)/l*u+a}function Ur(t,e){switch(t){case"center":case"middle":t="50%";break;case"left":case"top":t="0%";break;case"right":case"bottom":t="100%"}return U(t)?(n=t,n.replace(/^\s+|\s+$/g,"")).match(/%$/)?parseFloat(t)/100*e:parseFloat(t):null==t?NaN:+t;var n}function Zr(t,e,n){return null==e&&(e=10),e=Math.min(Math.max(0,e),20),t=(+t).toFixed(e),n?t:+t}function jr(t){return t.sort((function(t,e){return t-e})),t}function qr(t){if(t=+t,isNaN(t))return 0;if(t>1e-14)for(var e=1,n=0;n<15;n++,e*=10)if(Math.round(t*e)/e===t)return n;return Kr(t)}function Kr(t){var e=t.toString().toLowerCase(),n=e.indexOf("e"),i=n>0?+e.slice(n+1):0,r=n>0?n:e.length,o=e.indexOf("."),a=o<0?0:r-1-o;return Math.max(0,a-i)}function $r(t,e){var n=Math.log,i=Math.LN10,r=Math.floor(n(t[1]-t[0])/i),o=Math.round(n(Math.abs(e[1]-e[0]))/i),a=Math.min(Math.max(-r+o,0),20);return isFinite(a)?a:20}function Jr(t,e){var n=V(t,(function(t,e){return t+(isNaN(e)?0:e)}),0);if(0===n)return[];for(var i=Math.pow(10,e),r=z(t,(function(t){return(isNaN(t)?0:t)/n*i*100})),o=100*i,a=z(r,(function(t){return Math.floor(t)})),s=V(a,(function(t,e){return t+e}),0),l=z(r,(function(t,e){return t-a[e]}));su&&(u=l[c],h=c);++a[h],l[h]=0,++s}return z(a,(function(t){return t/i}))}function Qr(t,e){var n=Math.max(qr(t),qr(e)),i=t+e;return n>20?i:Zr(i,n)}var to=9007199254740991;function eo(t){var e=2*Math.PI;return(t%e+e)%e}function no(t){return t>-1e-4&&t=10&&e++,e}function so(t,e){var n=ao(t),i=Math.pow(10,n),r=t/i;return t=(e?r<1.5?1:r<2.5?2:r<4?3:r<7?5:10:r<1?1:r<2?2:r<3?3:r<5?5:10)*i,n>=-20?+t.toFixed(n<0?-n:0):t}function lo(t,e){var n=(t.length-1)*e+1,i=Math.floor(n),r=+t[i-1],o=n-i;return o?r+o*(t[i]-r):r}function uo(t){t.sort((function(t,e){return s(t,e,0)?-1:1}));for(var e=-1/0,n=1,i=0;i=0||r&&P(r,s)<0)){var l=n.getShallow(s,e);null!=l&&(o[t[a][0]]=l)}}return o}}var Qo=Jo([["fill","color"],["shadowBlur"],["shadowOffsetX"],["shadowOffsetY"],["opacity"],["shadowColor"]]),ta=function(){function t(){}return t.prototype.getAreaStyle=function(t,e){return Qo(this,t,e)},t}(),ea=new En(50);function na(t){if("string"==typeof t){var e=ea.get(t);return e&&e.image}return t}function ia(t,e,n,i,r){if(t){if("string"==typeof t){if(e&&e.__zrImageSrc===t||!n)return e;var o=ea.get(t),a={hostEl:n,cb:i,cbPayload:r};return o?!oa(e=o.image)&&o.pending.push(a):((e=h.loadImage(t,ra,ra)).__zrImageSrc=t,ea.put(t,e.__cachedImgObj={image:e,pending:[a]})),e}return t}return e}function ra(){var t=this.__cachedImgObj;this.onload=this.onerror=this.__cachedImgObj=null;for(var e=0;e=a;l++)s-=a;var u=xr(n,e);return u>s&&(n="",u=0),s=t-u,r.ellipsis=n,r.ellipsisWidth=u,r.contentWidth=s,r.containerWidth=t,r}function ua(t,e){var n=e.containerWidth,i=e.font,r=e.contentWidth;if(!n)return"";var o=xr(t,i);if(o<=n)return t;for(var a=0;;a++){if(o<=r||a>=e.maxIterations){t+=e.ellipsis;break}var s=0===a?ha(t,r,e.ascCharWidth,e.cnCharWidth):o>0?Math.floor(t.length*r/o):0;o=xr(t=t.substr(0,s),i)}return""===t&&(t=e.placeholder),t}function ha(t,e,n,i){for(var r=0,o=0,a=t.length;o0&&f+i.accumWidth>i.width&&(o=e.split("\n"),c=!0),i.accumWidth=f}else{var g=va(e,h,i.width,i.breakAll,i.accumWidth);i.accumWidth=g.accumWidth+d,a=g.linesWidths,o=g.lines}}else o=e.split("\n");for(var y=0;y=32&&e<=591||e>=880&&e<=4351||e>=4608&&e<=5119||e>=7680&&e<=8303}(t)||!!ga[t]}function va(t,e,n,i,r){for(var o=[],a=[],s="",l="",u=0,h=0,c=0;cn:r+h+d>n)?h?(s||l)&&(f?(s||(s=l,l="",h=u=0),o.push(s),a.push(h-u),l+=p,s="",h=u+=d):(l&&(s+=l,l="",u=0),o.push(s),a.push(h),s=p,h=d)):f?(o.push(l),a.push(u),l=p,u=d):(o.push(p),a.push(d)):(h+=d,f?(l+=p,u+=d):(l&&(s+=l,l="",u=0),s+=p))}else l&&(s+=l,h+=u),o.push(s),a.push(h),s="",l="",u=0,h=0}return o.length||s||(s=t,l="",u=0),l&&(s+=l),s&&(o.push(s),a.push(h)),1===o.length&&(h+=r),{accumWidth:h,lines:o,linesWidths:a}}var ma="__zr_style_"+Math.round(10*Math.random()),xa={shadowBlur:0,shadowOffsetX:0,shadowOffsetY:0,shadowColor:"#000",opacity:1,blend:"source-over"},_a={style:{shadowBlur:!0,shadowOffsetX:!0,shadowOffsetY:!0,shadowColor:!0,opacity:!0}};xa[ma]=!0;var ba=["z","z2","invisible"],wa=["invisible"],Sa=function(t){function e(e){return t.call(this,e)||this}var i;return n(e,t),e.prototype._init=function(e){for(var n=G(e),i=0;i1e-4)return s[0]=t-n,s[1]=e-i,l[0]=t+n,void(l[1]=e+i);if(La[0]=Aa(r)*n+t,La[1]=Da(r)*i+e,Pa[0]=Aa(o)*n+t,Pa[1]=Da(o)*i+e,u(s,La,Pa),h(l,La,Pa),(r%=ka)<0&&(r+=ka),(o%=ka)<0&&(o+=ka),r>o&&!a?o+=ka:rr&&(Oa[0]=Aa(d)*n+t,Oa[1]=Da(d)*i+e,u(s,Oa,s),h(l,Oa,l))}var Ga={M:1,L:2,C:3,Q:4,A:5,Z:6,R:7},Wa=[],Ha=[],Ya=[],Xa=[],Ua=[],Za=[],ja=Math.min,qa=Math.max,Ka=Math.cos,$a=Math.sin,Ja=Math.abs,Qa=Math.PI,ts=2*Qa,es="undefined"!=typeof Float32Array,ns=[];function is(t){return Math.round(t/Qa*1e8)/1e8%2*Qa}function rs(t,e){var n=is(t[0]);n<0&&(n+=ts);var i=n-t[0],r=t[1];r+=i,!e&&r-n>=ts?r=n+ts:e&&n-r>=ts?r=n-ts:!e&&n>r?r=n+(ts-is(n-r)):e&&n0&&(this._ux=Ja(n/or/t)||0,this._uy=Ja(n/or/e)||0)},t.prototype.setDPR=function(t){this.dpr=t},t.prototype.setContext=function(t){this._ctx=t},t.prototype.getContext=function(){return this._ctx},t.prototype.beginPath=function(){return this._ctx&&this._ctx.beginPath(),this.reset(),this},t.prototype.reset=function(){this._saveData&&(this._len=0),this._pathSegLen&&(this._pathSegLen=null,this._pathLen=0),this._version++},t.prototype.moveTo=function(t,e){return this._drawPendingPt(),this.addData(Ga.M,t,e),this._ctx&&this._ctx.moveTo(t,e),this._x0=t,this._y0=e,this._xi=t,this._yi=e,this},t.prototype.lineTo=function(t,e){var n=Ja(t-this._xi),i=Ja(e-this._yi),r=n>this._ux||i>this._uy;if(this.addData(Ga.L,t,e),this._ctx&&r&&this._ctx.lineTo(t,e),r)this._xi=t,this._yi=e,this._pendingPtDist=0;else{var o=n*n+i*i;o>this._pendingPtDist&&(this._pendingPtX=t,this._pendingPtY=e,this._pendingPtDist=o)}return this},t.prototype.bezierCurveTo=function(t,e,n,i,r,o){return this._drawPendingPt(),this.addData(Ga.C,t,e,n,i,r,o),this._ctx&&this._ctx.bezierCurveTo(t,e,n,i,r,o),this._xi=r,this._yi=o,this},t.prototype.quadraticCurveTo=function(t,e,n,i){return this._drawPendingPt(),this.addData(Ga.Q,t,e,n,i),this._ctx&&this._ctx.quadraticCurveTo(t,e,n,i),this._xi=n,this._yi=i,this},t.prototype.arc=function(t,e,n,i,r,o){this._drawPendingPt(),ns[0]=i,ns[1]=r,rs(ns,o),i=ns[0];var a=(r=ns[1])-i;return this.addData(Ga.A,t,e,n,n,i,a,0,o?0:1),this._ctx&&this._ctx.arc(t,e,n,i,r,o),this._xi=Ka(r)*n+t,this._yi=$a(r)*n+e,this},t.prototype.arcTo=function(t,e,n,i,r){return this._drawPendingPt(),this._ctx&&this._ctx.arcTo(t,e,n,i,r),this},t.prototype.rect=function(t,e,n,i){return this._drawPendingPt(),this._ctx&&this._ctx.rect(t,e,n,i),this.addData(Ga.R,t,e,n,i),this},t.prototype.closePath=function(){this._drawPendingPt(),this.addData(Ga.Z);var t=this._ctx,e=this._x0,n=this._y0;return t&&t.closePath(),this._xi=e,this._yi=n,this},t.prototype.fill=function(t){t&&t.fill(),this.toStatic()},t.prototype.stroke=function(t){t&&t.stroke(),this.toStatic()},t.prototype.len=function(){return this._len},t.prototype.setData=function(t){var e=t.length;this.data&&this.data.length===e||!es||(this.data=new Float32Array(e));for(var n=0;nu.length&&(this._expandData(),u=this.data);for(var h=0;h0&&(this._ctx&&this._ctx.lineTo(this._pendingPtX,this._pendingPtY),this._pendingPtDist=0)},t.prototype._expandData=function(){if(!(this.data instanceof Array)){for(var t=[],e=0;e11&&(this.data=new Float32Array(t)))}},t.prototype.getBoundingRect=function(){Ya[0]=Ya[1]=Ua[0]=Ua[1]=Number.MAX_VALUE,Xa[0]=Xa[1]=Za[0]=Za[1]=-Number.MAX_VALUE;var t,e=this.data,n=0,i=0,r=0,o=0;for(t=0;tn||Ja(y)>i||c===e-1)&&(f=Math.sqrt(A*A+y*y),r=g,o=x);break;case Ga.C:var v=t[c++],m=t[c++],x=(g=t[c++],t[c++]),_=t[c++],b=t[c++];f=Mn(r,o,v,m,g,x,_,b,10),r=_,o=b;break;case Ga.Q:f=kn(r,o,v=t[c++],m=t[c++],g=t[c++],x=t[c++],10),r=g,o=x;break;case Ga.A:var w=t[c++],S=t[c++],M=t[c++],I=t[c++],T=t[c++],C=t[c++],D=C+T;c+=1;t[c++];d&&(a=Ka(T)*M+w,s=$a(T)*I+S),f=qa(M,I)*ja(ts,Math.abs(C)),r=Ka(D)*M+w,o=$a(D)*I+S;break;case Ga.R:a=r=t[c++],s=o=t[c++],f=2*t[c++]+2*t[c++];break;case Ga.Z:var A=a-r;y=s-o;f=Math.sqrt(A*A+y*y),r=a,o=s}f>=0&&(l[h++]=f,u+=f)}return this._pathLen=u,u},t.prototype.rebuildPath=function(t,e){var n,i,r,o,a,s,l,u,h,c,p=this.data,d=this._ux,f=this._uy,g=this._len,y=e<1,v=0,m=0,x=0;if(!y||(this._pathSegLen||this._calculateLength(),l=this._pathSegLen,u=e*this._pathLen))t:for(var _=0;_0&&(t.lineTo(h,c),x=0),b){case Ga.M:n=r=p[_++],i=o=p[_++],t.moveTo(r,o);break;case Ga.L:a=p[_++],s=p[_++];var S=Ja(a-r),M=Ja(s-o);if(S>d||M>f){if(y){if(v+(j=l[m++])>u){var I=(u-v)/j;t.lineTo(r*(1-I)+a*I,o*(1-I)+s*I);break t}v+=j}t.lineTo(a,s),r=a,o=s,x=0}else{var T=S*S+M*M;T>x&&(h=a,c=s,x=T)}break;case Ga.C:var C=p[_++],D=p[_++],A=p[_++],k=p[_++],L=p[_++],P=p[_++];if(y){if(v+(j=l[m++])>u){wn(r,C,A,L,I=(u-v)/j,Wa),wn(o,D,k,P,I,Ha),t.bezierCurveTo(Wa[1],Ha[1],Wa[2],Ha[2],Wa[3],Ha[3]);break t}v+=j}t.bezierCurveTo(C,D,A,k,L,P),r=L,o=P;break;case Ga.Q:C=p[_++],D=p[_++],A=p[_++],k=p[_++];if(y){if(v+(j=l[m++])>u){Dn(r,C,A,I=(u-v)/j,Wa),Dn(o,D,k,I,Ha),t.quadraticCurveTo(Wa[1],Ha[1],Wa[2],Ha[2]);break t}v+=j}t.quadraticCurveTo(C,D,A,k),r=A,o=k;break;case Ga.A:var O=p[_++],R=p[_++],N=p[_++],E=p[_++],z=p[_++],V=p[_++],B=p[_++],F=!p[_++],G=N>E?N:E,W=Ja(N-E)>.001,H=z+V,Y=!1;if(y)v+(j=l[m++])>u&&(H=z+V*(u-v)/j,Y=!0),v+=j;if(W&&t.ellipse?t.ellipse(O,R,N,E,B,z,H,F):t.arc(O,R,G,z,H,F),Y)break t;w&&(n=Ka(z)*N+O,i=$a(z)*E+R),r=Ka(H)*N+O,o=$a(H)*E+R;break;case Ga.R:n=r=p[_],i=o=p[_+1],a=p[_++],s=p[_++];var X=p[_++],U=p[_++];if(y){if(v+(j=l[m++])>u){var Z=u-v;t.moveTo(a,s),t.lineTo(a+ja(Z,X),s),(Z-=X)>0&&t.lineTo(a+X,s+ja(Z,U)),(Z-=U)>0&&t.lineTo(a+qa(X-Z,0),s+U),(Z-=X)>0&&t.lineTo(a,s+qa(U-Z,0));break t}v+=j}t.rect(a,s,X,U);break;case Ga.Z:if(y){var j;if(v+(j=l[m++])>u){I=(u-v)/j;t.lineTo(r*(1-I)+n*I,o*(1-I)+i*I);break t}v+=j}t.closePath(),r=n,o=i}}},t.prototype.clone=function(){var e=new t,n=this.data;return e.data=n.slice?n.slice():Array.prototype.slice.call(n),e._len=this._len,e},t.CMD=Ga,t.initDefaultProps=function(){var e=t.prototype;e._saveData=!0,e._ux=0,e._uy=0,e._pendingPtDist=0,e._version=0}(),t}();function as(t,e,n,i,r,o,a){if(0===r)return!1;var s=r,l=0;if(a>e+s&&a>i+s||at+s&&o>n+s||oe+c&&h>i+c&&h>o+c&&h>s+c||ht+c&&u>n+c&&u>r+c&&u>a+c||ue+u&&l>i+u&&l>o+u||lt+u&&s>n+u&&s>r+u||sn||h+ur&&(r+=cs);var p=Math.atan2(l,s);return p<0&&(p+=cs),p>=i&&p<=r||p+cs>=i&&p+cs<=r}function ds(t,e,n,i,r,o){if(o>e&&o>i||or?s:0}var fs=os.CMD,gs=2*Math.PI;var ys=[-1,-1,-1],vs=[-1,-1];function ms(t,e,n,i,r,o,a,s,l,u){if(u>e&&u>i&&u>o&&u>s||u1&&(h=void 0,h=vs[0],vs[0]=vs[1],vs[1]=h),f=mn(e,i,o,s,vs[0]),d>1&&(g=mn(e,i,o,s,vs[1]))),2===d?ve&&s>i&&s>o||s=0&&h<=1&&(r[l++]=h);else{var u=a*a-4*o*s;if(yn(u))(h=-a/(2*o))>=0&&h<=1&&(r[l++]=h);else if(u>0){var h,c=ln(u),p=(-a-c)/(2*o);(h=(-a+c)/(2*o))>=0&&h<=1&&(r[l++]=h),p>=0&&p<=1&&(r[l++]=p)}}return l}(e,i,o,s,ys);if(0===l)return 0;var u=Cn(e,i,o);if(u>=0&&u<=1){for(var h=0,c=In(e,i,o,u),p=0;pn||s<-n)return 0;var l=Math.sqrt(n*n-s*s);ys[0]=-l,ys[1]=l;var u=Math.abs(i-r);if(u<1e-4)return 0;if(u>=gs-1e-4){i=0,r=gs;var h=o?1:-1;return a>=ys[0]+t&&a<=ys[1]+t?h:0}if(i>r){var c=i;i=r,r=c}i<0&&(i+=gs,r+=gs);for(var p=0,d=0;d<2;d++){var f=ys[d];if(f+t>a){var g=Math.atan2(s,f);h=o?1:-1;g<0&&(g=gs+g),(g>=i&&g<=r||g+gs>=i&&g+gs<=r)&&(g>Math.PI/2&&g<1.5*Math.PI&&(h=-h),p+=h)}}return p}function bs(t,e,n,i,r){for(var o,a,s,l,u=t.data,h=t.len(),c=0,p=0,d=0,f=0,g=0,y=0;y1&&(n||(c+=ds(p,d,f,g,i,r))),m&&(f=p=u[y],g=d=u[y+1]),v){case fs.M:p=f=u[y++],d=g=u[y++];break;case fs.L:if(n){if(as(p,d,u[y],u[y+1],e,i,r))return!0}else c+=ds(p,d,u[y],u[y+1],i,r)||0;p=u[y++],d=u[y++];break;case fs.C:if(n){if(ss(p,d,u[y++],u[y++],u[y++],u[y++],u[y],u[y+1],e,i,r))return!0}else c+=ms(p,d,u[y++],u[y++],u[y++],u[y++],u[y],u[y+1],i,r)||0;p=u[y++],d=u[y++];break;case fs.Q:if(n){if(ls(p,d,u[y++],u[y++],u[y],u[y+1],e,i,r))return!0}else c+=xs(p,d,u[y++],u[y++],u[y],u[y+1],i,r)||0;p=u[y++],d=u[y++];break;case fs.A:var x=u[y++],_=u[y++],b=u[y++],w=u[y++],S=u[y++],M=u[y++];y+=1;var I=!!(1-u[y++]);o=Math.cos(S)*b+x,a=Math.sin(S)*w+_,m?(f=o,g=a):c+=ds(p,d,o,a,i,r);var T=(i-x)*w/b+x;if(n){if(ps(x,_,w,S,S+M,I,e,T,r))return!0}else c+=_s(x,_,w,S,S+M,I,T,r);p=Math.cos(S+M)*b+x,d=Math.sin(S+M)*w+_;break;case fs.R:if(f=p=u[y++],g=d=u[y++],o=f+u[y++],a=g+u[y++],n){if(as(f,g,o,g,e,i,r)||as(o,g,o,a,e,i,r)||as(o,a,f,a,e,i,r)||as(f,a,f,g,e,i,r))return!0}else c+=ds(o,g,o,a,i,r),c+=ds(f,a,f,g,i,r);break;case fs.Z:if(n){if(as(p,d,f,g,e,i,r))return!0}else c+=ds(p,d,f,g,i,r);p=f,d=g}}return n||(s=d,l=g,Math.abs(s-l)<1e-4)||(c+=ds(p,d,f,g,i,r)||0),0!==c}var ws=k({fill:"#000",stroke:null,strokePercent:1,fillOpacity:1,strokeOpacity:1,lineDashOffset:0,lineWidth:1,lineCap:"butt",miterLimit:10,strokeNoScale:!1,strokeFirst:!1},xa),Ss={style:k({fill:!0,stroke:!0,strokePercent:!0,fillOpacity:!0,strokeOpacity:!0,lineDashOffset:!0,lineWidth:!0,miterLimit:!0},_a.style)},Ms=yr.concat(["invisible","culling","z","z2","zlevel","parent"]),Is=function(t){function e(e){return t.call(this,e)||this}var i;return n(e,t),e.prototype.update=function(){var n=this;t.prototype.update.call(this);var i=this.style;if(i.decal){var r=this._decalEl=this._decalEl||new e;r.buildPath===e.prototype.buildPath&&(r.buildPath=function(t){n.buildPath(t,n.shape)}),r.silent=!0;var o=r.style;for(var a in i)o[a]!==i[a]&&(o[a]=i[a]);o.fill=i.fill?i.decal:null,o.decal=null,o.shadowColor=null,i.strokeFirst&&(o.stroke=null);for(var s=0;s.5?ar:e>.2?"#eee":sr}if(t)return sr}return ar},e.prototype.getInsideTextStroke=function(t){var e=this.style.fill;if(U(e)){var n=this.__zr;if(!(!n||!n.isDarkMode())===oi(t,0)<.4)return e}},e.prototype.buildPath=function(t,e,n){},e.prototype.pathUpdated=function(){this.__dirty&=-5},e.prototype.getUpdatedPathProxy=function(t){return!this.path&&this.createPathProxy(),this.path.beginPath(),this.buildPath(this.path,this.shape,t),this.path},e.prototype.createPathProxy=function(){this.path=new os(!1)},e.prototype.hasStroke=function(){var t=this.style,e=t.stroke;return!(null==e||"none"===e||!(t.lineWidth>0))},e.prototype.hasFill=function(){var t=this.style.fill;return null!=t&&"none"!==t},e.prototype.getBoundingRect=function(){var t=this._rect,e=this.style,n=!t;if(n){var i=!1;this.path||(i=!0,this.createPathProxy());var r=this.path;(i||4&this.__dirty)&&(r.beginPath(),this.buildPath(r,this.shape,!1),this.pathUpdated()),t=r.getBoundingRect()}if(this._rect=t,this.hasStroke()&&this.path&&this.path.len()>0){var o=this._rectStroke||(this._rectStroke=t.clone());if(this.__dirty||n){o.copy(t);var a=e.strokeNoScale?this.getLineScale():1,s=e.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 t},e.prototype.contain=function(t,e){var n=this.transformCoordToLocal(t,e),i=this.getBoundingRect(),r=this.style;if(t=n[0],e=n[1],i.contain(t,e)){var o=this.path;if(this.hasStroke()){var a=r.lineWidth,s=r.strokeNoScale?this.getLineScale():1;if(s>1e-10&&(this.hasFill()||(a=Math.max(a,this.strokeContainThreshold)),function(t,e,n,i){return bs(t,e,!0,n,i)}(o,a/s,t,e)))return!0}if(this.hasFill())return function(t,e,n){return bs(t,0,!1,e,n)}(o,t,e)}return!1},e.prototype.dirtyShape=function(){this.__dirty|=4,this._rect&&(this._rect=null),this._decalEl&&this._decalEl.dirtyShape(),this.markRedraw()},e.prototype.dirty=function(){this.dirtyStyle(),this.dirtyShape()},e.prototype.animateShape=function(t){return this.animate("shape",t)},e.prototype.updateDuringAnimation=function(t){"style"===t?this.dirtyStyle():"shape"===t?this.dirtyShape():this.markRedraw()},e.prototype.attrKV=function(e,n){"shape"===e?this.setShape(n):t.prototype.attrKV.call(this,e,n)},e.prototype.setShape=function(t,e){var n=this.shape;return n||(n=this.shape={}),"string"==typeof t?n[t]=e:A(n,t),this.dirtyShape(),this},e.prototype.shapeChanged=function(){return!!(4&this.__dirty)},e.prototype.createStyle=function(t){return mt(ws,t)},e.prototype._innerSaveToNormal=function(e){t.prototype._innerSaveToNormal.call(this,e);var n=this._normalState;e.shape&&!n.shape&&(n.shape=A({},this.shape))},e.prototype._applyStateObj=function(e,n,i,r,o,a){t.prototype._applyStateObj.call(this,e,n,i,r,o,a);var s,l=!(n&&r);if(n&&n.shape?o?r?s=n.shape:(s=A({},i.shape),A(s,n.shape)):(s=A({},r?this.shape:i.shape),A(s,n.shape)):l&&(s=i.shape),s)if(o){this.shape=A({},this.shape);for(var u={},h=G(s),c=0;c0},e.prototype.hasFill=function(){var t=this.style.fill;return null!=t&&"none"!==t},e.prototype.createStyle=function(t){return mt(Ts,t)},e.prototype.setBoundingRect=function(t){this._rect=t},e.prototype.getBoundingRect=function(){var t=this.style;if(!this._rect){var e=t.text;null!=e?e+="":e="";var n=br(e,t.font,t.textAlign,t.textBaseline);if(n.x+=t.x||0,n.y+=t.y||0,this.hasStroke()){var i=t.lineWidth;n.x-=i/2,n.y-=i/2,n.width+=i,n.height+=i}this._rect=n}return this._rect},e.initDefaultProps=void(e.prototype.dirtyRectTolerance=10),e}(Sa);Cs.prototype.type="tspan";var Ds=k({x:0,y:0},xa),As={style:k({x:!0,y:!0,width:!0,height:!0,sx:!0,sy:!0,sWidth:!0,sHeight:!0},_a.style)};var ks=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return n(e,t),e.prototype.createStyle=function(t){return mt(Ds,t)},e.prototype._getSize=function(t){var e=this.style,n=e[t];if(null!=n)return n;var i,r=(i=e.image)&&"string"!=typeof i&&i.width&&i.height?e.image:this.__image;if(!r)return 0;var o="width"===t?"height":"width",a=e[o];return null==a?r[t]:r[t]/r[o]*a},e.prototype.getWidth=function(){return this._getSize("width")},e.prototype.getHeight=function(){return this._getSize("height")},e.prototype.getAnimationStyleProps=function(){return As},e.prototype.getBoundingRect=function(){var t=this.style;return this._rect||(this._rect=new ze(t.x||0,t.y||0,this.getWidth(),this.getHeight())),this._rect},e}(Sa);ks.prototype.type="image";var Ls=Math.round;function Ps(t,e,n){if(e){var i=e.x1,r=e.x2,o=e.y1,a=e.y2;t.x1=i,t.x2=r,t.y1=o,t.y2=a;var s=n&&n.lineWidth;return s?(Ls(2*i)===Ls(2*r)&&(t.x1=t.x2=Rs(i,s,!0)),Ls(2*o)===Ls(2*a)&&(t.y1=t.y2=Rs(o,s,!0)),t):t}}function Os(t,e,n){if(e){var i=e.x,r=e.y,o=e.width,a=e.height;t.x=i,t.y=r,t.width=o,t.height=a;var s=n&&n.lineWidth;return s?(t.x=Rs(i,s,!0),t.y=Rs(r,s,!0),t.width=Math.max(Rs(i+o,s,!1)-t.x,0===o?0:1),t.height=Math.max(Rs(r+a,s,!1)-t.y,0===a?0:1),t):t}}function Rs(t,e,n){if(!e)return t;var i=Ls(2*t);return(i+Ls(e))%2==0?i/2:(i+(n?1:-1))/2}var Ns=function(){this.x=0,this.y=0,this.width=0,this.height=0},Es={},zs=function(t){function e(e){return t.call(this,e)||this}return n(e,t),e.prototype.getDefaultShape=function(){return new Ns},e.prototype.buildPath=function(t,e){var n,i,r,o;if(this.subPixelOptimize){var a=Os(Es,e,this.style);n=a.x,i=a.y,r=a.width,o=a.height,a.r=e.r,e=a}else n=e.x,i=e.y,r=e.width,o=e.height;e.r?function(t,e){var n,i,r,o,a,s=e.x,l=e.y,u=e.width,h=e.height,c=e.r;u<0&&(s+=u,u=-u),h<0&&(l+=h,h=-h),"number"==typeof c?n=i=r=o=c:c instanceof Array?1===c.length?n=i=r=o=c[0]:2===c.length?(n=r=c[0],i=o=c[1]):3===c.length?(n=c[0],i=o=c[1],r=c[2]):(n=c[0],i=c[1],r=c[2],o=c[3]):n=i=r=o=0,n+i>u&&(n*=u/(a=n+i),i*=u/a),r+o>u&&(r*=u/(a=r+o),o*=u/a),i+r>h&&(i*=h/(a=i+r),r*=h/a),n+o>h&&(n*=h/(a=n+o),o*=h/a),t.moveTo(s+n,l),t.lineTo(s+u-i,l),0!==i&&t.arc(s+u-i,l+i,i,-Math.PI/2,0),t.lineTo(s+u,l+h-r),0!==r&&t.arc(s+u-r,l+h-r,r,0,Math.PI/2),t.lineTo(s+o,l+h),0!==o&&t.arc(s+o,l+h-o,o,Math.PI/2,Math.PI),t.lineTo(s,l+n),0!==n&&t.arc(s+n,l+n,n,Math.PI,1.5*Math.PI)}(t,e):t.rect(n,i,r,o)},e.prototype.isZeroArea=function(){return!this.shape.width||!this.shape.height},e}(Is);zs.prototype.type="rect";var Vs={fill:"#000"},Bs={style:k({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},_a.style)},Fs=function(t){function e(e){var n=t.call(this)||this;return n.type="text",n._children=[],n._defaultStyle=Vs,n.attr(e),n}return n(e,t),e.prototype.childrenRef=function(){return this._children},e.prototype.update=function(){t.prototype.update.call(this),this.styleChanged()&&this._updateSubTexts();for(var e=0;ed&&h){var f=Math.floor(d/l);n=n.slice(0,f)}if(t&&a&&null!=c)for(var g=la(c,o,e.ellipsis,{minChar:e.truncateMinChar,placeholder:e.placeholder}),y=0;y0,T=null!=t.width&&("truncate"===t.overflow||"break"===t.overflow||"breakAll"===t.overflow),C=i.calculatedLineHeight,D=0;Dl&&fa(n,t.substring(l,u),e,s),fa(n,i[2],e,s,i[1]),l=aa.lastIndex}lo){b>0?(m.tokens=m.tokens.slice(0,b),y(m,_,x),n.lines=n.lines.slice(0,v+1)):n.lines=n.lines.slice(0,v);break t}var C=w.width,D=null==C||"auto"===C;if("string"==typeof C&&"%"===C.charAt(C.length-1))P.percentWidth=C,h.push(P),P.contentWidth=xr(P.text,I);else{if(D){var A=w.backgroundColor,k=A&&A.image;k&&oa(k=na(k))&&(P.width=Math.max(P.width,k.width*T/k.height))}var L=f&&null!=r?r-_:null;null!=L&&L=0&&"right"===(C=x[T]).align;)this._placeToken(C,t,b,f,I,"right",y),w-=C.width,I-=C.width,T--;for(M+=(n-(M-d)-(g-I)-w)/2;S<=T;)C=x[S],this._placeToken(C,t,b,f,M+C.width/2,"center",y),M+=C.width,S++;f+=b}},e.prototype._placeToken=function(t,e,n,i,r,o,s){var l=e.rich[t.styleName]||{};l.text=t.text;var u=t.verticalAlign,h=i+n/2;"top"===u?h=i+t.height/2:"bottom"===u&&(h=i+n-t.height/2),!t.isLineHolder&&Js(l)&&this._renderBackground(l,e,"right"===o?r-t.width:"center"===o?r-t.width/2:r,h-t.height/2,t.width,t.height);var c=!!l.backgroundColor,p=t.textPadding;p&&(r=Ks(r,o,p),h-=t.height/2-p[0]-t.innerHeight/2);var d=this._getOrCreateChild(Cs),f=d.createStyle();d.useStyle(f);var g=this._defaultStyle,y=!1,v=0,m=qs("fill"in l?l.fill:"fill"in e?e.fill:(y=!0,g.fill)),x=js("stroke"in l?l.stroke:"stroke"in e?e.stroke:c||s||g.autoStroke&&!y?null:(v=2,g.stroke)),_=l.textShadowBlur>0||e.textShadowBlur>0;f.text=t.text,f.x=r,f.y=h,_&&(f.shadowBlur=l.textShadowBlur||e.textShadowBlur||0,f.shadowColor=l.textShadowColor||e.textShadowColor||"transparent",f.shadowOffsetX=l.textShadowOffsetX||e.textShadowOffsetX||0,f.shadowOffsetY=l.textShadowOffsetY||e.textShadowOffsetY||0),f.textAlign=o,f.textBaseline="middle",f.font=t.font||a,f.opacity=ot(l.opacity,e.opacity,1),Xs(f,l),x&&(f.lineWidth=ot(l.lineWidth,e.lineWidth,v),f.lineDash=rt(l.lineDash,e.lineDash),f.lineDashOffset=e.lineDashOffset||0,f.stroke=x),m&&(f.fill=m);var b=t.contentWidth,w=t.contentHeight;d.setBoundingRect(new ze(wr(f.x,b,f.textAlign),Sr(f.y,w,f.textBaseline),b,w))},e.prototype._renderBackground=function(t,e,n,i,r,o){var a,s,l,u=t.backgroundColor,h=t.borderWidth,c=t.borderColor,p=u&&u.image,d=u&&!p,f=t.borderRadius,g=this;if(d||t.lineHeight||h&&c){(a=this._getOrCreateChild(zs)).useStyle(a.createStyle()),a.style.fill=null;var y=a.shape;y.x=n,y.y=i,y.width=r,y.height=o,y.r=f,a.dirtyShape()}if(d)(l=a.style).fill=u||null,l.fillOpacity=rt(t.fillOpacity,1);else if(p){(s=this._getOrCreateChild(ks)).onload=function(){g.dirtyStyle()};var v=s.style;v.image=u.image,v.x=n,v.y=i,v.width=r,v.height=o}h&&c&&((l=a.style).lineWidth=h,l.stroke=c,l.strokeOpacity=rt(t.strokeOpacity,1),l.lineDash=t.borderDash,l.lineDashOffset=t.borderDashOffset||0,a.strokeContainThreshold=0,a.hasFill()&&a.hasStroke()&&(l.strokeFirst=!0,l.lineWidth*=2));var m=(a||s).style;m.shadowBlur=t.shadowBlur||0,m.shadowColor=t.shadowColor||"transparent",m.shadowOffsetX=t.shadowOffsetX||0,m.shadowOffsetY=t.shadowOffsetY||0,m.opacity=ot(t.opacity,e.opacity,1)},e.makeFont=function(t){var e="";return Us(t)&&(e=[t.fontStyle,t.fontWeight,Ys(t.fontSize),t.fontFamily||"sans-serif"].join(" ")),e&&ut(e)||t.textFont||t.font},e}(Sa),Gs={left:!0,right:1,center:1},Ws={top:1,bottom:1,middle:1},Hs=["fontStyle","fontWeight","fontSize","fontFamily"];function Ys(t){return"string"!=typeof t||-1===t.indexOf("px")&&-1===t.indexOf("rem")&&-1===t.indexOf("em")?isNaN(+t)?"12px":t+"px":t}function Xs(t,e){for(var n=0;n=0,o=!1;if(t instanceof Is){var a=il(t),s=r&&a.selectFill||a.normalFill,l=r&&a.selectStroke||a.normalStroke;if(dl(s)||dl(l)){var u=(i=i||{}).style||{};"inherit"===u.fill?(o=!0,i=A({},i),(u=A({},u)).fill=s):!dl(u.fill)&&dl(s)?(o=!0,i=A({},i),(u=A({},u)).fill=gl(s)):!dl(u.stroke)&&dl(l)&&(o||(i=A({},i),u=A({},u)),u.stroke=gl(l)),i.style=u}}if(i&&null==i.z2){o||(i=A({},i));var h=t.z2EmphasisLift;i.z2=t.z2+(null!=h?h:sl)}return i}(this,0,e,n);if("blur"===t)return function(t,e,n){var i=P(t.currentStates,e)>=0,r=t.style.opacity,o=i?null:function(t,e,n,i){for(var r=t.style,o={},a=0;a0){var o={dataIndex:r,seriesIndex:t.seriesIndex};null!=i&&(o.dataType=i),e.push(o)}}))})),e}function Hl(t,e,n){ql(t,!0),Ml(t,Cl),Xl(t,e,n)}function Yl(t,e,n,i){i?function(t){ql(t,!1)}(t):Hl(t,e,n)}function Xl(t,e,n){var i=Qs(t);null!=e?(i.focus=e,i.blurScope=n):i.focus&&(i.focus=null)}var Ul=["emphasis","blur","select"],Zl={itemStyle:"getItemStyle",lineStyle:"getLineStyle",areaStyle:"getAreaStyle"};function jl(t,e,n,i){n=n||"itemStyle";for(var r=0;r1&&(a*=ru(f),s*=ru(f));var g=(r===o?-1:1)*ru((a*a*(s*s)-a*a*(d*d)-s*s*(p*p))/(a*a*(d*d)+s*s*(p*p)))||0,y=g*a*d/s,v=g*-s*p/a,m=(t+n)/2+au(c)*y-ou(c)*v,x=(e+i)/2+ou(c)*y+au(c)*v,_=hu([1,0],[(p-y)/a,(d-v)/s]),b=[(p-y)/a,(d-v)/s],w=[(-1*p-y)/a,(-1*d-v)/s],S=hu(b,w);if(uu(b,w)<=-1&&(S=su),uu(b,w)>=1&&(S=0),S<0){var M=Math.round(S/su*1e6)/1e6;S=2*su+M%2*su}h.addData(u,m,x,a,s,_,S,c,o)}var pu=/([mlvhzcqtsa])([^mlvhzcqtsa]*)/gi,du=/-?([0-9]*\.)?[0-9]+([eE]-?[0-9]+)?/g;var fu=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return n(e,t),e.prototype.applyTransform=function(t){},e}(Is);function gu(t){return null!=t.setData}function yu(t,e){var n=function(t){var e=new os;if(!t)return e;var n,i=0,r=0,o=i,a=r,s=os.CMD,l=t.match(pu);if(!l)return e;for(var u=0;uk*k+L*L&&(M=T,I=C),{cx:M,cy:I,x0:-h,y0:-c,x1:M*(r/b-1),y1:I*(r/b-1)}}function Nu(t,e){var n,i=Lu(e.r,0),r=Lu(e.r0||0,0),o=i>0;if(o||r>0){if(o||(i=r,r=0),r>i){var a=i;i=r,r=a}var s=e.startAngle,l=e.endAngle;if(!isNaN(s)&&!isNaN(l)){var u=e.cx,h=e.cy,c=!!e.clockwise,p=Au(l-s),d=p>Mu&&p%Mu;if(d>Ou&&(p=d),i>Ou)if(p>Mu-Ou)t.moveTo(u+i*Tu(s),h+i*Iu(s)),t.arc(u,h,i,s,l,!c),r>Ou&&(t.moveTo(u+r*Tu(l),h+r*Iu(l)),t.arc(u,h,r,l,s,c));else{var f=void 0,g=void 0,y=void 0,v=void 0,m=void 0,x=void 0,_=void 0,b=void 0,w=void 0,S=void 0,M=void 0,I=void 0,T=void 0,C=void 0,D=void 0,A=void 0,k=i*Tu(s),L=i*Iu(s),P=r*Tu(l),O=r*Iu(l),R=p>Ou;if(R){var N=e.cornerRadius;N&&(n=function(t){var e;if(Y(t)){var n=t.length;if(!n)return t;e=1===n?[t[0],t[0],0,0]:2===n?[t[0],t[0],t[1],t[1]]:3===n?t.concat(t[2]):t}else e=[t,t,t,t];return e}(N),f=n[0],g=n[1],y=n[2],v=n[3]);var E=Au(i-r)/2;if(m=Pu(E,y),x=Pu(E,v),_=Pu(E,f),b=Pu(E,g),M=w=Lu(m,x),I=S=Lu(_,b),(w>Ou||S>Ou)&&(T=i*Tu(l),C=i*Iu(l),D=r*Tu(s),A=r*Iu(s),pOu){var X=Pu(y,M),U=Pu(v,M),Z=Ru(D,A,k,L,i,X,c),j=Ru(T,C,P,O,i,U,c);t.moveTo(u+Z.cx+Z.x0,h+Z.cy+Z.y0),M0&&t.arc(u+Z.cx,h+Z.cy,X,Du(Z.y0,Z.x0),Du(Z.y1,Z.x1),!c),t.arc(u,h,i,Du(Z.cy+Z.y1,Z.cx+Z.x1),Du(j.cy+j.y1,j.cx+j.x1),!c),U>0&&t.arc(u+j.cx,h+j.cy,U,Du(j.y1,j.x1),Du(j.y0,j.x0),!c))}else t.moveTo(u+k,h+L),t.arc(u,h,i,s,l,!c);else t.moveTo(u+k,h+L);if(r>Ou&&R)if(I>Ou){X=Pu(f,I),Z=Ru(P,O,T,C,r,-(U=Pu(g,I)),c),j=Ru(k,L,D,A,r,-X,c);t.lineTo(u+Z.cx+Z.x0,h+Z.cy+Z.y0),I0&&t.arc(u+Z.cx,h+Z.cy,U,Du(Z.y0,Z.x0),Du(Z.y1,Z.x1),!c),t.arc(u,h,r,Du(Z.cy+Z.y1,Z.cx+Z.x1),Du(j.cy+j.y1,j.cx+j.x1),c),X>0&&t.arc(u+j.cx,h+j.cy,X,Du(j.y1,j.x1),Du(j.y0,j.x0),!c))}else t.lineTo(u+P,h+O),t.arc(u,h,r,l,s,c);else t.lineTo(u+P,h+O)}else t.moveTo(u,h);t.closePath()}}}var Eu=function(){this.cx=0,this.cy=0,this.r0=0,this.r=0,this.startAngle=0,this.endAngle=2*Math.PI,this.clockwise=!0,this.cornerRadius=0},zu=function(t){function e(e){return t.call(this,e)||this}return n(e,t),e.prototype.getDefaultShape=function(){return new Eu},e.prototype.buildPath=function(t,e){Nu(t,e)},e.prototype.isZeroArea=function(){return this.shape.startAngle===this.shape.endAngle||this.shape.r===this.shape.r0},e}(Is);zu.prototype.type="sector";var Vu=function(){this.cx=0,this.cy=0,this.r=0,this.r0=0},Bu=function(t){function e(e){return t.call(this,e)||this}return n(e,t),e.prototype.getDefaultShape=function(){return new Vu},e.prototype.buildPath=function(t,e){var n=e.cx,i=e.cy,r=2*Math.PI;t.moveTo(n+e.r,i),t.arc(n,i,e.r,0,r,!1),t.moveTo(n+e.r0,i),t.arc(n,i,e.r0,0,r,!0)},e}(Is);function Fu(t,e,n){var i=e.smooth,r=e.points;if(r&&r.length>=2){if(i){var o=function(t,e,n,i){var r,o,a,s,l=[],u=[],h=[],c=[];if(i){a=[1/0,1/0],s=[-1/0,-1/0];for(var p=0,d=t.length;poh[1]){if(a=!1,r)return a;var u=Math.abs(oh[0]-rh[1]),h=Math.abs(rh[0]-oh[1]);Math.min(u,h)>i.len()&&(u0){var c={duration:h.duration,delay:h.delay||0,easing:h.easing,done:o,force:!!o||!!a,setToFinal:!u,scope:t,during:a};l?e.animateFrom(n,c):e.animateTo(n,c)}else e.stopAnimation(),!l&&e.attr(n),a&&a(1),o&&o()}function fh(t,e,n,i,r,o){dh("update",t,e,n,i,r,o)}function gh(t,e,n,i,r,o){dh("enter",t,e,n,i,r,o)}function yh(t){if(!t.__zr)return!0;for(var e=0;eMath.abs(o[1])?o[0]>0?"right":"left":o[1]>0?"bottom":"top"}function Bh(t){return!t.isGroup}function Fh(t,e,n){if(t&&e){var i,r=(i={},t.traverse((function(t){Bh(t)&&t.anid&&(i[t.anid]=t)})),i);e.traverse((function(t){if(Bh(t)&&t.anid){var e=r[t.anid];if(e){var i=o(t);t.attr(o(e)),fh(t,i,n,Qs(t).dataIndex)}}}))}function o(t){var e={x:t.x,y:t.y,rotation:t.rotation};return function(t){return null!=t.shape}(t)&&(e.shape=A({},t.shape)),e}}function Gh(t,e){return z(t,(function(t){var n=t[0];n=bh(n,e.x),n=wh(n,e.x+e.width);var i=t[1];return i=bh(i,e.y),[n,i=wh(i,e.y+e.height)]}))}function Wh(t,e){var n=bh(t.x,e.x),i=wh(t.x+t.width,e.x+e.width),r=bh(t.y,e.y),o=wh(t.y+t.height,e.y+e.height);if(i>=n&&o>=r)return{x:n,y:r,width:i-n,height:o-r}}function Hh(t,e,n){var i=A({rectHover:!0},e),r=i.style={strokeNoScale:!0};if(n=n||{x:-1,y:-1,width:2,height:2},t)return 0===t.indexOf("image://")?(r.image=t.slice(8),k(r,n),new ks(i)):Ah(t.replace("path://",""),i,n,"center")}function Yh(t,e,n,i,r){for(var o=0,a=r[r.length-1];o=-1e-6)return!1;var f=t-r,g=e-o,y=Uh(f,g,u,h)/d;if(y<0||y>1)return!1;var v=Uh(f,g,c,p)/d;return!(v<0||v>1)}function Uh(t,e,n,i){return t*i-n*e}function Zh(t){var e=t.itemTooltipOption,n=t.componentModel,i=t.itemName,r=U(e)?{formatter:e}:e,o=n.mainType,a=n.componentIndex,s={componentType:o,name:i,$vars:["name"]};s[o+"Index"]=a;var l=t.formatterParamsExtra;l&&E(G(l),(function(t){_t(s,t)||(s[t]=l[t],s.$vars.push(t))}));var u=Qs(t.el);u.componentMainType=o,u.componentIndex=a,u.tooltipConfig={name:i,option:k({content:i,formatterParams:s},r)}}function jh(t,e){var n;t.isGroup&&(n=e(t)),n||t.traverse(e)}function qh(t,e){if(t)if(Y(t))for(var n=0;n-1?Dc:kc;function Rc(t,e){t=t.toUpperCase(),Pc[t]=new Mc(e),Lc[t]=e}function Nc(t){return Pc[t]}Rc(Ac,{time:{month:["January","February","March","April","May","June","July","August","September","October","November","December"],monthAbbr:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],dayOfWeek:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],dayOfWeekAbbr:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"]},legend:{selector:{all:"All",inverse:"Inv"}},toolbox:{brush:{title:{rect:"Box Select",polygon:"Lasso Select",lineX:"Horizontally Select",lineY:"Vertically Select",keep:"Keep Selections",clear:"Clear Selections"}},dataView:{title:"Data View",lang:["Data View","Close","Refresh"]},dataZoom:{title:{zoom:"Zoom",back:"Zoom Reset"}},magicType:{title:{line:"Switch to Line Chart",bar:"Switch to Bar Chart",stack:"Stack",tiled:"Tile"}},restore:{title:"Restore"},saveAsImage:{title:"Save as Image",lang:["Right Click to Save Image"]}},series:{typeNames:{pie:"Pie chart",bar:"Bar chart",line:"Line chart",scatter:"Scatter plot",effectScatter:"Ripple scatter plot",radar:"Radar chart",tree:"Tree",treemap:"Treemap",boxplot:"Boxplot",candlestick:"Candlestick",k:"K line chart",heatmap:"Heat map",map:"Map",parallel:"Parallel coordinate map",lines:"Line graph",graph:"Relationship graph",sankey:"Sankey diagram",funnel:"Funnel chart",gauge:"Gauge",pictorialBar:"Pictorial bar",themeRiver:"Theme River Map",sunburst:"Sunburst"}},aria:{general:{withTitle:'This is a chart about "{title}"',withoutTitle:"This is a chart"},series:{single:{prefix:"",withName:" with type {seriesType} named {seriesName}.",withoutName:" with type {seriesType}."},multiple:{prefix:". It consists of {seriesCount} series count.",withName:" The {seriesId} series is a {seriesType} representing {seriesName}.",withoutName:" The {seriesId} series is a {seriesType}.",separator:{middle:"",end:""}}},data:{allData:"The data is as follows: ",partialData:"The first {displayCnt} items are: ",withName:"the data for {name} is {value}",withoutName:"{value}",separator:{middle:", ",end:". "}}}}),Rc(Dc,{time:{month:["一月","二月","三月","四月","五月","六月","七月","八月","九月","十月","十一月","十二月"],monthAbbr:["1月","2月","3月","4月","5月","6月","7月","8月","9月","10月","11月","12月"],dayOfWeek:["星期日","星期一","星期二","星期三","星期四","星期五","星期六"],dayOfWeekAbbr:["日","一","二","三","四","五","六"]},legend:{selector:{all:"全选",inverse:"反选"}},toolbox:{brush:{title:{rect:"矩形选择",polygon:"圈选",lineX:"横向选择",lineY:"纵向选择",keep:"保持选择",clear:"清除选择"}},dataView:{title:"数据视图",lang:["数据视图","关闭","刷新"]},dataZoom:{title:{zoom:"区域缩放",back:"区域缩放还原"}},magicType:{title:{line:"切换为折线图",bar:"切换为柱状图",stack:"切换为堆叠",tiled:"切换为平铺"}},restore:{title:"还原"},saveAsImage:{title:"保存为图片",lang:["右键另存为图片"]}},series:{typeNames:{pie:"饼图",bar:"柱状图",line:"折线图",scatter:"散点图",effectScatter:"涟漪散点图",radar:"雷达图",tree:"树图",treemap:"矩形树图",boxplot:"箱型图",candlestick:"K线图",k:"K线图",heatmap:"热力图",map:"地图",parallel:"平行坐标图",lines:"线图",graph:"关系图",sankey:"桑基图",funnel:"漏斗图",gauge:"仪表盘图",pictorialBar:"象形柱图",themeRiver:"主题河流图",sunburst:"旭日图"}},aria:{general:{withTitle:"这是一个关于“{title}”的图表。",withoutTitle:"这是一个图表,"},series:{single:{prefix:"",withName:"图表类型是{seriesType},表示{seriesName}。",withoutName:"图表类型是{seriesType}。"},multiple:{prefix:"它由{seriesCount}个图表系列组成。",withName:"第{seriesId}个系列是一个表示{seriesName}的{seriesType},",withoutName:"第{seriesId}个系列是一个{seriesType},",separator:{middle:";",end:"。"}}},data:{allData:"其数据是——",partialData:"其中,前{displayCnt}项是——",withName:"{name}的数据是{value}",withoutName:"{value}",separator:{middle:",",end:""}}}});var Ec=1e3,zc=6e4,Vc=36e5,Bc=864e5,Fc=31536e6,Gc={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}"},Wc="{yyyy}-{MM}-{dd}",Hc={year:"{yyyy}",month:"{yyyy}-{MM}",day:Wc,hour:Wc+" "+Gc.hour,minute:Wc+" "+Gc.minute,second:Wc+" "+Gc.second,millisecond:Gc.none},Yc=["year","month","day","hour","minute","second","millisecond"],Xc=["year","half-year","quarter","month","week","half-week","day","half-day","quarter-day","hour","minute","second","millisecond"];function Uc(t,e){return"0000".substr(0,e-(t+="").length)+t}function Zc(t){switch(t){case"half-year":case"quarter":return"month";case"week":case"half-week":return"day";case"half-day":case"quarter-day":return"hour";default:return t}}function jc(t){return t===Zc(t)}function qc(t,e,n,i){var r=ro(t),o=r[Jc(n)](),a=r[Qc(n)]()+1,s=Math.floor((a-1)/3)+1,l=r[tp(n)](),u=r["get"+(n?"UTC":"")+"Day"](),h=r[ep(n)](),c=(h-1)%12+1,p=r[np(n)](),d=r[ip(n)](),f=r[rp(n)](),g=(i instanceof Mc?i:Nc(i||Oc)||Pc[kc]).getModel("time"),y=g.get("month"),v=g.get("monthAbbr"),m=g.get("dayOfWeek"),x=g.get("dayOfWeekAbbr");return(e||"").replace(/{yyyy}/g,o+"").replace(/{yy}/g,Uc(o%100+"",2)).replace(/{Q}/g,s+"").replace(/{MMMM}/g,y[a-1]).replace(/{MMM}/g,v[a-1]).replace(/{MM}/g,Uc(a,2)).replace(/{M}/g,a+"").replace(/{dd}/g,Uc(l,2)).replace(/{d}/g,l+"").replace(/{eeee}/g,m[u]).replace(/{ee}/g,x[u]).replace(/{e}/g,u+"").replace(/{HH}/g,Uc(h,2)).replace(/{H}/g,h+"").replace(/{hh}/g,Uc(c+"",2)).replace(/{h}/g,c+"").replace(/{mm}/g,Uc(p,2)).replace(/{m}/g,p+"").replace(/{ss}/g,Uc(d,2)).replace(/{s}/g,d+"").replace(/{SSS}/g,Uc(f,3)).replace(/{S}/g,f+"")}function Kc(t,e){var n=ro(t),i=n[Qc(e)]()+1,r=n[tp(e)](),o=n[ep(e)](),a=n[np(e)](),s=n[ip(e)](),l=0===n[rp(e)](),u=l&&0===s,h=u&&0===a,c=h&&0===o,p=c&&1===r;return p&&1===i?"year":p?"month":c?"day":h?"hour":u?"minute":l?"second":"millisecond"}function $c(t,e,n){var i=j(t)?ro(t):t;switch(e=e||Kc(t,n)){case"year":return i[Jc(n)]();case"half-year":return i[Qc(n)]()>=6?1:0;case"quarter":return Math.floor((i[Qc(n)]()+1)/4);case"month":return i[Qc(n)]();case"day":return i[tp(n)]();case"half-day":return i[ep(n)]()/24;case"hour":return i[ep(n)]();case"minute":return i[np(n)]();case"second":return i[ip(n)]();case"millisecond":return i[rp(n)]()}}function Jc(t){return t?"getUTCFullYear":"getFullYear"}function Qc(t){return t?"getUTCMonth":"getMonth"}function tp(t){return t?"getUTCDate":"getDate"}function ep(t){return t?"getUTCHours":"getHours"}function np(t){return t?"getUTCMinutes":"getMinutes"}function ip(t){return t?"getUTCSeconds":"getSeconds"}function rp(t){return t?"getUTCMilliseconds":"getMilliseconds"}function op(t){return t?"setUTCFullYear":"setFullYear"}function ap(t){return t?"setUTCMonth":"setMonth"}function sp(t){return t?"setUTCDate":"setDate"}function lp(t){return t?"setUTCHours":"setHours"}function up(t){return t?"setUTCMinutes":"setMinutes"}function hp(t){return t?"setUTCSeconds":"setSeconds"}function cp(t){return t?"setUTCMilliseconds":"setMilliseconds"}function pp(t){if(!co(t))return U(t)?t:"-";var e=(t+"").split(".");return e[0].replace(/(\d{1,3})(?=(?:\d{3})+(?!\d))/g,"$1,")+(e.length>1?"."+e[1]:"")}function dp(t,e){return t=(t||"").toLowerCase().replace(/-(.)/g,(function(t,e){return e.toUpperCase()})),e&&t&&(t=t.charAt(0).toUpperCase()+t.slice(1)),t}var fp=st;function gp(t,e,n){function i(t){return t&&ut(t)?t:"-"}function r(t){return!(null==t||isNaN(t)||!isFinite(t))}var o="time"===e,a=t instanceof Date;if(o||a){var s=o?ro(t):t;if(!isNaN(+s))return qc(s,"{yyyy}-{MM}-{dd} {HH}:{mm}:{ss}",n);if(a)return"-"}if("ordinal"===e)return Z(t)?i(t):j(t)&&r(t)?t+"":"-";var l=ho(t);return r(l)?pp(l):Z(t)?i(t):"boolean"==typeof t?t+"":"-"}var yp=["a","b","c","d","e","f","g"],vp=function(t,e){return"{"+t+(null==e?"":e)+"}"};function mp(t,e,n){Y(e)||(e=[e]);var i=e.length;if(!i)return"";for(var r=e[0].$vars||[],o=0;o':'':{renderMode:o,content:"{"+(n.markerId||"markerX")+"|} ",style:"subItem"===r?{width:4,height:4,borderRadius:2,backgroundColor:i}:{width:10,height:10,borderRadius:5,backgroundColor:i}}:""}function _p(t,e){return e=e||"transparent",U(t)?t:q(t)&&t.colorStops&&(t.colorStops[0]||{}).color||e}function bp(t,e){if("_blank"===e||"blank"===e){var n=window.open();n.opener=null,n.location.href=t}else window.open(t,e)}var wp=E,Sp=["left","right","top","bottom","width","height"],Mp=[["width","left","right"],["height","top","bottom"]];function Ip(t,e,n,i,r){var o=0,a=0;null==i&&(i=1/0),null==r&&(r=1/0);var s=0;e.eachChild((function(l,u){var h,c,p=l.getBoundingRect(),d=e.childAt(u+1),f=d&&d.getBoundingRect();if("horizontal"===t){var g=p.width+(f?-f.x+p.x:0);(h=o+g)>i||l.newline?(o=0,h=g,a+=s+n,s=p.height):s=Math.max(s,p.height)}else{var y=p.height+(f?-f.y+p.y:0);(c=a+y)>r||l.newline?(o+=s+n,a=0,c=y,s=p.width):s=Math.max(s,p.width)}l.newline||(l.x=o,l.y=a,l.markRedraw(),"horizontal"===t?o=h+n:a=c+n)}))}var Tp=Ip;H(Ip,"vertical"),H(Ip,"horizontal");function Cp(t,e,n){n=fp(n||0);var i=e.width,r=e.height,o=Ur(t.left,i),a=Ur(t.top,r),s=Ur(t.right,i),l=Ur(t.bottom,r),u=Ur(t.width,i),h=Ur(t.height,r),c=n[2]+n[0],p=n[1]+n[3],d=t.aspect;switch(isNaN(u)&&(u=i-s-p-o),isNaN(h)&&(h=r-l-c-a),null!=d&&(isNaN(u)&&isNaN(h)&&(d>i/r?u=.8*i:h=.8*r),isNaN(u)&&(u=d*h),isNaN(h)&&(h=u/d)),isNaN(o)&&(o=i-s-u-p),isNaN(a)&&(a=r-l-h-c),t.left||t.right){case"center":o=i/2-u/2-n[3];break;case"right":o=i-u-p}switch(t.top||t.bottom){case"middle":case"center":a=r/2-h/2-n[0];break;case"bottom":a=r-h-c}o=o||0,a=a||0,isNaN(u)&&(u=i-p-o-(s||0)),isNaN(h)&&(h=r-c-a-(l||0));var f=new ze(o+n[3],a+n[0],u,h);return f.margin=n,f}function Dp(t,e,n,i,r,o){var a,s=!r||!r.hv||r.hv[0],l=!r||!r.hv||r.hv[1],u=r&&r.boundingMode||"all";if((o=o||t).x=t.x,o.y=t.y,!s&&!l)return!1;if("raw"===u)a="group"===t.type?new ze(0,0,+e.width||0,+e.height||0):t.getBoundingRect();else if(a=t.getBoundingRect(),t.needLocalTransform()){var h=t.getLocalTransform();(a=a.clone()).applyTransform(h)}var c=Cp(k({width:a.width,height:a.height},e),n,i),p=s?c.x-a.x:0,d=l?c.y-a.y:0;return"raw"===u?(o.x=p,o.y=d):(o.x+=p,o.y+=d),o===t&&t.markRedraw(),!0}function Ap(t){var e=t.layoutMode||t.constructor.layoutMode;return q(e)?e:e?{type:e}:null}function kp(t,e,n){var i=n&&n.ignoreSize;!Y(i)&&(i=[i,i]);var r=a(Mp[0],0),o=a(Mp[1],1);function a(n,r){var o={},a=0,u={},h=0;if(wp(n,(function(e){u[e]=t[e]})),wp(n,(function(t){s(e,t)&&(o[t]=u[t]=e[t]),l(o,t)&&a++,l(u,t)&&h++})),i[r])return l(e,n[1])?u[n[2]]=null:l(e,n[2])&&(u[n[1]]=null),u;if(2!==h&&a){if(a>=2)return o;for(var c=0;c=0;a--)o=C(o,n[a],!0);e.defaultOption=o}return e.defaultOption},e.prototype.getReferringComponents=function(t,e){var n=t+"Index",i=t+"Id";return Bo(this.ecModel,t,{index:this.get(n,!0),id:this.get(i,!0)},e)},e.prototype.getBoxLayoutParams=function(){var t=this;return{left:t.get("left"),top:t.get("top"),right:t.get("right"),bottom:t.get("bottom"),width:t.get("width"),height:t.get("height")}},e.prototype.getZLevelKey=function(){return""},e.prototype.setZLevel=function(t){this.option.zlevel=t},e.protoInitialize=function(){var t=e.prototype;t.type="component",t.id="",t.name="",t.mainType="",t.subType="",t.componentIndex=0}(),e}(Mc);Zo(Rp,Mc),$o(Rp),function(t){var e={};t.registerSubTypeDefaulter=function(t,n){var i=Xo(t);e[i.main]=n},t.determineSubType=function(n,i){var r=i.type;if(!r){var o=Xo(n).main;t.hasSubTypes(n)&&e[o]&&(r=e[o](i))}return r}}(Rp),function(t,e){function n(t,e){return t[e]||(t[e]={predecessor:[],successor:[]}),t[e]}t.topologicalTravel=function(t,i,r,o){if(t.length){var a=function(t){var i={},r=[];return E(t,(function(o){var a=n(i,o),s=function(t,e){var n=[];return E(t,(function(t){P(e,t)>=0&&n.push(t)})),n}(a.originalDeps=e(o),t);a.entryCount=s.length,0===a.entryCount&&r.push(o),E(s,(function(t){P(a.predecessor,t)<0&&a.predecessor.push(t);var e=n(i,t);P(e.successor,t)<0&&e.successor.push(o)}))})),{graph:i,noEntryList:r}}(i),s=a.graph,l=a.noEntryList,u={};for(E(t,(function(t){u[t]=!0}));l.length;){var h=l.pop(),c=s[h],p=!!u[h];p&&(r.call(o,h,c.originalDeps.slice()),delete u[h]),E(c.successor,p?f:d)}E(u,(function(){var t="";throw new Error(t)}))}function d(t){s[t].entryCount--,0===s[t].entryCount&&l.push(t)}function f(t){u[t]=!0,d(t)}}}(Rp,(function(t){var e=[];E(Rp.getClassesByMainType(t),(function(t){e=e.concat(t.dependencies||t.prototype.dependencies||[])})),e=z(e,(function(t){return Xo(t).main})),"dataset"!==t&&P(e,"dataset")<=0&&e.unshift("dataset");return e}));var Np="";"undefined"!=typeof navigator&&(Np=navigator.platform||"");var Ep="rgba(0, 0, 0, 0.2)",zp={darkMode:"auto",colorBy:"series",color:["#5470c6","#91cc75","#fac858","#ee6666","#73c0de","#3ba272","#fc8452","#9a60b4","#ea7ccc"],gradientColor:["#f6efa6","#d88273","#bf444c"],aria:{decal:{decals:[{color:Ep,dashArrayX:[1,0],dashArrayY:[2,5],symbolSize:1,rotation:Math.PI/6},{color:Ep,symbol:"circle",dashArrayX:[[8,8],[0,8,8,0]],dashArrayY:[6,0],symbolSize:.8},{color:Ep,dashArrayX:[1,0],dashArrayY:[4,3],rotation:-Math.PI/4},{color:Ep,dashArrayX:[[6,6],[0,6,6,0]],dashArrayY:[6,0]},{color:Ep,dashArrayX:[[1,0],[1,6]],dashArrayY:[1,0,6,0],rotation:Math.PI/4},{color:Ep,symbol:"triangle",dashArrayX:[[9,9],[0,9,9,0]],dashArrayY:[7,2],symbolSize:.75}]}},textStyle:{fontFamily:Np.match(/^Win/)?"Microsoft YaHei":"sans-serif",fontSize:12,fontStyle:"normal",fontWeight:"normal"},blendMode:null,stateAnimation:{duration:300,easing:"cubicOut"},animation:"auto",animationDuration:1e3,animationDurationUpdate:500,animationEasing:"cubicInOut",animationEasingUpdate:"cubicInOut",animationThreshold:2e3,progressiveThreshold:3e3,progressive:400,hoverLayerThreshold:3e3,useUTC:!1},Vp=yt(["tooltip","label","itemName","itemId","itemGroupId","seriesName"]),Bp="original",Fp="arrayRows",Gp="objectRows",Wp="keyedColumns",Hp="typedArray",Yp="unknown",Xp="column",Up="row",Zp=1,jp=2,qp=3,Kp=Oo();function $p(t,e,n){var i={},r=Qp(e);if(!r||!t)return i;var o,a,s=[],l=[],u=e.ecModel,h=Kp(u).datasetMap,c=r.uid+"_"+n.seriesLayoutBy;E(t=t.slice(),(function(e,n){var r=q(e)?e:t[n]={name:e};"ordinal"===r.type&&null==o&&(o=n,a=f(r)),i[r.name]=[]}));var p=h.get(c)||h.set(c,{categoryWayDim:a,valueWayDim:0});function d(t,e,n){for(var i=0;ie)return t[i];return t[n-1]}(i,a):n;if((h=h||n)&&h.length){var c=h[l];return r&&(u[r]=c),s.paletteIdx=(l+1)%h.length,c}}var cd="\0_ec_inner";var pd=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return n(e,t),e.prototype.init=function(t,e,n,i,r,o){i=i||{},this.option=null,this._theme=new Mc(i),this._locale=new Mc(r),this._optionManager=o},e.prototype.setOption=function(t,e,n){var i=gd(e);this._optionManager.setOption(t,n,i),this._resetOption(null,i)},e.prototype.resetOption=function(t,e){return this._resetOption(t,gd(e))},e.prototype._resetOption=function(t,e){var n=!1,i=this._optionManager;if(!t||"recreate"===t){var r=i.mountOption("recreate"===t);0,this.option&&"recreate"!==t?(this.restoreData(),this._mergeOption(r,e)):od(this,r),n=!0}if("timeline"!==t&&"media"!==t||this.restoreData(),!t||"recreate"===t||"timeline"===t){var o=i.getTimelineOption(this);o&&(n=!0,this._mergeOption(o,e))}if(!t||"recreate"===t||"media"===t){var a=i.getMediaOption(this);a.length&&E(a,(function(t){n=!0,this._mergeOption(t,e)}),this)}return n},e.prototype.mergeOption=function(t){this._mergeOption(t,null)},e.prototype._mergeOption=function(t,e){var n=this.option,i=this._componentsMap,r=this._componentsCount,o=[],a=yt(),s=e&&e.replaceMergeMainTypeMap;Kp(this).datasetMap=yt(),E(t,(function(t,e){null!=t&&(Rp.hasClass(e)?e&&(o.push(e),a.set(e,!0)):n[e]=null==n[e]?T(t):C(n[e],t,!0))})),s&&s.each((function(t,e){Rp.hasClass(e)&&!a.get(e)&&(o.push(e),a.set(e,!0))})),Rp.topologicalTravel(o,Rp.getAllClassMainTypes(),(function(e){var o=function(t,e,n){var i=nd.get(e);if(!i)return n;var r=i(t);return r?n.concat(r):n}(this,e,bo(t[e])),a=i.get(e),l=a?s&&s.get(e)?"replaceMerge":"normalMerge":"replaceAll",u=To(a,o,l);(function(t,e,n){E(t,(function(t){var i=t.newOption;q(i)&&(t.keyInfo.mainType=e,t.keyInfo.subType=function(t,e,n,i){return e.type?e.type:n?n.subType:i.determineSubType(t,e)}(e,i,t.existing,n))}))})(u,e,Rp),n[e]=null,i.set(e,null),r.set(e,0);var h,c=[],p=[],d=0;E(u,(function(t,n){var i=t.existing,r=t.newOption;if(r){var o="series"===e,a=Rp.getClass(e,t.keyInfo.subType,!o);if(!a)return;if("tooltip"===e){if(h)return void 0;h=!0}if(i&&i.constructor===a)i.name=t.keyInfo.name,i.mergeOption(r,this),i.optionUpdated(r,!1);else{var s=A({componentIndex:n},t.keyInfo);A(i=new a(r,this,this,s),s),t.brandNew&&(i.__requireNewView=!0),i.init(r,this,this),i.optionUpdated(null,!0)}}else i&&(i.mergeOption({},this),i.optionUpdated({},!1));i?(c.push(i.option),p.push(i),d++):(c.push(void 0),p.push(void 0))}),this),n[e]=c,i.set(e,p),r.set(e,d),"series"===e&&id(this)}),this),this._seriesIndices||id(this)},e.prototype.getOption=function(){var t=T(this.option);return E(t,(function(e,n){if(Rp.hasClass(n)){for(var i=bo(e),r=i.length,o=!1,a=r-1;a>=0;a--)i[a]&&!Lo(i[a])?o=!0:(i[a]=null,!o&&r--);i.length=r,t[n]=i}})),delete t[cd],t},e.prototype.getTheme=function(){return this._theme},e.prototype.getLocaleModel=function(){return this._locale},e.prototype.setUpdatePayload=function(t){this._payload=t},e.prototype.getUpdatePayload=function(){return this._payload},e.prototype.getComponent=function(t,e){var n=this._componentsMap.get(t);if(n){var i=n[e||0];if(i)return i;if(null==e)for(var r=0;r=e:"max"===n?t<=e:t===e})(i[a],t,o)||(r=!1)}})),r}var Sd=E,Md=q,Id=["areaStyle","lineStyle","nodeStyle","linkStyle","chordStyle","label","labelLine"];function Td(t){var e=t&&t.itemStyle;if(e)for(var n=0,i=Id.length;n=0;g--){var y=t[g];if(s||(p=y.data.rawIndexOf(y.stackedByDimension,c)),p>=0){var v=y.data.getByRawIndex(y.stackResultDimension,p);if("all"===l||"positive"===l&&v>0||"negative"===l&&v<0||"samesign"===l&&d>=0&&v>0||"samesign"===l&&d<=0&&v<0){d=Qr(d,v),f=v;break}}}return i[0]=d,i[1]=f,i}))}))}var Yd,Xd,Ud,Zd,jd,qd=function(t){this.data=t.data||(t.sourceFormat===Wp?{}:[]),this.sourceFormat=t.sourceFormat||Yp,this.seriesLayoutBy=t.seriesLayoutBy||Xp,this.startIndex=t.startIndex||0,this.dimensionsDetectedCount=t.dimensionsDetectedCount,this.metaRawOption=t.metaRawOption;var e=this.dimensionsDefine=t.dimensionsDefine;if(e)for(var n=0;nu&&(u=d)}s[0]=l,s[1]=u}},i=function(){return this._data?this._data.length/this._dimSize:0};function r(t){for(var e=0;e=0&&(s=o.interpolatedValue[l])}return null!=s?s+"":""})):void 0},t.prototype.getRawValue=function(t,e){return gf(this.getData(e),t)},t.prototype.formatTooltip=function(t,e,n){},t}();function mf(t){var e,n;return q(t)?t.type&&(n=t):e=t,{text:e,frag:n}}function xf(t){return new _f(t)}var _f=function(){function t(t){t=t||{},this._reset=t.reset,this._plan=t.plan,this._count=t.count,this._onDirty=t.onDirty,this._dirty=!0}return t.prototype.perform=function(t){var e,n=this._upstream,i=t&&t.skip;if(this._dirty&&n){var r=this.context;r.data=r.outputData=n.context.outputData}this.__pipeline&&(this.__pipeline.currentTask=this),this._plan&&!i&&(e=this._plan(this.context));var o,a=h(this._modBy),s=this._modDataCount||0,l=h(t&&t.modBy),u=t&&t.modDataCount||0;function h(t){return!(t>=1)&&(t=1),t}a===l&&s===u||(e="reset"),(this._dirty||"reset"===e)&&(this._dirty=!1,o=this._doReset(i)),this._modBy=l,this._modDataCount=u;var c=t&&t.step;if(this._dueEnd=n?n._outputDueEnd:this._count?this._count(this.context):1/0,this._progress){var p=this._dueIndex,d=Math.min(null!=c?this._dueIndex+c:1/0,this._dueEnd);if(!i&&(o||p1&&i>0?s:a}};return o;function a(){return e=t?null:oe},gte:function(t,e){return t>=e}},Tf=function(){function t(t,e){if(!j(e)){var n="";0,vo(n)}this._opFn=If[t],this._rvalFloat=ho(e)}return t.prototype.evaluate=function(t){return j(t)?this._opFn(t,this._rvalFloat):this._opFn(ho(t),this._rvalFloat)},t}(),Cf=function(){function t(t,e){var n="desc"===t;this._resultLT=n?1:-1,null==e&&(e=n?"min":"max"),this._incomparable="min"===e?-1/0:1/0}return t.prototype.evaluate=function(t,e){var n=j(t)?t:ho(t),i=j(e)?e:ho(e),r=isNaN(n),o=isNaN(i);if(r&&(n=this._incomparable),o&&(i=this._incomparable),r&&o){var a=U(t),s=U(e);a&&(n=s?t:0),s&&(i=a?e:0)}return ni?-this._resultLT:0},t}(),Df=function(){function t(t,e){this._rval=e,this._isEQ=t,this._rvalTypeof=typeof e,this._rvalFloat=ho(e)}return t.prototype.evaluate=function(t){var e=t===this._rval;if(!e){var n=typeof t;n===this._rvalTypeof||"number"!==n&&"number"!==this._rvalTypeof||(e=ho(t)===this._rvalFloat)}return this._isEQ?e:!e},t}();function Af(t,e){return"eq"===t||"ne"===t?new Df("eq"===t,e):_t(If,t)?new Tf(t,e):null}var kf=function(){function t(){}return t.prototype.getRawData=function(){throw new Error("not supported")},t.prototype.getRawDataItem=function(t){throw new Error("not supported")},t.prototype.cloneRawData=function(){},t.prototype.getDimensionInfo=function(t){},t.prototype.cloneAllDimensionInfo=function(){},t.prototype.count=function(){},t.prototype.retrieveValue=function(t,e){},t.prototype.retrieveValueFromItem=function(t,e){},t.prototype.convertValue=function(t,e){return wf(t,e)},t}();function Lf(t){var e=t.sourceFormat;if(!zf(e)){var n="";0,vo(n)}return t.data}function Pf(t){var e=t.sourceFormat,n=t.data;if(!zf(e)){var i="";0,vo(i)}if(e===Fp){for(var r=[],o=0,a=n.length;o65535?Ff:Gf}function Uf(t,e,n,i,r){var o=Yf[n||"float"];if(r){var a=t[e],s=a&&a.length;if(s!==i){for(var l=new o(i),u=0;ug[1]&&(g[1]=f)}return this._rawCount=this._count=s,{start:a,end:s}},t.prototype._initDataFromProvider=function(t,e,n){for(var i=this._provider,r=this._chunks,o=this._dimensions,a=o.length,s=this._rawExtent,l=z(o,(function(t){return t.property})),u=0;uy[1]&&(y[1]=g)}}!i.persistent&&i.clean&&i.clean(),this._rawCount=this._count=e,this._extent=[]},t.prototype.count=function(){return this._count},t.prototype.get=function(t,e){if(!(e>=0&&e=0&&e=this._rawCount||t<0)return-1;if(!this._indices)return t;var e=this._indices,n=e[t];if(null!=n&&nt))return o;r=o-1}}return-1},t.prototype.indicesOfNearest=function(t,e,n){var i=this._chunks[t],r=[];if(!i)return r;null==n&&(n=1/0);for(var o=1/0,a=-1,s=0,l=0,u=this.count();l=0&&a<0)&&(o=c,a=h,s=0),h===a&&(r[s++]=l))}return r.length=s,r},t.prototype.getIndices=function(){var t,e=this._indices;if(e){var n=e.constructor,i=this._count;if(n===Array){t=new n(i);for(var r=0;r=u&&x<=h||isNaN(x))&&(a[s++]=d),d++}p=!0}else if(2===r){f=c[i[0]];var y=c[i[1]],v=t[i[1]][0],m=t[i[1]][1];for(g=0;g=u&&x<=h||isNaN(x))&&(_>=v&&_<=m||isNaN(_))&&(a[s++]=d),d++}p=!0}}if(!p)if(1===r)for(g=0;g=u&&x<=h||isNaN(x))&&(a[s++]=b)}else for(g=0;gt[M][1])&&(w=!1)}w&&(a[s++]=e.getRawIndex(g))}return sy[1]&&(y[1]=g)}}}},t.prototype.lttbDownSample=function(t,e){var n,i,r,o=this.clone([t],!0),a=o._chunks[t],s=this.count(),l=0,u=Math.floor(1/e),h=this.getRawIndex(0),c=new(Xf(this._rawCount))(Math.min(2*(Math.ceil(s/u)+2),s));c[l++]=h;for(var p=1;pn&&(n=i,r=I)}M>0&&M<_-x&&(c[l++]=Math.min(S,r),r=Math.max(S,r)),c[l++]=r,h=r}return c[l++]=this.getRawIndex(s-1),o._count=l,o._indices=c,o.getRawIndex=this._getRawIdx,o},t.prototype.downSample=function(t,e,n,i){for(var r=this.clone([t],!0),o=r._chunks,a=[],s=Math.floor(1/e),l=o[t],u=this.count(),h=r._rawExtent[t]=[1/0,-1/0],c=new(Xf(this._rawCount))(Math.ceil(u/s)),p=0,d=0;du-d&&(s=u-d,a.length=s);for(var f=0;fh[1]&&(h[1]=y),c[p++]=v}return r._count=p,r._indices=c,r._updateGetRawIdx(),r},t.prototype.each=function(t,e){if(this._count)for(var n=t.length,i=this._chunks,r=0,o=this.count();ra&&(a=l)}return i=[o,a],this._extent[t]=i,i},t.prototype.getRawDataItem=function(t){var e=this.getRawIndex(t);if(this._provider.persistent)return this._provider.getItem(e);for(var n=[],i=this._chunks,r=0;r=0?this._indices[t]:-1},t.prototype._updateGetRawIdx=function(){this.getRawIndex=this._indices?this._getRawIdx:this._getRawIdxIdentity},t.internalField=function(){function t(t,e,n,i){return wf(t[i],this._dimensions[i])}Vf={arrayRows:t,objectRows:function(t,e,n,i){return wf(t[e],this._dimensions[i])},keyedColumns:t,original:function(t,e,n,i){var r=t&&(null==t.value?t:t.value);return wf(r instanceof Array?r[i]:r,this._dimensions[i])},typedArray:function(t,e,n,i){return t[i]}}}(),t}(),jf=function(){function t(t){this._sourceList=[],this._storeList=[],this._upstreamSignList=[],this._versionSignBase=0,this._dirty=!0,this._sourceHost=t}return t.prototype.dirty=function(){this._setLocalSource([],[]),this._storeList=[],this._dirty=!0},t.prototype._setLocalSource=function(t,e){this._sourceList=t,this._upstreamSignList=e,this._versionSignBase++,this._versionSignBase>9e10&&(this._versionSignBase=0)},t.prototype._getVersionSign=function(){return this._sourceHost.uid+"_"+this._versionSignBase},t.prototype.prepareSource=function(){this._isDirty()&&(this._createSource(),this._dirty=!1)},t.prototype._createSource=function(){this._setLocalSource([],[]);var t,e,n=this._sourceHost,i=this._getUpstreamSourceManagers(),r=!!i.length;if(Kf(n)){var o=n,a=void 0,s=void 0,l=void 0;if(r){var u=i[0];u.prepareSource(),a=(l=u.getSource()).data,s=l.sourceFormat,e=[u._getVersionSign()]}else s=$(a=o.get("data",!0))?Hp:Bp,e=[];var h=this._getSourceMetaRawOption()||{},c=l&&l.metaRawOption||{},p=rt(h.seriesLayoutBy,c.seriesLayoutBy)||null,d=rt(h.sourceHeader,c.sourceHeader),f=rt(h.dimensions,c.dimensions);t=p!==c.seriesLayoutBy||!!d!=!!c.sourceHeader||f?[$d(a,{seriesLayoutBy:p,sourceHeader:d,dimensions:f},s)]:[]}else{var g=n;if(r){var y=this._applyTransform(i);t=y.sourceList,e=y.upstreamSignList}else{t=[$d(g.get("source",!0),this._getSourceMetaRawOption(),null)],e=[]}}this._setLocalSource(t,e)},t.prototype._applyTransform=function(t){var e,n=this._sourceHost,i=n.get("transform",!0),r=n.get("fromTransformResult",!0);if(null!=r){var o="";1!==t.length&&$f(o)}var a,s=[],l=[];return E(t,(function(t){t.prepareSource();var e=t.getSource(r||0),n="";null==r||e||$f(n),s.push(e),l.push(t._getVersionSign())})),i?e=function(t,e,n){var i=bo(t),r=i.length,o="";r||vo(o);for(var a=0,s=r;a1||n>0&&!t.noHeader;return E(t.blocks,(function(t){var n=og(t);n>=e&&(e=n+ +(i&&(!n||ig(t)&&!t.noHeader)))})),e}return 0}function ag(t,e,n,i){var r,o=e.noHeader,a=(r=og(e),{html:tg[r],richText:eg[r]}),s=[],l=e.blocks||[];lt(!l||Y(l)),l=l||[];var u=t.orderMode;if(e.sortBlocks&&u){l=l.slice();var h={valueAsc:"asc",valueDesc:"desc"};if(_t(h,u)){var c=new Cf(h[u],null);l.sort((function(t,e){return c.evaluate(t.sortParam,e.sortParam)}))}else"seriesDesc"===u&&l.reverse()}E(l,(function(n,r){var o=e.valueFormatter,l=rg(n)(o?A(A({},t),{valueFormatter:o}):t,n,r>0?a.html:0,i);null!=l&&s.push(l)}));var p="richText"===t.renderMode?s.join(a.richText):ug(s.join(""),o?n:a.html);if(o)return p;var d=gp(e.header,"ordinal",t.useUTC),f=Qf(i,t.renderMode).nameStyle;return"richText"===t.renderMode?hg(t,d,f)+a.richText+p:ug('
'+re(d)+"
"+p,n)}function sg(t,e,n,i){var r=t.renderMode,o=e.noName,a=e.noValue,s=!e.markerType,l=e.name,u=t.useUTC,h=e.valueFormatter||t.valueFormatter||function(t){return z(t=Y(t)?t:[t],(function(t,e){return gp(t,Y(d)?d[e]:d,u)}))};if(!o||!a){var c=s?"":t.markupStyleCreator.makeTooltipMarker(e.markerType,e.markerColor||"#333",r),p=o?"":gp(l,"ordinal",u),d=e.valueType,f=a?[]:h(e.value),g=!s||!o,y=!s&&o,v=Qf(i,r),m=v.nameStyle,x=v.valueStyle;return"richText"===r?(s?"":c)+(o?"":hg(t,p,m))+(a?"":function(t,e,n,i,r){var o=[r],a=i?10:20;return n&&o.push({padding:[0,0,0,a],align:"right"}),t.markupStyleCreator.wrapRichTextStyle(Y(e)?e.join(" "):e,o)}(t,f,g,y,x)):ug((s?"":c)+(o?"":function(t,e,n){return''+re(t)+""}(p,!s,m))+(a?"":function(t,e,n,i){var r=n?"10px":"20px",o=e?"float:right;margin-left:"+r:"";return t=Y(t)?t:[t],''+z(t,(function(t){return re(t)})).join("  ")+""}(f,g,y,x)),n)}}function lg(t,e,n,i,r,o){if(t)return rg(t)({useUTC:r,renderMode:n,orderMode:i,markupStyleCreator:e,valueFormatter:t.valueFormatter},t,0,o)}function ug(t,e){return'
'+t+'
'}function hg(t,e,n){return t.markupStyleCreator.wrapRichTextStyle(e,n)}function cg(t,e){return _p(t.getData().getItemVisual(e,"style")[t.visualDrawType])}function pg(t,e){var n=t.get("padding");return null!=n?n:"richText"===e?[8,10]:10}var dg=function(){function t(){this.richTextStyles={},this._nextStyleNameId=po()}return t.prototype._generateStyleName=function(){return"__EC_aUTo_"+this._nextStyleNameId++},t.prototype.makeTooltipMarker=function(t,e,n){var i="richText"===n?this._generateStyleName():null,r=xp({color:e,type:t,renderMode:n,markerId:i});return U(r)?r:(this.richTextStyles[i]=r.style,r.content)},t.prototype.wrapRichTextStyle=function(t,e){var n={};Y(e)?E(e,(function(t){return A(n,t)})):A(n,e);var i=this._generateStyleName();return this.richTextStyles[i]=n,"{"+i+"|"+t+"}"},t}();function fg(t){var e,n,i,r,o=t.series,a=t.dataIndex,s=t.multipleSeries,l=o.getData(),u=l.mapDimensionsAll("defaultedTooltip"),h=u.length,c=o.getRawValue(a),p=Y(c),d=cg(o,a);if(h>1||p&&!h){var f=function(t,e,n,i,r){var o=e.getData(),a=V(t,(function(t,e,n){var i=o.getDimensionInfo(n);return t||i&&!1!==i.tooltip&&null!=i.displayName}),!1),s=[],l=[],u=[];function h(t,e){var n=o.getDimensionInfo(e);n&&!1!==n.otherDims.tooltip&&(a?u.push(ng("nameValue",{markerType:"subItem",markerColor:r,name:n.displayName,value:t,valueType:n.type})):(s.push(t),l.push(n.type)))}return i.length?E(i,(function(t){h(gf(o,n,t),t)})):E(t,h),{inlineValues:s,inlineValueTypes:l,blocks:u}}(c,o,a,u,d);e=f.inlineValues,n=f.inlineValueTypes,i=f.blocks,r=f.inlineValues[0]}else if(h){var g=l.getDimensionInfo(u[0]);r=e=gf(l,a,u[0]),n=g.type}else r=e=p?c[0]:c;var y=ko(o),v=y&&o.name||"",m=l.getName(a),x=s?v:m;return ng("section",{header:v,noHeader:s||!y,sortParam:r,blocks:[ng("nameValue",{markerType:"item",markerColor:d,name:x,noName:!ut(x),value:e,valueType:n})].concat(i||[])})}var gg=Oo();function yg(t,e){return t.getName(e)||t.getId(e)}var vg="__universalTransitionEnabled",mg=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e._selectedDataIndicesMap={},e}return n(e,t),e.prototype.init=function(t,e,n){this.seriesIndex=this.componentIndex,this.dataTask=xf({count:_g,reset:bg}),this.dataTask.context={model:this},this.mergeDefaultAndTheme(t,n),(gg(this).sourceManager=new jf(this)).prepareSource();var i=this.getInitialData(t,n);Sg(i,this),this.dataTask.context.data=i,gg(this).dataBeforeProcessed=i,xg(this),this._initSelectedMapFromData(i)},e.prototype.mergeDefaultAndTheme=function(t,e){var n=Ap(this),i=n?Lp(t):{},r=this.subType;Rp.hasClass(r)&&(r+="Series"),C(t,e.getTheme().get(this.subType)),C(t,this.getDefaultOption()),wo(t,"label",["show"]),this.fillDataTextStyle(t.data),n&&kp(t,i,n)},e.prototype.mergeOption=function(t,e){t=C(this.option,t,!0),this.fillDataTextStyle(t.data);var n=Ap(this);n&&kp(this.option,t,n);var i=gg(this).sourceManager;i.dirty(),i.prepareSource();var r=this.getInitialData(t,e);Sg(r,this),this.dataTask.dirty(),this.dataTask.context.data=r,gg(this).dataBeforeProcessed=r,xg(this),this._initSelectedMapFromData(r)},e.prototype.fillDataTextStyle=function(t){if(t&&!$(t))for(var e=["show"],n=0;nthis.getShallow("animationThreshold")&&(e=!1),!!e},e.prototype.restoreData=function(){this.dataTask.dirty()},e.prototype.getColorFromPalette=function(t,e,n){var i=this.ecModel,r=ld.prototype.getColorFromPalette.call(this,t,e,n);return r||(r=i.getColorFromPalette(t,e,n)),r},e.prototype.coordDimToDataDim=function(t){return this.getRawData().mapDimensionsAll(t)},e.prototype.getProgressive=function(){return this.get("progressive")},e.prototype.getProgressiveThreshold=function(){return this.get("progressiveThreshold")},e.prototype.select=function(t,e){this._innerSelect(this.getData(e),t)},e.prototype.unselect=function(t,e){var n=this.option.selectedMap;if(n){var i=this.option.selectedMode,r=this.getData(e);if("series"===i||"all"===n)return this.option.selectedMap={},void(this._selectedDataIndicesMap={});for(var o=0;o=0&&n.push(r)}return n},e.prototype.isSelected=function(t,e){var n=this.option.selectedMap;if(!n)return!1;var i=this.getData(e);return("all"===n||n[yg(i,t)])&&!i.getItemModel(t).get(["select","disabled"])},e.prototype.isUniversalTransitionEnabled=function(){if(this[vg])return!0;var t=this.option.universalTransition;return!!t&&(!0===t||t&&t.enabled)},e.prototype._innerSelect=function(t,e){var n,i,r=this.option,o=r.selectedMode,a=e.length;if(o&&a)if("series"===o)r.selectedMap="all";else if("multiple"===o){q(r.selectedMap)||(r.selectedMap={});for(var s=r.selectedMap,l=0;l0&&this._innerSelect(t,e)}},e.registerClass=function(t){return Rp.registerClass(t)},e.protoInitialize=function(){var t=e.prototype;t.type="series.__base__",t.seriesIndex=0,t.ignoreStyleOnData=!1,t.hasSymbolVisual=!1,t.defaultSymbol="circle",t.visualStyleAccessPath="itemStyle",t.visualDrawType="fill"}(),e}(Rp);function xg(t){var e=t.name;ko(t)||(t.name=function(t){var e=t.getRawData(),n=e.mapDimensionsAll("seriesName"),i=[];return E(n,(function(t){var n=e.getDimensionInfo(t);n.displayName&&i.push(n.displayName)})),i.join(" ")}(t)||e)}function _g(t){return t.model.getRawData().count()}function bg(t){var e=t.model;return e.setData(e.getRawData().cloneShallow()),wg}function wg(t,e){e.outputData&&t.end>e.outputData.count()&&e.model.getRawData().cloneShallow(e.outputData)}function Sg(t,e){E(vt(t.CHANGABLE_METHODS,t.DOWNSAMPLE_METHODS),(function(n){t.wrapMethod(n,H(Mg,e))}))}function Mg(t,e){var n=Ig(t);return n&&n.setOutputEnd((e||this).count()),e}function Ig(t){var e=(t.ecModel||{}).scheduler,n=e&&e.getPipeline(t.uid);if(n){var i=n.currentTask;if(i){var r=i.agentStubMap;r&&(i=r.get(t.uid))}return i}}R(mg,vf),R(mg,ld),Zo(mg,Rp);var Tg=function(){function t(){this.group=new zr,this.uid=Tc("viewComponent")}return t.prototype.init=function(t,e){},t.prototype.render=function(t,e,n,i){},t.prototype.dispose=function(t,e){},t.prototype.updateView=function(t,e,n,i){},t.prototype.updateLayout=function(t,e,n,i){},t.prototype.updateVisual=function(t,e,n,i){},t.prototype.toggleBlurSeries=function(t,e,n){},t.prototype.eachRendered=function(t){var e=this.group;e&&e.traverse(t)},t}();function Cg(){var t=Oo();return function(e){var n=t(e),i=e.pipelineContext,r=!!n.large,o=!!n.progressiveRender,a=n.large=!(!i||!i.large),s=n.progressiveRender=!(!i||!i.progressiveRender);return!(r===a&&o===s)&&"reset"}}Uo(Tg),$o(Tg);var Dg=Oo(),Ag=Cg(),kg=function(){function t(){this.group=new zr,this.uid=Tc("viewChart"),this.renderTask=xf({plan:Og,reset:Rg}),this.renderTask.context={view:this}}return t.prototype.init=function(t,e){},t.prototype.render=function(t,e,n,i){0},t.prototype.highlight=function(t,e,n,i){var r=t.getData(i&&i.dataType);r&&Pg(r,i,"emphasis")},t.prototype.downplay=function(t,e,n,i){var r=t.getData(i&&i.dataType);r&&Pg(r,i,"normal")},t.prototype.remove=function(t,e){this.group.removeAll()},t.prototype.dispose=function(t,e){},t.prototype.updateView=function(t,e,n,i){this.render(t,e,n,i)},t.prototype.updateLayout=function(t,e,n,i){this.render(t,e,n,i)},t.prototype.updateVisual=function(t,e,n,i){this.render(t,e,n,i)},t.prototype.eachRendered=function(t){qh(this.group,t)},t.markUpdateMethod=function(t,e){Dg(t).updateMethod=e},t.protoInitialize=void(t.prototype.type="chart"),t}();function Lg(t,e,n){t&&Kl(t)&&("emphasis"===e?kl:Ll)(t,n)}function Pg(t,e,n){var i=Po(t,e),r=e&&null!=e.highlightKey?function(t){var e=nl[t];return null==e&&el<=32&&(e=nl[t]=el++),e}(e.highlightKey):null;null!=i?E(bo(i),(function(e){Lg(t.getItemGraphicEl(e),n,r)})):t.eachItemGraphicEl((function(t){Lg(t,n,r)}))}function Og(t){return Ag(t.model)}function Rg(t){var e=t.model,n=t.ecModel,i=t.api,r=t.payload,o=e.pipelineContext.progressiveRender,a=t.view,s=r&&Dg(r).updateMethod,l=o?"incrementalPrepareRender":s&&a[s]?s:"render";return"render"!==l&&a[l](e,n,i,r),Ng[l]}Uo(kg),$o(kg);var Ng={incrementalPrepareRender:{progress:function(t,e){e.view.incrementalRender(t,e.model,e.ecModel,e.api,e.payload)}},render:{forceFirstProgress:!0,progress:function(t,e){e.view.render(e.model,e.ecModel,e.api,e.payload)}}},Eg="\0__throttleOriginMethod",zg="\0__throttleRate",Vg="\0__throttleType";function Bg(t,e,n){var i,r,o,a,s,l=0,u=0,h=null;function c(){u=(new Date).getTime(),h=null,t.apply(o,a||[])}e=e||0;var p=function(){for(var t=[],p=0;p=0?c():h=setTimeout(c,-r),l=i};return p.clear=function(){h&&(clearTimeout(h),h=null)},p.debounceNextCall=function(t){s=t},p}function Fg(t,e,n,i){var r=t[e];if(r){var o=r[Eg]||r,a=r[Vg];if(r[zg]!==n||a!==i){if(null==n||!i)return t[e]=o;(r=t[e]=Bg(o,n,"debounce"===i))[Eg]=o,r[Vg]=i,r[zg]=n}return r}}function Gg(t,e){var n=t[e];n&&n[Eg]&&(n.clear&&n.clear(),t[e]=n[Eg])}var Wg=Oo(),Hg={itemStyle:Jo(bc,!0),lineStyle:Jo(mc,!0)},Yg={lineStyle:"stroke",itemStyle:"fill"};function Xg(t,e){var n=t.visualStyleMapper||Hg[e];return n||(console.warn("Unknown style type '"+e+"'."),Hg.itemStyle)}function Ug(t,e){var n=t.visualDrawType||Yg[e];return n||(console.warn("Unknown style type '"+e+"'."),"fill")}var Zg={createOnAllSeries:!0,performRawSeries:!0,reset:function(t,e){var n=t.getData(),i=t.visualStyleAccessPath||"itemStyle",r=t.getModel(i),o=Xg(t,i)(r),a=r.getShallow("decal");a&&(n.setVisual("decal",a),a.dirty=!0);var s=Ug(t,i),l=o[s],u=X(l)?l:null,h="auto"===o.fill||"auto"===o.stroke;if(!o[s]||u||h){var c=t.getColorFromPalette(t.name,null,e.getSeriesCount());o[s]||(o[s]=c,n.setVisual("colorFromPalette",!0)),o.fill="auto"===o.fill||X(o.fill)?c:o.fill,o.stroke="auto"===o.stroke||X(o.stroke)?c:o.stroke}if(n.setVisual("style",o),n.setVisual("drawType",s),!e.isSeriesFiltered(t)&&u)return n.setVisual("colorFromPalette",!1),{dataEach:function(e,n){var i=t.getDataParams(n),r=A({},o);r[s]=u(i),e.setItemVisual(n,"style",r)}}}},jg=new Mc,qg={createOnAllSeries:!0,performRawSeries:!0,reset:function(t,e){if(!t.ignoreStyleOnData&&!e.isSeriesFiltered(t)){var n=t.getData(),i=t.visualStyleAccessPath||"itemStyle",r=Xg(t,i),o=n.getVisual("drawType");return{dataEach:n.hasItemOption?function(t,e){var n=t.getRawDataItem(e);if(n&&n[i]){jg.option=n[i];var a=r(jg);A(t.ensureUniqueItemVisual(e,"style"),a),jg.option.decal&&(t.setItemVisual(e,"decal",jg.option.decal),jg.option.decal.dirty=!0),o in a&&t.setItemVisual(e,"colorFromPalette",!1)}}:null}}}},Kg={performRawSeries:!0,overallReset:function(t){var e=yt();t.eachSeries((function(t){var n=t.getColorBy();if(!t.isColorBySeries()){var i=t.type+"-"+n,r=e.get(i);r||(r={},e.set(i,r)),Wg(t).scope=r}})),t.eachSeries((function(e){if(!e.isColorBySeries()&&!t.isSeriesFiltered(e)){var n=e.getRawData(),i={},r=e.getData(),o=Wg(e).scope,a=e.visualStyleAccessPath||"itemStyle",s=Ug(e,a);r.each((function(t){var e=r.getRawIndex(t);i[e]=t})),n.each((function(t){var a=i[t];if(r.getItemVisual(a,"colorFromPalette")){var l=r.ensureUniqueItemVisual(a,"style"),u=n.getName(t)||t+"",h=n.count();l[s]=e.getColorFromPalette(u,o,h)}}))}}))}},$g=Math.PI;var Jg=function(){function t(t,e,n,i){this._stageTaskMap=yt(),this.ecInstance=t,this.api=e,n=this._dataProcessorHandlers=n.slice(),i=this._visualHandlers=i.slice(),this._allHandlers=n.concat(i)}return t.prototype.restoreData=function(t,e){t.restoreData(e),this._stageTaskMap.each((function(t){var e=t.overallTask;e&&e.dirty()}))},t.prototype.getPerformArgs=function(t,e){if(t.__pipeline){var n=this._pipelineMap.get(t.__pipeline.id),i=n.context,r=!e&&n.progressiveEnabled&&(!i||i.progressiveRender)&&t.__idxInPipeline>n.blockIndex?n.step:null,o=i&&i.modDataCount;return{step:r,modBy:null!=o?Math.ceil(o/r):null,modDataCount:o}}},t.prototype.getPipeline=function(t){return this._pipelineMap.get(t)},t.prototype.updateStreamModes=function(t,e){var n=this._pipelineMap.get(t.uid),i=t.getData().count(),r=n.progressiveEnabled&&e.incrementalPrepareRender&&i>=n.threshold,o=t.get("large")&&i>=t.get("largeThreshold"),a="mod"===t.get("progressiveChunkMode")?i:null;t.pipelineContext=n.context={progressiveRender:r,modDataCount:a,large:o}},t.prototype.restorePipelines=function(t){var e=this,n=e._pipelineMap=yt();t.eachSeries((function(t){var i=t.getProgressive(),r=t.uid;n.set(r,{id:r,head:null,tail:null,threshold:t.getProgressiveThreshold(),progressiveEnabled:i&&!(t.preventIncremental&&t.preventIncremental()),blockIndex:-1,step:Math.round(i||700),count:0}),e._pipe(t,t.dataTask)}))},t.prototype.prepareStageTasks=function(){var t=this._stageTaskMap,e=this.api.getModel(),n=this.api;E(this._allHandlers,(function(i){var r=t.get(i.uid)||t.set(i.uid,{}),o="";lt(!(i.reset&&i.overallReset),o),i.reset&&this._createSeriesStageTask(i,r,e,n),i.overallReset&&this._createOverallStageTask(i,r,e,n)}),this)},t.prototype.prepareView=function(t,e,n,i){var r=t.renderTask,o=r.context;o.model=e,o.ecModel=n,o.api=i,r.__block=!t.incrementalPrepareRender,this._pipe(e,r)},t.prototype.performDataProcessorTasks=function(t,e){this._performStageTasks(this._dataProcessorHandlers,t,e,{block:!0})},t.prototype.performVisualTasks=function(t,e,n){this._performStageTasks(this._visualHandlers,t,e,n)},t.prototype._performStageTasks=function(t,e,n,i){i=i||{};var r=!1,o=this;function a(t,e){return t.setDirty&&(!t.dirtyMap||t.dirtyMap.get(e.__pipeline.id))}E(t,(function(t,s){if(!i.visualType||i.visualType===t.visualType){var l=o._stageTaskMap.get(t.uid),u=l.seriesTaskMap,h=l.overallTask;if(h){var c,p=h.agentStubMap;p.each((function(t){a(i,t)&&(t.dirty(),c=!0)})),c&&h.dirty(),o.updatePayload(h,n);var d=o.getPerformArgs(h,i.block);p.each((function(t){t.perform(d)})),h.perform(d)&&(r=!0)}else u&&u.each((function(s,l){a(i,s)&&s.dirty();var u=o.getPerformArgs(s,i.block);u.skip=!t.performRawSeries&&e.isSeriesFiltered(s.context.model),o.updatePayload(s,n),s.perform(u)&&(r=!0)}))}})),this.unfinished=r||this.unfinished},t.prototype.performSeriesTasks=function(t){var e;t.eachSeries((function(t){e=t.dataTask.perform()||e})),this.unfinished=e||this.unfinished},t.prototype.plan=function(){this._pipelineMap.each((function(t){var e=t.tail;do{if(e.__block){t.blockIndex=e.__idxInPipeline;break}e=e.getUpstream()}while(e)}))},t.prototype.updatePayload=function(t,e){"remain"!==e&&(t.context.payload=e)},t.prototype._createSeriesStageTask=function(t,e,n,i){var r=this,o=e.seriesTaskMap,a=e.seriesTaskMap=yt(),s=t.seriesType,l=t.getTargetSeries;function u(e){var s=e.uid,l=a.set(s,o&&o.get(s)||xf({plan:iy,reset:ry,count:sy}));l.context={model:e,ecModel:n,api:i,useClearVisual:t.isVisual&&!t.isLayout,plan:t.plan,reset:t.reset,scheduler:r},r._pipe(e,l)}t.createOnAllSeries?n.eachRawSeries(u):s?n.eachRawSeriesByType(s,u):l&&l(n,i).each(u)},t.prototype._createOverallStageTask=function(t,e,n,i){var r=this,o=e.overallTask=e.overallTask||xf({reset:Qg});o.context={ecModel:n,api:i,overallReset:t.overallReset,scheduler:r};var a=o.agentStubMap,s=o.agentStubMap=yt(),l=t.seriesType,u=t.getTargetSeries,h=!0,c=!1,p="";function d(t){var e=t.uid,n=s.set(e,a&&a.get(e)||(c=!0,xf({reset:ty,onDirty:ny})));n.context={model:t,overallProgress:h},n.agent=o,n.__block=h,r._pipe(t,n)}lt(!t.createOnAllSeries,p),l?n.eachRawSeriesByType(l,d):u?u(n,i).each(d):(h=!1,E(n.getSeries(),d)),c&&o.dirty()},t.prototype._pipe=function(t,e){var n=t.uid,i=this._pipelineMap.get(n);!i.head&&(i.head=e),i.tail&&i.tail.pipe(e),i.tail=e,e.__idxInPipeline=i.count++,e.__pipeline=i},t.wrapStageHandler=function(t,e){return X(t)&&(t={overallReset:t,seriesType:ly(t)}),t.uid=Tc("stageHandler"),e&&(t.visualType=e),t},t}();function Qg(t){t.overallReset(t.ecModel,t.api,t.payload)}function ty(t){return t.overallProgress&&ey}function ey(){this.agent.dirty(),this.getDownstream().dirty()}function ny(){this.agent&&this.agent.dirty()}function iy(t){return t.plan?t.plan(t.model,t.ecModel,t.api,t.payload):null}function ry(t){t.useClearVisual&&t.data.clearAllVisual();var e=t.resetDefines=bo(t.reset(t.model,t.ecModel,t.api,t.payload));return e.length>1?z(e,(function(t,e){return ay(e)})):oy}var oy=ay(0);function ay(t){return function(e,n){var i=n.data,r=n.resetDefines[t];if(r&&r.dataEach)for(var o=e.start;o0&&h===r.length-u.length){var c=r.slice(0,h);"data"!==c&&(e.mainType=c,e[u.toLowerCase()]=t,s=!0)}}a.hasOwnProperty(r)&&(n[r]=t,s=!0),s||(i[r]=t)}))}return{cptQuery:e,dataQuery:n,otherQuery:i}},t.prototype.filter=function(t,e){var n=this.eventInfo;if(!n)return!0;var i=n.targetEl,r=n.packedEvent,o=n.model,a=n.view;if(!o||!a)return!0;var s=e.cptQuery,l=e.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,r,"name")&&u(l,r,"dataIndex")&&u(l,r,"dataType")&&(!a.filterForExposedEvent||a.filterForExposedEvent(t,e.otherQuery,i,r));function u(t,e,n,i){return null==t[n]||e[i||n]===t[n]}},t.prototype.afterTrigger=function(){this.eventInfo=null},t}(),by=["symbol","symbolSize","symbolRotate","symbolOffset"],wy=by.concat(["symbolKeepAspect"]),Sy={createOnAllSeries:!0,performRawSeries:!0,reset:function(t,e){var n=t.getData();if(t.legendIcon&&n.setVisual("legendIcon",t.legendIcon),t.hasSymbolVisual){for(var i={},r={},o=!1,a=0;a=0&&Xy(l)?l:.5,t.createRadialGradient(a,s,0,a,s,l)}(t,e,n):function(t,e,n){var i=null==e.x?0:e.x,r=null==e.x2?1:e.x2,o=null==e.y?0:e.y,a=null==e.y2?0:e.y2;return e.global||(i=i*n.width+n.x,r=r*n.width+n.x,o=o*n.height+n.y,a=a*n.height+n.y),i=Xy(i)?i:0,r=Xy(r)?r:1,o=Xy(o)?o:0,a=Xy(a)?a:0,t.createLinearGradient(i,o,r,a)}(t,e,n),r=e.colorStops,o=0;o0&&(e=i.lineDash,n=i.lineWidth,e&&"solid"!==e&&n>0?"dashed"===e?[4*n,2*n]:"dotted"===e?[n]:j(e)?[e]:Y(e)?e:null:null),o=i.lineDashOffset;if(r){var a=i.strokeNoScale&&t.getLineScale?t.getLineScale():1;a&&1!==a&&(r=z(r,(function(t){return t/a})),o/=a)}return[r,o]}var Ky=new os(!0);function $y(t){var e=t.stroke;return!(null==e||"none"===e||!(t.lineWidth>0))}function Jy(t){return"string"==typeof t&&"none"!==t}function Qy(t){var e=t.fill;return null!=e&&"none"!==e}function tv(t,e){if(null!=e.fillOpacity&&1!==e.fillOpacity){var n=t.globalAlpha;t.globalAlpha=e.fillOpacity*e.opacity,t.fill(),t.globalAlpha=n}else t.fill()}function ev(t,e){if(null!=e.strokeOpacity&&1!==e.strokeOpacity){var n=t.globalAlpha;t.globalAlpha=e.strokeOpacity*e.opacity,t.stroke(),t.globalAlpha=n}else t.stroke()}function nv(t,e,n){var i=ia(e.image,e.__image,n);if(oa(i)){var r=t.createPattern(i,e.repeat||"repeat");if("function"==typeof DOMMatrix&&r&&r.setTransform){var o=new DOMMatrix;o.translateSelf(e.x||0,e.y||0),o.rotateSelf(0,0,(e.rotation||0)*wt),o.scaleSelf(e.scaleX||1,e.scaleY||1),r.setTransform(o)}return r}}var iv=["shadowBlur","shadowOffsetX","shadowOffsetY"],rv=[["lineCap","butt"],["lineJoin","miter"],["miterLimit",10]];function ov(t,e,n,i,r){var o=!1;if(!i&&e===(n=n||{}))return!1;if(i||e.opacity!==n.opacity){lv(t,r),o=!0;var a=Math.max(Math.min(e.opacity,1),0);t.globalAlpha=isNaN(a)?xa.opacity:a}(i||e.blend!==n.blend)&&(o||(lv(t,r),o=!0),t.globalCompositeOperation=e.blend||xa.blend);for(var s=0;s0&&t.unfinished);t.unfinished||this._zr.flush()}}},e.prototype.getDom=function(){return this._dom},e.prototype.getId=function(){return this.id},e.prototype.getZr=function(){return this._zr},e.prototype.isSSR=function(){return this._ssr},e.prototype.setOption=function(t,e,n){if(!this[Iv])if(this._disposed)nm(this.id);else{var i,r,o;if(q(e)&&(n=e.lazyUpdate,i=e.silent,r=e.replaceMerge,o=e.transition,e=e.notMerge),this[Iv]=!0,!this._model||e){var a=new bd(this._api),s=this._theme,l=this._model=new pd;l.scheduler=this._scheduler,l.ssr=this._ssr,l.init(null,null,null,s,this._locale,a)}this._model.setOption(t,{replaceMerge:r},am);var u={seriesTransition:o,optionChanged:!0};if(n)this[Tv]={silent:i,updateParams:u},this[Iv]=!1,this.getZr().wakeUp();else{try{Ov(this),Ev.update.call(this,null,u)}catch(t){throw this[Tv]=null,this[Iv]=!1,t}this._ssr||this._zr.flush(),this[Tv]=null,this[Iv]=!1,Fv.call(this,i),Gv.call(this,i)}}},e.prototype.setTheme=function(){yo()},e.prototype.getModel=function(){return this._model},e.prototype.getOption=function(){return this._model&&this._model.getOption()},e.prototype.getWidth=function(){return this._zr.getWidth()},e.prototype.getHeight=function(){return this._zr.getHeight()},e.prototype.getDevicePixelRatio=function(){return this._zr.painter.dpr||r.hasGlobalWindow&&window.devicePixelRatio||1},e.prototype.getRenderedCanvas=function(t){return this.renderToCanvas(t)},e.prototype.renderToCanvas=function(t){t=t||{};var e=this._zr.painter;return e.getRenderedCanvas({backgroundColor:t.backgroundColor||this._model.get("backgroundColor"),pixelRatio:t.pixelRatio||this.getDevicePixelRatio()})},e.prototype.renderToSVGString=function(t){t=t||{};var e=this._zr.painter;return e.renderToString({useViewBox:t.useViewBox})},e.prototype.getSvgDataURL=function(){if(r.svgSupported){var t=this._zr;return E(t.storage.getDisplayList(),(function(t){t.stopAnimation(null,!0)})),t.painter.toDataURL()}},e.prototype.getDataURL=function(t){if(!this._disposed){var e=(t=t||{}).excludeComponents,n=this._model,i=[],r=this;E(e,(function(t){n.eachComponent({mainType:t},(function(t){var e=r._componentsMap[t.__viewId];e.group.ignore||(i.push(e),e.group.ignore=!0)}))}));var o="svg"===this._zr.painter.getType()?this.getSvgDataURL():this.renderToCanvas(t).toDataURL("image/"+(t&&t.type||"png"));return E(i,(function(t){t.group.ignore=!1})),o}nm(this.id)},e.prototype.getConnectedDataURL=function(t){if(!this._disposed){var e="svg"===t.type,n=this.group,i=Math.min,r=Math.max,o=1/0;if(cm[n]){var a=o,s=o,l=-1/0,u=-1/0,c=[],p=t&&t.pixelRatio||this.getDevicePixelRatio();E(hm,(function(o,h){if(o.group===n){var p=e?o.getZr().painter.getSvgDom().innerHTML:o.renderToCanvas(T(t)),d=o.getDom().getBoundingClientRect();a=i(d.left,a),s=i(d.top,s),l=r(d.right,l),u=r(d.bottom,u),c.push({dom:p,left:d.left,top:d.top})}}));var d=(l*=p)-(a*=p),f=(u*=p)-(s*=p),g=h.createCanvas(),y=Gr(g,{renderer:e?"svg":"canvas"});if(y.resize({width:d,height:f}),e){var v="";return E(c,(function(t){var e=t.left-a,n=t.top-s;v+=''+t.dom+""})),y.painter.getSvgRoot().innerHTML=v,t.connectedBackgroundColor&&y.painter.setBackgroundColor(t.connectedBackgroundColor),y.refreshImmediately(),y.painter.toDataURL()}return t.connectedBackgroundColor&&y.add(new zs({shape:{x:0,y:0,width:d,height:f},style:{fill:t.connectedBackgroundColor}})),E(c,(function(t){var e=new ks({style:{x:t.left*p-a,y:t.top*p-s,image:t.dom}});y.add(e)})),y.refreshImmediately(),g.toDataURL("image/"+(t&&t.type||"png"))}return this.getDataURL(t)}nm(this.id)},e.prototype.convertToPixel=function(t,e){return zv(this,"convertToPixel",t,e)},e.prototype.convertFromPixel=function(t,e){return zv(this,"convertFromPixel",t,e)},e.prototype.containPixel=function(t,e){var n;if(!this._disposed)return E(No(this._model,t),(function(t,i){i.indexOf("Models")>=0&&E(t,(function(t){var r=t.coordinateSystem;if(r&&r.containPoint)n=n||!!r.containPoint(e);else if("seriesModels"===i){var o=this._chartsMap[t.__viewId];o&&o.containPoint&&(n=n||o.containPoint(e,t))}else 0}),this)}),this),!!n;nm(this.id)},e.prototype.getVisual=function(t,e){var n=No(this._model,t,{defaultMainType:"series"}),i=n.seriesModel;var r=i.getData(),o=n.hasOwnProperty("dataIndexInside")?n.dataIndexInside:n.hasOwnProperty("dataIndex")?r.indexOfRawIndex(n.dataIndex):null;return null!=o?Iy(r,o,e):Ty(r,e)},e.prototype.getViewOfComponentModel=function(t){return this._componentsMap[t.__viewId]},e.prototype.getViewOfSeriesModel=function(t){return this._chartsMap[t.__viewId]},e.prototype._initEvents=function(){var t,e,n,i=this;E(em,(function(t){var e=function(e){var n,r=i.getModel(),o=e.target,a="globalout"===t;if(a?n={}:o&&ky(o,(function(t){var e=Qs(t);if(e&&null!=e.dataIndex){var i=e.dataModel||r.getSeriesByIndex(e.seriesIndex);return n=i&&i.getDataParams(e.dataIndex,e.dataType,o)||{},!0}if(e.eventData)return n=A({},e.eventData),!0}),!0),n){var s=n.componentType,l=n.componentIndex;"markLine"!==s&&"markPoint"!==s&&"markArea"!==s||(s="series",l=n.seriesIndex);var u=s&&null!=l&&r.getComponent(s,l),h=u&&i["series"===u.mainType?"_chartsMap":"_componentsMap"][u.__viewId];0,n.event=e,n.type=t,i._$eventProcessor.eventInfo={targetEl:o,packedEvent:n,model:u,view:h},i.trigger(t,n)}};e.zrEventfulCallAtLast=!0,i._zr.on(t,e,i)})),E(rm,(function(t,e){i._messageCenter.on(e,(function(t){this.trigger(e,t)}),i)})),E(["selectchanged"],(function(t){i._messageCenter.on(t,(function(e){this.trigger(t,e)}),i)})),t=this._messageCenter,e=this,n=this._api,t.on("selectchanged",(function(t){var i=n.getModel();t.isFromClick?(Ay("map","selectchanged",e,i,t),Ay("pie","selectchanged",e,i,t)):"select"===t.fromAction?(Ay("map","selected",e,i,t),Ay("pie","selected",e,i,t)):"unselect"===t.fromAction&&(Ay("map","unselected",e,i,t),Ay("pie","unselected",e,i,t))}))},e.prototype.isDisposed=function(){return this._disposed},e.prototype.clear=function(){this._disposed?nm(this.id):this.setOption({series:[]},!0)},e.prototype.dispose=function(){if(this._disposed)nm(this.id);else{this._disposed=!0,this.getDom()&&Fo(this.getDom(),fm,"");var t=this,e=t._api,n=t._model;E(t._componentsViews,(function(t){t.dispose(n,e)})),E(t._chartsViews,(function(t){t.dispose(n,e)})),t._zr.dispose(),t._dom=t._model=t._chartsMap=t._componentsMap=t._chartsViews=t._componentsViews=t._scheduler=t._api=t._zr=t._throttledZrFlush=t._theme=t._coordSysMgr=t._messageCenter=null,delete hm[t.id]}},e.prototype.resize=function(t){if(!this[Iv])if(this._disposed)nm(this.id);else{this._zr.resize(t);var e=this._model;if(this._loadingFX&&this._loadingFX.resize(),e){var n=e.resetOption("media"),i=t&&t.silent;this[Tv]&&(null==i&&(i=this[Tv].silent),n=!0,this[Tv]=null),this[Iv]=!0;try{n&&Ov(this),Ev.update.call(this,{type:"resize",animation:A({duration:0},t&&t.animation)})}catch(t){throw this[Iv]=!1,t}this[Iv]=!1,Fv.call(this,i),Gv.call(this,i)}}},e.prototype.showLoading=function(t,e){if(this._disposed)nm(this.id);else if(q(t)&&(e=t,t=""),t=t||"default",this.hideLoading(),um[t]){var n=um[t](this._api,e),i=this._zr;this._loadingFX=n,i.add(n)}},e.prototype.hideLoading=function(){this._disposed?nm(this.id):(this._loadingFX&&this._zr.remove(this._loadingFX),this._loadingFX=null)},e.prototype.makeActionFromEvent=function(t){var e=A({},t);return e.type=rm[t.type],e},e.prototype.dispatchAction=function(t,e){if(this._disposed)nm(this.id);else if(q(e)||(e={silent:!!e}),im[t.type]&&this._model)if(this[Iv])this._pendingActions.push(t);else{var n=e.silent;Bv.call(this,t,n);var i=e.flush;i?this._zr.flush():!1!==i&&r.browser.weChat&&this._throttledZrFlush(),Fv.call(this,n),Gv.call(this,n)}},e.prototype.updateLabelLayout=function(){xv.trigger("series:layoutlabels",this._model,this._api,{updatedSeries:[]})},e.prototype.appendData=function(t){if(this._disposed)nm(this.id);else{var e=t.seriesIndex,n=this.getModel().getSeriesByIndex(e);0,n.appendData(t),this._scheduler.unfinished=!0,this.getZr().wakeUp()}},e.internalField=function(){function t(t){t.clearColorPalette(),t.eachSeries((function(t){t.clearColorPalette()}))}function e(t){for(var e=[],n=t.currentStates,i=0;i0?{duration:o,delay:i.get("delay"),easing:i.get("easing")}:null;n.eachRendered((function(t){if(t.states&&t.states.emphasis){if(yh(t))return;if(t instanceof Is&&function(t){var e=il(t);e.normalFill=t.style.fill,e.normalStroke=t.style.stroke;var n=t.states.select||{};e.selectFill=n.style&&n.style.fill||null,e.selectStroke=n.style&&n.style.stroke||null}(t),t.__dirty){var n=t.prevStates;n&&t.useStates(n)}if(r){t.stateTransition=a;var i=t.getTextContent(),o=t.getTextGuideLine();i&&(i.stateTransition=a),o&&(o.stateTransition=a)}t.__dirty&&e(t)}}))}Ov=function(t){var e=t._scheduler;e.restorePipelines(t._model),e.prepareStageTasks(),Rv(t,!0),Rv(t,!1),e.plan()},Rv=function(t,e){for(var n=t._model,i=t._scheduler,r=e?t._componentsViews:t._chartsViews,o=e?t._componentsMap:t._chartsMap,a=t._zr,s=t._api,l=0;le.get("hoverLayerThreshold")&&!r.node&&!r.worker&&e.eachSeries((function(e){if(!e.preventUsingHoverLayer){var n=t._chartsMap[e.__viewId];n.__alive&&n.eachRendered((function(t){t.states.emphasis&&(t.states.emphasis.hoverLayer=!0)}))}}))}(t,e),xv.trigger("series:afterupdate",e,n,l)},qv=function(t){t[Cv]=!0,t.getZr().wakeUp()},Kv=function(t){t[Cv]&&(t.getZr().storage.traverse((function(t){yh(t)||e(t)})),t[Cv]=!1)},Zv=function(t){return new(function(e){function i(){return null!==e&&e.apply(this,arguments)||this}return n(i,e),i.prototype.getCoordinateSystems=function(){return t._coordSysMgr.getCoordinateSystems()},i.prototype.getComponentByElement=function(e){for(;e;){var n=e.__ecComponentInfo;if(null!=n)return t._model.getComponent(n.mainType,n.index);e=e.parent}},i.prototype.enterEmphasis=function(e,n){kl(e,n),qv(t)},i.prototype.leaveEmphasis=function(e,n){Ll(e,n),qv(t)},i.prototype.enterBlur=function(e){Pl(e),qv(t)},i.prototype.leaveBlur=function(e){Ol(e),qv(t)},i.prototype.enterSelect=function(e){Rl(e),qv(t)},i.prototype.leaveSelect=function(e){Nl(e),qv(t)},i.prototype.getModel=function(){return t.getModel()},i.prototype.getViewOfComponentModel=function(e){return t.getViewOfComponentModel(e)},i.prototype.getViewOfSeriesModel=function(e){return t.getViewOfSeriesModel(e)},i}(vd))(t)},jv=function(t){function e(t,e){for(var n=0;n=0)){Dm.push(n);var o=Jg.wrapStageHandler(n,r);o.__prio=e,o.__raw=n,t.push(o)}}function km(t,e){um[t]=e}function Lm(t,e,n){var i=bv("registerMap");i&&i(t,e,n)}var Pm=function(t){var e=(t=T(t)).type,n="";e||vo(n);var i=e.split(":");2!==i.length&&vo(n);var r=!1;"echarts"===i[0]&&(e=i[1],r=!0),t.__isBuiltIn=r,Nf.set(e,t)};Cm(wv,Zg),Cm(Sv,qg),Cm(Sv,Kg),Cm(wv,Sy),Cm(Sv,My),Cm(7e3,(function(t,e){t.eachRawSeries((function(n){if(!t.isSeriesFiltered(n)){var i=n.getData();i.hasItemVisual()&&i.each((function(t){var n=i.getItemVisual(t,"decal");n&&(i.ensureUniqueItemVisual(t,"style").decal=gv(n,e))}));var r=i.getVisual("decal");if(r)i.getVisual("style").decal=gv(r,e)}}))})),xm(Wd),_m(900,(function(t){var e=yt();t.eachSeries((function(t){var n=t.get("stack");if(n){var i=e.get(n)||e.set(n,[]),r=t.getData(),o={stackResultDimension:r.getCalculationInfo("stackResultDimension"),stackedOverDimension:r.getCalculationInfo("stackedOverDimension"),stackedDimension:r.getCalculationInfo("stackedDimension"),stackedByDimension:r.getCalculationInfo("stackedByDimension"),isStackedByIndex:r.getCalculationInfo("isStackedByIndex"),data:r,seriesModel:t};if(!o.stackedDimension||!o.isStackedByIndex&&!o.stackedByDimension)return;i.length&&r.setCalculationInfo("stackedOnSeries",i[i.length-1].seriesModel),i.push(o)}})),e.each(Hd)})),km("default",(function(t,e){k(e=e||{},{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 zr,i=new zs({style:{fill:e.maskColor},zlevel:e.zlevel,z:1e4});n.add(i);var r,o=new Fs({style:{text:e.text,fill:e.textColor,fontSize:e.fontSize,fontWeight:e.fontWeight,fontStyle:e.fontStyle,fontFamily:e.fontFamily},zlevel:e.zlevel,z:10001}),a=new zs({style:{fill:"none"},textContent:o,textConfig:{position:"right",distance:10},zlevel:e.zlevel,z:10001});return n.add(a),e.showSpinner&&((r=new Qu({shape:{startAngle:-$g/2,endAngle:-$g/2+.1,r:e.spinnerRadius},style:{stroke:e.color,lineCap:"round",lineWidth:e.lineWidth},zlevel:e.zlevel,z:10001})).animateShape(!0).when(1e3,{endAngle:3*$g/2}).start("circularInOut"),r.animateShape(!0).when(1e3,{startAngle:3*$g/2}).delay(300).start("circularInOut"),n.add(r)),n.resize=function(){var n=o.getBoundingRect().width,s=e.showSpinner?e.spinnerRadius:0,l=(t.getWidth()-2*s-(e.showSpinner&&n?10:0)-n)/2-(e.showSpinner&&n?0:5+n/2)+(e.showSpinner?0:n/2)+(n?0:s),u=t.getHeight()/2;e.showSpinner&&r.setShape({cx:l,cy:u}),a.setShape({x:l-s,y:u-s,width:2*s,height:2*s}),i.setShape({x:0,y:0,width:t.getWidth(),height:t.getHeight()})},n.resize(),n})),Mm({type:ll,event:ll,update:ll},bt),Mm({type:ul,event:ul,update:ul},bt),Mm({type:hl,event:hl,update:hl},bt),Mm({type:cl,event:cl,update:cl},bt),Mm({type:pl,event:pl,update:pl},bt),mm("light",fy),mm("dark",xy);var Om=[],Rm={registerPreprocessor:xm,registerProcessor:_m,registerPostInit:bm,registerPostUpdate:wm,registerUpdateLifecycle:Sm,registerAction:Mm,registerCoordinateSystem:Im,registerLayout:Tm,registerVisual:Cm,registerTransform:Pm,registerLoading:km,registerMap:Lm,registerImpl:function(t,e){_v[t]=e},PRIORITY:Mv,ComponentModel:Rp,ComponentView:Tg,SeriesModel:mg,ChartView:kg,registerComponentModel:function(t){Rp.registerClass(t)},registerComponentView:function(t){Tg.registerClass(t)},registerSeriesModel:function(t){mg.registerClass(t)},registerChartView:function(t){kg.registerClass(t)},registerSubTypeDefaulter:function(t,e){Rp.registerSubTypeDefaulter(t,e)},registerPainter:function(t,e){Wr(t,e)}};function Nm(t){Y(t)?E(t,(function(t){Nm(t)})):P(Om,t)>=0||(Om.push(t),X(t)&&(t={install:t}),t.install(Rm))}function Em(t){return null==t?0:t.length||1}function zm(t){return t}var Vm=function(){function t(t,e,n,i,r,o){this._old=t,this._new=e,this._oldKeyGetter=n||zm,this._newKeyGetter=i||zm,this.context=r,this._diffModeMultiple="multiple"===o}return t.prototype.add=function(t){return this._add=t,this},t.prototype.update=function(t){return this._update=t,this},t.prototype.updateManyToOne=function(t){return this._updateManyToOne=t,this},t.prototype.updateOneToMany=function(t){return this._updateOneToMany=t,this},t.prototype.updateManyToMany=function(t){return this._updateManyToMany=t,this},t.prototype.remove=function(t){return this._remove=t,this},t.prototype.execute=function(){this[this._diffModeMultiple?"_executeMultiple":"_executeOneToOne"]()},t.prototype._executeOneToOne=function(){var t=this._old,e=this._new,n={},i=new Array(t.length),r=new Array(e.length);this._initIndexMap(t,null,i,"_oldKeyGetter"),this._initIndexMap(e,n,r,"_newKeyGetter");for(var o=0;o1){var u=s.shift();1===s.length&&(n[a]=s[0]),this._update&&this._update(u,o)}else 1===l?(n[a]=null,this._update&&this._update(s,o)):this._remove&&this._remove(o)}this._performRestAdd(r,n)},t.prototype._executeMultiple=function(){var t=this._old,e=this._new,n={},i={},r=[],o=[];this._initIndexMap(t,n,r,"_oldKeyGetter"),this._initIndexMap(e,i,o,"_newKeyGetter");for(var a=0;a1&&1===c)this._updateManyToOne&&this._updateManyToOne(u,l),i[s]=null;else if(1===h&&c>1)this._updateOneToMany&&this._updateOneToMany(u,l),i[s]=null;else if(1===h&&1===c)this._update&&this._update(u,l),i[s]=null;else if(h>1&&c>1)this._updateManyToMany&&this._updateManyToMany(u,l),i[s]=null;else if(h>1)for(var p=0;p1)for(var a=0;a30}var Km,$m,Jm,Qm,tx,ex,nx,ix=q,rx=z,ox="undefined"==typeof Int32Array?Array:Int32Array,ax=["hasItemOption","_nameList","_idList","_invertedIndicesMap","_dimSummary","userOutput","_rawData","_dimValueGetter","_nameDimIdx","_idDimIdx","_nameRepeatCount"],sx=["_approximateExtent"],lx=function(){function t(t,e){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;Um(t)?(n=t.dimensions,this._dimOmitted=t.isDimensionOmitted(),this._schema=t):(i=!0,n=t),n=n||["x","y"];for(var r={},o=[],a={},s=!1,l={},u=0;u=e)){var n=this._store.getProvider();this._updateOrdinalMeta();var i=this._nameList,r=this._idList;if(n.getSource().sourceFormat===Bp&&!n.pure)for(var o=[],a=t;a0},t.prototype.ensureUniqueItemVisual=function(t,e){var n=this._itemVisuals,i=n[t];i||(i=n[t]={});var r=i[e];return null==r&&(Y(r=this.getVisual(e))?r=r.slice():ix(r)&&(r=A({},r)),i[e]=r),r},t.prototype.setItemVisual=function(t,e,n){var i=this._itemVisuals[t]||{};this._itemVisuals[t]=i,ix(e)?A(i,e):i[e]=n},t.prototype.clearAllVisual=function(){this._visual={},this._itemVisuals=[]},t.prototype.setLayout=function(t,e){ix(t)?A(this._layout,t):this._layout[t]=e},t.prototype.getLayout=function(t){return this._layout[t]},t.prototype.getItemLayout=function(t){return this._itemLayouts[t]},t.prototype.setItemLayout=function(t,e,n){this._itemLayouts[t]=n?A(this._itemLayouts[t]||{},e):e},t.prototype.clearItemLayouts=function(){this._itemLayouts.length=0},t.prototype.setItemGraphicEl=function(t,e){var n=this.hostModel&&this.hostModel.seriesIndex;tl(n,this.dataType,t,e),this._graphicEls[t]=e},t.prototype.getItemGraphicEl=function(t){return this._graphicEls[t]},t.prototype.eachItemGraphicEl=function(t,e){E(this._graphicEls,(function(n,i){n&&t&&t.call(e,n,i)}))},t.prototype.cloneShallow=function(e){return e||(e=new t(this._schema?this._schema:rx(this.dimensions,this._getDimInfo,this),this.hostModel)),tx(e,this),e._store=this._store,e},t.prototype.wrapMethod=function(t,e){var n=this[t];X(n)&&(this.__wrappedMethods=this.__wrappedMethods||[],this.__wrappedMethods.push(t),this[t]=function(){var t=n.apply(this,arguments);return e.apply(this,[t].concat(at(arguments)))})},t.internalField=(Km=function(t){var e=t._invertedIndicesMap;E(e,(function(n,i){var r=t._dimInfos[i],o=r.ordinalMeta,a=t._store;if(o){n=e[i]=new ox(o.categories.length);for(var s=0;s1&&(s+="__ec__"+u),i[e]=s}})),t}();function ux(t,e){Kd(t)||(t=Jd(t));var n=(e=e||{}).coordDimensions||[],i=e.dimensionsDefine||t.dimensionsDefine||[],r=yt(),o=[],a=function(t,e,n,i){var r=Math.max(t.dimensionsDetectedCount||1,e.length,n.length,i||0);return E(e,(function(t){var e;q(t)&&(e=t.dimsDef)&&(r=Math.max(r,e.length))})),r}(t,n,i,e.dimensionsCount),s=e.canOmitUnusedDimensions&&qm(a),l=i===t.dimensionsDefine,u=l?jm(t):Zm(i),h=e.encodeDefine;!h&&e.encodeDefaulter&&(h=e.encodeDefaulter(t,a));for(var c=yt(h),p=new Wf(a),d=0;d0&&(i.name=r+(o-1)),o++,e.set(r,o)}}(o),new Xm({source:t,dimensions:o,fullDimensionCount:a,dimensionOmitted:s})}function hx(t,e,n){if(n||e.hasKey(t)){for(var i=0;e.hasKey(t+i);)i++;t+=i}return e.set(t,!0),t}var cx=function(t){this.coordSysDims=[],this.axisMap=yt(),this.categoryAxisMap=yt(),this.coordSysName=t};var px={cartesian2d:function(t,e,n,i){var r=t.getReferringComponents("xAxis",zo).models[0],o=t.getReferringComponents("yAxis",zo).models[0];e.coordSysDims=["x","y"],n.set("x",r),n.set("y",o),dx(r)&&(i.set("x",r),e.firstCategoryDimIndex=0),dx(o)&&(i.set("y",o),null==e.firstCategoryDimIndex&&(e.firstCategoryDimIndex=1))},singleAxis:function(t,e,n,i){var r=t.getReferringComponents("singleAxis",zo).models[0];e.coordSysDims=["single"],n.set("single",r),dx(r)&&(i.set("single",r),e.firstCategoryDimIndex=0)},polar:function(t,e,n,i){var r=t.getReferringComponents("polar",zo).models[0],o=r.findAxisModel("radiusAxis"),a=r.findAxisModel("angleAxis");e.coordSysDims=["radius","angle"],n.set("radius",o),n.set("angle",a),dx(o)&&(i.set("radius",o),e.firstCategoryDimIndex=0),dx(a)&&(i.set("angle",a),null==e.firstCategoryDimIndex&&(e.firstCategoryDimIndex=1))},geo:function(t,e,n,i){e.coordSysDims=["lng","lat"]},parallel:function(t,e,n,i){var r=t.ecModel,o=r.getComponent("parallel",t.get("parallelIndex")),a=e.coordSysDims=o.dimensions.slice();E(o.parallelAxisIndex,(function(t,o){var s=r.getComponent("parallelAxis",t),l=a[o];n.set(l,s),dx(s)&&(i.set(l,s),null==e.firstCategoryDimIndex&&(e.firstCategoryDimIndex=o))}))}};function dx(t){return"category"===t.get("type")}function fx(t,e,n){var i,r,o,a=(n=n||{}).byIndex,s=n.stackedCoordDimension;!function(t){return!Um(t.schema)}(e)?(r=e.schema,i=r.dimensions,o=e.store):i=e;var l,u,h,c,p=!(!t||!t.get("stack"));if(E(i,(function(t,e){U(t)&&(i[e]=t={name:t}),p&&!t.isExtraCoord&&(a||l||!t.ordinalMeta||(l=t),u||"ordinal"===t.type||"time"===t.type||s&&s!==t.coordDim||(u=t))})),!u||a||l||(a=!0),u){h="__\0ecstackresult_"+t.id,c="__\0ecstackedover_"+t.id,l&&(l.createInvertedIndices=!0);var d=u.coordDim,f=u.type,g=0;E(i,(function(t){t.coordDim===d&&g++}));var y={name:h,coordDim:d,coordDimIndex:g,type:f,isExtraCoord:!0,isCalculationCoord:!0,storeDimIndex:i.length},v={name:c,coordDim:c,coordDimIndex:g+1,type:f,isExtraCoord:!0,isCalculationCoord:!0,storeDimIndex:i.length+1};r?(o&&(y.storeDimIndex=o.ensureCalculationDimension(c,f),v.storeDimIndex=o.ensureCalculationDimension(h,f)),r.appendCalculationDimension(y),r.appendCalculationDimension(v)):(i.push(y),i.push(v))}return{stackedDimension:u&&u.name,stackedByDimension:l&&l.name,isStackedByIndex:a,stackedOverDimension:c,stackResultDimension:h}}function gx(t,e){return!!e&&e===t.getCalculationInfo("stackedDimension")}function yx(t,e){return gx(t,e)?t.getCalculationInfo("stackResultDimension"):e}function vx(t,e,n){n=n||{};var i,r=e.getSourceManager(),o=!1;t?(o=!0,i=Jd(t)):o=(i=r.getSource()).sourceFormat===Bp;var a=function(t){var e=t.get("coordinateSystem"),n=new cx(e),i=px[e];if(i)return i(t,n,n.axisMap,n.categoryAxisMap),n}(e),s=function(t,e){var n,i=t.get("coordinateSystem"),r=xd.get(i);return e&&e.coordSysDims&&(n=z(e.coordSysDims,(function(t){var n={name:t},i=e.axisMap.get(t);if(i){var r=i.get("type");n.type=Gm(r)}return n}))),n||(n=r&&(r.getDimensionsInfo?r.getDimensionsInfo():r.dimensions.slice())||["x","y"]),n}(e,a),l=n.useEncodeDefaulter,u=X(l)?l:l?H($p,s,e):null,h=ux(i,{coordDimensions:s,generateCoord:n.generateCoord,encodeDefine:e.getEncode(),encodeDefaulter:u,canOmitUnusedDimensions:!o}),c=function(t,e,n){var i,r;return n&&E(t,(function(t,o){var a=t.coordDim,s=n.categoryAxisMap.get(a);s&&(null==i&&(i=o),t.ordinalMeta=s.getOrdinalMeta(),e&&(t.createInvertedIndices=!0)),null!=t.otherDims.itemName&&(r=!0)})),r||null==i||(t[i].otherDims.itemName=0),i}(h.dimensions,n.createInvertedIndices,a),p=o?null:r.getSharedDataStore(h),d=fx(e,{schema:h,store:p}),f=new lx(h,e);f.setCalculationInfo(d);var g=null!=c&&function(t){if(t.sourceFormat===Bp){var e=function(t){var e=0;for(;ee[1]&&(e[1]=t[1])},t.prototype.unionExtentFromData=function(t,e){this.unionExtent(t.getApproximateExtent(e))},t.prototype.getExtent=function(){return this._extent.slice()},t.prototype.setExtent=function(t,e){var n=this._extent;isNaN(t)||(n[0]=t),isNaN(e)||(n[1]=e)},t.prototype.isInExtentRange=function(t){return this._extent[0]<=t&&this._extent[1]>=t},t.prototype.isBlank=function(){return this._isBlank},t.prototype.setBlank=function(t){this._isBlank=t},t}();$o(mx);var xx=0,_x=function(){function t(t){this.categories=t.categories||[],this._needCollect=t.needCollect,this._deduplication=t.deduplication,this.uid=++xx}return t.createByAxisModel=function(e){var n=e.option,i=n.data,r=i&&z(i,bx);return new t({categories:r,needCollect:!r,deduplication:!1!==n.dedplication})},t.prototype.getOrdinal=function(t){return this._getOrCreateMap().get(t)},t.prototype.parseAndCollect=function(t){var e,n=this._needCollect;if(!U(t)&&!n)return t;if(n&&!this._deduplication)return e=this.categories.length,this.categories[e]=t,e;var i=this._getOrCreateMap();return null==(e=i.get(t))&&(n?(e=this.categories.length,this.categories[e]=t,i.set(t,e)):e=NaN),e},t.prototype._getOrCreateMap=function(){return this._map||(this._map=yt(this.categories))},t}();function bx(t){return q(t)&&null!=t.value?t.value:t+""}function Sx(t){return"interval"===t.type||"log"===t.type}function Mx(t,e,n,i){var r={},o=t[1]-t[0],a=r.interval=so(o/e,!0);null!=n&&ai&&(a=r.interval=i);var s=r.intervalPrecision=Tx(a);return function(t,e){!isFinite(t[0])&&(t[0]=e[0]),!isFinite(t[1])&&(t[1]=e[1]),Cx(t,0,e),Cx(t,1,e),t[0]>t[1]&&(t[0]=t[1])}(r.niceTickExtent=[Zr(Math.ceil(t[0]/a)*a,s),Zr(Math.floor(t[1]/a)*a,s)],t),r}function Ix(t){var e=Math.pow(10,ao(t)),n=t/e;return n?2===n?n=3:3===n?n=5:n*=2:n=1,Zr(n*e)}function Tx(t){return qr(t)+2}function Cx(t,e,n){t[e]=Math.max(Math.min(t[e],n[1]),n[0])}function Dx(t,e){return t>=e[0]&&t<=e[1]}function Ax(t,e){return e[1]===e[0]?.5:(t-e[0])/(e[1]-e[0])}function kx(t,e){return t*(e[1]-e[0])+e[0]}var Lx=function(t){function e(e){var n=t.call(this,e)||this;n.type="ordinal";var i=n.getSetting("ordinalMeta");return i||(i=new _x({})),Y(i)&&(i=new _x({categories:z(i,(function(t){return q(t)?t.value:t}))})),n._ordinalMeta=i,n._extent=n.getSetting("extent")||[0,i.categories.length-1],n}return n(e,t),e.prototype.parse=function(t){return null==t?NaN:U(t)?this._ordinalMeta.getOrdinal(t):Math.round(t)},e.prototype.contain=function(t){return Dx(t=this.parse(t),this._extent)&&null!=this._ordinalMeta.categories[t]},e.prototype.normalize=function(t){return Ax(t=this._getTickNumber(this.parse(t)),this._extent)},e.prototype.scale=function(t){return t=Math.round(kx(t,this._extent)),this.getRawOrdinalNumber(t)},e.prototype.getTicks=function(){for(var t=[],e=this._extent,n=e[0];n<=e[1];)t.push({value:n}),n++;return t},e.prototype.getMinorTicks=function(t){},e.prototype.setSortInfo=function(t){if(null!=t){for(var e=t.ordinalNumbers,n=this._ordinalNumbersByTick=[],i=this._ticksByOrdinalNumber=[],r=0,o=this._ordinalMeta.categories.length,a=Math.min(o,e.length);r=0&&t=0&&t=t},e.prototype.getOrdinalMeta=function(){return this._ordinalMeta},e.prototype.calcNiceTicks=function(){},e.prototype.calcNiceExtent=function(){},e.type="ordinal",e}(mx);mx.registerClass(Lx);var Px=Zr,Ox=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.type="interval",e._interval=0,e._intervalPrecision=2,e}return n(e,t),e.prototype.parse=function(t){return t},e.prototype.contain=function(t){return Dx(t,this._extent)},e.prototype.normalize=function(t){return Ax(t,this._extent)},e.prototype.scale=function(t){return kx(t,this._extent)},e.prototype.setExtent=function(t,e){var n=this._extent;isNaN(t)||(n[0]=parseFloat(t)),isNaN(e)||(n[1]=parseFloat(e))},e.prototype.unionExtent=function(t){var e=this._extent;t[0]e[1]&&(e[1]=t[1]),this.setExtent(e[0],e[1])},e.prototype.getInterval=function(){return this._interval},e.prototype.setInterval=function(t){this._interval=t,this._niceExtent=this._extent.slice(),this._intervalPrecision=Tx(t)},e.prototype.getTicks=function(t){var e=this._interval,n=this._extent,i=this._niceExtent,r=this._intervalPrecision,o=[];if(!e)return o;n[0]1e4)return[];var s=o.length?o[o.length-1].value:i[1];return n[1]>s&&(t?o.push({value:Px(s+e,r)}):o.push({value:n[1]})),o},e.prototype.getMinorTicks=function(t){for(var e=this.getTicks(!0),n=[],i=this.getExtent(),r=1;ri[0]&&h0&&(o=null===o?s:Math.min(o,s))}n[i]=o}}return n}(t),n=[];return E(t,(function(t){var i,r=t.coordinateSystem.getBaseAxis(),o=r.getExtent();if("category"===r.type)i=r.getBandWidth();else if("value"===r.type||"time"===r.type){var a=r.dim+"_"+r.index,s=e[a],l=Math.abs(o[1]-o[0]),u=r.scale.getExtent(),h=Math.abs(u[1]-u[0]);i=s?l/h*s:l}else{var c=t.getData();i=Math.abs(o[1]-o[0])/c.count()}var p=Ur(t.get("barWidth"),i),d=Ur(t.get("barMaxWidth"),i),f=Ur(t.get("barMinWidth")||(Ux(t)?.5:1),i),g=t.get("barGap"),y=t.get("barCategoryGap");n.push({bandWidth:i,barWidth:p,barMaxWidth:d,barMinWidth:f,barGap:g,barCategoryGap:y,axisKey:Bx(r),stackId:Vx(t)})})),Wx(n)}function Wx(t){var e={};E(t,(function(t,n){var i=t.axisKey,r=t.bandWidth,o=e[i]||{bandWidth:r,remainedWidth:r,autoWidthCount:0,categoryGap:null,gap:"20%",stacks:{}},a=o.stacks;e[i]=o;var s=t.stackId;a[s]||o.autoWidthCount++,a[s]=a[s]||{width:0,maxWidth:0};var l=t.barWidth;l&&!a[s].width&&(a[s].width=l,l=Math.min(o.remainedWidth,l),o.remainedWidth-=l);var u=t.barMaxWidth;u&&(a[s].maxWidth=u);var h=t.barMinWidth;h&&(a[s].minWidth=h);var c=t.barGap;null!=c&&(o.gap=c);var p=t.barCategoryGap;null!=p&&(o.categoryGap=p)}));var n={};return E(e,(function(t,e){n[e]={};var i=t.stacks,r=t.bandWidth,o=t.categoryGap;if(null==o){var a=G(i).length;o=Math.max(35-4*a,15)+"%"}var s=Ur(o,r),l=Ur(t.gap,1),u=t.remainedWidth,h=t.autoWidthCount,c=(u-s)/(h+(h-1)*l);c=Math.max(c,0),E(i,(function(t){var e=t.maxWidth,n=t.minWidth;if(t.width){i=t.width;e&&(i=Math.min(i,e)),n&&(i=Math.max(i,n)),t.width=i,u-=i+l*i,h--}else{var i=c;e&&ei&&(i=n),i!==c&&(t.width=i,u-=i+l*i,h--)}})),c=(u-s)/(h+(h-1)*l),c=Math.max(c,0);var p,d=0;E(i,(function(t,e){t.width||(t.width=c),p=t,d+=t.width*(1+l)})),p&&(d-=p.width*l);var f=-d/2;E(i,(function(t,i){n[e][i]=n[e][i]||{bandWidth:r,offset:f,width:t.width},f+=t.width*(1+l)}))})),n}function Hx(t,e){var n=Fx(t,e),i=Gx(n);E(n,(function(t){var e=t.getData(),n=t.coordinateSystem.getBaseAxis(),r=Vx(t),o=i[Bx(n)][r],a=o.offset,s=o.width;e.setLayout({bandWidth:o.bandWidth,offset:a,size:s})}))}function Yx(t){return{seriesType:t,plan:Cg(),reset:function(t){if(Xx(t)){var e=t.getData(),n=t.coordinateSystem,i=n.getBaseAxis(),r=n.getOtherAxis(i),o=e.getDimensionIndex(e.mapDimension(r.dim)),a=e.getDimensionIndex(e.mapDimension(i.dim)),s=t.get("showBackground",!0),l=e.mapDimension(r.dim),u=e.getCalculationInfo("stackResultDimension"),h=gx(e,l)&&!!e.getCalculationInfo("stackedOnSeries"),c=r.isHorizontal(),p=function(t,e){return e.toGlobalCoord(e.dataToCoord("log"===e.type?1:0))}(0,r),d=Ux(t),f=t.get("barMinHeight")||0,g=u&&e.getDimensionIndex(u),y=e.getLayout("size"),v=e.getLayout("offset");return{progress:function(t,e){for(var i,r=t.count,l=d&&Ex(3*r),u=d&&s&&Ex(3*r),m=d&&Ex(r),x=n.master.getRect(),_=c?x.width:x.height,b=e.getStore(),w=0;null!=(i=t.next());){var S=b.get(h?g:o,i),M=b.get(a,i),I=p,T=void 0;h&&(T=+S-b.get(o,i));var C=void 0,D=void 0,A=void 0,k=void 0;if(c){var L=n.dataToPoint([S,M]);if(h)I=n.dataToPoint([T,M])[0];C=I,D=L[1]+v,A=L[0]-I,k=y,Math.abs(A)0)for(var s=0;s=0;--s)if(l[u]){o=l[u];break}o=o||a.none}if(Y(o)){var h=null==t.level?0:t.level>=0?t.level:o.length+t.level;o=o[h=Math.min(h,o.length-1)]}}return qc(new Date(t.value),o,r,i)}(t,e,n,this.getSetting("locale"),i)},e.prototype.getTicks=function(){var t=this._interval,e=this._extent,n=[];if(!t)return n;n.push({value:e[0],level:0});var i=this.getSetting("useUTC"),r=function(t,e,n,i){var r=1e4,o=Xc,a=0;function s(t,e,n,r,o,a,s){for(var l=new Date(e),u=e,h=l[r]();u1&&0===u&&o.unshift({value:o[0].value-p})}}for(u=0;u=i[0]&&v<=i[1]&&c++)}var m=(i[1]-i[0])/e;if(c>1.5*m&&p>m/1.5)break;if(u.push(g),c>m||t===o[d])break}h=[]}}0;var x=B(z(u,(function(t){return B(t,(function(t){return t.value>=i[0]&&t.value<=i[1]&&!t.notAdd}))})),(function(t){return t.length>0})),_=[],b=x.length-1;for(d=0;dn&&(this._approxInterval=n);var o=jx.length,a=Math.min(function(t,e,n,i){for(;n>>1;t[r][1]16?16:t>7.5?7:t>3.5?4:t>1.5?2:1}function Kx(t){return(t/=2592e6)>6?6:t>3?3:t>2?2:1}function $x(t){return(t/=Vc)>12?12:t>6?6:t>3.5?4:t>2?2:1}function Jx(t,e){return(t/=e?zc:Ec)>30?30:t>20?20:t>15?15:t>10?10:t>5?5:t>2?2:1}function Qx(t){return so(t,!0)}function t_(t,e,n){var i=new Date(t);switch(Zc(e)){case"year":case"month":i[ap(n)](0);case"day":i[sp(n)](1);case"hour":i[lp(n)](0);case"minute":i[up(n)](0);case"second":i[hp(n)](0),i[cp(n)](0)}return i.getTime()}mx.registerClass(Zx);var e_=mx.prototype,n_=Ox.prototype,i_=Zr,r_=Math.floor,o_=Math.ceil,a_=Math.pow,s_=Math.log,l_=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.type="log",e.base=10,e._originalScale=new Ox,e._interval=0,e}return n(e,t),e.prototype.getTicks=function(t){var e=this._originalScale,n=this._extent,i=e.getExtent();return z(n_.getTicks.call(this,t),(function(t){var e=t.value,r=Zr(a_(this.base,e));return r=e===n[0]&&this._fixMin?h_(r,i[0]):r,{value:r=e===n[1]&&this._fixMax?h_(r,i[1]):r}}),this)},e.prototype.setExtent=function(t,e){var n=s_(this.base);t=s_(Math.max(0,t))/n,e=s_(Math.max(0,e))/n,n_.setExtent.call(this,t,e)},e.prototype.getExtent=function(){var t=this.base,e=e_.getExtent.call(this);e[0]=a_(t,e[0]),e[1]=a_(t,e[1]);var n=this._originalScale.getExtent();return this._fixMin&&(e[0]=h_(e[0],n[0])),this._fixMax&&(e[1]=h_(e[1],n[1])),e},e.prototype.unionExtent=function(t){this._originalScale.unionExtent(t);var e=this.base;t[0]=s_(t[0])/s_(e),t[1]=s_(t[1])/s_(e),e_.unionExtent.call(this,t)},e.prototype.unionExtentFromData=function(t,e){this.unionExtent(t.getApproximateExtent(e))},e.prototype.calcNiceTicks=function(t){t=t||10;var e=this._extent,n=e[1]-e[0];if(!(n===1/0||n<=0)){var i=oo(n);for(t/n*i<=.5&&(i*=10);!isNaN(i)&&Math.abs(i)<1&&Math.abs(i)>0;)i*=10;var r=[Zr(o_(e[0]/i)*i),Zr(r_(e[1]/i)*i)];this._interval=i,this._niceExtent=r}},e.prototype.calcNiceExtent=function(t){n_.calcNiceExtent.call(this,t),this._fixMin=t.fixMin,this._fixMax=t.fixMax},e.prototype.parse=function(t){return t},e.prototype.contain=function(t){return Dx(t=s_(t)/s_(this.base),this._extent)},e.prototype.normalize=function(t){return Ax(t=s_(t)/s_(this.base),this._extent)},e.prototype.scale=function(t){return t=kx(t,this._extent),a_(this.base,t)},e.type="log",e}(mx),u_=l_.prototype;function h_(t,e){return i_(t,qr(e))}u_.getMinorTicks=n_.getMinorTicks,u_.getLabel=n_.getLabel,mx.registerClass(l_);var c_=function(){function t(t,e,n){this._prepareParams(t,e,n)}return t.prototype._prepareParams=function(t,e,n){n[1]0&&s>0&&!l&&(a=0),a<0&&s<0&&!u&&(s=0));var c=this._determinedMin,p=this._determinedMax;return null!=c&&(a=c,l=!0),null!=p&&(s=p,u=!0),{min:a,max:s,minFixed:l,maxFixed:u,isBlank:h}},t.prototype.modifyDataMinMax=function(t,e){this[d_[t]]=e},t.prototype.setDeterminedMinMax=function(t,e){var n=p_[t];this[n]=e},t.prototype.freeze=function(){this.frozen=!0},t}(),p_={min:"_determinedMin",max:"_determinedMax"},d_={min:"_dataMin",max:"_dataMax"};function f_(t,e,n){var i=t.rawExtentInfo;return i||(i=new c_(t,e,n),t.rawExtentInfo=i,i)}function g_(t,e){return null==e?null:nt(e)?NaN:t.parse(e)}function y_(t,e){var n=t.type,i=f_(t,e,t.getExtent()).calculate();t.setBlank(i.isBlank);var r=i.min,o=i.max,a=e.ecModel;if(a&&"time"===n){var s=Fx("bar",a),l=!1;if(E(s,(function(t){l=l||t.getBaseAxis()===e.axis})),l){var u=Gx(s),h=function(t,e,n,i){var r=n.axis.getExtent(),o=r[1]-r[0],a=function(t,e,n){if(t&&e){var i=t[Bx(e)];return null!=i&&null!=n?i[Vx(n)]:i}}(i,n.axis);if(void 0===a)return{min:t,max:e};var s=1/0;E(a,(function(t){s=Math.min(t.offset,s)}));var l=-1/0;E(a,(function(t){l=Math.max(t.offset+t.width,l)})),s=Math.abs(s),l=Math.abs(l);var u=s+l,h=e-t,c=h/(1-(s+l)/o)-h;return e+=c*(l/u),t-=c*(s/u),{min:t,max:e}}(r,o,e,u);r=h.min,o=h.max}}return{extent:[r,o],fixMin:i.minFixed,fixMax:i.maxFixed}}function v_(t,e){var n=e,i=y_(t,n),r=i.extent,o=n.get("splitNumber");t instanceof l_&&(t.base=n.get("logBase"));var a=t.type,s=n.get("interval"),l="interval"===a||"time"===a;t.setExtent(r[0],r[1]),t.calcNiceExtent({splitNumber:o,fixMin:i.fixMin,fixMax:i.fixMax,minInterval:l?n.get("minInterval"):null,maxInterval:l?n.get("maxInterval"):null}),null!=s&&t.setInterval&&t.setInterval(s)}function m_(t,e){if(e=e||t.get("type"))switch(e){case"category":return new Lx({ordinalMeta:t.getOrdinalMeta?t.getOrdinalMeta():t.getCategories(),extent:[1/0,-1/0]});case"time":return new Zx({locale:t.ecModel.getLocaleModel(),useUTC:t.ecModel.get("useUTC")});default:return new(mx.getClass(e)||Ox)}}function x_(t){var e,n,i=t.getLabelModel().get("formatter"),r="category"===t.type?t.scale.getExtent()[0]:null;return"time"===t.scale.type?(n=i,function(e,i){return t.scale.getFormattedLabel(e,i,n)}):U(i)?function(e){return function(n){var i=t.scale.getLabel(n);return e.replace("{value}",null!=i?i:"")}}(i):X(i)?(e=i,function(n,i){return null!=r&&(i=n.value-r),e(__(t,n),i,null!=n.level?{level:n.level}:null)}):function(e){return t.scale.getLabel(e)}}function __(t,e){return"category"===t.type?t.scale.getLabel(e):e.value}function b_(t,e){var n=e*Math.PI/180,i=t.width,r=t.height,o=i*Math.abs(Math.cos(n))+Math.abs(r*Math.sin(n)),a=i*Math.abs(Math.sin(n))+Math.abs(r*Math.cos(n));return new ze(t.x,t.y,o,a)}function w_(t){var e=t.get("interval");return null==e?"auto":e}function S_(t){return"category"===t.type&&0===w_(t.getLabelModel())}function M_(t,e){var n={};return E(t.mapDimensionsAll(e),(function(e){n[yx(t,e)]=!0})),G(n)}var I_=function(){function t(){}return t.prototype.getNeedCrossZero=function(){return!this.option.scale},t.prototype.getCoordSysModel=function(){},t}();var T_={isDimensionStacked:gx,enableDataStack:fx,getStackedDimension:yx};var C_=Object.freeze({__proto__:null,createList:function(t){return vx(null,t)},getLayoutRect:Cp,dataStack:T_,createScale:function(t,e){var n=e;e instanceof Mc||(n=new Mc(e));var i=m_(n);return i.setExtent(t[0],t[1]),v_(i,n),i},mixinAxisModelCommonMethods:function(t){R(t,I_)},getECData:Qs,createTextStyle:function(t,e){return nc(t,null,null,"normal"!==(e=e||{}).state)},createDimensions:function(t,e){return ux(t,e).dimensions},createSymbol:Wy,enableHoverEmphasis:Hl});function D_(t,e){return Math.abs(t-e)<1e-8}function A_(t,e,n){var i=0,r=t[0];if(!r)return!1;for(var o=1;on&&(t=r,n=a)}if(t)return function(t){for(var e=0,n=0,i=0,r=t.length,o=t[r-1][0],a=t[r-1][1],s=0;s>1^-(1&s),l=l>>1^-(1&l),r=s+=r,o=l+=o,i.push([s/n,l/n])}return i}function F_(t,e){return z(B((t=function(t){if(!t.UTF8Encoding)return t;var e=t,n=e.UTF8Scale;return null==n&&(n=1024),E(e.features,(function(t){var e=t.geometry,i=e.encodeOffsets,r=e.coordinates;if(i)switch(e.type){case"LineString":e.coordinates=B_(r,i,n);break;case"Polygon":case"MultiLineString":V_(r,i,n);break;case"MultiPolygon":E(r,(function(t,e){return V_(t,i[e],n)}))}})),e.UTF8Encoding=!1,e}(t)).features,(function(t){return t.geometry&&t.properties&&t.geometry.coordinates.length>0})),(function(t){var n=t.properties,i=t.geometry,r=[];switch(i.type){case"Polygon":var o=i.coordinates;r.push(new R_(o[0],o.slice(1)));break;case"MultiPolygon":E(i.coordinates,(function(t){t[0]&&r.push(new R_(t[0],t.slice(1)))}));break;case"LineString":r.push(new N_([i.coordinates]));break;case"MultiLineString":r.push(new N_(i.coordinates))}var a=new E_(n[e||"name"],r,n.cp);return a.properties=n,a}))}var G_=Object.freeze({__proto__:null,linearMap:Xr,round:Zr,asc:jr,getPrecision:qr,getPrecisionSafe:Kr,getPixelPrecision:$r,getPercentWithPrecision:function(t,e,n){return t[e]&&Jr(t,n)[e]||0},MAX_SAFE_INTEGER:to,remRadian:eo,isRadianAroundZero:no,parseDate:ro,quantity:oo,quantityExponent:ao,nice:so,quantile:lo,reformIntervals:uo,isNumeric:co,numericToNumber:ho}),W_=Object.freeze({__proto__:null,parse:ro,format:qc}),H_=Object.freeze({__proto__:null,extendShape:Mh,extendPath:Th,makePath:Ah,makeImage:kh,mergePath:Ph,resizePath:Oh,createIcon:Hh,updateProps:fh,initProps:gh,getTransform:Eh,clipPointsByRect:Gh,clipRectByRect:Wh,registerShape:Ch,getShapeClass:Dh,Group:zr,Image:ks,Text:Fs,Circle:_u,Ellipse:wu,Sector:zu,Ring:Bu,Polygon:Wu,Polyline:Yu,Rect:zs,Line:Zu,BezierCurve:$u,Arc:Qu,IncrementalDisplayable:hh,CompoundPath:th,LinearGradient:nh,RadialGradient:ih,BoundingRect:ze}),Y_=Object.freeze({__proto__:null,addCommas:pp,toCamelCase:dp,normalizeCssArray:fp,encodeHTML:re,formatTpl:mp,getTooltipMarker:xp,formatTime:function(t,e,n){"week"!==t&&"month"!==t&&"quarter"!==t&&"half-year"!==t&&"year"!==t||(t="MM-dd\nyyyy");var i=ro(e),r=n?"getUTC":"get",o=i[r+"FullYear"](),a=i[r+"Month"]()+1,s=i[r+"Date"](),l=i[r+"Hours"](),u=i[r+"Minutes"](),h=i[r+"Seconds"](),c=i[r+"Milliseconds"]();return t=t.replace("MM",Uc(a,2)).replace("M",a).replace("yyyy",o).replace("yy",Uc(o%100+"",2)).replace("dd",Uc(s,2)).replace("d",s).replace("hh",Uc(l,2)).replace("h",l).replace("mm",Uc(u,2)).replace("m",u).replace("ss",Uc(h,2)).replace("s",h).replace("SSS",Uc(c,3))},capitalFirst:function(t){return t?t.charAt(0).toUpperCase()+t.substr(1):t},truncateText:sa,getTextRect:function(t,e,n,i,r,o,a,s){return new Fs({style:{text:t,font:e,align:n,verticalAlign:i,padding:r,rich:o,overflow:a?"truncate":null,lineHeight:s}}).getBoundingRect()}}),X_=Object.freeze({__proto__:null,map:z,each:E,indexOf:P,inherits:O,reduce:V,filter:B,bind:W,curry:H,isArray:Y,isString:U,isObject:q,isFunction:X,extend:A,defaults:k,clone:T,merge:C}),U_=Oo();function Z_(t){return"category"===t.type?function(t){var e=t.getLabelModel(),n=q_(t,e);return!e.get("show")||t.scale.isBlank()?{labels:[],labelCategoryInterval:n.labelCategoryInterval}:n}(t):function(t){var e=t.scale.getTicks(),n=x_(t);return{labels:z(e,(function(e,i){return{level:e.level,formattedLabel:n(e,i),rawLabel:t.scale.getLabel(e),tickValue:e.value}}))}}(t)}function j_(t,e){return"category"===t.type?function(t,e){var n,i,r=K_(t,"ticks"),o=w_(e),a=$_(r,o);if(a)return a;e.get("show")&&!t.scale.isBlank()||(n=[]);if(X(o))n=tb(t,o,!0);else if("auto"===o){var s=q_(t,t.getLabelModel());i=s.labelCategoryInterval,n=z(s.labels,(function(t){return t.tickValue}))}else n=Q_(t,i=o,!0);return J_(r,o,{ticks:n,tickCategoryInterval:i})}(t,e):{ticks:z(t.scale.getTicks(),(function(t){return t.value}))}}function q_(t,e){var n,i,r=K_(t,"labels"),o=w_(e),a=$_(r,o);return a||(X(o)?n=tb(t,o):(i="auto"===o?function(t){var e=U_(t).autoInterval;return null!=e?e:U_(t).autoInterval=t.calculateCategoryInterval()}(t):o,n=Q_(t,i)),J_(r,o,{labels:n,labelCategoryInterval:i}))}function K_(t,e){return U_(t)[e]||(U_(t)[e]=[])}function $_(t,e){for(var n=0;n1&&h/l>2&&(u=Math.round(Math.ceil(u/l)*l));var c=S_(t),p=a.get("showMinLabel")||c,d=a.get("showMaxLabel")||c;p&&u!==o[0]&&g(o[0]);for(var f=u;f<=o[1];f+=l)g(f);function g(t){var e={value:t};s.push(n?t:{formattedLabel:i(e),rawLabel:r.getLabel(e),tickValue:t})}return d&&f-l!==o[1]&&g(o[1]),s}function tb(t,e,n){var i=t.scale,r=x_(t),o=[];return E(i.getTicks(),(function(t){var a=i.getLabel(t),s=t.value;e(t.value,a)&&o.push(n?s:{formattedLabel:r(t),rawLabel:a,tickValue:s})})),o}var eb=[0,1],nb=function(){function t(t,e,n){this.onBand=!1,this.inverse=!1,this.dim=t,this.scale=e,this._extent=n||[0,0]}return t.prototype.contain=function(t){var e=this._extent,n=Math.min(e[0],e[1]),i=Math.max(e[0],e[1]);return t>=n&&t<=i},t.prototype.containData=function(t){return this.scale.contain(t)},t.prototype.getExtent=function(){return this._extent.slice()},t.prototype.getPixelPrecision=function(t){return $r(t||this.scale.getExtent(),this._extent)},t.prototype.setExtent=function(t,e){var n=this._extent;n[0]=t,n[1]=e},t.prototype.dataToCoord=function(t,e){var n=this._extent,i=this.scale;return t=i.normalize(t),this.onBand&&"ordinal"===i.type&&ib(n=n.slice(),i.count()),Xr(t,eb,n,e)},t.prototype.coordToData=function(t,e){var n=this._extent,i=this.scale;this.onBand&&"ordinal"===i.type&&ib(n=n.slice(),i.count());var r=Xr(t,n,eb,e);return this.scale.scale(r)},t.prototype.pointToData=function(t,e){},t.prototype.getTicksCoords=function(t){var e=(t=t||{}).tickModel||this.getTickModel(),n=z(j_(this,e).ticks,(function(t){return{coord:this.dataToCoord("ordinal"===this.scale.type?this.scale.getRawOrdinalNumber(t):t),tickValue:t}}),this);return function(t,e,n,i){var r=e.length;if(!t.onBand||n||!r)return;var o,a,s=t.getExtent();if(1===r)e[0].coord=s[0],o=e[1]={coord:s[1]};else{var l=e[r-1].tickValue-e[0].tickValue,u=(e[r-1].coord-e[0].coord)/l;E(e,(function(t){t.coord-=u/2})),a=1+t.scale.getExtent()[1]-e[r-1].tickValue,o={coord:e[r-1].coord+u*a},e.push(o)}var h=s[0]>s[1];c(e[0].coord,s[0])&&(i?e[0].coord=s[0]:e.shift());i&&c(s[0],e[0].coord)&&e.unshift({coord:s[0]});c(s[1],o.coord)&&(i?o.coord=s[1]:e.pop());i&&c(o.coord,s[1])&&e.push({coord:s[1]});function c(t,e){return t=Zr(t),e=Zr(e),h?t>e:t0&&t<100||(t=5),z(this.scale.getMinorTicks(t),(function(t){return z(t,(function(t){return{coord:this.dataToCoord(t),tickValue:t}}),this)}),this)},t.prototype.getViewLabels=function(){return Z_(this).labels},t.prototype.getLabelModel=function(){return this.model.getModel("axisLabel")},t.prototype.getTickModel=function(){return this.model.getModel("axisTick")},t.prototype.getBandWidth=function(){var t=this._extent,e=this.scale.getExtent(),n=e[1]-e[0]+(this.onBand?1:0);0===n&&(n=1);var i=Math.abs(t[1]-t[0]);return Math.abs(i)/n},t.prototype.calculateCategoryInterval=function(){return function(t){var e=function(t){var e=t.getLabelModel();return{axisRotate:t.getRotate?t.getRotate():t.isHorizontal&&!t.isHorizontal()?90:0,labelRotate:e.get("rotate")||0,font:e.getFont()}}(t),n=x_(t),i=(e.axisRotate-e.labelRotate)/180*Math.PI,r=t.scale,o=r.getExtent(),a=r.count();if(o[1]-o[0]<1)return 0;var s=1;a>40&&(s=Math.max(1,Math.floor(a/40)));for(var l=o[0],u=t.dataToCoord(l+1)-t.dataToCoord(l),h=Math.abs(u*Math.cos(i)),c=Math.abs(u*Math.sin(i)),p=0,d=0;l<=o[1];l+=s){var f,g,y=br(n({value:l}),e.font,"center","top");f=1.3*y.width,g=1.3*y.height,p=Math.max(p,f,7),d=Math.max(d,g,7)}var v=p/h,m=d/c;isNaN(v)&&(v=1/0),isNaN(m)&&(m=1/0);var x=Math.max(0,Math.floor(Math.min(v,m))),_=U_(t.model),b=t.getExtent(),w=_.lastAutoInterval,S=_.lastTickCount;return null!=w&&null!=S&&Math.abs(w-x)<=1&&Math.abs(S-a)<=1&&w>x&&_.axisExtent0===b[0]&&_.axisExtent1===b[1]?x=w:(_.lastTickCount=a,_.lastAutoInterval=x,_.axisExtent0=b[0],_.axisExtent1=b[1]),x}(this)},t}();function ib(t,e){var n=(t[1]-t[0])/e/2;t[0]+=n,t[1]-=n}var rb=2*Math.PI,ob=os.CMD,ab=["top","right","bottom","left"];function sb(t,e,n,i,r){var o=n.width,a=n.height;switch(t){case"top":i.set(n.x+o/2,n.y-e),r.set(0,-1);break;case"bottom":i.set(n.x+o/2,n.y+a+e),r.set(0,1);break;case"left":i.set(n.x-e,n.y+a/2),r.set(-1,0);break;case"right":i.set(n.x+o+e,n.y+a/2),r.set(1,0)}}function lb(t,e,n,i,r,o,a,s,l){a-=t,s-=e;var u=Math.sqrt(a*a+s*s),h=(a/=u)*n+t,c=(s/=u)*n+e;if(Math.abs(i-r)%rb<1e-4)return l[0]=h,l[1]=c,u-n;if(o){var p=i;i=hs(r),r=hs(p)}else i=hs(i),r=hs(r);i>r&&(r+=rb);var d=Math.atan2(s,a);if(d<0&&(d+=rb),d>=i&&d<=r||d+rb>=i&&d+rb<=r)return l[0]=h,l[1]=c,u-n;var f=n*Math.cos(i)+t,g=n*Math.sin(i)+e,y=n*Math.cos(r)+t,v=n*Math.sin(r)+e,m=(f-a)*(f-a)+(g-s)*(g-s),x=(y-a)*(y-a)+(v-s)*(v-s);return m0){e=e/180*Math.PI,fb.fromArray(t[0]),gb.fromArray(t[1]),yb.fromArray(t[2]),De.sub(vb,fb,gb),De.sub(mb,yb,gb);var n=vb.len(),i=mb.len();if(!(n<.001||i<.001)){vb.scale(1/n),mb.scale(1/i);var r=vb.dot(mb);if(Math.cos(e)1&&De.copy(bb,yb),bb.toArray(t[1])}}}}function Sb(t,e,n){if(n<=180&&n>0){n=n/180*Math.PI,fb.fromArray(t[0]),gb.fromArray(t[1]),yb.fromArray(t[2]),De.sub(vb,gb,fb),De.sub(mb,yb,gb);var i=vb.len(),r=mb.len();if(!(i<.001||r<.001))if(vb.scale(1/i),mb.scale(1/r),vb.dot(e)=a)De.copy(bb,yb);else{bb.scaleAndAdd(mb,o/Math.tan(Math.PI/2-s));var l=yb.x!==gb.x?(bb.x-gb.x)/(yb.x-gb.x):(bb.y-gb.y)/(yb.y-gb.y);if(isNaN(l))return;l<0?De.copy(bb,gb):l>1&&De.copy(bb,yb)}bb.toArray(t[1])}}}function Mb(t,e,n,i){var r="normal"===n,o=r?t:t.ensureState(n);o.ignore=e;var a=i.get("smooth");a&&!0===a&&(a=.3),o.shape=o.shape||{},a>0&&(o.shape.smooth=a);var s=i.getModel("lineStyle").getLineStyle();r?t.useStyle(s):o.style=s}function Ib(t,e){var n=e.smooth,i=e.points;if(i)if(t.moveTo(i[0][0],i[0][1]),n>0&&i.length>=3){var r=Vt(i[0],i[1]),o=Vt(i[1],i[2]);if(!r||!o)return t.lineTo(i[1][0],i[1][1]),void t.lineTo(i[2][0],i[2][1]);var a=Math.min(r,o)*n,s=Gt([],i[1],i[0],a/r),l=Gt([],i[1],i[2],a/o),u=Gt([],s,l,.5);t.bezierCurveTo(s[0],s[1],s[0],s[1],u[0],u[1]),t.bezierCurveTo(l[0],l[1],l[0],l[1],i[2][0],i[2][1])}else for(var h=1;h0&&o&&_(-h/a,0,a);var f,g,y=t[0],v=t[a-1];return m(),f<0&&b(-f,.8),g<0&&b(g,.8),m(),x(f,g,1),x(g,f,-1),m(),f<0&&w(-f),g<0&&w(g),u}function m(){f=y.rect[e]-i,g=r-v.rect[e]-v.rect[n]}function x(t,e,n){if(t<0){var i=Math.min(e,-t);if(i>0){_(i*n,0,a);var r=i+t;r<0&&b(-r*n,1)}else b(-t*n,1)}}function _(n,i,r){0!==n&&(u=!0);for(var o=i;o0)for(l=0;l0;l--){_(-(o[l-1]*c),l,a)}}}function w(t){var e=t<0?-1:1;t=Math.abs(t);for(var n=Math.ceil(t/(a-1)),i=0;i0?_(n,0,i+1):_(-n,a-i-1,a),(t-=n)<=0)return}}function kb(t,e,n,i){return Ab(t,"y","height",e,n,i)}function Lb(t){var e=[];t.sort((function(t,e){return e.priority-t.priority}));var n=new ze(0,0,0,0);function i(t){if(!t.ignore){var e=t.ensureState("emphasis");null==e.ignore&&(e.ignore=!1)}t.ignore=!0}for(var r=0;r=0&&n.attr(d.oldLayoutSelect),P(u,"emphasis")>=0&&n.attr(d.oldLayoutEmphasis)),fh(n,s,e,a)}else if(n.attr(s),!uc(n).valueAnimation){var h=rt(n.style.opacity,1);n.style.opacity=0,gh(n,{style:{opacity:h}},e,a)}if(d.oldLayout=s,n.states.select){var c=d.oldLayoutSelect={};Vb(c,s,Bb),Vb(c,n.states.select,Bb)}if(n.states.emphasis){var p=d.oldLayoutEmphasis={};Vb(p,s,Bb),Vb(p,n.states.emphasis,Bb)}cc(n,a,l,e,e)}if(i&&!i.ignore&&!i.invisible){r=(d=zb(i)).oldLayout;var d,f={points:i.shape.points};r?(i.attr({shape:r}),fh(i,{shape:f},e)):(i.setShape(f),i.style.strokePercent=0,gh(i,{style:{strokePercent:1}},e)),d.oldLayout=f}},t}(),Gb=Oo();var Wb=Math.sin,Hb=Math.cos,Yb=Math.PI,Xb=2*Math.PI,Ub=180/Yb,Zb=function(){function t(){}return t.prototype.reset=function(t){this._start=!0,this._d=[],this._str="",this._p=Math.pow(10,t||4)},t.prototype.moveTo=function(t,e){this._add("M",t,e)},t.prototype.lineTo=function(t,e){this._add("L",t,e)},t.prototype.bezierCurveTo=function(t,e,n,i,r,o){this._add("C",t,e,n,i,r,o)},t.prototype.quadraticCurveTo=function(t,e,n,i){this._add("Q",t,e,n,i)},t.prototype.arc=function(t,e,n,i,r,o){this.ellipse(t,e,n,n,0,i,r,o)},t.prototype.ellipse=function(t,e,n,i,r,o,a,s){var l=a-o,u=!s,h=Math.abs(l),c=hi(h-Xb)||(u?l>=Xb:-l>=Xb),p=l>0?l%Xb:l%Xb+Xb,d=!1;d=!!c||!hi(h)&&p>=Yb==!!u;var f=t+n*Hb(o),g=e+i*Wb(o);this._start&&this._add("M",f,g);var y=Math.round(r*Ub);if(c){var v=1/this._p,m=(u?1:-1)*(Xb-v);this._add("A",n,i,y,1,+u,t+n*Hb(o+m),e+i*Wb(o+m)),v>.01&&this._add("A",n,i,y,0,+u,f,g)}else{var x=t+n*Hb(a),_=e+i*Wb(a);this._add("A",n,i,y,+d,+u,x,_)}},t.prototype.rect=function(t,e,n,i){this._add("M",t,e),this._add("l",n,0),this._add("l",0,i),this._add("l",-n,0),this._add("Z")},t.prototype.closePath=function(){this._d.length>0&&this._add("Z")},t.prototype._add=function(t,e,n,i,r,o,a,s,l){for(var u=[],h=this._p,c=1;c"}(r,o)+("style"!==r?re(a):a||"")+(i?""+n+z(i,(function(e){return t(e)})).join(n)+n:"")+("")}(t)}function rw(t){return{zrId:t,shadowCache:{},patternCache:{},gradientCache:{},clipPathCache:{},defs:{},cssNodes:{},cssAnims:{},cssClassIdx:0,cssAnimIdx:0,shadowIdx:0,gradientIdx:0,patternIdx:0,clipPathIdx:0}}function ow(t,e,n,i){return nw("svg","root",{width:t,height:e,xmlns:Qb,"xmlns:xlink":tw,version:"1.1",baseProfile:"full",viewBox:!!i&&"0 0 "+t+" "+e},n)}var aw={cubicIn:"0.32,0,0.67,0",cubicOut:"0.33,1,0.68,1",cubicInOut:"0.65,0,0.35,1",quadraticIn:"0.11,0,0.5,0",quadraticOut:"0.5,1,0.89,1",quadraticInOut:"0.45,0,0.55,1",quarticIn:"0.5,0,0.75,0",quarticOut:"0.25,1,0.5,1",quarticInOut:"0.76,0,0.24,1",quinticIn:"0.64,0,0.78,0",quinticOut:"0.22,1,0.36,1",quinticInOut:"0.83,0,0.17,1",sinusoidalIn:"0.12,0,0.39,0",sinusoidalOut:"0.61,1,0.88,1",sinusoidalInOut:"0.37,0,0.63,1",exponentialIn:"0.7,0,0.84,0",exponentialOut:"0.16,1,0.3,1",exponentialInOut:"0.87,0,0.13,1",circularIn:"0.55,0,1,0.45",circularOut:"0,0.55,0.45,1",circularInOut:"0.85,0,0.15,1"},sw="transform-origin";function lw(t,e,n){var i=A({},t.shape);A(i,e),t.buildPath(n,i);var r=new Zb;return r.reset(_i(t)),n.rebuildPath(r,1),r.generateStr(),r.getStr()}function uw(t,e){var n=e.originX,i=e.originY;(n||i)&&(t[sw]=n+"px "+i+"px")}var hw={fill:"fill",opacity:"opacity",lineWidth:"stroke-width",lineDashOffset:"stroke-dashoffset"};function cw(t,e){var n=e.zrId+"-ani-"+e.cssAnimIdx++;return e.cssAnims[n]=t,n}function pw(t){return U(t)?aw[t]?"cubic-bezier("+aw[t]+")":Pn(t)?t:"":""}function dw(t,e,n,i){var r=t.animators,o=r.length,a=[];if(t instanceof th){var s=function(t,e,n){var i,r,o=t.shape.paths,a={};if(E(o,(function(t){var e=rw(n.zrId);e.animation=!0,dw(t,{},e,!0);var o=e.cssAnims,s=e.cssNodes,l=G(o),u=l.length;if(u){var h=o[r=l[u-1]];for(var c in h){var p=h[c];a[c]=a[c]||{d:""},a[c].d+=p.d||""}for(var d in s){var f=s[d].animation;f.indexOf(r)>=0&&(i=f)}}})),i){e.d=!1;var s=cw(a,n);return i.replace(r,s)}}(t,e,n);if(s)a.push(s);else if(!o)return}else if(!o)return;for(var l={},u=0;u0})).length)return cw(h,n)+" "+r[0]+" both"}for(var y in l){(s=g(l[y]))&&a.push(s)}if(a.length){var v=n.zrId+"-cls-"+n.cssClassIdx++;n.cssNodes["."+v]={animation:a.join(",")},e.class=v}}var fw=Math.round;function gw(t){return t&&U(t.src)}function yw(t){return t&&X(t.toDataURL)}function vw(t,e,n,i){Jb((function(r,o){var a="fill"===r||"stroke"===r;a&&mi(o)?Cw(e,t,r,i):a&&gi(o)?Dw(n,t,r,i):t[r]=o}),e,n,!1),function(t,e,n){var i=t.style;if(function(t){return t&&(t.shadowBlur||t.shadowOffsetX||t.shadowOffsetY)}(i)){var r=function(t){var e=t.style,n=t.getGlobalScale();return[e.shadowColor,(e.shadowBlur||0).toFixed(2),(e.shadowOffsetX||0).toFixed(2),(e.shadowOffsetY||0).toFixed(2),n[0],n[1]].join(",")}(t),o=n.shadowCache,a=o[r];if(!a){var s=t.getGlobalScale(),l=s[0],u=s[1];if(!l||!u)return;var h=i.shadowOffsetX||0,c=i.shadowOffsetY||0,p=i.shadowBlur,d=li(i.shadowColor),f=d.opacity,g=d.color,y=p/2/l+" "+p/2/u;a=n.zrId+"-s"+n.shadowIdx++,n.defs[a]=nw("filter",a,{id:a,x:"-100%",y:"-100%",width:"300%",height:"300%"},[nw("feDropShadow","",{dx:h/l,dy:c/u,stdDeviation:y,"flood-color":g,"flood-opacity":f})]),o[r]=a}e.filter=xi(a)}}(n,t,i)}function mw(t){return hi(t[0]-1)&&hi(t[1])&&hi(t[2])&&hi(t[3]-1)}function xw(t,e,n){if(e&&(!function(t){return hi(t[4])&&hi(t[5])}(e)||!mw(e))){var i=n?10:1e4;t.transform=mw(e)?"translate("+fw(e[4]*i)/i+" "+fw(e[5]*i)/i+")":function(t){return"matrix("+ci(t[0])+","+ci(t[1])+","+ci(t[2])+","+ci(t[3])+","+pi(t[4])+","+pi(t[5])+")"}(e)}}function _w(t,e,n){for(var i=t.points,r=[],o=0;ol?Hw(t,null==n[c+1]?null:n[c+1].elm,n,s,c):Yw(t,e,a,l))}(n,i,r):Bw(r)?(Bw(t.text)&&Ew(n,""),Hw(n,null,r,0,r.length-1)):Bw(i)?Yw(n,i,0,i.length-1):Bw(t.text)&&Ew(n,""):t.text!==e.text&&(Bw(i)&&Yw(n,i,0,i.length-1),Ew(n,e.text)))}var Zw=0,jw=function(){function t(t,e,n){if(this.type="svg",this.refreshHover=qw("refreshHover"),this.configLayer=qw("configLayer"),this.storage=e,this._opts=n=A({},n),this.root=t,this._id="zr"+Zw++,this._oldVNode=ow(n.width,n.height),t&&!n.ssr){var i=this._viewport=document.createElement("div");i.style.cssText="position:relative;overflow:hidden";var r=this._svgDom=this._oldVNode.elm=ew("svg");Xw(null,this._oldVNode),i.appendChild(r),t.appendChild(i)}this.resize(n.width,n.height)}return t.prototype.getType=function(){return this.type},t.prototype.getViewportRoot=function(){return this._viewport},t.prototype.getViewportRootOffset=function(){var t=this.getViewportRoot();if(t)return{offsetLeft:t.offsetLeft||0,offsetTop:t.offsetTop||0}},t.prototype.getSvgDom=function(){return this._svgDom},t.prototype.refresh=function(){if(this.root){var t=this.renderToVNode({willUpdate:!0});t.attrs.style="position:absolute;left:0;top:0;user-select:none",function(t,e){if(Gw(t,e))Uw(t,e);else{var n=t.elm,i=Rw(n);Ww(e),null!==i&&(Lw(i,e.elm,Nw(n)),Yw(i,[t],0,0))}}(this._oldVNode,t),this._oldVNode=t}},t.prototype.renderOneToVNode=function(t){return Tw(t,rw(this._id))},t.prototype.renderToVNode=function(t){t=t||{};var e=this.storage.getDisplayList(!0),n=this._width,i=this._height,r=rw(this._id);r.animation=t.animation,r.willUpdate=t.willUpdate,r.compress=t.compress;var o=[],a=this._bgVNode=function(t,e,n,i){var r;if(n&&"none"!==n)if(r=nw("rect","bg",{width:t,height:e,x:"0",y:"0",id:"0"}),mi(n))Cw({fill:n},r.attrs,"fill",i);else if(gi(n))Dw({style:{fill:n},dirty:bt,getBoundingRect:function(){return{width:t,height:e}}},r.attrs,"fill",i);else{var o=li(n),a=o.color,s=o.opacity;r.attrs.fill=a,s<1&&(r.attrs["fill-opacity"]=s)}return r}(n,i,this._backgroundColor,r);a&&o.push(a);var s=t.compress?null:this._mainVNode=nw("g","main",{},[]);this._paintList(e,r,s?s.children:o),s&&o.push(s);var l=z(G(r.defs),(function(t){return r.defs[t]}));if(l.length&&o.push(nw("defs","defs",{},l)),t.animation){var u=function(t,e,n){var i=(n=n||{}).newline?"\n":"",r=" {"+i,o=i+"}",a=z(G(t),(function(e){return e+r+z(G(t[e]),(function(n){return n+":"+t[e][n]+";"})).join(i)+o})).join(i),s=z(G(e),(function(t){return"@keyframes "+t+r+z(G(e[t]),(function(n){return n+r+z(G(e[t][n]),(function(i){var r=e[t][n][i];return"d"===i&&(r='path("'+r+'")'),i+":"+r+";"})).join(i)+o})).join(i)+o})).join(i);return a||s?[""].join(i):""}(r.cssNodes,r.cssAnims,{newline:!0});if(u){var h=nw("style","stl",{},[],u);o.push(h)}}return ow(n,i,o,t.useViewBox)},t.prototype.renderToString=function(t){return t=t||{},iw(this.renderToVNode({animation:rt(t.cssAnimation,!0),willUpdate:!1,compress:!0,useViewBox:rt(t.useViewBox,!0)}),{newline:!0})},t.prototype.setBackgroundColor=function(t){this._backgroundColor=t},t.prototype.getSvgRoot=function(){return this._mainVNode&&this._mainVNode.elm},t.prototype._paintList=function(t,e,n){for(var i,r,o=t.length,a=[],s=0,l=0,u=0;u=0&&(!c||!r||c[f]!==r[f]);f--);for(var g=d-1;g>f;g--)i=a[--s-1];for(var y=f+1;y=a)}}for(var h=this.__startIndex;h15)break}n.prevElClipPaths&&u.restore()};if(p)if(0===p.length)s=l.__endIndex;else for(var _=d.dpr,b=0;b0&&t>i[0]){for(s=0;st);s++);a=n[i[s]]}if(i.splice(s+1,0,t),n[t]=e,!e.virtual)if(a){var l=a.dom;l.nextSibling?o.insertBefore(e.dom,l.nextSibling):o.appendChild(e.dom)}else o.firstChild?o.insertBefore(e.dom,o.firstChild):o.appendChild(e.dom);e.__painter=this}},t.prototype.eachLayer=function(t,e){for(var n=this._zlevelList,i=0;i0?tS:0),this._needsManuallyCompositing),u.__builtin__||I("ZLevel "+l+" has been used by unkown layer "+u.id),u!==o&&(u.__used=!0,u.__startIndex!==r&&(u.__dirty=!0),u.__startIndex=r,u.incremental?u.__drawIndex=-1:u.__drawIndex=r,e(r),o=u),1&s.__dirty&&!s.__inHover&&(u.__dirty=!0,u.incremental&&u.__drawIndex<0&&(u.__drawIndex=r))}e(r),this.eachBuiltinLayer((function(t,e){!t.__used&&t.getElementCount()>0&&(t.__dirty=!0,t.__startIndex=t.__endIndex=t.__drawIndex=0),t.__dirty&&t.__drawIndex<0&&(t.__drawIndex=t.__startIndex)}))},t.prototype.clear=function(){return this.eachBuiltinLayer(this._clearLayer),this},t.prototype._clearLayer=function(t){t.clear()},t.prototype.setBackgroundColor=function(t){this._backgroundColor=t,E(this._layers,(function(t){t.setUnpainted()}))},t.prototype.configLayer=function(t,e){if(e){var n=this._layerConfig;n[t]?C(n[t],e,!0):n[t]=e;for(var i=0;i-1&&(s.style.stroke=s.style.fill,s.style.fill="#fff",s.style.lineWidth=2),e},e.type="series.line",e.dependencies=["grid","polar"],e.defaultOption={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},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},e}(mg);function iS(t,e){var n=t.mapDimensionsAll("defaultedLabel"),i=n.length;if(1===i){var r=gf(t,e,n[0]);return null!=r?r+"":null}if(i){for(var o=[],a=0;a=0&&i.push(e[o])}return i.join(" ")}var oS=function(t){function e(e,n,i,r){var o=t.call(this)||this;return o.updateData(e,n,i,r),o}return n(e,t),e.prototype._createSymbol=function(t,e,n,i,r){this.removeAll();var o=Wy(t,-1,-1,2,2,null,r);o.attr({z2:100,culling:!0,scaleX:i[0]/2,scaleY:i[1]/2}),o.drift=aS,this._symbolType=t,this.add(o)},e.prototype.stopSymbolAnimation=function(t){this.childAt(0).stopAnimation(null,t)},e.prototype.getSymbolType=function(){return this._symbolType},e.prototype.getSymbolPath=function(){return this.childAt(0)},e.prototype.highlight=function(){kl(this.childAt(0))},e.prototype.downplay=function(){Ll(this.childAt(0))},e.prototype.setZ=function(t,e){var n=this.childAt(0);n.zlevel=t,n.z=e},e.prototype.setDraggable=function(t,e){var n=this.childAt(0);n.draggable=t,n.cursor=!e&&t?"move":n.cursor},e.prototype.updateData=function(t,n,i,r){this.silent=!1;var o=t.getItemVisual(n,"symbol")||"circle",a=t.hostModel,s=e.getSymbolSize(t,n),l=o!==this._symbolType,u=r&&r.disableAnimation;if(l){var h=t.getItemVisual(n,"symbolKeepAspect");this._createSymbol(o,t,n,s,h)}else{(p=this.childAt(0)).silent=!1;var c={scaleX:s[0]/2,scaleY:s[1]/2};u?p.attr(c):fh(p,c,a,n),_h(p)}if(this._updateCommon(t,n,s,i,r),l){var p=this.childAt(0);if(!u){c={scaleX:this._sizeX,scaleY:this._sizeY,style:{opacity:p.style.opacity}};p.scaleX=p.scaleY=0,p.style.opacity=0,gh(p,c,a,n)}}u&&this.childAt(0).stopAnimation("leave")},e.prototype._updateCommon=function(t,e,n,i,r){var o,a,s,l,u,h,c,p,d,f=this.childAt(0),g=t.hostModel;if(i&&(o=i.emphasisItemStyle,a=i.blurItemStyle,s=i.selectItemStyle,l=i.focus,u=i.blurScope,c=i.labelStatesModels,p=i.hoverScale,d=i.cursorStyle,h=i.emphasisDisabled),!i||t.hasItemOption){var y=i&&i.itemModel?i.itemModel:t.getItemModel(e),v=y.getModel("emphasis");o=v.getModel("itemStyle").getItemStyle(),s=y.getModel(["select","itemStyle"]).getItemStyle(),a=y.getModel(["blur","itemStyle"]).getItemStyle(),l=v.get("focus"),u=v.get("blurScope"),h=v.get("disabled"),c=ec(y),p=v.getShallow("scale"),d=y.getShallow("cursor")}var m=t.getItemVisual(e,"symbolRotate");f.attr("rotation",(m||0)*Math.PI/180||0);var x=Yy(t.getItemVisual(e,"symbolOffset"),n);x&&(f.x=x[0],f.y=x[1]),d&&f.attr("cursor",d);var _=t.getItemVisual(e,"style"),b=_.fill;if(f instanceof ks){var w=f.style;f.useStyle(A({image:w.image,x:w.x,y:w.y,width:w.width,height:w.height},_))}else f.__isEmptyBrush?f.useStyle(A({},_)):f.useStyle(_),f.style.decal=null,f.setColor(b,r&&r.symbolInnerColor),f.style.strokeNoScale=!0;var S=t.getItemVisual(e,"liftZ"),M=this._z2;null!=S?null==M&&(this._z2=f.z2,f.z2+=S):null!=M&&(f.z2=M,this._z2=null);var I=r&&r.useNameLabel;tc(f,c,{labelFetcher:g,labelDataIndex:e,defaultText:function(e){return I?t.getName(e):iS(t,e)},inheritColor:b,defaultOpacity:_.opacity}),this._sizeX=n[0]/2,this._sizeY=n[1]/2;var T=f.ensureState("emphasis");T.style=o,f.ensureState("select").style=s,f.ensureState("blur").style=a;var C=null==p||!0===p?Math.max(1.1,3/this._sizeY):isFinite(p)&&p>0?+p:1;T.scaleX=this._sizeX*C,T.scaleY=this._sizeY*C,this.setSymbolScale(1),Yl(this,l,u,h)},e.prototype.setSymbolScale=function(t){this.scaleX=this.scaleY=t},e.prototype.fadeOut=function(t,e,n){var i=this.childAt(0),r=Qs(this).dataIndex,o=n&&n.animation;if(this.silent=i.silent=!0,n&&n.fadeLabel){var a=i.getTextContent();a&&vh(a,{style:{opacity:0}},e,{dataIndex:r,removeOpt:o,cb:function(){i.removeTextContent()}})}else i.removeTextContent();vh(i,{style:{opacity:0},scaleX:0,scaleY:0},e,{dataIndex:r,cb:t,removeOpt:o})},e.getSymbolSize=function(t,e){return Hy(t.getItemVisual(e,"symbolSize"))},e}(zr);function aS(t,e){this.parent.drift(t,e)}function sS(t,e,n,i){return e&&!isNaN(e[0])&&!isNaN(e[1])&&!(i.isIgnore&&i.isIgnore(n))&&!(i.clipShape&&!i.clipShape.contain(e[0],e[1]))&&"none"!==t.getItemVisual(n,"symbol")}function lS(t){return null==t||q(t)||(t={isIgnore:t}),t||{}}function uS(t){var e=t.hostModel,n=e.getModel("emphasis");return{emphasisItemStyle:n.getModel("itemStyle").getItemStyle(),blurItemStyle:e.getModel(["blur","itemStyle"]).getItemStyle(),selectItemStyle:e.getModel(["select","itemStyle"]).getItemStyle(),focus:n.get("focus"),blurScope:n.get("blurScope"),emphasisDisabled:n.get("disabled"),hoverScale:n.get("scale"),labelStatesModels:ec(e),cursorStyle:e.get("cursor")}}var hS=function(){function t(t){this.group=new zr,this._SymbolCtor=t||oS}return t.prototype.updateData=function(t,e){this._progressiveEls=null,e=lS(e);var n=this.group,i=t.hostModel,r=this._data,o=this._SymbolCtor,a=e.disableAnimation,s=uS(t),l={disableAnimation:a},u=e.getSymbolPoint||function(e){return t.getItemLayout(e)};r||n.removeAll(),t.diff(r).add((function(i){var r=u(i);if(sS(t,r,i,e)){var a=new o(t,i,s,l);a.setPosition(r),t.setItemGraphicEl(i,a),n.add(a)}})).update((function(h,c){var p=r.getItemGraphicEl(c),d=u(h);if(sS(t,d,h,e)){var f=t.getItemVisual(h,"symbol")||"circle",g=p&&p.getSymbolType&&p.getSymbolType();if(!p||g&&g!==f)n.remove(p),(p=new o(t,h,s,l)).setPosition(d);else{p.updateData(t,h,s,l);var y={x:d[0],y:d[1]};a?p.attr(y):fh(p,y,i)}n.add(p),t.setItemGraphicEl(h,p)}else n.remove(p)})).remove((function(t){var e=r.getItemGraphicEl(t);e&&e.fadeOut((function(){n.remove(e)}),i)})).execute(),this._getSymbolPoint=u,this._data=t},t.prototype.updateLayout=function(){var t=this,e=this._data;e&&e.eachItemGraphicEl((function(e,n){var i=t._getSymbolPoint(n);e.setPosition(i),e.markRedraw()}))},t.prototype.incrementalPrepareUpdate=function(t){this._seriesScope=uS(t),this._data=null,this.group.removeAll()},t.prototype.incrementalUpdate=function(t,e,n){function i(t){t.isGroup||(t.incremental=!0,t.ensureState("emphasis").hoverLayer=!0)}this._progressiveEls=[],n=lS(n);for(var r=t.start;r0?n=i[0]:i[1]<0&&(n=i[1]);return n}(r,n),a=i.dim,s=r.dim,l=e.mapDimension(s),u=e.mapDimension(a),h="x"===s||"radius"===s?1:0,c=z(t.dimensions,(function(t){return e.mapDimension(t)})),p=!1,d=e.getCalculationInfo("stackResultDimension");return gx(e,c[0])&&(p=!0,c[0]=d),gx(e,c[1])&&(p=!0,c[1]=d),{dataDimsForPoint:c,valueStart:o,valueAxisDim:s,baseAxisDim:a,stacked:!!p,valueDim:l,baseDim:u,baseDataOffset:h,stackedOverDimension:e.getCalculationInfo("stackedOverDimension")}}function pS(t,e,n,i){var r=NaN;t.stacked&&(r=n.get(n.getCalculationInfo("stackedOverDimension"),i)),isNaN(r)&&(r=t.valueStart);var o=t.baseDataOffset,a=[];return a[o]=n.get(t.baseDim,i),a[1-o]=r,e.dataToPoint(a)}var dS=Math.min,fS=Math.max;function gS(t,e){return isNaN(t)||isNaN(e)}function yS(t,e,n,i,r,o,a,s,l){for(var u,h,c,p,d,f,g=n,y=0;y=r||g<0)break;if(gS(v,m)){if(l){g+=o;continue}break}if(g===n)t[o>0?"moveTo":"lineTo"](v,m),c=v,p=m;else{var x=v-u,_=m-h;if(x*x+_*_<.5){g+=o;continue}if(a>0){for(var b=g+o,w=e[2*b],S=e[2*b+1];w===v&&S===m&&y=i||gS(w,S))d=v,f=m;else{T=w-u,C=S-h;var k=v-u,L=w-v,P=m-h,O=S-m,R=void 0,N=void 0;if("x"===s){var E=T>0?1:-1;d=v-E*(R=Math.abs(k))*a,f=m,D=v+E*(N=Math.abs(L))*a,A=m}else if("y"===s){var z=C>0?1:-1;d=v,f=m-z*(R=Math.abs(P))*a,D=v,A=m+z*(N=Math.abs(O))*a}else R=Math.sqrt(k*k+P*P),d=v-T*a*(1-(I=(N=Math.sqrt(L*L+O*O))/(N+R))),f=m-C*a*(1-I),A=m+C*a*I,D=dS(D=v+T*a*I,fS(w,v)),A=dS(A,fS(S,m)),D=fS(D,dS(w,v)),f=m-(C=(A=fS(A,dS(S,m)))-m)*R/N,d=dS(d=v-(T=D-v)*R/N,fS(u,v)),f=dS(f,fS(h,m)),D=v+(T=v-(d=fS(d,dS(u,v))))*N/R,A=m+(C=m-(f=fS(f,dS(h,m))))*N/R}t.bezierCurveTo(c,p,d,f,v,m),c=D,p=A}else t.lineTo(v,m)}u=v,h=m,g+=o}return y}var vS=function(){this.smooth=0,this.smoothConstraint=!0},mS=function(t){function e(e){var n=t.call(this,e)||this;return n.type="ec-polyline",n}return n(e,t),e.prototype.getDefaultStyle=function(){return{stroke:"#000",fill:null}},e.prototype.getDefaultShape=function(){return new vS},e.prototype.buildPath=function(t,e){var n=e.points,i=0,r=n.length/2;if(e.connectNulls){for(;r>0&&gS(n[2*r-2],n[2*r-1]);r--);for(;i=0){var y=a?(h-i)*g+i:(u-n)*g+n;return a?[t,y]:[y,t]}n=u,i=h;break;case o.C:u=r[l++],h=r[l++],c=r[l++],p=r[l++],d=r[l++],f=r[l++];var v=a?_n(n,u,c,d,t,s):_n(i,h,p,f,t,s);if(v>0)for(var m=0;m=0){y=a?mn(i,h,p,f,x):mn(n,u,c,d,x);return a?[t,y]:[y,t]}}n=d,i=f}}},e}(Is),xS=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return n(e,t),e}(vS),_S=function(t){function e(e){var n=t.call(this,e)||this;return n.type="ec-polygon",n}return n(e,t),e.prototype.getDefaultShape=function(){return new xS},e.prototype.buildPath=function(t,e){var n=e.points,i=e.stackedOnPoints,r=0,o=n.length/2,a=e.smoothMonotone;if(e.connectNulls){for(;o>0&&gS(n[2*o-2],n[2*o-1]);o--);for(;r=0;a--){var s=t.getDimensionInfo(i[a].dimension);if("x"===(r=s&&s.coordDim)||"y"===r){o=i[a];break}}if(o){var l=e.getAxis(r),u=z(o.stops,(function(t){return{coord:l.toGlobalCoord(l.dataToCoord(t.value)),color:t.color}})),h=u.length,c=o.outerColors.slice();h&&u[0].coord>u[h-1].coord&&(u.reverse(),c.reverse());var p=function(t,e){var n,i,r=[],o=t.length;function a(t,e,n){var i=t.coord;return{coord:n,color:ti((n-i)/(e.coord-i),[t.color,e.color])}}for(var s=0;se){i?r.push(a(i,l,e)):n&&r.push(a(n,l,0),a(n,l,e));break}n&&(r.push(a(n,l,0)),n=null),r.push(l),i=l}}return r}(u,"x"===r?n.getWidth():n.getHeight()),d=p.length;if(!d&&h)return u[0].coord<0?c[1]?c[1]:u[h-1].color:c[0]?c[0]:u[0].color;var f=p[0].coord-10,g=p[d-1].coord+10,y=g-f;if(y<.001)return"transparent";E(p,(function(t){t.offset=(t.coord-f)/y})),p.push({offset:d?p[d-1].offset:.5,color:c[1]||"transparent"}),p.unshift({offset:d?p[0].offset:.5,color:c[0]||"transparent"});var v=new nh(0,0,0,0,p,!0);return v[r]=f,v[r+"2"]=g,v}}}function LS(t,e,n){var i=t.get("showAllSymbol"),r="auto"===i;if(!i||r){var o=n.getAxesByScale("ordinal")[0];if(o&&(!r||!function(t,e){var n=t.getExtent(),i=Math.abs(n[1]-n[0])/t.scale.count();isNaN(i)&&(i=0);for(var r=e.count(),o=Math.max(1,Math.round(r/5)),a=0;ai)return!1;return!0}(o,e))){var a=e.mapDimension(o.dim),s={};return E(o.getViewLabels(),(function(t){var e=o.scale.getRawOrdinalNumber(t.tickValue);s[e]=1})),function(t){return!s.hasOwnProperty(e.get(a,t))}}}}function PS(t,e){return[t[2*e],t[2*e+1]]}function OS(t){if(t.get(["endLabel","show"]))return!0;for(var e=0;e0&&"bolder"===t.get(["emphasis","lineStyle","width"]))&&(d.getState("emphasis").style.lineWidth=+d.style.lineWidth+1);Qs(d).seriesIndex=t.seriesIndex,Yl(d,L,P,O);var R=DS(t.get("smooth")),N=t.get("smoothMonotone");if(d.setShape({smooth:R,smoothMonotone:N,connectNulls:w}),f){var E=a.getCalculationInfo("stackedOnSeries"),z=0;f.useStyle(k(l.getAreaStyle(),{fill:C,opacity:.7,lineJoin:"bevel",decal:a.getVisual("style").decal})),E&&(z=DS(E.get("smooth"))),f.setShape({smooth:R,stackedOnSmooth:z,smoothMonotone:N,connectNulls:w}),jl(f,t,"areaStyle"),Qs(f).seriesIndex=t.seriesIndex,Yl(f,L,P,O)}var V=function(t){i._changePolyState(t)};a.eachItemGraphicEl((function(t){t&&(t.onHoverStateChange=V)})),this._polyline.onHoverStateChange=V,this._data=a,this._coordSys=r,this._stackedOnPoints=_,this._points=u,this._step=T,this._valueOrigin=m,t.get("triggerLineEvent")&&(this.packEventData(t,d),f&&this.packEventData(t,f))},e.prototype.packEventData=function(t,e){Qs(e).eventData={componentType:"series",componentSubType:"line",componentIndex:t.componentIndex,seriesIndex:t.seriesIndex,seriesName:t.name,seriesType:"line"}},e.prototype.highlight=function(t,e,n,i){var r=t.getData(),o=Po(r,i);if(this._changePolyState("emphasis"),!(o instanceof Array)&&null!=o&&o>=0){var a=r.getLayout("points"),s=r.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 h=t.get("zlevel")||0,c=t.get("z")||0;(s=new oS(r,o)).x=l,s.y=u,s.setZ(h,c);var p=s.getSymbolPath().getTextContent();p&&(p.zlevel=h,p.z=c,p.z2=this._polyline.z2+1),s.__temp=!0,r.setItemGraphicEl(o,s),s.stopSymbolAnimation(!0),this.group.add(s)}s.highlight()}else kg.prototype.highlight.call(this,t,e,n,i)},e.prototype.downplay=function(t,e,n,i){var r=t.getData(),o=Po(r,i);if(this._changePolyState("normal"),null!=o&&o>=0){var a=r.getItemGraphicEl(o);a&&(a.__temp?(r.setItemGraphicEl(o,null),this.group.remove(a)):a.downplay())}else kg.prototype.downplay.call(this,t,e,n,i)},e.prototype._changePolyState=function(t){var e=this._polygon;Il(this._polyline,t),e&&Il(e,t)},e.prototype._newPolyline=function(t){var e=this._polyline;return e&&this._lineGroup.remove(e),e=new mS({shape:{points:t},segmentIgnoreThreshold:2,z2:10}),this._lineGroup.add(e),this._polyline=e,e},e.prototype._newPolygon=function(t,e){var n=this._polygon;return n&&this._lineGroup.remove(n),n=new _S({shape:{points:t,stackedOnPoints:e},segmentIgnoreThreshold:2}),this._lineGroup.add(n),this._polygon=n,n},e.prototype._initSymbolLabelAnimation=function(t,e,n){var i,r,o=e.getBaseAxis(),a=o.inverse;"cartesian2d"===e.type?(i=o.isHorizontal(),r=!1):"polar"===e.type&&(i="angle"===o.dim,r=!0);var s=t.hostModel,l=s.get("animationDuration");X(l)&&(l=l(null));var u=s.get("animationDelay")||0,h=X(u)?u(null):u;t.eachItemGraphicEl((function(t,o){var s=t;if(s){var c=[t.x,t.y],p=void 0,d=void 0,f=void 0;if(n)if(r){var g=n,y=e.pointToCoord(c);i?(p=g.startAngle,d=g.endAngle,f=-y[1]/180*Math.PI):(p=g.r0,d=g.r,f=y[0])}else{var v=n;i?(p=v.x,d=v.x+v.width,f=t.x):(p=v.y+v.height,d=v.y,f=t.y)}var m=d===p?0:(f-p)/(d-p);a&&(m=1-m);var x=X(u)?u(o):l*m+h,_=s.getSymbolPath(),b=_.getTextContent();s.attr({scaleX:0,scaleY:0}),s.animateTo({scaleX:1,scaleY:1},{duration:200,setToFinal:!0,delay:x}),b&&b.animateFrom({style:{opacity:0}},{duration:300,delay:x}),_.disableLabelAnimation=!0}}))},e.prototype._initOrUpdateEndLabel=function(t,e,n){var i=t.getModel("endLabel");if(OS(t)){var r=t.getData(),o=this._polyline,a=r.getLayout("points");if(!a)return o.removeTextContent(),void(this._endLabel=null);var s=this._endLabel;s||((s=this._endLabel=new Fs({z2:200})).ignoreClip=!0,o.setTextContent(this._endLabel),o.disableLabelAnimation=!0);var l=function(t){for(var e,n,i=t.length/2;i>0&&(e=t[2*i-2],n=t[2*i-1],isNaN(e)||isNaN(n));i--);return i-1}(a);l>=0&&(tc(o,ec(t,"endLabel"),{inheritColor:n,labelFetcher:t,labelDataIndex:l,defaultText:function(t,e,n){return null!=n?rS(r,n):iS(r,t)},enableTextSetter:!0},function(t,e){var n=e.getBaseAxis(),i=n.isHorizontal(),r=n.inverse,o=i?r?"right":"left":"center",a=i?"middle":r?"top":"bottom";return{normal:{align:t.get("align")||o,verticalAlign:t.get("verticalAlign")||a}}}(i,e)),o.textConfig.position=null)}else this._endLabel&&(this._polyline.removeTextContent(),this._endLabel=null)},e.prototype._endLabelOnDuring=function(t,e,n,i,r,o,a){var s=this._endLabel,l=this._polyline;if(s){t<1&&null==i.originalX&&(i.originalX=s.x,i.originalY=s.y);var u=n.getLayout("points"),h=n.hostModel,c=h.get("connectNulls"),p=o.get("precision"),d=o.get("distance")||0,f=a.getBaseAxis(),g=f.isHorizontal(),y=f.inverse,v=e.shape,m=y?g?v.x:v.y+v.height:g?v.x+v.width:v.y,x=(g?d:0)*(y?-1:1),_=(g?0:-d)*(y?-1:1),b=g?"x":"y",w=function(t,e,n){for(var i,r,o=t.length/2,a="x"===n?0:1,s=0,l=-1,u=0;u=e||i>=e&&r<=e){l=u;break}s=u,i=r}else i=r;return{range:[s,l],t:(e-i)/(r-i)}}(u,m,b),S=w.range,M=S[1]-S[0],I=void 0;if(M>=1){if(M>1&&!c){var T=PS(u,S[0]);s.attr({x:T[0]+x,y:T[1]+_}),r&&(I=h.getRawValue(S[0]))}else{(T=l.getPointOn(m,b))&&s.attr({x:T[0]+x,y:T[1]+_});var C=h.getRawValue(S[0]),D=h.getRawValue(S[1]);r&&(I=Wo(n,p,C,D,w.t))}i.lastFrameIndex=S[0]}else{var A=1===t||i.lastFrameIndex>0?S[0]:0;T=PS(u,A);r&&(I=h.getRawValue(A)),s.attr({x:T[0]+x,y:T[1]+_})}if(r){var k=uc(s);"function"==typeof k.setLabelText&&k.setLabelText(I)}}},e.prototype._doUpdateAnimation=function(t,e,n,i,r,o,a){var s=this._polyline,l=this._polygon,u=t.hostModel,h=function(t,e,n,i,r,o,a,s){for(var l=function(t,e){var n=[];return e.diff(t).add((function(t){n.push({cmd:"+",idx:t})})).update((function(t,e){n.push({cmd:"=",idx:e,idx1:t})})).remove((function(t){n.push({cmd:"-",idx:t})})).execute(),n}(t,e),u=[],h=[],c=[],p=[],d=[],f=[],g=[],y=cS(r,e,a),v=t.getLayout("points")||[],m=e.getLayout("points")||[],x=0;x3e3||l&&CS(p,f)>3e3)return s.stopAnimation(),s.setShape({points:d}),void(l&&(l.stopAnimation(),l.setShape({points:d,stackedOnPoints:f})));s.shape.__points=h.current,s.shape.points=c;var g={shape:{points:d}};h.current!==c&&(g.shape.__points=h.next),s.stopAnimation(),fh(s,g,u),l&&(l.setShape({points:c,stackedOnPoints:p}),l.stopAnimation(),fh(l,{shape:{stackedOnPoints:f}},u),s.shape.points!==l.shape.points&&(l.shape.points=s.shape.points));for(var y=[],v=h.status,m=0;me&&(e=t[n]);return isFinite(e)?e:NaN},min:function(t){for(var e=1/0,n=0;n10&&"cartesian2d"===o.type&&r){var s=o.getBaseAxis(),l=o.getOtherAxis(s),u=s.getExtent(),h=n.getDevicePixelRatio(),c=Math.abs(u[1]-u[0])*(h||1),p=Math.round(a/c);if(isFinite(p)&&p>1){"lttb"===r&&t.setData(i.lttbDownSample(i.mapDimension(l.dim),1/p));var d=void 0;U(r)?d=zS[r]:X(r)&&(d=r),d&&t.setData(i.downSample(i.mapDimension(l.dim),1/p,d,VS))}}}}}var FS=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n}return n(e,t),e.prototype.getInitialData=function(t,e){return vx(null,this,{useEncodeDefaulter:!0})},e.prototype.getMarkerPosition=function(t,e,n){var i=this.coordinateSystem;if(i&&i.clampData){var r=i.clampData(t),o=i.dataToPoint(r);if(n)E(i.getAxes(),(function(t,n){if("category"===t.type&&null!=e){var i=t.getTicksCoords(),a=r[n],s="x1"===e[n]||"y1"===e[n];if(s&&(a+=1),i.length<2)return;if(2===i.length)return void(o[n]=t.toGlobalCoord(t.getExtent()[s?1:0]));for(var l=void 0,u=void 0,h=1,c=0;ca){u=(p+l)/2;break}1===c&&(h=d-i[0].tickValue)}null==u&&(l?l&&(u=i[i.length-1].coord):u=i[0].coord),o[n]=t.toGlobalCoord(u)}}));else{var a=this.getData(),s=a.getLayout("offset"),l=a.getLayout("size"),u=i.getBaseAxis().isHorizontal()?0:1;o[u]+=s+l/2}return o}return[NaN,NaN]},e.type="series.__base_bar__",e.defaultOption={z:2,coordinateSystem:"cartesian2d",legendHoverLink:!0,barMinHeight:0,barMinAngle:0,large:!1,largeThreshold:400,progressive:3e3,progressiveChunkMode:"mod"},e}(mg);mg.registerClass(FS);var GS=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n}return n(e,t),e.prototype.getInitialData=function(){return vx(null,this,{useEncodeDefaulter:!0,createInvertedIndices:!!this.get("realtimeSort",!0)||null})},e.prototype.getProgressive=function(){return!!this.get("large")&&this.get("progressive")},e.prototype.getProgressiveThreshold=function(){var t=this.get("progressiveThreshold"),e=this.get("largeThreshold");return e>t&&(t=e),t},e.prototype.brushSelector=function(t,e,n){return n.rect(e.getItemLayout(t))},e.type="series.bar",e.dependencies=["grid","polar"],e.defaultOption=Cc(FS.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}),e}(FS),WS=function(){this.cx=0,this.cy=0,this.r0=0,this.r=0,this.startAngle=0,this.endAngle=2*Math.PI,this.clockwise=!0},HS=function(t){function e(e){var n=t.call(this,e)||this;return n.type="sausage",n}return n(e,t),e.prototype.getDefaultShape=function(){return new WS},e.prototype.buildPath=function(t,e){var n=e.cx,i=e.cy,r=Math.max(e.r0||0,0),o=Math.max(e.r,0),a=.5*(o-r),s=r+a,l=e.startAngle,u=e.endAngle,h=e.clockwise,c=2*Math.PI,p=h?u-lo)return!0;o=u}return!1},e.prototype._isOrderDifferentInView=function(t,e){for(var n=e.scale,i=n.getExtent(),r=Math.max(0,i[0]),o=Math.min(i[1],n.getOrdinalMeta().categories.length-1);r<=o;++r)if(t.ordinalNumbers[r]!==n.getRawOrdinalNumber(r))return!0},e.prototype._updateSortWithinSameData=function(t,e,n,i){if(this._isOrderChangedWithinSameData(t,e,n)){var r=this._dataSort(t,n,e);this._isOrderDifferentInView(r,n)&&(this._removeOnRenderedListener(i),i.dispatchAction({type:"changeAxisOrder",componentType:n.dim+"Axis",axisId:n.index,sortInfo:r}))}},e.prototype._dispatchInitSort=function(t,e,n){var i=e.baseAxis,r=this._dataSort(t,i,(function(n){return t.get(t.mapDimension(e.otherAxis.dim),n)}));n.dispatchAction({type:"changeAxisOrder",componentType:i.dim+"Axis",isInitSort:!0,axisId:i.index,sortInfo:r})},e.prototype.remove=function(t,e){this._clear(this._model),this._removeOnRenderedListener(e)},e.prototype.dispose=function(t,e){this._removeOnRenderedListener(e)},e.prototype._removeOnRenderedListener=function(t){this._onRendered&&(t.getZr().off("rendered",this._onRendered),this._onRendered=null)},e.prototype._clear=function(t){var e=this.group,n=this._data;t&&t.isAnimationEnabled()&&n&&!this._isLargeDraw?(this._removeBackground(),this._backgroundEls=[],n.eachItemGraphicEl((function(e){xh(e,t,Qs(e).dataIndex)}))):e.removeAll(),this._data=null,this._isFirstFrame=!0},e.prototype._removeBackground=function(){this.group.remove(this._backgroundGroup),this._backgroundGroup=null},e.type="bar",e}(kg),KS={cartesian2d:function(t,e){var n=e.width<0?-1:1,i=e.height<0?-1:1;n<0&&(e.x+=e.width,e.width=-e.width),i<0&&(e.y+=e.height,e.height=-e.height);var r=t.x+t.width,o=t.y+t.height,a=ZS(e.x,t.x),s=jS(e.x+e.width,r),l=ZS(e.y,t.y),u=jS(e.y+e.height,o),h=sr?s:a,e.y=c&&l>o?u:l,e.width=h?0:s-a,e.height=c?0:u-l,n<0&&(e.x+=e.width,e.width=-e.width),i<0&&(e.y+=e.height,e.height=-e.height),h||c},polar:function(t,e){var n=e.r0<=e.r?1:-1;if(n<0){var i=e.r;e.r=e.r0,e.r0=i}var r=jS(e.r,t.r),o=ZS(e.r0,t.r0);e.r=r,e.r0=o;var a=r-o<0;if(n<0){i=e.r;e.r=e.r0,e.r0=i}return a}},$S={cartesian2d:function(t,e,n,i,r,o,a,s,l){var u=new zs({shape:A({},i),z2:1});(u.__dataIndex=n,u.name="item",o)&&(u.shape[r?"height":"width"]=0);return u},polar:function(t,e,n,i,r,o,a,s,l){var u=!r&&l?HS:zu,h=new u({shape:i,z2:1});h.name="item";var c,p,d=rM(r);if(h.calculateTextPosition=(c=d,p=({isRoundCap:u===HS}||{}).isRoundCap,function(t,e,n){var i=e.position;if(!i||i instanceof Array)return Tr(t,e,n);var r=c(i),o=null!=e.distance?e.distance:5,a=this.shape,s=a.cx,l=a.cy,u=a.r,h=a.r0,d=(u+h)/2,f=a.startAngle,g=a.endAngle,y=(f+g)/2,v=p?Math.abs(u-h)/2:0,m=Math.cos,x=Math.sin,_=s+u*m(f),b=l+u*x(f),w="left",S="top";switch(r){case"startArc":_=s+(h-o)*m(y),b=l+(h-o)*x(y),w="center",S="top";break;case"insideStartArc":_=s+(h+o)*m(y),b=l+(h+o)*x(y),w="center",S="bottom";break;case"startAngle":_=s+d*m(f)+YS(f,o+v,!1),b=l+d*x(f)+XS(f,o+v,!1),w="right",S="middle";break;case"insideStartAngle":_=s+d*m(f)+YS(f,-o+v,!1),b=l+d*x(f)+XS(f,-o+v,!1),w="left",S="middle";break;case"middle":_=s+d*m(y),b=l+d*x(y),w="center",S="middle";break;case"endArc":_=s+(u+o)*m(y),b=l+(u+o)*x(y),w="center",S="bottom";break;case"insideEndArc":_=s+(u-o)*m(y),b=l+(u-o)*x(y),w="center",S="top";break;case"endAngle":_=s+d*m(g)+YS(g,o+v,!0),b=l+d*x(g)+XS(g,o+v,!0),w="left",S="middle";break;case"insideEndAngle":_=s+d*m(g)+YS(g,-o+v,!0),b=l+d*x(g)+XS(g,-o+v,!0),w="right",S="middle";break;default:return Tr(t,e,n)}return(t=t||{}).x=_,t.y=b,t.align=w,t.verticalAlign=S,t}),o){var f=r?"r":"endAngle",g={};h.shape[f]=r?i.r0:i.startAngle,g[f]=i[f],(s?fh:gh)(h,{shape:g},o)}return h}};function JS(t,e,n,i,r,o,a,s){var l,u;o?(u={x:i.x,width:i.width},l={y:i.y,height:i.height}):(u={y:i.y,height:i.height},l={x:i.x,width:i.width}),s||(a?fh:gh)(n,{shape:l},e,r,null),(a?fh:gh)(n,{shape:u},e?t.baseAxis.model:null,r)}function QS(t,e){for(var n=0;n0?1:-1,a=i.height>0?1:-1;return{x:i.x+o*r/2,y:i.y+a*r/2,width:i.width-o*r,height:i.height-a*r}},polar:function(t,e,n){var i=t.getItemLayout(e);return{cx:i.cx,cy:i.cy,r0:i.r0,r:i.r,startAngle:i.startAngle,endAngle:i.endAngle,clockwise:i.clockwise}}};function rM(t){return function(t){var e=t?"Arc":"Angle";return function(t){switch(t){case"start":case"insideStart":case"end":case"insideEnd":return t+e;default:return t}}}(t)}function oM(t,e,n,i,r,o,a,s){var l=e.getItemVisual(n,"style");if(s){if(!o.get("roundCap")){var u=t.shape;A(u,US(i.getModel("itemStyle"),u,!0)),t.setShape(u)}}else{var h=i.get(["itemStyle","borderRadius"])||0;t.setShape("r",h)}t.useStyle(l);var c=i.getShallow("cursor");c&&t.attr("cursor",c);var p=s?a?r.r>=r.r0?"endArc":"startArc":r.endAngle>=r.startAngle?"endAngle":"startAngle":a?r.height>=0?"bottom":"top":r.width>=0?"right":"left",d=ec(i);tc(t,d,{labelFetcher:o,labelDataIndex:n,defaultText:iS(o.getData(),n),inheritColor:l.fill,defaultOpacity:l.opacity,defaultOutsidePosition:p});var f=t.getTextContent();if(s&&f){var g=i.get(["label","position"]);t.textConfig.inside="middle"===g||null,function(t,e,n,i){if(j(i))t.setTextConfig({rotation:i});else if(Y(e))t.setTextConfig({rotation:0});else{var r,o=t.shape,a=o.clockwise?o.startAngle:o.endAngle,s=o.clockwise?o.endAngle:o.startAngle,l=(a+s)/2,u=n(e);switch(u){case"startArc":case"insideStartArc":case"middle":case"insideEndArc":case"endArc":r=l;break;case"startAngle":case"insideStartAngle":r=a;break;case"endAngle":case"insideEndAngle":r=s;break;default:return void t.setTextConfig({rotation:0})}var h=1.5*Math.PI-r;"middle"===u&&h>Math.PI/2&&h<1.5*Math.PI&&(h-=Math.PI),t.setTextConfig({rotation:h})}}(t,"outside"===g?p:g,rM(a),i.get(["label","rotate"]))}hc(f,d,o.getRawValue(n),(function(t){return rS(e,t)}));var y=i.getModel(["emphasis"]);Yl(t,y.get("focus"),y.get("blurScope"),y.get("disabled")),jl(t,i),function(t){return null!=t.startAngle&&null!=t.endAngle&&t.startAngle===t.endAngle}(r)&&(t.style.fill="none",t.style.stroke="none",E(t.states,(function(t){t.style&&(t.style.fill=t.style.stroke="none")})))}var aM=function(){},sM=function(t){function e(e){var n=t.call(this,e)||this;return n.type="largeBar",n}return n(e,t),e.prototype.getDefaultShape=function(){return new aM},e.prototype.buildPath=function(t,e){for(var n=e.points,i=this.baseDimIdx,r=1-this.baseDimIdx,o=[],a=[],s=this.barWidth,l=0;l=s[0]&&e<=s[0]+l[0]&&n>=s[1]&&n<=s[1]+l[1])return a[h]}return-1}(this,t.offsetX,t.offsetY);Qs(this).dataIndex=e>=0?e:null}),30,!1);function hM(t,e,n){if(MS(n,"cartesian2d")){var i=e,r=n.getArea();return{x:t?i.x:r.x,y:t?r.y:i.y,width:t?i.width:r.width,height:t?r.height:i.height}}var o=e;return{cx:(r=n.getArea()).cx,cy:r.cy,r0:t?r.r0:o.r0,r:t?r.r:o.r,startAngle:t?o.startAngle:0,endAngle:t?o.endAngle:2*Math.PI}}var cM=2*Math.PI,pM=Math.PI/180;function dM(t,e){return Cp(t.getBoxLayoutParams(),{width:e.getWidth(),height:e.getHeight()})}function fM(t,e){var n=dM(t,e),i=t.get("center"),r=t.get("radius");Y(r)||(r=[0,r]);var o,a,s=Ur(n.width,e.getWidth()),l=Ur(n.height,e.getHeight()),u=Math.min(s,l),h=Ur(r[0],u/2),c=Ur(r[1],u/2),p=t.coordinateSystem;if(p){var d=p.dataToPoint(i);o=d[0]||0,a=d[1]||0}else Y(i)||(i=[i,i]),o=Ur(i[0],s)+n.x,a=Ur(i[1],l)+n.y;return{cx:o,cy:a,r0:h,r:c}}function gM(t,e,n){e.eachSeriesByType(t,(function(t){var e=t.getData(),i=e.mapDimension("value"),r=dM(t,n),o=fM(t,n),a=o.cx,s=o.cy,l=o.r,u=o.r0,h=-t.get("startAngle")*pM,c=t.get("minAngle")*pM,p=0;e.each(i,(function(t){!isNaN(t)&&p++}));var d=e.getSum(i),f=Math.PI/(d||p)*2,g=t.get("clockwise"),y=t.get("roseType"),v=t.get("stillShowZeroSum"),m=e.getDataExtent(i);m[0]=0;var x=cM,_=0,b=h,w=g?1:-1;if(e.setLayout({viewRect:r,r:l}),e.each(i,(function(t,n){var i;if(isNaN(t))e.setItemLayout(n,{angle:NaN,startAngle:NaN,endAngle:NaN,clockwise:g,cx:a,cy:s,r0:u,r:y?NaN:l});else{(i="area"!==y?0===d&&v?f:t*f:cM/p)n?a:o,h=Math.abs(l.label.y-n);if(h>=u.maxY){var c=l.label.x-e-l.len2*r,p=i+l.len,f=Math.abs(c)t.unconstrainedWidth?null:d:null;i.setStyle("width",f)}var g=i.getBoundingRect();o.width=g.width;var y=(i.style.margin||0)+2.1;o.height=g.height+y,o.y-=(o.height-c)/2}}}function _M(t){return"center"===t.position}function bM(t){var e,n,i=t.getData(),r=[],o=!1,a=(t.get("minShowLabelAngle")||0)*vM,s=i.getLayout("viewRect"),l=i.getLayout("r"),u=s.width,h=s.x,c=s.y,p=s.height;function d(t){t.ignore=!0}i.each((function(t){var s=i.getItemGraphicEl(t),c=s.shape,p=s.getTextContent(),f=s.getTextGuideLine(),g=i.getItemModel(t),y=g.getModel("label"),v=y.get("position")||g.get(["emphasis","label","position"]),m=y.get("distanceToLabelLine"),x=y.get("alignTo"),_=Ur(y.get("edgeDistance"),u),b=y.get("bleedMargin"),w=g.getModel("labelLine"),S=w.get("length");S=Ur(S,u);var M=w.get("length2");if(M=Ur(M,u),Math.abs(c.endAngle-c.startAngle)0?"right":"left":k>0?"left":"right"}var B=Math.PI,F=0,G=y.get("rotate");if(j(G))F=G*(B/180);else if("center"===v)F=0;else if("radial"===G||!0===G){F=k<0?-A+B:-A}else if("tangential"===G&&"outside"!==v&&"outer"!==v){var W=Math.atan2(k,L);W<0&&(W=2*B+W),L>0&&(W=B+W),F=W-B}if(o=!!F,p.x=I,p.y=T,p.rotation=F,p.setStyle({verticalAlign:"middle"}),P){p.setStyle({align:D});var H=p.states.select;H&&(H.x+=p.x,H.y+=p.y)}else{var Y=p.getBoundingRect().clone();Y.applyTransform(p.getComputedTransform());var X=(p.style.margin||0)+2.1;Y.y-=X/2,Y.height+=X,r.push({label:p,labelLine:f,position:v,len:S,len2:M,minTurnAngle:w.get("minTurnAngle"),maxSurfaceAngle:w.get("maxSurfaceAngle"),surfaceNormal:new De(k,L),linePoints:C,textAlign:D,labelDistance:m,labelAlignTo:x,edgeDistance:_,bleedMargin:b,rect:Y,unconstrainedWidth:Y.width,labelStyleWidth:p.style.width})}s.setTextConfig({inside:P})}})),!o&&t.get("avoidLabelOverlap")&&function(t,e,n,i,r,o,a,s){for(var l=[],u=[],h=Number.MAX_VALUE,c=-Number.MAX_VALUE,p=0;p0){for(var l=o.getItemLayout(0),u=1;isNaN(l&&l.startAngle)&&u=n.r0}},e.type="pie",e}(kg);function MM(t,e,n){e=Y(e)&&{coordDimensions:e}||A({encodeDefine:t.getEncode()},e);var i=t.getSource(),r=ux(i,e).dimensions,o=new lx(r,t);return o.initData(i,n),o}var IM=function(){function t(t,e){this._getDataWithEncodedVisual=t,this._getRawData=e}return t.prototype.getAllNames=function(){var t=this._getRawData();return t.mapArray(t.getName)},t.prototype.containName=function(t){return this._getRawData().indexOfName(t)>=0},t.prototype.indexOfName=function(t){return this._getDataWithEncodedVisual().indexOfName(t)},t.prototype.getItemVisual=function(t,e){return this._getDataWithEncodedVisual().getItemVisual(t,e)},t}(),TM=Oo(),CM=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return n(e,t),e.prototype.init=function(e){t.prototype.init.apply(this,arguments),this.legendVisualProvider=new IM(W(this.getData,this),W(this.getRawData,this)),this._defaultLabelLine(e)},e.prototype.mergeOption=function(){t.prototype.mergeOption.apply(this,arguments)},e.prototype.getInitialData=function(){return MM(this,{coordDimensions:["value"],encodeDefaulter:H(Jp,this)})},e.prototype.getDataParams=function(e){var n=this.getData(),i=TM(n),r=i.seats;if(!r){var o=[];n.each(n.mapDimension("value"),(function(t){o.push(t)})),r=i.seats=Jr(o,n.hostModel.get("percentPrecision"))}var a=t.prototype.getDataParams.call(this,e);return a.percent=r[e]||0,a.$vars.push("percent"),a},e.prototype._defaultLabelLine=function(t){wo(t,"labelLine",["show"]);var e=t.labelLine,n=t.emphasis.labelLine;e.show=e.show&&t.label.show,n.show=n.show&&t.emphasis.label.show},e.type="series.pie",e.defaultOption={z:2,legendHoverLink:!0,colorBy:"data",center:["50%","50%"],radius:[0,"75%"],clockwise:!0,startAngle:90,minAngle:0,minShowLabelAngle:0,selectedOffset:10,percentPrecision:2,stillShowZeroSum:!0,left:0,top:0,right:0,bottom:0,width:null,height:null,label:{rotate:0,show:!0,overflow:"truncate",position:"outer",alignTo:"none",edgeDistance:"25%",bleedMargin:10,distanceToLabelLine:5},labelLine:{show:!0,length:15,length2:15,smooth:!1,minTurnAngle:90,maxSurfaceAngle:90,lineStyle:{width:1,type:"solid"}},itemStyle:{borderWidth:1,borderJoin:"round"},showEmptyCircle:!0,emptyCircleStyle:{color:"lightgray",opacity:1},labelLayout:{hideOverlap:!0},emphasis:{scale:!0,scaleSize:5},avoidLabelOverlap:!0,animationType:"expansion",animationDuration:1e3,animationTypeUpdate:"transition",animationEasingUpdate:"cubicInOut",animationDurationUpdate:500,animationEasing:"cubicInOut"},e}(mg);var DM=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n.hasSymbolVisual=!0,n}return n(e,t),e.prototype.getInitialData=function(t,e){return vx(null,this,{useEncodeDefaulter:!0})},e.prototype.getProgressive=function(){var t=this.option.progressive;return null==t?this.option.large?5e3:this.get("progressive"):t},e.prototype.getProgressiveThreshold=function(){var t=this.option.progressiveThreshold;return null==t?this.option.large?1e4:this.get("progressiveThreshold"):t},e.prototype.brushSelector=function(t,e,n){return n.point(e.getItemLayout(t))},e.prototype.getZLevelKey=function(){return this.getData().count()>this.getProgressiveThreshold()?this.id:""},e.type="series.scatter",e.dependencies=["grid","polar","geo","singleAxis","calendar"],e.defaultOption={coordinateSystem:"cartesian2d",z:2,legendHoverLink:!0,symbolSize:10,large:!1,largeThreshold:2e3,itemStyle:{opacity:.8},emphasis:{scale:!0},clip:!0,select:{itemStyle:{borderColor:"#212121"}},universalTransition:{divideShape:"clone"}},e}(mg),AM=function(){},kM=function(t){function e(e){var n=t.call(this,e)||this;return n._off=0,n.hoverDataIdx=-1,n}return n(e,t),e.prototype.getDefaultShape=function(){return new AM},e.prototype.reset=function(){this.notClear=!1,this._off=0},e.prototype.buildPath=function(t,e){var n,i=e.points,r=e.size,o=this.symbolProxy,a=o.shape,s=t.getContext?t.getContext():t,l=s&&r[0]<4,u=this.softClipShape;if(l)this._ctx=s;else{for(this._ctx=null,n=this._off;n=0;s--){var l=2*s,u=i[l]-o/2,h=i[l+1]-a/2;if(t>=u&&e>=h&&t<=u+o&&e<=h+a)return s}return-1},e.prototype.contain=function(t,e){var n=this.transformCoordToLocal(t,e),i=this.getBoundingRect();return t=n[0],e=n[1],i.contain(t,e)?(this.hoverDataIdx=this.findDataIndex(t,e))>=0:(this.hoverDataIdx=-1,!1)},e.prototype.getBoundingRect=function(){var t=this._rect;if(!t){for(var e=this.shape,n=e.points,i=e.size,r=i[0],o=i[1],a=1/0,s=1/0,l=-1/0,u=-1/0,h=0;h=0&&(l.dataIndex=n+(t.startIndex||0))}))},t.prototype.remove=function(){this._clear()},t.prototype._clear=function(){this._newAdded=[],this.group.removeAll()},t}(),PM=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n}return n(e,t),e.prototype.render=function(t,e,n){var i=t.getData();this._updateSymbolDraw(i,t).updateData(i,{clipShape:this._getClipShape(t)}),this._finished=!0},e.prototype.incrementalPrepareRender=function(t,e,n){var i=t.getData();this._updateSymbolDraw(i,t).incrementalPrepareUpdate(i),this._finished=!1},e.prototype.incrementalRender=function(t,e,n){this._symbolDraw.incrementalUpdate(t,e.getData(),{clipShape:this._getClipShape(e)}),this._finished=t.end===e.getData().count()},e.prototype.updateTransform=function(t,e,n){var i=t.getData();if(this.group.dirty(),!this._finished||i.count()>1e4)return{update:!0};var r=ES("").reset(t,e,n);r.progress&&r.progress({start:0,end:i.count(),count:i.count()},i),this._symbolDraw.updateLayout(i)},e.prototype.eachRendered=function(t){this._symbolDraw&&this._symbolDraw.eachRendered(t)},e.prototype._getClipShape=function(t){var e=t.coordinateSystem,n=e&&e.getArea&&e.getArea();return t.get("clip",!0)?n:null},e.prototype._updateSymbolDraw=function(t,e){var n=this._symbolDraw,i=e.pipelineContext.large;return n&&i===this._isLargeDraw||(n&&n.remove(),n=this._symbolDraw=i?new LM:new hS,this._isLargeDraw=i,this.group.removeAll()),this.group.add(n.group),n},e.prototype.remove=function(t,e){this._symbolDraw&&this._symbolDraw.remove(!0),this._symbolDraw=null},e.prototype.dispose=function(){},e.type="scatter",e}(kg),OM=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return n(e,t),e.type="grid",e.dependencies=["xAxis","yAxis"],e.layoutMode="box",e.defaultOption={show:!1,z:0,left:"10%",top:60,right:"10%",bottom:70,containLabel:!1,backgroundColor:"rgba(0,0,0,0)",borderWidth:1,borderColor:"#ccc"},e}(Rp),RM=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return n(e,t),e.prototype.getCoordSysModel=function(){return this.getReferringComponents("grid",zo).models[0]},e.type="cartesian2dAxis",e}(Rp);R(RM,I_);var NM={show:!0,z:0,inverse:!1,name:"",nameLocation:"end",nameRotate:null,nameTruncate:{maxWidth:null,ellipsis:"...",placeholder:"."},nameTextStyle:{},nameGap:15,silent:!1,triggerEvent:!1,tooltip:{show:!1},axisPointer:{},axisLine:{show:!0,onZero:!0,onZeroAxisIndex:null,lineStyle:{color:"#6E7079",width:1,type:"solid"},symbol:["none","none"],symbolSize:[10,15]},axisTick:{show:!0,inside:!1,length:5,lineStyle:{width:1}},axisLabel:{show:!0,inside:!1,rotate:0,showMinLabel:null,showMaxLabel:null,margin:8,fontSize:12},splitLine:{show:!0,lineStyle:{color:["#E0E6F1"],width:1,type:"solid"}},splitArea:{show:!1,areaStyle:{color:["rgba(250,250,250,0.2)","rgba(210,219,238,0.2)"]}}},EM=C({boundaryGap:!0,deduplication:null,splitLine:{show:!1},axisTick:{alignWithLabel:!1,interval:"auto"},axisLabel:{interval:"auto"}},NM),zM=C({boundaryGap:[0,0],axisLine:{show:"auto"},axisTick:{show:"auto"},splitNumber:5,minorTick:{show:!1,splitNumber:5,length:3,lineStyle:{}},minorSplitLine:{show:!1,lineStyle:{color:"#F4F7FD",width:1}}},NM),VM={category:EM,value:zM,time:C({splitNumber:6,axisLabel:{showMinLabel:!1,showMaxLabel:!1,rich:{primary:{fontWeight:"bold"}}},splitLine:{show:!1}},zM),log:k({logBase:10},zM)},BM={value:1,category:1,time:1,log:1};function FM(t,e,i,r){E(BM,(function(o,a){var s=C(C({},VM[a],!0),r,!0),l=function(t){function i(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e+"Axis."+a,n}return n(i,t),i.prototype.mergeDefaultAndTheme=function(t,e){var n=Ap(this),i=n?Lp(t):{};C(t,e.getTheme().get(a+"Axis")),C(t,this.getDefaultOption()),t.type=GM(t),n&&kp(t,i,n)},i.prototype.optionUpdated=function(){"category"===this.option.type&&(this.__ordinalMeta=_x.createByAxisModel(this))},i.prototype.getCategories=function(t){var e=this.option;if("category"===e.type)return t?e.data:this.__ordinalMeta.categories},i.prototype.getOrdinalMeta=function(){return this.__ordinalMeta},i.type=e+"Axis."+a,i.defaultOption=s,i}(i);t.registerComponentModel(l)})),t.registerSubTypeDefaulter(e+"Axis",GM)}function GM(t){return t.type||(t.data?"category":"value")}var WM=function(){function t(t){this.type="cartesian",this._dimList=[],this._axes={},this.name=t||""}return t.prototype.getAxis=function(t){return this._axes[t]},t.prototype.getAxes=function(){return z(this._dimList,(function(t){return this._axes[t]}),this)},t.prototype.getAxesByScale=function(t){return t=t.toLowerCase(),B(this.getAxes(),(function(e){return e.scale.type===t}))},t.prototype.addAxis=function(t){var e=t.dim;this._axes[e]=t,this._dimList.push(e)},t}(),HM=["x","y"];function YM(t){return"interval"===t.type||"time"===t.type}var XM=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.type="cartesian2d",e.dimensions=HM,e}return n(e,t),e.prototype.calcAffineTransform=function(){this._transform=this._invTransform=null;var t=this.getAxis("x").scale,e=this.getAxis("y").scale;if(YM(t)&&YM(e)){var n=t.getExtent(),i=e.getExtent(),r=this.dataToPoint([n[0],i[0]]),o=this.dataToPoint([n[1],i[1]]),a=n[1]-n[0],s=i[1]-i[0];if(a&&s){var l=(o[0]-r[0])/a,u=(o[1]-r[1])/s,h=r[0]-n[0]*l,c=r[1]-i[0]*u,p=this._transform=[l,0,0,u,h,c];this._invTransform=Ie([],p)}}},e.prototype.getBaseAxis=function(){return this.getAxesByScale("ordinal")[0]||this.getAxesByScale("time")[0]||this.getAxis("x")},e.prototype.containPoint=function(t){var e=this.getAxis("x"),n=this.getAxis("y");return e.contain(e.toLocalCoord(t[0]))&&n.contain(n.toLocalCoord(t[1]))},e.prototype.containData=function(t){return this.getAxis("x").containData(t[0])&&this.getAxis("y").containData(t[1])},e.prototype.containZone=function(t,e){var n=this.dataToPoint(t),i=this.dataToPoint(e),r=this.getArea(),o=new ze(n[0],n[1],i[0]-n[0],i[1]-n[1]);return r.intersect(o)},e.prototype.dataToPoint=function(t,e,n){n=n||[];var i=t[0],r=t[1];if(this._transform&&null!=i&&isFinite(i)&&null!=r&&isFinite(r))return Wt(n,t,this._transform);var o=this.getAxis("x"),a=this.getAxis("y");return n[0]=o.toGlobalCoord(o.dataToCoord(i,e)),n[1]=a.toGlobalCoord(a.dataToCoord(r,e)),n},e.prototype.clampData=function(t,e){var n=this.getAxis("x").scale,i=this.getAxis("y").scale,r=n.getExtent(),o=i.getExtent(),a=n.parse(t[0]),s=i.parse(t[1]);return(e=e||[])[0]=Math.min(Math.max(Math.min(r[0],r[1]),a),Math.max(r[0],r[1])),e[1]=Math.min(Math.max(Math.min(o[0],o[1]),s),Math.max(o[0],o[1])),e},e.prototype.pointToData=function(t,e){var n=[];if(this._invTransform)return Wt(n,t,this._invTransform);var i=this.getAxis("x"),r=this.getAxis("y");return n[0]=i.coordToData(i.toLocalCoord(t[0]),e),n[1]=r.coordToData(r.toLocalCoord(t[1]),e),n},e.prototype.getOtherAxis=function(t){return this.getAxis("x"===t.dim?"y":"x")},e.prototype.getArea=function(){var t=this.getAxis("x").getGlobalExtent(),e=this.getAxis("y").getGlobalExtent(),n=Math.min(t[0],t[1]),i=Math.min(e[0],e[1]),r=Math.max(t[0],t[1])-n,o=Math.max(e[0],e[1])-i;return new ze(n,i,r,o)},e}(WM),UM=function(t){function e(e,n,i,r,o){var a=t.call(this,e,n,i)||this;return a.index=0,a.type=r||"value",a.position=o||"bottom",a}return n(e,t),e.prototype.isHorizontal=function(){var t=this.position;return"top"===t||"bottom"===t},e.prototype.getGlobalExtent=function(t){var e=this.getExtent();return e[0]=this.toGlobalCoord(e[0]),e[1]=this.toGlobalCoord(e[1]),t&&e[0]>e[1]&&e.reverse(),e},e.prototype.pointToData=function(t,e){return this.coordToData(this.toLocalCoord(t["x"===this.dim?0:1]),e)},e.prototype.setCategorySortInfo=function(t){if("category"!==this.type)return!1;this.model.option.categorySortInfo=t,this.scale.setSortInfo(t)},e}(nb);function ZM(t,e,n){n=n||{};var i=t.coordinateSystem,r=e.axis,o={},a=r.getAxesOnZeroOf()[0],s=r.position,l=a?"onZero":s,u=r.dim,h=i.getRect(),c=[h.x,h.x+h.width,h.y,h.y+h.height],p={left:0,right:1,top:0,bottom:1,onZero:2},d=e.get("offset")||0,f="x"===u?[c[2]-d,c[3]+d]:[c[0]-d,c[1]+d];if(a){var g=a.toGlobalCoord(a.dataToCoord(0));f[p.onZero]=Math.max(Math.min(g,f[1]),f[0])}o.position=["y"===u?f[p[l]]:c[0],"x"===u?f[p[l]]:c[3]],o.rotation=Math.PI/2*("x"===u?0:1);o.labelDirection=o.tickDirection=o.nameDirection={top:-1,bottom:1,left:-1,right:1}[s],o.labelOffset=a?f[p[s]]-f[p.onZero]:0,e.get(["axisTick","inside"])&&(o.tickDirection=-o.tickDirection),it(n.labelInside,e.get(["axisLabel","inside"]))&&(o.labelDirection=-o.labelDirection);var y=e.get(["axisLabel","rotate"]);return o.labelRotate="top"===l?-y:y,o.z2=1,o}function jM(t){return"cartesian2d"===t.get("coordinateSystem")}function qM(t){var e={xAxisModel:null,yAxisModel:null};return E(e,(function(n,i){var r=i.replace(/Model$/,""),o=t.getReferringComponents(r,zo).models[0];e[i]=o})),e}var KM=Math.log;function $M(t,e,n){var i=Ox.prototype,r=i.getTicks.call(n),o=i.getTicks.call(n,!0),a=r.length-1,s=i.getInterval.call(n),l=y_(t,e),u=l.extent,h=l.fixMin,c=l.fixMax;if("log"===t.type){var p=KM(t.base);u=[KM(u[0])/p,KM(u[1])/p]}t.setExtent(u[0],u[1]),t.calcNiceExtent({splitNumber:a,fixMin:h,fixMax:c});var d=i.getExtent.call(t);h&&(u[0]=d[0]),c&&(u[1]=d[1]);var f=i.getInterval.call(t),g=u[0],y=u[1];if(h&&c)f=(y-g)/a;else if(h)for(y=u[0]+f*a;yu[0]&&isFinite(g)&&isFinite(u[0]);)f=Ix(f),g=u[1]-f*a;else{t.getTicks().length-1>a&&(f=Ix(f));var v=f*a;(g=Zr((y=Math.ceil(u[1]/f)*f)-v))<0&&u[0]>=0?(g=0,y=Zr(v)):y>0&&u[1]<=0&&(y=0,g=-Zr(v))}var m=(r[0].value-o[0].value)/s,x=(r[a].value-o[a].value)/s;i.setExtent.call(t,g+f*m,y+f*x),i.setInterval.call(t,f),(m||x)&&i.setNiceExtent.call(t,g+f,y-f)}var JM=function(){function t(t,e,n){this.type="grid",this._coordsMap={},this._coordsList=[],this._axesMap={},this._axesList=[],this.axisPointerEnabled=!0,this.dimensions=HM,this._initCartesian(t,e,n),this.model=t}return t.prototype.getRect=function(){return this._rect},t.prototype.update=function(t,e){var n=this._axesMap;function i(t){var e,n=G(t),i=n.length;if(i){for(var r=[],o=i-1;o>=0;o--){var a=t[+n[o]],s=a.model,l=a.scale;Sx(l)&&s.get("alignTicks")&&null==s.get("interval")?r.push(a):(v_(l,s),Sx(l)&&(e=a))}r.length&&(e||v_((e=r.pop()).scale,e.model),E(r,(function(t){$M(t.scale,t.model,e.scale)})))}}this._updateScale(t,this.model),i(n.x),i(n.y);var r={};E(n.x,(function(t){tI(n,"y",t,r)})),E(n.y,(function(t){tI(n,"x",t,r)})),this.resize(this.model,e)},t.prototype.resize=function(t,e,n){var i=t.getBoxLayoutParams(),r=!n&&t.get("containLabel"),o=Cp(i,{width:e.getWidth(),height:e.getHeight()});this._rect=o;var a=this._axesList;function s(){E(a,(function(t){var e=t.isHorizontal(),n=e?[0,o.width]:[0,o.height],i=t.inverse?1:0;t.setExtent(n[i],n[1-i]),function(t,e){var n=t.getExtent(),i=n[0]+n[1];t.toGlobalCoord="x"===t.dim?function(t){return t+e}:function(t){return i-t+e},t.toLocalCoord="x"===t.dim?function(t){return t-e}:function(t){return i-t+e}}(t,e?o.x:o.y)}))}s(),r&&(E(a,(function(t){if(!t.model.get(["axisLabel","inside"])){var e=function(t){var e=t.model,n=t.scale;if(e.get(["axisLabel","show"])&&!n.isBlank()){var i,r,o=n.getExtent();r=n instanceof Lx?n.count():(i=n.getTicks()).length;var a,s=t.getLabelModel(),l=x_(t),u=1;r>40&&(u=Math.ceil(r/40));for(var h=0;h0&&i>0||n<0&&i<0)}(t)}var nI=Math.PI,iI=function(){function t(t,e){this.group=new zr,this.opt=e,this.axisModel=t,k(e,{labelOffset:0,nameDirection:1,tickDirection:1,labelDirection:1,silent:!0,handleAutoShown:function(){return!0}});var n=new zr({x:e.position[0],y:e.position[1],rotation:e.rotation});n.updateTransform(),this._transformGroup=n}return t.prototype.hasBuilder=function(t){return!!rI[t]},t.prototype.add=function(t){rI[t](this.opt,this.axisModel,this.group,this._transformGroup)},t.prototype.getGroup=function(){return this.group},t.innerTextLayout=function(t,e,n){var i,r,o=eo(e-t);return no(o)?(r=n>0?"top":"bottom",i="center"):no(o-nI)?(r=n>0?"bottom":"top",i="center"):(r="middle",i=o>0&&o0?"right":"left":n>0?"left":"right"),{rotation:o,textAlign:i,textVerticalAlign:r}},t.makeAxisEventDataBase=function(t){var e={componentType:t.mainType,componentIndex:t.componentIndex};return e[t.mainType+"Index"]=t.componentIndex,e},t.isLabelSilent=function(t){var e=t.get("tooltip");return t.get("silent")||!(t.get("triggerEvent")||e&&e.show)},t}(),rI={axisLine:function(t,e,n,i){var r=e.get(["axisLine","show"]);if("auto"===r&&t.handleAutoShown&&(r=t.handleAutoShown("axisLine")),r){var o=e.axis.getExtent(),a=i.transform,s=[o[0],0],l=[o[1],0],u=s[0]>l[0];a&&(Wt(s,s,a),Wt(l,l,a));var h=A({lineCap:"round"},e.getModel(["axisLine","lineStyle"]).getLineStyle()),c=new Zu({shape:{x1:s[0],y1:s[1],x2:l[0],y2:l[1]},style:h,strokeContainThreshold:t.strokeContainThreshold||5,silent:!0,z2:1});Rh(c.shape,c.style.lineWidth),c.anid="line",n.add(c);var p=e.get(["axisLine","symbol"]);if(null!=p){var d=e.get(["axisLine","symbolSize"]);U(p)&&(p=[p,p]),(U(d)||j(d))&&(d=[d,d]);var f=Yy(e.get(["axisLine","symbolOffset"])||0,d),g=d[0],y=d[1];E([{rotate:t.rotation+Math.PI/2,offset:f[0],r:0},{rotate:t.rotation-Math.PI/2,offset:f[1],r:Math.sqrt((s[0]-l[0])*(s[0]-l[0])+(s[1]-l[1])*(s[1]-l[1]))}],(function(e,i){if("none"!==p[i]&&null!=p[i]){var r=Wy(p[i],-g/2,-y/2,g,y,h.stroke,!0),o=e.r+e.offset,a=u?l:s;r.attr({rotation:e.rotate,x:a[0]+o*Math.cos(t.rotation),y:a[1]-o*Math.sin(t.rotation),silent:!0,z2:11}),n.add(r)}}))}}},axisTickLabel:function(t,e,n,i){var r=function(t,e,n,i){var r=n.axis,o=n.getModel("axisTick"),a=o.get("show");"auto"===a&&i.handleAutoShown&&(a=i.handleAutoShown("axisTick"));if(!a||r.scale.isBlank())return;for(var s=o.getModel("lineStyle"),l=i.tickDirection*o.get("length"),u=lI(r.getTicksCoords(),e.transform,l,k(s.getLineStyle(),{stroke:n.get(["axisLine","lineStyle","color"])}),"ticks"),h=0;hc[1]?-1:1,d=["start"===s?c[0]-p*h:"end"===s?c[1]+p*h:(c[0]+c[1])/2,sI(s)?t.labelOffset+l*h:0],f=e.get("nameRotate");null!=f&&(f=f*nI/180),sI(s)?o=iI.innerTextLayout(t.rotation,null!=f?f:t.rotation,l):(o=function(t,e,n,i){var r,o,a=eo(n-t),s=i[0]>i[1],l="start"===e&&!s||"start"!==e&&s;no(a-nI/2)?(o=l?"bottom":"top",r="center"):no(a-1.5*nI)?(o=l?"top":"bottom",r="center"):(o="middle",r=a<1.5*nI&&a>nI/2?l?"left":"right":l?"right":"left");return{rotation:a,textAlign:r,textVerticalAlign:o}}(t.rotation,s,f||0,c),null!=(a=t.axisNameAvailableWidth)&&(a=Math.abs(a/Math.sin(o.rotation)),!isFinite(a)&&(a=null)));var g=u.getFont(),y=e.get("nameTruncate",!0)||{},v=y.ellipsis,m=it(t.nameTruncateMaxWidth,y.maxWidth,a),x=new Fs({x:d[0],y:d[1],rotation:o.rotation,silent:iI.isLabelSilent(e),style:nc(u,{text:r,font:g,overflow:"truncate",width:m,ellipsis:v,fill:u.getTextColor()||e.get(["axisLine","lineStyle","color"]),align:u.get("align")||o.textAlign,verticalAlign:u.get("verticalAlign")||o.textVerticalAlign}),z2:1});if(Zh({el:x,componentModel:e,itemName:r}),x.__fullText=r,x.anid="name",e.get("triggerEvent")){var _=iI.makeAxisEventDataBase(e);_.targetType="axisName",_.name=r,Qs(x).eventData=_}i.add(x),x.updateTransform(),n.add(x),x.decomposeTransform()}}};function oI(t){t&&(t.ignore=!0)}function aI(t,e){var n=t&&t.getBoundingRect().clone(),i=e&&e.getBoundingRect().clone();if(n&&i){var r=xe([]);return Se(r,r,-t.rotation),n.applyTransform(be([],r,t.getLocalTransform())),i.applyTransform(be([],r,e.getLocalTransform())),n.intersect(i)}}function sI(t){return"middle"===t||"center"===t}function lI(t,e,n,i,r){for(var o=[],a=[],s=[],l=0;l=0||t===e}function cI(t){var e=pI(t);if(e){var n=e.axisPointerModel,i=e.axis.scale,r=n.option,o=n.get("status"),a=n.get("value");null!=a&&(a=i.parse(a));var s=dI(n);null==o&&(r.status=s?"show":"hide");var l=i.getExtent().slice();l[0]>l[1]&&l.reverse(),(null==a||a>l[1])&&(a=l[1]),a0&&!c.min?c.min=0:null!=c.min&&c.min<0&&!c.max&&(c.max=0);var p=a;null!=c.color&&(p=k({color:c.color},a));var d=C(T(c),{boundaryGap:t,splitNumber:e,scale:n,axisLine:i,axisTick:r,axisLabel:o,name:c.text,showName:s,nameLocation:"end",nameGap:u,nameTextStyle:p,triggerEvent:h},!1);if(U(l)){var f=d.name;d.name=l.replace("{value}",null!=f?f:"")}else X(l)&&(d.name=l(d.name,d));var g=new Mc(d,null,this.ecModel);return R(g,I_.prototype),g.mainType="radar",g.componentIndex=this.componentIndex,g}),this);this._indicatorModels=c},e.prototype.getIndicatorModels=function(){return this._indicatorModels},e.type="radar",e.defaultOption={z:0,center:["50%","50%"],radius:"75%",startAngle:90,axisName:{show:!0},boundaryGap:[0,0],splitNumber:5,axisNameGap:15,scale:!1,shape:"polygon",axisLine:C({lineStyle:{color:"#bbb"}},NI.axisLine),axisLabel:EI(NI.axisLabel,!1),axisTick:EI(NI.axisTick,!1),splitLine:EI(NI.splitLine,!0),splitArea:EI(NI.splitArea,!0),indicator:[]},e}(Rp),VI=["axisLine","axisTickLabel","axisName"],BI=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n}return n(e,t),e.prototype.render=function(t,e,n){this.group.removeAll(),this._buildAxes(t),this._buildSplitLineAndArea(t)},e.prototype._buildAxes=function(t){var e=t.coordinateSystem;E(z(e.getIndicatorAxes(),(function(t){var n=t.model.get("showName")?t.name:"";return new iI(t.model,{axisName:n,position:[e.cx,e.cy],rotation:t.angle,labelDirection:-1,tickDirection:-1,nameDirection:1})})),(function(t){E(VI,t.add,t),this.group.add(t.getGroup())}),this)},e.prototype._buildSplitLineAndArea=function(t){var e=t.coordinateSystem,n=e.getIndicatorAxes();if(n.length){var i=t.get("shape"),r=t.getModel("splitLine"),o=t.getModel("splitArea"),a=r.getModel("lineStyle"),s=o.getModel("areaStyle"),l=r.get("show"),u=o.get("show"),h=a.get("color"),c=s.get("color"),p=Y(h)?h:[h],d=Y(c)?c:[c],f=[],g=[];if("circle"===i)for(var y=n[0].getTicksCoords(),v=e.cx,m=e.cy,x=0;x3?1.4:r>1?1.2:1.1;ZI(this,"zoom","zoomOnMouseWheel",t,{scale:i>0?s:1/s,originX:o,originY:a,isAvailableBehavior:null})}if(n){var l=Math.abs(i);ZI(this,"scrollMove","moveOnMouseWheel",t,{scrollDelta:(i>0?1:-1)*(l>3?.4:l>1?.15:.05),originX:o,originY:a,isAvailableBehavior:null})}}},e.prototype._pinchHandler=function(t){YI(this._zr,"globalPan")||ZI(this,"zoom",null,t,{scale:t.pinchScale>1?1.1:1/1.1,originX:t.pinchX,originY:t.pinchY,isAvailableBehavior:null})},e}(jt);function ZI(t,e,n,i,r){t.pointerChecker&&t.pointerChecker(i,r.originX,r.originY)&&(de(i.event),jI(t,e,n,i,r))}function jI(t,e,n,i,r){r.isAvailableBehavior=W(qI,null,n,i),t.trigger(e,r)}function qI(t,e,n){var i=n[t];return!t||i&&(!U(i)||e.event[i+"Key"])}function KI(t,e,n){var i=t.target;i.x+=e,i.y+=n,i.dirty()}function $I(t,e,n,i){var r=t.target,o=t.zoomLimit,a=t.zoom=t.zoom||1;if(a*=e,o){var s=o.min||0,l=o.max||1/0;a=Math.max(Math.min(l,a),s)}var u=a/t.zoom;t.zoom=a,r.x-=(n-r.x)*(u-1),r.y-=(i-r.y)*(u-1),r.scaleX*=u,r.scaleY*=u,r.dirty()}var JI,QI={axisPointer:1,tooltip:1,brush:1};function tT(t,e,n){var i=e.getComponentByElement(t.topTarget),r=i&&i.coordinateSystem;return i&&i!==n&&!QI.hasOwnProperty(i.mainType)&&r&&r.model!==n}function eT(t){U(t)&&(t=(new DOMParser).parseFromString(t,"text/xml"));var e=t;for(9===e.nodeType&&(e=e.firstChild);"svg"!==e.nodeName.toLowerCase()||1!==e.nodeType;)e=e.nextSibling;return e}var nT={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"},iT=G(nT),rT={"alignment-baseline":"textBaseline","stop-color":"stopColor"},oT=G(rT),aT=function(){function t(){this._defs={},this._root=null}return t.prototype.parse=function(t,e){e=e||{};var n=eT(t);this._defsUsePending=[];var i=new zr;this._root=i;var r=[],o=n.getAttribute("viewBox")||"",a=parseFloat(n.getAttribute("width")||e.width),s=parseFloat(n.getAttribute("height")||e.height);isNaN(a)&&(a=null),isNaN(s)&&(s=null),pT(n,i,null,!0,!1);for(var l,u,h=n.firstChild;h;)this._parseNode(h,i,r,null,!1,!1),h=h.nextSibling;if(function(t,e){for(var n=0;n=4&&(l={x:parseFloat(c[0]||0),y:parseFloat(c[1]||0),width:parseFloat(c[2]),height:parseFloat(c[3])})}if(l&&null!=a&&null!=s&&(u=bT(l,{x:0,y:0,width:a,height:s}),!e.ignoreViewBox)){var p=i;(i=new zr).add(p),p.scaleX=p.scaleY=u.scale,p.x=u.x,p.y=u.y}return e.ignoreRootClip||null==a||null==s||i.setClipPath(new zs({shape:{x:0,y:0,width:a,height:s}})),{root:i,width:a,height:s,viewBoxRect:l,viewBoxTransform:u,named:r}},t.prototype._parseNode=function(t,e,n,i,r,o){var a,s=t.nodeName.toLowerCase(),l=i;if("defs"===s&&(r=!0),"text"===s&&(o=!0),"defs"===s||"switch"===s)a=e;else{if(!r){var u=JI[s];if(u&&_t(JI,s)){a=u.call(this,t,e);var h=t.getAttribute("name");if(h){var c={name:h,namedFrom:null,svgNodeTagLower:s,el:a};n.push(c),"g"===s&&(l=c)}else i&&n.push({name:i.name,namedFrom:i,svgNodeTagLower:s,el:a});e.add(a)}}var p=sT[s];if(p&&_t(sT,s)){var d=p.call(this,t),f=t.getAttribute("id");f&&(this._defs[f]=d)}}if(a&&a.isGroup)for(var g=t.firstChild;g;)1===g.nodeType?this._parseNode(g,a,n,l,r,o):3===g.nodeType&&o&&this._parseText(g,a),g=g.nextSibling},t.prototype._parseText=function(t,e){var n=new Cs({style:{text:t.textContent},silent:!0,x:this._textX||0,y:this._textY||0});hT(e,n),pT(t,n,this._defsUsePending,!1,!1),function(t,e){var n=e.__selfStyle;if(n){var i=n.textBaseline,r=i;i&&"auto"!==i?"baseline"===i?r="alphabetic":"before-edge"===i||"text-before-edge"===i?r="top":"after-edge"===i||"text-after-edge"===i?r="bottom":"central"!==i&&"mathematical"!==i||(r="middle"):r="alphabetic",t.style.textBaseline=r}var o=e.__inheritedStyle;if(o){var a=o.textAlign,s=a;a&&("middle"===a&&(s="center"),t.style.textAlign=s)}}(n,e);var i=n.style,r=i.fontSize;r&&r<9&&(i.fontSize=9,n.scaleX*=r/9,n.scaleY*=r/9);var o=(i.fontSize||i.fontFamily)&&[i.fontStyle,i.fontWeight,(i.fontSize||12)+"px",i.fontFamily||"sans-serif"].join(" ");i.font=o;var a=n.getBoundingRect();return this._textX+=a.width,e.add(n),n},t.internalField=void(JI={g:function(t,e){var n=new zr;return hT(e,n),pT(t,n,this._defsUsePending,!1,!1),n},rect:function(t,e){var n=new zs;return hT(e,n),pT(t,n,this._defsUsePending,!1,!1),n.setShape({x:parseFloat(t.getAttribute("x")||"0"),y:parseFloat(t.getAttribute("y")||"0"),width:parseFloat(t.getAttribute("width")||"0"),height:parseFloat(t.getAttribute("height")||"0")}),n.silent=!0,n},circle:function(t,e){var n=new _u;return hT(e,n),pT(t,n,this._defsUsePending,!1,!1),n.setShape({cx:parseFloat(t.getAttribute("cx")||"0"),cy:parseFloat(t.getAttribute("cy")||"0"),r:parseFloat(t.getAttribute("r")||"0")}),n.silent=!0,n},line:function(t,e){var n=new Zu;return hT(e,n),pT(t,n,this._defsUsePending,!1,!1),n.setShape({x1:parseFloat(t.getAttribute("x1")||"0"),y1:parseFloat(t.getAttribute("y1")||"0"),x2:parseFloat(t.getAttribute("x2")||"0"),y2:parseFloat(t.getAttribute("y2")||"0")}),n.silent=!0,n},ellipse:function(t,e){var n=new wu;return hT(e,n),pT(t,n,this._defsUsePending,!1,!1),n.setShape({cx:parseFloat(t.getAttribute("cx")||"0"),cy:parseFloat(t.getAttribute("cy")||"0"),rx:parseFloat(t.getAttribute("rx")||"0"),ry:parseFloat(t.getAttribute("ry")||"0")}),n.silent=!0,n},polygon:function(t,e){var n,i=t.getAttribute("points");i&&(n=cT(i));var r=new Wu({shape:{points:n||[]},silent:!0});return hT(e,r),pT(t,r,this._defsUsePending,!1,!1),r},polyline:function(t,e){var n,i=t.getAttribute("points");i&&(n=cT(i));var r=new Yu({shape:{points:n||[]},silent:!0});return hT(e,r),pT(t,r,this._defsUsePending,!1,!1),r},image:function(t,e){var n=new ks;return hT(e,n),pT(t,n,this._defsUsePending,!1,!1),n.setStyle({image:t.getAttribute("xlink:href")||t.getAttribute("href"),x:+t.getAttribute("x"),y:+t.getAttribute("y"),width:+t.getAttribute("width"),height:+t.getAttribute("height")}),n.silent=!0,n},text:function(t,e){var n=t.getAttribute("x")||"0",i=t.getAttribute("y")||"0",r=t.getAttribute("dx")||"0",o=t.getAttribute("dy")||"0";this._textX=parseFloat(n)+parseFloat(r),this._textY=parseFloat(i)+parseFloat(o);var a=new zr;return hT(e,a),pT(t,a,this._defsUsePending,!1,!0),a},tspan:function(t,e){var n=t.getAttribute("x"),i=t.getAttribute("y");null!=n&&(this._textX=parseFloat(n)),null!=i&&(this._textY=parseFloat(i));var r=t.getAttribute("dx")||"0",o=t.getAttribute("dy")||"0",a=new zr;return hT(e,a),pT(t,a,this._defsUsePending,!1,!0),this._textX+=parseFloat(r),this._textY+=parseFloat(o),a},path:function(t,e){var n=vu(t.getAttribute("d")||"");return hT(e,n),pT(t,n,this._defsUsePending,!1,!1),n.silent=!0,n}}),t}(),sT={lineargradient:function(t){var e=parseInt(t.getAttribute("x1")||"0",10),n=parseInt(t.getAttribute("y1")||"0",10),i=parseInt(t.getAttribute("x2")||"10",10),r=parseInt(t.getAttribute("y2")||"0",10),o=new nh(e,n,i,r);return lT(t,o),uT(t,o),o},radialgradient:function(t){var e=parseInt(t.getAttribute("cx")||"0",10),n=parseInt(t.getAttribute("cy")||"0",10),i=parseInt(t.getAttribute("r")||"0",10),r=new ih(e,n,i);return lT(t,r),uT(t,r),r}};function lT(t,e){"userSpaceOnUse"===t.getAttribute("gradientUnits")&&(e.global=!0)}function uT(t,e){for(var n=t.firstChild;n;){if(1===n.nodeType&&"stop"===n.nodeName.toLocaleLowerCase()){var i=n.getAttribute("offset"),r=void 0;r=i&&i.indexOf("%")>0?parseInt(i,10)/100:i?parseFloat(i):0;var o={};_T(n,o,o);var a=o.stopColor||n.getAttribute("stop-color")||"#000000";e.colorStops.push({offset:r,color:a})}n=n.nextSibling}}function hT(t,e){t&&t.__inheritedStyle&&(e.__inheritedStyle||(e.__inheritedStyle={}),k(e.__inheritedStyle,t.__inheritedStyle))}function cT(t){for(var e=yT(t),n=[],i=0;i0;o-=2){var a=i[o],s=i[o-1],l=yT(a);switch(r=r||[1,0,0,1,0,0],s){case"translate":we(r,r,[parseFloat(l[0]),parseFloat(l[1]||"0")]);break;case"scale":Me(r,r,[parseFloat(l[0]),parseFloat(l[1]||l[0])]);break;case"rotate":Se(r,r,-parseFloat(l[0])*mT);break;case"skewX":be(r,[1,0,Math.tan(parseFloat(l[0])*mT),1,0,0],r);break;case"skewY":be(r,[1,Math.tan(parseFloat(l[0])*mT),0,1,0,0],r);break;case"matrix":r[0]=parseFloat(l[0]),r[1]=parseFloat(l[1]),r[2]=parseFloat(l[2]),r[3]=parseFloat(l[3]),r[4]=parseFloat(l[4]),r[5]=parseFloat(l[5])}}e.setLocalTransform(r)}}(t,e),_T(t,a,s),i||function(t,e,n){for(var i=0;i0,f={api:n,geo:s,mapOrGeoModel:t,data:a,isVisualEncodedByVisualMap:d,isGeo:o,transformInfoRaw:c};"geoJSON"===s.resourceType?this._buildGeoJSON(f):"geoSVG"===s.resourceType&&this._buildSVG(f),this._updateController(t,e,n),this._updateMapSelectHandler(t,l,n,i)},t.prototype._buildGeoJSON=function(t){var e=this._regionsGroupByName=yt(),n=yt(),i=this._regionsGroup,r=t.transformInfoRaw,o=t.mapOrGeoModel,a=t.data,s=t.geo.projection,l=s&&s.stream;function u(t,e){return e&&(t=e(t)),t&&[t[0]*r.scaleX+r.x,t[1]*r.scaleY+r.y]}function h(t){for(var e=[],n=!l&&s&&s.project,i=0;i=0)&&(p=r);var d=a?{normal:{align:"center",verticalAlign:"middle"}}:null;tc(e,ec(i),{labelFetcher:p,labelDataIndex:c,defaultText:n},d);var f=e.getTextContent();if(f&&(WT(f).ignore=f.ignore,e.textConfig&&a)){var g=e.getBoundingRect().clone();e.textConfig.layoutRect=g,e.textConfig.position=[(a[0]-g.x)/g.width*100+"%",(a[1]-g.y)/g.height*100+"%"]}e.disableLabelAnimation=!0}else e.removeTextContent(),e.removeTextConfig(),e.disableLabelAnimation=null}function jT(t,e,n,i,r,o){t.data?t.data.setItemGraphicEl(o,e):Qs(e).eventData={componentType:"geo",componentIndex:r.componentIndex,geoIndex:r.componentIndex,name:n,region:i&&i.option||{}}}function qT(t,e,n,i,r){t.data||Zh({el:e,componentModel:r,itemName:n,itemTooltipOption:i.get("tooltip")})}function KT(t,e,n,i,r){e.highDownSilentOnTouch=!!r.get("selectedMode");var o=i.getModel("emphasis"),a=o.get("focus");return Yl(e,a,o.get("blurScope"),o.get("disabled")),t.isGeo&&function(t,e,n){var i=Qs(t);i.componentMainType=e.mainType,i.componentIndex=e.componentIndex,i.componentHighDownName=n}(e,r,n),a}function $T(t,e,n){var i,r=[];function o(){i=[]}function a(){i.length&&(r.push(i),i=[])}var s=e({polygonStart:o,polygonEnd:a,lineStart:o,lineEnd:a,point:function(t,e){isFinite(t)&&isFinite(e)&&i.push([t,e])},sphere:function(){}});return!n&&s.polygonStart(),E(t,(function(t){s.lineStart();for(var e=0;e-1&&(n.style.stroke=n.style.fill,n.style.fill="#fff",n.style.lineWidth=2),n},e.type="series.map",e.dependencies=["geo"],e.layoutMode="box",e.defaultOption={z:2,coordinateSystem:"geo",map:"",left:"center",top:"center",aspectScale:null,showLegendSymbol:!0,boundingCoords:null,center:null,zoom:1,scaleLimit:null,selectedMode:!0,label:{show:!1,color:"#000"},itemStyle:{borderWidth:.5,borderColor:"#444",areaColor:"#eee"},emphasis:{label:{show:!0,color:"rgb(100,0,0)"},itemStyle:{areaColor:"rgba(255,215,0,0.8)"}},select:{label:{show:!0,color:"rgb(100,0,0)"},itemStyle:{color:"rgba(255,215,0,0.8)"}},nameProperty:"name"},e}(mg);function tC(t){var e={};t.eachSeriesByType("map",(function(t){var n=t.getHostGeoModel(),i=n?"o"+n.id:"i"+t.getMapType();(e[i]=e[i]||[]).push(t)})),E(e,(function(t,e){for(var n,i,r,o=(n=z(t,(function(t){return t.getData()})),i=t[0].get("mapValueCalculation"),r={},E(n,(function(t){t.each(t.mapDimension("value"),(function(e,n){var i="ec-"+t.getName(n);r[i]=r[i]||[],isNaN(e)||r[i].push(e)}))})),n[0].map(n[0].mapDimension("value"),(function(t,e){for(var o="ec-"+n[0].getName(e),a=0,s=1/0,l=-1/0,u=r[o].length,h=0;h1?(d.width=p,d.height=p/x):(d.height=p,d.width=p*x),d.y=c[1]-d.height/2,d.x=c[0]-d.width/2;else{var b=t.getBoxLayoutParams();b.aspect=x,d=Cp(b,{width:v,height:m})}this.setViewRect(d.x,d.y,d.width,d.height),this.setCenter(t.get("center"),e),this.setZoom(t.get("zoom"))}R(sC,iC);var hC=function(){function t(){this.dimensions=aC}return t.prototype.create=function(t,e){var n=[];function i(t){return{nameProperty:t.get("nameProperty"),aspectScale:t.get("aspectScale"),projection:t.get("projection")}}t.eachComponent("geo",(function(t,r){var o=t.get("map"),a=new sC(o+r,o,A({nameMap:t.get("nameMap")},i(t)));a.zoomLimit=t.get("scaleLimit"),n.push(a),t.coordinateSystem=a,a.model=t,a.resize=uC,a.resize(t,e)})),t.eachSeries((function(t){if("geo"===t.get("coordinateSystem")){var e=t.get("geoIndex")||0;t.coordinateSystem=n[e]}}));var r={};return t.eachSeriesByType("map",(function(t){if(!t.getHostGeoModel()){var e=t.getMapType();r[e]=r[e]||[],r[e].push(t)}})),E(r,(function(t,r){var o=z(t,(function(t){return t.get("nameMap")})),a=new sC(r,r,A({nameMap:D(o)},i(t[0])));a.zoomLimit=it.apply(null,z(t,(function(t){return t.get("scaleLimit")}))),n.push(a),a.resize=uC,a.resize(t[0],e),E(t,(function(t){t.coordinateSystem=a,function(t,e){E(e.get("geoCoord"),(function(e,n){t.addGeoCoord(n,e)}))}(a,t)}))})),n},t.prototype.getFilledRegions=function(t,e,n,i){for(var r=(t||[]).slice(),o=yt(),a=0;a=0;){var o=e[n];o.hierNode.prelim+=i,o.hierNode.modifier+=i,r+=o.hierNode.change,i+=o.hierNode.shift+r}}(t);var o=(n[0].hierNode.prelim+n[n.length-1].hierNode.prelim)/2;r?(t.hierNode.prelim=r.hierNode.prelim+e(t,r),t.hierNode.modifier=t.hierNode.prelim-o):t.hierNode.prelim=o}else r&&(t.hierNode.prelim=r.hierNode.prelim+e(t,r));t.parentNode.hierNode.defaultAncestor=function(t,e,n,i){if(e){for(var r=t,o=t,a=o.parentNode.children[0],s=e,l=r.hierNode.modifier,u=o.hierNode.modifier,h=a.hierNode.modifier,c=s.hierNode.modifier;s=wC(s),o=SC(o),s&&o;){r=wC(r),a=SC(a),r.hierNode.ancestor=t;var p=s.hierNode.prelim+c-o.hierNode.prelim-u+i(s,o);p>0&&(IC(MC(s,t,n),t,p),u+=p,l+=p),c+=s.hierNode.modifier,u+=o.hierNode.modifier,l+=r.hierNode.modifier,h+=a.hierNode.modifier}s&&!wC(r)&&(r.hierNode.thread=s,r.hierNode.modifier+=c-l),o&&!SC(a)&&(a.hierNode.thread=o,a.hierNode.modifier+=u-h,n=t)}return n}(t,r,t.parentNode.hierNode.defaultAncestor||i[0],e)}function xC(t){var e=t.hierNode.prelim+t.parentNode.hierNode.modifier;t.setLayout({x:e},!0),t.hierNode.modifier+=t.parentNode.hierNode.modifier}function _C(t){return arguments.length?t:TC}function bC(t,e){return t-=Math.PI/2,{x:e*Math.cos(t),y:e*Math.sin(t)}}function wC(t){var e=t.children;return e.length&&t.isExpand?e[e.length-1]:t.hierNode.thread}function SC(t){var e=t.children;return e.length&&t.isExpand?e[0]:t.hierNode.thread}function MC(t,e,n){return t.hierNode.ancestor.parentNode===e.parentNode?t.hierNode.ancestor:n}function IC(t,e,n){var i=n/(e.hierNode.i-t.hierNode.i);e.hierNode.change-=i,e.hierNode.shift+=n,e.hierNode.modifier+=n,e.hierNode.prelim+=n,t.hierNode.change+=i}function TC(t,e){return t.parentNode===e.parentNode?1:2}var CC=function(){this.parentPoint=[],this.childPoints=[]},DC=function(t){function e(e){return t.call(this,e)||this}return n(e,t),e.prototype.getDefaultStyle=function(){return{stroke:"#000",fill:null}},e.prototype.getDefaultShape=function(){return new CC},e.prototype.buildPath=function(t,e){var n=e.childPoints,i=n.length,r=e.parentPoint,o=n[0],a=n[i-1];if(1===i)return t.moveTo(r[0],r[1]),void t.lineTo(o[0],o[1]);var s=e.orient,l="TB"===s||"BT"===s?0:1,u=1-l,h=Ur(e.forkPosition,1),c=[];c[l]=r[l],c[u]=r[u]+(a[u]-r[u])*h,t.moveTo(r[0],r[1]),t.lineTo(c[0],c[1]),t.moveTo(o[0],o[1]),c[l]=o[l],t.lineTo(c[0],c[1]),c[l]=a[l],t.lineTo(c[0],c[1]),t.lineTo(a[0],a[1]);for(var p=1;pm.x)||(_-=Math.PI);var S=b?"left":"right",M=s.getModel("label"),I=M.get("rotate"),T=I*(Math.PI/180),C=y.getTextContent();C&&(y.setTextConfig({position:M.get("position")||S,rotation:null==I?-_:T,origin:"center"}),C.setStyle("verticalAlign","middle"))}var D=s.get(["emphasis","focus"]),A="relative"===D?vt(a.getAncestorsIndices(),a.getDescendantIndices()):"ancestor"===D?a.getAncestorsIndices():"descendant"===D?a.getDescendantIndices():null;A&&(Qs(n).focus=A),function(t,e,n,i,r,o,a,s){var l=e.getModel(),u=t.get("edgeShape"),h=t.get("layout"),c=t.getOrient(),p=t.get(["lineStyle","curveness"]),d=t.get("edgeForkPosition"),f=l.getModel("lineStyle").getLineStyle(),g=i.__edge;if("curve"===u)e.parentNode&&e.parentNode!==n&&(g||(g=i.__edge=new $u({shape:NC(h,c,p,r,r)})),fh(g,{shape:NC(h,c,p,o,a)},t));else if("polyline"===u)if("orthogonal"===h){if(e!==n&&e.children&&0!==e.children.length&&!0===e.isExpand){for(var y=e.children,v=[],m=0;me&&(e=i.height)}this.height=e+1},t.prototype.getNodeById=function(t){if(this.getId()===t)return this;for(var e=0,n=this.children,i=n.length;e=0&&this.hostTree.data.setItemLayout(this.dataIndex,t,e)},t.prototype.getLayout=function(){return this.hostTree.data.getItemLayout(this.dataIndex)},t.prototype.getModel=function(t){if(!(this.dataIndex<0))return this.hostTree.data.getItemModel(this.dataIndex).getModel(t)},t.prototype.getLevelModel=function(){return(this.hostTree.levelModels||[])[this.depth]},t.prototype.setVisual=function(t,e){this.dataIndex>=0&&this.hostTree.data.setItemVisual(this.dataIndex,t,e)},t.prototype.getVisual=function(t){return this.hostTree.data.getItemVisual(this.dataIndex,t)},t.prototype.getRawIndex=function(){return this.hostTree.data.getRawIndex(this.dataIndex)},t.prototype.getId=function(){return this.hostTree.data.getId(this.dataIndex)},t.prototype.getChildIndex=function(){if(this.parentNode){for(var t=this.parentNode.children,e=0;e=0){var i=n.getData().tree.root,r=t.targetNode;if(U(r)&&(r=i.getNodeById(r)),r&&i.contains(r))return{node:r};var o=t.targetNodeId;if(null!=o&&(r=i.getNodeById(o)))return{node:r}}}function jC(t){for(var e=[];t;)(t=t.parentNode)&&e.push(t);return e.reverse()}function qC(t,e){return P(jC(t),e)>=0}function KC(t,e){for(var n=[];t;){var i=t.dataIndex;n.push({name:t.name,dataIndex:i,value:e.getRawValue(i)}),t=t.parentNode}return n.reverse(),n}var $C=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.hasSymbolVisual=!0,e.ignoreStyleOnData=!0,e}return n(e,t),e.prototype.getInitialData=function(t){var e={name:t.name,children:t.data},n=t.leaves||{},i=new Mc(n,this,this.ecModel),r=UC.createTree(e,this,(function(t){t.wrapMethod("getItemModel",(function(t,e){var n=r.getNodeByDataIndex(e);return n&&n.children.length&&n.isExpand||(t.parentModel=i),t}))}));var o=0;r.eachNode("preorder",(function(t){t.depth>o&&(o=t.depth)}));var a=t.expandAndCollapse&&t.initialTreeDepth>=0?t.initialTreeDepth:o;return r.root.eachNode("preorder",(function(t){var e=t.hostTree.data.getRawDataItem(t.dataIndex);t.isExpand=e&&null!=e.collapsed?!e.collapsed:t.depth<=a})),r.data},e.prototype.getOrient=function(){var t=this.get("orient");return"horizontal"===t?t="LR":"vertical"===t&&(t="TB"),t},e.prototype.setZoom=function(t){this.option.zoom=t},e.prototype.setCenter=function(t){this.option.center=t},e.prototype.formatTooltip=function(t,e,n){for(var i=this.getData().tree,r=i.root.children[0],o=i.getNodeByDataIndex(t),a=o.getValue(),s=o.name;o&&o!==r;)s=o.parentNode.name+"."+s,o=o.parentNode;return ng("nameValue",{name:s,value:a,noValue:isNaN(a)||null==a})},e.prototype.getDataParams=function(e){var n=t.prototype.getDataParams.apply(this,arguments),i=this.getData().tree.getNodeByDataIndex(e);return n.treeAncestors=KC(i,this),n.collapsed=!i.isExpand,n},e.type="series.tree",e.layoutMode="box",e.defaultOption={z:2,coordinateSystem:"view",left:"12%",top:"12%",right:"12%",bottom:"12%",layout:"orthogonal",edgeShape:"curve",edgeForkPosition:"50%",roam:!1,nodeScaleRatio:.4,center:null,zoom:1,orient:"LR",symbol:"emptyCircle",symbolSize:7,expandAndCollapse:!0,initialTreeDepth:2,lineStyle:{color:"#ccc",width:1.5,curveness:.5},itemStyle:{color:"lightsteelblue",borderWidth:1.5},label:{show:!0},animationEasing:"linear",animationDuration:700,animationDurationUpdate:500},e}(mg);function JC(t,e){for(var n,i=[t];n=i.pop();)if(e(n),n.isExpand){var r=n.children;if(r.length)for(var o=r.length-1;o>=0;o--)i.push(r[o])}}function QC(t,e){t.eachSeriesByType("tree",(function(t){!function(t,e){var n=function(t,e){return Cp(t.getBoxLayoutParams(),{width:e.getWidth(),height:e.getHeight()})}(t,e);t.layoutInfo=n;var i=t.get("layout"),r=0,o=0,a=null;"radial"===i?(r=2*Math.PI,o=Math.min(n.height,n.width)/2,a=_C((function(t,e){return(t.parentNode===e.parentNode?1:2)/t.depth}))):(r=n.width,o=n.height,a=_C());var s=t.getData().tree.root,l=s.children[0];if(l){!function(t){var e=t;e.hierNode={defaultAncestor:null,ancestor:e,prelim:0,modifier:0,change:0,shift:0,i:0,thread:null};for(var n,i,r=[e];n=r.pop();)if(i=n.children,n.isExpand&&i.length)for(var o=i.length-1;o>=0;o--){var a=i[o];a.hierNode={defaultAncestor:null,ancestor:a,prelim:0,modifier:0,change:0,shift:0,i:o,thread:null},r.push(a)}}(s),function(t,e,n){for(var i,r=[t],o=[];i=r.pop();)if(o.push(i),i.isExpand){var a=i.children;if(a.length)for(var s=0;sh.getLayout().x&&(h=t),t.depth>c.depth&&(c=t)}));var p=u===h?1:a(u,h)/2,d=p-u.getLayout().x,f=0,g=0,y=0,v=0;if("radial"===i)f=r/(h.getLayout().x+p+d),g=o/(c.depth-1||1),JC(l,(function(t){y=(t.getLayout().x+d)*f,v=(t.depth-1)*g;var e=bC(y,v);t.setLayout({x:e.x,y:e.y,rawX:y,rawY:v},!0)}));else{var m=t.getOrient();"RL"===m||"LR"===m?(g=o/(h.getLayout().x+p+d),f=r/(c.depth-1||1),JC(l,(function(t){v=(t.getLayout().x+d)*g,y="LR"===m?(t.depth-1)*f:r-(t.depth-1)*f,t.setLayout({x:y,y:v},!0)}))):"TB"!==m&&"BT"!==m||(f=r/(h.getLayout().x+p+d),g=o/(c.depth-1||1),JC(l,(function(t){y=(t.getLayout().x+d)*f,v="TB"===m?(t.depth-1)*g:o-(t.depth-1)*g,t.setLayout({x:y,y:v},!0)})))}}}(t,e)}))}function tD(t){t.eachSeriesByType("tree",(function(t){var e=t.getData();e.tree.eachNode((function(t){var n=t.getModel().getModel("itemStyle").getItemStyle();A(e.ensureUniqueItemVisual(t.dataIndex,"style"),n)}))}))}var eD=["treemapZoomToNode","treemapRender","treemapMove"];function nD(t){var e=t.getData().tree,n={};e.eachNode((function(e){for(var i=e;i&&i.depth>1;)i=i.parentNode;var r=ud(t.ecModel,i.name||i.dataIndex+"",n);e.setVisual("decal",r)}))}var iD=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n.preventUsingHoverLayer=!0,n}return n(e,t),e.prototype.getInitialData=function(t,e){var n={name:t.name,children:t.data};rD(n);var i=t.levels||[],r=this.designatedVisualItemStyle={},o=new Mc({itemStyle:r},this,e);i=t.levels=function(t,e){var n,i,r=bo(e.get("color")),o=bo(e.get(["aria","decal","decals"]));if(!r)return;t=t||[],E(t,(function(t){var e=new Mc(t),r=e.get("color"),o=e.get("decal");(e.get(["itemStyle","color"])||r&&"none"!==r)&&(n=!0),(e.get(["itemStyle","decal"])||o&&"none"!==o)&&(i=!0)}));var a=t[0]||(t[0]={});n||(a.color=r.slice());!i&&o&&(a.decal=o.slice());return t}(i,e);var a=z(i||[],(function(t){return new Mc(t,o,e)}),this),s=UC.createTree(n,this,(function(t){t.wrapMethod("getItemModel",(function(t,e){var n=s.getNodeByDataIndex(e),i=n?a[n.depth]:null;return t.parentModel=i||o,t}))}));return s.data},e.prototype.optionUpdated=function(){this.resetViewRoot()},e.prototype.formatTooltip=function(t,e,n){var i=this.getData(),r=this.getRawValue(t);return ng("nameValue",{name:i.getName(t),value:r})},e.prototype.getDataParams=function(e){var n=t.prototype.getDataParams.apply(this,arguments),i=this.getData().tree.getNodeByDataIndex(e);return n.treeAncestors=KC(i,this),n.treePathInfo=n.treeAncestors,n},e.prototype.setLayoutInfo=function(t){this.layoutInfo=this.layoutInfo||{},A(this.layoutInfo,t)},e.prototype.mapIdToIndex=function(t){var e=this._idIndexMap;e||(e=this._idIndexMap=yt(),this._idIndexMapCount=0);var n=e.get(t);return null==n&&e.set(t,n=this._idIndexMapCount++),n},e.prototype.getViewRoot=function(){return this._viewRoot},e.prototype.resetViewRoot=function(t){t?this._viewRoot=t:t=this._viewRoot;var e=this.getRawData().tree.root;t&&(t===e||e.contains(t))||(this._viewRoot=e)},e.prototype.enableAriaDecal=function(){nD(this)},e.type="series.treemap",e.layoutMode="box",e.defaultOption={progressive:0,left:"center",top:"middle",width:"80%",height:"80%",sort:!0,clipWindow:"origin",squareRatio:.5*(1+Math.sqrt(5)),leafDepth:null,drillDownIcon:"▶",zoomToNodeRatio:.1024,roam:!0,nodeClick:"zoomToNode",animation:!0,animationDurationUpdate:900,animationEasing:"quinticInOut",breadcrumb:{show:!0,height:22,left:"center",top:"bottom",emptyItemWidth:25,itemStyle:{color:"rgba(0,0,0,0.7)",textStyle:{color:"#fff"}},emphasis:{itemStyle:{color:"rgba(0,0,0,0.9)"}}},label:{show:!0,distance:0,padding:5,position:"inside",color:"#fff",overflow:"truncate"},upperLabel:{show:!1,position:[0,"50%"],height:20,overflow:"truncate",verticalAlign:"middle"},itemStyle:{color:null,colorAlpha:null,colorSaturation:null,borderWidth:0,gapWidth:0,borderColor:"#fff",borderColorSaturation:null},emphasis:{upperLabel:{show:!0,position:[0,"50%"],overflow:"truncate",verticalAlign:"middle"}},visualDimension:0,visualMin:null,visualMax:null,color:[],colorAlpha:null,colorSaturation:null,colorMappingBy:"index",visibleMin:10,childrenVisibleMin:null,levels:[]},e}(mg);function rD(t){var e=0;E(t.children,(function(t){rD(t);var n=t.value;Y(n)&&(n=n[0]),e+=n}));var n=t.value;Y(n)&&(n=n[0]),(null==n||isNaN(n))&&(n=e),n<0&&(n=0),Y(t.value)?t.value[0]=n:t.value=n}var oD=function(){function t(t){this.group=new zr,t.add(this.group)}return t.prototype.render=function(t,e,n,i){var r=t.getModel("breadcrumb"),o=this.group;if(o.removeAll(),r.get("show")&&n){var a=r.getModel("itemStyle"),s=r.getModel("emphasis"),l=a.getModel("textStyle"),u=s.getModel(["itemStyle","textStyle"]),h={pos:{left:r.get("left"),right:r.get("right"),top:r.get("top"),bottom:r.get("bottom")},box:{width:e.getWidth(),height:e.getHeight()},emptyItemWidth:r.get("emptyItemWidth"),totalWidth:0,renderList:[]};this._prepare(n,h,l),this._renderContent(t,h,a,s,l,u,i),Dp(o,h.pos,h.box)}},t.prototype._prepare=function(t,e,n){for(var i=t;i;i=i.parentNode){var r=Ao(i.getModel().get("name"),""),o=n.getTextRect(r),a=Math.max(o.width+16,e.emptyItemWidth);e.totalWidth+=a+8,e.renderList.push({node:i,text:r,width:a})}},t.prototype._renderContent=function(t,e,n,i,r,o,a){for(var s,l,u,h,c,p,d,f,g,y=0,v=e.emptyItemWidth,m=t.get(["breadcrumb","height"]),x=(s=e.pos,l=e.box,h=l.width,c=l.height,p=Ur(s.left,h),d=Ur(s.top,c),f=Ur(s.right,h),g=Ur(s.bottom,c),(isNaN(p)||isNaN(parseFloat(s.left)))&&(p=0),(isNaN(f)||isNaN(parseFloat(s.right)))&&(f=h),(isNaN(d)||isNaN(parseFloat(s.top)))&&(d=0),(isNaN(g)||isNaN(parseFloat(s.bottom)))&&(g=c),u=fp(u||0),{width:Math.max(f-p-u[1]-u[3],0),height:Math.max(g-d-u[0]-u[2],0)}),_=e.totalWidth,b=e.renderList,w=i.getModel("itemStyle").getItemStyle(),S=b.length-1;S>=0;S--){var M=b[S],I=M.node,T=M.width,C=M.text;_>x.width&&(_-=T-v,T=v,C=null);var D=new Wu({shape:{points:aD(y,0,T,m,S===b.length-1,0===S)},style:k(n.getItemStyle(),{lineJoin:"bevel"}),textContent:new Fs({style:nc(r,{text:C})}),textConfig:{position:"inside"},z2:1e5,onclick:H(a,I)});D.disableLabelAnimation=!0,D.getTextContent().ensureState("emphasis").style=nc(o,{text:C}),D.ensureState("emphasis").style=w,Yl(D,i.get("focus"),i.get("blurScope"),i.get("disabled")),this.group.add(D),sD(D,t,I),y+=T+8}},t.prototype.remove=function(){this.group.removeAll()},t}();function aD(t,e,n,i,r,o){var a=[[r?t:t-5,e],[t+n,e],[t+n,e+i],[r?t:t-5,e+i]];return!o&&a.splice(2,0,[t+n+5,e+i/2]),!r&&a.push([t,e+i/2]),a}function sD(t,e,n){Qs(t).eventData={componentType:"series",componentSubType:"treemap",componentIndex:e.componentIndex,seriesIndex:e.seriesIndex,seriesName:e.name,seriesType:"treemap",selfType:"breadcrumb",nodeData:{dataIndex:n&&n.dataIndex,name:n&&n.name},treePathInfo:n&&KC(n,e)}}var lD=function(){function t(){this._storage=[],this._elExistsMap={}}return t.prototype.add=function(t,e,n,i,r){return!this._elExistsMap[t.id]&&(this._elExistsMap[t.id]=!0,this._storage.push({el:t,target:e,duration:n,delay:i,easing:r}),!0)},t.prototype.finished=function(t){return this._finishedCallback=t,this},t.prototype.start=function(){for(var t=this,e=this._storage.length,n=function(){--e<=0&&(t._storage.length=0,t._elExistsMap={},t._finishedCallback&&t._finishedCallback())},i=0,r=this._storage.length;i3||Math.abs(t.dy)>3)){var e=this.seriesModel.getData().tree.root;if(!e)return;var n=e.getLayout();if(!n)return;this.api.dispatchAction({type:"treemapMove",from:this.uid,seriesId:this.seriesModel.id,rootRect:{x:n.x+t.dx,y:n.y+t.dy,width:n.width,height:n.height}})}},e.prototype._onZoom=function(t){var e=t.originX,n=t.originY;if("animating"!==this._state){var i=this.seriesModel.getData().tree.root;if(!i)return;var r=i.getLayout();if(!r)return;var o=new ze(r.x,r.y,r.width,r.height),a=this.seriesModel.layoutInfo,s=[1,0,0,1,0,0];we(s,s,[-(e-=a.x),-(n-=a.y)]),Me(s,s,[t.scale,t.scale]),we(s,s,[e,n]),o.applyTransform(s),this.api.dispatchAction({type:"treemapRender",from:this.uid,seriesId:this.seriesModel.id,rootRect:{x:o.x,y:o.y,width:o.width,height:o.height}})}},e.prototype._initEvents=function(t){var e=this;t.on("click",(function(t){if("ready"===e._state){var n=e.seriesModel.get("nodeClick",!0);if(n){var i=e.findTarget(t.offsetX,t.offsetY);if(i){var r=i.node;if(r.getLayout().isLeafRoot)e._rootToNode(i);else if("zoomToNode"===n)e._zoomToNode(i);else if("link"===n){var o=r.hostTree.data.getItemModel(r.dataIndex),a=o.get("link",!0),s=o.get("target",!0)||"blank";a&&bp(a,s)}}}}}),this)},e.prototype._renderBreadcrumb=function(t,e,n){var i=this;n||(n=null!=t.get("leafDepth",!0)?{node:t.getViewRoot()}:this.findTarget(e.getWidth()/2,e.getHeight()/2))||(n={node:t.getData().tree.root}),(this._breadcrumb||(this._breadcrumb=new oD(this.group))).render(t,e,n.node,(function(e){"animating"!==i._state&&(qC(t.getViewRoot(),e)?i._rootToNode({node:e}):i._zoomToNode({node:e}))}))},e.prototype.remove=function(){this._clearController(),this._containerGroup&&this._containerGroup.removeAll(),this._storage={nodeGroup:[],background:[],content:[]},this._state="ready",this._breadcrumb&&this._breadcrumb.remove()},e.prototype.dispose=function(){this._clearController()},e.prototype._zoomToNode=function(t){this.api.dispatchAction({type:"treemapZoomToNode",from:this.uid,seriesId:this.seriesModel.id,targetNode:t.node})},e.prototype._rootToNode=function(t){this.api.dispatchAction({type:"treemapRootToNode",from:this.uid,seriesId:this.seriesModel.id,targetNode:t.node})},e.prototype.findTarget=function(t,e){var n;return this.seriesModel.getViewRoot().eachNode({attr:"viewChildren",order:"preorder"},(function(i){var r=this._storage.background[i.getRawIndex()];if(r){var o=r.transformCoordToLocal(t,e),a=r.shape;if(!(a.x<=o[0]&&o[0]<=a.x+a.width&&a.y<=o[1]&&o[1]<=a.y+a.height))return!1;n={node:i,offsetX:o[0],offsetY:o[1]}}}),this),n},e.type="treemap",e}(kg);var vD=E,mD=q,xD=-1,_D=function(){function t(e){var n=e.mappingMethod,i=e.type,r=this.option=T(e);this.type=i,this.mappingMethod=n,this._normalizeData=kD[n];var o=t.visualHandlers[i];this.applyVisual=o.applyVisual,this.getColorMapper=o.getColorMapper,this._normalizedToVisual=o._normalizedToVisual[n],"piecewise"===n?(bD(r),function(t){var e=t.pieceList;t.hasSpecialVisual=!1,E(e,(function(e,n){e.originIndex=n,null!=e.visual&&(t.hasSpecialVisual=!0)}))}(r)):"category"===n?r.categories?function(t){var e=t.categories,n=t.categoryMap={},i=t.visual;if(vD(e,(function(t,e){n[t]=e})),!Y(i)){var r=[];q(i)?vD(i,(function(t,e){var i=n[e];r[null!=i?i:xD]=t})):r[-1]=i,i=AD(t,r)}for(var o=e.length-1;o>=0;o--)null==i[o]&&(delete n[e[o]],e.pop())}(r):bD(r,!0):(lt("linear"!==n||r.dataExtent),bD(r))}return t.prototype.mapValueToVisual=function(t){var e=this._normalizeData(t);return this._normalizedToVisual(e,t)},t.prototype.getNormalizer=function(){return W(this._normalizeData,this)},t.listVisualTypes=function(){return G(t.visualHandlers)},t.isValidType=function(e){return t.visualHandlers.hasOwnProperty(e)},t.eachVisual=function(t,e,n){q(t)?E(t,e,n):e.call(n,t)},t.mapVisual=function(e,n,i){var r,o=Y(e)?[]:q(e)?{}:(r=!0,null);return t.eachVisual(e,(function(t,e){var a=n.call(i,t,e);r?o=a:o[e]=a})),o},t.retrieveVisuals=function(e){var n,i={};return e&&vD(t.visualHandlers,(function(t,r){e.hasOwnProperty(r)&&(i[r]=e[r],n=!0)})),n?i:null},t.prepareVisualTypes=function(t){if(Y(t))t=t.slice();else{if(!mD(t))return[];var e=[];vD(t,(function(t,n){e.push(n)})),t=e}return t.sort((function(t,e){return"color"===e&&"color"!==t&&0===t.indexOf("color")?1:-1})),t},t.dependsOn=function(t,e){return"color"===e?!(!t||0!==t.indexOf(e)):t===e},t.findPieceIndex=function(t,e,n){for(var i,r=1/0,o=0,a=e.length;ou[1]&&(u[1]=l);var h=e.get("colorMappingBy"),c={type:a.name,dataExtent:u,visual:a.range};"color"!==c.type||"index"!==h&&"id"!==h?c.mappingMethod="linear":(c.mappingMethod="category",c.loop=!0);var p=new _D(c);return PD(p).drColorMappingBy=h,p}(0,r,o,0,u,d);E(d,(function(t,e){if(t.depth>=n.length||t===n[t.depth]){var o=function(t,e,n,i,r,o){var a=A({},e);if(r){var s=r.type,l="color"===s&&PD(r).drColorMappingBy,u="index"===l?i:"id"===l?o.mapIdToIndex(n.getId()):n.getValue(t.get("visualDimension"));a[s]=r.mapValueToVisual(u)}return a}(r,u,t,e,f,i);RD(t,o,n,i)}}))}else s=ND(u),h.fill=s}}function ND(t){var e=ED(t,"color");if(e){var n=ED(t,"colorAlpha"),i=ED(t,"colorSaturation");return i&&(e=ni(e,null,null,i)),n&&(e=ii(e,n)),e}}function ED(t,e){var n=t[e];if(null!=n&&"none"!==n)return n}function zD(t,e){var n=t.get(e);return Y(n)&&n.length?{name:e,range:n}:null}var VD=Math.max,BD=Math.min,FD=it,GD=E,WD=["itemStyle","borderWidth"],HD=["itemStyle","gapWidth"],YD=["upperLabel","show"],XD=["upperLabel","height"],UD={seriesType:"treemap",reset:function(t,e,n,i){var r=n.getWidth(),o=n.getHeight(),a=t.option,s=Cp(t.getBoxLayoutParams(),{width:n.getWidth(),height:n.getHeight()}),l=a.size||[],u=Ur(FD(s.width,l[0]),r),h=Ur(FD(s.height,l[1]),o),c=i&&i.type,p=ZC(i,["treemapZoomToNode","treemapRootToNode"],t),d="treemapRender"===c||"treemapMove"===c?i.rootRect:null,f=t.getViewRoot(),g=jC(f);if("treemapMove"!==c){var y="treemapZoomToNode"===c?function(t,e,n,i,r){var o,a=(e||{}).node,s=[i,r];if(!a||a===n)return s;var l=i*r,u=l*t.option.zoomToNodeRatio;for(;o=a.parentNode;){for(var h=0,c=o.children,p=0,d=c.length;pto&&(u=to),a=o}ua[1]&&(a[1]=e)}))):a=[NaN,NaN];return{sum:i,dataExtent:a}}(e,a,s);if(0===u.sum)return t.viewChildren=[];if(u.sum=function(t,e,n,i,r){if(!i)return n;for(var o=t.get("visibleMin"),a=r.length,s=a,l=a-1;l>=0;l--){var u=r["asc"===i?a-l-1:l].getValue();u/n*ei&&(i=a));var l=t.area*t.area,u=e*e*n;return l?VD(u*i/l,l/(u*r)):1/0}function qD(t,e,n,i,r){var o=e===n.width?0:1,a=1-o,s=["x","y"],l=["width","height"],u=n[s[o]],h=e?t.area/e:0;(r||h>n[l[a]])&&(h=n[l[a]]);for(var c=0,p=t.length;ci&&(i=e);var o=i%2?i+2:i+3;r=[];for(var a=0;a0&&(m[0]=-m[0],m[1]=-m[1]);var _=v[0]<0?-1:1;if("start"!==i.__position&&"end"!==i.__position){var b=-Math.atan2(v[1],v[0]);u[0].8?"left":h[0]<-.8?"right":"center",p=h[1]>.8?"top":h[1]<-.8?"bottom":"middle";break;case"start":i.x=-h[0]*f+l[0],i.y=-h[1]*g+l[1],c=h[0]>.8?"right":h[0]<-.8?"left":"center",p=h[1]>.8?"bottom":h[1]<-.8?"top":"middle";break;case"insideStartTop":case"insideStart":case"insideStartBottom":i.x=f*_+l[0],i.y=l[1]+w,c=v[0]<0?"right":"left",i.originX=-f*_,i.originY=-w;break;case"insideMiddleTop":case"insideMiddle":case"insideMiddleBottom":case"middle":i.x=x[0],i.y=x[1]+w,c="center",i.originY=-w;break;case"insideEndTop":case"insideEnd":case"insideEndBottom":i.x=-f*_+u[0],i.y=u[1]+w,c=v[0]>=0?"right":"left",i.originX=f*_,i.originY=-w}i.scaleX=i.scaleY=r,i.setStyle({verticalAlign:i.__verticalAlign||p,align:i.__align||c})}}}function S(t,e){var n=t.__specifiedRotation;if(null==n){var i=a.tangentAt(e);t.attr("rotation",(1===e?-1:1)*Math.PI/2-Math.atan2(i[1],i[0]))}else t.attr("rotation",n)}},e}(zr),RA=function(){function t(t){this.group=new zr,this._LineCtor=t||OA}return t.prototype.updateData=function(t){var e=this;this._progressiveEls=null;var n=this,i=n.group,r=n._lineData;n._lineData=t,r||i.removeAll();var o=NA(t);t.diff(r).add((function(n){e._doAdd(t,n,o)})).update((function(n,i){e._doUpdate(r,t,i,n,o)})).remove((function(t){i.remove(r.getItemGraphicEl(t))})).execute()},t.prototype.updateLayout=function(){var t=this._lineData;t&&t.eachItemGraphicEl((function(e,n){e.updateLayout(t,n)}),this)},t.prototype.incrementalPrepareUpdate=function(t){this._seriesScope=NA(t),this._lineData=null,this.group.removeAll()},t.prototype.incrementalUpdate=function(t,e){function n(t){t.isGroup||function(t){return t.animators&&t.animators.length>0}(t)||(t.incremental=!0,t.ensureState("emphasis").hoverLayer=!0)}this._progressiveEls=[];for(var i=t.start;i=0?i+=u:i-=u:f>=0?i-=u:i+=u}return i}function XA(t,e){var n=[],i=Dn,r=[[],[],[]],o=[[],[]],a=[];e/=2,t.eachEdge((function(t,s){var l=t.getLayout(),u=t.getVisual("fromSymbol"),h=t.getVisual("toSymbol");l.__original||(l.__original=[Tt(l[0]),Tt(l[1])],l[2]&&l.__original.push(Tt(l[2])));var c=l.__original;if(null!=l[2]){if(It(r[0],c[0]),It(r[1],c[2]),It(r[2],c[1]),u&&"none"!==u){var p=dA(t.node1),d=YA(r,c[0],p*e);i(r[0][0],r[1][0],r[2][0],d,n),r[0][0]=n[3],r[1][0]=n[4],i(r[0][1],r[1][1],r[2][1],d,n),r[0][1]=n[3],r[1][1]=n[4]}if(h&&"none"!==h){p=dA(t.node2),d=YA(r,c[1],p*e);i(r[0][0],r[1][0],r[2][0],d,n),r[1][0]=n[1],r[2][0]=n[2],i(r[0][1],r[1][1],r[2][1],d,n),r[1][1]=n[1],r[2][1]=n[2]}It(l[0],r[0]),It(l[1],r[2]),It(l[2],r[1])}else{if(It(o[0],c[0]),It(o[1],c[1]),kt(a,o[1],o[0]),Et(a,a),u&&"none"!==u){p=dA(t.node1);At(o[0],o[0],a,p*e)}if(h&&"none"!==h){p=dA(t.node2);At(o[1],o[1],a,-p*e)}It(l[0],o[0]),It(l[1],o[1])}}))}function UA(t){return"view"===t.type}var ZA=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n}return n(e,t),e.prototype.init=function(t,e){var n=new hS,i=new RA,r=this.group;this._controller=new UI(e.getZr()),this._controllerHost={target:r},r.add(n.group),r.add(i.group),this._symbolDraw=n,this._lineDraw=i,this._firstRender=!0},e.prototype.render=function(t,e,n){var i=this,r=t.coordinateSystem;this._model=t;var o=this._symbolDraw,a=this._lineDraw,s=this.group;if(UA(r)){var l={x:r.x,y:r.y,scaleX:r.scaleX,scaleY:r.scaleY};this._firstRender?s.attr(l):fh(s,l,t)}XA(t.getGraph(),pA(t));var u=t.getData();o.updateData(u);var h=t.getEdgeData();a.updateData(h),this._updateNodeAndLinkScale(),this._updateController(t,e,n),clearTimeout(this._layoutTimeout);var c=t.forceLayout,p=t.get(["force","layoutAnimation"]);c&&this._startForceLayoutIteration(c,p);var d=t.get("layout");u.graph.eachNode((function(e){var n=e.dataIndex,r=e.getGraphicEl(),o=e.getModel();if(r){r.off("drag").off("dragend");var a=o.get("draggable");a&&r.on("drag",(function(o){switch(d){case"force":c.warmUp(),!i._layouting&&i._startForceLayoutIteration(c,p),c.setFixed(n),u.setItemLayout(n,[r.x,r.y]);break;case"circular":u.setItemLayout(n,[r.x,r.y]),e.setLayout({fixed:!0},!0),yA(t,"symbolSize",e,[o.offsetX,o.offsetY]),i.updateLayout(t);break;default:u.setItemLayout(n,[r.x,r.y]),hA(t.getGraph(),t),i.updateLayout(t)}})).on("dragend",(function(){c&&c.setUnfixed(n)})),r.setDraggable(a,!!o.get("cursor")),"adjacency"===o.get(["emphasis","focus"])&&(Qs(r).focus=e.getAdjacentDataIndices())}})),u.graph.eachEdge((function(t){var e=t.getGraphicEl(),n=t.getModel().get(["emphasis","focus"]);e&&"adjacency"===n&&(Qs(e).focus={edge:[t.dataIndex],node:[t.node1.dataIndex,t.node2.dataIndex]})}));var f="circular"===t.get("layout")&&t.get(["circular","rotateLabel"]),g=u.getLayout("cx"),y=u.getLayout("cy");u.graph.eachNode((function(t){mA(t,f,g,y)})),this._firstRender=!1},e.prototype.dispose=function(){this._controller&&this._controller.dispose(),this._controllerHost=null},e.prototype._startForceLayoutIteration=function(t,e){var n=this;!function i(){t.step((function(t){n.updateLayout(n._model),(n._layouting=!t)&&(e?n._layoutTimeout=setTimeout(i,16):i())}))}()},e.prototype._updateController=function(t,e,n){var i=this,r=this._controller,o=this._controllerHost,a=this.group;r.setPointerChecker((function(e,i,r){var o=a.getBoundingRect();return o.applyTransform(a.transform),o.contain(i,r)&&!tT(e,n,t)})),UA(t.coordinateSystem)?(r.enable(t.get("roam")),o.zoomLimit=t.get("scaleLimit"),o.zoom=t.coordinateSystem.getZoom(),r.off("pan").off("zoom").on("pan",(function(e){KI(o,e.dx,e.dy),n.dispatchAction({seriesId:t.id,type:"graphRoam",dx:e.dx,dy:e.dy})})).on("zoom",(function(e){$I(o,e.scale,e.originX,e.originY),n.dispatchAction({seriesId:t.id,type:"graphRoam",zoom:e.scale,originX:e.originX,originY:e.originY}),i._updateNodeAndLinkScale(),XA(t.getGraph(),pA(t)),i._lineDraw.updateLayout(),n.updateLabelLayout()}))):r.disable()},e.prototype._updateNodeAndLinkScale=function(){var t=this._model,e=t.getData(),n=pA(t);e.eachItemGraphicEl((function(t,e){t&&t.setSymbolScale(n)}))},e.prototype.updateLayout=function(t){XA(t.getGraph(),pA(t)),this._symbolDraw.updateLayout(),this._lineDraw.updateLayout()},e.prototype.remove=function(t,e){this._symbolDraw&&this._symbolDraw.remove(),this._lineDraw&&this._lineDraw.remove()},e.type="graph",e}(kg);function jA(t){return"_EC_"+t}var qA=function(){function t(t){this.type="graph",this.nodes=[],this.edges=[],this._nodesMap={},this._edgesMap={},this._directed=t||!1}return t.prototype.isDirected=function(){return this._directed},t.prototype.addNode=function(t,e){t=null==t?""+e:""+t;var n=this._nodesMap;if(!n[jA(t)]){var i=new KA(t,e);return i.hostGraph=this,this.nodes.push(i),n[jA(t)]=i,i}},t.prototype.getNodeByIndex=function(t){var e=this.data.getRawIndex(t);return this.nodes[e]},t.prototype.getNodeById=function(t){return this._nodesMap[jA(t)]},t.prototype.addEdge=function(t,e,n){var i=this._nodesMap,r=this._edgesMap;if(j(t)&&(t=this.nodes[t]),j(e)&&(e=this.nodes[e]),t instanceof KA||(t=i[jA(t)]),e instanceof KA||(e=i[jA(e)]),t&&e){var o=t.id+"-"+e.id,a=new $A(t,e,n);return a.hostGraph=this,this._directed&&(t.outEdges.push(a),e.inEdges.push(a)),t.edges.push(a),t!==e&&e.edges.push(a),this.edges.push(a),r[o]=a,a}},t.prototype.getEdgeByIndex=function(t){var e=this.edgeData.getRawIndex(t);return this.edges[e]},t.prototype.getEdge=function(t,e){t instanceof KA&&(t=t.id),e instanceof KA&&(e=e.id);var n=this._edgesMap;return this._directed?n[t+"-"+e]:n[t+"-"+e]||n[e+"-"+t]},t.prototype.eachNode=function(t,e){for(var n=this.nodes,i=n.length,r=0;r=0&&t.call(e,n[r],r)},t.prototype.eachEdge=function(t,e){for(var n=this.edges,i=n.length,r=0;r=0&&n[r].node1.dataIndex>=0&&n[r].node2.dataIndex>=0&&t.call(e,n[r],r)},t.prototype.breadthFirstTraverse=function(t,e,n,i){if(e instanceof KA||(e=this._nodesMap[jA(e)]),e){for(var r="out"===n?"outEdges":"in"===n?"inEdges":"edges",o=0;o=0&&n.node2.dataIndex>=0}));for(r=0,o=i.length;r=0&&this[t][e].setItemVisual(this.dataIndex,n,i)},getVisual:function(n){return this[t][e].getItemVisual(this.dataIndex,n)},setLayout:function(n,i){this.dataIndex>=0&&this[t][e].setItemLayout(this.dataIndex,n,i)},getLayout:function(){return this[t][e].getItemLayout(this.dataIndex)},getGraphicEl:function(){return this[t][e].getItemGraphicEl(this.dataIndex)},getRawIndex:function(){return this[t][e].getRawIndex(this.dataIndex)}}}function QA(t,e,n,i,r){for(var o=new qA(i),a=0;a "+p)),u++)}var d,f=n.get("coordinateSystem");if("cartesian2d"===f||"polar"===f)d=vx(t,n);else{var g=xd.get(f),y=g&&g.dimensions||[];P(y,"value")<0&&y.concat(["value"]);var v=ux(t,{coordDimensions:y,encodeDefine:n.getEncode()}).dimensions;(d=new lx(v,n)).initData(t)}var m=new lx(["value"],n);return m.initData(l,s),r&&r(d,m),zC({mainData:d,struct:o,structAttr:"graph",datas:{node:d,edge:m},datasAttr:{node:"data",edge:"edgeData"}}),o.update(),o}R(KA,JA("hostGraph","data")),R($A,JA("hostGraph","edgeData"));var tk=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n.hasSymbolVisual=!0,n}return n(e,t),e.prototype.init=function(e){t.prototype.init.apply(this,arguments);var n=this;function i(){return n._categoriesData}this.legendVisualProvider=new IM(i,i),this.fillDataTextStyle(e.edges||e.links),this._updateCategoriesData()},e.prototype.mergeOption=function(e){t.prototype.mergeOption.apply(this,arguments),this.fillDataTextStyle(e.edges||e.links),this._updateCategoriesData()},e.prototype.mergeDefaultAndTheme=function(e){t.prototype.mergeDefaultAndTheme.apply(this,arguments),wo(e,"edgeLabel",["show"])},e.prototype.getInitialData=function(t,e){var n,i=t.edges||t.links||[],r=t.data||t.nodes||[],o=this;if(r&&i){iA(n=this)&&(n.__curvenessList=[],n.__edgeMap={},rA(n));var a=QA(r,i,this,!0,(function(t,e){t.wrapMethod("getItemModel",(function(t){var e=o._categoriesModels[t.getShallow("category")];return e&&(e.parentModel=t.parentModel,t.parentModel=e),t}));var n=Mc.prototype.getModel;function i(t,e){var i=n.call(this,t,e);return i.resolveParentPath=r,i}function r(t){if(t&&("label"===t[0]||"label"===t[1])){var e=t.slice();return"label"===t[0]?e[0]="edgeLabel":"label"===t[1]&&(e[1]="edgeLabel"),e}return t}e.wrapMethod("getItemModel",(function(t){return t.resolveParentPath=r,t.getModel=i,t}))}));return E(a.edges,(function(t){!function(t,e,n,i){if(iA(n)){var r=oA(t,e,n),o=n.__edgeMap,a=o[aA(r)];o[r]&&!a?o[r].isForward=!0:a&&o[r]&&(a.isForward=!0,o[r].isForward=!1),o[r]=o[r]||[],o[r].push(i)}}(t.node1,t.node2,this,t.dataIndex)}),this),a.data}},e.prototype.getGraph=function(){return this.getData().graph},e.prototype.getEdgeData=function(){return this.getGraph().edgeData},e.prototype.getCategoriesData=function(){return this._categoriesData},e.prototype.formatTooltip=function(t,e,n){if("edge"===n){var i=this.getData(),r=this.getDataParams(t,n),o=i.graph.getEdgeByIndex(t),a=i.getName(o.node1.dataIndex),s=i.getName(o.node2.dataIndex),l=[];return null!=a&&l.push(a),null!=s&&l.push(s),ng("nameValue",{name:l.join(" > "),value:r.value,noValue:null==r.value})}return fg({series:this,dataIndex:t,multipleSeries:e})},e.prototype._updateCategoriesData=function(){var t=z(this.option.categories||[],(function(t){return null!=t.value?t:A({value:0},t)})),e=new lx(["value"],this);e.initData(t),this._categoriesData=e,this._categoriesModels=e.mapArray((function(t){return e.getItemModel(t)}))},e.prototype.setZoom=function(t){this.option.zoom=t},e.prototype.setCenter=function(t){this.option.center=t},e.prototype.isAnimationEnabled=function(){return t.prototype.isAnimationEnabled.call(this)&&!("force"===this.get("layout")&&this.get(["force","layoutAnimation"]))},e.type="series.graph",e.dependencies=["grid","polar","geo","singleAxis","calendar"],e.defaultOption={z:2,coordinateSystem:"view",legendHoverLink:!0,layout:null,circular:{rotateLabel:!1},force:{initLayout:null,repulsion:[0,50],gravity:.1,friction:.6,edgeLength:30,layoutAnimation:!0},left:"center",top:"center",symbol:"circle",symbolSize:10,edgeSymbol:["none","none"],edgeSymbolSize:10,edgeLabel:{position:"middle",distance:5},draggable:!1,roam:!1,center:null,zoom:1,nodeScaleRatio:.6,label:{show:!1,formatter:"{b}"},itemStyle:{},lineStyle:{color:"#aaa",width:1,opacity:.5},emphasis:{scale:!0,label:{show:!0}},select:{itemStyle:{borderColor:"#212121"}}},e}(mg),ek={type:"graphRoam",event:"graphRoam",update:"none"};var nk=function(){this.angle=0,this.width=10,this.r=10,this.x=0,this.y=0},ik=function(t){function e(e){var n=t.call(this,e)||this;return n.type="pointer",n}return n(e,t),e.prototype.getDefaultShape=function(){return new nk},e.prototype.buildPath=function(t,e){var n=Math.cos,i=Math.sin,r=e.r,o=e.width,a=e.angle,s=e.x-n(a)*o*(o>=r/3?1:2),l=e.y-i(a)*o*(o>=r/3?1:2);a=e.angle-Math.PI/2,t.moveTo(s,l),t.lineTo(e.x+n(a)*o,e.y+i(a)*o),t.lineTo(e.x+n(e.angle)*r,e.y+i(e.angle)*r),t.lineTo(e.x-n(a)*o,e.y-i(a)*o),t.lineTo(s,l)},e}(Is);function rk(t,e){var n=null==t?"":t+"";return e&&(U(e)?n=e.replace("{value}",n):X(e)&&(n=e(t))),n}var ok=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n}return n(e,t),e.prototype.render=function(t,e,n){this.group.removeAll();var i=t.get(["axisLine","lineStyle","color"]),r=function(t,e){var n=t.get("center"),i=e.getWidth(),r=e.getHeight(),o=Math.min(i,r);return{cx:Ur(n[0],e.getWidth()),cy:Ur(n[1],e.getHeight()),r:Ur(t.get("radius"),o/2)}}(t,n);this._renderMain(t,e,n,i,r),this._data=t.getData()},e.prototype.dispose=function(){},e.prototype._renderMain=function(t,e,n,i,r){var o=this.group,a=t.get("clockwise"),s=-t.get("startAngle")/180*Math.PI,l=-t.get("endAngle")/180*Math.PI,u=t.getModel("axisLine"),h=u.get("roundCap")?HS:zu,c=u.get("show"),p=u.getModel("lineStyle"),d=p.get("width"),f=[s,l];rs(f,!a);for(var g=(l=f[1])-(s=f[0]),y=s,v=[],m=0;c&&m=t&&(0===e?0:i[e-1][0])Math.PI/2&&(V+=Math.PI):"tangential"===z?V=-M-Math.PI/2:j(z)&&(V=z*Math.PI/180),0===V?c.add(new Fs({style:nc(x,{text:O,x:N,y:E,verticalAlign:h<-.8?"top":h>.8?"bottom":"middle",align:u<-.4?"left":u>.4?"right":"center"},{inheritColor:R}),silent:!0})):c.add(new Fs({style:nc(x,{text:O,x:N,y:E,verticalAlign:"middle",align:"center"},{inheritColor:R}),silent:!0,originX:N,originY:E,rotation:V}))}if(m.get("show")&&k!==_){P=(P=m.get("distance"))?P+l:l;for(var B=0;B<=b;B++){u=Math.cos(M),h=Math.sin(M);var F=new Zu({shape:{x1:u*(f-P)+p,y1:h*(f-P)+d,x2:u*(f-S-P)+p,y2:h*(f-S-P)+d},silent:!0,style:D});"auto"===D.stroke&&F.setStyle({stroke:i((k+B/b)/_)}),c.add(F),M+=T}M-=T}else M+=I}},e.prototype._renderPointer=function(t,e,n,i,r,o,a,s,l){var u=this.group,h=this._data,c=this._progressEls,p=[],d=t.get(["pointer","show"]),f=t.getModel("progress"),g=f.get("show"),y=t.getData(),v=y.mapDimension("value"),m=+t.get("min"),x=+t.get("max"),_=[m,x],b=[o,a];function w(e,n){var i,o=y.getItemModel(e).getModel("pointer"),a=Ur(o.get("width"),r.r),s=Ur(o.get("length"),r.r),l=t.get(["pointer","icon"]),u=o.get("offsetCenter"),h=Ur(u[0],r.r),c=Ur(u[1],r.r),p=o.get("keepAspect");return(i=l?Wy(l,h-a/2,c-s,a,s,null,p):new ik({shape:{angle:-Math.PI/2,width:a,r:s,x:h,y:c}})).rotation=-(n+Math.PI/2),i.x=r.cx,i.y=r.cy,i}function S(t,e){var n=f.get("roundCap")?HS:zu,i=f.get("overlap"),a=i?f.get("width"):l/y.count(),u=i?r.r-a:r.r-(t+1)*a,h=i?r.r:r.r-t*a,c=new n({shape:{startAngle:o,endAngle:e,cx:r.cx,cy:r.cy,clockwise:s,r0:u,r:h}});return i&&(c.z2=x-y.get(v,t)%x),c}(g||d)&&(y.diff(h).add((function(e){var n=y.get(v,e);if(d){var i=w(e,o);gh(i,{rotation:-((isNaN(+n)?b[0]:Xr(n,_,b,!0))+Math.PI/2)},t),u.add(i),y.setItemGraphicEl(e,i)}if(g){var r=S(e,o),a=f.get("clip");gh(r,{shape:{endAngle:Xr(n,_,b,a)}},t),u.add(r),tl(t.seriesIndex,y.dataType,e,r),p[e]=r}})).update((function(e,n){var i=y.get(v,e);if(d){var r=h.getItemGraphicEl(n),a=r?r.rotation:o,s=w(e,a);s.rotation=a,fh(s,{rotation:-((isNaN(+i)?b[0]:Xr(i,_,b,!0))+Math.PI/2)},t),u.add(s),y.setItemGraphicEl(e,s)}if(g){var l=c[n],m=S(e,l?l.shape.endAngle:o),x=f.get("clip");fh(m,{shape:{endAngle:Xr(i,_,b,x)}},t),u.add(m),tl(t.seriesIndex,y.dataType,e,m),p[e]=m}})).execute(),y.each((function(t){var e=y.getItemModel(t),n=e.getModel("emphasis"),r=n.get("focus"),o=n.get("blurScope"),a=n.get("disabled");if(d){var s=y.getItemGraphicEl(t),l=y.getItemVisual(t,"style"),u=l.fill;if(s instanceof ks){var h=s.style;s.useStyle(A({image:h.image,x:h.x,y:h.y,width:h.width,height:h.height},l))}else s.useStyle(l),"pointer"!==s.type&&s.setColor(u);s.setStyle(e.getModel(["pointer","itemStyle"]).getItemStyle()),"auto"===s.style.fill&&s.setStyle("fill",i(Xr(y.get(v,t),_,[0,1],!0))),s.z2EmphasisLift=0,jl(s,e),Yl(s,r,o,a)}if(g){var c=p[t];c.useStyle(y.getItemVisual(t,"style")),c.setStyle(e.getModel(["progress","itemStyle"]).getItemStyle()),c.z2EmphasisLift=0,jl(c,e),Yl(c,r,o,a)}})),this._progressEls=p)},e.prototype._renderAnchor=function(t,e){var n=t.getModel("anchor");if(n.get("show")){var i=n.get("size"),r=n.get("icon"),o=n.get("offsetCenter"),a=n.get("keepAspect"),s=Wy(r,e.cx-i/2+Ur(o[0],e.r),e.cy-i/2+Ur(o[1],e.r),i,i,null,a);s.z2=n.get("showAbove")?1:0,s.setStyle(n.getModel("itemStyle").getItemStyle()),this.group.add(s)}},e.prototype._renderTitleAndDetail=function(t,e,n,i,r){var o=this,a=t.getData(),s=a.mapDimension("value"),l=+t.get("min"),u=+t.get("max"),h=new zr,c=[],p=[],d=t.isAnimationEnabled(),f=t.get(["pointer","showAbove"]);a.diff(this._data).add((function(t){c[t]=new Fs({silent:!0}),p[t]=new Fs({silent:!0})})).update((function(t,e){c[t]=o._titleEls[e],p[t]=o._detailEls[e]})).execute(),a.each((function(e){var n=a.getItemModel(e),o=a.get(s,e),g=new zr,y=i(Xr(o,[l,u],[0,1],!0)),v=n.getModel("title");if(v.get("show")){var m=v.get("offsetCenter"),x=r.cx+Ur(m[0],r.r),_=r.cy+Ur(m[1],r.r);(D=c[e]).attr({z2:f?0:2,style:nc(v,{x:x,y:_,text:a.getName(e),align:"center",verticalAlign:"middle"},{inheritColor:y})}),g.add(D)}var b=n.getModel("detail");if(b.get("show")){var w=b.get("offsetCenter"),S=r.cx+Ur(w[0],r.r),M=r.cy+Ur(w[1],r.r),I=Ur(b.get("width"),r.r),T=Ur(b.get("height"),r.r),C=t.get(["progress","show"])?a.getItemVisual(e,"style").fill:y,D=p[e],A=b.get("formatter");D.attr({z2:f?0:2,style:nc(b,{x:S,y:M,text:rk(o,A),width:isNaN(I)?null:I,height:isNaN(T)?null:T,align:"center",verticalAlign:"middle"},{inheritColor:C})}),hc(D,{normal:b},o,(function(t){return rk(t,A)})),d&&cc(D,e,a,t,{getFormattedLabel:function(t,e,n,i,r,a){return rk(a?a.interpolatedValue:o,A)}}),g.add(D)}h.add(g)})),this.group.add(h),this._titleEls=c,this._detailEls=p},e.type="gauge",e}(kg),ak=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n.visualStyleAccessPath="itemStyle",n}return n(e,t),e.prototype.getInitialData=function(t,e){return MM(this,["value"])},e.type="series.gauge",e.defaultOption={z:2,colorBy:"data",center:["50%","50%"],legendHoverLink:!0,radius:"75%",startAngle:225,endAngle:-45,clockwise:!0,min:0,max:100,splitNumber:10,axisLine:{show:!0,roundCap:!1,lineStyle:{color:[[1,"#E6EBF8"]],width:10}},progress:{show:!1,overlap:!0,width:10,roundCap:!1,clip:!0},splitLine:{show:!0,length:10,distance:10,lineStyle:{color:"#63677A",width:3,type:"solid"}},axisTick:{show:!0,splitNumber:5,length:6,distance:10,lineStyle:{color:"#63677A",width:1,type:"solid"}},axisLabel:{show:!0,distance:15,color:"#464646",fontSize:12,rotate:0},pointer:{icon:null,offsetCenter:[0,0],show:!0,showAbove:!0,length:"60%",width:6,keepAspect:!1},anchor:{show:!1,showAbove:!1,size:6,icon:"circle",offsetCenter:[0,0],keepAspect:!1,itemStyle:{color:"#fff",borderWidth:0,borderColor:"#5470c6"}},title:{show:!0,offsetCenter:[0,"20%"],color:"#464646",fontSize:16,valueAnimation:!1},detail:{show:!0,backgroundColor:"rgba(0,0,0,0)",borderWidth:0,borderColor:"#ccc",width:100,height:null,padding:[5,10],offsetCenter:[0,"40%"],color:"#464646",fontSize:30,fontWeight:"bold",lineHeight:30,valueAnimation:!1}},e}(mg);var sk=["itemStyle","opacity"],lk=function(t){function e(e,n){var i=t.call(this)||this,r=i,o=new Yu,a=new Fs;return r.setTextContent(a),i.setTextGuideLine(o),i.updateData(e,n,!0),i}return n(e,t),e.prototype.updateData=function(t,e,n){var i=this,r=t.hostModel,o=t.getItemModel(e),a=t.getItemLayout(e),s=o.getModel("emphasis"),l=o.get(sk);l=null==l?1:l,n||_h(i),i.useStyle(t.getItemVisual(e,"style")),i.style.lineJoin="round",n?(i.setShape({points:a.points}),i.style.opacity=0,gh(i,{style:{opacity:l}},r,e)):fh(i,{style:{opacity:l},shape:{points:a.points}},r,e),jl(i,o),this._updateLabel(t,e),Yl(this,s.get("focus"),s.get("blurScope"),s.get("disabled"))},e.prototype._updateLabel=function(t,e){var n=this,i=this.getTextGuideLine(),r=n.getTextContent(),o=t.hostModel,a=t.getItemModel(e),s=t.getItemLayout(e).label,l=t.getItemVisual(e,"style"),u=l.fill;tc(r,ec(a),{labelFetcher:t.hostModel,labelDataIndex:e,defaultOpacity:l.opacity,defaultText:t.getName(e)},{normal:{align:s.textAlign,verticalAlign:s.verticalAlign}}),n.setTextConfig({local:!0,inside:!!s.inside,insideStroke:u,outsideFill:u});var h=s.linePoints;i.setShape({points:h}),n.textGuideLineConfig={anchor:h?new De(h[0][0],h[0][1]):null},fh(r,{style:{x:s.x,y:s.y}},o,e),r.attr({rotation:s.rotation,originX:s.x,originY:s.y,z2:10}),Tb(n,Cb(a),{stroke:u})},e}(Wu),uk=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n.ignoreLabelLineUpdate=!0,n}return n(e,t),e.prototype.render=function(t,e,n){var i=t.getData(),r=this._data,o=this.group;i.diff(r).add((function(t){var e=new lk(i,t);i.setItemGraphicEl(t,e),o.add(e)})).update((function(t,e){var n=r.getItemGraphicEl(e);n.updateData(i,t),o.add(n),i.setItemGraphicEl(t,n)})).remove((function(e){xh(r.getItemGraphicEl(e),t,e)})).execute(),this._data=i},e.prototype.remove=function(){this.group.removeAll(),this._data=null},e.prototype.dispose=function(){},e.type="funnel",e}(kg),hk=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n}return n(e,t),e.prototype.init=function(e){t.prototype.init.apply(this,arguments),this.legendVisualProvider=new IM(W(this.getData,this),W(this.getRawData,this)),this._defaultLabelLine(e)},e.prototype.getInitialData=function(t,e){return MM(this,{coordDimensions:["value"],encodeDefaulter:H(Jp,this)})},e.prototype._defaultLabelLine=function(t){wo(t,"labelLine",["show"]);var e=t.labelLine,n=t.emphasis.labelLine;e.show=e.show&&t.label.show,n.show=n.show&&t.emphasis.label.show},e.prototype.getDataParams=function(e){var n=this.getData(),i=t.prototype.getDataParams.call(this,e),r=n.mapDimension("value"),o=n.getSum(r);return i.percent=o?+(n.get(r,e)/o*100).toFixed(2):0,i.$vars.push("percent"),i},e.type="series.funnel",e.defaultOption={z:2,legendHoverLink:!0,colorBy:"data",left:80,top:60,right:80,bottom:60,minSize:"0%",maxSize:"100%",sort:"descending",orient:"vertical",gap:0,funnelAlign:"center",label:{show:!0,position:"outer"},labelLine:{show:!0,length:20,lineStyle:{width:1}},itemStyle:{borderColor:"#fff",borderWidth:1},emphasis:{label:{show:!0}},select:{itemStyle:{borderColor:"#212121"}}},e}(mg);function ck(t,e){t.eachSeriesByType("funnel",(function(t){var n=t.getData(),i=n.mapDimension("value"),r=t.get("sort"),o=function(t,e){return Cp(t.getBoxLayoutParams(),{width:e.getWidth(),height:e.getHeight()})}(t,e),a=t.get("orient"),s=o.width,l=o.height,u=function(t,e){for(var n=t.mapDimension("value"),i=t.mapArray(n,(function(t){return t})),r=[],o="ascending"===e,a=0,s=t.count();a5)return;var i=this._model.coordinateSystem.getSlidedAxisExpandWindow([t.offsetX,t.offsetY]);"none"!==i.behavior&&this._dispatchExpand({axisExpandWindow:i.axisExpandWindow})}this._mouseDownPoint=null},mousemove:function(t){if(!this._mouseDownPoint&&Mk(this,"mousemove")){var e=this._model,n=e.coordinateSystem.getSlidedAxisExpandWindow([t.offsetX,t.offsetY]),i=n.behavior;"jump"===i&&this._throttledDispatchExpand.debounceNextCall(e.get("axisExpandDebounce")),this._throttledDispatchExpand("none"===i?null:{axisExpandWindow:n.axisExpandWindow,animation:"jump"===i?null:{duration:0}})}}};function Mk(t,e){var n=t._model;return n.get("axisExpandable")&&n.get("axisExpandTriggerOn")===e}var Ik=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n}return n(e,t),e.prototype.init=function(){t.prototype.init.apply(this,arguments),this.mergeOption({})},e.prototype.mergeOption=function(t){var e=this.option;t&&C(e,t,!0),this._initDimensions()},e.prototype.contains=function(t,e){var n=t.get("parallelIndex");return null!=n&&e.getComponent("parallel",n)===this},e.prototype.setAxisExpand=function(t){E(["axisExpandable","axisExpandCenter","axisExpandCount","axisExpandWidth","axisExpandWindow"],(function(e){t.hasOwnProperty(e)&&(this.option[e]=t[e])}),this)},e.prototype._initDimensions=function(){var t=this.dimensions=[],e=this.parallelAxisIndex=[];E(B(this.ecModel.queryComponents({mainType:"parallelAxis"}),(function(t){return(t.get("parallelIndex")||0)===this.componentIndex}),this),(function(n){t.push("dim"+n.get("dim")),e.push(n.componentIndex)}))},e.type="parallel",e.dependencies=["parallelAxis"],e.layoutMode="box",e.defaultOption={z:0,left:80,top:60,right:80,bottom:60,layout:"horizontal",axisExpandable:!1,axisExpandCenter:null,axisExpandCount:0,axisExpandWidth:50,axisExpandRate:17,axisExpandDebounce:50,axisExpandSlideTriggerArea:[-.15,.05,.4],axisExpandTriggerOn:"click",parallelAxisDefault:null},e}(Rp),Tk=function(t){function e(e,n,i,r,o){var a=t.call(this,e,n,i)||this;return a.type=r||"value",a.axisIndex=o,a}return n(e,t),e.prototype.isHorizontal=function(){return"horizontal"!==this.coordinateSystem.getModel().get("layout")},e}(nb);function Ck(t,e,n,i,r,o){t=t||0;var a=n[1]-n[0];if(null!=r&&(r=Ak(r,[0,a])),null!=o&&(o=Math.max(o,null!=r?r:0)),"all"===i){var s=Math.abs(e[1]-e[0]);s=Ak(s,[0,a]),r=o=Ak(s,[r,o]),i=0}e[0]=Ak(e[0],n),e[1]=Ak(e[1],n);var l=Dk(e,i);e[i]+=t;var u,h=r||0,c=n.slice();return l.sign<0?c[0]+=h:c[1]-=h,e[i]=Ak(e[i],c),u=Dk(e,i),null!=r&&(u.sign!==l.sign||u.spano&&(e[1-i]=e[i]+u.sign*o),e}function Dk(t,e){var n=t[e]-t[1-e];return{span:Math.abs(n),sign:n>0?-1:n<0?1:e?-1:1}}function Ak(t,e){return Math.min(null!=e[1]?e[1]:1/0,Math.max(null!=e[0]?e[0]:-1/0,t))}var kk=E,Lk=Math.min,Pk=Math.max,Ok=Math.floor,Rk=Math.ceil,Nk=Zr,Ek=Math.PI,zk=function(){function t(t,e,n){this.type="parallel",this._axesMap=yt(),this._axesLayout={},this.dimensions=t.dimensions,this._model=t,this._init(t,e,n)}return t.prototype._init=function(t,e,n){var i=t.dimensions,r=t.parallelAxisIndex;kk(i,(function(t,n){var i=r[n],o=e.getComponent("parallelAxis",i),a=this._axesMap.set(t,new Tk(t,m_(o),[0,0],o.get("type"),i)),s="category"===a.type;a.onBand=s&&o.get("boundaryGap"),a.inverse=o.get("inverse"),o.axis=a,a.model=o,a.coordinateSystem=o.coordinateSystem=this}),this)},t.prototype.update=function(t,e){this._updateAxesFromSeries(this._model,t)},t.prototype.containPoint=function(t){var e=this._makeLayoutInfo(),n=e.axisBase,i=e.layoutBase,r=e.pixelDimIndex,o=t[1-r],a=t[r];return o>=n&&o<=n+e.axisLength&&a>=i&&a<=i+e.layoutLength},t.prototype.getModel=function(){return this._model},t.prototype._updateAxesFromSeries=function(t,e){e.eachSeries((function(n){if(t.contains(n,e)){var i=n.getData();kk(this.dimensions,(function(t){var e=this._axesMap.get(t);e.scale.unionExtentFromData(i,i.mapDimension(t)),v_(e.scale,e.model)}),this)}}),this)},t.prototype.resize=function(t,e){this._rect=Cp(t.getBoxLayoutParams(),{width:e.getWidth(),height:e.getHeight()}),this._layoutAxes()},t.prototype.getRect=function(){return this._rect},t.prototype._makeLayoutInfo=function(){var t,e=this._model,n=this._rect,i=["x","y"],r=["width","height"],o=e.get("layout"),a="horizontal"===o?0:1,s=n[r[a]],l=[0,s],u=this.dimensions.length,h=Vk(e.get("axisExpandWidth"),l),c=Vk(e.get("axisExpandCount")||0,[0,u]),p=e.get("axisExpandable")&&u>3&&u>c&&c>1&&h>0&&s>0,d=e.get("axisExpandWindow");d?(t=Vk(d[1]-d[0],l),d[1]=d[0]+t):(t=Vk(h*(c-1),l),(d=[h*(e.get("axisExpandCenter")||Ok(u/2))-t/2])[1]=d[0]+t);var f=(s-t)/(u-c);f<3&&(f=0);var g=[Ok(Nk(d[0]/h,1))+1,Rk(Nk(d[1]/h,1))-1],y=f/h*d[0];return{layout:o,pixelDimIndex:a,layoutBase:n[i[a]],layoutLength:s,axisBase:n[i[1-a]],axisLength:n[r[1-a]],axisExpandable:p,axisExpandWidth:h,axisCollapseWidth:f,axisExpandWindow:d,axisCount:u,winInnerIndices:g,axisExpandWindow0Pos:y}},t.prototype._layoutAxes=function(){var t=this._rect,e=this._axesMap,n=this.dimensions,i=this._makeLayoutInfo(),r=i.layout;e.each((function(t){var e=[0,i.axisLength],n=t.inverse?1:0;t.setExtent(e[n],e[1-n])})),kk(n,(function(e,n){var o=(i.axisExpandable?Fk:Bk)(n,i),a={horizontal:{x:o.position,y:i.axisLength},vertical:{x:0,y:o.position}},s={horizontal:Ek/2,vertical:0},l=[a[r].x+t.x,a[r].y+t.y],u=s[r],h=[1,0,0,1,0,0];Se(h,h,u),we(h,h,l),this._axesLayout[e]={position:l,rotation:u,transform:h,axisNameAvailableWidth:o.axisNameAvailableWidth,axisLabelShow:o.axisLabelShow,nameTruncateMaxWidth:o.nameTruncateMaxWidth,tickDirection:1,labelDirection:1}}),this)},t.prototype.getAxis=function(t){return this._axesMap.get(t)},t.prototype.dataToPoint=function(t,e){return this.axisCoordToPoint(this._axesMap.get(e).dataToCoord(t),e)},t.prototype.eachActiveState=function(t,e,n,i){null==n&&(n=0),null==i&&(i=t.count());var r=this._axesMap,o=this.dimensions,a=[],s=[];E(o,(function(e){a.push(t.mapDimension(e)),s.push(r.get(e).model)}));for(var l=this.hasAxisBrushed(),u=n;ur*(1-h[0])?(l="jump",a=s-r*(1-h[2])):(a=s-r*h[1])>=0&&(a=s-r*(1-h[1]))<=0&&(a=0),(a*=e.axisExpandWidth/u)?Ck(a,i,o,"all"):l="none";else{var p=i[1]-i[0];(i=[Pk(0,o[1]*s/p-p/2)])[1]=Lk(o[1],i[0]+p),i[0]=i[1]-p}return{axisExpandWindow:i,behavior:l}},t}();function Vk(t,e){return Lk(Pk(t,e[0]),e[1])}function Bk(t,e){var n=e.layoutLength/(e.axisCount-1);return{position:n*t,axisNameAvailableWidth:n,axisLabelShow:!0}}function Fk(t,e){var n,i,r=e.layoutLength,o=e.axisExpandWidth,a=e.axisCount,s=e.axisCollapseWidth,l=e.winInnerIndices,u=s,h=!1;return t=0;n--)jr(e[n])},e.prototype.getActiveState=function(t){var e=this.activeIntervals;if(!e.length)return"normal";if(null==t||isNaN(+t))return"inactive";if(1===e.length){var n=e[0];if(n[0]<=t&&t<=n[1])return"active"}else for(var i=0,r=e.length;i6}(t)||o){if(a&&!o){"single"===s.brushMode&&sL(t);var l=T(s);l.brushType=ML(l.brushType,a),l.panelId=a===Hk?null:a.panelId,o=t._creatingCover=Qk(t,l),t._covers.push(o)}if(o){var u=CL[ML(t._brushType,a)];o.__brushOption.range=u.getCreatingRange(_L(t,o,t._track)),i&&(tL(t,o),u.updateCommon(t,o)),eL(t,o),r={isEnd:i}}}else i&&"single"===s.brushMode&&s.removeOnClick&&oL(t,e,n)&&sL(t)&&(r={isEnd:i,removeOnClick:!0});return r}function ML(t,e){return"auto"===t?e.defaultBrushType:t}var IL={mousedown:function(t){if(this._dragging)TL(this,t);else if(!t.target||!t.target.draggable){bL(t);var e=this.group.transformCoordToLocal(t.offsetX,t.offsetY);this._creatingCover=null,(this._creatingPanel=oL(this,t,e))&&(this._dragging=!0,this._track=[e.slice()])}},mousemove:function(t){var e=t.offsetX,n=t.offsetY,i=this.group.transformCoordToLocal(e,n);if(function(t,e,n){if(t._brushType&&!function(t,e,n){var i=t._zr;return e<0||e>i.getWidth()||n<0||n>i.getHeight()}(t,e.offsetX,e.offsetY)){var i=t._zr,r=t._covers,o=oL(t,e,n);if(!t._dragging)for(var a=0;a=0&&(o[r[a].depth]=new Mc(r[a],this,e));if(i&&n){var s=QA(i,n,this,!0,(function(t,e){t.wrapMethod("getItemModel",(function(t,e){var n=t.parentModel,i=n.getData().getItemLayout(e);if(i){var r=i.depth,o=n.levelModels[r];o&&(t.parentModel=o)}return t})),e.wrapMethod("getItemModel",(function(t,e){var n=t.parentModel,i=n.getGraph().getEdgeByIndex(e).node1.getLayout();if(i){var r=i.depth,o=n.levelModels[r];o&&(t.parentModel=o)}return t}))}));return s.data}},e.prototype.setNodePosition=function(t,e){var n=(this.option.data||this.option.nodes)[t];n.localX=e[0],n.localY=e[1]},e.prototype.getGraph=function(){return this.getData().graph},e.prototype.getEdgeData=function(){return this.getGraph().edgeData},e.prototype.formatTooltip=function(t,e,n){function i(t){return isNaN(t)||null==t}if("edge"===n){var r=this.getDataParams(t,n),o=r.data,a=r.value;return ng("nameValue",{name:o.source+" -- "+o.target,value:a,noValue:i(a)})}var s=this.getGraph().getNodeByIndex(t).getLayout().value,l=this.getDataParams(t,n).data.name;return ng("nameValue",{name:null!=l?l+"":null,value:s,noValue:i(s)})},e.prototype.optionUpdated=function(){},e.prototype.getDataParams=function(e,n){var i=t.prototype.getDataParams.call(this,e,n);if(null==i.value&&"node"===n){var r=this.getGraph().getNodeByIndex(e).getLayout().value;i.value=r}return i},e.type="series.sankey",e.defaultOption={z:2,coordinateSystem:"view",left:"5%",top:"5%",right:"20%",bottom:"5%",orient:"horizontal",nodeWidth:20,nodeGap:8,draggable:!0,layoutIterations:32,label:{show:!0,position:"right",fontSize:12},edgeLabel:{show:!1,fontSize:12},levels:[],nodeAlign:"justify",lineStyle:{color:"#314656",opacity:.2,curveness:.5},emphasis:{label:{show:!0},lineStyle:{opacity:.5}},select:{itemStyle:{borderColor:"#212121"}},animationEasing:"linear",animationDuration:1e3},e}(mg);function HL(t,e){t.eachSeriesByType("sankey",(function(t){var n=t.get("nodeWidth"),i=t.get("nodeGap"),r=function(t,e){return Cp(t.getBoxLayoutParams(),{width:e.getWidth(),height:e.getHeight()})}(t,e);t.layoutInfo=r;var o=r.width,a=r.height,s=t.getGraph(),l=s.nodes,u=s.edges;!function(t){E(t,(function(t){var e=QL(t.outEdges,JL),n=QL(t.inEdges,JL),i=t.getValue()||0,r=Math.max(e,n,i);t.setLayout({value:r},!0)}))}(l),function(t,e,n,i,r,o,a,s,l){(function(t,e,n,i,r,o,a){for(var s=[],l=[],u=[],h=[],c=0,p=0;p=0;v&&y.depth>d&&(d=y.depth),g.setLayout({depth:v?y.depth:c},!0),"vertical"===o?g.setLayout({dy:n},!0):g.setLayout({dx:n},!0);for(var m=0;mc-1?d:c-1;a&&"left"!==a&&function(t,e,n,i){if("right"===e){for(var r=[],o=t,a=0;o.length;){for(var s=0;s0;o--)UL(s,l*=.99,a),XL(s,r,n,i,a),tP(s,l,a),XL(s,r,n,i,a)}(t,e,o,r,i,a,s),function(t,e){var n="vertical"===e?"x":"y";E(t,(function(t){t.outEdges.sort((function(t,e){return t.node2.getLayout()[n]-e.node2.getLayout()[n]})),t.inEdges.sort((function(t,e){return t.node1.getLayout()[n]-e.node1.getLayout()[n]}))})),E(t,(function(t){var e=0,n=0;E(t.outEdges,(function(t){t.setLayout({sy:e},!0),e+=t.getLayout().dy})),E(t.inEdges,(function(t){t.setLayout({ty:n},!0),n+=t.getLayout().dy}))}))}(t,s)}(l,u,n,i,o,a,0!==B(l,(function(t){return 0===t.getLayout().value})).length?0:t.get("layoutIterations"),t.get("orient"),t.get("nodeAlign"))}))}function YL(t){var e=t.hostGraph.data.getRawDataItem(t.dataIndex);return null!=e.depth&&e.depth>=0}function XL(t,e,n,i,r){var o="vertical"===r?"x":"y";E(t,(function(t){var a,s,l;t.sort((function(t,e){return t.getLayout()[o]-e.getLayout()[o]}));for(var u=0,h=t.length,c="vertical"===r?"dx":"dy",p=0;p0&&(a=s.getLayout()[o]+l,"vertical"===r?s.setLayout({x:a},!0):s.setLayout({y:a},!0)),u=s.getLayout()[o]+s.getLayout()[c]+e;if((l=u-e-("vertical"===r?i:n))>0){a=s.getLayout()[o]-l,"vertical"===r?s.setLayout({x:a},!0):s.setLayout({y:a},!0),u=a;for(p=h-2;p>=0;--p)(l=(s=t[p]).getLayout()[o]+s.getLayout()[c]+e-u)>0&&(a=s.getLayout()[o]-l,"vertical"===r?s.setLayout({x:a},!0):s.setLayout({y:a},!0)),u=s.getLayout()[o]}}))}function UL(t,e,n){E(t.slice().reverse(),(function(t){E(t,(function(t){if(t.outEdges.length){var i=QL(t.outEdges,ZL,n)/QL(t.outEdges,JL);if(isNaN(i)){var r=t.outEdges.length;i=r?QL(t.outEdges,jL,n)/r:0}if("vertical"===n){var o=t.getLayout().x+(i-$L(t,n))*e;t.setLayout({x:o},!0)}else{var a=t.getLayout().y+(i-$L(t,n))*e;t.setLayout({y:a},!0)}}}))}))}function ZL(t,e){return $L(t.node2,e)*t.getValue()}function jL(t,e){return $L(t.node2,e)}function qL(t,e){return $L(t.node1,e)*t.getValue()}function KL(t,e){return $L(t.node1,e)}function $L(t,e){return"vertical"===e?t.getLayout().x+t.getLayout().dx/2:t.getLayout().y+t.getLayout().dy/2}function JL(t){return t.getValue()}function QL(t,e,n){for(var i=0,r=t.length,o=-1;++oo&&(o=e)})),E(n,(function(e){var n=new _D({type:"color",mappingMethod:"linear",dataExtent:[r,o],visual:t.get("color")}).mapValueToVisual(e.getLayout().value),i=e.getModel().get(["itemStyle","color"]);null!=i?(e.setVisual("color",i),e.setVisual("style",{fill:i})):(e.setVisual("color",n),e.setVisual("style",{fill:n}))}))}i.length&&E(i,(function(t){var e=t.getModel().get("lineStyle");t.setVisual("style",e)}))}))}var nP=function(){function t(){}return t.prototype.getInitialData=function(t,e){var n,i,r=e.getComponent("xAxis",this.get("xAxisIndex")),o=e.getComponent("yAxis",this.get("yAxisIndex")),a=r.get("type"),s=o.get("type");"category"===a?(t.layout="horizontal",n=r.getOrdinalMeta(),i=!0):"category"===s?(t.layout="vertical",n=o.getOrdinalMeta(),i=!0):t.layout=t.layout||"horizontal";var l=["x","y"],u="horizontal"===t.layout?0:1,h=this._baseAxisDim=l[u],c=l[1-u],p=[r,o],d=p[u].get("type"),f=p[1-u].get("type"),g=t.data;if(g&&i){var y=[];E(g,(function(t,e){var n;Y(t)?(n=t.slice(),t.unshift(e)):Y(t.value)?((n=A({},t)).value=n.value.slice(),t.value.unshift(e)):n=t,y.push(n)})),t.data=y}var v=this.defaultValueDimensions,m=[{name:h,type:Gm(d),ordinalMeta:n,otherDims:{tooltip:!1,itemName:0},dimsDef:["base"]},{name:c,type:Gm(f),dimsDef:v.slice()}];return MM(this,{coordDimensions:m,dimensionsCount:v.length+1,encodeDefaulter:H($p,m,this)})},t.prototype.getBaseAxis=function(){var t=this._baseAxisDim;return this.ecModel.getComponent(t+"Axis",this.get(t+"AxisIndex")).axis},t}(),iP=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n.defaultValueDimensions=[{name:"min",defaultTooltip:!0},{name:"Q1",defaultTooltip:!0},{name:"median",defaultTooltip:!0},{name:"Q3",defaultTooltip:!0},{name:"max",defaultTooltip:!0}],n.visualDrawType="stroke",n}return n(e,t),e.type="series.boxplot",e.dependencies=["xAxis","yAxis","grid"],e.defaultOption={z:2,coordinateSystem:"cartesian2d",legendHoverLink:!0,layout:null,boxWidth:[7,50],itemStyle:{color:"#fff",borderWidth:1},emphasis:{scale:!0,itemStyle:{borderWidth:2,shadowBlur:5,shadowOffsetX:1,shadowOffsetY:1,shadowColor:"rgba(0,0,0,0.2)"}},animationDuration:800},e}(mg);R(iP,nP,!0);var rP=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n}return n(e,t),e.prototype.render=function(t,e,n){var i=t.getData(),r=this.group,o=this._data;this._data||r.removeAll();var a="horizontal"===t.get("layout")?1:0;i.diff(o).add((function(t){if(i.hasValue(t)){var e=sP(i.getItemLayout(t),i,t,a,!0);i.setItemGraphicEl(t,e),r.add(e)}})).update((function(t,e){var n=o.getItemGraphicEl(e);if(i.hasValue(t)){var s=i.getItemLayout(t);n?(_h(n),lP(s,n,i,t)):n=sP(s,i,t,a),r.add(n),i.setItemGraphicEl(t,n)}else r.remove(n)})).remove((function(t){var e=o.getItemGraphicEl(t);e&&r.remove(e)})).execute(),this._data=i},e.prototype.remove=function(t){var e=this.group,n=this._data;this._data=null,n&&n.eachItemGraphicEl((function(t){t&&e.remove(t)}))},e.type="boxplot",e}(kg),oP=function(){},aP=function(t){function e(e){var n=t.call(this,e)||this;return n.type="boxplotBoxPath",n}return n(e,t),e.prototype.getDefaultShape=function(){return new oP},e.prototype.buildPath=function(t,e){var n=e.points,i=0;for(t.moveTo(n[i][0],n[i][1]),i++;i<4;i++)t.lineTo(n[i][0],n[i][1]);for(t.closePath();ig){var _=[v,x];i.push(_)}}}return{boxData:n,outliers:i}}(e.getRawData(),t.config);return[{dimensions:["ItemName","Low","Q1","Q2","Q3","High"],data:i.boxData},{data:i.outliers}]}};var dP=["color","borderColor"],fP=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n}return n(e,t),e.prototype.render=function(t,e,n){this.group.removeClipPath(),this._progressiveEls=null,this._updateDrawMode(t),this._isLargeDraw?this._renderLarge(t):this._renderNormal(t)},e.prototype.incrementalPrepareRender=function(t,e,n){this._clear(),this._updateDrawMode(t)},e.prototype.incrementalRender=function(t,e,n,i){this._progressiveEls=[],this._isLargeDraw?this._incrementalRenderLarge(t,e):this._incrementalRenderNormal(t,e)},e.prototype.eachRendered=function(t){qh(this._progressiveEls||this.group,t)},e.prototype._updateDrawMode=function(t){var e=t.pipelineContext.large;null!=this._isLargeDraw&&e===this._isLargeDraw||(this._isLargeDraw=e,this._clear())},e.prototype._renderNormal=function(t){var e=t.getData(),n=this._data,i=this.group,r=e.getLayout("isSimpleBox"),o=t.get("clip",!0),a=t.coordinateSystem,s=a.getArea&&a.getArea();this._data||i.removeAll(),e.diff(n).add((function(n){if(e.hasValue(n)){var a=e.getItemLayout(n);if(o&&mP(s,a))return;var l=vP(a,n,!0);gh(l,{shape:{points:a.ends}},t,n),xP(l,e,n,r),i.add(l),e.setItemGraphicEl(n,l)}})).update((function(a,l){var u=n.getItemGraphicEl(l);if(e.hasValue(a)){var h=e.getItemLayout(a);o&&mP(s,h)?i.remove(u):(u?(fh(u,{shape:{points:h.ends}},t,a),_h(u)):u=vP(h),xP(u,e,a,r),i.add(u),e.setItemGraphicEl(a,u))}else i.remove(u)})).remove((function(t){var e=n.getItemGraphicEl(t);e&&i.remove(e)})).execute(),this._data=e},e.prototype._renderLarge=function(t){this._clear(),SP(t,this.group);var e=t.get("clip",!0)?SS(t.coordinateSystem,!1,t):null;e?this.group.setClipPath(e):this.group.removeClipPath()},e.prototype._incrementalRenderNormal=function(t,e){for(var n,i=e.getData(),r=i.getLayout("isSimpleBox");null!=(n=t.next());){var o=vP(i.getItemLayout(n));xP(o,i,n,r),o.incremental=!0,this.group.add(o),this._progressiveEls.push(o)}},e.prototype._incrementalRenderLarge=function(t,e){SP(e,this.group,this._progressiveEls,!0)},e.prototype.remove=function(t){this._clear()},e.prototype._clear=function(){this.group.removeAll(),this._data=null},e.type="candlestick",e}(kg),gP=function(){},yP=function(t){function e(e){var n=t.call(this,e)||this;return n.type="normalCandlestickBox",n}return n(e,t),e.prototype.getDefaultShape=function(){return new gP},e.prototype.buildPath=function(t,e){var n=e.points;this.__simpleBox?(t.moveTo(n[4][0],n[4][1]),t.lineTo(n[6][0],n[6][1])):(t.moveTo(n[0][0],n[0][1]),t.lineTo(n[1][0],n[1][1]),t.lineTo(n[2][0],n[2][1]),t.lineTo(n[3][0],n[3][1]),t.closePath(),t.moveTo(n[4][0],n[4][1]),t.lineTo(n[5][0],n[5][1]),t.moveTo(n[6][0],n[6][1]),t.lineTo(n[7][0],n[7][1]))},e}(Is);function vP(t,e,n){var i=t.ends;return new yP({shape:{points:n?_P(i,t):i},z2:100})}function mP(t,e){for(var n=!0,i=0;i0?"borderColor":"borderColor0"])||n.get(["itemStyle",t>0?"color":"color0"]);0===t&&(r=n.get(["itemStyle","borderColorDoji"]));var o=n.getModel("itemStyle").getItemStyle(dP);e.useStyle(o),e.style.fill=null,e.style.stroke=r}var IP=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n.defaultValueDimensions=[{name:"open",defaultTooltip:!0},{name:"close",defaultTooltip:!0},{name:"lowest",defaultTooltip:!0},{name:"highest",defaultTooltip:!0}],n}return n(e,t),e.prototype.getShadowDim=function(){return"open"},e.prototype.brushSelector=function(t,e,n){var i=e.getItemLayout(t);return i&&n.rect(i.brushRect)},e.type="series.candlestick",e.dependencies=["xAxis","yAxis","grid"],e.defaultOption={z:2,coordinateSystem:"cartesian2d",legendHoverLink:!0,layout:null,clip:!0,itemStyle:{color:"#eb5454",color0:"#47b262",borderColor:"#eb5454",borderColor0:"#47b262",borderColorDoji:null,borderWidth:1},emphasis:{scale:!0,itemStyle:{borderWidth:2}},barMaxWidth:null,barMinWidth:null,barWidth:null,large:!0,largeThreshold:600,progressive:3e3,progressiveThreshold:1e4,progressiveChunkMode:"mod",animationEasing:"linear",animationDuration:300},e}(mg);function TP(t){t&&Y(t.series)&&E(t.series,(function(t){q(t)&&"k"===t.type&&(t.type="candlestick")}))}R(IP,nP,!0);var CP=["itemStyle","borderColor"],DP=["itemStyle","borderColor0"],AP=["itemStyle","borderColorDoji"],kP=["itemStyle","color"],LP=["itemStyle","color0"],PP={seriesType:"candlestick",plan:Cg(),performRawSeries:!0,reset:function(t,e){function n(t,e){return e.get(t>0?kP:LP)}function i(t,e){return e.get(0===t?AP:t>0?CP:DP)}if(!e.isSeriesFiltered(t))return!t.pipelineContext.large&&{progress:function(t,e){for(var r;null!=(r=t.next());){var o=e.getItemModel(r),a=e.getItemLayout(r).sign,s=o.getItemStyle();s.fill=n(a,o),s.stroke=i(a,o)||s.fill,A(e.ensureUniqueItemVisual(r,"style"),s)}}}}},OP={seriesType:"candlestick",plan:Cg(),reset:function(t){var e=t.coordinateSystem,n=t.getData(),i=function(t,e){var n,i=t.getBaseAxis(),r="category"===i.type?i.getBandWidth():(n=i.getExtent(),Math.abs(n[1]-n[0])/e.count()),o=Ur(rt(t.get("barMaxWidth"),r),r),a=Ur(rt(t.get("barMinWidth"),1),r),s=t.get("barWidth");return null!=s?Ur(s,r):Math.max(Math.min(r/2,o),a)}(t,n),r=["x","y"],o=n.getDimensionIndex(n.mapDimension(r[0])),a=z(n.mapDimensionsAll(r[1]),n.getDimensionIndex,n),s=a[0],l=a[1],u=a[2],h=a[3];if(n.setLayout({candleWidth:i,isSimpleBox:i<=1.3}),!(o<0||a.length<4))return{progress:t.pipelineContext.large?function(n,i){var r,a,c=Ex(4*n.count),p=0,d=[],f=[],g=i.getStore(),y=!!t.get(["itemStyle","borderColorDoji"]);for(;null!=(a=n.next());){var v=g.get(o,a),m=g.get(s,a),x=g.get(l,a),_=g.get(u,a),b=g.get(h,a);isNaN(v)||isNaN(_)||isNaN(b)?(c[p++]=NaN,p+=3):(c[p++]=RP(g,a,m,x,l,y),d[0]=v,d[1]=_,r=e.dataToPoint(d,null,f),c[p++]=r?r[0]:NaN,c[p++]=r?r[1]:NaN,d[1]=b,r=e.dataToPoint(d,null,f),c[p++]=r?r[1]:NaN)}i.setLayout("largePoints",c)}:function(t,n){var r,a=n.getStore();for(;null!=(r=t.next());){var c=a.get(o,r),p=a.get(s,r),d=a.get(l,r),f=a.get(u,r),g=a.get(h,r),y=Math.min(p,d),v=Math.max(p,d),m=M(y,c),x=M(v,c),_=M(f,c),b=M(g,c),w=[];I(w,x,0),I(w,m,1),w.push(C(b),C(x),C(_),C(m));var S=!!n.getItemModel(r).get(["itemStyle","borderColorDoji"]);n.setItemLayout(r,{sign:RP(a,r,p,d,l,S),initBaseline:p>d?x[1]:m[1],ends:w,brushRect:T(f,g,c)})}function M(t,n){var i=[];return i[0]=n,i[1]=t,isNaN(n)||isNaN(t)?[NaN,NaN]:e.dataToPoint(i)}function I(t,e,n){var r=e.slice(),o=e.slice();r[0]=Nh(r[0]+i/2,1,!1),o[0]=Nh(o[0]-i/2,1,!0),n?t.push(r,o):t.push(o,r)}function T(t,e,n){var r=M(t,n),o=M(e,n);return r[0]-=i/2,o[0]-=i/2,{x:r[0],y:r[1],width:i,height:o[1]-r[1]}}function C(t){return t[0]=Nh(t[0],1),t}}}}};function RP(t,e,n,i,r,o){return n>i?-1:n0?t.get(r,e-1)<=i?1:-1:1}function NP(t,e){var n=e.rippleEffectColor||e.color;t.eachChild((function(t){t.attr({z:e.z,zlevel:e.zlevel,style:{stroke:"stroke"===e.brushType?n:null,fill:"fill"===e.brushType?n:null}})}))}var EP=function(t){function e(e,n){var i=t.call(this)||this,r=new oS(e,n),o=new zr;return i.add(r),i.add(o),i.updateData(e,n),i}return n(e,t),e.prototype.stopEffectAnimation=function(){this.childAt(1).removeAll()},e.prototype.startEffectAnimation=function(t){for(var e=t.symbolType,n=t.color,i=t.rippleNumber,r=this.childAt(1),o=0;o0&&(o=this._getLineLength(i)/l*1e3),o!==this._period||a!==this._loop||s!==this._roundTrip){i.stopAnimation();var h=void 0;h=X(u)?u(n):u,i.__t>0&&(h=-o*i.__t),this._animateSymbol(i,o,h,a,s)}this._period=o,this._loop=a,this._roundTrip=s}},e.prototype._animateSymbol=function(t,e,n,i,r){if(e>0){t.__t=0;var o=this,a=t.animate("",i).when(r?2*e:e,{__t:r?2:1}).delay(n).during((function(){o._updateSymbolPosition(t)}));i||a.done((function(){o.remove(t)})),a.start()}},e.prototype._getLineLength=function(t){return Vt(t.__p1,t.__cp1)+Vt(t.__cp1,t.__p2)},e.prototype._updateAnimationPoints=function(t,e){t.__p1=e[0],t.__p2=e[1],t.__cp1=e[2]||[(e[0][0]+e[1][0])/2,(e[0][1]+e[1][1])/2]},e.prototype.updateData=function(t,e,n){this.childAt(0).updateData(t,e,n),this._updateEffectSymbol(t,e)},e.prototype._updateSymbolPosition=function(t){var e=t.__p1,n=t.__p2,i=t.__cp1,r=t.__t<1?t.__t:2-t.__t,o=[t.x,t.y],a=o.slice(),s=In,l=Tn;o[0]=s(e[0],i[0],n[0],r),o[1]=s(e[1],i[1],n[1],r);var u=t.__t<1?l(e[0],i[0],n[0],r):l(n[0],i[0],e[0],1-r),h=t.__t<1?l(e[1],i[1],n[1],r):l(n[1],i[1],e[1],1-r);t.rotation=-Math.atan2(h,u)-Math.PI/2,"line"!==this._symbolType&&"rect"!==this._symbolType&&"roundRect"!==this._symbolType||(void 0!==t.__lastT&&t.__lastT=0&&!(i[o]<=e);o--);o=Math.min(o,r-2)}else{for(o=a;oe);o++);o=Math.min(o-1,r-2)}var s=(e-i[o])/(i[o+1]-i[o]),l=n[o],u=n[o+1];t.x=l[0]*(1-s)+s*u[0],t.y=l[1]*(1-s)+s*u[1];var h=t.__t<1?u[0]-l[0]:l[0]-u[0],c=t.__t<1?u[1]-l[1]:l[1]-u[1];t.rotation=-Math.atan2(c,h)-Math.PI/2,this._lastFrame=o,this._lastFramePercent=e,t.ignore=!1}},e}(BP),WP=function(){this.polyline=!1,this.curveness=0,this.segs=[]},HP=function(t){function e(e){var n=t.call(this,e)||this;return n._off=0,n.hoverDataIdx=-1,n}return n(e,t),e.prototype.reset=function(){this.notClear=!1,this._off=0},e.prototype.getDefaultStyle=function(){return{stroke:"#000",fill:null}},e.prototype.getDefaultShape=function(){return new WP},e.prototype.buildPath=function(t,e){var n,i=e.segs,r=e.curveness;if(e.polyline)for(n=this._off;n0){t.moveTo(i[n++],i[n++]);for(var a=1;a0){var c=(s+u)/2-(l-h)*r,p=(l+h)/2-(u-s)*r;t.quadraticCurveTo(c,p,u,h)}else t.lineTo(u,h)}this.incremental&&(this._off=n,this.notClear=!0)},e.prototype.findDataIndex=function(t,e){var n=this.shape,i=n.segs,r=n.curveness,o=this.style.lineWidth;if(n.polyline)for(var a=0,s=0;s0)for(var u=i[s++],h=i[s++],c=1;c0){if(ls(u,h,(u+p)/2-(h-d)*r,(h+d)/2-(p-u)*r,p,d,o,t,e))return a}else if(as(u,h,p,d,o,t,e))return a;a++}return-1},e.prototype.contain=function(t,e){var n=this.transformCoordToLocal(t,e),i=this.getBoundingRect();return t=n[0],e=n[1],i.contain(t,e)?(this.hoverDataIdx=this.findDataIndex(t,e))>=0:(this.hoverDataIdx=-1,!1)},e.prototype.getBoundingRect=function(){var t=this._rect;if(!t){for(var e=this.shape.segs,n=1/0,i=1/0,r=-1/0,o=-1/0,a=0;a0&&(o.dataIndex=n+t.__startIndex)}))},t.prototype._clear=function(){this._newAdded=[],this.group.removeAll()},t}(),XP={seriesType:"lines",plan:Cg(),reset:function(t){var e=t.coordinateSystem;if(e){var n=t.get("polyline"),i=t.pipelineContext.large;return{progress:function(r,o){var a=[];if(i){var s=void 0,l=r.end-r.start;if(n){for(var u=0,h=r.start;h0&&(l||s.configLayer(o,{motionBlur:!0,lastFrameAlpha:Math.max(Math.min(a/10+.9,1),0)})),r.updateData(i);var u=t.get("clip",!0)&&SS(t.coordinateSystem,!1,t);u?this.group.setClipPath(u):this.group.removeClipPath(),this._lastZlevel=o,this._finished=!0},e.prototype.incrementalPrepareRender=function(t,e,n){var i=t.getData();this._updateLineDraw(i,t).incrementalPrepareUpdate(i),this._clearLayer(n),this._finished=!1},e.prototype.incrementalRender=function(t,e,n){this._lineDraw.incrementalUpdate(t,e.getData()),this._finished=t.end===e.getData().count()},e.prototype.eachRendered=function(t){this._lineDraw&&this._lineDraw.eachRendered(t)},e.prototype.updateTransform=function(t,e,n){var i=t.getData(),r=t.pipelineContext;if(!this._finished||r.large||r.progressiveRender)return{update:!0};var o=XP.reset(t,e,n);o.progress&&o.progress({start:0,end:i.count(),count:i.count()},i),this._lineDraw.updateLayout(),this._clearLayer(n)},e.prototype._updateLineDraw=function(t,e){var n=this._lineDraw,i=this._showEffect(e),r=!!e.get("polyline"),o=e.pipelineContext.large;return n&&i===this._hasEffet&&r===this._isPolyline&&o===this._isLargeDraw||(n&&n.remove(),n=this._lineDraw=o?new YP:new RA(r?i?GP:FP:i?BP:OA),this._hasEffet=i,this._isPolyline=r,this._isLargeDraw=o),this.group.add(n.group),n},e.prototype._showEffect=function(t){return!!t.get(["effect","show"])},e.prototype._clearLayer=function(t){var e=t.getZr();"svg"===e.painter.getType()||null==this._lastZlevel||e.painter.getLayer(this._lastZlevel).clear(!0)},e.prototype.remove=function(t,e){this._lineDraw&&this._lineDraw.remove(),this._lineDraw=null,this._clearLayer(e)},e.prototype.dispose=function(t,e){this.remove(t,e)},e.type="lines",e}(kg),ZP="undefined"==typeof Uint32Array?Array:Uint32Array,jP="undefined"==typeof Float64Array?Array:Float64Array;function qP(t){var e=t.data;e&&e[0]&&e[0][0]&&e[0][0].coord&&(t.data=z(e,(function(t){var e={coords:[t[0].coord,t[1].coord]};return t[0].name&&(e.fromName=t[0].name),t[1].name&&(e.toName=t[1].name),D([e,t[0],t[1]])})))}var KP=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n.visualStyleAccessPath="lineStyle",n.visualDrawType="stroke",n}return n(e,t),e.prototype.init=function(e){e.data=e.data||[],qP(e);var n=this._processFlatCoordsArray(e.data);this._flatCoords=n.flatCoords,this._flatCoordsOffset=n.flatCoordsOffset,n.flatCoords&&(e.data=new Float32Array(n.count)),t.prototype.init.apply(this,arguments)},e.prototype.mergeOption=function(e){if(qP(e),e.data){var n=this._processFlatCoordsArray(e.data);this._flatCoords=n.flatCoords,this._flatCoordsOffset=n.flatCoordsOffset,n.flatCoords&&(e.data=new Float32Array(n.count))}t.prototype.mergeOption.apply(this,arguments)},e.prototype.appendData=function(t){var e=this._processFlatCoordsArray(t.data);e.flatCoords&&(this._flatCoords?(this._flatCoords=vt(this._flatCoords,e.flatCoords),this._flatCoordsOffset=vt(this._flatCoordsOffset,e.flatCoordsOffset)):(this._flatCoords=e.flatCoords,this._flatCoordsOffset=e.flatCoordsOffset),t.data=new Float32Array(e.count)),this.getRawData().appendData(t.data)},e.prototype._getCoordsFromItemModel=function(t){var e=this.getData().getItemModel(t),n=e.option instanceof Array?e.option:e.getShallow("coords");return n},e.prototype.getLineCoordsCount=function(t){return this._flatCoordsOffset?this._flatCoordsOffset[2*t+1]:this._getCoordsFromItemModel(t).length},e.prototype.getLineCoords=function(t,e){if(this._flatCoordsOffset){for(var n=this._flatCoordsOffset[2*t],i=this._flatCoordsOffset[2*t+1],r=0;r ")})},e.prototype.preventIncremental=function(){return!!this.get(["effect","show"])},e.prototype.getProgressive=function(){var t=this.option.progressive;return null==t?this.option.large?1e4:this.get("progressive"):t},e.prototype.getProgressiveThreshold=function(){var t=this.option.progressiveThreshold;return null==t?this.option.large?2e4:this.get("progressiveThreshold"):t},e.prototype.getZLevelKey=function(){var t=this.getModel("effect"),e=t.get("trailLength");return this.getData().count()>this.getProgressiveThreshold()?this.id:t.get("show")&&e>0?e+"":""},e.type="series.lines",e.dependencies=["grid","polar","geo","calendar"],e.defaultOption={coordinateSystem:"geo",z:2,legendHoverLink:!0,xAxisIndex:0,yAxisIndex:0,symbol:["none","none"],symbolSize:[10,10],geoIndex:0,effect:{show:!1,period:4,constantSpeed:0,symbol:"circle",symbolSize:3,loop:!0,trailLength:.2},large:!1,largeThreshold:2e3,polyline:!1,clip:!0,label:{show:!1,position:"end"},lineStyle:{opacity:.5}},e}(mg);function $P(t){return t instanceof Array||(t=[t,t]),t}var JP={seriesType:"lines",reset:function(t){var e=$P(t.get("symbol")),n=$P(t.get("symbolSize")),i=t.getData();return i.setVisual("fromSymbol",e&&e[0]),i.setVisual("toSymbol",e&&e[1]),i.setVisual("fromSymbolSize",n&&n[0]),i.setVisual("toSymbolSize",n&&n[1]),{dataEach:i.hasItemOption?function(t,e){var n=t.getItemModel(e),i=$P(n.getShallow("symbol",!0)),r=$P(n.getShallow("symbolSize",!0));i[0]&&t.setItemVisual(e,"fromSymbol",i[0]),i[1]&&t.setItemVisual(e,"toSymbol",i[1]),r[0]&&t.setItemVisual(e,"fromSymbolSize",r[0]),r[1]&&t.setItemVisual(e,"toSymbolSize",r[1])}:null}}};var QP=function(){function t(){this.blurSize=30,this.pointSize=20,this.maxOpacity=1,this.minOpacity=0,this._gradientPixels={inRange:null,outOfRange:null};var t=h.createCanvas();this.canvas=t}return t.prototype.update=function(t,e,n,i,r,o){var a=this._getBrush(),s=this._getGradient(r,"inRange"),l=this._getGradient(r,"outOfRange"),u=this.pointSize+this.blurSize,h=this.canvas,c=h.getContext("2d"),p=t.length;h.width=e,h.height=n;for(var d=0;d0){var I=o(v)?s:l;v>0&&(v=v*S+w),x[_++]=I[M],x[_++]=I[M+1],x[_++]=I[M+2],x[_++]=I[M+3]*v*256}else _+=4}return c.putImageData(m,0,0),h},t.prototype._getBrush=function(){var t=this._brushCanvas||(this._brushCanvas=h.createCanvas()),e=this.pointSize+this.blurSize,n=2*e;t.width=n,t.height=n;var i=t.getContext("2d");return i.clearRect(0,0,n,n),i.shadowOffsetX=n,i.shadowBlur=this.blurSize,i.shadowColor="#000",i.beginPath(),i.arc(-e,e,this.pointSize,0,2*Math.PI,!0),i.closePath(),i.fill(),t},t.prototype._getGradient=function(t,e){for(var n=this._gradientPixels,i=n[e]||(n[e]=new Uint8ClampedArray(1024)),r=[0,0,0,0],o=0,a=0;a<256;a++)t[e](a/255,!0,r),i[o++]=r[0],i[o++]=r[1],i[o++]=r[2],i[o++]=r[3];return i},t}();function tO(t){var e=t.dimensions;return"lng"===e[0]&&"lat"===e[1]}var eO=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n}return n(e,t),e.prototype.render=function(t,e,n){var i;e.eachComponent("visualMap",(function(e){e.eachTargetSeries((function(n){n===t&&(i=e)}))})),this._progressiveEls=null,this.group.removeAll();var r=t.coordinateSystem;"cartesian2d"===r.type||"calendar"===r.type?this._renderOnCartesianAndCalendar(t,n,0,t.getData().count()):tO(r)&&this._renderOnGeo(r,t,i,n)},e.prototype.incrementalPrepareRender=function(t,e,n){this.group.removeAll()},e.prototype.incrementalRender=function(t,e,n,i){var r=e.coordinateSystem;r&&(tO(r)?this.render(e,n,i):(this._progressiveEls=[],this._renderOnCartesianAndCalendar(e,i,t.start,t.end,!0)))},e.prototype.eachRendered=function(t){qh(this._progressiveEls||this.group,t)},e.prototype._renderOnCartesianAndCalendar=function(t,e,n,i,r){var o,a,s,l,u=t.coordinateSystem,h=MS(u,"cartesian2d");if(h){var c=u.getAxis("x"),p=u.getAxis("y");0,o=c.getBandWidth()+.5,a=p.getBandWidth()+.5,s=c.scale.getExtent(),l=p.scale.getExtent()}for(var d=this.group,f=t.getData(),g=t.getModel(["emphasis","itemStyle"]).getItemStyle(),y=t.getModel(["blur","itemStyle"]).getItemStyle(),v=t.getModel(["select","itemStyle"]).getItemStyle(),m=t.get(["itemStyle","borderRadius"]),x=ec(t),_=t.getModel("emphasis"),b=_.get("focus"),w=_.get("blurScope"),S=_.get("disabled"),M=h?[f.mapDimension("x"),f.mapDimension("y"),f.mapDimension("value")]:[f.mapDimension("time"),f.mapDimension("value")],I=n;Is[1]||Al[1])continue;var k=u.dataToPoint([D,A]);T=new zs({shape:{x:k[0]-o/2,y:k[1]-a/2,width:o,height:a},style:C})}else{if(isNaN(f.get(M[1],I)))continue;T=new zs({z2:1,shape:u.dataToRect([f.get(M[0],I)]).contentShape,style:C})}if(f.hasItemOption){var L=f.getItemModel(I),P=L.getModel("emphasis");g=P.getModel("itemStyle").getItemStyle(),y=L.getModel(["blur","itemStyle"]).getItemStyle(),v=L.getModel(["select","itemStyle"]).getItemStyle(),m=L.get(["itemStyle","borderRadius"]),b=P.get("focus"),w=P.get("blurScope"),S=P.get("disabled"),x=ec(L)}T.shape.r=m;var O=t.getRawValue(I),R="-";O&&null!=O[2]&&(R=O[2]+""),tc(T,x,{labelFetcher:t,labelDataIndex:I,defaultOpacity:C.opacity,defaultText:R}),T.ensureState("emphasis").style=g,T.ensureState("blur").style=y,T.ensureState("select").style=v,Yl(T,b,w,S),T.incremental=r,r&&(T.states.emphasis.hoverLayer=!0),d.add(T),f.setItemGraphicEl(I,T),this._progressiveEls&&this._progressiveEls.push(T)}},e.prototype._renderOnGeo=function(t,e,n,i){var r=n.targetVisuals.inRange,o=n.targetVisuals.outOfRange,a=e.getData(),s=this._hmLayer||this._hmLayer||new QP;s.blurSize=e.get("blurSize"),s.pointSize=e.get("pointSize"),s.minOpacity=e.get("minOpacity"),s.maxOpacity=e.get("maxOpacity");var l=t.getViewRect().clone(),u=t.getRoamTransform();l.applyTransform(u);var h=Math.max(l.x,0),c=Math.max(l.y,0),p=Math.min(l.width+l.x,i.getWidth()),d=Math.min(l.height+l.y,i.getHeight()),f=p-h,g=d-c,y=[a.mapDimension("lng"),a.mapDimension("lat"),a.mapDimension("value")],v=a.mapArray(y,(function(e,n,i){var r=t.dataToPoint([e,n]);return r[0]-=h,r[1]-=c,r.push(i),r})),m=n.getExtent(),x="visualMap.continuous"===n.type?function(t,e){var n=t[1]-t[0];return e=[(e[0]-t[0])/n,(e[1]-t[0])/n],function(t){return t>=e[0]&&t<=e[1]}}(m,n.option.range):function(t,e,n){var i=t[1]-t[0],r=(e=z(e,(function(e){return{interval:[(e.interval[0]-t[0])/i,(e.interval[1]-t[0])/i]}}))).length,o=0;return function(t){var i;for(i=o;i=0;i--){var a;if((a=e[i].interval)[0]<=t&&t<=a[1]){o=i;break}}return i>=0&&i0?1:-1}(n,o,r,i,c),function(t,e,n,i,r,o,a,s,l,u){var h,c=l.valueDim,p=l.categoryDim,d=Math.abs(n[p.wh]),f=t.getItemVisual(e,"symbolSize");h=Y(f)?f.slice():null==f?["100%","100%"]:[f,f];h[p.index]=Ur(h[p.index],d),h[c.index]=Ur(h[c.index],i?d:Math.abs(o)),u.symbolSize=h;var g=u.symbolScale=[h[0]/s,h[1]/s];g[c.index]*=(l.isHorizontal?-1:1)*a}(t,e,r,o,0,c.boundingLength,c.pxSign,u,i,c),function(t,e,n,i,r){var o=t.get(iO)||0;o&&(oO.attr({scaleX:e[0],scaleY:e[1],rotation:n}),oO.updateTransform(),o/=oO.getLineScale(),o*=e[i.valueDim.index]);r.valueLineWidth=o||0}(n,c.symbolScale,l,i,c);var p=c.symbolSize,d=Yy(n.get("symbolOffset"),p);return function(t,e,n,i,r,o,a,s,l,u,h,c){var p=h.categoryDim,d=h.valueDim,f=c.pxSign,g=Math.max(e[d.index]+s,0),y=g;if(i){var v=Math.abs(l),m=it(t.get("symbolMargin"),"15%")+"",x=!1;m.lastIndexOf("!")===m.length-1&&(x=!0,m=m.slice(0,m.length-1));var _=Ur(m,e[d.index]),b=Math.max(g+2*_,0),w=x?0:2*_,S=co(i),M=S?i:SO((v+w)/b);b=g+2*(_=(v-M*g)/2/(x?M:Math.max(M-1,1))),w=x?0:2*_,S||"fixed"===i||(M=u?SO((Math.abs(u)+w)/b):0),y=M*b-w,c.repeatTimes=M,c.symbolMargin=_}var I=f*(y/2),T=c.pathPosition=[];T[p.index]=n[p.wh]/2,T[d.index]="start"===a?I:"end"===a?l-I:l/2,o&&(T[0]+=o[0],T[1]+=o[1]);var C=c.bundlePosition=[];C[p.index]=n[p.xy],C[d.index]=n[d.xy];var D=c.barRectShape=A({},n);D[d.wh]=f*Math.max(Math.abs(n[d.wh]),Math.abs(T[d.index]+I)),D[p.wh]=n[p.wh];var k=c.clipShape={};k[p.xy]=-n[p.xy],k[p.wh]=h.ecSize[p.wh],k[d.xy]=0,k[d.wh]=n[d.wh]}(n,p,r,o,0,d,s,c.valueLineWidth,c.boundingLength,c.repeatCutLength,i,c),c}function lO(t,e){return t.toGlobalCoord(t.dataToCoord(t.scale.parse(e)))}function uO(t){var e=t.symbolPatternSize,n=Wy(t.symbolType,-e/2,-e/2,e,e);return n.attr({culling:!0}),"image"!==n.type&&n.setStyle({strokeNoScale:!0}),n}function hO(t,e,n,i){var r=t.__pictorialBundle,o=n.symbolSize,a=n.valueLineWidth,s=n.pathPosition,l=e.valueDim,u=n.repeatTimes||0,h=0,c=o[e.valueDim.index]+a+2*n.symbolMargin;for(_O(t,(function(t){t.__pictorialAnimationIndex=h,t.__pictorialRepeatTimes=u,h0:i<0)&&(r=u-1-t),e[l.index]=c*(r-u/2+.5)+s[l.index],{x:e[0],y:e[1],scaleX:n.symbolScale[0],scaleY:n.symbolScale[1],rotation:n.rotation}}}function cO(t,e,n,i){var r=t.__pictorialBundle,o=t.__pictorialMainPath;o?bO(o,null,{x:n.pathPosition[0],y:n.pathPosition[1],scaleX:n.symbolScale[0],scaleY:n.symbolScale[1],rotation:n.rotation},n,i):(o=t.__pictorialMainPath=uO(n),r.add(o),bO(o,{x:n.pathPosition[0],y:n.pathPosition[1],scaleX:0,scaleY:0,rotation:n.rotation},{scaleX:n.symbolScale[0],scaleY:n.symbolScale[1]},n,i))}function pO(t,e,n){var i=A({},e.barRectShape),r=t.__pictorialBarRect;r?bO(r,null,{shape:i},e,n):((r=t.__pictorialBarRect=new zs({z2:2,shape:i,silent:!0,style:{stroke:"transparent",fill:"transparent",lineWidth:0}})).disableMorphing=!0,t.add(r))}function dO(t,e,n,i){if(n.symbolClip){var r=t.__pictorialClipPath,o=A({},n.clipShape),a=e.valueDim,s=n.animationModel,l=n.dataIndex;if(r)fh(r,{shape:o},s,l);else{o[a.wh]=0,r=new zs({shape:o}),t.__pictorialBundle.setClipPath(r),t.__pictorialClipPath=r;var u={};u[a.wh]=n.clipShape[a.wh],Kh[i?"updateProps":"initProps"](r,{shape:u},s,l)}}}function fO(t,e){var n=t.getItemModel(e);return n.getAnimationDelayParams=gO,n.isAnimationEnabled=yO,n}function gO(t){return{index:t.__pictorialAnimationIndex,count:t.__pictorialRepeatTimes}}function yO(){return this.parentModel.isAnimationEnabled()&&!!this.getShallow("animation")}function vO(t,e,n,i){var r=new zr,o=new zr;return r.add(o),r.__pictorialBundle=o,o.x=n.bundlePosition[0],o.y=n.bundlePosition[1],n.symbolRepeat?hO(r,e,n):cO(r,0,n),pO(r,n,i),dO(r,e,n,i),r.__pictorialShapeStr=xO(t,n),r.__pictorialSymbolMeta=n,r}function mO(t,e,n,i){var r=i.__pictorialBarRect;r&&r.removeTextContent();var o=[];_O(i,(function(t){o.push(t)})),i.__pictorialMainPath&&o.push(i.__pictorialMainPath),i.__pictorialClipPath&&(n=null),E(o,(function(t){vh(t,{scaleX:0,scaleY:0},n,e,(function(){i.parent&&i.parent.remove(i)}))})),t.setItemGraphicEl(e,null)}function xO(t,e){return[t.getItemVisual(e.dataIndex,"symbol")||"none",!!e.symbolRepeat,!!e.symbolClip].join(":")}function _O(t,e,n){E(t.__pictorialBundle.children(),(function(i){i!==t.__pictorialBarRect&&e.call(n,i)}))}function bO(t,e,n,i,r,o){e&&t.attr(e),i.symbolClip&&!r?n&&t.attr(n):n&&Kh[r?"updateProps":"initProps"](t,n,i.animationModel,i.dataIndex,o)}function wO(t,e,n){var i=n.dataIndex,r=n.itemModel,o=r.getModel("emphasis"),a=o.getModel("itemStyle").getItemStyle(),s=r.getModel(["blur","itemStyle"]).getItemStyle(),l=r.getModel(["select","itemStyle"]).getItemStyle(),u=r.getShallow("cursor"),h=o.get("focus"),c=o.get("blurScope"),p=o.get("scale");_O(t,(function(t){if(t instanceof ks){var e=t.style;t.useStyle(A({image:e.image,x:e.x,y:e.y,width:e.width,height:e.height},n.style))}else t.useStyle(n.style);var i=t.ensureState("emphasis");i.style=a,p&&(i.scaleX=1.1*t.scaleX,i.scaleY=1.1*t.scaleY),t.ensureState("blur").style=s,t.ensureState("select").style=l,u&&(t.cursor=u),t.z2=n.z2}));var d=e.valueDim.posDesc[+(n.boundingLength>0)];tc(t.__pictorialBarRect,ec(r),{labelFetcher:e.seriesModel,labelDataIndex:i,defaultText:iS(e.seriesModel.getData(),i),inheritColor:n.style.fill,defaultOpacity:n.style.opacity,defaultOutsidePosition:d}),Yl(t,h,c,o.get("disabled"))}function SO(t){var e=Math.round(t);return Math.abs(t-e)<1e-4?e:Math.ceil(t)}var MO=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n.hasSymbolVisual=!0,n.defaultSymbol="roundRect",n}return n(e,t),e.prototype.getInitialData=function(e){return e.stack=null,t.prototype.getInitialData.apply(this,arguments)},e.type="series.pictorialBar",e.dependencies=["grid"],e.defaultOption=Cc(FS.defaultOption,{symbol:"circle",symbolSize:null,symbolRotate:null,symbolPosition:null,symbolOffset:null,symbolMargin:null,symbolRepeat:!1,symbolRepeatDirection:"end",symbolClip:!1,symbolBoundingData:null,symbolPatternSize:400,barGap:"-100%",progressive:0,emphasis:{scale:!1},select:{itemStyle:{borderColor:"#212121"}}}),e}(FS);var IO=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n._layers=[],n}return n(e,t),e.prototype.render=function(t,e,n){var i=t.getData(),r=this,o=this.group,a=t.getLayerSeries(),s=i.getLayout("layoutInfo"),l=s.rect,u=s.boundaryGap;function h(t){return t.name}o.x=0,o.y=l.y+u[0];var c=new Vm(this._layersSeries||[],a,h,h),p=[];function d(e,n,s){var l=r._layers;if("remove"!==e){for(var u,h,c=[],d=[],f=a[n].indices,g=0;go&&(o=s),i.push(s)}for(var u=0;uo&&(o=c)}return{y0:r,max:o}}(l),h=u.y0,c=n/u.max,p=o.length,d=o[0].indices.length,f=0;fMath.PI/2?"right":"left"):S&&"center"!==S?"left"===S?(m=r.r0+w,a>Math.PI/2&&(S="right")):"right"===S&&(m=r.r-w,a>Math.PI/2&&(S="left")):(m=o===2*Math.PI&&0===r.r0?0:(r.r+r.r0)/2,S="center"),g.style.align=S,g.style.verticalAlign=f(p,"verticalAlign")||"middle",g.x=m*s+r.cx,g.y=m*l+r.cy;var M=f(p,"rotate"),I=0;"radial"===M?(I=hs(-a))>Math.PI/2&&I<1.5*Math.PI&&(I+=Math.PI):"tangential"===M?(I=Math.PI/2-a)>Math.PI/2?I-=Math.PI:I<-Math.PI/2&&(I+=Math.PI):j(M)&&(I=M*Math.PI/180),g.rotation=hs(I)})),h.dirtyStyle()},e}(zu),kO="sunburstRootToNode",LO="sunburstHighlight";var PO=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n}return n(e,t),e.prototype.render=function(t,e,n,i){var r=this;this.seriesModel=t,this.api=n,this.ecModel=e;var o=t.getData(),a=o.tree.root,s=t.getViewRoot(),l=this.group,u=t.get("renderLabelForZeroData"),h=[];s.eachNode((function(t){h.push(t)}));var c=this._oldChildren||[];!function(i,r){if(0===i.length&&0===r.length)return;function s(t){return t.getId()}function h(s,h){!function(i,r){u||!i||i.getValue()||(i=null);if(i!==a&&r!==a)if(r&&r.piece)i?(r.piece.updateData(!1,i,t,e,n),o.setItemGraphicEl(i.dataIndex,r.piece)):function(t){if(!t)return;t.piece&&(l.remove(t.piece),t.piece=null)}(r);else if(i){var s=new AO(i,t,e,n);l.add(s),o.setItemGraphicEl(i.dataIndex,s)}}(null==s?null:i[s],null==h?null:r[h])}new Vm(r,i,s,s).add(h).update(h).remove(H(h,null)).execute()}(h,c),function(i,o){o.depth>0?(r.virtualPiece?r.virtualPiece.updateData(!1,i,t,e,n):(r.virtualPiece=new AO(i,t,e,n),l.add(r.virtualPiece)),o.piece.off("click"),r.virtualPiece.on("click",(function(t){r._rootToNode(o.parentNode)}))):r.virtualPiece&&(l.remove(r.virtualPiece),r.virtualPiece=null)}(a,s),this._initEvents(),this._oldChildren=h},e.prototype._initEvents=function(){var t=this;this.group.off("click"),this.group.on("click",(function(e){var n=!1;t.seriesModel.getViewRoot().eachNode((function(i){if(!n&&i.piece&&i.piece===e.target){var r=i.getModel().get("nodeClick");if("rootToNode"===r)t._rootToNode(i);else if("link"===r){var o=i.getModel(),a=o.get("link");if(a)bp(a,o.get("target",!0)||"_blank")}n=!0}}))}))},e.prototype._rootToNode=function(t){t!==this.seriesModel.getViewRoot()&&this.api.dispatchAction({type:kO,from:this.uid,seriesId:this.seriesModel.id,targetNode:t})},e.prototype.containPoint=function(t,e){var n=e.getData().getItemLayout(0);if(n){var i=t[0]-n.cx,r=t[1]-n.cy,o=Math.sqrt(i*i+r*r);return o<=n.r&&o>=n.r0}},e.type="sunburst",e}(kg),OO=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n.ignoreStyleOnData=!0,n}return n(e,t),e.prototype.getInitialData=function(t,e){var n={name:t.name,children:t.data};RO(n);var i=this._levelModels=z(t.levels||[],(function(t){return new Mc(t,this,e)}),this),r=UC.createTree(n,this,(function(t){t.wrapMethod("getItemModel",(function(t,e){var n=r.getNodeByDataIndex(e),o=i[n.depth];return o&&(t.parentModel=o),t}))}));return r.data},e.prototype.optionUpdated=function(){this.resetViewRoot()},e.prototype.getDataParams=function(e){var n=t.prototype.getDataParams.apply(this,arguments),i=this.getData().tree.getNodeByDataIndex(e);return n.treePathInfo=KC(i,this),n},e.prototype.getLevelModel=function(t){return this._levelModels&&this._levelModels[t.depth]},e.prototype.getViewRoot=function(){return this._viewRoot},e.prototype.resetViewRoot=function(t){t?this._viewRoot=t:t=this._viewRoot;var e=this.getRawData().tree.root;t&&(t===e||e.contains(t))||(this._viewRoot=e)},e.prototype.enableAriaDecal=function(){nD(this)},e.type="series.sunburst",e.defaultOption={z:2,center:["50%","50%"],radius:[0,"75%"],clockwise:!0,startAngle:90,minAngle:0,stillShowZeroSum:!0,nodeClick:"rootToNode",renderLabelForZeroData:!1,label:{rotate:"radial",show:!0,opacity:1,align:"center",position:"inside",distance:5,silent:!0},itemStyle:{borderWidth:1,borderColor:"white",borderType:"solid",shadowBlur:0,shadowColor:"rgba(0, 0, 0, 0.2)",shadowOffsetX:0,shadowOffsetY:0,opacity:1},emphasis:{focus:"descendant"},blur:{itemStyle:{opacity:.2},label:{opacity:.1}},animationType:"expansion",animationDuration:1e3,animationDurationUpdate:500,data:[],sort:"desc"},e}(mg);function RO(t){var e=0;E(t.children,(function(t){RO(t);var n=t.value;Y(n)&&(n=n[0]),e+=n}));var n=t.value;Y(n)&&(n=n[0]),(null==n||isNaN(n))&&(n=e),n<0&&(n=0),Y(t.value)?t.value[0]=n:t.value=n}var NO=Math.PI/180;function EO(t,e,n){e.eachSeriesByType(t,(function(t){var e=t.get("center"),i=t.get("radius");Y(i)||(i=[0,i]),Y(e)||(e=[e,e]);var r=n.getWidth(),o=n.getHeight(),a=Math.min(r,o),s=Ur(e[0],r),l=Ur(e[1],o),u=Ur(i[0],a/2),h=Ur(i[1],a/2),c=-t.get("startAngle")*NO,p=t.get("minAngle")*NO,d=t.getData().tree.root,f=t.getViewRoot(),g=f.depth,y=t.get("sort");null!=y&&zO(f,y);var v=0;E(f.children,(function(t){!isNaN(t.getValue())&&v++}));var m=f.getValue(),x=Math.PI/(m||v)*2,_=f.depth>0,b=f.height-(_?-1:1),w=(h-u)/(b||1),S=t.get("clockwise"),M=t.get("stillShowZeroSum"),I=S?1:-1,T=function(e,n){if(e){var i=n;if(e!==d){var r=e.getValue(),o=0===m&&M?x:r*x;o1;)r=r.parentNode;var o=n.getColorFromPalette(r.name||r.dataIndex+"",e);return t.depth>1&&U(o)&&(o=$n(o,(t.depth-1)/(i-1)*.5)),o}(r,t,i.root.height)),A(n.ensureUniqueItemVisual(r.dataIndex,"style"),o)}))}))}var BO={color:"fill",borderColor:"stroke"},FO={symbol:1,symbolSize:1,symbolKeepAspect:1,legendIcon:1,visualMeta:1,liftZ:1,decal:1},GO=Oo(),WO=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n}return n(e,t),e.prototype.optionUpdated=function(){this.currentZLevel=this.get("zlevel",!0),this.currentZ=this.get("z",!0)},e.prototype.getInitialData=function(t,e){return vx(null,this)},e.prototype.getDataParams=function(e,n,i){var r=t.prototype.getDataParams.call(this,e,n);return i&&(r.info=GO(i).info),r},e.type="series.custom",e.dependencies=["grid","polar","geo","singleAxis","calendar"],e.defaultOption={coordinateSystem:"cartesian2d",z:2,legendHoverLink:!0,clip:!1},e}(mg);function HO(t,e){return e=e||[0,0],z(["x","y"],(function(n,i){var r=this.getAxis(n),o=e[i],a=t[i]/2;return"category"===r.type?r.getBandWidth():Math.abs(r.dataToCoord(o-a)-r.dataToCoord(o+a))}),this)}function YO(t,e){return e=e||[0,0],z([0,1],(function(n){var i=e[n],r=t[n]/2,o=[],a=[];return o[n]=i-r,a[n]=i+r,o[1-n]=a[1-n]=e[1-n],Math.abs(this.dataToPoint(o)[n]-this.dataToPoint(a)[n])}),this)}function XO(t,e){var n=this.getAxis(),i=e instanceof Array?e[0]:e,r=(t instanceof Array?t[0]:t)/2;return"category"===n.type?n.getBandWidth():Math.abs(n.dataToCoord(i-r)-n.dataToCoord(i+r))}function UO(t,e){return e=e||[0,0],z(["Radius","Angle"],(function(n,i){var r=this["get"+n+"Axis"](),o=e[i],a=t[i]/2,s="category"===r.type?r.getBandWidth():Math.abs(r.dataToCoord(o-a)-r.dataToCoord(o+a));return"Angle"===n&&(s=s*Math.PI/180),s}),this)}function ZO(t,e,n,i){return t&&(t.legacy||!1!==t.legacy&&!n&&!i&&"tspan"!==e&&("text"===e||_t(t,"text")))}function jO(t,e,n){var i,r,o,a=t;if("text"===e)o=a;else{o={},_t(a,"text")&&(o.text=a.text),_t(a,"rich")&&(o.rich=a.rich),_t(a,"textFill")&&(o.fill=a.textFill),_t(a,"textStroke")&&(o.stroke=a.textStroke),_t(a,"fontFamily")&&(o.fontFamily=a.fontFamily),_t(a,"fontSize")&&(o.fontSize=a.fontSize),_t(a,"fontStyle")&&(o.fontStyle=a.fontStyle),_t(a,"fontWeight")&&(o.fontWeight=a.fontWeight),r={type:"text",style:o,silent:!0},i={};var s=_t(a,"textPosition");n?i.position=s?a.textPosition:"inside":s&&(i.position=a.textPosition),_t(a,"textPosition")&&(i.position=a.textPosition),_t(a,"textOffset")&&(i.offset=a.textOffset),_t(a,"textRotation")&&(i.rotation=a.textRotation),_t(a,"textDistance")&&(i.distance=a.textDistance)}return qO(o,t),E(o.rich,(function(t){qO(t,t)})),{textConfig:i,textContent:r}}function qO(t,e){e&&(e.font=e.textFont||e.font,_t(e,"textStrokeWidth")&&(t.lineWidth=e.textStrokeWidth),_t(e,"textAlign")&&(t.align=e.textAlign),_t(e,"textVerticalAlign")&&(t.verticalAlign=e.textVerticalAlign),_t(e,"textLineHeight")&&(t.lineHeight=e.textLineHeight),_t(e,"textWidth")&&(t.width=e.textWidth),_t(e,"textHeight")&&(t.height=e.textHeight),_t(e,"textBackgroundColor")&&(t.backgroundColor=e.textBackgroundColor),_t(e,"textPadding")&&(t.padding=e.textPadding),_t(e,"textBorderColor")&&(t.borderColor=e.textBorderColor),_t(e,"textBorderWidth")&&(t.borderWidth=e.textBorderWidth),_t(e,"textBorderRadius")&&(t.borderRadius=e.textBorderRadius),_t(e,"textBoxShadowColor")&&(t.shadowColor=e.textBoxShadowColor),_t(e,"textBoxShadowBlur")&&(t.shadowBlur=e.textBoxShadowBlur),_t(e,"textBoxShadowOffsetX")&&(t.shadowOffsetX=e.textBoxShadowOffsetX),_t(e,"textBoxShadowOffsetY")&&(t.shadowOffsetY=e.textBoxShadowOffsetY))}function KO(t,e,n){var i=t;i.textPosition=i.textPosition||n.position||"inside",null!=n.offset&&(i.textOffset=n.offset),null!=n.rotation&&(i.textRotation=n.rotation),null!=n.distance&&(i.textDistance=n.distance);var r=i.textPosition.indexOf("inside")>=0,o=t.fill||"#000";$O(i,e);var a=null==i.textFill;return r?a&&(i.textFill=n.insideFill||"#fff",!i.textStroke&&n.insideStroke&&(i.textStroke=n.insideStroke),!i.textStroke&&(i.textStroke=o),null==i.textStrokeWidth&&(i.textStrokeWidth=2)):(a&&(i.textFill=t.fill||n.outsideFill||"#000"),!i.textStroke&&n.outsideStroke&&(i.textStroke=n.outsideStroke)),i.text=e.text,i.rich=e.rich,E(e.rich,(function(t){$O(t,t)})),i}function $O(t,e){e&&(_t(e,"fill")&&(t.textFill=e.fill),_t(e,"stroke")&&(t.textStroke=e.fill),_t(e,"lineWidth")&&(t.textStrokeWidth=e.lineWidth),_t(e,"font")&&(t.font=e.font),_t(e,"fontStyle")&&(t.fontStyle=e.fontStyle),_t(e,"fontWeight")&&(t.fontWeight=e.fontWeight),_t(e,"fontSize")&&(t.fontSize=e.fontSize),_t(e,"fontFamily")&&(t.fontFamily=e.fontFamily),_t(e,"align")&&(t.textAlign=e.align),_t(e,"verticalAlign")&&(t.textVerticalAlign=e.verticalAlign),_t(e,"lineHeight")&&(t.textLineHeight=e.lineHeight),_t(e,"width")&&(t.textWidth=e.width),_t(e,"height")&&(t.textHeight=e.height),_t(e,"backgroundColor")&&(t.textBackgroundColor=e.backgroundColor),_t(e,"padding")&&(t.textPadding=e.padding),_t(e,"borderColor")&&(t.textBorderColor=e.borderColor),_t(e,"borderWidth")&&(t.textBorderWidth=e.borderWidth),_t(e,"borderRadius")&&(t.textBorderRadius=e.borderRadius),_t(e,"shadowColor")&&(t.textBoxShadowColor=e.shadowColor),_t(e,"shadowBlur")&&(t.textBoxShadowBlur=e.shadowBlur),_t(e,"shadowOffsetX")&&(t.textBoxShadowOffsetX=e.shadowOffsetX),_t(e,"shadowOffsetY")&&(t.textBoxShadowOffsetY=e.shadowOffsetY),_t(e,"textShadowColor")&&(t.textShadowColor=e.textShadowColor),_t(e,"textShadowBlur")&&(t.textShadowBlur=e.textShadowBlur),_t(e,"textShadowOffsetX")&&(t.textShadowOffsetX=e.textShadowOffsetX),_t(e,"textShadowOffsetY")&&(t.textShadowOffsetY=e.textShadowOffsetY))}var JO={position:["x","y"],scale:["scaleX","scaleY"],origin:["originX","originY"]},QO=G(JO),tR=(V(yr,(function(t,e){return t[e]=1,t}),{}),yr.join(", "),["","style","shape","extra"]),eR=Oo();function nR(t,e,n,i,r){var o=t+"Animation",a=ph(t,i,r)||{},s=eR(e).userDuring;return a.duration>0&&(a.during=s?W(uR,{el:e,userDuring:s}):null,a.setToFinal=!0,a.scope=t),A(a,n[o]),a}function iR(t,e,n,i){var r=(i=i||{}).dataIndex,o=i.isInit,a=i.clearStyle,s=n.isAnimationEnabled(),l=eR(t),u=e.style;l.userDuring=e.during;var h={},c={};if(function(t,e,n){for(var i=0;i=0)){var c=t.getAnimationStyleProps(),p=c?c.style:null;if(p){!r&&(r=i.style={});var d=G(n);for(u=0;u0&&t.animateFrom(p,d)}else!function(t,e,n,i,r){if(r){var o=nR("update",t,e,i,n);o.duration>0&&t.animateFrom(r,o)}}(t,e,r||0,n,h);rR(t,e),u?t.dirty():t.markRedraw()}function rR(t,e){for(var n=eR(t).leaveToProps,i=0;i=0){!o&&(o=i[t]={});var p=G(a);for(h=0;hi[1]&&i.reverse(),{coordSys:{type:"polar",cx:t.cx,cy:t.cy,r:i[1],r0:i[0]},api:{coord:function(i){var r=e.dataToRadius(i[0]),o=n.dataToAngle(i[1]),a=t.coordToPoint([r,o]);return a.push(r,o*Math.PI/180),a},size:W(UO,t)}}},calendar:function(t){var e=t.getRect(),n=t.getRangeInfo();return{coordSys:{type:"calendar",x:e.x,y:e.y,width:e.width,height:e.height,cellWidth:t.getCellWidth(),cellHeight:t.getCellHeight(),rangeInfo:{start:n.start,end:n.end,weeks:n.weeks,dayCount:n.allDay}},api:{coord:function(e,n){return t.dataToPoint(e,n)}}}}};function CR(t){return t instanceof Is}function DR(t){return t instanceof Sa}var AR=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n}return n(e,t),e.prototype.render=function(t,e,n,i){this._progressiveEls=null;var r=this._data,o=t.getData(),a=this.group,s=RR(t,o,e,n);r||a.removeAll(),o.diff(r).add((function(e){ER(n,null,e,s(e,i),t,a,o)})).remove((function(e){var n=r.getItemGraphicEl(e);n&&oR(n,GO(n).option,t)})).update((function(e,l){var u=r.getItemGraphicEl(l);ER(n,u,e,s(e,i),t,a,o)})).execute();var l=t.get("clip",!0)?SS(t.coordinateSystem,!1,t):null;l?a.setClipPath(l):a.removeClipPath(),this._data=o},e.prototype.incrementalPrepareRender=function(t,e,n){this.group.removeAll(),this._data=null},e.prototype.incrementalRender=function(t,e,n,i,r){var o=e.getData(),a=RR(e,o,n,i),s=this._progressiveEls=[];function l(t){t.isGroup||(t.incremental=!0,t.ensureState("emphasis").hoverLayer=!0)}for(var u=t.start;u=0?e.getStore().get(r,n):void 0}var o=e.get(i.name,n),a=i&&i.ordinalMeta;return a?a.categories[o]:o},styleEmphasis:function(n,i){0;null==i&&(i=s);var r=m(i,vR).getItemStyle(),o=x(i,vR),a=nc(o,null,null,!0,!0);a.text=o.getShallow("show")?ot(t.getFormattedLabel(i,vR),t.getFormattedLabel(i,mR),iS(e,i)):null;var l=ic(o,null,!0);return b(n,r),r=KO(r,a,l),n&&_(r,n),r.legacy=!0,r},visual:function(t,n){if(null==n&&(n=s),_t(BO,t)){var i=e.getItemVisual(n,"style");return i?i[BO[t]]:null}if(_t(FO,t))return e.getItemVisual(n,t)},barLayout:function(t){if("cartesian2d"===o.type){return function(t){var e=[],n=t.axis,i="axis0";if("category"===n.type){for(var r=n.getBandWidth(),o=0;o=c;f--){var g=e.childAt(f);WR(e,g,r)}}(t,c,n,i,r),a>=0?o.replaceAt(c,a):o.add(c),c}function VR(t,e,n){var i,r=GO(t),o=e.type,a=e.shape,s=e.style;return n.isUniversalTransitionEnabled()||null!=o&&o!==r.customGraphicType||"path"===o&&((i=a)&&(_t(i,"pathData")||_t(i,"d")))&&UR(a)!==r.customPathData||"image"===o&&_t(s,"image")&&s.image!==r.customImagePath}function BR(t,e,n){var i=e?FR(t,e):t,r=e?GR(t,i,vR):t.style,o=t.type,a=i?i.textConfig:null,s=t.textContent,l=s?e?FR(s,e):s:null;if(r&&(n.isLegacy||ZO(r,o,!!a,!!l))){n.isLegacy=!0;var u=jO(r,o,!e);!a&&u.textConfig&&(a=u.textConfig),!l&&u.textContent&&(l=u.textContent)}if(!e&&l){var h=l;!h.type&&(h.type="text")}var c=e?n[e]:n.normal;c.cfg=a,c.conOpt=l}function FR(t,e){return e?t?t[e]:null:t}function GR(t,e,n){var i=e&&e.style;return null==i&&n===vR&&t&&(i=t.styleEmphasis),i}function WR(t,e,n){e&&oR(e,GO(t).option,n)}function HR(t,e){var n=t&&t.name;return null!=n?n:"e\0\0"+e}function YR(t,e){var n=this.context,i=null!=t?n.newChildren[t]:null,r=null!=e?n.oldChildren[e]:null;zR(n.api,r,n.dataIndex,i,n.seriesModel,n.group)}function XR(t){var e=this.context,n=e.oldChildren[t];n&&oR(n,GO(n).option,e.seriesModel)}function UR(t){return t&&(t.pathData||t.d)}var ZR=Oo(),jR=T,qR=W,KR=function(){function t(){this._dragging=!1,this.animationThreshold=15}return t.prototype.render=function(t,e,n,i){var r=e.get("value"),o=e.get("status");if(this._axisModel=t,this._axisPointerModel=e,this._api=n,i||this._lastValue!==r||this._lastStatus!==o){this._lastValue=r,this._lastStatus=o;var a=this._group,s=this._handle;if(!o||"hide"===o)return a&&a.hide(),void(s&&s.hide());a&&a.show(),s&&s.show();var l={};this.makeElOption(l,r,t,e,n);var u=l.graphicKey;u!==this._lastGraphicKey&&this.clear(n),this._lastGraphicKey=u;var h=this._moveAnimation=this.determineAnimation(t,e);if(a){var c=H($R,e,h);this.updatePointerEl(a,l,c),this.updateLabelEl(a,l,c,e)}else a=this._group=new zr,this.createPointerEl(a,l,t,e),this.createLabelEl(a,l,t,e),n.getZr().add(a);eN(a,e,!0),this._renderHandle(r)}},t.prototype.remove=function(t){this.clear(t)},t.prototype.dispose=function(t){this.clear(t)},t.prototype.determineAnimation=function(t,e){var n=e.get("animation"),i=t.axis,r="category"===i.type,o=e.get("snap");if(!o&&!r)return!1;if("auto"===n||null==n){var a=this.animationThreshold;if(r&&i.getBandWidth()>a)return!0;if(o){var s=pI(t).seriesDataCount,l=i.getExtent();return Math.abs(l[0]-l[1])/s>a}return!1}return!0===n},t.prototype.makeElOption=function(t,e,n,i,r){},t.prototype.createPointerEl=function(t,e,n,i){var r=e.pointer;if(r){var o=ZR(t).pointerEl=new Kh[r.type](jR(e.pointer));t.add(o)}},t.prototype.createLabelEl=function(t,e,n,i){if(e.label){var r=ZR(t).labelEl=new Fs(jR(e.label));t.add(r),QR(r,i)}},t.prototype.updatePointerEl=function(t,e,n){var i=ZR(t).pointerEl;i&&e.pointer&&(i.setStyle(e.pointer.style),n(i,{shape:e.pointer.shape}))},t.prototype.updateLabelEl=function(t,e,n,i){var r=ZR(t).labelEl;r&&(r.setStyle(e.label.style),n(r,{x:e.label.x,y:e.label.y}),QR(r,i))},t.prototype._renderHandle=function(t){if(!this._dragging&&this.updateHandleTransform){var e,n=this._axisPointerModel,i=this._api.getZr(),r=this._handle,o=n.getModel("handle"),a=n.get("status");if(!o.get("show")||!a||"hide"===a)return r&&i.remove(r),void(this._handle=null);this._handle||(e=!0,r=this._handle=Hh(o.get("icon"),{cursor:"move",draggable:!0,onmousemove:function(t){de(t.event)},onmousedown:qR(this._onHandleDragMove,this,0,0),drift:qR(this._onHandleDragMove,this),ondragend:qR(this._onHandleDragEnd,this)}),i.add(r)),eN(r,n,!1),r.setStyle(o.getItemStyle(null,["color","borderColor","borderWidth","opacity","shadowColor","shadowBlur","shadowOffsetX","shadowOffsetY"]));var s=o.get("size");Y(s)||(s=[s,s]),r.scaleX=s[0]/2,r.scaleY=s[1]/2,Fg(this,"_doDispatchAxisPointer",o.get("throttle")||0,"fixRate"),this._moveHandleToValue(t,e)}},t.prototype._moveHandleToValue=function(t,e){$R(this._axisPointerModel,!e&&this._moveAnimation,this._handle,tN(this.getHandleTransform(t,this._axisModel,this._axisPointerModel)))},t.prototype._onHandleDragMove=function(t,e){var n=this._handle;if(n){this._dragging=!0;var i=this.updateHandleTransform(tN(n),[t,e],this._axisModel,this._axisPointerModel);this._payloadInfo=i,n.stopAnimation(),n.attr(tN(i)),ZR(n).lastProp=null,this._doDispatchAxisPointer()}},t.prototype._doDispatchAxisPointer=function(){if(this._handle){var t=this._payloadInfo,e=this._axisModel;this._api.dispatchAction({type:"updateAxisPointer",x:t.cursorPoint[0],y:t.cursorPoint[1],tooltipOption:t.tooltipOption,axesInfo:[{axisDim:e.axis.dim,axisIndex:e.componentIndex}]})}},t.prototype._onHandleDragEnd=function(){if(this._dragging=!1,this._handle){var t=this._axisPointerModel.get("value");this._moveHandleToValue(t),this._api.dispatchAction({type:"hideTip"})}},t.prototype.clear=function(t){this._lastValue=null,this._lastStatus=null;var e=t.getZr(),n=this._group,i=this._handle;e&&n&&(this._lastGraphicKey=null,n&&e.remove(n),i&&e.remove(i),this._group=null,this._handle=null,this._payloadInfo=null),Gg(this,"_doDispatchAxisPointer")},t.prototype.doClear=function(){},t.prototype.buildLabel=function(t,e,n){return{x:t[n=n||0],y:t[1-n],width:e[n],height:e[1-n]}},t}();function $R(t,e,n,i){JR(ZR(n).lastProp,i)||(ZR(n).lastProp=i,e?fh(n,i,t):(n.stopAnimation(),n.attr(i)))}function JR(t,e){if(q(t)&&q(e)){var n=!0;return E(e,(function(e,i){n=n&&JR(t[i],e)})),!!n}return t===e}function QR(t,e){t[e.get(["label","show"])?"show":"hide"]()}function tN(t){return{x:t.x||0,y:t.y||0,rotation:t.rotation||0}}function eN(t,e,n){var i=e.get("z"),r=e.get("zlevel");t&&t.traverse((function(t){"group"!==t.type&&(null!=i&&(t.z=i),null!=r&&(t.zlevel=r),t.silent=n)}))}function nN(t){var e,n=t.get("type"),i=t.getModel(n+"Style");return"line"===n?(e=i.getLineStyle()).fill=null:"shadow"===n&&((e=i.getAreaStyle()).stroke=null),e}function iN(t,e,n,i,r){var o=rN(n.get("value"),e.axis,e.ecModel,n.get("seriesDataIndices"),{precision:n.get(["label","precision"]),formatter:n.get(["label","formatter"])}),a=n.getModel("label"),s=fp(a.get("padding")||0),l=a.getFont(),u=br(o,l),h=r.position,c=u.width+s[1]+s[3],p=u.height+s[0]+s[2],d=r.align;"right"===d&&(h[0]-=c),"center"===d&&(h[0]-=c/2);var f=r.verticalAlign;"bottom"===f&&(h[1]-=p),"middle"===f&&(h[1]-=p/2),function(t,e,n,i){var r=i.getWidth(),o=i.getHeight();t[0]=Math.min(t[0]+e,r)-e,t[1]=Math.min(t[1]+n,o)-n,t[0]=Math.max(t[0],0),t[1]=Math.max(t[1],0)}(h,c,p,i);var g=a.get("backgroundColor");g&&"auto"!==g||(g=e.get(["axisLine","lineStyle","color"])),t.label={x:h[0],y:h[1],style:nc(a,{text:o,font:l,fill:a.getTextColor(),padding:s,backgroundColor:g}),z2:10}}function rN(t,e,n,i,r){t=e.scale.parse(t);var o=e.scale.getLabel({value:t},{precision:r.precision}),a=r.formatter;if(a){var s={value:__(e,{value:t}),axisDimension:e.dim,axisIndex:e.index,seriesData:[]};E(i,(function(t){var e=n.getSeriesByIndex(t.seriesIndex),i=t.dataIndexInside,r=e&&e.getDataParams(i);r&&s.seriesData.push(r)})),U(a)?o=a.replace("{value}",o):X(a)&&(o=a(s))}return o}function oN(t,e,n){var i=[1,0,0,1,0,0];return Se(i,i,n.rotation),we(i,i,n.position),zh([t.dataToCoord(e),(n.labelOffset||0)+(n.labelDirection||1)*(n.labelMargin||0)],i)}function aN(t,e,n,i,r,o){var a=iI.innerTextLayout(n.rotation,0,n.labelDirection);n.labelMargin=r.get(["label","margin"]),iN(e,i,r,o,{position:oN(i.axis,t,n),align:a.textAlign,verticalAlign:a.textVerticalAlign})}function sN(t,e,n){return{x1:t[n=n||0],y1:t[1-n],x2:e[n],y2:e[1-n]}}function lN(t,e,n){return{x:t[n=n||0],y:t[1-n],width:e[n],height:e[1-n]}}function uN(t,e,n,i,r,o){return{cx:t,cy:e,r0:n,r:i,startAngle:r,endAngle:o,clockwise:!0}}var hN=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return n(e,t),e.prototype.makeElOption=function(t,e,n,i,r){var o=n.axis,a=o.grid,s=i.get("type"),l=cN(a,o).getOtherAxis(o).getGlobalExtent(),u=o.toGlobalCoord(o.dataToCoord(e,!0));if(s&&"none"!==s){var h=nN(i),c=pN[s](o,u,l);c.style=h,t.graphicKey=c.type,t.pointer=c}aN(e,t,ZM(a.model,n),n,i,r)},e.prototype.getHandleTransform=function(t,e,n){var i=ZM(e.axis.grid.model,e,{labelInside:!1});i.labelMargin=n.get(["handle","margin"]);var r=oN(e.axis,t,i);return{x:r[0],y:r[1],rotation:i.rotation+(i.labelDirection<0?Math.PI:0)}},e.prototype.updateHandleTransform=function(t,e,n,i){var r=n.axis,o=r.grid,a=r.getGlobalExtent(!0),s=cN(o,r).getOtherAxis(r).getGlobalExtent(),l="x"===r.dim?0:1,u=[t.x,t.y];u[l]+=e[l],u[l]=Math.min(a[1],u[l]),u[l]=Math.max(a[0],u[l]);var h=(s[1]+s[0])/2,c=[h,h];c[l]=u[l];return{x:u[0],y:u[1],rotation:t.rotation,cursorPoint:c,tooltipOption:[{verticalAlign:"middle"},{align:"center"}][l]}},e}(KR);function cN(t,e){var n={};return n[e.dim+"AxisIndex"]=e.index,t.getCartesian(n)}var pN={line:function(t,e,n){return{type:"Line",subPixelOptimize:!0,shape:sN([e,n[0]],[e,n[1]],dN(t))}},shadow:function(t,e,n){var i=Math.max(1,t.getBandWidth()),r=n[1]-n[0];return{type:"Rect",shape:lN([e-i/2,n[0]],[i,r],dN(t))}}};function dN(t){return"x"===t.dim?0:1}var fN=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n}return n(e,t),e.type="axisPointer",e.defaultOption={show:"auto",z:50,type:"line",snap:!1,triggerTooltip:!0,triggerEmphasis:!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}},e}(Rp),gN=Oo(),yN=E;function vN(t,e,n){if(!r.node){var i=e.getZr();gN(i).records||(gN(i).records={}),function(t,e){if(gN(t).initialized)return;function n(n,i){t.on(n,(function(n){var r=function(t){var e={showTip:[],hideTip:[]},n=function(i){var r=e[i.type];r?r.push(i):(i.dispatchAction=n,t.dispatchAction(i))};return{dispatchAction:n,pendings:e}}(e);yN(gN(t).records,(function(t){t&&i(t,n,r.dispatchAction)})),function(t,e){var n,i=t.showTip.length,r=t.hideTip.length;i?n=t.showTip[i-1]:r&&(n=t.hideTip[r-1]);n&&(n.dispatchAction=null,e.dispatchAction(n))}(r.pendings,e)}))}gN(t).initialized=!0,n("click",H(xN,"click")),n("mousemove",H(xN,"mousemove")),n("globalout",mN)}(i,e),(gN(i).records[t]||(gN(i).records[t]={})).handler=n}}function mN(t,e,n){t.handler("leave",null,n)}function xN(t,e,n,i){e.handler(t,n,i)}function _N(t,e){if(!r.node){var n=e.getZr();(gN(n).records||{})[t]&&(gN(n).records[t]=null)}}var bN=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n}return n(e,t),e.prototype.render=function(t,e,n){var i=e.getComponent("tooltip"),r=t.get("triggerOn")||i&&i.get("triggerOn")||"mousemove|click";vN("axisPointer",n,(function(t,e,n){"none"!==r&&("leave"===t||r.indexOf(t)>=0)&&n({type:"updateAxisPointer",currTrigger:t,x:e&&e.offsetX,y:e&&e.offsetY})}))},e.prototype.remove=function(t,e){_N("axisPointer",e)},e.prototype.dispose=function(t,e){_N("axisPointer",e)},e.type="axisPointer",e}(Tg);function wN(t,e){var n,i=[],r=t.seriesIndex;if(null==r||!(n=e.getSeriesByIndex(r)))return{point:[]};var o=n.getData(),a=Po(o,t);if(null==a||a<0||Y(a))return{point:[]};var s=o.getItemGraphicEl(a),l=n.coordinateSystem;if(n.getTooltipPosition)i=n.getTooltipPosition(a)||[];else if(l&&l.dataToPoint)if(t.isStacked){var u=l.getBaseAxis(),h=l.getOtherAxis(u).dim,c=u.dim,p="x"===h||"radius"===h?1:0,d=o.mapDimension(c),f=[];f[p]=o.get(d,a),f[1-p]=o.get(o.getCalculationInfo("stackResultDimension"),a),i=l.dataToPoint(f)||[]}else i=l.dataToPoint(o.getValues(z(l.dimensions,(function(t){return o.mapDimension(t)})),a))||[];else if(s){var g=s.getBoundingRect().clone();g.applyTransform(s.transform),i=[g.x+g.width/2,g.y+g.height/2]}return{point:i,el:s}}var SN=Oo();function MN(t,e,n){var i=t.currTrigger,r=[t.x,t.y],o=t,a=t.dispatchAction||W(n.dispatchAction,n),s=e.getComponent("axisPointer").coordSysAxesInfo;if(s){AN(r)&&(r=wN({seriesIndex:o.seriesIndex,dataIndex:o.dataIndex},e).point);var l=AN(r),u=o.axesInfo,h=s.axesInfo,c="leave"===i||AN(r),p={},d={},f={list:[],map:{}},g={showPointer:H(TN,d),showTooltip:H(CN,f)};E(s.coordSysMap,(function(t,e){var n=l||t.containPoint(r);E(s.coordSysAxesInfo[e],(function(t,e){var i=t.axis,o=function(t,e){for(var n=0;n<(t||[]).length;n++){var i=t[n];if(e.axis.dim===i.axisDim&&e.axis.model.componentIndex===i.axisIndex)return i}}(u,t);if(!c&&n&&(!u||o)){var a=o&&o.value;null!=a||l||(a=i.pointToData(r)),null!=a&&IN(t,a,g,!1,p)}}))}));var y={};return E(h,(function(t,e){var n=t.linkGroup;n&&!d[e]&&E(n.axesInfo,(function(e,i){var r=d[i];if(e!==t&&r){var o=r.value;n.mapper&&(o=t.axis.scale.parse(n.mapper(o,DN(e),DN(t)))),y[t.key]=o}}))})),E(y,(function(t,e){IN(h[e],t,g,!0,p)})),function(t,e,n){var i=n.axesInfo=[];E(e,(function(e,n){var r=e.axisPointerModel.option,o=t[n];o?(!e.useHandle&&(r.status="show"),r.value=o.value,r.seriesDataIndices=(o.payloadBatch||[]).slice()):!e.useHandle&&(r.status="hide"),"show"===r.status&&i.push({axisDim:e.axis.dim,axisIndex:e.axis.model.componentIndex,value:r.value})}))}(d,h,p),function(t,e,n,i){if(AN(e)||!t.list.length)return void i({type:"hideTip"});var r=((t.list[0].dataByAxis[0]||{}).seriesDataIndices||[])[0]||{};i({type:"showTip",escapeConnect:!0,x:e[0],y:e[1],tooltipOption:n.tooltipOption,position:n.position,dataIndexInside:r.dataIndexInside,dataIndex:r.dataIndex,seriesIndex:r.seriesIndex,dataByCoordSys:t.list})}(f,r,t,a),function(t,e,n){var i=n.getZr(),r="axisPointerLastHighlights",o=SN(i)[r]||{},a=SN(i)[r]={};E(t,(function(t,e){var n=t.axisPointerModel.option;"show"===n.status&&t.triggerEmphasis&&E(n.seriesDataIndices,(function(t){var e=t.seriesIndex+" | "+t.dataIndex;a[e]=t}))}));var s=[],l=[];E(o,(function(t,e){!a[e]&&l.push(t)})),E(a,(function(t,e){!o[e]&&s.push(t)})),l.length&&n.dispatchAction({type:"downplay",escapeConnect:!0,notBlur:!0,batch:l}),s.length&&n.dispatchAction({type:"highlight",escapeConnect:!0,notBlur:!0,batch:s})}(h,0,n),p}}function IN(t,e,n,i,r){var o=t.axis;if(!o.scale.isBlank()&&o.containData(e))if(t.involveSeries){var a=function(t,e){var n=e.axis,i=n.dim,r=t,o=[],a=Number.MAX_VALUE,s=-1;return E(e.seriesModels,(function(e,l){var u,h,c=e.getData().mapDimensionsAll(i);if(e.getAxisTooltipData){var p=e.getAxisTooltipData(c,t,n);h=p.dataIndices,u=p.nestestValue}else{if(!(h=e.getData().indicesOfNearest(c[0],t,"category"===n.type?.5:null)).length)return;u=e.getData().get(c[0],h[0])}if(null!=u&&isFinite(u)){var d=t-u,f=Math.abs(d);f<=a&&((f=0&&s<0)&&(a=f,s=d,r=u,o.length=0),E(h,(function(t){o.push({seriesIndex:e.seriesIndex,dataIndexInside:t,dataIndex:e.getData().getRawIndex(t)})})))}})),{payloadBatch:o,snapToValue:r}}(e,t),s=a.payloadBatch,l=a.snapToValue;s[0]&&null==r.seriesIndex&&A(r,s[0]),!i&&t.snap&&o.containData(l)&&null!=l&&(e=l),n.showPointer(t,e,s),n.showTooltip(t,a,l)}else n.showPointer(t,e)}function TN(t,e,n,i){t[e.key]={value:n,payloadBatch:i}}function CN(t,e,n,i){var r=n.payloadBatch,o=e.axis,a=o.model,s=e.axisPointerModel;if(e.triggerTooltip&&r.length){var l=e.coordSys.model,u=fI(l),h=t.map[u];h||(h=t.map[u]={coordSysId:l.id,coordSysIndex:l.componentIndex,coordSysType:l.type,coordSysMainType:l.mainType,dataByAxis:[]},t.list.push(h)),h.dataByAxis.push({axisDim:o.dim,axisIndex:a.componentIndex,axisType:a.type,axisId:a.id,value:i,valueLabelOpt:{precision:s.get(["label","precision"]),formatter:s.get(["label","formatter"])},seriesDataIndices:r.slice()})}}function DN(t){var e=t.axis.model,n={},i=n.axisDim=t.axis.dim;return n.axisIndex=n[i+"AxisIndex"]=e.componentIndex,n.axisName=n[i+"AxisName"]=e.name,n.axisId=n[i+"AxisId"]=e.id,n}function AN(t){return!t||null==t[0]||isNaN(t[0])||null==t[1]||isNaN(t[1])}function kN(t){yI.registerAxisPointerClass("CartesianAxisPointer",hN),t.registerComponentModel(fN),t.registerComponentView(bN),t.registerPreprocessor((function(t){if(t){(!t.axisPointer||0===t.axisPointer.length)&&(t.axisPointer={});var e=t.axisPointer.link;e&&!Y(e)&&(t.axisPointer.link=[e])}})),t.registerProcessor(t.PRIORITY.PROCESSOR.STATISTIC,(function(t,e){t.getComponent("axisPointer").coordSysAxesInfo=uI(t,e)})),t.registerAction({type:"updateAxisPointer",event:"updateAxisPointer",update:":updateAxisPointer"},MN)}var LN=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return n(e,t),e.prototype.makeElOption=function(t,e,n,i,r){var o=n.axis;"angle"===o.dim&&(this.animationThreshold=Math.PI/18);var a=o.polar,s=a.getOtherAxis(o).getExtent(),l=o.dataToCoord(e),u=i.get("type");if(u&&"none"!==u){var h=nN(i),c=PN[u](o,a,l,s);c.style=h,t.graphicKey=c.type,t.pointer=c}var p=function(t,e,n,i,r){var o=e.axis,a=o.dataToCoord(t),s=i.getAngleAxis().getExtent()[0];s=s/180*Math.PI;var l,u,h,c=i.getRadiusAxis().getExtent();if("radius"===o.dim){var p=[1,0,0,1,0,0];Se(p,p,s),we(p,p,[i.cx,i.cy]),l=zh([a,-r],p);var d=e.getModel("axisLabel").get("rotate")||0,f=iI.innerTextLayout(s,d*Math.PI/180,-1);u=f.textAlign,h=f.textVerticalAlign}else{var g=c[1];l=i.coordToPoint([g+r,a]);var y=i.cx,v=i.cy;u=Math.abs(l[0]-y)/g<.3?"center":l[0]>y?"left":"right",h=Math.abs(l[1]-v)/g<.3?"middle":l[1]>v?"top":"bottom"}return{position:l,align:u,verticalAlign:h}}(e,n,0,a,i.get(["label","margin"]));iN(t,n,i,r,p)},e}(KR);var PN={line:function(t,e,n,i){return"angle"===t.dim?{type:"Line",shape:sN(e.coordToPoint([i[0],n]),e.coordToPoint([i[1],n]))}:{type:"Circle",shape:{cx:e.cx,cy:e.cy,r:n}}},shadow:function(t,e,n,i){var r=Math.max(1,t.getBandWidth()),o=Math.PI/180;return"angle"===t.dim?{type:"Sector",shape:uN(e.cx,e.cy,i[0],i[1],(-n-r/2)*o,(r/2-n)*o)}:{type:"Sector",shape:uN(e.cx,e.cy,n-r/2,n+r/2,0,2*Math.PI)}}},ON=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n}return n(e,t),e.prototype.findAxisModel=function(t){var e;return this.ecModel.eachComponent(t,(function(t){t.getCoordSysModel()===this&&(e=t)}),this),e},e.type="polar",e.dependencies=["radiusAxis","angleAxis"],e.defaultOption={z:0,center:["50%","50%"],radius:"80%"},e}(Rp),RN=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return n(e,t),e.prototype.getCoordSysModel=function(){return this.getReferringComponents("polar",zo).models[0]},e.type="polarAxis",e}(Rp);R(RN,I_);var NN=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n}return n(e,t),e.type="angleAxis",e}(RN),EN=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n}return n(e,t),e.type="radiusAxis",e}(RN),zN=function(t){function e(e,n){return t.call(this,"radius",e,n)||this}return n(e,t),e.prototype.pointToData=function(t,e){return this.polar.pointToData(t,e)["radius"===this.dim?0:1]},e}(nb);zN.prototype.dataToRadius=nb.prototype.dataToCoord,zN.prototype.radiusToData=nb.prototype.coordToData;var VN=Oo(),BN=function(t){function e(e,n){return t.call(this,"angle",e,n||[0,360])||this}return n(e,t),e.prototype.pointToData=function(t,e){return this.polar.pointToData(t,e)["radius"===this.dim?0:1]},e.prototype.calculateCategoryInterval=function(){var t=this,e=t.getLabelModel(),n=t.scale,i=n.getExtent(),r=n.count();if(i[1]-i[0]<1)return 0;var o=i[0],a=t.dataToCoord(o+1)-t.dataToCoord(o),s=Math.abs(a),l=br(null==o?"":o+"",e.getFont(),"center","top"),u=Math.max(l.height,7)/s;isNaN(u)&&(u=1/0);var h=Math.max(0,Math.floor(u)),c=VN(t.model),p=c.lastAutoInterval,d=c.lastTickCount;return null!=p&&null!=d&&Math.abs(p-h)<=1&&Math.abs(d-r)<=1&&p>h?h=p:(c.lastTickCount=r,c.lastAutoInterval=h),h},e}(nb);BN.prototype.dataToAngle=nb.prototype.dataToCoord,BN.prototype.angleToData=nb.prototype.coordToData;var FN=["radius","angle"],GN=function(){function t(t){this.dimensions=FN,this.type="polar",this.cx=0,this.cy=0,this._radiusAxis=new zN,this._angleAxis=new BN,this.axisPointerEnabled=!0,this.name=t||"",this._radiusAxis.polar=this._angleAxis.polar=this}return t.prototype.containPoint=function(t){var e=this.pointToCoord(t);return this._radiusAxis.contain(e[0])&&this._angleAxis.contain(e[1])},t.prototype.containData=function(t){return this._radiusAxis.containData(t[0])&&this._angleAxis.containData(t[1])},t.prototype.getAxis=function(t){return this["_"+t+"Axis"]},t.prototype.getAxes=function(){return[this._radiusAxis,this._angleAxis]},t.prototype.getAxesByScale=function(t){var e=[],n=this._angleAxis,i=this._radiusAxis;return n.scale.type===t&&e.push(n),i.scale.type===t&&e.push(i),e},t.prototype.getAngleAxis=function(){return this._angleAxis},t.prototype.getRadiusAxis=function(){return this._radiusAxis},t.prototype.getOtherAxis=function(t){var e=this._angleAxis;return t===e?this._radiusAxis:e},t.prototype.getBaseAxis=function(){return this.getAxesByScale("ordinal")[0]||this.getAxesByScale("time")[0]||this.getAngleAxis()},t.prototype.getTooltipAxes=function(t){var e=null!=t&&"auto"!==t?this.getAxis(t):this.getBaseAxis();return{baseAxes:[e],otherAxes:[this.getOtherAxis(e)]}},t.prototype.dataToPoint=function(t,e){return this.coordToPoint([this._radiusAxis.dataToRadius(t[0],e),this._angleAxis.dataToAngle(t[1],e)])},t.prototype.pointToData=function(t,e){var n=this.pointToCoord(t);return[this._radiusAxis.radiusToData(n[0],e),this._angleAxis.angleToData(n[1],e)]},t.prototype.pointToCoord=function(t){var e=t[0]-this.cx,n=t[1]-this.cy,i=this.getAngleAxis(),r=i.getExtent(),o=Math.min(r[0],r[1]),a=Math.max(r[0],r[1]);i.inverse?o=a-360:a=o+360;var s=Math.sqrt(e*e+n*n);e/=s,n/=s;for(var l=Math.atan2(-n,e)/Math.PI*180,u=la;)l+=360*u;return[s,l]},t.prototype.coordToPoint=function(t){var e=t[0],n=t[1]/180*Math.PI;return[Math.cos(n)*e+this.cx,-Math.sin(n)*e+this.cy]},t.prototype.getArea=function(){var t=this.getAngleAxis(),e=this.getRadiusAxis().getExtent().slice();e[0]>e[1]&&e.reverse();var n=t.getExtent(),i=Math.PI/180;return{cx:this.cx,cy:this.cy,r0:e[0],r:e[1],startAngle:-n[0]*i,endAngle:-n[1]*i,clockwise:t.inverse,contain:function(t,e){var n=t-this.cx,i=e-this.cy,r=n*n+i*i-1e-4,o=this.r,a=this.r0;return r<=o*o&&r>=a*a}}},t.prototype.convertToPixel=function(t,e,n){return WN(e)===this?this.dataToPoint(n):null},t.prototype.convertFromPixel=function(t,e,n){return WN(e)===this?this.pointToData(n):null},t}();function WN(t){var e=t.seriesModel,n=t.polarModel;return n&&n.coordinateSystem||e&&e.coordinateSystem}function HN(t,e){var n=this,i=n.getAngleAxis(),r=n.getRadiusAxis();if(i.scale.setExtent(1/0,-1/0),r.scale.setExtent(1/0,-1/0),t.eachSeries((function(t){if(t.coordinateSystem===n){var e=t.getData();E(M_(e,"radius"),(function(t){r.scale.unionExtentFromData(e,t)})),E(M_(e,"angle"),(function(t){i.scale.unionExtentFromData(e,t)}))}})),v_(i.scale,i.model),v_(r.scale,r.model),"category"===i.type&&!i.onBand){var o=i.getExtent(),a=360/i.scale.count();i.inverse?o[1]+=a:o[1]-=a,i.setExtent(o[0],o[1])}}function YN(t,e){if(t.type=e.get("type"),t.scale=m_(e),t.onBand=e.get("boundaryGap")&&"category"===t.type,t.inverse=e.get("inverse"),function(t){return"angleAxis"===t.mainType}(e)){t.inverse=t.inverse!==e.get("clockwise");var n=e.get("startAngle");t.setExtent(n,n+(t.inverse?-360:360))}e.axis=t,t.model=e}var XN={dimensions:FN,create:function(t,e){var n=[];return t.eachComponent("polar",(function(t,i){var r=new GN(i+"");r.update=HN;var o=r.getRadiusAxis(),a=r.getAngleAxis(),s=t.findAxisModel("radiusAxis"),l=t.findAxisModel("angleAxis");YN(o,s),YN(a,l),function(t,e,n){var i=e.get("center"),r=n.getWidth(),o=n.getHeight();t.cx=Ur(i[0],r),t.cy=Ur(i[1],o);var a=t.getRadiusAxis(),s=Math.min(r,o)/2,l=e.get("radius");null==l?l=[0,"100%"]:Y(l)||(l=[0,l]);var u=[Ur(l[0],s),Ur(l[1],s)];a.inverse?a.setExtent(u[1],u[0]):a.setExtent(u[0],u[1])}(r,t,e),n.push(r),t.coordinateSystem=r,r.model=t})),t.eachSeries((function(t){if("polar"===t.get("coordinateSystem")){var e=t.getReferringComponents("polar",zo).models[0];0,t.coordinateSystem=e.coordinateSystem}})),n}},UN=["axisLine","axisLabel","axisTick","minorTick","splitLine","minorSplitLine","splitArea"];function ZN(t,e,n){e[1]>e[0]&&(e=e.slice().reverse());var i=t.coordToPoint([e[0],n]),r=t.coordToPoint([e[1],n]);return{x1:i[0],y1:i[1],x2:r[0],y2:r[1]}}function jN(t){return t.getRadiusAxis().inverse?0:1}function qN(t){var e=t[0],n=t[t.length-1];e&&n&&Math.abs(Math.abs(e.coord-n.coord)-360)<1e-4&&t.pop()}var KN=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n.axisPointerClass="PolarAxisPointer",n}return n(e,t),e.prototype.render=function(t,e){if(this.group.removeAll(),t.get("show")){var n=t.axis,i=n.polar,r=i.getRadiusAxis().getExtent(),o=n.getTicksCoords(),a=n.getMinorTicksCoords(),s=z(n.getViewLabels(),(function(t){t=T(t);var e=n.scale,i="ordinal"===e.type?e.getRawOrdinalNumber(t.tickValue):t.tickValue;return t.coord=n.dataToCoord(i),t}));qN(s),qN(o),E(UN,(function(e){!t.get([e,"show"])||n.scale.isBlank()&&"axisLine"!==e||$N[e](this.group,t,i,o,a,r,s)}),this)}},e.type="angleAxis",e}(yI),$N={axisLine:function(t,e,n,i,r,o){var a,s=e.getModel(["axisLine","lineStyle"]),l=jN(n),u=l?0:1;(a=0===o[u]?new _u({shape:{cx:n.cx,cy:n.cy,r:o[l]},style:s.getLineStyle(),z2:1,silent:!0}):new Bu({shape:{cx:n.cx,cy:n.cy,r:o[l],r0:o[u]},style:s.getLineStyle(),z2:1,silent:!0})).style.fill=null,t.add(a)},axisTick:function(t,e,n,i,r,o){var a=e.getModel("axisTick"),s=(a.get("inside")?-1:1)*a.get("length"),l=o[jN(n)],u=z(i,(function(t){return new Zu({shape:ZN(n,[l,l+s],t.coord)})}));t.add(Ph(u,{style:k(a.getModel("lineStyle").getLineStyle(),{stroke:e.get(["axisLine","lineStyle","color"])})}))},minorTick:function(t,e,n,i,r,o){if(r.length){for(var a=e.getModel("axisTick"),s=e.getModel("minorTick"),l=(a.get("inside")?-1:1)*s.get("length"),u=o[jN(n)],h=[],c=0;cf?"left":"right",v=Math.abs(d[1]-g)/p<.3?"middle":d[1]>g?"top":"bottom";if(s&&s[c]){var m=s[c];q(m)&&m.textStyle&&(a=new Mc(m.textStyle,l,l.ecModel))}var x=new Fs({silent:iI.isLabelSilent(e),style:nc(a,{x:d[0],y:d[1],fill:a.getTextColor()||e.get(["axisLine","lineStyle","color"]),text:i.formattedLabel,align:y,verticalAlign:v})});if(t.add(x),h){var _=iI.makeAxisEventDataBase(e);_.targetType="axisLabel",_.value=i.rawLabel,Qs(x).eventData=_}}),this)},splitLine:function(t,e,n,i,r,o){var a=e.getModel("splitLine").getModel("lineStyle"),s=a.get("color"),l=0;s=s instanceof Array?s:[s];for(var u=[],h=0;h=0?"p":"n",T=_;m&&(i[s][M]||(i[s][M]={p:_,n:_}),T=i[s][M][I]);var C=void 0,D=void 0,A=void 0,k=void 0;if("radius"===c.dim){var L=c.dataToCoord(S)-_,P=o.dataToCoord(M);Math.abs(L)=k})}}}))}var oE={startAngle:90,clockwise:!0,splitNumber:12,axisLabel:{rotate:0}},aE={splitNumber:5},sE=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n}return n(e,t),e.type="polar",e}(Tg);function lE(t,e){e=e||{};var n=t.coordinateSystem,i=t.axis,r={},o=i.position,a=i.orient,s=n.getRect(),l=[s.x,s.x+s.width,s.y,s.y+s.height],u={horizontal:{top:l[2],bottom:l[3]},vertical:{left:l[0],right:l[1]}};r.position=["vertical"===a?u.vertical[o]:l[0],"horizontal"===a?u.horizontal[o]:l[3]];r.rotation=Math.PI/2*{horizontal:0,vertical:1}[a];r.labelDirection=r.tickDirection=r.nameDirection={top:-1,bottom:1,right:1,left:-1}[o],t.get(["axisTick","inside"])&&(r.tickDirection=-r.tickDirection),it(e.labelInside,t.get(["axisLabel","inside"]))&&(r.labelDirection=-r.labelDirection);var h=e.rotate;return null==h&&(h=t.get(["axisLabel","rotate"])),r.labelRotation="top"===o?-h:h,r.z2=1,r}var uE=["axisLine","axisTickLabel","axisName"],hE=["splitArea","splitLine"],cE=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n.axisPointerClass="SingleAxisPointer",n}return n(e,t),e.prototype.render=function(e,n,i,r){var o=this.group;o.removeAll();var a=this._axisGroup;this._axisGroup=new zr;var s=lE(e),l=new iI(e,s);E(uE,l.add,l),o.add(this._axisGroup),o.add(l.getGroup()),E(hE,(function(t){e.get([t,"show"])&&pE[t](this,this.group,this._axisGroup,e)}),this),Fh(a,this._axisGroup,e),t.prototype.render.call(this,e,n,i,r)},e.prototype.remove=function(){xI(this)},e.type="singleAxis",e}(yI),pE={splitLine:function(t,e,n,i){var r=i.axis;if(!r.scale.isBlank()){var o=i.getModel("splitLine"),a=o.getModel("lineStyle"),s=a.get("color");s=s instanceof Array?s:[s];for(var l=a.get("width"),u=i.coordinateSystem.getRect(),h=r.isHorizontal(),c=[],p=0,d=r.getTicksCoords({tickModel:o}),f=[],g=[],y=0;y=e.y&&t[1]<=e.y+e.height:n.contain(n.toLocalCoord(t[1]))&&t[0]>=e.y&&t[0]<=e.y+e.height},t.prototype.pointToData=function(t){var e=this.getAxis();return[e.coordToData(e.toLocalCoord(t["horizontal"===e.orient?0:1]))]},t.prototype.dataToPoint=function(t){var e=this.getAxis(),n=this.getRect(),i=[],r="horizontal"===e.orient?0:1;return t instanceof Array&&(t=t[0]),i[r]=e.toGlobalCoord(e.dataToCoord(+t)),i[1-r]=0===r?n.y+n.height/2:n.x+n.width/2,i},t.prototype.convertToPixel=function(t,e,n){return vE(e)===this?this.dataToPoint(n):null},t.prototype.convertFromPixel=function(t,e,n){return vE(e)===this?this.pointToData(n):null},t}();function vE(t){var e=t.seriesModel,n=t.singleAxisModel;return n&&n.coordinateSystem||e&&e.coordinateSystem}var mE={create:function(t,e){var n=[];return t.eachComponent("singleAxis",(function(i,r){var o=new yE(i,t,e);o.name="single_"+r,o.resize(i,e),i.coordinateSystem=o,n.push(o)})),t.eachSeries((function(t){if("singleAxis"===t.get("coordinateSystem")){var e=t.getReferringComponents("singleAxis",zo).models[0];t.coordinateSystem=e&&e.coordinateSystem}})),n},dimensions:gE},xE=["x","y"],_E=["width","height"],bE=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return n(e,t),e.prototype.makeElOption=function(t,e,n,i,r){var o=n.axis,a=o.coordinateSystem,s=ME(a,1-SE(o)),l=a.dataToPoint(e)[0],u=i.get("type");if(u&&"none"!==u){var h=nN(i),c=wE[u](o,l,s);c.style=h,t.graphicKey=c.type,t.pointer=c}aN(e,t,lE(n),n,i,r)},e.prototype.getHandleTransform=function(t,e,n){var i=lE(e,{labelInside:!1});i.labelMargin=n.get(["handle","margin"]);var r=oN(e.axis,t,i);return{x:r[0],y:r[1],rotation:i.rotation+(i.labelDirection<0?Math.PI:0)}},e.prototype.updateHandleTransform=function(t,e,n,i){var r=n.axis,o=r.coordinateSystem,a=SE(r),s=ME(o,a),l=[t.x,t.y];l[a]+=e[a],l[a]=Math.min(s[1],l[a]),l[a]=Math.max(s[0],l[a]);var u=ME(o,1-a),h=(u[1]+u[0])/2,c=[h,h];return c[a]=l[a],{x:l[0],y:l[1],rotation:t.rotation,cursorPoint:c,tooltipOption:{verticalAlign:"middle"}}},e}(KR),wE={line:function(t,e,n){return{type:"Line",subPixelOptimize:!0,shape:sN([e,n[0]],[e,n[1]],SE(t))}},shadow:function(t,e,n){var i=t.getBandWidth(),r=n[1]-n[0];return{type:"Rect",shape:lN([e-i/2,n[0]],[i,r],SE(t))}}};function SE(t){return t.isHorizontal()?0:1}function ME(t,e){var n=t.getRect();return[n[xE[e]],n[xE[e]]+n[_E[e]]]}var IE=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n}return n(e,t),e.type="single",e}(Tg);var TE=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n}return n(e,t),e.prototype.init=function(e,n,i){var r=Lp(e);t.prototype.init.apply(this,arguments),CE(e,r)},e.prototype.mergeOption=function(e){t.prototype.mergeOption.apply(this,arguments),CE(this.option,e)},e.prototype.getCellSize=function(){return this.option.cellSize},e.type="calendar",e.defaultOption={z:2,left:80,top:60,cellSize:20,orient:"horizontal",splitLine:{show:!0,lineStyle:{color:"#000",width:1,type:"solid"}},itemStyle:{color:"#fff",borderWidth:1,borderColor:"#ccc"},dayLabel:{show:!0,firstDay:0,position:"start",margin:"50%",color:"#000"},monthLabel:{show:!0,position:"start",margin:5,align:"center",formatter:null,color:"#000"},yearLabel:{show:!0,position:null,margin:30,formatter:null,color:"#ccc",fontFamily:"sans-serif",fontWeight:"bolder",fontSize:20}},e}(Rp);function CE(t,e){var n,i=t.cellSize;1===(n=Y(i)?i:t.cellSize=[i,i]).length&&(n[1]=n[0]);var r=z([0,1],(function(t){return function(t,e){return null!=t[Mp[e][0]]||null!=t[Mp[e][1]]&&null!=t[Mp[e][2]]}(e,t)&&(n[t]="auto"),null!=n[t]&&"auto"!==n[t]}));kp(t,e,{type:"box",ignoreSize:r})}var DE=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n}return n(e,t),e.prototype.render=function(t,e,n){var i=this.group;i.removeAll();var r=t.coordinateSystem,o=r.getRangeInfo(),a=r.getOrient(),s=e.getLocaleModel();this._renderDayRect(t,o,i),this._renderLines(t,o,a,i),this._renderYearText(t,o,a,i),this._renderMonthText(t,s,a,i),this._renderWeekText(t,s,o,a,i)},e.prototype._renderDayRect=function(t,e,n){for(var i=t.coordinateSystem,r=t.getModel("itemStyle").getItemStyle(),o=i.getCellWidth(),a=i.getCellHeight(),s=e.start.time;s<=e.end.time;s=i.getNextNDay(s,1).time){var l=i.dataToRect([s],!1).tl,u=new zs({shape:{x:l[0],y:l[1],width:o,height:a},cursor:"default",style:r});n.add(u)}},e.prototype._renderLines=function(t,e,n,i){var r=this,o=t.coordinateSystem,a=t.getModel(["splitLine","lineStyle"]).getLineStyle(),s=t.get(["splitLine","show"]),l=a.lineWidth;this._tlpoints=[],this._blpoints=[],this._firstDayOfMonth=[],this._firstDayPoints=[];for(var u=e.start,h=0;u.time<=e.end.time;h++){p(u.formatedDate),0===h&&(u=o.getDateInfo(e.start.y+"-"+e.start.m));var c=u.date;c.setMonth(c.getMonth()+1),u=o.getDateInfo(c)}function p(e){r._firstDayOfMonth.push(o.getDateInfo(e)),r._firstDayPoints.push(o.dataToRect([e],!1).tl);var l=r._getLinePointsOfOneWeek(t,e,n);r._tlpoints.push(l[0]),r._blpoints.push(l[l.length-1]),s&&r._drawSplitline(l,a,i)}p(o.getNextNDay(e.end.time,1).formatedDate),s&&this._drawSplitline(r._getEdgesPoints(r._tlpoints,l,n),a,i),s&&this._drawSplitline(r._getEdgesPoints(r._blpoints,l,n),a,i)},e.prototype._getEdgesPoints=function(t,e,n){var i=[t[0].slice(),t[t.length-1].slice()],r="horizontal"===n?0:1;return i[0][r]=i[0][r]-e/2,i[1][r]=i[1][r]+e/2,i},e.prototype._drawSplitline=function(t,e,n){var i=new Yu({z2:20,shape:{points:t},style:e});n.add(i)},e.prototype._getLinePointsOfOneWeek=function(t,e,n){for(var i=t.coordinateSystem,r=i.getDateInfo(e),o=[],a=0;a<7;a++){var s=i.getNextNDay(r.time,a),l=i.dataToRect([s.time],!1);o[2*s.day]=l.tl,o[2*s.day+1]=l["horizontal"===n?"bl":"tr"]}return o},e.prototype._formatterLabel=function(t,e){return U(t)&&t?(n=t,E(e,(function(t,e){n=n.replace("{"+e+"}",i?re(t):t)})),n):X(t)?t(e):e.nameMap;var n,i},e.prototype._yearTextPositionControl=function(t,e,n,i,r){var o=e[0],a=e[1],s=["center","bottom"];"bottom"===i?(a+=r,s=["center","top"]):"left"===i?o-=r:"right"===i?(o+=r,s=["center","top"]):a-=r;var l=0;return"left"!==i&&"right"!==i||(l=Math.PI/2),{rotation:l,x:o,y:a,style:{align:s[0],verticalAlign:s[1]}}},e.prototype._renderYearText=function(t,e,n,i){var r=t.getModel("yearLabel");if(r.get("show")){var o=r.get("margin"),a=r.get("position");a||(a="horizontal"!==n?"top":"left");var s=[this._tlpoints[this._tlpoints.length-1],this._blpoints[0]],l=(s[0][0]+s[1][0])/2,u=(s[0][1]+s[1][1])/2,h="horizontal"===n?0:1,c={top:[l,s[h][1]],bottom:[l,s[1-h][1]],left:[s[1-h][0],u],right:[s[h][0],u]},p=e.start.y;+e.end.y>+e.start.y&&(p=p+"-"+e.end.y);var d=r.get("formatter"),f={start:e.start.y,end:e.end.y,nameMap:p},g=this._formatterLabel(d,f),y=new Fs({z2:30,style:nc(r,{text:g})});y.attr(this._yearTextPositionControl(y,c[a],n,a,o)),i.add(y)}},e.prototype._monthTextPositionControl=function(t,e,n,i,r){var o="left",a="top",s=t[0],l=t[1];return"horizontal"===n?(l+=r,e&&(o="center"),"start"===i&&(a="bottom")):(s+=r,e&&(a="middle"),"start"===i&&(o="right")),{x:s,y:l,align:o,verticalAlign:a}},e.prototype._renderMonthText=function(t,e,n,i){var r=t.getModel("monthLabel");if(r.get("show")){var o=r.get("nameMap"),a=r.get("margin"),s=r.get("position"),l=r.get("align"),u=[this._tlpoints,this._blpoints];o&&!U(o)||(o&&(e=Nc(o)||e),o=e.get(["time","monthAbbr"])||[]);var h="start"===s?0:1,c="horizontal"===n?0:1;a="start"===s?-a:a;for(var p="center"===l,d=0;d=i.start.time&&n.timea.end.time&&t.reverse(),t},t.prototype._getRangeInfo=function(t){var e,n=[this.getDateInfo(t[0]),this.getDateInfo(t[1])];n[0].time>n[1].time&&(e=!0,n.reverse());var i=Math.floor(n[1].time/AE)-Math.floor(n[0].time/AE)+1,r=new Date(n[0].time),o=r.getDate(),a=n[1].date.getDate();r.setDate(o+i-1);var s=r.getDate();if(s!==a)for(var l=r.getTime()-n[1].time>0?1:-1;(s=r.getDate())!==a&&(r.getTime()-n[1].time)*l>0;)i-=l,r.setDate(s-l);var u=Math.floor((i+n[0].day+6)/7),h=e?1-u:u-1;return e&&n.reverse(),{range:[n[0].formatedDate,n[1].formatedDate],start:n[0],end:n[1],allDay:i,weeks:u,nthWeek:h,fweek:n[0].day,lweek:n[1].day}},t.prototype._getDateByWeeksAndDay=function(t,e,n){var i=this._getRangeInfo(n);if(t>i.weeks||0===t&&ei.lweek)return null;var r=7*(t-1)-i.fweek+e,o=new Date(i.start.time);return o.setDate(+i.start.d+r),this.getDateInfo(o)},t.create=function(e,n){var i=[];return e.eachComponent("calendar",(function(r){var o=new t(r,e,n);i.push(o),r.coordinateSystem=o})),e.eachSeries((function(t){"calendar"===t.get("coordinateSystem")&&(t.coordinateSystem=i[t.get("calendarIndex")||0])})),i},t.dimensions=["time","value"],t}();function LE(t){var e=t.calendarModel,n=t.seriesModel;return e?e.coordinateSystem:n?n.coordinateSystem:null}function PE(t,e){var n;return E(e,(function(e){null!=t[e]&&"auto"!==t[e]&&(n=!0)})),n}var OE=["transition","enterFrom","leaveTo"],RE=OE.concat(["enterAnimation","updateAnimation","leaveAnimation"]);function NE(t,e,n){if(n&&(!t[n]&&e[n]&&(t[n]={}),t=t[n],e=e[n]),t&&e)for(var i=n?OE:RE,r=0;r=0;l--){var p,d,f;if(f=null!=(d=Ao((p=n[l]).id,null))?r.get(d):null){var g=f.parent,y=(c=VE(g),{}),v=Dp(f,p,g===i?{width:o,height:a}:{width:c.width,height:c.height},null,{hv:p.hv,boundingMode:p.bounding},y);if(!VE(f).isNew&&v){for(var m=p.transition,x={},_=0;_=0)?x[b]=w:f[b]=w}fh(f,x,t,0)}else f.attr(y)}}},e.prototype._clear=function(){var t=this,e=this._elMap;e.each((function(n){WE(n,VE(n).option,e,t._lastGraphicModel)})),this._elMap=yt()},e.prototype.dispose=function(){this._clear()},e.type="graphic",e}(Tg);function FE(t){var e=_t(zE,t)?zE[t]:Dh(t);var n=new e({});return VE(n).type=t,n}function GE(t,e,n,i){var r=FE(n);return e.add(r),i.set(t,r),VE(r).id=t,VE(r).isNew=!0,r}function WE(t,e,n,i){t&&t.parent&&("group"===t.type&&t.traverse((function(t){WE(t,e,n,i)})),oR(t,e,i),n.removeKey(VE(t).id))}function HE(t,e,n,i){t.isGroup||E([["cursor",Sa.prototype.cursor],["zlevel",i||0],["z",n||0],["z2",0]],(function(n){var i=n[0];_t(e,i)?t[i]=rt(e[i],n[1]):null==t[i]&&(t[i]=n[1])})),E(G(e),(function(n){if(0===n.indexOf("on")){var i=e[n];t[n]=X(i)?i:null}})),_t(e,"draggable")&&(t.draggable=e.draggable),null!=e.name&&(t.name=e.name),null!=e.id&&(t.id=e.id)}var YE=["x","y","radius","angle","single"],XE=["cartesian2d","polar","singleAxis"];function UE(t){return t+"Axis"}function ZE(t,e){var n,i=yt(),r=[],o=yt();t.eachComponent({mainType:"dataZoom",query:e},(function(t){o.get(t.uid)||s(t)}));do{n=!1,t.eachComponent("dataZoom",a)}while(n);function a(t){!o.get(t.uid)&&function(t){var e=!1;return t.eachTargetAxis((function(t,n){var r=i.get(t);r&&r[n]&&(e=!0)})),e}(t)&&(s(t),n=!0)}function s(t){o.set(t.uid,!0),r.push(t),t.eachTargetAxis((function(t,e){(i.get(t)||i.set(t,[]))[e]=!0}))}return r}function jE(t){var e=t.ecModel,n={infoList:[],infoMap:yt()};return t.eachTargetAxis((function(t,i){var r=e.getComponent(UE(t),i);if(r){var o=r.getCoordSysModel();if(o){var a=o.uid,s=n.infoMap.get(a);s||(s={model:o,axisModels:[]},n.infoList.push(s),n.infoMap.set(a,s)),s.axisModels.push(r)}}})),n}var qE=function(){function t(){this.indexList=[],this.indexMap=[]}return t.prototype.add=function(t){this.indexMap[t]||(this.indexList.push(t),this.indexMap[t]=!0)},t}(),KE=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n._autoThrottle=!0,n._noTarget=!0,n._rangePropMode=["percent","percent"],n}return n(e,t),e.prototype.init=function(t,e,n){var i=$E(t);this.settledOption=i,this.mergeDefaultAndTheme(t,n),this._doInit(i)},e.prototype.mergeOption=function(t){var e=$E(t);C(this.option,t,!0),C(this.settledOption,e,!0),this._doInit(e)},e.prototype._doInit=function(t){var e=this.option;this._setDefaultThrottle(t),this._updateRangeUse(t);var n=this.settledOption;E([["start","startValue"],["end","endValue"]],(function(t,i){"value"===this._rangePropMode[i]&&(e[t[0]]=n[t[0]]=null)}),this),this._resetTarget()},e.prototype._resetTarget=function(){var t=this.get("orient",!0),e=this._targetAxisInfoMap=yt();this._fillSpecifiedTargetAxis(e)?this._orient=t||this._makeAutoOrientByTargetAxis():(this._orient=t||"horizontal",this._fillAutoTargetAxisByOrient(e,this._orient)),this._noTarget=!0,e.each((function(t){t.indexList.length&&(this._noTarget=!1)}),this)},e.prototype._fillSpecifiedTargetAxis=function(t){var e=!1;return E(YE,(function(n){var i=this.getReferringComponents(UE(n),Vo);if(i.specified){e=!0;var r=new qE;E(i.models,(function(t){r.add(t.componentIndex)})),t.set(n,r)}}),this),e},e.prototype._fillAutoTargetAxisByOrient=function(t,e){var n=this.ecModel,i=!0;if(i){var r="vertical"===e?"y":"x";o(n.findComponents({mainType:r+"Axis"}),r)}i&&o(n.findComponents({mainType:"singleAxis",filter:function(t){return t.get("orient",!0)===e}}),"single");function o(e,n){var r=e[0];if(r){var o=new qE;if(o.add(r.componentIndex),t.set(n,o),i=!1,"x"===n||"y"===n){var a=r.getReferringComponents("grid",zo).models[0];a&&E(e,(function(t){r.componentIndex!==t.componentIndex&&a===t.getReferringComponents("grid",zo).models[0]&&o.add(t.componentIndex)}))}}}i&&E(YE,(function(e){if(i){var r=n.findComponents({mainType:UE(e),filter:function(t){return"category"===t.get("type",!0)}});if(r[0]){var o=new qE;o.add(r[0].componentIndex),t.set(e,o),i=!1}}}),this)},e.prototype._makeAutoOrientByTargetAxis=function(){var t;return this.eachTargetAxis((function(e){!t&&(t=e)}),this),"y"===t?"vertical":"horizontal"},e.prototype._setDefaultThrottle=function(t){if(t.hasOwnProperty("throttle")&&(this._autoThrottle=!1),this._autoThrottle){var e=this.ecModel.option;this.option.throttle=e.animation&&e.animationDurationUpdate>0?100:20}},e.prototype._updateRangeUse=function(t){var e=this._rangePropMode,n=this.get("rangeMode");E([["start","startValue"],["end","endValue"]],(function(i,r){var o=null!=t[i[0]],a=null!=t[i[1]];o&&!a?e[r]="percent":!o&&a?e[r]="value":n?e[r]=n[r]:o&&(e[r]="percent")}))},e.prototype.noTarget=function(){return this._noTarget},e.prototype.getFirstTargetAxisModel=function(){var t;return this.eachTargetAxis((function(e,n){null==t&&(t=this.ecModel.getComponent(UE(e),n))}),this),t},e.prototype.eachTargetAxis=function(t,e){this._targetAxisInfoMap.each((function(n,i){E(n.indexList,(function(n){t.call(e,i,n)}))}))},e.prototype.getAxisProxy=function(t,e){var n=this.getAxisModel(t,e);if(n)return n.__dzAxisProxy},e.prototype.getAxisModel=function(t,e){var n=this._targetAxisInfoMap.get(t);if(n&&n.indexMap[e])return this.ecModel.getComponent(UE(t),e)},e.prototype.setRawRange=function(t){var e=this.option,n=this.settledOption;E([["start","startValue"],["end","endValue"]],(function(i){null==t[i[0]]&&null==t[i[1]]||(e[i[0]]=n[i[0]]=t[i[0]],e[i[1]]=n[i[1]]=t[i[1]])}),this),this._updateRangeUse(t)},e.prototype.setCalculatedRange=function(t){var e=this.option;E(["start","startValue","end","endValue"],(function(n){e[n]=t[n]}))},e.prototype.getPercentRange=function(){var t=this.findRepresentativeAxisProxy();if(t)return t.getDataPercentWindow()},e.prototype.getValueRange=function(t,e){if(null!=t||null!=e)return this.getAxisProxy(t,e).getDataValueWindow();var n=this.findRepresentativeAxisProxy();return n?n.getDataValueWindow():void 0},e.prototype.findRepresentativeAxisProxy=function(t){if(t)return t.__dzAxisProxy;for(var e,n=this._targetAxisInfoMap.keys(),i=0;i=0}(e)){var n=UE(this._dimName),i=e.getReferringComponents(n,zo).models[0];i&&this._axisIndex===i.componentIndex&&t.push(e)}}),this),t},t.prototype.getAxisModel=function(){return this.ecModel.getComponent(this._dimName+"Axis",this._axisIndex)},t.prototype.getMinMaxSpan=function(){return T(this._minMaxSpan)},t.prototype.calculateDataWindow=function(t){var e,n=this._dataExtent,i=this.getAxisModel().axis.scale,r=this._dataZoomModel.getRangePropMode(),o=[0,100],a=[],s=[];ez(["start","end"],(function(l,u){var h=t[l],c=t[l+"Value"];"percent"===r[u]?(null==h&&(h=o[u]),c=i.parse(Xr(h,o,n))):(e=!0,h=Xr(c=null==c?n[u]:i.parse(c),n,o)),s[u]=null==c||isNaN(c)?n[u]:c,a[u]=null==h||isNaN(h)?o[u]:h})),nz(s),nz(a);var l=this._minMaxSpan;function u(t,e,n,r,o){var a=o?"Span":"ValueSpan";Ck(0,t,n,"all",l["min"+a],l["max"+a]);for(var s=0;s<2;s++)e[s]=Xr(t[s],n,r,!0),o&&(e[s]=i.parse(e[s]))}return e?u(s,a,n,o,!1):u(a,s,o,n,!0),{valueWindow:s,percentWindow:a}},t.prototype.reset=function(t){if(t===this._dataZoomModel){var e=this.getTargetSeriesModels();this._dataExtent=function(t,e,n){var i=[1/0,-1/0];ez(n,(function(t){!function(t,e,n){e&&E(M_(e,n),(function(n){var i=e.getApproximateExtent(n);i[0]t[1]&&(t[1]=i[1])}))}(i,t.getData(),e)}));var r=t.getAxisModel(),o=f_(r.axis.scale,r,i).calculate();return[o.min,o.max]}(this,this._dimName,e),this._updateMinMaxSpan();var n=this.calculateDataWindow(t.settledOption);this._valueWindow=n.valueWindow,this._percentWindow=n.percentWindow,this._setAxisModel()}},t.prototype.filterData=function(t,e){if(t===this._dataZoomModel){var n=this._dimName,i=this.getTargetSeriesModels(),r=t.get("filterMode"),o=this._valueWindow;"none"!==r&&ez(i,(function(t){var e=t.getData(),i=e.mapDimensionsAll(n);if(i.length){if("weakFilter"===r){var a=e.getStore(),s=z(i,(function(t){return e.getDimensionIndex(t)}),e);e.filterSelf((function(t){for(var e,n,r,l=0;lo[1];if(h&&!c&&!p)return!0;h&&(r=!0),c&&(e=!0),p&&(n=!0)}return r&&e&&n}))}else ez(i,(function(n){if("empty"===r)t.setData(e=e.map(n,(function(t){return function(t){return t>=o[0]&&t<=o[1]}(t)?t:NaN})));else{var i={};i[n]=o,e.selectRange(i)}}));ez(i,(function(t){e.setApproximateExtent(o,t)}))}}))}},t.prototype._updateMinMaxSpan=function(){var t=this._minMaxSpan={},e=this._dataZoomModel,n=this._dataExtent;ez(["min","max"],(function(i){var r=e.get(i+"Span"),o=e.get(i+"ValueSpan");null!=o&&(o=this.getAxisModel().axis.scale.parse(o)),null!=o?r=Xr(n[0]+o,n,[0,100],!0):null!=r&&(o=Xr(r,[0,100],n,!0)-n[0]),t[i+"Span"]=r,t[i+"ValueSpan"]=o}),this)},t.prototype._setAxisModel=function(){var t=this.getAxisModel(),e=this._percentWindow,n=this._valueWindow;if(e){var i=$r(n,[0,500]);i=Math.min(i,20);var r=t.axis.scale.rawExtentInfo;0!==e[0]&&r.setDeterminedMinMax("min",+n[0].toFixed(i)),100!==e[1]&&r.setDeterminedMinMax("max",+n[1].toFixed(i)),r.freeze()}},t}();var rz={getTargetSeries:function(t){function e(e){t.eachComponent("dataZoom",(function(n){n.eachTargetAxis((function(i,r){var o=t.getComponent(UE(i),r);e(i,r,o,n)}))}))}e((function(t,e,n,i){n.__dzAxisProxy=null}));var n=[];e((function(e,i,r,o){r.__dzAxisProxy||(r.__dzAxisProxy=new iz(e,i,o,t),n.push(r.__dzAxisProxy))}));var i=yt();return E(n,(function(t){E(t.getTargetSeriesModels(),(function(t){i.set(t.uid,t)}))})),i},overallReset:function(t,e){t.eachComponent("dataZoom",(function(t){t.eachTargetAxis((function(e,n){t.getAxisProxy(e,n).reset(t)})),t.eachTargetAxis((function(n,i){t.getAxisProxy(n,i).filterData(t,e)}))})),t.eachComponent("dataZoom",(function(t){var e=t.findRepresentativeAxisProxy();if(e){var n=e.getDataPercentWindow(),i=e.getDataValueWindow();t.setCalculatedRange({start:n[0],end:n[1],startValue:i[0],endValue:i[1]})}}))}};var oz=!1;function az(t){oz||(oz=!0,t.registerProcessor(t.PRIORITY.PROCESSOR.FILTER,rz),function(t){t.registerAction("dataZoom",(function(t,e){E(ZE(e,t),(function(e){e.setRawRange({start:t.start,end:t.end,startValue:t.startValue,endValue:t.endValue})}))}))}(t),t.registerSubTypeDefaulter("dataZoom",(function(){return"slider"})))}function sz(t){t.registerComponentModel(JE),t.registerComponentView(tz),az(t)}var lz=function(){},uz={};function hz(t,e){uz[t]=e}function cz(t){return uz[t]}var pz=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n}return n(e,t),e.prototype.optionUpdated=function(){t.prototype.optionUpdated.apply(this,arguments);var e=this.ecModel;E(this.option.feature,(function(t,n){var i=cz(n);i&&(i.getDefaultOption&&(i.defaultOption=i.getDefaultOption(e)),C(t,i.defaultOption))}))},e.type="toolbox",e.layoutMode={type:"box",ignoreSize:!0},e.defaultOption={show:!0,z:6,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"}},e}(Rp);function dz(t,e){var n=fp(e.get("padding")),i=e.getItemStyle(["color","opacity"]);return i.fill=e.get("backgroundColor"),t=new zs({shape:{x:t.x-n[3],y:t.y-n[0],width:t.width+n[1]+n[3],height:t.height+n[0]+n[2],r:e.get("borderRadius")},style:i,silent:!0,z2:-1})}var fz=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return n(e,t),e.prototype.render=function(t,e,n,i){var r=this.group;if(r.removeAll(),t.get("show")){var o=+t.get("itemSize"),a="vertical"===t.get("orient"),s=t.get("feature")||{},l=this._features||(this._features={}),u=[];E(s,(function(t,e){u.push(e)})),new Vm(this._featureNames||[],u).add(h).update(h).remove(H(h,null)).execute(),this._featureNames=u,function(t,e,n){var i=e.getBoxLayoutParams(),r=e.get("padding"),o={width:n.getWidth(),height:n.getHeight()},a=Cp(i,o,r);Tp(e.get("orient"),t,e.get("itemGap"),a.width,a.height),Dp(t,i,o,r)}(r,t,n),r.add(dz(r.getBoundingRect(),t)),a||r.eachChild((function(t){var e=t.__title,i=t.ensureState("emphasis"),a=i.textConfig||(i.textConfig={}),s=t.getTextContent(),l=s&&s.ensureState("emphasis");if(l&&!X(l)&&e){var u=l.style||(l.style={}),h=br(e,Fs.makeFont(u)),c=t.x+r.x,p=!1;t.y+r.y+o+h.height>n.getHeight()&&(a.position="top",p=!0);var d=p?-5-h.height:o+10;c+h.width/2>n.getWidth()?(a.position=["100%",d],u.align="right"):c-h.width/2<0&&(a.position=[0,d],u.align="left")}}))}function h(h,c){var p,d=u[h],f=u[c],g=s[d],y=new Mc(g,t,t.ecModel);if(i&&null!=i.newTitle&&i.featureName===d&&(g.title=i.newTitle),d&&!f){if(function(t){return 0===t.indexOf("my")}(d))p={onclick:y.option.onclick,featureName:d};else{var v=cz(d);if(!v)return;p=new v}l[d]=p}else if(!(p=l[f]))return;p.uid=Tc("toolbox-feature"),p.model=y,p.ecModel=e,p.api=n;var m=p instanceof lz;d||!f?!y.get("show")||m&&p.unusable?m&&p.remove&&p.remove(e,n):(!function(i,s,l){var u,h,c=i.getModel("iconStyle"),p=i.getModel(["emphasis","iconStyle"]),d=s instanceof lz&&s.getIcons?s.getIcons():i.get("icon"),f=i.get("title")||{};U(d)?(u={})[l]=d:u=d;U(f)?(h={})[l]=f:h=f;var g=i.iconPaths={};E(u,(function(l,u){var d=Hh(l,{},{x:-o/2,y:-o/2,width:o,height:o});d.setStyle(c.getItemStyle()),d.ensureState("emphasis").style=p.getItemStyle();var f=new Fs({style:{text:h[u],align:p.get("textAlign"),borderRadius:p.get("textBorderRadius"),padding:p.get("textPadding"),fill:null},ignore:!0});d.setTextContent(f),Zh({el:d,componentModel:t,itemName:u,formatterParamsExtra:{title:h[u]}}),d.__title=h[u],d.on("mouseover",(function(){var e=p.getItemStyle(),i=a?null==t.get("right")&&"right"!==t.get("left")?"right":"left":null==t.get("bottom")&&"bottom"!==t.get("top")?"bottom":"top";f.setStyle({fill:p.get("textFill")||e.fill||e.stroke||"#000",backgroundColor:p.get("textBackgroundColor")}),d.setTextConfig({position:p.get("textPosition")||i}),f.ignore=!t.get("showTitle"),n.enterEmphasis(this)})).on("mouseout",(function(){"emphasis"!==i.get(["iconStatus",u])&&n.leaveEmphasis(this),f.hide()})),("emphasis"===i.get(["iconStatus",u])?kl:Ll)(d),r.add(d),d.on("click",W(s.onclick,s,e,n,u)),g[u]=d}))}(y,p,d),y.setIconStatus=function(t,e){var n=this.option,i=this.iconPaths;n.iconStatus=n.iconStatus||{},n.iconStatus[t]=e,i[t]&&("emphasis"===e?kl:Ll)(i[t])},p instanceof lz&&p.render&&p.render(y,e,n,i)):m&&p.dispose&&p.dispose(e,n)}},e.prototype.updateView=function(t,e,n,i){E(this._features,(function(t){t instanceof lz&&t.updateView&&t.updateView(t.model,e,n,i)}))},e.prototype.remove=function(t,e){E(this._features,(function(n){n instanceof lz&&n.remove&&n.remove(t,e)})),this.group.removeAll()},e.prototype.dispose=function(t,e){E(this._features,(function(n){n instanceof lz&&n.dispose&&n.dispose(t,e)}))},e.type="toolbox",e}(Tg);var gz=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return n(e,t),e.prototype.onclick=function(t,e){var n=this.model,i=n.get("name")||t.get("title.0.text")||"echarts",o="svg"===e.getZr().painter.getType(),a=o?"svg":n.get("type",!0)||"png",s=e.getConnectedDataURL({type:a,backgroundColor:n.get("backgroundColor",!0)||t.get("backgroundColor")||"#fff",connectedBackgroundColor:n.get("connectedBackgroundColor"),excludeComponents:n.get("excludeComponents"),pixelRatio:n.get("pixelRatio")}),l=r.browser;if(X(MouseEvent)&&(l.newEdge||!l.ie&&!l.edge)){var u=document.createElement("a");u.download=i+"."+a,u.target="_blank",u.href=s;var h=new MouseEvent("click",{view:document.defaultView,bubbles:!0,cancelable:!1});u.dispatchEvent(h)}else if(window.navigator.msSaveOrOpenBlob||o){var c=s.split(","),p=c[0].indexOf("base64")>-1,d=o?decodeURIComponent(c[1]):c[1];p&&(d=window.atob(d));var f=i+"."+a;if(window.navigator.msSaveOrOpenBlob){for(var g=d.length,y=new Uint8Array(g);g--;)y[g]=d.charCodeAt(g);var v=new Blob([y]);window.navigator.msSaveOrOpenBlob(v,f)}else{var m=document.createElement("iframe");document.body.appendChild(m);var x=m.contentWindow,_=x.document;_.open("image/svg+xml","replace"),_.write(d),_.close(),x.focus(),_.execCommand("SaveAs",!0,f),document.body.removeChild(m)}}else{var b=n.get("lang"),w='',S=window.open();S.document.write(w),S.document.title=i}},e.getDefaultOption=function(t){return{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:t.getLocaleModel().get(["toolbox","saveAsImage","title"]),type:"png",connectedBackgroundColor:"#fff",name:"",excludeComponents:["toolbox"],lang:t.getLocaleModel().get(["toolbox","saveAsImage","lang"])}},e}(lz),yz="__ec_magicType_stack__",vz=[["line","bar"],["stack"]],mz=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return n(e,t),e.prototype.getIcons=function(){var t=this.model,e=t.get("icon"),n={};return E(t.get("type"),(function(t){e[t]&&(n[t]=e[t])})),n},e.getDefaultOption=function(t){return{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:t.getLocaleModel().get(["toolbox","magicType","title"]),option:{},seriesIndex:{}}},e.prototype.onclick=function(t,e,n){var i=this.model,r=i.get(["seriesIndex",n]);if(xz[n]){var o,a={series:[]};E(vz,(function(t){P(t,n)>=0&&E(t,(function(t){i.setIconStatus(t,"normal")}))})),i.setIconStatus(n,"emphasis"),t.eachComponent({mainType:"series",query:null==r?null:{seriesIndex:r}},(function(t){var e=t.subType,r=t.id,o=xz[n](e,r,t,i);o&&(k(o,t.option),a.series.push(o));var s=t.coordinateSystem;if(s&&"cartesian2d"===s.type&&("line"===n||"bar"===n)){var l=s.getAxesByScale("ordinal")[0];if(l){var u=l.dim+"Axis",h=t.getReferringComponents(u,zo).models[0].componentIndex;a[u]=a[u]||[];for(var c=0;c<=h;c++)a[u][h]=a[u][h]||{};a[u][h].boundaryGap="bar"===n}}}));var s=n;"stack"===n&&(o=C({stack:i.option.title.tiled,tiled:i.option.title.stack},i.option.title),"emphasis"!==i.get(["iconStatus",n])&&(s="tiled")),e.dispatchAction({type:"changeMagicType",currentType:s,newOption:a,newTitle:o,featureName:"magicType"})}},e}(lz),xz={line:function(t,e,n,i){if("bar"===t)return C({id:e,type:"line",data:n.get("data"),stack:n.get("stack"),markPoint:n.get("markPoint"),markLine:n.get("markLine")},i.get(["option","line"])||{},!0)},bar:function(t,e,n,i){if("line"===t)return C({id:e,type:"bar",data:n.get("data"),stack:n.get("stack"),markPoint:n.get("markPoint"),markLine:n.get("markLine")},i.get(["option","bar"])||{},!0)},stack:function(t,e,n,i){var r=n.get("stack")===yz;if("line"===t||"bar"===t)return i.setIconStatus("stack",r?"normal":"emphasis"),C({id:e,stack:r?"":yz},i.get(["option","stack"])||{},!0)}};Mm({type:"changeMagicType",event:"magicTypeChanged",update:"prepareAndUpdate"},(function(t,e){e.mergeOption(t.newOption)}));var _z=new Array(60).join("-"),bz="\t";function wz(t){return t.replace(/^\s\s*/,"").replace(/\s\s*$/,"")}var Sz=new RegExp("[\t]+","g");function Mz(t,e){var n=t.split(new RegExp("\n*"+_z+"\n*","g")),i={series:[]};return E(n,(function(t,n){if(function(t){if(t.slice(0,t.indexOf("\n")).indexOf(bz)>=0)return!0}(t)){var r=function(t){for(var e=t.split(/\n+/g),n=[],i=z(wz(e.shift()).split(Sz),(function(t){return{name:t,data:[]}})),r=0;r=0)&&t(r,i._targetInfoList)}))}return t.prototype.setOutputRanges=function(t,e){return this.matchOutputRanges(t,e,(function(t,e,n){if((t.coordRanges||(t.coordRanges=[])).push(e),!t.coordRange){t.coordRange=e;var i=Vz[t.brushType](0,n,e);t.__rangeOffset={offset:Fz[t.brushType](i.values,t.range,[1,1]),xyMinMax:i.xyMinMax}}})),t},t.prototype.matchOutputRanges=function(t,e,n){E(t,(function(t){var i=this.findTargetInfo(t,e);i&&!0!==i&&E(i.coordSyses,(function(i){var r=Vz[t.brushType](1,i,t.range,!0);n(t,r.values,i,e)}))}),this)},t.prototype.setInputRanges=function(t,e){E(t,(function(t){var n,i,r,o,a,s=this.findTargetInfo(t,e);if(t.range=t.range||[],s&&!0!==s){t.panelId=s.panelId;var l=Vz[t.brushType](0,s.coordSys,t.coordRange),u=t.__rangeOffset;t.range=u?Fz[t.brushType](l.values,u.offset,(n=l.xyMinMax,i=u.xyMinMax,r=Wz(n),o=Wz(i),a=[r[0]/o[0],r[1]/o[1]],isNaN(a[0])&&(a[0]=1),isNaN(a[1])&&(a[1]=1),a)):l.values}}),this)},t.prototype.makePanelOpts=function(t,e){return z(this._targetInfoList,(function(n){var i=n.getPanelRect();return{panelId:n.panelId,defaultBrushType:e?e(n):null,clipPath:AL(i),isTargetByCursor:LL(i,t,n.coordSysModel),getLinearBrushOtherExtent:kL(i)}}))},t.prototype.controlSeries=function(t,e,n){var i=this.findTargetInfo(t,n);return!0===i||i&&P(i.coordSyses,e.coordinateSystem)>=0},t.prototype.findTargetInfo=function(t,e){for(var n=this._targetInfoList,i=Rz(e,t),r=0;rt[1]&&t.reverse(),t}function Rz(t,e){return No(t,e,{includeMainTypes:Lz})}var Nz={grid:function(t,e){var n=t.xAxisModels,i=t.yAxisModels,r=t.gridModels,o=yt(),a={},s={};(n||i||r)&&(E(n,(function(t){var e=t.axis.grid.model;o.set(e.id,e),a[e.id]=!0})),E(i,(function(t){var e=t.axis.grid.model;o.set(e.id,e),s[e.id]=!0})),E(r,(function(t){o.set(t.id,t),a[t.id]=!0,s[t.id]=!0})),o.each((function(t){var r=t.coordinateSystem,o=[];E(r.getCartesians(),(function(t,e){(P(n,t.getAxis("x").model)>=0||P(i,t.getAxis("y").model)>=0)&&o.push(t)})),e.push({panelId:"grid--"+t.id,gridModel:t,coordSysModel:t,coordSys:o[0],coordSyses:o,getPanelRect:zz.grid,xAxisDeclared:a[t.id],yAxisDeclared:s[t.id]})})))},geo:function(t,e){E(t.geoModels,(function(t){var n=t.coordinateSystem;e.push({panelId:"geo--"+t.id,geoModel:t,coordSysModel:t,coordSys:n,coordSyses:[n],getPanelRect:zz.geo})}))}},Ez=[function(t,e){var n=t.xAxisModel,i=t.yAxisModel,r=t.gridModel;return!r&&n&&(r=n.axis.grid.model),!r&&i&&(r=i.axis.grid.model),r&&r===e.gridModel},function(t,e){var n=t.geoModel;return n&&n===e.geoModel}],zz={grid:function(){return this.coordSys.master.getRect().clone()},geo:function(){var t=this.coordSys,e=t.getBoundingRect().clone();return e.applyTransform(Eh(t)),e}},Vz={lineX:H(Bz,0),lineY:H(Bz,1),rect:function(t,e,n,i){var r=t?e.pointToData([n[0][0],n[1][0]],i):e.dataToPoint([n[0][0],n[1][0]],i),o=t?e.pointToData([n[0][1],n[1][1]],i):e.dataToPoint([n[0][1],n[1][1]],i),a=[Oz([r[0],o[0]]),Oz([r[1],o[1]])];return{values:a,xyMinMax:a}},polygon:function(t,e,n,i){var r=[[1/0,-1/0],[1/0,-1/0]];return{values:z(n,(function(n){var o=t?e.pointToData(n,i):e.dataToPoint(n,i);return r[0][0]=Math.min(r[0][0],o[0]),r[1][0]=Math.min(r[1][0],o[1]),r[0][1]=Math.max(r[0][1],o[0]),r[1][1]=Math.max(r[1][1],o[1]),o})),xyMinMax:r}}};function Bz(t,e,n,i){var r=n.getAxis(["x","y"][t]),o=Oz(z([0,1],(function(t){return e?r.coordToData(r.toLocalCoord(i[t]),!0):r.toGlobalCoord(r.dataToCoord(i[t]))}))),a=[];return a[t]=o,a[1-t]=[NaN,NaN],{values:o,xyMinMax:a}}var Fz={lineX:H(Gz,0),lineY:H(Gz,1),rect:function(t,e,n){return[[t[0][0]-n[0]*e[0][0],t[0][1]-n[0]*e[0][1]],[t[1][0]-n[1]*e[1][0],t[1][1]-n[1]*e[1][1]]]},polygon:function(t,e,n){return z(t,(function(t,i){return[t[0]-n[0]*e[i][0],t[1]-n[1]*e[i][1]]}))}};function Gz(t,e,n,i){return[e[0]-i[t]*n[0],e[1]-i[t]*n[1]]}function Wz(t){return t?[t[0][1]-t[0][0],t[1][1]-t[1][0]]:[NaN,NaN]}var Hz,Yz,Xz=E,Uz=_o+"toolbox-dataZoom_",Zz=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return n(e,t),e.prototype.render=function(t,e,n,i){this._brushController||(this._brushController=new Jk(n.getZr()),this._brushController.on("brush",W(this._onBrush,this)).mount()),function(t,e,n,i,r){var o=n._isZoomActive;i&&"takeGlobalCursor"===i.type&&(o="dataZoomSelect"===i.key&&i.dataZoomSelectActive);n._isZoomActive=o,t.setIconStatus("zoom",o?"emphasis":"normal");var a=new Pz(qz(t),e,{include:["grid"]}),s=a.makePanelOpts(r,(function(t){return t.xAxisDeclared&&!t.yAxisDeclared?"lineX":!t.xAxisDeclared&&t.yAxisDeclared?"lineY":"rect"}));n._brushController.setPanels(s).enableBrush(!(!o||!s.length)&&{brushType:"auto",brushStyle:t.getModel("brushStyle").getItemStyle()})}(t,e,this,i,n),function(t,e){t.setIconStatus("back",function(t){return Az(t).length}(e)>1?"emphasis":"normal")}(t,e)},e.prototype.onclick=function(t,e,n){jz[n].call(this)},e.prototype.remove=function(t,e){this._brushController&&this._brushController.unmount()},e.prototype.dispose=function(t,e){this._brushController&&this._brushController.dispose()},e.prototype._onBrush=function(t){var e=t.areas;if(t.isEnd&&e.length){var n={},i=this.ecModel;this._brushController.updateCovers([]),new Pz(qz(this.model),i,{include:["grid"]}).matchOutputRanges(e,i,(function(t,e,n){if("cartesian2d"===n.type){var i=t.brushType;"rect"===i?(r("x",n,e[0]),r("y",n,e[1])):r({lineX:"x",lineY:"y"}[i],n,e)}})),function(t,e){var n=Az(t);Cz(e,(function(e,i){for(var r=n.length-1;r>=0&&!n[r][i];r--);if(r<0){var o=t.queryComponents({mainType:"dataZoom",subType:"select",id:i})[0];if(o){var a=o.getPercentRange();n[0][i]={dataZoomId:i,start:a[0],end:a[1]}}}})),n.push(e)}(i,n),this._dispatchZoomAction(n)}function r(t,e,r){var o=e.getAxis(t),a=o.model,s=function(t,e,n){var i;return n.eachComponent({mainType:"dataZoom",subType:"select"},(function(n){n.getAxisModel(t,e.componentIndex)&&(i=n)})),i}(t,a,i),l=s.findRepresentativeAxisProxy(a).getMinMaxSpan();null==l.minValueSpan&&null==l.maxValueSpan||(r=Ck(0,r.slice(),o.scale.getExtent(),0,l.minValueSpan,l.maxValueSpan)),s&&(n[s.id]={dataZoomId:s.id,startValue:r[0],endValue:r[1]})}},e.prototype._dispatchZoomAction=function(t){var e=[];Xz(t,(function(t,n){e.push(T(t))})),e.length&&this.api.dispatchAction({type:"dataZoom",from:this.uid,batch:e})},e.getDefaultOption=function(t){return{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:t.getLocaleModel().get(["toolbox","dataZoom","title"]),brushStyle:{borderWidth:0,color:"rgba(210,219,238,0.2)"}}},e}(lz),jz={zoom:function(){var t=!this._isZoomActive;this.api.dispatchAction({type:"takeGlobalCursor",key:"dataZoomSelect",dataZoomSelectActive:t})},back:function(){this._dispatchZoomAction(function(t){var e=Az(t),n=e[e.length-1];e.length>1&&e.pop();var i={};return Cz(n,(function(t,n){for(var r=e.length-1;r>=0;r--)if(t=e[r][n]){i[n]=t;break}})),i}(this.ecModel))}};function qz(t){var e={xAxisIndex:t.get("xAxisIndex",!0),yAxisIndex:t.get("yAxisIndex",!0),xAxisId:t.get("xAxisId",!0),yAxisId:t.get("yAxisId",!0)};return null==e.xAxisIndex&&null==e.xAxisId&&(e.xAxisIndex="all"),null==e.yAxisIndex&&null==e.yAxisId&&(e.yAxisIndex="all"),e}Hz="dataZoom",Yz=function(t){var e=t.getComponent("toolbox",0),n=["feature","dataZoom"];if(e&&null!=e.get(n)){var i=e.getModel(n),r=[],o=No(t,qz(i));return Xz(o.xAxisModels,(function(t){return a(t,"xAxis","xAxisIndex")})),Xz(o.yAxisModels,(function(t){return a(t,"yAxis","yAxisIndex")})),r}function a(t,e,n){var o=t.componentIndex,a={type:"select",$fromToolbox:!0,filterMode:i.get("filterMode",!0)||"filter",id:Uz+e+o};a[n]=o,r.push(a)}},lt(null==nd.get(Hz)&&Yz),nd.set(Hz,Yz);var Kz=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n}return n(e,t),e.type="tooltip",e.dependencies=["axisPointer"],e.defaultOption={z:60,show:!0,showContent:!0,trigger:"item",triggerOn:"mousemove|click",alwaysShowContent:!1,displayMode:"single",renderMode:"auto",confine:null,showDelay:0,hideDelay:100,transitionDuration:.4,enterable:!1,backgroundColor:"#fff",shadowBlur:10,shadowColor:"rgba(0, 0, 0, .2)",shadowOffsetX:1,shadowOffsetY:2,borderRadius:4,borderWidth:1,padding:null,extraCssText:"",axisPointer:{type:"line",axis:"auto",animation:"auto",animationDurationUpdate:200,animationEasingUpdate:"exponentialOut",crossStyle:{color:"#999",width:1,type:"dashed",textStyle:{}}},textStyle:{color:"#666",fontSize:14}},e}(Rp);function $z(t){var e=t.get("confine");return null!=e?!!e:"richText"===t.get("renderMode")}function Jz(t){if(r.domSupported)for(var e=document.documentElement.style,n=0,i=t.length;n-1?(u+="top:50%",h+="translateY(-50%) rotate("+(a="left"===s?-225:-45)+"deg)"):(u+="left:50%",h+="translateX(-50%) rotate("+(a="top"===s?225:45)+"deg)");var c=a*Math.PI/180,p=l+r,d=p*Math.abs(Math.cos(c))+p*Math.abs(Math.sin(c)),f=e+" solid "+r+"px;";return'
'}(n,i,r)),U(t))o.innerHTML=t+a;else if(t){o.innerHTML="",Y(t)||(t=[t]);for(var s=0;s=0?this._tryShow(n,i):"leave"===e&&this._hide(i))}),this))},e.prototype._keepShow=function(){var t=this._tooltipModel,e=this._ecModel,n=this._api,i=t.get("triggerOn");if(null!=this._lastX&&null!=this._lastY&&"none"!==i&&"click"!==i){var r=this;clearTimeout(this._refreshUpdateTimeout),this._refreshUpdateTimeout=setTimeout((function(){!n.isDisposed()&&r.manuallyShowTip(t,e,n,{x:r._lastX,y:r._lastY,dataByCoordSys:r._lastDataByCoordSys})}))}},e.prototype.manuallyShowTip=function(t,e,n,i){if(i.from!==this.uid&&!r.node&&n.getDom()){var o=gV(i,n);this._ticket="";var a=i.dataByCoordSys,s=function(t,e,n){var i=Eo(t).queryOptionMap,r=i.keys()[0];if(!r||"series"===r)return;var o=Bo(e,r,i.get(r),{useDefault:!1,enableAll:!1,enableNone:!1}),a=o.models[0];if(!a)return;var s,l=n.getViewOfComponentModel(a);if(l.group.traverse((function(e){var n=Qs(e).tooltipConfig;if(n&&n.name===t.name)return s=e,!0})),s)return{componentMainType:r,componentIndex:a.componentIndex,el:s}}(i,e,n);if(s){var l=s.el.getBoundingRect().clone();l.applyTransform(s.el.transform),this._tryShow({offsetX:l.x+l.width/2,offsetY:l.y+l.height/2,target:s.el,position:i.position,positionDefault:"bottom"},o)}else if(i.tooltip&&null!=i.x&&null!=i.y){var u=pV;u.x=i.x,u.y=i.y,u.update(),Qs(u).tooltipConfig={name:null,option:i.tooltip},this._tryShow({offsetX:i.x,offsetY:i.y,target:u},o)}else if(a)this._tryShow({offsetX:i.x,offsetY:i.y,position:i.position,dataByCoordSys:a,tooltipOption:i.tooltipOption},o);else if(null!=i.seriesIndex){if(this._manuallyAxisShowTip(t,e,n,i))return;var h=wN(i,e),c=h.point[0],p=h.point[1];null!=c&&null!=p&&this._tryShow({offsetX:c,offsetY:p,target:h.el,position:i.position,positionDefault:"bottom"},o)}else null!=i.x&&null!=i.y&&(n.dispatchAction({type:"updateAxisPointer",x:i.x,y:i.y}),this._tryShow({offsetX:i.x,offsetY:i.y,position:i.position,target:n.getZr().findHover(i.x,i.y).target},o))}},e.prototype.manuallyHideTip=function(t,e,n,i){var r=this._tooltipContent;this._tooltipModel&&r.hideLater(this._tooltipModel.get("hideDelay")),this._lastX=this._lastY=this._lastDataByCoordSys=null,i.from!==this.uid&&this._hide(gV(i,n))},e.prototype._manuallyAxisShowTip=function(t,e,n,i){var r=i.seriesIndex,o=i.dataIndex,a=e.getComponent("axisPointer").coordSysAxesInfo;if(null!=r&&null!=o&&null!=a){var s=e.getSeriesByIndex(r);if(s)if("axis"===fV([s.getData().getItemModel(o),s,(s.coordinateSystem||{}).model],this._tooltipModel).get("trigger"))return n.dispatchAction({type:"updateAxisPointer",seriesIndex:r,dataIndex:o,position:i.position}),!0}},e.prototype._tryShow=function(t,e){var n=t.target;if(this._tooltipModel){this._lastX=t.offsetX,this._lastY=t.offsetY;var i=t.dataByCoordSys;if(i&&i.length)this._showAxisTooltip(i,t);else if(n){var r,o;this._lastDataByCoordSys=null,ky(n,(function(t){return null!=Qs(t).dataIndex?(r=t,!0):null!=Qs(t).tooltipConfig?(o=t,!0):void 0}),!0),r?this._showSeriesItemTooltip(t,r,e):o?this._showComponentItemTooltip(t,o,e):this._hide(e)}else this._lastDataByCoordSys=null,this._hide(e)}},e.prototype._showOrMove=function(t,e){var n=t.get("showDelay");e=W(e,this),clearTimeout(this._showTimout),n>0?this._showTimout=setTimeout(e,n):e()},e.prototype._showAxisTooltip=function(t,e){var n=this._ecModel,i=this._tooltipModel,r=[e.offsetX,e.offsetY],o=fV([e.tooltipOption],i),a=this._renderMode,s=[],l=ng("section",{blocks:[],noHeader:!0}),u=[],h=new dg;E(t,(function(t){E(t.dataByAxis,(function(t){var e=n.getComponent(t.axisDim+"Axis",t.axisIndex),r=t.value;if(e&&null!=r){var o=rN(r,e.axis,n,t.seriesDataIndices,t.valueLabelOpt),c=ng("section",{header:o,noHeader:!ut(o),sortBlocks:!0,blocks:[]});l.blocks.push(c),E(t.seriesDataIndices,(function(l){var p=n.getSeriesByIndex(l.seriesIndex),d=l.dataIndexInside,f=p.getDataParams(d);if(!(f.dataIndex<0)){f.axisDim=t.axisDim,f.axisIndex=t.axisIndex,f.axisType=t.axisType,f.axisId=t.axisId,f.axisValue=__(e.axis,{value:r}),f.axisValueLabel=o,f.marker=h.makeTooltipMarker("item",_p(f.color),a);var g=mf(p.formatTooltip(d,!0,null)),y=g.frag;if(y){var v=fV([p],i).get("valueFormatter");c.blocks.push(v?A({valueFormatter:v},y):y)}g.text&&u.push(g.text),s.push(f)}}))}}))})),l.blocks.reverse(),u.reverse();var c=e.position,p=o.get("order"),d=lg(l,h,a,p,n.get("useUTC"),o.get("textStyle"));d&&u.unshift(d);var f="richText"===a?"\n\n":"
",g=u.join(f);this._showOrMove(o,(function(){this._updateContentNotChangedOnAxis(t,s)?this._updatePosition(o,c,r[0],r[1],this._tooltipContent,s):this._showTooltipContent(o,g,s,Math.random()+"",r[0],r[1],c,null,h)}))},e.prototype._showSeriesItemTooltip=function(t,e,n){var i=this._ecModel,r=Qs(e),o=r.seriesIndex,a=i.getSeriesByIndex(o),s=r.dataModel||a,l=r.dataIndex,u=r.dataType,h=s.getData(u),c=this._renderMode,p=t.positionDefault,d=fV([h.getItemModel(l),s,a&&(a.coordinateSystem||{}).model],this._tooltipModel,p?{position:p}:null),f=d.get("trigger");if(null==f||"item"===f){var g=s.getDataParams(l,u),y=new dg;g.marker=y.makeTooltipMarker("item",_p(g.color),c);var v=mf(s.formatTooltip(l,!1,u)),m=d.get("order"),x=d.get("valueFormatter"),_=v.frag,b=_?lg(x?A({valueFormatter:x},_):_,y,c,m,i.get("useUTC"),d.get("textStyle")):v.text,w="item_"+s.name+"_"+l;this._showOrMove(d,(function(){this._showTooltipContent(d,b,g,w,t.offsetX,t.offsetY,t.position,t.target,y)})),n({type:"showTip",dataIndexInside:l,dataIndex:h.getRawIndex(l),seriesIndex:o,from:this.uid})}},e.prototype._showComponentItemTooltip=function(t,e,n){var i=Qs(e),r=i.tooltipConfig.option||{};if(U(r)){r={content:r,formatter:r}}var o=[r],a=this._ecModel.getComponent(i.componentMainType,i.componentIndex);a&&o.push(a),o.push({formatter:r.content});var s=t.positionDefault,l=fV(o,this._tooltipModel,s?{position:s}:null),u=l.get("content"),h=Math.random()+"",c=new dg;this._showOrMove(l,(function(){var n=T(l.get("formatterParams")||{});this._showTooltipContent(l,u,n,h,t.offsetX,t.offsetY,t.position,e,c)})),n({type:"showTip",from:this.uid})},e.prototype._showTooltipContent=function(t,e,n,i,r,o,a,s,l){if(this._ticket="",t.get("showContent")&&t.get("show")){var u=this._tooltipContent;u.setEnterable(t.get("enterable"));var h=t.get("formatter");a=a||t.get("position");var c=e,p=this._getNearestPoint([r,o],n,t.get("trigger"),t.get("borderColor")).color;if(h)if(U(h)){var d=t.ecModel.get("useUTC"),f=Y(n)?n[0]:n;c=h,f&&f.axisType&&f.axisType.indexOf("time")>=0&&(c=qc(f.axisValue,c,d)),c=mp(c,n,!0)}else if(X(h)){var g=W((function(e,i){e===this._ticket&&(u.setContent(i,l,t,p,a),this._updatePosition(t,a,r,o,u,n,s))}),this);this._ticket=i,c=h(n,i,g)}else c=h;u.setContent(c,l,t,p,a),u.show(t,p),this._updatePosition(t,a,r,o,u,n,s)}},e.prototype._getNearestPoint=function(t,e,n,i){return"axis"===n||Y(e)?{color:i||("html"===this._renderMode?"#fff":"none")}:Y(e)?void 0:{color:i||e.color||e.borderColor}},e.prototype._updatePosition=function(t,e,n,i,r,o,a){var s=this._api.getWidth(),l=this._api.getHeight();e=e||t.get("position");var u=r.getSize(),h=t.get("align"),c=t.get("verticalAlign"),p=a&&a.getBoundingRect().clone();if(a&&p.applyTransform(a.transform),X(e)&&(e=e([n,i],o,r.el,p,{viewSize:[s,l],contentSize:u.slice()})),Y(e))n=Ur(e[0],s),i=Ur(e[1],l);else if(q(e)){var d=e;d.width=u[0],d.height=u[1];var f=Cp(d,{width:s,height:l});n=f.x,i=f.y,h=null,c=null}else if(U(e)&&a){var g=function(t,e,n,i){var r=n[0],o=n[1],a=Math.ceil(Math.SQRT2*i)+8,s=0,l=0,u=e.width,h=e.height;switch(t){case"inside":s=e.x+u/2-r/2,l=e.y+h/2-o/2;break;case"top":s=e.x+u/2-r/2,l=e.y-o-a;break;case"bottom":s=e.x+u/2-r/2,l=e.y+h+a;break;case"left":s=e.x-r-a,l=e.y+h/2-o/2;break;case"right":s=e.x+u+a,l=e.y+h/2-o/2}return[s,l]}(e,p,u,t.get("borderWidth"));n=g[0],i=g[1]}else{g=function(t,e,n,i,r,o,a){var s=n.getSize(),l=s[0],u=s[1];null!=o&&(t+l+o+2>i?t-=l+o:t+=o);null!=a&&(e+u+a>r?e-=u+a:e+=a);return[t,e]}(n,i,r,s,l,h?null:20,c?null:20);n=g[0],i=g[1]}if(h&&(n-=yV(h)?u[0]/2:"right"===h?u[0]:0),c&&(i-=yV(c)?u[1]/2:"bottom"===c?u[1]:0),$z(t)){g=function(t,e,n,i,r){var o=n.getSize(),a=o[0],s=o[1];return t=Math.min(t+a,i)-a,e=Math.min(e+s,r)-s,t=Math.max(t,0),e=Math.max(e,0),[t,e]}(n,i,r,s,l);n=g[0],i=g[1]}r.moveTo(n,i)},e.prototype._updateContentNotChangedOnAxis=function(t,e){var n=this._lastDataByCoordSys,i=this._cbParamsList,r=!!n&&n.length===t.length;return r&&E(n,(function(n,o){var a=n.dataByAxis||[],s=(t[o]||{}).dataByAxis||[];(r=r&&a.length===s.length)&&E(a,(function(t,n){var o=s[n]||{},a=t.seriesDataIndices||[],l=o.seriesDataIndices||[];(r=r&&t.value===o.value&&t.axisType===o.axisType&&t.axisId===o.axisId&&a.length===l.length)&&E(a,(function(t,e){var n=l[e];r=r&&t.seriesIndex===n.seriesIndex&&t.dataIndex===n.dataIndex})),i&&E(t.seriesDataIndices,(function(t){var n=t.seriesIndex,o=e[n],a=i[n];o&&a&&a.data!==o.data&&(r=!1)}))}))})),this._lastDataByCoordSys=t,this._cbParamsList=e,!!r},e.prototype._hide=function(t){this._lastDataByCoordSys=null,t({type:"hideTip",from:this.uid})},e.prototype.dispose=function(t,e){!r.node&&e.getDom()&&(Gg(this,"_updatePosition"),this._tooltipContent.dispose(),_N("itemTooltip",e))},e.type="tooltip",e}(Tg);function fV(t,e,n){var i,r=e.ecModel;n?(i=new Mc(n,r,r),i=new Mc(e.option,i,r)):i=e;for(var o=t.length-1;o>=0;o--){var a=t[o];a&&(a instanceof Mc&&(a=a.get("tooltip",!0)),U(a)&&(a={formatter:a}),a&&(i=new Mc(a,i,r)))}return i}function gV(t,e){return t.dispatchAction||W(e.dispatchAction,e)}function yV(t){return"center"===t||"middle"===t}var vV=["rect","polygon","keep","clear"];function mV(t,e){var n=bo(t?t.brush:[]);if(n.length){var i=[];E(n,(function(t){var e=t.hasOwnProperty("toolbox")?t.toolbox:[];e instanceof Array&&(i=i.concat(e))}));var r=t&&t.toolbox;Y(r)&&(r=r[0]),r||(r={feature:{}},t.toolbox=[r]);var o=r.feature||(r.feature={}),a=o.brush||(o.brush={}),s=a.type||(a.type=[]);s.push.apply(s,i),function(t){var e={};E(t,(function(t){e[t]=1})),t.length=0,E(e,(function(e,n){t.push(n)}))}(s),e&&!s.length&&s.push.apply(s,vV)}}var xV=E;function _V(t){if(t)for(var e in t)if(t.hasOwnProperty(e))return!0}function bV(t,e,n){var i={};return xV(e,(function(e){var r,o=i[e]=((r=function(){}).prototype.__hidden=r.prototype,new r);xV(t[e],(function(t,i){if(_D.isValidType(i)){var r={type:i,visual:t};n&&n(r,e),o[i]=new _D(r),"opacity"===i&&((r=T(r)).type="colorAlpha",o.__hidden.__alphaForOpacity=new _D(r))}}))})),i}function wV(t,e,n){var i;E(n,(function(t){e.hasOwnProperty(t)&&_V(e[t])&&(i=!0)})),i&&E(n,(function(n){e.hasOwnProperty(n)&&_V(e[n])?t[n]=T(e[n]):delete t[n]}))}var SV={lineX:MV(0),lineY:MV(1),rect:{point:function(t,e,n){return t&&n.boundingRect.contain(t[0],t[1])},rect:function(t,e,n){return t&&n.boundingRect.intersect(t)}},polygon:{point:function(t,e,n){return t&&n.boundingRect.contain(t[0],t[1])&&A_(n.range,t[0],t[1])},rect:function(t,e,n){var i=n.range;if(!t||i.length<=1)return!1;var r=t.x,o=t.y,a=t.width,s=t.height,l=i[0];return!!(A_(i,r,o)||A_(i,r+a,o)||A_(i,r,o+s)||A_(i,r+a,o+s)||ze.create(t).contain(l[0],l[1])||Yh(r,o,r+a,o,i)||Yh(r,o,r,o+s,i)||Yh(r+a,o,r+a,o+s,i)||Yh(r,o+s,r+a,o+s,i))||void 0}}};function MV(t){var e=["x","y"],n=["width","height"];return{point:function(e,n,i){if(e){var r=i.range;return IV(e[t],r)}},rect:function(i,r,o){if(i){var a=o.range,s=[i[e[t]],i[e[t]]+i[n[t]]];return s[1]e[0][1]&&(e[0][1]=o[0]),o[1]e[1][1]&&(e[1][1]=o[1])}return e&&RV(e)}};function RV(t){return new ze(t[0][0],t[1][0],t[0][1]-t[0][0],t[1][1]-t[1][0])}var NV=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n}return n(e,t),e.prototype.init=function(t,e){this.ecModel=t,this.api=e,this.model,(this._brushController=new Jk(e.getZr())).on("brush",W(this._onBrush,this)).mount()},e.prototype.render=function(t,e,n,i){this.model=t,this._updateController(t,e,n,i)},e.prototype.updateTransform=function(t,e,n,i){AV(e),this._updateController(t,e,n,i)},e.prototype.updateVisual=function(t,e,n,i){this.updateTransform(t,e,n,i)},e.prototype.updateView=function(t,e,n,i){this._updateController(t,e,n,i)},e.prototype._updateController=function(t,e,n,i){(!i||i.$from!==t.id)&&this._brushController.setPanels(t.brushTargetManager.makePanelOpts(n)).enableBrush(t.brushOption).updateCovers(t.areas.slice())},e.prototype.dispose=function(){this._brushController.dispose()},e.prototype._onBrush=function(t){var e=this.model.id,n=this.model.brushTargetManager.setOutputRanges(t.areas,this.ecModel);(!t.isEnd||t.removeOnClick)&&this.api.dispatchAction({type:"brush",brushId:e,areas:T(n),$from:e}),t.isEnd&&this.api.dispatchAction({type:"brushEnd",brushId:e,areas:T(n),$from:e})},e.type="brush",e}(Tg),EV=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n.areas=[],n.brushOption={},n}return n(e,t),e.prototype.optionUpdated=function(t,e){var n=this.option;!e&&wV(n,t,["inBrush","outOfBrush"]);var i=n.inBrush=n.inBrush||{};n.outOfBrush=n.outOfBrush||{color:"#ddd"},i.hasOwnProperty("liftZ")||(i.liftZ=5)},e.prototype.setAreas=function(t){t&&(this.areas=z(t,(function(t){return zV(this.option,t)}),this))},e.prototype.setBrushOption=function(t){this.brushOption=zV(this.option,t),this.brushType=this.brushOption.brushType},e.type="brush",e.dependencies=["geo","grid","xAxis","yAxis","parallel","series"],e.defaultOption={seriesIndex:"all",brushType:"rect",brushMode:"single",transformable:!0,brushStyle:{borderWidth:1,color:"rgba(210,219,238,0.3)",borderColor:"#D2DBEE"},throttleType:"fixRate",throttleDelay:0,removeOnClick:!0,z:1e4},e}(Rp);function zV(t,e){return C({brushType:t.brushType,brushMode:t.brushMode,transformable:t.transformable,brushStyle:new Mc(t.brushStyle).getItemStyle(),removeOnClick:t.removeOnClick,z:t.z},e,!0)}var VV=["rect","polygon","lineX","lineY","keep","clear"],BV=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return n(e,t),e.prototype.render=function(t,e,n){var i,r,o;e.eachComponent({mainType:"brush"},(function(t){i=t.brushType,r=t.brushOption.brushMode||"single",o=o||!!t.areas.length})),this._brushType=i,this._brushMode=r,E(t.get("type",!0),(function(e){t.setIconStatus(e,("keep"===e?"multiple"===r:"clear"===e?o:e===i)?"emphasis":"normal")}))},e.prototype.updateView=function(t,e,n){this.render(t,e,n)},e.prototype.getIcons=function(){var t=this.model,e=t.get("icon",!0),n={};return E(t.get("type",!0),(function(t){e[t]&&(n[t]=e[t])})),n},e.prototype.onclick=function(t,e,n){var i=this._brushType,r=this._brushMode;"clear"===n?(e.dispatchAction({type:"axisAreaSelect",intervals:[]}),e.dispatchAction({type:"brush",command:"clear",areas:[]})):e.dispatchAction({type:"takeGlobalCursor",key:"brush",brushOption:{brushType:"keep"===n?i:i!==n&&n,brushMode:"keep"===n?"multiple"===r?"single":"multiple":r}})},e.getDefaultOption=function(t){return{show:!0,type:VV.slice(),icon:{rect:"M7.3,34.7 M0.4,10V-0.2h9.8 M89.6,10V-0.2h-9.8 M0.4,60v10.2h9.8 M89.6,60v10.2h-9.8 M12.3,22.4V10.5h13.1 M33.6,10.5h7.8 M49.1,10.5h7.8 M77.5,22.4V10.5h-13 M12.3,31.1v8.2 M77.7,31.1v8.2 M12.3,47.6v11.9h13.1 M33.6,59.5h7.6 M49.1,59.5 h7.7 M77.5,47.6v11.9h-13",polygon:"M55.2,34.9c1.7,0,3.1,1.4,3.1,3.1s-1.4,3.1-3.1,3.1 s-3.1-1.4-3.1-3.1S53.5,34.9,55.2,34.9z M50.4,51c1.7,0,3.1,1.4,3.1,3.1c0,1.7-1.4,3.1-3.1,3.1c-1.7,0-3.1-1.4-3.1-3.1 C47.3,52.4,48.7,51,50.4,51z M55.6,37.1l1.5-7.8 M60.1,13.5l1.6-8.7l-7.8,4 M59,19l-1,5.3 M24,16.1l6.4,4.9l6.4-3.3 M48.5,11.6 l-5.9,3.1 M19.1,12.8L9.7,5.1l1.1,7.7 M13.4,29.8l1,7.3l6.6,1.6 M11.6,18.4l1,6.1 M32.8,41.9 M26.6,40.4 M27.3,40.2l6.1,1.6 M49.9,52.1l-5.6-7.6l-4.9-1.2",lineX:"M15.2,30 M19.7,15.6V1.9H29 M34.8,1.9H40.4 M55.3,15.6V1.9H45.9 M19.7,44.4V58.1H29 M34.8,58.1H40.4 M55.3,44.4 V58.1H45.9 M12.5,20.3l-9.4,9.6l9.6,9.8 M3.1,29.9h16.5 M62.5,20.3l9.4,9.6L62.3,39.7 M71.9,29.9H55.4",lineY:"M38.8,7.7 M52.7,12h13.2v9 M65.9,26.6V32 M52.7,46.3h13.2v-9 M24.9,12H11.8v9 M11.8,26.6V32 M24.9,46.3H11.8v-9 M48.2,5.1l-9.3-9l-9.4,9.2 M38.9-3.9V12 M48.2,53.3l-9.3,9l-9.4-9.2 M38.9,62.3V46.4",keep:"M4,10.5V1h10.3 M20.7,1h6.1 M33,1h6.1 M55.4,10.5V1H45.2 M4,17.3v6.6 M55.6,17.3v6.6 M4,30.5V40h10.3 M20.7,40 h6.1 M33,40h6.1 M55.4,30.5V40H45.2 M21,18.9h62.9v48.6H21V18.9z",clear:"M22,14.7l30.9,31 M52.9,14.7L22,45.7 M4.7,16.8V4.2h13.1 M26,4.2h7.8 M41.6,4.2h7.8 M70.3,16.8V4.2H57.2 M4.7,25.9v8.6 M70.3,25.9v8.6 M4.7,43.2v12.6h13.1 M26,55.8h7.8 M41.6,55.8h7.8 M70.3,43.2v12.6H57.2"},title:t.getLocaleModel().get(["toolbox","brush","title"])}},e}(lz);var FV=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n.layoutMode={type:"box",ignoreSize:!0},n}return n(e,t),e.type="title",e.defaultOption={z:6,show:!0,text:"",target:"blank",subtext:"",subtarget:"blank",left:0,top:0,backgroundColor:"rgba(0,0,0,0)",borderColor:"#ccc",borderWidth:0,padding:5,itemGap:10,textStyle:{fontSize:18,fontWeight:"bold",color:"#464646"},subtextStyle:{fontSize:12,color:"#6E7079"}},e}(Rp),GV=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n}return n(e,t),e.prototype.render=function(t,e,n){if(this.group.removeAll(),t.get("show")){var i=this.group,r=t.getModel("textStyle"),o=t.getModel("subtextStyle"),a=t.get("textAlign"),s=rt(t.get("textBaseline"),t.get("textVerticalAlign")),l=new Fs({style:nc(r,{text:t.get("text"),fill:r.getTextColor()},{disableBox:!0}),z2:10}),u=l.getBoundingRect(),h=t.get("subtext"),c=new Fs({style:nc(o,{text:h,fill:o.getTextColor(),y:u.height+t.get("itemGap"),verticalAlign:"top"},{disableBox:!0}),z2:10}),p=t.get("link"),d=t.get("sublink"),f=t.get("triggerEvent",!0);l.silent=!p&&!f,c.silent=!d&&!f,p&&l.on("click",(function(){bp(p,"_"+t.get("target"))})),d&&c.on("click",(function(){bp(d,"_"+t.get("subtarget"))})),Qs(l).eventData=Qs(c).eventData=f?{componentType:"title",componentIndex:t.componentIndex}:null,i.add(l),h&&i.add(c);var g=i.getBoundingRect(),y=t.getBoxLayoutParams();y.width=g.width,y.height=g.height;var v=Cp(y,{width:n.getWidth(),height:n.getHeight()},t.get("padding"));a||("middle"===(a=t.get("left")||t.get("right"))&&(a="center"),"right"===a?v.x+=v.width:"center"===a&&(v.x+=v.width/2)),s||("center"===(s=t.get("top")||t.get("bottom"))&&(s="middle"),"bottom"===s?v.y+=v.height:"middle"===s&&(v.y+=v.height/2),s=s||"top"),i.x=v.x,i.y=v.y,i.markRedraw();var m={align:a,verticalAlign:s};l.setStyle(m),c.setStyle(m),g=i.getBoundingRect();var x=v.margin,_=t.getItemStyle(["color","opacity"]);_.fill=t.get("backgroundColor");var b=new zs({shape:{x:g.x-x[3],y:g.y-x[0],width:g.width+x[1]+x[3],height:g.height+x[0]+x[2],r:t.get("borderRadius")},style:_,subPixelOptimize:!0,silent:!0});i.add(b)}},e.type="title",e}(Tg);var WV=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n.layoutMode="box",n}return n(e,t),e.prototype.init=function(t,e,n){this.mergeDefaultAndTheme(t,n),this._initData()},e.prototype.mergeOption=function(e){t.prototype.mergeOption.apply(this,arguments),this._initData()},e.prototype.setCurrentIndex=function(t){null==t&&(t=this.option.currentIndex);var e=this._data.count();this.option.loop?t=(t%e+e)%e:(t>=e&&(t=e-1),t<0&&(t=0)),this.option.currentIndex=t},e.prototype.getCurrentIndex=function(){return this.option.currentIndex},e.prototype.isIndexMax=function(){return this.getCurrentIndex()>=this._data.count()-1},e.prototype.setPlayState=function(t){this.option.autoPlay=!!t},e.prototype.getPlayState=function(){return!!this.option.autoPlay},e.prototype._initData=function(){var t,e=this.option,n=e.data||[],i=e.axisType,r=this._names=[];"category"===i?(t=[],E(n,(function(e,n){var i,o=Ao(Mo(e),"");q(e)?(i=T(e)).value=n:i=n,t.push(i),r.push(o)}))):t=n;var o={category:"ordinal",time:"time",value:"number"}[i]||"number";(this._data=new lx([{name:"value",type:o}],this)).initData(t,r)},e.prototype.getData=function(){return this._data},e.prototype.getCategories=function(){if("category"===this.get("axisType"))return this._names.slice()},e.type="timeline",e.defaultOption={z:4,show:!0,axisType:"time",realtime:!0,left:"20%",top:null,right:"20%",bottom:0,width:null,height:40,padding:5,controlPosition:"left",autoPlay:!1,rewind:!1,loop:!0,playInterval:2e3,currentIndex:0,itemStyle:{},label:{color:"#000"},data:[]},e}(Rp),HV=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n}return n(e,t),e.type="timeline.slider",e.defaultOption=Cc(WV.defaultOption,{backgroundColor:"rgba(0,0,0,0)",borderColor:"#ccc",borderWidth:0,orient:"horizontal",inverse:!1,tooltip:{trigger:"item"},symbol:"circle",symbolSize:12,lineStyle:{show:!0,width:2,color:"#DAE1F5"},label:{position:"auto",show:!0,interval:"auto",rotate:0,color:"#A4B1D7"},itemStyle:{color:"#A4B1D7",borderWidth:1},checkpointStyle:{symbol:"circle",symbolSize:15,color:"#316bf3",borderColor:"#fff",borderWidth:2,shadowBlur:2,shadowOffsetX:1,shadowOffsetY:1,shadowColor:"rgba(0, 0, 0, 0.3)",animation:!0,animationDuration:300,animationEasing:"quinticInOut"},controlStyle:{show:!0,showPlayBtn:!0,showPrevBtn:!0,showNextBtn:!0,itemSize:24,itemGap:12,position:"left",playIcon:"path://M31.6,53C17.5,53,6,41.5,6,27.4S17.5,1.8,31.6,1.8C45.7,1.8,57.2,13.3,57.2,27.4S45.7,53,31.6,53z M31.6,3.3 C18.4,3.3,7.5,14.1,7.5,27.4c0,13.3,10.8,24.1,24.1,24.1C44.9,51.5,55.7,40.7,55.7,27.4C55.7,14.1,44.9,3.3,31.6,3.3z M24.9,21.3 c0-2.2,1.6-3.1,3.5-2l10.5,6.1c1.899,1.1,1.899,2.9,0,4l-10.5,6.1c-1.9,1.1-3.5,0.2-3.5-2V21.3z",stopIcon:"path://M30.9,53.2C16.8,53.2,5.3,41.7,5.3,27.6S16.8,2,30.9,2C45,2,56.4,13.5,56.4,27.6S45,53.2,30.9,53.2z M30.9,3.5C17.6,3.5,6.8,14.4,6.8,27.6c0,13.3,10.8,24.1,24.101,24.1C44.2,51.7,55,40.9,55,27.6C54.9,14.4,44.1,3.5,30.9,3.5z M36.9,35.8c0,0.601-0.4,1-0.9,1h-1.3c-0.5,0-0.9-0.399-0.9-1V19.5c0-0.6,0.4-1,0.9-1H36c0.5,0,0.9,0.4,0.9,1V35.8z M27.8,35.8 c0,0.601-0.4,1-0.9,1h-1.3c-0.5,0-0.9-0.399-0.9-1V19.5c0-0.6,0.4-1,0.9-1H27c0.5,0,0.9,0.4,0.9,1L27.8,35.8L27.8,35.8z",nextIcon:"M2,18.5A1.52,1.52,0,0,1,.92,18a1.49,1.49,0,0,1,0-2.12L7.81,9.36,1,3.11A1.5,1.5,0,1,1,3,.89l8,7.34a1.48,1.48,0,0,1,.49,1.09,1.51,1.51,0,0,1-.46,1.1L3,18.08A1.5,1.5,0,0,1,2,18.5Z",prevIcon:"M10,.5A1.52,1.52,0,0,1,11.08,1a1.49,1.49,0,0,1,0,2.12L4.19,9.64,11,15.89a1.5,1.5,0,1,1-2,2.22L1,10.77A1.48,1.48,0,0,1,.5,9.68,1.51,1.51,0,0,1,1,8.58L9,.92A1.5,1.5,0,0,1,10,.5Z",prevBtnSize:18,nextBtnSize:18,color:"#A4B1D7",borderColor:"#A4B1D7",borderWidth:1},emphasis:{label:{show:!0,color:"#6f778d"},itemStyle:{color:"#316BF3"},controlStyle:{color:"#316BF3",borderColor:"#316BF3",borderWidth:2}},progress:{lineStyle:{color:"#316BF3"},itemStyle:{color:"#316BF3"},label:{color:"#6f778d"}},data:[]}),e}(WV);R(HV,vf.prototype);var YV=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n}return n(e,t),e.type="timeline",e}(Tg),XV=function(t){function e(e,n,i,r){var o=t.call(this,e,n,i)||this;return o.type=r||"value",o}return n(e,t),e.prototype.getLabelModel=function(){return this.model.getModel("label")},e.prototype.isHorizontal=function(){return"horizontal"===this.model.get("orient")},e}(nb),UV=Math.PI,ZV=Oo(),jV=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n}return n(e,t),e.prototype.init=function(t,e){this.api=e},e.prototype.render=function(t,e,n){if(this.model=t,this.api=n,this.ecModel=e,this.group.removeAll(),t.get("show",!0)){var i=this._layout(t,n),r=this._createGroup("_mainGroup"),o=this._createGroup("_labelGroup"),a=this._axis=this._createAxis(i,t);t.formatTooltip=function(t){return ng("nameValue",{noName:!0,value:a.scale.getLabel({value:t})})},E(["AxisLine","AxisTick","Control","CurrentPointer"],(function(e){this["_render"+e](i,r,a,t)}),this),this._renderAxisLabel(i,o,a,t),this._position(i,t)}this._doPlayStop(),this._updateTicksStatus()},e.prototype.remove=function(){this._clearTimer(),this.group.removeAll()},e.prototype.dispose=function(){this._clearTimer()},e.prototype._layout=function(t,e){var n,i,r,o,a=t.get(["label","position"]),s=t.get("orient"),l=function(t,e){return Cp(t.getBoxLayoutParams(),{width:e.getWidth(),height:e.getHeight()},t.get("padding"))}(t,e),u={horizontal:"center",vertical:(n=null==a||"auto"===a?"horizontal"===s?l.y+l.height/2=0||"+"===n?"left":"right"},h={horizontal:n>=0||"+"===n?"top":"bottom",vertical:"middle"},c={horizontal:0,vertical:UV/2},p="vertical"===s?l.height:l.width,d=t.getModel("controlStyle"),f=d.get("show",!0),g=f?d.get("itemSize"):0,y=f?d.get("itemGap"):0,v=g+y,m=t.get(["label","rotate"])||0;m=m*UV/180;var x=d.get("position",!0),_=f&&d.get("showPlayBtn",!0),b=f&&d.get("showPrevBtn",!0),w=f&&d.get("showNextBtn",!0),S=0,M=p;"left"===x||"bottom"===x?(_&&(i=[0,0],S+=v),b&&(r=[S,0],S+=v),w&&(o=[M-g,0],M-=v)):(_&&(i=[M-g,0],M-=v),b&&(r=[0,0],S+=v),w&&(o=[M-g,0],M-=v));var I=[S,M];return t.get("inverse")&&I.reverse(),{viewRect:l,mainLength:p,orient:s,rotation:c[s],labelRotation:m,labelPosOpt:n,labelAlign:t.get(["label","align"])||u[s],labelBaseline:t.get(["label","verticalAlign"])||t.get(["label","baseline"])||h[s],playPosition:i,prevBtnPosition:r,nextBtnPosition:o,axisExtent:I,controlSize:g,controlGap:y}},e.prototype._position=function(t,e){var n=this._mainGroup,i=this._labelGroup,r=t.viewRect;if("vertical"===t.orient){var o=[1,0,0,1,0,0],a=r.x,s=r.y+r.height;we(o,o,[-a,-s]),Se(o,o,-UV/2),we(o,o,[a,s]),(r=r.clone()).applyTransform(o)}var l=y(r),u=y(n.getBoundingRect()),h=y(i.getBoundingRect()),c=[n.x,n.y],p=[i.x,i.y];p[0]=c[0]=l[0][0];var d,f=t.labelPosOpt;null==f||U(f)?(v(c,u,l,1,d="+"===f?0:1),v(p,h,l,1,1-d)):(v(c,u,l,1,d=f>=0?0:1),p[1]=c[1]+f);function g(t){t.originX=l[0][0]-t.x,t.originY=l[1][0]-t.y}function y(t){return[[t.x,t.x+t.width],[t.y,t.y+t.height]]}function v(t,e,n,i,r){t[i]+=n[i][r]-e[i][r]}n.setPosition(c),i.setPosition(p),n.rotation=i.rotation=t.rotation,g(n),g(i)},e.prototype._createAxis=function(t,e){var n=e.getData(),i=e.get("axisType"),r=function(t,e){if(e=e||t.get("type"),e)switch(e){case"category":return new Lx({ordinalMeta:t.getCategories(),extent:[1/0,-1/0]});case"time":return new Zx({locale:t.ecModel.getLocaleModel(),useUTC:t.ecModel.get("useUTC")});default:return new Ox}}(e,i);r.getTicks=function(){return n.mapArray(["value"],(function(t){return{value:t}}))};var o=n.getDataExtent("value");r.setExtent(o[0],o[1]),r.calcNiceTicks();var a=new XV("value",r,t.axisExtent,i);return a.model=e,a},e.prototype._createGroup=function(t){var e=this[t]=new zr;return this.group.add(e),e},e.prototype._renderAxisLine=function(t,e,n,i){var r=n.getExtent();if(i.get(["lineStyle","show"])){var o=new Zu({shape:{x1:r[0],y1:0,x2:r[1],y2:0},style:A({lineCap:"round"},i.getModel("lineStyle").getLineStyle()),silent:!0,z2:1});e.add(o);var a=this._progressLine=new Zu({shape:{x1:r[0],x2:this._currentPointer?this._currentPointer.x:r[0],y1:0,y2:0},style:k({lineCap:"round",lineWidth:o.style.lineWidth},i.getModel(["progress","lineStyle"]).getLineStyle()),silent:!0,z2:1});e.add(a)}},e.prototype._renderAxisTick=function(t,e,n,i){var r=this,o=i.getData(),a=n.scale.getTicks();this._tickSymbols=[],E(a,(function(t){var a=n.dataToCoord(t.value),s=o.getItemModel(t.value),l=s.getModel("itemStyle"),u=s.getModel(["emphasis","itemStyle"]),h=s.getModel(["progress","itemStyle"]),c={x:a,y:0,onclick:W(r._changeTimeline,r,t.value)},p=qV(s,l,e,c);p.ensureState("emphasis").style=u.getItemStyle(),p.ensureState("progress").style=h.getItemStyle(),Hl(p);var d=Qs(p);s.get("tooltip")?(d.dataIndex=t.value,d.dataModel=i):d.dataIndex=d.dataModel=null,r._tickSymbols.push(p)}))},e.prototype._renderAxisLabel=function(t,e,n,i){var r=this;if(n.getLabelModel().get("show")){var o=i.getData(),a=n.getViewLabels();this._tickLabels=[],E(a,(function(i){var a=i.tickValue,s=o.getItemModel(a),l=s.getModel("label"),u=s.getModel(["emphasis","label"]),h=s.getModel(["progress","label"]),c=n.dataToCoord(i.tickValue),p=new Fs({x:c,y:0,rotation:t.labelRotation-t.rotation,onclick:W(r._changeTimeline,r,a),silent:!1,style:nc(l,{text:i.formattedLabel,align:t.labelAlign,verticalAlign:t.labelBaseline})});p.ensureState("emphasis").style=nc(u),p.ensureState("progress").style=nc(h),e.add(p),Hl(p),ZV(p).dataIndex=a,r._tickLabels.push(p)}))}},e.prototype._renderControl=function(t,e,n,i){var r=t.controlSize,o=t.rotation,a=i.getModel("controlStyle").getItemStyle(),s=i.getModel(["emphasis","controlStyle"]).getItemStyle(),l=i.getPlayState(),u=i.get("inverse",!0);function h(t,n,l,u){if(t){var h=Ir(rt(i.get(["controlStyle",n+"BtnSize"]),r),r),c=function(t,e,n,i){var r=i.style,o=Hh(t.get(["controlStyle",e]),i||{},new ze(n[0],n[1],n[2],n[3]));r&&o.setStyle(r);return o}(i,n+"Icon",[0,-h/2,h,h],{x:t[0],y:t[1],originX:r/2,originY:0,rotation:u?-o:0,rectHover:!0,style:a,onclick:l});c.ensureState("emphasis").style=s,e.add(c),Hl(c)}}h(t.nextBtnPosition,"next",W(this._changeTimeline,this,u?"-":"+")),h(t.prevBtnPosition,"prev",W(this._changeTimeline,this,u?"+":"-")),h(t.playPosition,l?"stop":"play",W(this._handlePlayClick,this,!l),!0)},e.prototype._renderCurrentPointer=function(t,e,n,i){var r=i.getData(),o=i.getCurrentIndex(),a=r.getItemModel(o).getModel("checkpointStyle"),s=this,l={onCreate:function(t){t.draggable=!0,t.drift=W(s._handlePointerDrag,s),t.ondragend=W(s._handlePointerDragend,s),KV(t,s._progressLine,o,n,i,!0)},onUpdate:function(t){KV(t,s._progressLine,o,n,i)}};this._currentPointer=qV(a,a,this._mainGroup,{},this._currentPointer,l)},e.prototype._handlePlayClick=function(t){this._clearTimer(),this.api.dispatchAction({type:"timelinePlayChange",playState:t,from:this.uid})},e.prototype._handlePointerDrag=function(t,e,n){this._clearTimer(),this._pointerChangeTimeline([n.offsetX,n.offsetY])},e.prototype._handlePointerDragend=function(t){this._pointerChangeTimeline([t.offsetX,t.offsetY],!0)},e.prototype._pointerChangeTimeline=function(t,e){var n=this._toAxisCoord(t)[0],i=jr(this._axis.getExtent().slice());n>i[1]&&(n=i[1]),n=0&&(a[o]=+a[o].toFixed(c)),[a,h]}var sB={min:H(aB,"min"),max:H(aB,"max"),average:H(aB,"average"),median:H(aB,"median")};function lB(t,e){if(e){var n=t.getData(),i=t.coordinateSystem,r=i&&i.dimensions;if(!function(t){return!isNaN(parseFloat(t.x))&&!isNaN(parseFloat(t.y))}(e)&&!Y(e.coord)&&Y(r)){var o=uB(e,n,i,t);if((e=T(e)).type&&sB[e.type]&&o.baseAxis&&o.valueAxis){var a=P(r,o.baseAxis.dim),s=P(r,o.valueAxis.dim),l=sB[e.type](n,o.baseDataDim,o.valueDataDim,a,s);e.coord=l[0],e.value=l[1]}else e.coord=[null!=e.xAxis?e.xAxis:e.radiusAxis,null!=e.yAxis?e.yAxis:e.angleAxis]}if(null!=e.coord&&Y(r))for(var u=e.coord,h=0;h<2;h++)sB[u[h]]&&(u[h]=pB(n,n.mapDimension(r[h]),u[h]));else e.coord=[];return e}}function uB(t,e,n,i){var r={};return null!=t.valueIndex||null!=t.valueDim?(r.valueDataDim=null!=t.valueIndex?e.getDimension(t.valueIndex):t.valueDim,r.valueAxis=n.getAxis(function(t,e){var n=t.getData().getDimensionInfo(e);return n&&n.coordDim}(i,r.valueDataDim)),r.baseAxis=n.getOtherAxis(r.valueAxis),r.baseDataDim=e.mapDimension(r.baseAxis.dim)):(r.baseAxis=i.getBaseAxis(),r.valueAxis=n.getOtherAxis(r.baseAxis),r.baseDataDim=e.mapDimension(r.baseAxis.dim),r.valueDataDim=e.mapDimension(r.valueAxis.dim)),r}function hB(t,e){return!(t&&t.containData&&e.coord&&!oB(e))||t.containData(e.coord)}function cB(t,e){return t?function(t,n,i,r){return wf(r<2?t.coord&&t.coord[r]:t.value,e[r])}:function(t,n,i,r){return wf(t.value,e[r])}}function pB(t,e,n){if("average"===n){var i=0,r=0;return t.each(e,(function(t,e){isNaN(t)||(i+=t,r++)})),i/r}return"median"===n?t.getMedian(e):t.getDataExtent(e)["max"===n?1:0]}var dB=Oo(),fB=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n}return n(e,t),e.prototype.init=function(){this.markerGroupMap=yt()},e.prototype.render=function(t,e,n){var i=this,r=this.markerGroupMap;r.each((function(t){dB(t).keep=!1})),e.eachSeries((function(t){var r=iB.getMarkerModelFromSeries(t,i.type);r&&i.renderSeries(t,r,e,n)})),r.each((function(t){!dB(t).keep&&i.group.remove(t.group)}))},e.prototype.markKeep=function(t){dB(t).keep=!0},e.prototype.toggleBlurSeries=function(t,e){var n=this;E(t,(function(t){var i=iB.getMarkerModelFromSeries(t,n.type);i&&i.getData().eachItemGraphicEl((function(t){t&&(e?Pl(t):Ol(t))}))}))},e.type="marker",e}(Tg);function gB(t,e,n){var i=e.coordinateSystem;t.each((function(r){var o,a=t.getItemModel(r),s=Ur(a.get("x"),n.getWidth()),l=Ur(a.get("y"),n.getHeight());if(isNaN(s)||isNaN(l)){if(e.getMarkerPosition)o=e.getMarkerPosition(t.getValues(t.dimensions,r));else if(i){var u=t.get(i.dimensions[0],r),h=t.get(i.dimensions[1],r);o=i.dataToPoint([u,h])}}else o=[s,l];isNaN(s)||(o[0]=s),isNaN(l)||(o[1]=l),t.setItemLayout(r,o)}))}var yB=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n}return n(e,t),e.prototype.updateTransform=function(t,e,n){e.eachSeries((function(t){var e=iB.getMarkerModelFromSeries(t,"markPoint");e&&(gB(e.getData(),t,n),this.markerGroupMap.get(t.id).updateLayout())}),this)},e.prototype.renderSeries=function(t,e,n,i){var r=t.coordinateSystem,o=t.id,a=t.getData(),s=this.markerGroupMap,l=s.get(o)||s.set(o,new hS),u=function(t,e,n){var i;i=t?z(t&&t.dimensions,(function(t){return A(A({},e.getData().getDimensionInfo(e.getData().mapDimension(t))||{}),{name:t,ordinalMeta:null})})):[{name:"value",type:"float"}];var r=new lx(i,n),o=z(n.get("data"),H(lB,e));t&&(o=B(o,H(hB,t)));var a=cB(!!t,i);return r.initData(o,null,a),r}(r,t,e);e.setData(u),gB(e.getData(),t,i),u.each((function(t){var n=u.getItemModel(t),i=n.getShallow("symbol"),r=n.getShallow("symbolSize"),o=n.getShallow("symbolRotate"),s=n.getShallow("symbolOffset"),l=n.getShallow("symbolKeepAspect");if(X(i)||X(r)||X(o)||X(s)){var h=e.getRawValue(t),c=e.getDataParams(t);X(i)&&(i=i(h,c)),X(r)&&(r=r(h,c)),X(o)&&(o=o(h,c)),X(s)&&(s=s(h,c))}var p=n.getModel("itemStyle").getItemStyle(),d=Ty(a,"color");p.fill||(p.fill=d),u.setItemVisual(t,{symbol:i,symbolSize:r,symbolRotate:o,symbolOffset:s,symbolKeepAspect:l,style:p})})),l.updateData(u),this.group.add(l.group),u.eachItemGraphicEl((function(t){t.traverse((function(t){Qs(t).dataModel=e}))})),this.markKeep(l),l.group.silent=e.get("silent")||t.get("silent")},e.type="markPoint",e}(fB);var vB=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n}return n(e,t),e.prototype.createMarkerModelFromSeries=function(t,n,i){return new e(t,n,i)},e.type="markLine",e.defaultOption={z:5,symbol:["circle","arrow"],symbolSize:[8,16],symbolOffset:0,precision:2,tooltip:{trigger:"item"},label:{show:!0,position:"end",distance:5},lineStyle:{type:"dashed"},emphasis:{label:{show:!0},lineStyle:{width:3}},animationEasing:"linear"},e}(iB),mB=Oo(),xB=function(t,e,n,i){var r,o=t.getData();if(Y(i))r=i;else{var a=i.type;if("min"===a||"max"===a||"average"===a||"median"===a||null!=i.xAxis||null!=i.yAxis){var s=void 0,l=void 0;if(null!=i.yAxis||null!=i.xAxis)s=e.getAxis(null!=i.yAxis?"y":"x"),l=it(i.yAxis,i.xAxis);else{var u=uB(i,o,e,t);s=u.valueAxis,l=pB(o,yx(o,u.valueDataDim),a)}var h="x"===s.dim?0:1,c=1-h,p=T(i),d={coord:[]};p.type=null,p.coord=[],p.coord[c]=-1/0,d.coord[c]=1/0;var f=n.get("precision");f>=0&&j(l)&&(l=+l.toFixed(Math.min(f,20))),p.coord[h]=d.coord[h]=l,r=[p,d,{type:a,valueIndex:i.valueIndex,value:l}]}else r=[]}var g=[lB(t,r[0]),lB(t,r[1]),A({},r[2])];return g[2].type=g[2].type||null,C(g[2],g[0]),C(g[2],g[1]),g};function _B(t){return!isNaN(t)&&!isFinite(t)}function bB(t,e,n,i){var r=1-t,o=i.dimensions[t];return _B(e[r])&&_B(n[r])&&e[t]===n[t]&&i.getAxis(o).containData(e[t])}function wB(t,e){if("cartesian2d"===t.type){var n=e[0].coord,i=e[1].coord;if(n&&i&&(bB(1,n,i,t)||bB(0,n,i,t)))return!0}return hB(t,e[0])&&hB(t,e[1])}function SB(t,e,n,i,r){var o,a=i.coordinateSystem,s=t.getItemModel(e),l=Ur(s.get("x"),r.getWidth()),u=Ur(s.get("y"),r.getHeight());if(isNaN(l)||isNaN(u)){if(i.getMarkerPosition)o=i.getMarkerPosition(t.getValues(t.dimensions,e));else{var h=a.dimensions,c=t.get(h[0],e),p=t.get(h[1],e);o=a.dataToPoint([c,p])}if(MS(a,"cartesian2d")){var d=a.getAxis("x"),f=a.getAxis("y");h=a.dimensions;_B(t.get(h[0],e))?o[0]=d.toGlobalCoord(d.getExtent()[n?0:1]):_B(t.get(h[1],e))&&(o[1]=f.toGlobalCoord(f.getExtent()[n?0:1]))}isNaN(l)||(o[0]=l),isNaN(u)||(o[1]=u)}else o=[l,u];t.setItemLayout(e,o)}var MB=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n}return n(e,t),e.prototype.updateTransform=function(t,e,n){e.eachSeries((function(t){var e=iB.getMarkerModelFromSeries(t,"markLine");if(e){var i=e.getData(),r=mB(e).from,o=mB(e).to;r.each((function(e){SB(r,e,!0,t,n),SB(o,e,!1,t,n)})),i.each((function(t){i.setItemLayout(t,[r.getItemLayout(t),o.getItemLayout(t)])})),this.markerGroupMap.get(t.id).updateLayout()}}),this)},e.prototype.renderSeries=function(t,e,n,i){var r=t.coordinateSystem,o=t.id,a=t.getData(),s=this.markerGroupMap,l=s.get(o)||s.set(o,new RA);this.group.add(l.group);var u=function(t,e,n){var i;i=t?z(t&&t.dimensions,(function(t){return A(A({},e.getData().getDimensionInfo(e.getData().mapDimension(t))||{}),{name:t,ordinalMeta:null})})):[{name:"value",type:"float"}];var r=new lx(i,n),o=new lx(i,n),a=new lx([],n),s=z(n.get("data"),H(xB,e,t,n));t&&(s=B(s,H(wB,t)));var l=cB(!!t,i);return r.initData(z(s,(function(t){return t[0]})),null,l),o.initData(z(s,(function(t){return t[1]})),null,l),a.initData(z(s,(function(t){return t[2]}))),a.hasItemOption=!0,{from:r,to:o,line:a}}(r,t,e),h=u.from,c=u.to,p=u.line;mB(e).from=h,mB(e).to=c,e.setData(p);var d=e.get("symbol"),f=e.get("symbolSize"),g=e.get("symbolRotate"),y=e.get("symbolOffset");function v(e,n,r){var o=e.getItemModel(n);SB(e,n,r,t,i);var s=o.getModel("itemStyle").getItemStyle();null==s.fill&&(s.fill=Ty(a,"color")),e.setItemVisual(n,{symbolKeepAspect:o.get("symbolKeepAspect"),symbolOffset:rt(o.get("symbolOffset",!0),y[r?0:1]),symbolRotate:rt(o.get("symbolRotate",!0),g[r?0:1]),symbolSize:rt(o.get("symbolSize"),f[r?0:1]),symbol:rt(o.get("symbol",!0),d[r?0:1]),style:s})}Y(d)||(d=[d,d]),Y(f)||(f=[f,f]),Y(g)||(g=[g,g]),Y(y)||(y=[y,y]),u.from.each((function(t){v(h,t,!0),v(c,t,!1)})),p.each((function(t){var e=p.getItemModel(t).getModel("lineStyle").getLineStyle();p.setItemLayout(t,[h.getItemLayout(t),c.getItemLayout(t)]),null==e.stroke&&(e.stroke=h.getItemVisual(t,"style").fill),p.setItemVisual(t,{fromSymbolKeepAspect:h.getItemVisual(t,"symbolKeepAspect"),fromSymbolOffset:h.getItemVisual(t,"symbolOffset"),fromSymbolRotate:h.getItemVisual(t,"symbolRotate"),fromSymbolSize:h.getItemVisual(t,"symbolSize"),fromSymbol:h.getItemVisual(t,"symbol"),toSymbolKeepAspect:c.getItemVisual(t,"symbolKeepAspect"),toSymbolOffset:c.getItemVisual(t,"symbolOffset"),toSymbolRotate:c.getItemVisual(t,"symbolRotate"),toSymbolSize:c.getItemVisual(t,"symbolSize"),toSymbol:c.getItemVisual(t,"symbol"),style:e})})),l.updateData(p),u.line.eachItemGraphicEl((function(t){Qs(t).dataModel=e,t.traverse((function(t){Qs(t).dataModel=e}))})),this.markKeep(l),l.group.silent=e.get("silent")||t.get("silent")},e.type="markLine",e}(fB);var IB=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n}return n(e,t),e.prototype.createMarkerModelFromSeries=function(t,n,i){return new e(t,n,i)},e.type="markArea",e.defaultOption={z:1,tooltip:{trigger:"item"},animation:!1,label:{show:!0,position:"top"},itemStyle:{borderWidth:0},emphasis:{label:{show:!0,position:"top"}}},e}(iB),TB=Oo(),CB=function(t,e,n,i){var r=i[0],o=i[1];if(r&&o){var a=lB(t,r),s=lB(t,o),l=a.coord,u=s.coord;l[0]=it(l[0],-1/0),l[1]=it(l[1],-1/0),u[0]=it(u[0],1/0),u[1]=it(u[1],1/0);var h=D([{},a,s]);return h.coord=[a.coord,s.coord],h.x0=a.x,h.y0=a.y,h.x1=s.x,h.y1=s.y,h}};function DB(t){return!isNaN(t)&&!isFinite(t)}function AB(t,e,n,i){var r=1-t;return DB(e[r])&&DB(n[r])}function kB(t,e){var n=e.coord[0],i=e.coord[1],r={coord:n,x:e.x0,y:e.y0},o={coord:i,x:e.x1,y:e.y1};return MS(t,"cartesian2d")?!(!n||!i||!AB(1,n,i)&&!AB(0,n,i))||function(t,e,n){return!(t&&t.containZone&&e.coord&&n.coord&&!oB(e)&&!oB(n))||t.containZone(e.coord,n.coord)}(t,r,o):hB(t,r)||hB(t,o)}function LB(t,e,n,i,r){var o,a=i.coordinateSystem,s=t.getItemModel(e),l=Ur(s.get(n[0]),r.getWidth()),u=Ur(s.get(n[1]),r.getHeight());if(isNaN(l)||isNaN(u)){if(i.getMarkerPosition){var h=t.getValues(["x0","y0"],e),c=t.getValues(["x1","y1"],e),p=a.clampData(h),d=a.clampData(c),f=[];"x0"===n[0]?f[0]=p[0]>d[0]?c[0]:h[0]:f[0]=p[0]>d[0]?h[0]:c[0],"y0"===n[1]?f[1]=p[1]>d[1]?c[1]:h[1]:f[1]=p[1]>d[1]?h[1]:c[1],o=i.getMarkerPosition(f,n,!0)}else{var g=[m=t.get(n[0],e),x=t.get(n[1],e)];a.clampData&&a.clampData(g,g),o=a.dataToPoint(g,!0)}if(MS(a,"cartesian2d")){var y=a.getAxis("x"),v=a.getAxis("y"),m=t.get(n[0],e),x=t.get(n[1],e);DB(m)?o[0]=y.toGlobalCoord(y.getExtent()["x0"===n[0]?0:1]):DB(x)&&(o[1]=v.toGlobalCoord(v.getExtent()["y0"===n[1]?0:1]))}isNaN(l)||(o[0]=l),isNaN(u)||(o[1]=u)}else o=[l,u];return o}var PB=[["x0","y0"],["x1","y0"],["x1","y1"],["x0","y1"]],OB=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n}return n(e,t),e.prototype.updateTransform=function(t,e,n){e.eachSeries((function(t){var e=iB.getMarkerModelFromSeries(t,"markArea");if(e){var i=e.getData();i.each((function(e){var r=z(PB,(function(r){return LB(i,e,r,t,n)}));i.setItemLayout(e,r),i.getItemGraphicEl(e).setShape("points",r)}))}}),this)},e.prototype.renderSeries=function(t,e,n,i){var r=t.coordinateSystem,o=t.id,a=t.getData(),s=this.markerGroupMap,l=s.get(o)||s.set(o,{group:new zr});this.group.add(l.group),this.markKeep(l);var u=function(t,e,n){var i,r,o=["x0","y0","x1","y1"];if(t){var a=z(t&&t.dimensions,(function(t){var n=e.getData();return A(A({},n.getDimensionInfo(n.mapDimension(t))||{}),{name:t,ordinalMeta:null})}));r=z(o,(function(t,e){return{name:t,type:a[e%2].type}})),i=new lx(r,n)}else i=new lx(r=[{name:"value",type:"float"}],n);var s=z(n.get("data"),H(CB,e,t,n));t&&(s=B(s,H(kB,t)));var l=t?function(t,e,n,i){return wf(t.coord[Math.floor(i/2)][i%2],r[i])}:function(t,e,n,i){return wf(t.value,r[i])};return i.initData(s,null,l),i.hasItemOption=!0,i}(r,t,e);e.setData(u),u.each((function(e){var n=z(PB,(function(n){return LB(u,e,n,t,i)})),o=r.getAxis("x").scale,s=r.getAxis("y").scale,l=o.getExtent(),h=s.getExtent(),c=[o.parse(u.get("x0",e)),o.parse(u.get("x1",e))],p=[s.parse(u.get("y0",e)),s.parse(u.get("y1",e))];jr(c),jr(p);var d=!!(l[0]>c[1]||l[1]p[1]||h[1]=0},e.prototype.getOrient=function(){return"vertical"===this.get("orient")?{index:1,name:"vertical"}:{index:0,name:"horizontal"}},e.type="legend.plain",e.dependencies=["series"],e.defaultOption={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}},e}(Rp),NB=H,EB=E,zB=zr,VB=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n.newlineDisabled=!1,n}return n(e,t),e.prototype.init=function(){this.group.add(this._contentGroup=new zB),this.group.add(this._selectorGroup=new zB),this._isFirstRender=!0},e.prototype.getContentGroup=function(){return this._contentGroup},e.prototype.getSelectorGroup=function(){return this._selectorGroup},e.prototype.render=function(t,e,n){var i=this._isFirstRender;if(this._isFirstRender=!1,this.resetInner(),t.get("show",!0)){var r=t.get("align"),o=t.get("orient");r&&"auto"!==r||(r="right"===t.get("left")&&"vertical"===o?"right":"left");var a=t.get("selector",!0),s=t.get("selectorPosition",!0);!a||s&&"auto"!==s||(s="horizontal"===o?"end":"start"),this.renderInner(r,t,e,n,a,o,s);var l=t.getBoxLayoutParams(),u={width:n.getWidth(),height:n.getHeight()},h=t.get("padding"),c=Cp(l,u,h),p=this.layoutInner(t,r,c,i,a,s),d=Cp(k({width:p.width,height:p.height},l),u,h);this.group.x=d.x-p.x,this.group.y=d.y-p.y,this.group.markRedraw(),this.group.add(this._backgroundEl=dz(p,t))}},e.prototype.resetInner=function(){this.getContentGroup().removeAll(),this._backgroundEl&&this.group.remove(this._backgroundEl),this.getSelectorGroup().removeAll()},e.prototype.renderInner=function(t,e,n,i,r,o,a){var s=this.getContentGroup(),l=yt(),u=e.get("selectedMode"),h=[];n.eachRawSeries((function(t){!t.get("legendHoverLink")&&h.push(t.id)})),EB(e.getData(),(function(r,o){var a=r.get("name");if(!this.newlineDisabled&&(""===a||"\n"===a)){var c=new zB;return c.newline=!0,void s.add(c)}var p=n.getSeriesByName(a)[0];if(!l.get(a)){if(p){var d=p.getData(),f=d.getVisual("legendLineStyle")||{},g=d.getVisual("legendIcon"),y=d.getVisual("style");this._createItem(p,a,o,r,e,t,f,y,g,u,i).on("click",NB(BB,a,null,i,h)).on("mouseover",NB(GB,p.name,null,i,h)).on("mouseout",NB(WB,p.name,null,i,h)),l.set(a,!0)}else n.eachRawSeries((function(n){if(!l.get(a)&&n.legendVisualProvider){var s=n.legendVisualProvider;if(!s.containName(a))return;var c=s.indexOfName(a),p=s.getItemVisual(c,"style"),d=s.getItemVisual(c,"legendIcon"),f=qn(p.fill);f&&0===f[3]&&(f[3]=.2,p=A(A({},p),{fill:ri(f,"rgba")})),this._createItem(n,a,o,r,e,t,{},p,d,u,i).on("click",NB(BB,null,a,i,h)).on("mouseover",NB(GB,null,a,i,h)).on("mouseout",NB(WB,null,a,i,h)),l.set(a,!0)}}),this);0}}),this),r&&this._createSelector(r,e,i,o,a)},e.prototype._createSelector=function(t,e,n,i,r){var o=this.getSelectorGroup();EB(t,(function(t){var i=t.type,r=new Fs({style:{x:0,y:0,align:"center",verticalAlign:"middle"},onclick:function(){n.dispatchAction({type:"all"===i?"legendAllSelect":"legendInverseSelect"})}});o.add(r),tc(r,{normal:e.getModel("selectorLabel"),emphasis:e.getModel(["emphasis","selectorLabel"])},{defaultText:t.title}),Hl(r)}))},e.prototype._createItem=function(t,e,n,i,r,o,a,s,l,u,h){var c=t.visualDrawType,p=r.get("itemWidth"),d=r.get("itemHeight"),f=r.isSelected(e),g=i.get("symbolRotate"),y=i.get("symbolKeepAspect"),v=i.get("icon"),m=function(t,e,n,i,r,o,a){function s(t,e){"auto"===t.lineWidth&&(t.lineWidth=e.lineWidth>0?2:0),EB(t,(function(n,i){"inherit"===t[i]&&(t[i]=e[i])}))}var l=e.getModel("itemStyle"),u=l.getItemStyle(),h=0===t.lastIndexOf("empty",0)?"fill":"stroke",c=l.getShallow("decal");u.decal=c&&"inherit"!==c?gv(c,a):i.decal,"inherit"===u.fill&&(u.fill=i[r]);"inherit"===u.stroke&&(u.stroke=i[h]);"inherit"===u.opacity&&(u.opacity=("fill"===r?i:n).opacity);s(u,i);var p=e.getModel("lineStyle"),d=p.getLineStyle();if(s(d,n),"auto"===u.fill&&(u.fill=i.fill),"auto"===u.stroke&&(u.stroke=i.fill),"auto"===d.stroke&&(d.stroke=i.fill),!o){var f=e.get("inactiveBorderWidth"),g=u[h];u.lineWidth="auto"===f?i.lineWidth>0&&g?2:0:u.lineWidth,u.fill=e.get("inactiveColor"),u.stroke=e.get("inactiveBorderColor"),d.stroke=p.get("inactiveColor"),d.lineWidth=p.get("inactiveWidth")}return{itemStyle:u,lineStyle:d}}(l=v||l||"roundRect",i,a,s,c,f,h),x=new zB,_=i.getModel("textStyle");if(!X(t.getLegendIcon)||v&&"inherit"!==v){var b="inherit"===v&&t.getData().getVisual("symbol")?"inherit"===g?t.getData().getVisual("symbolRotate"):g:0;x.add(function(t){var e=t.icon||"roundRect",n=Wy(e,0,0,t.itemWidth,t.itemHeight,t.itemStyle.fill,t.symbolKeepAspect);n.setStyle(t.itemStyle),n.rotation=(t.iconRotate||0)*Math.PI/180,n.setOrigin([t.itemWidth/2,t.itemHeight/2]),e.indexOf("empty")>-1&&(n.style.stroke=n.style.fill,n.style.fill="#fff",n.style.lineWidth=2);return n}({itemWidth:p,itemHeight:d,icon:l,iconRotate:b,itemStyle:m.itemStyle,lineStyle:m.lineStyle,symbolKeepAspect:y}))}else x.add(t.getLegendIcon({itemWidth:p,itemHeight:d,icon:l,iconRotate:g,itemStyle:m.itemStyle,lineStyle:m.lineStyle,symbolKeepAspect:y}));var w="left"===o?p+5:-5,S=o,M=r.get("formatter"),I=e;U(M)&&M?I=M.replace("{name}",null!=e?e:""):X(M)&&(I=M(e));var T=f?_.getTextColor():i.get("inactiveColor");x.add(new Fs({style:nc(_,{text:I,x:w,y:d/2,fill:T,align:S,verticalAlign:"middle"},{inheritColor:T})}));var C=new zs({shape:x.getBoundingRect(),invisible:!0}),D=i.getModel("tooltip");return D.get("show")&&Zh({el:C,componentModel:r,itemName:e,itemTooltipOption:D.option}),x.add(C),x.eachChild((function(t){t.silent=!0})),C.silent=!u,this.getContentGroup().add(x),Hl(x),x.__legendDataIndex=n,x},e.prototype.layoutInner=function(t,e,n,i,r,o){var a=this.getContentGroup(),s=this.getSelectorGroup();Tp(t.get("orient"),a,t.get("itemGap"),n.width,n.height);var l=a.getBoundingRect(),u=[-l.x,-l.y];if(s.markRedraw(),a.markRedraw(),r){Tp("horizontal",s,t.get("selectorItemGap",!0));var h=s.getBoundingRect(),c=[-h.x,-h.y],p=t.get("selectorButtonGap",!0),d=t.getOrient().index,f=0===d?"width":"height",g=0===d?"height":"width",y=0===d?"y":"x";"end"===o?c[d]+=l[f]+p:u[d]+=h[f]+p,c[1-d]+=l[g]/2-h[g]/2,s.x=c[0],s.y=c[1],a.x=u[0],a.y=u[1];var v={x:0,y:0};return v[f]=l[f]+p+h[f],v[g]=Math.max(l[g],h[g]),v[y]=Math.min(0,h[y]+c[1-d]),v}return a.x=u[0],a.y=u[1],this.group.getBoundingRect()},e.prototype.remove=function(){this.getContentGroup().removeAll(),this._isFirstRender=!0},e.type="legend.plain",e}(Tg);function BB(t,e,n,i){WB(t,e,n,i),n.dispatchAction({type:"legendToggleSelect",name:null!=t?t:e}),GB(t,e,n,i)}function FB(t){for(var e,n=t.getZr().storage.getDisplayList(),i=0,r=n.length;in[r],f=[-c.x,-c.y];e||(f[i]=l[s]);var g=[0,0],y=[-p.x,-p.y],v=rt(t.get("pageButtonGap",!0),t.get("itemGap",!0));d&&("end"===t.get("pageButtonPosition",!0)?y[i]+=n[r]-p[r]:g[i]+=p[r]+v);y[1-i]+=c[o]/2-p[o]/2,l.setPosition(f),u.setPosition(g),h.setPosition(y);var m={x:0,y:0};if(m[r]=d?n[r]:c[r],m[o]=Math.max(c[o],p[o]),m[a]=Math.min(0,p[a]+y[1-i]),u.__rectSize=n[r],d){var x={x:0,y:0};x[r]=Math.max(n[r]-p[r]-v,0),x[o]=m[o],u.setClipPath(new zs({shape:x})),u.__rectSize=x[r]}else h.eachChild((function(t){t.attr({invisible:!0,silent:!0})}));var _=this._getPageInfo(t);return null!=_.pageIndex&&fh(l,{x:_.contentPosition[0],y:_.contentPosition[1]},d?t:null),this._updatePageInfoView(t,_),m},e.prototype._pageGo=function(t,e,n){var i=this._getPageInfo(e)[t];null!=i&&n.dispatchAction({type:"legendScroll",scrollDataIndex:i,legendId:e.id})},e.prototype._updatePageInfoView=function(t,e){var n=this._controllerGroup;E(["pagePrev","pageNext"],(function(i){var r=null!=e[i+"DataIndex"],o=n.childOfName(i);o&&(o.setStyle("fill",r?t.get("pageIconColor",!0):t.get("pageIconInactiveColor",!0)),o.cursor=r?"pointer":"default")}));var i=n.childOfName("pageText"),r=t.get("pageFormatter"),o=e.pageIndex,a=null!=o?o+1:0,s=e.pageCount;i&&r&&i.setStyle("text",U(r)?r.replace("{current}",null==a?"":a+"").replace("{total}",null==s?"":s+""):r({current:a,total:s}))},e.prototype._getPageInfo=function(t){var e=t.get("scrollDataIndex",!0),n=this.getContentGroup(),i=this._containerGroup.__rectSize,r=t.getOrient().index,o=qB[r],a=KB[r],s=this._findTargetItemIndex(e),l=n.children(),u=l[s],h=l.length,c=h?1:0,p={contentPosition:[n.x,n.y],pageCount:c,pageIndex:c-1,pagePrevDataIndex:null,pageNextDataIndex:null};if(!u)return p;var d=m(u);p.contentPosition[r]=-d.s;for(var f=s+1,g=d,y=d,v=null;f<=h;++f)(!(v=m(l[f]))&&y.e>g.s+i||v&&!x(v,g.s))&&(g=y.i>g.i?y:v)&&(null==p.pageNextDataIndex&&(p.pageNextDataIndex=g.i),++p.pageCount),y=v;for(f=s-1,g=d,y=d,v=null;f>=-1;--f)(v=m(l[f]))&&x(y,v.s)||!(g.i=e&&t.s<=e+i}},e.prototype._findTargetItemIndex=function(t){return this._showController?(this.getContentGroup().eachChild((function(i,r){var o=i.__legendDataIndex;null==n&&null!=o&&(n=r),o===t&&(e=r)})),null!=e?e:n):0;var e,n},e.type="legend.scroll",e}(VB);function JB(t){Nm(XB),t.registerComponentModel(UB),t.registerComponentView($B),function(t){t.registerAction("legendScroll","legendscroll",(function(t,e){var n=t.scrollDataIndex;null!=n&&e.eachComponent({mainType:"legend",subType:"scroll",query:t},(function(t){t.setScrollDataIndex(n)}))}))}(t)}var QB=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n}return n(e,t),e.type="dataZoom.inside",e.defaultOption=Cc(KE.defaultOption,{disabled:!1,zoomLock:!1,zoomOnMouseWheel:!0,moveOnMouseMove:!0,moveOnMouseWheel:!1,preventDefaultMouseMove:!0}),e}(KE),tF=Oo();function eF(t,e,n){tF(t).coordSysRecordMap.each((function(t){var i=t.dataZoomInfoMap.get(e.uid);i&&(i.getRange=n)}))}function nF(t,e){if(e){t.removeKey(e.model.uid);var n=e.controller;n&&n.dispose()}}function iF(t,e){t.isDisposed()||t.dispatchAction({type:"dataZoom",animation:{easing:"cubicOut",duration:100},batch:e})}function rF(t,e,n,i){return t.coordinateSystem.containPoint([n,i])}function oF(t){t.registerProcessor(t.PRIORITY.PROCESSOR.FILTER,(function(t,e){var n=tF(e),i=n.coordSysRecordMap||(n.coordSysRecordMap=yt());i.each((function(t){t.dataZoomInfoMap=null})),t.eachComponent({mainType:"dataZoom",subType:"inside"},(function(t){E(jE(t).infoList,(function(n){var r=n.model.uid,o=i.get(r)||i.set(r,function(t,e){var n={model:e,containsPoint:H(rF,e),dispatchAction:H(iF,t),dataZoomInfoMap:null,controller:null},i=n.controller=new UI(t.getZr());return E(["pan","zoom","scrollMove"],(function(t){i.on(t,(function(e){var i=[];n.dataZoomInfoMap.each((function(r){if(e.isAvailableBehavior(r.model.option)){var o=(r.getRange||{})[t],a=o&&o(r.dzReferCoordSysInfo,n.model.mainType,n.controller,e);!r.model.get("disabled",!0)&&a&&i.push({dataZoomId:r.model.id,start:a[0],end:a[1]})}})),i.length&&n.dispatchAction(i)}))})),n}(e,n.model));(o.dataZoomInfoMap||(o.dataZoomInfoMap=yt())).set(t.uid,{dzReferCoordSysInfo:n,model:t,getRange:null})}))})),i.each((function(t){var e,n=t.controller,r=t.dataZoomInfoMap;if(r){var o=r.keys()[0];null!=o&&(e=r.get(o))}if(e){var a=function(t){var e,n="type_",i={type_true:2,type_move:1,type_false:0,type_undefined:-1},r=!0;return t.each((function(t){var o=t.model,a=!o.get("disabled",!0)&&(!o.get("zoomLock",!0)||"move");i[n+a]>i[n+e]&&(e=a),r=r&&o.get("preventDefaultMouseMove",!0)})),{controlType:e,opt:{zoomOnMouseWheel:!0,moveOnMouseMove:!0,moveOnMouseWheel:!0,preventDefaultMouseMove:!!r}}}(r);n.enable(a.controlType,a.opt),n.setPointerChecker(t.containsPoint),Fg(t,"dispatchAction",e.model.get("throttle",!0),"fixRate")}else nF(i,t)}))}))}var aF=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.type="dataZoom.inside",e}return n(e,t),e.prototype.render=function(e,n,i){t.prototype.render.apply(this,arguments),e.noTarget()?this._clear():(this.range=e.getPercentRange(),eF(i,e,{pan:W(sF.pan,this),zoom:W(sF.zoom,this),scrollMove:W(sF.scrollMove,this)}))},e.prototype.dispose=function(){this._clear(),t.prototype.dispose.apply(this,arguments)},e.prototype._clear=function(){!function(t,e){for(var n=tF(t).coordSysRecordMap,i=n.keys(),r=0;r0?s.pixelStart+s.pixelLength-s.pixel:s.pixel-s.pixelStart)/s.pixelLength*(o[1]-o[0])+o[0],u=Math.max(1/i.scale,0);o[0]=(o[0]-l)*u+l,o[1]=(o[1]-l)*u+l;var h=this.dataZoomModel.findRepresentativeAxisProxy().getMinMaxSpan();return Ck(0,o,[0,100],0,h.minSpan,h.maxSpan),this.range=o,r[0]!==o[0]||r[1]!==o[1]?o:void 0}},pan:lF((function(t,e,n,i,r,o){var a=uF[i]([o.oldX,o.oldY],[o.newX,o.newY],e,r,n);return a.signal*(t[1]-t[0])*a.pixel/a.pixelLength})),scrollMove:lF((function(t,e,n,i,r,o){return uF[i]([0,0],[o.scrollDelta,o.scrollDelta],e,r,n).signal*(t[1]-t[0])*o.scrollDelta}))};function lF(t){return function(e,n,i,r){var o=this.range,a=o.slice(),s=e.axisModels[0];if(s)return Ck(t(a,s,e,n,i,r),a,[0,100],"all"),this.range=a,o[0]!==a[0]||o[1]!==a[1]?a:void 0}}var uF={grid:function(t,e,n,i,r){var o=n.axis,a={},s=r.model.coordinateSystem.getRect();return t=t||[0,0],"x"===o.dim?(a.pixel=e[0]-t[0],a.pixelLength=s.width,a.pixelStart=s.x,a.signal=o.inverse?1:-1):(a.pixel=e[1]-t[1],a.pixelLength=s.height,a.pixelStart=s.y,a.signal=o.inverse?-1:1),a},polar:function(t,e,n,i,r){var o=n.axis,a={},s=r.model.coordinateSystem,l=s.getRadiusAxis().getExtent(),u=s.getAngleAxis().getExtent();return t=t?s.pointToCoord(t):[0,0],e=s.pointToCoord(e),"radiusAxis"===n.mainType?(a.pixel=e[0]-t[0],a.pixelLength=l[1]-l[0],a.pixelStart=l[0],a.signal=o.inverse?1:-1):(a.pixel=e[1]-t[1],a.pixelLength=u[1]-u[0],a.pixelStart=u[0],a.signal=o.inverse?-1:1),a},singleAxis:function(t,e,n,i,r){var o=n.axis,a=r.model.coordinateSystem.getRect(),s={};return t=t||[0,0],"horizontal"===o.orient?(s.pixel=e[0]-t[0],s.pixelLength=a.width,s.pixelStart=a.x,s.signal=o.inverse?1:-1):(s.pixel=e[1]-t[1],s.pixelLength=a.height,s.pixelStart=a.y,s.signal=o.inverse?-1:1),s}};function hF(t){az(t),t.registerComponentModel(QB),t.registerComponentView(aF),oF(t)}var cF=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n}return n(e,t),e.type="dataZoom.slider",e.layoutMode="box",e.defaultOption=Cc(KE.defaultOption,{show:!0,right:"ph",top:"ph",width:"ph",height:"ph",left:null,bottom:null,borderColor:"#d2dbee",borderRadius:3,backgroundColor:"rgba(47,69,84,0)",dataBackground:{lineStyle:{color:"#d2dbee",width:.5},areaStyle:{color:"#d2dbee",opacity:.2}},selectedDataBackground:{lineStyle:{color:"#8fb0f7",width:.5},areaStyle:{color:"#8fb0f7",opacity:.2}},fillerColor:"rgba(135,175,274,0.2)",handleIcon:"path://M-9.35,34.56V42m0-40V9.5m-2,0h4a2,2,0,0,1,2,2v21a2,2,0,0,1-2,2h-4a2,2,0,0,1-2-2v-21A2,2,0,0,1-11.35,9.5Z",handleSize:"100%",handleStyle:{color:"#fff",borderColor:"#ACB8D1"},moveHandleSize:7,moveHandleIcon:"path://M-320.9-50L-320.9-50c18.1,0,27.1,9,27.1,27.1V85.7c0,18.1-9,27.1-27.1,27.1l0,0c-18.1,0-27.1-9-27.1-27.1V-22.9C-348-41-339-50-320.9-50z M-212.3-50L-212.3-50c18.1,0,27.1,9,27.1,27.1V85.7c0,18.1-9,27.1-27.1,27.1l0,0c-18.1,0-27.1-9-27.1-27.1V-22.9C-239.4-41-230.4-50-212.3-50z M-103.7-50L-103.7-50c18.1,0,27.1,9,27.1,27.1V85.7c0,18.1-9,27.1-27.1,27.1l0,0c-18.1,0-27.1-9-27.1-27.1V-22.9C-130.9-41-121.8-50-103.7-50z",moveHandleStyle:{color:"#D2DBEE",opacity:.7},showDetail:!0,showDataShadow:"auto",realtime:!0,zoomLock:!1,textStyle:{color:"#6E7079"},brushSelect:!0,brushStyle:{color:"rgba(135,175,274,0.15)"},emphasis:{handleStyle:{borderColor:"#8FB0F7"},moveHandleStyle:{color:"#8FB0F7"}}}),e}(KE),pF=zs,dF="horizontal",fF="vertical",gF=["line","bar","candlestick","scatter"],yF={easing:"cubicOut",duration:100,delay:0},vF=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n._displayables={},n}return n(e,t),e.prototype.init=function(t,e){this.api=e,this._onBrush=W(this._onBrush,this),this._onBrushEnd=W(this._onBrushEnd,this)},e.prototype.render=function(e,n,i,r){if(t.prototype.render.apply(this,arguments),Fg(this,"_dispatchZoomAction",e.get("throttle"),"fixRate"),this._orient=e.getOrient(),!1!==e.get("show")){if(e.noTarget())return this._clear(),void this.group.removeAll();r&&"dataZoom"===r.type&&r.from===this.uid||this._buildView(),this._updateView()}else this.group.removeAll()},e.prototype.dispose=function(){this._clear(),t.prototype.dispose.apply(this,arguments)},e.prototype._clear=function(){Gg(this,"_dispatchZoomAction");var t=this.api.getZr();t.off("mousemove",this._onBrush),t.off("mouseup",this._onBrushEnd)},e.prototype._buildView=function(){var t=this.group;t.removeAll(),this._brushing=!1,this._displayables.brushRect=null,this._resetLocation(),this._resetInterval();var e=this._displayables.sliderGroup=new zr;this._renderBackground(),this._renderHandle(),this._renderDataShadow(),t.add(e),this._positionGroup()},e.prototype._resetLocation=function(){var t=this.dataZoomModel,e=this.api,n=t.get("brushSelect")?7:0,i=this._findCoordRect(),r={width:e.getWidth(),height:e.getHeight()},o=this._orient===dF?{right:r.width-i.x-i.width,top:r.height-30-7-n,width:i.width,height:30}:{right:7,top:i.y,width:30,height:i.height},a=Lp(t.option);E(["right","top","width","height"],(function(t){"ph"===a[t]&&(a[t]=o[t])}));var s=Cp(a,r);this._location={x:s.x,y:s.y},this._size=[s.width,s.height],this._orient===fF&&this._size.reverse()},e.prototype._positionGroup=function(){var t=this.group,e=this._location,n=this._orient,i=this.dataZoomModel.getFirstTargetAxisModel(),r=i&&i.get("inverse"),o=this._displayables.sliderGroup,a=(this._dataShadowInfo||{}).otherAxisInverse;o.attr(n!==dF||r?n===dF&&r?{scaleY:a?1:-1,scaleX:-1}:n!==fF||r?{scaleY:a?-1:1,scaleX:-1,rotation:Math.PI/2}:{scaleY:a?-1:1,scaleX:1,rotation:Math.PI/2}:{scaleY:a?1:-1,scaleX:1});var s=t.getBoundingRect([o]);t.x=e.x-s.x,t.y=e.y-s.y,t.markRedraw()},e.prototype._getViewExtent=function(){return[0,this._size[0]]},e.prototype._renderBackground=function(){var t=this.dataZoomModel,e=this._size,n=this._displayables.sliderGroup,i=t.get("brushSelect");n.add(new pF({silent:!0,shape:{x:0,y:0,width:e[0],height:e[1]},style:{fill:t.get("backgroundColor")},z2:-40}));var r=new pF({shape:{x:0,y:0,width:e[0],height:e[1]},style:{fill:"transparent"},z2:0,onclick:W(this._onClickPanel,this)}),o=this.api.getZr();i?(r.on("mousedown",this._onBrushStart,this),r.cursor="crosshair",o.on("mousemove",this._onBrush),o.on("mouseup",this._onBrushEnd)):(o.off("mousemove",this._onBrush),o.off("mouseup",this._onBrushEnd)),n.add(r)},e.prototype._renderDataShadow=function(){var t=this._dataShadowInfo=this._prepareDataShadowInfo();if(this._displayables.dataShadowSegs=[],t){var e=this._size,n=this._shadowSize||[],i=t.series,r=i.getRawData(),o=i.getShadowDim&&i.getShadowDim(),a=o&&r.getDimensionInfo(o)?i.getShadowDim():t.otherDim;if(null!=a){var s=this._shadowPolygonPts,l=this._shadowPolylinePts;if(r!==this._shadowData||a!==this._shadowDim||e[0]!==n[0]||e[1]!==n[1]){var u=r.getDataExtent(a),h=.3*(u[1]-u[0]);u=[u[0]-h,u[1]+h];var c,p=[0,e[1]],d=[0,e[0]],f=[[e[0],0],[0,0]],g=[],y=d[1]/(r.count()-1),v=0,m=Math.round(r.count()/e[0]);r.each([a],(function(t,e){if(m>0&&e%m)v+=y;else{var n=null==t||isNaN(t)||""===t,i=n?0:Xr(t,u,p,!0);n&&!c&&e?(f.push([f[f.length-1][0],0]),g.push([g[g.length-1][0],0])):!n&&c&&(f.push([v,0]),g.push([v,0])),f.push([v,i]),g.push([v,i]),v+=y,c=n}})),s=this._shadowPolygonPts=f,l=this._shadowPolylinePts=g}this._shadowData=r,this._shadowDim=a,this._shadowSize=[e[0],e[1]];for(var x=this.dataZoomModel,_=0;_<3;_++){var b=w(1===_);this._displayables.sliderGroup.add(b),this._displayables.dataShadowSegs.push(b)}}}function w(t){var e=x.getModel(t?"selectedDataBackground":"dataBackground"),n=new zr,i=new Wu({shape:{points:s},segmentIgnoreThreshold:1,style:e.getModel("areaStyle").getAreaStyle(),silent:!0,z2:-20}),r=new Yu({shape:{points:l},segmentIgnoreThreshold:1,style:e.getModel("lineStyle").getLineStyle(),silent:!0,z2:-19});return n.add(i),n.add(r),n}},e.prototype._prepareDataShadowInfo=function(){var t=this.dataZoomModel,e=t.get("showDataShadow");if(!1!==e){var n,i=this.ecModel;return t.eachTargetAxis((function(r,o){E(t.getAxisProxy(r,o).getTargetSeriesModels(),(function(t){if(!(n||!0!==e&&P(gF,t.get("type"))<0)){var a,s=i.getComponent(UE(r),o).axis,l=function(t){var e={x:"y",y:"x",radius:"angle",angle:"radius"};return e[t]}(r),u=t.coordinateSystem;null!=l&&u.getOtherAxis&&(a=u.getOtherAxis(s).inverse),l=t.getData().mapDimension(l),n={thisAxis:s,series:t,thisDim:r,otherDim:l,otherAxisInverse:a}}}),this)}),this),n}},e.prototype._renderHandle=function(){var t=this.group,e=this._displayables,n=e.handles=[null,null],i=e.handleLabels=[null,null],r=this._displayables.sliderGroup,o=this._size,a=this.dataZoomModel,s=this.api,l=a.get("borderRadius")||0,u=a.get("brushSelect"),h=e.filler=new pF({silent:u,style:{fill:a.get("fillerColor")},textConfig:{position:"inside"}});r.add(h),r.add(new pF({silent:!0,subPixelOptimize:!0,shape:{x:0,y:0,width:o[0],height:o[1],r:l},style:{stroke:a.get("dataBackgroundColor")||a.get("borderColor"),lineWidth:1,fill:"rgba(0,0,0,0)"}})),E([0,1],(function(e){var o=a.get("handleIcon");!By[o]&&o.indexOf("path://")<0&&o.indexOf("image://")<0&&(o="path://"+o);var s=Wy(o,-1,0,2,2,null,!0);s.attr({cursor:mF(this._orient),draggable:!0,drift:W(this._onDragMove,this,e),ondragend:W(this._onDragEnd,this),onmouseover:W(this._showDataInfo,this,!0),onmouseout:W(this._showDataInfo,this,!1),z2:5});var l=s.getBoundingRect(),u=a.get("handleSize");this._handleHeight=Ur(u,this._size[1]),this._handleWidth=l.width/l.height*this._handleHeight,s.setStyle(a.getModel("handleStyle").getItemStyle()),s.style.strokeNoScale=!0,s.rectHover=!0,s.ensureState("emphasis").style=a.getModel(["emphasis","handleStyle"]).getItemStyle(),Hl(s);var h=a.get("handleColor");null!=h&&(s.style.fill=h),r.add(n[e]=s);var c=a.getModel("textStyle");t.add(i[e]=new Fs({silent:!0,invisible:!0,style:nc(c,{x:0,y:0,text:"",verticalAlign:"middle",align:"center",fill:c.getTextColor(),font:c.getFont()}),z2:10}))}),this);var c=h;if(u){var p=Ur(a.get("moveHandleSize"),o[1]),d=e.moveHandle=new zs({style:a.getModel("moveHandleStyle").getItemStyle(),silent:!0,shape:{r:[0,0,2,2],y:o[1]-.5,height:p}}),f=.8*p,g=e.moveHandleIcon=Wy(a.get("moveHandleIcon"),-f/2,-f/2,f,f,"#fff",!0);g.silent=!0,g.y=o[1]+p/2-.5,d.ensureState("emphasis").style=a.getModel(["emphasis","moveHandleStyle"]).getItemStyle();var y=Math.min(o[1]/2,Math.max(p,10));(c=e.moveZone=new zs({invisible:!0,shape:{y:o[1]-y,height:p+y}})).on("mouseover",(function(){s.enterEmphasis(d)})).on("mouseout",(function(){s.leaveEmphasis(d)})),r.add(d),r.add(g),r.add(c)}c.attr({draggable:!0,cursor:mF(this._orient),drift:W(this._onDragMove,this,"all"),ondragstart:W(this._showDataInfo,this,!0),ondragend:W(this._onDragEnd,this),onmouseover:W(this._showDataInfo,this,!0),onmouseout:W(this._showDataInfo,this,!1)})},e.prototype._resetInterval=function(){var t=this._range=this.dataZoomModel.getPercentRange(),e=this._getViewExtent();this._handleEnds=[Xr(t[0],[0,100],e,!0),Xr(t[1],[0,100],e,!0)]},e.prototype._updateInterval=function(t,e){var n=this.dataZoomModel,i=this._handleEnds,r=this._getViewExtent(),o=n.findRepresentativeAxisProxy().getMinMaxSpan(),a=[0,100];Ck(e,i,r,n.get("zoomLock")?"all":t,null!=o.minSpan?Xr(o.minSpan,a,r,!0):null,null!=o.maxSpan?Xr(o.maxSpan,a,r,!0):null);var s=this._range,l=this._range=jr([Xr(i[0],r,a,!0),Xr(i[1],r,a,!0)]);return!s||s[0]!==l[0]||s[1]!==l[1]},e.prototype._updateView=function(t){var e=this._displayables,n=this._handleEnds,i=jr(n.slice()),r=this._size;E([0,1],(function(t){var i=e.handles[t],o=this._handleHeight;i.attr({scaleX:o/2,scaleY:o/2,x:n[t]+(t?-1:1),y:r[1]/2-o/2})}),this),e.filler.setShape({x:i[0],y:0,width:i[1]-i[0],height:r[1]});var o={x:i[0],width:i[1]-i[0]};e.moveHandle&&(e.moveHandle.setShape(o),e.moveZone.setShape(o),e.moveZone.getBoundingRect(),e.moveHandleIcon&&e.moveHandleIcon.attr("x",o.x+o.width/2));for(var a=e.dataShadowSegs,s=[0,i[0],i[1],r[0]],l=0;le[0]||n[1]<0||n[1]>e[1])){var i=this._handleEnds,r=(i[0]+i[1])/2,o=this._updateInterval("all",n[0]-r);this._updateView(),o&&this._dispatchZoomAction(!1)}},e.prototype._onBrushStart=function(t){var e=t.offsetX,n=t.offsetY;this._brushStart=new De(e,n),this._brushing=!0,this._brushStartTime=+new Date},e.prototype._onBrushEnd=function(t){if(this._brushing){var e=this._displayables.brushRect;if(this._brushing=!1,e){e.attr("ignore",!0);var n=e.shape;if(!(+new Date-this._brushStartTime<200&&Math.abs(n.width)<5)){var i=this._getViewExtent(),r=[0,100];this._range=jr([Xr(n.x,i,r,!0),Xr(n.x+n.width,i,r,!0)]),this._handleEnds=[n.x,n.x+n.width],this._updateView(),this._dispatchZoomAction(!1)}}}},e.prototype._onBrush=function(t){this._brushing&&(de(t.event),this._updateBrushRect(t.offsetX,t.offsetY))},e.prototype._updateBrushRect=function(t,e){var n=this._displayables,i=this.dataZoomModel,r=n.brushRect;r||(r=n.brushRect=new pF({silent:!0,style:i.getModel("brushStyle").getItemStyle()}),n.sliderGroup.add(r)),r.attr("ignore",!1);var o=this._brushStart,a=this._displayables.sliderGroup,s=a.transformCoordToLocal(t,e),l=a.transformCoordToLocal(o.x,o.y),u=this._size;s[0]=Math.max(Math.min(u[0],s[0]),0),r.setShape({x:l[0],y:0,width:s[0]-l[0],height:u[1]})},e.prototype._dispatchZoomAction=function(t){var e=this._range;this.api.dispatchAction({type:"dataZoom",from:this.uid,dataZoomId:this.dataZoomModel.id,animation:t?yF:null,start:e[0],end:e[1]})},e.prototype._findCoordRect=function(){var t,e=jE(this.dataZoomModel).infoList;if(!t&&e.length){var n=e[0].model.coordinateSystem;t=n.getRect&&n.getRect()}if(!t){var i=this.api.getWidth(),r=this.api.getHeight();t={x:.2*i,y:.2*r,width:.6*i,height:.6*r}}return t},e.type="dataZoom.slider",e}(QE);function mF(t){return"vertical"===t?"ns-resize":"ew-resize"}function xF(t){t.registerComponentModel(cF),t.registerComponentView(vF),az(t)}var _F=function(t,e,n){var i=T((bF[t]||{})[e]);return n&&Y(i)?i[i.length-1]:i},bF={color:{active:["#006edd","#e0ffff"],inactive:["rgba(0,0,0,0)"]},colorHue:{active:[0,360],inactive:[0,0]},colorSaturation:{active:[.3,1],inactive:[0,0]},colorLightness:{active:[.9,.5],inactive:[0,0]},colorAlpha:{active:[.3,1],inactive:[0,0]},opacity:{active:[.3,1],inactive:[0,0]},symbol:{active:["circle","roundRect","diamond"],inactive:["none"]},symbolSize:{active:[10,50],inactive:[0,0]}},wF=_D.mapVisual,SF=_D.eachVisual,MF=Y,IF=E,TF=jr,CF=Xr,DF=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n.stateList=["inRange","outOfRange"],n.replacableOptionKeys=["inRange","outOfRange","target","controller","color"],n.layoutMode={type:"box",ignoreSize:!0},n.dataBound=[-1/0,1/0],n.targetVisuals={},n.controllerVisuals={},n}return n(e,t),e.prototype.init=function(t,e,n){this.mergeDefaultAndTheme(t,n)},e.prototype.optionUpdated=function(t,e){var n=this.option;!e&&wV(n,t,this.replacableOptionKeys),this.textStyleModel=this.getModel("textStyle"),this.resetItemSize(),this.completeVisualOption()},e.prototype.resetVisual=function(t){var e=this.stateList;t=W(t,this),this.controllerVisuals=bV(this.option.controller,e,t),this.targetVisuals=bV(this.option.target,e,t)},e.prototype.getItemSymbol=function(){return null},e.prototype.getTargetSeriesIndices=function(){var t=this.option.seriesIndex,e=[];return null==t||"all"===t?this.ecModel.eachSeries((function(t,n){e.push(n)})):e=bo(t),e},e.prototype.eachTargetSeries=function(t,e){E(this.getTargetSeriesIndices(),(function(n){var i=this.ecModel.getSeriesByIndex(n);i&&t.call(e,i)}),this)},e.prototype.isTargetSeries=function(t){var e=!1;return this.eachTargetSeries((function(n){n===t&&(e=!0)})),e},e.prototype.formatValueText=function(t,e,n){var i,r=this.option,o=r.precision,a=this.dataBound,s=r.formatter;n=n||["<",">"],Y(t)&&(t=t.slice(),i=!0);var l=e?t:i?[u(t[0]),u(t[1])]:u(t);return U(s)?s.replace("{value}",i?l[0]:l).replace("{value2}",i?l[1]:l):X(s)?i?s(t[0],t[1]):s(t):i?t[0]===a[0]?n[0]+" "+l[1]:t[1]===a[1]?n[1]+" "+l[0]:l[0]+" - "+l[1]:l;function u(t){return t===a[0]?"min":t===a[1]?"max":(+t).toFixed(Math.min(o,20))}},e.prototype.resetExtent=function(){var t=this.option,e=TF([t.min,t.max]);this._dataExtent=e},e.prototype.getDataDimensionIndex=function(t){var e=this.option.dimension;if(null!=e)return t.getDimensionIndex(e);for(var n=t.dimensions,i=n.length-1;i>=0;i--){var r=n[i],o=t.getDimensionInfo(r);if(!o.isCalculationCoord)return o.storeDimIndex}},e.prototype.getExtent=function(){return this._dataExtent.slice()},e.prototype.completeVisualOption=function(){var t=this.ecModel,e=this.option,n={inRange:e.inRange,outOfRange:e.outOfRange},i=e.target||(e.target={}),r=e.controller||(e.controller={});C(i,n),C(r,n);var o=this.isCategory();function a(n){MF(e.color)&&!n.inRange&&(n.inRange={color:e.color.slice().reverse()}),n.inRange=n.inRange||{color:t.get("gradientColor")}}a.call(this,i),a.call(this,r),function(t,e,n){var i=t[e],r=t[n];i&&!r&&(r=t[n]={},IF(i,(function(t,e){if(_D.isValidType(e)){var n=_F(e,"inactive",o);null!=n&&(r[e]=n,"color"!==e||r.hasOwnProperty("opacity")||r.hasOwnProperty("colorAlpha")||(r.opacity=[0,0]))}})))}.call(this,i,"inRange","outOfRange"),function(t){var e=(t.inRange||{}).symbol||(t.outOfRange||{}).symbol,n=(t.inRange||{}).symbolSize||(t.outOfRange||{}).symbolSize,i=this.get("inactiveColor"),r=this.getItemSymbol()||"roundRect";IF(this.stateList,(function(a){var s=this.itemSize,l=t[a];l||(l=t[a]={color:o?i:[i]}),null==l.symbol&&(l.symbol=e&&T(e)||(o?r:[r])),null==l.symbolSize&&(l.symbolSize=n&&T(n)||(o?s[0]:[s[0],s[0]])),l.symbol=wF(l.symbol,(function(t){return"none"===t?r:t}));var u=l.symbolSize;if(null!=u){var h=-1/0;SF(u,(function(t){t>h&&(h=t)})),l.symbolSize=wF(u,(function(t){return CF(t,[0,h],[0,s[0]],!0)}))}}),this)}.call(this,r)},e.prototype.resetItemSize=function(){this.itemSize=[parseFloat(this.get("itemWidth")),parseFloat(this.get("itemHeight"))]},e.prototype.isCategory=function(){return!!this.option.categories},e.prototype.setSelected=function(t){},e.prototype.getSelected=function(){return null},e.prototype.getValueState=function(t){return null},e.prototype.getVisualMeta=function(t){return null},e.type="visualMap",e.dependencies=["series"],e.defaultOption={show:!0,z:4,seriesIndex:"all",min:0,max:200,left:0,right:null,top:null,bottom:0,itemWidth:null,itemHeight:null,inverse:!1,orient:"vertical",backgroundColor:"rgba(0,0,0,0)",borderColor:"#ccc",contentColor:"#5793f3",inactiveColor:"#aaa",borderWidth:0,padding:5,textGap:10,precision:0,textStyle:{color:"#333"}},e}(Rp),AF=[20,140],kF=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n}return n(e,t),e.prototype.optionUpdated=function(e,n){t.prototype.optionUpdated.apply(this,arguments),this.resetExtent(),this.resetVisual((function(t){t.mappingMethod="linear",t.dataExtent=this.getExtent()})),this._resetRange()},e.prototype.resetItemSize=function(){t.prototype.resetItemSize.apply(this,arguments);var e=this.itemSize;(null==e[0]||isNaN(e[0]))&&(e[0]=AF[0]),(null==e[1]||isNaN(e[1]))&&(e[1]=AF[1])},e.prototype._resetRange=function(){var t=this.getExtent(),e=this.option.range;!e||e.auto?(t.auto=1,this.option.range=t):Y(e)&&(e[0]>e[1]&&e.reverse(),e[0]=Math.max(e[0],t[0]),e[1]=Math.min(e[1],t[1]))},e.prototype.completeVisualOption=function(){t.prototype.completeVisualOption.apply(this,arguments),E(this.stateList,(function(t){var e=this.option.controller[t].symbolSize;e&&e[0]!==e[1]&&(e[0]=e[1]/3)}),this)},e.prototype.setSelected=function(t){this.option.range=t.slice(),this._resetRange()},e.prototype.getSelected=function(){var t=this.getExtent(),e=jr((this.get("range")||[]).slice());return e[0]>t[1]&&(e[0]=t[1]),e[1]>t[1]&&(e[1]=t[1]),e[0]=n[1]||t<=e[1])?"inRange":"outOfRange"},e.prototype.findTargetDataIndices=function(t){var e=[];return this.eachTargetSeries((function(n){var i=[],r=n.getData();r.each(this.getDataDimensionIndex(r),(function(e,n){t[0]<=e&&e<=t[1]&&i.push(n)}),this),e.push({seriesId:n.id,dataIndex:i})}),this),e},e.prototype.getVisualMeta=function(t){var e=LF(this,"outOfRange",this.getExtent()),n=LF(this,"inRange",this.option.range.slice()),i=[];function r(e,n){i.push({value:e,color:t(e,n)})}for(var o=0,a=0,s=n.length,l=e.length;at[1])break;n.push({color:this.getControllerVisual(o,"color",e),offset:r/100})}return n.push({color:this.getControllerVisual(t[1],"color",e),offset:1}),n},e.prototype._createBarPoints=function(t,e){var n=this.visualMapModel.itemSize;return[[n[0]-e[0],t[0]],[n[0],t[0]],[n[0],t[1]],[n[0]-e[1],t[1]]]},e.prototype._createBarGroup=function(t){var e=this._orient,n=this.visualMapModel.get("inverse");return new zr("horizontal"!==e||n?"horizontal"===e&&n?{scaleX:"bottom"===t?-1:1,rotation:-Math.PI/2}:"vertical"!==e||n?{scaleX:"left"===t?1:-1}:{scaleX:"left"===t?1:-1,scaleY:-1}:{scaleX:"bottom"===t?1:-1,rotation:Math.PI/2})},e.prototype._updateHandle=function(t,e){if(this._useHandle){var n=this._shapes,i=this.visualMapModel,r=n.handleThumbs,o=n.handleLabels,a=i.itemSize,s=i.getExtent();zF([0,1],(function(l){var u=r[l];u.setStyle("fill",e.handlesColor[l]),u.y=t[l];var h=EF(t[l],[0,a[1]],s,!0),c=this.getControllerVisual(h,"symbolSize");u.scaleX=u.scaleY=c/a[0],u.x=a[0]-c/2;var p=zh(n.handleLabelPoints[l],Eh(u,this.group));o[l].setStyle({x:p[0],y:p[1],text:i.formatValueText(this._dataInterval[l]),verticalAlign:"middle",align:"vertical"===this._orient?this._applyTransform("left",n.mainGroup):"center"})}),this)}},e.prototype._showIndicator=function(t,e,n,i){var r=this.visualMapModel,o=r.getExtent(),a=r.itemSize,s=[0,a[1]],l=this._shapes,u=l.indicator;if(u){u.attr("invisible",!1);var h=this.getControllerVisual(t,"color",{convertOpacityToAlpha:!0}),c=this.getControllerVisual(t,"symbolSize"),p=EF(t,o,s,!0),d=a[0]-c/2,f={x:u.x,y:u.y};u.y=p,u.x=d;var g=zh(l.indicatorLabelPoint,Eh(u,this.group)),y=l.indicatorLabel;y.attr("invisible",!1);var v=this._applyTransform("left",l.mainGroup),m="horizontal"===this._orient;y.setStyle({text:(n||"")+r.formatValueText(e),verticalAlign:m?v:"middle",align:m?"center":v});var x={x:d,y:p,style:{fill:h}},_={style:{x:g[0],y:g[1]}};if(r.ecModel.isAnimationEnabled()&&!this._firstShowIndicator){var b={duration:100,easing:"cubicInOut",additive:!0};u.x=f.x,u.y=f.y,u.animateTo(x,b),y.animateTo(_,b)}else u.attr(x),y.attr(_);this._firstShowIndicator=!1;var w=this._shapes.handleLabels;if(w)for(var S=0;Sr[1]&&(u[1]=1/0),e&&(u[0]===-1/0?this._showIndicator(l,u[1],"< ",a):u[1]===1/0?this._showIndicator(l,u[0],"> ",a):this._showIndicator(l,l,"≈ ",a));var h=this._hoverLinkDataIndices,c=[];(e||WF(n))&&(c=this._hoverLinkDataIndices=n.findTargetDataIndices(u));var p=function(t,e){var n={},i={};return r(t||[],n),r(e||[],i,n),[o(n),o(i)];function r(t,e,n){for(var i=0,r=t.length;i=0&&(r.dimension=o,i.push(r))}})),t.getData().setVisual("visualMeta",i)}}];function ZF(t,e,n,i){for(var r=e.targetVisuals[i],o=_D.prepareVisualTypes(r),a={color:Ty(t.getData(),"color")},s=0,l=o.length;s0:t.splitNumber>0)&&!t.calculable?"piecewise":"continuous"})),t.registerAction(YF,XF),E(UF,(function(e){t.registerVisual(t.PRIORITY.VISUAL.COMPONENT,e)})),t.registerPreprocessor(qF))}function QF(t){t.registerComponentModel(kF),t.registerComponentView(FF),JF(t)}var tG=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n._pieceList=[],n}return n(e,t),e.prototype.optionUpdated=function(e,n){t.prototype.optionUpdated.apply(this,arguments),this.resetExtent();var i=this._mode=this._determineMode();this._pieceList=[],eG[this._mode].call(this,this._pieceList),this._resetSelected(e,n);var r=this.option.categories;this.resetVisual((function(t,e){"categories"===i?(t.mappingMethod="category",t.categories=T(r)):(t.dataExtent=this.getExtent(),t.mappingMethod="piecewise",t.pieceList=z(this._pieceList,(function(t){return t=T(t),"inRange"!==e&&(t.visual=null),t})))}))},e.prototype.completeVisualOption=function(){var e=this.option,n={},i=_D.listVisualTypes(),r=this.isCategory();function o(t,e,n){return t&&t[e]&&t[e].hasOwnProperty(n)}E(e.pieces,(function(t){E(i,(function(e){t.hasOwnProperty(e)&&(n[e]=1)}))})),E(n,(function(t,n){var i=!1;E(this.stateList,(function(t){i=i||o(e,t,n)||o(e.target,t,n)}),this),!i&&E(this.stateList,(function(t){(e[t]||(e[t]={}))[n]=_F(n,"inRange"===t?"active":"inactive",r)}))}),this),t.prototype.completeVisualOption.apply(this,arguments)},e.prototype._resetSelected=function(t,e){var n=this.option,i=this._pieceList,r=(e?n:t).selected||{};if(n.selected=r,E(i,(function(t,e){var n=this.getSelectedMapKey(t);r.hasOwnProperty(n)||(r[n]=!0)}),this),"single"===n.selectedMode){var o=!1;E(i,(function(t,e){var n=this.getSelectedMapKey(t);r[n]&&(o?r[n]=!1:o=!0)}),this)}},e.prototype.getItemSymbol=function(){return this.get("itemSymbol")},e.prototype.getSelectedMapKey=function(t){return"categories"===this._mode?t.value+"":t.index+""},e.prototype.getPieceList=function(){return this._pieceList},e.prototype._determineMode=function(){var t=this.option;return t.pieces&&t.pieces.length>0?"pieces":this.option.categories?"categories":"splitNumber"},e.prototype.setSelected=function(t){this.option.selected=T(t)},e.prototype.getValueState=function(t){var e=_D.findPieceIndex(t,this._pieceList);return null!=e&&this.option.selected[this.getSelectedMapKey(this._pieceList[e])]?"inRange":"outOfRange"},e.prototype.findTargetDataIndices=function(t){var e=[],n=this._pieceList;return this.eachTargetSeries((function(i){var r=[],o=i.getData();o.each(this.getDataDimensionIndex(o),(function(e,i){_D.findPieceIndex(e,n)===t&&r.push(i)}),this),e.push({seriesId:i.id,dataIndex:r})}),this),e},e.prototype.getRepresentValue=function(t){var e;if(this.isCategory())e=t.value;else if(null!=t.value)e=t.value;else{var n=t.interval||[];e=n[0]===-1/0&&n[1]===1/0?0:(n[0]+n[1])/2}return e},e.prototype.getVisualMeta=function(t){if(!this.isCategory()){var e=[],n=["",""],i=this,r=this._pieceList.slice();if(r.length){var o=r[0].interval[0];o!==-1/0&&r.unshift({interval:[-1/0,o]}),(o=r[r.length-1].interval[1])!==1/0&&r.push({interval:[o,1/0]})}else r.push({interval:[-1/0,1/0]});var a=-1/0;return E(r,(function(t){var e=t.interval;e&&(e[0]>a&&s([a,e[0]],"outOfRange"),s(e.slice()),a=e[1])}),this),{stops:e,outerColors:n}}function s(r,o){var a=i.getRepresentValue({interval:r});o||(o=i.getValueState(a));var s=t(a,o);r[0]===-1/0?n[0]=s:r[1]===1/0?n[1]=s:e.push({value:r[0],color:s},{value:r[1],color:s})}},e.type="visualMap.piecewise",e.defaultOption=Cc(DF.defaultOption,{selected:null,minOpen:!1,maxOpen:!1,align:"auto",itemWidth:20,itemHeight:14,itemSymbol:"roundRect",pieces:null,categories:null,splitNumber:5,selectedMode:"multiple",itemGap:10,hoverLink:!0}),e}(DF),eG={splitNumber:function(t){var e=this.option,n=Math.min(e.precision,20),i=this.getExtent(),r=e.splitNumber;r=Math.max(parseInt(r,10),1),e.splitNumber=r;for(var o=(i[1]-i[0])/r;+o.toFixed(n)!==o&&n<5;)n++;e.precision=n,o=+o.toFixed(n),e.minOpen&&t.push({interval:[-1/0,i[0]],close:[0,0]});for(var a=0,s=i[0];a","≥"][e[0]]];t.text=t.text||this.formatValueText(null!=t.value?t.value:t.interval,!1,n)}),this)}};function nG(t,e){var n=t.inverse;("vertical"===t.orient?!n:n)&&e.reverse()}var iG=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n}return n(e,t),e.prototype.doRender=function(){var t=this.group;t.removeAll();var e=this.visualMapModel,n=e.get("textGap"),i=e.textStyleModel,r=i.getFont(),o=i.getTextColor(),a=this._getItemAlign(),s=e.itemSize,l=this._getViewData(),u=l.endsText,h=it(e.get("showLabel",!0),!u);u&&this._renderEndsText(t,u[0],s,h,a),E(l.viewPieceList,(function(i){var l=i.piece,u=new zr;u.onclick=W(this._onItemClick,this,l),this._enableHoverLink(u,i.indexInModelPieceList);var c=e.getRepresentValue(l);if(this._createItemSymbol(u,c,[0,0,s[0],s[1]]),h){var p=this.visualMapModel.getValueState(c);u.add(new Fs({style:{x:"right"===a?-n:s[0]+n,y:s[1]/2,text:l.text,verticalAlign:"middle",align:a,font:r,fill:o,opacity:"outOfRange"===p?.5:1}}))}t.add(u)}),this),u&&this._renderEndsText(t,u[1],s,h,a),Tp(e.get("orient"),t,e.get("itemGap")),this.renderBackground(t),this.positionGroup(t)},e.prototype._enableHoverLink=function(t,e){var n=this;t.on("mouseover",(function(){return i("highlight")})).on("mouseout",(function(){return i("downplay")}));var i=function(t){var i=n.visualMapModel;i.option.hoverLink&&n.api.dispatchAction({type:t,batch:NF(i.findTargetDataIndices(e),i)})}},e.prototype._getItemAlign=function(){var t=this.visualMapModel,e=t.option;if("vertical"===e.orient)return RF(t,this.api,t.itemSize);var n=e.align;return n&&"auto"!==n||(n="left"),n},e.prototype._renderEndsText=function(t,e,n,i,r){if(e){var o=new zr,a=this.visualMapModel.textStyleModel;o.add(new Fs({style:nc(a,{x:i?"right"===r?n[0]:0:n[0]/2,y:n[1]/2,verticalAlign:"middle",align:i?r:"center",text:e})})),t.add(o)}},e.prototype._getViewData=function(){var t=this.visualMapModel,e=z(t.getPieceList(),(function(t,e){return{piece:t,indexInModelPieceList:e}})),n=t.get("text"),i=t.get("orient"),r=t.get("inverse");return("horizontal"===i?r:!r)?e.reverse():n&&(n=n.slice().reverse()),{viewPieceList:e,endsText:n}},e.prototype._createItemSymbol=function(t,e,n){t.add(Wy(this.getControllerVisual(e,"symbol"),n[0],n[1],n[2],n[3],this.getControllerVisual(e,"color")))},e.prototype._onItemClick=function(t){var e=this.visualMapModel,n=e.option,i=n.selectedMode;if(i){var r=T(n.selected),o=e.getSelectedMapKey(t);"single"===i||!0===i?(r[o]=!0,E(r,(function(t,e){r[e]=e===o}))):r[o]=!r[o],this.api.dispatchAction({type:"selectDataRange",from:this.uid,visualMapId:this.visualMapModel.id,selected:r})}},e.type="visualMap.piecewise",e}(PF);function rG(t){t.registerComponentModel(tG),t.registerComponentView(iG),JF(t)}var oG={label:{enabled:!0},decal:{show:!1}},aG=Oo(),sG={};function lG(t,e){var n=t.getModel("aria");if(n.get("enabled")){var i=T(oG);C(i.label,t.getLocaleModel().get("aria"),!1),C(n.option,i,!1),function(){if(n.getModel("decal").get("show")){var e=yt();t.eachSeries((function(t){if(!t.isColorBySeries()){var n=e.get(t.type);n||(n={},e.set(t.type,n)),aG(t).scope=n}})),t.eachRawSeries((function(e){if(!t.isSeriesFiltered(e))if(X(e.enableAriaDecal))e.enableAriaDecal();else{var n=e.getData();if(e.isColorBySeries()){var i=ud(e.ecModel,e.name,sG,t.getSeriesCount()),r=n.getVisual("decal");n.setVisual("decal",u(r,i))}else{var o=e.getRawData(),a={},s=aG(e).scope;n.each((function(t){var e=n.getRawIndex(t);a[e]=t}));var l=o.count();o.each((function(t){var i=a[t],r=o.getName(t)||t+"",h=ud(e.ecModel,r,s,l),c=n.getItemVisual(i,"decal");n.setItemVisual(i,"decal",u(c,h))}))}}function u(t,e){var n=t?A(A({},e),t):e;return n.dirty=!0,n}}))}}(),function(){var i=t.getLocaleModel().get("aria"),o=n.getModel("label");if(o.option=k(o.option,i),!o.get("enabled"))return;var a=e.getZr().dom;if(o.get("description"))return void a.setAttribute("aria-label",o.get("description"));var s,l=t.getSeriesCount(),u=o.get(["data","maxCount"])||10,h=o.get(["series","maxCount"])||10,c=Math.min(l,h);if(l<1)return;var p=function(){var e=t.get("title");e&&e.length&&(e=e[0]);return e&&e.text}();s=p?r(o.get(["general","withTitle"]),{title:p}):o.get(["general","withoutTitle"]);var d=[];s+=r(l>1?o.get(["series","multiple","prefix"]):o.get(["series","single","prefix"]),{seriesCount:l}),t.eachSeries((function(e,n){if(n1?o.get(["series","multiple",a]):o.get(["series","single",a]),{seriesId:e.seriesIndex,seriesName:e.get("name"),seriesType:(x=e.subType,t.getLocaleModel().get(["series","typeNames"])[x]||"自定义图")});var s=e.getData();if(s.count()>u)i+=r(o.get(["data","partialData"]),{displayCnt:u});else i+=o.get(["data","allData"]);for(var h=o.get(["data","separator","middle"]),p=o.get(["data","separator","end"]),f=[],g=0;g":"gt",">=":"gte","=":"eq","!=":"ne","<>":"ne"},cG=function(){function t(t){if(null==(this._condVal=U(t)?new RegExp(t):et(t)?t:null)){var e="";0,vo(e)}}return t.prototype.evaluate=function(t){var e=typeof t;return U(e)?this._condVal.test(t):!!j(e)&&this._condVal.test(t+"")},t}(),pG=function(){function t(){}return t.prototype.evaluate=function(){return this.value},t}(),dG=function(){function t(){}return t.prototype.evaluate=function(){for(var t=this.children,e=0;e2&&l.push(e),e=[t,n]}function f(t,n,i,r){TG(t,i)&&TG(n,r)||e.push(t,n,i,r,i,r)}function g(t,n,i,r,o,a){var s=Math.abs(n-t),l=4*Math.tan(s/4)/3,u=nM:C2&&l.push(e),l}function DG(t,e,n,i,r,o,a,s,l,u){if(TG(t,n)&&TG(e,i)&&TG(r,a)&&TG(o,s))l.push(a,s);else{var h=2/u,c=h*h,p=a-t,d=s-e,f=Math.sqrt(p*p+d*d);p/=f,d/=f;var g=n-t,y=i-e,v=r-a,m=o-s,x=g*g+y*y,_=v*v+m*m;if(x=0&&_-w*w=0)l.push(a,s);else{var S=[],M=[];wn(t,n,r,a,.5,S),wn(e,i,o,s,.5,M),DG(S[0],M[0],S[1],M[1],S[2],M[2],S[3],M[3],l,u),DG(S[4],M[4],S[5],M[5],S[6],M[6],S[7],M[7],l,u)}}}}function AG(t,e,n){var i=t[e],r=t[1-e],o=Math.abs(i/r),a=Math.ceil(Math.sqrt(o*n)),s=Math.floor(n/a);0===s&&(s=1,a=n);for(var l=[],u=0;u0)for(u=0;uMath.abs(u),c=AG([l,u],h?0:1,e),p=(h?s:u)/c.length,d=0;d1?null:new De(d*l+t,d*u+e)}function OG(t,e,n){var i=new De;De.sub(i,n,e),i.normalize();var r=new De;return De.sub(r,t,e),r.dot(i)}function RG(t,e){var n=t[t.length-1];n&&n[0]===e[0]&&n[1]===e[1]||t.push(e)}function NG(t){var e=t.points,n=[],i=[];Ra(e,n,i);var r=new ze(n[0],n[1],i[0]-n[0],i[1]-n[1]),o=r.width,a=r.height,s=r.x,l=r.y,u=new De,h=new De;return o>a?(u.x=h.x=s+o/2,u.y=l,h.y=l+a):(u.y=h.y=l+a/2,u.x=s,h.x=s+o),function(t,e,n){for(var i=t.length,r=[],o=0;or,a=AG([i,r],o?0:1,e),s=o?"width":"height",l=o?"height":"width",u=o?"x":"y",h=o?"y":"x",c=t[s]/a.length,p=0;p0)for(var b=i/n,w=-i/2;w<=i/2;w+=b){var S=Math.sin(w),M=Math.cos(w),I=0;for(x=0;x0;l/=2){var u=0,h=0;(t&l)>0&&(u=1),(e&l)>0&&(h=1),s+=l*l*(3*u^h),0===h&&(1===u&&(t=l-1-t,e=l-1-e),a=t,t=e,e=a)}return s}function JG(t){var e=1/0,n=1/0,i=-1/0,r=-1/0,o=z(t,(function(t){var o=t.getBoundingRect(),a=t.getComputedTransform(),s=o.x+o.width/2+(a?a[4]:0),l=o.y+o.height/2+(a?a[5]:0);return e=Math.min(s,e),n=Math.min(l,n),i=Math.max(s,i),r=Math.max(l,r),[s,l]}));return z(o,(function(o,a){return{cp:o,z:$G(o[0],o[1],e,n,i,r),path:t[a]}})).sort((function(t,e){return t.z-e.z})).map((function(t){return t.path}))}function QG(t){return VG(t.path,t.count)}function tW(t){return Y(t[0])}function eW(t,e){for(var n=[],i=t.length,r=0;r=0;r--)if(!n[r].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[r].many=l.slice(u,o),n[s].many=l.slice(0,u),s++}return n}var nW={clone:function(t){for(var e=[],n=1-Math.pow(1-t.path.style.opacity,1/t.count),i=0;i0){var s,l,u=i.getModel("universalTransition").get("delay"),h=Object.assign({setToFinal:!0},a);tW(t)&&(s=t,l=e),tW(e)&&(s=e,l=t);for(var c=s?s===t:t.length>e.length,p=s?eW(l,s):eW(c?e:t,[c?t:e]),d=0,f=0;f1e4))for(var i=n.getIndices(),r=function(t){for(var e=t.dimensions,n=0;n0&&i.group.traverse((function(t){t instanceof Is&&!t.animators.length&&t.animateFrom({style:{opacity:0}},r)}))}))}function pW(t){var e=t.getModel("universalTransition").get("seriesKey");return e||t.id}function dW(t){return Y(t)?t.sort().join(","):t}function fW(t){if(t.hostModel)return t.hostModel.getModel("universalTransition").get("divideShape")}function gW(t,e){for(var n=0;n=0&&r.push({dataGroupId:e.oldDataGroupIds[n],data:e.oldData[n],divide:fW(e.oldData[n]),dim:t.dimension})})),E(bo(t.to),(function(t){var i=gW(n.updatedSeries,t);if(i>=0){var r=n.updatedSeries[i].getData();o.push({dataGroupId:e.oldDataGroupIds[i],data:r,divide:fW(r),dim:t.dimension})}})),r.length>0&&o.length>0&&cW(r,o,i)}(t,i,n,e)}));else{var o=function(t,e){var n=yt(),i=yt(),r=yt();return E(t.oldSeries,(function(e,n){var o=t.oldDataGroupIds[n],a=t.oldData[n],s=pW(e),l=dW(s);i.set(l,{dataGroupId:o,data:a}),Y(s)&&E(s,(function(t){r.set(t,{key:l,dataGroupId:o,data:a})}))})),E(e.updatedSeries,(function(t){if(t.isUniversalTransitionEnabled()&&t.isAnimationEnabled()){var e=t.get("dataGroupId"),o=t.getData(),a=pW(t),s=dW(a),l=i.get(s);if(l)n.set(s,{oldSeries:[{dataGroupId:l.dataGroupId,divide:fW(l.data),data:l.data}],newSeries:[{dataGroupId:e,divide:fW(o),data:o}]});else if(Y(a)){var u=[];E(a,(function(t){var e=i.get(t);e.data&&u.push({dataGroupId:e.dataGroupId,divide:fW(e.data),data:e.data})})),u.length&&n.set(s,{oldSeries:u,newSeries:[{dataGroupId:e,data:o,divide:fW(o)}]})}else{var h=r.get(a);if(h){var c=n.get(h.key);c||(c={oldSeries:[{dataGroupId:h.dataGroupId,data:h.data,divide:fW(h.data)}],newSeries:[]},n.set(h.key,c)),c.newSeries.push({dataGroupId:e,data:o,divide:fW(o)})}}}})),n}(i,n);E(o.keys(),(function(t){var n=o.get(t);cW(n.oldSeries,n.newSeries,e)}))}E(n.updatedSeries,(function(t){t[vg]&&(t[vg]=!1)}))}for(var a=t.getSeries(),s=i.oldSeries=[],l=i.oldDataGroupIds=[],u=i.oldData=[],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 M07*qoM6N<$f?6sW*8l(j diff --git a/static/img/bg_boobs.png b/static/img/bg_boobs.png deleted file mode 100644 index 09d2dd4d4901921e22d27af974c594bfe23bb193..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 21614 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 N002ovPDHLkV1fwA!f5~i diff --git a/static/img/bg_cross.png b/static/img/bg_cross.png deleted file mode 100644 index 3129cdd5af924468dbd5cbda9ea2da09e8ccb6f0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 4314 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 z zI0ypb$cCaTWJV;w0}4yw+11iJ2btfV$s-*w7hY`ceOiQuJlx4zE4gSqk*~PrWIwkl zAvjN~t^L9|_yT@}Il9Iom0Fy2RCtECx;h2c{VH*X?*3>%{yux7{hP832_>aH6J`H( z>%p+A+x6N~c=IBJ9gK-w1){x3ngE7cxS}r=^0Wf7Ac=u)6={%wK?D?i%l^g*wsDc2 z|GsrqiEi5$!MJtJ`o|;yx_vb=%|A%0*Ux5joMHN@gyHN7o5{+Z=}|StbDkMy&i>!x zot@tde$SCNxV5j295_B3&6ZA`qD=s(m9oH91Mq7rC5C@|8xvzVD?+&vHj*Egbz(}eH9?aL7r6) z-&)Blf6vUX`tUT$jA3tIxWC3f3V~v(?t1fk8}=}0g`F##r)j&hQ`4^{R9T6Xj9?IB zLobXJ)MMn!VKhUcn7ND3=5JlREt_YYXEOdRfJ(tBn;J})@TaJ zXUj&^!_)!7j0k^-kXI)5HVVz^s^XP_6{8A;9A4>Im%jp!7YPgh8*?rqeuTk`NcKbN zstqN;bPLERQXAD-jH{d@=?Rsbb(TGn1aDHu2#FhKl8dR7k4;I$kcwHVz*7S568;J* zB7X&`7lZn(&x@pV-Q6Cv2%i&7&Ez2`leQDs~YuWHZ);r?o{G1lfu; zp^WN=pT(lN1S7YVdQYtAHFI$D-H*%->Y;MGyiPg>ggZzxz(**sqp@ z=Q9u5jF9bb%PJ$)am^PQm-O8s{_Uo^iR zVFPAB{-5+)IoPfIN8b|poo^G#x5SBa1&$vsoy!8|-?|4=4=ZTEYo_RGT^HQ{05y9D Au>b%7 diff --git a/static/img/bg_diag.png b/static/img/bg_diag.png deleted file mode 100644 index f3c5fb7ac7dcea6c876de0a2786e2bc2f435007b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 10744 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 Pa)M9_>WB(Ci_rfA9y>7r diff --git a/static/img/bg_fuzzy.png b/static/img/bg_fuzzy.png deleted file mode 100644 index 6850ca4bf9c2eb080102fd554d693083171caf7b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 39777 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 SSe0zixr^Ke4VC8D=@PPMSA$XtN}+ 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 uO66|CH^so0=)-R9%qUxw|BHmmG42)B8Lv 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 diff --git a/static/index.css b/static/index.css deleted file mode 100644 index 4643d2f..0000000 --- a/static/index.css +++ /dev/null @@ -1,78 +0,0 @@ -body { - font-family: Arial, sans-serif; - background-color: #f5f5f5; - display: flex; - justify-content: center; - align-items: center; - height: 100vh; - margin: 0; - background-image: url("../static/img/bg_circles.png"); - background-repeat: repeat; -} -#chat-container { - width: 80%; /* 使用百分比宽度 */ - max-width: 1300px; /* 最大宽度,防止界面变得过宽 */ - background-color: #fff; - border: 1px solid #ccc; - border-radius: 10px; - padding: 20px; - box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); -} -#chat-messages { - max-height: 500px; - overflow-y: auto; - border: 1px solid #ddd; - border-radius: 5px; - padding: 10px; - background-color: #f9f9f9; - word-wrap: break-word; /* 自动换行 */ - white-space: pre-wrap; /* 保留空格并自动换行 */ -} -.message-divider { - border-top: 1px solid #ccc; - margin: 10px 0; -} -#user-input { - width: 97%; - padding: 10px; - border: 1px solid #ccc; - border-radius: 5px; - margin-top: 10px; -} -#user-input:focus { - outline: none; -} -#user-input::placeholder { - color: #999; -} -#user-input-button { - background-color: #007bff; - color: #fff; - border: none; - border-radius: 5px; - padding: 10px 20px; - margin-top: 10px; - cursor: pointer; -} -#user-input-button:disabled { - background-color: #ccc; - cursor: not-allowed; -} -/* 新增样式 */ -#additional-controls { - display: flex; - align-items: center; - justify-content: space-between; /* 左右对齐 */ - margin-top: 10px; -} -#additional-controls input[type="checkbox"] { - margin-right: 10px; -} -#additional-controls button { - background-color: #466d2b; - color: #fff; - border: none; - border-radius: 5px; - padding: 10px 20px; - cursor: pointer; -} \ No newline at end of file diff --git a/static/loading.css b/static/loading.css deleted file mode 100644 index 510ec4a..0000000 --- a/static/loading.css +++ /dev/null @@ -1,270 +0,0 @@ -.loading { - width: 100%; - height: 100vh; - opacity: 1; - position: fixed; - display: flex; - justify-content: center; - align-items: center; - z-index: 3; - background-color: #fbfbfb; - transition: opacity 1s ease; - pointer-events: none; /* 确保遮罩不影响下方元素的交互 */ -} - -.typewriter { - --blue: #5C86FF; - --blue-dark: #275EFE; - --key: #fff; - --paper: #EEF0FD; - --text: #D3D4EC; - --tool: #FBC56C; - --duration: 3s; - position: relative; - -webkit-animation: bounce05 var(--duration) linear infinite; - animation: bounce05 var(--duration) linear infinite; -} - -.typewriter .slide { - width: 92px; - height: 20px; - border-radius: 3px; - margin-left: 14px; - transform: translateX(14px); - background: linear-gradient(var(--blue), var(--blue-dark)); - -webkit-animation: slide05 var(--duration) ease infinite; - animation: slide05 var(--duration) ease infinite; -} - -.typewriter .slide:before, -.typewriter .slide:after, -.typewriter .slide i:before { - content: ""; - position: absolute; - background: var(--tool); -} - -.typewriter .slide:before { - width: 2px; - height: 8px; - top: 6px; - left: 100%; -} - -.typewriter .slide:after { - left: 94px; - top: 3px; - height: 14px; - width: 6px; - border-radius: 3px; -} - -.typewriter .slide i { - display: block; - position: absolute; - right: 100%; - width: 6px; - height: 4px; - top: 4px; - background: var(--tool); -} - -.typewriter .slide i:before { - right: 100%; - top: -2px; - width: 4px; - border-radius: 2px; - height: 14px; -} - -.typewriter .paper { - position: absolute; - left: 24px; - top: -26px; - width: 40px; - height: 46px; - border-radius: 5px; - background: var(--paper); - transform: translateY(46px); - -webkit-animation: paper05 var(--duration) linear infinite; - animation: paper05 var(--duration) linear infinite; -} - -.typewriter .paper:before { - content: ""; - position: absolute; - left: 6px; - right: 6px; - top: 7px; - border-radius: 2px; - height: 4px; - transform: scaleY(0.8); - background: var(--text); - box-shadow: 0 12px 0 var(--text), 0 24px 0 var(--text), 0 36px 0 var(--text); -} - -.typewriter .keyboard { - width: 120px; - height: 56px; - margin-top: -10px; - z-index: 1; - position: relative; -} - -.typewriter .keyboard:before, -.typewriter .keyboard:after { - content: ""; - position: absolute; -} - -.typewriter .keyboard:before { - top: 0; - left: 0; - right: 0; - bottom: 0; - border-radius: 7px; - background: linear-gradient(135deg, var(--blue), var(--blue-dark)); - transform: perspective(10px) rotateX(2deg); - transform-origin: 50% 100%; -} - -.typewriter .keyboard:after { - left: 2px; - top: 25px; - width: 11px; - height: 4px; - border-radius: 2px; - box-shadow: 15px 0 0 var(--key), 30px 0 0 var(--key), 45px 0 0 var(--key), 60px 0 0 var(--key), 75px 0 0 var(--key), 90px 0 0 var(--key), 22px 10px 0 var(--key), 37px 10px 0 var(--key), 52px 10px 0 var(--key), 60px 10px 0 var(--key), 68px 10px 0 var(--key), 83px 10px 0 var(--key); - -webkit-animation: keyboard05 var(--duration) linear infinite; - animation: keyboard05 var(--duration) linear infinite; -} - -@keyframes bounce05 { - - 85%, - 92%, - 100% { - transform: translateY(0); - } - - 89% { - transform: translateY(-4px); - } - - 95% { - transform: translateY(2px); - } -} - -@keyframes slide05 { - 5% { - transform: translateX(14px); - } - - 15%, - 30% { - transform: translateX(6px); - } - - 40%, - 55% { - transform: translateX(0); - } - - 65%, - 70% { - transform: translateX(-4px); - } - - 80%, - 89% { - transform: translateX(-12px); - } - - 100% { - transform: translateX(14px); - } -} - -@keyframes paper05 { - 5% { - transform: translateY(46px); - } - - 20%, - 30% { - transform: translateY(34px); - } - - 40%, - 55% { - transform: translateY(22px); - } - - 65%, - 70% { - transform: translateY(10px); - } - - 80%, - 85% { - transform: translateY(0); - } - - 92%, - 100% { - transform: translateY(46px); - } -} - -@keyframes keyboard05 { - - 5%, - 12%, - 21%, - 30%, - 39%, - 48%, - 57%, - 66%, - 75%, - 84% { - box-shadow: 15px 0 0 var(--key), 30px 0 0 var(--key), 45px 0 0 var(--key), 60px 0 0 var(--key), 75px 0 0 var(--key), 90px 0 0 var(--key), 22px 10px 0 var(--key), 37px 10px 0 var(--key), 52px 10px 0 var(--key), 60px 10px 0 var(--key), 68px 10px 0 var(--key), 83px 10px 0 var(--key); - } - - 9% { - box-shadow: 15px 2px 0 var(--key), 30px 0 0 var(--key), 45px 0 0 var(--key), 60px 0 0 var(--key), 75px 0 0 var(--key), 90px 0 0 var(--key), 22px 10px 0 var(--key), 37px 10px 0 var(--key), 52px 10px 0 var(--key), 60px 10px 0 var(--key), 68px 10px 0 var(--key), 83px 10px 0 var(--key); - } - - 18% { - box-shadow: 15px 0 0 var(--key), 30px 0 0 var(--key), 45px 0 0 var(--key), 60px 2px 0 var(--key), 75px 0 0 var(--key), 90px 0 0 var(--key), 22px 10px 0 var(--key), 37px 10px 0 var(--key), 52px 10px 0 var(--key), 60px 10px 0 var(--key), 68px 10px 0 var(--key), 83px 10px 0 var(--key); - } - - 27% { - box-shadow: 15px 0 0 var(--key), 30px 0 0 var(--key), 45px 0 0 var(--key), 60px 0 0 var(--key), 75px 0 0 var(--key), 90px 0 0 var(--key), 22px 12px 0 var(--key), 37px 10px 0 var(--key), 52px 10px 0 var(--key), 60px 10px 0 var(--key), 68px 10px 0 var(--key), 83px 10px 0 var(--key); - } - - 36% { - box-shadow: 15px 0 0 var(--key), 30px 0 0 var(--key), 45px 0 0 var(--key), 60px 0 0 var(--key), 75px 0 0 var(--key), 90px 0 0 var(--key), 22px 10px 0 var(--key), 37px 10px 0 var(--key), 52px 12px 0 var(--key), 60px 12px 0 var(--key), 68px 12px 0 var(--key), 83px 10px 0 var(--key); - } - - 45% { - box-shadow: 15px 0 0 var(--key), 30px 0 0 var(--key), 45px 0 0 var(--key), 60px 0 0 var(--key), 75px 0 0 var(--key), 90px 2px 0 var(--key), 22px 10px 0 var(--key), 37px 10px 0 var(--key), 52px 10px 0 var(--key), 60px 10px 0 var(--key), 68px 10px 0 var(--key), 83px 10px 0 var(--key); - } - - 54% { - box-shadow: 15px 0 0 var(--key), 30px 2px 0 var(--key), 45px 0 0 var(--key), 60px 0 0 var(--key), 75px 0 0 var(--key), 90px 0 0 var(--key), 22px 10px 0 var(--key), 37px 10px 0 var(--key), 52px 10px 0 var(--key), 60px 10px 0 var(--key), 68px 10px 0 var(--key), 83px 10px 0 var(--key); - } - - 63% { - box-shadow: 15px 0 0 var(--key), 30px 0 0 var(--key), 45px 0 0 var(--key), 60px 0 0 var(--key), 75px 0 0 var(--key), 90px 0 0 var(--key), 22px 10px 0 var(--key), 37px 10px 0 var(--key), 52px 10px 0 var(--key), 60px 10px 0 var(--key), 68px 10px 0 var(--key), 83px 12px 0 var(--key); - } - - 72% { - box-shadow: 15px 0 0 var(--key), 30px 0 0 var(--key), 45px 2px 0 var(--key), 60px 0 0 var(--key), 75px 0 0 var(--key), 90px 0 0 var(--key), 22px 10px 0 var(--key), 37px 10px 0 var(--key), 52px 10px 0 var(--key), 60px 10px 0 var(--key), 68px 10px 0 var(--key), 83px 10px 0 var(--key); - } - - 81% { - box-shadow: 15px 0 0 var(--key), 30px 0 0 var(--key), 45px 0 0 var(--key), 60px 0 0 var(--key), 75px 0 0 var(--key), 90px 0 0 var(--key), 22px 10px 0 var(--key), 37px 12px 0 var(--key), 52px 10px 0 var(--key), 60px 10px 0 var(--key), 68px 10px 0 var(--key), 83px 10px 0 var(--key); - } -} \ No newline at end of file diff --git a/static/menu.css b/static/menu.css deleted file mode 100644 index cb32b30..0000000 --- a/static/menu.css +++ /dev/null @@ -1,52 +0,0 @@ -body { - margin: 0; - font-family: 'Arial', sans-serif; - overflow-x: hidden; - } - - #sidebar { - height: 100vh; - width: 250px; - position: fixed; - top: 0; - left: -200px; - background-color: #006699; - overflow-x: hidden; - transition: 0.5s; - padding-top: 60px; - color: white; - z-index: 2; /* 保证遮罩在页面上方 */ - } - - #sidebar a { - padding: 15px 10px; - text-decoration: none; - font-size: 18px; - color: white; - display: block; - transition: 0.3s; - } - - #sidebar a:hover { - background-color: #3366CC; - } - - #main { - padding: 30px; - padding-left: 80px; - } - - #global-blur { - background-color: rgba(255, 255, 255, 0); - position: fixed; - top: 0; - left: 0; - width: 100%; - height: 100%; - backdrop-filter: blur(8px); /* 模糊度可以根据需要调整 */ - transition: display; - z-index: 1; /* 保证遮罩在页面上方 */ - pointer-events: none; /* 确保遮罩不影响下方元素的交互 */ - opacity: 0; - transition: opacity 0.3s ease - } \ No newline at end of file diff --git a/static/menu.js b/static/menu.js deleted file mode 100644 index 93717db..0000000 --- a/static/menu.js +++ /dev/null @@ -1,9 +0,0 @@ -function openNav() { - document.getElementById("sidebar").style.left = "0"; - document.getElementById("global-blur").style.opacity = 1; - } - - function closeNav() { - document.getElementById("sidebar").style.left = "-200px"; - document.getElementById("global-blur").style.opacity = 0; - } \ No newline at end of file diff --git a/static/popup.css b/static/popup.css deleted file mode 100644 index eea13bc..0000000 --- a/static/popup.css +++ /dev/null @@ -1,171 +0,0 @@ -#global-blur { - background-color: rgba(255, 255, 255, 0); - position: fixed; - top: 0; - left: 0; - width: 100%; - height: 100%; - backdrop-filter: blur(8px); - /* 模糊度可以根据需要调整 */ - transition: display; - z-index: 1; - /* 保证遮罩在页面上方 */ - pointer-events: none; - /* 确保遮罩不影响下方元素的交互 */ - opacity: 0; - transition: opacity 0.3s ease -} - -#popup-container { - background-color: #f1f1f1; - height: 100%; - width: 250px; - position: fixed; - top: 0; - right: 0; - overflow-x: hidden; - padding-top: 60px; - z-index: 2; - transition: transform 0.4s ease; - transform: translateX(250px); -} - -#popup-container.show { - transform: translateX(0); -} - -#close-popup { - position: absolute; - top: 10px; - right: 10px; -} - -#dropdown { - margin: auto; - width: 80%; - /* 让 - 配额 - - - - -


-
-

批量创建密钥

-
- -
- 个数 - - 配额 - - -
-
- {% if resq != "null" %} -
-
-

执行结果

- {% for i in resq %} -

{{ i }}

- {% endfor %} -
- {% endif %} - - - - - - \ No newline at end of file diff --git a/templates/favicon.ico b/templates/favicon.ico deleted file mode 100644 index 51a80b22f71260b94d7159d80ddc34ad3016deb3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 9662 zcmeHKOKuZE5N$rn_ykc_2q8c$Jw5=IauVNw3s??bvB)kP#0|JaWNyLIK`gS(3L)8^ z;Z=24yF4>J%ojzd6Sb?RU0wD1)pO5`F;DP6of>?;G+*Bsb8d`zhk+@xz@T~ldu>hp zj0{8uA_I|u$UtOZ7zXk*xy0DI@phQ3<7WZhrxPp(fYWd2DYiej8);5cFC5mIuFy+OGqon`;Oa7Dc)h= z`5GU&O7|?`jMlcr&sssfk}YtBx|bMR;g>Dyd98_0xoUi1ES>o}zBPW-lKr<`+az9V z!|k<<-}Q_3(Ilsi@%`?wR_6)%!j06y9!mIiOejxio;h*)3B~l8*V-U|aQ#T{VEf<< zt!2!_53svY;$O#v@`UDn?`rVl%)_&gdbX+Z>A4_HUKQ);{N&f_rv^hYuUso$g8ch) z=g6UOsqKOGDS5@}{LFLc{BgNuT~kZ?cf17gH_cTQ$C!!tWB2t8gn%Q{sD1|;vOD@eh3$x8yNI#D$l*Ae#7$zd*5Ib-`6@n1L*!1 zxf|jddxvglocxA^*KKQ#fBq!k_J}{AJ?0<#+_uF}`DCAA$*ZMi}sg}C$4CNE|x_)0D_k8>QrF5iv?X@-39O - - - - - - - KakuAI - - - - - - -
-
-
-
-
-
-
- -
- -
- -
- - × - -

这是一条通知。

- -
- -
-
-
-
- -
- - - - - - - - - - - \ No newline at end of file diff --git a/templates/keylist.html b/templates/keylist.html deleted file mode 100644 index c0f0a5b..0000000 --- a/templates/keylist.html +++ /dev/null @@ -1,81 +0,0 @@ - - - - - - 列出密钥 - - - - - - -
- - -
-
-

列出密钥

- - - - - - - - - - {% for item in data %} - - - - - - {% endfor %} - -
Key剩余Tokens操作
{{item[0]}}{{item[1]}}删除
-
-
- -
- - - - - \ No newline at end of file diff --git a/templates/login.html b/templates/login.html deleted file mode 100644 index bdb2613..0000000 --- a/templates/login.html +++ /dev/null @@ -1,63 +0,0 @@ - - - - - - - 登录页面 - - - - - - - - - \ No newline at end of file diff --git a/templates/loglist.html b/templates/loglist.html deleted file mode 100644 index c53775e..0000000 --- a/templates/loglist.html +++ /dev/null @@ -1,84 +0,0 @@ - - - - - - 列出日志 - - - - - - -
- - -
-
-

列出日志

- - - - - - - - - - - - {% for item in data %} - - - - - - - - {% endfor %} - -
IP时间token用量使用模型UserKey
{{item[0]}}{{item[1]}}{{item[2]}}{{item[3]}}{{item[4]}}
-
-
-
- - - - - \ No newline at end of file diff --git a/templates/lookupKey.html b/templates/lookupKey.html deleted file mode 100644 index 3ebe4f3..0000000 --- a/templates/lookupKey.html +++ /dev/null @@ -1,61 +0,0 @@ - - - - - - 查询密钥 - - - - - - -
- - -
-
-

查询密钥

-
- UserKey - - -
-
- {% if resq != "null" %} -
-
-

执行结果

- {% if resq == -99999 %} -

未找到UserKey

- {% else %} -

配额剩余 {{ resq }}

- {% endif %} -
- {% endif %} -
- - - - - \ No newline at end of file diff --git a/templates/status.html b/templates/status.html deleted file mode 100644 index 3ece071..0000000 --- a/templates/status.html +++ /dev/null @@ -1,152 +0,0 @@ - - - - - - 后台管理 - - - - - - -
- - -
-
-

概况

-
-
-
-
-

状态

- - - - - - - - - - - - - - - {% if status["db"] == True %} - - {% else %} - - {% endif %} - - - - - - -
项目状态
开发者心态正常
数据库连接正常连接异常
开发者大脑负载较高
-
-
- - - - - - \ No newline at end of file