diff --git a/.babelrc b/.babelrc deleted file mode 100644 index 0dce8c0..0000000 --- a/.babelrc +++ /dev/null @@ -1,3 +0,0 @@ -{ - "presets": ["@babel/env", "@babel/preset-react"] -} diff --git a/.configs/.mocharc.js b/.configs/.mocharc.js deleted file mode 100644 index fe6db58..0000000 --- a/.configs/.mocharc.js +++ /dev/null @@ -1,18 +0,0 @@ -'use strict'; - -// Here's a JavaScript-based config file. -// If you need conditional logic, you might want to use this type of config. -// Otherwise, JSON or YAML is recommended. - -module.exports = { - diff: true, - extension: ['spec'], - opts: false, - exit: true, // end bash script when done - slow: 75, - timeout: 5000, - ui: 'bdd', - spec: ['test/*.spec.js'], - color: true, - output: 'test/test.js' -}; \ No newline at end of file diff --git a/.editorconfig b/.editorconfig deleted file mode 100644 index 9d08a1a..0000000 --- a/.editorconfig +++ /dev/null @@ -1,9 +0,0 @@ -root = true - -[*] -charset = utf-8 -indent_style = space -indent_size = 2 -end_of_line = lf -insert_final_newline = true -trim_trailing_whitespace = true diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml deleted file mode 100644 index 41a22fb..0000000 --- a/.github/workflows/build.yaml +++ /dev/null @@ -1,35 +0,0 @@ -# Name is optional and if present must be used -# in the url path for badges -name: Build - -# Run on a dev branch -on: - push: - branches: - - master - - dev - pull_request: - branches: - - master - -jobs: - Build: - name: Build - runs-on: ubuntu-latest - strategy: - matrix: - node-version: [18.17.0] - - steps: - - name: Checkout Repository - uses: actions/checkout@v1 - - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v1 - with: - node-version: ${{ matrix.node-version }} - - name: Install Fresh Dependencies - run: npm ci - - name: Build library - run: npm run build - - name: Log build output - run: ls -alt dist/ diff --git a/.github/workflows/publish-to-npm.yaml b/.github/workflows/publish-to-npm.yaml deleted file mode 100644 index f11a471..0000000 --- a/.github/workflows/publish-to-npm.yaml +++ /dev/null @@ -1,32 +0,0 @@ - -# Name is optional and if present must be used -# in the url path for badges -name: Publish to NPM - -# only run when a release has been "published" -on: - release: - types: [released] - -jobs: - - # publish to npm on release - publish: - name: NPM Publish - runs-on: ubuntu-latest - strategy: - matrix: - node-version: [17.5.0] - - steps: - - uses: actions/checkout@v1 - - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v1 - with: - node-version: ${{ matrix.node-version }} - registry-url: https://registry.npmjs.org/ - - run: npm install - - run: npm run build - - run: npm publish --access public - env: - NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} \ No newline at end of file diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml deleted file mode 100644 index 675e32e..0000000 --- a/.github/workflows/test.yaml +++ /dev/null @@ -1,35 +0,0 @@ -# Name is optional and if present must be used -# in the url path for badges -name: Test - -# Run on a dev branch -on: - push: - branches: - - master - - dev - pull_request: - branches: - - master - -jobs: - Test: - name: Test - runs-on: ubuntu-latest - strategy: - matrix: - node-version: [18.17.0] - - steps: - - name: Checkout Repository - uses: actions/checkout@v1 - - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v1 - with: - node-version: ${{ matrix.node-version }} - - name: Install Fresh Dependencies - run: npm ci - - name: Build library - run: npm run build - - name: Run Unit Tests - run: npm run test:unit diff --git a/.gitignore b/.gitignore deleted file mode 100644 index d054719..0000000 --- a/.gitignore +++ /dev/null @@ -1,25 +0,0 @@ -# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. - -# dependencies -/node_modules - -# production -/build - -# output files -/dist - -# misc -.DS_Store -.env -.env.local -.env.development.local -.env.test.local -.env.production.local - -npm-debug.log* -yarn-debug.log* -yarn-error.log* - -# Other generated files -CHANGELOG.md \ No newline at end of file diff --git a/.nvmrc b/.nvmrc deleted file mode 100644 index 97dfde2..0000000 --- a/.nvmrc +++ /dev/null @@ -1 +0,0 @@ -v17.5.0 \ No newline at end of file diff --git a/LICENSE b/LICENSE deleted file mode 100644 index 5039fb0..0000000 --- a/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -The MIT License (MIT) - -Copyright (c) 2019 ZingChart - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/README.md b/README.md deleted file mode 100644 index 992e28d..0000000 --- a/README.md +++ /dev/null @@ -1,286 +0,0 @@ - - - - - - - - - -[](http://commitizen.github.io/cz-cli/) - -[](https://codesandbox.io/s/zingchart-react-wrapper-example-dxfc9) - -## Quickstart Guide - -Quickly add charts to your React application with our ZingChart component - -This guide assumes some basic working knowledge of React and jsx. - - -## 1. Install - -Install the `zingchart` package via npm - -`npm install zingchart` - -Install the `zingchart-react` package via npm - -`npm install zingchart-react` - -## 2. Include the `zingchart` package in your project - -The `zingchart` package is a **DIRECT** dependency of `zingchart-react` but you can also update this package outside of this component. Meaning the wrapper is no longer tied to a ZingChart library version, but just the component itself. - -You can import the library like so: - -```javascript -// import the es6 version -import 'zingchart/es6'; -``` - -## 3. Include the component in your project - -You can either include the zingchart-react component to your project via UMD or modules (recommended). - - -### Modules (recommended) -```js -import 'zingchart/es6'; -import ZingChart from 'zingchart-react'; -``` - -You must **EXPLICITLY IMPORT MODULE CHARTS**. The modules are -wrapped as a closure an eval statement so there is **NO** default -export objects. Just import them. - -```js -import 'zingchart/es6'; -import ZingChart from 'zingchart-react'; -// EXPLICITLY IMPORT MODULE from node_modules -import "zingchart/modules-es6/zingchart-maps.min.js"; -import "zingchart/modules-es6/zingchart-maps-usa.min.js"; -``` - -### UMD - -In your main html file, include the package as a script include. -```html - - -``` - -### `zingchart` Global Object - -If you need access to the `window.zingchart` objects for licensing or development flags or any top level -variables for other modules like `zingchart.loadGeoJSON()`. This is all exposed by importing the library as -the `zingchart` variable with `import zingchart from 'zingchart/es6'`. - -```javascript -import zingchart from 'zingchart/es6'; -import ZingChart from 'zingchart-react'; - -// zingchart object for performance flags -zingchart.DEV.KEEPSOURCE = 0; // prevents lib from storing the original data package -zingchart.DEV.COPYDATA = 0; // prevents lib from creating a copy of the data package - -// ZC object for license key -zingchart.LICENSE = ['abcdefghijklmnopqrstuvwxy']; -``` - -## Usage - -Use the newly imported `ZingChart` component in your markup. - -### Using class components: - -```jsx -import React, {Component} from 'react'; -import zingchart from 'zingchart/es6'; -import ZingChart from 'zingchart-react'; -/* Additional imports and settings as needed, see above */ - -class Simple extends Component { - constructor(props) { - super(props); - this.state = { - config: { - type: 'bar', - series: [{ - values: [4,5,3,4,5,3,5,4,11] - }] - } - } - } - render() { - return ( -
{output}-
1o.3J.Bb?(1o.6e.1V={},1o.6e.2e=0):1o.6e.1V[i]=n}1l n},1o.fT={},1o.Az={},1o.c9=2,1o.Dn=!1,1o.tD=1,1o.Bh={1w:"xy",97:"3d,1w",1N:"xy",83:"3d,1N",bj:"yx",bv:"yx",5t:"xy",6O:"3d,5t",6c:"yx",7k:"3d,6c",6v:"xy",5m:"xy",8r:"yx",6V:"yx",3O:"r",7e:"3d,3O",8S:"r",8D:"r",8i:"5t",7R:"6c",aA:"xy",aB:"yx",5V:"xy",7d:"r",5z:"xy",qw:"yx",84:"xy,5t",b7:"r"},1o.4F={9O:!1,aT:!1,dh:!1,8n:!1,k4:!1},1o.Bi=1n(e){1j(1a t=0;t
%q ms",mA:"%d %M %Y
%g:%i:%s %A",hT:"%d %M %Y
%g:%i %A",mz:"%d %M %Y
%g %A",da:"%d %M %Y",ex:"%M %Y",mw:"%Y"},"jV-5G":["113","Xb","Xa","WF","cl","WA","Wz"],"jV-fR":["Wy","Wx","Ww","Wv","Wu","Wr","Wg"],"k9-5G":["ci","Wq","Wp","Wo","yV","Wn","Wm","Wk","Wi","Xc","Ws","Xt"],"k9-fR":["Yb","XX","Xz","Xy","yV","Xx","Xw","Xu","Xs","Xg","Xr","Xq"],"tm-b3":"nV...","8m-b3":"Xp...","7L-b3-fR":"nV. o0...","7L-b3-5G":"nV...","7L-b3-lX":"...","4L-5K":"An yB Xo Xn","4L-b8":"yB Xj:","4L-7m":"hl","4r-5K":"ng yD Xh","4r-wg":"yE 3h dG","4r-ux":"yE Wd Wc","4r-w9":"nf Vc:","4r-wc":"3h dG:","4r-wi":"nf yN Vb","4r-wk":"if yP Va to Ux Uw r4 13r Ut to Us Ur","4r-xf":"yN Up is Uo...","4r-fP":"ng","4r-iT":"Um","4r-wD":"nf Uk Uj Vd Vf.\\n\\Vt yP!","6t-7m":"hl","4K-fU":"wv 3h","4K-fV":"ww 3h","4K-7m":"hl","4K-9A":"Wa","cj-7m":"hl","1Y-vx":"nB %3f% of %9R%"},ZC.HE=1o.fT.s2,1o.6Z=1n(e){1j(1a t=0;t<1o.HY.1f;t++)if(1o.HY[t].J===e)1l 1o.HY[t];1l 1c},1o.pE=1n(e,t){1l e.OH(t)},1o.W9=1n(e){e.A6&&e.A6.fX();1j(1a t=0;t
").1F(/\\\\n/g,"
"),"2F"===l.H.AB&&(l.AN=l.AN.1F(/&8u;/g," "))),l.4y([["iy","sn","b"],["8F-1s","WW","b"],["1X-1s","OR","i"],["1w-1M","FE","i"],["1s-eD","qU","f"],["14B-1E","iE","b"],["3t-1E","sF","b"],["6x","gJ","b"],["bH","N2","b"],["hh","QO","b"],["1E-bS","KB"],["aH","gF","b"],["1E-3u","OA"],["3u","OA"],["9l-3u","JW"],["2t-2e","DE","f"],["1X-qZ","YM","i"],["2t-9B","GC"],["2t-2f","AA","i"],["1r","C1","c"],["2t-1r","C1","c"],["1E-2o","WY","f",0,1],["14m-sa","VN","b"]]),l.DE=ZC.BM(1,l.DE),1c===ZC.1d(l.o["1E-2o"])&&(l.WY=l.C4),l.gJ&&(l.7C="6x"),1c!==(e=ZC.1d(l.o["2t-79"]))&&(l.7C=e),1c===ZC.1d(l.o["1E-bS"])&&(l.KB=l.QO?"hh":"2b"),1c!==(e=ZC.1d(l.o["2t-1I"]))&&(l.N2="bH"===e||"bQ"===e),1c!==(e=ZC.1d(l.o.3v))){1a r=6d(e).2n(/\\s+|;|,/);t=1===r.1f?[ZC.1k(r[0]),ZC.1k(r[0]),ZC.1k(r[0]),ZC.1k(r[0])]:2===r.1f?[ZC.1k(r[0]),ZC.1k(r[1]),ZC.1k(r[0]),ZC.1k(r[1])]:3===r.1f?[ZC.1k(r[0]),ZC.1k(r[1]),ZC.1k(r[2]),ZC.1k(r[0])]:[ZC.1k(r[0]),ZC.1k(r[1]),ZC.1k(r[2]),ZC.1k(r[3])],l.FM=t[0],l.FN=t[1],l.FY=t[2],l.EN=t[3]}if(l.4y([["3v-1v","FM","i"],["3v-2A","FN","i"],["3v-2a","FY","i"],["3v-1K","EN","i"]]),l.AN){l.YM>0&&l.AN.1f>l.YM&&(l.AN=l.AN.2v(0,l.YM)+"...");1a o=l.AN.2n(/
|
|
|\\n/),s="";1y l.o["4g-4E"]!==ZC.1b[31]&&ZC.2s(l.o["4g-4E"])&&(o=[l.AN],s="[sf]");o.1f;1j(l.KO=ZC.P.lz(1g.H.J,s+l.AN,1g.GC,1g.DE,1g.7C,1g.FE,!0)+l.FM+l.FY,i=0,a=o.1f;il.I&&!l.E.si&&l.I>2*l.DE){1a A,C="",Z=0,c=l.AN.1F(/
/gi," [##] ").2n(/\\s|
/),p=[];1j(i=0,a=c.1f;i.9*l.I){1a u=1B.4l(A/l.I*.9),h=1B.4l(c[i].1f/u);1j(n=0;n",Z=0):(Z+=A=1+l.eV(p[i]+" "))>.9*l.I?(i>0&&(C+="
"),C+=p[i]+" ",Z=A):C+=p[i]+" ");C=(C=C.1F(/
/g,"
").1F(/
/g,"
")).1F(/(.+?)
$/g,"$1");1a 1b=l.o.1E;l.o.1E=C,l.E.si=!0,l.1q(),l.o.1E=1b,l.E.si=!1}if(!(1c!==ZC.1d(l.o[ZC.1b[19]])&&1c!==ZC.1d(l.o[ZC.1b[20]])||1c===ZC.1d(l.o.2K)&&1c===ZC.1d(l.o.2y)&&1c===ZC.1d(l.o[ZC.1b[57]])&&1c===ZC.1d(l.o[ZC.1b[58]])&&1c===ZC.1d(l.o[ZC.1b[59]])&&1c===ZC.1d(l.o[ZC.1b[60]]))){l.iX=-1,l.iY=-1;1a d=l.o[ZC.1b[19]],f=l.o[ZC.1b[20]];1c===ZC.1d(d)&&(l.o[ZC.1b[19]]=l.I),1c===ZC.1d(f)&&(l.o[ZC.1b[20]]=l.F),l.9n(),l.o[ZC.1b[19]]=d,l.o[ZC.1b[20]]=f}if(1y l.o["4g-4E"]===ZC.1b[31]||!l.o["4g-4E"]){1a g=1B.4l((l.NM-l.EN-l.FN)/l.DE);g>0&&(l.AN=l.AN.1F(/
/g,1m 3M(g).2M("\\13Y")))}}l.gC()}1t(){1a e,t,i,a,n,l,r,o,s,A,C,Z=1g;if(!Z.W8&&!Z.sn){1a c=!0;1c!==ZC.1d(Z.o.uo)&&(c=ZC.2s(Z.o.uo));1a p,u,h={x:Z.iX+Z.EN-1,y:Z.iY+Z.FM-1,1s:Z.I-Z.EN-Z.FN+2,1M:Z.F-Z.FM-Z.FY+2,1J:Z.E.tA||""},1b=[[0,0]];1j(c&&(1b=[[0,0],[0,2],[0,-4],[0,4],[0,-8],[3,0],[-6,0],[5,0],[-10,0]]),u=0;u<1b.1f;u++){1j(p=!0,h.x+=1b[u][0],h.y+=1b[u][0],n=0,l=Z.H.T1.1f;n
|
|\\n/)),g&&!B&&"2F"===d&&"0"===f&&(f="141");1a R=Z.IJ?Z.IJ:Z.Z.6o;1P(d+f){1i"147":1i"13V":1i"uf":if(a=1,!g)1P(Z.JW){1i"6n":a+=(Z.F-Z.KO)/2;1p;1i"2a":a+=Z.F-Z.KO}if(r=ZC.P.HZ({id:Z.J,2p:Z.GI,tl:ZC.4o(Z.iY+Z.BB)+"/"+ZC.4o(Z.iX+Z.BJ),wh:Z.I+"/"+Z.F,2K:"4D",3v:0,2y:0,9L:g?"2h":"8R",cT:Z.OA}),g&&(B||d+f!=="uf"||(R=ZC.AK(Z.H.J+"-1v")),R.2Z(r)),ZC.P.HZ({id:Z.J+"-t",2p:""!==Z.GI?Z.GI+"-t":"",p:r,1s:Z.I-Z.EN-Z.FN,1M:g?1c:Z.KO-Z.FM-Z.FY,tl:a+"/0",4g:Z.AN+"",2K:"4D",u8:"mC",3o:Z.WY,1r:Z.C1,6U:Z.7C,cO:Z.N2?"bQ":"5f",dv:Z.KB,6S:Z.DE,6W:Z.GC,mT:Z.FM,ss:Z.FN,su:Z.FY,mG:Z.EN,sx:Z.JW,cT:Z.OA,bt:-1===Z.FE?"125%":Z.FE+"px",aH:Z.gF,3v:0}),Z.E["2O-3L"]&&(r.1I.3L=Z.E["2O-3L"],Z.E["2O-3L"]=1c),B&&Z.H&&Z.H.A6&&!Z.o[ZC.1b[19]]&&!Z.o[ZC.1b[20]]){1a z=ZC.A3("#"+Z.J+"-t");"3a"===d&&(ZC.AK(Z.H.J+"-2H-c").1s=z.1s()+Z.EN+Z.FN,ZC.AK(Z.H.J+"-2H-c").1M=z.1M()+Z.FM+Z.FY),Z.H.A6.3j(),Z.I=z.1s()+Z.EN+Z.FN,Z.F=z.1M()+Z.FM+Z.FY,Z.1t()}1p;1i"3a":1a S=!1;if(ZC.A3.6J.li&&Z.AA%90==0&&0!==Z.AA&&(Z.AA+=.5,S=!0),e=Z.Z.9d("2d"),1o.3J.f7&&(ZC.cB||(ZC.cB={})),!1o.3J.f7||1o.3J.f7&&!ZC.cB[Z.J]){1j(1o.3J.f7&&(ZC.cB[Z.J]=2g.4P("3a"),ZC.cB[Z.J].1s=Z.NM,ZC.cB[Z.J].1M=Z.KO),v=-1===Z.FE?0:ZC.4o(Z.FE-1.25*Z.DE)/2,n=0,l=K.1f;n
|
/gi,"\\n").1F(/<.+?>/gi,"").1F(/<\\/.+?>/gi,"");ZC.P.G3(ne,{on:!0,3e:le}),ZC.P.PO(ne,{1r:o,6U:Z.7C,cO:Z.N2?"bQ":"5f",dv:Z.KB,6S:Z.DE+"px",6W:Z.GC,"v-1E-3u":Z.OA}),V.2Z(ne),e.2Z(V);1p;1i"2F":1i"11B":1a re=Z.iX+Z.EN+Z.BJ,oe=Z.iY+Z.FM+Z.BB;if(r=ZC.P.F2("1E",ZC.1b[36]),ZC.P.G3(r,{x:ZC.4o(re),y:ZC.4o(oe),id:Z.J,"1O":Z.GI,3o:Z.WY}),Z.E["2O-3L"]&&(r.1I.3L=Z.E["2O-3L"],Z.E["2O-3L"]=1c),Z.gF&&ZC.P.G3(r,{"1E-bp":ZC.A3.6J.af?"":"6j","11C-4E":"rl",c1:"aH","p2-dw":"dw-78"}),Z.sF&&(Z.H.KI.2Z(ZC.P.XW({id:Z.J+"-3t",2R:[[Z.iX+Z.EN+Z.AP+Z.BJ,Z.iY+Z.FM+Z.AP+Z.BB].2M(","),[Z.iX+Z.I-Z.FN-Z.AP+Z.BJ,Z.iY+Z.FM+Z.AP+Z.BB].2M(","),[Z.iX+Z.I-Z.FN-Z.AP+Z.BJ,Z.iY+Z.F-Z.FY-Z.AP+Z.BB].2M(","),[Z.iX+Z.EN+Z.AP+Z.BJ,Z.iY+Z.F-Z.FY-Z.AP+Z.BB].2M(","),[Z.iX+Z.EN+Z.AP+Z.BJ,Z.iY+Z.FM+Z.AP+Z.BB].2M(",")].2M(" ")})),ZC.P.G3(r,{"3t-2R":"3R(#"+Z.J+"-3t)"})),Z.AA%2m!=0&&r.4m("5H","gj("+Z.AA+" "+(re+(Z.I-Z.EN-Z.FN)/2)+" "+(oe+(Z.F-Z.FM-Z.FY)/2)+")"),g&&R.2Z(r),g){ZC.P.ER(Z.J+"-9c");1a se=ZC.P.F2("3B");ZC.P.PO(se,{2K:"4D",1K:0,1v:0,1s:Z.I-Z.EN-Z.FN+"px",1M:Z.F-Z.FM-Z.FY+"px",1r:Z.C1,6S:Z.DE+"px",6W:Z.GC,6U:Z.7C,dv:Z.KB,cT:Z.OA,cO:Z.N2?"bH":"5f"}),se.id=Z.J+"-9c",se.7U="zc-1I zc-4g-4E",se.4q=K[0],1===Z.o["z-3b"]?ZC.AK(Z.H.J+"-1v").1C(se):ZC.AK(Z.H.J+"-1v").sT(se,ZC.AK(Z.H.J+"-5W")),B&&Z.H&&Z.H.A6&&(Z.o[ZC.1b[19]]||Z.o[ZC.1b[20]]||(Z.H.A6.3j(),se.1I.1s="",se.1I.1M="",Z.I=ZC.A3(se).1s()+Z.EN+Z.FN,Z.F=ZC.A3(se).1M()+Z.FM+Z.FY,Z.1t()))}1u 1j(v=-1===Z.FE?0:ZC.4o(Z.FE-1.25*Z.DE)/2,n=0,l=K.1f;n
"+e.SI),l.4q=\'<3B 1O="zc-6t-1">1o.bZ3B><3B 1O="zc-6t-2">&1S;17U-\'+(1m a1).vS()+\'3B><3B 1O="zc-6t-3"><3B id="\'+e.J+\'-6t-7m">\'+ZC.HE["6t-7m"]+\'3B>3B><3B 1O="zc-6t-4" 1I="3v:\'+(i-vQ)+\'px 88 88 88;"><3B>&8u;
189 \'+ZC.fF+" ["+e.AB+"]3B>"+r+"3B>",ZC.A3("#"+e.J+"-6t-7m").3r("3H",1n(){ZC.AO.C8("18b",e,e.FO()),ZC.P.ER([e.J+"-6t",e.J+"-6t-4O"])})}NC(e,t){1a i=1g;if(ZC.AO.oM("4L",i))ZC.AO.C8("4L",i,{id:i.J,4L:e,18c:t,4G:i.E.4G||i.E.vM});1u{1a a="";a+="4h"==1y e?e.8C+":"+e.b8+"\\n\\n":e+"\\n\\n",1c!==ZC.1d(t)&&(a+="18d:"+t+"\\n\\n"),a+="3h 1V:\\n\\n"+i.E.4G+"\\n\\n",i.Y4(),1c===ZC.AK(i.J+"-1v")&&i.pl(),ZC.P.HZ({2p:"zc-3l zc-4L zc-1I",id:i.J+"-4L",p:ZC.AK(i.J+"-1v"),wh:i.I-(ZC.96?0:10)+"/"+(i.F-(ZC.96?0:10))}).4q=\'<3B 1O="zc-4I-5B-1H zc-4I-s0">\'+ZC.HE["4L-5K"]+\'3B><3B 1O="zc-4I-5B-1H zc-4I-s1">\'+ZC.HE["4L-b8"]+\'3B><3B 1O="zc-4I-5B-ao">")),c=[],u=[];1a m="17u",E=!1;1j(b&&(b.FB&&"5s"===b.FB.o.1J&&(m="a1",E=!0),b.M&&b.M.AN&&(m=b.M.AN.1F(/\\"|\\\'/g,""))),"6L"===t?c.1h(\'"\'+m+\'"\'):"dP"===t?u.1h(m):"4g"!==t&&"80"!==t||c.1h(" "),h.1h(""+m+" "),n=0,l=g.1f;n"+[].4B(J[C][0]).4B(J[C][1]).2M(" ")+" "),"4g"!==t&&"80"!==t||h.1h("")}"4g"!==t&&"80"!==t||(h.1h("