diff --git a/headless-empty.mjs b/headless-empty.mjs
new file mode 100644
index 0000000..d19534c
--- /dev/null
+++ b/headless-empty.mjs
@@ -0,0 +1,58 @@
+import puppeteer from 'puppeteer-core'
+const CHROME = '/Applications/Google Chrome.app/Contents/MacOS/Google Chrome'
+const URL = 'http://localhost:5173/'
+const b = await puppeteer.launch({
+ executablePath: CHROME, headless: 'new',
+ args: ['--no-sandbox','--use-gl=swiftshader','--enable-unsafe-swiftshader','--window-size=1400,900'],
+})
+try {
+ const p = await b.newPage()
+ await p.setViewport({ width: 1400, height: 900 })
+ const errs = []
+ p.on('pageerror', (e) => errs.push('PAGEERROR: ' + e.message))
+
+ await p.goto(URL, { waitUntil: 'networkidle2', timeout: 30000 })
+ await new Promise((r) => setTimeout(r, 2500))
+
+ // 1) 初期应为空态
+ const init = await p.evaluate(() => {
+ const empty = document.querySelector('.empty')
+ const animSelect = document.querySelector('.topbar select')
+ const sysNames = [...document.querySelectorAll('.sys-name')].map(e => e.textContent)
+ return {
+ emptyShown: !!empty,
+ emptyTitle: empty?.querySelector('.empty-title')?.textContent || null,
+ hasAnimSelect: !!animSelect,
+ systemCount: sysNames.length,
+ loadBtn: [...document.querySelectorAll('.topbar button')].map(e=>e.textContent).join('|'),
+ }
+ })
+
+ // 2) 点击"加载示例骨骼"
+ await p.evaluate(() => {
+ const btn = [...document.querySelectorAll('.topbar button')].find((b) => b.textContent.includes('加载示例骨骼'))
+ if (btn) btn.click()
+ })
+ await new Promise((r) => setTimeout(r, 3000))
+
+ const after = await p.evaluate(() => {
+ const animSelect = document.querySelector('.topbar select')
+ const opts = animSelect ? [...animSelect.querySelectorAll('option')].map(o => o.textContent) : []
+ return {
+ emptyShown: !!document.querySelector('.empty'),
+ animOptionCount: opts.length,
+ firstOpts: opts.slice(0, 6),
+ sysCount: [...document.querySelectorAll('.sys-name')].length,
+ hud: document.querySelector('.hud')?.innerText?.replace(/\s+/g,' ').trim() || null,
+ boneSelect: document.querySelector('.group select')?.textContent?.split('\n').map(s=>s.trim()).filter(Boolean).slice(0,8) || [],
+ }
+ })
+
+ await p.screenshot({ path: '/tmp/empty-after-load.png' })
+ console.log('=== 初始(应空态) ===')
+ console.log(JSON.stringify(init, null, 2))
+ console.log('=== 加载骨骼后 ===')
+ console.log(JSON.stringify(after, null, 2))
+ console.log('=== 错误 ===')
+ console.log(errs.join('\n') || '(无)')
+} finally { await b.close() }
diff --git a/headless-new.mjs b/headless-new.mjs
new file mode 100644
index 0000000..ff2a02f
--- /dev/null
+++ b/headless-new.mjs
@@ -0,0 +1,30 @@
+import puppeteer from 'puppeteer-core'
+const CHROME='/Applications/Google Chrome.app/Contents/MacOS/Google Chrome'
+const b=await puppeteer.launch({executablePath:CHROME,headless:'new',args:['--no-sandbox','--use-gl=swiftshader','--enable-unsafe-swiftshader','--window-size=1400,900']})
+try{
+ const p=await b.newPage()
+ await p.setViewport({width:1400,height:900})
+ const errs=[]
+ p.on('pageerror',e=>errs.push('PAGEERR: '+e.message))
+ await p.goto('http://localhost:5173/',{waitUntil:'networkidle2',timeout:30000})
+ await new Promise(r=>setTimeout(r,2500))
+ const r=await p.evaluate(()=>({
+ groupTitles: [...document.querySelectorAll('.group-head')].map(e=>e.textContent.trim()),
+ hasDirectionModule: [...document.querySelectorAll('.group-head')].some(e=>e.textContent.includes('方向')),
+ shapeHasAngle: (()=>{const g=[...document.querySelectorAll('.group')].find(x=>x.querySelector('.group-head')?.textContent.includes('发射器形状'));const t=g?.querySelector('.group-body')?.textContent||'';return t.includes('角度°')&&t.includes('扩散°')})(),
+ emitHasBur: (()=>{const g=[...document.querySelectorAll('.group')].find(x=>x.querySelector('.group-head')?.textContent.includes('发射模式'));const t=g?.querySelector('.group-body')?.textContent||'';return t.includes('爆发')&&t.includes('持续')})(),
+ }))
+ // 点一下"发射器形状"折叠
+ await p.evaluate(()=>{const h=[...document.querySelectorAll('.group-head')].find(e=>e.textContent.includes('发射器形状'));h?.click()})
+ await new Promise(r=>setTimeout(r,300))
+ const collapsed=await p.evaluate(()=>{const g=[...document.querySelectorAll('.group')].find(x=>x.querySelector('.group-head')?.textContent.includes('发射器形状'));return {caret:g?.querySelector('.caret')?.textContent, visible: g? g.querySelector('.group-body')?.offsetParent ? true : false : '?'}})
+ await p.screenshot({path:'/tmp/panel-new.png'})
+ console.log('=== 分组标题 ===')
+ console.log(JSON.stringify(r.groupTitles,null,2))
+ console.log('方向独立模块?', r.hasDirectionModule)
+ console.log('形状组含角度/扩散?', r.shapeHasAngle)
+ console.log('发射模式组含持续/爆发?', r.emitHasBur)
+ console.log('折叠后:', JSON.stringify(collapsed))
+ console.log('=== 错误 ===')
+ console.log(errs.join('\n')||'(无)')
+}finally{await b.close()}
diff --git a/headless-ns.mjs b/headless-ns.mjs
new file mode 100644
index 0000000..4b7231c
--- /dev/null
+++ b/headless-ns.mjs
@@ -0,0 +1,39 @@
+import puppeteer from 'puppeteer-core'
+const CHROME='/Applications/Google Chrome.app/Contents/MacOS/Google Chrome'
+const b=await puppeteer.launch({executablePath:CHROME,headless:'new',args:['--no-sandbox','--use-gl=swiftshader','--enable-unsafe-swiftshader','--window-size=1400,900']})
+try{
+ const p=await b.newPage()
+ await p.setViewport({width:1400,height:900})
+ const errs=[]
+ p.on('pageerror',e=>errs.push('PAGEERR: '+e.message))
+ await p.goto('http://localhost:5173/',{waitUntil:'networkidle2',timeout:30000})
+ await new Promise(r=>setTimeout(r,2500))
+ const r=await p.evaluate(()=>({
+ groupTitles:[...document.querySelectorAll('.group-head')].map(e=>e.textContent.trim()),
+ nsCount:document.querySelectorAll('.ns').length,
+ nsRange:document.querySelectorAll('.ns-range').length,
+ nsNum:document.querySelectorAll('.ns-num').length,
+ // 第一个数值滑块标签+当前值
+ firstNs:(()=>{const e=document.querySelector('.ns');return e?{label:e.querySelector('.ns-label')?.textContent,num:e.querySelector('.ns-num')?.value}:null})(),
+ }))
+ // 改一个数值框:把"速率/秒"的数字框改值
+ const before=await p.evaluate(()=>document.querySelector('.hud')?.innerText)
+ const changed=await p.evaluate(()=>{
+ // 找到 label=速率/秒 的 .ns-num
+ const ns=[...document.querySelectorAll('.ns')].find(n=>n.querySelector('.ns-label')?.textContent.includes('速率'))
+ const num=ns?.querySelector('.ns-num')
+ if(num){ const old=num.value; num.value='150'; num.dispatchEvent(new Event('input',{bubbles:true})); return {changed:true,old,new:num.value} }
+ return {changed:false}
+ })
+ await new Promise(r=>setTimeout(r,2500))
+ const after=await p.evaluate(()=>document.querySelector('.hud')?.innerText)
+ const rateVal=await p.evaluate(()=>{const ns=[...document.querySelectorAll('.ns')].find(n=>n.querySelector('.ns-label')?.textContent.includes('速率'));return ns?.querySelector('.ns-num')?.value})
+ await p.screenshot({path:'/tmp/panel-numslider.png'})
+ console.log('=== 分组 ==='); console.log(JSON.stringify(r.groupTitles))
+ console.log('NumSlider: 控件=',r.nsCount,'滑块=',r.nsRange,'数字框=',r.nsNum)
+ console.log('首控件=', JSON.stringify(r.firstNs))
+ console.log('改速率:', JSON.stringify(changed), '改后数字框值=', rateVal)
+ console.log('HUD before:', before?.replace(/\s+/g,' ').trim())
+ console.log('HUD after :', after?.replace(/\s+/g,' ').trim())
+ console.log('=== 错误 ==='); console.log(errs.join('\n')||'(无)')
+}finally{await b.close()}
diff --git a/index.html b/index.html
new file mode 100644
index 0000000..0cb18fa
--- /dev/null
+++ b/index.html
@@ -0,0 +1,16 @@
+
+
+
+
+
+ Spine Particle · 阶段1 Spike
+
+
+
+
+
+
+
diff --git a/package-lock.json b/package-lock.json
new file mode 100644
index 0000000..bc24b1e
--- /dev/null
+++ b/package-lock.json
@@ -0,0 +1,2740 @@
+{
+ "name": "spine-particle",
+ "version": "0.1.0",
+ "lockfileVersion": 3,
+ "requires": true,
+ "packages": {
+ "": {
+ "name": "spine-particle",
+ "version": "0.1.0",
+ "dependencies": {
+ "pinia": "^4.0.3",
+ "pixi.js": "^7.4.3",
+ "vue": "^3.5.13"
+ },
+ "devDependencies": {
+ "@types/node": "^20.19.43",
+ "@vitejs/plugin-vue": "^5.2.1",
+ "puppeteer-core": "^25.9.0",
+ "typescript": "^5.7.2",
+ "vite": "^6.0.5",
+ "vue-tsc": "^2.2.0"
+ }
+ },
+ "node_modules/@babel/helper-string-parser": {
+ "version": "7.29.7",
+ "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.29.7.tgz",
+ "integrity": "sha512-Pb5ijPrZ89GDH8223L4UP8i6QApWxs04RbPQJTeWDV0/keR2E36MeKnyr6LYmUUvqRRI+Iv87SuF1W6ErINzYw==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-validator-identifier": {
+ "version": "7.29.7",
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.29.7.tgz",
+ "integrity": "sha512-qehxGkRj55h/ff8EMaJ+cYhyaKlHIxqYDn682wQD7RNp9UujOQsHog2uS0r2vzr4pW+sXf90NeeayjcNaX3fFg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/parser": {
+ "version": "7.29.8",
+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.29.8.tgz",
+ "integrity": "sha512-E8lTAYNB1KW+FH+VGJuZM1ioAx2E6oVlvQFRrf5P8ZZmsiJXYAD9vTFV7yyEURNzgh1dFqMZuO6tUwcARbqFCA==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/types": "^7.29.8"
+ },
+ "bin": {
+ "parser": "bin/babel-parser.js"
+ },
+ "engines": {
+ "node": ">=6.0.0"
+ }
+ },
+ "node_modules/@babel/types": {
+ "version": "7.29.8",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.29.8.tgz",
+ "integrity": "sha512-Vj1jF3cPfxg7OAfoI7QnVKLoILlm2JF9pnVHrX8qx7AHMiYWT+NDAA7jChlNgRS4WTLc/fD1lXLmPixluj+3Gg==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-string-parser": "^7.29.7",
+ "@babel/helper-validator-identifier": "^7.29.7"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@esbuild/aix-ppc64": {
+ "version": "0.25.12",
+ "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.25.12.tgz",
+ "integrity": "sha512-Hhmwd6CInZ3dwpuGTF8fJG6yoWmsToE+vYgD4nytZVxcu1ulHpUQRAB1UJ8+N1Am3Mz4+xOByoQoSZf4D+CpkA==",
+ "cpu": [
+ "ppc64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "aix"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/android-arm": {
+ "version": "0.25.12",
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.25.12.tgz",
+ "integrity": "sha512-VJ+sKvNA/GE7Ccacc9Cha7bpS8nyzVv0jdVgwNDaR4gDMC/2TTRc33Ip8qrNYUcpkOHUT5OZ0bUcNNVZQ9RLlg==",
+ "cpu": [
+ "arm"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "android"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/android-arm64": {
+ "version": "0.25.12",
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.25.12.tgz",
+ "integrity": "sha512-6AAmLG7zwD1Z159jCKPvAxZd4y/VTO0VkprYy+3N2FtJ8+BQWFXU+OxARIwA46c5tdD9SsKGZ/1ocqBS/gAKHg==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "android"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/android-x64": {
+ "version": "0.25.12",
+ "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.25.12.tgz",
+ "integrity": "sha512-5jbb+2hhDHx5phYR2By8GTWEzn6I9UqR11Kwf22iKbNpYrsmRB18aX/9ivc5cabcUiAT/wM+YIZ6SG9QO6a8kg==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "android"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/darwin-arm64": {
+ "version": "0.25.12",
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.25.12.tgz",
+ "integrity": "sha512-N3zl+lxHCifgIlcMUP5016ESkeQjLj/959RxxNYIthIg+CQHInujFuXeWbWMgnTo4cp5XVHqFPmpyu9J65C1Yg==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/darwin-x64": {
+ "version": "0.25.12",
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.25.12.tgz",
+ "integrity": "sha512-HQ9ka4Kx21qHXwtlTUVbKJOAnmG1ipXhdWTmNXiPzPfWKpXqASVcWdnf2bnL73wgjNrFXAa3yYvBSd9pzfEIpA==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/freebsd-arm64": {
+ "version": "0.25.12",
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.12.tgz",
+ "integrity": "sha512-gA0Bx759+7Jve03K1S0vkOu5Lg/85dou3EseOGUes8flVOGxbhDDh/iZaoek11Y8mtyKPGF3vP8XhnkDEAmzeg==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "freebsd"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/freebsd-x64": {
+ "version": "0.25.12",
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.25.12.tgz",
+ "integrity": "sha512-TGbO26Yw2xsHzxtbVFGEXBFH0FRAP7gtcPE7P5yP7wGy7cXK2oO7RyOhL5NLiqTlBh47XhmIUXuGciXEqYFfBQ==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "freebsd"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/linux-arm": {
+ "version": "0.25.12",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.25.12.tgz",
+ "integrity": "sha512-lPDGyC1JPDou8kGcywY0YILzWlhhnRjdof3UlcoqYmS9El818LLfJJc3PXXgZHrHCAKs/Z2SeZtDJr5MrkxtOw==",
+ "cpu": [
+ "arm"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/linux-arm64": {
+ "version": "0.25.12",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.25.12.tgz",
+ "integrity": "sha512-8bwX7a8FghIgrupcxb4aUmYDLp8pX06rGh5HqDT7bB+8Rdells6mHvrFHHW2JAOPZUbnjUpKTLg6ECyzvas2AQ==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/linux-ia32": {
+ "version": "0.25.12",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.25.12.tgz",
+ "integrity": "sha512-0y9KrdVnbMM2/vG8KfU0byhUN+EFCny9+8g202gYqSSVMonbsCfLjUO+rCci7pM0WBEtz+oK/PIwHkzxkyharA==",
+ "cpu": [
+ "ia32"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/linux-loong64": {
+ "version": "0.25.12",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.25.12.tgz",
+ "integrity": "sha512-h///Lr5a9rib/v1GGqXVGzjL4TMvVTv+s1DPoxQdz7l/AYv6LDSxdIwzxkrPW438oUXiDtwM10o9PmwS/6Z0Ng==",
+ "cpu": [
+ "loong64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/linux-mips64el": {
+ "version": "0.25.12",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.25.12.tgz",
+ "integrity": "sha512-iyRrM1Pzy9GFMDLsXn1iHUm18nhKnNMWscjmp4+hpafcZjrr2WbT//d20xaGljXDBYHqRcl8HnxbX6uaA/eGVw==",
+ "cpu": [
+ "mips64el"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/linux-ppc64": {
+ "version": "0.25.12",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.25.12.tgz",
+ "integrity": "sha512-9meM/lRXxMi5PSUqEXRCtVjEZBGwB7P/D4yT8UG/mwIdze2aV4Vo6U5gD3+RsoHXKkHCfSxZKzmDssVlRj1QQA==",
+ "cpu": [
+ "ppc64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/linux-riscv64": {
+ "version": "0.25.12",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.25.12.tgz",
+ "integrity": "sha512-Zr7KR4hgKUpWAwb1f3o5ygT04MzqVrGEGXGLnj15YQDJErYu/BGg+wmFlIDOdJp0PmB0lLvxFIOXZgFRrdjR0w==",
+ "cpu": [
+ "riscv64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/linux-s390x": {
+ "version": "0.25.12",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.25.12.tgz",
+ "integrity": "sha512-MsKncOcgTNvdtiISc/jZs/Zf8d0cl/t3gYWX8J9ubBnVOwlk65UIEEvgBORTiljloIWnBzLs4qhzPkJcitIzIg==",
+ "cpu": [
+ "s390x"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/linux-x64": {
+ "version": "0.25.12",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.25.12.tgz",
+ "integrity": "sha512-uqZMTLr/zR/ed4jIGnwSLkaHmPjOjJvnm6TVVitAa08SLS9Z0VM8wIRx7gWbJB5/J54YuIMInDquWyYvQLZkgw==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/netbsd-arm64": {
+ "version": "0.25.12",
+ "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.12.tgz",
+ "integrity": "sha512-xXwcTq4GhRM7J9A8Gv5boanHhRa/Q9KLVmcyXHCTaM4wKfIpWkdXiMog/KsnxzJ0A1+nD+zoecuzqPmCRyBGjg==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "netbsd"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/netbsd-x64": {
+ "version": "0.25.12",
+ "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.25.12.tgz",
+ "integrity": "sha512-Ld5pTlzPy3YwGec4OuHh1aCVCRvOXdH8DgRjfDy/oumVovmuSzWfnSJg+VtakB9Cm0gxNO9BzWkj6mtO1FMXkQ==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "netbsd"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/openbsd-arm64": {
+ "version": "0.25.12",
+ "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.12.tgz",
+ "integrity": "sha512-fF96T6KsBo/pkQI950FARU9apGNTSlZGsv1jZBAlcLL1MLjLNIWPBkj5NlSz8aAzYKg+eNqknrUJ24QBybeR5A==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "openbsd"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/openbsd-x64": {
+ "version": "0.25.12",
+ "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.25.12.tgz",
+ "integrity": "sha512-MZyXUkZHjQxUvzK7rN8DJ3SRmrVrke8ZyRusHlP+kuwqTcfWLyqMOE3sScPPyeIXN/mDJIfGXvcMqCgYKekoQw==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "openbsd"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/openharmony-arm64": {
+ "version": "0.25.12",
+ "resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.25.12.tgz",
+ "integrity": "sha512-rm0YWsqUSRrjncSXGA7Zv78Nbnw4XL6/dzr20cyrQf7ZmRcsovpcRBdhD43Nuk3y7XIoW2OxMVvwuRvk9XdASg==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "openharmony"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/sunos-x64": {
+ "version": "0.25.12",
+ "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.25.12.tgz",
+ "integrity": "sha512-3wGSCDyuTHQUzt0nV7bocDy72r2lI33QL3gkDNGkod22EsYl04sMf0qLb8luNKTOmgF/eDEDP5BFNwoBKH441w==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "sunos"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/win32-arm64": {
+ "version": "0.25.12",
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.25.12.tgz",
+ "integrity": "sha512-rMmLrur64A7+DKlnSuwqUdRKyd3UE7oPJZmnljqEptesKM8wx9J8gx5u0+9Pq0fQQW8vqeKebwNXdfOyP+8Bsg==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/win32-ia32": {
+ "version": "0.25.12",
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.25.12.tgz",
+ "integrity": "sha512-HkqnmmBoCbCwxUKKNPBixiWDGCpQGVsrQfJoVGYLPT41XWF8lHuE5N6WhVia2n4o5QK5M4tYr21827fNhi4byQ==",
+ "cpu": [
+ "ia32"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/win32-x64": {
+ "version": "0.25.12",
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.25.12.tgz",
+ "integrity": "sha512-alJC0uCZpTFrSL0CCDjcgleBXPnCrEAhTBILpeAp7M/OFgoqtAetfBzX0xM00MUsVVPpVjlPuMbREqnZCXaTnA==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@jridgewell/sourcemap-codec": {
+ "version": "1.5.5",
+ "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz",
+ "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==",
+ "license": "MIT"
+ },
+ "node_modules/@napi-rs/lzma-linux-x64-gnu": {
+ "version": "1.5.1",
+ "resolved": "https://registry.npmjs.org/@napi-rs/lzma-linux-x64-gnu/-/lzma-linux-x64-gnu-1.5.1.tgz",
+ "integrity": "sha512-oTXEIha4SsuXdTA4Iyskj0kpdx2yVXdhd75c2v3xGrHFfVMsbhTPZU/nMPL4sWKo4pBHm3aucLaqGlF696dTyQ==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "libc": [
+ "glibc"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": "^22.20 || ^24.12 || >=25"
+ }
+ },
+ "node_modules/@pixi/accessibility": {
+ "version": "7.4.3",
+ "resolved": "https://registry.npmjs.org/@pixi/accessibility/-/accessibility-7.4.3.tgz",
+ "integrity": "sha512-tCr0yeWpMe0yucFvEPidy5a7gVJGpTjqGrDpSEBYT/kbScfUwcoX49RrckCCCiXDlyO4WRh9lVVuHXTvqRLIMg==",
+ "license": "MIT",
+ "peerDependencies": {
+ "@pixi/core": "7.4.3",
+ "@pixi/display": "7.4.3",
+ "@pixi/events": "7.4.3"
+ }
+ },
+ "node_modules/@pixi/app": {
+ "version": "7.4.3",
+ "resolved": "https://registry.npmjs.org/@pixi/app/-/app-7.4.3.tgz",
+ "integrity": "sha512-opyWMuO0Ir8pf1DYUR++wAA6ZfNU+nIX2z95R2OD172HbcdhB4/HD7leLIIAny/LciEdMqlWEBhXK7N93YWbdg==",
+ "license": "MIT",
+ "peerDependencies": {
+ "@pixi/core": "7.4.3",
+ "@pixi/display": "7.4.3"
+ }
+ },
+ "node_modules/@pixi/assets": {
+ "version": "7.4.3",
+ "resolved": "https://registry.npmjs.org/@pixi/assets/-/assets-7.4.3.tgz",
+ "integrity": "sha512-StvjiJBSp/j9hHkGu8AFHNvwYUazXq64WhyhytztyDMRkg/l/cL7EcttY5T0qZNWlIpccdr60LUKrWDOuMpkiw==",
+ "license": "MIT",
+ "dependencies": {
+ "@types/css-font-loading-module": "^0.0.12"
+ },
+ "peerDependencies": {
+ "@pixi/core": "7.4.3"
+ }
+ },
+ "node_modules/@pixi/color": {
+ "version": "7.4.3",
+ "resolved": "https://registry.npmjs.org/@pixi/color/-/color-7.4.3.tgz",
+ "integrity": "sha512-a6R+bXKeXMDcRmjYQoBIK+v2EYqxSX49wcjAY579EYM/WrFKS98nSees6lqVUcLKrcQh2DT9srJHX7XMny3voQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@pixi/colord": "^2.9.6"
+ }
+ },
+ "node_modules/@pixi/colord": {
+ "version": "2.9.6",
+ "resolved": "https://registry.npmjs.org/@pixi/colord/-/colord-2.9.6.tgz",
+ "integrity": "sha512-nezytU2pw587fQstUu1AsJZDVEynjskwOL+kibwcdxsMBFqPsFFNA7xl0ii/gXuDi6M0xj3mfRJj8pBSc2jCfA==",
+ "license": "MIT"
+ },
+ "node_modules/@pixi/compressed-textures": {
+ "version": "7.4.3",
+ "resolved": "https://registry.npmjs.org/@pixi/compressed-textures/-/compressed-textures-7.4.3.tgz",
+ "integrity": "sha512-uJ3CC+lNX4HIxs6IxEESO50/0A1KxSVm6CO9UlkXzTsNj9ynmdy5BkJ1dzii7LCdqGcHIXHO01yvKuUbJBBQtw==",
+ "license": "MIT",
+ "peerDependencies": {
+ "@pixi/assets": "7.4.3",
+ "@pixi/core": "7.4.3"
+ }
+ },
+ "node_modules/@pixi/constants": {
+ "version": "7.4.3",
+ "resolved": "https://registry.npmjs.org/@pixi/constants/-/constants-7.4.3.tgz",
+ "integrity": "sha512-QGmwJUNQy/vVEHzL6VGQvnwawLZ1wceZMI8HwJAT4/I2uAzbBeFDdmCS8WsTpSWLZjF/DszDc1D8BFp4pVJ5UQ==",
+ "license": "MIT"
+ },
+ "node_modules/@pixi/core": {
+ "version": "7.4.3",
+ "resolved": "https://registry.npmjs.org/@pixi/core/-/core-7.4.3.tgz",
+ "integrity": "sha512-5YDs11faWgVVTL8VZtLU05/Fl47vaP5Tnsbf+y/WRR0VSW3KhRRGTBU1J3Gdc2xEWbJhUK07KGP7eSZpvtPVgA==",
+ "license": "MIT",
+ "dependencies": {
+ "@pixi/color": "7.4.3",
+ "@pixi/constants": "7.4.3",
+ "@pixi/extensions": "7.4.3",
+ "@pixi/math": "7.4.3",
+ "@pixi/runner": "7.4.3",
+ "@pixi/settings": "7.4.3",
+ "@pixi/ticker": "7.4.3",
+ "@pixi/utils": "7.4.3"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/pixijs"
+ }
+ },
+ "node_modules/@pixi/display": {
+ "version": "7.4.3",
+ "resolved": "https://registry.npmjs.org/@pixi/display/-/display-7.4.3.tgz",
+ "integrity": "sha512-b5m2dAaoNAVdxz1oDaxl3XZ059NEOcNtGkxTOZ4EYCw/jcp9sZXkgSROHRzsGn4k+NugH7+9MP4Id2Z0kkdUhw==",
+ "license": "MIT",
+ "peerDependencies": {
+ "@pixi/core": "7.4.3"
+ }
+ },
+ "node_modules/@pixi/events": {
+ "version": "7.4.3",
+ "resolved": "https://registry.npmjs.org/@pixi/events/-/events-7.4.3.tgz",
+ "integrity": "sha512-o3j/5Dxq6WDVS6eHfURB/cf/MP+NcsF/eC5PnbSHjXxJmDE7PoTVwLvxexm5uuvNRpFh/6/Fn0V8Vl4gV8sc8w==",
+ "license": "MIT",
+ "peerDependencies": {
+ "@pixi/core": "7.4.3",
+ "@pixi/display": "7.4.3"
+ }
+ },
+ "node_modules/@pixi/extensions": {
+ "version": "7.4.3",
+ "resolved": "https://registry.npmjs.org/@pixi/extensions/-/extensions-7.4.3.tgz",
+ "integrity": "sha512-FhoiYkHQEDYHUE7wXhqfsTRz6KxLXjuMbSiAwnLb9uG1vAgp6q6qd6HEsf4X30YaZbLFY8a4KY6hFZWjF+4Fdw==",
+ "license": "MIT"
+ },
+ "node_modules/@pixi/extract": {
+ "version": "7.4.3",
+ "resolved": "https://registry.npmjs.org/@pixi/extract/-/extract-7.4.3.tgz",
+ "integrity": "sha512-HNvGNrEVaeVsbcnIO1MsHpjZbTwo9nIlaOEBzDGcL6JWwzuB1RnzUke7WUCndCUt91sGUdvPnvgCvy9/NNFg3w==",
+ "license": "MIT",
+ "peerDependencies": {
+ "@pixi/core": "7.4.3"
+ }
+ },
+ "node_modules/@pixi/filter-alpha": {
+ "version": "7.4.3",
+ "resolved": "https://registry.npmjs.org/@pixi/filter-alpha/-/filter-alpha-7.4.3.tgz",
+ "integrity": "sha512-YFdUB1I53USQb+9TEhS849dV2KZhbnNGIoBbOSThUJfXQc4pDguIFWMagVToAQYgmZ4C4AtYfVjaSEELrMcCdA==",
+ "license": "MIT",
+ "peerDependencies": {
+ "@pixi/core": "7.4.3"
+ }
+ },
+ "node_modules/@pixi/filter-blur": {
+ "version": "7.4.3",
+ "resolved": "https://registry.npmjs.org/@pixi/filter-blur/-/filter-blur-7.4.3.tgz",
+ "integrity": "sha512-ZFzS9L/whdRbs5A/EUgF3yQaBcxNarmbuwaMgrfnpQ84mRczkGByqDLGToadiufyals07ufTrXBGRle9lbtEDA==",
+ "license": "MIT",
+ "peerDependencies": {
+ "@pixi/core": "7.4.3"
+ }
+ },
+ "node_modules/@pixi/filter-color-matrix": {
+ "version": "7.4.3",
+ "resolved": "https://registry.npmjs.org/@pixi/filter-color-matrix/-/filter-color-matrix-7.4.3.tgz",
+ "integrity": "sha512-TNu0h20SrzjUWIb5v19dAp1vPpqtG0w2XF9kIHN91bMNaf3R1jzhpWG6TtaVO9eo1IolWcEJLw38jIohyC+KNw==",
+ "license": "MIT",
+ "peerDependencies": {
+ "@pixi/core": "7.4.3"
+ }
+ },
+ "node_modules/@pixi/filter-displacement": {
+ "version": "7.4.3",
+ "resolved": "https://registry.npmjs.org/@pixi/filter-displacement/-/filter-displacement-7.4.3.tgz",
+ "integrity": "sha512-ax+cFA2mEnKgqf9F8qInpv09GNWzjwnASLETpwPXzWBtlAlNCeHV2tCv3+SlMdEKUkwG9sA7AmjjjC2JBUyt+Q==",
+ "license": "MIT",
+ "peerDependencies": {
+ "@pixi/core": "7.4.3"
+ }
+ },
+ "node_modules/@pixi/filter-fxaa": {
+ "version": "7.4.3",
+ "resolved": "https://registry.npmjs.org/@pixi/filter-fxaa/-/filter-fxaa-7.4.3.tgz",
+ "integrity": "sha512-y9jhho5cCflhEsPtNqqsd+XJHsb+/ysht4rG/VHQ8Z6pScHYpbgiEpowryGq8uSMQQwx6zKNS2DPiXdiOHPZsg==",
+ "license": "MIT",
+ "peerDependencies": {
+ "@pixi/core": "7.4.3"
+ }
+ },
+ "node_modules/@pixi/filter-noise": {
+ "version": "7.4.3",
+ "resolved": "https://registry.npmjs.org/@pixi/filter-noise/-/filter-noise-7.4.3.tgz",
+ "integrity": "sha512-rwgSO3BKe1jW/P5CaOcfLKjfpl674aBEo/igi/3QLxA3ORhILNqWRsKkOwP8xF/ejI5NE4rMEkdv0LScbdGFhA==",
+ "license": "MIT",
+ "peerDependencies": {
+ "@pixi/core": "7.4.3"
+ }
+ },
+ "node_modules/@pixi/graphics": {
+ "version": "7.4.3",
+ "resolved": "https://registry.npmjs.org/@pixi/graphics/-/graphics-7.4.3.tgz",
+ "integrity": "sha512-wWLivD8/URb8A7X4TqCZGG39C91IE+aOuWY/z9NCz5Z6WvA/VWnsc5fLTlO+ggjGHgKF0cSucCXZfUe1wm0AOQ==",
+ "license": "MIT",
+ "peerDependencies": {
+ "@pixi/core": "7.4.3",
+ "@pixi/display": "7.4.3",
+ "@pixi/sprite": "7.4.3"
+ }
+ },
+ "node_modules/@pixi/math": {
+ "version": "7.4.3",
+ "resolved": "https://registry.npmjs.org/@pixi/math/-/math-7.4.3.tgz",
+ "integrity": "sha512-/uJOVhR2DOZ+zgdI6Bs/CwcXT4bNRKsS+TqX3ekRIxPCwaLra+Qdm7aDxT5cTToDzdxbKL5+rwiLu3Y1egILDw==",
+ "license": "MIT"
+ },
+ "node_modules/@pixi/mesh": {
+ "version": "7.4.3",
+ "resolved": "https://registry.npmjs.org/@pixi/mesh/-/mesh-7.4.3.tgz",
+ "integrity": "sha512-CikqFPtKvU3Zj986/MSoC8X39CWv5CEpiEW/tYp47p4tgQNDSkNWYnDiNYgb+4VX6pNsBrgX4DALLdTR17SlSA==",
+ "license": "MIT",
+ "peerDependencies": {
+ "@pixi/core": "7.4.3",
+ "@pixi/display": "7.4.3"
+ }
+ },
+ "node_modules/@pixi/mesh-extras": {
+ "version": "7.4.3",
+ "resolved": "https://registry.npmjs.org/@pixi/mesh-extras/-/mesh-extras-7.4.3.tgz",
+ "integrity": "sha512-EqpxpVZoTObyupxMSzuUsCGmWPQioW84n9EO9Ajawkk/HYA+qKFZ5viKiEThIUBYgv4Apn/7c0U3Feg7Ez4uQQ==",
+ "license": "MIT",
+ "peerDependencies": {
+ "@pixi/core": "7.4.3",
+ "@pixi/mesh": "7.4.3"
+ }
+ },
+ "node_modules/@pixi/mixin-cache-as-bitmap": {
+ "version": "7.4.3",
+ "resolved": "https://registry.npmjs.org/@pixi/mixin-cache-as-bitmap/-/mixin-cache-as-bitmap-7.4.3.tgz",
+ "integrity": "sha512-NgvDdgSgd2tfcTSc+SWF12JJjVVz5ZrkSlhX0idSp/LSako82AiFJlD2xqH9GUsEcA6sqBBlnu7nrGkPTHQdhA==",
+ "license": "MIT",
+ "peerDependencies": {
+ "@pixi/core": "7.4.3",
+ "@pixi/display": "7.4.3",
+ "@pixi/sprite": "7.4.3"
+ }
+ },
+ "node_modules/@pixi/mixin-get-child-by-name": {
+ "version": "7.4.3",
+ "resolved": "https://registry.npmjs.org/@pixi/mixin-get-child-by-name/-/mixin-get-child-by-name-7.4.3.tgz",
+ "integrity": "sha512-HLhDxHwafQT+CxbqQx9w9ivJIyAOg9JJ/6m4fNymVuDWeuMGcxDxBD7DukdUYIieT+RD/RlxdPEmq8YoromlFA==",
+ "license": "MIT",
+ "peerDependencies": {
+ "@pixi/display": "7.4.3"
+ }
+ },
+ "node_modules/@pixi/mixin-get-global-position": {
+ "version": "7.4.3",
+ "resolved": "https://registry.npmjs.org/@pixi/mixin-get-global-position/-/mixin-get-global-position-7.4.3.tgz",
+ "integrity": "sha512-k09kvkS379EypCIWgXMY7uiXtWk1BsaJyTYlV16Co0AsmNPdFd+wUozMx1xV6rxcGiWXsxr/1k9fbETuYkcXCQ==",
+ "license": "MIT",
+ "peerDependencies": {
+ "@pixi/core": "7.4.3",
+ "@pixi/display": "7.4.3"
+ }
+ },
+ "node_modules/@pixi/particle-container": {
+ "version": "7.4.3",
+ "resolved": "https://registry.npmjs.org/@pixi/particle-container/-/particle-container-7.4.3.tgz",
+ "integrity": "sha512-0DfJF5C0XTfuI2FsLYvMKCOtqWjXWGOWfA6m4l0W/Ke/qw5zKIOEhgjPLw4qNRtOhmEfkVKJUGp66Ap/ya2YzA==",
+ "license": "MIT",
+ "peerDependencies": {
+ "@pixi/core": "7.4.3",
+ "@pixi/display": "7.4.3",
+ "@pixi/sprite": "7.4.3"
+ }
+ },
+ "node_modules/@pixi/prepare": {
+ "version": "7.4.3",
+ "resolved": "https://registry.npmjs.org/@pixi/prepare/-/prepare-7.4.3.tgz",
+ "integrity": "sha512-OjJHGKXPzwP5OLKxBnTBnKMOktHynLvO0TQPqTYgNtmGQzY109mypCqM4M+s/V+uYmBo/T+sXvBahj98q/f1tA==",
+ "license": "MIT",
+ "peerDependencies": {
+ "@pixi/core": "7.4.3",
+ "@pixi/display": "7.4.3",
+ "@pixi/graphics": "7.4.3",
+ "@pixi/text": "7.4.3"
+ }
+ },
+ "node_modules/@pixi/runner": {
+ "version": "7.4.3",
+ "resolved": "https://registry.npmjs.org/@pixi/runner/-/runner-7.4.3.tgz",
+ "integrity": "sha512-TJyfp7y23u5vvRAyYhVSa7ytq0PdKSvPLXu4G3meoFh1oxTLHH6g/RIzLuxUAThPG2z7ftthuW3qWq6dRV+dhw==",
+ "license": "MIT"
+ },
+ "node_modules/@pixi/settings": {
+ "version": "7.4.3",
+ "resolved": "https://registry.npmjs.org/@pixi/settings/-/settings-7.4.3.tgz",
+ "integrity": "sha512-SmGK8smc0PxRB9nr0UJioEtE9hl4gvj9OedCvZx3bxBwA3omA5BmP3CyhQfN8XJ29+o2OUL01r3zAPVol4l4lA==",
+ "license": "MIT",
+ "dependencies": {
+ "@pixi/constants": "7.4.3",
+ "@types/css-font-loading-module": "^0.0.12",
+ "ismobilejs": "^1.1.0"
+ }
+ },
+ "node_modules/@pixi/sprite": {
+ "version": "7.4.3",
+ "resolved": "https://registry.npmjs.org/@pixi/sprite/-/sprite-7.4.3.tgz",
+ "integrity": "sha512-iNBrpOFF9nXDT6m2jcyYy6l/sRzklLDDck1eFHprHZwvNquY2nzRfh+RGBCecxhBcijiLJ3fsZN33fP0LDXkvw==",
+ "license": "MIT",
+ "peerDependencies": {
+ "@pixi/core": "7.4.3",
+ "@pixi/display": "7.4.3"
+ }
+ },
+ "node_modules/@pixi/sprite-animated": {
+ "version": "7.4.3",
+ "resolved": "https://registry.npmjs.org/@pixi/sprite-animated/-/sprite-animated-7.4.3.tgz",
+ "integrity": "sha512-mw5YIec8KfO1Jv9qrDNvGoD7Dlmcgww5YlMtd+ARi7Zzo+6ziNw899LXtoaKX1+3BXdZbYNyJAx3C5r30NtwXA==",
+ "license": "MIT",
+ "peerDependencies": {
+ "@pixi/core": "7.4.3",
+ "@pixi/sprite": "7.4.3"
+ }
+ },
+ "node_modules/@pixi/sprite-tiling": {
+ "version": "7.4.3",
+ "resolved": "https://registry.npmjs.org/@pixi/sprite-tiling/-/sprite-tiling-7.4.3.tgz",
+ "integrity": "sha512-kUa9cEcMsGXSIZoXA7LhW4oo0eWa30w0KYd7mZ0bqalBMfOcvsGZMN701Lc5lpE8URw+8yu5bnyGLbrxhWBTuw==",
+ "license": "MIT",
+ "peerDependencies": {
+ "@pixi/core": "7.4.3",
+ "@pixi/display": "7.4.3",
+ "@pixi/sprite": "7.4.3"
+ }
+ },
+ "node_modules/@pixi/spritesheet": {
+ "version": "7.4.3",
+ "resolved": "https://registry.npmjs.org/@pixi/spritesheet/-/spritesheet-7.4.3.tgz",
+ "integrity": "sha512-Ce4xZzUxUSKfiROUjjVCBYNLuCcDEWKJ822bSV9rkgVHItu3q04VnEww0DXO+9K0hKv4Ukjjk8aP6Pz0LgPm7A==",
+ "license": "MIT",
+ "peerDependencies": {
+ "@pixi/assets": "7.4.3",
+ "@pixi/core": "7.4.3"
+ }
+ },
+ "node_modules/@pixi/text": {
+ "version": "7.4.3",
+ "resolved": "https://registry.npmjs.org/@pixi/text/-/text-7.4.3.tgz",
+ "integrity": "sha512-IAF0iu04rPg3oiL0HZsEZI44fpJxq3UZ4xTmx8l1RyhhSXiElLvvSlSH57vt/BKMQZtCs+AqEit7yn8heK2+nQ==",
+ "license": "MIT",
+ "peerDependencies": {
+ "@pixi/core": "7.4.3",
+ "@pixi/sprite": "7.4.3"
+ }
+ },
+ "node_modules/@pixi/text-bitmap": {
+ "version": "7.4.3",
+ "resolved": "https://registry.npmjs.org/@pixi/text-bitmap/-/text-bitmap-7.4.3.tgz",
+ "integrity": "sha512-TnBocJm7f5nMAYwYcsojc62uCrOYauAGH26o3pNrlqmHDRDQ7FzPOGvkYZGYFREbUycloLSRlYpSy0FB9ZdV4Q==",
+ "license": "MIT",
+ "peerDependencies": {
+ "@pixi/assets": "7.4.3",
+ "@pixi/core": "7.4.3",
+ "@pixi/display": "7.4.3",
+ "@pixi/mesh": "7.4.3",
+ "@pixi/text": "7.4.3"
+ }
+ },
+ "node_modules/@pixi/text-html": {
+ "version": "7.4.3",
+ "resolved": "https://registry.npmjs.org/@pixi/text-html/-/text-html-7.4.3.tgz",
+ "integrity": "sha512-nm9K9gjSZAU8ETwQZBE3kMGNdO1IzyghxoRTcJCWKhekiGDpUQhopfNhqieNZ7reVJpvhpFQWjbyaHDehndUaQ==",
+ "license": "MIT",
+ "peerDependencies": {
+ "@pixi/core": "7.4.3",
+ "@pixi/display": "7.4.3",
+ "@pixi/sprite": "7.4.3",
+ "@pixi/text": "7.4.3"
+ }
+ },
+ "node_modules/@pixi/ticker": {
+ "version": "7.4.3",
+ "resolved": "https://registry.npmjs.org/@pixi/ticker/-/ticker-7.4.3.tgz",
+ "integrity": "sha512-tHsAD0iOUb6QSGGw+c8cyRBvxsq/NlfzIFBZLEHhWZ+Bx4a0MmXup6I/yJDGmyPCYE+ctCcAfY13wKAzdiVFgQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@pixi/extensions": "7.4.3",
+ "@pixi/settings": "7.4.3",
+ "@pixi/utils": "7.4.3"
+ }
+ },
+ "node_modules/@pixi/utils": {
+ "version": "7.4.3",
+ "resolved": "https://registry.npmjs.org/@pixi/utils/-/utils-7.4.3.tgz",
+ "integrity": "sha512-NO3Y9HAn2UKS1YdxffqsPp+kDpVm8XWvkZcS/E+rBzY9VTLnNOI7cawSRm+dacdET3a8Jad3aDKEDZ0HmAqAFA==",
+ "license": "MIT",
+ "dependencies": {
+ "@pixi/color": "7.4.3",
+ "@pixi/constants": "7.4.3",
+ "@pixi/settings": "7.4.3",
+ "@types/earcut": "^2.1.0",
+ "earcut": "^2.2.4",
+ "eventemitter3": "^4.0.0",
+ "url": "^0.11.0"
+ }
+ },
+ "node_modules/@puppeteer/browsers": {
+ "version": "3.2.1",
+ "resolved": "https://registry.npmjs.org/@puppeteer/browsers/-/browsers-3.2.1.tgz",
+ "integrity": "sha512-KDz+3qDRdBAlRlMjmKyj6dEs33YHTk/xRHEENSXq6TNnhgoU15ruSHtEBeVF6OZ9tBDY55Se4P0nFMNsipzU9A==",
+ "dev": true,
+ "license": "Apache-2.0",
+ "dependencies": {
+ "modern-tar": "^0.8.0",
+ "yargs": "^18.0.0"
+ },
+ "bin": {
+ "browsers": "lib/main-cli.js"
+ },
+ "engines": {
+ "node": ">=22.12.0"
+ },
+ "peerDependencies": {
+ "proxy-agent": ">=8.0.1",
+ "yauzl": "^2.10.0 || ^3.4.0"
+ },
+ "peerDependenciesMeta": {
+ "proxy-agent": {
+ "optional": true
+ },
+ "yauzl": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@rollup/rollup-android-arm-eabi": {
+ "version": "4.63.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.63.0.tgz",
+ "integrity": "sha512-70TeIFezKKy65LgAVyQh+w94/gjWhvPWaLaGGeMEgVrPkQhuj/M5bAYYZzIFUj9Y69oHyTm5Um/R6gcLh4A8JA==",
+ "cpu": [
+ "arm"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "android"
+ ]
+ },
+ "node_modules/@rollup/rollup-android-arm64": {
+ "version": "4.63.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.63.0.tgz",
+ "integrity": "sha512-YC86tYIHK6M1IV+wbzO+Bxk8RCBr6ZyWYgWxUCzaZD8mc8rrFoIJDNzDrkHBYRc/wKdrsIXmm6/F7NzrAO+OrA==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "android"
+ ]
+ },
+ "node_modules/@rollup/rollup-darwin-arm64": {
+ "version": "4.63.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.63.0.tgz",
+ "integrity": "sha512-oI+ECtUcli0y0fi4xpW82GdPIXdTkI8G8DSjG2LRuw09fPAGykaWYH/hXxiKuTxiAjiPSTIIuYUqof5Z2hShWw==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "darwin"
+ ]
+ },
+ "node_modules/@rollup/rollup-darwin-x64": {
+ "version": "4.63.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.63.0.tgz",
+ "integrity": "sha512-NwV+1s7TiKrMe4owHyKB/dTLD7ZJD0YEBEhIz+hvav1Cu1GReJjF+rsdNwjzENQeIAbE/CoNiaAc5Vz2h5DPAA==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "darwin"
+ ]
+ },
+ "node_modules/@rollup/rollup-freebsd-arm64": {
+ "version": "4.63.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.63.0.tgz",
+ "integrity": "sha512-tWtHBTu5gOPK4u4Urtk4qAHW3zZ9rQAmbssO8gp7ELvGTGI3aCiq6NqyTQ0PCIg7KbHJF2UkGDDs77YZGxfjCA==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "freebsd"
+ ]
+ },
+ "node_modules/@rollup/rollup-freebsd-x64": {
+ "version": "4.63.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.63.0.tgz",
+ "integrity": "sha512-2qPoJiwTvtHQ27NnYvTnsgk8laXWYuVmNESG8WFZBcEPKLfZ3I27qBJarjVRQtwGeYyRfq5ZowHXih9lm2BItw==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "freebsd"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-arm-gnueabihf": {
+ "version": "4.63.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.63.0.tgz",
+ "integrity": "sha512-FQwsTRvLNuHoTdICABJQfbPUSEueISGmnpT06tXTMpfprf5NiKLSXKA0A+w45wJnCmZAnzgqBwbt6ARFuyOi5w==",
+ "cpu": [
+ "arm"
+ ],
+ "dev": true,
+ "libc": [
+ "glibc"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-arm-musleabihf": {
+ "version": "4.63.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.63.0.tgz",
+ "integrity": "sha512-BBVTXziw8mY1a4ZbWME9tZyfzqXCDPqaC7Z3heQ29p5dkvXzwL0NwelO8zLa8c3RBKvl3YTuSnBgsBhYBtwjIw==",
+ "cpu": [
+ "arm"
+ ],
+ "dev": true,
+ "libc": [
+ "musl"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-arm64-gnu": {
+ "version": "4.63.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.63.0.tgz",
+ "integrity": "sha512-w2Iyy9+RqKwx3d9qWMKsJg0FfRBsY0/pXNv0mCQ3ueRvJI6+QAScfD4nrMlzFLs2HNVW6Ew+mtZfDl9b7Ew5/Q==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "libc": [
+ "glibc"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-arm64-musl": {
+ "version": "4.63.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.63.0.tgz",
+ "integrity": "sha512-YK++KtrFRHYE0P6/RtYEAy9t8F37znP+K03RrIuLPYOL6SVlObRumf/0OE4V/h63xL9DwkWbNssZfmA9hawuDA==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "libc": [
+ "musl"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-loong64-gnu": {
+ "version": "4.63.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.63.0.tgz",
+ "integrity": "sha512-aBfOG6fP7YkkPmTqPwufRJeFyz7WPpECv9XNbnsk9+vg7rxdih0lbtEel7jcRng4LZrrmU3FfitCFyEj4BWDWg==",
+ "cpu": [
+ "loong64"
+ ],
+ "dev": true,
+ "libc": [
+ "glibc"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-loong64-musl": {
+ "version": "4.63.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-musl/-/rollup-linux-loong64-musl-4.63.0.tgz",
+ "integrity": "sha512-LGaHEOeHNAag9VuS1Crs5DFg4RrU9MPi2nVnNJk9DTePx/B6RRYKVmrIXt2h7YOJlwjaFJ6lwtFDliZxScTLrQ==",
+ "cpu": [
+ "loong64"
+ ],
+ "dev": true,
+ "libc": [
+ "musl"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-ppc64-gnu": {
+ "version": "4.63.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.63.0.tgz",
+ "integrity": "sha512-jClvk+J0FC3b7Udvegiw5/4hErbHtmsNsQgENnKXDWtNCJXsJYZH5WURvu7imDOO38xYml24eeh5x3A04ppwCw==",
+ "cpu": [
+ "ppc64"
+ ],
+ "dev": true,
+ "libc": [
+ "glibc"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-ppc64-musl": {
+ "version": "4.63.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-musl/-/rollup-linux-ppc64-musl-4.63.0.tgz",
+ "integrity": "sha512-0OJlaGK+8+B777Ql5okIpD7ua5Ro9+VB9Ve0OKa28OQJZ1RbuUBVNHK/e3pr4BROqsyPl1JrPO1ZxJseCNffcA==",
+ "cpu": [
+ "ppc64"
+ ],
+ "dev": true,
+ "libc": [
+ "musl"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-riscv64-gnu": {
+ "version": "4.63.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.63.0.tgz",
+ "integrity": "sha512-Ygsx+HoNH7afwi1bTIXbnTvVnsO+zurPLSYxybV1hHFVU72OWOCl6v05ql/z0hkpAPx+DK7Kn9Bi7MayCcjLTA==",
+ "cpu": [
+ "riscv64"
+ ],
+ "dev": true,
+ "libc": [
+ "glibc"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-riscv64-musl": {
+ "version": "4.63.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.63.0.tgz",
+ "integrity": "sha512-pDQxtMGb+OvG3fLwR2OkZlSd47hW+kWg4BYMG/++sR6RqorQccwPTDsxda5hPwiIeIErAnCF9ma3SAU06bdQtQ==",
+ "cpu": [
+ "riscv64"
+ ],
+ "dev": true,
+ "libc": [
+ "musl"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-s390x-gnu": {
+ "version": "4.63.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.63.0.tgz",
+ "integrity": "sha512-0BnUG9mS8I4SSHr3XsxVhuCMEiu+rX61xxZF5vujso4LaiAGFZFxvDjg6Xn6tLPNTUAfuCvQYas4LMQMVsKRSQ==",
+ "cpu": [
+ "s390x"
+ ],
+ "dev": true,
+ "libc": [
+ "glibc"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-x64-gnu": {
+ "version": "4.63.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.63.0.tgz",
+ "integrity": "sha512-Adu/VttB1dpPNW+FEacrZ+xVm9tFty84+RrFzsqlFaPxoJB+9XXyDGtp5dCOoBwGBIEVH0To7lExFXEx0BIF4A==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "libc": [
+ "glibc"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-x64-musl": {
+ "version": "4.63.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.63.0.tgz",
+ "integrity": "sha512-NQ3bDvjUbFKmP23671xUlXtKmqVsUBd6M4PQCvbmNtOy06hnQIdKHy8oG/6S3R/S6He1JgPk6A5VT+prAJMYEw==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "libc": [
+ "musl"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-openbsd-x64": {
+ "version": "4.63.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-openbsd-x64/-/rollup-openbsd-x64-4.63.0.tgz",
+ "integrity": "sha512-u2eDAl4+0aFvA13GxlGBtTI3SS3sdgwgtV0HyjZ0QaQVCgNE+jqNGey+GtxWiq+wxr/UycAx/OnfJzApCFamvA==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "openbsd"
+ ]
+ },
+ "node_modules/@rollup/rollup-openharmony-arm64": {
+ "version": "4.63.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.63.0.tgz",
+ "integrity": "sha512-XvRb5vfW3wAZQ+ZUG21AnHHDKtNcw99eigzEhjr//NZ3u7SoBaPP0seSc7FgP7p1epAEdAoZckMW9WY/+4w70w==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "openharmony"
+ ]
+ },
+ "node_modules/@rollup/rollup-win32-arm64-msvc": {
+ "version": "4.63.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.63.0.tgz",
+ "integrity": "sha512-iZPmniy4kNBf5yo2RezbkYNNK5HPbXE9+g+twnbqSng7dtLEJy1SKoxiE/ni4FDacjyuZpEeb9U054N4EoKHYw==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "win32"
+ ]
+ },
+ "node_modules/@rollup/rollup-win32-ia32-msvc": {
+ "version": "4.63.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.63.0.tgz",
+ "integrity": "sha512-mFBBd+LF37fnE8JnYUOH+imj0aPFPK30vpar4ehJkgnLj9sZn8ZxiRENmLtgIwxK7TC8klF6N57fxdNBwQoqOA==",
+ "cpu": [
+ "ia32"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "win32"
+ ]
+ },
+ "node_modules/@rollup/rollup-win32-x64-gnu": {
+ "version": "4.63.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.63.0.tgz",
+ "integrity": "sha512-ujeqEY3B+zbGn3Z4Q03cUBG/LGWnBJncVT36WER31LcOsQk9+1dmINKKtvmmfChUvRbK1G0R8OhMWFgHgaZtAw==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "win32"
+ ]
+ },
+ "node_modules/@rollup/rollup-win32-x64-msvc": {
+ "version": "4.63.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.63.0.tgz",
+ "integrity": "sha512-hncn90N4sOky0L2LKE5oESKLbxCPeVo4eLA2LSMoDzM+879ml4WSr+Rr4DWknNIVVvS1Hirkc9hx02W6YxS8rQ==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "win32"
+ ]
+ },
+ "node_modules/@types/css-font-loading-module": {
+ "version": "0.0.12",
+ "resolved": "https://registry.npmjs.org/@types/css-font-loading-module/-/css-font-loading-module-0.0.12.tgz",
+ "integrity": "sha512-x2tZZYkSxXqWvTDgveSynfjq/T2HyiZHXb00j/+gy19yp70PHCizM48XFdjBCWH7eHBD0R5i/pw9yMBP/BH5uA==",
+ "license": "MIT"
+ },
+ "node_modules/@types/earcut": {
+ "version": "2.1.4",
+ "resolved": "https://registry.npmjs.org/@types/earcut/-/earcut-2.1.4.tgz",
+ "integrity": "sha512-qp3m9PPz4gULB9MhjGID7wpo3gJ4bTGXm7ltNDsmOvsPduTeHp8wSW9YckBj3mljeOh4F0m2z/0JKAALRKbmLQ==",
+ "license": "MIT"
+ },
+ "node_modules/@types/estree": {
+ "version": "1.0.9",
+ "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.9.tgz",
+ "integrity": "sha512-GhdPgy1el4/ImP05X05Uw4cw2/M93BCUmnEvWZNStlCzEKME4Fkk+YpoA5OiHNQmoS7Cafb8Xa3Pya8m1Qrzeg==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/@types/node": {
+ "version": "20.19.43",
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-20.19.43.tgz",
+ "integrity": "sha512-6oYBAi5ikg4Pl+kGsoYtawUMBT2zZMCvPNF7pVLnHZfd1zf38DRiWn/gT01RYCdUqkv7Fhr+C9ot4/tb+2sVvA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "undici-types": "~6.21.0"
+ }
+ },
+ "node_modules/@vitejs/plugin-vue": {
+ "version": "5.2.4",
+ "resolved": "https://registry.npmjs.org/@vitejs/plugin-vue/-/plugin-vue-5.2.4.tgz",
+ "integrity": "sha512-7Yx/SXSOcQq5HiiV3orevHUFn+pmMB4cgbEkDYgnkUWb0WfeQ/wa2yFv6D5ICiCQOVpjA7vYDXrC7AGO8yjDHA==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": "^18.0.0 || >=20.0.0"
+ },
+ "peerDependencies": {
+ "vite": "^5.0.0 || ^6.0.0",
+ "vue": "^3.2.25"
+ }
+ },
+ "node_modules/@volar/language-core": {
+ "version": "2.4.15",
+ "resolved": "https://registry.npmjs.org/@volar/language-core/-/language-core-2.4.15.tgz",
+ "integrity": "sha512-3VHw+QZU0ZG9IuQmzT68IyN4hZNd9GchGPhbD9+pa8CVv7rnoOZwo7T8weIbrRmihqy3ATpdfXFnqRrfPVK6CA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@volar/source-map": "2.4.15"
+ }
+ },
+ "node_modules/@volar/source-map": {
+ "version": "2.4.15",
+ "resolved": "https://registry.npmjs.org/@volar/source-map/-/source-map-2.4.15.tgz",
+ "integrity": "sha512-CPbMWlUN6hVZJYGcU/GSoHu4EnCHiLaXI9n8c9la6RaI9W5JHX+NqG+GSQcB0JdC2FIBLdZJwGsfKyBB71VlTg==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/@volar/typescript": {
+ "version": "2.4.15",
+ "resolved": "https://registry.npmjs.org/@volar/typescript/-/typescript-2.4.15.tgz",
+ "integrity": "sha512-2aZ8i0cqPGjXb4BhkMsPYDkkuc2ZQ6yOpqwAuNwUoncELqoy5fRgOQtLR9gB0g902iS0NAkvpIzs27geVyVdPg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@volar/language-core": "2.4.15",
+ "path-browserify": "^1.0.1",
+ "vscode-uri": "^3.0.8"
+ }
+ },
+ "node_modules/@vue/compiler-core": {
+ "version": "3.5.41",
+ "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.5.41.tgz",
+ "integrity": "sha512-q0Xtv/F9w2YO/7htQhtiL+Ev2WCJbe5N2hc+XfgyKkEKqWpSxknmT8QOuGdEKNdjPq0c3F7rNpFkTo3Kfrm7pg==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/parser": "^7.29.8",
+ "@vue/shared": "3.5.41",
+ "entities": "^7.0.1",
+ "estree-walker": "^2.0.2",
+ "source-map-js": "^1.2.1"
+ }
+ },
+ "node_modules/@vue/compiler-dom": {
+ "version": "3.5.41",
+ "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.5.41.tgz",
+ "integrity": "sha512-oKacVfNglLvGjnS6BXOlGL7EyG2h8X03pqXCjzotRZUaXGjbrTJUnVAQjrCqUnS+lyu31nwQjZY/d817GmCnfw==",
+ "license": "MIT",
+ "dependencies": {
+ "@vue/compiler-core": "3.5.41",
+ "@vue/shared": "3.5.41"
+ }
+ },
+ "node_modules/@vue/compiler-sfc": {
+ "version": "3.5.41",
+ "resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.5.41.tgz",
+ "integrity": "sha512-XJhip7R2wy6vX3knCxdZN4KracFaZUef58s1KYewqluedHIJaPIVfXoYT7MF1F8nCvv6k8bWWxDC8opMkg1VTQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/parser": "^7.29.8",
+ "@vue/compiler-core": "3.5.41",
+ "@vue/compiler-dom": "3.5.41",
+ "@vue/compiler-ssr": "3.5.41",
+ "@vue/shared": "3.5.41",
+ "estree-walker": "^2.0.2",
+ "magic-string": "^0.30.21",
+ "postcss": "^8.5.19",
+ "source-map-js": "^1.2.1"
+ }
+ },
+ "node_modules/@vue/compiler-ssr": {
+ "version": "3.5.41",
+ "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.5.41.tgz",
+ "integrity": "sha512-U3v5OejKEGqOI0Wy0+Sz7hGuIFZHA4LSXzrNM3IMIeDyJEBBfTpX26n3SDgToRpP2bLc9FfI2j/kSgcJ8Emq5A==",
+ "license": "MIT",
+ "dependencies": {
+ "@vue/compiler-dom": "3.5.41",
+ "@vue/shared": "3.5.41"
+ }
+ },
+ "node_modules/@vue/compiler-vue2": {
+ "version": "2.7.16",
+ "resolved": "https://registry.npmjs.org/@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": "8.2.1",
+ "resolved": "https://registry.npmjs.org/@vue/devtools-api/-/devtools-api-8.2.1.tgz",
+ "integrity": "sha512-6u4vXBlIBAC1wMplIZgpyPn7uh/s4Bf6F5bMzvLv+EdJ0aHs/+4B7Ygv864EStQSjRbsRzTko/kUG1A1IejQ3A==",
+ "license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "@vue/devtools-kit": "^8.2.1"
+ }
+ },
+ "node_modules/@vue/devtools-kit": {
+ "version": "8.2.1",
+ "resolved": "https://registry.npmjs.org/@vue/devtools-kit/-/devtools-kit-8.2.1.tgz",
+ "integrity": "sha512-FIGIuq3AWReEpbAHY/cRGeHDfI0qOb8OCQ3YjbEAX04uaxIDbGc9rhkbVcG7rnfHPXE3RsU5KrWOu9V/okd8AQ==",
+ "license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "@vue/devtools-shared": "^8.2.1",
+ "birpc": "^2.6.1",
+ "hookable": "^5.5.3",
+ "perfect-debounce": "^2.0.0"
+ }
+ },
+ "node_modules/@vue/devtools-shared": {
+ "version": "8.2.1",
+ "resolved": "https://registry.npmjs.org/@vue/devtools-shared/-/devtools-shared-8.2.1.tgz",
+ "integrity": "sha512-Fkac7lUdGReh6pVOi3AYPRGe82LQqRmAfThW7RRligOAP0ZA/Z1z9XLHDM9dv34pV2HRc79DK8uKPeG2fLnA/g==",
+ "license": "MIT",
+ "peer": true
+ },
+ "node_modules/@vue/language-core": {
+ "version": "2.2.12",
+ "resolved": "https://registry.npmjs.org/@vue/language-core/-/language-core-2.2.12.tgz",
+ "integrity": "sha512-IsGljWbKGU1MZpBPN+BvPAdr55YPkj2nB/TBNGNC32Vy2qLG25DYu/NBN2vNtZqdRbTRjaoYrahLrToim2NanA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@volar/language-core": "2.4.15",
+ "@vue/compiler-dom": "^3.5.0",
+ "@vue/compiler-vue2": "^2.7.16",
+ "@vue/shared": "^3.5.0",
+ "alien-signals": "^1.0.3",
+ "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.41",
+ "resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.5.41.tgz",
+ "integrity": "sha512-rznsqKM0np0x18EjzF8x88MpEhdNsffbvFbckLL5+oUKz1BxAImEmO7J1ArRYSyo6aQaVoBDp7jEkT91OOxydA==",
+ "license": "MIT",
+ "dependencies": {
+ "@vue/shared": "3.5.41"
+ }
+ },
+ "node_modules/@vue/runtime-core": {
+ "version": "3.5.41",
+ "resolved": "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.5.41.tgz",
+ "integrity": "sha512-Vcry58hiAKwGen9Z1jUZE0feFsNArPCMOImYI8el48A9Idf6DuQYD0U05zZIF2Iad1hGhPSvcbBbAOhNr55fhg==",
+ "license": "MIT",
+ "dependencies": {
+ "@vue/reactivity": "3.5.41",
+ "@vue/shared": "3.5.41"
+ }
+ },
+ "node_modules/@vue/runtime-dom": {
+ "version": "3.5.41",
+ "resolved": "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.5.41.tgz",
+ "integrity": "sha512-3vVBahVBS9+U6cmXBLyb8nE6/yYo4J/CGI9eVFs3KiMc0YHuudwKyShTD65jtJy/L9PUUxNAFu4cj4LiJ0UFbw==",
+ "license": "MIT",
+ "dependencies": {
+ "@vue/reactivity": "3.5.41",
+ "@vue/runtime-core": "3.5.41",
+ "@vue/shared": "3.5.41",
+ "csstype": "^3.2.3"
+ }
+ },
+ "node_modules/@vue/server-renderer": {
+ "version": "3.5.41",
+ "resolved": "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.5.41.tgz",
+ "integrity": "sha512-n6hx/pNFfbD6SuyeuMVkvqox8bwf/ET9JlA/kAz/imw8sw++wkqKe2mHX5KutjPpbKE4Z56yTHszoOjGMI9igQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@vue/compiler-ssr": "3.5.41",
+ "@vue/runtime-dom": "3.5.41",
+ "@vue/shared": "3.5.41"
+ }
+ },
+ "node_modules/@vue/shared": {
+ "version": "3.5.41",
+ "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.5.41.tgz",
+ "integrity": "sha512-IOnwSCma8j+9xJT6b8H0dEYidC80NsYmNMlZxRsukYcSoGaDBohog5hDxzeUXdFeGWFA++vWvxqOmrr96VlqMA==",
+ "license": "MIT"
+ },
+ "node_modules/alien-signals": {
+ "version": "1.0.13",
+ "resolved": "https://registry.npmjs.org/alien-signals/-/alien-signals-1.0.13.tgz",
+ "integrity": "sha512-OGj9yyTnJEttvzhTUWuscOvtqxq5vrhF7vL9oS0xJ2mK0ItPYP1/y+vCFebfxoEyAz0++1AIwJ5CMr+Fk3nDmg==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/ansi-regex": {
+ "version": "6.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.3.0.tgz",
+ "integrity": "sha512-WpDfL7NO6j7tH88IDBNVdUJxDh9nmCteAVW9dsep846XdwF4naCBK+/tGLX3KJgcpgMRXCFlTM2hKGoK9FsdrQ==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-regex?sponsor=1"
+ }
+ },
+ "node_modules/ansi-styles": {
+ "version": "6.2.3",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.3.tgz",
+ "integrity": "sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ }
+ },
+ "node_modules/balanced-match": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
+ "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/birpc": {
+ "version": "2.9.0",
+ "resolved": "https://registry.npmjs.org/birpc/-/birpc-2.9.0.tgz",
+ "integrity": "sha512-KrayHS5pBi69Xi9JmvoqrIgYGDkD6mcSe/i6YKi3w5kekCLzrX4+nawcXqrj2tIp50Kw/mT/s3p+GVK0A0sKxw==",
+ "license": "MIT",
+ "peer": true,
+ "funding": {
+ "url": "https://github.com/sponsors/antfu"
+ }
+ },
+ "node_modules/brace-expansion": {
+ "version": "2.1.4",
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.1.4.tgz",
+ "integrity": "sha512-hGfVzPxthbf3+2yjg/RBs60cB0FhqBS/zvdV/4wn4/BmN0bNMMHPc4V/BbFieqf1TKAGGAHnY4eSjajCl0f2Xg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "balanced-match": "^1.0.0"
+ }
+ },
+ "node_modules/call-bind-apply-helpers": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz",
+ "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==",
+ "license": "MIT",
+ "dependencies": {
+ "es-errors": "^1.3.0",
+ "function-bind": "^1.1.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/call-bound": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz",
+ "integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==",
+ "license": "MIT",
+ "dependencies": {
+ "call-bind-apply-helpers": "^1.0.2",
+ "get-intrinsic": "^1.3.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/chromium-bidi": {
+ "version": "17.0.2",
+ "resolved": "https://registry.npmjs.org/chromium-bidi/-/chromium-bidi-17.0.2.tgz",
+ "integrity": "sha512-5v9GQFhTktFvotn/OFNJBmKLKRAb6n9r0bVCwf7sHgWc3/JryK0bj1nn93L3pHFrfgcsu6Be6EWsDi+1XHTGDg==",
+ "dev": true,
+ "license": "Apache-2.0",
+ "dependencies": {
+ "mitt": "^3.0.1",
+ "zod": "^3.24.1"
+ },
+ "engines": {
+ "node": ">=20.19.0 <22.0.0 || >=22.12.0"
+ },
+ "peerDependencies": {
+ "devtools-protocol": "*"
+ }
+ },
+ "node_modules/cliui": {
+ "version": "9.0.1",
+ "resolved": "https://registry.npmjs.org/cliui/-/cliui-9.0.1.tgz",
+ "integrity": "sha512-k7ndgKhwoQveBL+/1tqGJYNz097I7WOvwbmmU2AR5+magtbjPWQTS1C5vzGkBC8Ym8UWRzfKUzUUqFLypY4Q+w==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "string-width": "^7.2.0",
+ "strip-ansi": "^7.1.0",
+ "wrap-ansi": "^9.0.0"
+ },
+ "engines": {
+ "node": ">=20"
+ }
+ },
+ "node_modules/cliui/node_modules/string-width": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-7.2.0.tgz",
+ "integrity": "sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "emoji-regex": "^10.3.0",
+ "get-east-asian-width": "^1.0.0",
+ "strip-ansi": "^7.1.0"
+ },
+ "engines": {
+ "node": ">=18"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/csstype": {
+ "version": "3.2.3",
+ "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.2.3.tgz",
+ "integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==",
+ "license": "MIT"
+ },
+ "node_modules/de-indent": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/de-indent/-/de-indent-1.0.2.tgz",
+ "integrity": "sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/devtools-protocol": {
+ "version": "0.0.1666840",
+ "resolved": "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.1666840.tgz",
+ "integrity": "sha512-gCcO42XCHKEs7Ag0S7aGYsnJ7hlgrO3qderYqeiY0Eqk+0GFfuvT13IA0hHreJTa2KCdDVyGMeOhdMNmrrTjVg==",
+ "dev": true,
+ "license": "BSD-3-Clause"
+ },
+ "node_modules/dunder-proto": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz",
+ "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==",
+ "license": "MIT",
+ "dependencies": {
+ "call-bind-apply-helpers": "^1.0.1",
+ "es-errors": "^1.3.0",
+ "gopd": "^1.2.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/earcut": {
+ "version": "2.2.4",
+ "resolved": "https://registry.npmjs.org/earcut/-/earcut-2.2.4.tgz",
+ "integrity": "sha512-/pjZsA1b4RPHbeWZQn66SWS8nZZWLQQ23oE3Eam7aroEFGEvwKAsJfZ9ytiEMycfzXWpca4FA9QIOehf7PocBQ==",
+ "license": "ISC"
+ },
+ "node_modules/emoji-regex": {
+ "version": "10.6.0",
+ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-10.6.0.tgz",
+ "integrity": "sha512-toUI84YS5YmxW219erniWD0CIVOo46xGKColeNQRgOzDorgBi1v4D71/OFzgD9GO2UGKIv1C3Sp8DAn0+j5w7A==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/entities": {
+ "version": "7.0.1",
+ "resolved": "https://registry.npmjs.org/entities/-/entities-7.0.1.tgz",
+ "integrity": "sha512-TWrgLOFUQTH994YUyl1yT4uyavY5nNB5muff+RtWaqNVCAK408b5ZnnbNAUEWLTCpum9w6arT70i1XdQ4UeOPA==",
+ "license": "BSD-2-Clause",
+ "engines": {
+ "node": ">=0.12"
+ },
+ "funding": {
+ "url": "https://github.com/fb55/entities?sponsor=1"
+ }
+ },
+ "node_modules/es-define-property": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz",
+ "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/es-errors": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz",
+ "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/es-object-atoms": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.2.tgz",
+ "integrity": "sha512-HWcBoN6NileqtSydK2FqHbS/LoDd2pqrnQHLyJzBj4kOp/ky2MWMN694xOfkK8/SnUsW2DH7EfyVlydKCsm1Zw==",
+ "license": "MIT",
+ "dependencies": {
+ "es-errors": "^1.3.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/esbuild": {
+ "version": "0.25.12",
+ "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.25.12.tgz",
+ "integrity": "sha512-bbPBYYrtZbkt6Os6FiTLCTFxvq4tt3JKall1vRwshA3fdVztsLAatFaZobhkBC8/BrPetoa0oksYoKXoG4ryJg==",
+ "dev": true,
+ "hasInstallScript": true,
+ "license": "MIT",
+ "bin": {
+ "esbuild": "bin/esbuild"
+ },
+ "engines": {
+ "node": ">=18"
+ },
+ "optionalDependencies": {
+ "@esbuild/aix-ppc64": "0.25.12",
+ "@esbuild/android-arm": "0.25.12",
+ "@esbuild/android-arm64": "0.25.12",
+ "@esbuild/android-x64": "0.25.12",
+ "@esbuild/darwin-arm64": "0.25.12",
+ "@esbuild/darwin-x64": "0.25.12",
+ "@esbuild/freebsd-arm64": "0.25.12",
+ "@esbuild/freebsd-x64": "0.25.12",
+ "@esbuild/linux-arm": "0.25.12",
+ "@esbuild/linux-arm64": "0.25.12",
+ "@esbuild/linux-ia32": "0.25.12",
+ "@esbuild/linux-loong64": "0.25.12",
+ "@esbuild/linux-mips64el": "0.25.12",
+ "@esbuild/linux-ppc64": "0.25.12",
+ "@esbuild/linux-riscv64": "0.25.12",
+ "@esbuild/linux-s390x": "0.25.12",
+ "@esbuild/linux-x64": "0.25.12",
+ "@esbuild/netbsd-arm64": "0.25.12",
+ "@esbuild/netbsd-x64": "0.25.12",
+ "@esbuild/openbsd-arm64": "0.25.12",
+ "@esbuild/openbsd-x64": "0.25.12",
+ "@esbuild/openharmony-arm64": "0.25.12",
+ "@esbuild/sunos-x64": "0.25.12",
+ "@esbuild/win32-arm64": "0.25.12",
+ "@esbuild/win32-ia32": "0.25.12",
+ "@esbuild/win32-x64": "0.25.12"
+ }
+ },
+ "node_modules/escalade": {
+ "version": "3.2.0",
+ "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz",
+ "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/estree-walker": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz",
+ "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==",
+ "license": "MIT"
+ },
+ "node_modules/eventemitter3": {
+ "version": "4.0.7",
+ "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz",
+ "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==",
+ "license": "MIT"
+ },
+ "node_modules/fdir": {
+ "version": "6.5.0",
+ "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz",
+ "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=12.0.0"
+ },
+ "peerDependencies": {
+ "picomatch": "^3 || ^4"
+ },
+ "peerDependenciesMeta": {
+ "picomatch": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/fsevents": {
+ "version": "2.3.3",
+ "resolved": "https://registry.npmjs.org/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/function-bind": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
+ "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
+ "license": "MIT",
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/get-caller-file": {
+ "version": "2.0.5",
+ "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz",
+ "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==",
+ "dev": true,
+ "license": "ISC",
+ "engines": {
+ "node": "6.* || 8.* || >= 10.*"
+ }
+ },
+ "node_modules/get-east-asian-width": {
+ "version": "1.6.0",
+ "resolved": "https://registry.npmjs.org/get-east-asian-width/-/get-east-asian-width-1.6.0.tgz",
+ "integrity": "sha512-QRbvDIbx6YklUe6RxeTeleMR0yv3cYH6PsPZHcnVn7xv7zO1BHN8r0XETu8n6Ye3Q+ahtSarc3WgtNWmehIBfA==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=18"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/get-intrinsic": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz",
+ "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==",
+ "license": "MIT",
+ "dependencies": {
+ "call-bind-apply-helpers": "^1.0.2",
+ "es-define-property": "^1.0.1",
+ "es-errors": "^1.3.0",
+ "es-object-atoms": "^1.1.1",
+ "function-bind": "^1.1.2",
+ "get-proto": "^1.0.1",
+ "gopd": "^1.2.0",
+ "has-symbols": "^1.1.0",
+ "hasown": "^2.0.2",
+ "math-intrinsics": "^1.1.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/get-proto": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz",
+ "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==",
+ "license": "MIT",
+ "dependencies": {
+ "dunder-proto": "^1.0.1",
+ "es-object-atoms": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/gopd": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz",
+ "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/has-symbols": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz",
+ "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/hasown": {
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.4.tgz",
+ "integrity": "sha512-T2UbfbBEF32wiepXIsMlTW9+dDYC6wMh/t/vYA4tuOMKqWz/n3vr1NFSxQiyP+zk2mXsoMA/i/7qV6LKut1t1A==",
+ "license": "MIT",
+ "dependencies": {
+ "function-bind": "^1.1.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/he": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz",
+ "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==",
+ "dev": true,
+ "license": "MIT",
+ "bin": {
+ "he": "bin/he"
+ }
+ },
+ "node_modules/hookable": {
+ "version": "5.5.3",
+ "resolved": "https://registry.npmjs.org/hookable/-/hookable-5.5.3.tgz",
+ "integrity": "sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==",
+ "license": "MIT",
+ "peer": true
+ },
+ "node_modules/ismobilejs": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/ismobilejs/-/ismobilejs-1.1.1.tgz",
+ "integrity": "sha512-VaFW53yt8QO61k2WJui0dHf4SlL8lxBofUuUmwBo0ljPk0Drz2TiuDW4jo3wDcv41qy/SxrJ+VAzJ/qYqsmzRw==",
+ "license": "MIT"
+ },
+ "node_modules/magic-string": {
+ "version": "0.30.21",
+ "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.21.tgz",
+ "integrity": "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@jridgewell/sourcemap-codec": "^1.5.5"
+ }
+ },
+ "node_modules/math-intrinsics": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz",
+ "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/minimatch": {
+ "version": "9.0.9",
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.9.tgz",
+ "integrity": "sha512-OBwBN9AL4dqmETlpS2zasx+vTeWclWzkblfZk7KTA5j3jeOONz/tRCnZomUyvNg83wL5Zv9Ss6HMJXAgL8R2Yg==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "brace-expansion": "^2.0.2"
+ },
+ "engines": {
+ "node": ">=16 || 14 >=14.17"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ }
+ },
+ "node_modules/mitt": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/mitt/-/mitt-3.0.1.tgz",
+ "integrity": "sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/modern-tar": {
+ "version": "0.8.4",
+ "resolved": "https://registry.npmjs.org/modern-tar/-/modern-tar-0.8.4.tgz",
+ "integrity": "sha512-gN54ddmyzEg10orwZ2u4OOv+bjpMWdIl5jIkodK97bMq8QBSL5c0D7YX0lT1Ooz+99S7+PvFbnxzdjgHo1r41g==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=18.0.0"
+ }
+ },
+ "node_modules/muggle-string": {
+ "version": "0.4.1",
+ "resolved": "https://registry.npmjs.org/muggle-string/-/muggle-string-0.4.1.tgz",
+ "integrity": "sha512-VNTrAak/KhO2i8dqqnqnAHOa3cYBwXEZe9h+D5h/1ZqFSTEFHdM65lR7RoIqq3tBBYavsOXV84NoHXZ0AkPyqQ==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/nanoid": {
+ "version": "3.3.18",
+ "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.18.tgz",
+ "integrity": "sha512-DTg4MJbGMWkfi6VZFdNt2/caMbQy4Ou+Op/hJQvGEWcnVfoA1QA+xzRKAzw9jD6+GVOOeYr/mIcuDSdug6F6+w==",
+ "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/nostics": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/nostics/-/nostics-1.2.0.tgz",
+ "integrity": "sha512-FGqEfhQjrvo1lL8KFifdTQiNwwQHJxC1jtYE1Rc54qF/jxONUNL+kC9gS1krX8Q65PgrQ5fCqH/I4NhWBvdSqg==",
+ "license": "MIT"
+ },
+ "node_modules/object-inspect": {
+ "version": "1.13.4",
+ "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz",
+ "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/path-browserify": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-1.0.1.tgz",
+ "integrity": "sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/perfect-debounce": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/perfect-debounce/-/perfect-debounce-2.1.0.tgz",
+ "integrity": "sha512-LjgdTytVFXeUgtHZr9WYViYSM/g8MkcTPYDlPa3cDqMirHjKiSZPYd6DoL7pK8AJQr+uWkQvCjHNdiMqsrJs+g==",
+ "license": "MIT",
+ "peer": true
+ },
+ "node_modules/picocolors": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
+ "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
+ "license": "ISC"
+ },
+ "node_modules/picomatch": {
+ "version": "4.0.7",
+ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.7.tgz",
+ "integrity": "sha512-qcJu88Q2IWqJsDD529JKMdwGm/dvInW4HvQnRwiH9JtihJvzGOscDtHE3x1pBKeUOTysQ8kVmLnJ2kJu7yhcGA==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/jonschlinkert"
+ }
+ },
+ "node_modules/pinia": {
+ "version": "4.0.3",
+ "resolved": "https://registry.npmjs.org/pinia/-/pinia-4.0.3.tgz",
+ "integrity": "sha512-XMQqpvjgG7LMqVhhFUzKLT4KEbsYbfZZ0CZU9PgdFm1O2VKBmIkykL8+SfNhOaT7sR0wT6BEgKT0YNDYWgmVRA==",
+ "license": "MIT",
+ "dependencies": {
+ "nostics": "^1.1.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/posva"
+ },
+ "peerDependencies": {
+ "@vue/devtools-api": "^8.1.5",
+ "typescript": ">=5.6.0",
+ "vue": "^3.5.11"
+ },
+ "peerDependenciesMeta": {
+ "@vue/devtools-api": {
+ "optional": false
+ },
+ "typescript": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/pixi.js": {
+ "version": "7.4.3",
+ "resolved": "https://registry.npmjs.org/pixi.js/-/pixi.js-7.4.3.tgz",
+ "integrity": "sha512-uIWdH0EI2dVgNoqN9aFaHCmR0V65OEhMkXs2sek3c/QP2ItV6UoM+ouX9esSv3ibo20F+J5D1XwnQhUZI6wqeQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@pixi/accessibility": "7.4.3",
+ "@pixi/app": "7.4.3",
+ "@pixi/assets": "7.4.3",
+ "@pixi/compressed-textures": "7.4.3",
+ "@pixi/core": "7.4.3",
+ "@pixi/display": "7.4.3",
+ "@pixi/events": "7.4.3",
+ "@pixi/extensions": "7.4.3",
+ "@pixi/extract": "7.4.3",
+ "@pixi/filter-alpha": "7.4.3",
+ "@pixi/filter-blur": "7.4.3",
+ "@pixi/filter-color-matrix": "7.4.3",
+ "@pixi/filter-displacement": "7.4.3",
+ "@pixi/filter-fxaa": "7.4.3",
+ "@pixi/filter-noise": "7.4.3",
+ "@pixi/graphics": "7.4.3",
+ "@pixi/mesh": "7.4.3",
+ "@pixi/mesh-extras": "7.4.3",
+ "@pixi/mixin-cache-as-bitmap": "7.4.3",
+ "@pixi/mixin-get-child-by-name": "7.4.3",
+ "@pixi/mixin-get-global-position": "7.4.3",
+ "@pixi/particle-container": "7.4.3",
+ "@pixi/prepare": "7.4.3",
+ "@pixi/sprite": "7.4.3",
+ "@pixi/sprite-animated": "7.4.3",
+ "@pixi/sprite-tiling": "7.4.3",
+ "@pixi/spritesheet": "7.4.3",
+ "@pixi/text": "7.4.3",
+ "@pixi/text-bitmap": "7.4.3",
+ "@pixi/text-html": "7.4.3"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/pixijs"
+ }
+ },
+ "node_modules/postcss": {
+ "version": "8.5.26",
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.26.tgz",
+ "integrity": "sha512-u82N74LFzG8ca+dD8puPnplTXoGH4fTPpVGuIbt36G3qvNlkvfD0lEAZSxaly3KX8TS/L1A1gsCEmvKmBcVbkQ==",
+ "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.17",
+ "picocolors": "^1.1.1",
+ "source-map-js": "^1.2.1"
+ },
+ "engines": {
+ "node": "^10 || ^12 || >=14"
+ }
+ },
+ "node_modules/punycode": {
+ "version": "1.4.1",
+ "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz",
+ "integrity": "sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==",
+ "license": "MIT"
+ },
+ "node_modules/puppeteer-core": {
+ "version": "25.9.0",
+ "resolved": "https://registry.npmjs.org/puppeteer-core/-/puppeteer-core-25.9.0.tgz",
+ "integrity": "sha512-U61rCwSMha62CA/Opy6tCx2Fx+ck7ouiKnbpEApzSoLYMoEu9F71nuFpHL55vmIt33/GYm6eKZVhH2ev0nAIeg==",
+ "dev": true,
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@puppeteer/browsers": "3.2.1",
+ "chromium-bidi": "17.0.2",
+ "devtools-protocol": "0.0.1666840",
+ "typed-query-selector": "^2.12.2",
+ "webdriver-bidi-protocol": "0.4.2",
+ "ws": "^8.21.3"
+ },
+ "engines": {
+ "node": ">=22.12.0"
+ }
+ },
+ "node_modules/qs": {
+ "version": "6.15.3",
+ "resolved": "https://registry.npmjs.org/qs/-/qs-6.15.3.tgz",
+ "integrity": "sha512-O9gl3zCl5h5blw1KGUzQKhA5oUXSl8rwUIM5o0S3nCXMliSvy5Dzx7/DJcI+SwgICv+IneSZwhBh1oSyEHA71A==",
+ "license": "BSD-3-Clause",
+ "dependencies": {
+ "es-define-property": "^1.0.1",
+ "side-channel": "^1.1.1"
+ },
+ "engines": {
+ "node": ">=0.6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/rollup": {
+ "version": "4.63.0",
+ "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.63.0.tgz",
+ "integrity": "sha512-T5vnZ2y4QqC3/4P+w2+JO+Q/OVdnPsv4XcSYJYMEn0R9/jjl5AgLwO9LAZMzP2lN71O6pypn91rB7lDstUkfrQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@types/estree": "1.0.9"
+ },
+ "bin": {
+ "rollup": "dist/bin/rollup"
+ },
+ "engines": {
+ "node": ">=18.0.0",
+ "npm": ">=8.0.0"
+ },
+ "optionalDependencies": {
+ "@napi-rs/lzma-linux-x64-gnu": "1.5.1",
+ "@rollup/rollup-android-arm-eabi": "4.63.0",
+ "@rollup/rollup-android-arm64": "4.63.0",
+ "@rollup/rollup-darwin-arm64": "4.63.0",
+ "@rollup/rollup-darwin-x64": "4.63.0",
+ "@rollup/rollup-freebsd-arm64": "4.63.0",
+ "@rollup/rollup-freebsd-x64": "4.63.0",
+ "@rollup/rollup-linux-arm-gnueabihf": "4.63.0",
+ "@rollup/rollup-linux-arm-musleabihf": "4.63.0",
+ "@rollup/rollup-linux-arm64-gnu": "4.63.0",
+ "@rollup/rollup-linux-arm64-musl": "4.63.0",
+ "@rollup/rollup-linux-loong64-gnu": "4.63.0",
+ "@rollup/rollup-linux-loong64-musl": "4.63.0",
+ "@rollup/rollup-linux-ppc64-gnu": "4.63.0",
+ "@rollup/rollup-linux-ppc64-musl": "4.63.0",
+ "@rollup/rollup-linux-riscv64-gnu": "4.63.0",
+ "@rollup/rollup-linux-riscv64-musl": "4.63.0",
+ "@rollup/rollup-linux-s390x-gnu": "4.63.0",
+ "@rollup/rollup-linux-x64-gnu": "4.63.0",
+ "@rollup/rollup-linux-x64-musl": "4.63.0",
+ "@rollup/rollup-openbsd-x64": "4.63.0",
+ "@rollup/rollup-openharmony-arm64": "4.63.0",
+ "@rollup/rollup-win32-arm64-msvc": "4.63.0",
+ "@rollup/rollup-win32-ia32-msvc": "4.63.0",
+ "@rollup/rollup-win32-x64-gnu": "4.63.0",
+ "@rollup/rollup-win32-x64-msvc": "4.63.0",
+ "fsevents": "~2.3.2"
+ }
+ },
+ "node_modules/side-channel": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.1.tgz",
+ "integrity": "sha512-6x6dK6zJdpTzF4sQeNYxwtvBzf6Eg4GtlesS94HOvTudUeyK2WXAaIfmDgsyslYrRBeFIlsi54AYsFGUuhmvrQ==",
+ "license": "MIT",
+ "dependencies": {
+ "es-errors": "^1.3.0",
+ "object-inspect": "^1.13.4",
+ "side-channel-list": "^1.0.1",
+ "side-channel-map": "^1.0.1",
+ "side-channel-weakmap": "^1.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/side-channel-list": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.1.tgz",
+ "integrity": "sha512-mjn/0bi/oUURjc5Xl7IaWi/OJJJumuoJFQJfDDyO46+hBWsfaVM65TBHq2eoZBhzl9EchxOijpkbRC8SVBQU0w==",
+ "license": "MIT",
+ "dependencies": {
+ "es-errors": "^1.3.0",
+ "object-inspect": "^1.13.4"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/side-channel-map": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz",
+ "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==",
+ "license": "MIT",
+ "dependencies": {
+ "call-bound": "^1.0.2",
+ "es-errors": "^1.3.0",
+ "get-intrinsic": "^1.2.5",
+ "object-inspect": "^1.13.3"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/side-channel-weakmap": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz",
+ "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==",
+ "license": "MIT",
+ "dependencies": {
+ "call-bound": "^1.0.2",
+ "es-errors": "^1.3.0",
+ "get-intrinsic": "^1.2.5",
+ "object-inspect": "^1.13.3",
+ "side-channel-map": "^1.0.1"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/source-map-js": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/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/string-width": {
+ "version": "8.2.2",
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-8.2.2.tgz",
+ "integrity": "sha512-GaPUh5gfdrYzqeVNZvUfT23vYYxXzKYidUcnMtJg/3rxRV63EFZy3k6xfKlmfeJD0176lnUV/Usr3XcwSvFzpg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "get-east-asian-width": "^1.5.0",
+ "strip-ansi": "^7.1.2"
+ },
+ "engines": {
+ "node": ">=20"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/strip-ansi": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.2.0.tgz",
+ "integrity": "sha512-yDPMNjp4WyfYBkHnjIRLfca1i6KMyGCtsVgoKe/z1+6vukgaENdgGBZt+ZmKPc4gavvEZ5OgHfHdrazhgNyG7w==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "ansi-regex": "^6.2.2"
+ },
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/strip-ansi?sponsor=1"
+ }
+ },
+ "node_modules/tinyglobby": {
+ "version": "0.2.17",
+ "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.17.tgz",
+ "integrity": "sha512-wXR/dYpcqKmfWpEdZjiKJOwCNFndD0DMnrW/cYjVGttEkBfVgcLFHoNrlj47mjOVic9yyNu65alsgF4NQyTa2g==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "fdir": "^6.5.0",
+ "picomatch": "^4.0.4"
+ },
+ "engines": {
+ "node": ">=12.0.0"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/SuperchupuDev"
+ }
+ },
+ "node_modules/typed-query-selector": {
+ "version": "2.12.2",
+ "resolved": "https://registry.npmjs.org/typed-query-selector/-/typed-query-selector-2.12.2.tgz",
+ "integrity": "sha512-EOPFbyIub4ngnEdqi2yOcNeDLaX/0jcE1JoAXQDDMIthap7FoN795lc/SHfIq2d416VufXpM8z/lD+WRm2gfOQ==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/typescript": {
+ "version": "5.9.3",
+ "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz",
+ "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==",
+ "devOptional": true,
+ "license": "Apache-2.0",
+ "bin": {
+ "tsc": "bin/tsc",
+ "tsserver": "bin/tsserver"
+ },
+ "engines": {
+ "node": ">=14.17"
+ }
+ },
+ "node_modules/undici-types": {
+ "version": "6.21.0",
+ "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.21.0.tgz",
+ "integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/url": {
+ "version": "0.11.4",
+ "resolved": "https://registry.npmjs.org/url/-/url-0.11.4.tgz",
+ "integrity": "sha512-oCwdVC7mTuWiPyjLUz/COz5TLk6wgp0RCsN+wHZ2Ekneac9w8uuV0njcbbie2ME+Vs+d6duwmYuR3HgQXs1fOg==",
+ "license": "MIT",
+ "dependencies": {
+ "punycode": "^1.4.1",
+ "qs": "^6.12.3"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/vite": {
+ "version": "6.4.3",
+ "resolved": "https://registry.npmjs.org/vite/-/vite-6.4.3.tgz",
+ "integrity": "sha512-NTKlcQjlAK7MlQoyb6LgaqHc8sso/pVyUJYWMws3jg21uTJw/LddqIFPcPqP6PzpgbIcZyKI85sFE4HBrQDA8A==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "esbuild": "^0.25.0",
+ "fdir": "^6.4.4",
+ "picomatch": "^4.0.2",
+ "postcss": "^8.5.3",
+ "rollup": "^4.34.9",
+ "tinyglobby": "^0.2.13"
+ },
+ "bin": {
+ "vite": "bin/vite.js"
+ },
+ "engines": {
+ "node": "^18.0.0 || ^20.0.0 || >=22.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 || >=22.0.0",
+ "jiti": ">=1.21.0",
+ "less": "*",
+ "lightningcss": "^1.21.0",
+ "sass": "*",
+ "sass-embedded": "*",
+ "stylus": "*",
+ "sugarss": "*",
+ "terser": "^5.16.0",
+ "tsx": "^4.8.1",
+ "yaml": "^2.4.2"
+ },
+ "peerDependenciesMeta": {
+ "@types/node": {
+ "optional": true
+ },
+ "jiti": {
+ "optional": true
+ },
+ "less": {
+ "optional": true
+ },
+ "lightningcss": {
+ "optional": true
+ },
+ "sass": {
+ "optional": true
+ },
+ "sass-embedded": {
+ "optional": true
+ },
+ "stylus": {
+ "optional": true
+ },
+ "sugarss": {
+ "optional": true
+ },
+ "terser": {
+ "optional": true
+ },
+ "tsx": {
+ "optional": true
+ },
+ "yaml": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/vscode-uri": {
+ "version": "3.2.0",
+ "resolved": "https://registry.npmjs.org/vscode-uri/-/vscode-uri-3.2.0.tgz",
+ "integrity": "sha512-m2gXo3bn0G1kT9InzMf07fTbqMbGtyckj3bH5ktLO+1Ssv+yiATZ4dhwaQv9UZWxJh6E9IFGnQyjgWVDWVBDrg==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/vue": {
+ "version": "3.5.41",
+ "resolved": "https://registry.npmjs.org/vue/-/vue-3.5.41.tgz",
+ "integrity": "sha512-2laE0p+aK+/AOPG/XL/WepOs/GlK755LJ1XECi9kDUrz1FKNw8rb2Xzlw9JS1rqEV55nb0ttsKxVlTCcd+R5cg==",
+ "license": "MIT",
+ "dependencies": {
+ "@vue/compiler-dom": "3.5.41",
+ "@vue/compiler-sfc": "3.5.41",
+ "@vue/runtime-dom": "3.5.41",
+ "@vue/server-renderer": "3.5.41",
+ "@vue/shared": "3.5.41"
+ },
+ "peerDependencies": {
+ "typescript": "*"
+ },
+ "peerDependenciesMeta": {
+ "typescript": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/vue-tsc": {
+ "version": "2.2.12",
+ "resolved": "https://registry.npmjs.org/vue-tsc/-/vue-tsc-2.2.12.tgz",
+ "integrity": "sha512-P7OP77b2h/Pmk+lZdJ0YWs+5tJ6J2+uOQPo7tlBnY44QqQSPYvS0qVT4wqDJgwrZaLe47etJLLQRFia71GYITw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@volar/typescript": "2.4.15",
+ "@vue/language-core": "2.2.12"
+ },
+ "bin": {
+ "vue-tsc": "bin/vue-tsc.js"
+ },
+ "peerDependencies": {
+ "typescript": ">=5.0.0"
+ }
+ },
+ "node_modules/webdriver-bidi-protocol": {
+ "version": "0.4.2",
+ "resolved": "https://registry.npmjs.org/webdriver-bidi-protocol/-/webdriver-bidi-protocol-0.4.2.tgz",
+ "integrity": "sha512-VSV+fzfChirL3e7jay2yUC7B4HQCGtEWEg/MSSQbK+qWbqeGlRLlXTzPpYr3XGUvbpDHumWZBJxgesg4N7dbtA==",
+ "dev": true,
+ "license": "Apache-2.0"
+ },
+ "node_modules/wrap-ansi": {
+ "version": "9.0.2",
+ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-9.0.2.tgz",
+ "integrity": "sha512-42AtmgqjV+X1VpdOfyTGOYRi0/zsoLqtXQckTmqTeybT+BDIbM/Guxo7x3pE2vtpr1ok6xRqM9OpBe+Jyoqyww==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "ansi-styles": "^6.2.1",
+ "string-width": "^7.0.0",
+ "strip-ansi": "^7.1.0"
+ },
+ "engines": {
+ "node": ">=18"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
+ }
+ },
+ "node_modules/wrap-ansi/node_modules/string-width": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-7.2.0.tgz",
+ "integrity": "sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "emoji-regex": "^10.3.0",
+ "get-east-asian-width": "^1.0.0",
+ "strip-ansi": "^7.1.0"
+ },
+ "engines": {
+ "node": ">=18"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/ws": {
+ "version": "8.21.3",
+ "resolved": "https://registry.npmjs.org/ws/-/ws-8.21.3.tgz",
+ "integrity": "sha512-201TZ/kPWxoPr/OKWjquZR1SWKXcvxdH+e1xrx89b3YbmzLMFCLfnaG1HFIgWzJOEWZ7MvpK++odZufgYR50Rw==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=10.0.0"
+ },
+ "peerDependencies": {
+ "bufferutil": "^4.0.1",
+ "utf-8-validate": ">=5.0.2"
+ },
+ "peerDependenciesMeta": {
+ "bufferutil": {
+ "optional": true
+ },
+ "utf-8-validate": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/y18n": {
+ "version": "5.0.8",
+ "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz",
+ "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==",
+ "dev": true,
+ "license": "ISC",
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/yargs": {
+ "version": "18.1.0",
+ "resolved": "https://registry.npmjs.org/yargs/-/yargs-18.1.0.tgz",
+ "integrity": "sha512-2rAgRKu54VsHkqI0/tYkmluGXHD4KW7yZoycuqDQ15QOTnc2VVfy0nN/1eMhnQLO00A+dwtK20xuCnc1YGeUyg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "cliui": "^9.0.1",
+ "escalade": "^3.1.1",
+ "get-caller-file": "^2.0.5",
+ "string-width": "^8.2.1",
+ "y18n": "^5.0.5",
+ "yargs-parser": "^22.0.0"
+ },
+ "engines": {
+ "node": "^20.19.0 || ^22.12.0 || >=23"
+ }
+ },
+ "node_modules/yargs-parser": {
+ "version": "22.0.0",
+ "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-22.0.0.tgz",
+ "integrity": "sha512-rwu/ClNdSMpkSrUb+d6BRsSkLUq1fmfsY6TOpYzTwvwkg1/NRG85KBy3kq++A8LKQwX6lsu+aWad+2khvuXrqw==",
+ "dev": true,
+ "license": "ISC",
+ "engines": {
+ "node": "^20.19.0 || ^22.12.0 || >=23"
+ }
+ },
+ "node_modules/zod": {
+ "version": "3.25.76",
+ "resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz",
+ "integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==",
+ "dev": true,
+ "license": "MIT",
+ "funding": {
+ "url": "https://github.com/sponsors/colinhacks"
+ }
+ }
+ }
+}
diff --git a/package.json b/package.json
new file mode 100644
index 0000000..71d4125
--- /dev/null
+++ b/package.json
@@ -0,0 +1,24 @@
+{
+ "name": "spine-particle",
+ "private": true,
+ "version": "0.1.0",
+ "type": "module",
+ "scripts": {
+ "dev": "vite",
+ "build": "vue-tsc -b && vite build",
+ "preview": "vite preview"
+ },
+ "dependencies": {
+ "pinia": "^4.0.3",
+ "pixi.js": "^7.4.3",
+ "vue": "^3.5.13"
+ },
+ "devDependencies": {
+ "@types/node": "^20.19.43",
+ "@vitejs/plugin-vue": "^5.2.1",
+ "puppeteer-core": "^25.9.0",
+ "typescript": "^5.7.2",
+ "vite": "^6.0.5",
+ "vue-tsc": "^2.2.0"
+ }
+}
diff --git a/public/particles/dot.png b/public/particles/dot.png
new file mode 100644
index 0000000..3834067
Binary files /dev/null and b/public/particles/dot.png differ
diff --git a/public/particles/spark.png b/public/particles/spark.png
new file mode 100644
index 0000000..64bc486
Binary files /dev/null and b/public/particles/spark.png differ
diff --git a/public/particles/star.png b/public/particles/star.png
new file mode 100644
index 0000000..a065729
Binary files /dev/null and b/public/particles/star.png differ
diff --git a/public/spine/sample.json b/public/spine/sample.json
new file mode 100644
index 0000000..7cf36ad
--- /dev/null
+++ b/public/spine/sample.json
@@ -0,0 +1,8980 @@
+{
+"skeleton": {
+ "hash": "UZcVEz4xVqM",
+ "spine": "4.2.43",
+ "x": -375,
+ "y": -1119.02,
+ "width": 750,
+ "height": 2034,
+ "images": "./images/",
+ "audio": "./audio"
+},
+"bones": [
+ { "name": "root" },
+ { "name": "symbols", "parent": "root", "scaleX": 0.5, "scaleY": 0.5 },
+ {
+ "name": "item_1",
+ "parent": "symbols",
+ "length": 97.39,
+ "rotation": 68.76,
+ "x": -116.36,
+ "y": -74.93,
+ "color": "ff0000ff"
+ },
+ { "name": "flag2", "parent": "item_1", "rotation": -68.76, "x": 112, "y": -81.31 },
+ { "name": "item_11", "parent": "flag2", "length": 73.85, "rotation": 70.24, "x": -34.66, "y": -12.3 },
+ { "name": "item_13", "parent": "flag2", "length": 76.88, "rotation": 72.17, "x": 11.86, "y": -36.98 },
+ { "name": "item_14", "parent": "flag2", "length": 73.11, "rotation": 71.21, "x": 55.55, "y": -57.97 },
+ { "name": "item_15", "parent": "flag2", "length": 71.05, "rotation": 71.13, "x": 100.65, "y": -59.39 },
+ { "name": "vague", "parent": "symbols" },
+ { "name": "item_2", "parent": "symbols" },
+ { "name": "item_3", "parent": "symbols", "scaleX": 0.9, "scaleY": 0.9 },
+ { "name": "item_4", "parent": "symbols", "scaleX": 0.9, "scaleY": 0.9 },
+ { "name": "item_5", "parent": "symbols", "y": 16, "scaleX": 0.9, "scaleY": 0.9 },
+ { "name": "item_6", "parent": "symbols", "scaleX": 0.9, "scaleY": 0.9 },
+ { "name": "item_7", "parent": "symbols", "scaleX": 0.9, "scaleY": 0.9 },
+ { "name": "item_8", "parent": "item_2", "length": 79.04, "rotation": 38.66, "x": -109.29, "y": -81.98 },
+ { "name": "item_9", "parent": "item_8", "length": 114.09, "rotation": -1.17, "x": 79.04 },
+ { "name": "item_10", "parent": "item_9", "length": 105.75, "rotation": -0.4, "x": 114.9, "y": -0.63 },
+ { "name": "item_12", "parent": "item_3", "x": -0.31, "y": -128.82 },
+ { "name": "item_16", "parent": "item_12", "x": -75.85, "y": 175.7 },
+ { "name": "item_17", "parent": "item_12", "x": -120.74, "y": 73.63 },
+ { "name": "item_18", "parent": "item_5", "length": 174.39, "rotation": 35.44, "x": -87.2, "y": -55.6 },
+ { "name": "item_19", "parent": "item_18", "length": 73.87, "rotation": 0.54, "x": 190.57, "y": 1.55 },
+ { "name": "item_20", "parent": "item_19", "length": 17.2, "rotation": 2.25, "x": 103.1, "y": 0.54 },
+ { "name": "item_21", "parent": "item_18", "rotation": 0.54, "x": 233.82, "y": 44.01 },
+ { "name": "item_22", "parent": "item_18", "rotation": 0.54, "x": 232.3, "y": 62.43 },
+ { "name": "item_23", "parent": "item_18", "rotation": 0.54, "x": 258.11, "y": 61.39 },
+ { "name": "item_24", "parent": "item_18", "rotation": 0.54, "x": 278.17, "y": 42.78 },
+ { "name": "item_25", "parent": "item_19", "x": 62, "y": 33.91 },
+ { "name": "item_26", "parent": "item_18", "rotation": 0.54, "x": 263.63, "y": 25.78 },
+ { "name": "item_27", "parent": "item_18", "rotation": 0.54, "x": 268.79, "y": -19.87 },
+ { "name": "item_28", "parent": "item_18", "rotation": 0.54, "x": 298.51, "y": -31.01 },
+ { "name": "item_29", "parent": "item_18", "rotation": 0.54, "x": 249.78, "y": -52.66 },
+ { "name": "item_30", "parent": "item_19", "length": 10.34, "rotation": -75.79, "x": 76.36, "y": -46.59 },
+ { "name": "item_31", "parent": "item_18", "rotation": -75.25, "x": 234.4, "y": -41.17 },
+ { "name": "item_32", "parent": "item_19", "length": 13.42, "rotation": -80.98, "x": 48.8, "y": -22.21 },
+ { "name": "item_33", "parent": "item_18", "rotation": -80.44, "x": 224.58, "y": -58.01 },
+ { "name": "item_34", "parent": "item_18", "rotation": -80.44, "x": 216.64, "y": -39.09 },
+ { "name": "item_35", "parent": "item_18", "rotation": -80.44, "x": 204.12, "y": -52.12 },
+ { "name": "item_44", "parent": "item_6", "length": 80, "rotation": 90, "y": -132.16 },
+ { "name": "item_36", "parent": "item_44", "length": 44.45, "rotation": -68.51, "x": 66.33, "y": -50.94 },
+ { "name": "item_37", "parent": "item_36", "length": 37.7, "rotation": 20.73, "x": 46.51, "y": 0.3 },
+ { "name": "item_38", "parent": "item_37", "length": 35.91, "rotation": 17.52, "x": 38.25, "y": -0.16 },
+ { "name": "item_39", "parent": "item_38", "length": 52.32, "rotation": 19.72, "x": 38.75, "y": -0.59 },
+ { "name": "item_40", "parent": "item_44", "length": 48.01, "rotation": 69.66, "x": 65.43, "y": 47.61 },
+ { "name": "item_41", "parent": "item_40", "length": 38.21, "rotation": -20.09, "x": 48.16, "y": 0.33 },
+ { "name": "item_42", "parent": "item_41", "length": 37.65, "rotation": -18.86, "x": 38.18, "y": -0.36 },
+ { "name": "item_43", "parent": "item_42", "length": 51.34, "rotation": -16.73, "x": 37.65 },
+ { "name": "item_45", "parent": "item_44", "length": 177.62, "x": 84.91, "y": 0.26 },
+ { "name": "star2", "parent": "item_45", "rotation": -148.67, "x": 167.23, "y": 46.53 },
+ { "name": "huo_1", "parent": "item_7" },
+ { "name": "huo_2", "parent": "huo_1", "length": 40.07, "rotation": 139.95, "x": -187.68, "y": 0.84 },
+ { "name": "huo_3", "parent": "huo_2", "length": 28.54, "rotation": -54.42, "x": 40.07 },
+ { "name": "huo_4", "parent": "huo_3", "length": 21.35, "rotation": 6.85, "x": 29.05, "y": -0.85 },
+ { "name": "huo_5", "parent": "huo_4", "length": 27.67, "rotation": 43.92, "x": 22.72, "y": 0.83 },
+ { "name": "huo_6", "parent": "huo_1", "length": 35.65, "rotation": 146.31, "x": -136.49, "y": 93.39 },
+ { "name": "huo_7", "parent": "huo_6", "length": 24.83, "rotation": -1.58, "x": 35.65 },
+ { "name": "huo_8", "parent": "huo_7", "length": 22.94, "rotation": -17.61, "x": 24.83 },
+ { "name": "huo_9", "parent": "huo_8", "length": 31.27, "rotation": 34.45, "x": 22.94 },
+ { "name": "huo_10", "parent": "huo_1", "length": 27.35, "rotation": 139.4, "x": -51.36, "y": 113.18 },
+ { "name": "huo_11", "parent": "huo_10", "length": 19.61, "rotation": 6.91, "x": 28.74, "y": -0.11 },
+ { "name": "huo_12", "parent": "huo_11", "length": 26.36, "rotation": 10.49, "x": 20.02, "y": 0.27 },
+ { "name": "huo_13", "parent": "huo_1", "length": 30.79, "rotation": 132.4, "x": 77.84, "y": 109.95 },
+ { "name": "huo_14", "parent": "huo_13", "length": 27.97, "rotation": 39.47, "x": 30.79 },
+ { "name": "huo_15", "parent": "huo_14", "length": 19.28, "rotation": -14.49, "x": 27.97 },
+ { "name": "huo_16", "parent": "huo_15", "length": 20.7, "rotation": -17.54, "x": 19.28 },
+ { "name": "huo_17", "parent": "huo_1", "length": 19.26, "rotation": 119.2, "x": 122.04, "y": 110.39 },
+ { "name": "huo_18", "parent": "huo_17", "length": 25.37, "rotation": 27.73, "x": 19.26 },
+ { "name": "huo_19", "parent": "huo_18", "length": 23.24, "rotation": 3.78, "x": 25.37 },
+ { "name": "huo_20", "parent": "huo_1", "length": 20.39, "rotation": 47.56, "x": 178.64, "y": 35.84 },
+ { "name": "huo_21", "parent": "huo_20", "length": 18.08, "rotation": 45.16, "x": 20.71, "y": 0.29 },
+ { "name": "huo_22", "parent": "huo_21", "length": 23.11, "rotation": 42.27, "x": 18.63, "y": 2.56 },
+ { "name": "huo_23", "parent": "huo_1", "length": 27.28, "rotation": -4.67, "x": 178.25, "y": -85.11 },
+ { "name": "huo_24", "parent": "huo_23", "length": 17.97, "rotation": -4.21, "x": 27.28 },
+ { "name": "huo_25", "parent": "huo_24", "length": 20.8, "rotation": 52.8, "x": 19.07, "y": 0.17 },
+ { "name": "huo_26", "parent": "huo_1", "length": 14.87, "rotation": -55.01, "x": -37.47, "y": -110.59 },
+ { "name": "huo_27", "parent": "huo_26", "length": 26.77, "rotation": 13.7, "x": 15.37, "y": -0.35 },
+ { "name": "wild", "parent": "item_7", "length": 44.61, "rotation": 93.24, "x": -22.19, "y": -89.49 },
+ { "name": "mtc", "parent": "item_7" },
+ { "name": "mtc2", "parent": "mtc", "x": -2.25, "y": -101.9 },
+ { "name": "item_46", "parent": "item_4", "x": -69.31, "y": 21.37 },
+ {
+ "name": "mtc3",
+ "parent": "mtc2",
+ "x": 130.49,
+ "y": 52.69,
+ "scaleX": 1.1397,
+ "scaleY": 1.1397,
+ "shearX": -7.07,
+ "shearY": -5.94
+ },
+ {
+ "name": "mtc4",
+ "parent": "mtc2",
+ "rotation": -29.5,
+ "x": -157.88,
+ "y": 67.44,
+ "scaleX": 0.9029,
+ "scaleY": 1.0047,
+ "shearX": -7.07,
+ "shearY": -5.94
+ }
+],
+"slots": [
+ { "name": "bg1", "bone": "root", "attachment": "bg1" },
+ { "name": "item_41", "bone": "item_4" },
+ { "name": "item_43", "bone": "item_4" },
+ { "name": "item_44", "bone": "item_4" },
+ { "name": "item_42", "bone": "item_46" },
+ { "name": "item_45", "bone": "item_46" },
+ { "name": "item_46", "bone": "item_46" },
+ { "name": "item_3", "bone": "item_3" },
+ { "name": "item_9", "bone": "item_3" },
+ { "name": "item_10", "bone": "item_3" },
+ { "name": "item_2", "bone": "item_2" },
+ { "name": "item_8", "bone": "item_2" },
+ { "name": "item_7", "bone": "item_2" },
+ { "name": "item_1", "bone": "flag2" },
+ { "name": "item_5", "bone": "flag2" },
+ { "name": "item_4", "bone": "flag2" },
+ { "name": "item_6_vague", "bone": "vague", "attachment": "item_6_vague", "visible": false },
+ { "name": "item_5_vague", "bone": "vague", "attachment": "item_5_vague", "visible": false },
+ { "name": "item_4_vague", "bone": "vague", "attachment": "item_4_vague", "visible": false },
+ { "name": "item_3_vague", "bone": "vague", "attachment": "item_3_vague", "visible": false },
+ { "name": "item_2_vague", "bone": "vague", "attachment": "item_2_vague", "visible": false },
+ { "name": "item_1_vague", "bone": "vague", "attachment": "item_1_vague", "visible": false },
+ { "name": "item_7_vague", "bone": "vague", "attachment": "item_7_vague", "visible": false },
+ { "name": "jiuhua8", "bone": "item_26" },
+ { "name": "item6_1", "bone": "item_6" },
+ { "name": "item6_3", "bone": "item_6" },
+ { "name": "item6_4", "bone": "item_6" },
+ { "name": "item6_2", "bone": "item_6" },
+ { "name": "item6_5", "bone": "item_6" },
+ { "name": "item6_7", "bone": "item_6" },
+ { "name": "item6_6", "bone": "item_6" },
+ { "name": "item6_8", "bone": "item_6" },
+ { "name": "item6_9", "bone": "item_6" },
+ { "name": "star2", "bone": "star2" },
+ { "name": "pj1", "bone": "item_23" },
+ { "name": "pj2", "bone": "item_23" },
+ { "name": "pj21", "bone": "item_23" },
+ { "name": "pj4", "bone": "item_21" },
+ { "name": "pj17", "bone": "item_21" },
+ { "name": "pj18", "bone": "item_21" },
+ { "name": "pj5", "bone": "item_22" },
+ { "name": "pj19", "bone": "item_22" },
+ { "name": "pj20", "bone": "item_22" },
+ { "name": "pj6", "bone": "item_26" },
+ { "name": "pj24", "bone": "item_26" },
+ { "name": "pj25", "bone": "item_26" },
+ { "name": "pj7", "bone": "item_24" },
+ { "name": "pj22", "bone": "item_24" },
+ { "name": "pj23", "bone": "item_24" },
+ { "name": "pj8", "bone": "item_28" },
+ { "name": "pj28", "bone": "item_28" },
+ { "name": "pj29", "bone": "item_28" },
+ { "name": "pj9", "bone": "item_27" },
+ { "name": "pj26", "bone": "item_27" },
+ { "name": "pj27", "bone": "item_27" },
+ { "name": "pj10", "bone": "item_29" },
+ { "name": "pj30", "bone": "item_29" },
+ { "name": "pj31", "bone": "item_29" },
+ { "name": "pj11", "bone": "item_31" },
+ { "name": "pj32", "bone": "item_31" },
+ { "name": "pj33", "bone": "item_31" },
+ { "name": "pj12", "bone": "item_34" },
+ { "name": "pj36", "bone": "item_34" },
+ { "name": "pj37", "bone": "item_34" },
+ { "name": "pj13", "bone": "item_35" },
+ { "name": "pj38", "bone": "item_35" },
+ { "name": "pj39", "bone": "item_35" },
+ { "name": "pj14", "bone": "item_33" },
+ { "name": "pj34", "bone": "item_33" },
+ { "name": "pj35", "bone": "item_33" },
+ { "name": "jiuhua", "bone": "item_5" },
+ { "name": "jiuhua2", "bone": "item_5" },
+ { "name": "jiuhua3", "bone": "item_5" },
+ { "name": "pj3", "bone": "item_18" },
+ { "name": "pj15", "bone": "item_18" },
+ { "name": "pj16", "bone": "item_18" },
+ { "name": "huobeijing", "bone": "huo_1" },
+ { "name": "huobeijing2", "bone": "huo_1" },
+ { "name": "huobeijing3", "bone": "huo_1" },
+ { "name": "che", "bone": "mtc2" },
+ { "name": "che2", "bone": "mtc2" },
+ { "name": "che3", "bone": "mtc2" },
+ { "name": "circle", "bone": "mtc3" },
+ { "name": "circle2", "bone": "mtc4" },
+ { "name": "hy_01", "bone": "mtc2" },
+ { "name": "pqg", "bone": "mtc2" },
+ { "name": "chedeng", "bone": "mtc2" },
+ { "name": "wenzi", "bone": "wild" },
+ { "name": "wenzi2", "bone": "wild" },
+ { "name": "wenzi3", "bone": "wild" }
+],
+"skins": [
+ {
+ "name": "default",
+ "attachments": {
+ "bg1": {
+ "bg1": { "y": -102.02, "width": 750, "height": 2034 }
+ },
+ "che": {
+ "che": { "x": 2.81, "y": 111.41, "width": 414, "height": 295 }
+ },
+ "che2": {
+ "item7_3": { "x": 2.81, "y": 111.41, "width": 468, "height": 348 }
+ },
+ "che3": {
+ "item7_4": { "x": 2.81, "y": 111.41, "width": 414, "height": 295 }
+ },
+ "chedeng": {
+ "chedeng": { "x": 143.81, "y": 149.91, "width": 120, "height": 80 }
+ },
+ "circle": {
+ "circle02": { "width": 152, "height": 147 }
+ },
+ "circle2": {
+ "circle02": { "width": 152, "height": 147 }
+ },
+ "huobeijing": {
+ "huobeijing": {
+ "type": "mesh",
+ "uvs": [ 0, 0.02445, 0, 0.04478, 0.02405, 0.07371, 0.04372, 0.07461, 0.06725, 0.07778, 0.07857, 0.0945, 0.06487, 0.11393, 0.06666, 0.1424, 0.08215, 0.16681, 0.10181, 0.19347, 0.11849, 0.20613, 0.11671, 0.22059, 0.10092, 0.2337, 0.08215, 0.21517, 0.06278, 0.20297, 0.04133, 0.19619, 0.01154, 0.18534, 0.01184, 0.21698, 0.02912, 0.24545, 0.03537, 0.27347, 0.02354, 0.32134, 0.00715, 0.36156, 0, 0.41083, 0, 0.47771, 0.01526, 0.50991, 0.03075, 0.54154, 0.03164, 0.59922, 0.03433, 0.65119, 0.04326, 0.70226, 0.05802, 0.74826, 0.07243, 0.7863, 0.09059, 0.82609, 0.1148, 0.86282, 0.1442, 0.89211, 0.18216, 0.92394, 0.2228, 0.94011, 0.28765, 0.93355, 0.31935, 0.89464, 0.35759, 0.88216, 0.39736, 0.89877, 0.43166, 0.92632, 0.47022, 0.95124, 0.51287, 0.94337, 0.55178, 0.93812, 0.58089, 0.95168, 0.62182, 0.97835, 0.67152, 0.99617, 0.71245, 1, 0.75914, 0.99749, 0.80785, 0.97737, 0.8708, 0.90064, 0.9002, 0.84336, 0.95179, 0.81144, 0.98858, 0.78785, 1, 0.74063, 0.98339, 0.69953, 0.97734, 0.66017, 0.98318, 0.61114, 0.97885, 0.55124, 0.95666, 0.52282, 0.95435, 0.45855, 0.92207, 0.41438, 0.92438, 0.36806, 0.92207, 0.32915, 0.9042, 0.2828, 0.87999, 0.25309, 0.85661, 0.228, 0.83684, 0.22091, 0.84439, 0.24927, 0.86273, 0.27164, 0.87243, 0.29509, 0.86668, 0.32018, 0.84727, 0.324, 0.82246, 0.312, 0.81347, 0.29618, 0.82605, 0.26018, 0.82749, 0.22746, 0.82749, 0.19091, 0.8167, 0.14891, 0.79089, 0.11499, 0.75925, 0.08117, 0.72725, 0.06753, 0.69453, 0.04463, 0.66433, 0.03099, 0.63017, 0.00863, 0.6366, 0.03441, 0.6517, 0.05841, 0.66568, 0.07349, 0.67728, 0.08715, 0.66724, 0.09017, 0.65217, 0.07704, 0.6346, 0.05878, 0.62176, 0.04349, 0.60116, 0.03496, 0.58096, 0.03344, 0.55669, 0.04182, 0.54563, 0.04729, 0.53386, 0.02907, 0.51343, 0.00974, 0.48772, 0.00428, 0.46369, 0, 0.47475, 0.02469, 0.49229, 0.04693, 0.51223, 0.06916, 0.52881, 0.08885, 0.54515, 0.10598, 0.56149, 0.11656, 0.54467, 0.12567, 0.51824, 0.1202, 0.49709, 0.09906, 0.47687, 0.07945, 0.45645, 0.06086, 0.43746, 0.0379, 0.41584, 0.02113, 0.38297, 0.01626, 0.36783, 0.03595, 0.33995, 0.03777, 0.31193, 0.01789, 0.28934, 0.01388, 0.26892, 0.02154, 0.23864, 0.03247, 0.2581, 0.05835, 0.27098, 0.07738, 0.29531, 0.07835, 0.29531, 0.09972, 0.28027, 0.11331, 0.25754, 0.09292, 0.24474, 0.07204, 0.2265, 0.04776, 0.19321, 0.03757, 0.19545, 0.06087, 0.20921, 0.07835, 0.19257, 0.08661, 0.17657, 0.08564, 0.1596, 0.05165, 0.13419, 0.0284, 0.09771, 0.01529, 0.06026, 0.00947, 0.01993, 0.00995, 0.7129, 0.14698, 0.75563, 0.23218, 0.74891, 0.12197, 0.78127, 0.18494, 0.70191, 0.084, 0.88739, 0.38204, 0.90021, 0.32647, 0.88373, 0.28109, 0.94656, 0.72262, 0.89937, 0.75528, 0.94987, 0.78291, 0.8416, 0.6145, 0.65972, 0.35698, 0.43055, 0.31835, 0.2608, 0.33491, 0.12985, 0.53724, 0.2123, 0.76901, 0.45844, 0.77637, 0.26444, 0.57587, 0.44147, 0.56116, 0.61728, 0.56116, 0.69488, 0.82603, 0.45521, 0.11696, 0.37831, 0.12992, 0.32315, 0.12638, 0.34645, 0.08042, 0.41715, 0.0816, 0.16079, 0.15349, 0.2478, 0.14642, 0.20662, 0.2077, 0.14914, 0.29255, 0.06757, 0.3173, 0.07679, 0.42906 ],
+ "triangles": [ 158, 157, 152, 156, 159, 160, 150, 159, 151, 156, 158, 159, 151, 159, 152, 152, 159, 158, 34, 33, 155, 33, 32, 155, 32, 31, 155, 31, 30, 155, 30, 29, 155, 29, 154, 155, 155, 154, 157, 29, 28, 154, 28, 27, 154, 27, 26, 154, 26, 25, 154, 154, 153, 157, 154, 25, 171, 25, 24, 171, 154, 171, 169, 154, 169, 153, 24, 23, 171, 171, 23, 22, 21, 171, 22, 21, 20, 170, 12, 169, 170, 169, 12, 11, 171, 21, 170, 169, 171, 170, 170, 13, 12, 11, 10, 169, 20, 19, 170, 170, 19, 13, 13, 19, 14, 14, 18, 15, 14, 19, 18, 18, 17, 15, 17, 16, 15, 5, 4, 136, 3, 137, 4, 4, 137, 136, 137, 3, 138, 1, 138, 2, 3, 2, 138, 1, 0, 138, 7, 5, 8, 166, 5, 134, 134, 5, 135, 135, 5, 136, 8, 5, 166, 7, 6, 5, 10, 9, 166, 9, 8, 166, 166, 134, 133, 125, 163, 167, 153, 152, 157, 169, 168, 153, 168, 167, 153, 163, 153, 167, 168, 10, 166, 168, 169, 10, 166, 132, 168, 167, 132, 131, 167, 168, 132, 166, 133, 132, 131, 127, 167, 167, 126, 125, 167, 127, 126, 131, 128, 127, 131, 130, 128, 130, 129, 128, 123, 119, 118, 123, 117, 116, 123, 118, 117, 121, 119, 122, 123, 122, 119, 121, 120, 119, 164, 163, 123, 123, 116, 164, 164, 116, 115, 125, 124, 163, 163, 152, 153, 152, 163, 162, 151, 152, 107, 152, 108, 107, 152, 161, 108, 161, 109, 108, 161, 110, 109, 152, 162, 161, 161, 162, 165, 163, 164, 162, 164, 115, 162, 113, 165, 114, 114, 165, 115, 115, 165, 162, 161, 111, 110, 161, 165, 111, 163, 124, 123, 165, 112, 111, 165, 113, 112, 103, 98, 97, 103, 102, 98, 101, 99, 102, 102, 99, 98, 101, 100, 99, 106, 105, 95, 105, 96, 95, 105, 104, 96, 104, 103, 96, 103, 97, 96, 107, 106, 151, 106, 92, 91, 106, 93, 92, 106, 94, 93, 106, 95, 94, 151, 89, 139, 89, 88, 139, 151, 106, 89, 106, 91, 90, 89, 106, 90, 88, 87, 82, 86, 83, 87, 87, 83, 82, 86, 85, 83, 85, 84, 83, 88, 143, 139, 141, 143, 81, 143, 88, 82, 143, 82, 81, 151, 140, 74, 151, 139, 140, 74, 140, 75, 75, 140, 76, 76, 140, 142, 139, 141, 140, 140, 141, 142, 142, 77, 76, 142, 78, 77, 142, 79, 78, 142, 141, 79, 141, 139, 143, 141, 80, 79, 141, 81, 80, 70, 146, 145, 70, 69, 146, 69, 65, 146, 64, 146, 65, 68, 66, 69, 69, 66, 65, 68, 67, 66, 62, 145, 63, 145, 64, 63, 71, 70, 145, 145, 146, 64, 151, 73, 150, 151, 74, 73, 150, 61, 59, 59, 61, 60, 150, 144, 61, 57, 59, 58, 144, 73, 72, 72, 71, 144, 144, 150, 73, 61, 144, 62, 62, 144, 145, 144, 71, 145, 52, 149, 53, 53, 149, 54, 54, 147, 55, 51, 149, 52, 148, 147, 149, 54, 149, 147, 147, 56, 55, 147, 59, 56, 57, 56, 59, 48, 47, 160, 49, 48, 160, 46, 160, 47, 46, 45, 160, 49, 160, 50, 51, 50, 148, 50, 160, 148, 51, 148, 149, 160, 159, 150, 160, 150, 148, 148, 150, 59, 147, 148, 59, 36, 35, 155, 37, 36, 155, 40, 39, 156, 155, 35, 34, 39, 38, 156, 37, 155, 38, 38, 155, 157, 156, 38, 157, 156, 157, 158, 45, 44, 160, 44, 43, 160, 42, 41, 156, 43, 42, 156, 156, 41, 40, 43, 156, 160 ],
+ "vertices": [ 1, 58, 44.54, 6.08, 1, 1, 58, 42.46, 12.31, 1, 1, 58, 28.33, 17.45, 1, 2, 57, 30.38, 22.9, 0.01499, 58, 19.09, 14.68, 0.98501, 4, 56, 50.71, 6.81, 0.00226, 57, 22.61, 14.33, 0.29836, 58, 7.83, 12, 0.69938, 53, 81.14, -7.13, 0, 4, 56, 43.06, 8.02, 0.05518, 57, 14.95, 13.16, 0.75463, 58, 0.86, 15.37, 0.18877, 53, 75.51, -12.45, 0.00142, 4, 56, 44.92, 17.02, 0.18493, 57, 14, 22.3, 0.78229, 58, 5.24, 23.45, 0.02732, 53, 69.52, -5.48, 0.00546, 4, 56, 38.89, 24.03, 0.28255, 57, 6.14, 27.16, 0.69855, 58, 1.51, 31.9, 0.00651, 53, 60.3, -5.97, 0.01239, 5, 55, 64.5, 25.29, 0.00893, 56, 28.14, 26.08, 0.46383, 57, -4.73, 25.86, 0.48822, 53, 52.1, -13.23, 0.0389, 51, 81.67, -71.5, 1.1E-4, 6, 55, 51.71, 27.11, 0.07312, 56, 15.3, 27.55, 0.62908, 57, -17.41, 23.37, 0.1804, 54, -1.51, -30.94, 0, 53, 43.1, -22.5, 0.11508, 51, 68.75, -71.11, 0.00232, 6, 55, 42.64, 25.98, 0.22226, 56, 6.27, 26.16, 0.46594, 57, -25.6, 19.32, 0.036, 54, -10.24, -33.63, 0.00228, 53, 38.67, -30.49, 0.26248, 51, 59.87, -73.24, 0.01104, 6, 55, 40.78, 30.35, 0.25704, 56, 4.29, 30.48, 0.28536, 57, -28.8, 22.84, 0.00944, 54, -12.83, -29.65, 0.01137, 53, 34.04, -29.42, 0.41712, 51, 57.53, -69.1, 0.01966, 6, 55, 44.87, 38.17, 0.15713, 56, 8.16, 38.41, 0.11651, 57, -27.51, 31.56, 6.6E-4, 54, -10.16, -21.24, 0.09667, 53, 30.13, -21.52, 0.60958, 51, 60.73, -60.88, 0.01945, 5, 55, 55.84, 38.29, 0.05562, 56, 19.12, 38.83, 0.04191, 54, 0.62, -19.21, 0.5789, 53, 36.5, -12.58, 0.31918, 51, 71.62, -59.54, 0.00439, 5, 55, 65.92, 40.27, 0.01496, 56, 29.15, 41.09, 0.01306, 54, 10.2, -15.51, 0.96892, 53, 40.83, -3.26, 0.00294, 51, 81.42, -56.46, 1.2E-4, 3, 55, 75.88, 44.28, 0.00114, 56, 38.99, 45.37, 0.00149, 54, 19.31, -9.83, 0.99737, 2, 55, 89.97, 49.46, 1.0E-5, 54, 32.29, -2.28, 0.99999, 1, 54, 25.12, 5.01, 1, 2, 54, 12.65, 5.81, 0.98395, 52, 55.01, 16.16, 0.01605, 3, 54, 4.18, 10.23, 0.86309, 53, 18.64, 11.1, 0.00272, 52, 46.23, 12.4, 0.13419, 3, 54, -2.31, 25.42, 0.16289, 53, 3.43, 17.54, 0.04333, 52, 30.36, 16.98, 0.79378, 3, 54, -5.48, 40.36, 0.03346, 52, 16.78, 23.97, 0.95171, 51, 69.32, 0.3, 0.01483, 3, 54, -13.94, 54.29, 0.00398, 52, 0.64, 26.22, 0.73938, 51, 61.77, 14.73, 0.25663, 3, 75, -215.6, -101.72, 3.0E-4, 52, -20.89, 24.54, 0.2797, 51, 47.87, 31.27, 0.72, 3, 75, -202.79, -101.56, 0.004, 52, -30.68, 16.28, 0.11194, 51, 35.45, 34.42, 0.88406, 3, 75, -190.07, -101.2, 0.02104, 52, -40.28, 7.91, 0.01614, 51, 23.07, 37.36, 0.96282, 2, 75, -174.56, -111.52, 0.07013, 51, 10.75, 51.34, 0.92987, 2, 75, -160.05, -120.07, 0.12042, 51, -1.06, 63.34, 0.87958, 2, 75, -144.02, -125.94, 0.17444, 51, -15.03, 73.15, 0.82556, 2, 75, -127.71, -128.54, 0.23132, 51, -30.12, 79.87, 0.76868, 2, 75, -113.59, -129.8, 0.28197, 51, -43.44, 84.73, 0.71803, 2, 75, -97.96, -129.88, 0.33524, 51, -58.52, 88.85, 0.66476, 2, 75, -81.44, -126.97, 0.38961, 51, -75.23, 90.3, 0.61039, 3, 75, -65.43, -120.59, 0.4465, 51, -92.35, 88.27, 0.55348, 50, -173.78, -126.15, 2.0E-5, 3, 75, -46.34, -111.25, 0.51546, 51, -113.2, 84.17, 0.48454, 50, -155.18, -136.42, 0, 2, 75, -30.64, -97.93, 0.57476, 51, -131.81, 75.35, 0.42524, 4, 75, -14.15, -70.68, 0.6656, 55, -156.66, 175.5, 5.2E-4, 51, -154.77, 53.29, 0.33355, 50, -103.49, -139.53, 3.3E-4, 5, 75, -15.54, -50.75, 0.73623, 59, -128.5, 206.15, 1.0E-5, 55, -162.61, 156.42, 0.00183, 51, -158.57, 33.67, 0.25679, 50, -87.96, -126.96, 0.00515, 5, 75, -8.1, -33.09, 0.85896, 59, -140.1, 190.89, 0, 55, -175.96, 142.68, 0.00183, 51, -170.32, 18.53, 0.13396, 50, -69.22, -122.93, 0.00525, 4, 76, -12.38, -17.42, 0.08152, 75, 7.47, -20.2, 0.89159, 55, -195.15, 136.33, 1.5E-4, 51, -188.69, 10.09, 0.02673, 3, 76, 6.12, -13.01, 0.79564, 75, 24.4, -11.54, 0.20414, 51, -207.28, 6.09, 2.2E-4, 1, 76, 25.63, -6.58, 1, 5, 76, 39.65, 9.13, 0.90093, 75, 51.73, 17.91, 0.00933, 72, -166.13, -71.34, 0.05712, 69, -247.68, 6.3, 7.4E-4, 50, 6.87, -142.7, 0.03188, 5, 76, 52.85, 22.99, 0.72186, 75, 61.28, 34.5, 0.01426, 72, -147.27, -68.1, 0.18188, 69, -233.56, -6.63, 0.00258, 50, 25.93, -141.01, 0.07941, 6, 76, 66.46, 29.11, 0.60619, 75, 73.05, 43.67, 0.00568, 72, -132.69, -71.3, 0.29079, 69, -227.17, -20.11, 0.00315, 62, -163.18, 199.96, 0, 50, 40.2, -145.39, 0.0942, 4, 76, 87.21, 35.88, 0.49125, 72, -112.01, -78.26, 0.41747, 69, -219.99, -40.72, 0.00213, 50, 60.25, -154, 0.08916, 4, 76, 109.3, 47.63, 0.38687, 72, -87.27, -82.02, 0.53902, 69, -207.81, -62.58, 7.3E-4, 50, 84.6, -159.76, 0.07339, 4, 76, 125.18, 59.94, 0.31149, 72, -67.18, -81.62, 0.63044, 69, -195.19, -78.21, 9.0E-5, 50, 104.66, -160.99, 0.05798, 3, 76, 141.83, 75.65, 0.23388, 72, -44.44, -78.95, 0.72627, 50, 127.54, -160.18, 0.03985, 3, 76, 155.47, 96.29, 0.16377, 72, -21.18, -70.53, 0.81269, 50, 151.41, -153.69, 0.02354, 4, 76, 162.28, 135.27, 0.0571, 72, 7.55, -43.31, 0.93885, 74, -57.2, 1.23, 2.6E-4, 50, 182.25, -128.9, 0.00379, 4, 76, 160.89, 158.68, 0.01057, 72, 20.4, -23.7, 0.90004, 73, -5.12, -24.14, 0.06712, 74, -33.99, 4.57, 0.02226, 3, 72, 44.76, -11.37, 0.01983, 73, 18.27, -10.06, 0.30449, 74, -8.63, -5.54, 0.67568, 1, 74, 9.64, -12.56, 1, 4, 72, 66.44, 13.35, 2.0E-5, 73, 38.07, 16.19, 2.3E-4, 74, 24.25, -5.45, 0.99962, 69, -38.28, -125.67, 1.2E-4, 4, 72, 57.25, 25.92, 0.04451, 73, 27.98, 28.05, 0.30963, 74, 27.6, 9.76, 0.58928, 69, -33.98, -110.71, 0.05658, 4, 72, 53.26, 38.34, 0.12538, 73, 23.09, 40.15, 0.4881, 74, 34.28, 20.97, 0.21034, 69, -26.6, -99.94, 0.17618, 4, 72, 54.82, 54.36, 0.15298, 73, 23.47, 56.24, 0.45246, 74, 47.32, 30.39, 0.08348, 69, -12.98, -91.37, 0.31108, 4, 72, 51.14, 73.47, 0.15197, 73, 18.39, 75.03, 0.38035, 74, 59.22, 45.8, 0.03707, 69, -0.13, -76.75, 0.43061, 5, 72, 39.55, 81.74, 0.14095, 73, 6.23, 82.42, 0.29729, 74, 57.75, 59.95, 0.01728, 69, -0.69, -62.53, 0.54433, 50, 224.32, -6.86, 1.5E-4, 5, 72, 36.74, 102.34, 0.09318, 73, 1.91, 102.76, 0.1842, 74, 71.34, 75.69, 0.00345, 69, 13.87, -47.69, 0.71916, 70, -38.84, -28.98, 0, 6, 72, 19.81, 115.27, 0.04239, 73, -15.92, 114.41, 0.08132, 74, 69.84, 96.94, 3.3E-4, 69, 13.72, -26.39, 0.84253, 70, -23.84, -13.86, 0.03342, 50, 207.38, 28.16, 1.0E-5, 4, 72, 19.72, 130.27, 0.00621, 73, -17.11, 129.37, 0.01706, 69, 25.53, -17.13, 0.64334, 70, -8.95, -15.7, 0.33339, 4, 72, 17.57, 142.71, 1.3E-4, 73, -20.17, 141.61, 0.00197, 69, 34.04, -7.81, 0.20156, 70, 3.66, -15.17, 0.79634, 2, 72, 7.62, 156.92, 0, 70, 19.03, -7.13, 1, 2, 70, 29.18, 4.27, 0.01038, 71, 8.95, -5.83, 0.98962, 2, 72, -17.06, 172.66, 0, 71, 22.78, -3.46, 1, 1, 71, 31.25, 1.77, 1, 3, 70, 31.24, 21.63, 3.0E-5, 71, 22.16, 5.63, 0.99997, 50, 169.31, 81.49, 0, 1, 71, 10.7, 4.39, 1, 6, 69, 25.75, 17.56, 0.03148, 70, 15.8, 8.61, 0.16012, 71, 1.98, 6.38, 0.80644, 66, -67.91, -31.95, 0.00167, 62, -102.89, -48.54, 2.2E-4, 50, 183.05, 66.69, 6.0E-5, 6, 69, 17.86, 14.18, 0.43664, 70, 7.84, 11.81, 0.39249, 71, -1.76, 14.1, 0.14271, 66, -73.61, -25.53, 0.02293, 62, -106.97, -40.99, 0.00375, 50, 180.23, 58.59, 0.00147, 8, 76, 30.67, 267.56, 8.0E-5, 72, -19.1, 141.38, 3.9E-4, 69, 10.53, 20.36, 0.70438, 70, 7.06, 21.37, 0.12667, 71, 4.09, 21.7, 0.035, 66, -70.04, -16.63, 0.10446, 62, -101.47, -33.13, 0.01969, 50, 170.72, 57.35, 0.00933, 8, 76, 18.98, 262.45, 3.4E-4, 72, -31.53, 144.26, 0.00433, 69, 5.19, 31.95, 0.58559, 70, 11.51, 33.33, 0.02229, 71, 15.43, 27.56, 0.00412, 66, -60.73, -7.91, 0.30666, 62, -90.41, -26.77, 0.05256, 50, 158.56, 61.23, 0.02411, 8, 76, 12.3, 263.38, 2.6E-4, 72, -36.34, 148.99, 0.00372, 69, 5.99, 38.65, 0.43598, 70, 16.82, 37.48, 0.00688, 71, 22.16, 27.06, 9.1E-4, 66, -54.12, -6.55, 0.46549, 62, -83.66, -26.96, 0.06158, 50, 154.16, 66.34, 0.02518, 8, 76, 9.26, 276.19, 1.0E-5, 72, -31.14, 161.08, 3.1E-4, 69, 18.73, 41.95, 0.26376, 70, 28.14, 30.77, 6.7E-4, 71, 26.02, 14.48, 1.0E-5, 66, -46.98, -17.61, 0.68732, 62, -79.23, -39.35, 0.03492, 50, 160.33, 77.97, 0.01299, 5, 69, 27.01, 48.56, 0.18289, 70, 38.67, 29.57, 3.0E-5, 66, -38.1, -23.38, 0.79308, 62, -71.9, -47, 0.0173, 50, 161.03, 88.54, 0.0067, 4, 69, 35.72, 56.52, 0.11419, 66, -27.79, -29.14, 0.87995, 62, -63.19, -54.96, 0.00377, 50, 161.03, 100.34, 0.00209, 2, 69, 42.17, 69.58, 0.05644, 66, -13.37, -31.14, 0.94356, 2, 69, 41.72, 86.31, 0.01288, 66, 2.36, -25.45, 0.98712, 2, 66, 19.46, -17.24, 0.82833, 67, -7.84, -15.36, 0.17167, 2, 66, 30.96, -5.7, 0.10006, 67, 7.7, -10.49, 0.89994, 2, 67, 25.18, -7.94, 0.56089, 68, -0.71, -7.91, 0.43911, 1, 68, 14.35, -4.52, 1, 2, 67, 57.95, -0.48, 0, 68, 32.48, -2.63, 1, 1, 68, 25.66, 3.09, 1, 1, 68, 15.41, 6.24, 1, 3, 67, 31.94, 7.58, 0.03856, 68, 7.05, 7.13, 0.93869, 62, 18.28, -21.98, 0.02275, 3, 67, 24.76, 8.18, 0.44297, 68, -0.06, 8.2, 0.3101, 62, 11.19, -23.21, 0.24693, 3, 67, 28.36, 11.68, 0.28047, 68, 3.75, 11.46, 0.12105, 62, 13.79, -18.91, 0.59848, 4, 67, 36.86, 12.15, 0.11093, 68, 12.27, 11.37, 0.04486, 62, 21.9, -16.32, 0.81857, 63, -17.24, -6.94, 0.02564, 4, 67, 47.29, 11.91, 0.02103, 68, 22.66, 10.44, 0.0079, 62, 32.06, -13.94, 0.60934, 63, -7.88, -11.56, 0.36174, 4, 67, 55.26, 11.21, 0.00483, 68, 30.56, 9.21, 0.00175, 62, 39.95, -12.62, 0.24451, 63, -0.96, -15.56, 0.74891, 3, 62, 48.79, -7.03, 0.00727, 63, 9.43, -16.87, 0.96766, 64, -13.73, -20.97, 0.02507, 2, 63, 19.29, -15.95, 0.86455, 64, -4.41, -17.61, 0.13545, 2, 63, 30.68, -11.59, 0.38448, 64, 5.53, -10.54, 0.61552, 3, 63, 35.8, -9.07, 0.06091, 64, 9.85, -6.83, 0.88436, 65, -6.94, -9.35, 0.05473, 2, 64, 17.44, -10.04, 0.46105, 65, 1.27, -10.13, 0.53895, 2, 64, 29.08, -11.95, 0.00911, 65, 12.94, -8.44, 0.99089, 1, 65, 23.71, -1.67, 1, 1, 65, 33.6, 4.87, 1, 1, 65, 24.32, 7.47, 1, 1, 65, 13.12, 7.42, 1, 2, 64, 22.24, 5.99, 0.37621, 65, 1.02, 6.6, 0.62379, 4, 64, 12.3, 8.74, 0.96928, 65, -9.29, 6.22, 0.03037, 59, -37.04, -58.26, 2.9E-4, 50, 14.68, 133.31, 5.0E-5, 5, 62, 50.35, 28.71, 0.01753, 63, 33.35, 9.73, 0.26279, 64, 2.78, 10.76, 0.7017, 59, -46.72, -59.27, 0.01348, 50, 22.69, 127.77, 0.0045, 6, 69, -34.5, 168.92, 9.0E-5, 62, 42.43, 25.1, 0.12478, 63, 24.94, 11.98, 0.66366, 64, -5.93, 10.84, 0.09893, 59, -55.02, -61.89, 0.08327, 50, 30.69, 124.36, 0.02927, 6, 69, -42.24, 173.02, 1.8E-4, 62, 45.82, 33.17, 0.1675, 63, 32.68, 16.05, 0.52771, 64, 0.55, 16.72, 0.01825, 59, -50.68, -54.29, 0.2234, 50, 22.45, 121.42, 0.06295, 5, 62, 55.85, 41.54, 0.12638, 63, 45.75, 16.14, 0.37602, 64, 13.18, 20.08, 1.3E-4, 59, -39.7, -47.2, 0.42685, 50, 9.5, 123.18, 0.07063, 4, 62, 67.88, 44.59, 0.07832, 63, 56.98, 10.84, 0.27044, 59, -27.39, -45.64, 0.6012, 50, -0.86, 130.01, 0.05003, 4, 62, 79.24, 47.64, 0.04548, 63, 67.68, 5.98, 0.18708, 59, -15.74, -44, 0.73925, 50, -10.77, 136.34, 0.02819, 4, 62, 90.42, 50.98, 0.02213, 63, 78.44, 1.45, 0.11627, 59, -4.24, -42.05, 0.8511, 50, -20.78, 142.35, 0.0105, 5, 62, 102.17, 52.85, 0.00773, 63, 88.7, -4.58, 0.06296, 59, 7.65, -41.63, 0.92652, 60, -25.93, -38.68, 0.00137, 50, -30.08, 149.77, 0.00143, 4, 62, 113.32, 57.02, 0.00182, 63, 99.95, -8.44, 0.03283, 59, 19.22, -38.84, 0.94202, 60, -14.11, -37.31, 0.02333, 3, 63, 116.12, -7.72, 0.01156, 59, 32.48, -29.55, 0.84822, 60, 0.16, -29.68, 0.14022, 3, 63, 122.56, -0.38, 0.00486, 59, 33.97, -19.9, 0.63476, 60, 2.81, -20.28, 0.36039, 4, 63, 136, 2.13, 1.6E-4, 59, 43.96, -10.56, 0.01773, 60, 13.85, -12.21, 0.93312, 61, -8.34, -11.15, 0.049, 2, 60, 28.83, -9.94, 0.0964, 61, 6.81, -11.65, 0.9036, 1, 61, 17.49, -8.48, 1, 1, 61, 25.72, -2.26, 1, 1, 61, 37.96, 6.83, 1, 1, 61, 25.9, 10.76, 1, 3, 59, 61.29, 21.15, 0.00549, 61, 17.68, 13.92, 0.99106, 55, 3.54, -50.07, 0.00345, 5, 59, 52.04, 13.63, 0.0973, 60, 24.78, 10.83, 0.12219, 61, 6.6, 9.51, 0.71796, 55, -6.56, -56.42, 0.06249, 50, -99.74, 136.7, 6.0E-5, 5, 59, 47.55, 18.87, 0.28595, 60, 20.95, 16.57, 0.25132, 61, 3.88, 15.86, 0.25068, 55, -10.38, -50.68, 0.21125, 50, -99.74, 129.8, 8.1E-4, 7, 59, 50.28, 27, 0.30158, 60, 24.65, 24.31, 0.12755, 61, 8.93, 22.8, 0.07246, 55, -6.69, -42.94, 0.49638, 56, -41.13, -44.09, 7.2E-4, 51, 18.48, -147.19, 1.0E-5, 50, -107.11, 125.41, 0.0013, 5, 59, 63.03, 29.24, 0.14718, 60, 37.57, 25.01, 0.04643, 61, 21.76, 21.13, 0.01767, 55, 6.23, -42.24, 0.77232, 56, -28.24, -43.04, 0.0164, 5, 59, 72.18, 28.2, 0.08602, 60, 46.53, 22.88, 0.02732, 61, 30.18, 17.4, 0.00779, 55, 15.19, -44.37, 0.83869, 56, -19.22, -44.92, 0.04018, 5, 59, 84.07, 28.07, 0.0501, 60, 58.31, 21.31, 0.01695, 61, 41.49, 13.71, 0.00279, 55, 26.98, -45.94, 0.86354, 56, -7.4, -46.16, 0.06663, 5, 59, 98.59, 36.18, 0.0359, 60, 73.71, 27.62, 0.01313, 61, 57.77, 17.11, 9.4E-4, 55, 42.38, -39.63, 0.87477, 56, 7.82, -39.43, 0.07527, 5, 59, 92.86, 41.18, 0.03719, 60, 68.62, 33.28, 0.01343, 61, 53.8, 23.6, 0.00113, 55, 37.29, -33.98, 0.87156, 56, 2.58, -33.92, 0.07669, 6, 59, 84.07, 41.08, 0.03953, 60, 59.88, 34.23, 0.01342, 61, 45.38, 26.13, 0.00193, 55, 28.55, -33.02, 0.83295, 56, -6.19, -33.2, 0.10906, 57, -19.52, -41.03, 0.00311, 6, 59, 88.52, 48.41, 0.01825, 60, 65.19, 40.97, 0.0065, 61, 51.82, 31.79, 6.7E-4, 55, 33.85, -26.28, 0.66153, 56, -1.07, -26.32, 0.28509, 57, -16.72, -32.92, 0.02796, 6, 59, 94.68, 53.28, 0.00499, 60, 71.88, 45.06, 0.00207, 61, 59.15, 34.6, 1.0E-4, 55, 40.55, -22.19, 0.34367, 56, 5.51, -22.04, 0.54323, 57, -11.74, -26.85, 0.10595, 5, 59, 108.14, 50.35, 6.0E-5, 60, 84.89, 40.54, 9.0E-5, 55, 53.56, -26.71, 0.03797, 56, 18.64, -26.21, 0.54444, 57, 2.03, -26.85, 0.41745, 3, 56, 33.14, -25.15, 0.25978, 57, 15.53, -21.45, 0.71377, 58, -18.24, -13.5, 0.02645, 3, 56, 50.18, -18.28, 0.01673, 57, 29.7, -9.75, 0.39798, 58, 0.06, -11.86, 0.58529, 1, 58, 18.06, -7.85, 1, 1, 58, 36.75, -1.45, 1, 6, 72, -89.37, 193.02, 9.0E-5, 69, 8.3, 107.54, 0.00282, 66, 11.99, 12.96, 0.56308, 67, -0.4, 14.85, 0.22434, 62, -14.85, -23.06, 0.20828, 50, 104.88, 114.53, 0.00138, 6, 76, -22.64, 260.2, 9.0E-5, 72, -66.27, 167.29, 0.00255, 69, 2.12, 73.52, 0.13612, 66, -22.25, 8.1, 0.7124, 62, -49.29, -19.97, 0.12599, 50, 125.82, 87.01, 0.02286, 1, 66, 10.43, -6.39, 1, 4, 69, 21.86, 74.54, 0.06756, 66, -15.06, -10.31, 0.92007, 62, -46.49, -39.53, 0.00947, 50, 138.38, 102.27, 0.00289, 2, 67, 15.21, 0.74, 0.99254, 62, 3.81, -32.8, 0.00746, 3, 72, 2.02, 124.3, 0.00553, 73, -34.32, 122.11, 0.01211, 69, 9.96, -6.79, 0.98236, 3, 73, -30.89, 140.81, 1.9E-4, 69, 27.45, 0.68, 0.06983, 70, 5.03, -4.51, 0.92998, 2, 70, 20.06, 2.87, 0.03592, 71, 1.26, -0.73, 0.96408, 4, 72, 39.87, 17.01, 0.09986, 73, 11.31, 17.89, 0.77821, 74, 9.42, 16.9, 0.07825, 69, -51.66, -102.42, 0.04368, 5, 72, 17.68, 4.62, 0.94932, 73, -9.91, 3.9, 0.04067, 69, -75.05, -92.48, 0.00995, 62, -221.55, 41.94, 2.0E-5, 50, 196.25, -81.95, 4.0E-5, 1, 73, 15.92, -1.1, 1, 7, 76, 90.52, 195.25, 0.00922, 72, -14.23, 47.64, 0.47873, 73, -44.9, 44.46, 0.11003, 69, -60.59, -40.9, 0.34442, 66, -150.6, 31.57, 0.00233, 62, -168.89, 32.19, 0.01372, 50, 167.94, -36.48, 0.04156, 8, 76, -31.33, 198.9, 0.00529, 72, -109.83, 123.29, 0.03706, 69, -59.34, 81, 0.15503, 66, -34.51, 68.79, 0.12428, 62, -47.37, 41.92, 0.38163, 63, -33.69, 82.05, 0.03522, 59, -142.11, -34.25, 0.01133, 50, 78.82, 46.7, 0.25017, 9, 75, -136.78, 100.63, 0.0067, 69, -125.9, 172.29, 6.0E-5, 62, 37.56, 116.43, 0.04632, 63, 79.24, 85.57, 0.06709, 59, -48.73, 29.36, 0.43785, 55, -104.7, -28.68, 0.06441, 53, -3.91, -181.76, 3.1E-4, 51, -80.51, -143.88, 0.0221, 50, -33.47, 59.18, 0.35516, 6, 75, -180.1, 29.43, 0.02495, 59, 10.94, 87.55, 0.16407, 55, -38.45, 21.91, 0.48373, 53, -5.79, -98.43, 0.07579, 51, -20.28, -86.27, 0.15992, 50, -116.65, 53.83, 0.09154, 6, 75, -163.36, -60.62, 0.04447, 59, 17.13, 178.93, 0.00209, 55, -21.32, 111.88, 0.01133, 53, -68.42, -31.6, 0.00349, 51, -13.21, 5.05, 0.92907, 50, -180.81, -11.52, 0.00955, 5, 75, -78.86, -70.45, 0.46196, 59, -62.26, 209.47, 0.00171, 55, -96.46, 151.76, 0.00773, 51, -92.31, 36.36, 0.50415, 50, -140.41, -86.38, 0.02445, 8, 76, -15.99, 32.04, 0.11528, 75, -7.75, 26.99, 0.68161, 72, -197.1, -19.75, 0.0197, 69, -225.86, 62.38, 0.00153, 59, -155.38, 132.79, 1.0E-5, 55, -198.13, 86.83, 0.00177, 51, -186.16, -39.43, 0.00621, 50, -19.8, -88.76, 0.17388, 6, 75, -115.32, -13.75, 0.25976, 59, -41.06, 145.48, 0.04098, 55, -83.11, 85.68, 0.10033, 53, -83.63, -96.97, 0.01661, 51, -71.72, -27.83, 0.42331, 50, -114.86, -24, 0.15901, 9, 76, -68.13, 78.76, 0.00351, 75, -69.47, 60.04, 0.20259, 72, -211.05, 48.86, 0.00145, 63, 62.85, 162.46, 2.0E-5, 59, -103.83, 85.42, 0.02708, 55, -152.65, 33.61, 0.02848, 53, -82.49, -183.84, 4.5E-4, 51, -135.06, -87.29, 0.04989, 50, -28.12, -19.25, 0.68654, 8, 76, -3.41, 135.63, 0.07034, 75, -20.06, 130.62, 0.02012, 72, -125.19, 55.87, 0.14786, 69, -122.04, 51.85, 0.11768, 66, -81.94, 119.12, 0.02099, 62, -82.05, 101.74, 0.09435, 63, -22.43, 150.27, 0.00445, 50, 58.03, -19.25, 0.52421, 7, 76, 81.62, 96.47, 0.27541, 75, 71.83, 112.7, 0.00677, 72, -80.33, -26.31, 0.54929, 69, -159.53, -33.95, 0.03111, 66, -175.17, 127.66, 3.5E-4, 62, -170.87, 131.35, 0.0073, 50, 96.05, -104.8, 0.12977, 4, 62, 77.45, 63.64, 0.03825, 63, 76.47, 19.47, 0.15163, 59, -15.57, -27.9, 0.78115, 50, -21.39, 124.23, 0.02897, 3, 62, 99.77, 94.3, 1.0E-5, 63, 113.19, 28.94, 1.2E-4, 59, 10.32, -0.19, 0.99987, 6, 75, -217.76, 93.08, 5.0E-5, 59, 31.58, 16.53, 0.63584, 60, 4.82, 16.17, 0.21515, 55, -26.51, -51.08, 0.14479, 51, -0.32, -157.48, 7.0E-4, 50, -86.1, 121.18, 0.00347, 2, 63, 130.9, 15.32, 8.0E-5, 60, 3.55, -2.51, 0.99992, 5, 62, 98.46, 69.72, 0.00553, 63, 96.55, 10.8, 0.04583, 59, 6.03, -24.43, 0.94644, 60, -25.48, -21.41, 0.00193, 50, -40.04, 135.65, 2.7E-4, 4, 55, 34.83, 0.34, 0.56725, 56, -0.83, 0.31, 0.43073, 53, 54.8, -51.91, 0.00192, 51, 54.94, -99.59, 1.0E-4, 8, 75, -233.63, 59.12, 1.0E-5, 59, 55.41, 45.47, 0.15579, 60, 31.95, 42.04, 0.03445, 61, 19.34, 38.89, 0.00953, 55, 0.62, -25.21, 0.79564, 56, -34.32, -26.17, 0.00358, 51, 23.78, -128.77, 4.0E-5, 50, -123.02, 114.71, 9.7E-4, 5, 75, -228.99, 31.24, 3.0E-5, 55, 6.43, 2.45, 0.98467, 53, 36.37, -73.62, 0.01165, 51, 26.48, -100.64, 0.0034, 50, -143.19, 94.92, 2.5E-4, 7, 75, -222.69, -7.55, 3.5E-4, 59, 61.39, 112.77, 3.1E-4, 55, 14.66, 40.88, 0.37894, 56, -22.11, 40.28, 0.04315, 53, 10.16, -44.33, 0.45876, 51, 30.41, -61.53, 0.11442, 50, -171.36, 67.51, 0.00406, 5, 55, 43.48, 69.7, 0.01366, 56, 5.91, 69.89, 0.00334, 53, 3.84, -4.07, 0.97125, 51, 55.86, -29.69, 0.01174, 50, -211.33, 59.52, 2.0E-5, 6, 55, 19.7, 97.23, 0.00682, 56, -18.63, 96.75, 1.0E-5, 53, -32.42, -7.08, 0.07483, 52, -2.29, -11.75, 0.04347, 51, 29.18, -4.97, 0.87478, 50, -206.81, 23.42, 9.0E-5 ],
+ "hull": 139,
+ "edges": [ 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 20, 22, 22, 24, 24, 26, 26, 28, 28, 30, 30, 32, 32, 34, 34, 36, 36, 38, 38, 40, 40, 42, 42, 44, 44, 46, 46, 48, 48, 50, 50, 52, 52, 54, 54, 56, 56, 58, 58, 60, 60, 62, 62, 64, 64, 66, 66, 68, 68, 70, 70, 72, 72, 74, 74, 76, 76, 78, 78, 80, 80, 82, 82, 84, 84, 86, 86, 88, 88, 90, 90, 92, 92, 94, 94, 96, 96, 98, 98, 100, 100, 102, 102, 104, 104, 106, 106, 108, 108, 110, 110, 112, 112, 114, 114, 116, 116, 118, 118, 120, 120, 122, 122, 124, 124, 126, 126, 128, 128, 130, 130, 132, 132, 134, 134, 136, 136, 138, 138, 140, 140, 142, 142, 144, 144, 146, 146, 148, 148, 150, 150, 152, 152, 154, 154, 156, 156, 158, 158, 160, 160, 162, 162, 164, 164, 166, 166, 168, 168, 170, 170, 172, 172, 174, 174, 176, 176, 178, 178, 180, 180, 182, 182, 184, 184, 186, 186, 188, 188, 190, 190, 192, 192, 194, 194, 196, 196, 198, 198, 200, 200, 202, 202, 204, 204, 206, 206, 208, 208, 210, 210, 212, 212, 214, 214, 216, 216, 218, 218, 220, 220, 222, 222, 224, 224, 226, 226, 228, 228, 230, 230, 232, 232, 234, 234, 236, 236, 238, 238, 240, 240, 242, 242, 244, 244, 246, 246, 248, 248, 250, 250, 252, 252, 254, 254, 256, 256, 258, 258, 260, 260, 262, 262, 264, 264, 266, 266, 268, 268, 270, 270, 272, 272, 274, 274, 276, 0, 276 ],
+ "width": 490,
+ "height": 323
+ }
+ },
+ "huobeijing2": {
+ "item7_1": {
+ "type": "mesh",
+ "uvs": [ 0.5251, 0.00114, 0.57071, 0.01579, 0.59436, 0.02205, 0.66198, 0.01643, 0.71726, 0.03109, 0.81107, 0.08433, 0.84527, 0.13165, 0.8607, 0.19734, 0.8673, 0.20806, 0.90445, 0.22113, 0.93155, 0.25841, 0.9447, 0.2943, 0.95006, 0.33744, 0.95013, 0.36653, 0.95407, 0.39058, 0.97501, 0.4262, 0.98688, 0.4957, 0.99832, 0.52542, 0.99831, 0.80544, 0.9683, 0.82735, 0.93999, 0.83875, 0.92251, 0.85112, 0.91568, 0.85965, 0.87015, 0.93009, 0.83124, 0.96579, 0.79435, 0.98537, 0.74671, 0.99843, 0.68496, 0.99825, 0.61129, 0.98491, 0.54092, 0.94941, 0.52035, 0.95074, 0.50097, 0.95378, 0.45878, 0.95349, 0.41984, 0.93979, 0.37665, 0.91162, 0.35887, 0.90477, 0.34184, 0.90452, 0.3401, 0.9046, 0.32736, 0.91128, 0.29153, 0.94123, 0.22783, 0.94443, 0.17573, 0.9332, 0.134, 0.90885, 0.09715, 0.87452, 0.0761, 0.845, 0.03939, 0.76366, 0.01778, 0.66956, 0.00976, 0.56716, 0.00177, 0.53992, 0.00189, 0.27744, 0.00183, 0.21045, 0.01628, 0.16921, 0.0019, 0.14, 0.00188, 0.04803, 0.01066, 0.01867, 0.03857, 0.00691, 0.07092, 0.00199, 0.09904, 0.00282, 0.13871, 0.0069, 0.20665, 0.03797, 0.21773, 0.03776, 0.23471, 0.03347, 0.2695, 0.0107, 0.32444, 0.01044, 0.36018, 0.01602, 0.38638, 0.01638, 0.44423, 0.01622, 0.46945, 0.0028, 0.01863, 0.09207, 0.044, 0.12437, 0.07186, 0.12819, 0.10003, 0.13517, 0.07959, 0.15999, 0.09009, 0.19025, 0.10777, 0.21508, 0.1271, 0.22982, 0.1376, 0.2399, 0.12323, 0.26473, 0.10942, 0.25309, 0.09009, 0.23835, 0.06302, 0.22904, 0.03098, 0.21973, 0.0365, 0.25077, 0.04479, 0.27869, 0.05473, 0.30042, 0.0331, 0.35102, 0.01814, 0.41493, 0.02595, 0.47246, 0.03765, 0.52998, 0.05258, 0.59983, 0.06407, 0.67836, 0.09917, 0.77341, 0.14742, 0.82612, 0.18879, 0.87345, 0.27382, 0.91218, 0.4687, 0.90246, 0.56062, 0.89816, 0.52461, 0.89708, 0.60658, 0.90246, 0.67858, 0.93366, 0.75078, 0.93813, 0.80133, 0.91124, 0.83963, 0.86928, 0.86951, 0.81872, 0.90781, 0.78107, 0.953, 0.75848, 0.98441, 0.7133, 0.96066, 0.67565, 0.93615, 0.69609, 0.95377, 0.65306, 0.96985, 0.59174, 0.94994, 0.5401, 0.93615, 0.52504, 0.93692, 0.47018, 0.90781, 0.4336, 0.89862, 0.41747, 0.90398, 0.395, 0.90474, 0.34982, 0.8833, 0.30894, 0.845, 0.27021, 0.82278, 0.26484, 0.84653, 0.29496, 0.85802, 0.32185, 0.84653, 0.34659, 0.81206, 0.20997, 0.79291, 0.16802, 0.75537, 0.13682, 0.7301, 0.11531, 0.6872, 0.0712, 0.642, 0.07228, 0.61519, 0.08841, 0.57996, 0.08518, 0.54625, 0.10132, 0.51868, 0.07012, 0.47348, 0.06259, 0.49187, 0.09487, 0.51561, 0.11638, 0.53859, 0.14435, 0.57306, 0.15834, 0.54549, 0.17232, 0.51255, 0.16694, 0.47961, 0.14112, 0.45893, 0.12391, 0.43825, 0.09164, 0.39842, 0.07873, 0.35797, 0.08938, 0.33415, 0.08215, 0.30711, 0.0722, 0.282, 0.08486, 0.26268, 0.093, 0.27942, 0.11922, 0.30775, 0.12916, 0.31355, 0.15448, 0.29294, 0.1581, 0.26204, 0.1373, 0.23114, 0.09842, 0.21118, 0.10385, 0.22148, 0.13549, 0.1983, 0.14273, 0.17255, 0.11922, 0.14551, 0.08576, 0.11782, 0.07491, 0.0935, 0.07518, 0.06131, 0.07518, 0.03685, 0.08151, 0.34997, 0.14939, 0.3935, 0.14778, 0.34768, 0.11721, 0.11742, 0.10756, 0.14263, 0.16226, 0.17814, 0.19765, 0.08535, 0.30866, 0.62578, 0.13392, 0.70024, 0.15001, 0.85718, 0.40902, 0.89613, 0.5152, 0.90185, 0.69861, 0.27409, 0.36238, 0.22712, 0.24171, 0.27065, 0.18379, 0.44821, 0.34789, 0.65441, 0.37685, 0.61661, 0.56829, 0.45509, 0.55381, 0.46998, 0.74043, 0.28669, 0.57151, 0.22483, 0.73239, 0.14235, 0.51359, 0.06102, 0.42189, 0.76439, 0.27389 ],
+ "triangles": [ 95, 34, 184, 40, 94, 39, 94, 40, 93, 39, 94, 38, 40, 41, 93, 38, 94, 186, 37, 38, 186, 184, 34, 35, 36, 37, 186, 36, 184, 35, 94, 93, 186, 184, 36, 186, 184, 186, 185, 184, 185, 183, 29, 96, 28, 96, 98, 28, 97, 30, 31, 31, 32, 95, 32, 33, 95, 30, 97, 29, 97, 31, 95, 29, 97, 96, 33, 34, 95, 95, 184, 97, 182, 98, 96, 182, 96, 184, 96, 97, 184, 183, 177, 180, 184, 183, 182, 177, 183, 185, 181, 182, 180, 181, 180, 139, 180, 182, 183, 176, 181, 175, 22, 103, 21, 103, 104, 21, 103, 176, 104, 26, 100, 25, 26, 27, 100, 27, 99, 100, 25, 101, 24, 25, 100, 101, 23, 24, 102, 101, 100, 182, 182, 100, 99, 24, 101, 102, 23, 102, 22, 22, 102, 103, 102, 101, 182, 102, 182, 176, 103, 102, 176, 182, 181, 176, 28, 99, 27, 28, 98, 99, 98, 182, 99, 109, 111, 110, 108, 109, 107, 107, 109, 110, 104, 176, 108, 108, 176, 109, 109, 176, 175, 19, 20, 105, 19, 105, 18, 105, 106, 18, 18, 106, 17, 106, 108, 107, 106, 105, 108, 107, 110, 106, 106, 110, 17, 21, 104, 20, 20, 104, 105, 104, 108, 105, 9, 118, 119, 123, 189, 121, 121, 189, 120, 121, 120, 119, 123, 121, 122, 122, 121, 118, 9, 119, 8, 118, 121, 119, 8, 119, 7, 7, 119, 124, 119, 120, 124, 116, 117, 13, 117, 122, 118, 117, 12, 13, 117, 11, 12, 117, 118, 11, 118, 10, 11, 118, 9, 10, 117, 123, 122, 123, 174, 189, 175, 181, 174, 174, 181, 189, 111, 175, 112, 109, 175, 111, 110, 111, 17, 111, 16, 17, 111, 112, 16, 112, 113, 16, 112, 175, 113, 175, 114, 113, 114, 174, 115, 114, 175, 174, 113, 15, 16, 113, 14, 15, 113, 114, 14, 115, 116, 114, 114, 116, 14, 115, 174, 116, 116, 174, 117, 117, 174, 123, 116, 13, 14, 181, 173, 189, 173, 126, 189, 173, 127, 126, 127, 4, 5, 189, 125, 124, 189, 126, 125, 124, 125, 6, 125, 5, 6, 125, 126, 5, 126, 127, 5, 189, 124, 120, 7, 124, 6, 128, 172, 129, 172, 130, 129, 129, 130, 2, 129, 3, 128, 129, 2, 3, 128, 3, 4, 172, 128, 173, 173, 128, 127, 128, 4, 127, 138, 172, 181, 181, 172, 173, 132, 133, 1, 140, 136, 137, 137, 132, 138, 137, 136, 132, 139, 138, 181, 172, 138, 131, 138, 132, 131, 131, 1, 2, 140, 137, 139, 139, 137, 138, 131, 132, 1, 172, 131, 130, 130, 131, 2, 141, 135, 136, 142, 134, 135, 136, 133, 132, 136, 135, 133, 135, 134, 133, 134, 143, 66, 133, 0, 1, 133, 134, 0, 66, 67, 134, 134, 67, 0, 166, 145, 144, 145, 65, 144, 145, 64, 65, 144, 65, 66, 177, 165, 180, 177, 152, 165, 165, 166, 180, 141, 180, 166, 141, 166, 142, 142, 166, 143, 166, 144, 143, 140, 141, 136, 141, 142, 135, 142, 143, 134, 143, 144, 66, 180, 140, 139, 180, 141, 140, 152, 151, 167, 167, 145, 166, 151, 146, 167, 167, 146, 145, 145, 146, 64, 165, 152, 167, 165, 167, 166, 153, 151, 152, 153, 150, 151, 154, 149, 150, 150, 148, 151, 148, 147, 151, 151, 147, 146, 150, 149, 148, 155, 61, 149, 148, 149, 62, 149, 61, 62, 148, 62, 147, 147, 63, 146, 147, 62, 63, 146, 63, 64, 72, 69, 70, 51, 69, 72, 51, 52, 69, 52, 68, 69, 52, 53, 68, 69, 163, 70, 71, 70, 162, 70, 163, 162, 68, 164, 69, 69, 164, 163, 168, 162, 161, 68, 53, 164, 53, 54, 164, 164, 55, 163, 164, 54, 55, 163, 56, 162, 162, 57, 161, 162, 56, 57, 163, 55, 56, 161, 57, 58, 74, 79, 73, 80, 72, 73, 74, 73, 169, 73, 71, 169, 169, 160, 159, 73, 72, 71, 71, 168, 169, 169, 168, 160, 168, 161, 160, 159, 160, 59, 161, 58, 160, 160, 58, 59, 72, 70, 71, 168, 71, 162, 78, 74, 75, 77, 75, 76, 170, 76, 169, 76, 75, 169, 75, 74, 169, 169, 159, 170, 170, 159, 158, 178, 77, 76, 178, 76, 170, 177, 77, 178, 178, 179, 177, 152, 177, 179, 170, 158, 178, 158, 157, 178, 179, 178, 157, 158, 159, 156, 152, 179, 153, 179, 157, 154, 179, 154, 153, 154, 150, 153, 158, 156, 157, 157, 155, 154, 154, 155, 149, 157, 156, 155, 156, 159, 59, 156, 60, 155, 156, 59, 60, 155, 60, 61, 85, 84, 171, 171, 79, 78, 85, 83, 84, 85, 49, 83, 171, 84, 79, 79, 83, 80, 79, 84, 83, 49, 82, 83, 83, 82, 80, 82, 50, 81, 82, 49, 50, 79, 74, 78, 82, 81, 80, 80, 81, 72, 79, 80, 73, 50, 51, 81, 72, 81, 51, 187, 171, 77, 171, 78, 77, 77, 78, 75, 87, 86, 188, 86, 85, 188, 188, 85, 171, 86, 49, 85, 44, 45, 91, 45, 90, 91, 45, 46, 90, 90, 187, 186, 46, 89, 90, 90, 89, 187, 46, 47, 89, 47, 88, 89, 89, 88, 187, 187, 177, 185, 47, 48, 88, 48, 87, 88, 48, 86, 87, 48, 49, 86, 88, 188, 187, 88, 87, 188, 187, 77, 177, 187, 188, 171, 41, 42, 93, 42, 92, 93, 42, 43, 92, 43, 44, 92, 93, 92, 186, 44, 91, 92, 92, 91, 186, 91, 90, 186, 186, 187, 185 ],
+ "vertices": [ 2, 65, 23.74, -31.04, 0.99089, 64, 32.57, -36.75, 0.00911, 2, 63, 26.33, -41.73, 0.86455, 64, 8.86, -40.81, 0.13545, 2, 67, 79.6, -5.73, 0, 68, 53.74, -9.29, 1, 2, 67, 51.6, -26.42, 0, 68, 24.43, -28.09, 1, 3, 67, 24.86, -37.43, 0.64853, 68, -2.97, -37.31, 0.32561, 66, 58.68, -21.56, 0.02587, 3, 67, -26.18, -47.41, 0.01639, 66, 18.14, -54.14, 0.97196, 69, 73.93, 92.24, 0.01165, 2, 66, -5.55, -61.04, 0.94356, 69, 73.01, 67.58, 0.05644, 2, 71, 31.45, -27.2, 1, 72, -8.3, 196.37, 0, 3, 70, 56.12, 0.38, 3.7E-4, 71, 26.28, -26.83, 0.99963, 72, -4.6, 192.74, 0, 3, 70, 50.43, -18.46, 0.1944, 71, 9.39, -36.95, 0.8056, 72, 14.82, 189.52, 0, 2, 70, 36.14, -31.73, 1, 72, 29.82, 177.06, 0, 4, 69, 63.56, -10.31, 0.1276, 70, 22.7, -37.86, 0.87106, 73, -1.78, 164.83, 0.00125, 72, 37.62, 164.51, 8.0E-5, 4, 69, 53.76, -22.99, 0.20156, 70, 6.8, -39.86, 0.79634, 73, 3.38, 149.65, 0.00197, 72, 41.65, 149, 1.3E-4, 4, 69, 45.93, -30.2, 0.49939, 70, -3.84, -39.39, 0.48424, 73, 5.06, 139.14, 0.01214, 72, 42.55, 138.39, 0.00423, 5, 69, 40.8, -37.64, 0.65191, 70, -12.73, -40.99, 0.32048, 74, 97.58, 87.43, 1.0E-5, 73, 8.42, 130.76, 0.01982, 72, 45.29, 129.78, 0.00777, 5, 69, 38.44, -54.38, 0.71916, 70, -26.26, -51.12, 0, 74, 96.29, 70.57, 0.00345, 73, 21.07, 119.54, 0.1842, 72, 57.08, 117.67, 0.09318, 4, 69, 23.78, -76.04, 0.43061, 74, 83.04, 48.02, 0.03707, 73, 31.02, 95.35, 0.38035, 72, 65.23, 92.81, 0.15197, 4, 69, 19.72, -87.73, 0.43061, 74, 79.73, 36.11, 0.03707, 73, 38.51, 85.51, 0.38035, 72, 71.97, 82.45, 0.15197, 1, 74, 8.64, -37.72, 1, 3, 74, -8.04, -32.79, 0.84677, 73, 40.33, -26.06, 0.14386, 72, 65.59, -28.95, 0.00937, 4, 74, -21.41, -25.7, 0.57018, 73, 26.6, -32.42, 0.26616, 72, 51.42, -34.29, 0.16195, 76, 192.1, 168.69, 0.00171, 4, 74, -31.02, -22.73, 0.33017, 73, 18.42, -38.28, 0.17898, 72, 42.84, -39.53, 0.48526, 76, 188.34, 159.36, 0.00559, 4, 74, -35.72, -22.55, 0.22408, 73, 15.43, -41.91, 0.14044, 72, 39.59, -42.93, 0.62818, 76, 187.76, 154.7, 0.00731, 3, 74, -70.46, -24.88, 1.9E-4, 72, 18.36, -70.53, 0.91261, 76, 187.2, 119.88, 0.0872, 3, 74, -93.93, -20.42, 3.0E-5, 72, -0.51, -85.18, 0.84624, 76, 180.8, 96.86, 0.15373, 2, 72, -18.82, -93.87, 0.81495, 76, 171.29, 78.97, 0.18505, 3, 69, -195.31, -109.09, 0, 72, -42.84, -100.62, 0.7529, 76, 156.05, 59.21, 0.24709, 3, 69, -216.68, -85.63, 3.6E-4, 72, -74.48, -103.14, 0.63591, 76, 132.17, 38.31, 0.36373, 4, 69, -238.63, -54.38, 0.00197, 72, -112.62, -101.35, 0.43137, 12, 57.76, -194.75, 0.08735, 76, 100.5, 16.98, 0.47931, 5, 69, -253.44, -18.92, 0.00197, 72, -149.72, -91.35, 0.14044, 12, 21.59, -181.76, 0.06362, 76, 64.76, 2.87, 0.78134, 75, 77.61, 17.77, 0.01262, 5, 69, -260.94, -11.45, 9.5E-4, 72, -160.22, -92.69, 0.07153, 12, 11.02, -182.24, 0.03737, 76, 57.14, -4.48, 0.88025, 75, 71.95, 8.83, 0.0099, 4, 69, -268.48, -4.85, 4.5E-4, 72, -170.06, -94.61, 0.03465, 76, 50.39, -11.89, 0.95925, 75, 67.14, 0.03, 0.00566, 1, 76, 34.03, -26.13, 1, 3, 51, -216.34, 28.86, 2.0E-4, 76, 15.68, -35.57, 0.81577, 75, 39.04, -31.19, 0.18403, 5, 51, -192.72, 35.25, 0.0631, 55, -196.37, 161.78, 7.2E-4, 59, -162.66, 207.4, 0, 76, -7.8, -42.48, 0.05405, 75, 17.86, -43.47, 0.88213, 4, 51, -184.1, 39.22, 0.18554, 55, -187.37, 164.77, 0.00184, 59, -154.08, 211.45, 0, 75, 10.56, -49.52, 0.81262, 4, 51, -177.35, 44.78, 0.28592, 55, -180.04, 169.54, 0.00135, 59, -147.38, 217.07, 0, 75, 5.47, -56.64, 0.71272, 5, 51, -176.68, 45.38, 0.28863, 55, -179.31, 170.07, 0.0013, 59, -146.72, 217.68, 0, 12, -81.63, -165.36, 1.0E-5, 75, 4.98, -57.39, 0.71007, 4, 51, -173.24, 51.46, 0.31367, 55, -175.22, 175.73, 8.7E-4, 59, -143.34, 223.8, 0, 75, 3.23, -64.15, 0.68546, 3, 51, -166.2, 71.7, 0.34666, 55, -165.98, 195.07, 4.4E-4, 75, 1.65, -85.53, 0.65289, 2, 51, -141.89, 93.67, 0.42524, 75, -16.17, -113.02, 0.57476, 2, 51, -118.74, 107.75, 0.48454, 75, -34.9, -132.6, 0.51546, 2, 51, -96.59, 114.73, 0.55349, 75, -54.5, -145.06, 0.44651, 2, 51, -74.01, 117.3, 0.61039, 75, -75.65, -153.38, 0.38961, 2, 51, -58.77, 115.99, 0.65634, 75, -90.71, -156.04, 0.34366, 2, 51, -25.17, 105.34, 0.75408, 75, -125.92, -154.43, 0.24592, 2, 51, 5.49, 86.13, 0.8551, 75, -160.5, -143.78, 0.1449, 3, 51, 32.76, 60.09, 0.94401, 52, -53.12, 29.02, 0.00693, 75, -193.57, -125.66, 0.04907, 3, 51, 42.32, 55.1, 0.86388, 52, -43.5, 33.9, 0.13257, 75, -204.09, -123.31, 0.00355, 1, 54, 30.41, 23.84, 1, 2, 54, 47.37, 6.13, 0.99999, 55, 106.28, 55.12, 1.0E-5, 2, 54, 52.43, -9.92, 0.99999, 55, 108.48, 38.44, 1.0E-5, 1, 58, 48.09, 30.29, 1, 1, 58, 58.74, -1.64, 1, 1, 58, 57.86, -13.26, 1, 1, 58, 45.61, -21.88, 1, 1, 58, 30.41, -28.85, 1, 3, 56, 72.17, -33.84, 0.00629, 57, 55.37, -17.93, 0.14955, 58, 16.6, -33.13, 0.84416, 3, 56, 54.67, -44.4, 0.09084, 57, 41.87, -33.29, 0.49427, 58, -3.22, -38.16, 0.4149, 5, 55, 53.71, -55.8, 0.87477, 56, 19.59, -55.28, 0.07527, 61, 65.97, -0.85, 9.4E-4, 60, 85.04, 11.45, 0.01313, 59, 111.79, 21.49, 0.0359, 5, 55, 49.01, -59.02, 0.87395, 56, 14.99, -58.63, 0.07464, 61, 60.76, -3.16, 0.00107, 60, 80.34, 8.23, 0.0134, 59, 107.51, 17.73, 0.03694, 1, 61, 53.36, -8.04, 1, 1, 61, 40.21, -22.75, 1, 2, 61, 14.29, -33.96, 0.91073, 60, 40.25, -30.52, 0.08927, 3, 60, 23.83, -39.01, 0.14022, 59, 57.1, -35.96, 0.84822, 63, 133.45, -26.35, 0.01156, 3, 60, 12.55, -46.37, 0.14022, 59, 46.78, -44.63, 0.84822, 63, 120.1, -28.12, 0.01156, 1, 65, 51.95, -0.01, 1, 1, 65, 45.21, -12.13, 1, 1, 58, 45.48, 10.93, 1, 1, 58, 29.37, 18.02, 1, 4, 53, 81.18, 0.89, 0, 56, 57.08, 11.68, 7.0E-4, 57, 27.21, 20.9, 0.10353, 58, 15.34, 14.82, 0.89577, 4, 53, 78.02, -13.47, 0.00127, 56, 43.79, 5.41, 0.05124, 57, 16.43, 10.89, 0.71815, 58, 0.8, 12.66, 0.22934, 4, 53, 69.38, -2.6, 0.00546, 56, 47.12, 18.89, 0.18493, 57, 15.53, 24.75, 0.78229, 58, 7.89, 24.6, 0.02732, 6, 51, 89.92, -72.07, 3.0E-5, 53, 58.09, -7.53, 0.01888, 55, 72.64, 23.81, 0.00219, 56, 36.32, 24.82, 0.32693, 57, 3.44, 27.13, 0.64706, 58, -0.73, 33.4, 0.00492, 6, 51, 77.12, -70.96, 8.9E-4, 53, 48.64, -16.23, 0.06582, 54, 6.83, -30.26, 0, 55, 60.04, 26.33, 0.03161, 56, 23.65, 26.99, 0.52222, 57, -9.29, 25.37, 0.37945, 6, 51, 66.04, -73.23, 0.00406, 53, 42.83, -25.93, 0.14008, 54, -4.08, -33.23, 4.9E-4, 55, 48.78, 25.3, 0.13401, 56, 12.42, 25.66, 0.58249, 57, -19.59, 20.7, 0.13888, 7, 51, 59.53, -73.88, 0.0108, 53, 38.92, -31.17, 0.25633, 54, -10.53, -34.29, 0.00222, 55, 42.24, 25.38, 0.23363, 56, 5.89, 25.55, 0.46187, 57, -25.78, 18.63, 0.03514, 75, -254.01, -3.15, 0, 8, 51, 59.34, -62.17, 0.02229, 53, 30.15, -23.41, 0.57544, 54, -11.47, -22.62, 0.08064, 55, 43.34, 37.04, 0.17915, 56, 6.67, 37.24, 0.14047, 57, -28.58, 30, 0.002, 59, 90.33, 112.41, 1.0E-5, 75, -250.8, -14.4, 1.0E-5, 6, 51, 67.51, -60.86, 0.01021, 53, 34.7, -16.5, 0.4313, 54, -3.39, -20.79, 0.39272, 55, 51.61, 37.43, 0.09481, 56, 14.92, 37.86, 0.07071, 57, -20.9, 33.09, 2.5E-4, 5, 51, 78.59, -58.6, 0.00151, 53, 40.5, -6.79, 0.10574, 54, 7.52, -17.83, 0.84213, 55, 62.87, 38.46, 0.02818, 56, 26.15, 39.19, 0.02244, 3, 54, 19.93, -10.68, 0.99739, 55, 76.34, 43.34, 0.00113, 56, 39.48, 44.44, 0.00148, 2, 54, 34.19, -1.76, 0.99999, 55, 91.93, 49.64, 1.0E-5, 4, 52, 63.4, 24.34, 7.9E-4, 54, 24.29, 4.49, 0.99911, 55, 83.27, 57.51, 4.0E-5, 56, 46.01, 58.81, 6.0E-5, 2, 52, 53.54, 19.3, 0.01438, 54, 14.15, 8.93, 0.98562, 3, 52, 46.01, 13.58, 0.1556, 53, 18.56, 12.31, 0.00403, 54, 4.96, 11.15, 0.84037, 4, 51, 74.48, -8.18, 0.00596, 52, 26.68, 23.23, 0.8572, 53, 0.52, 24.19, 0.02593, 54, 0.21, 32.22, 0.11091, 3, 51, 65.31, 14.67, 0.23138, 52, 2.76, 29.07, 0.76156, 54, -10.4, 54.45, 0.00706, 7, 51, 48.7, 28.21, 0.67566, 52, -17.92, 23.43, 0.32075, 53, -43.73, 29.71, 0.00266, 54, -27.84, 66.9, 4.3E-4, 55, 42.78, 128.03, 2.4E-4, 56, 3.59, 128.18, 0, 75, -217.19, -98.97, 2.6E-4, 3, 51, 30.55, 40.45, 0.9222, 52, -38.44, 15.79, 0.06554, 75, -196.5, -106.12, 0.01226, 2, 51, 8.22, 55.08, 0.91661, 75, -171.15, -114.49, 0.08339, 2, 51, -14.79, 73.28, 0.82593, 75, -144.22, -126.13, 0.17407, 2, 51, -50.99, 88.31, 0.69, 75, -105.37, -131.3, 0.31, 4, 51, -82.39, 87.11, 0.58501, 55, -80.98, 201.1, 3.5E-4, 59, -52.83, 260.32, 8.0E-5, 75, -75.34, -122.05, 0.41456, 2, 51, -109.81, 86.69, 0.49691, 75, -48.96, -114.56, 0.50309, 4, 51, -152.39, 69.42, 0.37079, 55, -152.5, 191.27, 3.1E-4, 12, -115.7, -168.13, 7.0E-5, 75, -12.29, -86.89, 0.6289, 3, 51, -226.77, 2.25, 1.0E-5, 76, 25.53, -8.73, 0.99236, 75, 42.24, -2.79, 0.00764, 6, 62, -157.34, 206.11, 0, 69, -232.77, -13.74, 0.00284, 72, -141.16, -71.83, 0.23126, 12, 31.72, -163, 0.08611, 76, 59.98, 23.64, 0.66942, 75, 68.05, 36.82, 0.01037, 5, 69, -244.96, 0.19, 0.00133, 72, -159.64, -72.94, 0.09709, 12, 13.21, -162.6, 0.04711, 76, 45.82, 11.72, 0.84357, 75, 57.11, 21.89, 0.01091, 7, 62, -174.43, 189.73, 5.8E-4, 66, -191.97, 183.68, 3.0E-5, 69, -217.99, -32.24, 0.00481, 72, -117.49, -71.48, 0.379, 12, 55.34, -164.57, 0.09431, 76, 78.76, 38.05, 0.51856, 75, 82.89, 55.27, 0.00272, 7, 62, -207.82, 170.09, 2.7E-4, 66, -219.99, 156.94, 1.0E-5, 69, -201.44, -67.25, 0.0016, 72, -79.67, -79.85, 0.57281, 12, 92.35, -175.99, 0.0698, 76, 114.1, 53.9, 0.35526, 75, 113.46, 79.04, 2.5E-4, 3, 72, -42.55, -78.46, 0.73306, 12, 129.46, -177.63, 0.03857, 76, 143.06, 77.17, 0.22837, 7, 62, -244.3, 117.97, 3.0E-5, 66, -243.61, 97.86, 0, 69, -152.81, -108.28, 1.5E-4, 74, -91.15, 4.62, 4.0E-5, 72, -17.45, -66.53, 0.84707, 76, 156.08, 101.72, 0.15268, 75, 142.92, 135.44, 3.0E-5, 3, 74, -66.32, 2.03, 2.0E-4, 72, 0.92, -49.63, 0.91733, 76, 160.73, 126.25, 0.08247, 6, 62, -242.92, 69.26, 0, 69, -104.18, -111.3, 7.5E-4, 74, -42.42, 4.7, 0.01123, 73, -10.33, -30.78, 0.03659, 72, 14.72, -29.93, 0.92177, 76, 160.05, 150.28, 0.02966, 4, 74, -18.69, 0.98, 0.2006, 73, 6.99, -14.12, 0.37893, 72, 33.22, -14.6, 0.41565, 76, 165.74, 173.63, 0.00482, 3, 74, 3.78, -9.18, 0.80361, 73, 28.67, -2.37, 0.19166, 72, 55.7, -4.47, 0.00473, 4, 69, -35.85, -128.85, 1.2E-4, 74, 26.88, -8.47, 0.99962, 73, 42.07, 16.46, 2.3E-4, 72, 70.44, 13.33, 2.0E-5, 4, 69, -33.92, -110.54, 0.0582, 74, 27.65, 9.93, 0.58294, 73, 27.88, 28.19, 0.31311, 72, 57.16, 26.07, 0.04575, 4, 69, -47.94, -106.29, 0.03974, 74, 13.38, 13.28, 0.25268, 73, 16.59, 18.86, 0.62663, 72, 45.21, 17.59, 0.08096, 4, 69, -30.2, -102.35, 0.14068, 74, 30.83, 18.34, 0.27659, 73, 23.1, 35.82, 0.47599, 72, 52.95, 34.02, 0.10675, 4, 69, -8.06, -93.31, 0.32208, 74, 52.35, 28.77, 0.07921, 73, 27.81, 59.27, 0.44582, 72, 59.37, 57.06, 0.15289, 4, 69, -1.02, -73, 0.46048, 74, 58.09, 49.48, 0.0333, 73, 14.77, 76.36, 0.35772, 72, 47.63, 75.07, 0.1485, 4, 69, -1.74, -64.05, 0.52951, 74, 56.81, 58.37, 0.02503, 73, 6.92, 80.71, 0.3051, 72, 40.11, 79.98, 0.14036, 5, 69, 13.35, -50.79, 0.6975, 70, -41.41, -30.8, 0, 74, 71.02, 72.56, 0.00516, 73, 4.21, 100.61, 0.19823, 72, 38.87, 100.03, 0.09911, 5, 69, 13.13, -30.71, 0.81374, 70, -27.33, -16.49, 0.02761, 74, 69.53, 92.58, 0.00145, 73, -12.64, 111.53, 0.10397, 72, 22.87, 112.15, 0.05323, 5, 69, 14.3, -23.24, 0.8418, 70, -21.2, -12.05, 0.05564, 74, 70.22, 100.11, 2.6E-4, 73, -18.22, 116.63, 0.06746, 72, 17.68, 117.66, 0.03484, 5, 69, 22.23, -19.73, 0.69907, 70, -13.12, -15.2, 0.24947, 74, 77.91, 104.12, 9.0E-5, 73, -16.76, 125.18, 0.03504, 72, 19.76, 126.08, 0.01633, 4, 69, 34.7, -8.86, 0.21307, 70, 3.38, -16.38, 0.78428, 73, -18.93, 141.58, 0.00236, 72, 18.81, 142.59, 2.9E-4, 5, 69, 38.31, 9.37, 0.00141, 70, 18.85, -6.08, 0.9019, 71, -5.65, -6.53, 0.09669, 73, -32.13, 154.66, 0, 72, 6.6, 156.6, 0, 3, 70, 33.94, 12.91, 0.00191, 71, 18.3, -2.64, 0.99809, 72, -14.17, 169.13, 0, 2, 70, 36.45, 24.23, 1.0E-5, 71, 27.76, 4.05, 0.99999, 3, 70, 24.86, 12.56, 7.0E-4, 71, 11.34, 3.21, 0.9993, 72, -12.65, 160.17, 0, 7, 62, -104.64, -49, 2.0E-4, 66, -69.51, -32.8, 0.00147, 69, 26.05, 15.77, 0.03495, 70, 14.75, 7.13, 0.23874, 71, 0.2, 6, 0.72463, 73, -44.24, 147.99, 2.0E-5, 12, 184.58, 47.93, 5.0E-5, 9, 62, -107.35, -38.53, 0.00744, 66, -74.54, -23.23, 0.0415, 69, 15.38, 14.02, 0.54813, 70, 5.98, 13.46, 0.29395, 71, -2.03, 16.57, 0.10411, 73, -48.68, 138.13, 9.8E-4, 72, -11.11, 141.33, 5.5E-4, 12, 178.68, 38.88, 0.00332, 76, 37.11, 272.29, 2.0E-5, 3, 62, -58.47, -59.17, 0.00224, 66, -22.24, -32.16, 0.9069, 69, 40.33, 60.84, 0.09086, 2, 66, -4.04, -31.05, 0.96648, 69, 45.02, 78.46, 0.03352, 3, 67, -12.67, -15.69, 0.12808, 66, 15.34, -19.78, 0.86865, 69, 40.43, 100.41, 0.00327, 2, 67, 2.51, -15.2, 0.61565, 66, 28.55, -12.28, 0.38435, 2, 67, 29.8, -16.69, 0.4901, 68, 3.32, -16.95, 0.5099, 2, 67, 49.05, -3.69, 0, 68, 23.39, -5.24, 1, 5, 63, -0.06, -18.66, 0.77563, 64, -22.47, -25.08, 0.00306, 62, 42.61, -14.44, 0.21552, 67, 57.38, 8.78, 0.00424, 68, 32.52, 6.65, 0.00154, 3, 63, 18.04, -17.26, 0.87883, 64, -5.29, -19.2, 0.12017, 62, 55.69, -1.86, 0.00101, 5, 59, -35.84, -74.5, 5.5E-4, 65, -8.22, -10.03, 0.03811, 63, 34.35, -8.97, 0.15425, 64, 8.43, -7.08, 0.80637, 62, 63.01, 14.92, 7.1E-4, 2, 65, 9.98, -9.61, 0.8721, 64, 25.9, -12.17, 0.1279, 1, 65, 29.51, 3.26, 1, 1, 65, 14.67, 6.2, 1, 3, 65, 0.27, 4.34, 0.56556, 63, 49.16, -1.28, 0.00583, 64, 20.84, 4.06, 0.42861, 6, 59, -43.1, -59.98, 0.00876, 65, -15.36, 4.55, 0.01251, 63, 36.02, 7.18, 0.17326, 64, 6, 8.97, 0.79128, 62, 54.04, 28.44, 0.01128, 12, 20.4, 112.9, 0.00291, 11, 59, -59.88, -67.63, 0.07134, 63, 17.76, 9.74, 0.56857, 64, -12.32, 6.88, 0.08475, 62, 38.31, 18.81, 0.19259, 67, 61.56, 42.04, 0.04011, 68, 38.88, 39.57, 0.01731, 66, 54.18, 65.86, 4.0E-5, 69, -28.61, 164.25, 1.3E-4, 72, -156.81, 198.57, 1.0E-5, 12, 38.12, 107.78, 0.02515, 76, -113.96, 231.26, 0, 9, 59, -52.45, -54.52, 0.20993, 63, 31.07, 16.81, 0.52965, 64, -1.2, 17.05, 0.02377, 62, 44.09, 32.73, 0.16784, 66, 56.63, 80.73, 0.00198, 69, -41.95, 171.26, 0.00264, 72, -170.52, 192.31, 5.9E-4, 12, 23.94, 102.66, 0.06351, 76, -121.23, 218.06, 8.0E-5, 10, 51, -70.81, -218.33, 2.9E-4, 53, 57.58, -224.84, 0, 55, -103.3, -103.74, 8.5E-4, 59, -38.32, -44.99, 0.44904, 63, 48.11, 17.26, 0.35799, 64, 15.18, 21.75, 1.2E-4, 62, 56.96, 43.9, 0.11984, 69, -51.92, 185.08, 0, 12, 7.01, 104.63, 0.07178, 75, -165.37, 170.05, 9.0E-5, 4, 59, -19.31, -41.15, 0.70525, 63, 66.2, 10.3, 0.20549, 62, 75.35, 50.03, 0.05414, 12, -9.92, 114.08, 0.03512, 4, 59, -7.14, -39.01, 0.83168, 63, 77.62, 5.56, 0.1266, 62, 87.17, 53.64, 0.02651, 12, -20.55, 120.38, 0.0152, 5, 60, -24.91, -38.24, 0.00329, 59, 8.62, -41.06, 0.92941, 63, 89.81, -4.62, 0.06011, 62, 103.06, 53.52, 0.00719, 12, -31.18, 132.19, 9.0E-5, 4, 60, -5.25, -30.81, 0.10163, 59, 27.24, -31.33, 0.87819, 63, 110.75, -6.41, 0.01931, 62, 120.36, 65.46, 8.7E-4, 4, 61, -12.93, -14.19, 0.02943, 60, 9.89, -16.04, 0.70446, 59, 40.48, -14.84, 0.26406, 63, 130.78, 0.39, 0.00204, 4, 61, -0.64, -11.8, 0.48428, 60, 21.54, -11.45, 0.50694, 59, 51.5, -8.88, 0.0087, 63, 143.27, -0.5, 8.0E-5, 2, 61, 13.57, -9.68, 0.96453, 60, 35.13, -6.77, 0.03547, 4, 55, 11.96, -63, 0.00561, 61, 23.61, -0.33, 0.97504, 60, 43.29, 4.25, 0.0106, 59, 71.21, 9.32, 0.00875, 1, 61, 31.56, 6.32, 1, 3, 55, 6.09, -51.81, 0.00252, 61, 19.87, 11.75, 0.99347, 59, 64.03, 19.73, 0.00401, 7, 51, 18.67, -161.18, 2.0E-5, 55, -8.05, -56.86, 0.06207, 61, 5.06, 9.36, 0.66636, 60, 23.29, 10.4, 0.16334, 59, 50.61, 13.01, 0.1082, 63, 154.27, 18.46, 0, 75, -237.06, 91.75, 0, 8, 51, 10.42, -156, 2.3E-4, 55, -15.67, -50.8, 0.18991, 56, -49.89, -52.2, 0, 61, -1.33, 16.7, 0.16819, 60, 15.67, 16.45, 0.23926, 59, 42.32, 18.11, 0.40071, 12, -95.28, 109.19, 0.00168, 75, -227.76, 88.87, 2.0E-5, 8, 51, 17.68, -148.17, 3.0E-5, 55, -7.59, -43.82, 0.4622, 56, -42.01, -45, 6.4E-4, 61, 7.88, 22.09, 0.08502, 60, 23.74, 23.43, 0.14043, 59, 49.49, 26.01, 0.31036, 12, -105.87, 107.86, 0.00132, 75, -232.75, 79.44, 0, 7, 51, 34.74, -143.78, 0, 55, 9.85, -41.34, 0.80647, 56, -24.65, -42.04, 0.02624, 61, 25.48, 21.35, 0.01208, 60, 41.18, 25.91, 0.03604, 59, 66.51, 30.57, 0.11918, 75, -248.1, 70.79, 0, 5, 55, 30.96, -44.37, 0.86642, 56, -3.46, -44.49, 0.06885, 61, 45.68, 14.53, 0.00231, 60, 62.29, 22.88, 0.01596, 59, 87.83, 30.1, 0.04645, 5, 55, 38.39, -37.03, 0.87214, 56, 3.77, -36.94, 0.07537, 61, 54.33, 20.39, 0.00119, 60, 69.73, 30.22, 0.01359, 59, 94.33, 38.28, 0.03771, 8, 51, 51.12, -130.87, 0, 55, 27.56, -30.33, 0.77931, 56, -7.25, -30.54, 0.15115, 57, -21.33, -38.81, 0.01012, 61, 44.9, 28.95, 0.00225, 60, 58.9, 36.92, 0.0133, 59, 82.77, 43.63, 0.04386, 75, -260.59, 54.09, 0, 8, 51, 58.54, -121.18, 1.0E-5, 53, 73.16, -63.82, 2.5E-4, 55, 36.01, -21.52, 0.55291, 56, 0.95, -21.5, 0.38245, 57, -16.25, -27.72, 0.04785, 61, 54.81, 36.08, 4.1E-4, 60, 67.34, 45.73, 0.0043, 59, 90.09, 53.4, 0.01182, 8, 51, 74.21, -119.25, 1.0E-5, 53, 82.31, -50.96, 3.4E-4, 55, 51.8, -21.33, 0.11516, 56, 16.73, -20.88, 0.50778, 57, -1.4, -22.35, 0.36897, 58, -32.72, -4.66, 0.00762, 60, 83.13, 45.92, 7.0E-5, 59, 105.74, 55.48, 5.0E-5, 4, 53, 95.12, -37.58, 7.0E-5, 56, 35.15, -22.85, 0.22794, 57, 16.75, -18.66, 0.68804, 58, -15.66, -11.88, 0.08395, 4, 53, 99.68, -23.53, 4.0E-5, 56, 49.06, -17.88, 0.0309, 57, 28.5, -9.71, 0.42541, 58, -0.9, -11.15, 0.54365, 4, 53, 100.1, -11.03, 0, 56, 59.21, -10.58, 0.00587, 57, 35.97, 0.32, 0.16531, 58, 10.92, -7.11, 0.82882, 2, 57, 45.95, 13.51, 0.00206, 58, 26.62, -1.88, 0.99794, 1, 58, 37.82, 4.3, 1, 8, 51, -2.71, -169.47, 2.4E-4, 55, -30.21, -62.73, 0.04976, 60, 1.12, 4.52, 0.59906, 59, 29.31, 4.51, 0.34967, 63, 131.74, 22.72, 6.0E-5, 62, 118.05, 101.28, 0, 12, -76.55, 111.05, 0.00119, 75, -218.55, 105.28, 2.0E-5, 4, 60, -17.17, -8.39, 0.05654, 59, 12.71, -10.5, 0.92729, 63, 109.67, 18.97, 0.01452, 62, 103.4, 84.36, 0.00166, 5, 55, -22.7, -71.88, 0.00501, 61, -12.09, -2.75, 0.07362, 60, 8.64, -4.63, 0.90766, 59, 37.87, -3.66, 0.01362, 63, 134.57, 11.22, 1.0E-4, 4, 53, 87.75, -22.83, 6.5E-4, 56, 42.32, -8, 0.09971, 57, 19.1, -2.34, 0.64714, 58, -4.49, 0.25, 0.25249, 8, 51, 75.84, -97.29, 4.0E-5, 53, 67.21, -34.93, 0.0015, 55, 55.85, 0.3, 0.26646, 56, 20.19, 0.86, 0.28032, 57, -4.68, -0.58, 0.37005, 58, -23.11, 15.14, 0.08161, 60, 87.19, 67.55, 1.0E-5, 59, 107.17, 77.45, 1.0E-5, 7, 51, 53.53, -99.12, 4.9E-4, 53, 53.5, -52.63, 0.0076, 54, -14.91, -59.86, 5.0E-5, 55, 33.48, 0.96, 0.5825, 56, -2.2, 0.9, 0.40865, 57, -26.03, -7.32, 7.1E-4, 75, -254.73, 22.79, 0, 6, 51, 63.9, -37.33, 0.00763, 52, 44.23, -2.34, 0.02582, 53, 14.9, -3.29, 0.62092, 54, -8.5, 2.46, 0.31165, 55, 50.63, 61.22, 0.02158, 56, 13.28, 61.61, 0.0124, 7, 59, -74.64, -92.04, 0.01828, 63, -7.8, -2.94, 0.17463, 64, -33.89, -11.79, 0.02172, 62, 26.64, -7.22, 0.66606, 67, 43.73, 19.77, 0.08495, 68, 19.63, 18.52, 0.03434, 69, -3.73, 150.28, 2.0E-5, 5, 62, -3.51, -31.52, 0.05427, 67, 8.44, 3.82, 0.69362, 66, 24.95, 7.31, 0.25142, 69, 17.75, 118.06, 6.7E-4, 72, -91.91, 206.93, 2.0E-5, 8, 62, -127.91, -27.17, 0.00798, 66, -97.15, -16.86, 0.03863, 69, 2.21, -5.44, 0.87464, 70, -17.1, 9.08, 0.00279, 71, -22.06, 28.86, 5.2E-4, 73, -39.74, 116.4, 0.02068, 72, -3.8, 119, 0.05378, 76, 56.3, 258.74, 9.8E-4, 8, 62, -170.11, -15.75, 0.00378, 66, -140.84, -15.38, 6.4E-4, 69, -12.96, -46.44, 0.58056, 70, -56.87, -9.07, 0.00954, 74, 44.49, 75.23, 0.00788, 73, -13.96, 81.09, 0.18745, 72, 19.32, 81.9, 0.20761, 76, 97, 242.76, 0.00254, 5, 62, -221.67, 27.33, 1.0E-5, 69, -60.51, -93.9, 0.06391, 74, 0.05, 24.84, 0.03075, 73, -0.69, 15.23, 0.33778, 72, 27.71, 15.24, 0.56754, 9, 51, -23.01, -84.7, 0.16846, 53, -8.79, -99.4, 0.07257, 55, -41, 23.77, 0.46371, 59, 8.19, 89.09, 0.16264, 63, 159.33, 105.41, 8.2E-4, 62, 86.78, 182.65, 5.7E-4, 69, -187.42, 227.27, 0, 12, -115.56, 33.1, 0.09739, 75, -177.06, 28.62, 0.03385, 8, 51, 23.89, -102.98, 0.0108, 53, 36.34, -77.12, 0.01361, 55, 3.59, 0.41, 0.94404, 56, -32.06, -0.48, 3.9E-4, 61, 26.92, 63.54, 0.00104, 60, 34.92, 67.66, 0.00375, 59, 55.27, 71.26, 0.0251, 75, -227.08, 34.17, 0.00127, 8, 51, 20.4, -133.6, 1.2E-4, 55, -3.27, -29.64, 0.69398, 56, -38.09, -30.7, 0.00294, 61, 14.71, 35.25, 0.01252, 60, 28.06, 37.61, 0.06334, 59, 52.07, 40.61, 0.22578, 12, -117.32, 98.46, 0.00131, 75, -231.62, 64.66, 1.0E-5, 12, 51, -88.11, -146.35, 0.02051, 53, -7.21, -189.04, 2.8E-4, 55, -112.53, -30.29, 0.05978, 59, -56.31, 26.81, 0.40682, 63, 71.48, 87.5, 0.06382, 62, 30.35, 112.98, 0.06127, 66, 24.92, 155.72, 0.00564, 69, -123.11, 164.8, 0.01001, 72, -215.13, 124.2, 0.0062, 12, -26.06, 38.4, 0.35635, 76, -116.37, 136.78, 0.00245, 75, -130.08, 104.99, 0.00686, 10, 59, -143.68, -34.12, 0.01117, 63, -34.95, 83, 0.03474, 62, -48.94, 41.85, 0.37667, 66, -36.03, 68.37, 0.12263, 69, -59.42, 79.43, 0.15739, 73, -144.53, 111.94, 0.00139, 72, -108.63, 122.26, 0.04277, 12, 79.93, 27.8, 0.24781, 76, -29.76, 198.79, 0.0054, 75, -60.61, 185.74, 2.0E-5, 9, 63, -25.62, 155.11, 0.00417, 62, -87.59, 103.45, 0.08893, 66, -87.72, 119.52, 0.01971, 69, -124.24, 46.49, 0.11271, 73, -152.91, 39.72, 1.5E-4, 72, -122.3, 50.84, 0.1728, 12, 60.5, -42.27, 0.49949, 76, 1.9, 133.33, 0.08277, 75, -14.35, 129.63, 0.01927, 12, 51, -139.31, -90.93, 0.04663, 53, -82.67, -189.43, 4.2E-4, 55, -157.27, 30.46, 0.02665, 59, -108.04, 81.74, 0.02562, 63, 57.32, 161.61, 3.5E-4, 62, -27.69, 161.19, 0.00617, 66, -42.59, 189.41, 0.00136, 69, -176.35, 111.34, 0.00765, 72, -205.48, 49.37, 0.01096, 12, -22.52, -36.97, 0.67574, 76, -63.96, 82.5, 0.00785, 75, -66.31, 64.66, 0.19058, 11, 51, -189.12, -43.57, 0.0059, 55, -201.53, 83.04, 0.00168, 59, -158.3, 128.61, 1.0E-5, 63, 40.08, 228.14, 1.1E-4, 62, -83.3, 201.59, 0.00248, 66, -105.95, 216.04, 5.2E-4, 69, -221.6, 59.6, 0.00513, 72, -192.29, -18.08, 0.03672, 12, -14.87, -105.27, 0.18124, 76, -13.12, 36.25, 0.11839, 75, -5.96, 31.76, 0.64782, 10, 51, -77.22, -30.28, 0.39819, 53, -85.53, -102.68, 0.01556, 55, -88.85, 83.86, 0.09498, 59, -46.54, 142.98, 0.03932, 63, 142.09, 180.26, 0, 69, -239.54, 170.85, 4.0E-5, 72, -291.22, 35.87, 6.1E-4, 12, -109.08, -43.44, 0.17822, 76, -124.7, 20.5, 0.00339, 75, -110.64, -9.97, 0.26968, 6, 51, -90.77, 35.25, 0.5107, 53, -143.04, -68.46, 2.1E-4, 55, -95.05, 150.49, 0.00861, 59, -60.72, 208.38, 0.00207, 12, -140.88, -102.33, 0.02539, 75, -80.63, -69.78, 0.45302, 8, 51, -6.79, 1.23, 0.88982, 52, -28.27, -37.39, 0.00476, 53, -61.27, -29.44, 0.02991, 55, -15.36, 107.37, 0.02587, 56, -53.95, 105.92, 0.00177, 59, 23.59, 175.17, 0.00179, 12, -183.27, -22.25, 0.00829, 75, -170.55, -58.59, 0.0378, 6, 51, 46.81, 2.44, 0.52359, 52, 1.94, 6.9, 0.42865, 53, -25.99, 10.93, 0.03732, 54, -28.09, 41.07, 0.00704, 55, 38.04, 102.64, 0.0034, 56, -0.44, 102.67, 1.0E-5, 8, 62, -59.23, -25.3, 0.09867, 66, -30.71, 0.64, 0.68825, 69, 6.53, 63.14, 0.18961, 70, 34.57, 54.36, 6.7E-4, 71, 46.64, 27.61, 7.0E-5, 72, -55.36, 164.42, 0.00208, 12, 136.46, 65.49, 0.02057, 76, -12.17, 264.41, 9.0E-5 ],
+ "hull": 68,
+ "edges": [ 0, 134, 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 20, 22, 22, 24, 24, 26, 26, 28, 28, 30, 30, 32, 32, 34, 34, 36, 36, 38, 38, 40, 40, 42, 42, 44, 44, 46, 46, 48, 48, 50, 50, 52, 52, 54, 54, 56, 56, 58, 58, 60, 60, 62, 62, 64, 64, 66, 66, 68, 68, 70, 70, 72, 72, 74, 74, 76, 76, 78, 78, 80, 80, 82, 82, 84, 84, 86, 86, 88, 88, 90, 90, 92, 92, 94, 94, 96, 96, 98, 98, 100, 100, 102, 102, 104, 104, 106, 106, 108, 108, 110, 110, 112, 112, 114, 114, 116, 116, 118, 118, 120, 120, 122, 122, 124, 124, 126, 126, 128, 128, 130, 130, 132, 132, 134 ],
+ "width": 514,
+ "height": 366
+ }
+ },
+ "huobeijing3": {
+ "item7_2": {
+ "type": "mesh",
+ "uvs": [ 0, 0.02445, 0, 0.04478, 0.02405, 0.07371, 0.04372, 0.07461, 0.06725, 0.07778, 0.07857, 0.0945, 0.06487, 0.11393, 0.06666, 0.1424, 0.08215, 0.16681, 0.10181, 0.19347, 0.11849, 0.20613, 0.11671, 0.22059, 0.10092, 0.2337, 0.08215, 0.21517, 0.06278, 0.20297, 0.04133, 0.19619, 0.01154, 0.18534, 0.01184, 0.21698, 0.02912, 0.24545, 0.03537, 0.27347, 0.02354, 0.32134, 0.00715, 0.36156, 0, 0.41083, 0, 0.47771, 0.01526, 0.50991, 0.03075, 0.54154, 0.03164, 0.59922, 0.03433, 0.65119, 0.04326, 0.70226, 0.05802, 0.74826, 0.07243, 0.7863, 0.09059, 0.82609, 0.1148, 0.86282, 0.1442, 0.89211, 0.18216, 0.92394, 0.2228, 0.94011, 0.28765, 0.93355, 0.31935, 0.89464, 0.35759, 0.88216, 0.39736, 0.89877, 0.43166, 0.92632, 0.47022, 0.95124, 0.51287, 0.94337, 0.55178, 0.93812, 0.58089, 0.95168, 0.62182, 0.97835, 0.67152, 0.99617, 0.71245, 1, 0.75914, 0.99749, 0.80785, 0.97737, 0.8708, 0.90064, 0.9002, 0.84336, 0.95179, 0.81144, 0.98858, 0.78785, 1, 0.74063, 0.98339, 0.69953, 0.97734, 0.66017, 0.98318, 0.61114, 0.97885, 0.55124, 0.95666, 0.52282, 0.95435, 0.45855, 0.92207, 0.41438, 0.92438, 0.36806, 0.92207, 0.32915, 0.9042, 0.2828, 0.87999, 0.25309, 0.85661, 0.228, 0.83684, 0.22091, 0.84439, 0.24927, 0.86273, 0.27164, 0.87243, 0.29509, 0.86668, 0.32018, 0.84727, 0.324, 0.82246, 0.312, 0.81347, 0.29618, 0.82605, 0.26018, 0.82749, 0.22746, 0.82749, 0.19091, 0.8167, 0.14891, 0.79089, 0.11499, 0.75925, 0.08117, 0.72725, 0.06753, 0.69453, 0.04463, 0.66433, 0.03099, 0.63017, 0.00863, 0.6366, 0.03441, 0.6517, 0.05841, 0.66568, 0.07349, 0.67728, 0.08715, 0.66724, 0.09017, 0.65217, 0.07704, 0.6346, 0.05878, 0.62176, 0.04349, 0.60116, 0.03496, 0.58096, 0.03344, 0.55669, 0.04182, 0.54563, 0.04729, 0.53386, 0.02907, 0.51343, 0.00974, 0.48772, 0.00428, 0.46369, 0, 0.47475, 0.02469, 0.49229, 0.04693, 0.51223, 0.06916, 0.52881, 0.08885, 0.54515, 0.10598, 0.56149, 0.11656, 0.54467, 0.12567, 0.51824, 0.1202, 0.49709, 0.09906, 0.47687, 0.07945, 0.45645, 0.06086, 0.43746, 0.0379, 0.41584, 0.02113, 0.38297, 0.01626, 0.36783, 0.03595, 0.33995, 0.03777, 0.31193, 0.01789, 0.28934, 0.01388, 0.26892, 0.02154, 0.23864, 0.03247, 0.2581, 0.05835, 0.27098, 0.07738, 0.29531, 0.07835, 0.29531, 0.09972, 0.28027, 0.11331, 0.25754, 0.09292, 0.24474, 0.07204, 0.2265, 0.04776, 0.19321, 0.03757, 0.19545, 0.06087, 0.20921, 0.07835, 0.19257, 0.08661, 0.17657, 0.08564, 0.1596, 0.05165, 0.13419, 0.0284, 0.09771, 0.01529, 0.06026, 0.00947, 0.01993, 0.00995, 0.7129, 0.14698, 0.75563, 0.23218, 0.74891, 0.12197, 0.78127, 0.18494, 0.70191, 0.084, 0.88739, 0.38204, 0.90021, 0.32647, 0.88373, 0.28109, 0.94656, 0.72262, 0.89937, 0.75528, 0.94987, 0.78291, 0.8416, 0.6145, 0.65972, 0.35698, 0.43055, 0.31835, 0.2608, 0.33491, 0.12985, 0.53724, 0.2123, 0.76901, 0.45844, 0.77637, 0.26444, 0.57587, 0.44147, 0.56116, 0.61728, 0.56116, 0.69488, 0.82603, 0.45521, 0.11696, 0.37831, 0.12992, 0.32315, 0.12638, 0.34645, 0.08042, 0.41715, 0.0816, 0.16079, 0.15349, 0.2478, 0.14642, 0.20662, 0.2077, 0.14914, 0.29255, 0.06757, 0.3173, 0.07679, 0.42906 ],
+ "triangles": [ 158, 157, 152, 156, 159, 160, 150, 159, 151, 156, 158, 159, 151, 159, 152, 152, 159, 158, 34, 33, 155, 33, 32, 155, 32, 31, 155, 31, 30, 155, 30, 29, 155, 29, 154, 155, 155, 154, 157, 29, 28, 154, 28, 27, 154, 27, 26, 154, 26, 25, 154, 154, 153, 157, 154, 25, 171, 25, 24, 171, 154, 171, 169, 154, 169, 153, 24, 23, 171, 171, 23, 22, 21, 171, 22, 21, 20, 170, 12, 169, 170, 169, 12, 11, 171, 21, 170, 169, 171, 170, 170, 13, 12, 11, 10, 169, 20, 19, 170, 170, 19, 13, 13, 19, 14, 14, 18, 15, 14, 19, 18, 18, 17, 15, 17, 16, 15, 5, 4, 136, 3, 137, 4, 4, 137, 136, 137, 3, 138, 1, 138, 2, 3, 2, 138, 1, 0, 138, 7, 5, 8, 166, 5, 134, 134, 5, 135, 135, 5, 136, 8, 5, 166, 7, 6, 5, 10, 9, 166, 9, 8, 166, 166, 134, 133, 125, 163, 167, 153, 152, 157, 169, 168, 153, 168, 167, 153, 163, 153, 167, 168, 10, 166, 168, 169, 10, 166, 132, 168, 167, 132, 131, 167, 168, 132, 166, 133, 132, 131, 127, 167, 167, 126, 125, 167, 127, 126, 131, 128, 127, 131, 130, 128, 130, 129, 128, 123, 119, 118, 123, 117, 116, 123, 118, 117, 121, 119, 122, 123, 122, 119, 121, 120, 119, 164, 163, 123, 123, 116, 164, 164, 116, 115, 125, 124, 163, 163, 152, 153, 152, 163, 162, 151, 152, 107, 152, 108, 107, 152, 161, 108, 161, 109, 108, 161, 110, 109, 152, 162, 161, 161, 162, 165, 163, 164, 162, 164, 115, 162, 113, 165, 114, 114, 165, 115, 115, 165, 162, 161, 111, 110, 161, 165, 111, 163, 124, 123, 165, 112, 111, 165, 113, 112, 103, 98, 97, 103, 102, 98, 101, 99, 102, 102, 99, 98, 101, 100, 99, 106, 105, 95, 105, 96, 95, 105, 104, 96, 104, 103, 96, 103, 97, 96, 107, 106, 151, 106, 92, 91, 106, 93, 92, 106, 94, 93, 106, 95, 94, 151, 89, 139, 89, 88, 139, 151, 106, 89, 106, 91, 90, 89, 106, 90, 88, 87, 82, 86, 83, 87, 87, 83, 82, 86, 85, 83, 85, 84, 83, 88, 143, 139, 141, 143, 81, 143, 88, 82, 143, 82, 81, 151, 140, 74, 151, 139, 140, 74, 140, 75, 75, 140, 76, 76, 140, 142, 139, 141, 140, 140, 141, 142, 142, 77, 76, 142, 78, 77, 142, 79, 78, 142, 141, 79, 141, 139, 143, 141, 80, 79, 141, 81, 80, 70, 146, 145, 70, 69, 146, 69, 65, 146, 64, 146, 65, 68, 66, 69, 69, 66, 65, 68, 67, 66, 62, 145, 63, 145, 64, 63, 71, 70, 145, 145, 146, 64, 151, 73, 150, 151, 74, 73, 150, 61, 59, 59, 61, 60, 150, 144, 61, 57, 59, 58, 144, 73, 72, 72, 71, 144, 144, 150, 73, 61, 144, 62, 62, 144, 145, 144, 71, 145, 52, 149, 53, 53, 149, 54, 54, 147, 55, 51, 149, 52, 148, 147, 149, 54, 149, 147, 147, 56, 55, 147, 59, 56, 57, 56, 59, 48, 47, 160, 49, 48, 160, 46, 160, 47, 46, 45, 160, 49, 160, 50, 51, 50, 148, 50, 160, 148, 51, 148, 149, 160, 159, 150, 160, 150, 148, 148, 150, 59, 147, 148, 59, 36, 35, 155, 37, 36, 155, 40, 39, 156, 155, 35, 34, 39, 38, 156, 37, 155, 38, 38, 155, 157, 156, 38, 157, 156, 157, 158, 45, 44, 160, 44, 43, 160, 42, 41, 156, 43, 42, 156, 156, 41, 40, 43, 156, 160 ],
+ "vertices": [ 1, 58, 44.54, 6.08, 1, 1, 58, 42.46, 12.31, 1, 1, 58, 28.33, 17.45, 1, 2, 57, 30.38, 22.9, 0.01499, 58, 19.09, 14.68, 0.98501, 4, 56, 50.71, 6.81, 0.00226, 57, 22.61, 14.33, 0.29836, 58, 7.83, 12, 0.69938, 53, 81.14, -7.13, 0, 4, 56, 43.06, 8.02, 0.05518, 57, 14.95, 13.16, 0.75463, 58, 0.86, 15.37, 0.18877, 53, 75.51, -12.45, 0.00142, 4, 56, 44.92, 17.02, 0.18493, 57, 14, 22.3, 0.78229, 58, 5.24, 23.45, 0.02732, 53, 69.52, -5.48, 0.00546, 4, 56, 38.89, 24.03, 0.28255, 57, 6.14, 27.16, 0.69855, 58, 1.51, 31.9, 0.00651, 53, 60.3, -5.97, 0.01239, 5, 55, 64.5, 25.29, 0.00893, 56, 28.14, 26.08, 0.46383, 57, -4.73, 25.86, 0.48822, 53, 52.1, -13.23, 0.0389, 51, 81.67, -71.5, 1.1E-4, 6, 55, 51.71, 27.11, 0.07312, 56, 15.3, 27.55, 0.62908, 57, -17.41, 23.37, 0.1804, 54, -1.51, -30.94, 0, 53, 43.1, -22.5, 0.11508, 51, 68.75, -71.11, 0.00232, 6, 55, 42.64, 25.98, 0.22226, 56, 6.27, 26.16, 0.46594, 57, -25.6, 19.32, 0.036, 54, -10.24, -33.63, 0.00228, 53, 38.67, -30.49, 0.26248, 51, 59.87, -73.24, 0.01104, 6, 55, 40.78, 30.35, 0.25704, 56, 4.29, 30.48, 0.28536, 57, -28.8, 22.84, 0.00944, 54, -12.83, -29.65, 0.01137, 53, 34.04, -29.42, 0.41712, 51, 57.53, -69.1, 0.01966, 6, 55, 44.87, 38.17, 0.15713, 56, 8.16, 38.41, 0.11651, 57, -27.51, 31.56, 6.6E-4, 54, -10.16, -21.24, 0.09667, 53, 30.13, -21.52, 0.60958, 51, 60.73, -60.88, 0.01945, 5, 55, 55.84, 38.29, 0.05562, 56, 19.12, 38.83, 0.04191, 54, 0.62, -19.21, 0.5789, 53, 36.5, -12.58, 0.31918, 51, 71.62, -59.54, 0.00439, 5, 55, 65.92, 40.27, 0.01496, 56, 29.15, 41.09, 0.01306, 54, 10.2, -15.51, 0.96892, 53, 40.83, -3.26, 0.00294, 51, 81.42, -56.46, 1.2E-4, 3, 55, 75.88, 44.28, 0.00114, 56, 38.99, 45.37, 0.00149, 54, 19.31, -9.83, 0.99737, 2, 55, 89.97, 49.46, 1.0E-5, 54, 32.29, -2.28, 0.99999, 1, 54, 25.12, 5.01, 1, 2, 54, 12.65, 5.81, 0.98395, 52, 55.01, 16.16, 0.01605, 3, 54, 4.18, 10.23, 0.86309, 53, 18.64, 11.1, 0.00272, 52, 46.23, 12.4, 0.13419, 3, 54, -2.31, 25.42, 0.16289, 53, 3.43, 17.54, 0.04333, 52, 30.36, 16.98, 0.79378, 3, 54, -5.48, 40.36, 0.03346, 52, 16.78, 23.97, 0.95171, 51, 69.32, 0.3, 0.01483, 3, 54, -13.94, 54.29, 0.00398, 52, 0.64, 26.22, 0.73938, 51, 61.77, 14.73, 0.25663, 3, 75, -215.6, -101.72, 3.0E-4, 52, -20.89, 24.54, 0.2797, 51, 47.87, 31.27, 0.72, 3, 75, -202.79, -101.56, 0.004, 52, -30.68, 16.28, 0.11194, 51, 35.45, 34.42, 0.88406, 3, 75, -190.07, -101.2, 0.02104, 52, -40.28, 7.91, 0.01614, 51, 23.07, 37.36, 0.96282, 2, 75, -174.56, -111.52, 0.07013, 51, 10.75, 51.34, 0.92987, 2, 75, -160.05, -120.07, 0.12042, 51, -1.06, 63.34, 0.87958, 2, 75, -144.02, -125.94, 0.17444, 51, -15.03, 73.15, 0.82556, 2, 75, -127.71, -128.54, 0.23132, 51, -30.12, 79.87, 0.76868, 2, 75, -113.59, -129.8, 0.28197, 51, -43.44, 84.73, 0.71803, 2, 75, -97.96, -129.88, 0.33524, 51, -58.52, 88.85, 0.66476, 2, 75, -81.44, -126.97, 0.38961, 51, -75.23, 90.3, 0.61039, 3, 75, -65.43, -120.59, 0.4465, 51, -92.35, 88.27, 0.55348, 50, -173.78, -126.15, 2.0E-5, 3, 75, -46.34, -111.25, 0.51546, 51, -113.2, 84.17, 0.48454, 50, -155.18, -136.42, 0, 2, 75, -30.64, -97.93, 0.57476, 51, -131.81, 75.35, 0.42524, 4, 75, -14.15, -70.68, 0.6656, 55, -156.66, 175.5, 5.2E-4, 51, -154.77, 53.29, 0.33355, 50, -103.49, -139.53, 3.3E-4, 5, 75, -15.54, -50.75, 0.73623, 59, -128.5, 206.15, 1.0E-5, 55, -162.61, 156.42, 0.00183, 51, -158.57, 33.67, 0.25679, 50, -87.96, -126.96, 0.00515, 5, 75, -8.1, -33.09, 0.85896, 59, -140.1, 190.89, 0, 55, -175.96, 142.68, 0.00183, 51, -170.32, 18.53, 0.13396, 50, -69.22, -122.93, 0.00525, 4, 76, -12.38, -17.42, 0.08152, 75, 7.47, -20.2, 0.89159, 55, -195.15, 136.33, 1.5E-4, 51, -188.69, 10.09, 0.02673, 3, 76, 6.12, -13.01, 0.79564, 75, 24.4, -11.54, 0.20414, 51, -207.28, 6.09, 2.2E-4, 1, 76, 25.63, -6.58, 1, 5, 76, 39.65, 9.13, 0.90093, 75, 51.73, 17.91, 0.00933, 72, -166.13, -71.34, 0.05712, 69, -247.68, 6.3, 7.4E-4, 50, 6.87, -142.7, 0.03188, 5, 76, 52.85, 22.99, 0.72186, 75, 61.28, 34.5, 0.01426, 72, -147.27, -68.1, 0.18188, 69, -233.56, -6.63, 0.00258, 50, 25.93, -141.01, 0.07941, 6, 76, 66.46, 29.11, 0.60619, 75, 73.05, 43.67, 0.00568, 72, -132.69, -71.3, 0.29079, 69, -227.17, -20.11, 0.00315, 62, -163.18, 199.96, 0, 50, 40.2, -145.39, 0.0942, 4, 76, 87.21, 35.88, 0.49125, 72, -112.01, -78.26, 0.41747, 69, -219.99, -40.72, 0.00213, 50, 60.25, -154, 0.08916, 4, 76, 109.3, 47.63, 0.38687, 72, -87.27, -82.02, 0.53902, 69, -207.81, -62.58, 7.3E-4, 50, 84.6, -159.76, 0.07339, 4, 76, 125.18, 59.94, 0.31149, 72, -67.18, -81.62, 0.63044, 69, -195.19, -78.21, 9.0E-5, 50, 104.66, -160.99, 0.05798, 3, 76, 141.83, 75.65, 0.23388, 72, -44.44, -78.95, 0.72627, 50, 127.54, -160.18, 0.03985, 3, 76, 155.47, 96.29, 0.16377, 72, -21.18, -70.53, 0.81269, 50, 151.41, -153.69, 0.02354, 4, 76, 162.28, 135.27, 0.0571, 72, 7.55, -43.31, 0.93885, 74, -57.2, 1.23, 2.6E-4, 50, 182.25, -128.9, 0.00379, 4, 76, 160.89, 158.68, 0.01057, 72, 20.4, -23.7, 0.90004, 73, -5.12, -24.14, 0.06712, 74, -33.99, 4.57, 0.02226, 3, 72, 44.76, -11.37, 0.01983, 73, 18.27, -10.06, 0.30449, 74, -8.63, -5.54, 0.67568, 1, 74, 9.64, -12.56, 1, 4, 72, 66.44, 13.35, 2.0E-5, 73, 38.07, 16.19, 2.3E-4, 74, 24.25, -5.45, 0.99962, 69, -38.28, -125.67, 1.2E-4, 4, 72, 57.25, 25.92, 0.04451, 73, 27.98, 28.05, 0.30963, 74, 27.6, 9.76, 0.58928, 69, -33.98, -110.71, 0.05658, 4, 72, 53.26, 38.34, 0.12538, 73, 23.09, 40.15, 0.4881, 74, 34.28, 20.97, 0.21034, 69, -26.6, -99.94, 0.17618, 4, 72, 54.82, 54.36, 0.15298, 73, 23.47, 56.24, 0.45246, 74, 47.32, 30.39, 0.08348, 69, -12.98, -91.37, 0.31108, 4, 72, 51.14, 73.47, 0.15197, 73, 18.39, 75.03, 0.38035, 74, 59.22, 45.8, 0.03707, 69, -0.13, -76.75, 0.43061, 5, 72, 39.55, 81.74, 0.14095, 73, 6.23, 82.42, 0.29729, 74, 57.75, 59.95, 0.01728, 69, -0.69, -62.53, 0.54433, 50, 224.32, -6.86, 1.5E-4, 5, 72, 36.74, 102.34, 0.09318, 73, 1.91, 102.76, 0.1842, 74, 71.34, 75.69, 0.00345, 69, 13.87, -47.69, 0.71916, 70, -38.84, -28.98, 0, 6, 72, 19.81, 115.27, 0.04239, 73, -15.92, 114.41, 0.08132, 74, 69.84, 96.94, 3.3E-4, 69, 13.72, -26.39, 0.84253, 70, -23.84, -13.86, 0.03342, 50, 207.38, 28.16, 1.0E-5, 4, 72, 19.72, 130.27, 0.00621, 73, -17.11, 129.37, 0.01706, 69, 25.53, -17.13, 0.64334, 70, -8.95, -15.7, 0.33339, 4, 72, 17.57, 142.71, 1.3E-4, 73, -20.17, 141.61, 0.00197, 69, 34.04, -7.81, 0.20156, 70, 3.66, -15.17, 0.79634, 2, 72, 7.62, 156.92, 0, 70, 19.03, -7.13, 1, 2, 70, 29.18, 4.27, 0.01038, 71, 8.95, -5.83, 0.98962, 2, 72, -17.06, 172.66, 0, 71, 22.78, -3.46, 1, 1, 71, 31.25, 1.77, 1, 3, 70, 31.24, 21.63, 3.0E-5, 71, 22.16, 5.63, 0.99997, 50, 169.31, 81.49, 0, 1, 71, 10.7, 4.39, 1, 6, 69, 25.75, 17.56, 0.03148, 70, 15.8, 8.61, 0.16012, 71, 1.98, 6.38, 0.80644, 66, -67.91, -31.95, 0.00167, 62, -102.89, -48.54, 2.2E-4, 50, 183.05, 66.69, 6.0E-5, 6, 69, 17.86, 14.18, 0.43664, 70, 7.84, 11.81, 0.39249, 71, -1.76, 14.1, 0.14271, 66, -73.61, -25.53, 0.02293, 62, -106.97, -40.99, 0.00375, 50, 180.23, 58.59, 0.00147, 8, 76, 30.67, 267.56, 8.0E-5, 72, -19.1, 141.38, 3.9E-4, 69, 10.53, 20.36, 0.70438, 70, 7.06, 21.37, 0.12667, 71, 4.09, 21.7, 0.035, 66, -70.04, -16.63, 0.10446, 62, -101.47, -33.13, 0.01969, 50, 170.72, 57.35, 0.00933, 8, 76, 18.98, 262.45, 3.4E-4, 72, -31.53, 144.26, 0.00433, 69, 5.19, 31.95, 0.58559, 70, 11.51, 33.33, 0.02229, 71, 15.43, 27.56, 0.00412, 66, -60.73, -7.91, 0.30666, 62, -90.41, -26.77, 0.05256, 50, 158.56, 61.23, 0.02411, 8, 76, 12.3, 263.38, 2.6E-4, 72, -36.34, 148.99, 0.00372, 69, 5.99, 38.65, 0.43598, 70, 16.82, 37.48, 0.00688, 71, 22.16, 27.06, 9.1E-4, 66, -54.12, -6.55, 0.46549, 62, -83.66, -26.96, 0.06158, 50, 154.16, 66.34, 0.02518, 8, 76, 9.26, 276.19, 1.0E-5, 72, -31.14, 161.08, 3.1E-4, 69, 18.73, 41.95, 0.26376, 70, 28.14, 30.77, 6.7E-4, 71, 26.02, 14.48, 1.0E-5, 66, -46.98, -17.61, 0.68732, 62, -79.23, -39.35, 0.03492, 50, 160.33, 77.97, 0.01299, 5, 69, 27.01, 48.56, 0.18289, 70, 38.67, 29.57, 3.0E-5, 66, -38.1, -23.38, 0.79308, 62, -71.9, -47, 0.0173, 50, 161.03, 88.54, 0.0067, 4, 69, 35.72, 56.52, 0.11419, 66, -27.79, -29.14, 0.87995, 62, -63.19, -54.96, 0.00377, 50, 161.03, 100.34, 0.00209, 2, 69, 42.17, 69.58, 0.05644, 66, -13.37, -31.14, 0.94356, 2, 69, 41.72, 86.31, 0.01288, 66, 2.36, -25.45, 0.98712, 2, 66, 19.46, -17.24, 0.82833, 67, -7.84, -15.36, 0.17167, 2, 66, 30.96, -5.7, 0.10006, 67, 7.7, -10.49, 0.89994, 2, 67, 25.18, -7.94, 0.56089, 68, -0.71, -7.91, 0.43911, 1, 68, 14.35, -4.52, 1, 2, 67, 57.95, -0.48, 0, 68, 32.48, -2.63, 1, 1, 68, 25.66, 3.09, 1, 1, 68, 15.41, 6.24, 1, 3, 67, 31.94, 7.58, 0.03856, 68, 7.05, 7.13, 0.93869, 62, 18.28, -21.98, 0.02275, 3, 67, 24.76, 8.18, 0.44297, 68, -0.06, 8.2, 0.3101, 62, 11.19, -23.21, 0.24693, 3, 67, 28.36, 11.68, 0.28047, 68, 3.75, 11.46, 0.12105, 62, 13.79, -18.91, 0.59848, 4, 67, 36.86, 12.15, 0.11093, 68, 12.27, 11.37, 0.04486, 62, 21.9, -16.32, 0.81857, 63, -17.24, -6.94, 0.02564, 4, 67, 47.29, 11.91, 0.02103, 68, 22.66, 10.44, 0.0079, 62, 32.06, -13.94, 0.60934, 63, -7.88, -11.56, 0.36174, 4, 67, 55.26, 11.21, 0.00483, 68, 30.56, 9.21, 0.00175, 62, 39.95, -12.62, 0.24451, 63, -0.96, -15.56, 0.74891, 3, 62, 48.79, -7.03, 0.00727, 63, 9.43, -16.87, 0.96766, 64, -13.73, -20.97, 0.02507, 2, 63, 19.29, -15.95, 0.86455, 64, -4.41, -17.61, 0.13545, 2, 63, 30.68, -11.59, 0.38448, 64, 5.53, -10.54, 0.61552, 3, 63, 35.8, -9.07, 0.06091, 64, 9.85, -6.83, 0.88436, 65, -6.94, -9.35, 0.05473, 2, 64, 17.44, -10.04, 0.46105, 65, 1.27, -10.13, 0.53895, 2, 64, 29.08, -11.95, 0.00911, 65, 12.94, -8.44, 0.99089, 1, 65, 23.71, -1.67, 1, 1, 65, 33.6, 4.87, 1, 1, 65, 24.32, 7.47, 1, 1, 65, 13.12, 7.42, 1, 2, 64, 22.24, 5.99, 0.37621, 65, 1.02, 6.6, 0.62379, 4, 64, 12.3, 8.74, 0.96928, 65, -9.29, 6.22, 0.03037, 59, -37.04, -58.26, 2.9E-4, 50, 14.68, 133.31, 5.0E-5, 5, 62, 50.35, 28.71, 0.01753, 63, 33.35, 9.73, 0.26279, 64, 2.78, 10.76, 0.7017, 59, -46.72, -59.27, 0.01348, 50, 22.69, 127.77, 0.0045, 6, 69, -34.5, 168.92, 9.0E-5, 62, 42.43, 25.1, 0.12478, 63, 24.94, 11.98, 0.66366, 64, -5.93, 10.84, 0.09893, 59, -55.02, -61.89, 0.08327, 50, 30.69, 124.36, 0.02927, 6, 69, -42.24, 173.02, 1.8E-4, 62, 45.82, 33.17, 0.1675, 63, 32.68, 16.05, 0.52771, 64, 0.55, 16.72, 0.01825, 59, -50.68, -54.29, 0.2234, 50, 22.45, 121.42, 0.06295, 5, 62, 55.85, 41.54, 0.12638, 63, 45.75, 16.14, 0.37602, 64, 13.18, 20.08, 1.3E-4, 59, -39.7, -47.2, 0.42685, 50, 9.5, 123.18, 0.07063, 4, 62, 67.88, 44.59, 0.07832, 63, 56.98, 10.84, 0.27044, 59, -27.39, -45.64, 0.6012, 50, -0.86, 130.01, 0.05003, 4, 62, 79.24, 47.64, 0.04548, 63, 67.68, 5.98, 0.18708, 59, -15.74, -44, 0.73925, 50, -10.77, 136.34, 0.02819, 4, 62, 90.42, 50.98, 0.02213, 63, 78.44, 1.45, 0.11627, 59, -4.24, -42.05, 0.8511, 50, -20.78, 142.35, 0.0105, 5, 62, 102.17, 52.85, 0.00773, 63, 88.7, -4.58, 0.06296, 59, 7.65, -41.63, 0.92652, 60, -25.93, -38.68, 0.00137, 50, -30.08, 149.77, 0.00143, 4, 62, 113.32, 57.02, 0.00182, 63, 99.95, -8.44, 0.03283, 59, 19.22, -38.84, 0.94202, 60, -14.11, -37.31, 0.02333, 3, 63, 116.12, -7.72, 0.01156, 59, 32.48, -29.55, 0.84822, 60, 0.16, -29.68, 0.14022, 3, 63, 122.56, -0.38, 0.00486, 59, 33.97, -19.9, 0.63476, 60, 2.81, -20.28, 0.36039, 4, 63, 136, 2.13, 1.6E-4, 59, 43.96, -10.56, 0.01773, 60, 13.85, -12.21, 0.93312, 61, -8.34, -11.15, 0.049, 2, 60, 28.83, -9.94, 0.0964, 61, 6.81, -11.65, 0.9036, 1, 61, 17.49, -8.48, 1, 1, 61, 25.72, -2.26, 1, 1, 61, 37.96, 6.83, 1, 1, 61, 25.9, 10.76, 1, 3, 59, 61.29, 21.15, 0.00549, 61, 17.68, 13.92, 0.99106, 55, 3.54, -50.07, 0.00345, 5, 59, 52.04, 13.63, 0.0973, 60, 24.78, 10.83, 0.12219, 61, 6.6, 9.51, 0.71796, 55, -6.56, -56.42, 0.06249, 50, -99.74, 136.7, 6.0E-5, 5, 59, 47.55, 18.87, 0.28595, 60, 20.95, 16.57, 0.25132, 61, 3.88, 15.86, 0.25068, 55, -10.38, -50.68, 0.21125, 50, -99.74, 129.8, 8.1E-4, 7, 59, 50.28, 27, 0.30158, 60, 24.65, 24.31, 0.12755, 61, 8.93, 22.8, 0.07246, 55, -6.69, -42.94, 0.49638, 56, -41.13, -44.09, 7.2E-4, 51, 18.48, -147.19, 1.0E-5, 50, -107.11, 125.41, 0.0013, 5, 59, 63.03, 29.24, 0.14718, 60, 37.57, 25.01, 0.04643, 61, 21.76, 21.13, 0.01767, 55, 6.23, -42.24, 0.77232, 56, -28.24, -43.04, 0.0164, 5, 59, 72.18, 28.2, 0.08602, 60, 46.53, 22.88, 0.02732, 61, 30.18, 17.4, 0.00779, 55, 15.19, -44.37, 0.83869, 56, -19.22, -44.92, 0.04018, 5, 59, 84.07, 28.07, 0.0501, 60, 58.31, 21.31, 0.01695, 61, 41.49, 13.71, 0.00279, 55, 26.98, -45.94, 0.86354, 56, -7.4, -46.16, 0.06663, 5, 59, 98.59, 36.18, 0.0359, 60, 73.71, 27.62, 0.01313, 61, 57.77, 17.11, 9.4E-4, 55, 42.38, -39.63, 0.87477, 56, 7.82, -39.43, 0.07527, 5, 59, 92.86, 41.18, 0.03719, 60, 68.62, 33.28, 0.01343, 61, 53.8, 23.6, 0.00113, 55, 37.29, -33.98, 0.87156, 56, 2.58, -33.92, 0.07669, 6, 59, 84.07, 41.08, 0.03953, 60, 59.88, 34.23, 0.01342, 61, 45.38, 26.13, 0.00193, 55, 28.55, -33.02, 0.83295, 56, -6.19, -33.2, 0.10906, 57, -19.52, -41.03, 0.00311, 6, 59, 88.52, 48.41, 0.01825, 60, 65.19, 40.97, 0.0065, 61, 51.82, 31.79, 6.7E-4, 55, 33.85, -26.28, 0.66153, 56, -1.07, -26.32, 0.28509, 57, -16.72, -32.92, 0.02796, 6, 59, 94.68, 53.28, 0.00499, 60, 71.88, 45.06, 0.00207, 61, 59.15, 34.6, 1.0E-4, 55, 40.55, -22.19, 0.34367, 56, 5.51, -22.04, 0.54323, 57, -11.74, -26.85, 0.10595, 5, 59, 108.14, 50.35, 6.0E-5, 60, 84.89, 40.54, 9.0E-5, 55, 53.56, -26.71, 0.03797, 56, 18.64, -26.21, 0.54444, 57, 2.03, -26.85, 0.41745, 3, 56, 33.14, -25.15, 0.25978, 57, 15.53, -21.45, 0.71377, 58, -18.24, -13.5, 0.02645, 3, 56, 50.18, -18.28, 0.01673, 57, 29.7, -9.75, 0.39798, 58, 0.06, -11.86, 0.58529, 1, 58, 18.06, -7.85, 1, 1, 58, 36.75, -1.45, 1, 6, 72, -89.37, 193.02, 9.0E-5, 69, 8.3, 107.54, 0.00282, 66, 11.99, 12.96, 0.56308, 67, -0.4, 14.85, 0.22434, 62, -14.85, -23.06, 0.20828, 50, 104.88, 114.53, 0.00138, 6, 76, -22.64, 260.2, 9.0E-5, 72, -66.27, 167.29, 0.00255, 69, 2.12, 73.52, 0.13612, 66, -22.25, 8.1, 0.7124, 62, -49.29, -19.97, 0.12599, 50, 125.82, 87.01, 0.02286, 1, 66, 10.43, -6.39, 1, 4, 69, 21.86, 74.54, 0.06756, 66, -15.06, -10.31, 0.92007, 62, -46.49, -39.53, 0.00947, 50, 138.38, 102.27, 0.00289, 2, 67, 15.21, 0.74, 0.99254, 62, 3.81, -32.8, 0.00746, 3, 72, 2.02, 124.3, 0.00553, 73, -34.32, 122.11, 0.01211, 69, 9.96, -6.79, 0.98236, 3, 73, -30.89, 140.81, 1.9E-4, 69, 27.45, 0.68, 0.06983, 70, 5.03, -4.51, 0.92998, 2, 70, 20.06, 2.87, 0.03592, 71, 1.26, -0.73, 0.96408, 4, 72, 39.87, 17.01, 0.09986, 73, 11.31, 17.89, 0.77821, 74, 9.42, 16.9, 0.07825, 69, -51.66, -102.42, 0.04368, 5, 72, 17.68, 4.62, 0.94932, 73, -9.91, 3.9, 0.04067, 69, -75.05, -92.48, 0.00995, 62, -221.55, 41.94, 2.0E-5, 50, 196.25, -81.95, 4.0E-5, 1, 73, 15.92, -1.1, 1, 7, 76, 90.52, 195.25, 0.00922, 72, -14.23, 47.64, 0.47873, 73, -44.9, 44.46, 0.11003, 69, -60.59, -40.9, 0.34442, 66, -150.6, 31.57, 0.00233, 62, -168.89, 32.19, 0.01372, 50, 167.94, -36.48, 0.04156, 8, 76, -31.33, 198.9, 0.00529, 72, -109.83, 123.29, 0.03706, 69, -59.34, 81, 0.15503, 66, -34.51, 68.79, 0.12428, 62, -47.37, 41.92, 0.38163, 63, -33.69, 82.05, 0.03522, 59, -142.11, -34.25, 0.01133, 50, 78.82, 46.7, 0.25017, 9, 75, -136.78, 100.63, 0.0067, 69, -125.9, 172.29, 6.0E-5, 62, 37.56, 116.43, 0.04632, 63, 79.24, 85.57, 0.06709, 59, -48.73, 29.36, 0.43785, 55, -104.7, -28.68, 0.06441, 53, -3.91, -181.76, 3.1E-4, 51, -80.51, -143.88, 0.0221, 50, -33.47, 59.18, 0.35516, 6, 75, -180.1, 29.43, 0.02495, 59, 10.94, 87.55, 0.16407, 55, -38.45, 21.91, 0.48373, 53, -5.79, -98.43, 0.07579, 51, -20.28, -86.27, 0.15992, 50, -116.65, 53.83, 0.09154, 6, 75, -163.36, -60.62, 0.04447, 59, 17.13, 178.93, 0.00209, 55, -21.32, 111.88, 0.01133, 53, -68.42, -31.6, 0.00349, 51, -13.21, 5.05, 0.92907, 50, -180.81, -11.52, 0.00955, 5, 75, -78.86, -70.45, 0.46196, 59, -62.26, 209.47, 0.00171, 55, -96.46, 151.76, 0.00773, 51, -92.31, 36.36, 0.50415, 50, -140.41, -86.38, 0.02445, 8, 76, -15.99, 32.04, 0.11528, 75, -7.75, 26.99, 0.68161, 72, -197.1, -19.75, 0.0197, 69, -225.86, 62.38, 0.00153, 59, -155.38, 132.79, 1.0E-5, 55, -198.13, 86.83, 0.00177, 51, -186.16, -39.43, 0.00621, 50, -19.8, -88.76, 0.17388, 6, 75, -115.32, -13.75, 0.25976, 59, -41.06, 145.48, 0.04098, 55, -83.11, 85.68, 0.10033, 53, -83.63, -96.97, 0.01661, 51, -71.72, -27.83, 0.42331, 50, -114.86, -24, 0.15901, 9, 76, -68.13, 78.76, 0.00351, 75, -69.47, 60.04, 0.20259, 72, -211.05, 48.86, 0.00145, 63, 62.85, 162.46, 2.0E-5, 59, -103.83, 85.42, 0.02708, 55, -152.65, 33.61, 0.02848, 53, -82.49, -183.84, 4.5E-4, 51, -135.06, -87.29, 0.04989, 50, -28.12, -19.25, 0.68654, 8, 76, -3.41, 135.63, 0.07034, 75, -20.06, 130.62, 0.02012, 72, -125.19, 55.87, 0.14786, 69, -122.04, 51.85, 0.11768, 66, -81.94, 119.12, 0.02099, 62, -82.05, 101.74, 0.09435, 63, -22.43, 150.27, 0.00445, 50, 58.03, -19.25, 0.52421, 7, 76, 81.62, 96.47, 0.27541, 75, 71.83, 112.7, 0.00677, 72, -80.33, -26.31, 0.54929, 69, -159.53, -33.95, 0.03111, 66, -175.17, 127.66, 3.5E-4, 62, -170.87, 131.35, 0.0073, 50, 96.05, -104.8, 0.12977, 4, 62, 77.45, 63.64, 0.03825, 63, 76.47, 19.47, 0.15163, 59, -15.57, -27.9, 0.78115, 50, -21.39, 124.23, 0.02897, 3, 62, 99.77, 94.3, 1.0E-5, 63, 113.19, 28.94, 1.2E-4, 59, 10.32, -0.19, 0.99987, 6, 75, -217.76, 93.08, 5.0E-5, 59, 31.58, 16.53, 0.63584, 60, 4.82, 16.17, 0.21515, 55, -26.51, -51.08, 0.14479, 51, -0.32, -157.48, 7.0E-4, 50, -86.1, 121.18, 0.00347, 2, 63, 130.9, 15.32, 8.0E-5, 60, 3.55, -2.51, 0.99992, 5, 62, 98.46, 69.72, 0.00553, 63, 96.55, 10.8, 0.04583, 59, 6.03, -24.43, 0.94644, 60, -25.48, -21.41, 0.00193, 50, -40.04, 135.65, 2.7E-4, 4, 55, 34.83, 0.34, 0.56725, 56, -0.83, 0.31, 0.43073, 53, 54.8, -51.91, 0.00192, 51, 54.94, -99.59, 1.0E-4, 8, 75, -233.63, 59.12, 1.0E-5, 59, 55.41, 45.47, 0.15579, 60, 31.95, 42.04, 0.03445, 61, 19.34, 38.89, 0.00953, 55, 0.62, -25.21, 0.79564, 56, -34.32, -26.17, 0.00358, 51, 23.78, -128.77, 4.0E-5, 50, -123.02, 114.71, 9.7E-4, 5, 75, -228.99, 31.24, 3.0E-5, 55, 6.43, 2.45, 0.98467, 53, 36.37, -73.62, 0.01165, 51, 26.48, -100.64, 0.0034, 50, -143.19, 94.92, 2.5E-4, 7, 75, -222.69, -7.55, 3.5E-4, 59, 61.39, 112.77, 3.1E-4, 55, 14.66, 40.88, 0.37894, 56, -22.11, 40.28, 0.04315, 53, 10.16, -44.33, 0.45876, 51, 30.41, -61.53, 0.11442, 50, -171.36, 67.51, 0.00406, 5, 55, 43.48, 69.7, 0.01366, 56, 5.91, 69.89, 0.00334, 53, 3.84, -4.07, 0.97125, 51, 55.86, -29.69, 0.01174, 50, -211.33, 59.52, 2.0E-5, 6, 55, 19.7, 97.23, 0.00682, 56, -18.63, 96.75, 1.0E-5, 53, -32.42, -7.08, 0.07483, 52, -2.29, -11.75, 0.04347, 51, 29.18, -4.97, 0.87478, 50, -206.81, 23.42, 9.0E-5 ],
+ "hull": 139,
+ "edges": [ 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 20, 22, 22, 24, 24, 26, 26, 28, 28, 30, 30, 32, 32, 34, 34, 36, 36, 38, 38, 40, 40, 42, 42, 44, 44, 46, 46, 48, 48, 50, 50, 52, 52, 54, 54, 56, 56, 58, 58, 60, 60, 62, 62, 64, 64, 66, 66, 68, 68, 70, 70, 72, 72, 74, 74, 76, 76, 78, 78, 80, 80, 82, 82, 84, 84, 86, 86, 88, 88, 90, 90, 92, 92, 94, 94, 96, 96, 98, 98, 100, 100, 102, 102, 104, 104, 106, 106, 108, 108, 110, 110, 112, 112, 114, 114, 116, 116, 118, 118, 120, 120, 122, 122, 124, 124, 126, 126, 128, 128, 130, 130, 132, 132, 134, 134, 136, 136, 138, 138, 140, 140, 142, 142, 144, 144, 146, 146, 148, 148, 150, 150, 152, 152, 154, 154, 156, 156, 158, 158, 160, 160, 162, 162, 164, 164, 166, 166, 168, 168, 170, 170, 172, 172, 174, 174, 176, 176, 178, 178, 180, 180, 182, 182, 184, 184, 186, 186, 188, 188, 190, 190, 192, 192, 194, 194, 196, 196, 198, 198, 200, 200, 202, 202, 204, 204, 206, 206, 208, 208, 210, 210, 212, 212, 214, 214, 216, 216, 218, 218, 220, 220, 222, 222, 224, 224, 226, 226, 228, 228, 230, 230, 232, 232, 234, 234, 236, 236, 238, 238, 240, 240, 242, 242, 244, 244, 246, 246, 248, 248, 250, 250, 252, 252, 254, 254, 256, 256, 258, 258, 260, 260, 262, 262, 264, 264, 266, 266, 268, 268, 270, 270, 272, 272, 274, 274, 276, 0, 276 ],
+ "width": 490,
+ "height": 323
+ }
+ },
+ "hy_01": {
+ "hy/hy_": {
+ "x": -189.73,
+ "y": 114.25,
+ "scaleX": 0.6484,
+ "scaleY": 0.7107,
+ "rotation": 55.85,
+ "width": 128,
+ "height": 128,
+ "sequence": { "count": 16, "digits": 2 }
+ }
+ },
+ "item6_1": {
+ "item6_1": {
+ "type": "mesh",
+ "uvs": [ 1, 0.74221, 0.9675, 0.95055, 0.55005, 0.9668, 0.14345, 0.88849, 0, 0.61218, 0, 0.32465, 0.09194, 0, 0.37593, 0, 0.58543, 0.1695, 0.77321, 0.42808, 0.8896, 0.58618, 0.21989, 0.11264, 0.28832, 0.19357, 0.32001, 0.25872, 0.32217, 0.33965, 0.32145, 0.40137, 0.34738, 0.33553, 0.38484, 0.2841, 0.42445, 0.34651, 0.4475, 0.42881, 0.43166, 0.50347, 0.41509, 0.54942, 0.46695, 0.59332, 0.46335, 0.55491, 0.46839, 0.48907, 0.4972, 0.43352, 0.53106, 0.48221, 0.55843, 0.54462, 0.56563, 0.60223, 0.56779, 0.66533, 0.61539, 0.70808, 0.62979, 0.69642, 0.61179, 0.6587, 0.5981, 0.61137, 0.61323, 0.53525, 0.67517, 0.57571, 0.70903, 0.61275, 0.74288, 0.67721, 0.75513, 0.73962, 0.79402, 0.76568, 0.85237, 0.77254, 0.8394, 0.81301, 0.77313, 0.80203, 0.74432, 0.78626, 0.71191, 0.8082, 0.64852, 0.84867, 0.58081, 0.86581, 0.47061, 0.84867, 0.37193, 0.80615, 0.44324, 0.75677, 0.52031, 0.73208, 0.57073, 0.72248, 0.54408, 0.70396, 0.47997, 0.71493, 0.41082, 0.72522, 0.33807, 0.70533, 0.27613, 0.67378, 0.22693, 0.64105, 0.19236, 0.57932, 0.25719, 0.57178, 0.3285, 0.57932, 0.37027, 0.57247, 0.32273, 0.55669, 0.25503, 0.53132, 0.20893, 0.49154, 0.17363, 0.42707, 0.15058, 0.35918, 0.21253, 0.37426, 0.26727, 0.39484, 0.24426, 0.35475, 0.2068, 0.31634, 0.19095, 0.25873, 0.18951, 0.17986, 0.26442, 0.25393, 0.30188, 0.38561, 0.35631, 0.49621, 0.41538, 0.57471, 0.48756, 0.64823, 0.57493, 0.7033, 0.67236, 0.75368, 0.74944, 0.76823 ],
+ "triangles": [ 1, 41, 0, 65, 5, 66, 65, 4, 5, 15, 63, 68, 68, 74, 15, 15, 14, 16, 18, 15, 16, 68, 65, 67, 68, 64, 65, 9, 25, 8, 18, 8, 25, 65, 66, 67, 15, 74, 14, 67, 69, 68, 68, 69, 74, 74, 69, 14, 66, 70, 67, 67, 70, 69, 70, 66, 71, 14, 73, 13, 14, 69, 73, 69, 70, 73, 16, 17, 18, 18, 17, 8, 14, 13, 16, 16, 13, 17, 66, 5, 71, 5, 72, 71, 5, 6, 72, 70, 71, 73, 8, 17, 12, 71, 72, 73, 73, 12, 13, 17, 13, 12, 73, 72, 12, 72, 11, 12, 12, 7, 8, 12, 11, 7, 72, 6, 11, 11, 6, 7, 3, 57, 56, 57, 4, 58, 57, 3, 4, 76, 55, 61, 56, 60, 55, 55, 60, 61, 57, 59, 56, 60, 59, 62, 60, 56, 59, 57, 58, 59, 58, 4, 64, 23, 24, 26, 60, 62, 61, 58, 63, 59, 58, 64, 63, 64, 4, 65, 61, 21, 76, 76, 21, 23, 21, 61, 75, 62, 59, 75, 63, 75, 59, 61, 62, 75, 15, 75, 63, 21, 20, 23, 23, 20, 24, 21, 75, 20, 63, 64, 68, 24, 20, 19, 19, 75, 15, 20, 75, 19, 15, 18, 19, 24, 25, 26, 24, 19, 25, 26, 25, 9, 25, 19, 18, 3, 48, 2, 3, 56, 48, 56, 55, 48, 48, 47, 2, 46, 50, 51, 46, 47, 50, 50, 52, 51, 48, 49, 47, 50, 49, 53, 50, 47, 49, 48, 54, 49, 48, 55, 54, 49, 54, 53, 50, 53, 52, 54, 55, 76, 53, 54, 77, 77, 54, 76, 51, 52, 78, 53, 77, 52, 22, 77, 76, 52, 29, 78, 52, 77, 29, 78, 29, 32, 77, 28, 29, 29, 33, 32, 29, 28, 33, 32, 33, 35, 77, 22, 28, 35, 33, 34, 22, 27, 28, 33, 28, 34, 28, 27, 34, 26, 27, 23, 76, 23, 22, 27, 22, 23, 35, 34, 9, 27, 26, 34, 34, 26, 9, 1, 45, 41, 41, 45, 42, 42, 44, 43, 44, 42, 45, 2, 45, 1, 2, 46, 45, 2, 47, 46, 0, 41, 40, 45, 46, 51, 79, 45, 51, 30, 51, 78, 45, 79, 44, 79, 51, 30, 42, 39, 41, 41, 39, 40, 44, 79, 43, 43, 80, 42, 42, 80, 39, 43, 79, 80, 0, 40, 10, 80, 38, 39, 80, 79, 38, 10, 40, 39, 30, 31, 79, 79, 37, 38, 79, 31, 37, 10, 39, 37, 39, 38, 37, 31, 30, 32, 30, 78, 32, 31, 36, 37, 31, 32, 36, 37, 36, 10, 32, 35, 36, 10, 36, 9, 36, 35, 9 ],
+ "vertices": [ 1, 39, 76.39, 17.21, 1, 1, 39, 37.23, 23.03, 1, 3, 44, 36.15, 46.74, 0.68708, 45, -27.22, 39.46, 0.31064, 46, -74.77, 16.53, 0.00228, 4, 44, 109.51, 58.24, 0.00467, 45, 37.72, 75.46, 0.62984, 46, -24.95, 71.6, 0.36364, 47, -80.57, 50.54, 0.00185, 3, 45, 90.96, 52.58, 0.16804, 46, 32.82, 67.16, 0.61963, 47, -23.96, 62.92, 0.21232, 3, 45, 126.02, 11.44, 0.00101, 46, 79.3, 39.56, 0.12972, 47, 28.5, 49.88, 0.86928, 1, 47, 83.76, 19.17, 1, 3, 45, 114.39, -78.66, 0.00223, 46, 97.43, -49.46, 0.0039, 47, 71.49, -30.16, 0.99387, 4, 44, 82.32, -96, 0.02145, 45, 65.18, -78.73, 0.09225, 46, 50.88, -65.44, 0.17105, 47, 31.51, -58.86, 0.71526, 4, 44, 33.91, -62.11, 0.40676, 45, 8.06, -63.53, 0.33094, 46, -8.08, -69.52, 0.1607, 47, -23.78, -79.74, 0.10161, 4, 44, 4.04, -41.48, 0.87449, 45, -27.07, -54.42, 0.0977, 46, -44.27, -72.26, 0.02097, 47, -57.65, -92.79, 0.00685, 1, 47, 57.68, 2.06, 1, 3, 45, 102.72, -40.79, 9.8E-4, 46, 74.14, -17.4, 0.00189, 47, 39.96, -6.16, 0.99713, 4, 44, 121.04, -63.76, 1.1E-4, 45, 90.46, -35.15, 0.00384, 46, 60.71, -16.02, 0.01395, 47, 26.7, -8.7, 0.9821, 4, 44, 115.39, -49.63, 1.8E-4, 45, 80.3, -23.82, 0.00298, 46, 47.43, -8.59, 0.0361, 47, 11.84, -5.41, 0.96074, 4, 44, 111.47, -38.7, 8.0E-5, 45, 72.87, -14.9, 0.00101, 46, 37.52, -2.55, 0.4427, 47, 0.61, -2.48, 0.55621, 4, 44, 111.43, -51.92, 8.5E-4, 45, 77.36, -27.34, 0.00929, 46, 45.8, -12.86, 0.10905, 47, 11.51, -9.97, 0.88081, 4, 44, 108.5, -63.32, 0.00267, 45, 78.53, -39.04, 0.02303, 46, 50.69, -23.56, 0.11196, 47, 19.27, -18.81, 0.86235, 4, 44, 97.77, -54.79, 0.00913, 45, 65.52, -34.71, 0.05755, 46, 36.98, -23.67, 0.359, 47, 6.17, -22.86, 0.57432, 4, 44, 88.53, -41.71, 0.0156, 45, 52.35, -25.61, 0.12404, 46, 21.57, -19.32, 0.67678, 47, -9.84, -23.13, 0.18358, 4, 44, 86.31, -27.56, 0.00601, 45, 45.4, -13.09, 0.14679, 46, 10.95, -9.72, 0.82477, 47, -22.78, -16.99, 0.02242, 4, 44, 86.08, -18.43, 6.4E-4, 45, 42.06, -4.59, 0.07748, 46, 5.03, -2.75, 0.92065, 47, -30.44, -12.03, 0.00123, 4, 44, 74.51, -13.92, 0.00279, 45, 29.64, -4.33, 0.95466, 46, -6.8, -6.52, 0.04121, 47, -40.69, -19.05, 0.00134, 4, 44, 77.62, -20.47, 0.00828, 45, 34.81, -9.41, 0.65197, 46, -0.26, -9.66, 0.33207, 47, -33.53, -20.16, 0.00768, 4, 44, 81.08, -32.39, 0.02071, 45, 42.15, -19.41, 0.28291, 46, 9.92, -16.75, 0.63953, 47, -21.73, -24.03, 0.05684, 4, 44, 79.88, -43.97, 0.04104, 45, 45, -30.71, 0.24054, 46, 16.26, -26.52, 0.53939, 47, -12.84, -31.55, 0.17902, 4, 44, 71.01, -37.5, 0.07403, 45, 34.45, -27.67, 0.43407, 46, 5.3, -27.06, 0.40166, 47, -23.19, -35.22, 0.09024, 4, 44, 62.34, -28.2, 0.11927, 45, 23.11, -21.92, 0.66898, 46, -7.29, -25.28, 0.17863, 47, -35.76, -37.15, 0.03312, 4, 44, 57.36, -18.49, 0.13586, 45, 15.11, -14.51, 0.80584, 46, -17.26, -20.86, 0.04912, 47, -46.58, -35.78, 0.00917, 4, 44, 52.88, -7.51, 0.10617, 45, 7.12, -5.73, 0.88986, 46, -27.66, -15.13, 0.00314, 47, -58.19, -33.29, 8.3E-4, 4, 44, 42.1, -2.93, 0.93636, 45, -4.58, -5.14, 0.06283, 46, -38.92, -18.36, 6.2E-4, 47, -68.04, -39.62, 1.9E-4, 4, 44, 40.44, -5.88, 0.88039, 45, -5.12, -8.48, 0.11685, 46, -38.35, -21.69, 0.00214, 47, -66.54, -42.65, 6.2E-4, 4, 44, 45.93, -11.41, 0.5025, 45, 1.93, -11.79, 0.48586, 46, -30.61, -22.54, 0.00913, 47, -58.88, -41.24, 0.00251, 4, 44, 51.32, -18.9, 0.27901, 45, 9.57, -16.97, 0.67204, 46, -21.71, -24.98, 0.0394, 47, -49.65, -41.01, 0.00955, 4, 44, 53.75, -33.26, 0.25543, 45, 16.79, -29.62, 0.54807, 46, -10.78, -34.61, 0.15037, 47, -36.42, -47.09, 0.04613, 4, 44, 40.71, -29.99, 0.51414, 45, 3.42, -31.02, 0.39209, 46, -22.99, -40.26, 0.06897, 47, -46.48, -56.01, 0.0248, 4, 44, 32.61, -25.56, 0.70513, 45, -5.71, -29.66, 0.24719, 46, -32.07, -41.92, 0.03531, 47, -54.7, -60.21, 0.01237, 4, 44, 22.72, -16.31, 0.91715, 45, -18.18, -24.36, 0.07174, 46, -45.58, -40.94, 0.00866, 47, -67.92, -63.17, 0.00245, 4, 44, 16.58, -6.07, 0.99166, 45, -27.46, -16.85, 0.00738, 46, -56.79, -36.84, 8.5E-4, 47, -79.83, -62.46, 1.2E-4, 3, 44, 8.35, -3.89, 0.99801, 45, -35.94, -17.64, 0.00179, 46, -64.56, -40.32, 2.0E-4, 3, 44, -1.89, -6.32, 0.99829, 45, -44.73, -23.43, 0.00158, 46, -71, -48.64, 1.3E-4, 1, 44, -2.36, 1.62, 1, 1, 44, 9.48, 3.81, 1, 1, 44, 15.35, 2.83, 1, 2, 44, 19.35, 8.71, 0.99907, 45, -29.94, -2.02, 9.3E-4, 2, 44, 27.35, 19.79, 0.94098, 45, -26.24, 11.13, 0.05902, 3, 44, 37.59, 27.02, 0.76335, 45, -19.1, 21.44, 0.2363, 46, -61.26, 2.11, 3.5E-4, 3, 44, 57.21, 30.86, 0.34326, 45, -2, 31.78, 0.63236, 46, -48.41, 17.42, 0.02437, 3, 44, 76.55, 29.51, 0.08597, 45, 16.63, 37.16, 0.79041, 46, -32.52, 28.53, 0.12362, 3, 44, 67.81, 16.36, 0.08468, 45, 12.94, 21.81, 0.87936, 46, -31.06, 12.81, 0.03596, 3, 44, 56.48, 7.22, 0.1148, 45, 5.45, 9.33, 0.88471, 46, -34.11, -1.42, 4.8E-4, 2, 44, 48.65, 2.39, 0.47851, 45, -0.25, 2.1, 0.52149, 1, 45, 5.64, 2.55, 1, 3, 44, 64.38, 6.7, 0.02471, 45, 13.03, 11.56, 0.96989, 46, -27.65, 3.14, 0.0054, 3, 44, 75.31, 12.82, 0.02431, 45, 21.2, 21.06, 0.89907, 46, -23, 14.78, 0.07662, 4, 44, 88.82, 13.84, 0.00524, 45, 33.54, 26.66, 0.71705, 46, -13.13, 24.06, 0.27742, 47, -55.56, 8.43, 2.9E-4, 4, 44, 101.28, 12.14, 2.3E-4, 45, 45.82, 29.34, 0.48538, 46, -2.37, 30.57, 0.50534, 47, -47.13, 17.75, 0.00905, 3, 45, 56.52, 30.37, 0.32191, 46, 7.42, 35, 0.63989, 47, -39.03, 24.81, 0.0382, 3, 45, 68.76, 25.55, 0.15769, 46, 20.55, 34.4, 0.7233, 47, -26.27, 28.02, 0.11901, 3, 45, 60.84, 16.94, 0.13706, 46, 15.85, 23.69, 0.8161, 47, -27.7, 16.41, 0.04684, 3, 45, 50.21, 9.74, 0.15231, 46, 8.11, 13.44, 0.84542, 47, -32.16, 4.37, 0.00227, 2, 45, 45.35, 3.91, 0.0884, 46, 5.4, 6.35, 0.9116, 3, 45, 53.75, 7.17, 0.06753, 46, 12.3, 12.16, 0.92876, 47, -27.78, 4.34, 0.0037, 3, 45, 66.07, 11.4, 0.05757, 46, 22.59, 20.14, 0.862, 47, -20.22, 14.95, 0.08043, 3, 45, 77.2, 11.06, 0.03265, 46, 33.23, 23.42, 0.69206, 47, -10.97, 21.16, 0.27529, 3, 45, 89.87, 5.94, 0.00913, 46, 46.88, 22.67, 0.36932, 47, 2.31, 24.36, 0.62155, 3, 45, 101.29, -1.1, 0.00109, 46, 59.96, 19.7, 0.13591, 47, 15.69, 25.29, 0.863, 3, 45, 91.01, -6.14, 2.5E-4, 46, 51.86, 11.61, 0.12272, 47, 10.27, 15.21, 0.87703, 2, 46, 43.53, 5.16, 0.1425, 47, 4.15, 6.63, 0.8575, 2, 46, 52.11, 4.85, 0.02884, 47, 12.46, 8.81, 0.97116, 2, 46, 61.75, 6.93, 0.0213, 47, 21.08, 13.58, 0.9787, 2, 46, 72.51, 3.84, 0.00428, 47, 32.28, 13.71, 0.99572, 1, 47, 46.73, 10.39, 1, 1, 47, 29.98, 0.73, 1, 1, 47, 4.34, 0.2, 1, 1, 46, 19.01, 1.19, 1, 4, 44, 84.38, -13.99, 5.0E-5, 45, 38.93, -1, 0.32455, 46, 0.92, -0.37, 0.67534, 47, -35.07, -10.93, 6.0E-5, 1, 45, 20.13, 1.13, 1, 4, 44, 49.2, -1.26, 0.23426, 45, 1.52, -1.13, 0.7656, 46, -34.45, -12.59, 1.0E-4, 47, -65.42, -32.81, 3.0E-5, 1, 44, 29.55, 1.56, 1, 4, 44, 15.67, -0.67, 0.99968, 45, -30.18, -12.1, 2.8E-4, 46, -60.89, -33.21, 3.0E-5, 47, -84.81, -60.18, 0 ],
+ "hull": 11,
+ "edges": [ 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 0, 20 ],
+ "width": 179,
+ "height": 188
+ }
+ },
+ "item6_2": {
+ "item6_2": {
+ "type": "mesh",
+ "uvs": [ 0.85821, 0.83228, 0.92032, 0.85604, 1, 0.87753, 1, 0.9233, 0.89534, 0.93545, 0.80927, 0.9057, 0.7542, 0.94225, 0.69092, 0.98, 0.6033, 0.9969, 0.49671, 1, 0.39373, 0.97324, 0.28262, 0.91326, 0.36573, 0.86173, 0.43528, 0.83216, 0.49444, 0.81412, 0.58264, 0.80513, 0.53006, 0.7935, 0.47861, 0.80884, 0.41189, 0.82153, 0.31012, 0.81624, 0.19915, 0.76785, 0.12056, 0.70651, 0.04875, 0.61132, 0.12451, 0.60286, 0.21781, 0.59916, 0.29413, 0.60921, 0.21789, 0.59336, 0.13897, 0.56078, 0.07368, 0.51107, 0.03416, 0.45954, 0, 0.38841, 0, 0.30383, 0.0659, 0.31391, 0.13477, 0.34528, 0.10602, 0.30719, 0.06664, 0.24855, 0.05107, 0.15669, 0.07023, 0.06315, 0.10967, 0, 0.13781, 0, 0.17315, 0.04879, 0.22705, 0.12888, 0.2546, 0.20225, 0.2522, 0.29075, 0.23691, 0.35843, 0.24337, 0.38347, 0.25137, 0.32879, 0.2643, 0.29138, 0.29665, 0.22845, 0.33203, 0.18529, 0.36742, 0.22327, 0.40621, 0.2996, 0.42713, 0.35601, 0.42898, 0.4619, 0.40682, 0.527, 0.3859, 0.57362, 0.40559, 0.60412, 0.42467, 0.62196, 0.42098, 0.56671, 0.42405, 0.51319, 0.43635, 0.45516, 0.4702, 0.38552, 0.50079, 0.41721, 0.53193, 0.45978, 0.5659, 0.51444, 0.59225, 0.56877, 0.60063, 0.61862, 0.5984, 0.68075, 0.59061, 0.73284, 0.64871, 0.7642, 0.62355, 0.72163, 0.61637, 0.68075, 0.61217, 0.61913, 0.61696, 0.53512, 0.67146, 0.55696, 0.7315, 0.60325, 0.77822, 0.6447, 0.83212, 0.70799, 0.85128, 0.77129, 0.81733, 0.8706, 0.6211, 0.78788, 0.72244, 0.837, 0.46735, 0.69849, 0.36048, 0.60113, 0.19617, 0.37849, 0.163, 0.19841 ],
+ "triangles": [ 1, 2, 3, 4, 1, 3, 40, 38, 39, 85, 40, 41, 85, 41, 42, 48, 49, 50, 85, 35, 36, 40, 37, 38, 85, 37, 40, 43, 85, 42, 85, 36, 37, 34, 35, 85, 34, 85, 43, 43, 33, 34, 43, 44, 33, 84, 33, 44, 84, 44, 45, 30, 31, 32, 33, 29, 30, 33, 30, 32, 84, 28, 29, 84, 29, 33, 53, 48, 52, 52, 48, 51, 51, 48, 50, 48, 54, 47, 54, 46, 47, 60, 61, 62, 27, 28, 84, 27, 84, 45, 53, 54, 48, 54, 45, 46, 45, 25, 26, 26, 27, 45, 25, 45, 54, 54, 55, 25, 83, 55, 56, 55, 83, 25, 59, 63, 58, 60, 62, 63, 60, 63, 59, 21, 22, 23, 24, 21, 23, 20, 24, 25, 20, 21, 24, 19, 25, 83, 20, 25, 19, 57, 83, 56, 73, 74, 72, 64, 57, 58, 65, 66, 57, 75, 71, 72, 75, 72, 74, 64, 58, 63, 65, 57, 64, 67, 82, 66, 57, 66, 82, 76, 70, 71, 68, 82, 67, 16, 82, 68, 15, 16, 68, 80, 15, 68, 17, 82, 16, 83, 82, 19, 82, 83, 57, 18, 19, 82, 18, 82, 17, 10, 12, 13, 11, 12, 10, 14, 15, 8, 9, 14, 8, 13, 14, 9, 10, 13, 9, 76, 71, 75, 69, 70, 76, 69, 76, 77, 81, 69, 77, 80, 68, 69, 78, 81, 77, 79, 81, 78, 0, 79, 78, 5, 81, 79, 1, 79, 0, 4, 79, 1, 5, 79, 4, 6, 81, 5, 81, 80, 69, 7, 81, 6, 81, 15, 80, 7, 15, 81, 8, 15, 7 ],
+ "vertices": [ 4, 44, 14.46, -7.24, 0.97925, 45, -29.05, -18.69, 0.01805, 46, -57.7, -39.08, 0.00216, 47, -80.06, -64.88, 5.4E-4, 4, 44, 5.74, -6.95, 0.98983, 45, -37.34, -21.41, 0.00814, 46, -64.66, -44.34, 0.00157, 47, -85.22, -71.92, 4.6E-4, 1, 39, 70.95, 40.21, 1, 1, 39, 64.59, 40.21, 1, 1, 39, 62.9, 53.82, 1, 2, 44, 16.87, 4.54, 0.99972, 45, -30.83, -6.79, 2.8E-4, 2, 44, 21.82, 11.79, 0.98233, 45, -28.68, 1.72, 0.01767, 3, 44, 27.71, 19.57, 0.93332, 45, -25.82, 11.05, 0.06668, 46, -64.25, -9.9, 0, 3, 44, 37.57, 25.73, 0.75996, 45, -18.67, 20.22, 0.23972, 46, -60.46, 1.09, 3.2E-4, 3, 44, 50.42, 30.96, 0.48106, 45, -8.41, 29.54, 0.50262, 46, -53.76, 13.23, 0.01632, 3, 44, 64.26, 32.12, 0.25718, 45, 4.19, 35.39, 0.67176, 46, -43.72, 22.84, 0.07105, 4, 44, 80.7, 29.33, 0.0733, 45, 20.6, 38.41, 0.75215, 46, -29.18, 31, 0.17357, 47, -72.92, 10.45, 9.8E-4, 3, 44, 73.06, 18.85, 0.06301, 45, 17.02, 25.96, 0.86094, 46, -28.54, 18.06, 0.07605, 3, 44, 66.01, 11.86, 0.05877, 45, 12.8, 16.96, 0.91968, 46, -29.62, 8.18, 0.02155, 3, 44, 59.67, 6.83, 0.07466, 45, 8.58, 10.07, 0.92285, 46, -31.39, 0.29, 0.00249, 4, 44, 49.36, 1.67, 0.38991, 45, 0.66, 1.68, 0.61007, 46, -36.17, -10.21, 1.0E-5, 47, -67.75, -31.03, 0, 3, 44, 56.33, 2.54, 0.01716, 45, 6.91, 4.88, 0.98184, 46, -31.29, -5.16, 0.001, 3, 44, 61.86, 6.86, 0.05327, 45, 10.62, 10.84, 0.94289, 46, -29.71, 1.68, 0.00383, 3, 44, 69.38, 11.53, 0.04026, 45, 16.08, 17.81, 0.9196, 46, -26.79, 10.04, 0.04014, 4, 44, 82.04, 15.44, 0.02287, 45, 26.62, 25.83, 0.79668, 46, -19.41, 21.04, 0.18031, 47, -60.7, 3.73, 1.4E-4, 4, 44, 97.9, 14.15, 0.00999, 45, 41.97, 30.07, 0.53093, 46, -6.26, 30.01, 0.45148, 47, -50.69, 16.1, 0.0076, 4, 44, 110.45, 9.7, 3.0E-5, 45, 55.27, 30.21, 0.34062, 46, 6.29, 34.45, 0.62456, 47, -39.95, 23.96, 0.03479, 3, 45, 70.96, 26.19, 0.1481, 46, 22.43, 35.72, 0.71368, 47, -24.86, 29.82, 0.13822, 3, 45, 64.22, 18.91, 0.13168, 46, 18.41, 26.65, 0.79278, 47, -26.09, 19.98, 0.07554, 3, 45, 55.33, 10.65, 0.10395, 46, 12.66, 15.96, 0.87924, 47, -28.52, 8.09, 0.01682, 3, 45, 46.87, 5.28, 0.0996, 46, 6.4, 8.14, 0.8997, 47, -32.27, -1.2, 6.9E-4, 3, 45, 55.84, 10.03, 0.0879, 46, 13.35, 15.54, 0.89571, 47, -27.74, 7.88, 0.01639, 3, 45, 66.59, 13.24, 0.07022, 46, 22.48, 22.05, 0.84139, 47, -20.87, 16.75, 0.0884, 3, 45, 77.53, 13.48, 0.04333, 46, 32.76, 25.82, 0.68987, 47, -12.12, 23.32, 0.2668, 3, 45, 86.09, 11.36, 0.02947, 46, 41.54, 26.58, 0.48876, 47, -3.93, 26.57, 0.48177, 3, 45, 95.88, 6.72, 0.00769, 46, 52.31, 25.35, 0.32713, 47, 6.74, 28.5, 0.66517, 3, 45, 103.5, -2.23, 9.7E-4, 46, 62.42, 19.35, 0.12236, 47, 18.15, 25.66, 0.87666, 3, 45, 96.08, -6.72, 4.3E-4, 46, 56.84, 12.7, 0.09944, 47, 14.72, 17.68, 0.90013, 3, 45, 86.43, -9.21, 8.0E-5, 46, 48.52, 7.22, 0.10651, 47, 8.33, 10.05, 0.89341, 3, 45, 92.71, -10.81, 8.0E-5, 46, 54.98, 7.73, 0.0577, 47, 14.37, 12.39, 0.94221, 3, 45, 101.89, -13.7, 1.7E-4, 46, 64.6, 7.97, 0.03377, 47, 23.52, 15.4, 0.96606, 3, 45, 111.72, -22.1, 4.0E-5, 46, 76.61, 3.2, 0.00839, 47, 36.39, 14.28, 0.99157, 3, 45, 118.25, -33.61, 2.0E-5, 46, 86.52, -5.58, 3.0E-5, 47, 48.41, 8.72, 0.99995, 3, 45, 120.05, -43.62, 9.0E-5, 46, 91.45, -14.47, 1.7E-4, 47, 55.69, 1.63, 0.99974, 3, 45, 117.26, -45.99, 3.6E-4, 46, 89.58, -17.62, 6.7E-4, 47, 54.81, -1.92, 0.99896, 3, 45, 109.37, -43.81, 7.3E-4, 46, 81.41, -18.11, 0.00139, 47, 47.12, -4.74, 0.99788, 4, 44, 125.38, -70.39, 5.3E-4, 45, 96.81, -39.88, 0.00552, 46, 68.26, -18.45, 0.02435, 47, 34.62, -8.86, 0.9696, 4, 44, 118.48, -62.07, 4.7E-4, 45, 87.47, -34.44, 0.00647, 46, 57.66, -16.32, 0.03676, 47, 23.86, -9.87, 0.95631, 4, 44, 114.49, -50.43, 3.5E-4, 45, 79.73, -24.88, 0.00456, 46, 47.24, -9.77, 0.05392, 47, 12, -6.6, 0.94117, 4, 44, 113.09, -40.92, 8.0E-5, 45, 75.14, -16.43, 0.00113, 46, 40.17, -3.26, 0.27654, 47, 3.35, -2.4, 0.72225, 4, 44, 111.09, -37.95, 7.0E-5, 45, 72.24, -14.33, 0.00152, 46, 36.75, -2.21, 0.46579, 47, -0.23, -2.37, 0.53262, 4, 44, 112.76, -45.43, 2.9E-4, 45, 76.38, -20.78, 0.00362, 46, 42.75, -6.98, 0.22963, 47, 6.89, -5.22, 0.76647, 4, 44, 112.99, -50.89, 5.8E-4, 45, 78.48, -25.83, 0.00672, 46, 46.36, -11.08, 0.08346, 47, 11.54, -8.1, 0.90924, 4, 44, 112.09, -60.56, 0.00163, 45, 80.95, -35.22, 0.01521, 46, 51.74, -19.16, 0.08896, 47, 19.01, -14.3, 0.8942, 4, 44, 109.86, -67.78, 0.00386, 45, 81.34, -42.77, 0.02541, 46, 54.55, -26.18, 0.09904, 47, 23.72, -20.21, 0.8717, 4, 44, 103.71, -64.43, 0.00583, 45, 74.41, -41.73, 0.03706, 46, 47.66, -27.44, 0.17228, 47, 17.49, -23.4, 0.78483, 4, 44, 95.29, -56.24, 0.01266, 45, 63.69, -36.93, 0.07572, 46, 35.96, -26.36, 0.36395, 47, 5.97, -25.73, 0.54768, 4, 44, 90.02, -49.83, 0.0226, 45, 56.54, -32.73, 0.13585, 46, 27.83, -24.7, 0.44525, 47, -2.29, -26.48, 0.39631, 4, 44, 84.67, -36.11, 0.01748, 45, 46.81, -21.68, 0.20454, 46, 15.05, -17.39, 0.66839, 47, -16.63, -23.16, 0.10959, 4, 44, 84.23, -26.63, 0.00767, 45, 43.13, -12.92, 0.25356, 46, 8.74, -10.29, 0.71625, 47, -24.72, -18.18, 0.02252, 4, 44, 84.53, -19.61, 0.00253, 45, 41, -6.23, 0.19046, 46, 4.56, -4.64, 0.80273, 47, -30.35, -13.97, 0.00428, 4, 44, 80.65, -16.52, 0.00357, 45, 36.3, -4.66, 0.52189, 46, -0.39, -4.68, 0.47136, 47, -35.08, -15.43, 0.00319, 4, 44, 77.46, -15.06, 0.00305, 45, 32.8, -4.38, 0.74828, 46, -3.79, -5.55, 0.24656, 47, -38.09, -17.24, 0.00211, 4, 44, 80.59, -22.09, 0.00702, 45, 38.15, -9.91, 0.47232, 46, 3.06, -9.06, 0.5098, 47, -30.52, -18.63, 0.01086, 4, 44, 82.8, -29.21, 0.01354, 45, 42.67, -15.84, 0.26771, 46, 9.25, -13.2, 0.68081, 47, -23.4, -20.81, 0.03793, 4, 44, 84.1, -37.33, 0.02036, 45, 46.69, -23.01, 0.21246, 46, 15.37, -18.69, 0.64636, 47, -15.96, -24.31, 0.12083, 4, 44, 83.34, -47.93, 0.0343, 45, 49.62, -33.23, 0.20057, 46, 21.45, -27.42, 0.4918, 47, -7.62, -30.92, 0.27333, 4, 44, 78.08, -45.18, 0.05532, 45, 43.73, -32.46, 0.24272, 46, 15.63, -28.59, 0.52094, 47, -12.86, -33.72, 0.18103, 4, 44, 72.23, -41.04, 0.0795, 45, 36.81, -30.58, 0.36063, 46, 8.47, -29.05, 0.43779, 47, -19.58, -36.22, 0.12209, 4, 44, 65.45, -35.45, 0.12819, 45, 28.52, -27.66, 0.48762, 46, -0.31, -28.96, 0.31148, 47, -28.02, -38.67, 0.07271, 4, 44, 59.61, -29.56, 0.16135, 45, 21.02, -24.14, 0.63455, 46, -8.56, -28.05, 0.16745, 47, -36.17, -40.17, 0.03665, 4, 44, 56.18, -23.45, 0.17564, 45, 15.69, -19.57, 0.71951, 46, -15.07, -25.45, 0.08329, 47, -43.16, -39.55, 0.02156, 4, 44, 53.45, -15.25, 0.18632, 45, 10.31, -12.81, 0.77616, 46, -22.35, -20.8, 0.03077, 47, -51.47, -37.19, 0.00674, 4, 44, 51.88, -8.11, 0.1634, 45, 6.39, -6.64, 0.83136, 46, -28.06, -16.23, 0.00413, 47, -58.25, -34.46, 0.0011, 4, 44, 43.28, -6.65, 0.76199, 45, -2.19, -8.22, 0.23276, 46, -35.66, -20.5, 0.00411, 47, -64.31, -40.73, 0.00114, 4, 44, 48.41, -11.06, 0.36942, 45, 4.14, -10.61, 0.61741, 46, -28.9, -20.71, 0.01043, 47, -57.77, -38.99, 0.00274, 4, 44, 51.26, -16.06, 0.25947, 45, 8.54, -14.33, 0.70334, 46, -23.54, -22.8, 0.02991, 47, -52.03, -39.45, 0.00729, 4, 44, 54.75, -23.9, 0.21012, 45, 14.51, -20.49, 0.68386, 46, -15.9, -26.71, 0.08346, 47, -43.59, -40.99, 0.02256, 4, 44, 58.22, -35.07, 0.20726, 45, 21.61, -29.78, 0.51124, 46, -6.17, -33.21, 0.22172, 47, -32.41, -44.42, 0.05978, 4, 44, 50.52, -34.68, 0.30352, 45, 14.24, -32.07, 0.51077, 46, -12.4, -37.75, 0.13906, 47, -37.06, -50.56, 0.04665, 4, 44, 40.97, -31.36, 0.49965, 45, 4.13, -32.23, 0.39593, 46, -21.92, -41.17, 0.07578, 47, -45.19, -56.58, 0.02864, 4, 44, 33.27, -28.07, 0.67349, 45, -4.23, -31.79, 0.26264, 46, -29.97, -43.45, 0.04525, 47, -52.25, -61.08, 0.01862, 4, 44, 23.64, -22.26, 0.84446, 45, -15.27, -29.63, 0.13078, 46, -41.12, -44.99, 0.01862, 47, -62.48, -65.76, 0.00614, 4, 44, 18.25, -14.88, 0.93359, 45, -22.87, -24.55, 0.05687, 46, -49.95, -42.64, 0.0074, 47, -71.62, -66.05, 0.00213, 4, 44, 17.59, -0.4, 0.99967, 45, -28.46, -11.18, 2.9E-4, 46, -59.57, -31.79, 3.0E-5, 47, -83.95, -58.44, 0, 4, 44, 45.5, -2.31, 0.59838, 45, -1.59, -3.39, 0.40092, 46, -36.66, -15.73, 5.4E-4, 47, -66.63, -36.46, 1.6E-4, 4, 44, 30.78, -0.49, 0.97804, 45, -16.05, -6.74, 0.02096, 46, -49.25, -23.57, 7.8E-4, 47, -76.44, -47.59, 2.2E-4, 4, 44, 68.56, -7.01, 0.0014, 45, 21.68, 0.12, 0.99113, 46, -15.77, -4.89, 0.00719, 47, -49.75, -20.06, 2.9E-4, 4, 44, 86.3, -14.87, 2.2E-4, 45, 41.03, -1.17, 0.20806, 46, 2.96, 0.15, 0.79132, 47, -33.26, -9.84, 4.0E-4, 4, 44, 117.08, -36.46, 3.0E-5, 45, 77.36, -10.87, 0.00242, 46, 40.47, 2.72, 0.28364, 47, 1.92, 3.41, 0.71391, 4, 44, 129.83, -58.43, 1.0E-5, 45, 96.88, -27.13, 9.0E-5, 46, 64.2, -6.36, 0.00467, 47, 27.26, 1.56, 0.99524 ],
+ "hull": 79,
+ "edges": [ 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 20, 22, 22, 24, 24, 26, 26, 28, 28, 30, 30, 32, 32, 34, 34, 36, 36, 38, 38, 40, 40, 42, 42, 44, 44, 46, 46, 48, 48, 50, 50, 52, 52, 54, 54, 56, 56, 58, 58, 60, 60, 62, 62, 64, 64, 66, 66, 68, 68, 70, 70, 72, 72, 74, 74, 76, 76, 78, 78, 80, 80, 82, 82, 84, 84, 86, 86, 88, 88, 90, 90, 92, 92, 94, 94, 96, 96, 98, 98, 100, 100, 102, 102, 104, 104, 106, 106, 108, 108, 110, 110, 112, 112, 114, 114, 116, 116, 118, 118, 120, 120, 122, 122, 124, 124, 126, 126, 128, 128, 130, 130, 132, 132, 134, 134, 136, 136, 138, 138, 140, 140, 142, 142, 144, 144, 146, 146, 148, 148, 150, 150, 152, 152, 154, 154, 156, 0, 156 ],
+ "width": 130,
+ "height": 139
+ }
+ },
+ "item6_3": {
+ "item6_3": {
+ "type": "mesh",
+ "uvs": [ 0, 0.74641, 0.02572, 0.47728, 0.17651, 0.30398, 0.3403, 0.15681, 0.51077, 0, 0.81051, 0, 1, 0.07169, 0.99999, 0.31422, 1, 0.57424, 0.80915, 0.92517, 0.44022, 1, 0.0694, 0.91479, 0.13682, 0.75393, 0.21901, 0.74817, 0.22776, 0.67572, 0.26273, 0.62057, 0.31083, 0.5687, 0.39389, 0.51602, 0.41051, 0.59258, 0.39826, 0.64033, 0.38078, 0.67655, 0.37903, 0.69795, 0.40089, 0.69713, 0.42012, 0.66914, 0.42449, 0.63374, 0.42887, 0.59175, 0.42974, 0.53331, 0.44898, 0.48144, 0.48308, 0.44028, 0.51631, 0.41888, 0.53642, 0.47815, 0.53904, 0.52919, 0.53292, 0.56459, 0.53117, 0.59752, 0.5644, 0.57529, 0.57751, 0.54648, 0.56352, 0.49708, 0.5574, 0.45592, 0.55478, 0.39665, 0.55574, 0.33802, 0.60033, 0.27216, 0.63968, 0.27216, 0.66329, 0.33967, 0.66679, 0.38741, 0.67116, 0.42611, 0.69914, 0.40223, 0.69039, 0.35119, 0.67116, 0.30838, 0.67466, 0.25241, 0.69477, 0.20301, 0.73499, 0.15197, 0.78658, 0.10175, 0.81661, 0.17271, 0.82623, 0.21305, 0.81836, 0.27973, 0.80088, 0.31513, 0.77115, 0.3497, 0.74491, 0.38098, 0.78863, 0.37604, 0.85246, 0.3604, 0.84547, 0.41348, 0.82186, 0.4637, 0.79038, 0.50239, 0.74754, 0.53285, 0.70906, 0.55343, 0.66185, 0.55837, 0.64786, 0.58008, 0.69333, 0.57678, 0.75278, 0.5809, 0.82099, 0.58666, 0.77202, 0.62618, 0.72218, 0.66487, 0.6636, 0.69368, 0.60501, 0.71509, 0.53856, 0.71509, 0.48959, 0.70356, 0.43975, 0.70191, 0.42966, 0.72041, 0.46289, 0.72782, 0.51535, 0.7377, 0.57219, 0.76157, 0.62815, 0.78956, 0.59055, 0.8192, 0.53546, 0.84143, 0.48038, 0.85048, 0.41567, 0.84801, 0.35971, 0.83237, 0.31599, 0.81179, 0.27752, 0.78874, 0.22505, 0.79779, 0.17259, 0.81097, 0.1315, 0.79697, 0.75045, 0.2654, 0.72173, 0.40577, 0.61792, 0.56174, 0.6389, 0.49208, 0.54282, 0.64596 ],
+ "triangles": [ 11, 0, 91, 51, 4, 5, 51, 5, 6, 50, 4, 51, 52, 51, 6, 50, 51, 52, 49, 4, 50, 4, 40, 3, 53, 52, 6, 4, 49, 40, 53, 92, 50, 53, 50, 52, 49, 50, 92, 48, 49, 92, 40, 49, 41, 48, 41, 49, 54, 92, 53, 47, 41, 48, 47, 48, 92, 7, 53, 6, 54, 53, 7, 55, 92, 54, 39, 3, 40, 42, 41, 47, 56, 92, 55, 46, 47, 92, 46, 42, 47, 92, 56, 46, 59, 54, 7, 55, 54, 59, 58, 56, 55, 59, 58, 55, 57, 46, 56, 57, 56, 58, 40, 41, 42, 39, 40, 42, 45, 46, 57, 60, 58, 59, 61, 58, 60, 58, 93, 57, 58, 61, 93, 60, 59, 7, 8, 60, 7, 61, 60, 8, 43, 42, 46, 43, 46, 45, 93, 45, 57, 38, 29, 39, 44, 43, 45, 39, 43, 38, 43, 39, 42, 44, 38, 43, 44, 37, 38, 29, 38, 37, 95, 37, 44, 44, 45, 93, 36, 37, 95, 62, 93, 61, 63, 93, 62, 44, 93, 63, 95, 44, 63, 64, 95, 63, 65, 95, 64, 94, 35, 95, 65, 94, 95, 67, 65, 64, 66, 94, 65, 66, 65, 67, 69, 68, 63, 64, 63, 68, 67, 64, 68, 69, 62, 61, 69, 61, 8, 69, 63, 62, 70, 68, 69, 71, 67, 68, 71, 68, 70, 71, 72, 66, 71, 66, 67, 34, 94, 66, 72, 96, 66, 81, 73, 72, 8, 9, 70, 71, 70, 9, 81, 72, 71, 9, 81, 71, 8, 70, 69, 82, 9, 83, 9, 82, 81, 2, 3, 28, 28, 3, 39, 39, 29, 28, 30, 29, 37, 28, 29, 30, 27, 2, 28, 30, 37, 36, 17, 2, 27, 31, 30, 36, 26, 17, 27, 35, 36, 95, 31, 36, 35, 27, 30, 31, 30, 27, 28, 32, 31, 35, 31, 26, 27, 32, 26, 31, 34, 32, 35, 26, 18, 17, 25, 26, 32, 18, 16, 17, 26, 25, 18, 33, 25, 32, 33, 32, 34, 24, 18, 25, 19, 18, 24, 96, 33, 34, 34, 35, 94, 24, 33, 96, 33, 24, 25, 24, 75, 23, 75, 76, 23, 96, 34, 66, 24, 96, 75, 72, 73, 96, 74, 75, 96, 73, 74, 96, 78, 76, 75, 79, 75, 74, 78, 75, 79, 80, 74, 73, 79, 74, 80, 80, 73, 81, 82, 80, 81, 83, 79, 80, 83, 80, 82, 79, 84, 78, 84, 79, 83, 16, 1, 2, 17, 16, 2, 15, 1, 16, 19, 16, 18, 23, 19, 24, 14, 1, 15, 19, 15, 16, 20, 19, 23, 20, 15, 19, 22, 20, 23, 20, 14, 15, 21, 20, 22, 21, 14, 20, 22, 23, 76, 77, 22, 76, 77, 76, 78, 12, 0, 1, 1, 14, 12, 88, 13, 14, 13, 12, 14, 21, 88, 14, 91, 0, 12, 89, 13, 88, 90, 12, 13, 90, 13, 89, 91, 12, 90, 87, 88, 21, 86, 87, 21, 77, 21, 22, 85, 77, 78, 84, 85, 78, 11, 91, 90, 10, 85, 84, 10, 84, 83, 9, 10, 83, 77, 86, 21, 85, 86, 77, 86, 85, 10, 87, 86, 10, 89, 88, 87, 87, 90, 89, 87, 11, 90, 10, 11, 87 ],
+ "vertices": [ 1, 39, 75.6, -13.79, 1, 4, 40, -8.4, 67.65, 0.77804, 41, -27.51, 82.42, 0.19743, 42, -37.85, 98.55, 0.02097, 43, -38.65, 119.17, 0.00356, 4, 40, 28.37, 88.19, 0.44486, 41, 14.14, 88.62, 0.36537, 42, 3.74, 91.91, 0.1139, 43, -1.74, 98.89, 0.07587, 4, 40, 65.48, 103.31, 0.15077, 41, 54.21, 89.63, 0.28326, 42, 42.25, 80.81, 0.20465, 43, 30.76, 75.45, 0.36132, 4, 40, 104.36, 119.69, 0.02753, 41, 96.36, 91.18, 0.09523, 42, 82.91, 69.6, 0.10569, 43, 65.26, 51.17, 0.77155, 4, 40, 153.73, 100.25, 0, 41, 135.65, 55.53, 5.8E-4, 42, 109.65, 23.78, 3.8E-4, 43, 74.96, -0.99, 0.99903, 1, 43, 67.84, -36.43, 1, 2, 42, 75.52, -34.96, 0.04448, 43, 23.01, -44.76, 0.95552, 2, 42, 33.29, -59.59, 0.62402, 43, -25.05, -53.7, 0.37598, 4, 40, 89.78, -61.5, 0.06708, 41, 18.59, -73.11, 0.25696, 42, -40.71, -63.65, 0.67196, 43, -96.09, -32.55, 0.004, 3, 40, 23.86, -50.67, 0.79097, 41, -39.22, -39.65, 0.12136, 42, -85.77, -14.34, 0.08767, 1, 39, 43.95, -26.07, 1, 2, 40, -9.16, 12.05, 0.99052, 41, -47.9, 30.69, 0.00948, 2, 40, 4.78, 7.73, 0.99306, 41, -36.4, 21.72, 0.00694, 3, 40, 11.21, 19.83, 0.94081, 41, -26.1, 30.77, 0.0584, 42, -52.06, 48.86, 7.9E-4, 4, 40, 20.77, 27.21, 0.83449, 41, -14.55, 34.28, 0.16, 42, -39.98, 48.74, 0.00518, 43, -57.47, 73.01, 3.3E-4, 4, 40, 32.26, 33.17, 0.64524, 41, -1.69, 35.79, 0.33414, 42, -27.27, 46.3, 0.01783, 43, -46.32, 66.42, 0.00279, 4, 40, 49.57, 37, 0.33863, 41, 15.85, 33.24, 0.59098, 42, -11.31, 38.59, 0.06062, 43, -33.9, 53.77, 0.00977, 4, 40, 47.03, 22.53, 0.38426, 41, 8.36, 20.61, 0.60793, 42, -22.26, 28.8, 0.00741, 43, -47.51, 48.25, 4.0E-4, 3, 40, 41.73, 14.97, 0.58818, 41, 0.72, 15.41, 0.41134, 42, -31.1, 26.15, 4.8E-4, 2, 40, 36.35, 9.77, 0.86168, 41, -6.15, 12.45, 0.13832, 2, 40, 34.59, 6.14, 0.95418, 41, -9.08, 9.68, 0.04582, 2, 40, 38.25, 4.86, 0.94552, 41, -6.11, 7.19, 0.05448, 2, 40, 43.34, 8.51, 0.59604, 41, -0.06, 8.8, 0.40396, 3, 40, 46.5, 14.42, 0.39203, 41, 4.99, 13.21, 0.60766, 42, -27.69, 22.76, 3.1E-4, 4, 40, 50.11, 21.48, 0.302, 41, 10.87, 18.54, 0.69106, 42, -20.49, 26.07, 0.00669, 43, -46.77, 45.09, 2.5E-4, 4, 40, 54.28, 31.65, 0.25396, 41, 18.37, 26.57, 0.69161, 42, -10.92, 31.47, 0.04967, 43, -35.93, 46.94, 0.00476, 4, 40, 61.02, 39.47, 0.18825, 41, 27.44, 31.5, 0.65022, 42, -0.78, 33.44, 0.1433, 43, -25.73, 45.38, 0.01823, 4, 40, 69.47, 44.46, 0.12512, 41, 37.11, 33.18, 0.55277, 42, 8.95, 32.13, 0.28114, 43, -17.01, 40.86, 0.04097, 4, 40, 76.42, 46.05, 0.08443, 41, 44.17, 32.2, 0.44972, 42, 15.39, 29.08, 0.406, 43, -11.98, 35.81, 0.05985, 4, 40, 75.65, 34.38, 0.0564, 41, 39.32, 21.56, 0.60197, 42, 7.55, 20.39, 0.33274, 43, -22.29, 30.27, 0.00888, 4, 40, 72.57, 25.28, 0.03975, 41, 33.21, 14.14, 0.8411, 42, -0.5, 15.15, 0.11873, 43, -31.64, 28.06, 4.2E-4, 3, 40, 69.12, 19.49, 0.03162, 41, 27.94, 9.94, 0.95388, 42, -6.79, 12.73, 0.0145, 2, 40, 66.56, 13.84, 0.01677, 41, 23.55, 5.57, 0.98323, 2, 40, 73.57, 15.57, 0.00681, 41, 30.71, 4.71, 0.99319, 3, 40, 77.71, 19.76, 0.00908, 41, 36.07, 7.16, 0.88011, 42, 0.12, 7.63, 0.11081, 4, 40, 78.81, 29.31, 0.02908, 41, 40.48, 15.7, 0.59811, 42, 6.9, 14.45, 0.37147, 43, -24.91, 24.91, 0.00134, 4, 40, 80.64, 36.91, 0.04239, 41, 44.88, 22.16, 0.44596, 42, 13.03, 19.29, 0.49592, 43, -17.5, 27.39, 0.01574, 4, 40, 84.29, 47.45, 0.05133, 41, 52.02, 30.72, 0.3108, 42, 22.43, 25.3, 0.54488, 43, -6.63, 29.88, 0.09299, 4, 40, 88.48, 57.64, 0.05239, 41, 59.55, 38.77, 0.22987, 42, 32.03, 30.71, 0.46363, 43, 4.24, 31.73, 0.25411, 4, 40, 100.36, 66.27, 0.02826, 41, 73.72, 42.64, 0.11531, 42, 46.7, 30.13, 0.29556, 43, 17.85, 26.23, 0.56086, 4, 40, 106.84, 63.72, 0.01516, 41, 78.88, 37.96, 0.06813, 42, 50.21, 24.11, 0.23312, 43, 19.13, 19.38, 0.68359, 4, 40, 106.08, 50.38, 0.00778, 41, 73.44, 25.75, 0.04704, 42, 41.36, 14.11, 0.43718, 43, 7.41, 12.96, 0.508, 4, 40, 103.37, 41.8, 0.0048, 41, 67.87, 18.69, 0.03874, 42, 33.92, 9.05, 0.81166, 43, -1.3, 10.71, 0.1448, 3, 40, 101.43, 34.75, 0.00199, 41, 63.55, 12.78, 0.02239, 42, 28.02, 4.72, 0.97562, 4, 40, 107.68, 37.11, 6.1E-4, 41, 70.24, 12.78, 0.00543, 42, 34.39, 2.7, 0.9686, 43, -2.99, 4.57, 0.02536, 4, 40, 109.75, 46.6, 0.00293, 41, 75.54, 20.92, 0.0196, 42, 41.9, 8.87, 0.36668, 43, 6.16, 7.84, 0.61079, 4, 40, 109.53, 55.34, 0.0072, 41, 78.43, 29.17, 0.03859, 42, 47.14, 15.87, 0.2507, 43, 13.45, 12.66, 0.70351, 4, 40, 113.97, 64.9, 0.00737, 41, 85.96, 36.55, 0.03393, 42, 56.54, 20.64, 0.11755, 43, 23.91, 13.98, 0.84115, 4, 40, 120.68, 72.24, 0.00446, 41, 94.83, 41.03, 0.01999, 42, 66.36, 22.24, 0.04741, 43, 33.69, 12.17, 0.92815, 4, 40, 130.82, 78.56, 0.00112, 41, 106.55, 43.35, 0.00565, 42, 78.23, 20.93, 0.00948, 43, 44.43, 6.93, 0.98375, 4, 40, 142.78, 84, 0, 41, 119.66, 44.21, 1.7E-4, 42, 90.99, 17.8, 1.3E-4, 43, 55.38, -0.32, 0.99969, 1, 43, 43.23, -7.99, 1, 1, 43, 36.09, -11.05, 1, 1, 43, 23.51, -11.97, 1, 2, 42, 57.61, -4.6, 7.2E-4, 43, 16.4, -10.14, 0.99928, 1, 43, 9.05, -6.16, 1, 1, 43, 2.42, -2.67, 1, 2, 42, 46.63, -8.5, 0.05513, 43, 4.75, -10.11, 0.94487, 2, 42, 54.86, -16.78, 0.06803, 43, 9.7, -20.68, 0.93197, 2, 42, 45.62, -20.74, 0.23363, 43, -0.34, -21.28, 0.76637, 2, 42, 35.36, -21.88, 0.50207, 43, -10.38, -18.9, 0.49793, 2, 42, 26.27, -20.74, 0.73257, 43, -18.55, -14.75, 0.26743, 2, 42, 17.5, -17.07, 0.89403, 43, -25.57, -8.34, 0.10597, 2, 42, 10.73, -13.14, 0.96126, 43, -30.62, -2.36, 0.03874, 2, 42, 5.71, -6.39, 0.99371, 43, -33.06, 5.69, 0.00629, 2, 42, 0.94, -6.3, 0.99622, 43, -37.52, 7.38, 0.00378, 2, 42, 5.53, -12.94, 0.97632, 43, -35.44, -0.42, 0.02368, 3, 41, 54.7, -18.48, 6.7E-4, 42, 10.16, -22.42, 0.91356, 43, -34.28, -10.91, 0.08578, 3, 41, 62.91, -27.39, 0.00173, 42, 15.31, -33.4, 0.81802, 43, -33.14, -22.98, 0.18025, 3, 41, 51.5, -27.07, 0.01871, 42, 4.53, -29.66, 0.89877, 43, -42.03, -15.81, 0.08252, 4, 40, 93.38, -10.33, 9.9E-4, 41, 40.08, -26.53, 0.10437, 42, -6.2, -25.7, 0.86404, 43, -50.79, -8.47, 0.03059, 4, 40, 81.75, -11.57, 0.00754, 41, 28.76, -23.57, 0.3241, 42, -16.1, -19.47, 0.66154, 43, -58.01, 0.74, 0.00682, 4, 40, 70.63, -11.51, 0.02495, 41, 18.38, -19.59, 0.60393, 42, -24.8, -12.54, 0.37063, 43, -63.86, 10.19, 4.9E-4, 3, 40, 59.68, -7.21, 0.03728, 41, 9.66, -11.68, 0.84619, 42, -30.73, -2.38, 0.11653, 2, 41, 4.7, -4.25, 0.98272, 42, -33.23, 6.19, 0.01728, 2, 40, 44.32, 1.51, 0.8464, 41, -1.62, 1.9, 0.1536, 2, 40, 41.38, -1.08, 0.9991, 42, -41.31, 13.76, 9.0E-4, 3, 40, 46.34, -4.53, 0.49652, 41, -1.86, -4.45, 0.48947, 42, -39.55, 7.98, 0.01401, 3, 40, 54.3, -9.66, 0.14794, 41, 3.77, -12.07, 0.76408, 42, -36.47, -0.98, 0.08798, 3, 40, 62.02, -17.52, 0.1289, 41, 8.2, -22.15, 0.61413, 42, -35.28, -11.93, 0.25697, 4, 40, 69.31, -26.04, 0.11558, 41, 12, -32.71, 0.45144, 42, -34.84, -23.14, 0.4323, 43, -76.88, 3.61, 6.8E-4, 4, 40, 61.07, -28.79, 0.22944, 41, 3.33, -32.36, 0.4493, 42, -43, -20.19, 0.32125, 43, -83.57, 9.13, 1.0E-5, 3, 40, 50.47, -29.11, 0.43013, 41, -6.7, -28.9, 0.37155, 42, -51.52, -13.88, 0.19832, 3, 40, 40.78, -27.12, 0.65361, 41, -15.07, -23.61, 0.23637, 42, -57.91, -6.31, 0.11002, 3, 40, 30.29, -22.49, 0.87168, 41, -23.24, -15.57, 0.08461, 42, -63.28, 3.81, 0.04371, 3, 40, 22.15, -16.12, 0.97276, 41, -28.6, -6.74, 0.01426, 42, -65.73, 13.85, 0.01298, 3, 40, 16.37, -9.69, 0.99723, 41, -31.73, 1.33, 2.4E-4, 42, -66.28, 22.48, 0.00253, 2, 40, 11.62, -3.16, 0.99989, 42, -65.97, 30.55, 1.1E-4, 1, 40, 2.35, -1.34, 1, 2, 40, -7.19, -0.25, 0.99976, 41, -50.42, 18.5, 2.4E-4, 2, 40, -13, 4.87, 0.99804, 41, -54.04, 25.33, 0.00196, 4, 40, 125.55, 57.72, 3.0E-5, 41, 94.25, 25.72, 1.7E-4, 42, 61.19, 7.82, 7.8E-4, 43, 23.96, 0.34, 0.99901, 2, 42, 35.83, -1.09, 0.90886, 43, -2.91, 0.51, 0.09114, 3, 40, 83.32, 14.47, 4.0E-5, 42, 1.25, 0.01, 0.99995, 43, -35.1, 13.22, 1.0E-5, 3, 40, 91.57, 25.3, 0.00185, 41, 50.99, 7.43, 0.05938, 42, 14.43, 3.4, 0.93877, 2, 41, 18.96, -2.56, 0.97399, 42, -19.13, 3.51, 0.02601 ],
+ "hull": 12,
+ "edges": [ 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 20, 22, 0, 22 ],
+ "width": 177,
+ "height": 188
+ }
+ },
+ "item6_4": {
+ "item6_4": {
+ "type": "mesh",
+ "uvs": [ 0.85821, 0.83228, 0.92032, 0.85604, 1, 0.87753, 1, 0.9233, 0.89534, 0.93545, 0.80927, 0.9057, 0.7542, 0.94225, 0.69092, 0.98, 0.6033, 0.9969, 0.49671, 1, 0.39373, 0.97324, 0.28262, 0.91326, 0.36573, 0.86173, 0.43528, 0.83216, 0.49444, 0.81412, 0.58264, 0.80513, 0.53006, 0.7935, 0.47861, 0.80884, 0.41189, 0.82153, 0.31012, 0.81624, 0.19915, 0.76785, 0.12056, 0.70651, 0.04875, 0.61132, 0.12451, 0.60286, 0.21781, 0.59916, 0.29413, 0.60921, 0.21789, 0.59336, 0.13897, 0.56078, 0.07368, 0.51107, 0.03416, 0.45954, 0, 0.38841, 0, 0.30383, 0.0659, 0.31391, 0.13477, 0.34528, 0.10602, 0.30719, 0.06664, 0.24855, 0.05107, 0.15669, 0.07023, 0.06315, 0.10967, 0, 0.13781, 0, 0.17315, 0.04879, 0.22705, 0.12888, 0.2546, 0.20225, 0.2522, 0.29075, 0.23691, 0.35843, 0.24337, 0.38347, 0.25137, 0.32879, 0.2643, 0.29138, 0.29665, 0.22845, 0.33203, 0.18529, 0.36742, 0.22327, 0.40621, 0.2996, 0.42713, 0.35601, 0.42898, 0.4619, 0.40682, 0.527, 0.3859, 0.57362, 0.40559, 0.60412, 0.42467, 0.62196, 0.42098, 0.56671, 0.42405, 0.51319, 0.43635, 0.45516, 0.4702, 0.38552, 0.50079, 0.41721, 0.53193, 0.45978, 0.5659, 0.51444, 0.59225, 0.56877, 0.60063, 0.61862, 0.5984, 0.68075, 0.59061, 0.73284, 0.64871, 0.7642, 0.62355, 0.72163, 0.61637, 0.68075, 0.61217, 0.61913, 0.61696, 0.53512, 0.67146, 0.55696, 0.7315, 0.60325, 0.77822, 0.6447, 0.83212, 0.70799, 0.85128, 0.77129, 0.81733, 0.8706, 0.6211, 0.78788, 0.72244, 0.837, 0.46735, 0.69849, 0.36048, 0.60113, 0.19617, 0.37849, 0.163, 0.19841 ],
+ "triangles": [ 1, 2, 3, 4, 1, 3, 40, 38, 39, 85, 40, 41, 85, 41, 42, 48, 49, 50, 85, 35, 36, 40, 37, 38, 85, 37, 40, 43, 85, 42, 85, 36, 37, 34, 35, 85, 34, 85, 43, 43, 33, 34, 43, 44, 33, 84, 33, 44, 84, 44, 45, 30, 31, 32, 33, 29, 30, 33, 30, 32, 84, 28, 29, 84, 29, 33, 53, 48, 52, 52, 48, 51, 51, 48, 50, 48, 54, 47, 54, 46, 47, 60, 61, 62, 27, 28, 84, 27, 84, 45, 53, 54, 48, 54, 45, 46, 45, 25, 26, 26, 27, 45, 25, 45, 54, 54, 55, 25, 83, 55, 56, 55, 83, 25, 59, 63, 58, 60, 62, 63, 60, 63, 59, 21, 22, 23, 24, 21, 23, 20, 24, 25, 20, 21, 24, 19, 25, 83, 20, 25, 19, 57, 83, 56, 73, 74, 72, 64, 57, 58, 65, 66, 57, 75, 71, 72, 75, 72, 74, 64, 58, 63, 65, 57, 64, 67, 82, 66, 57, 66, 82, 76, 70, 71, 68, 82, 67, 16, 82, 68, 15, 16, 68, 80, 15, 68, 17, 82, 16, 83, 82, 19, 82, 83, 57, 18, 19, 82, 18, 82, 17, 10, 12, 13, 11, 12, 10, 14, 15, 8, 9, 14, 8, 13, 14, 9, 10, 13, 9, 76, 71, 75, 69, 70, 76, 69, 76, 77, 81, 69, 77, 80, 68, 69, 78, 81, 77, 79, 81, 78, 0, 79, 78, 5, 81, 79, 1, 79, 0, 4, 79, 1, 5, 79, 4, 6, 81, 5, 81, 80, 69, 7, 81, 6, 81, 15, 80, 7, 15, 81, 8, 15, 7 ],
+ "vertices": [ 4, 44, 14.46, -7.24, 0.97925, 45, -29.05, -18.69, 0.01805, 46, -57.7, -39.08, 0.00216, 47, -80.06, -64.88, 5.4E-4, 4, 44, 5.74, -6.95, 0.98983, 45, -37.34, -21.41, 0.00814, 46, -64.66, -44.34, 0.00157, 47, -85.22, -71.92, 4.6E-4, 1, 39, 70.95, 40.21, 1, 1, 39, 64.59, 40.21, 1, 1, 39, 62.9, 53.82, 1, 2, 44, 16.87, 4.54, 0.99972, 45, -30.83, -6.79, 2.8E-4, 2, 44, 21.82, 11.79, 0.98233, 45, -28.68, 1.72, 0.01767, 3, 44, 27.71, 19.57, 0.93332, 45, -25.82, 11.05, 0.06668, 46, -64.25, -9.9, 0, 3, 44, 37.57, 25.73, 0.75996, 45, -18.67, 20.22, 0.23972, 46, -60.46, 1.09, 3.2E-4, 3, 44, 50.42, 30.96, 0.48106, 45, -8.41, 29.54, 0.50262, 46, -53.76, 13.23, 0.01632, 3, 44, 64.26, 32.12, 0.25718, 45, 4.19, 35.39, 0.67176, 46, -43.72, 22.84, 0.07105, 4, 44, 80.7, 29.33, 0.0733, 45, 20.6, 38.41, 0.75215, 46, -29.18, 31, 0.17357, 47, -72.92, 10.45, 9.8E-4, 3, 44, 73.06, 18.85, 0.06301, 45, 17.02, 25.96, 0.86094, 46, -28.54, 18.06, 0.07605, 3, 44, 66.01, 11.86, 0.05877, 45, 12.8, 16.96, 0.91968, 46, -29.62, 8.18, 0.02155, 3, 44, 59.67, 6.83, 0.07466, 45, 8.58, 10.07, 0.92285, 46, -31.39, 0.29, 0.00249, 4, 44, 49.36, 1.67, 0.38991, 45, 0.66, 1.68, 0.61007, 46, -36.17, -10.21, 1.0E-5, 47, -67.75, -31.03, 0, 3, 44, 56.33, 2.54, 0.01716, 45, 6.91, 4.88, 0.98184, 46, -31.29, -5.16, 0.001, 3, 44, 61.86, 6.86, 0.05327, 45, 10.62, 10.84, 0.94289, 46, -29.71, 1.68, 0.00383, 3, 44, 69.38, 11.53, 0.04026, 45, 16.08, 17.81, 0.9196, 46, -26.79, 10.04, 0.04014, 4, 44, 82.04, 15.44, 0.02287, 45, 26.62, 25.83, 0.79668, 46, -19.41, 21.04, 0.18031, 47, -60.7, 3.73, 1.4E-4, 4, 44, 97.9, 14.15, 0.00999, 45, 41.97, 30.07, 0.53093, 46, -6.26, 30.01, 0.45148, 47, -50.69, 16.1, 0.0076, 4, 44, 110.45, 9.7, 3.0E-5, 45, 55.27, 30.21, 0.34062, 46, 6.29, 34.45, 0.62456, 47, -39.95, 23.96, 0.03479, 3, 45, 70.96, 26.19, 0.1481, 46, 22.43, 35.72, 0.71368, 47, -24.86, 29.82, 0.13822, 3, 45, 64.22, 18.91, 0.13168, 46, 18.41, 26.65, 0.79278, 47, -26.09, 19.98, 0.07554, 3, 45, 55.33, 10.65, 0.10395, 46, 12.66, 15.96, 0.87924, 47, -28.52, 8.09, 0.01682, 3, 45, 46.87, 5.28, 0.0996, 46, 6.4, 8.14, 0.8997, 47, -32.27, -1.2, 6.9E-4, 3, 45, 55.84, 10.03, 0.0879, 46, 13.35, 15.54, 0.89571, 47, -27.74, 7.88, 0.01639, 3, 45, 66.59, 13.24, 0.07022, 46, 22.48, 22.05, 0.84139, 47, -20.87, 16.75, 0.0884, 3, 45, 77.53, 13.48, 0.04333, 46, 32.76, 25.82, 0.68987, 47, -12.12, 23.32, 0.2668, 3, 45, 86.09, 11.36, 0.02947, 46, 41.54, 26.58, 0.48876, 47, -3.93, 26.57, 0.48177, 3, 45, 95.88, 6.72, 0.00769, 46, 52.31, 25.35, 0.32713, 47, 6.74, 28.5, 0.66517, 3, 45, 103.5, -2.23, 9.7E-4, 46, 62.42, 19.35, 0.12236, 47, 18.15, 25.66, 0.87666, 3, 45, 96.08, -6.72, 4.3E-4, 46, 56.84, 12.7, 0.09944, 47, 14.72, 17.68, 0.90013, 3, 45, 86.43, -9.21, 8.0E-5, 46, 48.52, 7.22, 0.10651, 47, 8.33, 10.05, 0.89341, 3, 45, 92.71, -10.81, 8.0E-5, 46, 54.98, 7.73, 0.0577, 47, 14.37, 12.39, 0.94221, 3, 45, 101.89, -13.7, 1.7E-4, 46, 64.6, 7.97, 0.03377, 47, 23.52, 15.4, 0.96606, 3, 45, 111.72, -22.1, 4.0E-5, 46, 76.61, 3.2, 0.00839, 47, 36.39, 14.28, 0.99157, 3, 45, 118.25, -33.61, 2.0E-5, 46, 86.52, -5.58, 3.0E-5, 47, 48.41, 8.72, 0.99995, 3, 45, 120.05, -43.62, 9.0E-5, 46, 91.45, -14.47, 1.7E-4, 47, 55.69, 1.63, 0.99974, 3, 45, 117.26, -45.99, 3.6E-4, 46, 89.58, -17.62, 6.7E-4, 47, 54.81, -1.92, 0.99896, 3, 45, 109.37, -43.81, 7.3E-4, 46, 81.41, -18.11, 0.00139, 47, 47.12, -4.74, 0.99788, 4, 44, 125.38, -70.39, 5.3E-4, 45, 96.81, -39.88, 0.00552, 46, 68.26, -18.45, 0.02435, 47, 34.62, -8.86, 0.9696, 4, 44, 118.48, -62.07, 4.7E-4, 45, 87.47, -34.44, 0.00647, 46, 57.66, -16.32, 0.03676, 47, 23.86, -9.87, 0.95631, 4, 44, 114.49, -50.43, 3.5E-4, 45, 79.73, -24.88, 0.00456, 46, 47.24, -9.77, 0.05392, 47, 12, -6.6, 0.94117, 4, 44, 113.09, -40.92, 8.0E-5, 45, 75.14, -16.43, 0.00113, 46, 40.17, -3.26, 0.27654, 47, 3.35, -2.4, 0.72225, 4, 44, 111.09, -37.95, 7.0E-5, 45, 72.24, -14.33, 0.00152, 46, 36.75, -2.21, 0.46579, 47, -0.23, -2.37, 0.53262, 4, 44, 112.76, -45.43, 2.9E-4, 45, 76.38, -20.78, 0.00362, 46, 42.75, -6.98, 0.22963, 47, 6.89, -5.22, 0.76647, 4, 44, 112.99, -50.89, 5.8E-4, 45, 78.48, -25.83, 0.00672, 46, 46.36, -11.08, 0.08346, 47, 11.54, -8.1, 0.90924, 4, 44, 112.09, -60.56, 0.00163, 45, 80.95, -35.22, 0.01521, 46, 51.74, -19.16, 0.08896, 47, 19.01, -14.3, 0.8942, 4, 44, 109.86, -67.78, 0.00386, 45, 81.34, -42.77, 0.02541, 46, 54.55, -26.18, 0.09904, 47, 23.72, -20.21, 0.8717, 4, 44, 103.71, -64.43, 0.00583, 45, 74.41, -41.73, 0.03706, 46, 47.66, -27.44, 0.17228, 47, 17.49, -23.4, 0.78483, 4, 44, 95.29, -56.24, 0.01266, 45, 63.69, -36.93, 0.07572, 46, 35.96, -26.36, 0.36395, 47, 5.97, -25.73, 0.54768, 4, 44, 90.02, -49.83, 0.0226, 45, 56.54, -32.73, 0.13585, 46, 27.83, -24.7, 0.44525, 47, -2.29, -26.48, 0.39631, 4, 44, 84.67, -36.11, 0.01748, 45, 46.81, -21.68, 0.20454, 46, 15.05, -17.39, 0.66839, 47, -16.63, -23.16, 0.10959, 4, 44, 84.23, -26.63, 0.00767, 45, 43.13, -12.92, 0.25356, 46, 8.74, -10.29, 0.71625, 47, -24.72, -18.18, 0.02252, 4, 44, 84.53, -19.61, 0.00253, 45, 41, -6.23, 0.19046, 46, 4.56, -4.64, 0.80273, 47, -30.35, -13.97, 0.00428, 4, 44, 80.65, -16.52, 0.00357, 45, 36.3, -4.66, 0.52189, 46, -0.39, -4.68, 0.47136, 47, -35.08, -15.43, 0.00319, 4, 44, 77.46, -15.06, 0.00305, 45, 32.8, -4.38, 0.74828, 46, -3.79, -5.55, 0.24656, 47, -38.09, -17.24, 0.00211, 4, 44, 80.59, -22.09, 0.00702, 45, 38.15, -9.91, 0.47232, 46, 3.06, -9.06, 0.5098, 47, -30.52, -18.63, 0.01086, 4, 44, 82.8, -29.21, 0.01354, 45, 42.67, -15.84, 0.26771, 46, 9.25, -13.2, 0.68081, 47, -23.4, -20.81, 0.03793, 4, 44, 84.1, -37.33, 0.02036, 45, 46.69, -23.01, 0.21246, 46, 15.37, -18.69, 0.64636, 47, -15.96, -24.31, 0.12083, 4, 44, 83.34, -47.93, 0.0343, 45, 49.62, -33.23, 0.20057, 46, 21.45, -27.42, 0.4918, 47, -7.62, -30.92, 0.27333, 4, 44, 78.08, -45.18, 0.05532, 45, 43.73, -32.46, 0.24272, 46, 15.63, -28.59, 0.52094, 47, -12.86, -33.72, 0.18103, 4, 44, 72.23, -41.04, 0.0795, 45, 36.81, -30.58, 0.36063, 46, 8.47, -29.05, 0.43779, 47, -19.58, -36.22, 0.12209, 4, 44, 65.45, -35.45, 0.12819, 45, 28.52, -27.66, 0.48762, 46, -0.31, -28.96, 0.31148, 47, -28.02, -38.67, 0.07271, 4, 44, 59.61, -29.56, 0.16135, 45, 21.02, -24.14, 0.63455, 46, -8.56, -28.05, 0.16745, 47, -36.17, -40.17, 0.03665, 4, 44, 56.18, -23.45, 0.17564, 45, 15.69, -19.57, 0.71951, 46, -15.07, -25.45, 0.08329, 47, -43.16, -39.55, 0.02156, 4, 44, 53.45, -15.25, 0.18632, 45, 10.31, -12.81, 0.77616, 46, -22.35, -20.8, 0.03077, 47, -51.47, -37.19, 0.00674, 4, 44, 51.88, -8.11, 0.1634, 45, 6.39, -6.64, 0.83136, 46, -28.06, -16.23, 0.00413, 47, -58.25, -34.46, 0.0011, 4, 44, 43.28, -6.65, 0.76199, 45, -2.19, -8.22, 0.23276, 46, -35.66, -20.5, 0.00411, 47, -64.31, -40.73, 0.00114, 4, 44, 48.41, -11.06, 0.36942, 45, 4.14, -10.61, 0.61741, 46, -28.9, -20.71, 0.01043, 47, -57.77, -38.99, 0.00274, 4, 44, 51.26, -16.06, 0.25947, 45, 8.54, -14.33, 0.70334, 46, -23.54, -22.8, 0.02991, 47, -52.03, -39.45, 0.00729, 4, 44, 54.75, -23.9, 0.21012, 45, 14.51, -20.49, 0.68386, 46, -15.9, -26.71, 0.08346, 47, -43.59, -40.99, 0.02256, 4, 44, 58.22, -35.07, 0.20726, 45, 21.61, -29.78, 0.51124, 46, -6.17, -33.21, 0.22172, 47, -32.41, -44.42, 0.05978, 4, 44, 50.52, -34.68, 0.30352, 45, 14.24, -32.07, 0.51077, 46, -12.4, -37.75, 0.13906, 47, -37.06, -50.56, 0.04665, 4, 44, 40.97, -31.36, 0.49965, 45, 4.13, -32.23, 0.39593, 46, -21.92, -41.17, 0.07578, 47, -45.19, -56.58, 0.02864, 4, 44, 33.27, -28.07, 0.67349, 45, -4.23, -31.79, 0.26264, 46, -29.97, -43.45, 0.04525, 47, -52.25, -61.08, 0.01862, 4, 44, 23.64, -22.26, 0.84446, 45, -15.27, -29.63, 0.13078, 46, -41.12, -44.99, 0.01862, 47, -62.48, -65.76, 0.00614, 4, 44, 18.25, -14.88, 0.93359, 45, -22.87, -24.55, 0.05687, 46, -49.95, -42.64, 0.0074, 47, -71.62, -66.05, 0.00213, 4, 44, 17.59, -0.4, 0.99967, 45, -28.46, -11.18, 2.9E-4, 46, -59.57, -31.79, 3.0E-5, 47, -83.95, -58.44, 0, 4, 44, 45.5, -2.31, 0.59838, 45, -1.59, -3.39, 0.40092, 46, -36.66, -15.73, 5.4E-4, 47, -66.63, -36.46, 1.6E-4, 4, 44, 30.78, -0.49, 0.97804, 45, -16.05, -6.74, 0.02096, 46, -49.25, -23.57, 7.8E-4, 47, -76.44, -47.59, 2.2E-4, 4, 44, 68.56, -7.01, 0.0014, 45, 21.68, 0.12, 0.99113, 46, -15.77, -4.89, 0.00719, 47, -49.75, -20.06, 2.9E-4, 4, 44, 86.3, -14.87, 2.2E-4, 45, 41.03, -1.17, 0.20806, 46, 2.96, 0.15, 0.79132, 47, -33.26, -9.84, 4.0E-4, 4, 44, 117.08, -36.46, 3.0E-5, 45, 77.36, -10.87, 0.00242, 46, 40.47, 2.72, 0.28364, 47, 1.92, 3.41, 0.71391, 4, 44, 129.83, -58.43, 1.0E-5, 45, 96.88, -27.13, 9.0E-5, 46, 64.2, -6.36, 0.00467, 47, 27.26, 1.56, 0.99524 ],
+ "hull": 79,
+ "edges": [ 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 20, 22, 22, 24, 24, 26, 26, 28, 28, 30, 30, 32, 32, 34, 34, 36, 36, 38, 38, 40, 40, 42, 42, 44, 44, 46, 46, 48, 48, 50, 50, 52, 52, 54, 54, 56, 56, 58, 58, 60, 60, 62, 62, 64, 64, 66, 66, 68, 68, 70, 70, 72, 72, 74, 74, 76, 76, 78, 78, 80, 80, 82, 82, 84, 84, 86, 86, 88, 88, 90, 90, 92, 92, 94, 94, 96, 96, 98, 98, 100, 100, 102, 102, 104, 104, 106, 106, 108, 108, 110, 110, 112, 112, 114, 114, 116, 116, 118, 118, 120, 120, 122, 122, 124, 124, 126, 126, 128, 128, 130, 130, 132, 132, 134, 134, 136, 136, 138, 138, 140, 140, 142, 142, 144, 144, 146, 146, 148, 148, 150, 150, 152, 152, 154, 154, 156, 0, 156 ],
+ "width": 130,
+ "height": 139
+ }
+ },
+ "item6_5": {
+ "item6_5": {
+ "type": "mesh",
+ "uvs": [ 0, 0.87496, 0, 0.91791, 0.09918, 0.93813, 0.18221, 0.90402, 0.23598, 0.94192, 0.27886, 0.96529, 0.32177, 0.98613, 0.3946, 1, 0.51694, 1, 0.59045, 0.97918, 0.67144, 0.9476, 0.72181, 0.91096, 0.65239, 0.86801, 0.59317, 0.84211, 0.52783, 0.81558, 0.46453, 0.80864, 0.42234, 0.80421, 0.45324, 0.79259, 0.4768, 0.80122, 0.53076, 0.81101, 0.59712, 0.82385, 0.69121, 0.82029, 0.7892, 0.77836, 0.87017, 0.71955, 0.93647, 0.64223, 0.94762, 0.6101, 0.89774, 0.60296, 0.84552, 0.59643, 0.7845, 0.59752, 0.71761, 0.609, 0.65652, 0.62022, 0.71202, 0.60065, 0.78551, 0.5926, 0.85967, 0.56404, 0.93246, 0.50073, 0.97515, 0.43009, 1, 0.36635, 1, 0.30777, 0.92689, 0.31811, 0.86377, 0.34568, 0.81936, 0.37346, 0.85936, 0.34152, 0.90601, 0.28869, 0.93476, 0.22879, 0.9418, 0.158, 0.933, 0.09211, 0.91657, 0.03919, 0.88606, 0, 0.85966, 0.01196, 0.83208, 0.04573, 0.79805, 0.09528, 0.75815, 0.14646, 0.73937, 0.2031, 0.74023, 0.26061, 0.74668, 0.31452, 0.76018, 0.35699, 0.74844, 0.38694, 0.74786, 0.35754, 0.73612, 0.31288, 0.72321, 0.26987, 0.69916, 0.22195, 0.66336, 0.19091, 0.6345, 0.21185, 0.60634, 0.26304, 0.57407, 0.32784, 0.56585, 0.38719, 0.56937, 0.46942, 0.58396, 0.5169, 0.60969, 0.57359, 0.57249, 0.60784, 0.57435, 0.5641, 0.57435, 0.51834, 0.56101, 0.47287, 0.54675, 0.42482, 0.52088, 0.38512, 0.48398, 0.42742, 0.44835, 0.48094, 0.40804, 0.54512, 0.38875, 0.6096, 0.39345, 0.67657, 0.40459, 0.73756, 0.33318, 0.77378, 0.36721, 0.72477, 0.37659, 0.67576, 0.38093, 0.60739, 0.37721, 0.5461, 0.34528, 0.54322, 0.29783, 0.57833, 0.23569, 0.62324, 0.16763, 0.68859, 0.13594, 0.77244, 0.12837, 0.83872, 0.06324, 0.85669, 0.16654, 0.87157, 0.36478, 0.81552, 0.55682, 0.6991, 0.71943, 0.5065, 0.79377, 0.36134, 0.84629, 0.20134 ],
+ "triangles": [ 1, 92, 2, 1, 0, 92, 35, 40, 39, 58, 63, 59, 63, 60, 59, 39, 38, 35, 35, 38, 36, 63, 62, 60, 62, 61, 60, 40, 97, 41, 38, 37, 36, 41, 97, 54, 98, 42, 41, 98, 41, 53, 53, 41, 54, 42, 98, 43, 53, 52, 98, 43, 98, 44, 52, 51, 98, 98, 45, 44, 46, 45, 49, 46, 49, 48, 48, 47, 46, 51, 50, 98, 45, 98, 50, 50, 49, 45, 22, 30, 29, 22, 21, 30, 29, 28, 22, 23, 28, 27, 23, 22, 28, 23, 26, 24, 23, 27, 26, 24, 26, 25, 30, 68, 31, 31, 68, 96, 32, 31, 96, 32, 96, 33, 33, 96, 40, 96, 56, 40, 56, 97, 40, 56, 55, 97, 33, 40, 34, 67, 66, 96, 96, 66, 56, 57, 65, 64, 57, 64, 58, 57, 56, 65, 34, 40, 35, 58, 64, 63, 56, 66, 65, 97, 55, 54, 13, 9, 8, 14, 8, 15, 9, 12, 10, 9, 13, 12, 13, 8, 14, 10, 12, 11, 21, 20, 95, 20, 19, 95, 95, 30, 21, 19, 18, 95, 95, 69, 30, 18, 17, 95, 17, 80, 95, 80, 79, 95, 95, 79, 69, 77, 69, 78, 70, 69, 76, 76, 69, 77, 69, 79, 78, 83, 87, 84, 84, 86, 85, 86, 84, 87, 69, 68, 30, 76, 75, 72, 75, 73, 72, 71, 70, 76, 68, 67, 96, 76, 72, 71, 75, 74, 73, 8, 7, 15, 7, 16, 15, 6, 94, 7, 7, 94, 16, 6, 5, 94, 5, 4, 94, 4, 3, 94, 2, 93, 3, 2, 91, 93, 2, 92, 91, 94, 93, 81, 94, 3, 93, 91, 90, 93, 93, 90, 81, 16, 94, 80, 94, 81, 80, 16, 80, 17, 90, 89, 81, 89, 88, 81, 81, 88, 82, 82, 88, 83, 88, 87, 83 ],
+ "vertices": [ 1, 39, 71.31, -36.79, 1, 1, 39, 65.34, -36.79, 1, 1, 39, 62.53, -49.58, 1, 3, 40, 9.05, -2.55, 0.99984, 41, -36.05, 10.59, 8.0E-5, 42, -67.61, 32.62, 8.0E-5, 3, 40, 13.57, -10, 0.99623, 41, -34.45, 2.03, 8.2E-4, 42, -68.67, 23.97, 0.00294, 3, 40, 17.53, -15.04, 0.97059, 41, -32.54, -4.09, 0.01587, 42, -68.69, 17.56, 0.01354, 3, 40, 21.62, -19.77, 0.95235, 41, -30.38, -9.96, 0.02633, 42, -68.4, 11.32, 0.02132, 3, 40, 29.65, -25, 0.86501, 41, -24.72, -17.7, 0.08749, 42, -65.33, 2.23, 0.0475, 3, 40, 44.34, -30.79, 0.54404, 41, -13.03, -28.3, 0.29917, 42, -57.38, -11.4, 0.15679, 4, 40, 54.22, -31.57, 0.38838, 41, -4.07, -32.53, 0.36814, 42, -50.1, -18.13, 0.24317, 43, -89.56, 13.47, 3.1E-4, 4, 40, 65.55, -31.31, 0.18981, 41, 6.62, -36.3, 0.43149, 42, -41.05, -24.95, 0.37817, 43, -83.34, 4, 5.3E-4, 4, 40, 73.46, -28.95, 0.10144, 41, 14.85, -36.9, 0.40314, 42, -33.38, -27.99, 0.49212, 43, -77.14, -1.46, 0.00329, 4, 40, 67.32, -20.12, 0.09948, 41, 12.23, -26.46, 0.53661, 42, -32.73, -17.25, 0.36349, 43, -72.91, 8.44, 4.2E-4, 4, 40, 61.53, -13.97, 0.09579, 41, 9, -18.66, 0.68944, 42, -33.47, -8.84, 0.21476, 43, -70.77, 16.61, 2.0E-5, 3, 40, 55.04, -7.45, 0.09173, 41, 5.23, -10.27, 0.82976, 42, -34.53, 0.3, 0.07851, 3, 40, 47.79, -3.56, 0.38784, 41, -0.17, -4.06, 0.59806, 42, -37.81, 7.84, 0.0141, 3, 40, 42.95, -0.99, 0.87677, 41, -3.78, 0.05, 0.12038, 42, -40.02, 12.85, 0.00285, 3, 40, 47.25, -0.95, 0.50786, 41, 0.25, -1.43, 0.48366, 42, -36.62, 10.22, 0.00848, 3, 40, 49.64, -3.18, 0.22739, 41, 1.7, -4.36, 0.75666, 42, -36.13, 6.99, 0.01595, 3, 40, 55.62, -7, 0.0756, 41, 5.94, -10.05, 0.84413, 42, -33.79, 0.3, 0.08027, 4, 40, 62.93, -11.79, 0.06683, 41, 11.08, -17.12, 0.71074, 42, -31.02, -8, 0.22233, 43, -68.18, 16.57, 1.1E-4, 4, 40, 74.41, -15.78, 0.04491, 41, 20.4, -24.91, 0.45461, 42, -24.48, -18.23, 0.49757, 43, -65.47, 4.73, 0.00292, 4, 40, 88.3, -14.99, 0.02652, 41, 33.68, -29.09, 0.18037, 42, -13.07, -26.21, 0.76944, 43, -57.43, -6.63, 0.02367, 4, 40, 101.02, -11.21, 0.00472, 41, 46.91, -30.06, 0.05258, 42, -0.75, -31.12, 0.87628, 43, -47.49, -15.41, 0.06642, 3, 41, 60.46, -27.84, 0.00635, 42, 12.84, -33.09, 0.83487, 43, -35.36, -21.85, 0.15878, 3, 41, 64.53, -25.5, 0.00154, 42, 17.43, -32.08, 0.7861, 43, -30.7, -22.45, 0.21236, 3, 41, 60.43, -20.44, 9.7E-4, 42, 15.04, -26.02, 0.86081, 43, -30.9, -15.94, 0.13823, 3, 41, 56.05, -15.25, 3.9E-4, 42, 12.43, -19.75, 0.91319, 43, -31.24, -9.15, 0.08642, 2, 42, 8.33, -13.03, 0.96826, 43, -32.83, -1.44, 0.03174, 2, 42, 2.61, -6.38, 0.99523, 43, -35.98, 6.75, 0.00477, 4, 40, 80.43, 11.74, 0.00285, 41, 35.77, -1.31, 0.45739, 42, -2.71, -0.35, 0.53772, 43, -38.95, 14.21, 0.00204, 3, 40, 88.09, 11.64, 1.0E-5, 42, 3.25, -5.17, 0.99573, 43, -34.97, 7.67, 0.00426, 2, 42, 8.99, -12.79, 0.96706, 43, -32.13, -1.45, 0.03294, 3, 41, 60.43, -13.14, 2.1E-4, 42, 17.24, -19.06, 0.8847, 43, -26.48, -10.13, 0.11509, 3, 41, 73.3, -12.93, 1.9E-4, 42, 29.57, -22.73, 0.62716, 43, -16.11, -17.75, 0.37264, 2, 42, 40.83, -22.54, 0.36127, 43, -5.46, -21.37, 0.63873, 2, 42, 50.1, -20.85, 0.17942, 43, 3.84, -22.9, 0.82058, 2, 42, 57.13, -16.74, 0.06016, 43, 11.85, -21.41, 0.93984, 2, 42, 51.14, -9.32, 0.04441, 43, 8.71, -12.4, 0.95559, 2, 42, 43.72, -4.22, 0.0167, 43, 3.45, -5.1, 0.9833, 4, 40, 112.54, 35.95, 3.0E-5, 41, 74.38, 9.97, 3.1E-4, 42, 37.5, -1.22, 0.65165, 43, -1.39, -0.17, 0.34801, 2, 42, 43.94, -3.44, 0.00863, 43, 3.92, -4.43, 0.99137, 2, 42, 53.31, -4.93, 0.0102, 43, 12.24, -9.01, 0.9898, 4, 40, 133.76, 49.21, 0, 41, 98.92, 14.86, 0, 42, 62.37, -3.94, 2.6E-4, 43, 21.1, -11.13, 0.99974, 4, 40, 138.21, 58.03, 0, 41, 106.2, 21.54, 2.0E-5, 42, 71.33, 0.23, 8.0E-5, 43, 30.94, -10.22, 0.9999, 4, 40, 140.51, 66.97, 1.6E-4, 41, 111.51, 29.08, 8.0E-4, 42, 78.67, 5.83, 0.00135, 43, 39.74, -7.43, 0.99769, 4, 40, 141.23, 74.59, 1.5E-4, 41, 114.89, 35.96, 7.9E-4, 42, 83.95, 11.36, 0.00128, 43, 46.58, -4.01, 0.99778, 4, 40, 139.57, 81.1, 3.0E-4, 41, 115.63, 42.64, 0.00163, 42, 86.68, 17.51, 0.00263, 43, 51.22, 0.86, 0.99544, 4, 40, 135.79, 80.8, 6.6E-4, 41, 111.99, 43.69, 0.00337, 42, 83.52, 19.61, 0.00559, 43, 48.96, 3.9, 0.99038, 4, 40, 130.76, 77.74, 0.00107, 41, 106.21, 42.61, 0.00542, 42, 77.68, 20.32, 0.00911, 43, 43.7, 6.54, 0.98439, 4, 40, 124.15, 72.94, 0.00308, 41, 98.33, 40.46, 0.014, 42, 69.52, 20.64, 0.03205, 43, 36.12, 9.6, 0.95087, 4, 40, 116.76, 68.21, 0.00634, 41, 89.73, 38.65, 0.02888, 42, 60.78, 21.5, 0.08997, 43, 28.19, 13.36, 0.87481, 4, 40, 111.62, 61.77, 0.00838, 41, 82.65, 34.45, 0.04003, 42, 52.76, 19.63, 0.17468, 43, 20.01, 14.3, 0.7769, 4, 40, 108.79, 54.29, 0.00734, 41, 77.36, 28.45, 0.04044, 42, 45.91, 15.5, 0.29056, 43, 12.17, 12.73, 0.66167, 4, 40, 106.82, 47.01, 0.0053, 41, 72.94, 22.34, 0.03497, 42, 39.85, 11.01, 0.4969, 43, 4.95, 10.54, 0.46284, 4, 40, 106.28, 40.88, 0.0028, 41, 70.26, 16.8, 0.02203, 42, 35.63, 6.53, 0.78798, 43, -0.53, 7.75, 0.18718, 4, 40, 103.34, 37.56, 0.00264, 41, 66.35, 14.73, 0.02434, 42, 31.27, 5.74, 0.91992, 43, -4.9, 8.48, 0.0531, 4, 40, 104.77, 41.39, 0.00385, 41, 69.04, 17.81, 0.03078, 42, 34.76, 7.87, 0.79814, 43, -0.9, 9.3, 0.16723, 4, 40, 105.64, 47.72, 0.00658, 41, 72.09, 23.43, 0.04255, 42, 39.36, 12.3, 0.53404, 43, 4.93, 11.93, 0.41684, 4, 40, 106.28, 53.9, 0.00974, 41, 74.87, 28.97, 0.05264, 42, 43.69, 16.75, 0.38343, 43, 10.5, 14.66, 0.55419, 4, 40, 105.83, 61.23, 0.01532, 41, 77.05, 35.99, 0.06987, 42, 47.88, 22.79, 0.28449, 43, 16.48, 18.92, 0.63031, 4, 40, 103.12, 66.94, 0.02487, 41, 76.53, 42.29, 0.10187, 42, 49.28, 28.95, 0.26248, 43, 19.88, 24.25, 0.61078, 4, 40, 98.59, 65.59, 0.03239, 41, 71.81, 42.63, 0.13081, 42, 44.89, 30.7, 0.31496, 43, 16.34, 27.38, 0.52185, 4, 40, 92.6, 60.3, 0.04389, 41, 64.34, 39.81, 0.19, 42, 36.91, 30.25, 0.40903, 43, 8.68, 29.65, 0.35708, 4, 40, 85.42, 53.45, 0.05803, 41, 55.21, 35.93, 0.28654, 42, 27.03, 29.31, 0.4696, 43, -0.94, 32.1, 0.18582, 4, 40, 81.42, 46.16, 0.06151, 41, 48.88, 30.54, 0.36708, 42, 19.37, 26.07, 0.49539, 43, -9.24, 31.63, 0.07602, 4, 40, 77.65, 35.36, 0.05068, 41, 41.53, 21.77, 0.5399, 42, 9.73, 19.92, 0.39785, 43, -20.4, 29.1, 0.01157, 4, 40, 76.98, 28.53, 0.03343, 41, 38.49, 15.61, 0.66258, 42, 4.98, 14.97, 0.30248, 43, -26.54, 26.04, 0.00152, 4, 40, 77.19, 19.98, 0.01117, 41, 35.66, 7.55, 0.88122, 42, -0.16, 8.13, 0.1076, 43, -33.68, 21.34, 2.0E-5, 3, 40, 70.98, 17.31, 0.01926, 41, 28.9, 7.25, 0.97387, 42, -6.69, 9.88, 0.00687, 4, 40, 73.43, 22.88, 0.03015, 41, 33.17, 11.59, 0.86931, 42, -1.31, 12.73, 0.1003, 43, -33.22, 26.06, 2.4E-4, 4, 40, 75.76, 28.8, 0.03879, 41, 37.44, 16.3, 0.69257, 42, 4.18, 15.94, 0.26611, 43, -26.97, 27.22, 0.00253, 4, 40, 76.47, 35.31, 0.05546, 41, 40.41, 22.14, 0.57049, 42, 8.77, 20.61, 0.36178, 43, -21.07, 30.07, 0.01227, 4, 40, 77.21, 42.2, 0.07084, 41, 43.54, 28.32, 0.47346, 42, 13.62, 25.56, 0.4136, 43, -14.84, 33.1, 0.04211, 4, 40, 76.12, 48.55, 0.09741, 41, 44.78, 34.65, 0.44224, 42, 16.7, 31.23, 0.35432, 43, -10.02, 37.39, 0.10603, 4, 40, 69.54, 44.83, 0.12493, 41, 37.3, 33.49, 0.54992, 42, 9.22, 32.37, 0.28157, 43, -16.67, 40.99, 0.04358, 4, 40, 62.54, 39.59, 0.17566, 41, 28.9, 31.07, 0.63961, 42, 0.48, 32.6, 0.16521, 43, -24.83, 44.15, 0.01953, 4, 40, 54.43, 33.19, 0.25742, 41, 19.05, 27.96, 0.67428, 42, -9.84, 32.59, 0.06141, 43, -34.55, 47.63, 0.00688, 4, 40, 48.83, 25.76, 0.3519, 41, 11.19, 23, 0.62473, 42, -18.84, 30.23, 0.02121, 43, -43.81, 48.44, 0.00216, 4, 40, 45.98, 16.88, 0.41735, 41, 5.38, 15.69, 0.58011, 42, -26.58, 25.01, 0.00242, 43, -52.86, 46.15, 1.2E-4, 3, 40, 44.22, 8.47, 0.53893, 41, 0.75, 8.45, 0.45998, 42, -33.17, 19.5, 0.00109, 3, 40, 33.8, 7.16, 0.94255, 41, -9.46, 10.91, 0.05742, 42, -42.16, 24.92, 3.0E-5, 3, 40, 40.38, 11.89, 0.67666, 41, -1.63, 13.01, 0.32312, 42, -34.07, 24.56, 2.2E-4, 4, 40, 44, 17.78, 0.49993, 41, 3.84, 17.24, 0.49685, 42, -27.57, 26.95, 0.00307, 43, -53.14, 48.3, 1.5E-4, 4, 40, 48.01, 26.42, 0.36675, 41, 10.64, 23.9, 0.60825, 42, -19.08, 31.25, 0.02217, 43, -43.7, 49.49, 0.00284, 4, 40, 50.68, 34.52, 0.31866, 41, 16.01, 30.53, 0.61969, 42, -11.97, 35.96, 0.0539, 43, -35.41, 51.52, 0.00774, 4, 40, 46.99, 36.4, 0.38425, 41, 13.23, 33.6, 0.55286, 42, -13.7, 39.72, 0.05417, 43, -35.77, 55.64, 0.00872, 4, 40, 39.51, 34.11, 0.51682, 41, 5.42, 34.09, 0.44436, 42, -21, 42.55, 0.0335, 43, -41.68, 60.77, 0.00531, 4, 40, 29.77, 31.23, 0.68907, 41, -4.71, 34.86, 0.29449, 42, -30.43, 46.33, 0.01431, 43, -49.29, 67.51, 0.00212, 4, 40, 18.27, 26, 0.85797, 41, -17.32, 34.03, 0.13737, 42, -42.7, 49.33, 0.00437, 43, -59.82, 74.48, 2.9E-4, 3, 40, 10.19, 16.65, 0.95239, 41, -28.18, 28.15, 0.04698, 42, -54.83, 46.99, 6.3E-4, 3, 40, 5.91, 8.44, 0.98759, 41, -35.09, 21.98, 0.01231, 42, -63.27, 43.19, 1.0E-4, 2, 40, -2.82, 9.19, 0.99235, 41, -42.99, 25.78, 0.00765, 3, 40, 8.82, 2.38, 0.99423, 41, -34.51, 15.29, 0.00567, 42, -64.74, 36.64, 1.0E-4, 3, 40, 35.47, 0.26, 0.97403, 41, -10.34, 3.88, 0.02381, 42, -45.12, 18.47, 0.00215, 3, 40, 64.45, 6.25, 0.02061, 41, 18.88, -0.79, 0.9579, 42, -18.66, 5.23, 0.02149, 4, 40, 93.77, 23.47, 0.0016, 41, 52.41, 4.94, 0.05072, 42, 15.03, 0.6, 0.9331, 43, -21.93, 9.12, 0.01459, 4, 40, 110.09, 38.73, 8.2E-4, 41, 73.07, 13.44, 0.00633, 42, 37.29, 2.48, 0.65134, 43, -0.34, 3.38, 0.34151, 4, 40, 124.54, 56.94, 2.2E-4, 41, 93.03, 25.36, 0.00141, 42, 59.92, 7.84, 0.02398, 43, 22.77, 0.79, 0.97439 ],
+ "hull": 93,
+ "edges": [ 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 20, 22, 22, 24, 24, 26, 26, 28, 28, 30, 30, 32, 32, 34, 34, 36, 36, 38, 38, 40, 40, 42, 42, 44, 44, 46, 46, 48, 48, 50, 50, 52, 52, 54, 54, 56, 56, 58, 58, 60, 60, 62, 62, 64, 64, 66, 66, 68, 68, 70, 70, 72, 72, 74, 74, 76, 76, 78, 78, 80, 80, 82, 82, 84, 84, 86, 86, 88, 88, 90, 90, 92, 92, 94, 94, 96, 96, 98, 98, 100, 100, 102, 102, 104, 104, 106, 106, 108, 108, 110, 110, 112, 112, 114, 114, 116, 116, 118, 118, 120, 120, 122, 122, 124, 124, 126, 126, 128, 128, 130, 130, 132, 132, 134, 134, 136, 136, 138, 138, 140, 140, 142, 142, 144, 144, 146, 146, 148, 148, 150, 150, 152, 152, 154, 154, 156, 156, 158, 158, 160, 160, 162, 162, 164, 164, 166, 166, 168, 168, 170, 170, 172, 172, 174, 174, 176, 176, 178, 178, 180, 180, 182, 182, 184, 0, 184, 80, 194 ],
+ "width": 129,
+ "height": 139
+ }
+ },
+ "item6_6": {
+ "item6_6": {
+ "type": "mesh",
+ "uvs": [ 0.5913, 0.64922, 1, 0.48807, 1, 0, 0, 0, 0, 0.4897, 0.41508, 0.65085, 0.24667, 0.78106, 0.17961, 0.91779, 0.18117, 1, 0.81897, 1, 0.81741, 0.90965, 0.76283, 0.78269 ],
+ "triangles": [ 8, 7, 6, 11, 10, 9, 5, 0, 11, 11, 6, 5, 9, 6, 11, 8, 6, 9, 0, 5, 3, 0, 3, 2, 3, 5, 4, 2, 1, 0 ],
+ "vertices": [ 2, 48, 4.13, -24.16, 0.5, 39, 89.04, -23.9, 0.5, 1, 48, 48.29, -141.05, 1, 1, 48, 182.02, -141.05, 1, 1, 48, 182.02, 144.95, 1, 1, 48, 47.84, 144.95, 1, 2, 48, 3.69, 26.24, 0.5, 39, 88.6, 26.5, 0.5, 1, 39, 52.92, 74.67, 1, 1, 39, 15.45, 93.85, 1, 1, 39, -7.07, 93.4, 1, 1, 39, -7.07, -89.01, 1, 1, 39, 17.68, -88.57, 1, 1, 39, 52.47, -72.96, 1 ],
+ "hull": 12,
+ "edges": [ 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 20, 22, 0, 22 ],
+ "width": 286,
+ "height": 274
+ }
+ },
+ "item6_7": {
+ "item6_7": {
+ "type": "mesh",
+ "uvs": [ 0, 0.87496, 0, 0.91791, 0.09918, 0.93813, 0.18221, 0.90402, 0.23598, 0.94192, 0.27886, 0.96529, 0.32177, 0.98613, 0.3946, 1, 0.51694, 1, 0.59045, 0.97918, 0.67144, 0.9476, 0.72181, 0.91096, 0.65239, 0.86801, 0.59317, 0.84211, 0.52783, 0.81558, 0.46453, 0.80864, 0.42234, 0.80421, 0.45324, 0.79259, 0.4768, 0.80122, 0.53076, 0.81101, 0.59712, 0.82385, 0.69121, 0.82029, 0.7892, 0.77836, 0.87017, 0.71955, 0.93647, 0.64223, 0.94762, 0.6101, 0.89774, 0.60296, 0.84552, 0.59643, 0.7845, 0.59752, 0.71761, 0.609, 0.65652, 0.62022, 0.71202, 0.60065, 0.78551, 0.5926, 0.85967, 0.56404, 0.93246, 0.50073, 0.97515, 0.43009, 1, 0.36635, 1, 0.30777, 0.92689, 0.31811, 0.86377, 0.34568, 0.81936, 0.37346, 0.85936, 0.34152, 0.90601, 0.28869, 0.93476, 0.22879, 0.9418, 0.158, 0.933, 0.09211, 0.91657, 0.03919, 0.88606, 0, 0.85966, 0.01196, 0.83208, 0.04573, 0.79805, 0.09528, 0.75815, 0.14646, 0.73937, 0.2031, 0.74023, 0.26061, 0.74668, 0.31452, 0.76018, 0.35699, 0.74844, 0.38694, 0.74786, 0.35754, 0.73612, 0.31288, 0.72321, 0.26987, 0.69916, 0.22195, 0.66336, 0.19091, 0.6345, 0.21185, 0.60634, 0.26304, 0.57407, 0.32784, 0.56585, 0.38719, 0.56937, 0.46942, 0.58396, 0.5169, 0.60969, 0.57359, 0.57249, 0.60784, 0.57435, 0.5641, 0.57435, 0.51834, 0.56101, 0.47287, 0.54675, 0.42482, 0.52088, 0.38512, 0.48398, 0.42742, 0.44835, 0.48094, 0.40804, 0.54512, 0.38875, 0.6096, 0.39345, 0.67657, 0.40459, 0.73756, 0.33318, 0.77378, 0.36721, 0.72477, 0.37659, 0.67576, 0.38093, 0.60739, 0.37721, 0.5461, 0.34528, 0.54322, 0.29783, 0.57833, 0.23569, 0.62324, 0.16763, 0.68859, 0.13594, 0.77244, 0.12837, 0.83872, 0.06324, 0.85669, 0.16654, 0.87157, 0.36478, 0.81552, 0.55682, 0.6991, 0.71943, 0.5065, 0.79377, 0.36134, 0.84629, 0.20134 ],
+ "triangles": [ 1, 92, 2, 1, 0, 92, 35, 40, 39, 58, 63, 59, 63, 60, 59, 39, 38, 35, 35, 38, 36, 63, 62, 60, 62, 61, 60, 40, 97, 41, 38, 37, 36, 41, 97, 54, 98, 42, 41, 98, 41, 53, 53, 41, 54, 42, 98, 43, 53, 52, 98, 43, 98, 44, 52, 51, 98, 98, 45, 44, 46, 45, 49, 46, 49, 48, 48, 47, 46, 51, 50, 98, 45, 98, 50, 50, 49, 45, 22, 30, 29, 22, 21, 30, 29, 28, 22, 23, 28, 27, 23, 22, 28, 23, 26, 24, 23, 27, 26, 24, 26, 25, 30, 68, 31, 31, 68, 96, 32, 31, 96, 32, 96, 33, 33, 96, 40, 96, 56, 40, 56, 97, 40, 56, 55, 97, 33, 40, 34, 67, 66, 96, 96, 66, 56, 57, 65, 64, 57, 64, 58, 57, 56, 65, 34, 40, 35, 58, 64, 63, 56, 66, 65, 97, 55, 54, 13, 9, 8, 14, 8, 15, 9, 12, 10, 9, 13, 12, 13, 8, 14, 10, 12, 11, 21, 20, 95, 20, 19, 95, 95, 30, 21, 19, 18, 95, 95, 69, 30, 18, 17, 95, 17, 80, 95, 80, 79, 95, 95, 79, 69, 77, 69, 78, 70, 69, 76, 76, 69, 77, 69, 79, 78, 83, 87, 84, 84, 86, 85, 86, 84, 87, 69, 68, 30, 76, 75, 72, 75, 73, 72, 71, 70, 76, 68, 67, 96, 76, 72, 71, 75, 74, 73, 8, 7, 15, 7, 16, 15, 6, 94, 7, 7, 94, 16, 6, 5, 94, 5, 4, 94, 4, 3, 94, 2, 93, 3, 2, 91, 93, 2, 92, 91, 94, 93, 81, 94, 3, 93, 91, 90, 93, 93, 90, 81, 16, 94, 80, 94, 81, 80, 16, 80, 17, 90, 89, 81, 89, 88, 81, 81, 88, 82, 82, 88, 83, 88, 87, 83 ],
+ "vertices": [ 1, 39, 71.31, -36.79, 1, 1, 39, 65.34, -36.79, 1, 1, 39, 62.53, -49.58, 1, 3, 40, 9.05, -2.55, 0.99984, 41, -36.05, 10.59, 8.0E-5, 42, -67.61, 32.62, 8.0E-5, 3, 40, 13.57, -10, 0.99623, 41, -34.45, 2.03, 8.2E-4, 42, -68.67, 23.97, 0.00294, 3, 40, 17.53, -15.04, 0.97059, 41, -32.54, -4.09, 0.01587, 42, -68.69, 17.56, 0.01354, 3, 40, 21.62, -19.77, 0.95235, 41, -30.38, -9.96, 0.02633, 42, -68.4, 11.32, 0.02132, 3, 40, 29.65, -25, 0.86501, 41, -24.72, -17.7, 0.08749, 42, -65.33, 2.23, 0.0475, 3, 40, 44.34, -30.79, 0.54404, 41, -13.03, -28.3, 0.29917, 42, -57.38, -11.4, 0.15679, 4, 40, 54.22, -31.57, 0.38838, 41, -4.07, -32.53, 0.36814, 42, -50.1, -18.13, 0.24317, 43, -89.56, 13.47, 3.1E-4, 4, 40, 65.55, -31.31, 0.18981, 41, 6.62, -36.3, 0.43149, 42, -41.05, -24.95, 0.37817, 43, -83.34, 4, 5.3E-4, 4, 40, 73.46, -28.95, 0.10144, 41, 14.85, -36.9, 0.40314, 42, -33.38, -27.99, 0.49212, 43, -77.14, -1.46, 0.00329, 4, 40, 67.32, -20.12, 0.09948, 41, 12.23, -26.46, 0.53661, 42, -32.73, -17.25, 0.36349, 43, -72.91, 8.44, 4.2E-4, 4, 40, 61.53, -13.97, 0.09579, 41, 9, -18.66, 0.68944, 42, -33.47, -8.84, 0.21476, 43, -70.77, 16.61, 2.0E-5, 3, 40, 55.04, -7.45, 0.09173, 41, 5.23, -10.27, 0.82976, 42, -34.53, 0.3, 0.07851, 3, 40, 47.79, -3.56, 0.38784, 41, -0.17, -4.06, 0.59806, 42, -37.81, 7.84, 0.0141, 3, 40, 42.95, -0.99, 0.87677, 41, -3.78, 0.05, 0.12038, 42, -40.02, 12.85, 0.00285, 3, 40, 47.25, -0.95, 0.50786, 41, 0.25, -1.43, 0.48366, 42, -36.62, 10.22, 0.00848, 3, 40, 49.64, -3.18, 0.22739, 41, 1.7, -4.36, 0.75666, 42, -36.13, 6.99, 0.01595, 3, 40, 55.62, -7, 0.0756, 41, 5.94, -10.05, 0.84413, 42, -33.79, 0.3, 0.08027, 4, 40, 62.93, -11.79, 0.06683, 41, 11.08, -17.12, 0.71074, 42, -31.02, -8, 0.22233, 43, -68.18, 16.57, 1.1E-4, 4, 40, 74.41, -15.78, 0.04491, 41, 20.4, -24.91, 0.45461, 42, -24.48, -18.23, 0.49757, 43, -65.47, 4.73, 0.00292, 4, 40, 88.3, -14.99, 0.02652, 41, 33.68, -29.09, 0.18037, 42, -13.07, -26.21, 0.76944, 43, -57.43, -6.63, 0.02367, 4, 40, 101.02, -11.21, 0.00472, 41, 46.91, -30.06, 0.05258, 42, -0.75, -31.12, 0.87628, 43, -47.49, -15.41, 0.06642, 3, 41, 60.46, -27.84, 0.00635, 42, 12.84, -33.09, 0.83487, 43, -35.36, -21.85, 0.15878, 3, 41, 64.53, -25.5, 0.00154, 42, 17.43, -32.08, 0.7861, 43, -30.7, -22.45, 0.21236, 3, 41, 60.43, -20.44, 9.7E-4, 42, 15.04, -26.02, 0.86081, 43, -30.9, -15.94, 0.13823, 3, 41, 56.05, -15.25, 3.9E-4, 42, 12.43, -19.75, 0.91319, 43, -31.24, -9.15, 0.08642, 2, 42, 8.33, -13.03, 0.96826, 43, -32.83, -1.44, 0.03174, 2, 42, 2.61, -6.38, 0.99523, 43, -35.98, 6.75, 0.00477, 4, 40, 80.43, 11.74, 0.00285, 41, 35.77, -1.31, 0.45739, 42, -2.71, -0.35, 0.53772, 43, -38.95, 14.21, 0.00204, 3, 40, 88.09, 11.64, 1.0E-5, 42, 3.25, -5.17, 0.99573, 43, -34.97, 7.67, 0.00426, 2, 42, 8.99, -12.79, 0.96706, 43, -32.13, -1.45, 0.03294, 3, 41, 60.43, -13.14, 2.1E-4, 42, 17.24, -19.06, 0.8847, 43, -26.48, -10.13, 0.11509, 3, 41, 73.3, -12.93, 1.9E-4, 42, 29.57, -22.73, 0.62716, 43, -16.11, -17.75, 0.37264, 2, 42, 40.83, -22.54, 0.36127, 43, -5.46, -21.37, 0.63873, 2, 42, 50.1, -20.85, 0.17942, 43, 3.84, -22.9, 0.82058, 2, 42, 57.13, -16.74, 0.06016, 43, 11.85, -21.41, 0.93984, 2, 42, 51.14, -9.32, 0.04441, 43, 8.71, -12.4, 0.95559, 2, 42, 43.72, -4.22, 0.0167, 43, 3.45, -5.1, 0.9833, 4, 40, 112.54, 35.95, 3.0E-5, 41, 74.38, 9.97, 3.1E-4, 42, 37.5, -1.22, 0.65165, 43, -1.39, -0.17, 0.34801, 2, 42, 43.94, -3.44, 0.00863, 43, 3.92, -4.43, 0.99137, 2, 42, 53.31, -4.93, 0.0102, 43, 12.24, -9.01, 0.9898, 4, 40, 133.76, 49.21, 0, 41, 98.92, 14.86, 0, 42, 62.37, -3.94, 2.6E-4, 43, 21.1, -11.13, 0.99974, 4, 40, 138.21, 58.03, 0, 41, 106.2, 21.54, 2.0E-5, 42, 71.33, 0.23, 8.0E-5, 43, 30.94, -10.22, 0.9999, 4, 40, 140.51, 66.97, 1.6E-4, 41, 111.51, 29.08, 8.0E-4, 42, 78.67, 5.83, 0.00135, 43, 39.74, -7.43, 0.99769, 4, 40, 141.23, 74.59, 1.5E-4, 41, 114.89, 35.96, 7.9E-4, 42, 83.95, 11.36, 0.00128, 43, 46.58, -4.01, 0.99778, 4, 40, 139.57, 81.1, 3.0E-4, 41, 115.63, 42.64, 0.00163, 42, 86.68, 17.51, 0.00263, 43, 51.22, 0.86, 0.99544, 4, 40, 135.79, 80.8, 6.6E-4, 41, 111.99, 43.69, 0.00337, 42, 83.52, 19.61, 0.00559, 43, 48.96, 3.9, 0.99038, 4, 40, 130.76, 77.74, 0.00107, 41, 106.21, 42.61, 0.00542, 42, 77.68, 20.32, 0.00911, 43, 43.7, 6.54, 0.98439, 4, 40, 124.15, 72.94, 0.00308, 41, 98.33, 40.46, 0.014, 42, 69.52, 20.64, 0.03205, 43, 36.12, 9.6, 0.95087, 4, 40, 116.76, 68.21, 0.00634, 41, 89.73, 38.65, 0.02888, 42, 60.78, 21.5, 0.08997, 43, 28.19, 13.36, 0.87481, 4, 40, 111.62, 61.77, 0.00838, 41, 82.65, 34.45, 0.04003, 42, 52.76, 19.63, 0.17468, 43, 20.01, 14.3, 0.7769, 4, 40, 108.79, 54.29, 0.00734, 41, 77.36, 28.45, 0.04044, 42, 45.91, 15.5, 0.29056, 43, 12.17, 12.73, 0.66167, 4, 40, 106.82, 47.01, 0.0053, 41, 72.94, 22.34, 0.03497, 42, 39.85, 11.01, 0.4969, 43, 4.95, 10.54, 0.46284, 4, 40, 106.28, 40.88, 0.0028, 41, 70.26, 16.8, 0.02203, 42, 35.63, 6.53, 0.78798, 43, -0.53, 7.75, 0.18718, 4, 40, 103.34, 37.56, 0.00264, 41, 66.35, 14.73, 0.02434, 42, 31.27, 5.74, 0.91992, 43, -4.9, 8.48, 0.0531, 4, 40, 104.77, 41.39, 0.00385, 41, 69.04, 17.81, 0.03078, 42, 34.76, 7.87, 0.79814, 43, -0.9, 9.3, 0.16723, 4, 40, 105.64, 47.72, 0.00658, 41, 72.09, 23.43, 0.04255, 42, 39.36, 12.3, 0.53404, 43, 4.93, 11.93, 0.41684, 4, 40, 106.28, 53.9, 0.00974, 41, 74.87, 28.97, 0.05264, 42, 43.69, 16.75, 0.38343, 43, 10.5, 14.66, 0.55419, 4, 40, 105.83, 61.23, 0.01532, 41, 77.05, 35.99, 0.06987, 42, 47.88, 22.79, 0.28449, 43, 16.48, 18.92, 0.63031, 4, 40, 103.12, 66.94, 0.02487, 41, 76.53, 42.29, 0.10187, 42, 49.28, 28.95, 0.26248, 43, 19.88, 24.25, 0.61078, 4, 40, 98.59, 65.59, 0.03239, 41, 71.81, 42.63, 0.13081, 42, 44.89, 30.7, 0.31496, 43, 16.34, 27.38, 0.52185, 4, 40, 92.6, 60.3, 0.04389, 41, 64.34, 39.81, 0.19, 42, 36.91, 30.25, 0.40903, 43, 8.68, 29.65, 0.35708, 4, 40, 85.42, 53.45, 0.05803, 41, 55.21, 35.93, 0.28654, 42, 27.03, 29.31, 0.4696, 43, -0.94, 32.1, 0.18582, 4, 40, 81.42, 46.16, 0.06151, 41, 48.88, 30.54, 0.36708, 42, 19.37, 26.07, 0.49539, 43, -9.24, 31.63, 0.07602, 4, 40, 77.65, 35.36, 0.05068, 41, 41.53, 21.77, 0.5399, 42, 9.73, 19.92, 0.39785, 43, -20.4, 29.1, 0.01157, 4, 40, 76.98, 28.53, 0.03343, 41, 38.49, 15.61, 0.66258, 42, 4.98, 14.97, 0.30248, 43, -26.54, 26.04, 0.00152, 4, 40, 77.19, 19.98, 0.01117, 41, 35.66, 7.55, 0.88122, 42, -0.16, 8.13, 0.1076, 43, -33.68, 21.34, 2.0E-5, 3, 40, 70.98, 17.31, 0.01926, 41, 28.9, 7.25, 0.97387, 42, -6.69, 9.88, 0.00687, 4, 40, 73.43, 22.88, 0.03015, 41, 33.17, 11.59, 0.86931, 42, -1.31, 12.73, 0.1003, 43, -33.22, 26.06, 2.4E-4, 4, 40, 75.76, 28.8, 0.03879, 41, 37.44, 16.3, 0.69257, 42, 4.18, 15.94, 0.26611, 43, -26.97, 27.22, 0.00253, 4, 40, 76.47, 35.31, 0.05546, 41, 40.41, 22.14, 0.57049, 42, 8.77, 20.61, 0.36178, 43, -21.07, 30.07, 0.01227, 4, 40, 77.21, 42.2, 0.07084, 41, 43.54, 28.32, 0.47346, 42, 13.62, 25.56, 0.4136, 43, -14.84, 33.1, 0.04211, 4, 40, 76.12, 48.55, 0.09741, 41, 44.78, 34.65, 0.44224, 42, 16.7, 31.23, 0.35432, 43, -10.02, 37.39, 0.10603, 4, 40, 69.54, 44.83, 0.12493, 41, 37.3, 33.49, 0.54992, 42, 9.22, 32.37, 0.28157, 43, -16.67, 40.99, 0.04358, 4, 40, 62.54, 39.59, 0.17566, 41, 28.9, 31.07, 0.63961, 42, 0.48, 32.6, 0.16521, 43, -24.83, 44.15, 0.01953, 4, 40, 54.43, 33.19, 0.25742, 41, 19.05, 27.96, 0.67428, 42, -9.84, 32.59, 0.06141, 43, -34.55, 47.63, 0.00688, 4, 40, 48.83, 25.76, 0.3519, 41, 11.19, 23, 0.62473, 42, -18.84, 30.23, 0.02121, 43, -43.81, 48.44, 0.00216, 4, 40, 45.98, 16.88, 0.41735, 41, 5.38, 15.69, 0.58011, 42, -26.58, 25.01, 0.00242, 43, -52.86, 46.15, 1.2E-4, 3, 40, 44.22, 8.47, 0.53893, 41, 0.75, 8.45, 0.45998, 42, -33.17, 19.5, 0.00109, 3, 40, 33.8, 7.16, 0.94255, 41, -9.46, 10.91, 0.05742, 42, -42.16, 24.92, 3.0E-5, 3, 40, 40.38, 11.89, 0.67666, 41, -1.63, 13.01, 0.32312, 42, -34.07, 24.56, 2.2E-4, 4, 40, 44, 17.78, 0.49993, 41, 3.84, 17.24, 0.49685, 42, -27.57, 26.95, 0.00307, 43, -53.14, 48.3, 1.5E-4, 4, 40, 48.01, 26.42, 0.36675, 41, 10.64, 23.9, 0.60825, 42, -19.08, 31.25, 0.02217, 43, -43.7, 49.49, 0.00284, 4, 40, 50.68, 34.52, 0.31866, 41, 16.01, 30.53, 0.61969, 42, -11.97, 35.96, 0.0539, 43, -35.41, 51.52, 0.00774, 4, 40, 46.99, 36.4, 0.38425, 41, 13.23, 33.6, 0.55286, 42, -13.7, 39.72, 0.05417, 43, -35.77, 55.64, 0.00872, 4, 40, 39.51, 34.11, 0.51682, 41, 5.42, 34.09, 0.44436, 42, -21, 42.55, 0.0335, 43, -41.68, 60.77, 0.00531, 4, 40, 29.77, 31.23, 0.68907, 41, -4.71, 34.86, 0.29449, 42, -30.43, 46.33, 0.01431, 43, -49.29, 67.51, 0.00212, 4, 40, 18.27, 26, 0.85797, 41, -17.32, 34.03, 0.13737, 42, -42.7, 49.33, 0.00437, 43, -59.82, 74.48, 2.9E-4, 3, 40, 10.19, 16.65, 0.95239, 41, -28.18, 28.15, 0.04698, 42, -54.83, 46.99, 6.3E-4, 3, 40, 5.91, 8.44, 0.98759, 41, -35.09, 21.98, 0.01231, 42, -63.27, 43.19, 1.0E-4, 2, 40, -2.82, 9.19, 0.99235, 41, -42.99, 25.78, 0.00765, 3, 40, 8.82, 2.38, 0.99423, 41, -34.51, 15.29, 0.00567, 42, -64.74, 36.64, 1.0E-4, 3, 40, 35.47, 0.26, 0.97403, 41, -10.34, 3.88, 0.02381, 42, -45.12, 18.47, 0.00215, 3, 40, 64.45, 6.25, 0.02061, 41, 18.88, -0.79, 0.9579, 42, -18.66, 5.23, 0.02149, 4, 40, 93.77, 23.47, 0.0016, 41, 52.41, 4.94, 0.05072, 42, 15.03, 0.6, 0.9331, 43, -21.93, 9.12, 0.01459, 4, 40, 110.09, 38.73, 8.2E-4, 41, 73.07, 13.44, 0.00633, 42, 37.29, 2.48, 0.65134, 43, -0.34, 3.38, 0.34151, 4, 40, 124.54, 56.94, 2.2E-4, 41, 93.03, 25.36, 0.00141, 42, 59.92, 7.84, 0.02398, 43, 22.77, 0.79, 0.97439 ],
+ "hull": 93,
+ "edges": [ 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 20, 22, 22, 24, 24, 26, 26, 28, 28, 30, 30, 32, 32, 34, 34, 36, 36, 38, 38, 40, 40, 42, 42, 44, 44, 46, 46, 48, 48, 50, 50, 52, 52, 54, 54, 56, 56, 58, 58, 60, 60, 62, 62, 64, 64, 66, 66, 68, 68, 70, 70, 72, 72, 74, 74, 76, 76, 78, 78, 80, 80, 82, 82, 84, 84, 86, 86, 88, 88, 90, 90, 92, 92, 94, 94, 96, 96, 98, 98, 100, 100, 102, 102, 104, 104, 106, 106, 108, 108, 110, 110, 112, 112, 114, 114, 116, 116, 118, 118, 120, 120, 122, 122, 124, 124, 126, 126, 128, 128, 130, 130, 132, 132, 134, 134, 136, 136, 138, 138, 140, 140, 142, 142, 144, 144, 146, 146, 148, 148, 150, 150, 152, 152, 154, 154, 156, 156, 158, 158, 160, 160, 162, 162, 164, 164, 166, 166, 168, 168, 170, 170, 172, 172, 174, 174, 176, 176, 178, 178, 180, 180, 182, 182, 184, 0, 184, 80, 194 ],
+ "width": 129,
+ "height": 139
+ }
+ },
+ "item6_8": {
+ "item6_8": {
+ "type": "mesh",
+ "uvs": [ 0.27687, 0.62919, 0, 0.51508, 0, 0, 1, 0, 1, 0.51643, 0.73793, 0.62197, 1, 1, 0, 1 ],
+ "triangles": [ 2, 0, 1, 2, 3, 0, 4, 5, 3, 3, 5, 0, 0, 5, 6, 7, 0, 6 ],
+ "vertices": [ 2, 39, 87.3, 77.63, 0.5, 48, 2.38, 77.37, 0.5, 1, 48, 40.04, 170.95, 1, 1, 48, 210.02, 170.95, 1, 1, 48, 210.02, -167.05, 1, 1, 48, 39.6, -167.05, 1, 2, 39, 89.68, -78.21, 0.5, 48, 4.77, -78.47, 0.5, 1, 39, -35.07, -166.79, 1, 1, 39, -35.07, 171.21, 1 ],
+ "hull": 8,
+ "edges": [ 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 0, 14 ],
+ "width": 338,
+ "height": 330
+ }
+ },
+ "item6_9": {
+ "item6_9": {
+ "type": "mesh",
+ "uvs": [ 0.5913, 0.64922, 1, 0.48807, 1, 0, 0, 0, 0, 0.4897, 0.41508, 0.65085, 0.24667, 0.78106, 0.17961, 0.91779, 0.18117, 1, 0.81897, 1, 0.81741, 0.90965, 0.76283, 0.78269 ],
+ "triangles": [ 8, 7, 6, 11, 10, 9, 5, 0, 11, 11, 6, 5, 9, 6, 11, 8, 6, 9, 0, 5, 3, 0, 3, 2, 3, 5, 4, 2, 1, 0 ],
+ "vertices": [ 2, 48, 4.13, -24.16, 0.5, 39, 89.04, -23.9, 0.5, 1, 48, 48.29, -141.05, 1, 1, 48, 182.02, -141.05, 1, 1, 48, 182.02, 144.95, 1, 1, 48, 47.84, 144.95, 1, 2, 48, 3.69, 26.24, 0.5, 39, 88.6, 26.5, 0.5, 1, 39, 52.92, 74.67, 1, 1, 39, 15.45, 93.85, 1, 1, 39, -7.07, 93.4, 1, 1, 39, -7.07, -89.01, 1, 1, 39, 17.68, -88.57, 1, 1, 39, 52.47, -72.96, 1 ],
+ "hull": 12,
+ "edges": [ 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 20, 22, 0, 22 ],
+ "width": 286,
+ "height": 274
+ }
+ },
+ "item_1": {
+ "item_1": {
+ "type": "mesh",
+ "uvs": [ 0.00437, 0.92908, 0, 0.97607, 0.0223, 0.99889, 0.06435, 1, 0.07944, 0.96526, 0.15854, 0.72901, 0.23677, 0.7235, 0.32067, 0.74017, 0.40106, 0.77582, 0.47532, 0.83549, 0.54826, 0.88877, 0.63884, 0.93056, 0.72669, 0.93685, 0.81912, 0.91404, 1, 0.32378, 0.99999, 0.30977, 0.92563, 0.31984, 0.84322, 0.31005, 0.75648, 0.27525, 0.67286, 0.20798, 0.61116, 0.16255, 0.52144, 0.12345, 0.44194, 0.10754, 0.36879, 0.11047, 0.38537, 0.05944, 0.35504, 0.00451, 0.31804, 1.0E-5, 0.28477, 0.00602, 0.2555, 0.04162, 0.2488, 0.09509, 0.27318, 0.1328, 0.34211, 0.12066, 0.14918, 0.70364 ],
+ "triangles": [ 17, 13, 12, 13, 16, 14, 13, 17, 16, 16, 15, 14, 12, 11, 10, 17, 12, 10, 17, 10, 18, 10, 9, 18, 9, 8, 18, 8, 19, 18, 8, 20, 19, 7, 20, 8, 20, 7, 21, 21, 7, 22, 3, 2, 4, 4, 2, 0, 2, 1, 0, 4, 0, 5, 0, 32, 5, 30, 32, 0, 22, 7, 31, 22, 31, 23, 7, 6, 31, 5, 32, 6, 6, 32, 31, 32, 30, 31, 26, 31, 28, 28, 27, 26, 30, 29, 31, 28, 31, 29, 23, 31, 24, 24, 31, 26, 25, 24, 26 ],
+ "vertices": [ 1, 3, -138.78, -106.84, 1, 1, 3, -140, -118.54, 1, 1, 3, -133.76, -124.22, 1, 1, 3, -121.98, -124.5, 1, 2, 3, -117.76, -115.85, 0.95833, 4, -125.54, 43.2, 0.04167, 2, 3, -95.61, -57.02, 0.84375, 4, -62.69, 42.24, 0.15625, 3, 3, -73.7, -55.65, 0.51389, 4, -54, 22.09, 0.43056, 5, -43.98, 75.73, 0.05556, 3, 3, -50.21, -59.8, 0.22222, 4, -49.96, -1.42, 0.55556, 5, -40.74, 52.1, 0.22222, 4, 3, -27.7, -68.68, 0.05556, 4, -50.71, -25.61, 0.44444, 5, -42.29, 27.95, 0.44444, 6, -36.95, 75.37, 0.05556, 3, 4, -57.66, -50.2, 0.22222, 5, -50.07, 3.61, 0.55556, 6, -44.32, 50.9, 0.22222, 4, 4, -63.24, -73.91, 0.05556, 5, -56.44, -19.9, 0.44444, 6, -50.3, 27.29, 0.44444, 7, -63.58, 70.35, 0.05556, 3, 5, -58.58, -47.23, 0.22222, 6, -51.98, -0.07, 0.55556, 7, -65.23, 42.99, 0.22222, 3, 5, -52.54, -71.12, 0.05556, 6, -45.55, -23.87, 0.44444, 7, -58.76, 19.21, 0.5, 2, 6, -31.83, -46.54, 0.22222, 7, -45.01, -3.44, 0.77778, 2, 6, 123.62, -47.16, 0.11111, 7, 110.44, -3.84, 0.88889, 2, 6, 126.92, -46.03, 0.22222, 7, 113.74, -2.71, 0.77778, 3, 5, 110.77, -77.1, 0.05556, 6, 117.84, -27.12, 0.44444, 7, 104.64, 16.19, 0.5, 3, 5, 106.02, -54.38, 0.22222, 6, 112.72, -4.49, 0.55556, 7, 99.48, 38.81, 0.22222, 4, 4, 100.24, -77.14, 0.05556, 5, 106.84, -28.61, 0.44444, 6, 113.1, 21.29, 0.44444, 7, 99.83, 64.59, 0.05556, 3, 4, 108.08, -49.44, 0.22222, 5, 115.61, -1.19, 0.55556, 6, 121.42, 48.85, 0.22222, 4, 3, 31.12, 84.03, 0.05556, 4, 112.89, -29.36, 0.44444, 5, 121.09, 18.72, 0.44444, 6, 126.57, 68.85, 0.05556, 3, 3, 6, 93.76, 0.22222, 4, 113.56, -2.42, 0.55556, 5, 122.66, 45.61, 0.22222, 3, 3, -16.26, 97.72, 0.51389, 4, 109.76, 19.87, 0.43056, 5, 119.62, 68.02, 0.05556, 2, 3, -36.74, 96.99, 0.84375, 4, 102.16, 38.9, 0.15625, 2, 3, -32.1, 109.7, 0.95833, 4, 115.68, 38.82, 0.04167, 1, 3, -40.59, 123.38, 1, 1, 3, -50.95, 124.5, 1, 1, 3, -60.26, 123, 1, 1, 3, -68.46, 114.14, 1, 1, 3, -70.34, 100.82, 1, 1, 3, -63.51, 91.43, 1, 2, 3, -44.21, 94.46, 0.95833, 4, 97.24, 45.07, 0.04167, 2, 3, -98.23, -50.71, 0.95833, 4, -57.64, 46.84, 0.04167 ],
+ "hull": 31,
+ "edges": [ 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 26, 28, 28, 30, 46, 48, 48, 50, 50, 52, 52, 54, 54, 56, 56, 58, 58, 60, 0, 60, 30, 32, 32, 34, 34, 36, 36, 38, 38, 40, 40, 42, 42, 44, 44, 46, 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 20, 22, 22, 24, 24, 26, 62, 64, 46, 62, 64, 10 ],
+ "width": 276,
+ "height": 249
+ }
+ },
+ "item_1_vague": {
+ "item_1_vague": { "width": 280, "height": 266 }
+ },
+ "item_2": {
+ "item_2": {
+ "type": "mesh",
+ "uvs": [ 0, 0.65869, 1.0E-5, 0.71623, 0.09204, 0.87966, 0.21428, 0.99999, 0.26853, 0.99291, 0.37547, 0.92121, 0.45139, 0.8547, 0.55023, 0.79858, 0.67584, 0.72492, 0.78781, 0.6516, 0.89872, 0.57781, 0.99999, 0.47208, 0.99999, 0.36275, 1, 0.26697, 0.89113, 0.07967, 0.70782, 0, 0.62038, 0.00709, 0.4924, 0.02978, 0.39819, 0.12229, 0.32106, 0.2248, 0.25083, 0.33617, 0.19141, 0.46765, 0.12328, 0.54216, 0.01969, 0.61858, 0.34656, 0.61036, 0.62503, 0.37299, 0.81564, 0.2404, 0.48356, 0.49741, 0.22593, 0.73641 ],
+ "triangles": [ 9, 25, 10, 25, 26, 10, 10, 12, 11, 10, 26, 12, 26, 16, 15, 12, 26, 13, 26, 14, 13, 26, 15, 14, 6, 24, 7, 24, 27, 7, 7, 27, 8, 9, 8, 25, 8, 27, 25, 27, 24, 20, 24, 21, 20, 20, 19, 27, 27, 19, 25, 19, 18, 25, 18, 17, 25, 17, 16, 25, 26, 25, 16, 4, 3, 28, 5, 4, 28, 28, 3, 2, 5, 28, 6, 2, 1, 28, 28, 24, 6, 1, 23, 28, 23, 22, 28, 28, 22, 24, 24, 22, 21, 1, 0, 23 ],
+ "vertices": [ 2, 15, -12.44, 57.63, 0.99922, 16, -92.64, 55.75, 7.8E-4, 1, 15, -22.58, 44.95, 1, 1, 15, -29.09, -8.86, 1, 2, 15, -20.7, -59.03, 0.99935, 16, -98.51, -61.05, 6.5E-4, 3, 15, -6.32, -67.97, 0.98463, 16, -83.95, -69.7, 0.0151, 17, -198.37, -70.45, 2.7E-4, 3, 15, 32.2, -72.89, 0.88438, 16, -45.34, -73.83, 0.10693, 17, -159.73, -74.32, 0.00869, 3, 15, 62.3, -72.95, 0.61154, 16, -15.25, -73.28, 0.34161, 17, -129.65, -73.55, 0.04685, 3, 15, 96.11, -79.73, 0.20717, 16, 18.69, -79.37, 0.6091, 17, -95.66, -79.41, 0.18373, 3, 15, 139.49, -87.84, 0.01392, 16, 62.23, -86.59, 0.43791, 17, -52.07, -86.32, 0.54817, 2, 16, 102.36, -91.31, 0.15967, 17, -11.92, -90.76, 0.84033, 2, 16, 142.3, -95.72, 0.01013, 17, 28.06, -94.9, 0.98987, 1, 17, 71.08, -90.05, 1, 1, 17, 89.68, -65.46, 1, 1, 17, 105.97, -43.92, 1, 2, 16, 225.93, 17.18, 0.01232, 17, 110.9, 18.57, 0.98768, 2, 16, 194.52, 69.59, 0.26638, 17, 79.12, 70.76, 0.73362, 2, 16, 171.79, 84.5, 0.5099, 17, 56.3, 85.52, 0.4901, 2, 16, 136.42, 103.57, 0.83792, 17, 20.79, 104.34, 0.16208, 2, 16, 97.37, 100.64, 0.95931, 17, -18.24, 101.14, 0.04069, 3, 15, 141.71, 91, 0.00286, 16, 60.8, 92.26, 0.99668, 17, -54.74, 92.51, 4.6E-4, 2, 15, 105.09, 80.07, 0.07217, 16, 24.41, 80.59, 0.92783, 2, 15, 67.55, 62.63, 0.47747, 16, -12.77, 62.38, 0.52253, 2, 15, 37.93, 59.41, 0.84968, 16, -42.32, 58.56, 0.15032, 2, 15, -0.61, 62.65, 0.99096, 16, -80.91, 61.01, 0.00904, 2, 15, 79.96, 1.16, 0.36302, 16, 0.9, 1.17, 0.63698, 1, 16, 110.13, 1.75, 1, 1, 17, 64.9, -3.47, 1, 1, 16, 53.98, 0.6, 1, 2, 15, 28.56, -3.24, 0.99999, 17, -165.28, -4.79, 1.0E-5 ],
+ "hull": 24,
+ "edges": [ 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 20, 22, 22, 24, 24, 26, 26, 28, 28, 30, 30, 32, 32, 34, 34, 36, 36, 38, 38, 40, 40, 42, 42, 44, 44, 46, 0, 46 ],
+ "width": 301,
+ "height": 282
+ }
+ },
+ "item_2_vague": {
+ "item_2_vague": { "width": 310, "height": 298 }
+ },
+ "item_3": {
+ "item_3": {
+ "type": "mesh",
+ "uvs": [ 0, 0.62868, 0, 0.74797, 0.13311, 0.82617, 0.23351, 0.84908, 0.34264, 0.92706, 0.50476, 1, 0.62895, 1, 0.81925, 0.98643, 0.97319, 0.9264, 1, 0.86794, 1, 0.72495, 0.95757, 0.67203, 0.84305, 0.60567, 0.701, 0.47433, 0.60433, 0.359, 0.51881, 0.24287, 0.5136, 0.08646, 0.45336, 0, 0.07797, 0, 0.06608, 0.09803, 0.05492, 0.26313, 0.01774, 0.4314, 0, 0.56261, 0.09607, 0.63088, 0.6675, 0.82606, 0.28486, 0.25843, 0.42983, 0.51986 ],
+ "triangles": [ 1, 23, 2, 26, 3, 23, 3, 2, 23, 1, 0, 23, 23, 22, 21, 23, 0, 22, 13, 26, 14, 23, 21, 25, 23, 25, 26, 25, 21, 20, 26, 15, 14, 26, 25, 15, 20, 19, 25, 19, 18, 25, 25, 16, 15, 25, 17, 16, 25, 18, 17, 7, 6, 24, 6, 5, 24, 5, 4, 24, 8, 7, 9, 11, 24, 12, 24, 9, 7, 24, 4, 26, 11, 9, 24, 11, 10, 9, 26, 4, 3, 24, 26, 13, 24, 13, 12 ],
+ "vertices": [ 2, 19, -72.84, -81.51, 0.1111, 20, -27.96, 20.56, 0.8889, 2, 19, -72.84, -114.07, 9.9E-4, 20, -27.96, -12, 0.99901, 3, 18, -110.09, 40.28, 0.08909, 19, -34.24, -135.42, 0.00288, 20, 10.65, -33.35, 0.90803, 3, 18, -80.98, 34.02, 0.31698, 19, -5.12, -141.68, 0.02922, 20, 39.76, -39.61, 0.6538, 3, 18, -49.33, 12.73, 0.68316, 19, 26.53, -162.97, 0.02464, 20, 71.41, -60.89, 0.2922, 1, 18, -2.31, -7.18, 1, 2, 18, 33.7, -7.18, 0.99607, 19, 109.55, -182.88, 0.00393, 2, 18, 88.89, -3.47, 0.98955, 19, 164.74, -179.18, 0.01045, 2, 18, 133.53, 12.92, 0.98517, 19, 209.38, -162.79, 0.01483, 2, 18, 141.31, 28.87, 0.98117, 19, 217.16, -146.83, 0.01883, 2, 18, 141.31, 67.91, 0.96026, 19, 217.16, -107.79, 0.03974, 2, 18, 129, 82.36, 0.94568, 19, 204.85, -93.34, 0.05432, 3, 18, 95.79, 100.47, 0.86527, 19, 171.64, -75.23, 0.13286, 20, 216.53, 26.85, 0.00187, 3, 18, 54.6, 136.33, 0.59325, 19, 130.45, -39.37, 0.38779, 20, 175.34, 62.7, 0.01896, 3, 18, 26.56, 167.82, 0.32307, 19, 102.41, -7.89, 0.65913, 20, 147.3, 94.19, 0.0178, 3, 18, 1.76, 199.52, 0.10301, 19, 77.61, 23.82, 0.89526, 20, 122.5, 125.89, 0.00173, 2, 18, 0.25, 242.22, 0.01439, 19, 76.1, 66.52, 0.98561, 2, 18, -17.22, 265.82, 0.00289, 19, 58.63, 90.12, 0.99711, 1, 19, -50.23, 90.12, 1, 2, 19, -53.68, 63.36, 0.99932, 20, -8.79, 165.43, 6.8E-4, 2, 19, -56.91, 18.29, 0.9303, 20, -12.03, 120.36, 0.0697, 2, 19, -67.7, -27.65, 0.5953, 20, -22.81, 74.42, 0.4047, 2, 19, -72.84, -63.47, 0.2527, 20, -27.96, 38.6, 0.7473, 3, 18, -120.83, 93.59, 0.00601, 19, -44.98, -82.11, 0.12537, 20, -0.1, 19.96, 0.86862, 3, 18, 44.88, 40.31, 0.92697, 19, 120.73, -135.39, 0.06235, 20, 165.62, -33.32, 0.01069, 2, 18, -66.08, 195.27, 0.00507, 19, 9.77, 19.57, 0.99493, 3, 18, -24.04, 123.9, 0.30606, 19, 51.81, -51.8, 0.54857, 20, 96.69, 50.27, 0.14537 ],
+ "hull": 23,
+ "edges": [ 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 20, 22, 22, 24, 24, 26, 26, 28, 28, 30, 30, 32, 32, 34, 34, 36, 36, 38, 38, 40, 40, 42, 42, 44, 0, 44 ],
+ "width": 290,
+ "height": 273
+ }
+ },
+ "item_3_vague": {
+ "item_3_vague": { "width": 298, "height": 294 }
+ },
+ "item_4": {
+ "item1_2": {
+ "type": "mesh",
+ "uvs": [ 0.00437, 0.92908, 0, 0.97607, 0.0223, 0.99889, 0.06435, 1, 0.07944, 0.96526, 0.15854, 0.72901, 0.23677, 0.7235, 0.32067, 0.74017, 0.40106, 0.77582, 0.47532, 0.83549, 0.54826, 0.88877, 0.63884, 0.93056, 0.72669, 0.93685, 0.81912, 0.91404, 1, 0.32378, 0.99999, 0.30977, 0.92563, 0.31984, 0.84322, 0.31005, 0.75648, 0.27525, 0.67286, 0.20798, 0.61116, 0.16255, 0.52144, 0.12345, 0.44194, 0.10754, 0.36879, 0.11047, 0.38537, 0.05944, 0.35504, 0.00451, 0.31804, 1.0E-5, 0.28477, 0.00602, 0.2555, 0.04162, 0.2488, 0.09509, 0.27318, 0.1328, 0.34211, 0.12066, 0.14918, 0.70364 ],
+ "triangles": [ 16, 15, 14, 13, 17, 16, 13, 16, 14, 17, 13, 12, 17, 10, 18, 17, 12, 10, 12, 11, 10, 8, 20, 19, 8, 19, 18, 9, 8, 18, 10, 9, 18, 21, 7, 22, 20, 7, 21, 7, 20, 8, 25, 24, 26, 24, 31, 26, 23, 31, 24, 28, 31, 29, 30, 29, 31, 28, 27, 26, 26, 31, 28, 32, 30, 31, 6, 32, 31, 5, 32, 6, 7, 6, 31, 22, 31, 23, 22, 7, 31, 30, 32, 0, 0, 32, 5, 4, 0, 5, 2, 1, 0, 4, 2, 0, 3, 2, 4 ],
+ "vertices": [ 1, 3, -138.78, -106.84, 1, 1, 3, -140, -118.54, 1, 1, 3, -133.76, -124.22, 1, 1, 3, -121.98, -124.5, 1, 2, 3, -117.76, -115.85, 0.95833, 4, -125.54, 43.2, 0.04167, 2, 3, -95.61, -57.02, 0.84375, 4, -62.69, 42.24, 0.15625, 3, 3, -73.7, -55.65, 0.51389, 4, -54, 22.09, 0.43056, 5, -43.98, 75.73, 0.05556, 3, 3, -50.21, -59.8, 0.22222, 4, -49.96, -1.42, 0.55556, 5, -40.74, 52.1, 0.22222, 4, 3, -27.7, -68.68, 0.05556, 4, -50.71, -25.61, 0.44444, 5, -42.29, 27.95, 0.44444, 6, -36.95, 75.37, 0.05556, 3, 4, -57.66, -50.2, 0.22222, 5, -50.07, 3.61, 0.55556, 6, -44.32, 50.9, 0.22222, 4, 4, -63.24, -73.91, 0.05556, 5, -56.44, -19.9, 0.44444, 6, -50.3, 27.29, 0.44444, 7, -63.58, 70.35, 0.05556, 3, 5, -58.58, -47.23, 0.22222, 6, -51.98, -0.07, 0.55556, 7, -65.23, 42.99, 0.22222, 3, 5, -52.54, -71.12, 0.05556, 6, -45.55, -23.87, 0.44444, 7, -58.76, 19.21, 0.5, 2, 6, -31.83, -46.54, 0.22222, 7, -45.01, -3.44, 0.77778, 2, 6, 123.62, -47.16, 0.11111, 7, 110.44, -3.84, 0.88889, 2, 6, 126.92, -46.03, 0.22222, 7, 113.74, -2.71, 0.77778, 3, 5, 110.77, -77.1, 0.05556, 6, 117.84, -27.12, 0.44444, 7, 104.64, 16.19, 0.5, 3, 5, 106.02, -54.38, 0.22222, 6, 112.72, -4.49, 0.55556, 7, 99.48, 38.81, 0.22222, 4, 4, 100.24, -77.14, 0.05556, 5, 106.84, -28.61, 0.44444, 6, 113.1, 21.29, 0.44444, 7, 99.83, 64.59, 0.05556, 3, 4, 108.08, -49.44, 0.22222, 5, 115.61, -1.19, 0.55556, 6, 121.42, 48.85, 0.22222, 4, 3, 31.12, 84.03, 0.05556, 4, 112.89, -29.36, 0.44444, 5, 121.09, 18.72, 0.44444, 6, 126.57, 68.85, 0.05556, 3, 3, 6, 93.76, 0.22222, 4, 113.56, -2.42, 0.55556, 5, 122.66, 45.61, 0.22222, 3, 3, -16.26, 97.72, 0.51389, 4, 109.76, 19.87, 0.43056, 5, 119.62, 68.02, 0.05556, 2, 3, -36.74, 96.99, 0.84375, 4, 102.16, 38.9, 0.15625, 2, 3, -32.1, 109.7, 0.95833, 4, 115.68, 38.82, 0.04167, 1, 3, -40.59, 123.38, 1, 1, 3, -50.95, 124.5, 1, 1, 3, -60.26, 123, 1, 1, 3, -68.46, 114.14, 1, 1, 3, -70.34, 100.82, 1, 1, 3, -63.51, 91.43, 1, 2, 3, -44.21, 94.46, 0.95833, 4, 97.24, 45.07, 0.04167, 2, 3, -98.23, -50.71, 0.95833, 4, -57.64, 46.84, 0.04167 ],
+ "hull": 31,
+ "edges": [ 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 26, 28, 28, 30, 46, 48, 48, 50, 50, 52, 52, 54, 54, 56, 56, 58, 58, 60, 0, 60, 30, 32, 32, 34, 34, 36, 36, 38, 38, 40, 40, 42, 42, 44, 44, 46, 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 20, 22, 22, 24, 24, 26, 62, 64, 46, 62, 64, 10 ],
+ "width": 276,
+ "height": 249
+ }
+ },
+ "item_4_vague": {
+ "item_4_vague": { "width": 278, "height": 302 }
+ },
+ "item_5": {
+ "item1_1": {
+ "type": "mesh",
+ "uvs": [ 0, 0.87628, 1.0E-5, 1, 0.0896, 0.99999, 0.15864, 1, 0.19268, 0.93114, 0.24697, 0.81023, 0.27672, 0.76056, 0.32258, 0.76929, 0.38416, 0.79538, 0.44142, 0.83798, 0.49169, 0.89523, 0.53267, 0.96391, 0.64178, 0.96807, 0.80812, 0.95331, 0.99491, 0.35619, 0.98985, 0.27439, 0.91303, 0.2528, 0.83205, 0.21188, 0.74464, 0.16461, 0.68213, 0.13183, 0.61342, 0.0914, 0.55349, 0.08447, 0.49831, 0.06088, 0.43901, 0.05652, 0.41439, 0.04096, 0.35272, 0, 0.32158, 0, 0.29117, 0, 0.22436, 0, 0.21028, 0.15172, 0.17175, 0.30416, 0.37196, 0.19019, 0.2048, 0.66846 ],
+ "triangles": [ 9, 14, 13, 17, 14, 9, 16, 14, 17, 14, 16, 15, 9, 13, 12, 10, 9, 12, 12, 11, 10, 20, 9, 8, 19, 9, 20, 18, 9, 19, 17, 9, 18, 21, 20, 8, 29, 28, 27, 31, 25, 24, 31, 24, 23, 31, 27, 26, 31, 26, 25, 29, 27, 31, 31, 32, 30, 31, 30, 29, 7, 6, 32, 31, 7, 32, 21, 8, 31, 7, 31, 8, 5, 32, 6, 21, 31, 22, 22, 31, 23, 0, 30, 32, 0, 32, 5, 4, 0, 5, 2, 0, 4, 3, 2, 4, 1, 0, 2 ],
+ "vertices": [ 1, 3, -166.38, -113.26, 1, 1, 3, -166.37, -150.5, 1, 1, 3, -136.56, -150.5, 1, 1, 3, -113.59, -150.5, 1, 2, 3, -102.26, -129.77, 0.95833, 4, -133.41, 23.91, 0.04167, 2, 3, -84.2, -93.38, 0.84375, 4, -93.05, 19.21, 0.15625, 3, 3, -74.3, -78.43, 0.51389, 4, -75.64, 14.94, 0.43056, 5, -65.84, 69.32, 0.05556, 3, 3, -59.04, -81.06, 0.22222, 4, -72.95, -0.31, 0.55556, 5, -63.67, 53.99, 0.22222, 4, 3, -38.55, -88.91, 0.05556, 4, -73.41, -22.24, 0.44444, 5, -64.87, 32.08, 0.44444, 6, -59.59, 79.12, 0.05556, 3, 4, -79.04, -44.51, 0.22222, 5, -71.24, 10.01, 0.55556, 6, -65.6, 56.95, 0.22222, 4, 4, -89.6, -66.08, 0.05556, 5, -82.53, -11.19, 0.44444, 6, -76.52, 35.56, 0.44444, 7, -89.82, 78.59, 0.05556, 3, 5, -98.03, -30.5, 0.22222, 6, -91.7, 15.99, 0.55556, 7, -104.97, 59, 0.22222, 3, 5, -88.1, -65.45, 0.05556, 6, -81.2, -18.78, 0.44444, 7, -94.41, 24.24, 0.5, 2, 6, -59.17, -69.75, 0.22222, 7, -72.31, -26.7, 0.77778, 2, 6, 131.01, -70.72, 0.11111, 7, 117.86, -27.39, 0.88889, 2, 6, 153.78, -61.19, 0.22222, 7, 140.62, -17.83, 0.77778, 3, 5, 144.49, -85.43, 0.05556, 6, 151.7, -34.9, 0.44444, 7, 138.5, 8.46, 0.5, 3, 5, 147.96, -56.01, 0.22222, 6, 154.68, -5.42, 0.55556, 7, 141.44, 37.94, 0.22222, 4, 4, 145.82, -70.96, 0.05556, 5, 152.6, -23.96, 0.44444, 6, 158.78, 26.7, 0.44444, 7, 145.5, 70.07, 0.05556, 3, 4, 148.07, -48.04, 0.22222, 5, 155.62, -1.14, 0.55556, 6, 161.42, 49.57, 0.22222, 4, 3, 36.88, 122.99, 0.05556, 4, 151.5, -21.6, 0.44444, 5, 159.94, 25.17, 0.44444, 6, 165.3, 75.95, 0.05556, 3, 3, 16.61, 126.15, 0.22222, 4, 147.63, -1.46, 0.55556, 5, 156.74, 45.43, 0.22222, 3, 3, -1.94, 132.17, 0.51389, 4, 147.03, 18.04, 0.43056, 5, 156.8, 64.94, 0.05556, 2, 3, -22.67, 135.87, 0.84375, 4, 143.49, 38.8, 0.15625, 2, 3, -37.05, 146.73, 0.95833, 4, 148.86, 56, 0.04167, 1, 3, -49.01, 150.5, 1, 1, 3, -59.37, 150.5, 1, 1, 3, -69.49, 150.5, 1, 1, 3, -91.72, 150.5, 1, 1, 3, -96.4, 104.83, 1, 1, 3, -109.23, 58.95, 1, 2, 3, -42.61, 93.25, 0.95833, 4, 96.65, 43.15, 0.04167, 2, 3, -98.23, -50.71, 0.95833, 4, -57.64, 46.84, 0.04167 ],
+ "hull": 31,
+ "edges": [ 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 26, 28, 28, 30, 46, 48, 48, 50, 50, 52, 52, 54, 54, 56, 56, 58, 58, 60, 0, 60, 30, 32, 32, 34, 34, 36, 36, 38, 38, 40, 40, 42, 42, 44, 44, 46, 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 20, 22, 22, 24, 24, 26, 62, 64, 46, 62, 64, 10 ],
+ "width": 328,
+ "height": 301
+ }
+ },
+ "item_5_vague": {
+ "item_5_vague": { "y": -0.5, "width": 366, "height": 327 }
+ },
+ "item_6_vague": {
+ "item_6_vague": { "width": 346, "height": 288 }
+ },
+ "item_7": {
+ "item2_2": {
+ "type": "mesh",
+ "uvs": [ 0, 0.65869, 1.0E-5, 0.71623, 0.09204, 0.87966, 0.21428, 0.99999, 0.26853, 0.99291, 0.37547, 0.92121, 0.45139, 0.8547, 0.55023, 0.79858, 0.67584, 0.72492, 0.78781, 0.6516, 0.89872, 0.57781, 0.99999, 0.47208, 0.99999, 0.36275, 1, 0.26697, 0.89113, 0.07967, 0.70782, 0, 0.62038, 0.00709, 0.4924, 0.02978, 0.39819, 0.12229, 0.32106, 0.2248, 0.25083, 0.33617, 0.19141, 0.46765, 0.12328, 0.54216, 0.01969, 0.61858, 0.34656, 0.61036, 0.62503, 0.37299, 0.81564, 0.2404, 0.48356, 0.49741, 0.22593, 0.73641 ],
+ "triangles": [ 9, 25, 10, 25, 26, 10, 10, 12, 11, 10, 26, 12, 26, 16, 15, 12, 26, 13, 26, 14, 13, 26, 15, 14, 6, 24, 7, 24, 27, 7, 7, 27, 8, 9, 8, 25, 8, 27, 25, 27, 24, 20, 24, 21, 20, 20, 19, 27, 27, 19, 25, 19, 18, 25, 18, 17, 25, 17, 16, 25, 26, 25, 16, 4, 3, 28, 5, 4, 28, 28, 3, 2, 5, 28, 6, 2, 1, 28, 28, 24, 6, 1, 23, 28, 23, 22, 28, 28, 22, 24, 24, 22, 21, 1, 0, 23 ],
+ "vertices": [ 2, 15, -12.44, 57.63, 0.99922, 16, -92.64, 55.75, 7.8E-4, 1, 15, -22.58, 44.95, 1, 1, 15, -29.09, -8.86, 1, 2, 15, -20.7, -59.03, 0.99935, 16, -98.51, -61.05, 6.5E-4, 3, 15, -6.32, -67.97, 0.98463, 16, -83.95, -69.7, 0.0151, 17, -198.37, -70.45, 2.7E-4, 3, 15, 32.2, -72.89, 0.88438, 16, -45.34, -73.83, 0.10693, 17, -159.73, -74.32, 0.00869, 3, 15, 62.3, -72.95, 0.61154, 16, -15.25, -73.28, 0.34161, 17, -129.65, -73.55, 0.04685, 3, 15, 96.11, -79.73, 0.20717, 16, 18.69, -79.37, 0.6091, 17, -95.66, -79.41, 0.18373, 3, 15, 139.49, -87.84, 0.01392, 16, 62.23, -86.59, 0.43791, 17, -52.07, -86.32, 0.54817, 2, 16, 102.36, -91.31, 0.15967, 17, -11.92, -90.76, 0.84033, 2, 16, 142.3, -95.72, 0.01013, 17, 28.06, -94.9, 0.98987, 1, 17, 71.08, -90.05, 1, 1, 17, 89.68, -65.46, 1, 1, 17, 105.97, -43.92, 1, 2, 16, 225.93, 17.18, 0.01232, 17, 110.9, 18.57, 0.98768, 2, 16, 194.52, 69.59, 0.26638, 17, 79.12, 70.76, 0.73362, 2, 16, 171.79, 84.5, 0.5099, 17, 56.3, 85.52, 0.4901, 2, 16, 136.42, 103.57, 0.83792, 17, 20.79, 104.34, 0.16208, 2, 16, 97.37, 100.64, 0.95931, 17, -18.24, 101.14, 0.04069, 3, 15, 141.71, 91, 0.00286, 16, 60.8, 92.26, 0.99668, 17, -54.74, 92.51, 4.6E-4, 2, 15, 105.09, 80.07, 0.07217, 16, 24.41, 80.59, 0.92783, 2, 15, 67.55, 62.63, 0.47747, 16, -12.77, 62.38, 0.52253, 2, 15, 37.93, 59.41, 0.84968, 16, -42.32, 58.56, 0.15032, 2, 15, -0.61, 62.65, 0.99096, 16, -80.91, 61.01, 0.00904, 2, 15, 79.96, 1.16, 0.36302, 16, 0.9, 1.17, 0.63698, 1, 16, 110.13, 1.75, 1, 1, 17, 64.9, -3.47, 1, 1, 16, 53.98, 0.6, 1, 2, 15, 28.56, -3.24, 0.99999, 17, -165.28, -4.79, 1.0E-5 ],
+ "hull": 24,
+ "edges": [ 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 20, 22, 22, 24, 24, 26, 26, 28, 28, 30, 30, 32, 32, 34, 34, 36, 36, 38, 38, 40, 40, 42, 42, 44, 44, 46, 0, 46 ],
+ "width": 301,
+ "height": 282
+ }
+ },
+ "item_7_vague": {
+ "item_7_vague": { "x": -3.5, "y": -9.5, "width": 495, "height": 375 }
+ },
+ "item_8": {
+ "item2_1": {
+ "type": "mesh",
+ "uvs": [ 0, 0.56832, 0, 0.69624, 0.04153, 0.88622, 0.22369, 1, 0.30766, 0.99999, 0.40638, 0.96234, 0.50128, 0.91166, 0.57551, 0.86701, 0.70524, 0.79661, 0.79569, 0.73744, 0.90031, 0.65872, 1, 0.58587, 1, 0.40327, 1, 0.31146, 0.9617, 0.06029, 0.6948, 0, 0.58505, 0, 0.46335, 0, 0.34281, 0.03062, 0.26447, 0.15, 0.2247, 0.24129, 0.16146, 0.32221, 0.1109, 0.40153, 0.05526, 0.46879, 0.36916, 0.59318, 0.60661, 0.39277, 0.76914, 0.28081, 0.48598, 0.49781, 0.26631, 0.69961 ],
+ "triangles": [ 26, 15, 14, 26, 14, 13, 26, 16, 15, 26, 13, 12, 10, 26, 12, 10, 12, 11, 25, 26, 10, 9, 25, 10, 26, 25, 16, 18, 17, 19, 25, 17, 16, 17, 25, 19, 25, 20, 19, 27, 20, 25, 21, 20, 27, 24, 21, 27, 27, 25, 9, 8, 27, 9, 7, 27, 8, 24, 27, 7, 7, 6, 24, 22, 21, 24, 28, 22, 24, 23, 22, 28, 0, 23, 28, 1, 0, 28, 6, 28, 24, 2, 1, 28, 5, 28, 6, 28, 3, 2, 5, 4, 28, 4, 3, 28 ],
+ "vertices": [ 2, 15, -19.65, 91.48, 0.99922, 16, -100.54, 89.45, 7.8E-4, 1, 15, -46.34, 58.12, 1, 1, 15, -74.19, -0.86, 1, 2, 15, -46.22, -71.91, 0.99935, 16, -123.76, -74.45, 6.5E-4, 3, 15, -22.38, -90.98, 0.98463, 16, -99.54, -93.03, 0.0151, 17, -213.8, -93.89, 2.7E-4, 3, 15, 13.51, -103.58, 0.88438, 16, -63.41, -104.89, 0.10693, 17, -177.58, -105.5, 0.00869, 3, 15, 51.02, -111.91, 0.61154, 16, -25.73, -112.46, 0.34161, 17, -139.85, -112.81, 0.04685, 3, 15, 81.41, -117.12, 0.20717, 16, 4.76, -117.05, 0.6091, 17, -109.33, -117.19, 0.18373, 3, 15, 132.93, -128.23, 0.01392, 16, 56.49, -127.1, 0.43791, 17, -57.53, -126.88, 0.54817, 2, 16, 94.61, -131.43, 0.15967, 17, -19.38, -130.94, 0.84033, 2, 16, 140.8, -133.72, 0.01013, 17, 26.81, -132.91, 0.98987, 1, 17, 70.4, -135.36, 1, 1, 17, 107.18, -86.71, 1, 1, 17, 125.67, -62.25, 1, 2, 16, 280.15, 11.29, 0.01232, 17, 165.16, 13.06, 0.98768, 2, 16, 215.42, 86.32, 0.26638, 17, 99.91, 87.64, 0.73362, 2, 16, 183.76, 110.61, 0.5099, 17, 68.08, 111.71, 0.4901, 2, 16, 148.65, 137.53, 0.83792, 17, 32.79, 138.39, 0.16208, 2, 16, 107.65, 156.09, 0.95931, 17, -8.33, 156.67, 0.04069, 3, 15, 142.71, 140.52, 0.00286, 16, 60.79, 141.79, 0.99668, 17, -55.1, 142.04, 4.6E-4, 2, 15, 112.37, 125.74, 0.07217, 16, 30.76, 126.4, 0.92783, 2, 15, 77.54, 119, 0.47747, 16, -3.93, 118.94, 0.52253, 2, 15, 46.63, 109.79, 0.84968, 16, -34.64, 109.11, 0.15032, 2, 15, 16.8, 104.89, 0.99096, 16, -64.37, 103.6, 0.00904, 2, 15, 79.96, 1.16, 0.36302, 16, 0.9, 1.17, 0.63698, 1, 16, 110.13, 1.75, 1, 1, 17, 64.9, -3.47, 1, 1, 16, 53.98, 0.6, 1, 2, 15, 28.56, -3.24, 0.99999, 17, -165.28, -4.79, 1.0E-5 ],
+ "hull": 24,
+ "edges": [ 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 20, 22, 22, 24, 24, 26, 26, 28, 28, 30, 30, 32, 32, 34, 34, 36, 36, 38, 38, 40, 40, 42, 42, 44, 44, 46, 0, 46 ],
+ "width": 353,
+ "height": 334
+ }
+ },
+ "item_9": {
+ "item3_1": {
+ "type": "mesh",
+ "uvs": [ 0, 0.62926, 0, 0.75808, 0.08978, 0.86502, 0.20258, 0.92593, 0.30867, 0.96868, 0.47116, 1, 0.60402, 1, 0.87475, 0.99999, 1, 0.93859, 1, 0.81116, 1, 0.6257, 0.9984, 0.50534, 0.96522, 0.42796, 0.85486, 0.31618, 0.76867, 0.22757, 0.72004, 0.16784, 0.64055, 0.00565, 0.47946, 0, 0.12075, 0, 0, 0.14574, 0, 0.30777, 0, 0.45521, 1.0E-5, 0.55949, 0.15948, 0.60893, 0.64121, 0.77138, 0.31863, 0.29894, 0.44084, 0.51653 ],
+ "triangles": [ 23, 22, 21, 0, 22, 23, 23, 1, 0, 2, 1, 23, 4, 3, 23, 2, 23, 3, 26, 4, 23, 25, 18, 17, 19, 18, 25, 20, 19, 25, 25, 15, 26, 25, 21, 20, 25, 23, 21, 26, 23, 25, 17, 16, 15, 14, 26, 15, 13, 26, 14, 17, 15, 25, 24, 13, 12, 24, 12, 11, 24, 11, 10, 24, 10, 9, 26, 13, 24, 9, 7, 24, 4, 26, 24, 8, 7, 9, 5, 4, 24, 6, 5, 24, 7, 6, 24 ],
+ "vertices": [ 2, 19, -99.84, -88.78, 0.1111, 20, -54.95, 13.3, 0.8889, 2, 19, -99.84, -131.03, 9.9E-4, 20, -54.96, -28.96, 0.99901, 3, 18, -144.81, 9.6, 0.08909, 19, -68.96, -166.1, 0.00288, 20, -24.07, -64.03, 0.90803, 3, 18, -106, -10.38, 0.31698, 19, -30.15, -186.08, 0.02922, 20, 14.73, -84.01, 0.6538, 3, 18, -69.51, -24.4, 0.68316, 19, 6.34, -200.1, 0.02464, 20, 51.23, -98.03, 0.2922, 1, 18, -13.62, -34.68, 1, 2, 18, 32.09, -34.68, 0.99607, 19, 107.94, -210.38, 0.00393, 2, 18, 125.22, -34.68, 0.98955, 19, 201.07, -210.38, 0.01045, 2, 18, 168.31, -14.53, 0.98517, 19, 244.16, -190.24, 0.01483, 2, 18, 168.31, 27.26, 0.98117, 19, 244.16, -148.44, 0.01883, 2, 18, 168.31, 88.09, 0.96026, 19, 244.16, -87.61, 0.03974, 2, 18, 167.76, 127.57, 0.94568, 19, 243.61, -48.13, 0.05432, 3, 18, 156.34, 152.95, 0.86527, 19, 232.19, -22.75, 0.13286, 20, 277.08, 79.33, 0.00187, 3, 18, 118.38, 189.61, 0.59325, 19, 194.23, 13.91, 0.38779, 20, 239.12, 115.99, 0.01896, 3, 18, 88.73, 218.68, 0.32307, 19, 164.58, 42.98, 0.65913, 20, 209.47, 145.05, 0.0178, 3, 18, 72, 238.27, 0.10301, 19, 147.85, 62.57, 0.89526, 20, 192.74, 164.64, 0.00173, 2, 18, 44.66, 291.47, 0.01439, 19, 120.51, 115.77, 0.98561, 2, 18, -10.76, 293.32, 0.00289, 19, 65.09, 117.62, 0.99711, 1, 19, -58.3, 117.62, 1, 2, 19, -99.84, 69.82, 0.99932, 20, -54.96, 171.89, 6.8E-4, 2, 19, -99.84, 16.67, 0.9303, 20, -54.96, 118.74, 0.0697, 2, 19, -99.84, -31.69, 0.5953, 20, -54.96, 70.39, 0.4047, 2, 19, -99.84, -65.89, 0.2527, 20, -54.95, 36.18, 0.7473, 3, 18, -120.83, 93.59, 0.00601, 19, -44.98, -82.11, 0.12537, 20, -0.1, 19.96, 0.86862, 3, 18, 44.88, 40.31, 0.92697, 19, 120.73, -135.39, 0.06235, 20, 165.62, -33.32, 0.01069, 2, 18, -66.08, 195.27, 0.00507, 19, 9.77, 19.57, 0.99493, 3, 18, -24.04, 123.9, 0.30606, 19, 51.81, -51.8, 0.54857, 20, 96.69, 50.27, 0.14537 ],
+ "hull": 23,
+ "edges": [ 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 20, 22, 22, 24, 24, 26, 26, 28, 28, 30, 30, 32, 32, 34, 34, 36, 36, 38, 38, 40, 40, 42, 42, 44, 0, 44 ],
+ "width": 344,
+ "height": 328
+ }
+ },
+ "item_10": {
+ "item3_2": {
+ "type": "mesh",
+ "uvs": [ 0, 0.62868, 0, 0.74797, 0.13311, 0.82617, 0.23351, 0.84908, 0.34264, 0.92706, 0.50476, 1, 0.62895, 1, 0.81925, 0.98643, 0.97319, 0.9264, 1, 0.86794, 1, 0.72495, 0.95757, 0.67203, 0.84305, 0.60567, 0.701, 0.47433, 0.60433, 0.359, 0.51881, 0.24287, 0.5136, 0.08646, 0.45336, 0, 0.07797, 0, 0.06608, 0.09803, 0.05492, 0.26313, 0.01774, 0.4314, 0, 0.56261, 0.09607, 0.63088, 0.6675, 0.82606, 0.28486, 0.25843, 0.42983, 0.51986 ],
+ "triangles": [ 1, 23, 2, 26, 3, 23, 3, 2, 23, 1, 0, 23, 23, 22, 21, 23, 0, 22, 13, 26, 14, 23, 21, 25, 23, 25, 26, 25, 21, 20, 26, 15, 14, 26, 25, 15, 20, 19, 25, 19, 18, 25, 25, 16, 15, 25, 17, 16, 25, 18, 17, 7, 6, 24, 6, 5, 24, 5, 4, 24, 8, 7, 9, 11, 24, 12, 24, 9, 7, 24, 4, 26, 11, 9, 24, 11, 10, 9, 26, 4, 3, 24, 26, 13, 24, 13, 12 ],
+ "vertices": [ 2, 19, -72.84, -81.51, 0.1111, 20, -27.96, 20.56, 0.8889, 2, 19, -72.84, -114.07, 9.9E-4, 20, -27.96, -12, 0.99901, 3, 18, -110.09, 40.28, 0.08909, 19, -34.24, -135.42, 0.00288, 20, 10.65, -33.35, 0.90803, 3, 18, -80.98, 34.02, 0.31698, 19, -5.12, -141.68, 0.02922, 20, 39.76, -39.61, 0.6538, 3, 18, -49.33, 12.73, 0.68316, 19, 26.53, -162.97, 0.02464, 20, 71.41, -60.89, 0.2922, 1, 18, -2.31, -7.18, 1, 2, 18, 33.7, -7.18, 0.99607, 19, 109.55, -182.88, 0.00393, 2, 18, 88.89, -3.47, 0.98955, 19, 164.74, -179.18, 0.01045, 2, 18, 133.53, 12.92, 0.98517, 19, 209.38, -162.79, 0.01483, 2, 18, 141.31, 28.87, 0.98117, 19, 217.16, -146.83, 0.01883, 2, 18, 141.31, 67.91, 0.96026, 19, 217.16, -107.79, 0.03974, 2, 18, 129, 82.36, 0.94568, 19, 204.85, -93.34, 0.05432, 3, 18, 95.79, 100.47, 0.86527, 19, 171.64, -75.23, 0.13286, 20, 216.53, 26.85, 0.00187, 3, 18, 54.6, 136.33, 0.59325, 19, 130.45, -39.37, 0.38779, 20, 175.34, 62.7, 0.01896, 3, 18, 26.56, 167.82, 0.32307, 19, 102.41, -7.89, 0.65913, 20, 147.3, 94.19, 0.0178, 3, 18, 1.76, 199.52, 0.10301, 19, 77.61, 23.82, 0.89526, 20, 122.5, 125.89, 0.00173, 2, 18, 0.25, 242.22, 0.01439, 19, 76.1, 66.52, 0.98561, 2, 18, -17.22, 265.82, 0.00289, 19, 58.63, 90.12, 0.99711, 1, 19, -50.23, 90.12, 1, 2, 19, -53.68, 63.36, 0.99932, 20, -8.79, 165.43, 6.8E-4, 2, 19, -56.91, 18.29, 0.9303, 20, -12.03, 120.36, 0.0697, 2, 19, -67.7, -27.65, 0.5953, 20, -22.81, 74.42, 0.4047, 2, 19, -72.84, -63.47, 0.2527, 20, -27.96, 38.6, 0.7473, 3, 18, -120.83, 93.59, 0.00601, 19, -44.98, -82.11, 0.12537, 20, -0.1, 19.96, 0.86862, 3, 18, 44.88, 40.31, 0.92697, 19, 120.73, -135.39, 0.06235, 20, 165.62, -33.32, 0.01069, 2, 18, -66.08, 195.27, 0.00507, 19, 9.77, 19.57, 0.99493, 3, 18, -24.04, 123.9, 0.30606, 19, 51.81, -51.8, 0.54857, 20, 96.69, 50.27, 0.14537 ],
+ "hull": 23,
+ "edges": [ 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 20, 22, 22, 24, 24, 26, 26, 28, 28, 30, 30, 32, 32, 34, 34, 36, 36, 38, 38, 40, 40, 42, 42, 44, 0, 44 ],
+ "width": 290,
+ "height": 273
+ }
+ },
+ "item_41": {
+ "item_41": { "width": 279, "height": 280 }
+ },
+ "item_42": {
+ "item_42": { "x": 92.25, "y": -25.85, "width": 228, "height": 113 }
+ },
+ "item_43": {
+ "item4_1": { "width": 333, "height": 335 }
+ },
+ "item_44": {
+ "item4_2": { "width": 279, "height": 280 }
+ },
+ "item_45": {
+ "item4_3": { "x": 92.25, "y": -25.85, "width": 282, "height": 169 }
+ },
+ "item_46": {
+ "item4_4": { "x": 92.25, "y": -25.85, "width": 228, "height": 113 }
+ },
+ "jiuhua": {
+ "pj2": {
+ "type": "mesh",
+ "uvs": [ 0.02722, 0.45104, 0, 0.52108, 0.01207, 0.62153, 0.08156, 0.71737, 0.14691, 0.79769, 0.22619, 0.85575, 0.33754, 0.87694, 0.41594, 0.85667, 0.44712, 0.83547, 0.47562, 0.89077, 0.51037, 0.95988, 0.54956, 1, 0.61578, 0.96147, 0.61756, 0.89972, 0.57748, 0.85641, 0.54541, 0.82508, 0.52046, 0.79835, 0.55699, 0.77992, 0.62914, 0.78637, 0.69239, 0.8177, 0.75754, 0.88386, 0.80208, 0.94929, 0.86533, 1, 0.94194, 1, 0.98915, 0.95114, 1, 0.88202, 0.9553, 0.81659, 0.87246, 0.75945, 0.76555, 0.72259, 0.66934, 0.70508, 0.6052, 0.67467, 0.56779, 0.61292, 0.5865, 0.5521, 0.64885, 0.48206, 0.7513, 0.45903, 0.85642, 0.4581, 0.9268, 0.39232, 0.97579, 0.32136, 0.98648, 0.23289, 0.9553, 0.13337, 0.89562, 0.0495, 0.81099, 0.0108, 0.70587, 0.0108, 0.64886, 0.0449, 0.57046, 0.12415, 0.52325, 0.22276, 0.49073, 0.30017, 0.43728, 0.34809, 0.36869, 0.38771, 0.27426, 0.39048, 0.25377, 0.35546, 0.26179, 0.2716, 0.26, 0.17576, 0.23061, 0.11678, 0.15845, 0.07162, 0.12103, 0.10848, 0.10767, 0.17852, 0.14954, 0.22829, 0.17894, 0.28819, 0.17627, 0.34993, 0.1344, 0.39509, 0.07026, 0.4172, 0.79075, 0.22591, 0.60374, 0.35974, 0.48975, 0.46442, 0.20411, 0.39949, 0.21692, 0.29349, 0.1977, 0.18749, 0.47309, 0.80496, 0.52945, 0.89772, 0.57428, 0.72413, 0.74464, 0.78376, 0.88042, 0.87917 ],
+ "triangles": [ 11, 10, 12, 10, 69, 12, 12, 69, 13, 13, 69, 14, 10, 9, 69, 69, 15, 14, 69, 9, 15, 8, 68, 9, 15, 68, 16, 15, 9, 68, 7, 6, 68, 8, 7, 68, 5, 68, 6, 16, 68, 31, 70, 17, 16, 17, 70, 18, 18, 70, 29, 29, 70, 30, 70, 16, 31, 70, 31, 30, 24, 23, 72, 23, 22, 72, 22, 21, 72, 24, 72, 25, 21, 20, 72, 19, 71, 20, 72, 71, 27, 27, 71, 28, 71, 72, 20, 72, 26, 25, 72, 27, 26, 71, 19, 29, 19, 18, 29, 71, 29, 28, 35, 34, 62, 34, 63, 62, 35, 62, 36, 36, 62, 37, 63, 45, 62, 62, 45, 44, 37, 62, 38, 62, 39, 38, 44, 43, 62, 43, 42, 62, 62, 40, 39, 62, 41, 40, 62, 42, 41, 59, 66, 50, 50, 66, 51, 59, 58, 66, 51, 66, 67, 67, 66, 58, 58, 57, 67, 67, 52, 51, 57, 56, 67, 56, 55, 67, 67, 55, 53, 67, 53, 52, 53, 55, 54, 49, 68, 4, 68, 5, 4, 65, 49, 3, 64, 68, 49, 64, 49, 48, 49, 4, 3, 64, 31, 68, 3, 2, 61, 60, 65, 3, 0, 61, 1, 3, 61, 60, 61, 2, 1, 31, 64, 32, 32, 64, 33, 64, 63, 33, 33, 63, 34, 48, 47, 64, 64, 46, 63, 64, 47, 46, 60, 59, 65, 65, 50, 49, 65, 59, 50, 46, 45, 63 ],
+ "vertices": [ 3, 22, 36.99, 24.88, 0.90818, 28, -25.02, -9.03, 0.09175, 35, -48.36, -4.28, 7.0E-5, 3, 22, 31.43, 21.39, 0.93927, 28, -30.58, -12.53, 0.06064, 35, -45.78, -10.32, 9.0E-5, 3, 22, 27.17, 13.68, 0.97201, 28, -34.83, -20.24, 0.02786, 35, -38.84, -15.73, 1.3E-4, 3, 22, 27.33, 3.26, 0.99728, 28, -34.67, -30.66, 0.00245, 35, -28.52, -17.21, 2.7E-4, 3, 22, 27.99, -5.85, 0.92813, 28, -34.02, -39.77, 4.0E-5, 35, -19.42, -17.99, 0.07183, 3, 22, 30.79, -14.13, 0.66815, 28, -31.21, -48.05, 2.0E-5, 35, -10.8, -16.51, 0.33183, 3, 22, 37.82, -21.51, 0.27441, 28, -24.19, -55.43, 1.0E-5, 35, -2.41, -10.73, 0.72558, 3, 22, 44.56, -24.23, 0.04573, 28, -17.44, -58.14, 0, 35, 1.33, -4.5, 0.95427, 2, 28, -14.09, -58.3, 0, 35, 2.01, -1.21, 1, 1, 35, 7.23, -2.79, 1, 1, 35, 13.69, -4.84, 1, 1, 35, 18.65, -4.81, 1, 1, 35, 20.5, 1.78, 1, 1, 35, 16.81, 5.69, 1, 2, 33, -18.33, -16.01, 6.4E-4, 35, 11.6, 5.8, 0.99936, 3, 22, 55.61, -28.85, 0.00536, 33, -22.29, -15.76, 0.00976, 35, 7.63, 5.69, 0.98489, 3, 22, 55.16, -25.65, 0.05008, 33, -25.5, -15.41, 0.05222, 35, 4.4, 5.74, 0.8977, 3, 22, 58.76, -26.29, 0.11904, 33, -24, -12.08, 0.17781, 35, 5.59, 9.2, 0.70315, 3, 22, 63.69, -30.56, 0.08194, 33, -18.65, -8.35, 0.46272, 35, 10.58, 13.4, 0.45534, 3, 22, 66.69, -36.11, 0.02298, 33, -12.54, -6.8, 0.74421, 35, 16.53, 15.49, 0.23281, 3, 22, 68.05, -44.21, 7.4E-4, 33, -4.35, -7.47, 0.95306, 35, 24.74, 15.57, 0.0462, 2, 33, 2.38, -9.28, 0.99787, 35, 31.6, 14.38, 0.00213, 1, 33, 9.57, -9.02, 1, 1, 33, 14.87, -4.61, 1, 1, 33, 15.41, 1.38, 1, 1, 33, 12.31, 6.62, 1, 1, 33, 5.58, 8.42, 1, 2, 33, -3.33, 7.47, 0.98269, 35, 24.4, 30.54, 0.01731, 3, 22, 76.88, -33.28, 0.01055, 33, -12.77, 3.77, 0.82715, 35, 15.33, 26, 0.1623, 3, 22, 70.77, -26.96, 0.08041, 33, -20.4, -0.6, 0.51982, 35, 8.13, 20.96, 0.39977, 3, 22, 67.65, -21.43, 0.25033, 33, -26.53, -2.27, 0.24045, 35, 2.18, 18.75, 0.50922, 4, 22, 68.08, -15.1, 0.60995, 23, -35.6, -14.25, 4.1E-4, 33, -32.56, -0.29, 0.07145, 35, -4, 20.16, 0.31819, 4, 22, 72.55, -11.81, 0.85274, 23, -31.01, -11.13, 0.01829, 33, -34.65, 4.85, 0.01939, 35, -6.55, 25.1, 0.10959, 4, 22, 80.68, -10.17, 0.74849, 23, -22.83, -9.82, 0.2407, 33, -34.24, 13.12, 0.0013, 35, -6.89, 33.37, 0.00951, 2, 22, 89.31, -13.97, 0.34042, 23, -14.34, -13.95, 0.65958, 2, 22, 97.02, -19.46, 0.12456, 23, -6.86, -19.74, 0.87544, 2, 22, 105.5, -18.55, 0.04053, 23, 1.65, -19.17, 0.95947, 2, 22, 112.7, -16.15, 0.00533, 23, 8.94, -17.05, 0.99467, 1, 23, 14.46, -11.6, 1, 1, 23, 17.61, -3.06, 1, 1, 23, 17.91, 6, 1, 2, 22, 116.57, 14.43, 3.1E-4, 23, 14.01, 13.35, 0.99969, 2, 22, 108.92, 19.99, 0.02229, 23, 6.58, 19.21, 0.97771, 2, 22, 103.02, 20.6, 0.06346, 23, 0.71, 20.06, 0.93654, 2, 22, 93.26, 19.17, 0.2216, 23, -9.1, 19.01, 0.7784, 2, 22, 84.78, 14.72, 0.49613, 23, -17.75, 14.9, 0.50387, 3, 22, 78.46, 10.99, 0.78836, 28, 16.45, -22.92, 6.0E-5, 23, -24.21, 11.42, 0.21158, 3, 22, 72.11, 10.45, 0.95933, 28, 10.11, -23.47, 0.00426, 23, -30.57, 11.12, 0.03641, 4, 22, 65.09, 11.28, 0.96318, 28, 3.09, -22.63, 0.03665, 23, -37.55, 12.23, 1.7E-4, 35, -30.52, 21.35, 0, 3, 22, 58.07, 16.08, 0.77804, 28, -3.93, -17.83, 0.22195, 35, -36.36, 15.17, 1.0E-5, 3, 22, 58.37, 19.63, 0.55912, 28, -3.63, -14.28, 0.44087, 35, -39.82, 16.02, 1.0E-5, 3, 22, 63.24, 25.11, 0.17453, 28, 1.24, -8.8, 0.82547, 35, -44.47, 21.69, 0, 3, 22, 68.01, 31.95, 0.00572, 28, 6.01, -1.96, 0.99428, 35, -50.48, 27.47, 0, 1, 28, 6.88, 3.74, 1, 1, 28, 3.93, 10.74, 1, 1, 28, -0.67, 10.12, 1, 1, 28, -5.23, 5.9, 1, 3, 22, 57.28, 34.09, 0.02031, 28, -4.72, 0.18, 0.97969, 35, -54.28, 17.21, 0, 3, 22, 56.36, 28.32, 0.21522, 28, -5.64, -5.59, 0.78477, 35, -48.72, 15.39, 0, 3, 22, 53.01, 24.12, 0.54859, 28, -8.99, -9.8, 0.45139, 35, -45.09, 11.43, 1.0E-5, 3, 22, 47.65, 23.15, 0.77976, 28, -14.35, -10.76, 0.22021, 35, -44.98, 5.98, 3.0E-5, 3, 22, 41.85, 24.99, 0.8759, 28, -20.15, -8.93, 0.12404, 35, -47.7, 0.54, 6.0E-5, 1, 23, 1, -0.22, 1, 2, 22, 83.64, 0.82, 0.67965, 23, -19.43, 1.05, 0.32035, 3, 22, 69.99, -0.52, 0.99803, 33, -46.22, 5.13, 2.4E-4, 35, -18.1, 24.33, 0.00173, 3, 22, 52.5, 19.16, 0.70662, 28, -9.5, -14.76, 0.29337, 35, -40.27, 10.15, 2.0E-5, 3, 22, 58.86, 25.94, 0.2543, 28, -3.15, -7.97, 0.74569, 35, -45.98, 17.48, 0, 1, 28, 0.87, 0.51, 1, 3, 22, 51.37, -23.61, 0.01844, 33, -28.41, -18.59, 0.01211, 35, 1.79, 2.32, 0.96946, 2, 33, -19.34, -21.54, 2.0E-5, 35, 11.08, 0.2, 0.99998, 3, 22, 62.87, -23.27, 0.18801, 33, -25.91, -7.35, 0.22358, 35, 3.26, 13.73, 0.58841, 3, 22, 72.23, -36.48, 0.01083, 33, -10.81, -1.52, 0.82727, 35, 17.77, 20.91, 0.1619, 1, 33, 3.89, -0.08, 1 ],
+ "hull": 62,
+ "edges": [ 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 20, 22, 22, 24, 24, 26, 26, 28, 28, 30, 30, 32, 32, 34, 34, 36, 36, 38, 38, 40, 40, 42, 42, 44, 44, 46, 46, 48, 48, 50, 50, 52, 52, 54, 54, 56, 56, 58, 58, 60, 60, 62, 62, 64, 64, 66, 66, 68, 68, 70, 70, 72, 72, 74, 74, 76, 76, 78, 78, 80, 80, 82, 82, 84, 84, 86, 86, 88, 88, 90, 90, 92, 92, 94, 94, 96, 96, 98, 98, 100, 100, 102, 102, 104, 104, 106, 106, 108, 108, 110, 110, 112, 112, 114, 114, 116, 116, 118, 118, 120, 120, 122, 0, 122 ],
+ "width": 90,
+ "height": 87
+ }
+ },
+ "jiuhua2": {
+ "item5_3": {
+ "type": "mesh",
+ "uvs": [ 0, 0.35906, 8.3E-4, 0.50362, 0, 0.61256, 0, 0.74341, 0.06209, 0.81056, 0.19269, 0.95802, 0.39931, 0.97572, 0.40802, 0.97447, 0.41956, 0.97869, 0.43733, 0.98329, 0.46211, 0.98313, 0.52158, 0.99999, 0.63286, 1, 0.67455, 0.99999, 0.70433, 1, 0.7492, 1, 0.79332, 1, 0.8245, 1, 0.85322, 1, 0.89858, 0.99999, 0.9536, 0.98747, 1, 0.95074, 0.99999, 0.86254, 0.99999, 0.83119, 0.99999, 0.79053, 0.99999, 0.75297, 1, 0.7257, 1, 0.67395, 1, 0.63465, 0.99999, 0.61322, 0.99999, 0.59688, 1, 0.58727, 0.99999, 0.56036, 1, 0.54666, 0.99999, 0.53803, 0.99999, 0.52369, 0.99999, 0.50454, 0.99999, 0.42668, 1, 0.2815, 0.96646, 0.14311, 0.86149, 0.04308, 0.70624, 0, 0.59526, 0, 0.47293, 0, 0.35148, 0, 0.28291, 1.0E-5, 0.25411, 0, 0.23006, 1.0E-5, 0.21341, 1.0E-5, 0.18581, 0, 0.17444, 0, 0.16271, 1.0E-5, 0.14185, 0, 0.12845, 1.0E-5, 0.07516, 0, 0.02465, 0.04328, 0, 0.104, 1.0E-5, 0.14963, 1.0E-5, 0.21501, 0, 0.26285, 0, 0.29002, 0, 0.33822, 0.68826, 0.32721, 0.56717, 0.41158, 0.49336, 0.47757, 0.30841, 0.43664, 0.31671, 0.36981, 0.30427, 0.30298, 0.48258, 0.69226, 0.51907, 0.75073, 0.5481, 0.6413, 0.6584, 0.67889, 0.74631, 0.73904 ],
+ "triangles": [ 68, 64, 70, 69, 68, 70, 69, 70, 71, 68, 6, 5, 68, 69, 6, 69, 7, 6, 10, 8, 7, 69, 10, 7, 9, 8, 10, 11, 69, 12, 69, 72, 12, 10, 69, 11, 13, 72, 14, 17, 16, 72, 72, 13, 12, 72, 15, 14, 16, 15, 72, 32, 72, 71, 30, 72, 31, 29, 72, 30, 28, 72, 29, 70, 63, 71, 28, 27, 72, 26, 72, 27, 25, 72, 26, 24, 72, 25, 23, 22, 72, 23, 72, 24, 22, 19, 72, 20, 22, 21, 72, 69, 71, 22, 20, 19, 19, 18, 72, 18, 17, 72, 67, 45, 44, 67, 44, 43, 67, 43, 63, 62, 42, 41, 62, 41, 40, 62, 40, 39, 62, 39, 38, 62, 43, 42, 43, 62, 63, 37, 62, 38, 36, 62, 37, 36, 71, 62, 36, 35, 71, 35, 34, 71, 71, 63, 62, 52, 57, 56, 55, 54, 53, 56, 55, 53, 56, 53, 52, 51, 57, 52, 57, 51, 50, 49, 57, 50, 48, 58, 57, 63, 66, 67, 66, 1, 67, 48, 57, 49, 47, 0, 61, 64, 65, 66, 63, 64, 66, 48, 47, 58, 47, 59, 58, 47, 60, 59, 60, 47, 61, 46, 1, 0, 46, 0, 47, 46, 67, 1, 67, 46, 45, 33, 71, 34, 70, 64, 63, 32, 71, 33, 32, 31, 72, 68, 65, 64, 65, 3, 2, 2, 1, 65, 66, 65, 1, 4, 65, 68, 4, 3, 65, 5, 4, 68 ],
+ "vertices": [ 3, 22, 24.1, 53.01, 0.90818, 28, -37.9, 19.09, 0.09175, 35, -78.16, -12.6, 7.0E-5, 3, 22, 12.48, 36.79, 0.93927, 28, -49.53, 2.88, 0.06064, 35, -63.97, -26.62, 9.0E-5, 3, 22, 3.55, 24.7, 0.97201, 28, -58.45, -9.22, 0.02786, 35, -53.42, -37.33, 1.3E-4, 3, 22, -7.06, 10.08, 0.99728, 28, -69.06, -23.83, 0.00245, 35, -40.65, -50.1, 2.7E-4, 3, 22, -5.52, -2.48, 0.92813, 28, -67.52, -36.4, 4.0E-5, 35, -28, -50.55, 0.07183, 3, 22, -2.78, -29.62, 0.66815, 28, -64.79, -63.53, 2.0E-5, 35, -0.77, -52.1, 0.33183, 3, 22, 19.02, -48.47, 0.27441, 28, -42.98, -82.38, 1.0E-5, 35, 21.26, -33.52, 0.72558, 3, 22, 20.1, -49.04, 0.04573, 28, -41.9, -82.95, 0, 35, 22, -32.54, 0.95427, 2, 28, -40.95, -84.37, 0, 35, 23.54, -31.82, 1, 1, 35, 25.74, -30.52, 1, 1, 35, 28.16, -28.07, 1, 1, 35, 35.65, -23.87, 1, 1, 35, 46.59, -12.94, 1, 1, 35, 50.69, -8.84, 1, 2, 33, 22.46, -31.48, 6.4E-4, 35, 53.61, -5.91, 0.99936, 3, 22, 56.41, -79.75, 0.00536, 33, 27.25, -27.48, 0.00976, 35, 58.02, -1.5, 0.98489, 3, 22, 61.37, -83.36, 0.05008, 33, 31.96, -23.56, 0.05222, 35, 62.36, 2.84, 0.8977, 3, 22, 64.88, -85.9, 0.11904, 33, 35.29, -20.78, 0.17781, 35, 65.42, 5.9, 0.70315, 3, 22, 68.11, -88.25, 0.08194, 33, 38.36, -18.23, 0.46272, 35, 68.25, 8.72, 0.45534, 3, 22, 73.21, -91.95, 0.02298, 33, 43.2, -14.19, 0.74421, 35, 72.7, 13.18, 0.23281, 3, 22, 80.42, -95.04, 7.4E-4, 33, 47.97, -7.97, 0.95306, 35, 76.89, 19.81, 0.0462, 2, 33, 49.68, 0.05, 0.99787, 35, 77.87, 27.96, 0.00213, 1, 33, 41.89, 9.4, 1, 1, 33, 39.12, 12.73, 1, 1, 33, 35.52, 17.04, 1, 1, 33, 32.21, 21.02, 1, 1, 33, 29.8, 23.91, 1, 2, 33, 25.23, 29.4, 0.98269, 35, 50.86, 54.97, 0.01731, 3, 22, 114.24, -59.43, 0.01055, 33, 21.75, 33.56, 0.82715, 35, 47.02, 58.8, 0.1623, 3, 22, 115.98, -57.04, 0.08041, 33, 19.86, 35.84, 0.51982, 35, 44.93, 60.89, 0.39977, 3, 22, 117.3, -55.22, 0.25033, 33, 18.42, 37.57, 0.24045, 35, 43.34, 62.48, 0.50922, 4, 22, 118.08, -54.14, 0.60995, 23, 12.82, -55.23, 4.1E-4, 33, 17.57, 38.59, 0.07145, 35, 42.4, 63.42, 0.31819, 4, 22, 120.26, -51.14, 0.85274, 23, 15.12, -52.31, 0.01829, 33, 15.19, 41.44, 0.01939, 35, 39.77, 66.05, 0.10959, 4, 22, 121.38, -49.61, 0.74849, 23, 16.29, -50.82, 0.2407, 33, 13.98, 42.89, 0.0013, 35, 38.44, 67.39, 0.00951, 2, 22, 122.07, -48.64, 0.34042, 23, 17.03, -49.89, 0.65958, 2, 22, 123.24, -47.04, 0.12456, 23, 18.25, -48.33, 0.87544, 2, 22, 124.79, -44.9, 0.04053, 23, 19.89, -46.26, 0.95947, 2, 22, 131.1, -36.21, 0.00533, 23, 26.54, -37.82, 0.99467, 1, 23, 38.94, -22.08, 1, 1, 23, 47.09, -4.2, 1, 1, 23, 44.18, 15.68, 1, 2, 22, 132.65, 35.43, 3.1E-4, 23, 30.9, 33.7, 0.99969, 2, 22, 120.17, 44.49, 0.02229, 23, 18.79, 43.25, 0.97771, 2, 22, 106.41, 54.48, 0.06346, 23, 5.43, 53.77, 0.93654, 2, 22, 92.75, 64.4, 0.2216, 23, -7.83, 64.22, 0.7784, 2, 22, 85.04, 70, 0.49613, 23, -15.32, 70.12, 0.50387, 3, 22, 81.8, 72.35, 0.78836, 28, 19.79, 38.44, 6.0E-5, 23, -18.46, 72.6, 0.21158, 3, 22, 79.09, 74.31, 0.95933, 28, 17.09, 40.4, 0.00426, 23, -21.09, 74.66, 0.03641, 4, 22, 77.22, 75.67, 0.96318, 28, 15.22, 41.76, 0.03665, 23, -22.9, 76.1, 1.7E-4, 35, -92.22, 43.42, 0, 3, 22, 74.12, 77.93, 0.77804, 28, 12.11, 44.01, 0.22195, 35, -94.93, 40.71, 1.0E-5, 3, 22, 72.84, 78.86, 0.55912, 28, 10.83, 44.94, 0.44087, 35, -96.05, 39.59, 1.0E-5, 3, 22, 71.52, 79.81, 0.17453, 28, 9.51, 45.9, 0.82547, 35, -97.2, 38.43, 0, 3, 22, 69.17, 81.52, 0.00572, 28, 7.17, 47.6, 0.99428, 35, -99.25, 36.38, 0, 1, 28, 5.66, 48.7, 1, 1, 28, -0.34, 53.05, 1, 1, 28, -9.52, 52.34, 1, 1, 28, -17.22, 47.57, 1, 3, 22, 41.08, 76.39, 0.02031, 28, -20.92, 42.48, 0.97969, 35, -98.59, 7.84, 0, 3, 22, 35.78, 69.09, 0.21522, 28, -26.22, 35.18, 0.78477, 35, -92.21, 1.46, 0, 3, 22, 31.9, 63.75, 0.54859, 28, -30.1, 29.84, 0.45139, 35, -87.55, -3.21, 1.0E-5, 3, 22, 29.7, 60.71, 0.77976, 28, -32.3, 26.8, 0.22021, 35, -84.89, -5.86, 3.0E-5, 3, 22, 25.79, 55.33, 0.8759, 28, -36.21, 21.42, 0.12404, 35, -80.19, -10.56, 6.0E-5, 1, 23, 1, -0.22, 1, 2, 22, 83.64, 0.82, 0.67965, 23, -19.43, 1.05, 0.32035, 3, 22, 69.99, -0.52, 0.99803, 33, -46.22, 5.13, 2.4E-4, 35, -18.1, 24.33, 0.00173, 3, 22, 52.5, 19.16, 0.70662, 28, -9.5, -14.76, 0.29337, 35, -40.27, 10.15, 2.0E-5, 3, 22, 58.86, 25.94, 0.2543, 28, -3.15, -7.97, 0.74569, 35, -45.98, 17.48, 0, 1, 28, 0.87, 0.51, 1, 3, 22, 51.37, -23.61, 0.01844, 33, -28.41, -18.59, 0.01211, 35, 1.79, 2.32, 0.96946, 2, 33, -19.34, -21.54, 2.0E-5, 35, 11.08, 0.2, 0.99998, 3, 22, 62.87, -23.27, 0.18801, 33, -25.91, -7.35, 0.22358, 35, 3.26, 13.73, 0.58841, 3, 22, 72.23, -36.48, 0.01083, 33, -10.81, -1.52, 0.82727, 35, 17.77, 20.91, 0.1619, 1, 33, 3.89, -0.08, 1 ],
+ "hull": 62,
+ "edges": [ 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 20, 22, 22, 24, 24, 26, 26, 28, 28, 30, 30, 32, 32, 34, 34, 36, 36, 38, 38, 40, 40, 42, 42, 44, 44, 46, 46, 48, 48, 50, 50, 52, 52, 54, 54, 56, 56, 58, 58, 60, 60, 62, 62, 64, 64, 66, 66, 68, 68, 70, 70, 72, 72, 74, 74, 76, 76, 78, 78, 80, 80, 82, 82, 84, 84, 86, 86, 88, 88, 90, 90, 92, 92, 94, 94, 96, 96, 98, 98, 100, 100, 102, 102, 104, 104, 106, 106, 108, 108, 110, 110, 112, 112, 114, 114, 116, 116, 118, 118, 120, 120, 122, 0, 122 ],
+ "width": 139,
+ "height": 138
+ }
+ },
+ "jiuhua3": {
+ "item5_4": {
+ "type": "mesh",
+ "uvs": [ 0.02722, 0.45104, 0, 0.52108, 0.01207, 0.62153, 0.08156, 0.71737, 0.14691, 0.79769, 0.22619, 0.85575, 0.33754, 0.87694, 0.41594, 0.85667, 0.44712, 0.83547, 0.47562, 0.89077, 0.51037, 0.95988, 0.54956, 1, 0.61578, 0.96147, 0.61756, 0.89972, 0.57748, 0.85641, 0.54541, 0.82508, 0.52046, 0.79835, 0.55699, 0.77992, 0.62914, 0.78637, 0.69239, 0.8177, 0.75754, 0.88386, 0.80208, 0.94929, 0.86533, 1, 0.94194, 1, 0.98915, 0.95114, 1, 0.88202, 0.9553, 0.81659, 0.87246, 0.75945, 0.76555, 0.72259, 0.66934, 0.70508, 0.6052, 0.67467, 0.56779, 0.61292, 0.5865, 0.5521, 0.64885, 0.48206, 0.7513, 0.45903, 0.85642, 0.4581, 0.9268, 0.39232, 0.97579, 0.32136, 0.98648, 0.23289, 0.9553, 0.13337, 0.89562, 0.0495, 0.81099, 0.0108, 0.70587, 0.0108, 0.64886, 0.0449, 0.57046, 0.12415, 0.52325, 0.22276, 0.49073, 0.30017, 0.43728, 0.34809, 0.36869, 0.38771, 0.27426, 0.39048, 0.25377, 0.35546, 0.26179, 0.2716, 0.26, 0.17576, 0.23061, 0.11678, 0.15845, 0.07162, 0.12103, 0.10848, 0.10767, 0.17852, 0.14954, 0.22829, 0.17894, 0.28819, 0.17627, 0.34993, 0.1344, 0.39509, 0.07026, 0.4172, 0.79075, 0.22591, 0.60374, 0.35974, 0.48975, 0.46442, 0.20411, 0.39949, 0.21692, 0.29349, 0.1977, 0.18749, 0.47309, 0.80496, 0.52945, 0.89772, 0.57428, 0.72413, 0.74464, 0.78376, 0.88042, 0.87917 ],
+ "triangles": [ 11, 10, 12, 10, 69, 12, 12, 69, 13, 13, 69, 14, 10, 9, 69, 69, 15, 14, 69, 9, 15, 8, 68, 9, 15, 68, 16, 15, 9, 68, 7, 6, 68, 8, 7, 68, 5, 68, 6, 16, 68, 31, 70, 17, 16, 17, 70, 18, 18, 70, 29, 29, 70, 30, 70, 16, 31, 70, 31, 30, 24, 23, 72, 23, 22, 72, 22, 21, 72, 24, 72, 25, 21, 20, 72, 19, 71, 20, 72, 71, 27, 27, 71, 28, 71, 72, 20, 72, 26, 25, 72, 27, 26, 71, 19, 29, 19, 18, 29, 71, 29, 28, 35, 34, 62, 34, 63, 62, 35, 62, 36, 36, 62, 37, 63, 45, 62, 62, 45, 44, 37, 62, 38, 62, 39, 38, 44, 43, 62, 43, 42, 62, 62, 40, 39, 62, 41, 40, 62, 42, 41, 59, 66, 50, 50, 66, 51, 59, 58, 66, 51, 66, 67, 67, 66, 58, 58, 57, 67, 67, 52, 51, 57, 56, 67, 56, 55, 67, 67, 55, 53, 67, 53, 52, 53, 55, 54, 49, 68, 4, 68, 5, 4, 65, 49, 3, 64, 68, 49, 64, 49, 48, 49, 4, 3, 64, 31, 68, 3, 2, 61, 60, 65, 3, 0, 61, 1, 3, 61, 60, 61, 2, 1, 31, 64, 32, 32, 64, 33, 64, 63, 33, 33, 63, 34, 48, 47, 64, 64, 46, 63, 64, 47, 46, 60, 59, 65, 65, 50, 49, 65, 59, 50, 46, 45, 63 ],
+ "vertices": [ 3, 22, 36.99, 24.88, 0.90818, 28, -25.02, -9.03, 0.09175, 35, -48.36, -4.28, 7.0E-5, 3, 22, 31.43, 21.39, 0.93927, 28, -30.58, -12.53, 0.06064, 35, -45.78, -10.32, 9.0E-5, 3, 22, 27.17, 13.68, 0.97201, 28, -34.83, -20.24, 0.02786, 35, -38.84, -15.73, 1.3E-4, 3, 22, 27.33, 3.26, 0.99728, 28, -34.67, -30.66, 0.00245, 35, -28.52, -17.21, 2.7E-4, 3, 22, 27.99, -5.85, 0.92813, 28, -34.02, -39.77, 4.0E-5, 35, -19.42, -17.99, 0.07183, 3, 22, 30.79, -14.13, 0.66815, 28, -31.21, -48.05, 2.0E-5, 35, -10.8, -16.51, 0.33183, 3, 22, 37.82, -21.51, 0.27441, 28, -24.19, -55.43, 1.0E-5, 35, -2.41, -10.73, 0.72558, 3, 22, 44.56, -24.23, 0.04573, 28, -17.44, -58.14, 0, 35, 1.33, -4.5, 0.95427, 2, 28, -14.09, -58.3, 0, 35, 2.01, -1.21, 1, 1, 35, 7.23, -2.79, 1, 1, 35, 13.69, -4.84, 1, 1, 35, 18.65, -4.81, 1, 1, 35, 20.5, 1.78, 1, 1, 35, 16.81, 5.69, 1, 2, 33, -18.33, -16.01, 6.4E-4, 35, 11.6, 5.8, 0.99936, 3, 22, 55.61, -28.85, 0.00536, 33, -22.29, -15.76, 0.00976, 35, 7.63, 5.69, 0.98489, 3, 22, 55.16, -25.65, 0.05008, 33, -25.5, -15.41, 0.05222, 35, 4.4, 5.74, 0.8977, 3, 22, 58.76, -26.29, 0.11904, 33, -24, -12.08, 0.17781, 35, 5.59, 9.2, 0.70315, 3, 22, 63.69, -30.56, 0.08194, 33, -18.65, -8.35, 0.46272, 35, 10.58, 13.4, 0.45534, 3, 22, 66.69, -36.11, 0.02298, 33, -12.54, -6.8, 0.74421, 35, 16.53, 15.49, 0.23281, 3, 22, 68.05, -44.21, 7.4E-4, 33, -4.35, -7.47, 0.95306, 35, 24.74, 15.57, 0.0462, 2, 33, 2.38, -9.28, 0.99787, 35, 31.6, 14.38, 0.00213, 1, 33, 9.57, -9.02, 1, 1, 33, 14.87, -4.61, 1, 1, 33, 15.41, 1.38, 1, 1, 33, 12.31, 6.62, 1, 1, 33, 5.58, 8.42, 1, 2, 33, -3.33, 7.47, 0.98269, 35, 24.4, 30.54, 0.01731, 3, 22, 76.88, -33.28, 0.01055, 33, -12.77, 3.77, 0.82715, 35, 15.33, 26, 0.1623, 3, 22, 70.77, -26.96, 0.08041, 33, -20.4, -0.6, 0.51982, 35, 8.13, 20.96, 0.39977, 3, 22, 67.65, -21.43, 0.25033, 33, -26.53, -2.27, 0.24045, 35, 2.18, 18.75, 0.50922, 4, 22, 68.08, -15.1, 0.60995, 23, -35.6, -14.25, 4.1E-4, 33, -32.56, -0.29, 0.07145, 35, -4, 20.16, 0.31819, 4, 22, 72.55, -11.81, 0.85274, 23, -31.01, -11.13, 0.01829, 33, -34.65, 4.85, 0.01939, 35, -6.55, 25.1, 0.10959, 4, 22, 80.68, -10.17, 0.74849, 23, -22.83, -9.82, 0.2407, 33, -34.24, 13.12, 0.0013, 35, -6.89, 33.37, 0.00951, 2, 22, 89.31, -13.97, 0.34042, 23, -14.34, -13.95, 0.65958, 2, 22, 97.02, -19.46, 0.12456, 23, -6.86, -19.74, 0.87544, 2, 22, 105.5, -18.55, 0.04053, 23, 1.65, -19.17, 0.95947, 2, 22, 112.7, -16.15, 0.00533, 23, 8.94, -17.05, 0.99467, 1, 23, 14.46, -11.6, 1, 1, 23, 17.61, -3.06, 1, 1, 23, 17.91, 6, 1, 2, 22, 116.57, 14.43, 3.1E-4, 23, 14.01, 13.35, 0.99969, 2, 22, 108.92, 19.99, 0.02229, 23, 6.58, 19.21, 0.97771, 2, 22, 103.02, 20.6, 0.06346, 23, 0.71, 20.06, 0.93654, 2, 22, 93.26, 19.17, 0.2216, 23, -9.1, 19.01, 0.7784, 2, 22, 84.78, 14.72, 0.49613, 23, -17.75, 14.9, 0.50387, 3, 22, 78.46, 10.99, 0.78836, 28, 16.45, -22.92, 6.0E-5, 23, -24.21, 11.42, 0.21158, 3, 22, 72.11, 10.45, 0.95933, 28, 10.11, -23.47, 0.00426, 23, -30.57, 11.12, 0.03641, 4, 22, 65.09, 11.28, 0.96318, 28, 3.09, -22.63, 0.03665, 23, -37.55, 12.23, 1.7E-4, 35, -30.52, 21.35, 0, 3, 22, 58.07, 16.08, 0.77804, 28, -3.93, -17.83, 0.22195, 35, -36.36, 15.17, 1.0E-5, 3, 22, 58.37, 19.63, 0.55912, 28, -3.63, -14.28, 0.44087, 35, -39.82, 16.02, 1.0E-5, 3, 22, 63.24, 25.11, 0.17453, 28, 1.24, -8.8, 0.82547, 35, -44.47, 21.69, 0, 3, 22, 68.01, 31.95, 0.00572, 28, 6.01, -1.96, 0.99428, 35, -50.48, 27.47, 0, 1, 28, 6.88, 3.74, 1, 1, 28, 3.93, 10.74, 1, 1, 28, -0.67, 10.12, 1, 1, 28, -5.23, 5.9, 1, 3, 22, 57.28, 34.09, 0.02031, 28, -4.72, 0.18, 0.97969, 35, -54.28, 17.21, 0, 3, 22, 56.36, 28.32, 0.21522, 28, -5.64, -5.59, 0.78477, 35, -48.72, 15.39, 0, 3, 22, 53.01, 24.12, 0.54859, 28, -8.99, -9.8, 0.45139, 35, -45.09, 11.43, 1.0E-5, 3, 22, 47.65, 23.15, 0.77976, 28, -14.35, -10.76, 0.22021, 35, -44.98, 5.98, 3.0E-5, 3, 22, 41.85, 24.99, 0.8759, 28, -20.15, -8.93, 0.12404, 35, -47.7, 0.54, 6.0E-5, 1, 23, 1, -0.22, 1, 2, 22, 83.64, 0.82, 0.67965, 23, -19.43, 1.05, 0.32035, 3, 22, 69.99, -0.52, 0.99803, 33, -46.22, 5.13, 2.4E-4, 35, -18.1, 24.33, 0.00173, 3, 22, 52.5, 19.16, 0.70662, 28, -9.5, -14.76, 0.29337, 35, -40.27, 10.15, 2.0E-5, 3, 22, 58.86, 25.94, 0.2543, 28, -3.15, -7.97, 0.74569, 35, -45.98, 17.48, 0, 1, 28, 0.87, 0.51, 1, 3, 22, 51.37, -23.61, 0.01844, 33, -28.41, -18.59, 0.01211, 35, 1.79, 2.32, 0.96946, 2, 33, -19.34, -21.54, 2.0E-5, 35, 11.08, 0.2, 0.99998, 3, 22, 62.87, -23.27, 0.18801, 33, -25.91, -7.35, 0.22358, 35, 3.26, 13.73, 0.58841, 3, 22, 72.23, -36.48, 0.01083, 33, -10.81, -1.52, 0.82727, 35, 17.77, 20.91, 0.1619, 1, 33, 3.89, -0.08, 1 ],
+ "hull": 62,
+ "edges": [ 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 20, 22, 22, 24, 24, 26, 26, 28, 28, 30, 30, 32, 32, 34, 34, 36, 36, 38, 38, 40, 40, 42, 42, 44, 44, 46, 46, 48, 48, 50, 50, 52, 52, 54, 54, 56, 56, 58, 58, 60, 60, 62, 62, 64, 64, 66, 66, 68, 68, 70, 70, 72, 72, 74, 74, 76, 76, 78, 78, 80, 80, 82, 82, 84, 84, 86, 86, 88, 88, 90, 90, 92, 92, 94, 94, 96, 96, 98, 98, 100, 100, 102, 102, 104, 104, 106, 106, 108, 108, 110, 110, 112, 112, 114, 114, 116, 116, 118, 118, 120, 120, 122, 0, 122 ],
+ "width": 90,
+ "height": 87
+ }
+ },
+ "pj1": {
+ "pj1": { "x": 0.09, "y": -0.71, "rotation": -35.98, "width": 20, "height": 21 }
+ },
+ "pj2": {
+ "item5_1": { "x": 0.09, "y": -0.71, "rotation": -35.98, "width": 70, "height": 71 }
+ },
+ "pj3": {
+ "pj3": { "x": 61.53, "y": -6.68, "rotation": -35.44, "width": 299, "height": 254 }
+ },
+ "pj4": {
+ "pj1": {
+ "x": -0.24,
+ "y": -0.17,
+ "scaleX": 0.7552,
+ "scaleY": 0.7552,
+ "rotation": -80.74,
+ "width": 20,
+ "height": 21
+ }
+ },
+ "pj5": {
+ "pj1": {
+ "x": -0.73,
+ "y": -0.24,
+ "scaleX": 0.6551,
+ "scaleY": 0.6551,
+ "rotation": 11,
+ "width": 20,
+ "height": 21
+ }
+ },
+ "pj6": {
+ "pj1": {
+ "x": -0.32,
+ "y": 0.08,
+ "scaleX": 0.6551,
+ "scaleY": 0.6551,
+ "rotation": 40.07,
+ "width": 20,
+ "height": 21
+ }
+ },
+ "pj7": {
+ "pj1": {
+ "x": 0.65,
+ "y": 0.03,
+ "scaleX": 0.8452,
+ "scaleY": 0.8452,
+ "rotation": 2.63,
+ "width": 20,
+ "height": 21
+ }
+ },
+ "pj8": {
+ "pj1": {
+ "x": 0.46,
+ "y": 0.04,
+ "scaleX": 0.9328,
+ "scaleY": 0.9328,
+ "rotation": 45.44,
+ "width": 20,
+ "height": 21
+ }
+ },
+ "pj9": {
+ "pj1": {
+ "x": -0.42,
+ "y": 0.13,
+ "scaleX": 0.7565,
+ "scaleY": 0.7565,
+ "rotation": 69.46,
+ "width": 20,
+ "height": 21
+ }
+ },
+ "pj10": {
+ "pj1": {
+ "x": -0.05,
+ "y": -0.33,
+ "scaleX": 0.6965,
+ "scaleY": 0.6965,
+ "rotation": -17.53,
+ "width": 20,
+ "height": 21
+ }
+ },
+ "pj11": {
+ "pj1": {
+ "x": 0.37,
+ "y": 0.19,
+ "scaleX": 0.6495,
+ "scaleY": 0.6495,
+ "rotation": -139.93,
+ "width": 20,
+ "height": 21
+ }
+ },
+ "pj12": {
+ "pj1": { "x": 0.05, "scaleX": 0.6495, "scaleY": 0.6495, "rotation": 178.18, "width": 20, "height": 21 }
+ },
+ "pj13": {
+ "pj1": {
+ "x": -0.87,
+ "y": 1.05,
+ "scaleX": 0.9452,
+ "scaleY": 0.9452,
+ "rotation": -106.43,
+ "width": 20,
+ "height": 21
+ }
+ },
+ "pj14": {
+ "pj1": {
+ "x": -0.41,
+ "y": 0.02,
+ "scaleX": 0.9452,
+ "scaleY": 0.9452,
+ "rotation": -143.29,
+ "width": 20,
+ "height": 21
+ }
+ },
+ "pj15": {
+ "item5_5": { "x": 61.53, "y": -6.68, "rotation": -35.44, "width": 353, "height": 307 }
+ },
+ "pj16": {
+ "item5_6": { "x": 61.53, "y": -6.68, "rotation": -35.44, "width": 299, "height": 254 }
+ },
+ "pj17": {
+ "item5_1": {
+ "x": -0.24,
+ "y": -0.17,
+ "scaleX": 0.7552,
+ "scaleY": 0.7552,
+ "rotation": -80.74,
+ "width": 70,
+ "height": 71
+ }
+ },
+ "pj18": {
+ "item5_2": {
+ "x": -0.24,
+ "y": -0.17,
+ "scaleX": 0.7552,
+ "scaleY": 0.7552,
+ "rotation": -80.74,
+ "width": 20,
+ "height": 21
+ }
+ },
+ "pj19": {
+ "item5_1": {
+ "x": -0.73,
+ "y": -0.24,
+ "scaleX": 0.6551,
+ "scaleY": 0.6551,
+ "rotation": 11,
+ "width": 70,
+ "height": 71
+ }
+ },
+ "pj20": {
+ "item5_2": {
+ "x": -0.73,
+ "y": -0.24,
+ "scaleX": 0.6551,
+ "scaleY": 0.6551,
+ "rotation": 11,
+ "width": 20,
+ "height": 21
+ }
+ },
+ "pj21": {
+ "item5_2": { "x": 0.09, "y": -0.71, "rotation": -35.98, "width": 20, "height": 21 }
+ },
+ "pj22": {
+ "item5_1": {
+ "x": 0.65,
+ "y": 0.03,
+ "scaleX": 0.8452,
+ "scaleY": 0.8452,
+ "rotation": 2.63,
+ "width": 70,
+ "height": 71
+ }
+ },
+ "pj23": {
+ "item5_2": {
+ "x": 0.65,
+ "y": 0.03,
+ "scaleX": 0.8452,
+ "scaleY": 0.8452,
+ "rotation": 2.63,
+ "width": 20,
+ "height": 21
+ }
+ },
+ "pj24": {
+ "item5_1": {
+ "x": -0.32,
+ "y": 0.08,
+ "scaleX": 0.6551,
+ "scaleY": 0.6551,
+ "rotation": 40.07,
+ "width": 70,
+ "height": 71
+ }
+ },
+ "pj25": {
+ "item5_2": {
+ "x": -0.32,
+ "y": 0.08,
+ "scaleX": 0.6551,
+ "scaleY": 0.6551,
+ "rotation": 40.07,
+ "width": 20,
+ "height": 21
+ }
+ },
+ "pj26": {
+ "item5_1": {
+ "x": -0.42,
+ "y": 0.13,
+ "scaleX": 0.7565,
+ "scaleY": 0.7565,
+ "rotation": 69.46,
+ "width": 70,
+ "height": 71
+ }
+ },
+ "pj27": {
+ "item5_2": {
+ "x": -0.42,
+ "y": 0.13,
+ "scaleX": 0.7565,
+ "scaleY": 0.7565,
+ "rotation": 69.46,
+ "width": 20,
+ "height": 21
+ }
+ },
+ "pj28": {
+ "item5_1": {
+ "x": 0.46,
+ "y": 0.04,
+ "scaleX": 0.9328,
+ "scaleY": 0.9328,
+ "rotation": 45.44,
+ "width": 70,
+ "height": 71
+ }
+ },
+ "pj29": {
+ "item5_2": {
+ "x": 0.46,
+ "y": 0.04,
+ "scaleX": 0.9328,
+ "scaleY": 0.9328,
+ "rotation": 45.44,
+ "width": 20,
+ "height": 21
+ }
+ },
+ "pj30": {
+ "item5_1": {
+ "x": -0.05,
+ "y": -0.33,
+ "scaleX": 0.6965,
+ "scaleY": 0.6965,
+ "rotation": -17.53,
+ "width": 70,
+ "height": 71
+ }
+ },
+ "pj31": {
+ "item5_2": {
+ "x": -0.05,
+ "y": -0.33,
+ "scaleX": 0.6965,
+ "scaleY": 0.6965,
+ "rotation": -17.53,
+ "width": 20,
+ "height": 21
+ }
+ },
+ "pj32": {
+ "item5_1": {
+ "x": 0.37,
+ "y": 0.19,
+ "scaleX": 0.6495,
+ "scaleY": 0.6495,
+ "rotation": -139.93,
+ "width": 70,
+ "height": 71
+ }
+ },
+ "pj33": {
+ "item5_2": {
+ "x": 0.37,
+ "y": 0.19,
+ "scaleX": 0.6495,
+ "scaleY": 0.6495,
+ "rotation": -139.93,
+ "width": 20,
+ "height": 21
+ }
+ },
+ "pj34": {
+ "item5_1": {
+ "x": -0.41,
+ "y": 0.02,
+ "scaleX": 0.9452,
+ "scaleY": 0.9452,
+ "rotation": -143.29,
+ "width": 70,
+ "height": 71
+ }
+ },
+ "pj35": {
+ "item5_2": {
+ "x": -0.41,
+ "y": 0.02,
+ "scaleX": 0.9452,
+ "scaleY": 0.9452,
+ "rotation": -143.29,
+ "width": 20,
+ "height": 21
+ }
+ },
+ "pj36": {
+ "item5_1": { "x": 0.05, "scaleX": 0.6495, "scaleY": 0.6495, "rotation": 178.18, "width": 70, "height": 71 }
+ },
+ "pj37": {
+ "item5_2": { "x": 0.05, "scaleX": 0.6495, "scaleY": 0.6495, "rotation": 178.18, "width": 20, "height": 21 }
+ },
+ "pj38": {
+ "item5_1": {
+ "x": -0.87,
+ "y": 1.05,
+ "scaleX": 0.9452,
+ "scaleY": 0.9452,
+ "rotation": -106.43,
+ "width": 70,
+ "height": 71
+ }
+ },
+ "pj39": {
+ "item5_2": {
+ "x": -0.87,
+ "y": 1.05,
+ "scaleX": 0.9452,
+ "scaleY": 0.9452,
+ "rotation": -106.43,
+ "width": 20,
+ "height": 21
+ }
+ },
+ "pqg": {
+ "pqg": { "x": -139.19, "y": 75.41, "width": 60, "height": 55 }
+ },
+ "star2": {
+ "star": { "width": 64, "height": 64 }
+ },
+ "wenzi": {
+ "wenzi": { "x": -3.75, "y": -13.06, "rotation": -93.24, "width": 379, "height": 145 }
+ },
+ "wenzi2": {
+ "item7_5": { "x": -3.75, "y": -13.06, "rotation": -93.24, "width": 426, "height": 194 }
+ },
+ "wenzi3": {
+ "item7_6": { "x": -3.75, "y": -13.06, "rotation": -93.24, "width": 377, "height": 143 }
+ }
+ }
+ }
+],
+"animations": {
+ "1_idle": {
+ "slots": {
+ "item_1": {
+ "attachment": [
+ { "name": "item_1" }
+ ]
+ }
+ },
+ "bones": {
+ "item_11": {
+ "translate": [
+ {
+ "x": -4.12,
+ "y": -11.48,
+ "curve": [ 0.167, -4.12, 0.333, 8.06, 0.167, -11.48, 0.333, 22.44 ]
+ },
+ {
+ "time": 0.5,
+ "x": 8.06,
+ "y": 22.44,
+ "curve": [ 0.667, 8.06, 0.833, -4.12, 0.667, 22.44, 0.833, -11.48 ]
+ },
+ { "time": 1, "x": -4.12, "y": -11.48 }
+ ]
+ },
+ "item_13": {
+ "translate": [
+ {
+ "x": 1.24,
+ "y": 3.85,
+ "curve": [ 0.079, -1.31, 0.156, -3.74, 0.079, -4.06, 0.156, -11.62 ]
+ },
+ {
+ "time": 0.2333,
+ "x": -3.74,
+ "y": -11.62,
+ "curve": [ 0.4, -3.74, 0.567, 7.3, 0.4, -11.62, 0.567, 22.7 ]
+ },
+ {
+ "time": 0.7333,
+ "x": 7.3,
+ "y": 22.7,
+ "curve": [ 0.823, 7.3, 0.912, 4.18, 0.823, 22.7, 0.912, 13.01 ]
+ },
+ { "time": 1, "x": 1.24, "y": 3.85 }
+ ]
+ },
+ "item_14": {
+ "translate": [
+ {
+ "x": 7.68,
+ "y": 22.58,
+ "curve": [ 0.167, 7.68, 0.333, -3.93, 0.167, 22.58, 0.333, -11.55 ]
+ },
+ {
+ "time": 0.5,
+ "x": -3.93,
+ "y": -11.55,
+ "curve": [ 0.667, -3.93, 0.833, 7.68, 0.667, -11.55, 0.833, 22.58 ]
+ },
+ { "time": 1, "x": 7.68, "y": 22.58 }
+ ]
+ },
+ "item_15": {
+ "translate": [
+ {
+ "x": 2.46,
+ "y": 7.19,
+ "curve": [ 0.079, 5.14, 0.156, 7.71, 0.079, 15.05, 0.156, 22.56 ]
+ },
+ {
+ "time": 0.2333,
+ "x": 7.71,
+ "y": 22.56,
+ "curve": [ 0.4, 7.71, 0.567, -3.95, 0.4, 22.56, 0.567, -11.55 ]
+ },
+ {
+ "time": 0.7333,
+ "x": -3.95,
+ "y": -11.55,
+ "curve": [ 0.823, -3.95, 0.912, -0.65, 0.823, -11.55, 0.912, -1.91 ]
+ },
+ { "time": 1, "x": 2.46, "y": 7.19 }
+ ]
+ },
+ "flag2": {
+ "scale": [
+ {
+ "curve": [ 0.089, 1.017, 0.178, 1.05, 0.089, 1.017, 0.178, 1.05 ]
+ },
+ {
+ "time": 0.2667,
+ "x": 1.05,
+ "y": 1.05,
+ "curve": [ 0.422, 1.05, 0.578, 0.95, 0.422, 1.05, 0.578, 0.95 ]
+ },
+ {
+ "time": 0.7333,
+ "x": 0.95,
+ "y": 0.95,
+ "curve": [ 0.822, 0.95, 0.911, 0.983, 0.822, 0.95, 0.911, 0.983 ]
+ },
+ { "time": 1 }
+ ]
+ }
+ }
+ },
+ "1_payout": {
+ "slots": {
+ "item_1": {
+ "attachment": [
+ { "name": "item_1" }
+ ]
+ }
+ },
+ "bones": {
+ "flag2": {
+ "scale": [
+ {
+ "curve": [ 0.089, 1.017, 0.178, 1.05, 0.089, 1.017, 0.178, 1.05 ]
+ },
+ {
+ "time": 0.2667,
+ "x": 1.05,
+ "y": 1.05,
+ "curve": [ 0.422, 1.05, 0.578, 0.95, 0.422, 1.05, 0.578, 0.95 ]
+ },
+ {
+ "time": 0.7333,
+ "x": 0.95,
+ "y": 0.95,
+ "curve": [ 0.822, 0.95, 0.911, 0.983, 0.822, 0.95, 0.911, 0.983 ]
+ },
+ { "time": 1 }
+ ]
+ },
+ "item_11": {
+ "translate": [
+ {
+ "x": -4.12,
+ "y": -11.48,
+ "curve": [ 0.167, -4.12, 0.333, 8.06, 0.167, -11.48, 0.333, 22.44 ]
+ },
+ {
+ "time": 0.5,
+ "x": 8.06,
+ "y": 22.44,
+ "curve": [ 0.667, 8.06, 0.833, -4.12, 0.667, 22.44, 0.833, -11.48 ]
+ },
+ { "time": 1, "x": -4.12, "y": -11.48 }
+ ]
+ },
+ "item_13": {
+ "translate": [
+ {
+ "x": 1.24,
+ "y": 3.85,
+ "curve": [ 0.079, -1.31, 0.156, -3.74, 0.079, -4.06, 0.156, -11.62 ]
+ },
+ {
+ "time": 0.2333,
+ "x": -3.74,
+ "y": -11.62,
+ "curve": [ 0.4, -3.74, 0.567, 7.3, 0.4, -11.62, 0.567, 22.7 ]
+ },
+ {
+ "time": 0.7333,
+ "x": 7.3,
+ "y": 22.7,
+ "curve": [ 0.823, 7.3, 0.912, 4.18, 0.823, 22.7, 0.912, 13.01 ]
+ },
+ { "time": 1, "x": 1.24, "y": 3.85 }
+ ]
+ },
+ "item_15": {
+ "translate": [
+ {
+ "x": 2.46,
+ "y": 7.19,
+ "curve": [ 0.079, 5.14, 0.156, 7.71, 0.079, 15.05, 0.156, 22.56 ]
+ },
+ {
+ "time": 0.2333,
+ "x": 7.71,
+ "y": 22.56,
+ "curve": [ 0.4, 7.71, 0.567, -3.95, 0.4, 22.56, 0.567, -11.55 ]
+ },
+ {
+ "time": 0.7333,
+ "x": -3.95,
+ "y": -11.55,
+ "curve": [ 0.823, -3.95, 0.912, -0.65, 0.823, -11.55, 0.912, -1.91 ]
+ },
+ { "time": 1, "x": 2.46, "y": 7.19 }
+ ]
+ },
+ "item_14": {
+ "translate": [
+ {
+ "x": 7.68,
+ "y": 22.58,
+ "curve": [ 0.167, 7.68, 0.333, -3.93, 0.167, 22.58, 0.333, -11.55 ]
+ },
+ {
+ "time": 0.5,
+ "x": -3.93,
+ "y": -11.55,
+ "curve": [ 0.667, -3.93, 0.833, 7.68, 0.667, -11.55, 0.833, 22.58 ]
+ },
+ { "time": 1, "x": 7.68, "y": 22.58 }
+ ]
+ }
+ }
+ },
+ "1_spawn": {
+ "slots": {
+ "item_1": {
+ "attachment": [
+ { "name": "item_1" }
+ ]
+ }
+ },
+ "bones": {
+ "item_1": {
+ "rotate": [
+ {
+ "curve": [ 0.033, -0.57, 0.067, -1.72 ]
+ },
+ {
+ "time": 0.1,
+ "value": -1.72,
+ "curve": [ 0.144, -1.72, 0.189, 1.85 ]
+ },
+ {
+ "time": 0.2333,
+ "value": 1.85,
+ "curve": [ 0.267, 1.85, 0.3, 0.62 ]
+ },
+ { "time": 0.3333 }
+ ],
+ "translate": [
+ {
+ "curve": [ 0.033, -0.35, 0.067, -1.04, 0.033, -0.86, 0.067, -2.57 ]
+ },
+ {
+ "time": 0.1,
+ "x": -1.04,
+ "y": -2.57,
+ "curve": [ 0.144, -1.04, 0.189, 3.53, 0.144, -2.57, 0.189, 2.91 ]
+ },
+ {
+ "time": 0.2333,
+ "x": 3.53,
+ "y": 2.91,
+ "curve": [ 0.267, 3.53, 0.3, 1.18, 0.267, 2.91, 0.3, 0.97 ]
+ },
+ { "time": 0.3333 }
+ ]
+ },
+ "item_11": {
+ "translate": [
+ {
+ "curve": [ 0.056, 1.33, 0.111, 4, 0.056, 3.72, 0.111, 11.15 ]
+ },
+ {
+ "time": 0.1667,
+ "x": 4,
+ "y": 11.15,
+ "curve": [ 0.222, 4, 0.278, 1.33, 0.222, 11.15, 0.278, 3.72 ]
+ },
+ { "time": 0.3333 }
+ ]
+ },
+ "item_13": {
+ "translate": [
+ {
+ "x": 2.7,
+ "y": 8.39,
+ "curve": [ 0.034, 1.89, 0.067, 0.72, 0.034, 5.87, 0.067, 2.24 ]
+ },
+ {
+ "time": 0.1,
+ "curve": [ 0.156, 1.21, 0.211, 3.63, 0.156, 3.76, 0.211, 11.28 ]
+ },
+ {
+ "time": 0.2667,
+ "x": 3.63,
+ "y": 11.28,
+ "curve": [ 0.289, 3.63, 0.311, 3.25, 0.289, 11.28, 0.311, 10.1 ]
+ },
+ { "time": 0.3333, "x": 2.7, "y": 8.39 }
+ ]
+ },
+ "item_14": {
+ "translate": [
+ {
+ "x": 3.54,
+ "y": 10.41,
+ "curve": [ 0.011, 3.71, 0.022, 3.81, 0.011, 10.9, 0.022, 11.21 ]
+ },
+ {
+ "time": 0.0333,
+ "x": 3.81,
+ "y": 11.21,
+ "curve": [ 0.089, 3.81, 0.144, 1.27, 0.089, 11.21, 0.144, 3.74 ]
+ },
+ {
+ "time": 0.2,
+ "curve": [ 0.245, 1.02, 0.289, 2.85, 0.245, 3, 0.289, 8.39 ]
+ },
+ { "time": 0.3333, "x": 3.54, "y": 10.41 }
+ ]
+ },
+ "item_15": {
+ "translate": [
+ {
+ "x": 0.89,
+ "y": 2.6,
+ "curve": [ 0.045, 2.19, 0.089, 3.83, 0.045, 6.42, 0.089, 11.21 ]
+ },
+ {
+ "time": 0.1333,
+ "x": 3.83,
+ "y": 11.21,
+ "curve": [ 0.189, 3.83, 0.244, 1.28, 0.189, 11.21, 0.244, 3.74 ]
+ },
+ {
+ "time": 0.3,
+ "curve": [ 0.311, 0.26, 0.323, 0.56, 0.311, 0.76, 0.323, 1.63 ]
+ },
+ { "time": 0.3333, "x": 0.89, "y": 2.6 }
+ ]
+ }
+ }
+ },
+ "1_win": {
+ "slots": {
+ "item_1": {
+ "attachment": [
+ { "name": "item_1" }
+ ]
+ },
+ "item_4": {
+ "attachment": [
+ { "name": "item1_2" }
+ ]
+ },
+ "item_5": {
+ "attachment": [
+ { "name": "item1_1" }
+ ]
+ }
+ },
+ "bones": {
+ "item_1": {
+ "rotate": [
+ {
+ "curve": [ 0.056, -1.44, 0.111, -2.47 ]
+ },
+ {
+ "time": 0.1667,
+ "value": -2.47,
+ "curve": [ 0.244, -2.47, 0.322, 3.23 ]
+ },
+ {
+ "time": 0.4,
+ "value": 3.23,
+ "curve": [ 0.489, 3.23, 0.578, 2.31 ]
+ },
+ { "time": 0.6667 }
+ ],
+ "translate": [
+ {
+ "curve": [ 0.056, 0, 0.111, 2.6, 0.056, -2.8, 0.111, -10.43 ]
+ },
+ {
+ "time": 0.1667,
+ "x": 3.48,
+ "y": -10.43,
+ "curve": [ 0.244, 4.7, 0.322, 6.3, 0.244, -10.43, 0.322, 11.41 ]
+ },
+ {
+ "time": 0.4,
+ "x": 6.3,
+ "y": 11.41,
+ "curve": [ 0.489, 6.3, 0.578, 0, 0.489, 11.41, 0.578, 4.48 ]
+ },
+ { "time": 0.6667 }
+ ]
+ },
+ "item_11": {
+ "translate": [
+ {
+ "curve": [ 0.056, 0, 0.111, -9, 0.056, 4.04, 0.111, 19.88 ]
+ },
+ {
+ "time": 0.1667,
+ "x": -9,
+ "y": 19.88,
+ "curve": [ 0.256, -9, 0.344, -4.2, 0.256, 19.88, 0.344, -9.18 ]
+ },
+ {
+ "time": 0.4333,
+ "x": -2.6,
+ "y": -9.18,
+ "curve": [ 0.511, -1.2, 0.589, 0, 0.511, -9.18, 0.589, -5.65 ]
+ },
+ { "time": 0.6667 }
+ ]
+ },
+ "item_13": {
+ "translate": [
+ {
+ "x": -1.18,
+ "y": -8.4,
+ "curve": [ 0.056, -0.41, 0.111, 0, 0.056, -7, 0.111, -4 ]
+ },
+ {
+ "time": 0.1667,
+ "curve": [ 0.222, 0, 0.278, -9.66, 0.222, 4, 0.278, 19.57 ]
+ },
+ {
+ "time": 0.3333,
+ "x": -9.66,
+ "y": 19.57,
+ "curve": [ 0.422, -9.66, 0.511, -4.01, 0.422, 19.57, 0.511, -9.26 ]
+ },
+ {
+ "time": 0.6,
+ "x": -2.29,
+ "y": -9.26,
+ "curve": [ 0.622, -1.86, 0.645, -1.49, 0.622, -9.26, 0.645, -8.96 ]
+ },
+ { "time": 0.6667, "x": -1.18, "y": -8.4 }
+ ]
+ },
+ "item_14": {
+ "translate": [
+ {
+ "x": -5.35,
+ "y": -0.02,
+ "curve": [ 0.034, -4.2, 0.067, -3.06, 0.034, -5.08, 0.067, -9.23 ]
+ },
+ {
+ "time": 0.1,
+ "x": -2.44,
+ "y": -9.23,
+ "curve": [ 0.178, -0.99, 0.256, 0, 0.178, -9.23, 0.256, -5.63 ]
+ },
+ {
+ "time": 0.3333,
+ "curve": [ 0.389, 0, 0.444, -9.33, 0.389, 4.02, 0.444, 19.73 ]
+ },
+ {
+ "time": 0.5,
+ "x": -9.33,
+ "y": 19.73,
+ "curve": [ 0.556, -9.33, 0.611, -7.3, 0.556, 19.73, 0.611, 8.47 ]
+ },
+ { "time": 0.6667, "x": -5.35, "y": -0.02 }
+ ]
+ },
+ "item_15": {
+ "translate": [
+ {
+ "x": -9.3,
+ "y": 19.74,
+ "curve": [ 0.089, -9.3, 0.178, -4.11, 0.089, 19.74, 0.178, -9.22 ]
+ },
+ {
+ "time": 0.2667,
+ "x": -2.46,
+ "y": -9.22,
+ "curve": [ 0.344, -1.01, 0.422, 0, 0.344, -9.22, 0.422, -5.63 ]
+ },
+ {
+ "time": 0.5,
+ "curve": [ 0.556, 0, 0.611, -9.3, 0.556, 4.02, 0.611, 19.74 ]
+ },
+ { "time": 0.6667, "x": -9.3, "y": 19.74 }
+ ]
+ }
+ }
+ },
+ "1_win_idle": {
+ "slots": {
+ "item_1": {
+ "attachment": [
+ { "name": "item_1" }
+ ]
+ },
+ "item_4": {
+ "attachment": [
+ { "name": "item1_2" },
+ { "time": 1 }
+ ]
+ },
+ "item_5": {
+ "attachment": [
+ { "name": "item1_1" },
+ { "time": 1 }
+ ]
+ }
+ },
+ "bones": {
+ "item_11": {
+ "translate": [
+ {
+ "x": -4.12,
+ "y": -11.48,
+ "curve": [ 0.167, -4.12, 0.333, 8.06, 0.167, -11.48, 0.333, 22.44 ]
+ },
+ {
+ "time": 0.5,
+ "x": 8.06,
+ "y": 22.44,
+ "curve": [ 0.667, 8.06, 0.833, -4.12, 0.667, 22.44, 0.833, -11.48 ]
+ },
+ { "time": 1, "x": -4.12, "y": -11.48 }
+ ]
+ },
+ "item_13": {
+ "translate": [
+ {
+ "x": 1.24,
+ "y": 3.85,
+ "curve": [ 0.079, -1.31, 0.156, -3.74, 0.079, -4.06, 0.156, -11.62 ]
+ },
+ {
+ "time": 0.2333,
+ "x": -3.74,
+ "y": -11.62,
+ "curve": [ 0.4, -3.74, 0.567, 7.3, 0.4, -11.62, 0.567, 22.7 ]
+ },
+ {
+ "time": 0.7333,
+ "x": 7.3,
+ "y": 22.7,
+ "curve": [ 0.823, 7.3, 0.912, 4.18, 0.823, 22.7, 0.912, 13.01 ]
+ },
+ { "time": 1, "x": 1.24, "y": 3.85 }
+ ]
+ },
+ "item_14": {
+ "translate": [
+ {
+ "x": 7.68,
+ "y": 22.58,
+ "curve": [ 0.167, 7.68, 0.333, -3.93, 0.167, 22.58, 0.333, -11.55 ]
+ },
+ {
+ "time": 0.5,
+ "x": -3.93,
+ "y": -11.55,
+ "curve": [ 0.667, -3.93, 0.833, 7.68, 0.667, -11.55, 0.833, 22.58 ]
+ },
+ { "time": 1, "x": 7.68, "y": 22.58 }
+ ]
+ },
+ "item_15": {
+ "translate": [
+ {
+ "x": 2.46,
+ "y": 7.19,
+ "curve": [ 0.079, 5.14, 0.156, 7.71, 0.079, 15.05, 0.156, 22.56 ]
+ },
+ {
+ "time": 0.2333,
+ "x": 7.71,
+ "y": 22.56,
+ "curve": [ 0.4, 7.71, 0.567, -3.95, 0.4, 22.56, 0.567, -11.55 ]
+ },
+ {
+ "time": 0.7333,
+ "x": -3.95,
+ "y": -11.55,
+ "curve": [ 0.823, -3.95, 0.912, -0.65, 0.823, -11.55, 0.912, -1.91 ]
+ },
+ { "time": 1, "x": 2.46, "y": 7.19 }
+ ]
+ },
+ "flag2": {
+ "scale": [
+ {
+ "curve": [ 0.089, 1.017, 0.178, 1.05, 0.089, 1.017, 0.178, 1.05 ]
+ },
+ {
+ "time": 0.2667,
+ "x": 1.05,
+ "y": 1.05,
+ "curve": [ 0.422, 1.05, 0.578, 0.95, 0.422, 1.05, 0.578, 0.95 ]
+ },
+ {
+ "time": 0.7333,
+ "x": 0.95,
+ "y": 0.95,
+ "curve": [ 0.822, 0.95, 0.911, 0.983, 0.822, 0.95, 0.911, 0.983 ]
+ },
+ { "time": 1 }
+ ]
+ }
+ }
+ },
+ "2_idle": {
+ "slots": {
+ "item_2": {
+ "attachment": [
+ { "name": "item_2" }
+ ]
+ }
+ },
+ "bones": {
+ "item_8": {
+ "rotate": [
+ {
+ "value": -1.71,
+ "curve": [ 0.167, -1.71, 0.333, 3.24 ]
+ },
+ {
+ "time": 0.5,
+ "value": 3.24,
+ "curve": [ 0.667, 3.24, 0.833, -1.71 ]
+ },
+ { "time": 1, "value": -1.71 }
+ ],
+ "translate": [
+ {
+ "curve": [ 0.167, 0, 0.333, -4.09, 0.167, 0, 0.333, 4.56 ]
+ },
+ {
+ "time": 0.5,
+ "x": -4.09,
+ "y": 4.56,
+ "curve": [ 0.667, -4.09, 0.833, 0, 0.667, 4.56, 0.833, 0 ]
+ },
+ { "time": 1 }
+ ]
+ },
+ "item_9": {
+ "rotate": [
+ {
+ "value": -0.42,
+ "curve": [ 0.057, -1.14, 0.112, -1.71 ]
+ },
+ {
+ "time": 0.1667,
+ "value": -1.71,
+ "curve": [ 0.333, -1.71, 0.5, 3.24 ]
+ },
+ {
+ "time": 0.6667,
+ "value": 3.24,
+ "curve": [ 0.778, 3.24, 0.89, 1.05 ]
+ },
+ { "time": 1, "value": -0.42 }
+ ]
+ },
+ "item_10": {
+ "rotate": [
+ {
+ "value": 1.95,
+ "curve": [ 0.112, 0.48, 0.223, -1.71 ]
+ },
+ {
+ "time": 0.3333,
+ "value": -1.71,
+ "curve": [ 0.5, -1.71, 0.667, 3.24 ]
+ },
+ {
+ "time": 0.8333,
+ "value": 3.24,
+ "curve": [ 0.889, 3.24, 0.946, 2.69 ]
+ },
+ { "time": 1, "value": 1.95 }
+ ]
+ }
+ }
+ },
+ "2_payout": {
+ "slots": {
+ "item_2": {
+ "attachment": [
+ { "name": "item_2" }
+ ]
+ }
+ },
+ "bones": {
+ "item_10": {
+ "rotate": [
+ {
+ "value": 1.95,
+ "curve": [ 0.112, 0.48, 0.223, -1.71 ]
+ },
+ {
+ "time": 0.3333,
+ "value": -1.71,
+ "curve": [ 0.5, -1.71, 0.667, 3.24 ]
+ },
+ {
+ "time": 0.8333,
+ "value": 3.24,
+ "curve": [ 0.889, 3.24, 0.946, 2.69 ]
+ },
+ { "time": 1, "value": 1.95 }
+ ]
+ },
+ "item_8": {
+ "rotate": [
+ {
+ "value": -1.71,
+ "curve": [ 0.167, -1.71, 0.333, 3.24 ]
+ },
+ {
+ "time": 0.5,
+ "value": 3.24,
+ "curve": [ 0.667, 3.24, 0.833, -1.71 ]
+ },
+ { "time": 1, "value": -1.71 }
+ ],
+ "translate": [
+ {
+ "curve": [ 0.167, 0, 0.333, -4.09, 0.167, 0, 0.333, 4.56 ]
+ },
+ {
+ "time": 0.5,
+ "x": -4.09,
+ "y": 4.56,
+ "curve": [ 0.667, -4.09, 0.833, 0, 0.667, 4.56, 0.833, 0 ]
+ },
+ { "time": 1 }
+ ]
+ },
+ "item_9": {
+ "rotate": [
+ {
+ "value": -0.42,
+ "curve": [ 0.057, -1.14, 0.112, -1.71 ]
+ },
+ {
+ "time": 0.1667,
+ "value": -1.71,
+ "curve": [ 0.333, -1.71, 0.5, 3.24 ]
+ },
+ {
+ "time": 0.6667,
+ "value": 3.24,
+ "curve": [ 0.778, 3.24, 0.89, 1.05 ]
+ },
+ { "time": 1, "value": -0.42 }
+ ]
+ }
+ }
+ },
+ "2_spawn": {
+ "slots": {
+ "item_2": {
+ "attachment": [
+ { "name": "item_2" }
+ ]
+ }
+ },
+ "bones": {
+ "item_2": {
+ "scale": [
+ {
+ "curve": [ 0.033, 0.984, 0.067, 0.96, 0.033, 0.984, 0.067, 0.96 ]
+ },
+ {
+ "time": 0.1,
+ "x": 0.96,
+ "y": 0.96,
+ "curve": [ 0.144, 0.96, 0.189, 1.015, 0.144, 0.96, 0.189, 1.015 ]
+ },
+ {
+ "time": 0.2333,
+ "x": 1.015,
+ "y": 1.015,
+ "curve": [ 0.267, 1.015, 0.3, 1.016, 0.267, 1.015, 0.3, 1.016 ]
+ },
+ { "time": 0.3333 }
+ ]
+ },
+ "item_10": {
+ "rotate": [
+ { "value": 1.95 },
+ { "time": 0.1667, "value": 4.36 },
+ { "time": 0.3333, "value": 1.95 }
+ ]
+ },
+ "item_8": {
+ "rotate": [
+ { "value": -1.71 },
+ { "time": 0.1667, "value": 0.7 },
+ { "time": 0.3333, "value": -1.71 }
+ ]
+ },
+ "item_9": {
+ "rotate": [
+ { "value": -0.42 },
+ { "time": 0.1667, "value": 1.99 },
+ { "time": 0.3333, "value": -0.42 }
+ ]
+ }
+ }
+ },
+ "2_win": {
+ "slots": {
+ "item_2": {
+ "attachment": [
+ { "name": "item_2" }
+ ]
+ },
+ "item_7": {
+ "attachment": [
+ { "name": "item2_2" }
+ ]
+ },
+ "item_8": {
+ "attachment": [
+ { "name": "item2_1" }
+ ]
+ }
+ },
+ "bones": {
+ "item_2": {
+ "scale": [
+ {
+ "curve": [ 0.033, 0.976, 0.067, 0.925, 0.033, 0.976, 0.067, 0.925 ]
+ },
+ {
+ "time": 0.1,
+ "x": 0.925,
+ "y": 0.925,
+ "curve": [ 0.144, 0.925, 0.189, 1.059, 0.144, 0.925, 0.189, 1.059 ]
+ },
+ {
+ "time": 0.2333,
+ "x": 1.059,
+ "y": 1.059,
+ "curve": [ 0.3, 1.059, 0.367, 0.973, 0.3, 1.059, 0.367, 0.973 ]
+ },
+ {
+ "time": 0.4333,
+ "x": 0.973,
+ "y": 0.973,
+ "curve": [ 0.478, 0.973, 0.522, 1.031, 0.478, 0.973, 0.522, 1.031 ]
+ },
+ {
+ "time": 0.5667,
+ "x": 1.031,
+ "y": 1.031,
+ "curve": [ 0.6, 1.031, 0.633, 1.024, 0.6, 1.031, 0.633, 1.024 ]
+ },
+ { "time": 0.6667 }
+ ]
+ },
+ "item_8": {
+ "rotate": [
+ { "value": 1.29 },
+ { "time": 0.1, "value": 5.8 },
+ { "time": 0.2667, "value": -5.73 },
+ { "time": 0.4333, "value": 0.7 },
+ { "time": 0.6, "value": -1.71 },
+ { "time": 0.6667, "value": 1.29 }
+ ],
+ "translate": [
+ {},
+ { "time": 0.1, "x": -11.54, "y": 10.58 },
+ { "time": 0.3333, "x": -1.85, "y": -15.69 },
+ { "time": 0.5, "x": -0.09, "y": 4.72 },
+ { "time": 0.6667 }
+ ]
+ },
+ "item_9": {
+ "rotate": [
+ { "value": -0.42 },
+ { "time": 0.1667, "value": 12.5 },
+ { "time": 0.3333, "value": -5.99 },
+ { "time": 0.5, "value": 1.99 },
+ { "time": 0.6667, "value": -0.42 }
+ ]
+ },
+ "item_10": {
+ "rotate": [
+ { "value": 2.91 },
+ { "time": 0.0667, "value": 1.95 },
+ { "time": 0.2333, "value": 13.2 },
+ { "time": 0.4, "value": -6.13 },
+ { "time": 0.5667, "value": 9.17 },
+ { "time": 0.6667, "value": 2.91 }
+ ]
+ }
+ }
+ },
+ "2_win_idle": {
+ "slots": {
+ "item_2": {
+ "attachment": [
+ { "name": "item_2" }
+ ]
+ },
+ "item_7": {
+ "attachment": [
+ { "name": "item2_2" },
+ { "time": 1 }
+ ]
+ },
+ "item_8": {
+ "attachment": [
+ { "name": "item2_1" },
+ { "time": 1 }
+ ]
+ }
+ },
+ "bones": {
+ "item_8": {
+ "rotate": [
+ {
+ "value": -1.71,
+ "curve": [ 0.167, -1.71, 0.333, 3.24 ]
+ },
+ {
+ "time": 0.5,
+ "value": 3.24,
+ "curve": [ 0.667, 3.24, 0.833, -1.71 ]
+ },
+ { "time": 1, "value": -1.71 }
+ ],
+ "translate": [
+ {
+ "curve": [ 0.167, 0, 0.333, -4.09, 0.167, 0, 0.333, 4.56 ]
+ },
+ {
+ "time": 0.5,
+ "x": -4.09,
+ "y": 4.56,
+ "curve": [ 0.667, -4.09, 0.833, 0, 0.667, 4.56, 0.833, 0 ]
+ },
+ { "time": 1 }
+ ]
+ },
+ "item_9": {
+ "rotate": [
+ {
+ "value": -0.42,
+ "curve": [ 0.057, -1.14, 0.112, -1.71 ]
+ },
+ {
+ "time": 0.1667,
+ "value": -1.71,
+ "curve": [ 0.333, -1.71, 0.5, 3.24 ]
+ },
+ {
+ "time": 0.6667,
+ "value": 3.24,
+ "curve": [ 0.778, 3.24, 0.89, 1.05 ]
+ },
+ { "time": 1, "value": -0.42 }
+ ]
+ },
+ "item_10": {
+ "rotate": [
+ {
+ "value": 1.95,
+ "curve": [ 0.112, 0.48, 0.223, -1.71 ]
+ },
+ {
+ "time": 0.3333,
+ "value": -1.71,
+ "curve": [ 0.5, -1.71, 0.667, 3.24 ]
+ },
+ {
+ "time": 0.8333,
+ "value": 3.24,
+ "curve": [ 0.889, 3.24, 0.946, 2.69 ]
+ },
+ { "time": 1, "value": 1.95 }
+ ]
+ }
+ }
+ },
+ "3_idle": {
+ "slots": {
+ "item_3": {
+ "attachment": [
+ { "name": "item_3" }
+ ]
+ }
+ },
+ "bones": {
+ "item_12": {
+ "translate": [
+ {
+ "curve": [ 0.167, 0, 0.333, 0, 0.167, 0, 0.333, 10.51 ]
+ },
+ {
+ "time": 0.5,
+ "y": 10.51,
+ "curve": [ 0.667, 0, 0.833, 0, 0.667, 10.51, 0.833, 0 ]
+ },
+ { "time": 1 }
+ ]
+ },
+ "item_16": {
+ "translate": [
+ {
+ "y": 2.75,
+ "curve": [ 0.057, 0, 0.112, 0, 0.056, 2.09, 0.111, 1.76 ]
+ },
+ {
+ "time": 0.1667,
+ "y": 1.76,
+ "curve": [ 0.333, 0, 0.5, 0, 0.333, 1.76, 0.5, 7.63 ]
+ },
+ {
+ "time": 0.6667,
+ "y": 7.63,
+ "curve": [ 0.778, 0, 0.89, 0, 0.778, 7.63, 0.889, 4.05 ]
+ },
+ { "time": 1, "y": 2.75 }
+ ]
+ }
+ }
+ },
+ "3_payout": {
+ "slots": {
+ "item_3": {
+ "attachment": [
+ { "name": "item_3" }
+ ]
+ }
+ },
+ "bones": {
+ "item_12": {
+ "translate": [
+ {
+ "curve": [ 0.167, 0, 0.333, 0, 0.167, 0, 0.333, 10.51 ]
+ },
+ {
+ "time": 0.5,
+ "y": 10.51,
+ "curve": [ 0.667, 0, 0.833, 0, 0.667, 10.51, 0.833, 0 ]
+ },
+ { "time": 1 }
+ ]
+ },
+ "item_16": {
+ "translate": [
+ {
+ "y": 2.75,
+ "curve": [ 0.056, 0, 0.111, 0, 0.056, 2.09, 0.111, 1.76 ]
+ },
+ {
+ "time": 0.1667,
+ "y": 1.76,
+ "curve": [ 0.333, 0, 0.5, 0, 0.333, 1.76, 0.5, 7.63 ]
+ },
+ {
+ "time": 0.6667,
+ "y": 7.63,
+ "curve": [ 0.778, 0, 0.889, 0, 0.778, 7.63, 0.889, 4.05 ]
+ },
+ { "time": 1, "y": 2.75 }
+ ]
+ }
+ }
+ },
+ "3_spawn": {
+ "slots": {
+ "item_3": {
+ "attachment": [
+ { "name": "item_3" }
+ ]
+ }
+ },
+ "bones": {
+ "item_3": {
+ "rotate": [
+ {
+ "curve": [ 0.033, 0.93, 0.067, 2.79 ]
+ },
+ {
+ "time": 0.1,
+ "value": 2.79,
+ "curve": [ 0.133, 2.79, 0.167, -2.34 ]
+ },
+ {
+ "time": 0.2,
+ "value": -2.34,
+ "curve": [ 0.244, -2.34, 0.289, -0.78 ]
+ },
+ { "time": 0.3333 }
+ ],
+ "translate": [
+ {
+ "curve": [ 0.022, -0.07, 0.044, -0.19, 0.022, 1.77, 0.044, 5.32 ]
+ },
+ {
+ "time": 0.0667,
+ "x": -0.21,
+ "y": 5.32,
+ "curve": [ 0.111, -0.26, 0.156, -0.26, 0.111, 5.32, 0.156, -6.34 ]
+ },
+ {
+ "time": 0.2,
+ "x": -0.26,
+ "y": -6.34,
+ "curve": [ 0.244, -0.26, 0.289, -0.09, 0.244, -6.34, 0.289, -2.11 ]
+ },
+ { "time": 0.3333 }
+ ],
+ "scale": [
+ {
+ "curve": [ 0.022, 0.991, 0.044, 0.972, 0.022, 0.991, 0.044, 0.972 ]
+ },
+ {
+ "time": 0.0667,
+ "x": 0.972,
+ "y": 0.972,
+ "curve": [ 0.122, 0.972, 0.178, 1.043, 0.122, 0.972, 0.178, 1.043 ]
+ },
+ {
+ "time": 0.2333,
+ "x": 1.043,
+ "y": 1.043,
+ "curve": [ 0.267, 1.043, 0.3, 1.014, 0.267, 1.043, 0.3, 1.014 ]
+ },
+ { "time": 0.3333 }
+ ]
+ },
+ "item_16": {
+ "translate": [
+ { "y": 2.75 }
+ ]
+ }
+ }
+ },
+ "3_win": {
+ "slots": {
+ "item_3": {
+ "attachment": [
+ { "name": "item_3" }
+ ]
+ },
+ "item_9": {
+ "attachment": [
+ { "name": "item3_1" }
+ ]
+ },
+ "item_10": {
+ "attachment": [
+ { "name": "item3_2" }
+ ]
+ }
+ },
+ "bones": {
+ "item_3": {
+ "rotate": [
+ {
+ "curve": [ 0.033, 0.52, 0.067, 2.79 ]
+ },
+ {
+ "time": 0.1,
+ "value": 2.79,
+ "curve": [ 0.144, 2.79, 0.189, -1.85 ]
+ },
+ {
+ "time": 0.2333,
+ "value": -1.85,
+ "curve": [ 0.3, -1.85, 0.367, 0.96 ]
+ },
+ {
+ "time": 0.4333,
+ "value": 0.96,
+ "curve": [ 0.467, 0.96, 0.5, -0.87 ]
+ },
+ {
+ "time": 0.5333,
+ "value": -0.87,
+ "curve": [ 0.578, -0.87, 0.622, -0.7 ]
+ },
+ { "time": 0.6667 }
+ ],
+ "scale": [
+ {
+ "curve": [ 0.046, 1, 0.087, 0.925, 0.046, 1, 0.087, 0.925 ]
+ },
+ {
+ "time": 0.1333,
+ "x": 0.925,
+ "y": 0.925,
+ "curve": [ 0.189, 0.925, 0.244, 1.091, 0.189, 0.925, 0.244, 1.091 ]
+ },
+ {
+ "time": 0.3,
+ "x": 1.091,
+ "y": 1.091,
+ "curve": [ 0.331, 1.091, 0.43, 0.978, 0.331, 1.091, 0.43, 0.978 ]
+ },
+ {
+ "time": 0.4667,
+ "x": 0.978,
+ "y": 0.978,
+ "curve": [ 0.533, 0.978, 0.6, 1, 0.533, 0.978, 0.6, 1 ]
+ },
+ { "time": 0.6667 }
+ ]
+ },
+ "item_16": {
+ "translate": [
+ {
+ "y": 2.75,
+ "curve": [ 0.056, 0, 0.111, 0, 0.056, 2.75, 0.111, -1.89 ]
+ },
+ {
+ "time": 0.1667,
+ "y": -1.89,
+ "curve": [ 0.222, 0, 0.278, 0, 0.222, -1.89, 0.278, 10.48 ]
+ },
+ {
+ "time": 0.3333,
+ "y": 10.48,
+ "curve": [ 0.389, 0, 0.444, 0, 0.389, 10.48, 0.444, -4.53 ]
+ },
+ {
+ "time": 0.5,
+ "y": -4.53,
+ "curve": [ 0.556, 0, 0.611, 0, 0.556, -4.53, 0.611, 2.75 ]
+ },
+ { "time": 0.6667, "y": 2.75 }
+ ]
+ }
+ }
+ },
+ "3_win_idle": {
+ "slots": {
+ "item_3": {
+ "attachment": [
+ { "name": "item_3" }
+ ]
+ },
+ "item_9": {
+ "attachment": [
+ { "name": "item3_1" },
+ { "time": 1 }
+ ]
+ },
+ "item_10": {
+ "attachment": [
+ { "name": "item3_2" },
+ { "time": 1 }
+ ]
+ }
+ },
+ "bones": {
+ "item_12": {
+ "translate": [
+ {
+ "curve": [ 0.167, 0, 0.333, 0, 0.167, 0, 0.333, 10.51 ]
+ },
+ {
+ "time": 0.5,
+ "y": 10.51,
+ "curve": [ 0.667, 0, 0.833, 0, 0.667, 10.51, 0.833, 0 ]
+ },
+ { "time": 1 }
+ ]
+ },
+ "item_16": {
+ "translate": [
+ {
+ "y": 2.75,
+ "curve": [ 0.057, 0, 0.112, 0, 0.056, 2.09, 0.111, 1.76 ]
+ },
+ {
+ "time": 0.1667,
+ "y": 1.76,
+ "curve": [ 0.333, 0, 0.5, 0, 0.333, 1.76, 0.5, 7.63 ]
+ },
+ {
+ "time": 0.6667,
+ "y": 7.63,
+ "curve": [ 0.778, 0, 0.89, 0, 0.778, 7.63, 0.889, 4.05 ]
+ },
+ { "time": 1, "y": 2.75 }
+ ]
+ }
+ }
+ },
+ "4_idle": {
+ "slots": {
+ "item_41": {
+ "attachment": [
+ { "name": "item_41" }
+ ]
+ }
+ },
+ "bones": {
+ "item_4": {
+ "scale": [
+ {
+ "curve": [ 0.067, 0.987, 0.133, 0.95, 0.067, 0.987, 0.133, 0.95 ]
+ },
+ {
+ "time": 0.2,
+ "x": 0.95,
+ "y": 0.95,
+ "curve": [ 0.367, 0.95, 0.533, 1.05, 0.367, 0.95, 0.533, 1.05 ]
+ },
+ {
+ "time": 0.7,
+ "x": 1.05,
+ "y": 1.05,
+ "curve": [ 0.8, 1.05, 0.9, 1.02, 0.8, 1.05, 0.9, 1.02 ]
+ },
+ { "time": 1 }
+ ]
+ }
+ }
+ },
+ "4_payout": {
+ "slots": {
+ "item_41": {
+ "attachment": [
+ { "name": "item_41" }
+ ]
+ }
+ },
+ "bones": {
+ "item_4": {
+ "scale": [
+ {
+ "curve": [ 0.067, 0.987, 0.133, 0.95, 0.067, 0.987, 0.133, 0.95 ]
+ },
+ {
+ "time": 0.2,
+ "x": 0.95,
+ "y": 0.95,
+ "curve": [ 0.367, 0.95, 0.533, 1.05, 0.367, 0.95, 0.533, 1.05 ]
+ },
+ {
+ "time": 0.7,
+ "x": 1.05,
+ "y": 1.05,
+ "curve": [ 0.8, 1.05, 0.9, 1.02, 0.8, 1.05, 0.9, 1.02 ]
+ },
+ { "time": 1 }
+ ]
+ }
+ }
+ },
+ "4_spawn": {
+ "slots": {
+ "item_41": {
+ "attachment": [
+ { "name": "item_41" }
+ ]
+ }
+ },
+ "bones": {
+ "item_4": {
+ "scale": [
+ {
+ "curve": [ 0.033, 0.986, 0.067, 1.026, 0.033, 0.986, 0.067, 1.092 ]
+ },
+ {
+ "time": 0.1,
+ "x": 1.026,
+ "y": 1.092,
+ "curve": [ 0.122, 1.026, 0.211, 0.95, 0.122, 1.092, 0.211, 0.872 ]
+ },
+ {
+ "time": 0.2333,
+ "x": 0.95,
+ "y": 0.872,
+ "curve": [ 0.267, 0.95, 0.3, 1.036, 0.267, 0.872, 0.3, 1.036 ]
+ },
+ { "time": 0.3333 }
+ ]
+ }
+ }
+ },
+ "4_win": {
+ "slots": {
+ "item_41": {
+ "attachment": [
+ { "name": "item_41" }
+ ]
+ },
+ "item_42": {
+ "alpha": [
+ {
+ "value": 0,
+ "curve": [ 0.011, 0, 0.022, 1 ]
+ },
+ { "time": 0.0333, "value": 1 }
+ ],
+ "attachment": [
+ { "name": "item_42" }
+ ]
+ },
+ "item_43": {
+ "attachment": [
+ { "name": "item4_1" }
+ ]
+ },
+ "item_44": {
+ "attachment": [
+ { "name": "item4_2" }
+ ]
+ },
+ "item_45": {
+ "alpha": [
+ {
+ "value": 0,
+ "curve": [ 0.011, 0, 0.022, 1 ]
+ },
+ { "time": 0.0333, "value": 1 }
+ ],
+ "attachment": [
+ { "name": "item4_3" }
+ ]
+ },
+ "item_46": {
+ "alpha": [
+ {
+ "value": 0,
+ "curve": [ 0.011, 0, 0.022, 1 ]
+ },
+ { "time": 0.0333, "value": 1 }
+ ],
+ "attachment": [
+ { "name": "item4_4" }
+ ]
+ }
+ },
+ "bones": {
+ "item_4": {
+ "rotate": [
+ {
+ "curve": [ 0.056, 0, 0.111, 3 ]
+ },
+ {
+ "time": 0.1667,
+ "value": 3,
+ "curve": [ 0.222, 3, 0.278, -2.5 ]
+ },
+ {
+ "time": 0.3333,
+ "value": -2.5,
+ "curve": [ 0.389, -2.5, 0.444, 1.5 ]
+ },
+ {
+ "time": 0.5,
+ "value": 1.5,
+ "curve": [ 0.556, 1.5, 0.611, 0 ]
+ },
+ { "time": 0.6667 }
+ ],
+ "scale": [
+ {
+ "curve": [ 0.033, 0.971, 0.067, 0.85, 0.033, 0.971, 0.067, 0.85 ]
+ },
+ {
+ "time": 0.1,
+ "x": 0.85,
+ "y": 0.85,
+ "curve": [ 0.144, 0.85, 0.189, 1.1, 0.144, 0.85, 0.189, 1.1 ]
+ },
+ {
+ "time": 0.2333,
+ "x": 1.1,
+ "y": 1.1,
+ "curve": [ 0.289, 1.1, 0.344, 0.95, 0.289, 1.1, 0.344, 0.95 ]
+ },
+ {
+ "time": 0.4,
+ "x": 0.95,
+ "y": 0.95,
+ "curve": [ 0.444, 0.95, 0.489, 1.05, 0.444, 0.95, 0.489, 1.05 ]
+ },
+ {
+ "time": 0.5333,
+ "x": 1.05,
+ "y": 1.05,
+ "curve": [ 0.578, 1.05, 0.622, 1.038, 0.578, 1.05, 0.622, 1.038 ]
+ },
+ { "time": 0.6667 }
+ ]
+ },
+ "item_46": {
+ "rotate": [
+ {
+ "value": 31.37,
+ "curve": [ 0.056, 31.37, 0.125, 0 ]
+ },
+ {
+ "time": 0.1667,
+ "curve": [ 0.2, 0, 0.233, 3.08 ]
+ },
+ {
+ "time": 0.2667,
+ "value": 3.08,
+ "curve": [ 0.3, 3.08, 0.333, 0 ]
+ },
+ { "time": 0.3667 }
+ ]
+ }
+ }
+ },
+ "4_win_idle": {
+ "slots": {
+ "item_41": {
+ "attachment": [
+ { "name": "item_41" }
+ ]
+ },
+ "item_43": {
+ "attachment": [
+ { "name": "item4_1" }
+ ]
+ },
+ "item_44": {
+ "attachment": [
+ { "name": "item4_2" },
+ { "time": 1 }
+ ]
+ },
+ "item_45": {
+ "attachment": [
+ { "name": "item4_3" },
+ { "time": 1 }
+ ]
+ },
+ "item_46": {
+ "attachment": [
+ { "name": "item4_4" },
+ { "time": 1 }
+ ]
+ }
+ },
+ "bones": {
+ "item_4": {
+ "scale": [
+ {
+ "curve": [ 0.067, 0.987, 0.133, 0.95, 0.067, 0.987, 0.133, 0.95 ]
+ },
+ {
+ "time": 0.2,
+ "x": 0.95,
+ "y": 0.95,
+ "curve": [ 0.367, 0.95, 0.533, 1.05, 0.367, 0.95, 0.533, 1.05 ]
+ },
+ {
+ "time": 0.7,
+ "x": 1.05,
+ "y": 1.05,
+ "curve": [ 0.8, 1.05, 0.9, 1.02, 0.8, 1.05, 0.9, 1.02 ]
+ },
+ { "time": 1 }
+ ]
+ }
+ }
+ },
+ "5_idle": {
+ "slots": {
+ "jiuhua": {
+ "attachment": [
+ { "name": "pj2" }
+ ]
+ },
+ "pj1": {
+ "attachment": [
+ { "name": "pj1" }
+ ]
+ },
+ "pj3": {
+ "attachment": [
+ { "name": "pj3" }
+ ]
+ },
+ "pj4": {
+ "attachment": [
+ { "name": "pj1" }
+ ]
+ },
+ "pj5": {
+ "attachment": [
+ { "name": "pj1" }
+ ]
+ },
+ "pj6": {
+ "attachment": [
+ { "name": "pj1" }
+ ]
+ },
+ "pj7": {
+ "attachment": [
+ { "name": "pj1" }
+ ]
+ },
+ "pj8": {
+ "attachment": [
+ { "name": "pj1" }
+ ]
+ },
+ "pj9": {
+ "attachment": [
+ { "name": "pj1" }
+ ]
+ },
+ "pj10": {
+ "attachment": [
+ { "name": "pj1" }
+ ]
+ },
+ "pj11": {
+ "attachment": [
+ { "name": "pj1" }
+ ]
+ },
+ "pj12": {
+ "attachment": [
+ { "name": "pj1" }
+ ]
+ },
+ "pj13": {
+ "attachment": [
+ { "name": "pj1" }
+ ]
+ },
+ "pj14": {
+ "attachment": [
+ { "name": "pj1" }
+ ]
+ }
+ },
+ "bones": {
+ "item_5": {
+ "rotate": [
+ {
+ "curve": [ 0.078, 0.61, 0.156, 2.29 ]
+ },
+ {
+ "time": 0.2333,
+ "value": 2.29,
+ "curve": [ 0.378, 2.29, 0.522, -2.15 ]
+ },
+ {
+ "time": 0.6667,
+ "value": -2.15,
+ "curve": [ 0.778, -2.15, 0.889, -0.87 ]
+ },
+ { "time": 1 }
+ ],
+ "scale": [
+ {
+ "curve": [ 0.167, 1, 0.333, 1.1, 0.167, 1, 0.333, 1.1 ]
+ },
+ {
+ "time": 0.5,
+ "x": 1.1,
+ "y": 1.1,
+ "curve": [ 0.667, 1.1, 0.833, 1, 0.667, 1.1, 0.833, 1 ]
+ },
+ { "time": 1 }
+ ]
+ },
+ "item_35": {
+ "scale": [
+ {
+ "curve": [ 0.167, 1, 0.333, 0.488, 0.167, 1, 0.333, 0.488 ]
+ },
+ {
+ "time": 0.5,
+ "x": 0.488,
+ "y": 0.488,
+ "curve": [ 0.667, 0.488, 0.833, 1, 0.667, 0.488, 0.833, 1 ]
+ },
+ { "time": 1 }
+ ]
+ },
+ "item_33": {
+ "scale": [
+ {
+ "curve": [ 0.167, 1, 0.333, 0.488, 0.167, 1, 0.333, 0.488 ]
+ },
+ {
+ "time": 0.5,
+ "x": 0.488,
+ "y": 0.488,
+ "curve": [ 0.667, 0.488, 0.833, 1, 0.667, 0.488, 0.833, 1 ]
+ },
+ { "time": 1 }
+ ]
+ },
+ "item_34": {
+ "scale": [
+ {
+ "curve": [ 0.167, 1, 0.333, 0.488, 0.167, 1, 0.333, 0.488 ]
+ },
+ {
+ "time": 0.5,
+ "x": 0.488,
+ "y": 0.488,
+ "curve": [ 0.667, 0.488, 0.833, 1, 0.667, 0.488, 0.833, 1 ]
+ },
+ { "time": 1 }
+ ]
+ },
+ "item_31": {
+ "scale": [
+ {
+ "curve": [ 0.167, 1, 0.333, 0.488, 0.167, 1, 0.333, 0.488 ]
+ },
+ {
+ "time": 0.5,
+ "x": 0.488,
+ "y": 0.488,
+ "curve": [ 0.667, 0.488, 0.833, 1, 0.667, 0.488, 0.833, 1 ]
+ },
+ { "time": 1 }
+ ]
+ },
+ "item_29": {
+ "scale": [
+ {
+ "curve": [ 0.167, 1, 0.333, 0.488, 0.167, 1, 0.333, 0.488 ]
+ },
+ {
+ "time": 0.5,
+ "x": 0.488,
+ "y": 0.488,
+ "curve": [ 0.667, 0.488, 0.833, 1, 0.667, 0.488, 0.833, 1 ]
+ },
+ { "time": 1 }
+ ]
+ },
+ "item_27": {
+ "scale": [
+ {
+ "curve": [ 0.167, 1, 0.333, 0.488, 0.167, 1, 0.333, 0.488 ]
+ },
+ {
+ "time": 0.5,
+ "x": 0.488,
+ "y": 0.488,
+ "curve": [ 0.667, 0.488, 0.833, 1, 0.667, 0.488, 0.833, 1 ]
+ },
+ { "time": 1 }
+ ]
+ },
+ "item_28": {
+ "scale": [
+ {
+ "curve": [ 0.167, 1, 0.333, 0.488, 0.167, 1, 0.333, 0.488 ]
+ },
+ {
+ "time": 0.5,
+ "x": 0.488,
+ "y": 0.488,
+ "curve": [ 0.667, 0.488, 0.833, 1, 0.667, 0.488, 0.833, 1 ]
+ },
+ { "time": 1 }
+ ]
+ },
+ "item_26": {
+ "scale": [
+ {
+ "curve": [ 0.167, 1, 0.333, 0.488, 0.167, 1, 0.333, 0.488 ]
+ },
+ {
+ "time": 0.5,
+ "x": 0.488,
+ "y": 0.488,
+ "curve": [ 0.667, 0.488, 0.833, 1, 0.667, 0.488, 0.833, 1 ]
+ },
+ { "time": 1 }
+ ]
+ },
+ "item_21": {
+ "scale": [
+ {
+ "curve": [ 0.167, 1, 0.333, 0.488, 0.167, 1, 0.333, 0.488 ]
+ },
+ {
+ "time": 0.5,
+ "x": 0.488,
+ "y": 0.488,
+ "curve": [ 0.667, 0.488, 0.833, 1, 0.667, 0.488, 0.833, 1 ]
+ },
+ { "time": 1 }
+ ]
+ },
+ "item_23": {
+ "scale": [
+ {
+ "curve": [ 0.167, 1, 0.333, 0.488, 0.167, 1, 0.333, 0.488 ]
+ },
+ {
+ "time": 0.5,
+ "x": 0.488,
+ "y": 0.488,
+ "curve": [ 0.667, 0.488, 0.833, 1, 0.667, 0.488, 0.833, 1 ]
+ },
+ { "time": 1 }
+ ]
+ },
+ "item_24": {
+ "scale": [
+ {
+ "curve": [ 0.167, 1, 0.333, 0.488, 0.167, 1, 0.333, 0.488 ]
+ },
+ {
+ "time": 0.5,
+ "x": 0.488,
+ "y": 0.488,
+ "curve": [ 0.667, 0.488, 0.833, 1, 0.667, 0.488, 0.833, 1 ]
+ },
+ { "time": 1 }
+ ]
+ },
+ "item_22": {
+ "scale": [
+ {
+ "curve": [ 0.167, 1, 0.333, 0.488, 0.167, 1, 0.333, 0.488 ]
+ },
+ {
+ "time": 0.5,
+ "x": 0.488,
+ "y": 0.488,
+ "curve": [ 0.667, 0.488, 0.833, 1, 0.667, 0.488, 0.833, 1 ]
+ },
+ { "time": 1 }
+ ]
+ },
+ "item_19": {
+ "scale": [
+ {
+ "curve": [ 0.167, 1, 0.333, 1.056, 0.167, 1, 0.333, 1.056 ]
+ },
+ {
+ "time": 0.5,
+ "x": 1.056,
+ "y": 1.056,
+ "curve": [ 0.667, 1.056, 0.833, 1, 0.667, 1.056, 0.833, 1 ]
+ },
+ { "time": 1 }
+ ]
+ },
+ "item_20": {
+ "translate": [
+ {},
+ { "time": 0.5, "x": 4.76, "y": 0.06 },
+ { "time": 1 }
+ ]
+ },
+ "item_30": {
+ "translate": [
+ {},
+ { "time": 0.5, "x": 1.04, "y": -4.64 },
+ { "time": 1 }
+ ]
+ },
+ "item_32": {
+ "translate": [
+ {},
+ { "time": 0.5, "x": 0.62, "y": -4.72 },
+ { "time": 1 }
+ ]
+ },
+ "item_25": {
+ "translate": [
+ {},
+ { "time": 0.5, "y": 3.55 },
+ { "time": 1 }
+ ]
+ }
+ }
+ },
+ "5_payout": {
+ "slots": {
+ "jiuhua": {
+ "attachment": [
+ { "name": "pj2" }
+ ]
+ },
+ "pj1": {
+ "attachment": [
+ { "name": "pj1" }
+ ]
+ },
+ "pj3": {
+ "attachment": [
+ { "name": "pj3" }
+ ]
+ },
+ "pj4": {
+ "attachment": [
+ { "name": "pj1" }
+ ]
+ },
+ "pj5": {
+ "attachment": [
+ { "name": "pj1" }
+ ]
+ },
+ "pj6": {
+ "attachment": [
+ { "name": "pj1" }
+ ]
+ },
+ "pj7": {
+ "attachment": [
+ { "name": "pj1" }
+ ]
+ },
+ "pj8": {
+ "attachment": [
+ { "name": "pj1" }
+ ]
+ },
+ "pj9": {
+ "attachment": [
+ { "name": "pj1" }
+ ]
+ },
+ "pj10": {
+ "attachment": [
+ { "name": "pj1" }
+ ]
+ },
+ "pj11": {
+ "attachment": [
+ { "name": "pj1" }
+ ]
+ },
+ "pj12": {
+ "attachment": [
+ { "name": "pj1" }
+ ]
+ },
+ "pj13": {
+ "attachment": [
+ { "name": "pj1" }
+ ]
+ },
+ "pj14": {
+ "attachment": [
+ { "name": "pj1" }
+ ]
+ }
+ },
+ "bones": {
+ "item_5": {
+ "rotate": [
+ {
+ "curve": [ 0.078, 0.61, 0.156, 2.29 ]
+ },
+ {
+ "time": 0.2333,
+ "value": 2.29,
+ "curve": [ 0.378, 2.29, 0.522, -2.15 ]
+ },
+ {
+ "time": 0.6667,
+ "value": -2.15,
+ "curve": [ 0.778, -2.15, 0.889, -0.87 ]
+ },
+ { "time": 1 }
+ ],
+ "scale": [
+ {
+ "curve": [ 0.167, 1, 0.333, 1.1, 0.167, 1, 0.333, 1.1 ]
+ },
+ {
+ "time": 0.5,
+ "x": 1.1,
+ "y": 1.1,
+ "curve": [ 0.667, 1.1, 0.833, 1, 0.667, 1.1, 0.833, 1 ]
+ },
+ { "time": 1 }
+ ]
+ },
+ "item_30": {
+ "translate": [
+ {},
+ { "time": 0.5, "x": 1.04, "y": -4.64 },
+ { "time": 1 }
+ ]
+ },
+ "item_20": {
+ "translate": [
+ {},
+ { "time": 0.5, "x": 4.76, "y": 0.06 },
+ { "time": 1 }
+ ],
+ "scale": [
+ {},
+ { "time": 0.5, "x": 0.839, "y": 0.839 },
+ { "time": 1 }
+ ]
+ },
+ "item_19": {
+ "scale": [
+ {
+ "curve": [ 0.167, 1, 0.333, 1.056, 0.167, 1, 0.333, 1.056 ]
+ },
+ {
+ "time": 0.5,
+ "x": 1.056,
+ "y": 1.056,
+ "curve": [ 0.667, 1.056, 0.833, 1, 0.667, 1.056, 0.833, 1 ]
+ },
+ { "time": 1 }
+ ]
+ },
+ "item_25": {
+ "translate": [
+ {},
+ { "time": 0.5, "y": 3.55 },
+ { "time": 1 }
+ ]
+ },
+ "item_32": {
+ "rotate": [
+ {},
+ { "time": 0.5, "value": -6.55 },
+ { "time": 1 }
+ ],
+ "translate": [
+ {},
+ { "time": 0.5, "x": 0.62, "y": -4.72 },
+ { "time": 1 }
+ ]
+ },
+ "item_23": {
+ "scale": [
+ {
+ "curve": [ 0.167, 1, 0.333, 0.488, 0.167, 1, 0.333, 0.488 ]
+ },
+ {
+ "time": 0.5,
+ "x": 0.488,
+ "y": 0.488,
+ "curve": [ 0.667, 0.488, 0.833, 1, 0.667, 0.488, 0.833, 1 ]
+ },
+ { "time": 1 }
+ ]
+ },
+ "item_21": {
+ "scale": [
+ {
+ "curve": [ 0.167, 1, 0.333, 0.488, 0.167, 1, 0.333, 0.488 ]
+ },
+ {
+ "time": 0.5,
+ "x": 0.488,
+ "y": 0.488,
+ "curve": [ 0.667, 0.488, 0.833, 1, 0.667, 0.488, 0.833, 1 ]
+ },
+ { "time": 1 }
+ ]
+ },
+ "item_22": {
+ "scale": [
+ {
+ "curve": [ 0.167, 1, 0.333, 0.488, 0.167, 1, 0.333, 0.488 ]
+ },
+ {
+ "time": 0.5,
+ "x": 0.488,
+ "y": 0.488,
+ "curve": [ 0.667, 0.488, 0.833, 1, 0.667, 0.488, 0.833, 1 ]
+ },
+ { "time": 1 }
+ ]
+ },
+ "item_26": {
+ "scale": [
+ {
+ "curve": [ 0.167, 1, 0.333, 0.488, 0.167, 1, 0.333, 0.488 ]
+ },
+ {
+ "time": 0.5,
+ "x": 0.488,
+ "y": 0.488,
+ "curve": [ 0.667, 0.488, 0.833, 1, 0.667, 0.488, 0.833, 1 ]
+ },
+ { "time": 1 }
+ ]
+ },
+ "item_24": {
+ "scale": [
+ {
+ "curve": [ 0.167, 1, 0.333, 0.488, 0.167, 1, 0.333, 0.488 ]
+ },
+ {
+ "time": 0.5,
+ "x": 0.488,
+ "y": 0.488,
+ "curve": [ 0.667, 0.488, 0.833, 1, 0.667, 0.488, 0.833, 1 ]
+ },
+ { "time": 1 }
+ ]
+ },
+ "item_28": {
+ "scale": [
+ {
+ "curve": [ 0.167, 1, 0.333, 0.488, 0.167, 1, 0.333, 0.488 ]
+ },
+ {
+ "time": 0.5,
+ "x": 0.488,
+ "y": 0.488,
+ "curve": [ 0.667, 0.488, 0.833, 1, 0.667, 0.488, 0.833, 1 ]
+ },
+ { "time": 1 }
+ ]
+ },
+ "item_27": {
+ "scale": [
+ {
+ "curve": [ 0.167, 1, 0.333, 0.488, 0.167, 1, 0.333, 0.488 ]
+ },
+ {
+ "time": 0.5,
+ "x": 0.488,
+ "y": 0.488,
+ "curve": [ 0.667, 0.488, 0.833, 1, 0.667, 0.488, 0.833, 1 ]
+ },
+ { "time": 1 }
+ ]
+ },
+ "item_29": {
+ "scale": [
+ {
+ "curve": [ 0.167, 1, 0.333, 0.488, 0.167, 1, 0.333, 0.488 ]
+ },
+ {
+ "time": 0.5,
+ "x": 0.488,
+ "y": 0.488,
+ "curve": [ 0.667, 0.488, 0.833, 1, 0.667, 0.488, 0.833, 1 ]
+ },
+ { "time": 1 }
+ ]
+ },
+ "item_31": {
+ "scale": [
+ {
+ "curve": [ 0.167, 1, 0.333, 0.488, 0.167, 1, 0.333, 0.488 ]
+ },
+ {
+ "time": 0.5,
+ "x": 0.488,
+ "y": 0.488,
+ "curve": [ 0.667, 0.488, 0.833, 1, 0.667, 0.488, 0.833, 1 ]
+ },
+ { "time": 1 }
+ ]
+ },
+ "item_34": {
+ "scale": [
+ {
+ "curve": [ 0.167, 1, 0.333, 0.488, 0.167, 1, 0.333, 0.488 ]
+ },
+ {
+ "time": 0.5,
+ "x": 0.488,
+ "y": 0.488,
+ "curve": [ 0.667, 0.488, 0.833, 1, 0.667, 0.488, 0.833, 1 ]
+ },
+ { "time": 1 }
+ ]
+ },
+ "item_35": {
+ "scale": [
+ {
+ "curve": [ 0.167, 1, 0.333, 0.488, 0.167, 1, 0.333, 0.488 ]
+ },
+ {
+ "time": 0.5,
+ "x": 0.488,
+ "y": 0.488,
+ "curve": [ 0.667, 0.488, 0.833, 1, 0.667, 0.488, 0.833, 1 ]
+ },
+ { "time": 1 }
+ ]
+ },
+ "item_33": {
+ "scale": [
+ {
+ "curve": [ 0.167, 1, 0.333, 0.488, 0.167, 1, 0.333, 0.488 ]
+ },
+ {
+ "time": 0.5,
+ "x": 0.488,
+ "y": 0.488,
+ "curve": [ 0.667, 0.488, 0.833, 1, 0.667, 0.488, 0.833, 1 ]
+ },
+ { "time": 1 }
+ ]
+ }
+ }
+ },
+ "5_spawn": {
+ "slots": {
+ "jiuhua": {
+ "attachment": [
+ { "name": "pj2" }
+ ]
+ },
+ "pj1": {
+ "attachment": [
+ { "name": "pj1" }
+ ]
+ },
+ "pj3": {
+ "attachment": [
+ { "name": "pj3" }
+ ]
+ },
+ "pj4": {
+ "attachment": [
+ { "name": "pj1" }
+ ]
+ },
+ "pj5": {
+ "attachment": [
+ { "name": "pj1" }
+ ]
+ },
+ "pj6": {
+ "attachment": [
+ { "name": "pj1" }
+ ]
+ },
+ "pj7": {
+ "attachment": [
+ { "name": "pj1" }
+ ]
+ },
+ "pj8": {
+ "attachment": [
+ { "name": "pj1" }
+ ]
+ },
+ "pj9": {
+ "attachment": [
+ { "name": "pj1" }
+ ]
+ },
+ "pj10": {
+ "attachment": [
+ { "name": "pj1" }
+ ]
+ },
+ "pj11": {
+ "attachment": [
+ { "name": "pj1" }
+ ]
+ },
+ "pj12": {
+ "attachment": [
+ { "name": "pj1" }
+ ]
+ },
+ "pj13": {
+ "attachment": [
+ { "name": "pj1" }
+ ]
+ },
+ "pj14": {
+ "attachment": [
+ { "name": "pj1" }
+ ]
+ }
+ },
+ "bones": {
+ "item_5": {
+ "rotate": [
+ {
+ "curve": [ 0.078, 0.61, 0.041, 2.29 ]
+ },
+ {
+ "time": 0.0667,
+ "value": 2.29,
+ "curve": [ 0.115, 2.29, 0.185, -2.15 ]
+ },
+ {
+ "time": 0.2333,
+ "value": -2.15,
+ "curve": [ 0.27, -2.15, 0.296, -0.87 ]
+ },
+ { "time": 0.3333 }
+ ],
+ "scale": [
+ {
+ "curve": [ 0.167, 1, 0.111, 1.1, 0.167, 1, 0.111, 1.1 ]
+ },
+ {
+ "time": 0.1667,
+ "x": 1.1,
+ "y": 1.1,
+ "curve": [ 0.222, 1.1, 0.278, 1, 0.222, 1.1, 0.278, 1 ]
+ },
+ { "time": 0.3333 }
+ ]
+ },
+ "item_35": {
+ "scale": [
+ {},
+ { "time": 0.1667, "x": 0.689, "y": 0.689 },
+ { "time": 0.3333 }
+ ]
+ },
+ "item_33": {
+ "scale": [
+ {},
+ { "time": 0.1667, "x": 0.689, "y": 0.689 },
+ { "time": 0.3333 }
+ ]
+ },
+ "item_34": {
+ "scale": [
+ {},
+ { "time": 0.1667, "x": 0.689, "y": 0.689 },
+ { "time": 0.3333 }
+ ]
+ },
+ "item_31": {
+ "scale": [
+ {},
+ { "time": 0.1667, "x": 0.689, "y": 0.689 },
+ { "time": 0.3333 }
+ ]
+ },
+ "item_29": {
+ "scale": [
+ {},
+ { "time": 0.1667, "x": 0.689, "y": 0.689 },
+ { "time": 0.3333 }
+ ]
+ },
+ "item_27": {
+ "scale": [
+ {},
+ { "time": 0.1667, "x": 0.689, "y": 0.689 },
+ { "time": 0.3333 }
+ ]
+ },
+ "item_28": {
+ "scale": [
+ {},
+ { "time": 0.1667, "x": 0.689, "y": 0.689 },
+ { "time": 0.3333 }
+ ]
+ },
+ "item_26": {
+ "scale": [
+ {},
+ { "time": 0.1667, "x": 0.689, "y": 0.689 },
+ { "time": 0.3333 }
+ ]
+ },
+ "item_21": {
+ "scale": [
+ {},
+ { "time": 0.1667, "x": 0.689, "y": 0.689 },
+ { "time": 0.3333 }
+ ]
+ },
+ "item_23": {
+ "scale": [
+ {},
+ { "time": 0.1667, "x": 0.689, "y": 0.689 },
+ { "time": 0.3333 }
+ ]
+ },
+ "item_24": {
+ "scale": [
+ {},
+ { "time": 0.1667, "x": 0.689, "y": 0.689 },
+ { "time": 0.3333 }
+ ]
+ },
+ "item_22": {
+ "scale": [
+ {},
+ { "time": 0.1667, "x": 0.689, "y": 0.689 },
+ { "time": 0.3333 }
+ ]
+ },
+ "item_30": {
+ "translate": [
+ {},
+ { "time": 0.1, "x": 7.81, "y": -2.93 },
+ { "time": 0.2, "x": -12.16, "y": -5.88 },
+ { "time": 0.3333 }
+ ]
+ },
+ "item_20": {
+ "rotate": [
+ {},
+ { "time": 0.1667, "value": 12.47 },
+ { "time": 0.3333 }
+ ],
+ "translate": [
+ {},
+ { "time": 0.1667, "x": 7.48, "y": 8.28 },
+ { "time": 0.3333 }
+ ],
+ "scale": [
+ {},
+ { "time": 0.1667, "x": 1.2, "y": 1.2 },
+ { "time": 0.3333 }
+ ]
+ },
+ "item_19": {
+ "scale": [
+ {
+ "curve": [ 0.167, 1, 0.089, 1.056, 0.167, 1, 0.089, 1.056 ]
+ },
+ {
+ "time": 0.1333,
+ "x": 1.056,
+ "y": 1.056,
+ "curve": [ 0.167, 1.056, 0.2, 0.953, 0.167, 1.056, 0.2, 0.864 ]
+ },
+ {
+ "time": 0.2333,
+ "x": 0.939,
+ "y": 0.85,
+ "curve": [ 0.267, 0.925, 0.3, 1, 0.267, 0.836, 0.3, 1 ]
+ },
+ { "time": 0.3333 }
+ ]
+ },
+ "item_25": {
+ "rotate": [
+ {},
+ { "time": 0.2, "value": 31.77 },
+ { "time": 0.3333 }
+ ],
+ "translate": [
+ {},
+ { "time": 0.1667, "y": 3.55 },
+ { "time": 0.2, "x": -16.35, "y": 2.84 },
+ { "time": 0.3333 }
+ ]
+ },
+ "item_32": {
+ "rotate": [
+ {},
+ { "time": 0.1667, "value": 34.96 },
+ { "time": 0.3333 }
+ ],
+ "translate": [
+ {},
+ { "time": 0.1667, "x": 0.62, "y": -4.72 },
+ { "time": 0.3333 }
+ ]
+ }
+ }
+ },
+ "5_win": {
+ "slots": {
+ "jiuhua": {
+ "attachment": [
+ { "name": "pj2" }
+ ]
+ },
+ "jiuhua2": {
+ "attachment": [
+ { "name": "item5_3" }
+ ]
+ },
+ "jiuhua3": {
+ "attachment": [
+ { "name": "item5_4" }
+ ]
+ },
+ "pj1": {
+ "attachment": [
+ { "name": "pj1" }
+ ]
+ },
+ "pj2": {
+ "attachment": [
+ { "name": "item5_1" }
+ ]
+ },
+ "pj3": {
+ "attachment": [
+ { "name": "pj3" }
+ ]
+ },
+ "pj4": {
+ "attachment": [
+ { "name": "pj1" }
+ ]
+ },
+ "pj5": {
+ "attachment": [
+ { "name": "pj1" }
+ ]
+ },
+ "pj6": {
+ "attachment": [
+ { "name": "pj1" }
+ ]
+ },
+ "pj7": {
+ "attachment": [
+ { "name": "pj1" }
+ ]
+ },
+ "pj8": {
+ "attachment": [
+ { "name": "pj1" }
+ ]
+ },
+ "pj9": {
+ "attachment": [
+ { "name": "pj1" }
+ ]
+ },
+ "pj10": {
+ "attachment": [
+ { "name": "pj1" }
+ ]
+ },
+ "pj11": {
+ "attachment": [
+ { "name": "pj1" }
+ ]
+ },
+ "pj12": {
+ "attachment": [
+ { "name": "pj1" }
+ ]
+ },
+ "pj13": {
+ "attachment": [
+ { "name": "pj1" }
+ ]
+ },
+ "pj14": {
+ "attachment": [
+ { "name": "pj1" }
+ ]
+ },
+ "pj15": {
+ "attachment": [
+ { "name": "item5_5" }
+ ]
+ },
+ "pj16": {
+ "attachment": [
+ { "name": "item5_6" }
+ ]
+ },
+ "pj17": {
+ "attachment": [
+ { "name": "item5_1" }
+ ]
+ },
+ "pj18": {
+ "attachment": [
+ { "name": "item5_2" }
+ ]
+ },
+ "pj19": {
+ "attachment": [
+ { "name": "item5_1" }
+ ]
+ },
+ "pj20": {
+ "attachment": [
+ { "name": "item5_2" }
+ ]
+ },
+ "pj21": {
+ "attachment": [
+ { "name": "item5_2" }
+ ]
+ },
+ "pj22": {
+ "attachment": [
+ { "name": "item5_1" }
+ ]
+ },
+ "pj23": {
+ "attachment": [
+ { "name": "item5_2" }
+ ]
+ },
+ "pj24": {
+ "attachment": [
+ { "name": "item5_1" }
+ ]
+ },
+ "pj25": {
+ "attachment": [
+ { "name": "item5_2" }
+ ]
+ },
+ "pj26": {
+ "attachment": [
+ { "name": "item5_1" }
+ ]
+ },
+ "pj27": {
+ "attachment": [
+ { "name": "item5_2" }
+ ]
+ },
+ "pj28": {
+ "attachment": [
+ { "name": "item5_1" }
+ ]
+ },
+ "pj29": {
+ "attachment": [
+ { "name": "item5_2" }
+ ]
+ },
+ "pj30": {
+ "attachment": [
+ { "name": "item5_1" }
+ ]
+ },
+ "pj31": {
+ "attachment": [
+ { "name": "item5_2" }
+ ]
+ },
+ "pj32": {
+ "attachment": [
+ { "name": "item5_1" }
+ ]
+ },
+ "pj33": {
+ "attachment": [
+ { "name": "item5_2" }
+ ]
+ },
+ "pj34": {
+ "attachment": [
+ { "name": "item5_1" }
+ ]
+ },
+ "pj35": {
+ "attachment": [
+ { "name": "item5_2" }
+ ]
+ },
+ "pj36": {
+ "attachment": [
+ { "name": "item5_1" }
+ ]
+ },
+ "pj37": {
+ "attachment": [
+ { "name": "item5_2" }
+ ]
+ },
+ "pj38": {
+ "attachment": [
+ { "name": "item5_1" }
+ ]
+ },
+ "pj39": {
+ "attachment": [
+ { "name": "item5_2" }
+ ]
+ }
+ },
+ "bones": {
+ "item_5": {
+ "rotate": [
+ {
+ "curve": [ 0.053, 0.61, 0.114, 2.29 ]
+ },
+ {
+ "time": 0.1667,
+ "value": 2.29,
+ "curve": [ 0.265, 2.29, 0.369, -2.15 ]
+ },
+ {
+ "time": 0.4667,
+ "value": -2.15,
+ "curve": [ 0.542, -2.15, 0.591, -0.87 ]
+ },
+ { "time": 0.6667 }
+ ],
+ "translate": [
+ {},
+ { "time": 0.1, "y": 10.31 },
+ { "time": 0.2333, "y": -3.28 },
+ { "time": 0.3333 }
+ ],
+ "scale": [
+ {
+ "curve": [ 0.113, 1, 0.22, 1.1, 0.113, 1, 0.22, 1.1 ]
+ },
+ {
+ "time": 0.3333,
+ "x": 1.1,
+ "y": 1.1,
+ "curve": [ 0.446, 1.1, 0.554, 1, 0.446, 1.1, 0.554, 1 ]
+ },
+ { "time": 0.6667 }
+ ]
+ },
+ "item_35": {
+ "scale": [
+ { "time": 0.1333 },
+ { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
+ { "time": 0.4333, "x": 0, "y": 0 },
+ { "time": 0.5333 }
+ ]
+ },
+ "item_33": {
+ "scale": [
+ { "time": 0.1333 },
+ { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
+ { "time": 0.5, "x": 0, "y": 0 },
+ { "time": 0.6 }
+ ]
+ },
+ "item_34": {
+ "scale": [
+ { "time": 0.1333 },
+ { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
+ { "time": 0.4667, "x": 0, "y": 0 },
+ { "time": 0.5667 }
+ ]
+ },
+ "item_31": {
+ "scale": [
+ { "time": 0.1333 },
+ { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
+ { "time": 0.4667, "x": 0, "y": 0 },
+ { "time": 0.5667 }
+ ]
+ },
+ "item_29": {
+ "scale": [
+ { "time": 0.1333 },
+ { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
+ { "time": 0.5667, "x": 0, "y": 0 },
+ { "time": 0.6667 }
+ ]
+ },
+ "item_27": {
+ "scale": [
+ { "time": 0.1333 },
+ { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
+ { "time": 0.5667, "x": 0, "y": 0 },
+ { "time": 0.6667 }
+ ]
+ },
+ "item_28": {
+ "scale": [
+ { "time": 0.1333 },
+ { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
+ { "time": 0.4, "x": 0, "y": 0 },
+ { "time": 0.5 }
+ ]
+ },
+ "item_26": {
+ "scale": [
+ { "time": 0.1333 },
+ { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
+ { "time": 0.4, "x": 0, "y": 0 },
+ { "time": 0.5 }
+ ]
+ },
+ "item_21": {
+ "scale": [
+ { "time": 0.1333 },
+ { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
+ { "time": 0.5, "x": 0, "y": 0 },
+ { "time": 0.6 }
+ ]
+ },
+ "item_23": {
+ "scale": [
+ { "time": 0.1333 },
+ { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
+ { "time": 0.5667, "x": 0, "y": 0 },
+ { "time": 0.6667 }
+ ]
+ },
+ "item_24": {
+ "scale": [
+ { "time": 0.1333 },
+ { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
+ { "time": 0.4667, "x": 0, "y": 0 },
+ { "time": 0.5667 }
+ ]
+ },
+ "item_22": {
+ "scale": [
+ { "time": 0.1333 },
+ { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
+ { "time": 0.5, "x": 0, "y": 0 },
+ { "time": 0.6 }
+ ]
+ },
+ "item_18": {
+ "rotate": [
+ {
+ "curve": [ 0.022, 0, 0.044, 7.82 ]
+ },
+ {
+ "time": 0.0667,
+ "value": 7.82,
+ "curve": [ 0.089, 7.82, 0.111, -8.93 ]
+ },
+ {
+ "time": 0.1333,
+ "value": -8.93,
+ "curve": [ 0.156, -8.93, 0.178, 7.82 ]
+ },
+ {
+ "time": 0.2,
+ "value": 7.82,
+ "curve": [ 0.222, 7.82, 0.244, -8.93 ]
+ },
+ {
+ "time": 0.2667,
+ "value": -8.93,
+ "curve": [ 0.289, -8.93, 0.311, 0 ]
+ },
+ { "time": 0.3333 }
+ ],
+ "translate": [
+ {
+ "curve": [ 0.022, 0, 0.044, 0, 0.022, 0, 0.044, 7.18 ]
+ },
+ {
+ "time": 0.0667,
+ "y": 7.18,
+ "curve": [ 0.089, 0, 0.111, 0, 0.089, 7.18, 0.111, -8.62 ]
+ },
+ {
+ "time": 0.1333,
+ "y": -8.62,
+ "curve": [ 0.156, 0, 0.178, 0, 0.156, -8.62, 0.178, 1.94 ]
+ },
+ {
+ "time": 0.2,
+ "y": 1.94,
+ "curve": [ 0.222, 0, 0.244, 0, 0.222, 1.94, 0.244, -5.37 ]
+ },
+ {
+ "time": 0.2667,
+ "y": -5.37,
+ "curve": [ 0.289, 0, 0.311, 0, 0.289, -5.37, 0.311, 0 ]
+ },
+ {
+ "time": 0.3333,
+ "curve": [ 0.444, 0, 0.556, 0, 0.444, 0, 0.556, 0 ]
+ },
+ { "time": 0.6667 }
+ ]
+ },
+ "item_30": {
+ "rotate": [
+ {},
+ { "time": 0.1, "value": -33.7 },
+ { "time": 0.3333, "value": 15.29 },
+ { "time": 0.4333, "value": 2.85 },
+ { "time": 0.5333, "value": -2.32 },
+ { "time": 0.6667 }
+ ],
+ "translate": [
+ {},
+ { "time": 0.1, "x": 7.81, "y": -2.93 },
+ { "time": 0.2, "x": -12.16, "y": -5.88 },
+ { "time": 0.3333, "x": -3.32, "y": 12.96 },
+ { "time": 0.4333, "x": 7.81, "y": -2.93 },
+ { "time": 0.5333, "x": -5.96, "y": -7.9 },
+ { "time": 0.6667 }
+ ]
+ },
+ "item_32": {
+ "rotate": [
+ {},
+ { "time": 0.1667, "value": 34.96 },
+ { "time": 0.3333 },
+ { "time": 0.5, "value": -5.43 },
+ { "time": 0.6667 }
+ ],
+ "translate": [
+ {},
+ { "time": 0.1667, "x": 0.62, "y": -4.72 },
+ { "time": 0.3333 },
+ { "time": 0.5, "x": 0.62, "y": -4.72 },
+ { "time": 0.6667 }
+ ]
+ },
+ "item_19": {
+ "scale": [
+ {
+ "curve": [ 0.076, 1, 0.145, 0, 0.076, 1, 0.145, 0 ]
+ },
+ {
+ "time": 0.2,
+ "x": 0,
+ "y": 0,
+ "curve": [ 0.268, 0, 0.422, 1.228, 0.268, 0, 0.422, 0.729 ]
+ },
+ {
+ "time": 0.4667,
+ "x": 1.228,
+ "y": 0.729,
+ "curve": [ 0.488, 1.228, 0.655, 1, 0.488, 0.729, 0.655, 1 ]
+ },
+ { "time": 0.6667 }
+ ]
+ },
+ "item_20": {
+ "rotate": [
+ {},
+ { "time": 0.1667, "value": 12.47 },
+ { "time": 0.3333 },
+ { "time": 0.5, "value": 10.45 },
+ { "time": 0.6667 }
+ ],
+ "translate": [
+ {},
+ { "time": 0.1667, "x": 7.48, "y": 8.28 },
+ { "time": 0.3333 },
+ { "time": 0.5, "x": 6.53, "y": 0.14 },
+ { "time": 0.6667 }
+ ],
+ "scale": [
+ {},
+ { "time": 0.1667, "x": 1.2, "y": 1.2 },
+ { "time": 0.3333 },
+ { "time": 0.5, "x": 1.2, "y": 1.2 },
+ { "time": 0.6667 }
+ ]
+ },
+ "item_25": {
+ "rotate": [
+ {},
+ { "time": 0.2, "value": 31.77 },
+ { "time": 0.3333, "value": -54.39 },
+ { "time": 0.5333, "value": 31.77 },
+ { "time": 0.6667 }
+ ],
+ "translate": [
+ {},
+ { "time": 0.1667, "y": 3.55 },
+ { "time": 0.2, "x": -16.35, "y": 2.84 },
+ { "time": 0.3333, "x": 11.54, "y": -17.41 },
+ { "time": 0.5, "y": 3.55 },
+ { "time": 0.5333, "x": -16.35, "y": 2.84 },
+ { "time": 0.6667 }
+ ]
+ }
+ }
+ },
+ "5_win_idle": {
+ "slots": {
+ "jiuhua": {
+ "attachment": [
+ { "name": "pj2" }
+ ]
+ },
+ "jiuhua2": {
+ "attachment": [
+ { "name": "item5_3" }
+ ]
+ },
+ "jiuhua3": {
+ "attachment": [
+ { "name": "item5_4" }
+ ]
+ },
+ "pj1": {
+ "attachment": [
+ { "name": "pj1" }
+ ]
+ },
+ "pj2": {
+ "attachment": [
+ { "name": "item5_1" },
+ { "time": 1 }
+ ]
+ },
+ "pj3": {
+ "attachment": [
+ { "name": "pj3" }
+ ]
+ },
+ "pj4": {
+ "attachment": [
+ { "name": "pj1" }
+ ]
+ },
+ "pj5": {
+ "attachment": [
+ { "name": "pj1" }
+ ]
+ },
+ "pj6": {
+ "attachment": [
+ { "name": "pj1" }
+ ]
+ },
+ "pj7": {
+ "attachment": [
+ { "name": "pj1" }
+ ]
+ },
+ "pj8": {
+ "attachment": [
+ { "name": "pj1" }
+ ]
+ },
+ "pj9": {
+ "attachment": [
+ { "name": "pj1" }
+ ]
+ },
+ "pj10": {
+ "attachment": [
+ { "name": "pj1" }
+ ]
+ },
+ "pj11": {
+ "attachment": [
+ { "name": "pj1" }
+ ]
+ },
+ "pj12": {
+ "attachment": [
+ { "name": "pj1" }
+ ]
+ },
+ "pj13": {
+ "attachment": [
+ { "name": "pj1" }
+ ]
+ },
+ "pj14": {
+ "attachment": [
+ { "name": "pj1" }
+ ]
+ },
+ "pj15": {
+ "attachment": [
+ { "name": "item5_5" }
+ ]
+ },
+ "pj16": {
+ "attachment": [
+ { "name": "item5_6" }
+ ]
+ },
+ "pj17": {
+ "attachment": [
+ { "name": "item5_1" },
+ { "time": 1 }
+ ]
+ },
+ "pj18": {
+ "attachment": [
+ { "name": "item5_2" },
+ { "time": 1 }
+ ]
+ },
+ "pj19": {
+ "attachment": [
+ { "name": "item5_1" },
+ { "time": 1 }
+ ]
+ },
+ "pj20": {
+ "attachment": [
+ { "name": "item5_2" },
+ { "time": 1 }
+ ]
+ },
+ "pj21": {
+ "attachment": [
+ { "name": "item5_2" },
+ { "time": 1 }
+ ]
+ },
+ "pj22": {
+ "attachment": [
+ { "name": "item5_1" },
+ { "time": 1 }
+ ]
+ },
+ "pj23": {
+ "attachment": [
+ { "name": "item5_2" },
+ { "time": 1 }
+ ]
+ },
+ "pj24": {
+ "attachment": [
+ { "name": "item5_1" },
+ { "time": 1 }
+ ]
+ },
+ "pj25": {
+ "attachment": [
+ { "name": "item5_2" },
+ { "time": 1 }
+ ]
+ },
+ "pj26": {
+ "attachment": [
+ { "name": "item5_1" },
+ { "time": 1 }
+ ]
+ },
+ "pj27": {
+ "attachment": [
+ { "name": "item5_2" },
+ { "time": 1 }
+ ]
+ },
+ "pj28": {
+ "attachment": [
+ { "name": "item5_1" },
+ { "time": 1 }
+ ]
+ },
+ "pj29": {
+ "attachment": [
+ { "name": "item5_2" },
+ { "time": 1 }
+ ]
+ },
+ "pj30": {
+ "attachment": [
+ { "name": "item5_1" },
+ { "time": 1 }
+ ]
+ },
+ "pj31": {
+ "attachment": [
+ { "name": "item5_2" },
+ { "time": 1 }
+ ]
+ },
+ "pj32": {
+ "attachment": [
+ { "name": "item5_1" },
+ { "time": 1 }
+ ]
+ },
+ "pj33": {
+ "attachment": [
+ { "name": "item5_2" },
+ { "time": 1 }
+ ]
+ },
+ "pj34": {
+ "attachment": [
+ { "name": "item5_1" },
+ { "time": 1 }
+ ]
+ },
+ "pj35": {
+ "attachment": [
+ { "name": "item5_2" },
+ { "time": 1 }
+ ]
+ },
+ "pj36": {
+ "attachment": [
+ { "name": "item5_1" },
+ { "time": 1 }
+ ]
+ },
+ "pj37": {
+ "attachment": [
+ { "name": "item5_2" },
+ { "time": 1 }
+ ]
+ },
+ "pj38": {
+ "attachment": [
+ { "name": "item5_1" },
+ { "time": 1 }
+ ]
+ },
+ "pj39": {
+ "attachment": [
+ { "name": "item5_2" },
+ { "time": 1 }
+ ]
+ }
+ },
+ "bones": {
+ "item_5": {
+ "rotate": [
+ {
+ "curve": [ 0.078, 0.61, 0.156, 2.29 ]
+ },
+ {
+ "time": 0.2333,
+ "value": 2.29,
+ "curve": [ 0.378, 2.29, 0.522, -2.15 ]
+ },
+ {
+ "time": 0.6667,
+ "value": -2.15,
+ "curve": [ 0.778, -2.15, 0.889, -0.87 ]
+ },
+ { "time": 1 }
+ ],
+ "scale": [
+ {
+ "curve": [ 0.167, 1, 0.333, 1.1, 0.167, 1, 0.333, 1.1 ]
+ },
+ {
+ "time": 0.5,
+ "x": 1.1,
+ "y": 1.1,
+ "curve": [ 0.667, 1.1, 0.833, 1, 0.667, 1.1, 0.833, 1 ]
+ },
+ { "time": 1 }
+ ]
+ },
+ "item_35": {
+ "scale": [
+ {
+ "curve": [ 0.167, 1, 0.333, 0.488, 0.167, 1, 0.333, 0.488 ]
+ },
+ {
+ "time": 0.5,
+ "x": 0.488,
+ "y": 0.488,
+ "curve": [ 0.667, 0.488, 0.833, 1, 0.667, 0.488, 0.833, 1 ]
+ },
+ { "time": 1 }
+ ]
+ },
+ "item_33": {
+ "scale": [
+ {
+ "curve": [ 0.167, 1, 0.333, 0.488, 0.167, 1, 0.333, 0.488 ]
+ },
+ {
+ "time": 0.5,
+ "x": 0.488,
+ "y": 0.488,
+ "curve": [ 0.667, 0.488, 0.833, 1, 0.667, 0.488, 0.833, 1 ]
+ },
+ { "time": 1 }
+ ]
+ },
+ "item_34": {
+ "scale": [
+ {
+ "curve": [ 0.167, 1, 0.333, 0.488, 0.167, 1, 0.333, 0.488 ]
+ },
+ {
+ "time": 0.5,
+ "x": 0.488,
+ "y": 0.488,
+ "curve": [ 0.667, 0.488, 0.833, 1, 0.667, 0.488, 0.833, 1 ]
+ },
+ { "time": 1 }
+ ]
+ },
+ "item_31": {
+ "scale": [
+ {
+ "curve": [ 0.167, 1, 0.333, 0.488, 0.167, 1, 0.333, 0.488 ]
+ },
+ {
+ "time": 0.5,
+ "x": 0.488,
+ "y": 0.488,
+ "curve": [ 0.667, 0.488, 0.833, 1, 0.667, 0.488, 0.833, 1 ]
+ },
+ { "time": 1 }
+ ]
+ },
+ "item_29": {
+ "scale": [
+ {
+ "curve": [ 0.167, 1, 0.333, 0.488, 0.167, 1, 0.333, 0.488 ]
+ },
+ {
+ "time": 0.5,
+ "x": 0.488,
+ "y": 0.488,
+ "curve": [ 0.667, 0.488, 0.833, 1, 0.667, 0.488, 0.833, 1 ]
+ },
+ { "time": 1 }
+ ]
+ },
+ "item_27": {
+ "scale": [
+ {
+ "curve": [ 0.167, 1, 0.333, 0.488, 0.167, 1, 0.333, 0.488 ]
+ },
+ {
+ "time": 0.5,
+ "x": 0.488,
+ "y": 0.488,
+ "curve": [ 0.667, 0.488, 0.833, 1, 0.667, 0.488, 0.833, 1 ]
+ },
+ { "time": 1 }
+ ]
+ },
+ "item_28": {
+ "scale": [
+ {
+ "curve": [ 0.167, 1, 0.333, 0.488, 0.167, 1, 0.333, 0.488 ]
+ },
+ {
+ "time": 0.5,
+ "x": 0.488,
+ "y": 0.488,
+ "curve": [ 0.667, 0.488, 0.833, 1, 0.667, 0.488, 0.833, 1 ]
+ },
+ { "time": 1 }
+ ]
+ },
+ "item_26": {
+ "scale": [
+ {
+ "curve": [ 0.167, 1, 0.333, 0.488, 0.167, 1, 0.333, 0.488 ]
+ },
+ {
+ "time": 0.5,
+ "x": 0.488,
+ "y": 0.488,
+ "curve": [ 0.667, 0.488, 0.833, 1, 0.667, 0.488, 0.833, 1 ]
+ },
+ { "time": 1 }
+ ]
+ },
+ "item_21": {
+ "scale": [
+ {
+ "curve": [ 0.167, 1, 0.333, 0.488, 0.167, 1, 0.333, 0.488 ]
+ },
+ {
+ "time": 0.5,
+ "x": 0.488,
+ "y": 0.488,
+ "curve": [ 0.667, 0.488, 0.833, 1, 0.667, 0.488, 0.833, 1 ]
+ },
+ { "time": 1 }
+ ]
+ },
+ "item_23": {
+ "scale": [
+ {
+ "curve": [ 0.167, 1, 0.333, 0.488, 0.167, 1, 0.333, 0.488 ]
+ },
+ {
+ "time": 0.5,
+ "x": 0.488,
+ "y": 0.488,
+ "curve": [ 0.667, 0.488, 0.833, 1, 0.667, 0.488, 0.833, 1 ]
+ },
+ { "time": 1 }
+ ]
+ },
+ "item_24": {
+ "scale": [
+ {
+ "curve": [ 0.167, 1, 0.333, 0.488, 0.167, 1, 0.333, 0.488 ]
+ },
+ {
+ "time": 0.5,
+ "x": 0.488,
+ "y": 0.488,
+ "curve": [ 0.667, 0.488, 0.833, 1, 0.667, 0.488, 0.833, 1 ]
+ },
+ { "time": 1 }
+ ]
+ },
+ "item_22": {
+ "scale": [
+ {
+ "curve": [ 0.167, 1, 0.333, 0.488, 0.167, 1, 0.333, 0.488 ]
+ },
+ {
+ "time": 0.5,
+ "x": 0.488,
+ "y": 0.488,
+ "curve": [ 0.667, 0.488, 0.833, 1, 0.667, 0.488, 0.833, 1 ]
+ },
+ { "time": 1 }
+ ]
+ },
+ "item_19": {
+ "scale": [
+ {
+ "curve": [ 0.167, 1, 0.333, 1.056, 0.167, 1, 0.333, 1.056 ]
+ },
+ {
+ "time": 0.5,
+ "x": 1.056,
+ "y": 1.056,
+ "curve": [ 0.667, 1.056, 0.833, 1, 0.667, 1.056, 0.833, 1 ]
+ },
+ { "time": 1 }
+ ]
+ },
+ "item_20": {
+ "translate": [
+ {},
+ { "time": 0.5, "x": 4.76, "y": 0.06 },
+ { "time": 1 }
+ ]
+ },
+ "item_30": {
+ "translate": [
+ {},
+ { "time": 0.5, "x": 1.04, "y": -4.64 },
+ { "time": 1 }
+ ]
+ },
+ "item_32": {
+ "translate": [
+ {},
+ { "time": 0.5, "x": 0.62, "y": -4.72 },
+ { "time": 1 }
+ ]
+ },
+ "item_25": {
+ "translate": [
+ {},
+ { "time": 0.5, "y": 3.55 },
+ { "time": 1 }
+ ]
+ }
+ }
+ },
+ "6_idle": {
+ "slots": {
+ "item6_4": {
+ "attachment": [
+ { "name": "item6_4" }
+ ]
+ },
+ "item6_5": {
+ "attachment": [
+ { "name": "item6_5" }
+ ]
+ },
+ "item6_6": {
+ "attachment": [
+ { "name": "item6_6" }
+ ]
+ }
+ },
+ "bones": {
+ "item_6": {
+ "scale": [
+ {
+ "curve": [ 0.167, 1, 0.333, 1.056, 0.167, 1, 0.333, 1.056 ]
+ },
+ {
+ "time": 0.5,
+ "x": 1.056,
+ "y": 1.056,
+ "curve": [ 0.667, 1.056, 0.833, 1, 0.667, 1.056, 0.833, 1 ]
+ },
+ { "time": 1 }
+ ]
+ },
+ "item_36": {
+ "rotate": [
+ {
+ "value": -2.34,
+ "curve": [ 0.167, -2.34, 0.333, 0.3 ]
+ },
+ {
+ "time": 0.5,
+ "value": 0.3,
+ "curve": [ 0.667, 0.3, 0.833, -2.34 ]
+ },
+ { "time": 1, "value": -2.34 }
+ ]
+ },
+ "item_37": {
+ "rotate": [
+ {
+ "value": -1.65,
+ "curve": [ 0.057, -2.03, 0.112, -2.34 ]
+ },
+ {
+ "time": 0.1667,
+ "value": -2.34,
+ "curve": [ 0.333, -2.34, 0.5, 0.3 ]
+ },
+ {
+ "time": 0.6667,
+ "value": 0.3,
+ "curve": [ 0.778, 0.3, 0.89, -0.87 ]
+ },
+ { "time": 1, "value": -1.65 }
+ ]
+ },
+ "item_38": {
+ "rotate": [
+ {
+ "value": -0.39,
+ "curve": [ 0.112, -1.17, 0.223, -2.34 ]
+ },
+ {
+ "time": 0.3333,
+ "value": -2.34,
+ "curve": [ 0.5, -2.34, 0.667, 0.3 ]
+ },
+ {
+ "time": 0.8333,
+ "value": 0.3,
+ "curve": [ 0.889, 0.3, 0.946, 0 ]
+ },
+ { "time": 1, "value": -0.39 }
+ ]
+ },
+ "item_39": {
+ "rotate": [
+ {
+ "value": 0.3,
+ "curve": [ 0.167, 0.3, 0.333, -2.34 ]
+ },
+ {
+ "time": 0.5,
+ "value": -2.34,
+ "curve": [ 0.667, -2.34, 0.833, 0.3 ]
+ },
+ { "time": 1, "value": 0.3 }
+ ]
+ },
+ "item_40": {
+ "rotate": [
+ {
+ "curve": [ 0.167, 0, 0.333, -1.5 ]
+ },
+ {
+ "time": 0.5,
+ "value": -1.5,
+ "curve": [ 0.667, -1.5, 0.833, 0 ]
+ },
+ { "time": 1 }
+ ]
+ },
+ "item_41": {
+ "rotate": [
+ {
+ "value": -0.39,
+ "curve": [ 0.057, -0.17, 0.112, 0 ]
+ },
+ {
+ "time": 0.1667,
+ "curve": [ 0.333, 0, 0.5, -1.5 ]
+ },
+ {
+ "time": 0.6667,
+ "value": -1.5,
+ "curve": [ 0.778, -1.5, 0.89, -0.83 ]
+ },
+ { "time": 1, "value": -0.39 }
+ ]
+ },
+ "item_42": {
+ "rotate": [
+ {
+ "value": -1.11,
+ "curve": [ 0.112, -0.66, 0.223, 0 ]
+ },
+ {
+ "time": 0.3333,
+ "curve": [ 0.5, 0, 0.667, -1.5 ]
+ },
+ {
+ "time": 0.8333,
+ "value": -1.5,
+ "curve": [ 0.889, -1.5, 0.946, -1.33 ]
+ },
+ { "time": 1, "value": -1.11 }
+ ]
+ },
+ "item_43": {
+ "rotate": [
+ {
+ "value": -1.5,
+ "curve": [ 0.167, -1.5, 0.333, 0 ]
+ },
+ {
+ "time": 0.5,
+ "curve": [ 0.667, 0, 0.833, -1.5 ]
+ },
+ { "time": 1, "value": -1.5 }
+ ]
+ }
+ }
+ },
+ "6_payout": {
+ "slots": {
+ "item6_4": {
+ "attachment": [
+ { "name": "item6_4" }
+ ]
+ },
+ "item6_5": {
+ "attachment": [
+ { "name": "item6_5" }
+ ]
+ },
+ "item6_6": {
+ "attachment": [
+ { "name": "item6_6" }
+ ]
+ }
+ },
+ "bones": {
+ "item_6": {
+ "scale": [
+ {
+ "curve": [ 0.167, 1, 0.333, 1.056, 0.167, 1, 0.333, 1.056 ]
+ },
+ {
+ "time": 0.5,
+ "x": 1.056,
+ "y": 1.056,
+ "curve": [ 0.667, 1.056, 0.833, 1, 0.667, 1.056, 0.833, 1 ]
+ },
+ { "time": 1 }
+ ]
+ },
+ "item_42": {
+ "rotate": [
+ {
+ "value": -1.11,
+ "curve": [ 0.112, -0.66, 0.223, 0 ]
+ },
+ {
+ "time": 0.3333,
+ "curve": [ 0.5, 0, 0.667, -1.5 ]
+ },
+ {
+ "time": 0.8333,
+ "value": -1.5,
+ "curve": [ 0.889, -1.5, 0.946, -1.33 ]
+ },
+ { "time": 1, "value": -1.11 }
+ ]
+ },
+ "item_37": {
+ "rotate": [
+ {
+ "value": -1.65,
+ "curve": [ 0.057, -2.03, 0.112, -2.34 ]
+ },
+ {
+ "time": 0.1667,
+ "value": -2.34,
+ "curve": [ 0.333, -2.34, 0.5, 0.3 ]
+ },
+ {
+ "time": 0.6667,
+ "value": 0.3,
+ "curve": [ 0.778, 0.3, 0.89, -0.87 ]
+ },
+ { "time": 1, "value": -1.65 }
+ ]
+ },
+ "item_38": {
+ "rotate": [
+ {
+ "value": -0.39,
+ "curve": [ 0.112, -1.17, 0.223, -2.34 ]
+ },
+ {
+ "time": 0.3333,
+ "value": -2.34,
+ "curve": [ 0.5, -2.34, 0.667, 0.3 ]
+ },
+ {
+ "time": 0.8333,
+ "value": 0.3,
+ "curve": [ 0.889, 0.3, 0.946, 0 ]
+ },
+ { "time": 1, "value": -0.39 }
+ ]
+ },
+ "item_43": {
+ "rotate": [
+ {
+ "value": -1.5,
+ "curve": [ 0.167, -1.5, 0.333, 0 ]
+ },
+ {
+ "time": 0.5,
+ "curve": [ 0.667, 0, 0.833, -1.5 ]
+ },
+ { "time": 1, "value": -1.5 }
+ ]
+ },
+ "item_36": {
+ "rotate": [
+ {
+ "value": -2.34,
+ "curve": [ 0.167, -2.34, 0.333, 0.3 ]
+ },
+ {
+ "time": 0.5,
+ "value": 0.3,
+ "curve": [ 0.667, 0.3, 0.833, -2.34 ]
+ },
+ { "time": 1, "value": -2.34 }
+ ]
+ },
+ "item_41": {
+ "rotate": [
+ {
+ "value": -0.39,
+ "curve": [ 0.057, -0.17, 0.112, 0 ]
+ },
+ {
+ "time": 0.1667,
+ "curve": [ 0.333, 0, 0.5, -1.5 ]
+ },
+ {
+ "time": 0.6667,
+ "value": -1.5,
+ "curve": [ 0.778, -1.5, 0.89, -0.83 ]
+ },
+ { "time": 1, "value": -0.39 }
+ ]
+ },
+ "item_40": {
+ "rotate": [
+ {
+ "curve": [ 0.167, 0, 0.333, -1.5 ]
+ },
+ {
+ "time": 0.5,
+ "value": -1.5,
+ "curve": [ 0.667, -1.5, 0.833, 0 ]
+ },
+ { "time": 1 }
+ ]
+ },
+ "item_39": {
+ "rotate": [
+ {
+ "value": 0.3,
+ "curve": [ 0.167, 0.3, 0.333, -2.34 ]
+ },
+ {
+ "time": 0.5,
+ "value": -2.34,
+ "curve": [ 0.667, -2.34, 0.833, 0.3 ]
+ },
+ { "time": 1, "value": 0.3 }
+ ]
+ }
+ }
+ },
+ "6_spawn": {
+ "slots": {
+ "item6_4": {
+ "attachment": [
+ { "name": "item6_4" }
+ ]
+ },
+ "item6_5": {
+ "attachment": [
+ { "name": "item6_5" }
+ ]
+ },
+ "item6_6": {
+ "attachment": [
+ { "name": "item6_6" }
+ ]
+ }
+ },
+ "bones": {
+ "item_6": {
+ "translate": [
+ {
+ "curve": [ 0.022, 0, 0.044, 0, 0.022, -3.32, 0.044, -6.85 ]
+ },
+ {
+ "time": 0.0667,
+ "y": -6.85,
+ "curve": [ 0.111, 0, 0.156, 0, 0.111, -6.85, 0.156, 6.1 ]
+ },
+ {
+ "time": 0.2,
+ "y": 6.1,
+ "curve": [ 0.244, 0, 0.289, 0, 0.244, 6.1, 0.289, 3.47 ]
+ },
+ { "time": 0.3333 }
+ ]
+ },
+ "item_39": {
+ "rotate": [
+ {
+ "value": 0.3,
+ "curve": [ 0.033, 3.16, 0.067, 6.09 ]
+ },
+ {
+ "time": 0.1,
+ "value": 6.09,
+ "curve": [ 0.144, 6.09, 0.189, -4.01 ]
+ },
+ {
+ "time": 0.2333,
+ "value": -4.01,
+ "curve": [ 0.267, -4.01, 0.3, -2.56 ]
+ },
+ { "time": 0.3333, "value": 0.3 }
+ ]
+ },
+ "item_41": {
+ "rotate": [
+ {
+ "value": -0.39,
+ "curve": [ 0.033, -2.8, 0.067, -4.51 ]
+ },
+ {
+ "time": 0.1,
+ "value": -4.51,
+ "curve": [ 0.144, -4.51, 0.189, 6.5 ]
+ },
+ {
+ "time": 0.2333,
+ "value": 6.5,
+ "curve": [ 0.267, 6.5, 0.3, 2.02 ]
+ },
+ { "time": 0.3333, "value": -0.39 }
+ ]
+ },
+ "item_38": {
+ "rotate": [
+ {
+ "value": -0.39,
+ "curve": [ 0.033, 2.47, 0.067, 5.41 ]
+ },
+ {
+ "time": 0.1,
+ "value": 5.41,
+ "curve": [ 0.144, 5.41, 0.189, -4.7 ]
+ },
+ {
+ "time": 0.2333,
+ "value": -4.7,
+ "curve": [ 0.267, -4.7, 0.3, -3.25 ]
+ },
+ { "time": 0.3333, "value": -0.39 }
+ ]
+ },
+ "item_43": {
+ "rotate": [
+ {
+ "value": -1.5,
+ "curve": [ 0.033, -3.9, 0.067, -5.62 ]
+ },
+ {
+ "time": 0.1,
+ "value": -5.62,
+ "curve": [ 0.144, -5.62, 0.189, 5.4 ]
+ },
+ {
+ "time": 0.2333,
+ "value": 5.4,
+ "curve": [ 0.267, 5.4, 0.3, 0.91 ]
+ },
+ { "time": 0.3333, "value": -1.5 }
+ ]
+ },
+ "item_40": {
+ "rotate": [
+ {
+ "curve": [ 0.033, -2.41, 0.067, -4.12 ]
+ },
+ {
+ "time": 0.1,
+ "value": -4.12,
+ "curve": [ 0.144, -4.12, 0.189, 6.89 ]
+ },
+ {
+ "time": 0.2333,
+ "value": 6.89,
+ "curve": [ 0.267, 6.89, 0.3, 2.41 ]
+ },
+ { "time": 0.3333 }
+ ]
+ },
+ "item_42": {
+ "rotate": [
+ {
+ "value": -1.11,
+ "curve": [ 0.033, -3.51, 0.067, -5.22 ]
+ },
+ {
+ "time": 0.1,
+ "value": -5.22,
+ "curve": [ 0.144, -5.22, 0.189, 5.79 ]
+ },
+ {
+ "time": 0.2333,
+ "value": 5.79,
+ "curve": [ 0.267, 5.79, 0.3, 1.3 ]
+ },
+ { "time": 0.3333, "value": -1.11 }
+ ]
+ },
+ "item_36": {
+ "rotate": [
+ {
+ "value": -2.34,
+ "curve": [ 0.033, 0.52, 0.067, 3.46 ]
+ },
+ {
+ "time": 0.1,
+ "value": 3.46,
+ "curve": [ 0.144, 3.46, 0.189, -6.64 ]
+ },
+ {
+ "time": 0.2333,
+ "value": -6.64,
+ "curve": [ 0.267, -6.64, 0.3, -5.2 ]
+ },
+ { "time": 0.3333, "value": -2.34 }
+ ]
+ },
+ "item_37": {
+ "rotate": [
+ {
+ "value": -1.65,
+ "curve": [ 0.033, 1.21, 0.067, 4.15 ]
+ },
+ {
+ "time": 0.1,
+ "value": 4.15,
+ "curve": [ 0.144, 4.15, 0.189, -5.96 ]
+ },
+ {
+ "time": 0.2333,
+ "value": -5.96,
+ "curve": [ 0.267, -5.96, 0.3, -4.51 ]
+ },
+ { "time": 0.3333, "value": -1.65 }
+ ]
+ }
+ }
+ },
+ "6_win": {
+ "slots": {
+ "item6_1": {
+ "attachment": [
+ { "name": "item6_1" }
+ ]
+ },
+ "item6_2": {
+ "attachment": [
+ { "name": "item6_2" }
+ ]
+ },
+ "item6_3": {
+ "attachment": [
+ { "name": "item6_3" }
+ ]
+ },
+ "item6_7": {
+ "attachment": [
+ { "name": "item6_7" }
+ ]
+ },
+ "item6_8": {
+ "attachment": [
+ { "name": "item6_8" }
+ ]
+ },
+ "item6_9": {
+ "attachment": [
+ { "name": "item6_9" }
+ ]
+ },
+ "star2": {
+ "attachment": [
+ { "name": "star" }
+ ]
+ }
+ },
+ "bones": {
+ "item_6": {
+ "scale": [
+ {
+ "curve": [ 0.056, 0.967, 0.111, 0.943, 0.056, 0.967, 0.111, 0.943 ]
+ },
+ {
+ "time": 0.1667,
+ "x": 0.943,
+ "y": 0.943,
+ "curve": [ 0.2, 0.943, 0.233, 1.089, 0.2, 0.943, 0.233, 1.089 ]
+ },
+ {
+ "time": 0.2667,
+ "x": 1.099,
+ "y": 1.099,
+ "curve": [ 0.356, 1.123, 0.444, 1.123, 0.356, 1.123, 0.444, 1.123 ]
+ },
+ {
+ "time": 0.5333,
+ "x": 1.123,
+ "y": 1.123,
+ "curve": [ 0.578, 1.123, 0.622, 1.027, 0.578, 1.123, 0.622, 1.027 ]
+ },
+ { "time": 0.6667 }
+ ]
+ },
+ "item_37": {
+ "rotate": [
+ {
+ "value": -1.65,
+ "curve": [ 0.056, -1.65, 0.111, 7.85 ]
+ },
+ {
+ "time": 0.1667,
+ "value": 7.85,
+ "curve": [ 0.222, 7.85, 0.278, -11.79 ]
+ },
+ {
+ "time": 0.3333,
+ "value": -11.79,
+ "curve": [ 0.389, -11.79, 0.444, 0.73 ]
+ },
+ {
+ "time": 0.5,
+ "value": 0.73,
+ "curve": [ 0.556, 0.73, 0.611, -1.65 ]
+ },
+ { "time": 0.6667, "value": -1.65 }
+ ]
+ },
+ "item_38": {
+ "rotate": [
+ {
+ "value": -0.39,
+ "curve": [ 0.056, -0.39, 0.111, 9.1 ]
+ },
+ {
+ "time": 0.1667,
+ "value": 9.1,
+ "curve": [ 0.222, 9.1, 0.278, -10.53 ]
+ },
+ {
+ "time": 0.3333,
+ "value": -10.53,
+ "curve": [ 0.389, -10.53, 0.444, 1.99 ]
+ },
+ {
+ "time": 0.5,
+ "value": 1.99,
+ "curve": [ 0.556, 1.99, 0.611, -0.39 ]
+ },
+ { "time": 0.6667, "value": -0.39 }
+ ]
+ },
+ "item_36": {
+ "rotate": [
+ {
+ "value": -2.34,
+ "curve": [ 0.056, -2.34, 0.111, 7.16 ]
+ },
+ {
+ "time": 0.1667,
+ "value": 7.16,
+ "curve": [ 0.222, 7.16, 0.278, -12.48 ]
+ },
+ {
+ "time": 0.3333,
+ "value": -12.48,
+ "curve": [ 0.389, -12.48, 0.444, 0.04 ]
+ },
+ {
+ "time": 0.5,
+ "value": 0.04,
+ "curve": [ 0.556, 0.04, 0.611, -2.34 ]
+ },
+ { "time": 0.6667, "value": -2.34 }
+ ]
+ },
+ "item_41": {
+ "rotate": [
+ {
+ "value": -0.39,
+ "curve": [ 0.056, -0.39, 0.111, -6.09 ]
+ },
+ {
+ "time": 0.1667,
+ "value": -6.09,
+ "curve": [ 0.222, -6.09, 0.278, 9.29 ]
+ },
+ {
+ "time": 0.3333,
+ "value": 9.29,
+ "curve": [ 0.389, 9.29, 0.444, -1.25 ]
+ },
+ {
+ "time": 0.5,
+ "value": -1.25,
+ "curve": [ 0.556, -1.25, 0.611, -0.39 ]
+ },
+ { "time": 0.6667, "value": -0.39 }
+ ]
+ },
+ "item_42": {
+ "rotate": [
+ {
+ "value": -1.11,
+ "curve": [ 0.056, -1.11, 0.111, -6.8 ]
+ },
+ {
+ "time": 0.1667,
+ "value": -6.8,
+ "curve": [ 0.222, -6.8, 0.278, 8.57 ]
+ },
+ {
+ "time": 0.3333,
+ "value": 8.57,
+ "curve": [ 0.389, 8.57, 0.444, -1.96 ]
+ },
+ {
+ "time": 0.5,
+ "value": -1.96,
+ "curve": [ 0.556, -1.96, 0.611, -1.11 ]
+ },
+ { "time": 0.6667, "value": -1.11 }
+ ]
+ },
+ "item_43": {
+ "rotate": [
+ {
+ "value": -1.5,
+ "curve": [ 0.056, -1.5, 0.111, -7.19 ]
+ },
+ {
+ "time": 0.1667,
+ "value": -7.19,
+ "curve": [ 0.222, -7.19, 0.278, 8.18 ]
+ },
+ {
+ "time": 0.3333,
+ "value": 8.18,
+ "curve": [ 0.389, 8.18, 0.444, -2.35 ]
+ },
+ {
+ "time": 0.5,
+ "value": -2.35,
+ "curve": [ 0.556, -2.35, 0.611, -1.5 ]
+ },
+ { "time": 0.6667, "value": -1.5 }
+ ]
+ },
+ "item_40": {
+ "rotate": [
+ {
+ "curve": [ 0.056, 0, 0.111, -5.7 ]
+ },
+ {
+ "time": 0.1667,
+ "value": -5.7,
+ "curve": [ 0.222, -5.7, 0.278, 9.68 ]
+ },
+ {
+ "time": 0.3333,
+ "value": 9.68,
+ "curve": [ 0.389, 9.68, 0.444, -0.86 ]
+ },
+ {
+ "time": 0.5,
+ "value": -0.86,
+ "curve": [ 0.556, -0.86, 0.611, 0 ]
+ },
+ { "time": 0.6667 }
+ ]
+ },
+ "item_39": {
+ "rotate": [
+ {
+ "value": 0.3,
+ "curve": [ 0.056, 0.3, 0.111, 9.79 ]
+ },
+ {
+ "time": 0.1667,
+ "value": 9.79,
+ "curve": [ 0.222, 9.79, 0.278, -9.85 ]
+ },
+ {
+ "time": 0.3333,
+ "value": -9.85,
+ "curve": [ 0.389, -9.85, 0.444, 2.68 ]
+ },
+ {
+ "time": 0.5,
+ "value": 2.68,
+ "curve": [ 0.556, 2.68, 0.611, 0.3 ]
+ },
+ { "time": 0.6667, "value": 0.3 }
+ ]
+ },
+ "item_45": {
+ "scale": [
+ {
+ "curve": [ 0.022, 1, 0.044, 1.03, 0.022, 1, 0.044, 0.978 ]
+ },
+ {
+ "time": 0.0667,
+ "x": 1.03,
+ "y": 0.978,
+ "curve": [ 0.111, 1.03, 0.156, 0.99, 0.111, 0.978, 0.156, 1.015 ]
+ },
+ {
+ "time": 0.2,
+ "x": 0.99,
+ "y": 1.015,
+ "curve": [ 0.3, 0.99, 0.4, 1.011, 0.3, 1.015, 0.4, 0.997 ]
+ },
+ {
+ "time": 0.5,
+ "x": 1.011,
+ "y": 0.997,
+ "curve": [ 0.556, 1.011, 0.611, 1, 0.556, 0.997, 0.611, 1 ]
+ },
+ { "time": 0.6667 }
+ ]
+ },
+ "star2": {
+ "rotate": [
+ {},
+ { "time": 0.6667, "value": 260.17 }
+ ],
+ "scale": [
+ { "x": 0, "y": 0 },
+ { "time": 0.1667, "x": 0.8, "y": 0.8 },
+ { "time": 0.5, "x": 1.424, "y": 1.424 },
+ { "time": 0.6667, "x": 0, "y": 0 }
+ ]
+ }
+ }
+ },
+ "6_win_idle": {
+ "slots": {
+ "item6_1": {
+ "attachment": [
+ { "name": "item6_1" }
+ ]
+ },
+ "item6_2": {
+ "attachment": [
+ { "name": "item6_2" }
+ ]
+ },
+ "item6_3": {
+ "attachment": [
+ { "name": "item6_3" }
+ ]
+ },
+ "item6_4": {
+ "attachment": [
+ { "name": "item6_4" }
+ ]
+ },
+ "item6_5": {
+ "attachment": [
+ { "name": "item6_5" }
+ ]
+ },
+ "item6_6": {
+ "attachment": [
+ { "name": "item6_6" }
+ ]
+ },
+ "item6_7": {
+ "attachment": [
+ { "name": "item6_7" }
+ ]
+ },
+ "item6_8": {
+ "attachment": [
+ { "name": "item6_8" }
+ ]
+ },
+ "item6_9": {
+ "attachment": [
+ { "name": "item6_9" }
+ ]
+ }
+ },
+ "bones": {
+ "item_6": {
+ "scale": [
+ {
+ "curve": [ 0.167, 1, 0.333, 1.056, 0.167, 1, 0.333, 1.056 ]
+ },
+ {
+ "time": 0.5,
+ "x": 1.056,
+ "y": 1.056,
+ "curve": [ 0.667, 1.056, 0.833, 1, 0.667, 1.056, 0.833, 1 ]
+ },
+ { "time": 1 }
+ ]
+ },
+ "item_36": {
+ "rotate": [
+ {
+ "value": -2.34,
+ "curve": [ 0.167, -2.34, 0.333, 0.3 ]
+ },
+ {
+ "time": 0.5,
+ "value": 0.3,
+ "curve": [ 0.667, 0.3, 0.833, -2.34 ]
+ },
+ { "time": 1, "value": -2.34 }
+ ]
+ },
+ "item_37": {
+ "rotate": [
+ {
+ "value": -1.65,
+ "curve": [ 0.057, -2.03, 0.112, -2.34 ]
+ },
+ {
+ "time": 0.1667,
+ "value": -2.34,
+ "curve": [ 0.333, -2.34, 0.5, 0.3 ]
+ },
+ {
+ "time": 0.6667,
+ "value": 0.3,
+ "curve": [ 0.778, 0.3, 0.89, -0.87 ]
+ },
+ { "time": 1, "value": -1.65 }
+ ]
+ },
+ "item_38": {
+ "rotate": [
+ {
+ "value": -0.39,
+ "curve": [ 0.112, -1.17, 0.223, -2.34 ]
+ },
+ {
+ "time": 0.3333,
+ "value": -2.34,
+ "curve": [ 0.5, -2.34, 0.667, 0.3 ]
+ },
+ {
+ "time": 0.8333,
+ "value": 0.3,
+ "curve": [ 0.889, 0.3, 0.946, 0 ]
+ },
+ { "time": 1, "value": -0.39 }
+ ]
+ },
+ "item_39": {
+ "rotate": [
+ {
+ "value": 0.3,
+ "curve": [ 0.167, 0.3, 0.333, -2.34 ]
+ },
+ {
+ "time": 0.5,
+ "value": -2.34,
+ "curve": [ 0.667, -2.34, 0.833, 0.3 ]
+ },
+ { "time": 1, "value": 0.3 }
+ ]
+ },
+ "item_40": {
+ "rotate": [
+ {
+ "curve": [ 0.167, 0, 0.333, -1.5 ]
+ },
+ {
+ "time": 0.5,
+ "value": -1.5,
+ "curve": [ 0.667, -1.5, 0.833, 0 ]
+ },
+ { "time": 1 }
+ ]
+ },
+ "item_41": {
+ "rotate": [
+ {
+ "value": -0.39,
+ "curve": [ 0.057, -0.17, 0.112, 0 ]
+ },
+ {
+ "time": 0.1667,
+ "curve": [ 0.333, 0, 0.5, -1.5 ]
+ },
+ {
+ "time": 0.6667,
+ "value": -1.5,
+ "curve": [ 0.778, -1.5, 0.89, -0.83 ]
+ },
+ { "time": 1, "value": -0.39 }
+ ]
+ },
+ "item_42": {
+ "rotate": [
+ {
+ "value": -1.11,
+ "curve": [ 0.112, -0.66, 0.223, 0 ]
+ },
+ {
+ "time": 0.3333,
+ "curve": [ 0.5, 0, 0.667, -1.5 ]
+ },
+ {
+ "time": 0.8333,
+ "value": -1.5,
+ "curve": [ 0.889, -1.5, 0.946, -1.33 ]
+ },
+ { "time": 1, "value": -1.11 }
+ ]
+ },
+ "item_43": {
+ "rotate": [
+ {
+ "value": -1.5,
+ "curve": [ 0.167, -1.5, 0.333, 0 ]
+ },
+ {
+ "time": 0.5,
+ "curve": [ 0.667, 0, 0.833, -1.5 ]
+ },
+ { "time": 1, "value": -1.5 }
+ ]
+ }
+ }
+ },
+ "7_idle": {
+ "slots": {
+ "che": {
+ "attachment": [
+ { "name": "che" }
+ ]
+ },
+ "huobeijing": {
+ "attachment": [
+ { "name": "huobeijing" }
+ ]
+ },
+ "pqg": {
+ "attachment": [
+ { "name": "pqg" }
+ ]
+ },
+ "wenzi": {
+ "attachment": [
+ { "name": "wenzi" }
+ ]
+ }
+ },
+ "bones": {
+ "wild": {
+ "scale": [
+ {
+ "curve": [ 0.111, 0.967, 0.222, 0.9, 0.111, 0.967, 0.222, 0.9 ]
+ },
+ {
+ "time": 0.3333,
+ "x": 0.9,
+ "y": 0.9,
+ "curve": [ 0.444, 0.9, 0.556, 1.1, 0.444, 0.9, 0.556, 1.1 ]
+ },
+ {
+ "time": 0.6667,
+ "x": 1.1,
+ "y": 1.1,
+ "curve": [ 0.778, 1.1, 0.889, 1.033, 0.778, 1.1, 0.889, 1.033 ]
+ },
+ { "time": 1 }
+ ]
+ },
+ "huo_24": {
+ "rotate": [
+ {
+ "value": -11.47,
+ "curve": [ 0.167, -11.47, 0.333, 10.42 ]
+ },
+ {
+ "time": 0.5,
+ "value": 10.42,
+ "curve": [ 0.667, 10.42, 0.833, -11.47 ]
+ },
+ { "time": 1, "value": -11.47 }
+ ]
+ },
+ "huo_25": {
+ "rotate": [
+ {
+ "value": -5.75,
+ "curve": [ 0.057, -8.95, 0.112, -11.47 ]
+ },
+ {
+ "time": 0.1667,
+ "value": -11.47,
+ "curve": [ 0.333, -11.47, 0.5, 10.42 ]
+ },
+ {
+ "time": 0.6667,
+ "value": 10.42,
+ "curve": [ 0.778, 10.42, 0.89, 0.73 ]
+ },
+ { "time": 1, "value": -5.75 }
+ ]
+ },
+ "huo_21": {
+ "rotate": [
+ {
+ "value": -5.75,
+ "curve": [ 0.056, -8.98, 0.112, -11.47 ]
+ },
+ {
+ "time": 0.1667,
+ "value": -11.47,
+ "curve": [ 0.333, -11.47, 0.5, 10.42 ]
+ },
+ {
+ "time": 0.6667,
+ "value": 10.42,
+ "curve": [ 0.767, 10.42, 0.989, -5.1 ]
+ },
+ { "time": 1, "value": -5.75 }
+ ]
+ },
+ "huo_22": {
+ "rotate": [
+ {
+ "value": 6.51,
+ "curve": [ 0.123, 0.21, 0.245, -11.47 ]
+ },
+ {
+ "time": 0.3667,
+ "value": -11.47,
+ "curve": [ 0.533, -11.47, 0.7, 10.42 ]
+ },
+ {
+ "time": 0.8667,
+ "value": 10.42,
+ "curve": [ 0.912, 10.42, 0.957, 8.84 ]
+ },
+ { "time": 1, "value": 6.51 }
+ ]
+ },
+ "huo_18": {
+ "rotate": [
+ {
+ "value": -1.61,
+ "curve": [ 0.09, 4.17, 0.178, 10.42 ]
+ },
+ {
+ "time": 0.2667,
+ "value": 10.42,
+ "curve": [ 0.378, 10.42, 0.49, 0.73 ]
+ },
+ {
+ "time": 0.6,
+ "value": -5.75,
+ "curve": [ 0.657, -8.95, 0.712, -11.47 ]
+ },
+ {
+ "time": 0.7667,
+ "value": -11.47,
+ "curve": [ 0.845, -11.47, 0.923, -6.73 ]
+ },
+ { "time": 1, "value": -1.61 }
+ ]
+ },
+ "huo_19": {
+ "rotate": [
+ {
+ "value": -10.31,
+ "curve": [ 0.146, -5.85, 0.289, 10.42 ]
+ },
+ {
+ "time": 0.4333,
+ "value": 10.42,
+ "curve": [ 0.489, 10.42, 0.546, 7.99 ]
+ },
+ {
+ "time": 0.6,
+ "value": 4.7,
+ "curve": [ 0.712, -1.79, 0.823, -11.47 ]
+ },
+ {
+ "time": 0.9333,
+ "value": -11.47,
+ "curve": [ 0.956, -11.47, 0.979, -11.01 ]
+ },
+ { "time": 1, "value": -10.31 }
+ ]
+ },
+ "huo_14": {
+ "rotate": [
+ {
+ "value": 2.66,
+ "curve": [ 0.057, -0.81, 0.112, -4.8 ]
+ },
+ {
+ "time": 0.1667,
+ "value": -7.62,
+ "curve": [ 0.212, -9.85, 0.256, -11.47 ]
+ },
+ {
+ "time": 0.3,
+ "value": -11.47,
+ "curve": [ 0.467, -11.47, 0.633, 10.42 ]
+ },
+ {
+ "time": 0.8,
+ "value": 10.42,
+ "curve": [ 0.812, 10.42, 0.823, 10.21 ]
+ },
+ {
+ "time": 0.8333,
+ "value": 10.01,
+ "curve": [ 0.889, 9.06, 0.945, 6.12 ]
+ },
+ { "time": 1, "value": 2.66 }
+ ]
+ },
+ "huo_15": {
+ "rotate": [
+ {
+ "value": 10.13,
+ "curve": [ 0.056, 9.23, 0.112, 6.27 ]
+ },
+ {
+ "time": 0.1667,
+ "value": 2.78,
+ "curve": [ 0.212, -0.01, 0.256, -3.16 ]
+ },
+ {
+ "time": 0.3,
+ "value": -5.75,
+ "curve": [ 0.357, -8.95, 0.412, -11.47 ]
+ },
+ {
+ "time": 0.4667,
+ "value": -11.47,
+ "curve": [ 0.589, -11.47, 0.712, 0.25 ]
+ },
+ {
+ "time": 0.8333,
+ "value": 6.51,
+ "curve": [ 0.879, 8.75, 0.923, 10.42 ]
+ },
+ {
+ "time": 0.9667,
+ "value": 10.42,
+ "curve": [ 0.978, 10.42, 0.989, 10.31 ]
+ },
+ { "time": 1, "value": 10.13 }
+ ]
+ },
+ "huo_16": {
+ "rotate": [
+ {
+ "value": 6.52,
+ "curve": [ 0.045, 8.79, 0.089, 10.42 ]
+ },
+ {
+ "time": 0.1333,
+ "value": 10.42,
+ "curve": [ 0.145, 10.42, 0.156, 10.33 ]
+ },
+ {
+ "time": 0.1667,
+ "value": 10.15,
+ "curve": [ 0.212, 9.42, 0.256, 7.33 ]
+ },
+ {
+ "time": 0.3,
+ "value": 4.7,
+ "curve": [ 0.412, -1.79, 0.523, -11.47 ]
+ },
+ {
+ "time": 0.6333,
+ "value": -11.47,
+ "curve": [ 0.701, -11.47, 0.768, -8.02 ]
+ },
+ {
+ "time": 0.8333,
+ "value": -3.77,
+ "curve": [ 0.89, -0.27, 0.945, 3.66 ]
+ },
+ { "time": 1, "value": 6.52 }
+ ]
+ },
+ "huo_12": {
+ "rotate": [
+ {
+ "value": 4.7,
+ "curve": [ 0.112, -1.79, 0.223, -11.47 ]
+ },
+ {
+ "time": 0.3333,
+ "value": -11.47,
+ "curve": [ 0.5, -11.47, 0.667, 10.42 ]
+ },
+ {
+ "time": 0.8333,
+ "value": 10.42,
+ "curve": [ 0.889, 10.42, 0.946, 7.99 ]
+ },
+ { "time": 1, "value": 4.7 }
+ ]
+ },
+ "huo_11": {
+ "rotate": [
+ {
+ "value": -5.75,
+ "curve": [ 0.057, -8.95, 0.112, -11.47 ]
+ },
+ {
+ "time": 0.1667,
+ "value": -11.47,
+ "curve": [ 0.333, -11.47, 0.5, 10.42 ]
+ },
+ {
+ "time": 0.6667,
+ "value": 10.42,
+ "curve": [ 0.778, 10.42, 0.89, 0.73 ]
+ },
+ { "time": 1, "value": -5.75 }
+ ]
+ },
+ "huo_7": {
+ "rotate": [
+ {
+ "value": -7.56,
+ "curve": [ 0.046, -9.8, 0.089, -11.47 ]
+ },
+ {
+ "time": 0.1333,
+ "value": -11.47,
+ "curve": [ 0.3, -11.47, 0.467, 10.42 ]
+ },
+ {
+ "time": 0.6333,
+ "value": 10.42,
+ "curve": [ 0.756, 10.42, 0.879, -1.3 ]
+ },
+ { "time": 1, "value": -7.56 }
+ ]
+ },
+ "huo_8": {
+ "rotate": [
+ {
+ "value": 2.78,
+ "curve": [ 0.045, -0.01, 0.089, -3.16 ]
+ },
+ {
+ "time": 0.1333,
+ "value": -5.75,
+ "curve": [ 0.19, -8.95, 0.245, -11.47 ]
+ },
+ {
+ "time": 0.3,
+ "value": -11.47,
+ "curve": [ 0.467, -11.47, 0.633, 10.42 ]
+ },
+ {
+ "time": 0.8,
+ "value": 10.42,
+ "curve": [ 0.867, 10.42, 0.934, 6.97 ]
+ },
+ { "time": 1, "value": 2.78 }
+ ]
+ },
+ "huo_9": {
+ "rotate": [
+ {
+ "value": 10.15,
+ "curve": [ 0.045, 9.42, 0.09, 7.33 ]
+ },
+ {
+ "time": 0.1333,
+ "value": 4.7,
+ "curve": [ 0.246, -1.79, 0.356, -11.47 ]
+ },
+ {
+ "time": 0.4667,
+ "value": -11.47,
+ "curve": [ 0.633, -11.47, 0.8, 10.42 ]
+ },
+ {
+ "time": 0.9667,
+ "value": 10.42,
+ "curve": [ 0.978, 10.42, 0.989, 10.33 ]
+ },
+ { "time": 1, "value": 10.15 }
+ ]
+ },
+ "huo_3": {
+ "rotate": [
+ {
+ "value": -3.77,
+ "curve": [ 0.068, -7.92, 0.133, -11.47 ]
+ },
+ {
+ "time": 0.2,
+ "value": -11.47,
+ "curve": [ 0.367, -11.47, 0.533, 10.42 ]
+ },
+ {
+ "time": 0.7,
+ "value": 10.42,
+ "curve": [ 0.8, 10.42, 0.901, 2.56 ]
+ },
+ { "time": 1, "value": -3.77 }
+ ]
+ },
+ "huo_4": {
+ "rotate": [
+ {
+ "value": 6.62,
+ "curve": [ 0.067, 3.21, 0.133, -2.46 ]
+ },
+ {
+ "time": 0.2,
+ "value": -5.75,
+ "curve": [ 0.256, -8.49, 0.311, -11.47 ]
+ },
+ {
+ "time": 0.3667,
+ "value": -11.47,
+ "curve": [ 0.533, -11.47, 0.7, 10.42 ]
+ },
+ {
+ "time": 0.8667,
+ "value": 10.42,
+ "curve": [ 0.911, 10.42, 0.956, 8.9 ]
+ },
+ { "time": 1, "value": 6.62 }
+ ]
+ },
+ "huo_5": {
+ "rotate": [
+ {
+ "value": 10.01,
+ "curve": [ 0.012, 10.18, 0.022, 10.42 ]
+ },
+ {
+ "time": 0.0333,
+ "value": 10.42,
+ "curve": [ 0.089, 10.42, 0.144, 7.13 ]
+ },
+ {
+ "time": 0.2,
+ "value": 4.7,
+ "curve": [ 0.311, -0.17, 0.422, -11.47 ]
+ },
+ {
+ "time": 0.5333,
+ "value": -11.47,
+ "curve": [ 0.689, -11.47, 0.846, 7.58 ]
+ },
+ { "time": 1, "value": 10.01 }
+ ]
+ },
+ "huo_17": {
+ "rotate": [
+ {
+ "value": 8.14,
+ "curve": [ 0.034, 9.5, 0.067, 10.42 ]
+ },
+ {
+ "time": 0.1,
+ "value": 10.42,
+ "curve": [ 0.267, 10.42, 0.433, -11.47 ]
+ },
+ {
+ "time": 0.6,
+ "value": -11.47,
+ "curve": [ 0.734, -11.47, 0.868, 2.59 ]
+ },
+ { "time": 1, "value": 8.14 }
+ ]
+ },
+ "huo_10": {
+ "rotate": [
+ {
+ "value": -11.47,
+ "curve": [ 0.167, -11.47, 0.333, 10.42 ]
+ },
+ {
+ "time": 0.5,
+ "value": 10.42,
+ "curve": [ 0.667, 10.42, 0.833, -11.47 ]
+ },
+ { "time": 1, "value": -11.47 }
+ ],
+ "translate": [
+ {
+ "x": -3.81,
+ "y": -4.16,
+ "curve": [ 0.068, -4.92, 0.134, -5.88, 0.068, -5.39, 0.134, -6.43 ]
+ },
+ {
+ "time": 0.2,
+ "x": -5.88,
+ "y": -6.43,
+ "curve": [ 0.367, -5.88, 0.533, 0, 0.367, -6.43, 0.533, 0 ]
+ },
+ {
+ "time": 0.7,
+ "curve": [ 0.801, 0, 0.901, -2.11, 0.801, 0, 0.901, -2.31 ]
+ },
+ { "time": 1, "x": -3.81, "y": -4.16 }
+ ]
+ },
+ "huo_20": {
+ "translate": [
+ {
+ "curve": [ 0.167, 0, 0.333, -5.88, 0.167, 0, 0.333, -6.43 ]
+ },
+ {
+ "time": 0.5,
+ "x": -5.88,
+ "y": -6.43,
+ "curve": [ 0.667, -5.88, 0.833, 0, 0.667, -6.43, 0.833, 0 ]
+ },
+ { "time": 1 }
+ ]
+ },
+ "huo_13": {
+ "translate": [
+ {
+ "x": -3.23,
+ "y": -3.53,
+ "curve": [ 0.09, -1.68, 0.178, 0, 0.09, -1.83, 0.178, 0 ]
+ },
+ {
+ "time": 0.2667,
+ "curve": [ 0.433, 0, 0.6, -5.88, 0.433, 0, 0.6, -6.43 ]
+ },
+ {
+ "time": 0.7667,
+ "x": -5.88,
+ "y": -6.43,
+ "curve": [ 0.845, -5.88, 0.923, -4.6, 0.845, -6.43, 0.923, -5.04 ]
+ },
+ { "time": 1, "x": -3.23, "y": -3.53 }
+ ]
+ },
+ "huo_23": {
+ "translate": [
+ {
+ "x": -3.23,
+ "y": -3.53,
+ "curve": [ 0.09, -1.68, 0.178, 0, 0.09, -1.83, 0.178, 0 ]
+ },
+ {
+ "time": 0.2667,
+ "curve": [ 0.433, 0, 0.6, -5.88, 0.433, 0, 0.6, -6.43 ]
+ },
+ {
+ "time": 0.7667,
+ "x": -5.88,
+ "y": -6.43,
+ "curve": [ 0.845, -5.88, 0.923, -4.6, 0.845, -6.43, 0.923, -5.04 ]
+ },
+ { "time": 1, "x": -3.23, "y": -3.53 }
+ ]
+ },
+ "huo_6": {
+ "translate": [
+ {
+ "x": -0.61,
+ "y": -0.67,
+ "curve": [ 0.034, -0.25, 0.067, 0, 0.034, -0.27, 0.067, 0 ]
+ },
+ {
+ "time": 0.1,
+ "curve": [ 0.267, 0, 0.433, -5.88, 0.267, 0, 0.433, -6.43 ]
+ },
+ {
+ "time": 0.6,
+ "x": -5.88,
+ "y": -6.43,
+ "curve": [ 0.734, -5.88, 0.868, -2.1, 0.734, -6.43, 0.868, -2.3 ]
+ },
+ { "time": 1, "x": -0.61, "y": -0.67 }
+ ]
+ },
+ "huo_2": {
+ "translate": [
+ {
+ "x": -0.61,
+ "y": -0.67,
+ "curve": [ 0.134, -2.13, 0.267, -5.88, 0.134, -2.33, 0.267, -6.43 ]
+ },
+ {
+ "time": 0.4,
+ "x": -5.88,
+ "y": -6.43,
+ "curve": [ 0.567, -5.88, 0.733, 0, 0.567, -6.43, 0.733, 0 ]
+ },
+ {
+ "time": 0.9,
+ "curve": [ 0.934, 0, 0.968, -0.22, 0.934, 0, 0.968, -0.25 ]
+ },
+ { "time": 1, "x": -0.61, "y": -0.67 }
+ ]
+ },
+ "mtc2": {
+ "translate": [
+ {
+ "curve": [ 0.078, 0, 0.156, 0, 0.078, 0, 0.156, 2.44 ]
+ },
+ {
+ "time": 0.2333,
+ "y": 2.44,
+ "curve": [ 0.322, 0, 0.411, 0, 0.322, 2.44, 0.411, 0 ]
+ },
+ {
+ "time": 0.5,
+ "curve": [ 0.578, 0, 0.656, 0, 0.578, 0, 0.656, 2.44 ]
+ },
+ {
+ "time": 0.7333,
+ "y": 2.44,
+ "curve": [ 0.822, 0, 0.911, 0, 0.822, 2.44, 0.911, 0 ]
+ },
+ { "time": 1 }
+ ]
+ }
+ }
+ },
+ "7_payout": {
+ "slots": {
+ "che": {
+ "attachment": [
+ { "name": "che" }
+ ]
+ },
+ "huobeijing": {
+ "attachment": [
+ { "name": "huobeijing" }
+ ]
+ },
+ "pqg": {
+ "attachment": [
+ { "name": "pqg" }
+ ]
+ },
+ "wenzi": {
+ "attachment": [
+ { "name": "wenzi" }
+ ]
+ }
+ },
+ "bones": {
+ "wild": {
+ "scale": [
+ {
+ "curve": [ 0.111, 0.967, 0.222, 0.9, 0.111, 0.967, 0.222, 0.9 ]
+ },
+ {
+ "time": 0.3333,
+ "x": 0.9,
+ "y": 0.9,
+ "curve": [ 0.444, 0.9, 0.556, 1.1, 0.444, 0.9, 0.556, 1.1 ]
+ },
+ {
+ "time": 0.6667,
+ "x": 1.1,
+ "y": 1.1,
+ "curve": [ 0.778, 1.1, 0.889, 1.033, 0.778, 1.1, 0.889, 1.033 ]
+ },
+ { "time": 1 }
+ ]
+ },
+ "mtc2": {
+ "translate": [
+ {
+ "curve": [ 0.078, 0, 0.156, 0, 0.078, 0, 0.156, 2.44 ]
+ },
+ {
+ "time": 0.2333,
+ "y": 2.44,
+ "curve": [ 0.322, 0, 0.411, 0, 0.322, 2.44, 0.411, 0 ]
+ },
+ {
+ "time": 0.5,
+ "curve": [ 0.578, 0, 0.656, 0, 0.578, 0, 0.656, 2.44 ]
+ },
+ {
+ "time": 0.7333,
+ "y": 2.44,
+ "curve": [ 0.822, 0, 0.911, 0, 0.822, 2.44, 0.911, 0 ]
+ },
+ { "time": 1 }
+ ]
+ },
+ "huo_3": {
+ "rotate": [
+ {
+ "value": -3.77,
+ "curve": [ 0.068, -7.92, 0.133, -11.47 ]
+ },
+ {
+ "time": 0.2,
+ "value": -11.47,
+ "curve": [ 0.367, -11.47, 0.533, 10.42 ]
+ },
+ {
+ "time": 0.7,
+ "value": 10.42,
+ "curve": [ 0.8, 10.42, 0.901, 2.56 ]
+ },
+ { "time": 1, "value": -3.77 }
+ ]
+ },
+ "huo_17": {
+ "rotate": [
+ {
+ "value": 8.14,
+ "curve": [ 0.034, 9.5, 0.067, 10.42 ]
+ },
+ {
+ "time": 0.1,
+ "value": 10.42,
+ "curve": [ 0.267, 10.42, 0.433, -11.47 ]
+ },
+ {
+ "time": 0.6,
+ "value": -11.47,
+ "curve": [ 0.734, -11.47, 0.868, 2.59 ]
+ },
+ { "time": 1, "value": 8.14 }
+ ]
+ },
+ "huo_7": {
+ "rotate": [
+ {
+ "value": -7.56,
+ "curve": [ 0.046, -9.8, 0.089, -11.47 ]
+ },
+ {
+ "time": 0.1333,
+ "value": -11.47,
+ "curve": [ 0.3, -11.47, 0.467, 10.42 ]
+ },
+ {
+ "time": 0.6333,
+ "value": 10.42,
+ "curve": [ 0.756, 10.42, 0.879, -1.3 ]
+ },
+ { "time": 1, "value": -7.56 }
+ ]
+ },
+ "huo_14": {
+ "rotate": [
+ {
+ "value": 2.66,
+ "curve": [ 0.057, -0.81, 0.112, -4.8 ]
+ },
+ {
+ "time": 0.1667,
+ "value": -7.62,
+ "curve": [ 0.212, -9.85, 0.256, -11.47 ]
+ },
+ {
+ "time": 0.3,
+ "value": -11.47,
+ "curve": [ 0.467, -11.47, 0.633, 10.42 ]
+ },
+ {
+ "time": 0.8,
+ "value": 10.42,
+ "curve": [ 0.812, 10.42, 0.823, 10.21 ]
+ },
+ {
+ "time": 0.8333,
+ "value": 10.01,
+ "curve": [ 0.889, 9.06, 0.945, 6.12 ]
+ },
+ { "time": 1, "value": 2.66 }
+ ]
+ },
+ "huo_8": {
+ "rotate": [
+ {
+ "value": 2.78,
+ "curve": [ 0.045, -0.01, 0.089, -3.16 ]
+ },
+ {
+ "time": 0.1333,
+ "value": -5.75,
+ "curve": [ 0.19, -8.95, 0.245, -11.47 ]
+ },
+ {
+ "time": 0.3,
+ "value": -11.47,
+ "curve": [ 0.467, -11.47, 0.633, 10.42 ]
+ },
+ {
+ "time": 0.8,
+ "value": 10.42,
+ "curve": [ 0.867, 10.42, 0.934, 6.97 ]
+ },
+ { "time": 1, "value": 2.78 }
+ ]
+ },
+ "huo_4": {
+ "rotate": [
+ {
+ "value": 6.62,
+ "curve": [ 0.067, 3.21, 0.133, -2.46 ]
+ },
+ {
+ "time": 0.2,
+ "value": -5.75,
+ "curve": [ 0.256, -8.49, 0.311, -11.47 ]
+ },
+ {
+ "time": 0.3667,
+ "value": -11.47,
+ "curve": [ 0.533, -11.47, 0.7, 10.42 ]
+ },
+ {
+ "time": 0.8667,
+ "value": 10.42,
+ "curve": [ 0.911, 10.42, 0.956, 8.9 ]
+ },
+ { "time": 1, "value": 6.62 }
+ ]
+ },
+ "huo_12": {
+ "rotate": [
+ {
+ "value": 4.7,
+ "curve": [ 0.112, -1.79, 0.223, -11.47 ]
+ },
+ {
+ "time": 0.3333,
+ "value": -11.47,
+ "curve": [ 0.5, -11.47, 0.667, 10.42 ]
+ },
+ {
+ "time": 0.8333,
+ "value": 10.42,
+ "curve": [ 0.889, 10.42, 0.946, 7.99 ]
+ },
+ { "time": 1, "value": 4.7 }
+ ]
+ },
+ "huo_2": {
+ "translate": [
+ {
+ "x": -0.61,
+ "y": -0.67,
+ "curve": [ 0.134, -2.13, 0.267, -5.88, 0.134, -2.33, 0.267, -6.43 ]
+ },
+ {
+ "time": 0.4,
+ "x": -5.88,
+ "y": -6.43,
+ "curve": [ 0.567, -5.88, 0.733, 0, 0.567, -6.43, 0.733, 0 ]
+ },
+ {
+ "time": 0.9,
+ "curve": [ 0.934, 0, 0.968, -0.22, 0.934, 0, 0.968, -0.25 ]
+ },
+ { "time": 1, "x": -0.61, "y": -0.67 }
+ ]
+ },
+ "huo_9": {
+ "rotate": [
+ {
+ "value": 10.15,
+ "curve": [ 0.045, 9.42, 0.09, 7.33 ]
+ },
+ {
+ "time": 0.1333,
+ "value": 4.7,
+ "curve": [ 0.246, -1.79, 0.356, -11.47 ]
+ },
+ {
+ "time": 0.4667,
+ "value": -11.47,
+ "curve": [ 0.633, -11.47, 0.8, 10.42 ]
+ },
+ {
+ "time": 0.9667,
+ "value": 10.42,
+ "curve": [ 0.978, 10.42, 0.989, 10.33 ]
+ },
+ { "time": 1, "value": 10.15 }
+ ]
+ },
+ "huo_11": {
+ "rotate": [
+ {
+ "value": -5.75,
+ "curve": [ 0.057, -8.95, 0.112, -11.47 ]
+ },
+ {
+ "time": 0.1667,
+ "value": -11.47,
+ "curve": [ 0.333, -11.47, 0.5, 10.42 ]
+ },
+ {
+ "time": 0.6667,
+ "value": 10.42,
+ "curve": [ 0.778, 10.42, 0.89, 0.73 ]
+ },
+ { "time": 1, "value": -5.75 }
+ ]
+ },
+ "huo_15": {
+ "rotate": [
+ {
+ "value": 10.13,
+ "curve": [ 0.056, 9.23, 0.112, 6.27 ]
+ },
+ {
+ "time": 0.1667,
+ "value": 2.78,
+ "curve": [ 0.212, -0.01, 0.256, -3.16 ]
+ },
+ {
+ "time": 0.3,
+ "value": -5.75,
+ "curve": [ 0.357, -8.95, 0.412, -11.47 ]
+ },
+ {
+ "time": 0.4667,
+ "value": -11.47,
+ "curve": [ 0.589, -11.47, 0.712, 0.25 ]
+ },
+ {
+ "time": 0.8333,
+ "value": 6.51,
+ "curve": [ 0.879, 8.75, 0.923, 10.42 ]
+ },
+ {
+ "time": 0.9667,
+ "value": 10.42,
+ "curve": [ 0.978, 10.42, 0.989, 10.31 ]
+ },
+ { "time": 1, "value": 10.13 }
+ ]
+ },
+ "huo_10": {
+ "rotate": [
+ {
+ "value": -11.47,
+ "curve": [ 0.167, -11.47, 0.333, 10.42 ]
+ },
+ {
+ "time": 0.5,
+ "value": 10.42,
+ "curve": [ 0.667, 10.42, 0.833, -11.47 ]
+ },
+ { "time": 1, "value": -11.47 }
+ ],
+ "translate": [
+ {
+ "x": -3.81,
+ "y": -4.16,
+ "curve": [ 0.068, -4.92, 0.134, -5.88, 0.068, -5.39, 0.134, -6.43 ]
+ },
+ {
+ "time": 0.2,
+ "x": -5.88,
+ "y": -6.43,
+ "curve": [ 0.367, -5.88, 0.533, 0, 0.367, -6.43, 0.533, 0 ]
+ },
+ {
+ "time": 0.7,
+ "curve": [ 0.801, 0, 0.901, -2.11, 0.801, 0, 0.901, -2.31 ]
+ },
+ { "time": 1, "x": -3.81, "y": -4.16 }
+ ]
+ },
+ "huo_16": {
+ "rotate": [
+ {
+ "value": 6.52,
+ "curve": [ 0.045, 8.79, 0.089, 10.42 ]
+ },
+ {
+ "time": 0.1333,
+ "value": 10.42,
+ "curve": [ 0.145, 10.42, 0.156, 10.33 ]
+ },
+ {
+ "time": 0.1667,
+ "value": 10.15,
+ "curve": [ 0.212, 9.42, 0.256, 7.33 ]
+ },
+ {
+ "time": 0.3,
+ "value": 4.7,
+ "curve": [ 0.412, -1.79, 0.523, -11.47 ]
+ },
+ {
+ "time": 0.6333,
+ "value": -11.47,
+ "curve": [ 0.701, -11.47, 0.768, -8.02 ]
+ },
+ {
+ "time": 0.8333,
+ "value": -3.77,
+ "curve": [ 0.89, -0.27, 0.945, 3.66 ]
+ },
+ { "time": 1, "value": 6.52 }
+ ]
+ },
+ "huo_18": {
+ "rotate": [
+ {
+ "value": -1.61,
+ "curve": [ 0.09, 4.17, 0.178, 10.42 ]
+ },
+ {
+ "time": 0.2667,
+ "value": 10.42,
+ "curve": [ 0.378, 10.42, 0.49, 0.73 ]
+ },
+ {
+ "time": 0.6,
+ "value": -5.75,
+ "curve": [ 0.657, -8.95, 0.712, -11.47 ]
+ },
+ {
+ "time": 0.7667,
+ "value": -11.47,
+ "curve": [ 0.845, -11.47, 0.923, -6.73 ]
+ },
+ { "time": 1, "value": -1.61 }
+ ]
+ },
+ "huo_5": {
+ "rotate": [
+ {
+ "value": 10.01,
+ "curve": [ 0.012, 10.18, 0.022, 10.42 ]
+ },
+ {
+ "time": 0.0333,
+ "value": 10.42,
+ "curve": [ 0.089, 10.42, 0.144, 7.13 ]
+ },
+ {
+ "time": 0.2,
+ "value": 4.7,
+ "curve": [ 0.311, -0.17, 0.422, -11.47 ]
+ },
+ {
+ "time": 0.5333,
+ "value": -11.47,
+ "curve": [ 0.689, -11.47, 0.846, 7.58 ]
+ },
+ { "time": 1, "value": 10.01 }
+ ]
+ },
+ "huo_21": {
+ "rotate": [
+ {
+ "value": -5.75,
+ "curve": [ 0.056, -8.98, 0.112, -11.47 ]
+ },
+ {
+ "time": 0.1667,
+ "value": -11.47,
+ "curve": [ 0.333, -11.47, 0.5, 10.42 ]
+ },
+ {
+ "time": 0.6667,
+ "value": 10.42,
+ "curve": [ 0.767, 10.42, 0.989, -5.1 ]
+ },
+ { "time": 1, "value": -5.75 }
+ ]
+ },
+ "huo_13": {
+ "translate": [
+ {
+ "x": -3.23,
+ "y": -3.53,
+ "curve": [ 0.09, -1.68, 0.178, 0, 0.09, -1.83, 0.178, 0 ]
+ },
+ {
+ "time": 0.2667,
+ "curve": [ 0.433, 0, 0.6, -5.88, 0.433, 0, 0.6, -6.43 ]
+ },
+ {
+ "time": 0.7667,
+ "x": -5.88,
+ "y": -6.43,
+ "curve": [ 0.845, -5.88, 0.923, -4.6, 0.845, -6.43, 0.923, -5.04 ]
+ },
+ { "time": 1, "x": -3.23, "y": -3.53 }
+ ]
+ },
+ "huo_6": {
+ "translate": [
+ {
+ "x": -0.61,
+ "y": -0.67,
+ "curve": [ 0.034, -0.25, 0.067, 0, 0.034, -0.27, 0.067, 0 ]
+ },
+ {
+ "time": 0.1,
+ "curve": [ 0.267, 0, 0.433, -5.88, 0.267, 0, 0.433, -6.43 ]
+ },
+ {
+ "time": 0.6,
+ "x": -5.88,
+ "y": -6.43,
+ "curve": [ 0.734, -5.88, 0.868, -2.1, 0.734, -6.43, 0.868, -2.3 ]
+ },
+ { "time": 1, "x": -0.61, "y": -0.67 }
+ ]
+ },
+ "huo_25": {
+ "rotate": [
+ {
+ "value": -5.75,
+ "curve": [ 0.057, -8.95, 0.112, -11.47 ]
+ },
+ {
+ "time": 0.1667,
+ "value": -11.47,
+ "curve": [ 0.333, -11.47, 0.5, 10.42 ]
+ },
+ {
+ "time": 0.6667,
+ "value": 10.42,
+ "curve": [ 0.778, 10.42, 0.89, 0.73 ]
+ },
+ { "time": 1, "value": -5.75 }
+ ]
+ },
+ "huo_23": {
+ "translate": [
+ {
+ "x": -3.23,
+ "y": -3.53,
+ "curve": [ 0.09, -1.68, 0.178, 0, 0.09, -1.83, 0.178, 0 ]
+ },
+ {
+ "time": 0.2667,
+ "curve": [ 0.433, 0, 0.6, -5.88, 0.433, 0, 0.6, -6.43 ]
+ },
+ {
+ "time": 0.7667,
+ "x": -5.88,
+ "y": -6.43,
+ "curve": [ 0.845, -5.88, 0.923, -4.6, 0.845, -6.43, 0.923, -5.04 ]
+ },
+ { "time": 1, "x": -3.23, "y": -3.53 }
+ ]
+ },
+ "huo_20": {
+ "translate": [
+ {
+ "curve": [ 0.167, 0, 0.333, -5.88, 0.167, 0, 0.333, -6.43 ]
+ },
+ {
+ "time": 0.5,
+ "x": -5.88,
+ "y": -6.43,
+ "curve": [ 0.667, -5.88, 0.833, 0, 0.667, -6.43, 0.833, 0 ]
+ },
+ { "time": 1 }
+ ]
+ },
+ "huo_22": {
+ "rotate": [
+ {
+ "value": 6.51,
+ "curve": [ 0.123, 0.21, 0.245, -11.47 ]
+ },
+ {
+ "time": 0.3667,
+ "value": -11.47,
+ "curve": [ 0.533, -11.47, 0.7, 10.42 ]
+ },
+ {
+ "time": 0.8667,
+ "value": 10.42,
+ "curve": [ 0.912, 10.42, 0.957, 8.84 ]
+ },
+ { "time": 1, "value": 6.51 }
+ ]
+ },
+ "huo_19": {
+ "rotate": [
+ {
+ "value": -10.31,
+ "curve": [ 0.146, -5.85, 0.289, 10.42 ]
+ },
+ {
+ "time": 0.4333,
+ "value": 10.42,
+ "curve": [ 0.489, 10.42, 0.546, 7.99 ]
+ },
+ {
+ "time": 0.6,
+ "value": 4.7,
+ "curve": [ 0.712, -1.79, 0.823, -11.47 ]
+ },
+ {
+ "time": 0.9333,
+ "value": -11.47,
+ "curve": [ 0.956, -11.47, 0.979, -11.01 ]
+ },
+ { "time": 1, "value": -10.31 }
+ ]
+ },
+ "huo_24": {
+ "rotate": [
+ {
+ "value": -11.47,
+ "curve": [ 0.167, -11.47, 0.333, 10.42 ]
+ },
+ {
+ "time": 0.5,
+ "value": 10.42,
+ "curve": [ 0.667, 10.42, 0.833, -11.47 ]
+ },
+ { "time": 1, "value": -11.47 }
+ ]
+ }
+ }
+ },
+ "7_spawn": {
+ "slots": {
+ "che": {
+ "attachment": [
+ { "name": "che" }
+ ]
+ },
+ "huobeijing": {
+ "attachment": [
+ { "name": "huobeijing" }
+ ]
+ },
+ "pqg": {
+ "attachment": [
+ { "name": "pqg" }
+ ]
+ },
+ "wenzi": {
+ "attachment": [
+ { "name": "wenzi" }
+ ]
+ }
+ },
+ "bones": {
+ "item_7": {
+ "translate": [
+ {
+ "curve": [ 0.033, 0, 0.067, 0, 0.033, -2.53, 0.067, -4.53 ]
+ },
+ {
+ "time": 0.1,
+ "y": -4.53,
+ "curve": [ 0.144, 0, 0.189, 0, 0.144, -4.53, 0.189, 3.94 ]
+ },
+ {
+ "time": 0.2333,
+ "y": 3.94,
+ "curve": [ 0.267, 0, 0.3, 0, 0.267, 3.94, 0.3, 2.53 ]
+ },
+ { "time": 0.3333 }
+ ]
+ },
+ "mtc2": {
+ "scale": [
+ {
+ "curve": [ 0.022, 1, 0.044, 1, 0.022, 1.005, 0.044, 1.015 ]
+ },
+ {
+ "time": 0.0667,
+ "y": 1.015,
+ "curve": [ 0.133, 1, 0.2, 1, 0.133, 1.015, 0.2, 0.993 ]
+ },
+ {
+ "time": 0.2667,
+ "y": 0.993,
+ "curve": [ 0.289, 1, 0.311, 1, 0.289, 0.993, 0.311, 0.998 ]
+ },
+ { "time": 0.3333 }
+ ]
+ },
+ "huo_7": {
+ "rotate": [
+ {
+ "value": -7.56,
+ "curve": [ 0.015, -9.8, 0.019, -11.47 ]
+ },
+ {
+ "time": 0.0333,
+ "value": -11.47,
+ "curve": [ 0.089, -11.47, 0.144, 10.42 ]
+ },
+ {
+ "time": 0.2,
+ "value": 10.42,
+ "curve": [ 0.241, 10.42, 0.293, -1.3 ]
+ },
+ { "time": 0.3333, "value": -7.56 }
+ ]
+ },
+ "huo_12": {
+ "rotate": [
+ {
+ "value": 4.7,
+ "curve": [ 0.037, -1.79, 0.063, -11.47 ]
+ },
+ {
+ "time": 0.1,
+ "value": -11.47,
+ "curve": [ 0.156, -11.47, 0.211, 10.42 ]
+ },
+ {
+ "time": 0.2667,
+ "value": 10.42,
+ "curve": [ 0.285, 10.42, 0.315, 7.99 ]
+ },
+ { "time": 0.3333, "value": 4.7 }
+ ]
+ },
+ "huo_18": {
+ "rotate": [
+ {
+ "value": -1.61,
+ "curve": [ 0.03, 4.17, 0.071, 10.42 ]
+ },
+ {
+ "time": 0.1,
+ "value": 10.42,
+ "curve": [ 0.137, 10.42, 0.163, 0.73 ]
+ },
+ {
+ "time": 0.2,
+ "value": -5.75,
+ "curve": [ 0.219, -8.95, 0.248, -11.47 ]
+ },
+ {
+ "time": 0.2667,
+ "value": -11.47,
+ "curve": [ 0.293, -11.47, 0.308, -6.73 ]
+ },
+ { "time": 0.3333, "value": -1.61 }
+ ]
+ },
+ "huo_16": {
+ "rotate": [
+ {
+ "value": 6.52,
+ "curve": [ 0.015, 8.79, 0.019, 10.42 ]
+ },
+ {
+ "time": 0.0333,
+ "value": 10.42,
+ "curve": [ 0.037, 10.42, 0.063, 10.33 ]
+ },
+ {
+ "time": 0.0667,
+ "value": 10.15,
+ "curve": [ 0.082, 9.42, 0.085, 7.33 ]
+ },
+ {
+ "time": 0.1,
+ "value": 4.7,
+ "curve": [ 0.137, -1.79, 0.163, -11.47 ]
+ },
+ {
+ "time": 0.2,
+ "value": -11.47,
+ "curve": [ 0.222, -11.47, 0.245, -8.02 ]
+ },
+ {
+ "time": 0.2667,
+ "value": -3.77,
+ "curve": [ 0.285, -0.27, 0.315, 3.66 ]
+ },
+ { "time": 0.3333, "value": 6.52 }
+ ]
+ },
+ "huo_3": {
+ "rotate": [
+ {
+ "value": -3.77,
+ "curve": [ 0.023, -7.92, 0.044, -11.47 ]
+ },
+ {
+ "time": 0.0667,
+ "value": -11.47,
+ "curve": [ 0.122, -11.47, 0.178, 10.42 ]
+ },
+ {
+ "time": 0.2333,
+ "value": 10.42,
+ "curve": [ 0.267, 10.42, 0.3, 2.56 ]
+ },
+ { "time": 0.3333, "value": -3.77 }
+ ]
+ },
+ "huo_10": {
+ "rotate": [
+ {
+ "value": -11.47,
+ "curve": [ 0.056, -11.47, 0.111, 10.42 ]
+ },
+ {
+ "time": 0.1667,
+ "value": 10.42,
+ "curve": [ 0.222, 10.42, 0.278, -11.47 ]
+ },
+ { "time": 0.3333, "value": -11.47 }
+ ],
+ "translate": [
+ {
+ "x": -3.81,
+ "y": -4.16,
+ "curve": [ 0.023, -4.92, 0.045, -5.88, 0.023, -5.39, 0.045, -6.43 ]
+ },
+ {
+ "time": 0.0667,
+ "x": -5.88,
+ "y": -6.43,
+ "curve": [ 0.122, -5.88, 0.178, 0, 0.122, -6.43, 0.178, 0 ]
+ },
+ {
+ "time": 0.2333,
+ "curve": [ 0.267, 0, 0.3, -2.11, 0.267, 0, 0.3, -2.31 ]
+ },
+ { "time": 0.3333, "x": -3.81, "y": -4.16 }
+ ]
+ },
+ "huo_9": {
+ "rotate": [
+ {
+ "value": 10.15,
+ "curve": [ 0.015, 9.42, 0.019, 7.33 ]
+ },
+ {
+ "time": 0.0333,
+ "value": 4.7,
+ "curve": [ 0.071, -1.79, 0.13, -11.47 ]
+ },
+ {
+ "time": 0.1667,
+ "value": -11.47,
+ "curve": [ 0.222, -11.47, 0.33, 10.33 ]
+ },
+ { "time": 0.3333, "value": 10.15 }
+ ]
+ },
+ "huo_5": {
+ "rotate": [
+ {
+ "value": 10.42,
+ "curve": [ 0.019, 10.42, 0.048, 7.13 ]
+ },
+ {
+ "time": 0.0667,
+ "value": 4.7,
+ "curve": [ 0.104, -0.17, 0.13, -11.47 ]
+ },
+ {
+ "time": 0.1667,
+ "value": -11.47,
+ "curve": [ 0.219, -11.47, 0.282, 7.58 ]
+ },
+ { "time": 0.3333, "value": 10.01 }
+ ]
+ },
+ "huo_14": {
+ "rotate": [
+ {
+ "value": 2.66,
+ "curve": [ 0.019, -0.81, 0.048, -4.8 ]
+ },
+ {
+ "time": 0.0667,
+ "value": -7.62,
+ "curve": [ 0.082, -9.85, 0.085, -11.47 ]
+ },
+ {
+ "time": 0.1,
+ "value": -11.47,
+ "curve": [ 0.156, -11.47, 0.263, 10.21 ]
+ },
+ {
+ "time": 0.2667,
+ "value": 10.01,
+ "curve": [ 0.285, 9.06, 0.315, 6.12 ]
+ },
+ { "time": 0.3333, "value": 2.66 }
+ ]
+ },
+ "huo_4": {
+ "rotate": [
+ {
+ "value": 6.62,
+ "curve": [ 0.022, 3.21, 0.044, -2.46 ]
+ },
+ {
+ "time": 0.0667,
+ "value": -5.75,
+ "curve": [ 0.085, -8.49, 0.115, -11.47 ]
+ },
+ {
+ "time": 0.1333,
+ "value": -11.47,
+ "curve": [ 0.189, -11.47, 0.244, 10.42 ]
+ },
+ {
+ "time": 0.3,
+ "value": 10.42,
+ "curve": [ 0.315, 10.42, 0.319, 8.9 ]
+ },
+ { "time": 0.3333, "value": 6.62 }
+ ]
+ },
+ "huo_15": {
+ "rotate": [
+ {
+ "value": 10.13,
+ "curve": [ 0.019, 9.23, 0.048, 6.27 ]
+ },
+ {
+ "time": 0.0667,
+ "value": 2.78,
+ "curve": [ 0.082, -0.01, 0.085, -3.16 ]
+ },
+ {
+ "time": 0.1,
+ "value": -5.75,
+ "curve": [ 0.119, -8.95, 0.148, -11.47 ]
+ },
+ {
+ "time": 0.1667,
+ "value": -11.47,
+ "curve": [ 0.208, -11.47, 0.226, 0.25 ]
+ },
+ {
+ "time": 0.2667,
+ "value": 6.51,
+ "curve": [ 0.282, 8.75, 0.33, 10.31 ]
+ },
+ { "time": 0.3333, "value": 10.13 }
+ ]
+ },
+ "huo_21": {
+ "rotate": [
+ {
+ "value": -5.75,
+ "curve": [ 0.019, -8.98, 0.048, -11.47 ]
+ },
+ {
+ "time": 0.0667,
+ "value": -11.47,
+ "curve": [ 0.122, -11.47, 0.178, 10.42 ]
+ },
+ {
+ "time": 0.2333,
+ "value": 10.42,
+ "curve": [ 0.267, 10.42, 0.33, -5.1 ]
+ },
+ { "time": 0.3333, "value": -5.75 }
+ ]
+ },
+ "huo_11": {
+ "rotate": [
+ {
+ "value": -5.75,
+ "curve": [ 0.019, -8.95, 0.048, -11.47 ]
+ },
+ {
+ "time": 0.0667,
+ "value": -11.47,
+ "curve": [ 0.122, -11.47, 0.178, 10.42 ]
+ },
+ {
+ "time": 0.2333,
+ "value": 10.42,
+ "curve": [ 0.271, 10.42, 0.297, 0.73 ]
+ },
+ { "time": 0.3333, "value": -5.75 }
+ ]
+ },
+ "huo_17": {
+ "rotate": [
+ {
+ "value": 8.14,
+ "curve": [ 0.011, 9.5, 0.022, 10.42 ]
+ },
+ {
+ "time": 0.0333,
+ "value": 10.42,
+ "curve": [ 0.089, 10.42, 0.144, -11.47 ]
+ },
+ {
+ "time": 0.2,
+ "value": -11.47,
+ "curve": [ 0.245, -11.47, 0.289, 2.59 ]
+ },
+ { "time": 0.3333, "value": 8.14 }
+ ]
+ },
+ "huo_8": {
+ "rotate": [
+ {
+ "value": 2.78,
+ "curve": [ 0.015, -0.01, 0.019, -3.16 ]
+ },
+ {
+ "time": 0.0333,
+ "value": -5.75,
+ "curve": [ 0.052, -8.95, 0.082, -11.47 ]
+ },
+ {
+ "time": 0.1,
+ "value": -11.47,
+ "curve": [ 0.156, -11.47, 0.211, 10.42 ]
+ },
+ {
+ "time": 0.2667,
+ "value": 10.42,
+ "curve": [ 0.289, 10.42, 0.311, 6.97 ]
+ },
+ { "time": 0.3333, "value": 2.78 }
+ ]
+ },
+ "huo_24": {
+ "rotate": [
+ {
+ "value": -11.47,
+ "curve": [ 0.056, -11.47, 0.111, 10.42 ]
+ },
+ {
+ "time": 0.1667,
+ "value": 10.42,
+ "curve": [ 0.222, 10.42, 0.278, -11.47 ]
+ },
+ { "time": 0.3333, "value": -11.47 }
+ ]
+ },
+ "huo_19": {
+ "rotate": [
+ {
+ "value": -10.31,
+ "curve": [ 0.049, -5.85, 0.085, 10.42 ]
+ },
+ {
+ "time": 0.1333,
+ "value": 10.42,
+ "curve": [ 0.152, 10.42, 0.182, 7.99 ]
+ },
+ {
+ "time": 0.2,
+ "value": 4.7,
+ "curve": [ 0.237, -1.79, 0.263, -11.47 ]
+ },
+ {
+ "time": 0.3,
+ "value": -11.47,
+ "curve": [ 0.308, -11.47, 0.326, -11.01 ]
+ },
+ { "time": 0.3333, "value": -10.31 }
+ ]
+ },
+ "huo_20": {
+ "translate": [
+ {
+ "curve": [ 0.056, 0, 0.111, -5.88, 0.056, 0, 0.111, -6.43 ]
+ },
+ {
+ "time": 0.1667,
+ "x": -5.88,
+ "y": -6.43,
+ "curve": [ 0.222, -5.88, 0.278, 0, 0.222, -6.43, 0.278, 0 ]
+ },
+ { "time": 0.3333 }
+ ]
+ },
+ "huo_6": {
+ "translate": [
+ {
+ "x": -0.61,
+ "y": -0.67,
+ "curve": [ 0.011, -0.25, 0.022, 0, 0.011, -0.27, 0.022, 0 ]
+ },
+ {
+ "time": 0.0333,
+ "curve": [ 0.089, 0, 0.144, -5.88, 0.089, 0, 0.144, -6.43 ]
+ },
+ {
+ "time": 0.2,
+ "x": -5.88,
+ "y": -6.43,
+ "curve": [ 0.245, -5.88, 0.289, -2.1, 0.245, -6.43, 0.289, -2.3 ]
+ },
+ { "time": 0.3333, "x": -0.61, "y": -0.67 }
+ ]
+ },
+ "huo_25": {
+ "rotate": [
+ {
+ "value": -5.75,
+ "curve": [ 0.019, -8.95, 0.048, -11.47 ]
+ },
+ {
+ "time": 0.0667,
+ "value": -11.47,
+ "curve": [ 0.122, -11.47, 0.178, 10.42 ]
+ },
+ {
+ "time": 0.2333,
+ "value": 10.42,
+ "curve": [ 0.271, 10.42, 0.297, 0.73 ]
+ },
+ { "time": 0.3333, "value": -5.75 }
+ ]
+ },
+ "huo_22": {
+ "rotate": [
+ {
+ "value": 6.51,
+ "curve": [ 0.041, 0.21, 0.093, -11.47 ]
+ },
+ {
+ "time": 0.1333,
+ "value": -11.47,
+ "curve": [ 0.189, -11.47, 0.244, 10.42 ]
+ },
+ {
+ "time": 0.3,
+ "value": 10.42,
+ "curve": [ 0.315, 10.42, 0.319, 8.84 ]
+ },
+ { "time": 0.3333, "value": 6.51 }
+ ]
+ },
+ "huo_13": {
+ "translate": [
+ {
+ "x": -3.23,
+ "y": -3.53,
+ "curve": [ 0.03, -1.68, 0.071, 0, 0.03, -1.83, 0.071, 0 ]
+ },
+ {
+ "time": 0.1,
+ "curve": [ 0.156, 0, 0.211, -5.88, 0.156, 0, 0.211, -6.43 ]
+ },
+ {
+ "time": 0.2667,
+ "x": -5.88,
+ "y": -6.43,
+ "curve": [ 0.293, -5.88, 0.308, -4.6, 0.293, -6.43, 0.308, -5.04 ]
+ },
+ { "time": 0.3333, "x": -3.23, "y": -3.53 }
+ ]
+ },
+ "huo_23": {
+ "translate": [
+ {
+ "x": -3.23,
+ "y": -3.53,
+ "curve": [ 0.03, -1.68, 0.071, 0, 0.03, -1.83, 0.071, 0 ]
+ },
+ {
+ "time": 0.1,
+ "curve": [ 0.156, 0, 0.211, -5.88, 0.156, 0, 0.211, -6.43 ]
+ },
+ {
+ "time": 0.2667,
+ "x": -5.88,
+ "y": -6.43,
+ "curve": [ 0.293, -5.88, 0.308, -4.6, 0.293, -6.43, 0.308, -5.04 ]
+ },
+ { "time": 0.3333, "x": -3.23, "y": -3.53 }
+ ]
+ },
+ "huo_2": {
+ "translate": [
+ {
+ "x": -0.61,
+ "y": -0.67,
+ "curve": [ 0.045, -2.13, 0.089, -5.88, 0.045, -2.33, 0.089, -6.43 ]
+ },
+ {
+ "time": 0.1333,
+ "x": -5.88,
+ "y": -6.43,
+ "curve": [ 0.189, -5.88, 0.244, 0, 0.189, -6.43, 0.244, 0 ]
+ },
+ {
+ "time": 0.3,
+ "curve": [ 0.311, 0, 0.323, -0.22, 0.311, 0, 0.323, -0.25 ]
+ },
+ { "time": 0.3333, "x": -0.61, "y": -0.67 }
+ ]
+ },
+ "wild": {
+ "translate": [
+ {
+ "curve": [ 0.033, 0.12, 0.067, 0.36, 0.033, -2.11, 0.067, -3.37 ]
+ },
+ {
+ "time": 0.1,
+ "x": 0.36,
+ "y": -3.37,
+ "curve": [ 0.144, 0.36, 0.189, -0.33, 0.144, -3.37, 0.189, 3.2 ]
+ },
+ {
+ "time": 0.2333,
+ "x": -0.33,
+ "y": 3.2,
+ "curve": [ 0.267, -0.33, 0.3, -0.11, 0.267, 3.2, 0.3, 1.96 ]
+ },
+ { "time": 0.3333 }
+ ]
+ }
+ }
+ },
+ "7_win": {
+ "slots": {
+ "che": {
+ "attachment": [
+ { "name": "che" }
+ ]
+ },
+ "che2": {
+ "attachment": [
+ { "name": "item7_3" }
+ ]
+ },
+ "che3": {
+ "attachment": [
+ { "name": "item7_4" }
+ ]
+ },
+ "chedeng": {
+ "alpha": [
+ {
+ "value": 1,
+ "curve": [ 0.033, 1, 0.067, 0 ]
+ },
+ { "time": 0.1, "value": 0, "curve": "stepped" },
+ {
+ "time": 0.1667,
+ "value": 0,
+ "curve": [ 0.2, 0, 0.233, 1 ]
+ },
+ { "time": 0.2667, "value": 1, "curve": "stepped" },
+ {
+ "time": 0.3333,
+ "value": 1,
+ "curve": [ 0.367, 1, 0.4, 0 ]
+ },
+ { "time": 0.4333, "value": 0, "curve": "stepped" },
+ {
+ "time": 0.5,
+ "value": 0,
+ "curve": [ 0.533, 0, 0.567, 1 ]
+ },
+ { "time": 0.6, "value": 1 }
+ ],
+ "attachment": [
+ { "name": "chedeng" }
+ ]
+ },
+ "circle": {
+ "alpha": [
+ { "value": 0.0011 },
+ { "time": 0.0667, "value": 1, "curve": "stepped" },
+ { "time": 0.5, "value": 1 },
+ { "time": 0.6667, "value": 0 }
+ ],
+ "attachment": [
+ { "name": "circle02" }
+ ]
+ },
+ "circle2": {
+ "alpha": [
+ { "value": 0.0011 },
+ { "time": 0.0667, "value": 1, "curve": "stepped" },
+ { "time": 0.5, "value": 1 },
+ { "time": 0.6667, "value": 0 }
+ ],
+ "attachment": [
+ { "name": "circle02" }
+ ]
+ },
+ "huobeijing": {
+ "attachment": [
+ { "name": "huobeijing" }
+ ]
+ },
+ "huobeijing2": {
+ "attachment": [
+ { "name": "item7_1" }
+ ]
+ },
+ "huobeijing3": {
+ "attachment": [
+ { "name": "item7_2" }
+ ]
+ },
+ "hy_01": {
+ "attachment": [
+ { "name": "hy/hy_" }
+ ]
+ },
+ "pqg": {
+ "attachment": [
+ { "name": "pqg" }
+ ]
+ },
+ "wenzi": {
+ "attachment": [
+ { "name": "wenzi" }
+ ]
+ },
+ "wenzi2": {
+ "attachment": [
+ { "name": "item7_5" }
+ ]
+ },
+ "wenzi3": {
+ "attachment": [
+ { "name": "item7_6" }
+ ]
+ }
+ },
+ "bones": {
+ "mtc2": {
+ "scale": [
+ {
+ "curve": [ 0.041, 1, 0.059, 1, 0.041, 1, 0.059, 1.013 ]
+ },
+ {
+ "time": 0.1,
+ "y": 1.013,
+ "curve": [ 0.12, 1, 0.146, 1, 0.12, 1.013, 0.146, 1 ]
+ },
+ {
+ "time": 0.1667,
+ "curve": [ 0.207, 1, 0.226, 1, 0.207, 1, 0.226, 1.013 ]
+ },
+ {
+ "time": 0.2667,
+ "y": 1.013,
+ "curve": [ 0.287, 1, 0.313, 1, 0.287, 1.013, 0.313, 1 ]
+ },
+ {
+ "time": 0.3333,
+ "curve": [ 0.374, 1, 0.447, 1, 0.374, 1, 0.447, 1.013 ]
+ },
+ {
+ "time": 0.5,
+ "y": 1.013,
+ "curve": [ 0.541, 1, 0.592, 1, 0.541, 1.013, 0.592, 1 ]
+ },
+ { "time": 0.6333 }
+ ]
+ },
+ "huo_21": {
+ "rotate": [
+ {
+ "value": -5.75,
+ "curve": [ 0.022, -8.67, 0.044, -11.47 ]
+ },
+ {
+ "time": 0.0667,
+ "value": -11.47,
+ "curve": [ 0.122, -11.47, 0.178, 10.42 ]
+ },
+ {
+ "time": 0.2333,
+ "value": 10.42,
+ "curve": [ 0.267, 10.42, 0.3, -1.37 ]
+ },
+ {
+ "time": 0.3333,
+ "value": -5.75,
+ "curve": [ 0.356, -8.67, 0.378, -11.47 ]
+ },
+ {
+ "time": 0.4,
+ "value": -11.47,
+ "curve": [ 0.456, -11.47, 0.511, 10.42 ]
+ },
+ {
+ "time": 0.5667,
+ "value": 10.42,
+ "curve": [ 0.6, 10.42, 0.633, -1.37 ]
+ },
+ { "time": 0.6667, "value": -5.75 }
+ ]
+ },
+ "huo_24": {
+ "rotate": [
+ {
+ "value": -11.47,
+ "curve": [ 0.056, -11.47, 0.111, 10.42 ]
+ },
+ {
+ "time": 0.1667,
+ "value": 10.42,
+ "curve": [ 0.222, 10.42, 0.278, -11.47 ]
+ },
+ {
+ "time": 0.3333,
+ "value": -11.47,
+ "curve": [ 0.389, -11.47, 0.444, 10.42 ]
+ },
+ {
+ "time": 0.5,
+ "value": 10.42,
+ "curve": [ 0.556, 10.42, 0.611, -11.47 ]
+ },
+ { "time": 0.6667, "value": -11.47 }
+ ]
+ },
+ "huo_3": {
+ "rotate": [
+ {
+ "value": -3.77,
+ "curve": [ 0.022, -6.69, 0.044, -11.47 ]
+ },
+ {
+ "time": 0.0667,
+ "value": -11.47,
+ "curve": [ 0.122, -11.47, 0.178, 10.42 ]
+ },
+ {
+ "time": 0.2333,
+ "value": 10.42,
+ "curve": [ 0.267, 10.42, 0.3, 0.61 ]
+ },
+ {
+ "time": 0.3333,
+ "value": -3.77,
+ "curve": [ 0.356, -6.69, 0.378, -11.47 ]
+ },
+ {
+ "time": 0.4,
+ "value": -11.47,
+ "curve": [ 0.456, -11.47, 0.511, 10.42 ]
+ },
+ {
+ "time": 0.5667,
+ "value": 10.42,
+ "curve": [ 0.6, 10.42, 0.633, 0.61 ]
+ },
+ { "time": 0.6667, "value": -3.77 }
+ ]
+ },
+ "huo_6": {
+ "translate": [
+ {
+ "x": -0.61,
+ "y": -0.67,
+ "curve": [ 0.011, -0.22, 0.022, 0, 0.011, -0.24, 0.022, 0 ]
+ },
+ {
+ "time": 0.0333,
+ "curve": [ 0.089, 0, 0.144, -5.88, 0.089, 0, 0.144, -6.43 ]
+ },
+ {
+ "time": 0.2,
+ "x": -5.88,
+ "y": -6.43,
+ "curve": [ 0.244, -5.88, 0.289, -2.18, 0.244, -6.43, 0.289, -2.38 ]
+ },
+ {
+ "time": 0.3333,
+ "x": -0.61,
+ "y": -0.67,
+ "curve": [ 0.344, -0.22, 0.356, 0, 0.344, -0.24, 0.356, 0 ]
+ },
+ {
+ "time": 0.3667,
+ "curve": [ 0.422, 0, 0.478, -5.88, 0.422, 0, 0.478, -6.43 ]
+ },
+ {
+ "time": 0.5333,
+ "x": -5.88,
+ "y": -6.43,
+ "curve": [ 0.578, -5.88, 0.622, -2.18, 0.578, -6.43, 0.622, -2.38 ]
+ },
+ { "time": 0.6667, "x": -0.61, "y": -0.67 }
+ ]
+ },
+ "huo_2": {
+ "translate": [
+ {
+ "x": -0.61,
+ "y": -0.67,
+ "curve": [ 0.044, -2.18, 0.089, -5.88, 0.044, -2.38, 0.089, -6.43 ]
+ },
+ {
+ "time": 0.1333,
+ "x": -5.88,
+ "y": -6.43,
+ "curve": [ 0.189, -5.88, 0.244, 0, 0.189, -6.43, 0.244, 0 ]
+ },
+ {
+ "time": 0.3,
+ "curve": [ 0.311, 0, 0.322, -0.22, 0.311, 0, 0.322, -0.24 ]
+ },
+ {
+ "time": 0.3333,
+ "x": -0.61,
+ "y": -0.67,
+ "curve": [ 0.378, -2.18, 0.422, -5.88, 0.378, -2.38, 0.422, -6.43 ]
+ },
+ {
+ "time": 0.4667,
+ "x": -5.88,
+ "y": -6.43,
+ "curve": [ 0.522, -5.88, 0.578, 0, 0.522, -6.43, 0.578, 0 ]
+ },
+ {
+ "time": 0.6333,
+ "curve": [ 0.644, 0, 0.656, -0.22, 0.644, 0, 0.656, -0.24 ]
+ },
+ { "time": 0.6667, "x": -0.61, "y": -0.67 }
+ ]
+ },
+ "huo_11": {
+ "rotate": [
+ {
+ "value": -5.75,
+ "curve": [ 0.022, -8.67, 0.044, -11.47 ]
+ },
+ {
+ "time": 0.0667,
+ "value": -11.47,
+ "curve": [ 0.122, -11.47, 0.178, 10.42 ]
+ },
+ {
+ "time": 0.2333,
+ "value": 10.42,
+ "curve": [ 0.267, 10.42, 0.3, -1.37 ]
+ },
+ {
+ "time": 0.3333,
+ "value": -5.75,
+ "curve": [ 0.356, -8.67, 0.378, -11.47 ]
+ },
+ {
+ "time": 0.4,
+ "value": -11.47,
+ "curve": [ 0.456, -11.47, 0.511, 10.42 ]
+ },
+ {
+ "time": 0.5667,
+ "value": 10.42,
+ "curve": [ 0.6, 10.42, 0.633, -1.37 ]
+ },
+ { "time": 0.6667, "value": -5.75 }
+ ]
+ },
+ "huo_10": {
+ "rotate": [
+ {
+ "value": -11.47,
+ "curve": [ 0.056, -11.47, 0.111, 10.42 ]
+ },
+ {
+ "time": 0.1667,
+ "value": 10.42,
+ "curve": [ 0.222, 10.42, 0.278, -11.47 ]
+ },
+ {
+ "time": 0.3333,
+ "value": -11.47,
+ "curve": [ 0.389, -11.47, 0.444, 10.42 ]
+ },
+ {
+ "time": 0.5,
+ "value": 10.42,
+ "curve": [ 0.556, 10.42, 0.611, -11.47 ]
+ },
+ { "time": 0.6667, "value": -11.47 }
+ ],
+ "translate": [
+ {
+ "x": -3.81,
+ "y": -4.16,
+ "curve": [ 0.022, -4.59, 0.044, -5.88, 0.022, -5.02, 0.044, -6.43 ]
+ },
+ {
+ "time": 0.0667,
+ "x": -5.88,
+ "y": -6.43,
+ "curve": [ 0.122, -5.88, 0.178, 0, 0.122, -6.43, 0.178, 0 ]
+ },
+ {
+ "time": 0.2333,
+ "curve": [ 0.267, 0, 0.3, -2.63, 0.267, 0, 0.3, -2.88 ]
+ },
+ {
+ "time": 0.3333,
+ "x": -3.81,
+ "y": -4.16,
+ "curve": [ 0.356, -4.59, 0.378, -5.88, 0.356, -5.02, 0.378, -6.43 ]
+ },
+ {
+ "time": 0.4,
+ "x": -5.88,
+ "y": -6.43,
+ "curve": [ 0.456, -5.88, 0.511, 0, 0.456, -6.43, 0.511, 0 ]
+ },
+ {
+ "time": 0.5667,
+ "curve": [ 0.6, 0, 0.633, -2.63, 0.6, 0, 0.633, -2.88 ]
+ },
+ { "time": 0.6667, "x": -3.81, "y": -4.16 }
+ ]
+ },
+ "huo_5": {
+ "rotate": [
+ {
+ "value": 10.42,
+ "curve": [ 0.022, 8.51, 0.044, 7.62 ]
+ },
+ {
+ "time": 0.0667,
+ "value": 4.7,
+ "curve": [ 0.1, 0.32, 0.133, -11.47 ]
+ },
+ {
+ "time": 0.1667,
+ "value": -11.47,
+ "curve": [ 0.222, -11.47, 0.278, 10.42 ]
+ },
+ {
+ "time": 0.3333,
+ "value": 10.42,
+ "curve": [ 0.356, 10.42, 0.378, 7.62 ]
+ },
+ {
+ "time": 0.4,
+ "value": 4.7,
+ "curve": [ 0.433, 0.32, 0.467, -11.47 ]
+ },
+ {
+ "time": 0.5,
+ "value": -11.47,
+ "curve": [ 0.556, -11.47, 0.611, 2.85 ]
+ },
+ { "time": 0.6667, "value": 10.01 }
+ ]
+ },
+ "huo_15": {
+ "rotate": [
+ {
+ "value": 10.13,
+ "curve": [ 0.022, 10.13, 0.044, 6.31 ]
+ },
+ {
+ "time": 0.0667,
+ "value": 2.78,
+ "curve": [ 0.078, 1.02, 0.089, -4.17 ]
+ },
+ {
+ "time": 0.1,
+ "value": -5.75,
+ "curve": [ 0.122, -8.92, 0.144, -11.47 ]
+ },
+ {
+ "time": 0.1667,
+ "value": -11.47,
+ "curve": [ 0.2, -11.47, 0.233, 2.19 ]
+ },
+ {
+ "time": 0.2667,
+ "value": 6.51,
+ "curve": [ 0.289, 9.39, 0.311, 10.13 ]
+ },
+ {
+ "time": 0.3333,
+ "value": 10.13,
+ "curve": [ 0.356, 10.13, 0.378, 6.31 ]
+ },
+ {
+ "time": 0.4,
+ "value": 2.78,
+ "curve": [ 0.411, 1.02, 0.422, -4.17 ]
+ },
+ {
+ "time": 0.4333,
+ "value": -5.75,
+ "curve": [ 0.456, -8.92, 0.478, -11.47 ]
+ },
+ {
+ "time": 0.5,
+ "value": -11.47,
+ "curve": [ 0.533, -11.47, 0.567, 2.19 ]
+ },
+ {
+ "time": 0.6,
+ "value": 6.51,
+ "curve": [ 0.622, 9.39, 0.644, 10.13 ]
+ },
+ { "time": 0.6667, "value": 10.13 }
+ ]
+ },
+ "huo_16": {
+ "rotate": [
+ {
+ "value": 6.52,
+ "curve": [ 0.011, 8.09, 0.022, 10.42 ]
+ },
+ {
+ "time": 0.0333,
+ "value": 10.42,
+ "curve": [ 0.044, 10.42, 0.056, 10.42 ]
+ },
+ {
+ "time": 0.0667,
+ "value": 10.15,
+ "curve": [ 0.078, 9.87, 0.089, 6.5 ]
+ },
+ {
+ "time": 0.1,
+ "value": 4.7,
+ "curve": [ 0.133, -0.71, 0.167, -11.47 ]
+ },
+ {
+ "time": 0.2,
+ "value": -11.47,
+ "curve": [ 0.222, -11.47, 0.244, -6.77 ]
+ },
+ {
+ "time": 0.2667,
+ "value": -3.77,
+ "curve": [ 0.289, -0.77, 0.311, 3.36 ]
+ },
+ {
+ "time": 0.3333,
+ "value": 6.52,
+ "curve": [ 0.344, 8.09, 0.356, 10.42 ]
+ },
+ {
+ "time": 0.3667,
+ "value": 10.42,
+ "curve": [ 0.378, 10.42, 0.389, 10.42 ]
+ },
+ {
+ "time": 0.4,
+ "value": 10.15,
+ "curve": [ 0.411, 9.87, 0.422, 6.5 ]
+ },
+ {
+ "time": 0.4333,
+ "value": 4.7,
+ "curve": [ 0.467, -0.71, 0.5, -11.47 ]
+ },
+ {
+ "time": 0.5333,
+ "value": -11.47,
+ "curve": [ 0.556, -11.47, 0.578, -6.77 ]
+ },
+ {
+ "time": 0.6,
+ "value": -3.77,
+ "curve": [ 0.622, -0.77, 0.644, 3.36 ]
+ },
+ { "time": 0.6667, "value": 6.52 }
+ ]
+ },
+ "huo_8": {
+ "rotate": [
+ {
+ "value": 2.78,
+ "curve": [ 0.011, 0.99, 0.022, -4.17 ]
+ },
+ {
+ "time": 0.0333,
+ "value": -5.75,
+ "curve": [ 0.056, -8.92, 0.078, -11.47 ]
+ },
+ {
+ "time": 0.1,
+ "value": -11.47,
+ "curve": [ 0.156, -11.47, 0.211, 10.42 ]
+ },
+ {
+ "time": 0.2667,
+ "value": 10.42,
+ "curve": [ 0.289, 10.42, 0.311, 6.38 ]
+ },
+ {
+ "time": 0.3333,
+ "value": 2.78,
+ "curve": [ 0.344, 0.99, 0.356, -4.17 ]
+ },
+ {
+ "time": 0.3667,
+ "value": -5.75,
+ "curve": [ 0.389, -8.92, 0.411, -11.47 ]
+ },
+ {
+ "time": 0.4333,
+ "value": -11.47,
+ "curve": [ 0.489, -11.47, 0.544, 10.42 ]
+ },
+ {
+ "time": 0.6,
+ "value": 10.42,
+ "curve": [ 0.622, 10.42, 0.644, 6.38 ]
+ },
+ { "time": 0.6667, "value": 2.78 }
+ ]
+ },
+ "huo_23": {
+ "translate": [
+ {
+ "x": -3.23,
+ "y": -3.53,
+ "curve": [ 0.033, -2.05, 0.067, 0, 0.033, -2.25, 0.067, 0 ]
+ },
+ {
+ "time": 0.1,
+ "curve": [ 0.156, 0, 0.211, -5.88, 0.156, 0, 0.211, -6.43 ]
+ },
+ {
+ "time": 0.2667,
+ "x": -5.88,
+ "y": -6.43,
+ "curve": [ 0.289, -5.88, 0.311, -4.01, 0.289, -6.43, 0.311, -4.39 ]
+ },
+ {
+ "time": 0.3333,
+ "x": -3.23,
+ "y": -3.53,
+ "curve": [ 0.367, -2.05, 0.4, 0, 0.367, -2.25, 0.4, 0 ]
+ },
+ {
+ "time": 0.4333,
+ "curve": [ 0.489, 0, 0.544, -5.88, 0.489, 0, 0.544, -6.43 ]
+ },
+ {
+ "time": 0.6,
+ "x": -5.88,
+ "y": -6.43,
+ "curve": [ 0.622, -5.88, 0.644, -4.01, 0.622, -6.43, 0.644, -4.39 ]
+ },
+ { "time": 0.6667, "x": -3.23, "y": -3.53 }
+ ]
+ },
+ "huo_12": {
+ "rotate": [
+ {
+ "value": 4.7,
+ "curve": [ 0.033, 0.32, 0.067, -11.47 ]
+ },
+ {
+ "time": 0.1,
+ "value": -11.47,
+ "curve": [ 0.156, -11.47, 0.211, 10.42 ]
+ },
+ {
+ "time": 0.2667,
+ "value": 10.42,
+ "curve": [ 0.289, 10.42, 0.311, 7.62 ]
+ },
+ {
+ "time": 0.3333,
+ "value": 4.7,
+ "curve": [ 0.367, 0.32, 0.4, -11.47 ]
+ },
+ {
+ "time": 0.4333,
+ "value": -11.47,
+ "curve": [ 0.489, -11.47, 0.544, 10.42 ]
+ },
+ {
+ "time": 0.6,
+ "value": 10.42,
+ "curve": [ 0.622, 10.42, 0.644, 7.62 ]
+ },
+ { "time": 0.6667, "value": 4.7 }
+ ]
+ },
+ "huo_18": {
+ "rotate": [
+ {
+ "value": -1.61,
+ "curve": [ 0.033, 2.77, 0.067, 10.42 ]
+ },
+ {
+ "time": 0.1,
+ "value": 10.42,
+ "curve": [ 0.133, 10.42, 0.167, -1.37 ]
+ },
+ {
+ "time": 0.2,
+ "value": -5.75,
+ "curve": [ 0.222, -8.67, 0.244, -11.47 ]
+ },
+ {
+ "time": 0.2667,
+ "value": -11.47,
+ "curve": [ 0.289, -11.47, 0.311, -4.53 ]
+ },
+ {
+ "time": 0.3333,
+ "value": -1.61,
+ "curve": [ 0.367, 2.77, 0.4, 10.42 ]
+ },
+ {
+ "time": 0.4333,
+ "value": 10.42,
+ "curve": [ 0.467, 10.42, 0.5, -1.37 ]
+ },
+ {
+ "time": 0.5333,
+ "value": -5.75,
+ "curve": [ 0.556, -8.67, 0.578, -11.47 ]
+ },
+ {
+ "time": 0.6,
+ "value": -11.47,
+ "curve": [ 0.622, -11.47, 0.644, -4.53 ]
+ },
+ { "time": 0.6667, "value": -1.61 }
+ ]
+ },
+ "huo_13": {
+ "translate": [
+ {
+ "x": -3.23,
+ "y": -3.53,
+ "curve": [ 0.033, -2.05, 0.067, 0, 0.033, -2.25, 0.067, 0 ]
+ },
+ {
+ "time": 0.1,
+ "curve": [ 0.156, 0, 0.211, -5.88, 0.156, 0, 0.211, -6.43 ]
+ },
+ {
+ "time": 0.2667,
+ "x": -5.88,
+ "y": -6.43,
+ "curve": [ 0.289, -5.88, 0.311, -4.01, 0.289, -6.43, 0.311, -4.39 ]
+ },
+ {
+ "time": 0.3333,
+ "x": -3.23,
+ "y": -3.53,
+ "curve": [ 0.367, -2.05, 0.4, 0, 0.367, -2.25, 0.4, 0 ]
+ },
+ {
+ "time": 0.4333,
+ "curve": [ 0.489, 0, 0.544, -5.88, 0.489, 0, 0.544, -6.43 ]
+ },
+ {
+ "time": 0.6,
+ "x": -5.88,
+ "y": -6.43,
+ "curve": [ 0.622, -5.88, 0.644, -4.01, 0.622, -6.43, 0.644, -4.39 ]
+ },
+ { "time": 0.6667, "x": -3.23, "y": -3.53 }
+ ]
+ },
+ "huo_4": {
+ "rotate": [
+ {
+ "value": 6.62,
+ "curve": [ 0.022, 3.03, 0.044, -2.74 ]
+ },
+ {
+ "time": 0.0667,
+ "value": -5.75,
+ "curve": [ 0.089, -8.77, 0.111, -11.47 ]
+ },
+ {
+ "time": 0.1333,
+ "value": -11.47,
+ "curve": [ 0.189, -11.47, 0.244, 10.42 ]
+ },
+ {
+ "time": 0.3,
+ "value": 10.42,
+ "curve": [ 0.311, 10.42, 0.322, 8.42 ]
+ },
+ {
+ "time": 0.3333,
+ "value": 6.62,
+ "curve": [ 0.356, 3.03, 0.378, -2.74 ]
+ },
+ {
+ "time": 0.4,
+ "value": -5.75,
+ "curve": [ 0.422, -8.77, 0.444, -11.47 ]
+ },
+ {
+ "time": 0.4667,
+ "value": -11.47,
+ "curve": [ 0.522, -11.47, 0.578, 10.42 ]
+ },
+ {
+ "time": 0.6333,
+ "value": 10.42,
+ "curve": [ 0.644, 10.42, 0.656, 8.42 ]
+ },
+ { "time": 0.6667, "value": 6.62 }
+ ]
+ },
+ "huo_9": {
+ "rotate": [
+ {
+ "value": 10.15,
+ "curve": [ 0.011, 10.15, 0.022, 6.14 ]
+ },
+ {
+ "time": 0.0333,
+ "value": 4.7,
+ "curve": [ 0.078, -1.07, 0.122, -11.47 ]
+ },
+ {
+ "time": 0.1667,
+ "value": -11.47,
+ "curve": [ 0.222, -11.47, 0.278, 10.15 ]
+ },
+ {
+ "time": 0.3333,
+ "value": 10.15,
+ "curve": [ 0.344, 10.15, 0.356, 6.14 ]
+ },
+ {
+ "time": 0.3667,
+ "value": 4.7,
+ "curve": [ 0.411, -1.07, 0.456, -11.47 ]
+ },
+ {
+ "time": 0.5,
+ "value": -11.47,
+ "curve": [ 0.556, -11.47, 0.611, 10.15 ]
+ },
+ { "time": 0.6667, "value": 10.15 }
+ ]
+ },
+ "huo_22": {
+ "rotate": [
+ {
+ "value": 6.51,
+ "curve": [ 0.044, 0.67, 0.089, -11.47 ]
+ },
+ {
+ "time": 0.1333,
+ "value": -11.47,
+ "curve": [ 0.189, -11.47, 0.244, 10.42 ]
+ },
+ {
+ "time": 0.3,
+ "value": 10.42,
+ "curve": [ 0.311, 10.42, 0.322, 7.97 ]
+ },
+ {
+ "time": 0.3333,
+ "value": 6.51,
+ "curve": [ 0.378, 0.67, 0.422, -11.47 ]
+ },
+ {
+ "time": 0.4667,
+ "value": -11.47,
+ "curve": [ 0.522, -11.47, 0.578, 10.42 ]
+ },
+ {
+ "time": 0.6333,
+ "value": 10.42,
+ "curve": [ 0.644, 10.42, 0.656, 7.97 ]
+ },
+ { "time": 0.6667, "value": 6.51 }
+ ]
+ },
+ "huo_14": {
+ "rotate": [
+ {
+ "value": 2.66,
+ "curve": [ 0.022, -0.28, 0.044, -4.48 ]
+ },
+ {
+ "time": 0.0667,
+ "value": -7.62,
+ "curve": [ 0.078, -9.19, 0.089, -11.47 ]
+ },
+ {
+ "time": 0.1,
+ "value": -11.47,
+ "curve": [ 0.156, -11.47, 0.211, 10.01 ]
+ },
+ {
+ "time": 0.2667,
+ "value": 10.01,
+ "curve": [ 0.289, 10.01, 0.311, 5.59 ]
+ },
+ {
+ "time": 0.3333,
+ "value": 2.66,
+ "curve": [ 0.356, -0.28, 0.378, -4.48 ]
+ },
+ {
+ "time": 0.4,
+ "value": -7.62,
+ "curve": [ 0.411, -9.19, 0.422, -11.47 ]
+ },
+ {
+ "time": 0.4333,
+ "value": -11.47,
+ "curve": [ 0.489, -11.47, 0.544, 10.01 ]
+ },
+ {
+ "time": 0.6,
+ "value": 10.01,
+ "curve": [ 0.622, 10.01, 0.644, 5.59 ]
+ },
+ { "time": 0.6667, "value": 2.66 }
+ ]
+ },
+ "huo_25": {
+ "rotate": [
+ {
+ "value": -5.75,
+ "curve": [ 0.022, -8.67, 0.044, -11.47 ]
+ },
+ {
+ "time": 0.0667,
+ "value": -11.47,
+ "curve": [ 0.122, -11.47, 0.178, 10.42 ]
+ },
+ {
+ "time": 0.2333,
+ "value": 10.42,
+ "curve": [ 0.267, 10.42, 0.3, -1.37 ]
+ },
+ {
+ "time": 0.3333,
+ "value": -5.75,
+ "curve": [ 0.356, -8.67, 0.378, -11.47 ]
+ },
+ {
+ "time": 0.4,
+ "value": -11.47,
+ "curve": [ 0.456, -11.47, 0.511, 10.42 ]
+ },
+ {
+ "time": 0.5667,
+ "value": 10.42,
+ "curve": [ 0.6, 10.42, 0.633, -1.37 ]
+ },
+ { "time": 0.6667, "value": -5.75 }
+ ]
+ },
+ "huo_20": {
+ "translate": [
+ {
+ "curve": [ 0.056, 0, 0.111, -5.88, 0.056, 0, 0.111, -6.43 ]
+ },
+ {
+ "time": 0.1667,
+ "x": -5.88,
+ "y": -6.43,
+ "curve": [ 0.222, -5.88, 0.278, 0, 0.222, -6.43, 0.278, 0 ]
+ },
+ {
+ "time": 0.3333,
+ "curve": [ 0.389, 0, 0.444, -5.88, 0.389, 0, 0.444, -6.43 ]
+ },
+ {
+ "time": 0.5,
+ "x": -5.88,
+ "y": -6.43,
+ "curve": [ 0.556, -5.88, 0.611, 0, 0.556, -6.43, 0.611, 0 ]
+ },
+ { "time": 0.6667 }
+ ]
+ },
+ "huo_7": {
+ "rotate": [
+ {
+ "value": -7.56,
+ "curve": [ 0.011, -9.02, 0.022, -11.47 ]
+ },
+ {
+ "time": 0.0333,
+ "value": -11.47,
+ "curve": [ 0.089, -11.47, 0.144, 10.42 ]
+ },
+ {
+ "time": 0.2,
+ "value": 10.42,
+ "curve": [ 0.244, 10.42, 0.289, -1.72 ]
+ },
+ {
+ "time": 0.3333,
+ "value": -7.56,
+ "curve": [ 0.344, -9.02, 0.356, -11.47 ]
+ },
+ {
+ "time": 0.3667,
+ "value": -11.47,
+ "curve": [ 0.422, -11.47, 0.478, 10.42 ]
+ },
+ {
+ "time": 0.5333,
+ "value": 10.42,
+ "curve": [ 0.578, 10.42, 0.622, -1.72 ]
+ },
+ { "time": 0.6667, "value": -7.56 }
+ ]
+ },
+ "huo_17": {
+ "rotate": [
+ {
+ "value": 8.14,
+ "curve": [ 0.011, 9.6, 0.022, 10.42 ]
+ },
+ {
+ "time": 0.0333,
+ "value": 10.42,
+ "curve": [ 0.089, 10.42, 0.144, -11.47 ]
+ },
+ {
+ "time": 0.2,
+ "value": -11.47,
+ "curve": [ 0.244, -11.47, 0.289, 2.31 ]
+ },
+ {
+ "time": 0.3333,
+ "value": 8.14,
+ "curve": [ 0.344, 9.6, 0.356, 10.42 ]
+ },
+ {
+ "time": 0.3667,
+ "value": 10.42,
+ "curve": [ 0.422, 10.42, 0.478, -11.47 ]
+ },
+ {
+ "time": 0.5333,
+ "value": -11.47,
+ "curve": [ 0.578, -11.47, 0.622, 2.31 ]
+ },
+ { "time": 0.6667, "value": 8.14 }
+ ]
+ },
+ "huo_19": {
+ "rotate": [
+ {
+ "value": -10.31,
+ "curve": [ 0.044, -5.64, 0.089, 10.42 ]
+ },
+ {
+ "time": 0.1333,
+ "value": 10.42,
+ "curve": [ 0.156, 10.42, 0.178, 7.62 ]
+ },
+ {
+ "time": 0.2,
+ "value": 4.7,
+ "curve": [ 0.233, 0.32, 0.267, -11.47 ]
+ },
+ {
+ "time": 0.3,
+ "value": -11.47,
+ "curve": [ 0.311, -11.47, 0.322, -11.47 ]
+ },
+ {
+ "time": 0.3333,
+ "value": -10.31,
+ "curve": [ 0.378, -5.64, 0.422, 10.42 ]
+ },
+ {
+ "time": 0.4667,
+ "value": 10.42,
+ "curve": [ 0.489, 10.42, 0.511, 7.62 ]
+ },
+ {
+ "time": 0.5333,
+ "value": 4.7,
+ "curve": [ 0.567, 0.32, 0.6, -11.47 ]
+ },
+ {
+ "time": 0.6333,
+ "value": -11.47,
+ "curve": [ 0.644, -11.47, 0.656, -11.47 ]
+ },
+ { "time": 0.6667, "value": -10.31 }
+ ]
+ },
+ "mtc3": {
+ "rotate": [
+ {},
+ { "time": 0.6667, "value": -1922.03 }
+ ]
+ },
+ "mtc4": {
+ "rotate": [
+ {},
+ { "time": 0.6667, "value": -1922.03 }
+ ]
+ },
+ "wild": {
+ "scale": [
+ {
+ "curve": [ 0.044, 1, 0.089, 0.85, 0.044, 1, 0.089, 0.85 ]
+ },
+ {
+ "time": 0.1333,
+ "x": 0.85,
+ "y": 0.85,
+ "curve": [ 0.178, 0.85, 0.222, 1.12, 0.178, 0.85, 0.222, 1.12 ]
+ },
+ {
+ "time": 0.2667,
+ "x": 1.12,
+ "y": 1.12,
+ "curve": [ 0.333, 1.12, 0.4, 0.95, 0.333, 1.12, 0.4, 0.95 ]
+ },
+ {
+ "time": 0.4667,
+ "x": 0.95,
+ "y": 0.95,
+ "curve": [ 0.533, 0.95, 0.6, 1, 0.533, 0.95, 0.6, 1 ]
+ },
+ { "time": 0.6667 }
+ ]
+ }
+ },
+ "attachments": {
+ "default": {
+ "hy_01": {
+ "hy/hy_": {
+ "sequence": [
+ { "mode": "loop", "delay": 0.0417 }
+ ]
+ }
+ }
+ }
+ }
+ },
+ "7_win_idle": {
+ "slots": {
+ "che": {
+ "attachment": [
+ { "name": "che" }
+ ]
+ },
+ "che2": {
+ "attachment": [
+ { "name": "item7_3" }
+ ]
+ },
+ "che3": {
+ "attachment": [
+ { "name": "item7_4" }
+ ]
+ },
+ "chedeng": {
+ "attachment": [
+ { "name": "chedeng" }
+ ]
+ },
+ "huobeijing": {
+ "attachment": [
+ { "name": "huobeijing" }
+ ]
+ },
+ "huobeijing2": {
+ "attachment": [
+ { "name": "item7_1" }
+ ]
+ },
+ "huobeijing3": {
+ "attachment": [
+ { "name": "item7_2" }
+ ]
+ },
+ "hy_01": {
+ "attachment": [
+ { "name": "hy/hy_" }
+ ]
+ },
+ "pqg": {
+ "attachment": [
+ { "name": "pqg" }
+ ]
+ },
+ "wenzi": {
+ "attachment": [
+ { "name": "wenzi" }
+ ]
+ },
+ "wenzi2": {
+ "attachment": [
+ { "name": "item7_5" }
+ ]
+ },
+ "wenzi3": {
+ "attachment": [
+ { "name": "item7_6" }
+ ]
+ }
+ },
+ "bones": {
+ "wild": {
+ "scale": [
+ {
+ "curve": [ 0.111, 0.967, 0.222, 0.9, 0.111, 0.967, 0.222, 0.9 ]
+ },
+ {
+ "time": 0.3333,
+ "x": 0.9,
+ "y": 0.9,
+ "curve": [ 0.444, 0.9, 0.556, 1.1, 0.444, 0.9, 0.556, 1.1 ]
+ },
+ {
+ "time": 0.6667,
+ "x": 1.1,
+ "y": 1.1,
+ "curve": [ 0.778, 1.1, 0.889, 1.033, 0.778, 1.1, 0.889, 1.033 ]
+ },
+ { "time": 1 }
+ ]
+ },
+ "huo_24": {
+ "rotate": [
+ {
+ "value": -11.47,
+ "curve": [ 0.167, -11.47, 0.333, 10.42 ]
+ },
+ {
+ "time": 0.5,
+ "value": 10.42,
+ "curve": [ 0.667, 10.42, 0.833, -11.47 ]
+ },
+ { "time": 1, "value": -11.47 }
+ ]
+ },
+ "huo_25": {
+ "rotate": [
+ {
+ "value": -5.75,
+ "curve": [ 0.057, -8.95, 0.112, -11.47 ]
+ },
+ {
+ "time": 0.1667,
+ "value": -11.47,
+ "curve": [ 0.333, -11.47, 0.5, 10.42 ]
+ },
+ {
+ "time": 0.6667,
+ "value": 10.42,
+ "curve": [ 0.778, 10.42, 0.89, 0.73 ]
+ },
+ { "time": 1, "value": -5.75 }
+ ]
+ },
+ "huo_21": {
+ "rotate": [
+ {
+ "value": -5.75,
+ "curve": [ 0.056, -8.98, 0.112, -11.47 ]
+ },
+ {
+ "time": 0.1667,
+ "value": -11.47,
+ "curve": [ 0.333, -11.47, 0.5, 10.42 ]
+ },
+ {
+ "time": 0.6667,
+ "value": 10.42,
+ "curve": [ 0.767, 10.42, 0.989, -5.1 ]
+ },
+ { "time": 1, "value": -5.75 }
+ ]
+ },
+ "huo_22": {
+ "rotate": [
+ {
+ "value": 6.51,
+ "curve": [ 0.123, 0.21, 0.245, -11.47 ]
+ },
+ {
+ "time": 0.3667,
+ "value": -11.47,
+ "curve": [ 0.533, -11.47, 0.7, 10.42 ]
+ },
+ {
+ "time": 0.8667,
+ "value": 10.42,
+ "curve": [ 0.912, 10.42, 0.957, 8.84 ]
+ },
+ { "time": 1, "value": 6.51 }
+ ]
+ },
+ "huo_18": {
+ "rotate": [
+ {
+ "value": -1.61,
+ "curve": [ 0.09, 4.17, 0.178, 10.42 ]
+ },
+ {
+ "time": 0.2667,
+ "value": 10.42,
+ "curve": [ 0.378, 10.42, 0.49, 0.73 ]
+ },
+ {
+ "time": 0.6,
+ "value": -5.75,
+ "curve": [ 0.657, -8.95, 0.712, -11.47 ]
+ },
+ {
+ "time": 0.7667,
+ "value": -11.47,
+ "curve": [ 0.845, -11.47, 0.923, -6.73 ]
+ },
+ { "time": 1, "value": -1.61 }
+ ]
+ },
+ "huo_19": {
+ "rotate": [
+ {
+ "value": -10.31,
+ "curve": [ 0.146, -5.85, 0.289, 10.42 ]
+ },
+ {
+ "time": 0.4333,
+ "value": 10.42,
+ "curve": [ 0.489, 10.42, 0.546, 7.99 ]
+ },
+ {
+ "time": 0.6,
+ "value": 4.7,
+ "curve": [ 0.712, -1.79, 0.823, -11.47 ]
+ },
+ {
+ "time": 0.9333,
+ "value": -11.47,
+ "curve": [ 0.956, -11.47, 0.979, -11.01 ]
+ },
+ { "time": 1, "value": -10.31 }
+ ]
+ },
+ "huo_14": {
+ "rotate": [
+ {
+ "value": 2.66,
+ "curve": [ 0.057, -0.81, 0.112, -4.8 ]
+ },
+ {
+ "time": 0.1667,
+ "value": -7.62,
+ "curve": [ 0.212, -9.85, 0.256, -11.47 ]
+ },
+ {
+ "time": 0.3,
+ "value": -11.47,
+ "curve": [ 0.467, -11.47, 0.633, 10.42 ]
+ },
+ {
+ "time": 0.8,
+ "value": 10.42,
+ "curve": [ 0.812, 10.42, 0.823, 10.21 ]
+ },
+ {
+ "time": 0.8333,
+ "value": 10.01,
+ "curve": [ 0.889, 9.06, 0.945, 6.12 ]
+ },
+ { "time": 1, "value": 2.66 }
+ ]
+ },
+ "huo_15": {
+ "rotate": [
+ {
+ "value": 10.13,
+ "curve": [ 0.056, 9.23, 0.112, 6.27 ]
+ },
+ {
+ "time": 0.1667,
+ "value": 2.78,
+ "curve": [ 0.212, -0.01, 0.256, -3.16 ]
+ },
+ {
+ "time": 0.3,
+ "value": -5.75,
+ "curve": [ 0.357, -8.95, 0.412, -11.47 ]
+ },
+ {
+ "time": 0.4667,
+ "value": -11.47,
+ "curve": [ 0.589, -11.47, 0.712, 0.25 ]
+ },
+ {
+ "time": 0.8333,
+ "value": 6.51,
+ "curve": [ 0.879, 8.75, 0.923, 10.42 ]
+ },
+ {
+ "time": 0.9667,
+ "value": 10.42,
+ "curve": [ 0.978, 10.42, 0.989, 10.31 ]
+ },
+ { "time": 1, "value": 10.13 }
+ ]
+ },
+ "huo_16": {
+ "rotate": [
+ {
+ "value": 6.52,
+ "curve": [ 0.045, 8.79, 0.089, 10.42 ]
+ },
+ {
+ "time": 0.1333,
+ "value": 10.42,
+ "curve": [ 0.145, 10.42, 0.156, 10.33 ]
+ },
+ {
+ "time": 0.1667,
+ "value": 10.15,
+ "curve": [ 0.212, 9.42, 0.256, 7.33 ]
+ },
+ {
+ "time": 0.3,
+ "value": 4.7,
+ "curve": [ 0.412, -1.79, 0.523, -11.47 ]
+ },
+ {
+ "time": 0.6333,
+ "value": -11.47,
+ "curve": [ 0.701, -11.47, 0.768, -8.02 ]
+ },
+ {
+ "time": 0.8333,
+ "value": -3.77,
+ "curve": [ 0.89, -0.27, 0.945, 3.66 ]
+ },
+ { "time": 1, "value": 6.52 }
+ ]
+ },
+ "huo_12": {
+ "rotate": [
+ {
+ "value": 4.7,
+ "curve": [ 0.112, -1.79, 0.223, -11.47 ]
+ },
+ {
+ "time": 0.3333,
+ "value": -11.47,
+ "curve": [ 0.5, -11.47, 0.667, 10.42 ]
+ },
+ {
+ "time": 0.8333,
+ "value": 10.42,
+ "curve": [ 0.889, 10.42, 0.946, 7.99 ]
+ },
+ { "time": 1, "value": 4.7 }
+ ]
+ },
+ "huo_11": {
+ "rotate": [
+ {
+ "value": -5.75,
+ "curve": [ 0.057, -8.95, 0.112, -11.47 ]
+ },
+ {
+ "time": 0.1667,
+ "value": -11.47,
+ "curve": [ 0.333, -11.47, 0.5, 10.42 ]
+ },
+ {
+ "time": 0.6667,
+ "value": 10.42,
+ "curve": [ 0.778, 10.42, 0.89, 0.73 ]
+ },
+ { "time": 1, "value": -5.75 }
+ ]
+ },
+ "huo_7": {
+ "rotate": [
+ {
+ "value": -7.56,
+ "curve": [ 0.046, -9.8, 0.089, -11.47 ]
+ },
+ {
+ "time": 0.1333,
+ "value": -11.47,
+ "curve": [ 0.3, -11.47, 0.467, 10.42 ]
+ },
+ {
+ "time": 0.6333,
+ "value": 10.42,
+ "curve": [ 0.756, 10.42, 0.879, -1.3 ]
+ },
+ { "time": 1, "value": -7.56 }
+ ]
+ },
+ "huo_8": {
+ "rotate": [
+ {
+ "value": 2.78,
+ "curve": [ 0.045, -0.01, 0.089, -3.16 ]
+ },
+ {
+ "time": 0.1333,
+ "value": -5.75,
+ "curve": [ 0.19, -8.95, 0.245, -11.47 ]
+ },
+ {
+ "time": 0.3,
+ "value": -11.47,
+ "curve": [ 0.467, -11.47, 0.633, 10.42 ]
+ },
+ {
+ "time": 0.8,
+ "value": 10.42,
+ "curve": [ 0.867, 10.42, 0.934, 6.97 ]
+ },
+ { "time": 1, "value": 2.78 }
+ ]
+ },
+ "huo_9": {
+ "rotate": [
+ {
+ "value": 10.15,
+ "curve": [ 0.045, 9.42, 0.09, 7.33 ]
+ },
+ {
+ "time": 0.1333,
+ "value": 4.7,
+ "curve": [ 0.246, -1.79, 0.356, -11.47 ]
+ },
+ {
+ "time": 0.4667,
+ "value": -11.47,
+ "curve": [ 0.633, -11.47, 0.8, 10.42 ]
+ },
+ {
+ "time": 0.9667,
+ "value": 10.42,
+ "curve": [ 0.978, 10.42, 0.989, 10.33 ]
+ },
+ { "time": 1, "value": 10.15 }
+ ]
+ },
+ "huo_3": {
+ "rotate": [
+ {
+ "value": -3.77,
+ "curve": [ 0.068, -7.92, 0.133, -11.47 ]
+ },
+ {
+ "time": 0.2,
+ "value": -11.47,
+ "curve": [ 0.367, -11.47, 0.533, 10.42 ]
+ },
+ {
+ "time": 0.7,
+ "value": 10.42,
+ "curve": [ 0.8, 10.42, 0.901, 2.56 ]
+ },
+ { "time": 1, "value": -3.77 }
+ ]
+ },
+ "huo_4": {
+ "rotate": [
+ {
+ "value": 6.62,
+ "curve": [ 0.067, 3.21, 0.133, -2.46 ]
+ },
+ {
+ "time": 0.2,
+ "value": -5.75,
+ "curve": [ 0.256, -8.49, 0.311, -11.47 ]
+ },
+ {
+ "time": 0.3667,
+ "value": -11.47,
+ "curve": [ 0.533, -11.47, 0.7, 10.42 ]
+ },
+ {
+ "time": 0.8667,
+ "value": 10.42,
+ "curve": [ 0.911, 10.42, 0.956, 8.9 ]
+ },
+ { "time": 1, "value": 6.62 }
+ ]
+ },
+ "huo_5": {
+ "rotate": [
+ {
+ "value": 10.01,
+ "curve": [ 0.012, 10.18, 0.022, 10.42 ]
+ },
+ {
+ "time": 0.0333,
+ "value": 10.42,
+ "curve": [ 0.089, 10.42, 0.144, 7.13 ]
+ },
+ {
+ "time": 0.2,
+ "value": 4.7,
+ "curve": [ 0.311, -0.17, 0.422, -11.47 ]
+ },
+ {
+ "time": 0.5333,
+ "value": -11.47,
+ "curve": [ 0.689, -11.47, 0.846, 7.58 ]
+ },
+ { "time": 1, "value": 10.01 }
+ ]
+ },
+ "huo_17": {
+ "rotate": [
+ {
+ "value": 8.14,
+ "curve": [ 0.034, 9.5, 0.067, 10.42 ]
+ },
+ {
+ "time": 0.1,
+ "value": 10.42,
+ "curve": [ 0.267, 10.42, 0.433, -11.47 ]
+ },
+ {
+ "time": 0.6,
+ "value": -11.47,
+ "curve": [ 0.734, -11.47, 0.868, 2.59 ]
+ },
+ { "time": 1, "value": 8.14 }
+ ]
+ },
+ "huo_10": {
+ "rotate": [
+ {
+ "value": -11.47,
+ "curve": [ 0.167, -11.47, 0.333, 10.42 ]
+ },
+ {
+ "time": 0.5,
+ "value": 10.42,
+ "curve": [ 0.667, 10.42, 0.833, -11.47 ]
+ },
+ { "time": 1, "value": -11.47 }
+ ],
+ "translate": [
+ {
+ "x": -3.81,
+ "y": -4.16,
+ "curve": [ 0.068, -4.92, 0.134, -5.88, 0.068, -5.39, 0.134, -6.43 ]
+ },
+ {
+ "time": 0.2,
+ "x": -5.88,
+ "y": -6.43,
+ "curve": [ 0.367, -5.88, 0.533, 0, 0.367, -6.43, 0.533, 0 ]
+ },
+ {
+ "time": 0.7,
+ "curve": [ 0.801, 0, 0.901, -2.11, 0.801, 0, 0.901, -2.31 ]
+ },
+ { "time": 1, "x": -3.81, "y": -4.16 }
+ ]
+ },
+ "huo_20": {
+ "translate": [
+ {
+ "curve": [ 0.167, 0, 0.333, -5.88, 0.167, 0, 0.333, -6.43 ]
+ },
+ {
+ "time": 0.5,
+ "x": -5.88,
+ "y": -6.43,
+ "curve": [ 0.667, -5.88, 0.833, 0, 0.667, -6.43, 0.833, 0 ]
+ },
+ { "time": 1 }
+ ]
+ },
+ "huo_13": {
+ "translate": [
+ {
+ "x": -3.23,
+ "y": -3.53,
+ "curve": [ 0.09, -1.68, 0.178, 0, 0.09, -1.83, 0.178, 0 ]
+ },
+ {
+ "time": 0.2667,
+ "curve": [ 0.433, 0, 0.6, -5.88, 0.433, 0, 0.6, -6.43 ]
+ },
+ {
+ "time": 0.7667,
+ "x": -5.88,
+ "y": -6.43,
+ "curve": [ 0.845, -5.88, 0.923, -4.6, 0.845, -6.43, 0.923, -5.04 ]
+ },
+ { "time": 1, "x": -3.23, "y": -3.53 }
+ ]
+ },
+ "huo_23": {
+ "translate": [
+ {
+ "x": -3.23,
+ "y": -3.53,
+ "curve": [ 0.09, -1.68, 0.178, 0, 0.09, -1.83, 0.178, 0 ]
+ },
+ {
+ "time": 0.2667,
+ "curve": [ 0.433, 0, 0.6, -5.88, 0.433, 0, 0.6, -6.43 ]
+ },
+ {
+ "time": 0.7667,
+ "x": -5.88,
+ "y": -6.43,
+ "curve": [ 0.845, -5.88, 0.923, -4.6, 0.845, -6.43, 0.923, -5.04 ]
+ },
+ { "time": 1, "x": -3.23, "y": -3.53 }
+ ]
+ },
+ "huo_6": {
+ "translate": [
+ {
+ "x": -0.61,
+ "y": -0.67,
+ "curve": [ 0.034, -0.25, 0.067, 0, 0.034, -0.27, 0.067, 0 ]
+ },
+ {
+ "time": 0.1,
+ "curve": [ 0.267, 0, 0.433, -5.88, 0.267, 0, 0.433, -6.43 ]
+ },
+ {
+ "time": 0.6,
+ "x": -5.88,
+ "y": -6.43,
+ "curve": [ 0.734, -5.88, 0.868, -2.1, 0.734, -6.43, 0.868, -2.3 ]
+ },
+ { "time": 1, "x": -0.61, "y": -0.67 }
+ ]
+ },
+ "huo_2": {
+ "translate": [
+ {
+ "x": -0.61,
+ "y": -0.67,
+ "curve": [ 0.134, -2.13, 0.267, -5.88, 0.134, -2.33, 0.267, -6.43 ]
+ },
+ {
+ "time": 0.4,
+ "x": -5.88,
+ "y": -6.43,
+ "curve": [ 0.567, -5.88, 0.733, 0, 0.567, -6.43, 0.733, 0 ]
+ },
+ {
+ "time": 0.9,
+ "curve": [ 0.934, 0, 0.968, -0.22, 0.934, 0, 0.968, -0.25 ]
+ },
+ { "time": 1, "x": -0.61, "y": -0.67 }
+ ]
+ },
+ "mtc2": {
+ "translate": [
+ {
+ "curve": [ 0.078, 0, 0.156, 0, 0.078, 0, 0.156, 2.44 ]
+ },
+ {
+ "time": 0.2333,
+ "y": 2.44,
+ "curve": [ 0.322, 0, 0.411, 0, 0.322, 2.44, 0.411, 0 ]
+ },
+ {
+ "time": 0.5,
+ "curve": [ 0.578, 0, 0.656, 0, 0.578, 0, 0.656, 2.44 ]
+ },
+ {
+ "time": 0.7333,
+ "y": 2.44,
+ "curve": [ 0.822, 0, 0.911, 0, 0.822, 2.44, 0.911, 0 ]
+ },
+ { "time": 1 }
+ ]
+ }
+ },
+ "attachments": {
+ "default": {
+ "hy_01": {
+ "hy/hy_": {
+ "sequence": [
+ { "mode": "loop", "delay": 0.0417 }
+ ]
+ }
+ }
+ }
+ }
+ }
+}
+}
\ No newline at end of file
diff --git a/src/App.vue b/src/App.vue
new file mode 100644
index 0000000..be4b8ab
--- /dev/null
+++ b/src/App.vue
@@ -0,0 +1,66 @@
+
+
+
+
+
+
+
diff --git a/src/core/particleEmitter.ts b/src/core/particleEmitter.ts
new file mode 100644
index 0000000..714ee27
--- /dev/null
+++ b/src/core/particleEmitter.ts
@@ -0,0 +1,465 @@
+import { Container, Sprite, Texture, IPointData } from 'pixi.js'
+
+/** 发射模式 */
+export type EmitMode = 'stream' | 'burst'
+/** 发射形状 */
+export type EmitShape = 'point' | 'circle' | 'rect' | 'cone' | 'orbit'
+/** 混合模式 */
+export type Blend = 'normal' | 'add' | 'multiply' | 'screen'
+
+/** 粒子配置(引用保持,面板改字段即实时生效) */
+export interface EmitterConfig {
+ texture: Texture
+ name: string
+ // 发射
+ mode: EmitMode
+ rate: number // 持续:每秒发射数
+ burstCount: number // 爆发:单次数量
+ burstLoop: boolean // 爆发是否每秒重复
+ /** 延迟发射(秒)= 粒子条左端位置 */
+ delay: number
+ /** 发射总时长(秒)= 粒子条宽度,超过后停止发射新粒子 */
+ duration: number
+ shape: EmitShape // 发射形状
+ radius: number
+ rectW: number
+ rectH: number
+ /** 发射器中心 X/Y */
+ centerX: number
+ centerY: number
+ // 根节点(root)变换:作用于整个粒子系统(旋转/缩放),与场景对象参数联动
+ rootRotation: number
+ rootScaleX: number
+ rootScaleY: number
+ // 方向
+ direction: number
+ spread: number
+ /** 锥形开口角度(发电器形状=锥体时,粒子在锥形扇区内均匀散开) */
+ coneAngle: number
+ // 属性
+ lifeMin: number
+ lifeMax: number
+ speedMin: number
+ speedMax: number
+ scaleMin: number
+ scaleMax: number
+ scaleEndRatio: number
+ alpha: number
+ alphaEnd: number
+ rotationSpeedMin: number
+ rotationSpeedMax: number
+ // 物理
+ gravity: number
+ /** 阻尼(速度衰减系数,0=无) */
+ damping: number
+ /** 随机种子(确定性随机,0=每次不同) */
+ seed: number
+ // 颜色
+ colorStart: string
+ colorEnd: string
+ colorOverLife: boolean
+ // 混合
+ blend: Blend
+ /** 透明度模式:fixed(固定)/ curve(曲线) */
+ alphaMode: 'fixed' | 'curve'
+ /** 曲线模式(透明度插值方式) */
+ curveMode: '跟随导出' | '线性' | '贝塞尔'
+ /** 透明度曲线关键帧:x=生命周期时刻(0~1),y=透明度(0~1,1=完全不透明) */
+ alphaCurve: { x: number; y: number }[]
+ /** 图片名称(贴图资源名,默认 dot) */
+ textureName: string
+ /** 子文件夹(图片资源路径,占位) */
+ textureFolder: string
+ /** 占比(0~1) */
+ alphaScale: number
+ /** 贴图锚点/轴心 x,y(0~1) */
+ anchorX: number
+ anchorY: number
+ /** 独立透明度:off / fixed / curve */
+ independentAlpha: 'off' | 'fixed' | 'curve'
+ // 发射点偏移
+ offsetX: number
+ offsetY: number
+ // ===== 修改器 (Modifiers) =====
+ /** 开启移动噪声 */
+ noise: boolean
+ noiseAmt: number
+ /** 开启重力(由 gravity 控制) */
+ useGravity: boolean
+ /** 开启风力 */
+ wind: boolean
+ windX: number
+ windY: number
+ /** 开启力场(吸力/斥力) */
+ forceField: boolean
+ forceStrength: number
+ forceRadius: number
+ /** 开启拖尾 */
+ trail: boolean
+ /** 开启碰撞(预留) */
+ collision: boolean
+ /** 开启路径跟随(预留) */
+ pathFollow: boolean
+}
+
+/** 粒子瞬间状态(供骨骼同步 / 导出) */
+export interface ParticleState {
+ /** 对应骨骼在 root 下的命名 p_ */
+ boneName: string
+ x: number
+ y: number
+ rotation: number
+ scaleX: number
+ scaleY: number
+ alpha: number
+ colorHex: number
+ active: boolean
+}
+
+export function defaultConfig(): EmitterConfig {
+ return {
+ texture: null as unknown as Texture,
+ name: 'ParticleSystem1',
+ mode: 'stream',
+ rate: 20,
+ burstCount: 50,
+ burstLoop: false, // 一次性爆发(持续爆发开关已移除)
+ delay: 0,
+ duration: 0, // 0 = 无限发射/爆发,不受时长限制(发射时长 UI 已移除)
+ shape: 'point',
+ radius: 30,
+ rectW: 60,
+ rectH: 40,
+ centerX: 0,
+ centerY: 0,
+ rootRotation: 0,
+ rootScaleX: 1,
+ rootScaleY: 1,
+ direction: 0,
+ spread: 360,
+ coneAngle: 60,
+ lifeMin: 0.6,
+ lifeMax: 1.8,
+ speedMin: 30,
+ speedMax: 140,
+ scaleMin: 0.3,
+ scaleMax: 0.8,
+ scaleEndRatio: 0.3,
+ alpha: 0.9,
+ alphaEnd: 0,
+ rotationSpeedMin: -180,
+ rotationSpeedMax: 180,
+ gravity: 0,
+ damping: 0,
+ seed: 0,
+ colorStart: '#ffffff',
+ colorEnd: '#ff4d4d',
+ colorOverLife: false,
+ blend: 'add',
+ alphaMode: 'curve',
+ curveMode: '线性',
+ alphaCurve: [{ x: 0, y: 0 }, { x: 0.2, y: 1 }, { x: 0.8, y: 1 }, { x: 1, y: 0 }],
+ textureName: 'star',
+ textureFolder: '',
+ alphaScale: 1,
+ anchorX: 0.5,
+ anchorY: 0.5,
+ independentAlpha: 'off',
+ offsetX: 0,
+ offsetY: 0,
+ noise: false,
+ noiseAmt: 0,
+ useGravity: true,
+ wind: false,
+ windX: 0,
+ windY: 0,
+ forceField: false,
+ forceStrength: 0,
+ forceRadius: 100,
+ trail: false,
+ collision: false,
+ pathFollow: false,
+ }
+}
+
+interface Particle {
+ sprite: Sprite
+ active: boolean
+ boneName: string
+ life: number
+ maxLife: number
+ x: number; y: number
+ vx: number; vy: number
+ scaleStart: number; scaleEnd: number
+ alphaStart: number; alphaEnd: number
+ rotation: number; rotationSpeed: number
+}
+
+const BLEND_MAP: Record = { normal: 0, add: 1, multiply: 2, screen: 3 }
+
+const MAX_PARTICLES = 400
+
+export class ParticleEmitter extends Container {
+ private pool: Particle[] = []
+ private cfg: EmitterConfig
+ private accumulator = 0
+ private burstTimer = 0
+ /** 发射器累计运行时间(秒) — 非响应式,避免污染 config */
+ private _elapsed = 0
+ private _emitterPos: (() => IPointData) | null = null // root 世界坐标(0,0)
+ /** 活动粒子状态快照(供骨架 / 导出) */
+ states: ParticleState[] = []
+ /** 确定性随机(种子>0 时可复现) */
+ private rng: () => number = Math.random
+ private _lastSeed = -1
+
+ constructor(config: EmitterConfig, maxParticles = MAX_PARTICLES) {
+ super()
+ this.cfg = config
+ this._ensurePool(maxParticles)
+ }
+
+ /** 仅在种子变化时重建随机源;种子不变时让序列持续推进,保证"确定性随机序列"语义 */
+ private reseed() {
+ const s = this.cfg.seed
+ if (s === this._lastSeed) return
+ this._lastSeed = s
+ if (s > 0) {
+ this.rng = mulberry32(s >>> 0)
+ } else {
+ this.rng = Math.random
+ }
+ }
+
+ private _ensurePool(n: number) {
+ while (this.pool.length < n) {
+ const sprite = new Sprite(this.cfg.texture)
+ sprite.blendMode = BLEND_MAP[this.cfg.blend] as any
+ sprite.anchor.set(0.5)
+ sprite.visible = false
+ this.addChild(sprite)
+ this.pool.push({
+ sprite, active: false, boneName: 'p_' + this.pool.length,
+ life: 0, maxLife: 1, x: 0, y: 0, vx: 0, vy: 0,
+ scaleStart: 1, scaleEnd: 1, alphaStart: 1, alphaEnd: 1, rotation: 0, rotationSpeed: 0,
+ })
+ }
+ }
+
+ setEmitterPos(fn: () => IPointData) { this._emitterPos = fn }
+
+ /** 每帧更新;返回活动粒子状态快照(与骨骼一一对应) */
+ update(dt: number): ParticleState[] {
+ const cfg = this.cfg
+ this.reseed() // 种子变化即重建随机源
+ // 累计发射时间
+ this._elapsed += dt
+ const inWindow = cfg.delay <= 0 || this._elapsed >= cfg.delay
+ const withinDuration = cfg.duration <= 0 || this._elapsed < cfg.delay + cfg.duration
+ // 发射(仅在窗口内且未超时长)
+ if (inWindow && withinDuration) {
+ if (cfg.mode === 'stream') {
+ this.accumulator += dt * cfg.rate
+ while (this.accumulator >= 1) { this.accumulator -= 1; this.spawnOne() }
+ } else {
+ this.burstTimer += dt
+ if (cfg.burstLoop) {
+ if (this.burstTimer >= 1) { this.burstTimer = 0; this.emitBurst() }
+ } else if (this.burstTimer <= dt) {
+ this.emitBurst()
+ }
+ }
+ }
+
+ const base = this._emitterPos ? this._emitterPos() : { x: this.cfg.offsetX, y: this.cfg.offsetY }
+ const states: ParticleState[] = []
+ for (let i = 0; i < this.pool.length; i++) {
+ const p = this.pool[i]
+ if (!p.active) continue
+ p.life -= dt
+ if (p.life <= 0) { this.kill(i); continue }
+ if (cfg.useGravity) p.vy += cfg.gravity * dt
+ // 风力
+ if (cfg.wind) { p.vx += cfg.windX * dt; p.vy += cfg.windY * dt }
+ // 力场(吸力/斥力,作用在发射点附近)
+ if (cfg.forceField && cfg.forceStrength !== 0) {
+ const dx = base.x - p.x, dy = base.y - p.y
+ const dist = Math.hypot(dx, dy) || 0.0001
+ if (dist < cfg.forceRadius) {
+ const f = cfg.forceStrength * (1 - dist / cfg.forceRadius)
+ p.vx += (dx / dist) * f * dt * 10
+ p.vy += (dy / dist) * f * dt * 10
+ }
+ }
+ // 阻尼:速度按衰减系数逐渐减小
+ if (cfg.damping > 0) {
+ const f = Math.max(0, 1 - cfg.damping * dt)
+ p.vx *= f; p.vy *= f
+ }
+ p.x += p.vx * dt
+ p.y += p.vy * dt
+ p.rotation += p.rotationSpeed * dt
+ const t = 1 - p.life / p.maxLife
+ const s = p.sprite
+ s.x = p.x; s.y = p.y; s.rotation = -p.rotation * Math.PI / 180
+ s.scale.set(p.scaleStart + (p.scaleEnd - p.scaleStart) * t)
+ s.alpha = cfg.alphaMode === 'curve' ? curveAt(cfg.alphaCurve, t) * cfg.alphaScale : (p.alphaStart + (p.alphaEnd - p.alphaStart) * t) * cfg.alphaScale
+ const rgb = cfg.colorOverLife ? blendRgb(cfg.colorStart, cfg.colorEnd, t) : hexToNumber(cfg.colorStart)
+ s.tint = rgb
+ states.push({ boneName: p.boneName, x: p.x, y: p.y, rotation: p.rotation, scaleX: s.scale.x, scaleY: s.scale.y, alpha: s.alpha, colorHex: rgb, active: true })
+ }
+ this.states = states
+ return states
+ }
+
+ private emitBurst() {
+ for (let i = 0; i < this.cfg.burstCount; i++) this.spawnOne()
+ }
+
+ private spawnOrigin(): { x: number; y: number } {
+ const cfg = this.cfg
+ // 局部原点 = 0(root 中心,centerX 由发射器容器 position 补回);粒子相对 root 中心 = 偏移X/Y
+ let ox = cfg.offsetX, oy = cfg.offsetY
+ // 采用数学坐标系(Y 向上为正):world 为屏幕坐标(向下为正),故 y 取负
+ oy = -oy
+ const s = cfg.shape
+ if (s === 'circle') {
+ const a = this.rng() * Math.PI * 2, r = this.rng() * cfg.radius
+ return { x: ox + Math.cos(a) * r, y: oy + Math.sin(a) * r }
+ } else if (s === 'rect') {
+ return { x: ox + (this.rng() - 0.5) * cfg.rectW, y: oy + (this.rng() - 0.5) * cfg.rectH }
+ } else if (s === 'cone') {
+ // 锥体:粒子从中心(锥形顶点)发射,方向由 spawnOne 在 [direction ± coneAngle/2] 扇形内随机
+ return { x: ox, y: oy }
+ }
+ return { x: ox, y: oy }
+ }
+
+ private spawnOne() {
+ const cfg = this.cfg
+ let idx = this.pool.findIndex((p) => !p.active)
+ if (idx === -1) return // 池满
+ const { x: ox, y: oy } = this.spawnOrigin()
+ const life = lerp(cfg.lifeMin, cfg.lifeMax, this.rng())
+ const speed = lerp(cfg.speedMin, cfg.speedMax, this.rng())
+ // 锥体:发射方向用锥形开口角度(coneAngle)散布,且 y 朝数学上正(与扇区绘制一致);其余形状沿用 spread + 屏幕坐标
+ let dirAng: number
+ if (cfg.shape === 'cone') {
+ dirAng = (cfg.direction + lerp(-cfg.coneAngle / 2, cfg.coneAngle / 2, this.rng())) * Math.PI / 180
+ } else {
+ dirAng = (cfg.direction + lerp(-cfg.spread / 2, cfg.spread / 2, this.rng())) * Math.PI / 180
+ }
+ const p = this.pool[idx]
+ p.active = true; p.life = life; p.maxLife = life
+ p.x = ox; p.y = oy
+ p.vx = Math.cos(dirAng) * speed
+ p.vy = (cfg.shape === 'cone' ? -Math.sin(dirAng) : Math.sin(dirAng)) * speed
+ p.scaleStart = lerp(cfg.scaleMin, cfg.scaleMax, this.rng())
+ p.scaleEnd = p.scaleStart * cfg.scaleEndRatio
+ p.alphaStart = cfg.alpha; p.alphaEnd = cfg.alphaEnd
+ p.rotation = this.rng() * 360; p.rotationSpeed = lerp(cfg.rotationSpeedMin, cfg.rotationSpeedMax, this.rng())
+ p.sprite.tint = hexToNumber(cfg.colorStart)
+ p.sprite.visible = true
+ }
+
+ private kill(i: number) {
+ const p = this.pool[i]
+ p.active = false
+ p.sprite.visible = false
+ }
+
+ clear() {
+ for (const p of this.pool) { p.active = false; p.sprite.visible = false }
+ }
+
+ get activeCount() {
+ let n = 0
+ for (const p of this.pool) if (p.active) n++
+ return n
+ }
+
+ /** 录制:返回当前活动粒子的深拷贝快照 */
+ capture(): ParticleState[] {
+ const out: ParticleState[] = []
+ for (const p of this.pool) {
+ if (!p.active) continue
+ out.push({
+ boneName: p.boneName, x: p.x, y: p.y, rotation: p.rotation,
+ scaleX: p.sprite.scale.x, scaleY: p.sprite.scale.y,
+ alpha: p.sprite.alpha, colorHex: p.sprite.tint as number, active: true,
+ })
+ }
+ return out
+ }
+
+ /** 回放:把快照还原到 sprite(非活动粒子隐藏) */
+ apply(states: ParticleState[]) {
+ const byName = new Map()
+ for (const s of states) byName.set(s.boneName, s)
+ for (const p of this.pool) {
+ const st = byName.get(p.boneName)
+ if (!st) { p.sprite.visible = false; continue }
+ const s = p.sprite
+ s.visible = true
+ s.x = st.x; s.y = st.y
+ s.rotation = -st.rotation * Math.PI / 180
+ s.scale.set(st.scaleX, st.scaleY)
+ s.alpha = st.alpha
+ s.tint = st.colorHex
+ }
+ }
+
+ /** 清空所有粒子并重置发射计时 */
+ reset() {
+ for (const p of this.pool) { p.active = false; p.sprite.visible = false }
+ this.accumulator = 0
+ this.burstTimer = 0
+ this._elapsed = 0
+ // 从头重新模拟:若种子>0,重设随机源到序列头,保证同一种子每次从头录制结果一致
+ if (this.cfg.seed > 0) { this._lastSeed = this.cfg.seed; this.rng = mulberry32(this.cfg.seed >>> 0) }
+ }
+}
+
+function lerp(a: number, b: number, t: number) { return a + (b - a) * t }
+/** 在透明度曲线关键帧上按 x(生命周期时刻 0~1)求 y(透明度 0~1)。保证有序、端点外取端点 */
+function curveAt(pts: { x: number; y: number }[], x: number): number {
+ if (!pts || pts.length === 0) return 1
+ const p = [...pts].sort((a, b) => a.x - b.x)
+ if (x <= p[0].x) return p[0].y
+ if (x >= p[p.length - 1].x) return p[p.length - 1].y
+ for (let i = 0; i < p.length - 1; i++) {
+ if (x >= p[i].x && x <= p[i + 1].x) {
+ const t = (x - p[i].x) / (p[i + 1].x - p[i].x || 1)
+ return lerp(p[i].y, p[i + 1].y, t)
+ }
+ }
+ return p[p.length - 1].y
+}
+/** 确定性伪随机(mulberry32),种子相同则序列相同 */
+function mulberry32(seed: number): () => number {
+ let a = seed >>> 0
+ return function () {
+ a |= 0; a = (a + 0x6D2B79F5) | 0
+ let t = Math.imul(a ^ (a >>> 15), 1 | a)
+ t = (t + Math.imul(t ^ (t >>> 7), 61 | t)) ^ t
+ return ((t ^ (t >>> 14)) >>> 0) / 4294967296
+ }
+}
+function hexToNumber(hex: string): number {
+ let h = hex.replace('#', '')
+ if (h.length === 3) h = h.split('').map((c) => c + c).join('')
+ return parseInt(h, 16)
+}
+function blendRgb(start: string, end: string, t: number): number {
+ const s = hexToRgb(start), e = hexToRgb(end)
+ const r = Math.round(s[0] + (e[0] - s[0]) * t)
+ const g = Math.round(s[1] + (e[1] - s[1]) * t)
+ const b = Math.round(s[2] + (e[2] - s[2]) * t)
+ return (r << 16) | (g << 8) | b
+}
+function hexToRgb(hex: string): [number, number, number] {
+ let h = hex.replace('#', '')
+ if (h.length === 3) h = h.split('').map((c) => c + c).join('')
+ const n = parseInt(h, 16)
+ return [(n >> 16) & 255, (n >> 8) & 255, n & 255]
+}
diff --git a/src/main.ts b/src/main.ts
new file mode 100644
index 0000000..7bf151f
--- /dev/null
+++ b/src/main.ts
@@ -0,0 +1,6 @@
+import { createApp } from 'vue'
+import { createPinia } from 'pinia'
+import App from './App.vue'
+import './style.css'
+
+createApp(App).use(createPinia()).mount('#app')
diff --git a/src/store/particleStore.ts b/src/store/particleStore.ts
new file mode 100644
index 0000000..881f6c6
--- /dev/null
+++ b/src/store/particleStore.ts
@@ -0,0 +1,114 @@
+import { defineStore } from 'pinia'
+import { EmitterConfig, defaultConfig, ParticleState } from '../core/particleEmitter'
+
+export interface ParticleSystem {
+ id: number
+ config: EmitterConfig
+ /** 录制到的帧序列(每帧 = 该帧活动粒子快照) */
+ frames?: ParticleState[][]
+}
+
+export interface EditorState {
+ viewScale: number
+ viewX: number
+ viewY: number
+}
+
+/** 系统设置(可通过右上角设置面板调整) */
+export interface SettingsState {
+ /** 是否启用刻度(主开关;启用=显示坐标轴+刻度线+数值,可调整字号/粗细) */
+ tickEnabled: boolean
+ /** 坐标轴刻度文字大小(px),默认 12 */
+ axisFontSize: number
+ /** 刻度线粗细(px) */
+ tickWidth: number
+ /** 是否显示坐标轴刻度数值 */
+ showAxisLabels: boolean
+ /** 坐标轴数值颜色(#rrggbb) */
+ axisColor: string
+}
+
+export interface TimelineState {
+ /** 播放模式 */
+ playing: boolean
+ /** 循环 */
+ loop: boolean
+ /** 当前帧 */
+ frame: number
+ /** 总帧数 */
+ totalFrames: number
+ /** 帧率 */
+ fps: number
+ /** 是否已录制 */
+ recorded: boolean
+ /** 动画名(暂用于显示) */
+ animation: string
+}
+
+let seq = 1
+
+export const useParticleStore = defineStore('particle', {
+ state: () => ({
+ editor: { viewScale: 1.0, viewX: 0, viewY: 0 } as EditorState,
+ systems: [] as ParticleSystem[],
+ activeId: 0,
+ timeline: { playing: true, loop: true, frame: 0, totalFrames: 120, fps: 60, recorded: false, animation: 'animation' } as TimelineState,
+ settings: { tickEnabled: false, axisFontSize: 12, tickWidth: 1, showAxisLabels: true, axisColor: '#7a86ad' } as SettingsState,
+ }),
+ getters: {
+ activeSystemCount: (s) => s.systems.length,
+ },
+ actions: {
+ addSystem(initial?: Partial<{ config: Partial }>) {
+ const cfg = defaultConfig()
+ if (initial?.config) Object.assign(cfg, initial.config)
+ // 自动生成不重复名字:若"ParticleSystemN"已存在,取已有数字最大值+1
+ const existing = new Set(this.systems.map((s) => s.config.name))
+ if (existing.has(cfg.name)) {
+ let maxN = 0
+ for (const s of this.systems) {
+ const m = /^ParticleSystem(\d+)$/.exec(s.config.name)
+ if (m) maxN = Math.max(maxN, parseInt(m[1], 10))
+ }
+ cfg.name = `ParticleSystem${maxN + 1}`
+ let i = 2
+ while (existing.has(cfg.name)) { cfg.name = `ParticleSystem${maxN + i}`; i++ }
+ }
+ const sys: ParticleSystem = { id: seq++, config: cfg }
+ this.systems.push(sys)
+ this.activeId = sys.id
+ return sys
+ },
+ removeSystem(id: number) {
+ const i = this.systems.findIndex((s) => s.id === id)
+ if (i >= 0) this.systems.splice(i, 1)
+ if (this.activeId === id) this.activeId = this.systems[0]?.id ?? 0
+ },
+ selectSystem(id: number) { this.activeId = id },
+ play() { this.timeline.playing = true },
+ pause() { this.timeline.playing = false },
+ togglePlay() { this.timeline.playing = !this.timeline.playing },
+ toStart() { this.timeline.frame = 0 },
+ toggleLoop() { this.timeline.loop = !this.timeline.loop },
+ setFrame(f: number) {
+ this.timeline.frame = Math.max(0, Math.min(f, this.timeline.totalFrames - 1))
+ },
+ /** 依据所有粒子系统的"最晚消失时间"重算总帧数。
+ * 单系统总时长 = delay(延迟) + duration(发射时长) + lifeMax(粒子最大生命),
+ * 多系统取最大;转帧 = ceil(sec * fps)。 */
+ recalcTotalFrames() {
+ const fps = this.timeline.fps || 60
+ let maxSec = 0
+ for (const sys of this.systems) {
+ const c = sys.config
+ const end = (c.delay || 0) + (c.duration || 0) + (c.lifeMax || 0)
+ if (end > maxSec) maxSec = end
+ }
+ const frames = Math.max(1, Math.ceil(maxSec * fps))
+ this.timeline.totalFrames = frames
+ // clamp 当前帧
+ if (this.timeline.frame >= frames) this.timeline.frame = frames - 1
+ return frames
+ },
+ },
+})
diff --git a/src/style.css b/src/style.css
new file mode 100644
index 0000000..e80c9d1
--- /dev/null
+++ b/src/style.css
@@ -0,0 +1,9 @@
+html, body {
+ margin: 0;
+ padding: 0;
+ background: #0b0b12;
+ color: #e8e8f0;
+ font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
+}
+* { box-sizing: border-box; }
+#app { width: 100%; height: 100vh; }
diff --git a/src/views/CurveEditor.vue b/src/views/CurveEditor.vue
new file mode 100644
index 0000000..750c9a8
--- /dev/null
+++ b/src/views/CurveEditor.vue
@@ -0,0 +1,134 @@
+
+
+
+
双击空白新建·双击节点删除·拖动节点调整
+
+
+
+
+
+
diff --git a/src/views/NumSlider.vue b/src/views/NumSlider.vue
new file mode 100644
index 0000000..a40ed75
--- /dev/null
+++ b/src/views/NumSlider.vue
@@ -0,0 +1,63 @@
+
+
+ {{ label }}
+
+
+
+
+
+
+
+
diff --git a/src/views/ParticlePanel.vue b/src/views/ParticlePanel.vue
new file mode 100644
index 0000000..8532874
--- /dev/null
+++ b/src/views/ParticlePanel.vue
@@ -0,0 +1,331 @@
+
+
+
+
+
+
+
+ {{ sys.config.name || '系统 ' + (i + 1) }}
+
+
+
尚无粒子系统
+
+
+
+
+
+
+ {{ collapsed.scene ? '▸' : '▾' }}场景对象
+
+
+
+
●粒子系统
+
◇轨道路径预留
+
◇碰撞体预留
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ collapsed.emitMode ? '▸' : '▾' }}发射模式
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ collapsed.shape ? '▸' : '▾' }}发射器形状
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ collapsed.attr ? '▸' : '▾' }}粒子属性
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ collapsed.look ? '▸' : '▾' }}外观与资源
+
+
+
+
透明度
+
+
+
+
+
+
+
+
+
+
+
+
+
+
图片资源
+
+
+
+
+
+
+
+
+
+
+
+
{{ sys.config.textureName || 'star' }}.png(默认 star.png)
+
+
+
颜色
+
+
+
+
+
+
+
+
+
+
+
占比与缩放
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ collapsed.export ? '▸' : '▾' }}导出设置预留
+
+
+
+
+
点「+ 系统」创建粒子系统
+
+
+
+
+
+
diff --git a/src/views/Stage.vue b/src/views/Stage.vue
new file mode 100644
index 0000000..d7a3905
--- /dev/null
+++ b/src/views/Stage.vue
@@ -0,0 +1,664 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
{{ Math.round(store.editor.viewScale * 100) }}%
+
t={{ time.toFixed(2) }}s
+
+
+
+
+
+
+
+
+
+ 系统: {{ info.systems }} · 粒子(骨骼): {{ info.particles }} · 根骨骼: root
+ 滚轮缩放 · 左键拖动画布
+
+
+
+
+
+
+
diff --git a/src/views/Timeline.vue b/src/views/Timeline.vue
new file mode 100644
index 0000000..25f8798
--- /dev/null
+++ b/src/views/Timeline.vue
@@ -0,0 +1,192 @@
+
+
+
+
+
+
+
+ 帧 {{ store.timeline.frame }} / {{ store.timeline.totalFrames }}
+
+ {{ zoomLabel }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
●
+
+
+ {{ (sys.config as any).name || '系统 ' + (i + 1) }}
+
+
+
+
暂无粒子系统
+
+
+
+
+
+
+
+
diff --git a/tsconfig.json b/tsconfig.json
new file mode 100644
index 0000000..e60fbd6
--- /dev/null
+++ b/tsconfig.json
@@ -0,0 +1,22 @@
+{
+ "compilerOptions": {
+ "target": "ES2020",
+ "useDefineForClassFields": true,
+ "module": "ESNext",
+ "lib": ["ES2020", "DOM", "DOM.Iterable"],
+ "skipLibCheck": true,
+ "moduleResolution": "bundler",
+ "allowImportingTsExtensions": true,
+ "resolveJsonModule": true,
+ "isolatedModules": true,
+ "noEmit": true,
+ "jsx": "preserve",
+ "strict": true,
+ "noUnusedLocals": false,
+ "noUnusedParameters": false,
+ "noFallthroughCasesInSwitch": true,
+ "types": ["vite/client"]
+ },
+ "include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.vue"],
+ "references": [{ "path": "./tsconfig.node.json" }]
+}
diff --git a/tsconfig.node.json b/tsconfig.node.json
new file mode 100644
index 0000000..b940375
--- /dev/null
+++ b/tsconfig.node.json
@@ -0,0 +1,11 @@
+{
+ "compilerOptions": {
+ "composite": true,
+ "skipLibCheck": true,
+ "module": "ESNext",
+ "moduleResolution": "bundler",
+ "allowSyntheticDefaultImports": true,
+ "types": ["node"]
+ },
+ "include": ["vite.config.ts"]
+}
diff --git a/vite.config.d.ts b/vite.config.d.ts
new file mode 100644
index 0000000..340562a
--- /dev/null
+++ b/vite.config.d.ts
@@ -0,0 +1,2 @@
+declare const _default: import("vite").UserConfig;
+export default _default;
diff --git a/vite.config.js b/vite.config.js
new file mode 100644
index 0000000..799b80f
--- /dev/null
+++ b/vite.config.js
@@ -0,0 +1,13 @@
+import { defineConfig } from 'vite';
+import vue from '@vitejs/plugin-vue';
+export default defineConfig({
+ plugins: [vue()],
+ server: {
+ port: 5173,
+ host: true,
+ },
+ // 让 node_modules 里的 ESM 依赖能直接 work
+ optimizeDeps: {
+ include: ['@esotericsoftware/spine-pixi-v7'],
+ },
+});
diff --git a/vite.config.ts b/vite.config.ts
new file mode 100644
index 0000000..30c2e76
--- /dev/null
+++ b/vite.config.ts
@@ -0,0 +1,14 @@
+import { defineConfig } from 'vite'
+import vue from '@vitejs/plugin-vue'
+
+export default defineConfig({
+ plugins: [vue()],
+ server: {
+ port: 5173,
+ host: true,
+ },
+ // 让 node_modules 里的 ESM 依赖能直接 work
+ optimizeDeps: {
+ include: ['@esotericsoftware/spine-pixi-v7'],
+ },
+})
diff --git a/开发计划.md b/开发计划.md
new file mode 100644
index 0000000..2e01962
--- /dev/null
+++ b/开发计划.md
@@ -0,0 +1,168 @@
+# Spine 网页端粒子系统 · 开发计划(定稿 v1.0,已确认)
+
+> **已确认的决策**
+> - 产品形态:**独立编辑器/演示站**
+> - 技术栈:**Vue 3 + Vite + TypeScript + Pinia**
+> - Spine 预览运行时:**@pixi/spine + PixiJS 8**(主打 4.2,兼容 3.8/4.0/4.1 预览)
+> - 粒子系统:自研轻量粒子池(预览用,勿黑盒库)
+> - 导出:**A 方案 —— 工程配置 JSON**(不产出 Spine 动画 JSON;先做 A,MVP 优先,架构为后续 B 预留)
+> - 部署:**纯前端静态构建 → Netlify/Vercel/GitHub Pages**,零后端
+
+---
+
+## 一、目标
+
+让没有粒子系统的 Spine 动画,能在网页端**可视化地叠加粒子特效**。用户在网页里:
+1. 上传/加载 Spine 骨骼动画(`.json + .atlas + .png`)或内置示例;
+2. 在骨骼上配置粒子发射器(可**跟随骨骼**、调各种参数、应用预设);
+3. **实时预览**效果;
+4. 保存为"工程配置 JSON",下次可再次加载编辑。
+
+> 对标:喵喵 Spine Particle / Spine Particle Studio。**注意**:本次范围是"编辑器+预览+存配置",暂不做那两个站的"导出 Spine 动画 JSON"核心烘焙功能(那属 B 方案,列为后续扩展,见第八节)。
+
+---
+
+## 一·补充、参考站实测核对(已于浏览器读取确认)
+
+### 站1:喵喵 Spine Particle v0.14.1
+- 保存/加载配置;**场景对象=粒子系统**(名称/所属动画/系统X/Y/旋转/ScaleX/ScaleY/**参与碰撞 Collision Filter+碰撞标签**)
+- 发射:爆发/持续、延迟(秒/帧)、数量、形状(点/圆/矩形/锥体/**轨道**)、方向(随机/固定角度世界/局部/跟随轨道)
+- 属性:初始速度/生命周期/缩放(统一与XY分离)/旋转(各支持 固定/随机/**曲线**)、生命周期内变化
+- 外观:透明度(固定/曲线,跟随导出/强制线性/强制贝塞尔)、图片(单图/序列/子文件夹)、颜色(固定色/生命周期)、混合模式(正常/相加/相乘/滤色)、缩放/轴心/独立透明度
+- 修改器:**发射器跟随**/移动噪声/重力/风力/力场(吸斥)/拖尾
+- **导出 Spine JSON**(Spine 3.8/4.0/4.1/4.2、关键帧插值线性/贝塞尔/阶跃、导出FPS、整数帧对齐、**骨骼对象池**、导出骨架、排除无内容动画、图片路径)
+- 操作:中键平移、Ctrl+滚轮缩放、Ctrl+Z 撤销、G/L 全局局部坐标、时间轴
+- 附:页面头部含**官方飞书文档**
+
+### 站2:Spine Particle Studio
+- 系统列表/名称/粒子位置X/Y/发射器旋转
+- 贴图:模式(单图/序列帧/雪碧图)、**内置贴图**(发光星/柔光点/发光环/六角雪花/十字火花/闪耀菱形)+ 自定义上传
+- 发射:爆发/持续、方向/吸收(向外/向内)、数量、延迟、总时长、循环/无缝循环/**预热**、形状(点/圆/矩形/扇形)、发射角度/偏移
+- 粒子属性:速度/生命/透明度/缩放(固定/随机/曲线,且带**曲线绘制器** 基础值/重置/START/LIFE TIME/END)、初始旋转模式(固定/随机/方向)、旋转模式(速度/曲线)、颜色(固定/生命周期)、混合模式
+- 物理与随机:速度抑制/重力/抖动/移动噪声/吸引力场/**碰撞与阻碍物**/随机种子/路径跟随/死亡触发/**拖尾子粒子**(主粒子<20)
+- 背景:参考图/上传背景/显示背景/透明度
+- **导出 Spine JSON**(Spine 3.8/4.0/4.1/4.2、导出FPS、图片路径)、UI 主题、撤回0/10
+
+### 两站共性(确认)
+> 都是一个**粒子特效编辑器**:可视化配置 → 实时预览 → **导出为 Spine 骨骼动画 JSON** 供并入 Spine 工程。站1 更强调"骨骼跟随+骨骼对象池+曲线插值";站2 更强调"内置贴图+物理+拖尾子粒子+曲线绘制器"。
+
+### 对本次 A 方案的定位(重要)
+> 本次(A 方案)做的是完整"编辑器+实时预览+工程配置 JSON 存取",**不含**上述"导出 Spine JSON 烘焙"。两者的功能清单(属性/发射/修改器/贴图)在**预览层**基本一致,只是导出层不同;因此做 A 时,除导出外其余功能均按上述清单实现,架构为 B(导出)预留,见第八节。
+
+---
+
+## 二、核心功能清单
+
+| 模块 | 明细 |
+|---|---|
+| 资源加载 | 上传 `.json+.atlas+.png` / 内置示例(`sample.json` 4.2.43 可当测试数据) |
+| 动画控制 | 播放/暂停/停止、循环、动画切换、时间缩放、皮肤切换、骨架缩放/位移 |
+| **粒子系统** | 发射器(爆发/持续)、发射形状(点/圆/矩形/扇形/锥体)、发射方向/角度、粒子数量、延迟、时长 |
+| 粒子属性 | 速度/生命/透明度/缩放/旋转(各支持 固定/随机/曲线)、颜色(固定/生命周期)、混合模式 |
+| **骨骼跟随** | 发射器绑定到某根骨骼/插槽,原点随骨骼逐帧更新(核心特性) |
+| 修改器(可选增强) | 重力、风力、移动噪声、拖尾、力场 |
+| 贴图资源 | 内置(发光星/柔光点/发光环/雪花/火花/菱形)+ 用户上传;支持 单图/序列帧/雪碧图 |
+| 编辑器 UI | 场景对象(粒子层)管理、参数面板(滑块/颜色选择/曲线编辑)、预设模板 |
+| 保存/加载 | 导出/导入**工程配置 JSON**;支持撤销/重做、随机种子 |
+| 操作习惯 | 中键平移、滚轮缩放 |
+
+---
+
+## 三、技术选型
+
+| 层 | 选型 |
+|---|---|
+| 前端 | Vue 3 + Vite + TypeScript + Pinia |
+| Spine 渲染(预览) | @pixi/spine(runtime-4.2 主,兼容 3.8/4.0/4.1)+ PixiJS 8 |
+| 粒子预览 | 自研粒子池(Pixi ParticleContainer / 自定义 WebGL 精灵) |
+| 状态 | Pinia |
+| 部署 | Vite 静态构建 → 静态托管 |
+
+---
+
+## 四、核心设计(预览层)
+
+- 编辑器画布 = Spine 骨骼渲染 + 若干 `ParticleEmitter`。
+- `ParticleEmitter` 管理一个池化粒子容器;每帧:发射原点 = 所属骨骼世界坐标 + 偏移 → 发射粒子 → 更新(位置/速度/重力/寿命/颜色/旋转/alpha)→ 渲染。
+- 参数用**归一化数据模型**描述(固定 = 定值 / 随机 = [min,max] / 曲线 = 贝塞尔控制点),同一份模型驱动预览渲染与将来导出。
+- 贴图:内置一组 + 用户上传;支持单图/序列帧/雪碧图。
+
+---
+
+## 五、代码结构(建议)
+
+```
+SpineParticle/
+├─ index.html
+├─ vite.config.ts
+├─ package.json
+├─ src/
+│ ├─ main.ts
+│ ├─ App.vue
+│ ├─ core/
+│ │ ├─ spineLoader.ts # json/atlas/png 加载解析、多版本
+│ │ ├─ particleEmitter.ts # 预览粒子发射器(池化)
+│ │ ├─ particleSystem.ts # 多发射器/帧更新/骨骼跟随
+│ │ ├─ curves.ts # 固定/随机/贝塞尔 求值
+│ │ ├─ presets.ts # 内置贴图 + 预设模板
+│ │ └─ types.ts # 数据模型 + 工程配置结构
+│ ├─ views/
+│ │ ├─ Stage.vue # 场景/预览画布
+│ │ ├─ AnimationPanel.vue # 动画控制
+│ │ ├─ ParticlePanel.vue # 粒子层列表 + 参数面板
+│ │ └─ PresetPicker.vue # 预设模板
+│ └─ store/
+│ └─ particleStore.ts # spine 资源 + 粒子层状态
+└─ 开发计划.md
+```
+
+---
+
+## 六、开发阶段(先 MVP 后增强)
+
+| 阶段 | 内容 | 产出 |
+|---|---|---|
+| **0 需求确认** | 完成(本计划定稿) | — |
+| **1 技术验证 Spike** | pixi-spine 加载 `sample.json` 并播放;**一个粒子点跟随 `symbols` 骨骼** | 最小可演示 |
+| **2 Spine 预览核心** | 资源加载(上传+内置)、动画/皮肤/缩放/控制、时间轴 | 可操作现有骨骼 |
+| **3 粒子预览引擎** | 粒子池、发射器、基础参数、曲线求值、**骨骼跟随** | 骨骼上长出粒子 |
+| **4 编辑器 UI** | 场景对象管理、参数面板(滑块/颜色/曲线)、内置贴图+预设 | 可视化编辑 |
+| **5 保存/加载** | 导出/导入工程配置 JSON、撤销/重做、随机种子 | 可保存/分享 |
+| **6 部署上线** | Vite 构建 → 静态托管,验证 URL | 线上可用 |
+
+> 每阶段都有可运行成果,可随时停下验收。
+
+---
+
+## 七、验收标准(阶段 6 完成时)
+
+- 打开网页 → 加载内置示例(或用你的 `sample.json`)→ 播放动画;
+- 在任意骨骼上添加粒子层 → 粒子**跟随骨骼**运动;
+- 通过面板调节速率/寿命/速度/颜色/缩放/alpha/重力等 → 实时可见;
+- 切换预设 vs 自定义 → 生效;
+- 保存工程配置 → 刷新后加载还原;
+- 部署到静态托管,公网可访问。
+
+---
+
+## 八、后续扩展(本次不做,已明确后置)
+
+**用户决策:不做烘焙导出,本次只做预览。烘焙这一"大头功能"放后续做。**
+
+- **烘焙导出(后置大目标,即 B 方案)**:把粒子效果**烘焙导出为 Spine 骨骼动画 JSON**(对象池骨骼、逐帧采样、曲线插值线性/贝塞尔/阶跃、fps/整数帧对齐、多版本 3.8/4.0/4.1/4.2 schema)。本项目的"归一化数据模型 + 骨骼跟随"已为此预留,将来平滑接入,无需推翻现有架构。
+- 物理系统补充:碰撞体/阻碍物、路径跟随、死亡触发、拖尾子粒子、物理吸引力场。
+- 多版本**导出**支持(预览层面本项目已支持多版本)。
+
+> 本次 A 方案与 B 方案只在"导出层"不同:预览层的功能清单(属性/发射/修改器/贴图)两者一致,因此当前实现的每一项都会成为将来 B 方案的直接输入。
+
+---
+
+## 附:交付物
+
+- 一个可运行、可部署的 Vue 3 单页应用(代码 + `package.json`);
+- 支持上传 Spine 资源、可视化配置粒子、骨骼跟随、实时预览、存/取配置;
+- 开发计划本文件。
+
+---
+
+> ⚠️ 由于需在浏览器里实际调 spine + 粒子渲染与交互,**建议边开发边在浏览器里目视验收**,因此在阶段 1 用你的 `sample.json` 做技术验证(Spike)是关键第一步。
diff --git a/粒子系统开发阶段一.md b/粒子系统开发阶段一.md
new file mode 100644
index 0000000..5f0ff43
--- /dev/null
+++ b/粒子系统开发阶段一.md
@@ -0,0 +1,74 @@
+# 粒子系统开发 · 阶段一总结
+
+定位:一个网页端粒子发射编辑器(Vue3 + Vite + TS + Pinia + PixiJS),负责「粒子发射系统的参数化编辑 + 实时预览」。**不依赖 Spine 运行时**,Spine 只是未来导出的目标格式,未做烘焙导出(按决定后置)。
+
+目录:`/Users/tianmokeji/Desktop/SpineParticle`(dev server: `http://localhost:5173`)。
+
+---
+
+## 一、产出
+
+### 核心文件
+- `src/core/particleEmitter.ts` — 自研池化粒子发射器。排放模式(持续/爆发)、发射形状(点/圆/矩形/锥体)、速率、寿命、速度、缩放、旋转、颜色、混合、重力、风力、阻尼、随机种子、透明度曲线插值 `curveAt`。
+- `src/store/particleStore.ts` — Pinia 状态(多粒子系统、activeId 选中、时间轴、画布设置、`settings` 坐标轴配置)。
+- `src/views/ParticlePanel.vue` — 左侧参数面板,7 个可折叠分组:场景对象/发射模式/发射器形状/粒子属性/外观与资源/修改器/导出设置(预留)。
+- `src/views/Stage.vue` — Pixi 画布(网格背景、滚轮缩放、左键拖拽、无限坐标轴、系统设置面板、发射点标记)。
+- `src/views/Timeline.vue` — 底部时间轴(播放/暂停/回到起点/循环、帧计数、滚轮缩放、每系统轨道条、拖动调延迟/时长)。
+- `src/views/CurveEditor.vue` — 透明度生命周期曲线(横 0-1 时间、纵 0-1 透明度,节点拖动、双击新建/删除)。
+- `src/views/NumSlider.vue` — 滑块+数字框复用控件。
+- `public/particles/star.png` — 默认贴图。
+
+### 已确认的关键行为
+- Y 轴采用数学坐标系:**向上为正、向下为负**。
+- 位置X/位置Y 是**锚点(黄点)**,偏移X/偏移Y 让**粒子相对黄点额外位移**,物理/力场源锚在锚点。
+- 一个粒子系统 = 一个坐标点;无系统时画布无边线;选中系统高亮黄色,其余淡灰蓝。
+- `totalFrames` 由 `delay + duration + lifeMax` 按生命周期自动算出,只在改这些属性时重算(签名监听,不卡)。
+- 默认:发射速率 10/s、透明度用曲线(默认平台曲线 `(0,0)(0.2,1)(0.8,1)(1,0)`)、贴图 star.png、英文命名 ParticleSystem1 递增、画布默认 100%(最小 1%、无上限)、默认不显示骨骼连线、进入页面空白、默认循环播放。
+- 设置面板「启用刻度」是坐标轴唯一主开关,默认关闭,内部含字号/线宽/颜色/显示刻度数值。
+
+### 明确未做(预留)
+导出 Spine JSON 烘焙、轨道路径/碰撞体/导出设置(界面占位)、真实 `.atlas+.png` 骨骼贴图。
+
+---
+
+## 二、踩过的坑
+
+### 1. 方向性坑(代价最大)
+- 一开始把 sample.json 当"要预览的素材",被纠正为"用来创建粒子系统",再被纠正为"用参数创建、json 是最终导出物",最后"不要强行匹配 spine,只负责粒子发射编辑器"。多轮方向错误导致大面积返工(一度引入 spine-pixi 依赖、做骨骼对象池架构)。
+- 做了"加载示例骨骼"按钮,被否定(粒子系统创建应由编辑器参数决定)。
+- 进页面自动建"系统1"、预置 item_11,被要求默认空白。
+
+### 2. 技术坑
+- **Pixi7 Color API**:`copyFrom`、`setValue(r,g,b)` 不存在,渐变插值需手动拼 RGB 再 `.toNumber()`。
+- **坐标轴文字放大变糊**:Text 放在被缩放的 world 容器会位图模糊;移到独立 `axisLabelLayer`(不随 world scale),用世界→屏幕坐标定位。
+- **SVG 曲线编辑器点变椭圆/viewBox 拉伸**:`preserveAspectRatio="none"` 使 100×100 viewBox 拉成非正方形,圆变椭圆且命中区小;改为像素坐标系 + 加大命中圈。
+- **曲线编辑器 `dblclick` 不触发**:透明命中圆上的 dblclick 被 pointer 捕获抑制;改为在 pointerdown 里检测两次点击(300ms 内、位移<8px)。
+- **双击删除又新建**:删除节点后同一次双击的 dblclick 冒泡到 SVG 触发"双击空白新建";用删除抑制时间戳窗口解决。
+- **录制→回放使面板改动不实时**:进入回放读旧帧,改参数(速率/颜色/曲线)不更新;把触发重录的 watch 改为对整个 config 做 `JSON.stringify`(排除 texture)的签名监听。
+- **deep watch 引发每帧重算卡死**:之前 `watch(config, {deep:true})` 监听整个 config,emitter 每帧把 `_elapsed` 写进 config 导致深比较触发;修法:仅监听生命周期签名 + 把 `_elapsed` 移出 config 改为 emitter 私有字段。
+- **发射点与位置X/Y 错位**:`setEmitterPos` 返回 centerX/centerY,而 `spawnOrigin` 又加一次 centerX,等于 `2×centerX+offsetX`;把锚点来源统一为 `_emitterPos()`,再加 offset。
+- **Y 轴方向反了**:坐标轴标签是数学坐标(上正),world 用屏幕坐标(下正),位置Y 为正反而画向下;在发射点初始化处把锚点 Y 取负。
+
+### 3. 协作/流程坑
+- 反复来回挪同一设置面板里的选项(坐标轴颜色、显示刻度数值),属"反复折腾同一功能"。
+- 有明确方向时仍多次用 ask_user_question 确认 A/B 方案,拖慢节奏。
+
+---
+
+## 三、经验
+
+1. 先对齐"坐标系/数据模型"设计,再写编辑器代码。最贵的返工来自语义理解偏差,而非语法/API 问题。
+2. 区分"一次功能 vs 一次架构"。小参数改动要最小侵入;方向级错误要敢于回滚,不要继续堆。
+3. 性能敏感的循环里别 deep watch 可变的引用对象。粒子每帧改状态,任何 deep 监听都会拖垮帧率;用序列化签名 + 把每帧变化的场移到组件私有字段。
+4. 坐标系不统一是渲染 bug 高发地。屏幕坐标(下正)与数学坐标(上正)混用,导致"位置反了/文字糊了/缩放不对";最好在数据入口一次转换,渲染层保持单一约定。
+5. headless(puppeteer)自测有效。浏览器工具受限时,headless 截图 + `read_image` 能自主验证"位置/方向/颜色/数值是否生效"。
+6. 事件优先级要兜底。曲线编辑器这类点击/拖动/双击/删除并存的小组件,事件易互相干扰(删了又建、拖了误删),需时间戳/位移阈值/抑制窗口做防抖。
+
+---
+
+## 四、现状与风险
+
+- 还没做**导出**,一切围绕"调参 + 预览";导出 JSON(含烘焙 Spine)是后续大工程,现有"锚点 + 偏移 + 曲线 + 生命周期"数据模型已为此留接口。
+- **发射方向(direction)/力场/移动噪声**这些修改器参数,物理方向在 Y 翻转后个别(发射方向角度、力场基准点 `base`)可能仍需按数学坐标复核;本次只改了黄点和粒子发射起点,`base`(力场)默认关闭未动,开启时需再验证。
+- **爆发模式下 totalFrames 算法**(一次全出、无持续窗口)可能与预期不同,值得确认。
+- 代码是反复迭代出来的,个别函数较长、命名一般;若有长期维护打算,建议做一轮小清理(非必须)。
diff --git a/网页粒子系统阶段二.md b/网页粒子系统阶段二.md
new file mode 100644
index 0000000..6de0ec8
--- /dev/null
+++ b/网页粒子系统阶段二.md
@@ -0,0 +1,249 @@
+# 网页粒子系统 · 阶段二
+
+> 一个纯前端的 **Spine 粒子发射编辑器**(参考 喵喵 Spine Particle / Spine Particle Studio)。
+> 本阶段聚焦「粒子发射编辑器的系统设计与显示」,不强行绑定 Spine 运行时;Spine 仅是未来导出格式的参考,`spine/sample.json` 只作素材,不做为编辑器模板。
+> 工程目录:`/Users/tianmokeji/Desktop/SpineParticle`
+
+---
+
+## 一、项目定位与技术栈
+
+**定位**:可视化配置粒子特效、实时预览,最终输出导出所需的数据模型(导出为后续阶段,现阶段为预览/编辑铺路)。
+
+**技术栈**
+- 前端框架:Vue 3 + TypeScript + Vite
+- 状态管理:Pinia
+- 渲染:PixiJS 7.4(`@esotericsoftware/spine-pixi-v7` **已卸载**,当前不依赖任何 Spine 运行时;`pixi.js` 用于画布)
+- 粒子:自研粒子发射器 `ParticleEmitter`(池化,Sprite 池)
+
+**明确不做(预留)**:导出 Spine JSON 烘焙、骨骼对象池匹配 Spine 运行时。(本阶段核心 = 编辑器 + 预览。)
+
+---
+
+## 二、已完成功能清单
+
+### 2.1 面板(ParticlePanel)架构
+按参考站分组、全部可折叠:
+
+| 分组 | 内容 |
+|---|---|
+| **场景对象** | 树形层级(●粒子系统 / ◇轨道路径【预留】 / ◇碰撞体【预留】),名称、位置X、位置Y、偏移X、偏移Y、**旋转、缩放X、缩放Y** |
+| **发射模式** | 持续(发射速率) / 爆发(单次数量) |
+| **发射器形状** | 形状(点/圆/矩形/锥体/轨道),圆/锥(半径)、矩形(宽/高)、锥形开口角度、发射角度、扩散角度 |
+| **粒子属性** | 速度下限/上限、生命下限/上限、缩放下限/上限、旋转速度、随机种子 |
+| **外观与资源** | 透明度(曲线/固定)、曲线模式(跟随导出/线性/贝塞尔)、图片资源(子文件夹/名称)、颜色类型(固定色/渐变)、混合(正常/相加/相乘/滤色)、占比与缩放(占比/缩放/轴心/独立透明度) |
+| **修改器 (Modifiers)** | 移动噪声、重力、风力、力场、拖尾、碰撞【预留】、路径跟随【预留】、阻尼 |
+| **导出设置** | 预留(占位) |
+
+**数值调节统一为滑块 + 数字框并存**(`NumSlider` 组件)。
+
+### 2.2 画布(Stage)
+- 网格背景(可切 ▦),深色棋盘格。
+- 滚轮缩放画布:`默认 100%`,`最小 1%`,**无上限**;以鼠标为中心缩放(鼠标下的世界点不漂移)。
+- 左键长按拖动画布(平移)。
+- 顶部工具栏:
+ - **根变换工具**:✋ 拖动画布(默认)、✥ 位移、⟳ 旋转、⤢ 缩放(切换后用 gizmo 拖拽根节点)。
+ - 视图工具:+/- 缩放、⤢ 适配画布、▦ 网格、⟳ 重置视图。
+ - 开关:发射点、骨骼连线、⚙ 系统设置。
+- 坐标轴:`center+center` 无限长 x/y 轴 + 自适应整数刻度,数字标签放**独立不缩放图层**(避免放大变糊);由系统设置"启用刻度"主开关控制。
+- **发射点(黄点)**:每个系统一个,绑 位置X/位置Y(centerX/centerY);选中高亮黄,其余淡蓝灰;无系统不画。
+- **发射器形状范围**:选中对应形状时绘制绿圆(圆形)、蓝矩形(矩形)、绿锥形(锥体),随参数实时响应;点/轨道不绘制。
+- **根变换 gizmo**:选中工具后在 root 中心亮青色手柄(位移十字箭头 / 旋转圆环 / 缩放方框角点)。
+
+### 2.3 时间轴(Timeline)
+- 控制按钮:❚❚/▶ 播放暂停、⏮ 回到起点、⟳ 循环。
+- 帧显示 `当前帧 / 总帧数`,动画名下拉。
+- 标尺:整数帧刻度;**滚轮缩放只改变显示范围(视口帧数,左端恒为第 0 帧),不改变播放时长**;刻度为整数、最小 0。
+- 每系统一条轨道;播放头可拖动滑动。
+- **粒子条**:位置 = 延迟(delay)起点,宽度 = 发射时长(duration)+粒子生命(lifeMax) = 总时长;左端之前空白 = 延迟时长。可整体拖动(调 delay)、拖右缘(调 duration)。
+
+### 2.4 系统设置(⚙ 面板)
+- **启用刻度** 主开关(默认关闭):开启才显示坐标轴并展开其余配置项。
+ - 刻度文字大小(默认 12px)、刻度线粗细、坐标轴颜色、显示刻度数值(均随"启用刻度"显隐)。
+
+### 2.5 默认值(按用户给定的截图定版)
+| 项 | 默认 |
+|---|---|
+| 发射模式 | 持续,发射速率 = 20 |
+| 爆发 | 单次数量 = 50 |
+| 延迟时间 | 0 |
+| 发射时长 | 0(= 无限,已在 UI 移除该项) |
+| 持续爆发开关 | 已移除 |
+| 形状 | 点;发射角度 0、扩散角度 360 |
+| 圆形 | 半径 100,方向 -90,扩散 0 |
+| 矩形 | 宽 200,高 100,方向 -90,扩散 0 |
+| 锥体 | 半径 100,锥形开口 90,朝向 90 |
+| 系统命名 | ParticleSystem1(英文,同名自动 +1) |
+| 贴图 | star.png |
+| 透明度 | 曲线模式,默认点 (0,0)(0.2,1)(0.8,1)(1,0) |
+| 随机种子 | 0(每次不同) |
+
+---
+
+## 三、核心架构设计
+
+### 3.1 数据流(单向)
+```
+ParticlePanel(Template) ⇄ Pinia Store (systems[]) ⇄ Stage.loop (emitterMap)
+ ▲ │
+ └────── 面板 v-model 改 config ──────┘
+```
+- **`sys.config` 按引用保持**:面板直接改 config 字段,Pixi 发射器读到的是同一对象,改动实时生效。
+- `emitterMap: Map` 由 Stage 维护,每帧 render。
+
+### 3.2 坐标系(关键)
+编辑器统一采用**数学坐标系:Y 向上为正、向下为负**。Pixi 内部是屏幕坐标系(Y 向下为正),因此:
+- 发射点/黄点位置:`cy = -centerY`;
+- 发射器容器 `em` position:`em.position.set(centerX, -centerY)`;
+- 初始速度 y:`vy = -sin(ang)`(锥体);
+- 形状范围、gizmo 绘制均遵循 `cy 取负`。
+
+**统一手法**:显示层(黄点、形状、gizmo、容器 position)都做 Y 取负转换;而**粒子物理/运动方向**保持屏幕坐标,二者在"发射方向(锥体)"这一处需显式对齐。
+
+### 3.3 发射器(ParticleEmitter extends Container)
+粒子是发射器容器的子项(Sprite 池),坐标在**发射器局部坐标**。因此对容器设 `position/rotation/scale` 即整体变换整簇粒子 = **"root 变换"**。
+
+角色划分:
+- **root 位移** = `centerX/centerY` → 容器 `position`;
+- **root 旋转** = `rootRotation` → 容器 `rotation`(数学上正,顺时针为负);
+- **root 缩放** = `rootScaleX/rootScaleY` → 容器 `scale`。
+
+**发射局部原点**:粒子发射位置 = `中心(centerX) + 偏移(offsetX/offsetY)`,其中 `spawnOrigin` 的局部原点只含 offset,中心由容器 position 补回。这样旋转/缩放绕 root 中心,且最终世界坐标不变。
+
+### 3.4 发射模式与形状
+- **持续(stream)**:`accumulator += dt * rate`,累积满 1 发射一个。
+- **爆发(burst)**:一次性 `emitBurst()` 发 `burstCount` 个。
+- **发射形状**(`spawnOrigin`):
+ - point:中心;
+ - circle:半径内圆散布;
+ - rect:宽高矩形散布;
+ - cone:**从锥形顶点(中心)发射,方向在 `direction ± coneAngle/2` 扇形内随机**、半径 0~radius(与圆不同,只限锥体弧度范围)。
+- **速度方向**(`spawnOne`):锥体用 coneAngle 散布 + `vy=-sin`;其余用 spread + 屏幕坐标。
+
+### 3.5 根变换 gizmo
+- 3 种工具:位移 / 旋转 / 缩放,切换后画布按住拖动改 `config.centerX/centerY`、`rootRotation`、`rootScaleX/ScaleY`。
+- 与场景对象面板参数**双向联动**。
+- 计算基于**按下时的快照 + 相对按下点的总增量**(位移/旋转/缩放都不累积),保证"跟手"。
+
+### 3.6 录制 → 回放
+- Stage.loop 每帧 `em.update(dt)`(固定 `dt = 1/fps` 保证帧对齐),产生的 `ParticleState[]` 深拷贝存到 `sys.frames[frame]`。
+- 录完后进入回放:`em.apply(frames[frame])`,到尾帧若 loop 则回 0,否则停末帧。
+- 每帧也收集活动粒子状态 `collected`(供 HUD 数字化/骨骼连线)。
+
+### 3.7 时间轴总帧数(自动计算)
+- `totalFrames = ceil( max(对所有系统 (delay + duration + lifeMax)) * fps )`。
+- 即"最后一个粒子消失的时刻";改 delay/duration/lifeMax 时重算。
+- 通过 **字段签名 watch** 触发重录(见踩坑点 #1)。
+
+---
+
+## 四、踩坑点(重要)
+
+1. **签名 watch 粒度**
+ - 起初 `watch(store.systems.map(config), {deep:true})` 监听整个 config;但发射器每帧改 `_elapsed` 等内部字段 → 每帧触发 → 每帧重算 totalFrames + 清空重录 → **卡死**。
+ - 修复:`JSON.stringify(s.config, 排除 texture)` 生成**签名字符串**比较,只有"影响渲染的参数"变化才触发;并把 `_elapsed/_delayLeft` 从 config 移至 emitter **私有字段** `_elapsed`,避免污染响应式。
+
+2. **坐标轴文字放大变糊**
+ - Text 放 world 容器随 viewScale 放大变为位图模糊。
+ - 修复:文字放到**独立 `axisLabelLayer`(不随 world 缩放)**,用世界→屏幕坐标定位;字号由"系统设置"手动控制。
+
+3. **曲线编辑器椭圆节点/选不中**
+ - SVG `viewBox + preserveAspectRatio="none"` 把圆拉伸成椭圆、命中区过小。
+ - 修复:改按实际像素绘制(ResizeObserver 量尺寸),节点为正圆,叠加大命中圈,Pointer 捕获拖动。
+
+4. **曲线节点双击删除又新建**
+ - dblclick 冒泡到 SVG 触发"双击空白新建"。
+ - 修复:删除节点记录时间戳,`onDbl`(新建)在删除后 400ms 内忽略(抑制窗口)。
+
+5. **Y 轴方向反**
+ - 坐标轴标签用数学坐标(上正),发射器/黄点用屏幕坐标(下正),方向相反。
+ - 修复:黄点/发射器容器 position 的 y 取负,统一到数学坐标系。
+
+6. **锥体朝向与粒子方向相反**
+ - 粒子发射用 `-sin`(数学上正),形状范围绘制用 `+sin`,二者符号不一致。
+ - 修复:drawShapeRange 逐点做 `pt` 变换时统一 `Y = -ly - oyo`(与粒子一致)。
+
+7. **锥体粒子散布在扇区内 vs 从中心发射**
+ - 初版把粒子位置散布在扇形区域(半径 × coneAngle),与圆的"中心全向"不同。
+ - 按用户意图修正:粒子**从锥形顶点(中心)发射,方向限 `direction ± coneAngle/2` 扇形**,类似"圆心向各方向,但只限锥体弧度范围"。
+
+8. **偏移不影响形状范围**
+ - 形状范围中心画在 root 中心,没用 offset;粒子发射源 = root 中心 + 偏移,导致偏移时粒子相对形状范围偏移。
+ - 修复:drawShapeRange 的 `pt` 把偏移 `(oxo, oyo)` 并入局部原点;且 `offsetY` 转屏幕取负(`Y = -ly - oyo`)。
+
+9. **发射时长 1 秒后停发**
+ - `duration` 默认 1.0,爆发/持续 1 秒后 `withinDuration=false` 停发,粒子随后消亡 → "没粒子"。
+ - 修复:配合 UI 移除"发射时长/持续爆发",`duration` 默认改 0(=无限),`burstLoop` 默认 false(一次性爆发)。
+
+10. **gizmo 拖拽不跟手**
+ - 位移用 `cfg.centerX + dx`(基于当前值累加总位移 dx),鼠标一动重复叠加 → 越拖越偏。
+ - 修复:存按下时基准 `sCx/sCy`,位移 = 基准 + 总位移;旋转/缩放同样基于基准快照,并去掉 `Math.round` 取整抖动。
+
+11. **默认贴图/命名等默认值**
+ - 曾把默认 textureName 设为 dot、并在用户改图后仍用旧缓存;后按用户要求默认 `star.png`,硬刷新即可。
+ - 系统命名:默认英文 `ParticleSystem1`,同名自动 +1(正则 `^ParticleSystem(\d+)$` 取最大值 +1)。
+
+12. **新增系统不显示贴图**
+ - 初期只给 onMounted 时存在的系统赋 texture,后续 `addSystem` 新增系统 texture 为 null → Sprite 画不出。
+ - 修复:在 `syncEmitters()`(每帧)里,给 `dotTex 已加载但 sys.config.texture 为空` 的系统补上默认纹理。
+
+---
+
+## 五、根节点变换的坐标正确性(易错综述)
+
+- 发射器容器(position/rotation/scale)承载 root 变换。
+- **必须**把发射局部原点改为"只含 offset"(去 centerX),centerX 由容器 position 补回;否则 position 与粒子局部坐标双重叠加 → 位移重复。
+- 旋转/缩放绕 root 中心成立,前提是"root 中心 = 容器局部原点(0,0)"。
+- 数学坐标系下,一切显示层 y 取负;粒子运动方向(y 向)在锥体方向处需与形状绘制对齐。
+
+---
+
+## 六、响应式与性能要点
+
+- **`sys.config` 保持引用**,面板 v-model 直接改属字段 → 实时生效,无深拷贝/重建。
+- **避免 deep watch** 整个 config;用签名字符串监听 + 内部计时字段移出 config。
+- **录制固定步长** `dt = 1/fps`,保证回放与实时帧对齐、可复现。
+- **确定性随机(种子)**:`mulberry32`;`seed>0` 时可复现;**仅在种子变化时重建 RNG**,`reset()` 时若种子>0 重置到序列头,保证同种子从头录制结果一致。
+
+---
+
+## 七、文件结构
+
+```
+src/
+ main.ts # 入口,注册 Pinia
+ App.vue # 布局:左面板 / 右上画布 / 右下时间轴(宽度/高度可拖拽)
+ style.css # 全局样式(深色主题)
+ core/
+ particleEmitter.ts # 发射器:config + defaultConfig + 池化更新/捕获/回放/重置/确定性随机
+ store/
+ particleStore.ts # Pinia:systems[] + activeId + timeline + settings + recalcTotalFrames
+ views/
+ Stage.vue # 画布:world/粒子/坐标轴/黄点/形状范围/gizmo + 录制回放 + 根变换
+ ParticlePanel.vue # 参数面板(分组折叠 + NumSlider + 形状默认值切换)
+ Timeline.vue # 时间轴(控制/标尺缩放/轨道/粒子条拖拽)
+ CurveEditor.vue # 透明度曲线编辑器(节点可拖/双击删/双击空白新建)
+ NumSlider.vue # 滑块 + 数字框 双控组件
+public/
+ particles/star.png # 默认粒子贴图(另有 dot.png / spark.png)
+ spine/sample.json # 仅作素材参考,不作编辑器模板
+```
+
+---
+
+## 八、当前遗留 / 预留(后续阶段)
+
+- **导出 Spine JSON 烘焙**(用户确认后置):现阶段编辑/预览,导出的数据模型(每粒子一根骨骼 `boneName=p_`、ParticleState)已为此铺路。
+- **轨道路径 / 碰撞体**:场景对象中为预留占位(`collision`/`pathFollow` 字段已存在)。
+- **导出设置**:分组占位。
+- **修改器实现程度**:重力/风力/力场/移动噪声/阻尼已接入 `emitter.update`;拖尾/碰撞/路径跟随为占位/预留。
+
+---
+
+## 九、常见调整指引
+
+- **默认参数**集中在本文件 §2.5(来自 `particleEmitter.ts` 的 `defaultConfig()` 与面板 `SHAPE_DEFAULTS`)。
+- **形状范围跟随 root 旋转/缩放/偏移**:改 `Stage.vue` 的 `drawShapeRange`(逐点 `pt` 变换)。
+- **根变换 gizmo**:改 `Stage.vue` 的 `drawGizmo` / `onGizmoDown`。
+- **时间轴总帧**:改 `store.recalcTotalFrames`。
+- **坐标系**:凡涉及显示 y 方向,遵循 `Y 取负` 的数学坐标约定。
diff --git a/重构设计.md b/重构设计.md
new file mode 100644
index 0000000..6347058
--- /dev/null
+++ b/重构设计.md
@@ -0,0 +1,83 @@
+# Spine 粒子编辑器 · 骨骼对象池架构(重构设计 v1)
+
+> 基于我们多轮确认的设计意图整理。**目标**:一个"用参数创建粒子系统"的编辑器,
+> 粒子本质是**挂在动态骨骼下的图片**,最终可导出 Spine 骨骼 json。
+>
+> **与旧实现的根本区别**:不再"加载外部 Spine 骨骼、让粒子跟随某根骨骼",而是反过来——
+> **编辑器自建骨架(仅 root 根骨骼),粒子生成骨骼并挂在 root 下**。
+
+---
+
+## 一、核心概念(最终确认)
+
+1. **自建最小骨架**:编辑器打开时,**自建一棵只含一根 `root` 根骨骼的骨架**。
+ - 不加载任何外部 `.json/.atlas/.png`(禁止 sample.json 作模板、禁止"加载示例骨骼"入口)。
+2. **骨骼对象池**:按**粒子发射数量**,在 `root` 下**动态生成对应数量的骨骼**。
+ - **一个粒子 = 一根骨骼**。
+3. **粒子图片挂到骨骼**:每个粒子的图片(贴图光斑)作为 **child 挂载到对应该粒子的骨骼下面**。
+ - 骨骼决定粒子的 **位置 / 旋转 / 缩放**;粒子图片跟随骨骼运动(这正是 Spine 动画的结构)。
+4. **参数驱动一切**:粒子系统的创建与所有参数(发射/数量/形状/方向/速度/生命/缩放/透明度/旋转/颜色/混合/重力等)完全由**编辑器参数面板**决定。
+5. **最终产出**:导出的 json 描述这些**在 root 下动态生成、随动画变化的骨骼**(即 Spine 骨骼动画 json)。
+
+---
+
+## 二、数据流(预览阶段)
+
+```
+参数面板(store) → 每帧生成/更新 骨骼池
+ │
+ 粒子数量 N ⇒ 在 root 下创建 N 根骨骼(Bone i)
+ │
+ 每根骨骼设置 pos/rot/scale = 对应粒子的状态
+ │
+ 该粒子图片(Sprite) 作为 child 挂到该骨骼 → 骨骼带着图片动
+```
+
+- 单根 `root` 骨骼:静止于原点(0,0),承载所有生成的子骨骼。
+- 生成的骨骼名:如 `p_0, p_1, ...`(与粒子一一对应),挂在 root 下。
+
+---
+
+## 三、渲染实现要点
+
+- 画布用 Pixi 的 `Spine`(官方 spine-pixi)挂载骨架;但**不渲染 Spines 附件的贴图**(附件我们不用)。
+- 为**每根粒子骨骼**添加一个 `Sprite`(粒子贴图)作为其 child(Pixi `Bone` 可通过 `Spine` 组件的 slot/骨骼挂载子对象)。
+ - 替代方案:不真正用 Spine 渲染骨骼,而是**自己维护一根"逻辑骨骼"+一个 Sprite**——每帧从参数计算粒子状态,直接移动 Sprite,同时记录这根"逻辑骨骼"便于导出。**这是更可控的实现**(避免 Spine 运行时挂载复杂)。
+
+> 我建议用**方案 B(逻辑骨骼 + Sprite)**:预览时用 Sprite 显示粒子,同时维护"每颗粒子对应一根逻辑骨骼"的数据结构(名字/父级=root/位置/旋转/缩放随时间序列),既满足预览又为导出 json 提供干净的数据。避免陷入 Spine 附件的复杂挂载。若你要严格用 Spine 的 Bone 对象,我再切方案 A。
+
+---
+
+## 四、参数面板(保留现有字段,去掉"加载骨骼/跟随骨骼"相关)
+
+保留并完善:
+- 系统:名称
+- 发射:持续/爆发、**粒子数量/速率**、发射形状(点/圆/矩形/锥体)
+- 方向:角度、扩散
+- 粒子属性:速度/生命/缩放/透明度/旋转(各 min→max)
+- 外观:颜色(起始/结束/寿命渐变)、混合模式、粒子贴图(内置选择/上传)
+- 物理:重力
+
+移除/调整:
+- ~~跟随骨骼开关~~、~~骨骼下拉~~(不再"跟随某骨骼",而是 root 下生成)
+- ~~加载示例骨骼~~ 按钮(不要再有)
+
+---
+
+## 五、导出(后续阶段,先做预览)
+
+- 把每根粒子逻辑骨骼的**位置/旋转/缩放随时间的序列** dump 成 Spine 骨骼时间轴 json。
+- 骨架 = 1 个 root + N 根生成的子骨骼。
+
+---
+
+## 六、待你确认的实现方式(仅一点)
+
+预览阶段粒子的"骨骼"用哪种实现:
+
+| 方案 | 说明 | 取舍 |
+|---|---|---|
+| **B(推荐)** | 自维护"逻辑骨骼"数据 + Sprite 显示粒子;导出时从逻辑骨骼 dump json | 实现简单可控、与导出天然对齐 |
+| **A** | 用 spine-pixi 的 `Bone` 对象,粒子 Sprite 真实挂到 Bone 下 | 更贴近 Spine,但挂载/渲染复杂 |
+
+> 我倾向 **B**。请确认选 A 还是 B(或让我默认按 B 开始)。