commit de985e9c29daa7f7ac61d0238bc87a76964a4e2a Author: Min5203 <2318556978@qq.com> Date: Fri Dec 31 11:31:47 2021 +0800 踩气球完成 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..5aa7378 --- /dev/null +++ b/.gitignore @@ -0,0 +1,113 @@ +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +lerna-debug.log* + +# Diagnostic reports (https://nodejs.org/api/report.html) +report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json + +# Runtime data +pids +*.pid +*.seed +*.pid.lock + +# Directory for instrumented libs generated by jscoverage/JSCover +lib-cov + +# Coverage directory used by tools like istanbul +coverage +*.lcov + +# nyc test coverage +.nyc_output + +# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) +.grunt + +# Bower dependency directory (https://bower.io/) +bower_components + +# node-waf configuration +.lock-wscript + +# Compiled binary addons (https://nodejs.org/api/addons.html) +build/Release + +# Dependency directories +node_modules/ +jspm_packages/ + +# TypeScript v1 declaration files +typings/ + +# TypeScript cache +*.tsbuildinfo + +# Optional npm cache directory +.npm + +# Optional eslint cache +.eslintcache + +# Microbundle cache +.rpt2_cache/ +.rts2_cache_cjs/ +.rts2_cache_es/ +.rts2_cache_umd/ + +# Optional REPL history +.node_repl_history + +# Output of 'npm pack' +*.tgz + +# Yarn Integrity file +.yarn-integrity + +# dotenv environment variables file +.env +.env.test + +# parcel-bundler cache (https://parceljs.org/) +.cache + +# Next.js build output +.next + +# Nuxt.js build / generate output +.nuxt +dist + +# Gatsby files +.cache/ +# Comment in the public line in if your project uses Gatsby and *not* Next.js +# https://nextjs.org/blog/next-9-1#public-directory-support +# public + +# vuepress build output +.vuepress/dist + +# Serverless directories +.serverless/ + +# FuseBox cache +.fusebox/ + +# DynamoDB Local files +.dynamodb/ + +# TernJS port file +.tern-port + +.vscode/ + +.idea/ +yarn.lock + +dist +dist/* +.~README.md diff --git a/.prettierrc b/.prettierrc new file mode 100644 index 0000000..ae624c3 --- /dev/null +++ b/.prettierrc @@ -0,0 +1,13 @@ +{ + "printWidth": 140, + "singleQuote": true, + "semi": true, + "trailingComma": "all", + "arrowParens": "avoid", + "tabWidth": 2, + "useTabs": false, + "bracketSpacing": true, + "jsxBracketSameLine": false, + "proseWrap": "always", + "endOfLine": "lf" +} diff --git a/README.md b/README.md new file mode 100644 index 0000000..5778cd0 --- /dev/null +++ b/README.md @@ -0,0 +1,375 @@ +# 鸟妈妈回家 + +# 运行步骤 +1. git clone https://dd.tall.wiki/gitea/ccsens_fe/bird-go-home.git +2. 全局安装gulp npm i gulp -g +3. npm i 或者 yarn +4. 运行gulp +5. 运行vscode的Go Live +6. 部署服务器 dist目录 + + + +## 游戏介绍 + +“鸟妈妈回家”游戏用于 康复训练,上肢训练 + +游戏使用Adobe Animate制作,游戏包含如下几个模块: + ++ 主体:鸟、背景(山、云朵、树木等)、成功次数(也能代表得分) ++ 开始倒计时:开始面板、倒计时文本 ++ 返回按钮 ++ 难度级别 ++ 游戏计时 ++ 结束modal:界面面板、得分文本 ++ 测试模块 + + + +该游戏源文件,使用旧版的flash软件制作,转换成animate支持的canvas模式。 + +游戏原有动画均在图层中制作。包括游戏动作成功的字数,也在动画中制作。游戏动作设计调整难度较大,次数修改成本较高。目前是固定的20次,一般情况是够用。 + + + +## 目录结构说明 + +通过如下命令输出的目录结构: + +```bash +tree -I "node_modules|package-lock.json|yarn.lock" +``` + + + +```bash +│ .gitignore +│ .prettierrc +│ .svrxrc.js +│ dist.zip +│ gulpfile.js +│ package-lock.json +│ package.json +│ README.md +│ +├─dist +│ │ bird.js +│ │ index.html +│ │ main.js +│ │ +│ ├─images +│ │ Bitmap1.png +│ │ Bitmap2.png +│ │ Bitmap3.png +│ │ Bitmap4.png +│ │ Bitmap5.png +│ │ level.png +│ │ stopDemo.png +│ │ suspend.png +│ │ _preloader.gif +│ │ 任务完成_.png +│ │ 倒计时_.png +│ │ 再来一次_.png +│ │ 树林前景_.png +│ │ 计时_.png +│ │ 返回按钮_.png +│ │ +│ ├─libs +│ │ └─1.0.0 +│ │ createjs.min.js +│ │ +│ └─sounds +│ amazing.mp3 +│ bgmMusic.mp3 +│ excitationMusic.mp3 +│ unbelievable.mp3 +│ +├─public +│ │ bird.html +│ │ bird.js +│ │ index.html +│ │ 鸟妈妈回家_HTML5 Canvas.fla +│ │ +│ ├─images +│ │ Bitmap1.png +│ │ Bitmap2.png +│ │ Bitmap3.png +│ │ Bitmap4.png +│ │ Bitmap5.png +│ │ level.png +│ │ stopDemo.png +│ │ suspend.png +│ │ _preloader.gif +│ │ 任务完成_.png +│ │ 倒计时_.png +│ │ 再来一次_.png +│ │ 树林前景_.png +│ │ 计时_.png +│ │ 返回按钮_.png +│ │ +│ ├─libs +│ │ └─1.0.0 +│ │ createjs.min.js +│ │ +│ └─sounds +│ amazing.mp3 +│ bgmMusic.mp3 +│ excitationMusic.mp3 +│ unbelievable.mp3 +│ +└─src + │ custom.js + │ index.js + │ test.js + │ + └─classes + again.js + back.js + count.js + demo.js + end.js + level.js + main.js + sound.js + suspend.js + time.js +``` + +| 文件 | 说明 | 备注 | +| ------------------- | ------------------------------------------------------------ | ----------------------------------------------- | +| bird.html | animate自动生成的html,不编辑使用index.html代替 | | +| bird.js | animate自动生成,index.html有引用 | | +| images/* | animate生成的图片资源 | 这里没有使用雪碧图,这个文件fla导出雪碧图就卡死 | +| index.html | 入口界面 | | +| js/custom.js | 自定义初始化整合js | **可作为模板复制修改**,config及initStage | +| js/index.js | animate生成的内嵌到bird.html中的js提取,并添加了初始化入口函数initStage | | +| js/test.js | 测试程序,正式版可删除 | | +| js/classes/* | 封装的各个模块类 | | +| js/classes/back.js | 返回按钮类封装 | **通用** | +| js/classes/bird.js | 游戏主体类封装 | 不通用 | +| js/classes/count.js | 开始时倒计时组件类封装 | **通用**,配合custom里的配置使用 | +| js/classes/end.js | 游戏结束,得分面板 | **通用**,配合custom里的config总分,总次数使用 | +| js/classes/level.js | 游戏级别组件封装类 | **通用**,配合custom里的config里的level使用 | +| js/classes/sound.js | 游戏音频封装类 | **通用**,资源可能需要替换 | +| js/classes/time.js | 游戏时长、计时组件封装类 | **通用**,配合custom里的config里的time使用 | +| libs/* | animate导出的createjs文件 | 不用动 | +| sounds/*.mp3 | 音频资源 | | +| *.fla | animate源文件 | | + + + +## 具体代码说明 + +### index.html + +入口界面,依据animate生成的 bird.html 修改而来。主要添加了测试功能区,以及js文件的整合引入。其他不动 + +```js + + + + + +
+r&&(r=e),(e=j+l+n)r&&(r=e),(e=l+n)r&&(r=e),a.setValues(o,q,p-o,r-q)},b._hasMouseEventListener=function(){for(var b=a._MOUSE_EVENTS,c=0,d=b.length;d>c;c++)if(this.hasEventListener(b[c]))return!0;return!!this.cursor},createjs.DisplayObject=createjs.promote(a,"EventDispatcher")}(),this.createjs=this.createjs||{},function(){"use strict";function a(){this.DisplayObject_constructor(),this.children=[],this.mouseChildren=!0,this.tickChildren=!0}var b=createjs.extend(a,createjs.DisplayObject);b._getNumChildren=function(){return this.children.length},b.getNumChildren=createjs.deprecate(b._getNumChildren,"Container.getNumChildren");try{Object.defineProperties(b,{numChildren:{get:b._getNumChildren}})}catch(c){}b.initialize=a,b.isVisible=function(){var a=this.cacheCanvas||this.children.length;return!!(this.visible&&this.alpha>0&&0!=this.scaleX&&0!=this.scaleY&&a)},b.draw=function(a,b){if(this.DisplayObject_draw(a,b))return!0;for(var c=this.children.slice(),d=0,e=c.length;e>d;d++){var f=c[d];f.isVisible()&&(a.save(),f.updateContext(a),f.draw(a),a.restore())}return!0},b.addChild=function(a){if(null==a)return a;var b=arguments.length;if(b>1){for(var c=0;b>c;c++)this.addChild(arguments[c]);return arguments[b-1]}var d=a.parent,e=d===this;return d&&d._removeChildAt(createjs.indexOf(d.children,a),e),a.parent=this,this.children.push(a),e||a.dispatchEvent("added"),a},b.addChildAt=function(a,b){var c=arguments.length,d=arguments[c-1];if(0>d||d>this.children.length)return arguments[c-2];if(c>2){for(var e=0;c-1>e;e++)this.addChildAt(arguments[e],d+e);return arguments[c-2]}var f=a.parent,g=f===this;return f&&f._removeChildAt(createjs.indexOf(f.children,a),g),a.parent=this,this.children.splice(b,0,a),g||a.dispatchEvent("added"),a},b.removeChild=function(a){var b=arguments.length;if(b>1){for(var c=!0,d=0;b>d;d++)c=c&&this.removeChild(arguments[d]);return c}return this._removeChildAt(createjs.indexOf(this.children,a))},b.removeChildAt=function(a){var b=arguments.length;if(b>1){for(var c=[],d=0;b>d;d++)c[d]=arguments[d];c.sort(function(a,b){return b-a});for(var e=!0,d=0;b>d;d++)e=e&&this._removeChildAt(c[d]);return e}return this._removeChildAt(a)},b.removeAllChildren=function(){for(var a=this.children;a.length;)this._removeChildAt(0)},b.getChildAt=function(a){return this.children[a]},b.getChildByName=function(a){for(var b=this.children,c=0,d=b.length;d>c;c++)if(b[c].name==a)return b[c];return null},b.sortChildren=function(a){this.children.sort(a)},b.getChildIndex=function(a){return createjs.indexOf(this.children,a)},b.swapChildrenAt=function(a,b){var c=this.children,d=c[a],e=c[b];d&&e&&(c[a]=e,c[b]=d)},b.swapChildren=function(a,b){for(var c,d,e=this.children,f=0,g=e.length;g>f&&(e[f]==a&&(c=f),e[f]==b&&(d=f),null==c||null==d);f++);f!=g&&(e[c]=b,e[d]=a)},b.setChildIndex=function(a,b){var c=this.children,d=c.length;if(!(a.parent!=this||0>b||b>=d)){for(var e=0;d>e&&c[e]!=a;e++);e!=d&&e!=b&&(c.splice(e,1),c.splice(b,0,a))}},b.contains=function(a){for(;a;){if(a==this)return!0;a=a.parent}return!1},b.hitTest=function(a,b){return null!=this.getObjectUnderPoint(a,b)},b.getObjectsUnderPoint=function(a,b,c){var d=[],e=this.localToGlobal(a,b);return this._getObjectsUnderPoint(e.x,e.y,d,c>0,1==c),d},b.getObjectUnderPoint=function(a,b,c){var d=this.localToGlobal(a,b);return this._getObjectsUnderPoint(d.x,d.y,null,c>0,1==c)},b.getBounds=function(){return this._getBounds(null,!0)},b.getTransformedBounds=function(){return this._getBounds()},b.clone=function(b){var c=this._cloneProps(new a);return b&&this._cloneChildren(c),c},b.toString=function(){return"[Container (name="+this.name+")]"},b._tick=function(a){if(this.tickChildren)for(var b=this.children.length-1;b>=0;b--){var c=this.children[b];c.tickEnabled&&c._tick&&c._tick(a)}this.DisplayObject__tick(a)},b._cloneChildren=function(a){a.children.length&&a.removeAllChildren();for(var b=a.children,c=0,d=this.children.length;d>c;c++){var e=this.children[c].clone(!0);e.parent=a,b.push(e)}},b._removeChildAt=function(a,b){if(0>a||a>this.children.length-1)return!1;var c=this.children[a];return c&&(c.parent=null),this.children.splice(a,1),b||c.dispatchEvent("removed"),!0},b._getObjectsUnderPoint=function(b,c,d,e,f,g){if(g=g||0,!g&&!this._testMask(this,b,c))return null;var h,i=createjs.DisplayObject._hitTestContext;f=f||e&&this._hasMouseEventListener();for(var j=this.children,k=j.length,l=k-1;l>=0;l--){var m=j[l],n=m.hitArea;if(m.visible&&(n||m.isVisible())&&(!e||m.mouseEnabled)&&(n||this._testMask(m,b,c)))if(!n&&m instanceof a){var o=m._getObjectsUnderPoint(b,c,d,e,f,g+1);if(!d&&o)return e&&!this.mouseChildren?this:o}else{if(e&&!f&&!m._hasMouseEventListener())continue;var p=m.getConcatenatedDisplayProps(m._props);if(h=p.matrix,n&&(h.appendMatrix(n.getMatrix(n._props.matrix)),p.alpha=n.alpha),i.globalAlpha=p.alpha,i.setTransform(h.a,h.b,h.c,h.d,h.tx-b,h.ty-c),(n||m).draw(i),!this._testHit(i))continue;if(i.setTransform(1,0,0,1,0,0),i.clearRect(0,0,2,2),!d)return e&&!this.mouseChildren?this:m;d.push(m)}}return null},b._testMask=function(a,b,c){var d=a.mask;if(!d||!d.graphics||d.graphics.isEmpty())return!0;var e=this._props.matrix,f=a.parent;e=f?f.getConcatenatedMatrix(e):e.identity(),e=d.getMatrix(d._props.matrix).prependMatrix(e);var g=createjs.DisplayObject._hitTestContext;return g.setTransform(e.a,e.b,e.c,e.d,e.tx-b,e.ty-c),d.graphics.drawAsPath(g),g.fillStyle="#000",g.fill(),this._testHit(g)?(g.setTransform(1,0,0,1,0,0),g.clearRect(0,0,2,2),!0):!1},b._getBounds=function(a,b){var c=this.DisplayObject_getBounds();if(c)return this._transformBounds(c,a,b);var d=this._props.matrix;d=b?d.identity():this.getMatrix(d),a&&d.prependMatrix(a);for(var e=this.children.length,f=null,g=0;e>g;g++){var h=this.children[g];h.visible&&(c=h._getBounds(d))&&(f?f.extend(c.x,c.y,c.width,c.height):f=c.clone())}return f},createjs.Container=createjs.promote(a,"DisplayObject")}(),this.createjs=this.createjs||{},function(){"use strict";function a(a){this.Container_constructor(),this.autoClear=!0,this.canvas="string"==typeof a?document.getElementById(a):a,this.mouseX=0,this.mouseY=0,this.drawRect=null,this.snapToPixelEnabled=!1,this.mouseInBounds=!1,this.tickOnUpdate=!0,this.mouseMoveOutside=!1,this.preventSelection=!0,this._pointerData={},this._pointerCount=0,this._primaryPointerID=null,this._mouseOverIntervalID=null,this._nextStage=null,this._prevStage=null,this.enableDOMEvents(!0)}var b=createjs.extend(a,createjs.Container);b._get_nextStage=function(){return this._nextStage},b._set_nextStage=function(a){this._nextStage&&(this._nextStage._prevStage=null),a&&(a._prevStage=this),this._nextStage=a};try{Object.defineProperties(b,{nextStage:{get:b._get_nextStage,set:b._set_nextStage}})}catch(c){}b.update=function(a){if(this.canvas&&(this.tickOnUpdate&&this.tick(a),this.dispatchEvent("drawstart",!1,!0)!==!1)){createjs.DisplayObject._snapToPixelEnabled=this.snapToPixelEnabled;var b=this.drawRect,c=this.canvas.getContext("2d");c.setTransform(1,0,0,1,0,0),this.autoClear&&(b?c.clearRect(b.x,b.y,b.width,b.height):c.clearRect(0,0,this.canvas.width+1,this.canvas.height+1)),c.save(),this.drawRect&&(c.beginPath(),c.rect(b.x,b.y,b.width,b.height),c.clip()),this.updateContext(c),this.draw(c,!1),c.restore(),this.dispatchEvent("drawend")}},b.tick=function(a){if(this.tickEnabled&&this.dispatchEvent("tickstart",!1,!0)!==!1){var b=new createjs.Event("tick");if(a)for(var c in a)a.hasOwnProperty(c)&&(b[c]=a[c]);this._tick(b),this.dispatchEvent("tickend")}},b.handleEvent=function(a){"tick"==a.type&&this.update(a)},b.clear=function(){if(this.canvas){var a=this.canvas.getContext("2d");a.setTransform(1,0,0,1,0,0),a.clearRect(0,0,this.canvas.width+1,this.canvas.height+1)}},b.toDataURL=function(a,b){var c,d=this.canvas.getContext("2d"),e=this.canvas.width,f=this.canvas.height;if(a){c=d.getImageData(0,0,e,f);var g=d.globalCompositeOperation;d.globalCompositeOperation="destination-over",d.fillStyle=a,d.fillRect(0,0,e,f)}var h=this.canvas.toDataURL(b||"image/png");return a&&(d.putImageData(c,0,0),d.globalCompositeOperation=g),h},b.enableMouseOver=function(a){if(this._mouseOverIntervalID&&(clearInterval(this._mouseOverIntervalID),this._mouseOverIntervalID=null,0==a&&this._testMouseOver(!0)),null==a)a=20;else if(0>=a)return;var b=this;this._mouseOverIntervalID=setInterval(function(){b._testMouseOver()},1e3/Math.min(50,a))},b.enableDOMEvents=function(a){null==a&&(a=!0);var b,c,d=this._eventListeners;if(!a&&d){for(b in d)c=d[b],c.t.removeEventListener(b,c.f,!1);this._eventListeners=null}else if(a&&!d&&this.canvas){var e=window.addEventListener?window:document,f=this;d=this._eventListeners={},d.mouseup={t:e,f:function(a){f._handleMouseUp(a)}},d.mousemove={t:e,f:function(a){f._handleMouseMove(a)}},d.dblclick={t:this.canvas,f:function(a){f._handleDoubleClick(a)}},d.mousedown={t:this.canvas,f:function(a){f._handleMouseDown(a)}};for(b in d)c=d[b],c.t.addEventListener(b,c.f,!1)}},b.clone=function(){throw"Stage cannot be cloned."},b.toString=function(){return"[Stage (name="+this.name+")]"},b._getElementRect=function(a){var b;try{b=a.getBoundingClientRect()}catch(c){b={top:a.offsetTop,left:a.offsetLeft,width:a.offsetWidth,height:a.offsetHeight}}var d=(window.pageXOffset||document.scrollLeft||0)-(document.clientLeft||document.body.clientLeft||0),e=(window.pageYOffset||document.scrollTop||0)-(document.clientTop||document.body.clientTop||0),f=window.getComputedStyle?getComputedStyle(a,null):a.currentStyle,g=parseInt(f.paddingLeft)+parseInt(f.borderLeftWidth),h=parseInt(f.paddingTop)+parseInt(f.borderTopWidth),i=parseInt(f.paddingRight)+parseInt(f.borderRightWidth),j=parseInt(f.paddingBottom)+parseInt(f.borderBottomWidth);return{left:b.left+d+g,right:b.right+d-i,top:b.top+e+h,bottom:b.bottom+e-j}},b._getPointerData=function(a){var b=this._pointerData[a];return b||(b=this._pointerData[a]={x:0,y:0}),b},b._handleMouseMove=function(a){a||(a=window.event),this._handlePointerMove(-1,a,a.pageX,a.pageY)},b._handlePointerMove=function(a,b,c,d,e){if((!this._prevStage||void 0!==e)&&this.canvas){var f=this._nextStage,g=this._getPointerData(a),h=g.inBounds;this._updatePointerPosition(a,b,c,d),(h||g.inBounds||this.mouseMoveOutside)&&(-1===a&&g.inBounds==!h&&this._dispatchMouseEvent(this,h?"mouseleave":"mouseenter",!1,a,g,b),this._dispatchMouseEvent(this,"stagemousemove",!1,a,g,b),this._dispatchMouseEvent(g.target,"pressmove",!0,a,g,b)),f&&f._handlePointerMove(a,b,c,d,null)}},b._updatePointerPosition=function(a,b,c,d){var e=this._getElementRect(this.canvas);c-=e.left,d-=e.top;var f=this.canvas.width,g=this.canvas.height;c/=(e.right-e.left)/f,d/=(e.bottom-e.top)/g;var h=this._getPointerData(a);(h.inBounds=c>=0&&d>=0&&f-1>=c&&g-1>=d)?(h.x=c,h.y=d):this.mouseMoveOutside&&(h.x=0>c?0:c>f-1?f-1:c,h.y=0>d?0:d>g-1?g-1:d),h.posEvtObj=b,h.rawX=c,h.rawY=d,(a===this._primaryPointerID||-1===a)&&(this.mouseX=h.x,this.mouseY=h.y,this.mouseInBounds=h.inBounds)},b._handleMouseUp=function(a){this._handlePointerUp(-1,a,!1)},b._handlePointerUp=function(a,b,c,d){var e=this._nextStage,f=this._getPointerData(a);if(!this._prevStage||void 0!==d){var g=null,h=f.target;d||!h&&!e||(g=this._getObjectsUnderPoint(f.x,f.y,null,!0)),f.down&&(this._dispatchMouseEvent(this,"stagemouseup",!1,a,f,b,g),f.down=!1),g==h&&this._dispatchMouseEvent(h,"click",!0,a,f,b),this._dispatchMouseEvent(h,"pressup",!0,a,f,b),c?(a==this._primaryPointerID&&(this._primaryPointerID=null),delete this._pointerData[a]):f.target=null,e&&e._handlePointerUp(a,b,c,d||g&&this)}},b._handleMouseDown=function(a){this._handlePointerDown(-1,a,a.pageX,a.pageY)},b._handlePointerDown=function(a,b,c,d,e){this.preventSelection&&b.preventDefault(),(null==this._primaryPointerID||-1===a)&&(this._primaryPointerID=a),null!=d&&this._updatePointerPosition(a,b,c,d);var f=null,g=this._nextStage,h=this._getPointerData(a);e||(f=h.target=this._getObjectsUnderPoint(h.x,h.y,null,!0)),h.inBounds&&(this._dispatchMouseEvent(this,"stagemousedown",!1,a,h,b,f),h.down=!0),this._dispatchMouseEvent(f,"mousedown",!0,a,h,b),g&&g._handlePointerDown(a,b,c,d,e||f&&this)},b._testMouseOver=function(a,b,c){if(!this._prevStage||void 0!==b){var d=this._nextStage;if(!this._mouseOverIntervalID)return void(d&&d._testMouseOver(a,b,c));var e=this._getPointerData(-1);if(e&&(a||this.mouseX!=this._mouseOverX||this.mouseY!=this._mouseOverY||!this.mouseInBounds)){var f,g,h,i=e.posEvtObj,j=c||i&&i.target==this.canvas,k=null,l=-1,m="";!b&&(a||this.mouseInBounds&&j)&&(k=this._getObjectsUnderPoint(this.mouseX,this.mouseY,null,!0),this._mouseOverX=this.mouseX,this._mouseOverY=this.mouseY);var n=this._mouseOverTarget||[],o=n[n.length-1],p=this._mouseOverTarget=[];for(f=k;f;)p.unshift(f),m||(m=f.cursor),f=f.parent;for(this.canvas.style.cursor=m,!b&&c&&(c.canvas.style.cursor=m),g=0,h=p.length;h>g&&p[g]==n[g];g++)l=g;for(o!=k&&this._dispatchMouseEvent(o,"mouseout",!0,-1,e,i,k),g=n.length-1;g>l;g--)this._dispatchMouseEvent(n[g],"rollout",!1,-1,e,i,k);for(g=p.length-1;g>l;g--)this._dispatchMouseEvent(p[g],"rollover",!1,-1,e,i,o);o!=k&&this._dispatchMouseEvent(k,"mouseover",!0,-1,e,i,o),d&&d._testMouseOver(a,b||k&&this,c||j&&this)}}},b._handleDoubleClick=function(a,b){var c=null,d=this._nextStage,e=this._getPointerData(-1);b||(c=this._getObjectsUnderPoint(e.x,e.y,null,!0),this._dispatchMouseEvent(c,"dblclick",!0,-1,e,a)),d&&d._handleDoubleClick(a,b||c&&this)},b._dispatchMouseEvent=function(a,b,c,d,e,f,g){if(a&&(c||a.hasEventListener(b))){var h=new createjs.MouseEvent(b,c,!1,e.x,e.y,f,d,d===this._primaryPointerID||-1===d,e.rawX,e.rawY,g);a.dispatchEvent(h)}},createjs.Stage=createjs.promote(a,"Container")}(),this.createjs=this.createjs||{},function(){"use strict";function a(b,c){if(this.Stage_constructor(b),void 0!==c){if("object"!=typeof c)throw"Invalid options object";var d=c.premultiply,e=c.transparent,f=c.antialias,g=c.preserveBuffer,h=c.autoPurge}this.vocalDebug=!1,this._preserveBuffer=g||!1,this._antialias=f||!1,this._transparent=e||!1,this._premultiply=d||!1,this._autoPurge=void 0,this.autoPurge=h,this._viewportWidth=0,this._viewportHeight=0,this._projectionMatrix=null,this._webGLContext=null,this._clearColor={r:.5,g:.5,b:.5,a:0},this._maxCardsPerBatch=a.DEFAULT_MAX_BATCH_SIZE,this._activeShader=null,this._vertices=null,this._vertexPositionBuffer=null,this._uvs=null,this._uvPositionBuffer=null,this._indices=null,this._textureIndexBuffer=null,this._alphas=null,this._alphaBuffer=null,this._textureDictionary=[],this._textureIDs={},this._batchTextures=[],this._baseTextures=[],this._batchTextureCount=8,this._lastTextureInsert=-1,this._batchID=0,this._drawID=0,this._slotBlacklist=[],this._isDrawing=0,this._lastTrackedCanvas=0,this.isCacheControlled=!1,this._cacheContainer=new createjs.Container,this._initializeWebGL()}var b=createjs.extend(a,createjs.Stage);a.buildUVRects=function(a,b,c){if(!a||!a._frames)return null;void 0===b&&(b=-1),void 0===c&&(c=!1);for(var d=-1!=b&&c?b:0,e=-1!=b&&c?b+1:a._frames.length,f=d;e>f;f++){var g=a._frames[f];if(!(g.uvRect||g.image.width<=0||g.image.height<=0)){var h=g.rect;g.uvRect={t:h.y/g.image.height,l:h.x/g.image.width,b:(h.y+h.height)/g.image.height,r:(h.x+h.width)/g.image.width}}}return a._frames[-1!=b?b:0].uvRect||{t:0,l:0,b:1,r:1}},a.isWebGLActive=function(a){return a&&a instanceof WebGLRenderingContext&&"undefined"!=typeof WebGLRenderingContext},a.VERTEX_PROPERTY_COUNT=6,a.INDICIES_PER_CARD=6,a.DEFAULT_MAX_BATCH_SIZE=1e4,a.WEBGL_MAX_INDEX_NUM=Math.pow(2,16),a.UV_RECT={t:0,l:0,b:1,r:1};try{a.COVER_VERT=new Float32Array([-1,1,1,1,-1,-1,1,1,1,-1,-1,-1]),a.COVER_UV=new Float32Array([0,0,1,0,0,1,1,0,1,1,0,1]),a.COVER_UV_FLIP=new Float32Array([0,1,1,1,0,0,1,1,1,0,0,0])}catch(c){}a.REGULAR_VARYING_HEADER="precision mediump float;varying vec2 vTextureCoord;varying lowp float indexPicker;varying lowp float alphaValue;",a.REGULAR_VERTEX_HEADER=a.REGULAR_VARYING_HEADER+"attribute vec2 vertexPosition;attribute vec2 uvPosition;attribute lowp float textureIndex;attribute lowp float objectAlpha;uniform mat4 pMatrix;",a.REGULAR_FRAGMENT_HEADER=a.REGULAR_VARYING_HEADER+"uniform sampler2D uSampler[{{count}}];",a.REGULAR_VERTEX_BODY="void main(void) {gl_Position = vec4((vertexPosition.x * pMatrix[0][0]) + pMatrix[3][0],(vertexPosition.y * pMatrix[1][1]) + pMatrix[3][1],pMatrix[3][2],1.0);alphaValue = objectAlpha;indexPicker = textureIndex;vTextureCoord = uvPosition;}",a.REGULAR_FRAGMENT_BODY="void main(void) {vec4 color = vec4(1.0, 0.0, 0.0, 1.0);if (indexPicker <= 0.5) {color = texture2D(uSampler[0], vTextureCoord);{{alternates}}}{{fragColor}}}",a.REGULAR_FRAG_COLOR_NORMAL="gl_FragColor = vec4(color.rgb, color.a * alphaValue);",a.REGULAR_FRAG_COLOR_PREMULTIPLY="if(color.a > 0.0035) {gl_FragColor = vec4(color.rgb/color.a, color.a * alphaValue);} else {gl_FragColor = vec4(0.0, 0.0, 0.0, 0.0);}",a.PARTICLE_VERTEX_BODY=a.REGULAR_VERTEX_BODY,a.PARTICLE_FRAGMENT_BODY=a.REGULAR_FRAGMENT_BODY,a.COVER_VARYING_HEADER="precision mediump float;varying highp vec2 vRenderCoord;varying highp vec2 vTextureCoord;",a.COVER_VERTEX_HEADER=a.COVER_VARYING_HEADER+"attribute vec2 vertexPosition;attribute vec2 uvPosition;uniform float uUpright;",a.COVER_FRAGMENT_HEADER=a.COVER_VARYING_HEADER+"uniform sampler2D uSampler;",a.COVER_VERTEX_BODY="void main(void) {gl_Position = vec4(vertexPosition.x, vertexPosition.y, 0.0, 1.0);vRenderCoord = uvPosition;vTextureCoord = vec2(uvPosition.x, abs(uUpright - uvPosition.y));}",a.COVER_FRAGMENT_BODY="void main(void) {vec4 color = texture2D(uSampler, vRenderCoord);gl_FragColor = color;}",b._get_isWebGL=function(){return!!this._webGLContext},b._set_autoPurge=function(a){a=isNaN(a)?1200:a,-1!=a&&(a=10>a?10:a),this._autoPurge=a},b._get_autoPurge=function(){return Number(this._autoPurge)};try{Object.defineProperties(b,{isWebGL:{get:b._get_isWebGL},autoPurge:{get:b._get_autoPurge,set:b._set_autoPurge}})}catch(c){}b._initializeWebGL=function(){if(this.canvas){if(!this._webGLContext||this._webGLContext.canvas!==this.canvas){var a={depth:!1,alpha:this._transparent,stencil:!0,antialias:this._antialias,premultipliedAlpha:this._premultiply,preserveDrawingBuffer:this._preserveBuffer},b=this._webGLContext=this._fetchWebGLContext(this.canvas,a);if(!b)return null;this.updateSimultaneousTextureCount(b.getParameter(b.MAX_TEXTURE_IMAGE_UNITS)),this._maxTextureSlots=b.getParameter(b.MAX_COMBINED_TEXTURE_IMAGE_UNITS),this._createBuffers(b),this._initTextures(b),b.disable(b.DEPTH_TEST),b.enable(b.BLEND),b.blendFuncSeparate(b.SRC_ALPHA,b.ONE_MINUS_SRC_ALPHA,b.ONE,b.ONE_MINUS_SRC_ALPHA),b.pixelStorei(b.UNPACK_PREMULTIPLY_ALPHA_WEBGL,this._premultiply),this._webGLContext.clearColor(this._clearColor.r,this._clearColor.g,this._clearColor.b,this._clearColor.a),this.updateViewport(this._viewportWidth||this.canvas.width,this._viewportHeight||this.canvas.height)}}else this._webGLContext=null;return this._webGLContext},b.update=function(a){if(this.canvas){if(this.tickOnUpdate&&this.tick(a),this.dispatchEvent("drawstart"),this.autoClear&&this.clear(),this._webGLContext)this._batchDraw(this,this._webGLContext),-1==this._autoPurge||this._drawID%(this._autoPurge/2|0)||this.purgeTextures(this._autoPurge);else{var b=this.canvas.getContext("2d");b.save(),this.updateContext(b),this.draw(b,!1),b.restore()}this.dispatchEvent("drawend")}},b.clear=function(){if(this.canvas)if(a.isWebGLActive(this._webGLContext)){var b=this._webGLContext,c=this._clearColor,d=this._transparent?c.a:1;this._webGLContext.clearColor(c.r*d,c.g*d,c.b*d,d),b.clear(b.COLOR_BUFFER_BIT),this._webGLContext.clearColor(c.r,c.g,c.b,c.a)}else this.Stage_clear()},b.draw=function(b,c){if(b===this._webGLContext&&a.isWebGLActive(this._webGLContext)){var d=this._webGLContext;return this._batchDraw(this,d,c),!0}return this.Stage_draw(b,c)},b.cacheDraw=function(b,c,d){if(a.isWebGLActive(this._webGLContext)){var e=this._webGLContext;return this._cacheDraw(e,b,c,d),!0}return!1},b.protectTextureSlot=function(a,b){if(a>this._maxTextureSlots||0>a)throw"Slot outside of acceptable range";this._slotBlacklist[a]=!!b},b.getTargetRenderTexture=function(a,b,c){var d,e=!1,f=this._webGLContext;if(void 0!==a.__lastRT&&a.__lastRT===a.__rtA&&(e=!0),e?(void 0===a.__rtB?a.__rtB=this.getRenderBufferTexture(b,c):((b!=a.__rtB._width||c!=a.__rtB._height)&&this.resizeTexture(a.__rtB,b,c),this.setTextureParams(f)),d=a.__rtB):(void 0===a.__rtA?a.__rtA=this.getRenderBufferTexture(b,c):((b!=a.__rtA._width||c!=a.__rtA._height)&&this.resizeTexture(a.__rtA,b,c),this.setTextureParams(f)),d=a.__rtA),!d)throw"Problems creating render textures, known causes include using too much VRAM by not releasing WebGL texture instances";return a.__lastRT=d,d},b.releaseTexture=function(a){var b,c;if(a){if(a.children)for(b=0,c=a.children.length;c>b;b++)this.releaseTexture(a.children[b]);a.cacheCanvas&&a.uncache();var d=void 0;if(void 0!==a._storeID){if(a===this._textureDictionary[a._storeID])return this._killTextureObject(a),void(a._storeID=void 0);d=a}else if(2===a._webGLRenderStyle)d=a.image;else if(1===a._webGLRenderStyle){for(b=0,c=a.spriteSheet._images.length;c>b;b++)this.releaseTexture(a.spriteSheet._images[b]);return}if(void 0===d)return void(this.vocalDebug&&console.log("No associated texture found on release"));this._killTextureObject(this._textureDictionary[d._storeID]),d._storeID=void 0}},b.purgeTextures=function(a){void 0==a&&(a=100);for(var b=this._textureDictionary,c=b.length,d=0;c>d;d++){var e=b[d];e&&e._drawID+a<=this._drawID&&this._killTextureObject(e)}},b.updateSimultaneousTextureCount=function(a){var b=this._webGLContext,c=!1;for((1>a||isNaN(a))&&(a=1),this._batchTextureCount=a;!c;)try{this._activeShader=this._fetchShaderProgram(b),c=!0}catch(d){if(1==this._batchTextureCount)throw"Cannot compile shader "+d;this._batchTextureCount-=4,this._batchTextureCount<1&&(this._batchTextureCount=1),this.vocalDebug&&console.log("Reducing desired texture count due to errors: "+this._batchTextureCount)}},b.updateViewport=function(a,b){this._viewportWidth=0|a,this._viewportHeight=0|b;var c=this._webGLContext;c&&(c.viewport(0,0,this._viewportWidth,this._viewportHeight),this._projectionMatrix=new Float32Array([2/this._viewportWidth,0,0,0,0,-2/this._viewportHeight,1,0,0,0,1,0,-1,1,.1,0]),this._projectionMatrixFlip=new Float32Array([0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]),this._projectionMatrixFlip.set(this._projectionMatrix),this._projectionMatrixFlip[5]*=-1,this._projectionMatrixFlip[13]*=-1)},b.getFilterShader=function(a){a||(a=this);var b=this._webGLContext,c=this._activeShader;if(a._builtShader)c=a._builtShader,a.shaderParamSetup&&(b.useProgram(c),a.shaderParamSetup(b,this,c));else try{c=this._fetchShaderProgram(b,"filter",a.VTX_SHADER_BODY,a.FRAG_SHADER_BODY,a.shaderParamSetup&&a.shaderParamSetup.bind(a)),a._builtShader=c,c._name=a.toString()}catch(d){console&&console.log("SHADER SWITCH FAILURE",d)}return c},b.getBaseTexture=function(a,b){var c=Math.ceil(a>0?a:1)||1,d=Math.ceil(b>0?b:1)||1,e=this._webGLContext,f=e.createTexture();return this.resizeTexture(f,c,d),this.setTextureParams(e,!1),f},b.resizeTexture=function(a,b,c){var d=this._webGLContext;d.bindTexture(d.TEXTURE_2D,a),d.texImage2D(d.TEXTURE_2D,0,d.RGBA,b,c,0,d.RGBA,d.UNSIGNED_BYTE,null),a.width=b,a.height=c},b.getRenderBufferTexture=function(a,b){var c=this._webGLContext,d=this.getBaseTexture(a,b);if(!d)return null;var e=c.createFramebuffer();return e?(d.width=a,d.height=b,c.bindFramebuffer(c.FRAMEBUFFER,e),c.framebufferTexture2D(c.FRAMEBUFFER,c.COLOR_ATTACHMENT0,c.TEXTURE_2D,d,0),e._renderTexture=d,d._frameBuffer=e,d._storeID=this._textureDictionary.length,this._textureDictionary[d._storeID]=d,c.bindFramebuffer(c.FRAMEBUFFER,null),d):null},b.setTextureParams=function(a,b){b&&this._antialias?(a.texParameteri(a.TEXTURE_2D,a.TEXTURE_MIN_FILTER,a.LINEAR),a.texParameteri(a.TEXTURE_2D,a.TEXTURE_MAG_FILTER,a.LINEAR)):(a.texParameteri(a.TEXTURE_2D,a.TEXTURE_MIN_FILTER,a.NEAREST),a.texParameteri(a.TEXTURE_2D,a.TEXTURE_MAG_FILTER,a.NEAREST)),a.texParameteri(a.TEXTURE_2D,a.TEXTURE_WRAP_S,a.CLAMP_TO_EDGE),a.texParameteri(a.TEXTURE_2D,a.TEXTURE_WRAP_T,a.CLAMP_TO_EDGE)},b.setClearColor=function(a){var b,c,d,e,f;"string"==typeof a?0==a.indexOf("#")?(4==a.length&&(a="#"+a.charAt(1)+a.charAt(1)+a.charAt(2)+a.charAt(2)+a.charAt(3)+a.charAt(3)),b=Number("0x"+a.slice(1,3))/255,c=Number("0x"+a.slice(3,5))/255,d=Number("0x"+a.slice(5,7))/255,e=Number("0x"+a.slice(7,9))/255):0==a.indexOf("rgba(")&&(f=a.slice(5,-1).split(","),b=Number(f[0])/255,c=Number(f[1])/255,d=Number(f[2])/255,e=Number(f[3])):(b=((4278190080&a)>>>24)/255,c=((16711680&a)>>>16)/255,d=((65280&a)>>>8)/255,e=(255&a)/255),this._clearColor.r=b||0,this._clearColor.g=c||0,this._clearColor.b=d||0,this._clearColor.a=e||0,this._webGLContext&&this._webGLContext.clearColor(this._clearColor.r,this._clearColor.g,this._clearColor.b,this._clearColor.a); +},b.toString=function(){return"[StageGL (name="+this.name+")]"},b._fetchWebGLContext=function(a,b){var c;try{c=a.getContext("webgl",b)||a.getContext("experimental-webgl",b)}catch(d){}if(c)c.viewportWidth=a.width,c.viewportHeight=a.height;else{var e="Could not initialize WebGL";console.error?console.error(e):console.log(e)}return c},b._fetchShaderProgram=function(b,c,d,e,f){b.useProgram(null);var g,h;switch(c){case"filter":h=a.COVER_VERTEX_HEADER+(d||a.COVER_VERTEX_BODY),g=a.COVER_FRAGMENT_HEADER+(e||a.COVER_FRAGMENT_BODY);break;case"particle":h=a.REGULAR_VERTEX_HEADER+a.PARTICLE_VERTEX_BODY,g=a.REGULAR_FRAGMENT_HEADER+a.PARTICLE_FRAGMENT_BODY;break;case"override":h=a.REGULAR_VERTEX_HEADER+(d||a.REGULAR_VERTEX_BODY),g=a.REGULAR_FRAGMENT_HEADER+(e||a.REGULAR_FRAGMENT_BODY);break;case"regular":default:h=a.REGULAR_VERTEX_HEADER+a.REGULAR_VERTEX_BODY,g=a.REGULAR_FRAGMENT_HEADER+a.REGULAR_FRAGMENT_BODY}var i=this._createShader(b,b.VERTEX_SHADER,h),j=this._createShader(b,b.FRAGMENT_SHADER,g),k=b.createProgram();if(b.attachShader(k,i),b.attachShader(k,j),b.linkProgram(k),k._type=c,!b.getProgramParameter(k,b.LINK_STATUS))throw b.useProgram(this._activeShader),b.getProgramInfoLog(k);switch(b.useProgram(k),c){case"filter":k.vertexPositionAttribute=b.getAttribLocation(k,"vertexPosition"),b.enableVertexAttribArray(k.vertexPositionAttribute),k.uvPositionAttribute=b.getAttribLocation(k,"uvPosition"),b.enableVertexAttribArray(k.uvPositionAttribute),k.samplerUniform=b.getUniformLocation(k,"uSampler"),b.uniform1i(k.samplerUniform,0),k.uprightUniform=b.getUniformLocation(k,"uUpright"),b.uniform1f(k.uprightUniform,0),f&&f(b,this,k);break;case"override":case"particle":case"regular":default:k.vertexPositionAttribute=b.getAttribLocation(k,"vertexPosition"),b.enableVertexAttribArray(k.vertexPositionAttribute),k.uvPositionAttribute=b.getAttribLocation(k,"uvPosition"),b.enableVertexAttribArray(k.uvPositionAttribute),k.textureIndexAttribute=b.getAttribLocation(k,"textureIndex"),b.enableVertexAttribArray(k.textureIndexAttribute),k.alphaAttribute=b.getAttribLocation(k,"objectAlpha"),b.enableVertexAttribArray(k.alphaAttribute);for(var l=[],m=0;md;d+=c)h[d]=h[d+1]=0;b.bufferData(b.ARRAY_BUFFER,h,b.DYNAMIC_DRAW),g.itemSize=c,g.numItems=f;var i=this._uvPositionBuffer=b.createBuffer();b.bindBuffer(b.ARRAY_BUFFER,i),c=2;var j=this._uvs=new Float32Array(f*c);for(d=0,e=j.length;e>d;d+=c)j[d]=j[d+1]=0;b.bufferData(b.ARRAY_BUFFER,j,b.DYNAMIC_DRAW),i.itemSize=c,i.numItems=f;var k=this._textureIndexBuffer=b.createBuffer();b.bindBuffer(b.ARRAY_BUFFER,k),c=1;var l=this._indices=new Float32Array(f*c);for(d=0,e=l.length;e>d;d++)l[d]=0;b.bufferData(b.ARRAY_BUFFER,l,b.DYNAMIC_DRAW),k.itemSize=c,k.numItems=f;var m=this._alphaBuffer=b.createBuffer();b.bindBuffer(b.ARRAY_BUFFER,m),c=1;var n=this._alphas=new Float32Array(f*c);for(d=0,e=n.length;e>d;d++)n[d]=1;b.bufferData(b.ARRAY_BUFFER,n,b.DYNAMIC_DRAW),m.itemSize=c,m.numItems=f},b._initTextures=function(){this._lastTextureInsert=-1,this._textureDictionary=[],this._textureIDs={},this._baseTextures=[],this._batchTextures=[];for(var a=0;a a.MAX_TEXTURE_SIZE||b.height>a.MAX_TEXTURE_SIZE)&&console&&console.error("Oversized Texture: "+b.width+"x"+b.height+" vs "+a.MAX_TEXTURE_SIZE+"max"))},b._insertTextureInBatch=function(a,b){if(this._batchTextures[b._activeIndex]!==b){var c=-1,d=(this._lastTextureInsert+1)%this._batchTextureCount,e=d;do{if(this._batchTextures[e]._batchID!=this._batchID&&!this._slotBlacklist[e]){c=e;break}e=(e+1)%this._batchTextureCount}while(e!==d);-1===c&&(this.batchReason="textureOverflow",this._drawBuffers(a),this.batchCardCount=0,c=d),this._batchTextures[c]=b,b._activeIndex=c;var f=b._imageData;f&&f._invalid&&void 0!==b._drawID?this._updateTextureImageData(a,f):(a.activeTexture(a.TEXTURE0+c),a.bindTexture(a.TEXTURE_2D,b),this.setTextureParams(a)),this._lastTextureInsert=c}else{var f=b._imageData;void 0!=b._storeID&&f&&f._invalid&&this._updateTextureImageData(a,f)}b._drawID=this._drawID,b._batchID=this._batchID},b._killTextureObject=function(a){if(a){var b=this._webGLContext;if(void 0!==a._storeID&&a._storeID>=0){this._textureDictionary[a._storeID]=void 0;for(var c in this._textureIDs)this._textureIDs[c]==a._storeID&&delete this._textureIDs[c];a._imageData&&(a._imageData._storeID=void 0),a._imageData=a._storeID=void 0}void 0!==a._activeIndex&&this._batchTextures[a._activeIndex]===a&&(this._batchTextures[a._activeIndex]=this._baseTextures[a._activeIndex]);try{a._frameBuffer&&b.deleteFramebuffer(a._frameBuffer),a._frameBuffer=void 0}catch(d){this.vocalDebug&&console.log(d)}try{b.deleteTexture(a)}catch(d){this.vocalDebug&&console.log(d)}}},b._backupBatchTextures=function(a,b){var c=this._webGLContext;this._backupTextures||(this._backupTextures=[]),void 0===b&&(b=this._backupTextures);for(var d=0;d 0&&this._drawBuffers(b),this._isDrawing++,this._drawID++,this.batchCardCount=0,this.depth=0,this._appendToBatchGroup(a,b,new createjs.Matrix2D,this.alpha,c),this.batchReason="drawFinish",this._drawBuffers(b),this._isDrawing--},b._cacheDraw=function(a,b,c,d){var e,f=this._activeShader,g=this._slotBlacklist,h=this._maxTextureSlots-1,i=this._viewportWidth,j=this._viewportHeight;this.protectTextureSlot(h,!0);var k=b.getMatrix();k=k.clone(),k.scale(1/d.scale,1/d.scale),k=k.invert(),k.translate(-d.offX/d.scale*b.scaleX,-d.offY/d.scale*b.scaleY);var l=this._cacheContainer;l.children=[b],l.transformMatrix=k,this._backupBatchTextures(!1),c&&c.length?this._drawFilters(b,c,d):this.isCacheControlled?(a.clear(a.COLOR_BUFFER_BIT),this._batchDraw(l,a,!0)):(a.activeTexture(a.TEXTURE0+h),b.cacheCanvas=this.getTargetRenderTexture(b,d._drawWidth,d._drawHeight),e=b.cacheCanvas,a.bindFramebuffer(a.FRAMEBUFFER,e._frameBuffer),this.updateViewport(d._drawWidth,d._drawHeight),this._projectionMatrix=this._projectionMatrixFlip,a.clear(a.COLOR_BUFFER_BIT),this._batchDraw(l,a,!0),a.bindFramebuffer(a.FRAMEBUFFER,null),this.updateViewport(i,j)),this._backupBatchTextures(!0),this.protectTextureSlot(h,!1),this._activeShader=f,this._slotBlacklist=g},b._drawFilters=function(a,b,c){var d,e=this._webGLContext,f=this._maxTextureSlots-1,g=this._viewportWidth,h=this._viewportHeight,i=this._cacheContainer,j=b.length;e.activeTexture(e.TEXTURE0+f),d=this.getTargetRenderTexture(a,c._drawWidth,c._drawHeight),e.bindFramebuffer(e.FRAMEBUFFER,d._frameBuffer),this.updateViewport(c._drawWidth,c._drawHeight),e.clear(e.COLOR_BUFFER_BIT),this._batchDraw(i,e,!0),e.activeTexture(e.TEXTURE0),e.bindTexture(e.TEXTURE_2D,d),this.setTextureParams(e);var k=!1,l=0,m=b[l];do this._activeShader=this.getFilterShader(m),this._activeShader&&(e.activeTexture(e.TEXTURE0+f),d=this.getTargetRenderTexture(a,c._drawWidth,c._drawHeight),e.bindFramebuffer(e.FRAMEBUFFER,d._frameBuffer),e.viewport(0,0,c._drawWidth,c._drawHeight),e.clear(e.COLOR_BUFFER_BIT),this._drawCover(e,k),e.activeTexture(e.TEXTURE0),e.bindTexture(e.TEXTURE_2D,d),this.setTextureParams(e),(j>1||b[0]._multiPass)&&(k=!k),m=null!==m._multiPass?m._multiPass:b[++l]);while(m);this.isCacheControlled?(e.bindFramebuffer(e.FRAMEBUFFER,null),this.updateViewport(g,h),this._activeShader=this.getFilterShader(this),e.clear(e.COLOR_BUFFER_BIT),this._drawCover(e,k)):(k&&(e.activeTexture(e.TEXTURE0+f),d=this.getTargetRenderTexture(a,c._drawWidth,c._drawHeight),e.bindFramebuffer(e.FRAMEBUFFER,d._frameBuffer),this._activeShader=this.getFilterShader(this),e.viewport(0,0,c._drawWidth,c._drawHeight),e.clear(e.COLOR_BUFFER_BIT),this._drawCover(e,!k)),e.bindFramebuffer(e.FRAMEBUFFER,null),this.updateViewport(g,h),a.cacheCanvas=d)},b._appendToBatchGroup=function(b,c,d,e,f){b._glMtx||(b._glMtx=new createjs.Matrix2D);var g=b._glMtx;g.copy(d),b.transformMatrix?g.appendMatrix(b.transformMatrix):g.appendTransform(b.x,b.y,b.scaleX,b.scaleY,b.rotation,b.skewX,b.skewY,b.regX,b.regY);for(var h,i,j,k,l=b.children.length,m=0;l>m;m++){var n=b.children[m];if(n.visible&&e)if(n.cacheCanvas&&!f||(n._updateState&&n._updateState(),!n.children)){this.batchCardCount+1>this._maxCardsPerBatch&&(this.batchReason="vertexOverflow",this._drawBuffers(c),this.batchCardCount=0),n._glMtx||(n._glMtx=new createjs.Matrix2D);var o=n._glMtx;o.copy(g),n.transformMatrix?o.appendMatrix(n.transformMatrix):o.appendTransform(n.x,n.y,n.scaleX,n.scaleY,n.rotation,n.skewX,n.skewY,n.regX,n.regY);var p,q,r,s,t,u,v=n.cacheCanvas&&!f;if(2===n._webGLRenderStyle||v)r=(f?!1:n.cacheCanvas)||n.image;else{if(1!==n._webGLRenderStyle)continue;if(s=n.spriteSheet.getFrame(n.currentFrame),null===s)continue;r=s.image}var w=this._uvs,x=this._vertices,y=this._indices,z=this._alphas;if(r){if(void 0===r._storeID)t=this._loadTextureImage(c,r),this._insertTextureInBatch(c,t);else{if(t=this._textureDictionary[r._storeID],!t){this.vocalDebug&&console.log("Texture should not be looked up while not being stored.");continue}t._batchID!==this._batchID&&this._insertTextureInBatch(c,t)}if(q=t._activeIndex,2===n._webGLRenderStyle||v)!v&&n.sourceRect?(n._uvRect||(n._uvRect={}),u=n.sourceRect,p=n._uvRect,p.t=u.y/r.height,p.l=u.x/r.width,p.b=(u.y+u.height)/r.height,p.r=(u.x+u.width)/r.width,h=0,i=0,j=u.width+h,k=u.height+i):(p=a.UV_RECT,v?(u=n.bitmapCache,h=u.x+u._filterOffX/u.scale,i=u.y+u._filterOffY/u.scale,j=u._drawWidth/u.scale+h,k=u._drawHeight/u.scale+i):(h=0,i=0,j=r.width+h,k=r.height+i));else if(1===n._webGLRenderStyle){var A=s.rect;p=s.uvRect,p||(p=a.buildUVRects(n.spriteSheet,n.currentFrame,!1)),h=-s.regX,i=-s.regY,j=A.width-s.regX,k=A.height-s.regY}var B=this.batchCardCount*a.INDICIES_PER_CARD,C=2*B;x[C]=h*o.a+i*o.c+o.tx,x[C+1]=h*o.b+i*o.d+o.ty,x[C+2]=h*o.a+k*o.c+o.tx,x[C+3]=h*o.b+k*o.d+o.ty,x[C+4]=j*o.a+i*o.c+o.tx,x[C+5]=j*o.b+i*o.d+o.ty,x[C+6]=x[C+2],x[C+7]=x[C+3],x[C+8]=x[C+4],x[C+9]=x[C+5],x[C+10]=j*o.a+k*o.c+o.tx,x[C+11]=j*o.b+k*o.d+o.ty,w[C]=p.l,w[C+1]=p.t,w[C+2]=p.l,w[C+3]=p.b,w[C+4]=p.r,w[C+5]=p.t,w[C+6]=p.l,w[C+7]=p.b,w[C+8]=p.r,w[C+9]=p.t,w[C+10]=p.r,w[C+11]=p.b,y[B]=y[B+1]=y[B+2]=y[B+3]=y[B+4]=y[B+5]=q,z[B]=z[B+1]=z[B+2]=z[B+3]=z[B+4]=z[B+5]=n.alpha*e,this.batchCardCount++}}else this._appendToBatchGroup(n,c,g,n.alpha*e)}},b._drawBuffers=function(b){if(!(this.batchCardCount<=0)){this.vocalDebug&&console.log("Draw["+this._drawID+":"+this._batchID+"] : "+this.batchReason);var c=this._activeShader,d=this._vertexPositionBuffer,e=this._textureIndexBuffer,f=this._uvPositionBuffer,g=this._alphaBuffer;b.useProgram(c),b.bindBuffer(b.ARRAY_BUFFER,d),b.vertexAttribPointer(c.vertexPositionAttribute,d.itemSize,b.FLOAT,!1,0,0),b.bufferSubData(b.ARRAY_BUFFER,0,this._vertices),b.bindBuffer(b.ARRAY_BUFFER,e),b.vertexAttribPointer(c.textureIndexAttribute,e.itemSize,b.FLOAT,!1,0,0),b.bufferSubData(b.ARRAY_BUFFER,0,this._indices),b.bindBuffer(b.ARRAY_BUFFER,f),b.vertexAttribPointer(c.uvPositionAttribute,f.itemSize,b.FLOAT,!1,0,0),b.bufferSubData(b.ARRAY_BUFFER,0,this._uvs),b.bindBuffer(b.ARRAY_BUFFER,g),b.vertexAttribPointer(c.alphaAttribute,g.itemSize,b.FLOAT,!1,0,0),b.bufferSubData(b.ARRAY_BUFFER,0,this._alphas),b.uniformMatrix4fv(c.pMatrixUniform,b.FALSE,this._projectionMatrix);for(var h=0;h 0&&this._drawBuffers(b),this.vocalDebug&&console.log("Draw["+this._drawID+":"+this._batchID+"] : Cover");var d=this._activeShader,e=this._vertexPositionBuffer,f=this._uvPositionBuffer;b.clear(b.COLOR_BUFFER_BIT),b.useProgram(d),b.bindBuffer(b.ARRAY_BUFFER,e),b.vertexAttribPointer(d.vertexPositionAttribute,e.itemSize,b.FLOAT,!1,0,0),b.bufferSubData(b.ARRAY_BUFFER,0,a.COVER_VERT),b.bindBuffer(b.ARRAY_BUFFER,f),b.vertexAttribPointer(d.uvPositionAttribute,f.itemSize,b.FLOAT,!1,0,0),b.bufferSubData(b.ARRAY_BUFFER,0,c?a.COVER_UV_FLIP:a.COVER_UV),b.uniform1i(d.samplerUniform,0),b.uniform1f(d.uprightUniform,c?0:1),b.drawArrays(b.TRIANGLES,0,a.INDICIES_PER_CARD)},createjs.StageGL=createjs.promote(a,"Stage")}(),this.createjs=this.createjs||{},function(){function a(a){this.DisplayObject_constructor(),"string"==typeof a?(this.image=document.createElement("img"),this.image.src=a):this.image=a,this.sourceRect=null,this._webGLRenderStyle=createjs.DisplayObject._StageGL_BITMAP}var b=createjs.extend(a,createjs.DisplayObject);b.initialize=a,b.isVisible=function(){var a=this.image,b=this.cacheCanvas||a&&(a.naturalWidth||a.getContext||a.readyState>=2);return!!(this.visible&&this.alpha>0&&0!=this.scaleX&&0!=this.scaleY&&b)},b.draw=function(a,b){if(this.DisplayObject_draw(a,b))return!0;var c=this.image,d=this.sourceRect;if(c.getImage&&(c=c.getImage()),!c)return!0;if(d){var e=d.x,f=d.y,g=e+d.width,h=f+d.height,i=0,j=0,k=c.width,l=c.height;0>e&&(i-=e,e=0),g>k&&(g=k),0>f&&(j-=f,f=0),h>l&&(h=l),a.drawImage(c,e,f,g-e,h-f,i,j,g-e,h-f)}else a.drawImage(c,0,0);return!0},b.getBounds=function(){var a=this.DisplayObject_getBounds();if(a)return a;var b=this.image,c=this.sourceRect||b,d=b&&(b.naturalWidth||b.getContext||b.readyState>=2);return d?this._rectangle.setValues(0,0,c.width,c.height):null},b.clone=function(b){var c=this.image;c&&b&&(c=c.cloneNode());var d=new a(c);return this.sourceRect&&(d.sourceRect=this.sourceRect.clone()),this._cloneProps(d),d},b.toString=function(){return"[Bitmap (name="+this.name+")]"},createjs.Bitmap=createjs.promote(a,"DisplayObject")}(),this.createjs=this.createjs||{},function(){"use strict";function a(a,b){this.DisplayObject_constructor(),this.currentFrame=0,this.currentAnimation=null,this.paused=!0,this.spriteSheet=a,this.currentAnimationFrame=0,this.framerate=0,this._animation=null,this._currentFrame=null,this._skipAdvance=!1,this._webGLRenderStyle=createjs.DisplayObject._StageGL_SPRITE,null!=b&&this.gotoAndPlay(b)}var b=createjs.extend(a,createjs.DisplayObject);b.initialize=a,b.isVisible=function(){var a=this.cacheCanvas||this.spriteSheet.complete;return!!(this.visible&&this.alpha>0&&0!=this.scaleX&&0!=this.scaleY&&a)},b.draw=function(a,b){if(this.DisplayObject_draw(a,b))return!0;this._normalizeFrame();var c=this.spriteSheet.getFrame(0|this._currentFrame);if(!c)return!1;var d=c.rect;return d.width&&d.height&&a.drawImage(c.image,d.x,d.y,d.width,d.height,-c.regX,-c.regY,d.width,d.height),!0},b.play=function(){this.paused=!1},b.stop=function(){this.paused=!0},b.gotoAndPlay=function(a){this.paused=!1,this._skipAdvance=!0,this._goto(a)},b.gotoAndStop=function(a){this.paused=!0,this._goto(a)},b.advance=function(a){var b=this.framerate||this.spriteSheet.framerate,c=b&&null!=a?a/(1e3/b):1;this._normalizeFrame(c)},b.getBounds=function(){return this.DisplayObject_getBounds()||this.spriteSheet.getFrameBounds(this.currentFrame,this._rectangle)},b.clone=function(){return this._cloneProps(new a(this.spriteSheet))},b.toString=function(){return"[Sprite (name="+this.name+")]"},b._cloneProps=function(a){return this.DisplayObject__cloneProps(a),a.currentFrame=this.currentFrame,a.currentAnimation=this.currentAnimation,a.paused=this.paused,a.currentAnimationFrame=this.currentAnimationFrame,a.framerate=this.framerate,a._animation=this._animation,a._currentFrame=this._currentFrame,a._skipAdvance=this._skipAdvance,a},b._tick=function(a){this.paused||(this._skipAdvance||this.advance(a&&a.delta),this._skipAdvance=!1),this.DisplayObject__tick(a)},b._normalizeFrame=function(a){a=a||0;var b,c=this._animation,d=this.paused,e=this._currentFrame;if(c){var f=c.speed||1,g=this.currentAnimationFrame;if(b=c.frames.length,g+a*f>=b){var h=c.next;if(this._dispatchAnimationEnd(c,e,d,h,b-1))return;if(h)return this._goto(h,a-(b-g)/f);this.paused=!0,g=c.frames.length-1}else g+=a*f;this.currentAnimationFrame=g,this._currentFrame=c.frames[0|g]}else if(e=this._currentFrame+=a,b=this.spriteSheet.getNumFrames(),e>=b&&b>0&&!this._dispatchAnimationEnd(c,e,d,b-1)&&(this._currentFrame-=b)>=b)return this._normalizeFrame();e=0|this._currentFrame,this.currentFrame!=e&&(this.currentFrame=e,this.dispatchEvent("change"))},b._dispatchAnimationEnd=function(a,b,c,d,e){var f=a?a.name:null;if(this.hasEventListener("animationend")){var g=new createjs.Event("animationend");g.name=f,g.next=d,this.dispatchEvent(g)}var h=this._animation!=a||this._currentFrame!=b;return h||c||!this.paused||(this.currentAnimationFrame=e,h=!0),h},b._goto=function(a,b){if(this.currentAnimationFrame=0,isNaN(a)){var c=this.spriteSheet.getAnimation(a);c&&(this._animation=c,this.currentAnimation=a,this._normalizeFrame(b))}else this.currentAnimation=this._animation=null,this._currentFrame=a,this._normalizeFrame()},createjs.Sprite=createjs.promote(a,"DisplayObject")}(),this.createjs=this.createjs||{},function(){"use strict";function a(a){this.DisplayObject_constructor(),this.graphics=a?a:new createjs.Graphics}var b=createjs.extend(a,createjs.DisplayObject);b.isVisible=function(){var a=this.cacheCanvas||this.graphics&&!this.graphics.isEmpty();return!!(this.visible&&this.alpha>0&&0!=this.scaleX&&0!=this.scaleY&&a)},b.draw=function(a,b){return this.DisplayObject_draw(a,b)?!0:(this.graphics.draw(a,this),!0)},b.clone=function(b){var c=b&&this.graphics?this.graphics.clone():this.graphics;return this._cloneProps(new a(c))},b.toString=function(){return"[Shape (name="+this.name+")]"},createjs.Shape=createjs.promote(a,"DisplayObject")}(),this.createjs=this.createjs||{},function(){"use strict";function a(a,b,c){this.DisplayObject_constructor(),this.text=a,this.font=b,this.color=c,this.textAlign="left",this.textBaseline="top",this.maxWidth=null,this.outline=0,this.lineHeight=0,this.lineWidth=null}var b=createjs.extend(a,createjs.DisplayObject),c=createjs.createCanvas?createjs.createCanvas():document.createElement("canvas");c.getContext&&(a._workingContext=c.getContext("2d"),c.width=c.height=1),a.H_OFFSETS={start:0,left:0,center:-.5,end:-1,right:-1},a.V_OFFSETS={top:0,hanging:-.01,middle:-.4,alphabetic:-.8,ideographic:-.85,bottom:-1},b.isVisible=function(){var a=this.cacheCanvas||null!=this.text&&""!==this.text;return!!(this.visible&&this.alpha>0&&0!=this.scaleX&&0!=this.scaleY&&a)},b.draw=function(a,b){if(this.DisplayObject_draw(a,b))return!0;var c=this.color||"#000";return this.outline?(a.strokeStyle=c,a.lineWidth=1*this.outline):a.fillStyle=c,this._drawText(this._prepContext(a)),!0},b.getMeasuredWidth=function(){return this._getMeasuredWidth(this.text)},b.getMeasuredLineHeight=function(){return 1.2*this._getMeasuredWidth("M")},b.getMeasuredHeight=function(){return this._drawText(null,{}).height},b.getBounds=function(){var b=this.DisplayObject_getBounds();if(b)return b;if(null==this.text||""===this.text)return null;var c=this._drawText(null,{}),d=this.maxWidth&&this.maxWidth 20?this.text.substr(0,17)+"...":this.text)+")]"},b._cloneProps=function(a){return this.DisplayObject__cloneProps(a),a.textAlign=this.textAlign,a.textBaseline=this.textBaseline,a.maxWidth=this.maxWidth,a.outline=this.outline,a.lineHeight=this.lineHeight,a.lineWidth=this.lineWidth,a},b._prepContext=function(a){return a.font=this.font||"10px sans-serif",a.textAlign=this.textAlign||"left",a.textBaseline=this.textBaseline||"top",a.lineJoin="miter",a.miterLimit=2.5,a},b._drawText=function(b,c,d){var e=!!b;e||(b=a._workingContext,b.save(),this._prepContext(b));for(var f=this.lineHeight||this.getMeasuredLineHeight(),g=0,h=0,i=String(this.text).split(/(?:\r\n|\r|\n)/),j=0,k=i.length;k>j;j++){var l=i[j],m=null;if(null!=this.lineWidth&&(m=b.measureText(l).width)>this.lineWidth){var n=l.split(/(\s)/);l=n[0],m=b.measureText(l).width;for(var o=1,p=n.length;p>o;o+=2){var q=b.measureText(n[o]+n[o+1]).width;m+q>this.lineWidth?(e&&this._drawTextLine(b,l,h*f),d&&d.push(l),m>g&&(g=m),l=n[o+1],m=b.measureText(l).width,h++):(l+=n[o]+n[o+1],m+=q)}}e&&this._drawTextLine(b,l,h*f),d&&d.push(l),c&&null==m&&(m=b.measureText(l).width),m>g&&(g=m),h++}return c&&(c.width=g,c.height=h*f),e||b.restore(),c},b._drawTextLine=function(a,b,c){this.outline?a.strokeText(b,0,c,this.maxWidth||65535):a.fillText(b,0,c,this.maxWidth||65535)},b._getMeasuredWidth=function(b){var c=a._workingContext;c.save();var d=this._prepContext(c).measureText(b).width;return c.restore(),d},createjs.Text=createjs.promote(a,"DisplayObject")}(),this.createjs=this.createjs||{},function(){"use strict";function a(a,b){this.Container_constructor(),this.text=a||"",this.spriteSheet=b,this.lineHeight=0,this.letterSpacing=0,this.spaceWidth=0,this._oldProps={text:0,spriteSheet:0,lineHeight:0,letterSpacing:0,spaceWidth:0},this._oldStage=null,this._drawAction=null}var b=createjs.extend(a,createjs.Container);a.maxPoolSize=100,a._spritePool=[],b.draw=function(a,b){this.DisplayObject_draw(a,b)||(this._updateState(),this.Container_draw(a,b))},b.getBounds=function(){return this._updateText(),this.Container_getBounds()},b.isVisible=function(){var a=this.cacheCanvas||this.spriteSheet&&this.spriteSheet.complete&&this.text;return!!(this.visible&&this.alpha>0&&0!==this.scaleX&&0!==this.scaleY&&a)},b.clone=function(){return this._cloneProps(new a(this.text,this.spriteSheet))},b.addChild=b.addChildAt=b.removeChild=b.removeChildAt=b.removeAllChildren=function(){},b._updateState=function(){this._updateText()},b._cloneProps=function(a){return this.Container__cloneProps(a),a.lineHeight=this.lineHeight,a.letterSpacing=this.letterSpacing,a.spaceWidth=this.spaceWidth,a},b._getFrameIndex=function(a,b){var c,d=b.getAnimation(a);return d||(a!=(c=a.toUpperCase())||a!=(c=a.toLowerCase())||(c=null),c&&(d=b.getAnimation(c))),d&&d.frames[0]},b._getFrame=function(a,b){var c=this._getFrameIndex(a,b);return null==c?c:b.getFrame(c)},b._getLineHeight=function(a){var b=this._getFrame("1",a)||this._getFrame("T",a)||this._getFrame("L",a)||a.getFrame(0);return b?b.rect.height:1},b._getSpaceWidth=function(a){var b=this._getFrame("1",a)||this._getFrame("l",a)||this._getFrame("e",a)||this._getFrame("a",a)||a.getFrame(0);return b?b.rect.width:1},b._updateText=function(){var b,c=0,d=0,e=this._oldProps,f=!1,g=this.spaceWidth,h=this.lineHeight,i=this.spriteSheet,j=a._spritePool,k=this.children,l=0,m=k.length;for(var n in e)e[n]!=this[n]&&(e[n]=this[n],f=!0);if(f){var o=!!this._getFrame(" ",i);o||g||(g=this._getSpaceWidth(i)),h||(h=this._getLineHeight(i));for(var p=0,q=this.text.length;q>p;p++){var r=this.text.charAt(p);if(" "!=r||o)if("\n"!=r&&"\r"!=r){var s=this._getFrameIndex(r,i);null!=s&&(m>l?b=k[l]:(k.push(b=j.length?j.pop():new createjs.Sprite),b.parent=this,m++),b.spriteSheet=i,b.gotoAndStop(s),b.x=c,b.y=d,l++,c+=b.getBounds().width+this.letterSpacing)}else"\r"==r&&"\n"==this.text.charAt(p+1)&&p++,c=0,d+=h;else c+=g}for(;m>l;)j.push(b=k.pop()),b.parent=null,m--;j.length>a.maxPoolSize&&(j.length=a.maxPoolSize)}},createjs.BitmapText=createjs.promote(a,"Container")}(),this.createjs=this.createjs||{},function(){"use strict";function a(b){this.Container_constructor(),!a.inited&&a.init();var c,d,e,f;b instanceof String||arguments.length>1?(c=b,d=arguments[1],e=arguments[2],f=arguments[3],null==e&&(e=-1),b=null):b&&(c=b.mode,d=b.startPosition,e=b.loop,f=b.labels),b||(b={labels:f}),this.mode=c||a.INDEPENDENT,this.startPosition=d||0,this.loop=e===!0?-1:e||0,this.currentFrame=0,this.paused=b.paused||!1,this.actionsEnabled=!0,this.autoReset=!0,this.frameBounds=this.frameBounds||b.frameBounds,this.framerate=null,b.useTicks=b.paused=!0,this.timeline=new createjs.Timeline(b),this._synchOffset=0,this._rawPosition=-1,this._bound_resolveState=this._resolveState.bind(this),this._t=0,this._managed={}}function b(){throw"MovieClipPlugin cannot be instantiated."}var c=createjs.extend(a,createjs.Container);a.INDEPENDENT="independent",a.SINGLE_FRAME="single",a.SYNCHED="synched",a.inited=!1,a.init=function(){a.inited||(b.install(),a.inited=!0)},c._getLabels=function(){return this.timeline.getLabels()},c.getLabels=createjs.deprecate(c._getLabels,"MovieClip.getLabels"),c._getCurrentLabel=function(){return this.timeline.currentLabel},c.getCurrentLabel=createjs.deprecate(c._getCurrentLabel,"MovieClip.getCurrentLabel"),c._getDuration=function(){return this.timeline.duration},c.getDuration=createjs.deprecate(c._getDuration,"MovieClip.getDuration");try{Object.defineProperties(c,{labels:{get:c._getLabels},currentLabel:{get:c._getCurrentLabel},totalFrames:{get:c._getDuration},duration:{get:c._getDuration}})}catch(d){}c.initialize=a,c.isVisible=function(){return!!(this.visible&&this.alpha>0&&0!=this.scaleX&&0!=this.scaleY)},c.draw=function(a,b){return this.DisplayObject_draw(a,b)?!0:(this._updateState(),this.Container_draw(a,b),!0)},c.play=function(){this.paused=!1},c.stop=function(){this.paused=!0},c.gotoAndPlay=function(a){this.paused=!1,this._goto(a)},c.gotoAndStop=function(a){this.paused=!0,this._goto(a)},c.advance=function(b){var c=a.INDEPENDENT;if(this.mode===c){for(var d=this,e=d.framerate;(d=d.parent)&&null===e;)d.mode===c&&(e=d._framerate);if(this._framerate=e,!this.paused){var f=null!==e&&-1!==e&&null!==b?b/(1e3/e)+this._t:1,g=0|f;for(this._t=f-g;g--;)this._updateTimeline(this._rawPosition+1,!1)}}},c.clone=function(){throw"MovieClip cannot be cloned."},c.toString=function(){return"[MovieClip (name="+this.name+")]"},c._updateState=function(){(-1===this._rawPosition||this.mode!==a.INDEPENDENT)&&this._updateTimeline(-1)},c._tick=function(a){this.advance(a&&a.delta),this.Container__tick(a)},c._goto=function(a){var b=this.timeline.resolve(a);null!=b&&(this._t=0,this._updateTimeline(b,!0))},c._reset=function(){this._rawPosition=-1,this._t=this.currentFrame=0,this.paused=!1},c._updateTimeline=function(b,c){var d=this.mode!==a.INDEPENDENT,e=this.timeline;d&&(b=this.startPosition+(this.mode===a.SINGLE_FRAME?0:this._synchOffset)),0>b&&(b=0),(this._rawPosition!==b||d)&&(this._rawPosition=b,e.loop=this.loop,e.setPosition(b,d||!this.actionsEnabled,c,this._bound_resolveState))},c._renderFirstFrame=function(){var a=this.timeline,b=a.rawPosition;a.setPosition(0,!0,!0,this._bound_resolveState),a.rawPosition=b},c._resolveState=function(){var a=this.timeline;this.currentFrame=a.position;for(var b in this._managed)this._managed[b]=1;for(var c=a.tweens,d=0,e=c.length;e>d;d++){var f=c[d],g=f.target;if(g!==this&&!f.passive){var h=f._stepPosition;g instanceof createjs.DisplayObject?this._addManagedChild(g,h):this._setState(g.state,h)}}var i=this.children;for(d=i.length-1;d>=0;d--){var j=i[d].id;1===this._managed[j]&&(this.removeChildAt(d),delete this._managed[j])}},c._setState=function(a,b){if(a)for(var c=a.length-1;c>=0;c--){var d=a[c],e=d.t,f=d.p;for(var g in f)e[g]=f[g];this._addManagedChild(e,b)}},c._addManagedChild=function(b,c){b._off||(this.addChildAt(b,0),b instanceof a&&(b._synchOffset=c,b.mode===a.INDEPENDENT&&b.autoReset&&!this._managed[b.id]&&b._reset()),this._managed[b.id]=2)},c._getBounds=function(a,b){var c=this.DisplayObject_getBounds();return c||this.frameBounds&&(c=this._rectangle.copy(this.frameBounds[this.currentFrame])),c?this._transformBounds(c,a,b):this.Container__getBounds(a,b)},createjs.MovieClip=createjs.promote(a,"Container"),b.priority=100,b.ID="MovieClip",b.install=function(){createjs.Tween._installPlugin(b)},b.init=function(c,d,e){"startPosition"===d&&c.target instanceof a&&c._addPlugin(b)},b.step=function(a,b,c){},b.change=function(a,b,c,d,e,f){return"startPosition"===c?1===e?b.props[c]:b.prev.props[c]:void 0}}(),this.createjs=this.createjs||{},function(){"use strict";function a(){throw"SpriteSheetUtils cannot be instantiated"}var b=createjs.createCanvas?createjs.createCanvas():document.createElement("canvas");b.getContext&&(a._workingCanvas=b,a._workingContext=b.getContext("2d"),b.width=b.height=1),a.extractFrame=function(b,c){isNaN(c)&&(c=b.getAnimation(c).frames[0]);var d=b.getFrame(c);if(!d)return null;var e=d.rect,f=a._workingCanvas;f.width=e.width,f.height=e.height,a._workingContext.drawImage(d.image,e.x,e.y,e.width,e.height,0,0,e.width,e.height);var g=document.createElement("img");return g.src=f.toDataURL("image/png"),g},a.addFlippedFrames=createjs.deprecate(null,"SpriteSheetUtils.addFlippedFrames"),a.mergeAlpha=createjs.deprecate(null,"SpriteSheetUtils.mergeAlpha"),a._flip=function(b,c,d,e){for(var f=b._images,g=a._workingCanvas,h=a._workingContext,i=f.length/c,j=0;i>j;j++){var k=f[j];k.__tmp=j,h.setTransform(1,0,0,1,0,0),h.clearRect(0,0,g.width+1,g.height+1),g.width=k.width,g.height=k.height,h.setTransform(d?-1:1,0,0,e?-1:1,d?k.width:0,e?k.height:0),h.drawImage(k,0,0);var l=document.createElement("img");l.src=g.toDataURL("image/png"),l.width=k.width||k.naturalWidth,l.height=k.height||k.naturalHeight, +f.push(l)}var m=b._frames,n=m.length/c;for(j=0;n>j;j++){k=m[j];var o=k.rect.clone();l=f[k.image.__tmp+i*c];var p={image:l,rect:o,regX:k.regX,regY:k.regY};d&&(o.x=(l.width||l.naturalWidth)-o.x-o.width,p.regX=o.width-k.regX),e&&(o.y=(l.height||l.naturalHeight)-o.y-o.height,p.regY=o.height-k.regY),m.push(p)}var q="_"+(d?"h":"")+(e?"v":""),r=b._animations,s=b._data,t=r.length/c;for(j=0;t>j;j++){var u=r[j];k=s[u];var v={name:u+q,speed:k.speed,next:k.next,frames:[]};k.next&&(v.next+=q),m=k.frames;for(var w=0,x=m.length;x>w;w++)v.frames.push(m[w]+n*c);s[v.name]=v,r.push(v.name)}},createjs.SpriteSheetUtils=a}(),this.createjs=this.createjs||{},function(){"use strict";function a(a){this.EventDispatcher_constructor(),this.maxWidth=2048,this.maxHeight=2048,this.spriteSheet=null,this.scale=1,this.padding=1,this.timeSlice=.3,this.progress=-1,this.framerate=a||0,this._frames=[],this._animations={},this._data=null,this._nextFrameIndex=0,this._index=0,this._timerID=null,this._scale=1}var b=createjs.extend(a,createjs.EventDispatcher);a.ERR_DIMENSIONS="frame dimensions exceed max spritesheet dimensions",a.ERR_RUNNING="a build is already running",b.addFrame=function(b,c,d,e,f){if(this._data)throw a.ERR_RUNNING;var g=c||b.bounds||b.nominalBounds;return!g&&b.getBounds&&(g=b.getBounds()),g?(d=d||1,this._frames.push({source:b,sourceRect:g,scale:d,funct:e,data:f,index:this._frames.length,height:g.height*d})-1):null},b.addAnimation=function(b,c,d,e){if(this._data)throw a.ERR_RUNNING;this._animations[b]={frames:c,next:d,speed:e}},b.addMovieClip=function(b,c,d,e,f,g){if(this._data)throw a.ERR_RUNNING;var h=b.frameBounds,i=c||b.bounds||b.nominalBounds;if(!i&&b.getBounds&&(i=b.getBounds()),i||h){var j,k,l=this._frames.length,m=b.timeline.duration;for(j=0;m>j;j++){var n=h&&h[j]?h[j]:i;this.addFrame(b,n,d,this._setupMovieClipFrame,{i:j,f:e,d:f})}var o=b.timeline._labels,p=[];for(var q in o)p.push({index:o[q],label:q});if(p.length)for(p.sort(function(a,b){return a.index-b.index}),j=0,k=p.length;k>j;j++){for(var r=p[j].label,s=l+p[j].index,t=l+(j==k-1?m:p[j+1].index),u=[],v=s;t>v;v++)u.push(v);(!g||(r=g(r,b,s,t)))&&this.addAnimation(r,u,!0)}}},b.build=function(){if(this._data)throw a.ERR_RUNNING;for(this._startBuild();this._drawNext(););return this._endBuild(),this.spriteSheet},b.buildAsync=function(b){if(this._data)throw a.ERR_RUNNING;this.timeSlice=b,this._startBuild();var c=this;this._timerID=setTimeout(function(){c._run()},50-50*Math.max(.01,Math.min(.99,this.timeSlice||.3)))},b.stopAsync=function(){clearTimeout(this._timerID),this._data=null},b.clone=function(){throw"SpriteSheetBuilder cannot be cloned."},b.toString=function(){return"[SpriteSheetBuilder]"},b._startBuild=function(){var b=this.padding||0;this.progress=0,this.spriteSheet=null,this._index=0,this._scale=this.scale;var c=[];this._data={images:[],frames:c,framerate:this.framerate,animations:this._animations};var d=this._frames.slice();if(d.sort(function(a,b){return a.height<=b.height?-1:1}),d[d.length-1].height+2*b>this.maxHeight)throw a.ERR_DIMENSIONS;for(var e=0,f=0,g=0;d.length;){var h=this._fillRow(d,e,g,c,b);if(h.w>f&&(f=h.w),e+=h.h,!h.h||!d.length){var i=createjs.createCanvas?createjs.createCanvas():document.createElement("canvas");i.width=this._getSize(f,this.maxWidth),i.height=this._getSize(e,this.maxHeight),this._data.images[g]=i,h.h||(f=e=0,g++)}}},b._setupMovieClipFrame=function(a,b){var c=a.actionsEnabled;a.actionsEnabled=!1,a.gotoAndStop(b.i),a.actionsEnabled=c,b.f&&b.f(a,b.d,b.i)},b._getSize=function(a,b){for(var c=4;Math.pow(2,++c)=0;l--){var m=b[l],n=this._scale*m.scale,o=m.sourceRect,p=m.source,q=Math.floor(n*o.x-f),r=Math.floor(n*o.y-f),s=Math.ceil(n*o.height+2*f),t=Math.ceil(n*o.width+2*f);if(t>g)throw a.ERR_DIMENSIONS;s>i||j+t>g||(m.img=d,m.rect=new createjs.Rectangle(j,c,t,s),k=k||s,b.splice(l,1),e[m.index]=[j,c,t,s,d,Math.round(-q+n*p.regX-f),Math.round(-r+n*p.regY-f)],j+=t)}return{w:j,h:k}},b._endBuild=function(){this.spriteSheet=new createjs.SpriteSheet(this._data),this._data=null,this.progress=1,this.dispatchEvent("complete")},b._run=function(){for(var a=50*Math.max(.01,Math.min(.99,this.timeSlice||.3)),b=(new Date).getTime()+a,c=!1;b>(new Date).getTime();)if(!this._drawNext()){c=!0;break}if(c)this._endBuild();else{var d=this;this._timerID=setTimeout(function(){d._run()},50-a)}var e=this.progress=this._index/this._frames.length;if(this.hasEventListener("progress")){var f=new createjs.Event("progress");f.progress=e,this.dispatchEvent(f)}},b._drawNext=function(){var a=this._frames[this._index],b=a.scale*this._scale,c=a.rect,d=a.sourceRect,e=this._data.images[a.img],f=e.getContext("2d");return a.funct&&a.funct(a.source,a.data),f.save(),f.beginPath(),f.rect(c.x,c.y,c.width,c.height),f.clip(),f.translate(Math.ceil(c.x-d.x*b),Math.ceil(c.y-d.y*b)),f.scale(b,b),a.source.draw(f),f.restore(),++this._index =!!d)return b;for(var e=0;d>e;e++){var f=c[e];if(f&&f.getBounds){var g=f.getBounds();g&&(0==e?b.setValues(g.x,g.y,g.width,g.height):b.extend(g.x,g.y,g.width,g.height))}}return b},b.toString=function(){return"[BitmapCache]"},b.define=function(a,b,c,d,e,f,g){if(!a)throw"No symbol to cache";this._options=g,this.target=a,this.width=d>=1?d:1,this.height=e>=1?e:1,this.x=b||0,this.y=c||0,this.scale=f||1,this.update()},b.update=function(b){if(!this.target)throw"define() must be called before update()";var c=a.getFilterBounds(this.target),d=this.target.cacheCanvas;this._drawWidth=Math.ceil(this.width*this.scale)+c.width,this._drawHeight=Math.ceil(this.height*this.scale)+c.height,d&&this._drawWidth==d.width&&this._drawHeight==d.height||this._updateSurface(),this._filterOffX=c.x,this._filterOffY=c.y,this.offX=this.x*this.scale+this._filterOffX,this.offY=this.y*this.scale+this._filterOffY,this._drawToCache(b),this.cacheID=this.cacheID?this.cacheID+1:1},b.release=function(){if(this._webGLCache)this._webGLCache.isCacheControlled||(this.__lastRT&&(this.__lastRT=void 0),this.__rtA&&this._webGLCache._killTextureObject(this.__rtA),this.__rtB&&this._webGLCache._killTextureObject(this.__rtB),this.target&&this.target.cacheCanvas&&this._webGLCache._killTextureObject(this.target.cacheCanvas)),this._webGLCache=!1;else{var a=this.target.stage;a instanceof createjs.StageGL&&a.releaseTexture(this.target.cacheCanvas)}this.target=this.target.cacheCanvas=null,this.cacheID=this._cacheDataURLID=this._cacheDataURL=void 0,this.width=this.height=this.x=this.y=this.offX=this.offY=0,this.scale=1},b.getCacheDataURL=function(){var a=this.target&&this.target.cacheCanvas;return a?(this.cacheID!=this._cacheDataURLID&&(this._cacheDataURLID=this.cacheID,this._cacheDataURL=a.toDataURL?a.toDataURL():null),this._cacheDataURL):null},b.draw=function(a){return this.target?(a.drawImage(this.target.cacheCanvas,this.x+this._filterOffX/this.scale,this.y+this._filterOffY/this.scale,this._drawWidth/this.scale,this._drawHeight/this.scale),!0):!1},b._updateSurface=function(){if(!this._options||!this._options.useGL){var a=this.target.cacheCanvas;return a||(a=this.target.cacheCanvas=createjs.createCanvas?createjs.createCanvas():document.createElement("canvas")),a.width=this._drawWidth,void(a.height=this._drawHeight)}if(!this._webGLCache)if("stage"===this._options.useGL){if(!this.target.stage||!this.target.stage.isWebGL){var b="Cannot use 'stage' for cache because the object's parent stage is ";throw b+=this.target.stage?"non WebGL.":"not set, please addChild to the correct stage."}this.target.cacheCanvas=!0,this._webGLCache=this.target.stage}else if("new"===this._options.useGL)this.target.cacheCanvas=document.createElement("canvas"),this._webGLCache=new createjs.StageGL(this.target.cacheCanvas,{antialias:!0,transparent:!0,autoPurge:-1}),this._webGLCache.isCacheControlled=!0;else{if(!(this._options.useGL instanceof createjs.StageGL))throw"Invalid option provided to useGL, expected ['stage', 'new', StageGL, undefined], got "+this._options.useGL;this.target.cacheCanvas=!0,this._webGLCache=this._options.useGL,this._webGLCache.isCacheControlled=!0}var a=this.target.cacheCanvas,c=this._webGLCache;c.isCacheControlled&&(a.width=this._drawWidth,a.height=this._drawHeight,c.updateViewport(this._drawWidth,this._drawHeight)),this.target.filters?(c.getTargetRenderTexture(this.target,this._drawWidth,this._drawHeight),c.getTargetRenderTexture(this.target,this._drawWidth,this._drawHeight)):c.isCacheControlled||c.getTargetRenderTexture(this.target,this._drawWidth,this._drawHeight)},b._drawToCache=function(a){var b=this.target.cacheCanvas,c=this.target,d=this._webGLCache;if(d)d.cacheDraw(c,c.filters,this),b=this.target.cacheCanvas,b.width=this._drawWidth,b.height=this._drawHeight;else{var e=b.getContext("2d");a||e.clearRect(0,0,this._drawWidth+1,this._drawHeight+1),e.save(),e.globalCompositeOperation=a,e.setTransform(this.scale,0,0,this.scale,-this._filterOffX,-this._filterOffY),e.translate(-this.x,-this.y),c.draw(e,!0),e.restore(),c.filters&&c.filters.length&&this._applyFilters(e)}b._invalid=!0},b._applyFilters=function(a){var b,c=this.target.filters,d=this._drawWidth,e=this._drawHeight,f=0,g=c[f];do g.usesContext?(b&&(a.putImageData(b,0,0),b=null),g.applyFilter(a,0,0,d,e)):(b||(b=a.getImageData(0,0,d,e)),g._applyFilter(b)),g=null!==g._multiPass?g._multiPass:c[++f];while(g);b&&a.putImageData(b,0,0)},createjs.BitmapCache=a}(),this.createjs=this.createjs||{},function(){"use strict";function a(a,b,c){this.Filter_constructor(),this._blurX=a,this._blurXTable=[],this._lastBlurX=null,this._blurY=b,this._blurYTable=[],this._lastBlurY=null,this._quality,this._lastQuality=null,this.FRAG_SHADER_TEMPLATE="uniform float xWeight[{{blurX}}];uniform float yWeight[{{blurY}}];uniform vec2 textureOffset;void main(void) {vec4 color = vec4(0.0);float xAdj = ({{blurX}}.0-1.0)/2.0;float yAdj = ({{blurY}}.0-1.0)/2.0;vec2 sampleOffset;for(int i=0; i<{{blurX}}; i++) {for(int j=0; j<{{blurY}}; j++) {sampleOffset = vRenderCoord + (textureOffset * vec2(float(i)-xAdj, float(j)-yAdj));color += texture2D(uSampler, sampleOffset) * (xWeight[i] * yWeight[j]);}}gl_FragColor = color.rgba;}",(isNaN(c)||1>c)&&(c=1),this.setQuality(0|c)}var b=createjs.extend(a,createjs.Filter);b.getBlurX=function(){return this._blurX},b.getBlurY=function(){return this._blurY},b.setBlurX=function(a){(isNaN(a)||0>a)&&(a=0),this._blurX=a},b.setBlurY=function(a){(isNaN(a)||0>a)&&(a=0),this._blurY=a},b.getQuality=function(){return this._quality},b.setQuality=function(a){(isNaN(a)||0>a)&&(a=0),this._quality=0|a},b._getShader=function(){var a=this._lastBlurX!==this._blurX,b=this._lastBlurY!==this._blurY,c=this._lastQuality!==this._quality;return a||b||c?((a||c)&&(this._blurXTable=this._getTable(this._blurX*this._quality)),(b||c)&&(this._blurYTable=this._getTable(this._blurY*this._quality)),this._updateShader(),this._lastBlurX=this._blurX,this._lastBlurY=this._blurY,void(this._lastQuality=this._quality)):this._compiledShader},b._setShader=function(){this._compiledShader};try{Object.defineProperties(b,{blurX:{get:b.getBlurX,set:b.setBlurX},blurY:{get:b.getBlurY,set:b.setBlurY},quality:{get:b.getQuality,set:b.setQuality},_builtShader:{get:b._getShader,set:b._setShader}})}catch(c){console.log(c)}b._getTable=function(a){var b=4.2;if(1>=a)return[1];var c=[],d=Math.ceil(2*a);d+=d%2?0:1;for(var e=d/2|0,f=-e;e>=f;f++){var g=f/e*b;c.push(1/Math.sqrt(2*Math.PI)*Math.pow(Math.E,-(Math.pow(g,2)/4)))}var h=c.reduce(function(a,b){return a+b});return c.map(function(a,b,c){return a/h})},b._updateShader=function(){if(void 0!==this._blurX&&void 0!==this._blurY){var a=this.FRAG_SHADER_TEMPLATE;a=a.replace(/\{\{blurX\}\}/g,this._blurXTable.length.toFixed(0)),a=a.replace(/\{\{blurY\}\}/g,this._blurYTable.length.toFixed(0)),this.FRAG_SHADER_BODY=a}},b.shaderParamSetup=function(a,b,c){a.uniform1fv(a.getUniformLocation(c,"xWeight"),this._blurXTable),a.uniform1fv(a.getUniformLocation(c,"yWeight"),this._blurYTable),a.uniform2f(a.getUniformLocation(c,"textureOffset"),2/(b._viewportWidth*this._quality),2/(b._viewportHeight*this._quality))},a.MUL_TABLE=[1,171,205,293,57,373,79,137,241,27,391,357,41,19,283,265,497,469,443,421,25,191,365,349,335,161,155,149,9,278,269,261,505,245,475,231,449,437,213,415,405,395,193,377,369,361,353,345,169,331,325,319,313,307,301,37,145,285,281,69,271,267,263,259,509,501,493,243,479,118,465,459,113,446,55,435,429,423,209,413,51,403,199,393,97,3,379,375,371,367,363,359,355,351,347,43,85,337,333,165,327,323,5,317,157,311,77,305,303,75,297,294,73,289,287,71,141,279,277,275,68,135,67,133,33,262,260,129,511,507,503,499,495,491,61,121,481,477,237,235,467,232,115,457,227,451,7,445,221,439,218,433,215,427,425,211,419,417,207,411,409,203,202,401,399,396,197,49,389,387,385,383,95,189,47,187,93,185,23,183,91,181,45,179,89,177,11,175,87,173,345,343,341,339,337,21,167,83,331,329,327,163,81,323,321,319,159,79,315,313,39,155,309,307,153,305,303,151,75,299,149,37,295,147,73,291,145,289,287,143,285,71,141,281,35,279,139,69,275,137,273,17,271,135,269,267,133,265,33,263,131,261,130,259,129,257,1],a.SHG_TABLE=[0,9,10,11,9,12,10,11,12,9,13,13,10,9,13,13,14,14,14,14,10,13,14,14,14,13,13,13,9,14,14,14,15,14,15,14,15,15,14,15,15,15,14,15,15,15,15,15,14,15,15,15,15,15,15,12,14,15,15,13,15,15,15,15,16,16,16,15,16,14,16,16,14,16,13,16,16,16,15,16,13,16,15,16,14,9,16,16,16,16,16,16,16,16,16,13,14,16,16,15,16,16,10,16,15,16,14,16,16,14,16,16,14,16,16,14,15,16,16,16,14,15,14,15,13,16,16,15,17,17,17,17,17,17,14,15,17,17,16,16,17,16,15,17,16,17,11,17,16,17,16,17,16,17,17,16,17,17,16,17,17,16,16,17,17,17,16,14,17,17,17,17,15,16,14,16,15,16,13,16,15,16,14,16,15,16,12,16,15,16,17,17,17,17,17,13,16,15,17,17,17,16,15,17,17,17,16,15,17,17,14,16,17,17,16,17,17,16,15,17,16,14,17,16,15,17,16,17,17,16,17,15,16,17,14,17,16,15,17,16,17,13,17,16,17,17,16,17,14,17,16,17,16,17,16,17,9],b.getBounds=function(a){var b=0|this.blurX,c=0|this.blurY;if(0>=b&&0>=c)return a;var d=Math.pow(this.quality,.2);return(a||new createjs.Rectangle).pad(c*d+1,b*d+1,c*d+1,b*d+1)},b.clone=function(){return new a(this.blurX,this.blurY,this.quality)},b.toString=function(){return"[BlurFilter]"},b._applyFilter=function(b){var c=this._blurX>>1;if(isNaN(c)||0>c)return!1;var d=this._blurY>>1;if(isNaN(d)||0>d)return!1;if(0==c&&0==d)return!1;var e=this.quality;(isNaN(e)||1>e)&&(e=1),e|=0,e>3&&(e=3),1>e&&(e=1);var f=b.data,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,u=0,v=c+c+1|0,w=d+d+1|0,x=0|b.width,y=0|b.height,z=x-1|0,A=y-1|0,B=c+1|0,C=d+1|0,D={r:0,b:0,g:0,a:0},E=D;for(i=1;v>i;i++)E=E.n={r:0,b:0,g:0,a:0};E.n=D;var F={r:0,b:0,g:0,a:0},G=F;for(i=1;w>i;i++)G=G.n={r:0,b:0,g:0,a:0};G.n=F;for(var H=null,I=0|a.MUL_TABLE[c],J=0|a.SHG_TABLE[c],K=0|a.MUL_TABLE[d],L=0|a.SHG_TABLE[d];e-->0;){m=l=0;var M=I,N=J;for(h=y;--h>-1;){for(n=B*(r=f[0|l]),o=B*(s=f[l+1|0]),p=B*(t=f[l+2|0]),q=B*(u=f[l+3|0]),E=D,i=B;--i>-1;)E.r=r,E.g=s,E.b=t,E.a=u,E=E.n;for(i=1;B>i;i++)j=l+((i>z?z:i)<<2)|0,n+=E.r=f[j],o+=E.g=f[j+1],p+=E.b=f[j+2],q+=E.a=f[j+3],E=E.n;for(H=D,g=0;x>g;g++)f[l++]=n*M>>>N,f[l++]=o*M>>>N,f[l++]=p*M>>>N,f[l++]=q*M>>>N,j=m+((j=g+c+1) g;g++){for(l=g<<2|0,n=C*(r=f[l])|0,o=C*(s=f[l+1|0])|0,p=C*(t=f[l+2|0])|0,q=C*(u=f[l+3|0])|0,G=F,i=0;C>i;i++)G.r=r,G.g=s,G.b=t,G.a=u,G=G.n;for(k=x,i=1;d>=i;i++)l=k+g<<2,n+=G.r=f[l],o+=G.g=f[l+1],p+=G.b=f[l+2],q+=G.a=f[l+3],G=G.n,A>i&&(k+=x);if(l=g,H=F,e>0)for(h=0;y>h;h++)j=l<<2,f[j+3]=u=q*M>>>N,u>0?(f[j]=n*M>>>N,f[j+1]=o*M>>>N,f[j+2]=p*M>>>N):f[j]=f[j+1]=f[j+2]=0,j=g+((j=h+C)h;h++)j=l<<2,f[j+3]=u=q*M>>>N,u>0?(u=255/u,f[j]=(n*M>>>N)*u,f[j+1]=(o*M>>>N)*u,f[j+2]=(p*M>>>N)*u):f[j]=f[j+1]=f[j+2]=0,j=g+((j=h+C)d;d+=4)b[d+3]=c[d]||0;return!0},b._prepAlphaMap=function(){if(!this.alphaMap)return!1;if(this.alphaMap==this._alphaMap&&this._mapData)return!0;this._mapData=null;var a,b=this._alphaMap=this.alphaMap,c=b;b instanceof HTMLCanvasElement?a=c.getContext("2d"):(c=createjs.createCanvas?createjs.createCanvas():document.createElement("canvas"),c.width=b.width,c.height=b.height,a=c.getContext("2d"),a.drawImage(b,0,0));try{var d=a.getImageData(0,0,b.width,b.height)}catch(e){return!1}return this._mapData=d.data,!0},createjs.AlphaMapFilter=createjs.promote(a,"Filter")}(),this.createjs=this.createjs||{},function(){"use strict";function a(a){this.Filter_constructor(),this.mask=a,this.usesContext=!0,this.FRAG_SHADER_BODY="uniform sampler2D uAlphaSampler;void main(void) {vec4 color = texture2D(uSampler, vRenderCoord);vec4 alphaMap = texture2D(uAlphaSampler, vTextureCoord);gl_FragColor = vec4(color.rgb, color.a * alphaMap.a);}"}var b=createjs.extend(a,createjs.Filter);b.shaderParamSetup=function(a,b,c){this._mapTexture||(this._mapTexture=a.createTexture()),a.activeTexture(a.TEXTURE1),a.bindTexture(a.TEXTURE_2D,this._mapTexture),b.setTextureParams(a),a.texImage2D(a.TEXTURE_2D,0,a.RGBA,a.RGBA,a.UNSIGNED_BYTE,this.mask),a.uniform1i(a.getUniformLocation(c,"uAlphaSampler"),1)},b.applyFilter=function(a,b,c,d,e,f,g,h){return this.mask?(f=f||a,null==g&&(g=b),null==h&&(h=c),f.save(),a!=f?!1:(f.globalCompositeOperation="destination-in",f.drawImage(this.mask,g,h),f.restore(),!0)):!0},b.clone=function(){return new a(this.mask)},b.toString=function(){return"[AlphaMaskFilter]"},createjs.AlphaMaskFilter=createjs.promote(a,"Filter")}(),this.createjs=this.createjs||{},function(){"use strict";function a(a,b,c,d,e,f,g,h){this.Filter_constructor(),this.redMultiplier=null!=a?a:1,this.greenMultiplier=null!=b?b:1,this.blueMultiplier=null!=c?c:1,this.alphaMultiplier=null!=d?d:1,this.redOffset=e||0,this.greenOffset=f||0,this.blueOffset=g||0,this.alphaOffset=h||0,this.FRAG_SHADER_BODY="uniform vec4 uColorMultiplier;uniform vec4 uColorOffset;void main(void) {vec4 color = texture2D(uSampler, vRenderCoord);gl_FragColor = (color * uColorMultiplier) + uColorOffset;}"}var b=createjs.extend(a,createjs.Filter);b.shaderParamSetup=function(a,b,c){a.uniform4f(a.getUniformLocation(c,"uColorMultiplier"),this.redMultiplier,this.greenMultiplier,this.blueMultiplier,this.alphaMultiplier),a.uniform4f(a.getUniformLocation(c,"uColorOffset"),this.redOffset/255,this.greenOffset/255,this.blueOffset/255,this.alphaOffset/255)},b.toString=function(){return"[ColorFilter]"},b.clone=function(){return new a(this.redMultiplier,this.greenMultiplier,this.blueMultiplier,this.alphaMultiplier,this.redOffset,this.greenOffset,this.blueOffset,this.alphaOffset)},b._applyFilter=function(a){for(var b=a.data,c=b.length,d=0;c>d;d+=4)b[d]=b[d]*this.redMultiplier+this.redOffset,b[d+1]=b[d+1]*this.greenMultiplier+this.greenOffset,b[d+2]=b[d+2]*this.blueMultiplier+this.blueOffset,b[d+3]=b[d+3]*this.alphaMultiplier+this.alphaOffset;return!0},createjs.ColorFilter=createjs.promote(a,"Filter")}(),this.createjs=this.createjs||{},function(){"use strict";function a(a,b,c,d){this.setColor(a,b,c,d)}var b=a.prototype;a.DELTA_INDEX=[0,.01,.02,.04,.05,.06,.07,.08,.1,.11,.12,.14,.15,.16,.17,.18,.2,.21,.22,.24,.25,.27,.28,.3,.32,.34,.36,.38,.4,.42,.44,.46,.48,.5,.53,.56,.59,.62,.65,.68,.71,.74,.77,.8,.83,.86,.89,.92,.95,.98,1,1.06,1.12,1.18,1.24,1.3,1.36,1.42,1.48,1.54,1.6,1.66,1.72,1.78,1.84,1.9,1.96,2,2.12,2.25,2.37,2.5,2.62,2.75,2.87,3,3.2,3.4,3.6,3.8,4,4.3,4.7,4.9,5,5.5,6,6.5,6.8,7,7.3,7.5,7.8,8,8.4,8.7,9,9.4,9.6,9.8,10],a.IDENTITY_MATRIX=[1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1],a.LENGTH=a.IDENTITY_MATRIX.length,b.setColor=function(a,b,c,d){return this.reset().adjustColor(a,b,c,d)},b.reset=function(){return this.copy(a.IDENTITY_MATRIX)},b.adjustColor=function(a,b,c,d){return this.adjustHue(d),this.adjustContrast(b),this.adjustBrightness(a),this.adjustSaturation(c)},b.adjustBrightness=function(a){return 0==a||isNaN(a)?this:(a=this._cleanValue(a,255),this._multiplyMatrix([1,0,0,0,a,0,1,0,0,a,0,0,1,0,a,0,0,0,1,0,0,0,0,0,1]),this)},b.adjustContrast=function(b){if(0==b||isNaN(b))return this;b=this._cleanValue(b,100);var c;return 0>b?c=127+b/100*127:(c=b%1,c=0==c?a.DELTA_INDEX[b]:a.DELTA_INDEX[b<<0]*(1-c)+a.DELTA_INDEX[(b<<0)+1]*c,c=127*c+127),this._multiplyMatrix([c/127,0,0,0,.5*(127-c),0,c/127,0,0,.5*(127-c),0,0,c/127,0,.5*(127-c),0,0,0,1,0,0,0,0,0,1]),this},b.adjustSaturation=function(a){if(0==a||isNaN(a))return this;a=this._cleanValue(a,100);var b=1+(a>0?3*a/100:a/100),c=.3086,d=.6094,e=.082;return this._multiplyMatrix([c*(1-b)+b,d*(1-b),e*(1-b),0,0,c*(1-b),d*(1-b)+b,e*(1-b),0,0,c*(1-b),d*(1-b),e*(1-b)+b,0,0,0,0,0,1,0,0,0,0,0,1]),this},b.adjustHue=function(a){if(0==a||isNaN(a))return this;a=this._cleanValue(a,180)/180*Math.PI;var b=Math.cos(a),c=Math.sin(a),d=.213,e=.715,f=.072;return this._multiplyMatrix([d+b*(1-d)+c*-d,e+b*-e+c*-e,f+b*-f+c*(1-f),0,0,d+b*-d+.143*c,e+b*(1-e)+.14*c,f+b*-f+c*-.283,0,0,d+b*-d+c*-(1-d),e+b*-e+c*e,f+b*(1-f)+c*f,0,0,0,0,0,1,0,0,0,0,0,1]),this},b.concat=function(b){return b=this._fixMatrix(b),b.length!=a.LENGTH?this:(this._multiplyMatrix(b),this)},b.clone=function(){return(new a).copy(this)},b.toArray=function(){for(var b=[],c=0,d=a.LENGTH;d>c;c++)b[c]=this[c];return b},b.copy=function(b){for(var c=a.LENGTH,d=0;c>d;d++)this[d]=b[d];return this},b.toString=function(){return"[ColorMatrix]"},b._multiplyMatrix=function(a){var b,c,d,e=[];for(b=0;5>b;b++){for(c=0;5>c;c++)e[c]=this[c+5*b];for(c=0;5>c;c++){var f=0;for(d=0;5>d;d++)f+=a[c+5*d]*e[d];this[c+5*b]=f}}},b._cleanValue=function(a,b){return Math.min(b,Math.max(-b,a))},b._fixMatrix=function(b){return b instanceof a&&(b=b.toArray()),b.length a.LENGTH&&(b=b.slice(0,a.LENGTH)),b},createjs.ColorMatrix=a}(),this.createjs=this.createjs||{},function(){"use strict";function a(a){this.Filter_constructor(),this.matrix=a,this.FRAG_SHADER_BODY="uniform mat4 uColorMatrix;uniform vec4 uColorMatrixOffset;void main(void) {vec4 color = texture2D(uSampler, vRenderCoord);mat4 m = uColorMatrix;vec4 newColor = vec4(0,0,0,0);newColor.r = color.r*m[0][0] + color.g*m[0][1] + color.b*m[0][2] + color.a*m[0][3];newColor.g = color.r*m[1][0] + color.g*m[1][1] + color.b*m[1][2] + color.a*m[1][3];newColor.b = color.r*m[2][0] + color.g*m[2][1] + color.b*m[2][2] + color.a*m[2][3];newColor.a = color.r*m[3][0] + color.g*m[3][1] + color.b*m[3][2] + color.a*m[3][3];gl_FragColor = newColor + uColorMatrixOffset;}"}var b=createjs.extend(a,createjs.Filter);b.shaderParamSetup=function(a,b,c){var d=this.matrix,e=new Float32Array([d[0],d[1],d[2],d[3],d[5],d[6],d[7],d[8],d[10],d[11],d[12],d[13],d[15],d[16],d[17],d[18]]);a.uniformMatrix4fv(a.getUniformLocation(c,"uColorMatrix"),!1,e),a.uniform4f(a.getUniformLocation(c,"uColorMatrixOffset"),d[4]/255,d[9]/255,d[14]/255,d[19]/255)},b.toString=function(){return"[ColorMatrixFilter]"},b.clone=function(){return new a(this.matrix)},b._applyFilter=function(a){for(var b,c,d,e,f=a.data,g=f.length,h=this.matrix,i=h[0],j=h[1],k=h[2],l=h[3],m=h[4],n=h[5],o=h[6],p=h[7],q=h[8],r=h[9],s=h[10],t=h[11],u=h[12],v=h[13],w=h[14],x=h[15],y=h[16],z=h[17],A=h[18],B=h[19],C=0;g>C;C+=4)b=f[C],c=f[C+1],d=f[C+2],e=f[C+3],f[C]=b*i+c*j+d*k+e*l+m,f[C+1]=b*n+c*o+d*p+e*q+r,f[C+2]=b*s+c*t+d*u+e*v+w,f[C+3]=b*x+c*y+d*z+e*A+B;return!0},createjs.ColorMatrixFilter=createjs.promote(a,"Filter")}(),this.createjs=this.createjs||{},function(){"use strict";function a(){throw"Touch cannot be instantiated"}a.isSupported=function(){return!!("ontouchstart"in window||window.navigator.msPointerEnabled&&window.navigator.msMaxTouchPoints>0||window.navigator.pointerEnabled&&window.navigator.maxTouchPoints>0)},a.enable=function(b,c,d){return b&&b.canvas&&a.isSupported()?b.__touch?!0:(b.__touch={pointers:{},multitouch:!c,preventDefault:!d,count:0},"ontouchstart"in window?a._IOS_enable(b):(window.navigator.msPointerEnabled||window.navigator.pointerEnabled)&&a._IE_enable(b),!0):!1},a.disable=function(b){b&&("ontouchstart"in window?a._IOS_disable(b):(window.navigator.msPointerEnabled||window.navigator.pointerEnabled)&&a._IE_disable(b),delete b.__touch)},a._IOS_enable=function(b){var c=b.canvas,d=b.__touch.f=function(c){a._IOS_handleEvent(b,c)};c.addEventListener("touchstart",d,!1),c.addEventListener("touchmove",d,!1),c.addEventListener("touchend",d,!1),c.addEventListener("touchcancel",d,!1)},a._IOS_disable=function(a){var b=a.canvas;if(b){var c=a.__touch.f;b.removeEventListener("touchstart",c,!1),b.removeEventListener("touchmove",c,!1),b.removeEventListener("touchend",c,!1),b.removeEventListener("touchcancel",c,!1)}},a._IOS_handleEvent=function(a,b){if(a){a.__touch.preventDefault&&b.preventDefault&&b.preventDefault();for(var c=b.changedTouches,d=b.type,e=0,f=c.length;f>e;e++){var g=c[e],h=g.identifier;g.target==a.canvas&&("touchstart"==d?this._handleStart(a,h,b,g.pageX,g.pageY):"touchmove"==d?this._handleMove(a,h,b,g.pageX,g.pageY):("touchend"==d||"touchcancel"==d)&&this._handleEnd(a,h,b))}}},a._IE_enable=function(b){var c=b.canvas,d=b.__touch.f=function(c){a._IE_handleEvent(b,c)};void 0===window.navigator.pointerEnabled?(c.addEventListener("MSPointerDown",d,!1),window.addEventListener("MSPointerMove",d,!1),window.addEventListener("MSPointerUp",d,!1),window.addEventListener("MSPointerCancel",d,!1),b.__touch.preventDefault&&(c.style.msTouchAction="none")):(c.addEventListener("pointerdown",d,!1),window.addEventListener("pointermove",d,!1),window.addEventListener("pointerup",d,!1),window.addEventListener("pointercancel",d,!1),b.__touch.preventDefault&&(c.style.touchAction="none")),b.__touch.activeIDs={}},a._IE_disable=function(a){var b=a.__touch.f;void 0===window.navigator.pointerEnabled?(window.removeEventListener("MSPointerMove",b,!1),window.removeEventListener("MSPointerUp",b,!1),window.removeEventListener("MSPointerCancel",b,!1),a.canvas&&a.canvas.removeEventListener("MSPointerDown",b,!1)):(window.removeEventListener("pointermove",b,!1),window.removeEventListener("pointerup",b,!1),window.removeEventListener("pointercancel",b,!1),a.canvas&&a.canvas.removeEventListener("pointerdown",b,!1))},a._IE_handleEvent=function(a,b){if(a){a.__touch.preventDefault&&b.preventDefault&&b.preventDefault();var c=b.type,d=b.pointerId,e=a.__touch.activeIDs;if("MSPointerDown"==c||"pointerdown"==c){if(b.srcElement!=a.canvas)return;e[d]=!0,this._handleStart(a,d,b,b.pageX,b.pageY)}else e[d]&&("MSPointerMove"==c||"pointermove"==c?this._handleMove(a,d,b,b.pageX,b.pageY):("MSPointerUp"==c||"MSPointerCancel"==c||"pointerup"==c||"pointercancel"==c)&&(delete e[d],this._handleEnd(a,d,b)))}},a._handleStart=function(a,b,c,d,e){var f=a.__touch;if(f.multitouch||!f.count){var g=f.pointers;g[b]||(g[b]=!0,f.count++,a._handlePointerDown(b,c,d,e))}},a._handleMove=function(a,b,c,d,e){a.__touch.pointers[b]&&a._handlePointerMove(b,c,d,e)},a._handleEnd=function(a,b,c){var d=a.__touch,e=d.pointers;e[b]&&(d.count--,a._handlePointerUp(b,c,!0),delete e[b])},createjs.Touch=a}(),this.createjs=this.createjs||{},function(){"use strict";var a=createjs.EaselJS=createjs.EaselJS||{};a.version="1.0.0",a.buildDate="Thu, 12 Oct 2017 16:34:10 GMT"}(),this.createjs=this.createjs||{},function(){"use strict";var a=createjs.PreloadJS=createjs.PreloadJS||{};a.version="1.0.0",a.buildDate="Thu, 12 Oct 2017 16:34:05 GMT"}(),this.createjs=this.createjs||{},function(){"use strict";createjs.proxy=function(a,b){var c=Array.prototype.slice.call(arguments,2);return function(){return a.apply(b,Array.prototype.slice.call(arguments,0).concat(c))}}}(),this.createjs=this.createjs||{},function(){"use strict";function a(a,b,c){this.Event_constructor("error"),this.title=a,this.message=b,this.data=c}var b=createjs.extend(a,createjs.Event);b.clone=function(){return new createjs.ErrorEvent(this.title,this.message,this.data)},createjs.ErrorEvent=createjs.promote(a,"Event")}(),this.createjs=this.createjs||{},function(a){"use strict";function b(a,b){this.Event_constructor("progress"),this.loaded=a,this.total=null==b?1:b,this.progress=0==b?0:this.loaded/this.total; +}var c=createjs.extend(b,createjs.Event);c.clone=function(){return new createjs.ProgressEvent(this.loaded,this.total)},createjs.ProgressEvent=createjs.promote(b,"Event")}(window),function(){function a(b,d){function f(a){if(f[a]!==q)return f[a];var b;if("bug-string-char-index"==a)b="a"!="a"[0];else if("json"==a)b=f("json-stringify")&&f("json-parse");else{var c,e='{"a":[1,true,false,null,"\\u0000\\b\\n\\f\\r\\t"]}';if("json-stringify"==a){var i=d.stringify,k="function"==typeof i&&t;if(k){(c=function(){return 1}).toJSON=c;try{k="0"===i(0)&&"0"===i(new g)&&'""'==i(new h)&&i(s)===q&&i(q)===q&&i()===q&&"1"===i(c)&&"[1]"==i([c])&&"[null]"==i([q])&&"null"==i(null)&&"[null,null,null]"==i([q,s,null])&&i({a:[c,!0,!1,null,"\x00\b\n\f\r "]})==e&&"1"===i(null,c)&&"[\n 1,\n 2\n]"==i([1,2],null,1)&&'"-271821-04-20T00:00:00.000Z"'==i(new j(-864e13))&&'"+275760-09-13T00:00:00.000Z"'==i(new j(864e13))&&'"-000001-01-01T00:00:00.000Z"'==i(new j(-621987552e5))&&'"1969-12-31T23:59:59.999Z"'==i(new j(-1))}catch(l){k=!1}}b=k}if("json-parse"==a){var m=d.parse;if("function"==typeof m)try{if(0===m("0")&&!m(!1)){c=m(e);var n=5==c.a.length&&1===c.a[0];if(n){try{n=!m('" "')}catch(l){}if(n)try{n=1!==m("01")}catch(l){}if(n)try{n=1!==m("1.")}catch(l){}}}}catch(l){n=!1}b=n}}return f[a]=!!b}b||(b=e.Object()),d||(d=e.Object());var g=b.Number||e.Number,h=b.String||e.String,i=b.Object||e.Object,j=b.Date||e.Date,k=b.SyntaxError||e.SyntaxError,l=b.TypeError||e.TypeError,m=b.Math||e.Math,n=b.JSON||e.JSON;"object"==typeof n&&n&&(d.stringify=n.stringify,d.parse=n.parse);var o,p,q,r=i.prototype,s=r.toString,t=new j(-0xc782b5b800cec);try{t=-109252==t.getUTCFullYear()&&0===t.getUTCMonth()&&1===t.getUTCDate()&&10==t.getUTCHours()&&37==t.getUTCMinutes()&&6==t.getUTCSeconds()&&708==t.getUTCMilliseconds()}catch(u){}if(!f("json")){var v="[object Function]",w="[object Date]",x="[object Number]",y="[object String]",z="[object Array]",A="[object Boolean]",B=f("bug-string-char-index");if(!t)var C=m.floor,D=[0,31,59,90,120,151,181,212,243,273,304,334],E=function(a,b){return D[b]+365*(a-1970)+C((a-1969+(b=+(b>1)))/4)-C((a-1901+b)/100)+C((a-1601+b)/400)};if((o=r.hasOwnProperty)||(o=function(a){var b,c={};return(c.__proto__=null,c.__proto__={toString:1},c).toString!=s?o=function(a){var b=this.__proto__,c=a in(this.__proto__=null,this);return this.__proto__=b,c}:(b=c.constructor,o=function(a){var c=(this.constructor||b).prototype;return a in this&&!(a in c&&this[a]===c[a])}),c=null,o.call(this,a)}),p=function(a,b){var d,e,f,g=0;(d=function(){this.valueOf=0}).prototype.valueOf=0,e=new d;for(f in e)o.call(e,f)&&g++;return d=e=null,g?p=2==g?function(a,b){var c,d={},e=s.call(a)==v;for(c in a)e&&"prototype"==c||o.call(d,c)||!(d[c]=1)||!o.call(a,c)||b(c)}:function(a,b){var c,d,e=s.call(a)==v;for(c in a)e&&"prototype"==c||!o.call(a,c)||(d="constructor"===c)||b(c);(d||o.call(a,c="constructor"))&&b(c)}:(e=["valueOf","toString","toLocaleString","propertyIsEnumerable","isPrototypeOf","hasOwnProperty","constructor"],p=function(a,b){var d,f,g=s.call(a)==v,h=!g&&"function"!=typeof a.constructor&&c[typeof a.hasOwnProperty]&&a.hasOwnProperty||o;for(d in a)g&&"prototype"==d||!h.call(a,d)||b(d);for(f=e.length;d=e[--f];h.call(a,d)&&b(d));}),p(a,b)},!f("json-stringify")){var F={92:"\\\\",34:'\\"',8:"\\b",12:"\\f",10:"\\n",13:"\\r",9:"\\t"},G="000000",H=function(a,b){return(G+(b||0)).slice(-a)},I="\\u00",J=function(a){for(var b='"',c=0,d=a.length,e=!B||d>10,f=e&&(B?a.split(""):a);d>c;c++){var g=a.charCodeAt(c);switch(g){case 8:case 9:case 10:case 12:case 13:case 34:case 92:b+=F[g];break;default:if(32>g){b+=I+H(2,g.toString(16));break}b+=e?f[c]:a.charAt(c)}}return b+'"'},K=function(a,b,c,d,e,f,g){var h,i,j,k,m,n,r,t,u,v,B,D,F,G,I,L;try{h=b[a]}catch(M){}if("object"==typeof h&&h)if(i=s.call(h),i!=w||o.call(h,"toJSON"))"function"==typeof h.toJSON&&(i!=x&&i!=y&&i!=z||o.call(h,"toJSON"))&&(h=h.toJSON(a));else if(h>-1/0&&1/0>h){if(E){for(m=C(h/864e5),j=C(m/365.2425)+1970-1;E(j+1,0)<=m;j++);for(k=C((m-E(j,0))/30.42);E(j,k+1)<=m;k++);m=1+m-E(j,k),n=(h%864e5+864e5)%864e5,r=C(n/36e5)%24,t=C(n/6e4)%60,u=C(n/1e3)%60,v=n%1e3}else j=h.getUTCFullYear(),k=h.getUTCMonth(),m=h.getUTCDate(),r=h.getUTCHours(),t=h.getUTCMinutes(),u=h.getUTCSeconds(),v=h.getUTCMilliseconds();h=(0>=j||j>=1e4?(0>j?"-":"+")+H(6,0>j?-j:j):H(4,j))+"-"+H(2,k+1)+"-"+H(2,m)+"T"+H(2,r)+":"+H(2,t)+":"+H(2,u)+"."+H(3,v)+"Z"}else h=null;if(c&&(h=c.call(b,a,h)),null===h)return"null";if(i=s.call(h),i==A)return""+h;if(i==x)return h>-1/0&&1/0>h?""+h:"null";if(i==y)return J(""+h);if("object"==typeof h){for(G=g.length;G--;)if(g[G]===h)throw l();if(g.push(h),B=[],I=f,f+=e,i==z){for(F=0,G=h.length;G>F;F++)D=K(F,h,c,d,e,f,g),B.push(D===q?"null":D);L=B.length?e?"[\n"+f+B.join(",\n"+f)+"\n"+I+"]":"["+B.join(",")+"]":"[]"}else p(d||h,function(a){var b=K(a,h,c,d,e,f,g);b!==q&&B.push(J(a)+":"+(e?" ":"")+b)}),L=B.length?e?"{\n"+f+B.join(",\n"+f)+"\n"+I+"}":"{"+B.join(",")+"}":"{}";return g.pop(),L}};d.stringify=function(a,b,d){var e,f,g,h;if(c[typeof b]&&b)if((h=s.call(b))==v)f=b;else if(h==z){g={};for(var i,j=0,k=b.length;k>j;i=b[j++],h=s.call(i),(h==y||h==x)&&(g[i]=1));}if(d)if((h=s.call(d))==x){if((d-=d%1)>0)for(e="",d>10&&(d=10);e.length L;)switch(e=f.charCodeAt(L)){case 9:case 10:case 13:case 32:L++;break;case 123:case 125:case 91:case 93:case 58:case 44:return a=B?f.charAt(L):f[L],L++,a;case 34:for(a="@",L++;g>L;)if(e=f.charCodeAt(L),32>e)P();else if(92==e)switch(e=f.charCodeAt(++L)){case 92:case 34:case 47:case 98:case 116:case 110:case 102:case 114:a+=O[e],L++;break;case 117:for(b=++L,c=L+4;c>L;L++)e=f.charCodeAt(L),e>=48&&57>=e||e>=97&&102>=e||e>=65&&70>=e||P();a+=N("0x"+f.slice(b,L));break;default:P()}else{if(34==e)break;for(e=f.charCodeAt(L),b=L;e>=32&&92!=e&&34!=e;)e=f.charCodeAt(++L);a+=f.slice(b,L)}if(34==f.charCodeAt(L))return L++,a;P();default:if(b=L,45==e&&(d=!0,e=f.charCodeAt(++L)),e>=48&&57>=e){for(48==e&&(e=f.charCodeAt(L+1),e>=48&&57>=e)&&P(),d=!1;g>L&&(e=f.charCodeAt(L),e>=48&&57>=e);L++);if(46==f.charCodeAt(L)){for(c=++L;g>c&&(e=f.charCodeAt(c),e>=48&&57>=e);c++);c==L&&P(),L=c}if(e=f.charCodeAt(L),101==e||69==e){for(e=f.charCodeAt(++L),(43==e||45==e)&&L++,c=L;g>c&&(e=f.charCodeAt(c),e>=48&&57>=e);c++);c==L&&P(),L=c}return+f.slice(b,L)}if(d&&P(),"true"==f.slice(L,L+4))return L+=4,!0;if("false"==f.slice(L,L+5))return L+=5,!1;if("null"==f.slice(L,L+4))return L+=4,null;P()}return"$"},R=function(a){var b,c;if("$"==a&&P(),"string"==typeof a){if("@"==(B?a.charAt(0):a[0]))return a.slice(1);if("["==a){for(b=[];a=Q(),"]"!=a;c||(c=!0))c&&(","==a?(a=Q(),"]"==a&&P()):P()),","==a&&P(),b.push(R(a));return b}if("{"==a){for(b={};a=Q(),"}"!=a;c||(c=!0))c&&(","==a?(a=Q(),"}"==a&&P()):P()),(","==a||"string"!=typeof a||"@"!=(B?a.charAt(0):a[0])||":"!=Q())&&P(),b[a.slice(1)]=R(Q());return b}P()}return a},S=function(a,b,c){var d=T(a,b,c);d===q?delete a[b]:a[b]=d},T=function(a,b,c){var d,e=a[b];if("object"==typeof e&&e)if(s.call(e)==z)for(d=e.length;d--;)S(e,d,c);else p(e,function(a){S(e,a,c)});return c.call(a,b,e)};d.parse=function(a,b){var c,d;return L=0,M=""+a,c=R(Q()),"$"!=Q()&&P(),L=M=null,b&&s.call(b)==v?T((d={},d[""]=c,d),"",b):c}}}return d.runInContext=a,d}var b="function"==typeof define&&define.amd,c={"function":!0,object:!0},d=c[typeof exports]&&exports&&!exports.nodeType&&exports,e=c[typeof window]&&window||this,f=d&&c[typeof module]&&module&&!module.nodeType&&"object"==typeof global&&global;if(!f||f.global!==f&&f.window!==f&&f.self!==f||(e=f),d&&!b)a(e,d);else{var g=e.JSON,h=e.JSON3,i=!1,j=a(e,e.JSON3={noConflict:function(){return i||(i=!0,e.JSON=g,e.JSON3=h,g=h=null),j}});e.JSON={parse:j.parse,stringify:j.stringify}}b&&define(function(){return j})}.call(this),function(){var a={};a.a=function(){return a.el("a")},a.svg=function(){return a.el("svg")},a.object=function(){return a.el("object")},a.image=function(){return a.el("image")},a.img=function(){return a.el("img")},a.style=function(){return a.el("style")},a.link=function(){return a.el("link")},a.script=function(){return a.el("script")},a.audio=function(){return a.el("audio")},a.video=function(){return a.el("video")},a.text=function(a){return document.createTextNode(a)},a.el=function(a){return document.createElement(a)},createjs.Elements=a}(),function(){var a={};a.ABSOLUTE_PATT=/^(?:\w+:)?\/{2}/i,a.RELATIVE_PATT=/^[.\/]*?\//i,a.EXTENSION_PATT=/\/?[^\/]+\.(\w{1,5})$/i,a.parseURI=function(b){var c={absolute:!1,relative:!1,protocol:null,hostname:null,port:null,pathname:null,search:null,hash:null,host:null};if(null==b)return c;var d=createjs.Elements.a();d.href=b;for(var e in c)e in d&&(c[e]=d[e]);var f=b.indexOf("?");f>-1&&(b=b.substr(0,f));var g;return a.ABSOLUTE_PATT.test(b)?c.absolute=!0:a.RELATIVE_PATT.test(b)&&(c.relative=!0),(g=b.match(a.EXTENSION_PATT))&&(c.extension=g[1].toLowerCase()),c},a.formatQueryString=function(a,b){if(null==a)throw new Error("You must specify data.");var c=[];for(var d in a)c.push(d+"="+escape(a[d]));return b&&(c=c.concat(b)),c.join("&")},a.buildURI=function(a,b){if(null==b)return a;var c=[],d=a.indexOf("?");if(-1!=d){var e=a.slice(d+1);c=c.concat(e.split("&"))}return-1!=d?a.slice(0,d)+"?"+this.formatQueryString(b,c):a+"?"+this.formatQueryString(b,c)},a.isCrossDomain=function(a){var b=createjs.Elements.a();b.href=a.src;var c=createjs.Elements.a();c.href=location.href;var d=""!=b.hostname&&(b.port!=c.port||b.protocol!=c.protocol||b.hostname!=c.hostname);return d},a.isLocal=function(a){var b=createjs.Elements.a();return b.href=a.src,""==b.hostname&&"file:"==b.protocol},createjs.URLUtils=a}(),function(){var a={container:null};a.appendToHead=function(b){a.getHead().appendChild(b)},a.appendToBody=function(b){if(null==a.container){a.container=document.createElement("div"),a.container.id="preloadjs-container";var c=a.container.style;c.visibility="hidden",c.position="absolute",c.width=a.container.style.height="10px",c.overflow="hidden",c.transform=c.msTransform=c.webkitTransform=c.oTransform="translate(-10px, -10px)",a.getBody().appendChild(a.container)}a.container.appendChild(b)},a.getHead=function(){return document.head||document.getElementsByTagName("head")[0]},a.getBody=function(){return document.body||document.getElementsByTagName("body")[0]},a.removeChild=function(a){a.parent&&a.parent.removeChild(a)},a.isImageTag=function(a){return a instanceof HTMLImageElement},a.isAudioTag=function(a){return window.HTMLAudioElement?a instanceof HTMLAudioElement:!1},a.isVideoTag=function(a){return window.HTMLVideoElement?a instanceof HTMLVideoElement:!1},createjs.DomUtils=a}(),function(){var a={};a.parseXML=function(a){var b=null;try{if(window.DOMParser){var c=new DOMParser;b=c.parseFromString(a,"text/xml")}}catch(d){}if(!b)try{b=new ActiveXObject("Microsoft.XMLDOM"),b.async=!1,b.loadXML(a)}catch(d){b=null}return b},a.parseJSON=function(a){if(null==a)return null;try{return JSON.parse(a)}catch(b){throw b}},createjs.DataUtils=a}(),this.createjs=this.createjs||{},function(){var a={};a.BINARY="binary",a.CSS="css",a.FONT="font",a.FONTCSS="fontcss",a.IMAGE="image",a.JAVASCRIPT="javascript",a.JSON="json",a.JSONP="jsonp",a.MANIFEST="manifest",a.SOUND="sound",a.VIDEO="video",a.SPRITESHEET="spritesheet",a.SVG="svg",a.TEXT="text",a.XML="xml",createjs.Types=a}(),this.createjs=this.createjs||{},function(){var a={};a.POST="POST",a.GET="GET",createjs.Methods=a}(),this.createjs=this.createjs||{},function(){"use strict";function a(){this.src=null,this.type=null,this.id=null,this.maintainOrder=!1,this.callback=null,this.data=null,this.method=createjs.Methods.GET,this.values=null,this.headers=null,this.withCredentials=!1,this.mimeType=null,this.crossOrigin=null,this.loadTimeout=c.LOAD_TIMEOUT_DEFAULT}var b=a.prototype={},c=a;c.LOAD_TIMEOUT_DEFAULT=8e3,c.create=function(b){if("string"==typeof b){var d=new a;return d.src=b,d}if(b instanceof c)return b;if(b instanceof Object&&b.src)return null==b.loadTimeout&&(b.loadTimeout=c.LOAD_TIMEOUT_DEFAULT),b;throw new Error("Type not recognized.")},b.set=function(a){for(var b in a)this[b]=a[b];return this},createjs.LoadItem=c}(),function(){var a={};a.isBinary=function(a){switch(a){case createjs.Types.IMAGE:case createjs.Types.BINARY:return!0;default:return!1}},a.isText=function(a){switch(a){case createjs.Types.TEXT:case createjs.Types.JSON:case createjs.Types.MANIFEST:case createjs.Types.XML:case createjs.Types.CSS:case createjs.Types.SVG:case createjs.Types.JAVASCRIPT:case createjs.Types.SPRITESHEET:return!0;default:return!1}},a.getTypeByExtension=function(a){if(null==a)return createjs.Types.TEXT;switch(a.toLowerCase()){case"jpeg":case"jpg":case"gif":case"png":case"webp":case"bmp":return createjs.Types.IMAGE;case"ogg":case"mp3":case"webm":return createjs.Types.SOUND;case"mp4":case"webm":case"ts":return createjs.Types.VIDEO;case"json":return createjs.Types.JSON;case"xml":return createjs.Types.XML;case"css":return createjs.Types.CSS;case"js":return createjs.Types.JAVASCRIPT;case"svg":return createjs.Types.SVG;default:return createjs.Types.TEXT}},createjs.RequestUtils=a}(),this.createjs=this.createjs||{},function(){"use strict";function a(a,b,c){this.EventDispatcher_constructor(),this.loaded=!1,this.canceled=!1,this.progress=0,this.type=c,this.resultFormatter=null,a?this._item=createjs.LoadItem.create(a):this._item=null,this._preferXHR=b,this._result=null,this._rawResult=null,this._loadedItems=null,this._tagSrcAttribute=null,this._tag=null}var b=createjs.extend(a,createjs.EventDispatcher),c=a;try{Object.defineProperties(c,{POST:{get:createjs.deprecate(function(){return createjs.Methods.POST},"AbstractLoader.POST")},GET:{get:createjs.deprecate(function(){return createjs.Methods.GET},"AbstractLoader.GET")},BINARY:{get:createjs.deprecate(function(){return createjs.Types.BINARY},"AbstractLoader.BINARY")},CSS:{get:createjs.deprecate(function(){return createjs.Types.CSS},"AbstractLoader.CSS")},FONT:{get:createjs.deprecate(function(){return createjs.Types.FONT},"AbstractLoader.FONT")},FONTCSS:{get:createjs.deprecate(function(){return createjs.Types.FONTCSS},"AbstractLoader.FONTCSS")},IMAGE:{get:createjs.deprecate(function(){return createjs.Types.IMAGE},"AbstractLoader.IMAGE")},JAVASCRIPT:{get:createjs.deprecate(function(){return createjs.Types.JAVASCRIPT},"AbstractLoader.JAVASCRIPT")},JSON:{get:createjs.deprecate(function(){return createjs.Types.JSON},"AbstractLoader.JSON")},JSONP:{get:createjs.deprecate(function(){return createjs.Types.JSONP},"AbstractLoader.JSONP")},MANIFEST:{get:createjs.deprecate(function(){return createjs.Types.MANIFEST},"AbstractLoader.MANIFEST")},SOUND:{get:createjs.deprecate(function(){return createjs.Types.SOUND},"AbstractLoader.SOUND")},VIDEO:{get:createjs.deprecate(function(){return createjs.Types.VIDEO},"AbstractLoader.VIDEO")},SPRITESHEET:{get:createjs.deprecate(function(){return createjs.Types.SPRITESHEET},"AbstractLoader.SPRITESHEET")},SVG:{get:createjs.deprecate(function(){return createjs.Types.SVG},"AbstractLoader.SVG")},TEXT:{get:createjs.deprecate(function(){return createjs.Types.TEXT},"AbstractLoader.TEXT")},XML:{get:createjs.deprecate(function(){return createjs.Types.XML},"AbstractLoader.XML")}})}catch(d){}b.getItem=function(){return this._item},b.getResult=function(a){return a?this._rawResult:this._result},b.getTag=function(){return this._tag},b.setTag=function(a){this._tag=a},b.load=function(){this._createRequest(),this._request.on("complete",this,this),this._request.on("progress",this,this),this._request.on("loadStart",this,this),this._request.on("abort",this,this),this._request.on("timeout",this,this),this._request.on("error",this,this);var a=new createjs.Event("initialize");a.loader=this._request,this.dispatchEvent(a),this._request.load()},b.cancel=function(){this.canceled=!0,this.destroy()},b.destroy=function(){this._request&&(this._request.removeAllEventListeners(),this._request.destroy()),this._request=null,this._item=null,this._rawResult=null,this._result=null,this._loadItems=null,this.removeAllEventListeners()},b.getLoadedItems=function(){return this._loadedItems},b._createRequest=function(){this._preferXHR?this._request=new createjs.XHRRequest(this._item):this._request=new createjs.TagRequest(this._item,this._tag||this._createTag(),this._tagSrcAttribute)},b._createTag=function(a){return null},b._sendLoadStart=function(){this._isCanceled()||this.dispatchEvent("loadstart")},b._sendProgress=function(a){if(!this._isCanceled()){var b=null;"number"==typeof a?(this.progress=a,b=new createjs.ProgressEvent(this.progress)):(b=a,this.progress=a.loaded/a.total,b.progress=this.progress,(isNaN(this.progress)||this.progress==1/0)&&(this.progress=0)),this.hasEventListener("progress")&&this.dispatchEvent(b)}},b._sendComplete=function(){if(!this._isCanceled()){this.loaded=!0;var a=new createjs.Event("complete");a.rawResult=this._rawResult,null!=this._result&&(a.result=this._result),this.dispatchEvent(a)}},b._sendError=function(a){!this._isCanceled()&&this.hasEventListener("error")&&(null==a&&(a=new createjs.ErrorEvent("PRELOAD_ERROR_EMPTY")),this.dispatchEvent(a))},b._isCanceled=function(){return null==window.createjs||this.canceled?!0:!1},b.resultFormatter=null,b.handleEvent=function(a){switch(a.type){case"complete":this._rawResult=a.target._response;var b=this.resultFormatter&&this.resultFormatter(this);b instanceof Function?b.call(this,createjs.proxy(this._resultFormatSuccess,this),createjs.proxy(this._resultFormatFailed,this)):(this._result=b||this._rawResult,this._sendComplete());break;case"progress":this._sendProgress(a);break;case"error":this._sendError(a);break;case"loadstart":this._sendLoadStart();break;case"abort":case"timeout":this._isCanceled()||this.dispatchEvent(new createjs.ErrorEvent("PRELOAD_"+a.type.toUpperCase()+"_ERROR"))}},b._resultFormatSuccess=function(a){this._result=a,this._sendComplete()},b._resultFormatFailed=function(a){this._sendError(a)},b.toString=function(){return"[PreloadJS AbstractLoader]"},createjs.AbstractLoader=createjs.promote(a,"EventDispatcher")}(),this.createjs=this.createjs||{},function(){"use strict";function a(a,b,c){this.AbstractLoader_constructor(a,b,c),this.resultFormatter=this._formatResult,this._tagSrcAttribute="src",this.on("initialize",this._updateXHR,this)}var b=createjs.extend(a,createjs.AbstractLoader);b.load=function(){this._tag||(this._tag=this._createTag(this._item.src)),this._tag.preload="auto",this._tag.load(),this.AbstractLoader_load()},b._createTag=function(){},b._createRequest=function(){this._preferXHR?this._request=new createjs.XHRRequest(this._item):this._request=new createjs.MediaTagRequest(this._item,this._tag||this._createTag(),this._tagSrcAttribute)},b._updateXHR=function(a){a.loader.setResponseType&&a.loader.setResponseType("blob")},b._formatResult=function(a){if(this._tag.removeEventListener&&this._tag.removeEventListener("canplaythrough",this._loadedHandler),this._tag.onstalled=null,this._preferXHR){var b=window.URL||window.webkitURL,c=a.getResult(!0);a.getTag().src=b.createObjectURL(c)}return a.getTag()},createjs.AbstractMediaLoader=createjs.promote(a,"AbstractLoader")}(),this.createjs=this.createjs||{},function(){"use strict";var a=function(a){this._item=a},b=createjs.extend(a,createjs.EventDispatcher);b.load=function(){},b.destroy=function(){},b.cancel=function(){},createjs.AbstractRequest=createjs.promote(a,"EventDispatcher")}(),this.createjs=this.createjs||{},function(){"use strict";function a(a,b,c){this.AbstractRequest_constructor(a),this._tag=b,this._tagSrcAttribute=c,this._loadedHandler=createjs.proxy(this._handleTagComplete,this),this._addedToDOM=!1}var b=createjs.extend(a,createjs.AbstractRequest);b.load=function(){this._tag.onload=createjs.proxy(this._handleTagComplete,this),this._tag.onreadystatechange=createjs.proxy(this._handleReadyStateChange,this),this._tag.onerror=createjs.proxy(this._handleError,this);var a=new createjs.Event("initialize");a.loader=this._tag,this.dispatchEvent(a),this._loadTimeout=setTimeout(createjs.proxy(this._handleTimeout,this),this._item.loadTimeout),this._tag[this._tagSrcAttribute]=this._item.src,null==this._tag.parentNode&&(createjs.DomUtils.appendToBody(this._tag),this._addedToDOM=!0)},b.destroy=function(){this._clean(),this._tag=null,this.AbstractRequest_destroy()},b._handleReadyStateChange=function(){clearTimeout(this._loadTimeout);var a=this._tag;("loaded"==a.readyState||"complete"==a.readyState)&&this._handleTagComplete()},b._handleError=function(){this._clean(),this.dispatchEvent("error")},b._handleTagComplete=function(){this._rawResult=this._tag,this._result=this.resultFormatter&&this.resultFormatter(this)||this._rawResult,this._clean(),this.dispatchEvent("complete")},b._handleTimeout=function(){this._clean(),this.dispatchEvent(new createjs.Event("timeout"))},b._clean=function(){this._tag.onload=null,this._tag.onreadystatechange=null,this._tag.onerror=null,this._addedToDOM&&null!=this._tag.parentNode&&this._tag.parentNode.removeChild(this._tag),clearTimeout(this._loadTimeout)},b._handleStalled=function(){},createjs.TagRequest=createjs.promote(a,"AbstractRequest")}(),this.createjs=this.createjs||{},function(){"use strict";function a(a,b,c){this.AbstractRequest_constructor(a),this._tag=b,this._tagSrcAttribute=c,this._loadedHandler=createjs.proxy(this._handleTagComplete,this)}var b=createjs.extend(a,createjs.TagRequest);b.load=function(){var a=createjs.proxy(this._handleStalled,this);this._stalledCallback=a;var b=createjs.proxy(this._handleProgress,this);this._handleProgress=b,this._tag.addEventListener("stalled",a),this._tag.addEventListener("progress",b),this._tag.addEventListener&&this._tag.addEventListener("canplaythrough",this._loadedHandler,!1),this.TagRequest_load()},b._handleReadyStateChange=function(){clearTimeout(this._loadTimeout);var a=this._tag;("loaded"==a.readyState||"complete"==a.readyState)&&this._handleTagComplete()},b._handleStalled=function(){},b._handleProgress=function(a){if(a&&!(a.loaded>0&&0==a.total)){var b=new createjs.ProgressEvent(a.loaded,a.total);this.dispatchEvent(b)}},b._clean=function(){this._tag.removeEventListener&&this._tag.removeEventListener("canplaythrough",this._loadedHandler),this._tag.removeEventListener("stalled",this._stalledCallback),this._tag.removeEventListener("progress",this._progressCallback),this.TagRequest__clean()},createjs.MediaTagRequest=createjs.promote(a,"TagRequest")}(),this.createjs=this.createjs||{},function(){"use strict";function a(a){this.AbstractRequest_constructor(a),this._request=null,this._loadTimeout=null,this._xhrLevel=1,this._response=null,this._rawResponse=null,this._canceled=!1,this._handleLoadStartProxy=createjs.proxy(this._handleLoadStart,this),this._handleProgressProxy=createjs.proxy(this._handleProgress,this),this._handleAbortProxy=createjs.proxy(this._handleAbort,this),this._handleErrorProxy=createjs.proxy(this._handleError,this),this._handleTimeoutProxy=createjs.proxy(this._handleTimeout,this),this._handleLoadProxy=createjs.proxy(this._handleLoad,this),this._handleReadyStateChangeProxy=createjs.proxy(this._handleReadyStateChange,this),!this._createXHR(a)}var b=createjs.extend(a,createjs.AbstractRequest);a.ACTIVEX_VERSIONS=["Msxml2.XMLHTTP.6.0","Msxml2.XMLHTTP.5.0","Msxml2.XMLHTTP.4.0","MSXML2.XMLHTTP.3.0","MSXML2.XMLHTTP","Microsoft.XMLHTTP"],b.getResult=function(a){return a&&this._rawResponse?this._rawResponse:this._response},b.cancel=function(){this.canceled=!0,this._clean(),this._request.abort()},b.load=function(){if(null==this._request)return void this._handleError();null!=this._request.addEventListener?(this._request.addEventListener("loadstart",this._handleLoadStartProxy,!1),this._request.addEventListener("progress",this._handleProgressProxy,!1),this._request.addEventListener("abort",this._handleAbortProxy,!1),this._request.addEventListener("error",this._handleErrorProxy,!1),this._request.addEventListener("timeout",this._handleTimeoutProxy,!1),this._request.addEventListener("load",this._handleLoadProxy,!1),this._request.addEventListener("readystatechange",this._handleReadyStateChangeProxy,!1)):(this._request.onloadstart=this._handleLoadStartProxy,this._request.onprogress=this._handleProgressProxy,this._request.onabort=this._handleAbortProxy,this._request.onerror=this._handleErrorProxy,this._request.ontimeout=this._handleTimeoutProxy,this._request.onload=this._handleLoadProxy,this._request.onreadystatechange=this._handleReadyStateChangeProxy),1==this._xhrLevel&&(this._loadTimeout=setTimeout(createjs.proxy(this._handleTimeout,this),this._item.loadTimeout));try{this._item.values?this._request.send(createjs.URLUtils.formatQueryString(this._item.values)):this._request.send()}catch(a){this.dispatchEvent(new createjs.ErrorEvent("XHR_SEND",null,a))}},b.setResponseType=function(a){"blob"===a&&(a=window.URL?"blob":"arraybuffer",this._responseType=a),this._request.responseType=a},b.getAllResponseHeaders=function(){return this._request.getAllResponseHeaders instanceof Function?this._request.getAllResponseHeaders():null},b.getResponseHeader=function(a){return this._request.getResponseHeader instanceof Function?this._request.getResponseHeader(a):null},b._handleProgress=function(a){if(a&&!(a.loaded>0&&0==a.total)){var b=new createjs.ProgressEvent(a.loaded,a.total);this.dispatchEvent(b)}},b._handleLoadStart=function(a){clearTimeout(this._loadTimeout),this.dispatchEvent("loadstart")},b._handleAbort=function(a){this._clean(),this.dispatchEvent(new createjs.ErrorEvent("XHR_ABORTED",null,a))},b._handleError=function(a){this._clean(),this.dispatchEvent(new createjs.ErrorEvent(a.message))},b._handleReadyStateChange=function(a){4==this._request.readyState&&this._handleLoad()},b._handleLoad=function(a){if(!this.loaded){this.loaded=!0;var b=this._checkError();if(b)return void this._handleError(b);if(this._response=this._getResponse(),"arraybuffer"===this._responseType)try{this._response=new Blob([this._response])}catch(c){if(window.BlobBuilder=window.BlobBuilder||window.WebKitBlobBuilder||window.MozBlobBuilder||window.MSBlobBuilder,"TypeError"===c.name&&window.BlobBuilder){var d=new BlobBuilder;d.append(this._response),this._response=d.getBlob()}}this._clean(),this.dispatchEvent(new createjs.Event("complete"))}},b._handleTimeout=function(a){this._clean(),this.dispatchEvent(new createjs.ErrorEvent("PRELOAD_TIMEOUT",null,a))},b._checkError=function(){var a=parseInt(this._request.status);return a>=400&&599>=a?new Error(a):0==a&&/^https?:/.test(location.protocol)?new Error(0):null},b._getResponse=function(){if(null!=this._response)return this._response;if(null!=this._request.response)return this._request.response;try{if(null!=this._request.responseText)return this._request.responseText}catch(a){}try{if(null!=this._request.responseXML)return this._request.responseXML}catch(a){}return null},b._createXHR=function(a){var b=createjs.URLUtils.isCrossDomain(a),c={},d=null;if(window.XMLHttpRequest)d=new XMLHttpRequest,b&&void 0===d.withCredentials&&window.XDomainRequest&&(d=new XDomainRequest);else{for(var e=0,f=s.ACTIVEX_VERSIONS.length;f>e;e++){var g=s.ACTIVEX_VERSIONS[e];try{d=new ActiveXObject(g);break}catch(h){}}if(null==d)return!1}null==a.mimeType&&createjs.RequestUtils.isText(a.type)&&(a.mimeType="text/plain; charset=utf-8"),a.mimeType&&d.overrideMimeType&&d.overrideMimeType(a.mimeType),this._xhrLevel="string"==typeof d.responseType?2:1;var i=null;if(i=a.method==createjs.Methods.GET?createjs.URLUtils.buildURI(a.src,a.values):a.src,d.open(a.method||createjs.Methods.GET,i,!0),b&&d instanceof XMLHttpRequest&&1==this._xhrLevel&&(c.Origin=location.origin),a.values&&a.method==createjs.Methods.POST&&(c["Content-Type"]="application/x-www-form-urlencoded"),b||c["X-Requested-With"]||(c["X-Requested-With"]="XMLHttpRequest"),a.headers)for(var j in a.headers)c[j]=a.headers[j];for(j in c)d.setRequestHeader(j,c[j]);return d instanceof XMLHttpRequest&&void 0!==a.withCredentials&&(d.withCredentials=a.withCredentials),this._request=d,!0},b._clean=function(){clearTimeout(this._loadTimeout),null!=this._request.removeEventListener?(this._request.removeEventListener("loadstart",this._handleLoadStartProxy),this._request.removeEventListener("progress",this._handleProgressProxy),this._request.removeEventListener("abort",this._handleAbortProxy),this._request.removeEventListener("error",this._handleErrorProxy),this._request.removeEventListener("timeout",this._handleTimeoutProxy),this._request.removeEventListener("load",this._handleLoadProxy),this._request.removeEventListener("readystatechange",this._handleReadyStateChangeProxy)):(this._request.onloadstart=null,this._request.onprogress=null,this._request.onabort=null,this._request.onerror=null,this._request.ontimeout=null,this._request.onload=null,this._request.onreadystatechange=null)},b.toString=function(){return"[PreloadJS XHRRequest]"},createjs.XHRRequest=createjs.promote(a,"AbstractRequest")}(),this.createjs=this.createjs||{},function(){"use strict";function a(a,b,c){this.AbstractLoader_constructor(),this._plugins=[],this._typeCallbacks={},this._extensionCallbacks={},this.next=null,this.maintainScriptOrder=!0,this.stopOnError=!1,this._maxConnections=1,this._availableLoaders=[createjs.FontLoader,createjs.ImageLoader,createjs.JavaScriptLoader,createjs.CSSLoader,createjs.JSONLoader,createjs.JSONPLoader,createjs.SoundLoader,createjs.ManifestLoader,createjs.SpriteSheetLoader,createjs.XMLLoader,createjs.SVGLoader,createjs.BinaryLoader,createjs.VideoLoader,createjs.TextLoader],this._defaultLoaderLength=this._availableLoaders.length,this.init(a,b,c)}var b=createjs.extend(a,createjs.AbstractLoader),c=a;try{Object.defineProperties(c,{POST:{get:createjs.deprecate(function(){return createjs.Methods.POST},"AbstractLoader.POST")},GET:{get:createjs.deprecate(function(){return createjs.Methods.GET},"AbstractLoader.GET")},BINARY:{get:createjs.deprecate(function(){return createjs.Types.BINARY},"AbstractLoader.BINARY")},CSS:{get:createjs.deprecate(function(){return createjs.Types.CSS},"AbstractLoader.CSS")},FONT:{get:createjs.deprecate(function(){return createjs.Types.FONT},"AbstractLoader.FONT")},FONTCSS:{get:createjs.deprecate(function(){return createjs.Types.FONTCSS},"AbstractLoader.FONTCSS")},IMAGE:{get:createjs.deprecate(function(){return createjs.Types.IMAGE},"AbstractLoader.IMAGE")},JAVASCRIPT:{get:createjs.deprecate(function(){return createjs.Types.JAVASCRIPT},"AbstractLoader.JAVASCRIPT")},JSON:{get:createjs.deprecate(function(){return createjs.Types.JSON},"AbstractLoader.JSON")},JSONP:{get:createjs.deprecate(function(){return createjs.Types.JSONP},"AbstractLoader.JSONP")},MANIFEST:{get:createjs.deprecate(function(){return createjs.Types.MANIFEST},"AbstractLoader.MANIFEST")},SOUND:{get:createjs.deprecate(function(){return createjs.Types.SOUND},"AbstractLoader.SOUND")},VIDEO:{get:createjs.deprecate(function(){return createjs.Types.VIDEO},"AbstractLoader.VIDEO")},SPRITESHEET:{get:createjs.deprecate(function(){return createjs.Types.SPRITESHEET},"AbstractLoader.SPRITESHEET")},SVG:{get:createjs.deprecate(function(){return createjs.Types.SVG},"AbstractLoader.SVG")},TEXT:{get:createjs.deprecate(function(){return createjs.Types.TEXT},"AbstractLoader.TEXT")},XML:{get:createjs.deprecate(function(){return createjs.Types.XML},"AbstractLoader.XML")}})}catch(d){}b.init=function(a,b,c){this.preferXHR=!0,this._preferXHR=!0,this.setPreferXHR(a),this._paused=!1,this._basePath=b,this._crossOrigin=c,this._loadStartWasDispatched=!1,this._currentlyLoadingScript=null,this._currentLoads=[],this._loadQueue=[],this._loadQueueBackup=[],this._loadItemsById={},this._loadItemsBySrc={},this._loadedResults={},this._loadedRawResults={},this._numItems=0,this._numItemsLoaded=0,this._scriptOrder=[],this._loadedScripts=[],this._lastProgress=NaN},b.registerLoader=function(a){if(!a||!a.canLoadItem)throw new Error("loader is of an incorrect type.");if(-1!=this._availableLoaders.indexOf(a))throw new Error("loader already exists."); +this._availableLoaders.unshift(a)},b.unregisterLoader=function(a){var b=this._availableLoaders.indexOf(a);-1!=b&&b 0)return;var c=!1;if(b){for(;b.length;){var d=b.pop(),e=this.getResult(d);for(f=this._loadQueue.length-1;f>=0;f--)if(g=this._loadQueue[f].getItem(),g.id==d||g.src==d){this._loadQueue.splice(f,1)[0].cancel();break}for(f=this._loadQueueBackup.length-1;f>=0;f--)if(g=this._loadQueueBackup[f].getItem(),g.id==d||g.src==d){this._loadQueueBackup.splice(f,1)[0].cancel();break}if(e)this._disposeItem(this.getItem(d));else for(var f=this._currentLoads.length-1;f>=0;f--){var g=this._currentLoads[f].getItem();if(g.id==d||g.src==d){this._currentLoads.splice(f,1)[0].cancel(),c=!0;break}}}c&&this._loadNext()}else{this.close();for(var h in this._loadItemsById)this._disposeItem(this._loadItemsById[h]);this.init(this.preferXHR,this._basePath)}},b.reset=function(){this.close();for(var a in this._loadItemsById)this._disposeItem(this._loadItemsById[a]);for(var b=[],c=0,d=this._loadQueueBackup.length;d>c;c++)b.push(this._loadQueueBackup[c].getItem());this.loadManifest(b,!1)},b.installPlugin=function(a){if(null!=a&&null!=a.getPreloadHandlers){this._plugins.push(a);var b=a.getPreloadHandlers();if(b.scope=a,null!=b.types)for(var c=0,d=b.types.length;d>c;c++)this._typeCallbacks[b.types[c]]=b;if(null!=b.extensions)for(c=0,d=b.extensions.length;d>c;c++)this._extensionCallbacks[b.extensions[c]]=b}},b.setMaxConnections=function(a){this._maxConnections=a,!this._paused&&this._loadQueue.length>0&&this._loadNext()},b.loadFile=function(a,b,c){if(null==a){var d=new createjs.ErrorEvent("PRELOAD_NO_FILE");return void this._sendError(d)}this._addItem(a,null,c),b!==!1?this.setPaused(!1):this.setPaused(!0)},b.loadManifest=function(a,b,d){var e=null,f=null;if(Array.isArray(a)){if(0==a.length){var g=new createjs.ErrorEvent("PRELOAD_MANIFEST_EMPTY");return void this._sendError(g)}e=a}else if("string"==typeof a)e=[{src:a,type:c.MANIFEST}];else{if("object"!=typeof a){var g=new createjs.ErrorEvent("PRELOAD_MANIFEST_NULL");return void this._sendError(g)}if(void 0!==a.src){if(null==a.type)a.type=c.MANIFEST;else if(a.type!=c.MANIFEST){var g=new createjs.ErrorEvent("PRELOAD_MANIFEST_TYPE");this._sendError(g)}e=[a]}else void 0!==a.manifest&&(e=a.manifest,f=a.path)}for(var h=0,i=e.length;i>h;h++)this._addItem(e[h],f,d);b!==!1?this.setPaused(!1):this.setPaused(!0)},b.load=function(){this.setPaused(!1)},b.getItem=function(a){return this._loadItemsById[a]||this._loadItemsBySrc[a]},b.getResult=function(a,b){var c=this._loadItemsById[a]||this._loadItemsBySrc[a];if(null==c)return null;var d=c.id;return b&&this._loadedRawResults[d]?this._loadedRawResults[d]:this._loadedResults[d]},b.getItems=function(a){var b=[];for(var c in this._loadItemsById){var d=this._loadItemsById[c],e=this.getResult(c);(a!==!0||null!=e)&&b.push({item:d,result:e,rawResult:this.getResult(c,!0)})}return b},b.setPaused=function(a){this._paused=a,this._paused||this._loadNext()},b.close=function(){for(;this._currentLoads.length;)this._currentLoads.pop().cancel();this._scriptOrder.length=0,this._loadedScripts.length=0,this.loadStartWasDispatched=!1,this._itemCount=0,this._lastProgress=NaN},b._addItem=function(a,b,c){var d=this._createLoadItem(a,b,c);if(null!=d){var e=this._createLoader(d);null!=e&&("plugins"in e&&(e.plugins=this._plugins),d._loader=e,this._loadQueue.push(e),this._loadQueueBackup.push(e),this._numItems++,this._updateProgress(),(this.maintainScriptOrder&&d.type==createjs.Types.JAVASCRIPT||d.maintainOrder===!0)&&(this._scriptOrder.push(d),this._loadedScripts.push(null)))}},b._createLoadItem=function(a,b,c){var d=createjs.LoadItem.create(a);if(null==d)return null;var e="",f=c||this._basePath;if(d.src instanceof Object){if(!d.type)return null;if(b){e=b;var g=createjs.URLUtils.parseURI(b);null==f||g.absolute||g.relative||(e=f+e)}else null!=f&&(e=f)}else{var h=createjs.URLUtils.parseURI(d.src);h.extension&&(d.ext=h.extension),null==d.type&&(d.type=createjs.RequestUtils.getTypeByExtension(d.ext));var i=d.src;if(!h.absolute&&!h.relative)if(b){e=b;var g=createjs.URLUtils.parseURI(b);i=b+i,null==f||g.absolute||g.relative||(e=f+e)}else null!=f&&(e=f);d.src=e+d.src}d.path=e,(void 0===d.id||null===d.id||""===d.id)&&(d.id=i);var j=this._typeCallbacks[d.type]||this._extensionCallbacks[d.ext];if(j){var k=j.callback.call(j.scope,d,this);if(k===!1)return null;k===!0||null!=k&&(d._loader=k),h=createjs.URLUtils.parseURI(d.src),null!=h.extension&&(d.ext=h.extension)}return this._loadItemsById[d.id]=d,this._loadItemsBySrc[d.src]=d,null==d.crossOrigin&&(d.crossOrigin=this._crossOrigin),d},b._createLoader=function(a){if(null!=a._loader)return a._loader;for(var b=this.preferXHR,c=0;c =this._maxConnections);a++){var b=this._loadQueue[a];this._canStartLoad(b)&&(this._loadQueue.splice(a,1),a--,this._loadItem(b))}}},b._loadItem=function(a){a.on("fileload",this._handleFileLoad,this),a.on("progress",this._handleProgress,this),a.on("complete",this._handleFileComplete,this),a.on("error",this._handleError,this),a.on("fileerror",this._handleFileError,this),this._currentLoads.push(a),this._sendFileStart(a.getItem()),a.load()},b._handleFileLoad=function(a){a.target=null,this.dispatchEvent(a)},b._handleFileError=function(a){var b=new createjs.ErrorEvent("FILE_LOAD_ERROR",null,a.item);this._sendError(b)},b._handleError=function(a){var b=a.target;this._numItemsLoaded++,this._finishOrderedItem(b,!0),this._updateProgress();var c=new createjs.ErrorEvent("FILE_LOAD_ERROR",null,b.getItem());this._sendError(c),this.stopOnError?this.setPaused(!0):(this._removeLoadItem(b),this._cleanLoadItem(b),this._loadNext())},b._handleFileComplete=function(a){var b=a.target,c=b.getItem(),d=b.getResult();this._loadedResults[c.id]=d;var e=b.getResult(!0);null!=e&&e!==d&&(this._loadedRawResults[c.id]=e),this._saveLoadedItems(b),this._removeLoadItem(b),this._finishOrderedItem(b)||this._processFinishedLoad(c,b),this._cleanLoadItem(b)},b._saveLoadedItems=function(a){var b=a.getLoadedItems();if(null!==b)for(var c=0;c b;b++){var c=this._loadedScripts[b];if(null===c)break;if(c!==!0){var d=this._loadedResults[c.id];c.type==createjs.Types.JAVASCRIPT&&createjs.DomUtils.appendToHead(d);var e=c._loader;this._processFinishedLoad(c,e),this._loadedScripts[b]=!0}}},b._processFinishedLoad=function(a,b){if(this._numItemsLoaded++,!this.maintainScriptOrder&&a.type==createjs.Types.JAVASCRIPT){var c=b.getTag();createjs.DomUtils.appendToHead(c)}this._updateProgress(),this._sendFileComplete(a,b),this._loadNext()},b._canStartLoad=function(a){if(!this.maintainScriptOrder||a.preferXHR)return!0;var b=a.getItem();if(b.type!=createjs.Types.JAVASCRIPT)return!0;if(this._currentlyLoadingScript)return!1;for(var c=this._scriptOrder.indexOf(b),d=0;c>d;){var e=this._loadedScripts[d];if(null==e)return!1;d++}return this._currentlyLoadingScript=!0,!0},b._removeLoadItem=function(a){for(var b=this._currentLoads.length,c=0;b>c;c++)if(this._currentLoads[c]==a){this._currentLoads.splice(c,1);break}},b._cleanLoadItem=function(a){var b=a.getItem();b&&delete b._loader},b._handleProgress=function(a){var b=a.target;this._sendFileProgress(b.getItem(),b.progress),this._updateProgress()},b._updateProgress=function(){var a=this._numItemsLoaded/this._numItems,b=this._numItems-this._numItemsLoaded;if(b>0){for(var c=0,d=0,e=this._currentLoads.length;e>d;d++)c+=this._currentLoads[d].progress;a+=c/b*(b/this._numItems)}this._lastProgress!=a&&(this._sendProgress(a),this._lastProgress=a)},b._disposeItem=function(a){delete this._loadedResults[a.id],delete this._loadedRawResults[a.id],delete this._loadItemsById[a.id],delete this._loadItemsBySrc[a.src]},b._sendFileProgress=function(a,b){if(!this._isCanceled()&&!this._paused&&this.hasEventListener("fileprogress")){var c=new createjs.Event("fileprogress");c.progress=b,c.loaded=b,c.total=1,c.item=a,this.dispatchEvent(c)}},b._sendFileComplete=function(a,b){if(!this._isCanceled()&&!this._paused){var c=new createjs.Event("fileload");c.loader=b,c.item=a,c.result=this._loadedResults[a.id],c.rawResult=this._loadedRawResults[a.id],a.completeHandler&&a.completeHandler(c),this.hasEventListener("fileload")&&this.dispatchEvent(c)}},b._sendFileStart=function(a){var b=new createjs.Event("filestart");b.item=a,this.hasEventListener("filestart")&&this.dispatchEvent(b)},b.toString=function(){return"[PreloadJS LoadQueue]"},createjs.LoadQueue=createjs.promote(a,"AbstractLoader")}(),this.createjs=this.createjs||{},function(){"use strict";function a(a){this.AbstractLoader_constructor(a,!0,createjs.Types.TEXT)}var b=(createjs.extend(a,createjs.AbstractLoader),a);b.canLoadItem=function(a){return a.type==createjs.Types.TEXT},createjs.TextLoader=createjs.promote(a,"AbstractLoader")}(),this.createjs=this.createjs||{},function(){"use strict";function a(a){this.AbstractLoader_constructor(a,!0,createjs.Types.BINARY),this.on("initialize",this._updateXHR,this)}var b=createjs.extend(a,createjs.AbstractLoader),c=a;c.canLoadItem=function(a){return a.type==createjs.Types.BINARY},b._updateXHR=function(a){a.loader.setResponseType("arraybuffer")},createjs.BinaryLoader=createjs.promote(a,"AbstractLoader")}(),this.createjs=this.createjs||{},function(){"use strict";function a(a,b){this.AbstractLoader_constructor(a,b,createjs.Types.CSS),this.resultFormatter=this._formatResult,this._tagSrcAttribute="href",b?this._tag=createjs.Elements.style():this._tag=createjs.Elements.link(),this._tag.rel="stylesheet",this._tag.type="text/css"}var b=createjs.extend(a,createjs.AbstractLoader),c=a;c.canLoadItem=function(a){return a.type==createjs.Types.CSS},b._formatResult=function(a){if(this._preferXHR){var b=a.getTag();if(b.styleSheet)b.styleSheet.cssText=a.getResult(!0);else{var c=createjs.Elements.text(a.getResult(!0));b.appendChild(c)}}else b=this._tag;return createjs.DomUtils.appendToHead(b),b},createjs.CSSLoader=createjs.promote(a,"AbstractLoader")}(),this.createjs=this.createjs||{},function(){"use strict";function a(a,b){this.AbstractLoader_constructor(a,b,a.type),this._faces={},this._watched=[],this._count=0,this._watchInterval=null,this._loadTimeout=null,this._injectCSS=void 0===a.injectCSS?!0:a.injectCSS,this.dispatchEvent("initialize")}var b=createjs.extend(a,createjs.AbstractLoader);a.canLoadItem=function(a){return a.type==createjs.Types.FONT||a.type==createjs.Types.FONTCSS},a.sampleText="abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ",a._ctx=document.createElement("canvas").getContext("2d"),a._referenceFonts=["serif","monospace"],a.WEIGHT_REGEX=/[- ._]*(thin|normal|book|regular|medium|black|heavy|[1-9]00|(?:extra|ultra|semi|demi)?[- ._]*(?:light|bold))[- ._]*/gi,a.STYLE_REGEX=/[- ._]*(italic|oblique)[- ._]*/gi,a.FONT_FORMAT={woff2:"woff2",woff:"woff",ttf:"truetype",otf:"truetype"},a.FONT_WEIGHT={thin:100,extralight:200,ultralight:200,light:300,semilight:300,demilight:300,book:"normal",regular:"normal",semibold:600,demibold:600,extrabold:800,ultrabold:800,black:900,heavy:900},a.WATCH_DURATION=10,b.load=function(){if(this.type==createjs.Types.FONTCSS){var a=this._watchCSS();if(!a)return void this.AbstractLoader_load()}else if(this._item.src instanceof Array)this._watchFontArray();else{var b=this._defFromSrc(this._item.src);this._watchFont(b),this._injectStyleTag(this._cssFromDef(b))}this._loadTimeout=setTimeout(createjs.proxy(this._handleTimeout,this),this._item.loadTimeout),this.dispatchEvent("loadstart")},b._handleTimeout=function(){this._stopWatching(),this.dispatchEvent(new createjs.ErrorEvent("PRELOAD_TIMEOUT"))},b._createRequest=function(){return this._request},b.handleEvent=function(a){switch(a.type){case"complete":this._rawResult=a.target._response,this._result=!0,this._parseCSS(this._rawResult);break;case"error":this._stopWatching(),this.AbstractLoader_handleEvent(a)}},b._watchCSS=function(){var a=this._item.src;return a instanceof HTMLStyleElement&&(this._injectCSS&&!a.parentNode&&(document.head||document.getElementsByTagName("head")[0]).appendChild(a),this._injectCSS=!1,a="\n"+a.textContent),-1!==a.search(/\n|\r|@font-face/i)?(this._parseCSS(a),!0):(this._request=new createjs.XHRRequest(this._item),!1)},b._parseCSS=function(a){for(var b=/@font-face\s*\{([^}]+)}/g;;){var c=b.exec(a);if(!c)break;this._watchFont(this._parseFontFace(c[1]))}this._injectStyleTag(a)},b._watchFontArray=function(){for(var a,b=this._item.src,c="",d=b.length-1;d>=0;d--){var e=b[d];a="string"==typeof e?this._defFromSrc(e):this._defFromObj(e),this._watchFont(a),c+=this._cssFromDef(a)+"\n"}this._injectStyleTag(c)},b._injectStyleTag=function(a){if(this._injectCSS){var b=document.head||document.getElementsByTagName("head")[0],c=document.createElement("style");c.type="text/css",c.styleSheet?c.styleSheet.cssText=a:c.appendChild(document.createTextNode(a)),b.appendChild(c)}},b._parseFontFace=function(a){var b=this._getCSSValue(a,"font-family"),c=this._getCSSValue(a,"src");return b&&c?this._defFromObj({family:b,src:c,style:this._getCSSValue(a,"font-style"),weight:this._getCSSValue(a,"font-weight")}):null},b._watchFont=function(a){a&&!this._faces[a.id]&&(this._faces[a.id]=a,this._watched.push(a),this._count++,this._calculateReferenceSizes(a),this._startWatching())},b._startWatching=function(){null==this._watchInterval&&(this._watchInterval=setInterval(createjs.proxy(this._watch,this),a.WATCH_DURATION))},b._stopWatching=function(){clearInterval(this._watchInterval),clearTimeout(this._loadTimeout),this._watchInterval=null},b._watch=function(){for(var b=this._watched,c=a._referenceFonts,d=b.length,e=d-1;e>=0;e--)for(var f=b[e],g=f.refs,h=g.length-1;h>=0;h--){var i=this._getTextWidth(f.family+","+c[h],f.weight,f.style);if(i!=g[h]){var j=new createjs.Event("fileload");f.type="font-family",j.item=f,this.dispatchEvent(j),b.splice(e,1);break}}if(d!==b.length){var j=new createjs.ProgressEvent(this._count-b.length,this._count);this.dispatchEvent(j)}0===d&&(this._stopWatching(),this._sendComplete())},b._calculateReferenceSizes=function(b){for(var c=a._referenceFonts,d=b.refs=[],e=0;e c;c++)b.installPlugin(this.plugins[c]);b.loadManifest(a)}else this._sendComplete()},b._handleManifestFileLoad=function(a){a.target=null,this.dispatchEvent(a)},b._handleManifestComplete=function(a){this._loadedItems=this._manifestQueue.getItems(!0),this._sendComplete()},b._handleManifestProgress=function(a){this.progress=a.progress*(1-c.MANIFEST_PROGRESS)+c.MANIFEST_PROGRESS,this._sendProgress(this.progress)},b._handleManifestError=function(a){var b=new createjs.Event("fileerror");b.item=a.data,this.dispatchEvent(b)},createjs.ManifestLoader=createjs.promote(a,"AbstractLoader")}(),this.createjs=this.createjs||{},function(){"use strict";function a(a,b){this.AbstractMediaLoader_constructor(a,b,createjs.Types.SOUND),createjs.DomUtils.isAudioTag(a)?this._tag=a:createjs.DomUtils.isAudioTag(a.src)?this._tag=a:createjs.DomUtils.isAudioTag(a.tag)&&(this._tag=createjs.DomUtils.isAudioTag(a)?a:a.src),null!=this._tag&&(this._preferXHR=!1)}var b=createjs.extend(a,createjs.AbstractMediaLoader),c=a;c.canLoadItem=function(a){return a.type==createjs.Types.SOUND},b._createTag=function(a){var b=createjs.Elements.audio();return b.autoplay=!1,b.preload="none",b.src=a,b},createjs.SoundLoader=createjs.promote(a,"AbstractMediaLoader")}(),this.createjs=this.createjs||{},function(){"use strict";function a(a,b){this.AbstractMediaLoader_constructor(a,b,createjs.Types.VIDEO),createjs.DomUtils.isVideoTag(a)||createjs.DomUtils.isVideoTag(a.src)?(this.setTag(createjs.DomUtils.isVideoTag(a)?a:a.src),this._preferXHR=!1):this.setTag(this._createTag())}var b=createjs.extend(a,createjs.AbstractMediaLoader),c=a;b._createTag=function(){return createjs.Elements.video()},c.canLoadItem=function(a){return a.type==createjs.Types.VIDEO},createjs.VideoLoader=createjs.promote(a,"AbstractMediaLoader")}(),this.createjs=this.createjs||{},function(){"use strict";function a(a,b){this.AbstractLoader_constructor(a,b,createjs.Types.SPRITESHEET),this._manifestQueue=null}var b=createjs.extend(a,createjs.AbstractLoader),c=a;c.SPRITESHEET_PROGRESS=.25,c.canLoadItem=function(a){return a.type==createjs.Types.SPRITESHEET},b.destroy=function(){this.AbstractLoader_destroy(),this._manifestQueue.close()},b._createRequest=function(){var a=this._item.callback;null!=a?this._request=new createjs.JSONPLoader(this._item):this._request=new createjs.JSONLoader(this._item)},b.handleEvent=function(a){switch(a.type){case"complete":return this._rawResult=a.target.getResult(!0),this._result=a.target.getResult(),this._sendProgress(c.SPRITESHEET_PROGRESS),void this._loadManifest(this._result);case"progress":return a.loaded*=c.SPRITESHEET_PROGRESS,this.progress=a.loaded/a.total,(isNaN(this.progress)||this.progress==1/0)&&(this.progress=0),void this._sendProgress(a)}this.AbstractLoader_handleEvent(a)},b._loadManifest=function(a){if(a&&a.images){var b=this._manifestQueue=new createjs.LoadQueue(this._preferXHR,this._item.path,this._item.crossOrigin);b.on("complete",this._handleManifestComplete,this,!0),b.on("fileload",this._handleManifestFileLoad,this),b.on("progress",this._handleManifestProgress,this),b.on("error",this._handleManifestError,this,!0),b.loadManifest(a.images)}},b._handleManifestFileLoad=function(a){var b=a.result;if(null!=b){var c=this.getResult().images,d=c.indexOf(a.item.src);c[d]=b}},b._handleManifestComplete=function(a){this._result=new createjs.SpriteSheet(this._result),this._loadedItems=this._manifestQueue.getItems(!0),this._sendComplete()},b._handleManifestProgress=function(a){this.progress=a.progress*(1-c.SPRITESHEET_PROGRESS)+c.SPRITESHEET_PROGRESS,this._sendProgress(this.progress)},b._handleManifestError=function(a){var b=new createjs.Event("fileerror");b.item=a.data,this.dispatchEvent(b)},createjs.SpriteSheetLoader=createjs.promote(a,"AbstractLoader")}(),this.createjs=this.createjs||{},function(){"use strict";function a(a,b){this.AbstractLoader_constructor(a,b,createjs.Types.SVG),this.resultFormatter=this._formatResult,this._tagSrcAttribute="data",b?this.setTag(createjs.Elements.svg()):(this.setTag(createjs.Elements.object()),this.getTag().type="image/svg+xml")}var b=createjs.extend(a,createjs.AbstractLoader),c=a;c.canLoadItem=function(a){return a.type==createjs.Types.SVG},b._formatResult=function(a){var b=createjs.DataUtils.parseXML(a.getResult(!0)),c=a.getTag();if(!this._preferXHR&&document.body.contains(c)&&document.body.removeChild(c),null!=b.documentElement){var d=b.documentElement;return document.importNode&&(d=document.importNode(d,!0)),c.appendChild(d),c}return b},createjs.SVGLoader=createjs.promote(a,"AbstractLoader")}(),this.createjs=this.createjs||{},function(){"use strict";function a(a){this.AbstractLoader_constructor(a,!0,createjs.Types.XML),this.resultFormatter=this._formatResult}var b=createjs.extend(a,createjs.AbstractLoader),c=a;c.canLoadItem=function(a){return a.type==createjs.Types.XML},b._formatResult=function(a){return createjs.DataUtils.parseXML(a.getResult(!0))},createjs.XMLLoader=createjs.promote(a,"AbstractLoader")}(),this.createjs=this.createjs||{},function(){var a=createjs.SoundJS=createjs.SoundJS||{};a.version="1.0.0",a.buildDate="Thu, 12 Oct 2017 16:34:05 GMT"}(),this.createjs=this.createjs||{},function(){"use strict";function a(){throw"BrowserDetect cannot be instantiated"}var b=a.agent=window.navigator.userAgent;a.isWindowPhone=b.indexOf("IEMobile")>-1||b.indexOf("Windows Phone")>-1,a.isFirefox=b.indexOf("Firefox")>-1,a.isOpera=null!=window.opera,a.isChrome=b.indexOf("Chrome")>-1,a.isIOS=(b.indexOf("iPod")>-1||b.indexOf("iPhone")>-1||b.indexOf("iPad")>-1)&&!a.isWindowPhone,a.isAndroid=b.indexOf("Android")>-1&&!a.isWindowPhone,a.isBlackberry=b.indexOf("Blackberry")>-1,createjs.BrowserDetect=a}(),this.createjs=this.createjs||{},function(){"use strict";var a=function(){this.interrupt=null,this.delay=null,this.offset=null,this.loop=null,this.volume=null,this.pan=null,this.startTime=null,this.duration=null},b=a.prototype={},c=a;c.create=function(a){if("string"==typeof a)return console&&(console.warn||console.log)("Deprecated behaviour. Sound.play takes a configuration object instead of individual arguments. See docs for info."),(new createjs.PlayPropsConfig).set({interrupt:a});if(null==a||a instanceof c||a instanceof Object)return(new createjs.PlayPropsConfig).set(a);if(null==a)throw new Error("PlayProps configuration not recognized.")},b.set=function(a){if(null!=a)for(var b in a)this[b]=a[b];return this},b.toString=function(){return"[PlayPropsConfig]"},createjs.PlayPropsConfig=c}(),this.createjs=this.createjs||{},function(){"use strict";function a(){throw"Sound cannot be instantiated"}function b(a,b){this.init(a,b)}var c=a;c.INTERRUPT_ANY="any",c.INTERRUPT_EARLY="early",c.INTERRUPT_LATE="late",c.INTERRUPT_NONE="none",c.PLAY_INITED="playInited",c.PLAY_SUCCEEDED="playSucceeded",c.PLAY_INTERRUPTED="playInterrupted",c.PLAY_FINISHED="playFinished",c.PLAY_FAILED="playFailed",c.SUPPORTED_EXTENSIONS=["mp3","ogg","opus","mpeg","wav","m4a","mp4","aiff","wma","mid"],c.EXTENSION_MAP={m4a:"mp4"},c.FILE_PATTERN=/^(?:(\w+:)\/{2}(\w+(?:\.\w+)*\/?))?([\/.]*?(?:[^?]+)?\/)?((?:[^\/?]+)\.(\w+))(?:\?(\S+)?)?$/,c.defaultInterruptBehavior=c.INTERRUPT_NONE,c.alternateExtensions=[],c.activePlugin=null,c._masterVolume=1,c._getMasterVolume=function(){return this._masterVolume},c.getVolume=createjs.deprecate(c._getMasterVolume,"Sound.getVolume"),c._setMasterVolume=function(a){if(null!=Number(a)&&(a=Math.max(0,Math.min(1,a)),c._masterVolume=a,!this.activePlugin||!this.activePlugin.setVolume||!this.activePlugin.setVolume(a)))for(var b=this._instances,d=0,e=b.length;e>d;d++)b[d].setMasterVolume(a)},c.setVolume=createjs.deprecate(c._setMasterVolume,"Sound.setVolume"),c._masterMute=!1,c._getMute=function(){return this._masterMute},c.getMute=createjs.deprecate(c._getMute,"Sound.getMute"),c._setMute=function(a){if(null!=a&&(this._masterMute=a,!this.activePlugin||!this.activePlugin.setMute||!this.activePlugin.setMute(a)))for(var b=this._instances,c=0,d=b.length;d>c;c++)b[c].setMasterMute(a)},c.setMute=createjs.deprecate(c._setMute,"Sound.setMute"),c._getCapabilities=function(){return null==c.activePlugin?null:c.activePlugin._capabilities},c.getCapabilities=createjs.deprecate(c._getCapabilities,"Sound.getCapabilities"),Object.defineProperties(c,{volume:{get:c._getMasterVolume,set:c._setMasterVolume},muted:{get:c._getMute,set:c._setMute},capabilities:{get:c._getCapabilities}}),c._pluginsRegistered=!1,c._lastID=0,c._instances=[],c._idHash={},c._preloadHash={},c._defaultPlayPropsHash={},c.addEventListener=null,c.removeEventListener=null,c.removeAllEventListeners=null,c.dispatchEvent=null,c.hasEventListener=null,c._listeners=null,createjs.EventDispatcher.initialize(c),c.getPreloadHandlers=function(){return{callback:createjs.proxy(c.initLoad,c),types:["sound"],extensions:c.SUPPORTED_EXTENSIONS}},c._handleLoadComplete=function(a){var b=a.target.getItem().src;if(c._preloadHash[b])for(var d=0,e=c._preloadHash[b].length;e>d;d++){var f=c._preloadHash[b][d];if(c._preloadHash[b][d]=!0,c.hasEventListener("fileload")){var a=new createjs.Event("fileload");a.src=f.src,a.id=f.id,a.data=f.data,a.sprite=f.sprite,c.dispatchEvent(a)}}},c._handleLoadError=function(a){var b=a.target.getItem().src;if(c._preloadHash[b])for(var d=0,e=c._preloadHash[b].length;e>d;d++){var f=c._preloadHash[b][d];if(c._preloadHash[b][d]=!1,c.hasEventListener("fileerror")){var a=new createjs.Event("fileerror");a.src=f.src,a.id=f.id,a.data=f.data,a.sprite=f.sprite,c.dispatchEvent(a)}}},c._registerPlugin=function(a){return a.isSupported()?(c.activePlugin=new a,!0):!1},c.registerPlugins=function(a){c._pluginsRegistered=!0;for(var b=0,d=a.length;d>b;b++)if(c._registerPlugin(a[b]))return!0;return!1},c.initializeDefaultPlugins=function(){return null!=c.activePlugin?!0:c._pluginsRegistered?!1:c.registerPlugins([createjs.WebAudioPlugin,createjs.HTMLAudioPlugin])?!0:!1},c.isReady=function(){return null!=c.activePlugin},c.initLoad=function(a){return"video"==a.type?!0:c._registerSound(a)},c._registerSound=function(a){if(!c.initializeDefaultPlugins())return!1;var d;if(a.src instanceof Object?(d=c._parseSrc(a.src), +d.src=a.path+d.src):d=c._parsePath(a.src),null==d)return!1;a.src=d.src,a.type="sound";var e=a.data,f=null;if(null!=e&&(isNaN(e.channels)?isNaN(e)||(f=parseInt(e)):f=parseInt(e.channels),e.audioSprite))for(var g,h=e.audioSprite.length;h--;)g=e.audioSprite[h],c._idHash[g.id]={src:a.src,startTime:parseInt(g.startTime),duration:parseInt(g.duration)},g.defaultPlayProps&&(c._defaultPlayPropsHash[g.id]=createjs.PlayPropsConfig.create(g.defaultPlayProps));null!=a.id&&(c._idHash[a.id]={src:a.src});var i=c.activePlugin.register(a);return b.create(a.src,f),null!=e&&isNaN(e)?a.data.channels=f||b.maxPerChannel():a.data=f||b.maxPerChannel(),i.type&&(a.type=i.type),a.defaultPlayProps&&(c._defaultPlayPropsHash[a.src]=createjs.PlayPropsConfig.create(a.defaultPlayProps)),i},c.registerSound=function(a,b,d,e,f){var g={src:a,id:b,data:d,defaultPlayProps:f};a instanceof Object&&a.src&&(e=b,g=a),g=createjs.LoadItem.create(g),g.path=e,null==e||g.src instanceof Object||(g.src=e+g.src);var h=c._registerSound(g);if(!h)return!1;if(c._preloadHash[g.src]||(c._preloadHash[g.src]=[]),c._preloadHash[g.src].push(g),1==c._preloadHash[g.src].length)h.on("complete",this._handleLoadComplete,this),h.on("error",this._handleLoadError,this),c.activePlugin.preload(h);else if(1==c._preloadHash[g.src][0])return!0;return g},c.registerSounds=function(a,b){var c=[];a.path&&(b?b+=a.path:b=a.path,a=a.manifest);for(var d=0,e=a.length;e>d;d++)c[d]=createjs.Sound.registerSound(a[d].src,a[d].id,a[d].data,b,a[d].defaultPlayProps);return c},c.removeSound=function(a,d){if(null==c.activePlugin)return!1;a instanceof Object&&a.src&&(a=a.src);var e;if(a instanceof Object?e=c._parseSrc(a):(a=c._getSrcById(a).src,e=c._parsePath(a)),null==e)return!1;a=e.src,null!=d&&(a=d+a);for(var f in c._idHash)c._idHash[f].src==a&&delete c._idHash[f];return b.removeSrc(a),delete c._preloadHash[a],c.activePlugin.removeSound(a),!0},c.removeSounds=function(a,b){var c=[];a.path&&(b?b+=a.path:b=a.path,a=a.manifest);for(var d=0,e=a.length;e>d;d++)c[d]=createjs.Sound.removeSound(a[d].src,b);return c},c.removeAllSounds=function(){c._idHash={},c._preloadHash={},b.removeAll(),c.activePlugin&&c.activePlugin.removeAllSounds()},c.loadComplete=function(a){if(!c.isReady())return!1;var b=c._parsePath(a);return a=b?c._getSrcById(b.src).src:c._getSrcById(a).src,void 0==c._preloadHash[a]?!1:1==c._preloadHash[a][0]},c._parsePath=function(a){"string"!=typeof a&&(a=a.toString());var b=a.match(c.FILE_PATTERN);if(null==b)return!1;for(var d=b[4],e=b[5],f=c.capabilities,g=0;!f[e];)if(e=c.alternateExtensions[g++],g>c.alternateExtensions.length)return null;a=a.replace("."+b[5],"."+e);var h={name:d,src:a,extension:e};return h},c._parseSrc=function(a){var b={name:void 0,src:void 0,extension:void 0},d=c.capabilities;for(var e in a)if(a.hasOwnProperty(e)&&d[e]){b.src=a[e],b.extension=e;break}if(!b.src)return!1;var f=b.src.lastIndexOf("/");return-1!=f?b.name=b.src.slice(f+1):b.name=b.src,b},c.play=function(a,b){var d=createjs.PlayPropsConfig.create(b),e=c.createInstance(a,d.startTime,d.duration),f=c._playInstance(e,d);return f||e._playFailed(),e},c.createInstance=function(a,d,e){if(!c.initializeDefaultPlugins())return new createjs.DefaultSoundInstance(a,d,e);var f=c._defaultPlayPropsHash[a];a=c._getSrcById(a);var g=c._parsePath(a.src),h=null;return null!=g&&null!=g.src?(b.create(g.src),null==d&&(d=a.startTime),h=c.activePlugin.create(g.src,d,e||a.duration),f=f||c._defaultPlayPropsHash[g.src],f&&h.applyPlayProps(f)):h=new createjs.DefaultSoundInstance(a,d,e),h.uniqueId=c._lastID++,h},c.stop=function(){for(var a=this._instances,b=a.length;b--;)a[b].stop()},c.setDefaultPlayProps=function(a,b){a=c._getSrcById(a),c._defaultPlayPropsHash[c._parsePath(a.src).src]=createjs.PlayPropsConfig.create(b)},c.getDefaultPlayProps=function(a){return a=c._getSrcById(a),c._defaultPlayPropsHash[c._parsePath(a.src).src]},c._playInstance=function(a,b){var d=c._defaultPlayPropsHash[a.src]||{};if(null==b.interrupt&&(b.interrupt=d.interrupt||c.defaultInterruptBehavior),null==b.delay&&(b.delay=d.delay||0),null==b.offset&&(b.offset=a.position),null==b.loop&&(b.loop=a.loop),null==b.volume&&(b.volume=a.volume),null==b.pan&&(b.pan=a.pan),0==b.delay){var e=c._beginPlaying(a,b);if(!e)return!1}else{var f=setTimeout(function(){c._beginPlaying(a,b)},b.delay);a.delayTimeoutId=f}return this._instances.push(a),!0},c._beginPlaying=function(a,c){if(!b.add(a,c.interrupt))return!1;var d=a._beginPlaying(c);if(!d){var e=createjs.indexOf(this._instances,a);return e>-1&&this._instances.splice(e,1),!1}return!0},c._getSrcById=function(a){return c._idHash[a]||{src:a}},c._playFinished=function(a){b.remove(a);var c=createjs.indexOf(this._instances,a);c>-1&&this._instances.splice(c,1)},createjs.Sound=a,b.channels={},b.create=function(a,c){var d=b.get(a);return null==d?(b.channels[a]=new b(a,c),!0):!1},b.removeSrc=function(a){var c=b.get(a);return null==c?!1:(c._removeAll(),delete b.channels[a],!0)},b.removeAll=function(){for(var a in b.channels)b.channels[a]._removeAll();b.channels={}},b.add=function(a,c){var d=b.get(a.src);return null==d?!1:d._add(a,c)},b.remove=function(a){var c=b.get(a.src);return null==c?!1:(c._remove(a),!0)},b.maxPerChannel=function(){return d.maxDefault},b.get=function(a){return b.channels[a]};var d=b.prototype;d.constructor=b,d.src=null,d.max=null,d.maxDefault=100,d.length=0,d.init=function(a,b){this.src=a,this.max=b||this.maxDefault,-1==this.max&&(this.max=this.maxDefault),this._instances=[]},d._get=function(a){return this._instances[a]},d._add=function(a,b){return this._getSlot(b,a)?(this._instances.push(a),this.length++,!0):!1},d._remove=function(a){var b=createjs.indexOf(this._instances,a);return-1==b?!1:(this._instances.splice(b,1),this.length--,!0)},d._removeAll=function(){for(var a=this.length-1;a>=0;a--)this._instances[a].stop()},d._getSlot=function(b,c){var d,e;if(b!=a.INTERRUPT_NONE&&(e=this._get(0),null==e))return!0;for(var f=0,g=this.max;g>f;f++){if(d=this._get(f),null==d)return!0;if(d.playState==a.PLAY_FINISHED||d.playState==a.PLAY_INTERRUPTED||d.playState==a.PLAY_FAILED){e=d;break}b!=a.INTERRUPT_NONE&&(b==a.INTERRUPT_EARLY&&d.position e.position)&&(e=d)}return null!=e?(e._interrupt(),this._remove(e),!0):!1},d.toString=function(){return"[Sound SoundChannel]"}}(),this.createjs=this.createjs||{},function(){"use strict";var a=function(a,b,c,d){this.EventDispatcher_constructor(),this.src=a,this.uniqueId=-1,this.playState=null,this.delayTimeoutId=null,this._volume=1,Object.defineProperty(this,"volume",{get:this._getVolume,set:this._setVolume}),this.getVolume=createjs.deprecate(this._getVolume,"AbstractSoundInstance.getVolume"),this.setVolume=createjs.deprecate(this._setVolume,"AbstractSoundInstance.setVolume"),this._pan=0,Object.defineProperty(this,"pan",{get:this._getPan,set:this._setPan}),this.getPan=createjs.deprecate(this._getPan,"AbstractSoundInstance.getPan"),this.setPan=createjs.deprecate(this._setPan,"AbstractSoundInstance.setPan"),this._startTime=Math.max(0,b||0),Object.defineProperty(this,"startTime",{get:this._getStartTime,set:this._setStartTime}),this.getStartTime=createjs.deprecate(this._getStartTime,"AbstractSoundInstance.getStartTime"),this.setStartTime=createjs.deprecate(this._setStartTime,"AbstractSoundInstance.setStartTime"),this._duration=Math.max(0,c||0),Object.defineProperty(this,"duration",{get:this._getDuration,set:this._setDuration}),this.getDuration=createjs.deprecate(this._getDuration,"AbstractSoundInstance.getDuration"),this.setDuration=createjs.deprecate(this._setDuration,"AbstractSoundInstance.setDuration"),this._playbackResource=null,Object.defineProperty(this,"playbackResource",{get:this._getPlaybackResource,set:this._setPlaybackResource}),d!==!1&&d!==!0&&this._setPlaybackResource(d),this.getPlaybackResource=createjs.deprecate(this._getPlaybackResource,"AbstractSoundInstance.getPlaybackResource"),this.setPlaybackResource=createjs.deprecate(this._setPlaybackResource,"AbstractSoundInstance.setPlaybackResource"),this._position=0,Object.defineProperty(this,"position",{get:this._getPosition,set:this._setPosition}),this.getPosition=createjs.deprecate(this._getPosition,"AbstractSoundInstance.getPosition"),this.setPosition=createjs.deprecate(this._setPosition,"AbstractSoundInstance.setPosition"),this._loop=0,Object.defineProperty(this,"loop",{get:this._getLoop,set:this._setLoop}),this.getLoop=createjs.deprecate(this._getLoop,"AbstractSoundInstance.getLoop"),this.setLoop=createjs.deprecate(this._setLoop,"AbstractSoundInstance.setLoop"),this._muted=!1,Object.defineProperty(this,"muted",{get:this._getMuted,set:this._setMuted}),this.getMuted=createjs.deprecate(this._getMuted,"AbstractSoundInstance.getMuted"),this.setMuted=createjs.deprecate(this._setMuted,"AbstractSoundInstance.setMuted"),this._paused=!1,Object.defineProperty(this,"paused",{get:this._getPaused,set:this._setPaused}),this.getPaused=createjs.deprecate(this._getPaused,"AbstractSoundInstance.getPaused"),this.setPaused=createjs.deprecate(this._setPaused,"AbstractSoundInstance.setPaused")},b=createjs.extend(a,createjs.EventDispatcher);b.play=function(a){var b=createjs.PlayPropsConfig.create(a);return this.playState==createjs.Sound.PLAY_SUCCEEDED?(this.applyPlayProps(b),void(this._paused&&this._setPaused(!1))):(this._cleanUp(),createjs.Sound._playInstance(this,b),this)},b.stop=function(){return this._position=0,this._paused=!1,this._handleStop(),this._cleanUp(),this.playState=createjs.Sound.PLAY_FINISHED,this},b.destroy=function(){this._cleanUp(),this.src=null,this.playbackResource=null,this.removeAllEventListeners()},b.applyPlayProps=function(a){return null!=a.offset&&this._setPosition(a.offset),null!=a.loop&&this._setLoop(a.loop),null!=a.volume&&this._setVolume(a.volume),null!=a.pan&&this._setPan(a.pan),null!=a.startTime&&(this._setStartTime(a.startTime),this._setDuration(a.duration)),this},b.toString=function(){return"[AbstractSoundInstance]"},b._getPaused=function(){return this._paused},b._setPaused=function(a){return a!==!0&&a!==!1||this._paused==a||1==a&&this.playState!=createjs.Sound.PLAY_SUCCEEDED?void 0:(this._paused=a,a?this._pause():this._resume(),clearTimeout(this.delayTimeoutId),this)},b._setVolume=function(a){return a==this._volume?this:(this._volume=Math.max(0,Math.min(1,a)),this._muted||this._updateVolume(),this)},b._getVolume=function(){return this._volume},b._setMuted=function(a){return a===!0||a===!1?(this._muted=a,this._updateVolume(),this):void 0},b._getMuted=function(){return this._muted},b._setPan=function(a){return a==this._pan?this:(this._pan=Math.max(-1,Math.min(1,a)),this._updatePan(),this)},b._getPan=function(){return this._pan},b._getPosition=function(){return this._paused||this.playState!=createjs.Sound.PLAY_SUCCEEDED||(this._position=this._calculateCurrentPosition()),this._position},b._setPosition=function(a){return this._position=Math.max(0,a),this.playState==createjs.Sound.PLAY_SUCCEEDED&&this._updatePosition(),this},b._getStartTime=function(){return this._startTime},b._setStartTime=function(a){return a==this._startTime?this:(this._startTime=Math.max(0,a||0),this._updateStartTime(),this)},b._getDuration=function(){return this._duration},b._setDuration=function(a){return a==this._duration?this:(this._duration=Math.max(0,a||0),this._updateDuration(),this)},b._setPlaybackResource=function(a){return this._playbackResource=a,0==this._duration&&this._playbackResource&&this._setDurationFromSource(),this},b._getPlaybackResource=function(){return this._playbackResource},b._getLoop=function(){return this._loop},b._setLoop=function(a){null!=this._playbackResource&&(0!=this._loop&&0==a?this._removeLooping(a):0==this._loop&&0!=a&&this._addLooping(a)),this._loop=a},b._sendEvent=function(a){var b=new createjs.Event(a);this.dispatchEvent(b)},b._cleanUp=function(){clearTimeout(this.delayTimeoutId),this._handleCleanUp(),this._paused=!1,createjs.Sound._playFinished(this)},b._interrupt=function(){this._cleanUp(),this.playState=createjs.Sound.PLAY_INTERRUPTED,this._sendEvent("interrupted")},b._beginPlaying=function(a){return this._setPosition(a.offset),this._setLoop(a.loop),this._setVolume(a.volume),this._setPan(a.pan),null!=a.startTime&&(this._setStartTime(a.startTime),this._setDuration(a.duration)),null!=this._playbackResource&&this._position c;c++){var e=this._soundInstances[b][c];e.playbackResource=this._audioSources[b],this._soundInstances[b]=null}},b._handlePreloadError=function(a){},b._updateVolume=function(){},createjs.AbstractPlugin=a}(),this.createjs=this.createjs||{},function(){"use strict";function a(a){this.AbstractLoader_constructor(a,!0,createjs.Types.SOUND)}var b=createjs.extend(a,createjs.AbstractLoader);a.context=null,b.toString=function(){return"[WebAudioLoader]"},b._createRequest=function(){this._request=new createjs.XHRRequest(this._item,!1),this._request.setResponseType("arraybuffer")},b._sendComplete=function(b){a.context.decodeAudioData(this._rawResult,createjs.proxy(this._handleAudioDecoded,this),createjs.proxy(this._sendError,this))},b._handleAudioDecoded=function(a){this._result=a,this.AbstractLoader__sendComplete()},createjs.WebAudioLoader=createjs.promote(a,"AbstractLoader")}(),this.createjs=this.createjs||{},function(){"use strict";function a(a,b,d,e){this.AbstractSoundInstance_constructor(a,b,d,e),this.gainNode=c.context.createGain(),this.panNode=c.context.createPanner(),this.panNode.panningModel=c._panningModel,this.panNode.connect(this.gainNode),this._updatePan(),this.sourceNode=null,this._soundCompleteTimeout=null,this._sourceNodeNext=null,this._playbackStartTime=0,this._endedHandler=createjs.proxy(this._handleSoundComplete,this)}var b=createjs.extend(a,createjs.AbstractSoundInstance),c=a;c.context=null,c._scratchBuffer=null,c.destinationNode=null,c._panningModel="equalpower",b.destroy=function(){this.AbstractSoundInstance_destroy(),this.panNode.disconnect(0),this.panNode=null,this.gainNode.disconnect(0),this.gainNode=null},b.toString=function(){return"[WebAudioSoundInstance]"},b._updatePan=function(){this.panNode.setPosition(this._pan,0,-.5)},b._removeLooping=function(a){this._sourceNodeNext=this._cleanUpAudioNode(this._sourceNodeNext)},b._addLooping=function(a){this.playState==createjs.Sound.PLAY_SUCCEEDED&&(this._sourceNodeNext=this._createAndPlayAudioNode(this._playbackStartTime,0))},b._setDurationFromSource=function(){this._duration=1e3*this.playbackResource.duration},b._handleCleanUp=function(){this.sourceNode&&this.playState==createjs.Sound.PLAY_SUCCEEDED&&(this.sourceNode=this._cleanUpAudioNode(this.sourceNode),this._sourceNodeNext=this._cleanUpAudioNode(this._sourceNodeNext)),0!=this.gainNode.numberOfOutputs&&this.gainNode.disconnect(0),clearTimeout(this._soundCompleteTimeout),this._playbackStartTime=0},b._cleanUpAudioNode=function(a){if(a){if(a.stop(0),a.disconnect(0),createjs.BrowserDetect.isIOS)try{a.buffer=c._scratchBuffer}catch(b){}a=null}return a},b._handleSoundReady=function(a){this.gainNode.connect(c.destinationNode);var b=.001*this._duration,d=Math.min(.001*Math.max(0,this._position),b);this.sourceNode=this._createAndPlayAudioNode(c.context.currentTime-b,d),this._playbackStartTime=this.sourceNode.startTime-d,this._soundCompleteTimeout=setTimeout(this._endedHandler,1e3*(b-d)),0!=this._loop&&(this._sourceNodeNext=this._createAndPlayAudioNode(this._playbackStartTime,0))},b._createAndPlayAudioNode=function(a,b){var d=c.context.createBufferSource();d.buffer=this.playbackResource,d.connect(this.panNode);var e=.001*this._duration;return d.startTime=a+e,d.start(d.startTime,b+.001*this._startTime,e-b),d},b._pause=function(){this._position=1e3*(c.context.currentTime-this._playbackStartTime),this.sourceNode=this._cleanUpAudioNode(this.sourceNode),this._sourceNodeNext=this._cleanUpAudioNode(this._sourceNodeNext),0!=this.gainNode.numberOfOutputs&&this.gainNode.disconnect(0),clearTimeout(this._soundCompleteTimeout)},b._resume=function(){this._handleSoundReady()},b._updateVolume=function(){var a=this._muted?0:this._volume;a!=this.gainNode.gain.value&&(this.gainNode.gain.value=a)},b._calculateCurrentPosition=function(){return 1e3*(c.context.currentTime-this._playbackStartTime)},b._updatePosition=function(){this.sourceNode=this._cleanUpAudioNode(this.sourceNode),this._sourceNodeNext=this._cleanUpAudioNode(this._sourceNodeNext),clearTimeout(this._soundCompleteTimeout),this._paused||this._handleSoundReady()},b._handleLoop=function(){this._cleanUpAudioNode(this.sourceNode),this.sourceNode=this._sourceNodeNext,this._playbackStartTime=this.sourceNode.startTime,this._sourceNodeNext=this._createAndPlayAudioNode(this._playbackStartTime,0),this._soundCompleteTimeout=setTimeout(this._endedHandler,this._duration)},b._updateDuration=function(){this.playState==createjs.Sound.PLAY_SUCCEEDED&&(this._pause(),this._resume())},createjs.WebAudioSoundInstance=createjs.promote(a,"AbstractSoundInstance")}(),this.createjs=this.createjs||{},function(){"use strict";function a(){this.AbstractPlugin_constructor(),this._panningModel=c._panningModel,this.context=c.context,this.dynamicsCompressorNode=this.context.createDynamicsCompressor(),this.dynamicsCompressorNode.connect(this.context.destination),this.gainNode=this.context.createGain(),this.gainNode.connect(this.dynamicsCompressorNode),createjs.WebAudioSoundInstance.destinationNode=this.gainNode,this._capabilities=c._capabilities,this._loaderClass=createjs.WebAudioLoader,this._soundInstanceClass=createjs.WebAudioSoundInstance,this._addPropsToClasses()}var b=createjs.extend(a,createjs.AbstractPlugin),c=a;c._capabilities=null,c._panningModel="equalpower",c.context=null,c._scratchBuffer=null,c._unlocked=!1,c.DEFAULT_SAMPLE_RATE=44100,c.isSupported=function(){var a=createjs.BrowserDetect.isIOS||createjs.BrowserDetect.isAndroid||createjs.BrowserDetect.isBlackberry;return"file:"!=location.protocol||a||this._isFileXHRSupported()?(c._generateCapabilities(),null==c.context?!1:!0):!1},c.playEmptySound=function(){if(null!=c.context){var a=c.context.createBufferSource();a.buffer=c._scratchBuffer,a.connect(c.context.destination),a.start(0,0,0)}},c._isFileXHRSupported=function(){var a=!0,b=new XMLHttpRequest;try{b.open("GET","WebAudioPluginTest.fail",!1)}catch(c){return a=!1}b.onerror=function(){a=!1},b.onload=function(){a=404==this.status||200==this.status||0==this.status&&""!=this.response};try{b.send()}catch(c){a=!1}return a},c._generateCapabilities=function(){if(null==c._capabilities){var a=document.createElement("audio");if(null==a.canPlayType)return null;if(null==c.context&&(c.context=c._createAudioContext(),null==c.context))return null;null==c._scratchBuffer&&(c._scratchBuffer=c.context.createBuffer(1,1,22050)),c._compatibilitySetUp(),"ontouchstart"in window&&"running"!=c.context.state&&(c._unlock(),document.addEventListener("mousedown",c._unlock,!0),document.addEventListener("touchstart",c._unlock,!0),document.addEventListener("touchend",c._unlock,!0)),c._capabilities={panning:!0,volume:!0,tracks:-1};for(var b=createjs.Sound.SUPPORTED_EXTENSIONS,d=createjs.Sound.EXTENSION_MAP,e=0,f=b.length;f>e;e++){var g=b[e],h=d[g]||g;c._capabilities[g]="no"!=a.canPlayType("audio/"+g)&&""!=a.canPlayType("audio/"+g)||"no"!=a.canPlayType("audio/"+h)&&""!=a.canPlayType("audio/"+h)}c.context.destination.numberOfChannels<2&&(c._capabilities.panning=!1)}},c._createAudioContext=function(){var a=window.AudioContext||window.webkitAudioContext;if(null==a)return null;var b=new a;if(/(iPhone|iPad)/i.test(navigator.userAgent)&&b.sampleRate!==c.DEFAULT_SAMPLE_RATE){var d=b.createBuffer(1,1,c.DEFAULT_SAMPLE_RATE),e=b.createBufferSource();e.buffer=d,e.connect(b.destination),e.start(0),e.disconnect(),b.close(),b=new a}return b},c._compatibilitySetUp=function(){if(c._panningModel="equalpower",!c.context.createGain){c.context.createGain=c.context.createGainNode;var a=c.context.createBufferSource();a.__proto__.start=a.__proto__.noteGrainOn,a.__proto__.stop=a.__proto__.noteOff,c._panningModel=0}},c._unlock=function(){c._unlocked||(c.playEmptySound(),"running"==c.context.state&&(document.removeEventListener("mousedown",c._unlock,!0),document.removeEventListener("touchend",c._unlock,!0),document.removeEventListener("touchstart",c._unlock,!0),c._unlocked=!0))},b.toString=function(){return"[WebAudioPlugin]"},b._addPropsToClasses=function(){var a=this._soundInstanceClass;a.context=this.context,a._scratchBuffer=c._scratchBuffer,a.destinationNode=this.gainNode,a._panningModel=this._panningModel,this._loaderClass.context=this.context},b._updateVolume=function(){var a=createjs.Sound._masterMute?0:this._volume;a!=this.gainNode.gain.value&&(this.gainNode.gain.value=a)},createjs.WebAudioPlugin=createjs.promote(a,"AbstractPlugin")}(),this.createjs=this.createjs||{},function(){"use strict";function a(){throw"HTMLAudioTagPool cannot be instantiated"}function b(a){this._tags=[]}var c=a;c._tags={},c._tagPool=new b,c._tagUsed={},c.get=function(a){var b=c._tags[a];return null==b?(b=c._tags[a]=c._tagPool.get(),b.src=a):c._tagUsed[a]?(b=c._tagPool.get(),b.src=a):c._tagUsed[a]=!0,b},c.set=function(a,b){b==c._tags[a]?c._tagUsed[a]=!1:c._tagPool.set(b)},c.remove=function(a){var b=c._tags[a];return null==b?!1:(c._tagPool.set(b),delete c._tags[a],delete c._tagUsed[a],!0)},c.getDuration=function(a){var b=c._tags[a];return null!=b&&b.duration?1e3*b.duration:0},createjs.HTMLAudioTagPool=a;var d=b.prototype;d.constructor=b,d.get=function(){var a;return a=0==this._tags.length?this._createTag():this._tags.pop(),null==a.parentNode&&document.body.appendChild(a),a},d.set=function(a){var b=createjs.indexOf(this._tags,a);-1==b&&(this._tags.src=null,this._tags.push(a))},d.toString=function(){return"[TagPool]"},d._createTag=function(){var a=document.createElement("audio");return a.autoplay=!1,a.preload="none",a}}(),this.createjs=this.createjs||{},function(){"use strict";function a(a,b,c,d){this.AbstractSoundInstance_constructor(a,b,c,d),this._audioSpriteStopTime=null,this._delayTimeoutId=null,this._endedHandler=createjs.proxy(this._handleSoundComplete,this),this._readyHandler=createjs.proxy(this._handleTagReady,this),this._stalledHandler=createjs.proxy(this._playFailed,this),this._audioSpriteEndHandler=createjs.proxy(this._handleAudioSpriteLoop,this),this._loopHandler=createjs.proxy(this._handleSoundComplete,this),c?this._audioSpriteStopTime=.001*(b+c):this._duration=createjs.HTMLAudioTagPool.getDuration(this.src)}var b=createjs.extend(a,createjs.AbstractSoundInstance);b.setMasterVolume=function(a){this._updateVolume()},b.setMasterMute=function(a){this._updateVolume()},b.toString=function(){return"[HTMLAudioSoundInstance]"},b._removeLooping=function(){null!=this._playbackResource&&(this._playbackResource.loop=!1,this._playbackResource.removeEventListener(createjs.HTMLAudioPlugin._AUDIO_SEEKED,this._loopHandler,!1))},b._addLooping=function(){null==this._playbackResource||this._audioSpriteStopTime||(this._playbackResource.addEventListener(createjs.HTMLAudioPlugin._AUDIO_SEEKED,this._loopHandler,!1),this._playbackResource.loop=!0)},b._handleCleanUp=function(){var a=this._playbackResource;if(null!=a){a.pause(),a.loop=!1,a.removeEventListener(createjs.HTMLAudioPlugin._AUDIO_ENDED,this._endedHandler,!1),a.removeEventListener(createjs.HTMLAudioPlugin._AUDIO_READY,this._readyHandler,!1),a.removeEventListener(createjs.HTMLAudioPlugin._AUDIO_STALLED,this._stalledHandler,!1),a.removeEventListener(createjs.HTMLAudioPlugin._AUDIO_SEEKED,this._loopHandler,!1),a.removeEventListener(createjs.HTMLAudioPlugin._TIME_UPDATE,this._audioSpriteEndHandler,!1);try{a.currentTime=this._startTime}catch(b){}createjs.HTMLAudioTagPool.set(this.src,a),this._playbackResource=null}},b._beginPlaying=function(a){return this._playbackResource=createjs.HTMLAudioTagPool.get(this.src),this.AbstractSoundInstance__beginPlaying(a)},b._handleSoundReady=function(a){if(4!==this._playbackResource.readyState){var b=this._playbackResource;return b.addEventListener(createjs.HTMLAudioPlugin._AUDIO_READY,this._readyHandler,!1),b.addEventListener(createjs.HTMLAudioPlugin._AUDIO_STALLED,this._stalledHandler,!1),b.preload="auto",void b.load()}this._updateVolume(),this._playbackResource.currentTime=.001*(this._startTime+this._position),this._audioSpriteStopTime?this._playbackResource.addEventListener(createjs.HTMLAudioPlugin._TIME_UPDATE,this._audioSpriteEndHandler,!1):(this._playbackResource.addEventListener(createjs.HTMLAudioPlugin._AUDIO_ENDED,this._endedHandler,!1),0!=this._loop&&(this._playbackResource.addEventListener(createjs.HTMLAudioPlugin._AUDIO_SEEKED,this._loopHandler,!1),this._playbackResource.loop=!0)),this._playbackResource.play()},b._handleTagReady=function(a){this._playbackResource.removeEventListener(createjs.HTMLAudioPlugin._AUDIO_READY,this._readyHandler,!1),this._playbackResource.removeEventListener(createjs.HTMLAudioPlugin._AUDIO_STALLED,this._stalledHandler,!1),this._handleSoundReady()},b._pause=function(){this._playbackResource.pause()},b._resume=function(){this._playbackResource.play()},b._updateVolume=function(){if(null!=this._playbackResource){var a=this._muted||createjs.Sound._masterMute?0:this._volume*createjs.Sound._masterVolume;a!=this._playbackResource.volume&&(this._playbackResource.volume=a)}},b._calculateCurrentPosition=function(){return 1e3*this._playbackResource.currentTime-this._startTime},b._updatePosition=function(){this._playbackResource.removeEventListener(createjs.HTMLAudioPlugin._AUDIO_SEEKED,this._loopHandler,!1),this._playbackResource.addEventListener(createjs.HTMLAudioPlugin._AUDIO_SEEKED,this._handleSetPositionSeek,!1);try{this._playbackResource.currentTime=.001*(this._position+this._startTime)}catch(a){this._handleSetPositionSeek(null)}},b._handleSetPositionSeek=function(a){null!=this._playbackResource&&(this._playbackResource.removeEventListener(createjs.HTMLAudioPlugin._AUDIO_SEEKED,this._handleSetPositionSeek,!1),this._playbackResource.addEventListener(createjs.HTMLAudioPlugin._AUDIO_SEEKED,this._loopHandler,!1))},b._handleAudioSpriteLoop=function(a){this._playbackResource.currentTime<=this._audioSpriteStopTime||(this._playbackResource.pause(),0==this._loop?this._handleSoundComplete(null):(this._position=0,this._loop--,this._playbackResource.currentTime=.001*this._startTime,this._paused||this._playbackResource.play(),this._sendEvent("loop")))},b._handleLoop=function(a){0==this._loop&&(this._playbackResource.loop=!1,this._playbackResource.removeEventListener(createjs.HTMLAudioPlugin._AUDIO_SEEKED,this._loopHandler,!1))},b._updateStartTime=function(){this._audioSpriteStopTime=.001*(this._startTime+this._duration),this.playState==createjs.Sound.PLAY_SUCCEEDED&&(this._playbackResource.removeEventListener(createjs.HTMLAudioPlugin._AUDIO_ENDED,this._endedHandler,!1),this._playbackResource.addEventListener(createjs.HTMLAudioPlugin._TIME_UPDATE,this._audioSpriteEndHandler,!1))},b._updateDuration=function(){this._audioSpriteStopTime=.001*(this._startTime+this._duration),this.playState==createjs.Sound.PLAY_SUCCEEDED&&(this._playbackResource.removeEventListener(createjs.HTMLAudioPlugin._AUDIO_ENDED,this._endedHandler,!1),this._playbackResource.addEventListener(createjs.HTMLAudioPlugin._TIME_UPDATE,this._audioSpriteEndHandler,!1))},b._setDurationFromSource=function(){this._duration=createjs.HTMLAudioTagPool.getDuration(this.src),this._playbackResource=null},createjs.HTMLAudioSoundInstance=createjs.promote(a,"AbstractSoundInstance")}(),this.createjs=this.createjs||{},function(){"use strict";function a(){this.AbstractPlugin_constructor(),this._capabilities=c._capabilities,this._loaderClass=createjs.SoundLoader,this._soundInstanceClass=createjs.HTMLAudioSoundInstance}var b=createjs.extend(a,createjs.AbstractPlugin),c=a;c.MAX_INSTANCES=30,c._AUDIO_READY="canplaythrough",c._AUDIO_ENDED="ended",c._AUDIO_SEEKED="seeked",c._AUDIO_STALLED="stalled",c._TIME_UPDATE="timeupdate",c._capabilities=null,c.isSupported=function(){return c._generateCapabilities(),null!=c._capabilities},c._generateCapabilities=function(){if(null==c._capabilities){var a=document.createElement("audio");if(null==a.canPlayType)return null;c._capabilities={panning:!1,volume:!0,tracks:-1};for(var b=createjs.Sound.SUPPORTED_EXTENSIONS,d=createjs.Sound.EXTENSION_MAP,e=0,f=b.length;f>e;e++){var g=b[e],h=d[g]||g;c._capabilities[g]="no"!=a.canPlayType("audio/"+g)&&""!=a.canPlayType("audio/"+g)||"no"!=a.canPlayType("audio/"+h)&&""!=a.canPlayType("audio/"+h)}}},b.register=function(a){var b=createjs.HTMLAudioTagPool.get(a.src),c=this.AbstractPlugin_register(a);return c.setTag(b),c},b.removeSound=function(a){this.AbstractPlugin_removeSound(a),createjs.HTMLAudioTagPool.remove(a)},b.create=function(a,b,c){var d=this.AbstractPlugin_create(a,b,c);return d.playbackResource=null,d},b.toString=function(){return"[HTMLAudioPlugin]"},b.setVolume=b.getVolume=b.setMute=null,createjs.HTMLAudioPlugin=createjs.promote(a,"AbstractPlugin")}(),this.createjs=this.createjs||{},function(){"use strict";function a(a){this.EventDispatcher_constructor(),this.ignoreGlobalPause=!1,this.loop=0,this.useTicks=!1,this.reversed=!1,this.bounce=!1,this.timeScale=1,this.duration=0,this.position=0,this.rawPosition=-1,this._paused=!0,this._next=null, +this._prev=null,this._parent=null,this._labels=null,this._labelList=null,a&&(this.useTicks=!!a.useTicks,this.ignoreGlobalPause=!!a.ignoreGlobalPause,this.loop=a.loop===!0?-1:a.loop||0,this.reversed=!!a.reversed,this.bounce=!!a.bounce,this.timeScale=a.timeScale||1,a.onChange&&this.addEventListener("change",a.onChange),a.onComplete&&this.addEventListener("complete",a.onComplete))}var b=createjs.extend(a,createjs.EventDispatcher);b._setPaused=function(a){return createjs.Tween._register(this,a),this},b.setPaused=createjs.deprecate(b._setPaused,"AbstractTween.setPaused"),b._getPaused=function(){return this._paused},b.getPaused=createjs.deprecate(b._getPaused,"AbstactTween.getPaused"),b._getCurrentLabel=function(a){var b=this.getLabels();null==a&&(a=this.position);for(var c=0,d=b.length;d>c&&!(aa&&(a=0),0===e){if(j=!0,-1!==g)return j}else{if(h=a/e|0,i=a-h*e,j=-1!==f&&a>=f*e+e,j&&(a=(i=e)*(h=f)+e),a===g)return j;var k=!this.reversed!=!(this.bounce&&h%2);k&&(i=e-i)}this.position=i,this.rawPosition=a,this._updatePosition(c,j),j&&(this.paused=!0),d&&d(this),b||this._runActions(g,a,c,!c&&-1===g),this.dispatchEvent("change"),j&&this.dispatchEvent("complete")},b.calculatePosition=function(a){var b=this.duration,c=this.loop,d=0,e=0;if(0===b)return 0;-1!==c&&a>=c*b+b?(e=b,d=c):0>a?e=0:(d=a/b|0,e=a-d*b);var f=!this.reversed!=!(this.bounce&&d%2);return f?b-e:e},b.getLabels=function(){var a=this._labelList;if(!a){a=this._labelList=[];var b=this._labels;for(var c in b)a.push({label:c,position:b[c]});a.sort(function(a,b){return a.position-b.position})}return a},b.setLabels=function(a){this._labels=a,this._labelList=null},b.addLabel=function(a,b){this._labels||(this._labels={}),this._labels[a]=b;var c=this._labelList;if(c){for(var d=0,e=c.length;e>d&&!(b l&&(h=i,f=l),e>l&&(g=i,e=l)),c)return this._runActionsRange(h,h,c,d);if(e!==f||g!==h||c||d){-1===e&&(e=g=0);var m=b>=a,n=e;do{var o=!j!=!(k&&n%2),p=n===e?g:m?0:i,q=n===f?h:m?i:0;if(o&&(p=i-p,q=i-q),k&&n!==e&&p===q);else if(this._runActionsRange(p,q,c,d||n!==e&&!k))return!0;d=!1}while(m&&++n<=f||!m&&--n>=f)}}},b._runActionsRange=function(a,b,c,d){},createjs.AbstractTween=createjs.promote(a,"EventDispatcher")}(),this.createjs=this.createjs||{},function(){"use strict";function a(c,d){this.AbstractTween_constructor(d),this.pluginData=null,this.target=c,this.passive=!1,this._stepHead=new b(null,0,0,{},null,!0),this._stepTail=this._stepHead,this._stepPosition=0,this._actionHead=null,this._actionTail=null,this._plugins=null,this._pluginIds=null,this._injected=null,d&&(this.pluginData=d.pluginData,d.override&&a.removeTweens(c)),this.pluginData||(this.pluginData={}),this._init(d)}function b(a,b,c,d,e,f){this.next=null,this.prev=a,this.t=b,this.d=c,this.props=d,this.ease=e,this.passive=f,this.index=a?a.index+1:0}function c(a,b,c,d,e){this.next=null,this.prev=a,this.t=b,this.d=0,this.scope=c,this.funct=d,this.params=e}var d=createjs.extend(a,createjs.AbstractTween);a.IGNORE={},a._tweens=[],a._plugins=null,a._tweenHead=null,a._tweenTail=null,a.get=function(b,c){return new a(b,c)},a.tick=function(b,c){for(var d=a._tweenHead;d;){var e=d._next;c&&!d.ignoreGlobalPause||d._paused||d.advance(d.useTicks?1:b),d=e}},a.handleEvent=function(a){"tick"===a.type&&this.tick(a.delta,a.paused)},a.removeTweens=function(b){if(b.tweenjs_count){for(var c=a._tweenHead;c;){var d=c._next;c.target===b&&a._register(c,!0),c=d}b.tweenjs_count=0}},a.removeAllTweens=function(){for(var b=a._tweenHead;b;){var c=b._next;b._paused=!0,b.target&&(b.target.tweenjs_count=0),b._next=b._prev=null,b=c}a._tweenHead=a._tweenTail=null},a.hasActiveTweens=function(b){return b?!!b.tweenjs_count:!!a._tweenHead},a._installPlugin=function(b){for(var c=b.priority=b.priority||0,d=a._plugins=a._plugins||[],e=0,f=d.length;f>e&&!(c 0&&this._addStep(+a,this._stepTail.props,null,b),this},d.to=function(a,b,c){(null==b||0>b)&&(b=0);var d=this._addStep(+b,null,c);return this._appendProps(a,d),this},d.label=function(a){return this.addLabel(a,this.duration),this},d.call=function(a,b,c){return this._addAction(c||this.target,a,b||[this])},d.set=function(a,b){return this._addAction(b||this.target,this._set,[a])},d.play=function(a){return this._addAction(a||this,this._set,[{paused:!1}])},d.pause=function(a){return this._addAction(a||this,this._set,[{paused:!0}])},d.w=d.wait,d.t=d.to,d.c=d.call,d.s=d.set,d.toString=function(){return"[Tween]"},d.clone=function(){throw"Tween can not be cloned."},d._addPlugin=function(a){var b=this._pluginIds||(this._pluginIds={}),c=a.ID;if(c&&!b[c]){b[c]=!0;for(var d=this._plugins||(this._plugins=[]),e=a.priority||0,f=0,g=d.length;g>f;f++)if(e =1?g:f,k)for(var m=0,n=k.length;n>m;m++){var o=k[m].change(this,b,l,e,c,d);if(o===a.IGNORE)continue a;void 0!==o&&(e=o)}this.target[l]=e}}},d._runActionsRange=function(a,b,c,d){var e=a>b,f=e?this._actionTail:this._actionHead,g=b,h=a;e&&(g=a,h=b);for(var i=this.position;f;){var j=f.t;if((j===b||j>h&&g>j||d&&j===a)&&(f.funct.apply(f.scope,f.params),i!==this.position))return!0;f=e?f.prev:f.next}},d._appendProps=function(b,c,d){var e,f,g,h,i,j=this._stepHead.props,k=this.target,l=a._plugins,m=c.prev,n=m.props,o=c.props||(c.props=this._cloneProps(n)),p={};for(e in b)if(b.hasOwnProperty(e)&&(p[e]=o[e]=b[e],void 0===j[e])){if(h=void 0,l)for(f=l.length-1;f>=0;f--)if(g=l[f].init(this,e,h),void 0!==g&&(h=g),h===a.IGNORE){delete o[e],delete p[e];break}h!==a.IGNORE&&(void 0===h&&(h=k[e]),n[e]=void 0===h?null:h)}for(e in p){g=b[e];for(var q,r=m;(q=r)&&(r=q.prev);)if(r.props!==q.props){if(void 0!==r.props[e])break;r.props[e]=n[e]}}if(d!==!1&&(l=this._plugins))for(f=l.length-1;f>=0;f--)l[f].step(this,c,p);(i=this._injected)&&(this._injected=null,this._appendProps(i,c,!1))},d._injectProp=function(a,b){var c=this._injected||(this._injected={});c[a]=b},d._addStep=function(a,c,d,e){var f=new b(this._stepTail,this.duration,a,c,d,e||!1);return this.duration+=a,this._stepTail=this._stepTail.next=f},d._addAction=function(a,b,d){var e=new c(this._actionTail,this.duration,a,b,d);return this._actionTail?this._actionTail.next=e:this._actionHead=e,this._actionTail=e,this},d._set=function(a){for(var b in a)this[b]=a[b]},d._cloneProps=function(a){var b={};for(var c in a)b[c]=a[c];return b},createjs.Tween=createjs.promote(a,"AbstractTween")}(),this.createjs=this.createjs||{},function(){"use strict";function a(a){var b,c;a instanceof Array||null==a&&arguments.length>1?(b=a,c=arguments[1],a=arguments[2]):a&&(b=a.tweens,c=a.labels),this.AbstractTween_constructor(a),this.tweens=[],b&&this.addTween.apply(this,b),this.setLabels(c),this._init(a)}var b=createjs.extend(a,createjs.AbstractTween);b.addTween=function(a){a._parent&&a._parent.removeTween(a);var b=arguments.length;if(b>1){for(var c=0;b>c;c++)this.addTween(arguments[c]);return arguments[b-1]}if(0===b)return null;this.tweens.push(a),a._parent=this,a.paused=!0;var d=a.duration;return a.loop>0&&(d*=a.loop+1),d>this.duration&&(this.duration=d),this.rawPosition>=0&&a.setPosition(this.rawPosition),a},b.removeTween=function(a){var b=arguments.length;if(b>1){for(var c=!0,d=0;b>d;d++)c=c&&this.removeTween(arguments[d]);return c}if(0===b)return!0;for(var e=this.tweens,d=e.length;d--;)if(e[d]===a)return e.splice(d,1),a._parent=null,a.duration>=this.duration&&this.updateDuration(),!0;return!1},b.updateDuration=function(){this.duration=0;for(var a=0,b=this.tweens.length;b>a;a++){var c=this.tweens[a],d=c.duration;c.loop>0&&(d*=c.loop+1),d>this.duration&&(this.duration=d)}},b.toString=function(){return"[Timeline]"},b.clone=function(){throw"Timeline can not be cloned."},b._updatePosition=function(a,b){for(var c=this.position,d=0,e=this.tweens.length;e>d;d++)this.tweens[d].setPosition(c,!0,a)},b._runActionsRange=function(a,b,c,d){for(var e=this.position,f=0,g=this.tweens.length;g>f;f++)if(this.tweens[f]._runActions(a,b,c,d),e!==this.position)return!0},createjs.Timeline=createjs.promote(a,"AbstractTween")}(),this.createjs=this.createjs||{},function(){"use strict";function a(){throw"Ease cannot be instantiated."}a.linear=function(a){return a},a.none=a.linear,a.get=function(a){return-1>a?a=-1:a>1&&(a=1),function(b){return 0==a?b:0>a?b*(b*-a+1+a):b*((2-b)*a+(1-a))}},a.getPowIn=function(a){return function(b){return Math.pow(b,a)}},a.getPowOut=function(a){return function(b){return 1-Math.pow(1-b,a)}},a.getPowInOut=function(a){return function(b){return(b*=2)<1?.5*Math.pow(b,a):1-.5*Math.abs(Math.pow(2-b,a))}},a.quadIn=a.getPowIn(2),a.quadOut=a.getPowOut(2),a.quadInOut=a.getPowInOut(2),a.cubicIn=a.getPowIn(3),a.cubicOut=a.getPowOut(3),a.cubicInOut=a.getPowInOut(3),a.quartIn=a.getPowIn(4),a.quartOut=a.getPowOut(4),a.quartInOut=a.getPowInOut(4),a.quintIn=a.getPowIn(5),a.quintOut=a.getPowOut(5),a.quintInOut=a.getPowInOut(5),a.sineIn=function(a){return 1-Math.cos(a*Math.PI/2)},a.sineOut=function(a){return Math.sin(a*Math.PI/2)},a.sineInOut=function(a){return-.5*(Math.cos(Math.PI*a)-1)},a.getBackIn=function(a){return function(b){return b*b*((a+1)*b-a)}},a.backIn=a.getBackIn(1.7),a.getBackOut=function(a){return function(b){return--b*b*((a+1)*b+a)+1}},a.backOut=a.getBackOut(1.7),a.getBackInOut=function(a){return a*=1.525,function(b){return(b*=2)<1?.5*(b*b*((a+1)*b-a)):.5*((b-=2)*b*((a+1)*b+a)+2)}},a.backInOut=a.getBackInOut(1.7),a.circIn=function(a){return-(Math.sqrt(1-a*a)-1)},a.circOut=function(a){return Math.sqrt(1- --a*a)},a.circInOut=function(a){return(a*=2)<1?-.5*(Math.sqrt(1-a*a)-1):.5*(Math.sqrt(1-(a-=2)*a)+1)},a.bounceIn=function(b){return 1-a.bounceOut(1-b)},a.bounceOut=function(a){return 1/2.75>a?7.5625*a*a:2/2.75>a?7.5625*(a-=1.5/2.75)*a+.75:2.5/2.75>a?7.5625*(a-=2.25/2.75)*a+.9375:7.5625*(a-=2.625/2.75)*a+.984375},a.bounceInOut=function(b){return.5>b?.5*a.bounceIn(2*b):.5*a.bounceOut(2*b-1)+.5},a.getElasticIn=function(a,b){var c=2*Math.PI;return function(d){if(0==d||1==d)return d;var e=b/c*Math.asin(1/a);return-(a*Math.pow(2,10*(d-=1))*Math.sin((d-e)*c/b))}},a.elasticIn=a.getElasticIn(1,.3),a.getElasticOut=function(a,b){var c=2*Math.PI;return function(d){if(0==d||1==d)return d;var e=b/c*Math.asin(1/a);return a*Math.pow(2,-10*d)*Math.sin((d-e)*c/b)+1}},a.elasticOut=a.getElasticOut(1,.3),a.getElasticInOut=function(a,b){var c=2*Math.PI;return function(d){var e=b/c*Math.asin(1/a);return(d*=2)<1?-.5*(a*Math.pow(2,10*(d-=1))*Math.sin((d-e)*c/b)):a*Math.pow(2,-10*(d-=1))*Math.sin((d-e)*c/b)*.5+1}},a.elasticInOut=a.getElasticInOut(1,.3*1.5),createjs.Ease=a}(),this.createjs=this.createjs||{},function(){"use strict";function a(){throw"MotionGuidePlugin cannot be instantiated."}var b=a;b.priority=0,b.ID="MotionGuide",b.install=function(){return createjs.Tween._installPlugin(a),createjs.Tween.IGNORE},b.init=function(a,c,d){"guide"==c&&a._addPlugin(b)},b.step=function(a,c,d){for(var e in d)if("guide"===e){var f=c.props.guide,g=b._solveGuideData(d.guide,f);f.valid=!g;var h=f.endData;if(a._injectProp("x",h.x),a._injectProp("y",h.y),g||!f.orient)break;var i=void 0===c.prev.props.rotation?a.target.rotation||0:c.prev.props.rotation;if(f.startOffsetRot=i-f.startData.rotation,"fixed"==f.orient)f.endAbsRot=h.rotation+f.startOffsetRot,f.deltaRotation=0;else{var j=void 0===d.rotation?a.target.rotation||0:d.rotation,k=j-f.endData.rotation-f.startOffsetRot,l=k%360;switch(f.endAbsRot=j,f.orient){case"auto":f.deltaRotation=k;break;case"cw":f.deltaRotation=(l+360)%360+360*Math.abs(k/360|0);break;case"ccw":f.deltaRotation=(l-360)%360+-360*Math.abs(k/360|0)}}a._injectProp("rotation",f.endAbsRot)}},b.change=function(a,c,d,e,f,g){var h=c.props.guide;if(h&&c.props!==c.prev.props&&h!==c.prev.props.guide)return"guide"===d&&!h.valid||"x"==d||"y"==d||"rotation"===d&&h.orient?createjs.Tween.IGNORE:void b._ratioToPositionData(f,h,a.target)},b.debug=function(a,c,d){a=a.guide||a;var e=b._findPathProblems(a);if(e&&console.error("MotionGuidePlugin Error found: \n"+e),!c)return e;var f,g=a.path,h=g.length,i=3,j=9;for(c.save(),c.lineCap="round",c.lineJoin="miter",c.beginPath(),c.moveTo(g[0],g[1]),f=2;h>f;f+=4)c.quadraticCurveTo(g[f],g[f+1],g[f+2],g[f+3]);c.strokeStyle="black",c.lineWidth=1.5*i,c.stroke(),c.strokeStyle="white",c.lineWidth=i,c.stroke(),c.closePath();var k=d.length;if(d&&k){var l={},m={};b._solveGuideData(a,l);for(var f=0;k>f;f++)l.orient="fixed",b._ratioToPositionData(d[f],l,m),c.beginPath(),c.moveTo(m.x,m.y),c.lineTo(m.x+Math.cos(.0174533*m.rotation)*j,m.y+Math.sin(.0174533*m.rotation)*j),c.strokeStyle="black",c.lineWidth=1.5*i,c.stroke(),c.strokeStyle="red",c.lineWidth=i,c.stroke(),c.closePath()}return c.restore(),e},b._solveGuideData=function(a,c){var d=void 0;if(d=b.debug(a))return d;var e=c.path=a.path;c.orient=a.orient;c.subLines=[],c.totalLength=0,c.startOffsetRot=0,c.deltaRotation=0,c.startData={ratio:0},c.endData={ratio:1},c.animSpan=1;var f,g,h,i,j,k,l,m,n,o=e.length,p=10,q={};for(f=e[0],g=e[1],l=2;o>l;l+=4){h=e[l],i=e[l+1],j=e[l+2],k=e[l+3];var r={weightings:[],estLength:0,portion:0},s=f,t=g;for(m=1;p>=m;m++){b._getParamsForCurve(f,g,h,i,j,k,m/p,!1,q);var u=q.x-s,v=q.y-t;n=Math.sqrt(u*u+v*v),r.weightings.push(n),r.estLength+=n,s=q.x,t=q.y}for(c.totalLength+=r.estLength,m=0;p>m;m++)n=r.estLength,r.weightings[m]=r.weightings[m]/n;c.subLines.push(r),f=j,g=k}n=c.totalLength;var w=c.subLines.length;for(l=0;w>l;l++)c.subLines[l].portion=c.subLines[l].estLength/n;var x=isNaN(a.start)?0:a.start,y=isNaN(a.end)?1:a.end;b._ratioToPositionData(x,c,c.startData),b._ratioToPositionData(y,c,c.endData),c.startData.ratio=x,c.endData.ratio=y,c.animSpan=c.endData.ratio-c.startData.ratio},b._ratioToPositionData=function(a,c,d){var e,f,g,h,i,j=c.subLines,k=0,l=10,m=a*c.animSpan+c.startData.ratio;for(f=j.length,e=0;f>e;e++){if(h=j[e].portion,k+h>=m){i=e;break}k+=h}void 0===i&&(i=f-1,k-=h);var n=j[i].weightings,o=h;for(f=n.length,e=0;f>e&&(h=n[e]*o,!(k+h>=m));e++)k+=h;i=4*i+2,g=e/l+(m-k)/h*(1/l);var p=c.path;return b._getParamsForCurve(p[i-2],p[i-1],p[i],p[i+1],p[i+2],p[i+3],g,c.orient,d),c.orient&&(a>=.99999&&1.00001>=a&&void 0!==c.endAbsRot?d.rotation=c.endAbsRot:d.rotation+=c.startOffsetRot+a*c.deltaRotation),d},b._getParamsForCurve=function(a,b,c,d,e,f,g,h,i){var j=1-g;i.x=j*j*a+2*j*g*c+g*g*e,i.y=j*j*b+2*j*g*d+g*g*f,h&&(i.rotation=57.2957795*Math.atan2((d-b)*j+(f-d)*g,(c-a)*j+(e-c)*g))},b._findPathProblems=function(a){var b=a.path,c=b&&b.length||0;if(6>c||(c-2)%4){var d=" Cannot parse 'path' array due to invalid number of entries in path. ";return d+="There should be an odd number of points, at least 3 points, and 2 entries per point (x & y). ",d+="See 'CanvasRenderingContext2D.quadraticCurveTo' for details as 'path' models a quadratic bezier.\n\n",d+="Only [ "+c+" ] values found. Expected: "+Math.max(4*Math.ceil((c-2)/4)+2,6)}for(var e=0;c>e;e++)if(isNaN(b[e]))return"All data in path array must be numeric";var f=a.start;if(isNaN(f)&&void 0!==f)return"'start' out of bounds. Expected 0 to 1, got: "+f;var g=a.end;if(isNaN(g)&&void 0!==g)return"'end' out of bounds. Expected 0 to 1, got: "+g;var h=a.orient;return h&&"fixed"!=h&&"auto"!=h&&"cw"!=h&&"ccw"!=h?'Invalid orientation value. Expected ["fixed", "auto", "cw", "ccw", undefined], got: '+h:void 0},createjs.MotionGuidePlugin=a}(),this.createjs=this.createjs||{},function(){"use strict";var a=createjs.TweenJS=createjs.TweenJS||{};a.version="1.0.0",a.buildDate="Thu, 12 Oct 2017 16:34:05 GMT"}(); \ No newline at end of file diff --git a/public/sounds/cai.mp3 b/public/sounds/cai.mp3 new file mode 100644 index 0000000..f36adbd Binary files /dev/null and b/public/sounds/cai.mp3 differ diff --git a/public/sounds/caibeijing.mp3 b/public/sounds/caibeijing.mp3 new file mode 100644 index 0000000..700256b Binary files /dev/null and b/public/sounds/caibeijing.mp3 differ diff --git a/public/source-code.html b/public/source-code.html new file mode 100644 index 0000000..dc3f6f7 --- /dev/null +++ b/public/source-code.html @@ -0,0 +1,81 @@ + + + + + + + source-code + + + + + + + + ++ ++ ++ + \ No newline at end of file diff --git a/public/source-code.js b/public/source-code.js new file mode 100644 index 0000000..3cf0b43 --- /dev/null +++ b/public/source-code.js @@ -0,0 +1,6057 @@ +(function (cjs, an) { + +var p; // shortcut to reference prototypes +var lib={};var ss={};var img={}; +lib.ssMetadata = [ + {name:"source_code_atlas_1", frames: [[968,722,150,138],[1282,618,482,251],[1064,1275,125,139],[0,722,482,251],[1191,1334,734,1],[484,722,482,251],[1191,1337,734,1],[1120,722,150,138],[1870,914,150,138],[1304,1034,150,138],[1456,1034,150,138],[1608,1034,150,138],[1760,1054,150,138],[902,1135,150,138],[1054,1135,150,138],[0,1138,150,138],[152,1138,150,138],[304,1138,150,138],[456,1138,150,138],[608,1138,150,138],[1206,1174,150,138],[1358,1174,150,138],[1510,1174,150,138],[1662,1194,150,138],[1814,1194,150,138],[760,1275,150,138],[912,1275,150,138],[0,1278,150,138],[968,871,449,161],[1419,871,449,161],[0,975,449,161],[451,975,449,161],[270,1278,107,42],[379,1278,107,42],[1766,500,61,218],[1282,0,435,307],[1282,309,435,307],[902,1034,400,99],[1959,589,76,80],[1992,320,46,124],[2005,113,13,5],[2038,9,6,6],[1959,743,83,54],[2018,78,25,9],[1912,1054,114,127],[2018,105,20,6],[2038,0,6,7],[152,1278,116,92],[2005,78,11,28],[1766,797,100,45],[1959,799,85,32],[1959,500,82,87],[2005,42,35,34],[2018,89,14,14],[1719,0,284,318],[1766,844,91,9],[1870,500,87,412],[1959,833,84,29],[2005,0,31,40],[1719,320,271,178],[760,1138,139,122],[0,0,1280,720],[1959,671,85,70],[1766,720,75,75]]} +]; + + +(lib.AnMovieClip = function(){ + this.actionFrames = []; + this.gotoAndPlay = function(positionOrLabel){ + cjs.MovieClip.prototype.gotoAndPlay.call(this,positionOrLabel); + } + this.play = function(){ + cjs.MovieClip.prototype.play.call(this); + } + this.gotoAndStop = function(positionOrLabel){ + cjs.MovieClip.prototype.gotoAndStop.call(this,positionOrLabel); + } + this.stop = function(){ + cjs.MovieClip.prototype.stop.call(this); + } +}).prototype = p = new cjs.MovieClip(); +// symbols: + + + +(lib.CachedBmp_56 = function() { + this.initialize(ss["source_code_atlas_1"]); + this.gotoAndStop(0); +}).prototype = p = new cjs.Sprite(); + + + +(lib.CachedBmp_55 = function() { + this.initialize(ss["source_code_atlas_1"]); + this.gotoAndStop(1); +}).prototype = p = new cjs.Sprite(); + + + +(lib.CachedBmp_54 = function() { + this.initialize(ss["source_code_atlas_1"]); + this.gotoAndStop(2); +}).prototype = p = new cjs.Sprite(); + + + +(lib.CachedBmp_53 = function() { + this.initialize(ss["source_code_atlas_1"]); + this.gotoAndStop(3); +}).prototype = p = new cjs.Sprite(); + + + +(lib.CachedBmp_52 = function() { + this.initialize(ss["source_code_atlas_1"]); + this.gotoAndStop(4); +}).prototype = p = new cjs.Sprite(); + + + +(lib.CachedBmp_51 = function() { + this.initialize(ss["source_code_atlas_1"]); + this.gotoAndStop(5); +}).prototype = p = new cjs.Sprite(); + + + +(lib.CachedBmp_50 = function() { + this.initialize(ss["source_code_atlas_1"]); + this.gotoAndStop(6); +}).prototype = p = new cjs.Sprite(); + + + +(lib.CachedBmp_49 = function() { + this.initialize(ss["source_code_atlas_1"]); + this.gotoAndStop(7); +}).prototype = p = new cjs.Sprite(); + + + +(lib.CachedBmp_48 = function() { + this.initialize(ss["source_code_atlas_1"]); + this.gotoAndStop(8); +}).prototype = p = new cjs.Sprite(); + + + +(lib.CachedBmp_47 = function() { + this.initialize(ss["source_code_atlas_1"]); + this.gotoAndStop(9); +}).prototype = p = new cjs.Sprite(); + + + +(lib.CachedBmp_46 = function() { + this.initialize(ss["source_code_atlas_1"]); + this.gotoAndStop(10); +}).prototype = p = new cjs.Sprite(); + + + +(lib.CachedBmp_45 = function() { + this.initialize(ss["source_code_atlas_1"]); + this.gotoAndStop(11); +}).prototype = p = new cjs.Sprite(); + + + +(lib.CachedBmp_44 = function() { + this.initialize(ss["source_code_atlas_1"]); + this.gotoAndStop(12); +}).prototype = p = new cjs.Sprite(); + + + +(lib.CachedBmp_43 = function() { + this.initialize(ss["source_code_atlas_1"]); + this.gotoAndStop(13); +}).prototype = p = new cjs.Sprite(); + + + +(lib.CachedBmp_42 = function() { + this.initialize(ss["source_code_atlas_1"]); + this.gotoAndStop(14); +}).prototype = p = new cjs.Sprite(); + + + +(lib.CachedBmp_41 = function() { + this.initialize(ss["source_code_atlas_1"]); + this.gotoAndStop(15); +}).prototype = p = new cjs.Sprite(); + + + +(lib.CachedBmp_40 = function() { + this.initialize(ss["source_code_atlas_1"]); + this.gotoAndStop(16); +}).prototype = p = new cjs.Sprite(); + + + +(lib.CachedBmp_39 = function() { + this.initialize(ss["source_code_atlas_1"]); + this.gotoAndStop(17); +}).prototype = p = new cjs.Sprite(); + + + +(lib.CachedBmp_38 = function() { + this.initialize(ss["source_code_atlas_1"]); + this.gotoAndStop(18); +}).prototype = p = new cjs.Sprite(); + + + +(lib.CachedBmp_37 = function() { + this.initialize(ss["source_code_atlas_1"]); + this.gotoAndStop(19); +}).prototype = p = new cjs.Sprite(); + + + +(lib.CachedBmp_36 = function() { + this.initialize(ss["source_code_atlas_1"]); + this.gotoAndStop(20); +}).prototype = p = new cjs.Sprite(); + + + +(lib.CachedBmp_35 = function() { + this.initialize(ss["source_code_atlas_1"]); + this.gotoAndStop(21); +}).prototype = p = new cjs.Sprite(); + + + +(lib.CachedBmp_34 = function() { + this.initialize(ss["source_code_atlas_1"]); + this.gotoAndStop(22); +}).prototype = p = new cjs.Sprite(); + + + +(lib.CachedBmp_33 = function() { + this.initialize(ss["source_code_atlas_1"]); + this.gotoAndStop(23); +}).prototype = p = new cjs.Sprite(); + + + +(lib.CachedBmp_32 = function() { + this.initialize(ss["source_code_atlas_1"]); + this.gotoAndStop(24); +}).prototype = p = new cjs.Sprite(); + + + +(lib.CachedBmp_31 = function() { + this.initialize(ss["source_code_atlas_1"]); + this.gotoAndStop(25); +}).prototype = p = new cjs.Sprite(); + + + +(lib.CachedBmp_30 = function() { + this.initialize(ss["source_code_atlas_1"]); + this.gotoAndStop(26); +}).prototype = p = new cjs.Sprite(); + + + +(lib.CachedBmp_29 = function() { + this.initialize(ss["source_code_atlas_1"]); + this.gotoAndStop(27); +}).prototype = p = new cjs.Sprite(); + + + +(lib.Bitmap2 = function() { + this.initialize(ss["source_code_atlas_1"]); + this.gotoAndStop(28); +}).prototype = p = new cjs.Sprite(); + + + +(lib.Bitmap3 = function() { + this.initialize(ss["source_code_atlas_1"]); + this.gotoAndStop(29); +}).prototype = p = new cjs.Sprite(); + + + +(lib.Bitmap4 = function() { + this.initialize(ss["source_code_atlas_1"]); + this.gotoAndStop(30); +}).prototype = p = new cjs.Sprite(); + + + +(lib.Bitmap5 = function() { + this.initialize(ss["source_code_atlas_1"]); + this.gotoAndStop(31); +}).prototype = p = new cjs.Sprite(); + + + +(lib.stopDemo = function() { + this.initialize(ss["source_code_atlas_1"]); + this.gotoAndStop(32); +}).prototype = p = new cjs.Sprite(); + + + +(lib.suspend = function() { + this.initialize(ss["source_code_atlas_1"]); + this.gotoAndStop(33); +}).prototype = p = new cjs.Sprite(); + + + +(lib.不动 = function() { + this.initialize(ss["source_code_atlas_1"]); + this.gotoAndStop(34); +}).prototype = p = new cjs.Sprite(); + + + +(lib.任务完成_ = function() { + this.initialize(ss["source_code_atlas_1"]); + this.gotoAndStop(35); +}).prototype = p = new cjs.Sprite(); + + + +(lib.倒计时_ = function() { + this.initialize(ss["source_code_atlas_1"]); + this.gotoAndStop(36); +}).prototype = p = new cjs.Sprite(); + + + +(lib.再来一次_ = function() { + this.initialize(ss["source_code_atlas_1"]); + this.gotoAndStop(37); +}).prototype = p = new cjs.Sprite(); + + + +(lib.动腿大腿 = function() { + this.initialize(ss["source_code_atlas_1"]); + this.gotoAndStop(38); +}).prototype = p = new cjs.Sprite(); + + + +(lib.动腿小腿 = function() { + this.initialize(ss["source_code_atlas_1"]); + this.gotoAndStop(39); +}).prototype = p = new cjs.Sprite(); + + + +(lib.右眉毛 = function() { + this.initialize(ss["source_code_atlas_1"]); + this.gotoAndStop(40); +}).prototype = p = new cjs.Sprite(); + + + +(lib.右眼 = function() { + this.initialize(ss["source_code_atlas_1"]); + this.gotoAndStop(41); +}).prototype = p = new cjs.Sprite(); + + + +(lib.右胳膊小臂 = function() { + this.initialize(ss["source_code_atlas_1"]); + this.gotoAndStop(42); +}).prototype = p = new cjs.Sprite(); + + + +(lib.嘴 = function() { + this.initialize(ss["source_code_atlas_1"]); + this.gotoAndStop(43); +}).prototype = p = new cjs.Sprite(); + + + +(lib.头 = function() { + this.initialize(ss["source_code_atlas_1"]); + this.gotoAndStop(44); +}).prototype = p = new cjs.Sprite(); + + + +(lib.左眉毛 = function() { + this.initialize(ss["source_code_atlas_1"]); + this.gotoAndStop(45); +}).prototype = p = new cjs.Sprite(); + + + +(lib.左眼 = function() { + this.initialize(ss["source_code_atlas_1"]); + this.gotoAndStop(46); +}).prototype = p = new cjs.Sprite(); + + + +(lib.左胳膊小臂 = function() { + this.initialize(ss["source_code_atlas_1"]); + this.gotoAndStop(47); +}).prototype = p = new cjs.Sprite(); + + + +(lib.形状2 = function() { + this.initialize(ss["source_code_atlas_1"]); + this.gotoAndStop(48); +}).prototype = p = new cjs.Sprite(); + + + +(lib.形状23 = function() { + this.initialize(ss["source_code_atlas_1"]); + this.gotoAndStop(49); +}).prototype = p = new cjs.Sprite(); + + + +(lib.形状33 = function() { + this.initialize(ss["source_code_atlas_1"]); + this.gotoAndStop(50); +}).prototype = p = new cjs.Sprite(); + + + +(lib.微笑 = function() { + this.initialize(ss["source_code_atlas_1"]); + this.gotoAndStop(51); +}).prototype = p = new cjs.Sprite(); + + + +(lib.拳头 = function() { + this.initialize(ss["source_code_atlas_1"]); + this.gotoAndStop(52); +}).prototype = p = new cjs.Sprite(); + + + +(lib.椭圆3 = function() { + this.initialize(ss["source_code_atlas_1"]); + this.gotoAndStop(53); +}).prototype = p = new cjs.Sprite(); + + + +(lib.气球png复制 = function() { + this.initialize(ss["source_code_atlas_1"]); + this.gotoAndStop(54); +}).prototype = p = new cjs.Sprite(); + + + +(lib.矩形2 = function() { + this.initialize(ss["source_code_atlas_1"]); + this.gotoAndStop(55); +}).prototype = p = new cjs.Sprite(); + + + +(lib.组13 = function() { + this.initialize(ss["source_code_atlas_1"]); + this.gotoAndStop(56); +}).prototype = p = new cjs.Sprite(); + + + +(lib.组16 = function() { + this.initialize(ss["source_code_atlas_1"]); + this.gotoAndStop(57); +}).prototype = p = new cjs.Sprite(); + + + +(lib.组17 = function() { + this.initialize(ss["source_code_atlas_1"]); + this.gotoAndStop(58); +}).prototype = p = new cjs.Sprite(); + + + +(lib.组18 = function() { + this.initialize(ss["source_code_atlas_1"]); + this.gotoAndStop(59); +}).prototype = p = new cjs.Sprite(); + + + +(lib.组20 = function() { + this.initialize(ss["source_code_atlas_1"]); + this.gotoAndStop(60); +}).prototype = p = new cjs.Sprite(); + + + +(lib.背景 = function() { + this.initialize(ss["source_code_atlas_1"]); + this.gotoAndStop(61); +}).prototype = p = new cjs.Sprite(); + + + +(lib.计时_ = function() { + this.initialize(ss["source_code_atlas_1"]); + this.gotoAndStop(62); +}).prototype = p = new cjs.Sprite(); + + + +(lib.返回按钮_ = function() { + this.initialize(ss["source_code_atlas_1"]); + this.gotoAndStop(63); +}).prototype = p = new cjs.Sprite(); +// helper functions: + +function mc_symbol_clone() { + var clone = this._cloneProps(new this.constructor(this.mode, this.startPosition, this.loop, this.reversed)); + clone.gotoAndStop(this.currentFrame); + clone.paused = this.paused; + clone.framerate = this.framerate; + return clone; +} + +function getMCSymbolPrototype(symbol, nominalBounds, frameBounds) { + var prototype = cjs.extend(symbol, cjs.MovieClip); + prototype.clone = mc_symbol_clone; + prototype.nominalBounds = nominalBounds; + prototype.frameBounds = frameBounds; + return prototype; + } + + +(lib.补间103 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.shape = new cjs.Shape(); + var sprImg_shape = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape.onload = function(){ + this.shape.graphics.bf(sprImg_shape, null, new cjs.Matrix2D(0.662,0.516,-0.516,0.662,-12.3,-179.9)).s().p("A7gE/MAZpgg4IdYW7MgZpAg3g") + }.bind(this); + this.shape.setTransform(0.025,0); + + this.timeline.addTween(cjs.Tween.get(this.shape).wait(1)); + + this._renderFirstFrame(); + +}).prototype = p = new cjs.MovieClip(); +p.nominalBounds = new cjs.Rectangle(-176.1,-178.5,352.29999999999995,357.1); + + +(lib.补间102 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.shape = new cjs.Shape(); + var sprImg_shape = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape.onload = function(){ + this.shape.graphics.bf(sprImg_shape, null, new cjs.Matrix2D(0.84,0,0,0.84,-120.3,-134.3)).s().p("AyoU2MAAAgprMAlRAAAMAAAAprg") + }.bind(this); + this.shape.setTransform(0.025,0); + + this.timeline.addTween(cjs.Tween.get(this.shape).wait(1)); + + this._renderFirstFrame(); + +}).prototype = p = new cjs.MovieClip(); +p.nominalBounds = new cjs.Rectangle(-119.2,-133.4,238.5,266.9); + + +(lib.补间85 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.instance = new lib.微笑(); + this.instance.setTransform(-44.45,-39.95,1,1,-4.744); + + this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); + + this._renderFirstFrame(); + +}).prototype = p = new cjs.MovieClip(); +p.nominalBounds = new cjs.Rectangle(-44.4,-46.7,88.9,93.5); + + +(lib.补间84 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.shape = new cjs.Shape(); + this.shape.graphics.f().s("#000000").ss(1,1,1).p("AC8hAIAFAJQADAJgOAGIkoB+QgdAIgXgLQgtgVAehbIAOgOQAVgRAhgKQBqgjC9Aj"); + this.shape.setTransform(0.0145,-0.0004); + + this.shape_1 = new cjs.Shape(); + this.shape_1.graphics.f("#B30002").s().p("AilBTQgugWAfhaIAOgOQAUgRAhgKQBqgkC+AkIAFAGIAGAJIgLAPIkpB+QgMADgLAAQgPAAgNgGg"); + this.shape_1.setTransform(-0.012,-0.0004); + + this.timeline.addTween(cjs.Tween.get({}).to({state:[{t:this.shape_1},{t:this.shape}]}).wait(1)); + + this._renderFirstFrame(); + +}).prototype = p = new cjs.MovieClip(); +p.nominalBounds = new cjs.Rectangle(-20.3,-9.9,40.7,19.8); + + +(lib.补间72 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.shape = new cjs.Shape(); + this.shape.graphics.f().s("#333333").ss(1,1,1).p("AAxitIiaE2IALAXQAUAVAqgLQApgLA1ibIAsiYQgMgBgNgDQgagHgGgOg"); + this.shape.setTransform(0.025,-0.0109); + + this.shape_1 = new cjs.Shape(); + this.shape_1.graphics.f("#B30002").s().p("AheCgIgLgXICak2QAGAOAaAHQANADAMABIgsCYQg1CbgpALQgOAEgMAAQgXAAgNgOg"); + this.shape_1.setTransform(0.025,-0.0109); + + this.timeline.addTween(cjs.Tween.get({}).to({state:[{t:this.shape_1},{t:this.shape}]}).wait(1)); + + this._renderFirstFrame(); + +}).prototype = p = new cjs.MovieClip(); +p.nominalBounds = new cjs.Rectangle(-11.5,-18.4,23.1,36.8); + + +(lib.补间71 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.instance = new lib.头(); + this.instance.setTransform(-57,-63.5); + + this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); + + this._renderFirstFrame(); + +}).prototype = p = new cjs.MovieClip(); +p.nominalBounds = new cjs.Rectangle(-57,-63.5,114,127); + + +(lib.补间70 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.instance = new lib.头(); + this.instance.setTransform(-57,-63.5); + + this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); + + this._renderFirstFrame(); + +}).prototype = p = new cjs.MovieClip(); +p.nominalBounds = new cjs.Rectangle(-57,-63.5,114,127); + + +(lib.补间68 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.instance = new lib.左眉毛(); + this.instance.setTransform(-10,-3); + + this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); + + this._renderFirstFrame(); + +}).prototype = p = new cjs.MovieClip(); +p.nominalBounds = new cjs.Rectangle(-10,-3,20,6); + + +(lib.补间66 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.instance = new lib.右眉毛(); + this.instance.setTransform(-6.5,-2.5); + + this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); + + this._renderFirstFrame(); + +}).prototype = p = new cjs.MovieClip(); +p.nominalBounds = new cjs.Rectangle(-6.5,-2.5,13,5); + + +(lib.补间65 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.instance = new lib.左眼(); + this.instance.setTransform(-3,-3.5); + + this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); + + this._renderFirstFrame(); + +}).prototype = p = new cjs.MovieClip(); +p.nominalBounds = new cjs.Rectangle(-3,-3.5,6,7); + + +(lib.补间64 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.instance = new lib.左眼(); + this.instance.setTransform(-3,-3.5); + + this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); + + this._renderFirstFrame(); + +}).prototype = p = new cjs.MovieClip(); +p.nominalBounds = new cjs.Rectangle(-3,-3.5,6,7); + + +(lib.补间63 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.instance = new lib.右眼(); + this.instance.setTransform(-3,-3); + + this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); + + this._renderFirstFrame(); + +}).prototype = p = new cjs.MovieClip(); +p.nominalBounds = new cjs.Rectangle(-3,-3,6,6); + + +(lib.补间62 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.instance = new lib.右眼(); + this.instance.setTransform(-3,-3); + + this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); + + this._renderFirstFrame(); + +}).prototype = p = new cjs.MovieClip(); +p.nominalBounds = new cjs.Rectangle(-3,-3,6,6); + + +(lib.补间61 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.instance = new lib.形状2(); + this.instance.setTransform(-5.5,-14); + + this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); + + this._renderFirstFrame(); + +}).prototype = p = new cjs.MovieClip(); +p.nominalBounds = new cjs.Rectangle(-5.5,-14,11,28); + + +(lib.补间60 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.instance = new lib.形状2(); + this.instance.setTransform(-5.5,-14); + + this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); + + this._renderFirstFrame(); + +}).prototype = p = new cjs.MovieClip(); +p.nominalBounds = new cjs.Rectangle(-5.5,-14,11,28); + + +(lib.补间59 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.instance = new lib.嘴(); + this.instance.setTransform(-12.5,-4.5); + + this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); + + this._renderFirstFrame(); + +}).prototype = p = new cjs.MovieClip(); +p.nominalBounds = new cjs.Rectangle(-12.5,-4.5,25,9); + + +(lib.补间58 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.instance = new lib.嘴(); + this.instance.setTransform(-12.5,-4.5); + + this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); + + this._renderFirstFrame(); + +}).prototype = p = new cjs.MovieClip(); +p.nominalBounds = new cjs.Rectangle(-12.5,-4.5,25,9); + + +(lib.苹果返回按钮 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + this._renderFirstFrame(); + +}).prototype = p = new cjs.MovieClip(); +p.nominalBounds = new cjs.Rectangle(0,0,0,0); + + +(lib.元件259 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.instance = new lib.组20(); + + this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); + + this._renderFirstFrame(); + +}).prototype = getMCSymbolPrototype(lib.元件259, new cjs.Rectangle(0,0,139,122), null); + + +(lib.元件236 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.instance = new lib.形状33(); + + this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); + + this._renderFirstFrame(); + +}).prototype = getMCSymbolPrototype(lib.元件236, new cjs.Rectangle(0,0,85,32), null); + + +(lib.元件235 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.instance = new lib.形状23(); + + this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); + + this._renderFirstFrame(); + +}).prototype = getMCSymbolPrototype(lib.元件235, new cjs.Rectangle(0,0,100,45), null); + + +(lib.元件109 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.instance = new lib.左胳膊小臂(); + + this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); + + this._renderFirstFrame(); + +}).prototype = getMCSymbolPrototype(lib.元件109, new cjs.Rectangle(0,0,116,92), null); + + +(lib.元件107 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.instance = new lib.右胳膊小臂(); + + this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); + + this._renderFirstFrame(); + +}).prototype = getMCSymbolPrototype(lib.元件107, new cjs.Rectangle(0,0,83,54), null); + + +(lib.元件106 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.instance = new lib.组18(); + + this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); + + this._renderFirstFrame(); + +}).prototype = getMCSymbolPrototype(lib.元件106, new cjs.Rectangle(0,0,271,178), null); + + +(lib.元件7 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + this._renderFirstFrame(); + +}).prototype = p = new cjs.MovieClip(); +p.nominalBounds = new cjs.Rectangle(0,0,0,0); + + +(lib.元件6 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.shape = new cjs.Shape(); + this.shape.graphics.f().s("#000000").ss(1,1,1).p("AA0gNQAFAQgMARQgNAQgVAGQgVAFgSgHQgTgJgFgRQgEgQAMgQQAMgRAWgFQAUgGATAIQATAIAEARg"); + this.shape.setTransform(5.3619,4.3878); + + this.shape_1 = new cjs.Shape(); + this.shape_1.graphics.f("#FCAEAC").s().p("AgcAoQgTgJgFgRQgEgQAMgQQAMgRAWgFQAUgGATAIQATAIAEARQAFAQgMARQgNAQgVAGQgJACgIAAQgLAAgLgEg"); + this.shape_1.setTransform(5.3619,4.3878); + + this.timeline.addTween(cjs.Tween.get({}).to({state:[{t:this.shape_1},{t:this.shape}]}).wait(1)); + + this._renderFirstFrame(); + +}).prototype = p = new cjs.MovieClip(); +p.nominalBounds = new cjs.Rectangle(-1,-1,12.8,10.8); + + +(lib.元件5 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.shape = new cjs.Shape(); + this.shape.graphics.f().s("#000000").ss(1,1,1).p("AC8hAIAFAJQADAJgOAGIkoB+QgdAIgXgLQgtgVAehbIAOgOQAVgRAhgKQBqgjC9Aj"); + this.shape.setTransform(19.3645,8.8996); + + this.shape_1 = new cjs.Shape(); + this.shape_1.graphics.f("#B30002").s().p("AilBTQgugWAfhaIAOgPQAUgQAhgLQBqgiC+AjIAFAGIAGAJIgLAPIkpB+QgMADgLAAQgPAAgNgGg"); + this.shape_1.setTransform(19.338,8.8996); + + this.timeline.addTween(cjs.Tween.get({}).to({state:[{t:this.shape_1},{t:this.shape}]}).wait(1)); + + this._renderFirstFrame(); + +}).prototype = p = new cjs.MovieClip(); +p.nominalBounds = new cjs.Rectangle(-1,-1,40.8,19.8); + + +(lib.元件3 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.instance = new lib.组17(); + this.instance.setTransform(14,102); + + this.instance_1 = new lib.动腿小腿(); + + this.timeline.addTween(cjs.Tween.get({}).to({state:[{t:this.instance_1},{t:this.instance}]}).wait(1)); + + this._renderFirstFrame(); + +}).prototype = p = new cjs.MovieClip(); +p.nominalBounds = new cjs.Rectangle(0,0,46,142); + + +(lib.timeBg = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + this.isSingleFrame = false; + // timeline functions: + this.frame_0 = function() { + if(this.isSingleFrame) { + return; + } + if(this.totalFrames == 1) { + this.isSingleFrame = true; + } + this.stop(); + } + + // actions tween: + this.timeline.addTween(cjs.Tween.get(this).call(this.frame_0).wait(1)); + + // timeBg + this.instance = new lib.计时_(); + this.instance.setTransform(-60,-49,1.4117,1.4114); + + this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); + + this._renderFirstFrame(); + +}).prototype = getMCSymbolPrototype(lib.timeBg, new cjs.Rectangle(-60,-49,120,98.8), null); + + +(lib.Suspend = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.instance = new lib.suspend(); + this.instance.setTransform(138,-21); + + this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); + + this._renderFirstFrame(); + +}).prototype = getMCSymbolPrototype(lib.Suspend, new cjs.Rectangle(138,-21,107,42), null); + + +(lib.stopDemo_1 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.instance = new lib.stopDemo(); + this.instance.setTransform(0,-20); + + this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); + + this._renderFirstFrame(); + +}).prototype = getMCSymbolPrototype(lib.stopDemo_1, new cjs.Rectangle(0,-20,107,42), null); + + +(lib.Level = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {"level-1":0,"level-2":1,"level-3":2,"level-4":3}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // timeline functions: + this.frame_0 = function() { + this.stop(); + } + this.frame_1 = function() { + this.stop(); + } + this.frame_2 = function() { + this.stop(); + } + this.frame_3 = function() { + this.stop(); + } + + // actions tween: + this.timeline.addTween(cjs.Tween.get(this).call(this.frame_0).wait(1).call(this.frame_1).wait(1).call(this.frame_2).wait(1).call(this.frame_3).wait(3)); + + // level_layer + this.instance = new lib.Bitmap2(); + this.instance.setTransform(-105,-38,0.4658,0.4658); + + this.instance_1 = new lib.Bitmap3(); + this.instance_1.setTransform(-105,-38,0.4658,0.4658); + + this.instance_2 = new lib.Bitmap4(); + this.instance_2.setTransform(-105,-38,0.4658,0.4658); + + this.instance_3 = new lib.Bitmap5(); + this.instance_3.setTransform(-105,-38,0.4658,0.4658); + + this.text = new cjs.Text("困难", "87px 'Arial'", "#FFFFFF"); + this.text.textAlign = "center"; + this.text.lineHeight = 124; + this.text.lineWidth = 188; + this.text.parent = this; + this.text.setTransform(58,-71.5); + + this.timeline.addTween(cjs.Tween.get({}).to({state:[{t:this.instance}]}).to({state:[{t:this.instance_1}]},1).to({state:[{t:this.instance_2}]},1).to({state:[{t:this.instance_3}]},1).to({state:[]},1).to({state:[{t:this.text}]},1).wait(1)); + + this._renderFirstFrame(); + +}).prototype = p = new cjs.MovieClip(); +p.nominalBounds = new cjs.Rectangle(-105,-73.5,258.8,130); + + +(lib.bgModalEnd = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.instance = new lib.任务完成_(); + this.instance.setTransform(-218,-154); + + this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); + + this._renderFirstFrame(); + +}).prototype = getMCSymbolPrototype(lib.bgModalEnd, new cjs.Rectangle(-218,-154,435,307), null); + + +(lib.btnBack = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.instance = new lib.返回按钮_(); + this.instance.setTransform(0,-38); + + this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); + + this._renderFirstFrame(); + +}).prototype = getMCSymbolPrototype(lib.btnBack, new cjs.Rectangle(0,-38,75,75), null); + + +(lib.bgModalBegin = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.instance = new lib.倒计时_(); + this.instance.setTransform(-218,-154); + + this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); + + this._renderFirstFrame(); + +}).prototype = getMCSymbolPrototype(lib.bgModalBegin, new cjs.Rectangle(-218,-154,435,307), null); + + +(lib.btnAgain = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.instance = new lib.再来一次_(); + this.instance.setTransform(-200,-49); + + this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); + + this._renderFirstFrame(); + +}).prototype = getMCSymbolPrototype(lib.btnAgain, new cjs.Rectangle(-200,-49,400,99), null); + + +(lib.元件102 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.instance = new lib.补间72("synched",0); + + this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); + + this._renderFirstFrame(); + +}).prototype = getMCSymbolPrototype(lib.元件102, new cjs.Rectangle(-11.5,-18.4,23.1,36.8), null); + + +(lib.元件101 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.instance = new lib.补间72("synched",0); + + this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); + + this._renderFirstFrame(); + +}).prototype = getMCSymbolPrototype(lib.元件101, new cjs.Rectangle(-11.5,-18.4,23.1,36.8), null); + + +(lib.元件99 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.instance = new lib.补间72("synched",0); + + this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); + + this._renderFirstFrame(); + +}).prototype = getMCSymbolPrototype(lib.元件99, new cjs.Rectangle(-11.5,-18.4,23.1,36.8), null); + + +(lib.元件97 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.instance = new lib.补间72("synched",0); + + this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); + + this._renderFirstFrame(); + +}).prototype = getMCSymbolPrototype(lib.元件97, new cjs.Rectangle(-11.5,-18.4,23.1,36.8), null); + + +(lib.元件95 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.instance = new lib.补间72("synched",0); + + this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); + + this._renderFirstFrame(); + +}).prototype = getMCSymbolPrototype(lib.元件95, new cjs.Rectangle(-11.5,-18.4,23.1,36.8), null); + + +(lib.元件93 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.instance = new lib.补间72("synched",0); + + this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); + + this._renderFirstFrame(); + +}).prototype = getMCSymbolPrototype(lib.元件93, new cjs.Rectangle(-11.5,-18.4,23.1,36.8), null); + + +(lib.元件91 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.instance = new lib.补间72("synched",0); + + this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); + + this._renderFirstFrame(); + +}).prototype = getMCSymbolPrototype(lib.元件91, new cjs.Rectangle(-11.5,-18.4,23.1,36.8), null); + + +(lib.元件89 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.instance = new lib.补间72("synched",0); + + this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); + + this._renderFirstFrame(); + +}).prototype = getMCSymbolPrototype(lib.元件89, new cjs.Rectangle(-11.5,-18.4,23.1,36.8), null); + + +(lib.元件87 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.instance = new lib.补间72("synched",0); + + this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); + + this._renderFirstFrame(); + +}).prototype = getMCSymbolPrototype(lib.元件87, new cjs.Rectangle(-11.5,-18.4,23.1,36.8), null); + + +(lib.元件85 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.instance = new lib.补间72("synched",0); + + this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); + + this._renderFirstFrame(); + +}).prototype = getMCSymbolPrototype(lib.元件85, new cjs.Rectangle(-11.5,-18.4,23.1,36.8), null); + + +(lib.元件83 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.instance = new lib.补间72("synched",0); + + this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); + + this._renderFirstFrame(); + +}).prototype = getMCSymbolPrototype(lib.元件83, new cjs.Rectangle(-11.5,-18.4,23.1,36.8), null); + + +(lib.元件81 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.instance = new lib.补间72("synched",0); + + this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); + + this._renderFirstFrame(); + +}).prototype = getMCSymbolPrototype(lib.元件81, new cjs.Rectangle(-11.5,-18.4,23.1,36.8), null); + + +(lib.元件77 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.instance = new lib.补间72("synched",0); + + this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); + + this._renderFirstFrame(); + +}).prototype = getMCSymbolPrototype(lib.元件77, new cjs.Rectangle(-11.5,-18.4,23.1,36.8), null); + + +(lib.元件75 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.instance = new lib.补间72("synched",0); + + this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); + + this._renderFirstFrame(); + +}).prototype = getMCSymbolPrototype(lib.元件75, new cjs.Rectangle(-11.5,-18.4,23.1,36.8), null); + + +(lib.元件73 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.instance = new lib.补间72("synched",0); + + this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); + + this._renderFirstFrame(); + +}).prototype = getMCSymbolPrototype(lib.元件73, new cjs.Rectangle(-11.5,-18.4,23.1,36.8), null); + + +(lib.元件71 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.instance = new lib.补间72("synched",0); + + this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); + + this._renderFirstFrame(); + +}).prototype = getMCSymbolPrototype(lib.元件71, new cjs.Rectangle(-11.5,-18.4,23.1,36.8), null); + + +(lib.元件69 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.instance = new lib.补间72("synched",0); + + this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); + + this._renderFirstFrame(); + +}).prototype = getMCSymbolPrototype(lib.元件69, new cjs.Rectangle(-11.5,-18.4,23.1,36.8), null); + + +(lib.元件67 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.instance = new lib.补间72("synched",0); + + this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); + + this._renderFirstFrame(); + +}).prototype = getMCSymbolPrototype(lib.元件67, new cjs.Rectangle(-11.5,-18.4,23.1,36.8), null); + + +(lib.元件65 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.instance = new lib.补间72("synched",0); + + this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); + + this._renderFirstFrame(); + +}).prototype = getMCSymbolPrototype(lib.元件65, new cjs.Rectangle(-11.5,-18.4,23.1,36.8), null); + + +(lib.元件63 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.instance = new lib.补间72("synched",0); + + this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); + + this._renderFirstFrame(); + +}).prototype = getMCSymbolPrototype(lib.元件63, new cjs.Rectangle(-11.5,-18.4,23.1,36.8), null); + + +(lib.元件61 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.instance = new lib.补间72("synched",0); + + this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); + + this._renderFirstFrame(); + +}).prototype = getMCSymbolPrototype(lib.元件61, new cjs.Rectangle(-11.5,-18.4,23.1,36.8), null); + + +(lib.元件56 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.instance = new lib.补间84("synched",0); + + this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); + + this._renderFirstFrame(); + +}).prototype = getMCSymbolPrototype(lib.元件56, new cjs.Rectangle(-20.3,-9.9,40.7,19.8), null); + + +(lib.元件55 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.instance = new lib.补间84("synched",0); + + this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); + + this._renderFirstFrame(); + +}).prototype = getMCSymbolPrototype(lib.元件55, new cjs.Rectangle(-20.3,-9.9,40.7,19.8), null); + + +(lib.元件54 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.instance = new lib.元件5("synched",0); + this.instance.setTransform(0.05,0,1,1,0,0,0,19.4,8.9); + + this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); + + this._renderFirstFrame(); + +}).prototype = getMCSymbolPrototype(lib.元件54, new cjs.Rectangle(-20.3,-9.9,40.7,19.8), null); + + +(lib.元件52 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.instance = new lib.补间84("synched",0); + + this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); + + this._renderFirstFrame(); + +}).prototype = getMCSymbolPrototype(lib.元件52, new cjs.Rectangle(-20.3,-9.9,40.7,19.8), null); + + +(lib.元件51 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.instance = new lib.元件5("synched",0); + this.instance.setTransform(0.05,0,1,1,0,0,0,19.4,8.9); + + this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); + + this._renderFirstFrame(); + +}).prototype = getMCSymbolPrototype(lib.元件51, new cjs.Rectangle(-20.3,-9.9,40.7,19.8), null); + + +(lib.元件50 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.instance = new lib.补间84("synched",0); + + this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); + + this._renderFirstFrame(); + +}).prototype = getMCSymbolPrototype(lib.元件50, new cjs.Rectangle(-20.3,-9.9,40.7,19.8), null); + + +(lib.元件49 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.instance = new lib.元件5("synched",0); + this.instance.setTransform(0.05,0,1,1,0,0,0,19.4,8.9); + + this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); + + this._renderFirstFrame(); + +}).prototype = getMCSymbolPrototype(lib.元件49, new cjs.Rectangle(-20.3,-9.9,40.7,19.8), null); + + +(lib.元件48 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.instance = new lib.补间84("synched",0); + + this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); + + this._renderFirstFrame(); + +}).prototype = getMCSymbolPrototype(lib.元件48, new cjs.Rectangle(-20.3,-9.9,40.7,19.8), null); + + +(lib.元件47 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.instance = new lib.元件5("synched",0); + this.instance.setTransform(0.05,0,1,1,0,0,0,19.4,8.9); + + this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); + + this._renderFirstFrame(); + +}).prototype = getMCSymbolPrototype(lib.元件47, new cjs.Rectangle(-20.3,-9.9,40.7,19.8), null); + + +(lib.元件46 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.instance = new lib.补间84("synched",0); + + this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); + + this._renderFirstFrame(); + +}).prototype = getMCSymbolPrototype(lib.元件46, new cjs.Rectangle(-20.3,-9.9,40.7,19.8), null); + + +(lib.元件45 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.instance = new lib.元件5("synched",0); + this.instance.setTransform(0.05,0,1,1,0,0,0,19.4,8.9); + + this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); + + this._renderFirstFrame(); + +}).prototype = getMCSymbolPrototype(lib.元件45, new cjs.Rectangle(-20.3,-9.9,40.7,19.8), null); + + +(lib.元件44 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.instance = new lib.补间84("synched",0); + + this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); + + this._renderFirstFrame(); + +}).prototype = getMCSymbolPrototype(lib.元件44, new cjs.Rectangle(-20.3,-9.9,40.7,19.8), null); + + +(lib.元件43 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.instance = new lib.元件5("synched",0); + this.instance.setTransform(0.05,0,1,1,0,0,0,19.4,8.9); + + this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); + + this._renderFirstFrame(); + +}).prototype = getMCSymbolPrototype(lib.元件43, new cjs.Rectangle(-20.3,-9.9,40.7,19.8), null); + + +(lib.元件42 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.instance = new lib.补间84("synched",0); + + this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); + + this._renderFirstFrame(); + +}).prototype = getMCSymbolPrototype(lib.元件42, new cjs.Rectangle(-20.3,-9.9,40.7,19.8), null); + + +(lib.元件41 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.instance = new lib.元件5("synched",0); + this.instance.setTransform(0.05,0,1,1,0,0,0,19.4,8.9); + + this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); + + this._renderFirstFrame(); + +}).prototype = getMCSymbolPrototype(lib.元件41, new cjs.Rectangle(-20.3,-9.9,40.7,19.8), null); + + +(lib.元件40 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.instance = new lib.补间84("synched",0); + + this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); + + this._renderFirstFrame(); + +}).prototype = getMCSymbolPrototype(lib.元件40, new cjs.Rectangle(-20.3,-9.9,40.7,19.8), null); + + +(lib.元件39 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.instance = new lib.元件5("synched",0); + this.instance.setTransform(0.05,0,1,1,0,0,0,19.4,8.9); + + this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); + + this._renderFirstFrame(); + +}).prototype = getMCSymbolPrototype(lib.元件39, new cjs.Rectangle(-20.3,-9.9,40.7,19.8), null); + + +(lib.元件38 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.instance = new lib.补间84("synched",0); + + this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); + + this._renderFirstFrame(); + +}).prototype = getMCSymbolPrototype(lib.元件38, new cjs.Rectangle(-20.3,-9.9,40.7,19.8), null); + + +(lib.元件37 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.instance = new lib.元件5("synched",0); + this.instance.setTransform(0.05,0,1,1,0,0,0,19.4,8.9); + + this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); + + this._renderFirstFrame(); + +}).prototype = getMCSymbolPrototype(lib.元件37, new cjs.Rectangle(-20.3,-9.9,40.7,19.8), null); + + +(lib.元件36 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.instance = new lib.补间84("synched",0); + + this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); + + this._renderFirstFrame(); + +}).prototype = getMCSymbolPrototype(lib.元件36, new cjs.Rectangle(-20.3,-9.9,40.7,19.8), null); + + +(lib.元件35 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.instance = new lib.元件5("synched",0); + this.instance.setTransform(0.05,0,1,1,0,0,0,19.4,8.9); + + this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); + + this._renderFirstFrame(); + +}).prototype = getMCSymbolPrototype(lib.元件35, new cjs.Rectangle(-20.3,-9.9,40.7,19.8), null); + + +(lib.元件34 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.instance = new lib.补间84("synched",0); + + this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); + + this._renderFirstFrame(); + +}).prototype = getMCSymbolPrototype(lib.元件34, new cjs.Rectangle(-20.3,-9.9,40.7,19.8), null); + + +(lib.元件33 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.instance = new lib.元件5("synched",0); + this.instance.setTransform(0.05,0,1,1,0,0,0,19.4,8.9); + + this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); + + this._renderFirstFrame(); + +}).prototype = getMCSymbolPrototype(lib.元件33, new cjs.Rectangle(-20.3,-9.9,40.7,19.8), null); + + +(lib.元件32 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.instance = new lib.补间84("synched",0); + + this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); + + this._renderFirstFrame(); + +}).prototype = getMCSymbolPrototype(lib.元件32, new cjs.Rectangle(-20.3,-9.9,40.7,19.8), null); + + +(lib.元件31 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.instance = new lib.元件5("synched",0); + this.instance.setTransform(0.05,0,1,1,0,0,0,19.4,8.9); + + this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); + + this._renderFirstFrame(); + +}).prototype = getMCSymbolPrototype(lib.元件31, new cjs.Rectangle(-20.3,-9.9,40.7,19.8), null); + + +(lib.元件30 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.instance = new lib.补间84("synched",0); + + this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); + + this._renderFirstFrame(); + +}).prototype = getMCSymbolPrototype(lib.元件30, new cjs.Rectangle(-20.3,-9.9,40.7,19.8), null); + + +(lib.元件29 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.instance = new lib.元件5("synched",0); + this.instance.setTransform(0.05,0,1,1,0,0,0,19.4,8.9); + + this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); + + this._renderFirstFrame(); + +}).prototype = getMCSymbolPrototype(lib.元件29, new cjs.Rectangle(-20.3,-9.9,40.7,19.8), null); + + +(lib.元件28 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.instance = new lib.补间84("synched",0); + + this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); + + this._renderFirstFrame(); + +}).prototype = getMCSymbolPrototype(lib.元件28, new cjs.Rectangle(-20.3,-9.9,40.7,19.8), null); + + +(lib.元件27 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.instance = new lib.元件5("synched",0); + this.instance.setTransform(0.05,0,1,1,0,0,0,19.4,8.9); + + this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); + + this._renderFirstFrame(); + +}).prototype = getMCSymbolPrototype(lib.元件27, new cjs.Rectangle(-20.3,-9.9,40.7,19.8), null); + + +(lib.元件26 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.instance = new lib.补间84("synched",0); + + this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); + + this._renderFirstFrame(); + +}).prototype = getMCSymbolPrototype(lib.元件26, new cjs.Rectangle(-20.3,-9.9,40.7,19.8), null); + + +(lib.元件25 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.instance = new lib.元件5("synched",0); + this.instance.setTransform(0.05,0,1,1,0,0,0,19.4,8.9); + + this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); + + this._renderFirstFrame(); + +}).prototype = getMCSymbolPrototype(lib.元件25, new cjs.Rectangle(-20.3,-9.9,40.7,19.8), null); + + +(lib.元件24 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.instance = new lib.补间84("synched",0); + + this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); + + this._renderFirstFrame(); + +}).prototype = getMCSymbolPrototype(lib.元件24, new cjs.Rectangle(-20.3,-9.9,40.7,19.8), null); + + +(lib.元件23 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.instance = new lib.元件5("synched",0); + this.instance.setTransform(0.05,0,1,1,0,0,0,19.4,8.9); + + this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); + + this._renderFirstFrame(); + +}).prototype = getMCSymbolPrototype(lib.元件23, new cjs.Rectangle(-20.3,-9.9,40.7,19.8), null); + + +(lib.元件22 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.instance = new lib.补间84("synched",0); + + this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); + + this._renderFirstFrame(); + +}).prototype = getMCSymbolPrototype(lib.元件22, new cjs.Rectangle(-20.3,-9.9,40.7,19.8), null); + + +(lib.元件21 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.instance = new lib.元件5("synched",0); + this.instance.setTransform(0.05,0,1,1,0,0,0,19.4,8.9); + + this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); + + this._renderFirstFrame(); + +}).prototype = getMCSymbolPrototype(lib.元件21, new cjs.Rectangle(-20.3,-9.9,40.7,19.8), null); + + +(lib.元件20 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.instance = new lib.补间84("synched",0); + + this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); + + this._renderFirstFrame(); + +}).prototype = getMCSymbolPrototype(lib.元件20, new cjs.Rectangle(-20.3,-9.9,40.7,19.8), null); + + +(lib.元件19 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.instance = new lib.元件5("synched",0); + this.instance.setTransform(0.05,0,1,1,0,0,0,19.4,8.9); + + this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); + + this._renderFirstFrame(); + +}).prototype = getMCSymbolPrototype(lib.元件19, new cjs.Rectangle(-20.3,-9.9,40.7,19.8), null); + + +(lib.元件18 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.instance = new lib.补间84("synched",0); + + this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); + + this._renderFirstFrame(); + +}).prototype = getMCSymbolPrototype(lib.元件18, new cjs.Rectangle(-20.3,-9.9,40.7,19.8), null); + + +(lib.元件17 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.instance = new lib.元件5("synched",0); + this.instance.setTransform(0.05,0,1,1,0,0,0,19.4,8.9); + + this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); + + this._renderFirstFrame(); + +}).prototype = getMCSymbolPrototype(lib.元件17, new cjs.Rectangle(-20.3,-9.9,40.7,19.8), null); + + +(lib.元件16 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.instance = new lib.补间84("synched",0); + + this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); + + this._renderFirstFrame(); + +}).prototype = getMCSymbolPrototype(lib.元件16, new cjs.Rectangle(-20.3,-9.9,40.7,19.8), null); + + +(lib.元件10 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.instance = new lib.补间72("synched",0); + this.instance.setTransform(10.55,17.4); + + this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); + + this._renderFirstFrame(); + +}).prototype = getMCSymbolPrototype(lib.元件10, new cjs.Rectangle(-1,-1,23.2,36.8), null); + + +(lib.元件9 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.instance = new lib.元件5("synched",0); + this.instance.setTransform(19.4,8.9,1,1,0,0,0,19.4,8.9); + + this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); + + this._renderFirstFrame(); + +}).prototype = getMCSymbolPrototype(lib.元件9, new cjs.Rectangle(-1,-1,40.8,19.8), null); + + +(lib.元件8 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.instance = new lib.补间84("synched",0); + this.instance.setTransform(19.35,8.9); + + this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); + + this._renderFirstFrame(); + +}).prototype = getMCSymbolPrototype(lib.元件8, new cjs.Rectangle(-1,-1,40.8,19.8), null); + + +(lib.元件53 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.instance = new lib.元件52(); + + this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); + + this._renderFirstFrame(); + +}).prototype = getMCSymbolPrototype(lib.元件53, new cjs.Rectangle(-19.8,-9.4,39.7,18.8), null); + + +(lib.元件15 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.instance = new lib.元件9(); + this.instance.setTransform(0.05,0,1,1,0,0,0,19.4,8.9); + + this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); + + this._renderFirstFrame(); + +}).prototype = getMCSymbolPrototype(lib.元件15, new cjs.Rectangle(-19.8,-9.4,39.7,18.8), null); + + +(lib.元件13 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.instance = new lib.元件10(); + this.instance.setTransform(10.6,17.4,1,1,0,0,0,10.6,17.4); + + this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); + + this._renderFirstFrame(); + +}).prototype = getMCSymbolPrototype(lib.元件13, new cjs.Rectangle(-0.5,-0.5,22.2,35.8), null); + + +(lib.元件12 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.instance = new lib.元件8(); + this.instance.setTransform(19.4,8.9,1,1,0,0,0,19.4,8.9); + + this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); + + this._renderFirstFrame(); + +}).prototype = getMCSymbolPrototype(lib.元件12, new cjs.Rectangle(-0.5,-0.5,39.8,18.8), null); + + +(lib.元件59 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.instance = new lib.元件13(); + this.instance.setTransform(0.05,0,1,1,0,0,0,10.6,17.4); + + this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); + + this._renderFirstFrame(); + +}).prototype = getMCSymbolPrototype(lib.元件59, new cjs.Rectangle(-11,-17.9,22.1,35.8), null); + + +(lib.元件14 = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // 图层_1 + this.instance = new lib.元件12(); + this.instance.setTransform(0.05,0,1,1,0,0,0,19.4,8.9); + + this.timeline.addTween(cjs.Tween.get(this.instance).wait(1)); + + this._renderFirstFrame(); + +}).prototype = getMCSymbolPrototype(lib.元件14, new cjs.Rectangle(-19.8,-9.4,39.7,18.8), null); + + +(lib.Main = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {"action-1":0,"action-1":29,"action-1":59,"action-1":89,"action-1":119,"action-1":149,"action-1":179,"action-1":209,"action-1":239,"action-1":269,"action-1":299,"action-1":329,"action-1":359,"action-1":389,"action-1":419,"action-1":449,"action-1":479,"action-1":509,"action-1":539,"action-1":569}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + // timeline functions: + this.frame_0 = function() { + this.stop() + } + this.frame_29 = function() { + this.stop() + } + this.frame_59 = function() { + this.stop() + } + this.frame_89 = function() { + this.stop() + } + this.frame_119 = function() { + this.stop() + } + this.frame_149 = function() { + this.stop() + } + this.frame_179 = function() { + this.stop() + } + this.frame_209 = function() { + this.stop() + } + this.frame_239 = function() { + this.stop() + } + this.frame_269 = function() { + this.stop() + } + this.frame_299 = function() { + this.stop() + } + this.frame_329 = function() { + this.stop() + } + this.frame_359 = function() { + this.stop() + } + this.frame_389 = function() { + this.stop() + } + this.frame_419 = function() { + this.stop() + } + this.frame_449 = function() { + this.stop() + } + this.frame_479 = function() { + this.stop() + } + this.frame_509 = function() { + this.stop() + } + this.frame_539 = function() { + this.stop() + } + this.frame_569 = function() { + this.stop() + } + + // actions tween: + this.timeline.addTween(cjs.Tween.get(this).call(this.frame_0).wait(29).call(this.frame_29).wait(30).call(this.frame_59).wait(30).call(this.frame_89).wait(30).call(this.frame_119).wait(30).call(this.frame_149).wait(30).call(this.frame_179).wait(30).call(this.frame_209).wait(30).call(this.frame_239).wait(30).call(this.frame_269).wait(30).call(this.frame_299).wait(30).call(this.frame_329).wait(30).call(this.frame_359).wait(30).call(this.frame_389).wait(30).call(this.frame_419).wait(30).call(this.frame_449).wait(30).call(this.frame_479).wait(30).call(this.frame_509).wait(30).call(this.frame_539).wait(30).call(this.frame_569).wait(61)); + + // 气球 + this.shape = new cjs.Shape(); + var sprImg_shape = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape.onload = function(){ + this.shape.graphics.bf(sprImg_shape, null, new cjs.Matrix2D(0.219,0,0,0.219,-31.2,-34.9)).s().p("Ak2FdIAAq5IJtAAIAAK5g") + }.bind(this); + this.shape.setTransform(1040.325,600.25); + + this.timeline.addTween(cjs.Tween.get(this.shape).wait(630)); + + // 次数 + this.instance = new lib.CachedBmp_29(); + this.instance.setTransform(1117.7,565.4,0.5,0.5); + + this.instance_1 = new lib.CachedBmp_30(); + this.instance_1.setTransform(1117.7,565.4,0.5,0.5); + + this.instance_2 = new lib.CachedBmp_31(); + this.instance_2.setTransform(1117.7,565.4,0.5,0.5); + + this.instance_3 = new lib.CachedBmp_32(); + this.instance_3.setTransform(1117.7,565.4,0.5,0.5); + + this.instance_4 = new lib.CachedBmp_33(); + this.instance_4.setTransform(1117.7,565.4,0.5,0.5); + + this.instance_5 = new lib.CachedBmp_34(); + this.instance_5.setTransform(1117.7,565.4,0.5,0.5); + + this.instance_6 = new lib.CachedBmp_35(); + this.instance_6.setTransform(1117.7,565.4,0.5,0.5); + + this.instance_7 = new lib.CachedBmp_36(); + this.instance_7.setTransform(1117.7,565.4,0.5,0.5); + + this.instance_8 = new lib.CachedBmp_37(); + this.instance_8.setTransform(1117.7,565.4,0.5,0.5); + + this.instance_9 = new lib.CachedBmp_38(); + this.instance_9.setTransform(1117.7,565.4,0.5,0.5); + + this.instance_10 = new lib.CachedBmp_39(); + this.instance_10.setTransform(1117.7,565.4,0.5,0.5); + + this.instance_11 = new lib.CachedBmp_40(); + this.instance_11.setTransform(1117.7,565.4,0.5,0.5); + + this.instance_12 = new lib.CachedBmp_41(); + this.instance_12.setTransform(1117.7,565.4,0.5,0.5); + + this.instance_13 = new lib.CachedBmp_42(); + this.instance_13.setTransform(1117.7,565.4,0.5,0.5); + + this.instance_14 = new lib.CachedBmp_43(); + this.instance_14.setTransform(1117.7,565.4,0.5,0.5); + + this.instance_15 = new lib.CachedBmp_44(); + this.instance_15.setTransform(1117.7,565.4,0.5,0.5); + + this.instance_16 = new lib.CachedBmp_45(); + this.instance_16.setTransform(1117.7,565.4,0.5,0.5); + + this.instance_17 = new lib.CachedBmp_46(); + this.instance_17.setTransform(1117.7,565.4,0.5,0.5); + + this.instance_18 = new lib.CachedBmp_47(); + this.instance_18.setTransform(1117.7,565.4,0.5,0.5); + + this.instance_19 = new lib.CachedBmp_48(); + this.instance_19.setTransform(1117.7,565.4,0.5,0.5); + + this.instance_20 = new lib.CachedBmp_49(); + this.instance_20.setTransform(1117.7,565.4,0.5,0.5); + + this.timeline.addTween(cjs.Tween.get({}).to({state:[{t:this.instance}]}).to({state:[{t:this.instance_1}]},29).to({state:[{t:this.instance_2}]},30).to({state:[{t:this.instance_3}]},30).to({state:[{t:this.instance_4}]},30).to({state:[{t:this.instance_5}]},30).to({state:[{t:this.instance_6}]},30).to({state:[{t:this.instance_7}]},30).to({state:[{t:this.instance_8}]},30).to({state:[{t:this.instance_9}]},30).to({state:[{t:this.instance_10}]},30).to({state:[{t:this.instance_11}]},30).to({state:[{t:this.instance_12}]},30).to({state:[{t:this.instance_13}]},30).to({state:[{t:this.instance_14}]},30).to({state:[{t:this.instance_15}]},30).to({state:[{t:this.instance_16}]},30).to({state:[{t:this.instance_17}]},30).to({state:[{t:this.instance_18}]},30).to({state:[{t:this.instance_19}]},30).to({state:[{t:this.instance_20}]},27).wait(34)); + + // 计时器 + this.instance_21 = new lib.CachedBmp_51(); + this.instance_21.setTransform(983.7,543.35,0.5,0.5); + + this.instance_22 = new lib.苹果返回按钮(); + this.instance_22.setTransform(268,65,0.8,0.8,0,0,0,45.5,47.5); + new cjs.ButtonHelper(this.instance_22, 0, 1, 1); + + this.instance_23 = new lib.元件7(); + this.instance_23.setTransform(349.75,10.45); + + this.instance_24 = new lib.CachedBmp_50(); + this.instance_24.setTransform(159.75,0,0.5,0.5); + + this.instance_25 = new lib.CachedBmp_53(); + this.instance_25.setTransform(983.7,543.35,0.5,0.5); + + this.instance_26 = new lib.CachedBmp_52(); + this.instance_26.setTransform(159.75,0,0.5,0.5); + + this.timeline.addTween(cjs.Tween.get({}).to({state:[{t:this.instance_24},{t:this.instance_23},{t:this.instance_22},{t:this.instance_21}]}).to({state:[{t:this.instance_26},{t:this.instance_23},{t:this.instance_25}]},629).wait(1)); + + // 添加球 + this.shape_1 = new cjs.Shape(); + this.shape_1.graphics.f("#B50000").s().p("AidA9IgCAAIgCAAIgCgBIgCgBIgBgBIgBgBIgBgBIAAAAIgBgBIgBgBIAAgBIAAgBIgBgBIAAAAIAAgBIAAgBIAAgBIAAgBIgBgBIABAAIAAgBIAAgBIAAgBIAAgBIABgBIAAAAIAAgBIABgBIAAgBIABgBIABgBIABAAIABgBIABgBIACgBIABgBIACAAIACAAIAAAAIADAAIACABIACABIABAAIACABIAAABIABABIABABIAAgBIAAgBIAAgBIAAgBIAAgBIABgBIAAAAIAAgBIABgBIABgBIABgBIABgBIAAAAIABgBIACgBIACgBIAAAAIABAAIADAAIADAAIACAAIABABIAAgBIAAgBIAAgBIABAAIAAgBIABgBIAAgBIABgBIABgBIABAAIAAgBIACgBIACgBIABgBIABAAIADAAIAAAAIADAAIACABIACABIABAAIABABIABABIABAAIAAgBIACgCIAAAAIABgBIABAAIABgBIABAAIABAAIAAgBIABAAIABAAIACAAIACAAIABAAIABAAIABABIABAAIABABIABAAIABAAIAAABIABAAIAAgBIABgBIAAAAIABgCIABAAIABgBIACgBIACgBIABgBIACABIADAAIAAgBIACABIABAAIADABIABABIABAAIAAgBIAAgBIAAAAIAAgBIAAgCIABAAIgBgBIABgBIAAAAIABgCIABAAIAAAAIABgBIABgBIABgBIABgBIACgBIABAAIABAAIADAAIABAAIAAAAIABAAIAAgBIABAAIABAAIABAAIABgBIACAAIACAAIABABIAAAAIAAgCIABAAIABgBIABgBIABgBIAAAAIACgBIABgBIACgBIACAAIACAAIAAAAIADgBIACABIACACIACAAIABAAIAAAAIAAgBIAAgBIABAAIAAgBIABgBIABgBIAAAAIABgCIABAAIACgBIABgBQAAAAAAAAQABAAAAAAQAAAAAAAAQAAAAAAAAIABAAIADAAIAAgBIADABIACAAIABAAIACABIABABIABABIAAAAIABAAIAAgBIAAAAIABgBIABgBIAAAAIABgBIABAAIAAgBIABAAIABgBIABAAIABAAIAAAAIABAAIABAAIACAAIAAgBIACABIABAAIABAAIABAAIABABIABAAIABABIAAAAIABABIAAAAIAAgBIABgBIAAgBIAAgBIAAAAIAAgBIABgBIAAgBIABgBIAAAAIABAAIABgBIABgBIABAAIABgBIABgBIABgBIACAAIACAAIADAAIABAAIACAAIACABIABABIABAAIAAgBIABAAIABgBIAAgBIAAgBIABgBIABgBIABAAIAAgBIACgBIABAAIABgBIABgBIACAAIABAAIADABIAAgBIADABIABABIACABIACABIABABIAAgBIAAgBIABgBIAAgBIABAAIAAgBIABgBIABAAIABgBIABgBIABAAIABgBIACgBIACAAIABAAIADAAIAAAAIACABIACABIACABIACABIAAABIABABIABgBIAAgBIABAAIAAgBIABgBIAAgBIAAgBIABgBIABAAIABgBIABgBIABgBIADAAIABAAIABAAIADAAIABAAIABgBIAAgBIACAAIACgBIACAAIABAAIADAAIAAAAIACABIACAAIACABIABAAIAAgBIAAAAIABgBIAAAAIAAgBIACgBIAAgBIABAAIABgBIAAAAIABgBIABAAIABAAIABgBIABAAIABAAIACAAIACAAIABAAIAAAAIACABIABAAIABABIABAAIAAAAIABABIABAAIAAABIAAAAIACACIAAAAIAAABIABAAIAAABIAAAAIAAABIABAAIAAABIAAAAIAAACIABAAIAAAGIgBAAIAAABIAAABIAAAAIgBABIAAAAIAAABIAAABIgBAAIAAABIAAAAIgBABIAAAAIgBAAIAAABIgBAAIAAABIgBAAIgBABIgBAAIgBABIAAAAIgBAAIgBAAIAAABIgBAAIgCAAIgCAAIgBAAIgBgBIgBAAIgBAAIgBgBIgBAAIgBgBIAAAAIAAAAIgBABIAAABIAAABIgCAAIAAABIgBABIgBAAIgBABIgBABIgBAAIgCABIgBAAIgCABIgDgBIAAABIgBAAIgBABIgCABIgCAAIgBABIgBAAIgDAAIgDgBIgCgBIgCgBIgBgBIgBgBIgBgBIAAAAIAAABIAAABIgBAAIgBABIAAABIAAAAIgBABIgBABIAAAAIgBABIgCABIgBAAIgCABIgBAAIgCAAIgCAAIgDgBIgCAAIgCgCIgBgBIgCAAIAAAAIAAABIAAABIgBABIAAABIgBAAIgBABIgBABIAAAAIgBABIgBABIgCAAIgCABIgBAAIAAABIgBAAIAAABIAAAAIAAABIgBAAIAAABIAAABIgBAAIAAABIAAAAIgBAAIAAABIgBAAIAAABIgBAAIgBABIAAAAIgBABIgBAAIgBABIAAAAIgBAAIgBAAIgBAAIgCAAIgCAAIgBAAIAAAAIgBAAIgCgBIgBAAIAAgBIgBAAIAAAAIgCAAIgCAAIgDAAIgCgBIgCgCIAAAAIAAAAIgBABIAAABIAAAAIAAABIgBABIAAAAIAAABIAAAAIgBABIAAAAIAAABIgBAAIgBAAIAAAAIgBABIgBABIgBAAIgBABIgBAAIAAABIgBAAIgBAAIgBAAIgCAAIgCAAIgBAAIgBAAIgBAAIgBgBIgBAAIgBgBIgBAAIgBgBIAAgBIgBAAIAAAAIgCACIAAAAIgBABIgBABIgBABIgBABIgCAAIgBABIgBAAIAAAAIgBABIAAAAIAAABIAAAAIgBABIAAAAIAAABIgBAAIgBACIgBAAIgBABIAAAAIgBABIgBAAIAAABIgBAAIgBAAIgBAAIgCAAIgCAAIgBAAIgBAAIgBAAIgBgBIgBAAIgBgBIAAAAIgBAAIgCAAIgDAAIgBAAIAAAAIAAABIAAAAIgBABIAAAAIAAABIgBAAIAAABIgBAAIAAAAIgBABIgBABIgBAAIgBABIgBAAIAAABIgBAAIgBAAIgBAAIgCAAIgCAAIgCABIgBAAIgCAAIgDAAIgDAAIgBgBIgCgBIAAAAIAAAAIAAABIAAABIgBABIAAABIAAABIgBABIgBABIAAAAIAAACIgBAAIgBACIgBAAIgBABIgBABIgCABIgBAAIgBABIgCAAIgEAAIgCgBIgCgBIgBgBIgBAAIAAAAIAAABIgBABIAAAAIAAABIgBAAIAAAAIgBABIAAAAIgBABIAAAAIgBABIgBAAIgBABIgBAAIAAABIgBAAIgBAAIAAAAIgBAAIgCAAIgCAAIgBAAIgBAAIgBAAIgBgBIgBAAIgBgBIgBAAIAAgBIgBgBIgBAAIAAgBIgBABIgBABIAAABIgBABIgCABIgCAAIgBABIgBAAIgDABIgDgBIgCAAIAAABIAAABIAAAAIgBABIAAABIgBABIAAABIgBABIgBAAIgBABIgBABIgCABIgBABIgBAAIgBAAIgDAAIgBAAIgDAAIgBAAIgCgBIgCgBIgBgBIgBgBIgBgBIAAAAIAAABIAAAAIAAABIgBABIAAABIgBABIAAABIAAABIgBAAIgBABIAAABIgBABIgBABIgBABIgCAAIgCABIgBAAIgDAAg"); + this.shape_1.setTransform(702.825,496.375); + + this.timeline.addTween(cjs.Tween.get(this.shape_1).wait(630)); + + // 袖套24 + this.instance_27 = new lib.元件14(); + this.instance_27.setTransform(450.4,232.2); + + this.instance_28 = new lib.元件15(); + this.instance_28.setTransform(456.35,220.3); + this.instance_28._off = true; + + this.instance_29 = new lib.元件16(); + this.instance_29.setTransform(450.4,232.2); + this.instance_29._off = true; + + this.instance_30 = new lib.元件17(); + this.instance_30.setTransform(456.35,220.3); + this.instance_30._off = true; + + this.instance_31 = new lib.元件18(); + this.instance_31.setTransform(450.4,232.2); + this.instance_31._off = true; + + this.instance_32 = new lib.元件19(); + this.instance_32.setTransform(456.35,220.3); + this.instance_32._off = true; + + this.instance_33 = new lib.元件20(); + this.instance_33.setTransform(450.4,232.2); + this.instance_33._off = true; + + this.instance_34 = new lib.元件21(); + this.instance_34.setTransform(456.35,220.3); + this.instance_34._off = true; + + this.instance_35 = new lib.元件22(); + this.instance_35.setTransform(450.4,232.2); + this.instance_35._off = true; + + this.instance_36 = new lib.元件23(); + this.instance_36.setTransform(456.35,220.3); + this.instance_36._off = true; + + this.instance_37 = new lib.元件24(); + this.instance_37.setTransform(450.4,232.2); + this.instance_37._off = true; + + this.instance_38 = new lib.元件25(); + this.instance_38.setTransform(456.35,220.3); + this.instance_38._off = true; + + this.instance_39 = new lib.元件26(); + this.instance_39.setTransform(450.4,232.2); + this.instance_39._off = true; + + this.instance_40 = new lib.元件27(); + this.instance_40.setTransform(456.35,220.3); + this.instance_40._off = true; + + this.instance_41 = new lib.元件28(); + this.instance_41.setTransform(450.4,232.2); + this.instance_41._off = true; + + this.instance_42 = new lib.元件29(); + this.instance_42.setTransform(456.35,220.3); + this.instance_42._off = true; + + this.instance_43 = new lib.元件30(); + this.instance_43.setTransform(450.4,232.2); + this.instance_43._off = true; + + this.instance_44 = new lib.元件31(); + this.instance_44.setTransform(456.35,220.3); + this.instance_44._off = true; + + this.instance_45 = new lib.元件32(); + this.instance_45.setTransform(450.4,232.2); + this.instance_45._off = true; + + this.instance_46 = new lib.元件33(); + this.instance_46.setTransform(456.35,220.3); + this.instance_46._off = true; + + this.instance_47 = new lib.元件34(); + this.instance_47.setTransform(450.4,232.2); + this.instance_47._off = true; + + this.instance_48 = new lib.元件35(); + this.instance_48.setTransform(456.35,220.3); + this.instance_48._off = true; + + this.instance_49 = new lib.元件36(); + this.instance_49.setTransform(450.4,232.2); + this.instance_49._off = true; + + this.instance_50 = new lib.元件37(); + this.instance_50.setTransform(456.35,220.3); + this.instance_50._off = true; + + this.instance_51 = new lib.元件38(); + this.instance_51.setTransform(450.4,232.2); + this.instance_51._off = true; + + this.instance_52 = new lib.元件39(); + this.instance_52.setTransform(456.35,220.3); + this.instance_52._off = true; + + this.instance_53 = new lib.元件40(); + this.instance_53.setTransform(450.4,232.2); + this.instance_53._off = true; + + this.instance_54 = new lib.元件41(); + this.instance_54.setTransform(456.35,220.3); + this.instance_54._off = true; + + this.instance_55 = new lib.元件42(); + this.instance_55.setTransform(450.4,232.2); + this.instance_55._off = true; + + this.instance_56 = new lib.元件43(); + this.instance_56.setTransform(456.35,220.3); + this.instance_56._off = true; + + this.instance_57 = new lib.元件44(); + this.instance_57.setTransform(450.4,232.2); + this.instance_57._off = true; + + this.instance_58 = new lib.元件45(); + this.instance_58.setTransform(456.35,220.3); + this.instance_58._off = true; + + this.instance_59 = new lib.元件46(); + this.instance_59.setTransform(450.4,232.2); + this.instance_59._off = true; + + this.instance_60 = new lib.元件47(); + this.instance_60.setTransform(456.35,220.3); + this.instance_60._off = true; + + this.instance_61 = new lib.元件48(); + this.instance_61.setTransform(450.4,232.2); + this.instance_61._off = true; + + this.instance_62 = new lib.元件49(); + this.instance_62.setTransform(456.35,220.3); + this.instance_62._off = true; + + this.instance_63 = new lib.元件50(); + this.instance_63.setTransform(450.4,232.2); + this.instance_63._off = true; + + this.instance_64 = new lib.元件51(); + this.instance_64.setTransform(456.35,220.3); + this.instance_64._off = true; + + this.instance_65 = new lib.元件53(); + this.instance_65.setTransform(450.4,232.2); + this.instance_65._off = true; + + this.instance_66 = new lib.元件54(); + this.instance_66.setTransform(456.35,220.3); + this.instance_66._off = true; + + this.instance_67 = new lib.元件55(); + this.instance_67.setTransform(450.4,232.2); + this.instance_67._off = true; + + this.instance_68 = new lib.元件56(); + this.instance_68.setTransform(450.4,232.2); + + this.timeline.addTween(cjs.Tween.get({}).to({state:[{t:this.instance_27}]}).to({state:[{t:this.instance_28}]},14).to({state:[{t:this.instance_29}]},15).to({state:[{t:this.instance_30}]},15).to({state:[{t:this.instance_31}]},15).to({state:[{t:this.instance_32}]},15).to({state:[{t:this.instance_33}]},15).to({state:[{t:this.instance_34}]},15).to({state:[{t:this.instance_35}]},15).to({state:[{t:this.instance_36}]},15).to({state:[{t:this.instance_37}]},15).to({state:[{t:this.instance_38}]},15).to({state:[{t:this.instance_39}]},15).to({state:[{t:this.instance_40}]},15).to({state:[{t:this.instance_41}]},15).to({state:[{t:this.instance_42}]},15).to({state:[{t:this.instance_43}]},15).to({state:[{t:this.instance_44}]},15).to({state:[{t:this.instance_45}]},15).to({state:[{t:this.instance_46}]},15).to({state:[{t:this.instance_47}]},15).to({state:[{t:this.instance_48}]},15).to({state:[{t:this.instance_49}]},15).to({state:[{t:this.instance_50}]},15).to({state:[{t:this.instance_51}]},15).to({state:[{t:this.instance_52}]},15).to({state:[{t:this.instance_53}]},15).to({state:[{t:this.instance_54}]},15).to({state:[{t:this.instance_55}]},15).to({state:[{t:this.instance_56}]},15).to({state:[{t:this.instance_57}]},15).to({state:[{t:this.instance_58}]},15).to({state:[{t:this.instance_59}]},15).to({state:[{t:this.instance_60}]},15).to({state:[{t:this.instance_61}]},15).to({state:[{t:this.instance_62}]},15).to({state:[{t:this.instance_63}]},15).to({state:[{t:this.instance_64}]},15).to({state:[{t:this.instance_65}]},15).to({state:[{t:this.instance_66}]},15).to({state:[{t:this.instance_67}]},15).to({state:[{t:this.instance_68}]},30).wait(1)); + this.timeline.addTween(cjs.Tween.get(this.instance_27).to({_off:true,x:456.35,y:220.3},14).wait(616)); + this.timeline.addTween(cjs.Tween.get(this.instance_28).to({_off:false},14).to({_off:true,x:450.4,y:232.2},15).wait(601)); + this.timeline.addTween(cjs.Tween.get(this.instance_29).wait(14).to({_off:false},15).to({_off:true,x:456.35,y:220.3},15).wait(586)); + this.timeline.addTween(cjs.Tween.get(this.instance_30).wait(29).to({_off:false},15).to({_off:true,x:450.4,y:232.2},15).wait(571)); + this.timeline.addTween(cjs.Tween.get(this.instance_31).wait(44).to({_off:false},15).to({_off:true,x:456.35,y:220.3},15).wait(556)); + this.timeline.addTween(cjs.Tween.get(this.instance_32).wait(59).to({_off:false},15).to({_off:true,x:450.4,y:232.2},15).wait(541)); + this.timeline.addTween(cjs.Tween.get(this.instance_33).wait(74).to({_off:false},15).to({_off:true,x:456.35,y:220.3},15).wait(526)); + this.timeline.addTween(cjs.Tween.get(this.instance_34).wait(89).to({_off:false},15).to({_off:true,x:450.4,y:232.2},15).wait(511)); + this.timeline.addTween(cjs.Tween.get(this.instance_35).wait(104).to({_off:false},15).to({_off:true,x:456.35,y:220.3},15).wait(496)); + this.timeline.addTween(cjs.Tween.get(this.instance_36).wait(119).to({_off:false},15).to({_off:true,x:450.4,y:232.2},15).wait(481)); + this.timeline.addTween(cjs.Tween.get(this.instance_37).wait(134).to({_off:false},15).to({_off:true,x:456.35,y:220.3},15).wait(466)); + this.timeline.addTween(cjs.Tween.get(this.instance_38).wait(149).to({_off:false},15).to({_off:true,x:450.4,y:232.2},15).wait(451)); + this.timeline.addTween(cjs.Tween.get(this.instance_39).wait(164).to({_off:false},15).to({_off:true,x:456.35,y:220.3},15).wait(436)); + this.timeline.addTween(cjs.Tween.get(this.instance_40).wait(179).to({_off:false},15).to({_off:true,x:450.4,y:232.2},15).wait(421)); + this.timeline.addTween(cjs.Tween.get(this.instance_41).wait(194).to({_off:false},15).to({_off:true,x:456.35,y:220.3},15).wait(406)); + this.timeline.addTween(cjs.Tween.get(this.instance_42).wait(209).to({_off:false},15).to({_off:true,x:450.4,y:232.2},15).wait(391)); + this.timeline.addTween(cjs.Tween.get(this.instance_43).wait(224).to({_off:false},15).to({_off:true,x:456.35,y:220.3},15).wait(376)); + this.timeline.addTween(cjs.Tween.get(this.instance_44).wait(239).to({_off:false},15).to({_off:true,x:450.4,y:232.2},15).wait(361)); + this.timeline.addTween(cjs.Tween.get(this.instance_45).wait(254).to({_off:false},15).to({_off:true,x:456.35,y:220.3},15).wait(346)); + this.timeline.addTween(cjs.Tween.get(this.instance_46).wait(269).to({_off:false},15).to({_off:true,x:450.4,y:232.2},15).wait(331)); + this.timeline.addTween(cjs.Tween.get(this.instance_47).wait(284).to({_off:false},15).to({_off:true,x:456.35,y:220.3},15).wait(316)); + this.timeline.addTween(cjs.Tween.get(this.instance_48).wait(299).to({_off:false},15).to({_off:true,x:450.4,y:232.2},15).wait(301)); + this.timeline.addTween(cjs.Tween.get(this.instance_49).wait(314).to({_off:false},15).to({_off:true,x:456.35,y:220.3},15).wait(286)); + this.timeline.addTween(cjs.Tween.get(this.instance_50).wait(329).to({_off:false},15).to({_off:true,x:450.4,y:232.2},15).wait(271)); + this.timeline.addTween(cjs.Tween.get(this.instance_51).wait(344).to({_off:false},15).to({_off:true,x:456.35,y:220.3},15).wait(256)); + this.timeline.addTween(cjs.Tween.get(this.instance_52).wait(359).to({_off:false},15).to({_off:true,x:450.4,y:232.2},15).wait(241)); + this.timeline.addTween(cjs.Tween.get(this.instance_53).wait(374).to({_off:false},15).to({_off:true,x:456.35,y:220.3},15).wait(226)); + this.timeline.addTween(cjs.Tween.get(this.instance_54).wait(389).to({_off:false},15).to({_off:true,x:450.4,y:232.2},15).wait(211)); + this.timeline.addTween(cjs.Tween.get(this.instance_55).wait(404).to({_off:false},15).to({_off:true,x:456.35,y:220.3},15).wait(196)); + this.timeline.addTween(cjs.Tween.get(this.instance_56).wait(419).to({_off:false},15).to({_off:true,x:450.4,y:232.2},15).wait(181)); + this.timeline.addTween(cjs.Tween.get(this.instance_57).wait(434).to({_off:false},15).to({_off:true,x:456.35,y:220.3},15).wait(166)); + this.timeline.addTween(cjs.Tween.get(this.instance_58).wait(449).to({_off:false},15).to({_off:true,x:450.4,y:232.2},15).wait(151)); + this.timeline.addTween(cjs.Tween.get(this.instance_59).wait(464).to({_off:false},15).to({_off:true,x:456.35,y:220.3},15).wait(136)); + this.timeline.addTween(cjs.Tween.get(this.instance_60).wait(479).to({_off:false},15).to({_off:true,x:450.4,y:232.2},15).wait(121)); + this.timeline.addTween(cjs.Tween.get(this.instance_61).wait(494).to({_off:false},15).to({_off:true,x:456.35,y:220.3},15).wait(106)); + this.timeline.addTween(cjs.Tween.get(this.instance_62).wait(509).to({_off:false},15).to({_off:true,x:450.4,y:232.2},15).wait(91)); + this.timeline.addTween(cjs.Tween.get(this.instance_63).wait(524).to({_off:false},15).to({_off:true,x:456.35,y:220.3},15).wait(76)); + this.timeline.addTween(cjs.Tween.get(this.instance_64).wait(539).to({_off:false},15).to({_off:true,x:450.4,y:232.2},15).wait(61)); + this.timeline.addTween(cjs.Tween.get(this.instance_65).wait(554).to({_off:false},15).to({_off:true,x:456.35,y:220.3},15).wait(46)); + this.timeline.addTween(cjs.Tween.get(this.instance_66).wait(569).to({_off:false},15).to({_off:true,x:450.4,y:232.2},15).wait(31)); + this.timeline.addTween(cjs.Tween.get(this.instance_67).wait(584).to({_off:false},15).to({_off:true},30).wait(1)); + + // 图层_81 + this.instance_69 = new lib.元件59(); + this.instance_69.setTransform(694.8,289.7); + + this.instance_70 = new lib.元件61(); + this.instance_70.setTransform(694.8,289.7); + this.instance_70._off = true; + + this.instance_71 = new lib.元件63(); + this.instance_71.setTransform(694.8,289.7); + this.instance_71._off = true; + + this.instance_72 = new lib.元件65(); + this.instance_72.setTransform(694.8,289.7); + this.instance_72._off = true; + + this.instance_73 = new lib.元件67(); + this.instance_73.setTransform(694.8,289.7); + this.instance_73._off = true; + + this.instance_74 = new lib.元件69(); + this.instance_74.setTransform(694.8,289.7); + this.instance_74._off = true; + + this.instance_75 = new lib.元件71(); + this.instance_75.setTransform(694.8,289.7); + this.instance_75._off = true; + + this.instance_76 = new lib.元件73(); + this.instance_76.setTransform(694.8,289.7); + this.instance_76._off = true; + + this.instance_77 = new lib.元件75(); + this.instance_77.setTransform(694.8,289.7); + this.instance_77._off = true; + + this.instance_78 = new lib.元件77(); + this.instance_78.setTransform(694.8,289.7); + this.instance_78._off = true; + + this.instance_79 = new lib.元件81(); + this.instance_79.setTransform(694.8,289.7); + this.instance_79._off = true; + + this.instance_80 = new lib.元件83(); + this.instance_80.setTransform(694.8,289.7); + this.instance_80._off = true; + + this.instance_81 = new lib.元件85(); + this.instance_81.setTransform(694.8,289.7); + this.instance_81._off = true; + + this.instance_82 = new lib.元件87(); + this.instance_82.setTransform(694.8,289.7); + this.instance_82._off = true; + + this.instance_83 = new lib.元件89(); + this.instance_83.setTransform(694.8,289.7); + this.instance_83._off = true; + + this.instance_84 = new lib.元件91(); + this.instance_84.setTransform(694.8,289.7); + this.instance_84._off = true; + + this.instance_85 = new lib.元件93(); + this.instance_85.setTransform(694.8,289.7); + this.instance_85._off = true; + + this.instance_86 = new lib.元件95(); + this.instance_86.setTransform(694.8,289.7); + this.instance_86._off = true; + + this.instance_87 = new lib.元件97(); + this.instance_87.setTransform(694.8,289.7); + this.instance_87._off = true; + + this.instance_88 = new lib.元件99(); + this.instance_88.setTransform(694.8,289.7); + this.instance_88._off = true; + + this.instance_89 = new lib.元件101(); + this.instance_89.setTransform(694.8,289.7); + this.instance_89._off = true; + + this.instance_90 = new lib.元件102(); + this.instance_90.setTransform(694.8,289.7); + + this.timeline.addTween(cjs.Tween.get({}).to({state:[{t:this.instance_69}]}).to({state:[{t:this.instance_70}]},29).to({state:[{t:this.instance_71}]},30).to({state:[{t:this.instance_72}]},30).to({state:[{t:this.instance_73}]},30).to({state:[{t:this.instance_74}]},30).to({state:[{t:this.instance_75}]},30).to({state:[{t:this.instance_76}]},30).to({state:[{t:this.instance_77}]},30).to({state:[{t:this.instance_78}]},30).to({state:[{t:this.instance_79}]},30).to({state:[{t:this.instance_80}]},30).to({state:[{t:this.instance_81}]},30).to({state:[{t:this.instance_82}]},30).to({state:[{t:this.instance_83}]},30).to({state:[{t:this.instance_84}]},30).to({state:[{t:this.instance_85}]},30).to({state:[{t:this.instance_86}]},30).to({state:[{t:this.instance_87}]},30).to({state:[{t:this.instance_88}]},30).to({state:[{t:this.instance_89}]},30).to({state:[{t:this.instance_90}]},30).wait(1)); + this.timeline.addTween(cjs.Tween.get(this.instance_69).to({_off:true},29).wait(601)); + this.timeline.addTween(cjs.Tween.get(this.instance_70).to({_off:false},29).to({_off:true},30).wait(571)); + this.timeline.addTween(cjs.Tween.get(this.instance_71).wait(29).to({_off:false},30).to({_off:true},30).wait(541)); + this.timeline.addTween(cjs.Tween.get(this.instance_72).wait(59).to({_off:false},30).to({_off:true},30).wait(511)); + this.timeline.addTween(cjs.Tween.get(this.instance_73).wait(89).to({_off:false},30).to({_off:true},30).wait(481)); + this.timeline.addTween(cjs.Tween.get(this.instance_74).wait(119).to({_off:false},30).to({_off:true},30).wait(451)); + this.timeline.addTween(cjs.Tween.get(this.instance_75).wait(149).to({_off:false},30).to({_off:true},30).wait(421)); + this.timeline.addTween(cjs.Tween.get(this.instance_76).wait(179).to({_off:false},30).to({_off:true},30).wait(391)); + this.timeline.addTween(cjs.Tween.get(this.instance_77).wait(209).to({_off:false},30).to({_off:true},30).wait(361)); + this.timeline.addTween(cjs.Tween.get(this.instance_78).wait(239).to({_off:false},30).to({_off:true},30).wait(331)); + this.timeline.addTween(cjs.Tween.get(this.instance_79).wait(269).to({_off:false},30).to({_off:true},30).wait(301)); + this.timeline.addTween(cjs.Tween.get(this.instance_80).wait(299).to({_off:false},30).to({_off:true},30).wait(271)); + this.timeline.addTween(cjs.Tween.get(this.instance_81).wait(329).to({_off:false},30).to({_off:true},30).wait(241)); + this.timeline.addTween(cjs.Tween.get(this.instance_82).wait(359).to({_off:false},30).to({_off:true},30).wait(211)); + this.timeline.addTween(cjs.Tween.get(this.instance_83).wait(389).to({_off:false},30).to({_off:true},30).wait(181)); + this.timeline.addTween(cjs.Tween.get(this.instance_84).wait(419).to({_off:false},30).to({_off:true},30).wait(151)); + this.timeline.addTween(cjs.Tween.get(this.instance_85).wait(449).to({_off:false},30).to({_off:true},30).wait(121)); + this.timeline.addTween(cjs.Tween.get(this.instance_86).wait(479).to({_off:false},30).to({_off:true},30).wait(91)); + this.timeline.addTween(cjs.Tween.get(this.instance_87).wait(509).to({_off:false},30).to({_off:true},30).wait(61)); + this.timeline.addTween(cjs.Tween.get(this.instance_88).wait(539).to({_off:false},30).to({_off:true},30).wait(31)); + this.timeline.addTween(cjs.Tween.get(this.instance_89).wait(569).to({_off:false},30).to({_off:true},30).wait(1)); + + // 气球 + this.shape_2 = new cjs.Shape(); + var sprImg_shape_2 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_2.onload = function(){ + this.shape_2.graphics.bf(sprImg_shape_2, null, new cjs.Matrix2D(0.099,0,0,0.099,-14,-15.7)).s().p("AiLCdIAAk5IEXAAIAAE5g") + }.bind(this); + this.shape_2.setTransform(765.025,225.7); + + this.shape_3 = new cjs.Shape(); + var sprImg_shape_3 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_3.onload = function(){ + this.shape_3.graphics.bf(sprImg_shape_3, null, new cjs.Matrix2D(0.103,0,0,0.103,-14.6,-16.3)).s().p("AiRCjIAAlFIEjAAIAAFFg") + }.bind(this); + this.shape_3.setTransform(765.025,225.125); + + this.shape_4 = new cjs.Shape(); + var sprImg_shape_4 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_4.onload = function(){ + this.shape_4.graphics.bf(sprImg_shape_4, null, new cjs.Matrix2D(0.107,0,0,0.107,-15.1,-16.9)).s().p("AiWCpIAAlRIEtAAIAAFRg") + }.bind(this); + this.shape_4.setTransform(765,224.525); + + this.shape_5 = new cjs.Shape(); + var sprImg_shape_5 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_5.onload = function(){ + this.shape_5.graphics.bf(sprImg_shape_5, null, new cjs.Matrix2D(0.11,0,0,0.11,-15.7,-17.5)).s().p("AicCvIAAleIE5AAIAAFeg") + }.bind(this); + this.shape_5.setTransform(764.975,223.95); + + this.shape_6 = new cjs.Shape(); + var sprImg_shape_6 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_6.onload = function(){ + this.shape_6.graphics.bf(sprImg_shape_6, null, new cjs.Matrix2D(0.114,0,0,0.114,-16.3,-18.2)).s().p("AihC2IAAlrIFDAAIAAFrg") + }.bind(this); + this.shape_6.setTransform(764.975,223.375); + + this.shape_7 = new cjs.Shape(); + var sprImg_shape_7 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_7.onload = function(){ + this.shape_7.graphics.bf(sprImg_shape_7, null, new cjs.Matrix2D(0.118,0,0,0.118,-16.9,-18.8)).s().p("AinC8IAAl3IFPAAIAAF3g") + }.bind(this); + this.shape_7.setTransform(764.975,222.8); + + this.shape_8 = new cjs.Shape(); + var sprImg_shape_8 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_8.onload = function(){ + this.shape_8.graphics.bf(sprImg_shape_8, null, new cjs.Matrix2D(0.122,0,0,0.122,-17.4,-19.4)).s().p("AisDCIAAmDIFZAAIAAGDg") + }.bind(this); + this.shape_8.setTransform(764.95,222.2); + + this.shape_9 = new cjs.Shape(); + var sprImg_shape_9 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_9.onload = function(){ + this.shape_9.graphics.bf(sprImg_shape_9, null, new cjs.Matrix2D(0.126,0,0,0.126,-17.9,-20)).s().p("AiyDIIAAmPIFlAAIAAGPg") + }.bind(this); + this.shape_9.setTransform(764.95,221.65); + + this.shape_10 = new cjs.Shape(); + var sprImg_shape_10 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_10.onload = function(){ + this.shape_10.graphics.bf(sprImg_shape_10, null, new cjs.Matrix2D(0.13,0,0,0.13,-18.5,-20.7)).s().p("Ai3DOIAAmbIFvAAIAAGbg") + }.bind(this); + this.shape_10.setTransform(764.925,221.075); + + this.shape_11 = new cjs.Shape(); + var sprImg_shape_11 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_11.onload = function(){ + this.shape_11.graphics.bf(sprImg_shape_11, null, new cjs.Matrix2D(0.134,0,0,0.134,-19,-21.3)).s().p("Ai9DUIAAmnIF7AAIAAGng") + }.bind(this); + this.shape_11.setTransform(764.9,220.475); + + this.shape_12 = new cjs.Shape(); + var sprImg_shape_12 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_12.onload = function(){ + this.shape_12.graphics.bf(sprImg_shape_12, null, new cjs.Matrix2D(0.138,0,0,0.138,-19.6,-21.9)).s().p("AjCDaIAAmzIGFAAIAAGzg") + }.bind(this); + this.shape_12.setTransform(764.9,219.9); + + this.shape_13 = new cjs.Shape(); + var sprImg_shape_13 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_13.onload = function(){ + this.shape_13.graphics.bf(sprImg_shape_13, null, new cjs.Matrix2D(0.141,0,0,0.141,-20.2,-22.6)).s().p("AjIDhIAAnBIGRAAIAAHBg") + }.bind(this); + this.shape_13.setTransform(764.9,219.325); + + this.shape_14 = new cjs.Shape(); + var sprImg_shape_14 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_14.onload = function(){ + this.shape_14.graphics.bf(sprImg_shape_14, null, new cjs.Matrix2D(0.145,0,0,0.145,-20.8,-23.2)).s().p("AjNDnIAAnNIGbAAIAAHNg") + }.bind(this); + this.shape_14.setTransform(764.875,218.75); + + this.shape_15 = new cjs.Shape(); + var sprImg_shape_15 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_15.onload = function(){ + this.shape_15.graphics.bf(sprImg_shape_15, null, new cjs.Matrix2D(0.149,0,0,0.149,-21.3,-23.8)).s().p("AjTDtIAAnZIGnAAIAAHZg") + }.bind(this); + this.shape_15.setTransform(764.85,218.15); + + this.shape_16 = new cjs.Shape(); + var sprImg_shape_16 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_16.onload = function(){ + this.shape_16.graphics.bf(sprImg_shape_16, null, new cjs.Matrix2D(0.153,0,0,0.153,-21.9,-24.4)).s().p("AjYDzIAAnlIGxAAIAAHlg") + }.bind(this); + this.shape_16.setTransform(764.85,217.575); + + this.shape_17 = new cjs.Shape(); + var sprImg_shape_17 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_17.onload = function(){ + this.shape_17.graphics.bf(sprImg_shape_17, null, new cjs.Matrix2D(0.158,0,0,0.158,-22.5,-25.2)).s().p("AjfD6IAAnzIG/AAIAAHzg") + }.bind(this); + this.shape_17.setTransform(764.85,216.875); + + this.shape_18 = new cjs.Shape(); + var sprImg_shape_18 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_18.onload = function(){ + this.shape_18.graphics.bf(sprImg_shape_18, null, new cjs.Matrix2D(0.162,0,0,0.162,-23.1,-25.8)).s().p("AjlECIAAoCIHLAAIAAICg") + }.bind(this); + this.shape_18.setTransform(764.825,216.15); + + this.shape_19 = new cjs.Shape(); + var sprImg_shape_19 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_19.onload = function(){ + this.shape_19.graphics.bf(sprImg_shape_19, null, new cjs.Matrix2D(0.166,0,0,0.166,-23.8,-26.6)).s().p("AjrEJIAAoQIHXAAIAAIQg") + }.bind(this); + this.shape_19.setTransform(764.85,215.45); + + this.shape_20 = new cjs.Shape(); + var sprImg_shape_20 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_20.onload = function(){ + this.shape_20.graphics.bf(sprImg_shape_20, null, new cjs.Matrix2D(0.171,0,0,0.171,-24.4,-27.2)).s().p("AjyEPIAAodIHlAAIAAIdg") + }.bind(this); + this.shape_20.setTransform(764.825,214.7); + + this.shape_21 = new cjs.Shape(); + var sprImg_shape_21 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_21.onload = function(){ + this.shape_21.graphics.bf(sprImg_shape_21, null, new cjs.Matrix2D(0.175,0,0,0.175,-25.1,-28)).s().p("Aj4EWIAAosIHxAAIAAIsg") + }.bind(this); + this.shape_21.setTransform(764.825,214); + + this.shape_22 = new cjs.Shape(); + var sprImg_shape_22 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_22.onload = function(){ + this.shape_22.graphics.bf(sprImg_shape_22, null, new cjs.Matrix2D(0.18,0,0,0.18,-25.6,-28.7)).s().p("Aj+EeIAAo7IH+AAIAAI7g") + }.bind(this); + this.shape_22.setTransform(764.8,213.275); + + this.shape_23 = new cjs.Shape(); + var sprImg_shape_23 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_23.onload = function(){ + this.shape_23.graphics.bf(sprImg_shape_23, null, new cjs.Matrix2D(0.184,0,0,0.184,-26.3,-29.4)).s().p("AkFElIAApJIILAAIAAJJg") + }.bind(this); + this.shape_23.setTransform(764.8,212.575); + + this.shape_24 = new cjs.Shape(); + var sprImg_shape_24 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_24.onload = function(){ + this.shape_24.graphics.bf(sprImg_shape_24, null, new cjs.Matrix2D(0.189,0,0,0.189,-26.9,-30.1)).s().p("AkLEsIAApXIIXAAIAAJXg") + }.bind(this); + this.shape_24.setTransform(764.8,211.85); + + this.shape_25 = new cjs.Shape(); + var sprImg_shape_25 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_25.onload = function(){ + this.shape_25.graphics.bf(sprImg_shape_25, null, new cjs.Matrix2D(0.193,0,0,0.193,-27.6,-30.8)).s().p("AkREzIAAplIIkAAIAAJlg") + }.bind(this); + this.shape_25.setTransform(764.8,211.15); + + this.shape_26 = new cjs.Shape(); + var sprImg_shape_26 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_26.onload = function(){ + this.shape_26.graphics.bf(sprImg_shape_26, null, new cjs.Matrix2D(0.198,0,0,0.198,-28.2,-31.5)).s().p("AkYE6IAApzIIxAAIAAJzg") + }.bind(this); + this.shape_26.setTransform(764.775,210.425); + + this.shape_27 = new cjs.Shape(); + var sprImg_shape_27 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_27.onload = function(){ + this.shape_27.graphics.bf(sprImg_shape_27, null, new cjs.Matrix2D(0.202,0,0,0.202,-28.8,-32.3)).s().p("AkeFBIAAqBII9AAIAAKBg") + }.bind(this); + this.shape_27.setTransform(764.775,209.725); + + this.shape_28 = new cjs.Shape(); + var sprImg_shape_28 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_28.onload = function(){ + this.shape_28.graphics.bf(sprImg_shape_28, null, new cjs.Matrix2D(0.207,0,0,0.207,-29.4,-32.9)).s().p("AklFIIAAqPIJKAAIAAKPg") + }.bind(this); + this.shape_28.setTransform(764.75,208.975); + + this.shape_29 = new cjs.Shape(); + var sprImg_shape_29 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_29.onload = function(){ + this.shape_29.graphics.bf(sprImg_shape_29, null, new cjs.Matrix2D(0.211,0,0,0.211,-30.1,-33.7)).s().p("AkrFPIAAqdIJXAAIAAKdg") + }.bind(this); + this.shape_29.setTransform(764.775,208.275); + + this.shape_30 = new cjs.Shape(); + var sprImg_shape_30 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_30.onload = function(){ + this.shape_30.graphics.bf(sprImg_shape_30, null, new cjs.Matrix2D(0.215,0,0,0.215,-30.7,-34.3)).s().p("AkxFXIAAqsIJjAAIAAKsg") + }.bind(this); + this.shape_30.setTransform(764.75,207.55); + + this.shape_31 = new cjs.Shape(); + var sprImg_shape_31 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_31.onload = function(){ + this.shape_31.graphics.bf(sprImg_shape_31, null, new cjs.Matrix2D(0.22,0,0,0.22,-31.3,-35.1)).s().p("Ak4FeIAAq7IJwAAIAAK7g") + }.bind(this); + this.shape_31.setTransform(764.75,206.85); + + this.shape_32 = new cjs.Shape(); + var sprImg_shape_32 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_32.onload = function(){ + this.shape_32.graphics.bf(sprImg_shape_32, null, new cjs.Matrix2D(0.223,0,0,0.223,-31.7,-35.5)).s().p("Ak7FiIAArDIJ4AAIAALDg") + }.bind(this); + this.shape_32.setTransform(764.75,206.4); + + this.shape_33 = new cjs.Shape(); + var sprImg_shape_33 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_33.onload = function(){ + this.shape_33.graphics.bf(sprImg_shape_33, null, new cjs.Matrix2D(0.225,0,0,0.225,-32.2,-36)).s().p("Ak/FmIAArLIJ/AAIAALLg") + }.bind(this); + this.shape_33.setTransform(764.775,205.975); + + this.shape_34 = new cjs.Shape(); + var sprImg_shape_34 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_34.onload = function(){ + this.shape_34.graphics.bf(sprImg_shape_34, null, new cjs.Matrix2D(0.228,0,0,0.228,-32.6,-36.4)).s().p("AlDFrIAArVIKHAAIAALVg") + }.bind(this); + this.shape_34.setTransform(764.775,205.525); + + this.shape_35 = new cjs.Shape(); + var sprImg_shape_35 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_35.onload = function(){ + this.shape_35.graphics.bf(sprImg_shape_35, null, new cjs.Matrix2D(0.231,0,0,0.231,-32.9,-36.9)).s().p("AlHFvIAArdIKQAAIAALdg") + }.bind(this); + this.shape_35.setTransform(764.8,205.1); + + this.shape_36 = new cjs.Shape(); + var sprImg_shape_36 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_36.onload = function(){ + this.shape_36.graphics.bf(sprImg_shape_36, null, new cjs.Matrix2D(0.234,0,0,0.234,-33.4,-37.3)).s().p("AlLF0IAArnIKXAAIAALng") + }.bind(this); + this.shape_36.setTransform(764.825,204.65); + + this.shape_37 = new cjs.Shape(); + var sprImg_shape_37 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_37.onload = function(){ + this.shape_37.graphics.bf(sprImg_shape_37, null, new cjs.Matrix2D(0.237,0,0,0.237,-33.8,-37.8)).s().p("AlPF4IAArvIKfAAIAALvg") + }.bind(this); + this.shape_37.setTransform(764.825,204.225); + + this.shape_38 = new cjs.Shape(); + var sprImg_shape_38 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_38.onload = function(){ + this.shape_38.graphics.bf(sprImg_shape_38, null, new cjs.Matrix2D(0.239,0,0,0.239,-34.2,-38.3)).s().p("AlTF8IAAr3IKnAAIAAL3g") + }.bind(this); + this.shape_38.setTransform(764.825,203.775); + + this.shape_39 = new cjs.Shape(); + var sprImg_shape_39 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_39.onload = function(){ + this.shape_39.graphics.bf(sprImg_shape_39, null, new cjs.Matrix2D(0.242,0,0,0.242,-34.6,-38.7)).s().p("AlXGBIAAsBIKvAAIAAMBg") + }.bind(this); + this.shape_39.setTransform(764.85,203.375); + + this.shape_40 = new cjs.Shape(); + var sprImg_shape_40 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_40.onload = function(){ + this.shape_40.graphics.bf(sprImg_shape_40, null, new cjs.Matrix2D(0.245,0,0,0.245,-35,-39.2)).s().p("AlbGFIAAsJIK3AAIAAMJg") + }.bind(this); + this.shape_40.setTransform(764.85,202.925); + + this.shape_41 = new cjs.Shape(); + var sprImg_shape_41 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_41.onload = function(){ + this.shape_41.graphics.bf(sprImg_shape_41, null, new cjs.Matrix2D(0.248,0,0,0.248,-35.4,-39.6)).s().p("AlfGJIAAsRIK/AAIAAMRg") + }.bind(this); + this.shape_41.setTransform(764.85,202.5); + + this.shape_42 = new cjs.Shape(); + var sprImg_shape_42 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_42.onload = function(){ + this.shape_42.graphics.bf(sprImg_shape_42, null, new cjs.Matrix2D(0.25,0,0,0.25,-35.8,-40.1)).s().p("AljGOIAAsbILHAAIAAMbg") + }.bind(this); + this.shape_42.setTransform(764.875,202.05); + + this.shape_43 = new cjs.Shape(); + var sprImg_shape_43 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_43.onload = function(){ + this.shape_43.graphics.bf(sprImg_shape_43, null, new cjs.Matrix2D(0.253,0,0,0.253,-36.2,-40.6)).s().p("AlnGSIAAsjILPAAIAAMjg") + }.bind(this); + this.shape_43.setTransform(764.9,201.625); + + this.shape_44 = new cjs.Shape(); + var sprImg_shape_44 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_44.onload = function(){ + this.shape_44.graphics.bf(sprImg_shape_44, null, new cjs.Matrix2D(0.256,0,0,0.256,-36.6,-41)).s().p("AlrGXIAAstILXAAIAAMtg") + }.bind(this); + this.shape_44.setTransform(764.9,201.175); + + this.shape_45 = new cjs.Shape(); + var sprImg_shape_45 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_45.onload = function(){ + this.shape_45.graphics.bf(sprImg_shape_45, null, new cjs.Matrix2D(0.259,0,0,0.259,-37,-41.4)).s().p("AlvGbIAAs1ILfAAIAAM1g") + }.bind(this); + this.shape_45.setTransform(764.925,200.75); + + this.shape_46 = new cjs.Shape(); + var sprImg_shape_46 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_46.onload = function(){ + this.shape_46.graphics.bf(sprImg_shape_46, null, new cjs.Matrix2D(0.261,0,0,0.261,-37.4,-41.9)).s().p("AlzGfIAAs9ILnAAIAAM9g") + }.bind(this); + this.shape_46.setTransform(764.925,200.3); + + this.shape_47 = new cjs.Shape(); + var sprImg_shape_47 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_47.onload = function(){ + this.shape_47.graphics.bf(sprImg_shape_47, null, new cjs.Matrix2D(0.265,0,0,0.265,-37.9,-42.4)).s().p("Al4GlIAAtJILxAAIAANJg") + }.bind(this); + this.shape_47.setTransform(764.925,199.75); + + this.shape_48 = new cjs.Shape(); + var sprImg_shape_48 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_48.onload = function(){ + this.shape_48.graphics.bf(sprImg_shape_48, null, new cjs.Matrix2D(0.268,0,0,0.268,-38.4,-43)).s().p("Al8GrIAAtVIL5AAIAANVg") + }.bind(this); + this.shape_48.setTransform(764.925,199.25); + + this.shape_49 = new cjs.Shape(); + var sprImg_shape_49 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_49.onload = function(){ + this.shape_49.graphics.bf(sprImg_shape_49, null, new cjs.Matrix2D(0.272,0,0,0.272,-38.9,-43.5)).s().p("AmBGwIAAtfIMDAAIAANfg") + }.bind(this); + this.shape_49.setTransform(764.925,198.7); + + this.shape_50 = new cjs.Shape(); + var sprImg_shape_50 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_50.onload = function(){ + this.shape_50.graphics.bf(sprImg_shape_50, null, new cjs.Matrix2D(0.275,0,0,0.275,-39.4,-44.1)).s().p("AmGG1IAAtpIMNAAIAANpg") + }.bind(this); + this.shape_50.setTransform(764.95,198.175); + + this.shape_51 = new cjs.Shape(); + var sprImg_shape_51 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_51.onload = function(){ + this.shape_51.graphics.bf(sprImg_shape_51, null, new cjs.Matrix2D(0.279,0,0,0.279,-39.9,-44.7)).s().p("AmLG7IAAt1IMXAAIAAN1g") + }.bind(this); + this.shape_51.setTransform(764.95,197.625); + + this.shape_52 = new cjs.Shape(); + var sprImg_shape_52 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_52.onload = function(){ + this.shape_52.graphics.bf(sprImg_shape_52, null, new cjs.Matrix2D(0.282,0,0,0.282,-40.4,-45.2)).s().p("AmQHAIAAt/IMhAAIAAN/g") + }.bind(this); + this.shape_52.setTransform(764.925,197.125); + + this.shape_53 = new cjs.Shape(); + var sprImg_shape_53 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_53.onload = function(){ + this.shape_53.graphics.bf(sprImg_shape_53, null, new cjs.Matrix2D(0.285,0,0,0.285,-40.9,-45.8)).s().p("AmUHGIAAuLIMpAAIAAOLg") + }.bind(this); + this.shape_53.setTransform(764.95,196.575); + + this.shape_54 = new cjs.Shape(); + var sprImg_shape_54 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_54.onload = function(){ + this.shape_54.graphics.bf(sprImg_shape_54, null, new cjs.Matrix2D(0.289,0,0,0.289,-41.4,-46.3)).s().p("AmaHLIAAuVIM1AAIAAOVg") + }.bind(this); + this.shape_54.setTransform(764.95,196.05); + + this.shape_55 = new cjs.Shape(); + var sprImg_shape_55 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_55.onload = function(){ + this.shape_55.graphics.bf(sprImg_shape_55, null, new cjs.Matrix2D(0.292,0,0,0.292,-41.9,-46.9)).s().p("AmeHQIAAugIM9AAIAAOgg") + }.bind(this); + this.shape_55.setTransform(764.975,195.5); + + this.shape_56 = new cjs.Shape(); + var sprImg_shape_56 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_56.onload = function(){ + this.shape_56.graphics.bf(sprImg_shape_56, null, new cjs.Matrix2D(0.296,0,0,0.296,-42.4,-47.4)).s().p("AmjHWIAAurINHAAIAAOrg") + }.bind(this); + this.shape_56.setTransform(764.95,195); + + this.shape_57 = new cjs.Shape(); + var sprImg_shape_57 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_57.onload = function(){ + this.shape_57.graphics.bf(sprImg_shape_57, null, new cjs.Matrix2D(0.299,0,0,0.299,-42.9,-48)).s().p("AmoHcIAAu3INRAAIAAO3g") + }.bind(this); + this.shape_57.setTransform(764.95,194.45); + + this.shape_58 = new cjs.Shape(); + var sprImg_shape_58 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_58.onload = function(){ + this.shape_58.graphics.bf(sprImg_shape_58, null, new cjs.Matrix2D(0.303,0,0,0.303,-43.4,-48.6)).s().p("AmtHhIAAvBINbAAIAAPBg") + }.bind(this); + this.shape_58.setTransform(764.975,193.925); + + this.shape_59 = new cjs.Shape(); + var sprImg_shape_59 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_59.onload = function(){ + this.shape_59.graphics.bf(sprImg_shape_59, null, new cjs.Matrix2D(0.306,0,0,0.306,-43.9,-49.1)).s().p("AmyHmIAAvLINlAAIAAPLg") + }.bind(this); + this.shape_59.setTransform(764.975,193.375); + + this.shape_60 = new cjs.Shape(); + var sprImg_shape_60 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_60.onload = function(){ + this.shape_60.graphics.bf(sprImg_shape_60, null, new cjs.Matrix2D(0.309,0,0,0.309,-44.4,-49.7)).s().p("Am2HsIAAvXINtAAIAAPXg") + }.bind(this); + this.shape_60.setTransform(764.975,192.875); + + this.shape_61 = new cjs.Shape(); + var sprImg_shape_61 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_61.onload = function(){ + this.shape_61.graphics.bf(sprImg_shape_61, null, new cjs.Matrix2D(0.313,0,0,0.313,-44.9,-50.2)).s().p("Am7HxIAAvhIN3AAIAAPhg") + }.bind(this); + this.shape_61.setTransform(764.975,192.325); + + this.shape_62 = new cjs.Shape(); + var sprImg_shape_62 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_62.onload = function(){ + this.shape_62.graphics.bf(sprImg_shape_62, null, new cjs.Matrix2D(0.315,0,0,0.315,-45.3,-50.6)).s().p("Am/H1IAAvqIN/AAIAAPqg") + }.bind(this); + this.shape_62.setTransform(764.975,191.9); + + this.shape_63 = new cjs.Shape(); + var sprImg_shape_63 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_63.onload = function(){ + this.shape_63.graphics.bf(sprImg_shape_63, null, new cjs.Matrix2D(0.318,0,0,0.318,-45.6,-51)).s().p("AnDH5IAAvyIOHAAIAAPyg") + }.bind(this); + this.shape_63.setTransform(764.975,191.5); + + this.shape_64 = new cjs.Shape(); + var sprImg_shape_64 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_64.onload = function(){ + this.shape_64.graphics.bf(sprImg_shape_64, null, new cjs.Matrix2D(0.321,0,0,0.321,-46,-51.4)).s().p("AnGH+IAAv6IONAAIAAP6g") + }.bind(this); + this.shape_64.setTransform(764.975,191.05); + + this.shape_65 = new cjs.Shape(); + var sprImg_shape_65 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_65.onload = function(){ + this.shape_65.graphics.bf(sprImg_shape_65, null, new cjs.Matrix2D(0.323,0,0,0.323,-46.4,-51.8)).s().p("AnKICIAAwDIOVAAIAAQDg") + }.bind(this); + this.shape_65.setTransform(765,190.625); + + this.shape_66 = new cjs.Shape(); + var sprImg_shape_66 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_66.onload = function(){ + this.shape_66.graphics.bf(sprImg_shape_66, null, new cjs.Matrix2D(0.326,0,0,0.326,-46.7,-52.2)).s().p("AnOIGIAAwLIOdAAIAAQLg") + }.bind(this); + this.shape_66.setTransform(765,190.225); + + this.shape_67 = new cjs.Shape(); + var sprImg_shape_67 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_67.onload = function(){ + this.shape_67.graphics.bf(sprImg_shape_67, null, new cjs.Matrix2D(0.328,0,0,0.328,-47.1,-52.6)).s().p("AnRIKIAAwTIOjAAIAAQTg") + }.bind(this); + this.shape_67.setTransform(765,189.8); + + this.shape_68 = new cjs.Shape(); + var sprImg_shape_68 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_68.onload = function(){ + this.shape_68.graphics.bf(sprImg_shape_68, null, new cjs.Matrix2D(0.331,0,0,0.331,-47.4,-53)).s().p("AnVIOIAAwbIOrAAIAAQbg") + }.bind(this); + this.shape_68.setTransform(765,189.375); + + this.shape_69 = new cjs.Shape(); + var sprImg_shape_69 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_69.onload = function(){ + this.shape_69.graphics.bf(sprImg_shape_69, null, new cjs.Matrix2D(0.334,0,0,0.334,-47.9,-53.4)).s().p("AnZISIAAwjIOzAAIAAQjg") + }.bind(this); + this.shape_69.setTransform(765.025,188.95); + + this.shape_70 = new cjs.Shape(); + var sprImg_shape_70 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_70.onload = function(){ + this.shape_70.graphics.bf(sprImg_shape_70, null, new cjs.Matrix2D(0.336,0,0,0.336,-48.2,-53.8)).s().p("AncIWIAAwrIO5AAIAAQrg") + }.bind(this); + this.shape_70.setTransform(765.025,188.525); + + this.shape_71 = new cjs.Shape(); + var sprImg_shape_71 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_71.onload = function(){ + this.shape_71.graphics.bf(sprImg_shape_71, null, new cjs.Matrix2D(0.339,0,0,0.339,-48.6,-54.2)).s().p("AngIaIAAwzIPBAAIAAQzg") + }.bind(this); + this.shape_71.setTransform(765.025,188.1); + + this.shape_72 = new cjs.Shape(); + var sprImg_shape_72 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_72.onload = function(){ + this.shape_72.graphics.bf(sprImg_shape_72, null, new cjs.Matrix2D(0.341,0,0,0.341,-48.9,-54.6)).s().p("AnkIeIAAw7IPJAAIAAQ7g") + }.bind(this); + this.shape_72.setTransform(765.025,187.7); + + this.shape_73 = new cjs.Shape(); + var sprImg_shape_73 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_73.onload = function(){ + this.shape_73.graphics.bf(sprImg_shape_73, null, new cjs.Matrix2D(0.344,0,0,0.344,-49.3,-55)).s().p("AnnIjIAAxFIPPAAIAARFg") + }.bind(this); + this.shape_73.setTransform(765.05,187.275); + + this.shape_74 = new cjs.Shape(); + var sprImg_shape_74 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_74.onload = function(){ + this.shape_74.graphics.bf(sprImg_shape_74, null, new cjs.Matrix2D(0.347,0,0,0.347,-49.7,-55.4)).s().p("AnrInIAAxNIPXAAIAARNg") + }.bind(this); + this.shape_74.setTransform(765.05,186.825); + + this.shape_75 = new cjs.Shape(); + var sprImg_shape_75 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_75.onload = function(){ + this.shape_75.graphics.bf(sprImg_shape_75, null, new cjs.Matrix2D(0.349,0,0,0.349,-50,-55.8)).s().p("AnvIrIAAxVIPfAAIAARVg") + }.bind(this); + this.shape_75.setTransform(765.05,186.425); + + this.shape_76 = new cjs.Shape(); + var sprImg_shape_76 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_76.onload = function(){ + this.shape_76.graphics.bf(sprImg_shape_76, null, new cjs.Matrix2D(0.352,0,0,0.352,-50.4,-56.2)).s().p("AnyIvIAAxdIPmAAIAARdg") + }.bind(this); + this.shape_76.setTransform(765.05,186); + + this.shape_77 = new cjs.Shape(); + var sprImg_shape_77 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_77.onload = function(){ + this.shape_77.graphics.bf(sprImg_shape_77, null, new cjs.Matrix2D(0.354,0,0,0.354,-50.7,-56.6)).s().p("An2IzIAAxlIPtAAIAARlg") + }.bind(this); + this.shape_77.setTransform(765.05,185.6); + + this.shape_78 = new cjs.Shape(); + var sprImg_shape_78 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_78.onload = function(){ + this.shape_78.graphics.bf(sprImg_shape_78, null, new cjs.Matrix2D(0.357,0,0,0.357,-51.1,-57)).s().p("An6I3IAAxtIP1AAIAARtg") + }.bind(this); + this.shape_78.setTransform(765.025,185.2); + + this.shape_79 = new cjs.Shape(); + var sprImg_shape_79 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_79.onload = function(){ + this.shape_79.graphics.bf(sprImg_shape_79, null, new cjs.Matrix2D(0.359,0,0,0.359,-51.5,-57.4)).s().p("An9I7IAAx1IP7AAIAAR1g") + }.bind(this); + this.shape_79.setTransform(765.025,184.8); + + this.shape_80 = new cjs.Shape(); + var sprImg_shape_80 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_80.onload = function(){ + this.shape_80.graphics.bf(sprImg_shape_80, null, new cjs.Matrix2D(0.362,0,0,0.362,-51.8,-57.8)).s().p("AoBI/IAAx9IQDAAIAAR9g") + }.bind(this); + this.shape_80.setTransform(765.025,184.375); + + this.shape_81 = new cjs.Shape(); + var sprImg_shape_81 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_81.onload = function(){ + this.shape_81.graphics.bf(sprImg_shape_81, null, new cjs.Matrix2D(0.364,0,0,0.364,-52.1,-58.2)).s().p("AoFJDIAAyFIQLAAIAASFg") + }.bind(this); + this.shape_81.setTransform(765,183.975); + + this.shape_82 = new cjs.Shape(); + var sprImg_shape_82 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_82.onload = function(){ + this.shape_82.graphics.bf(sprImg_shape_82, null, new cjs.Matrix2D(0.367,0,0,0.367,-52.5,-58.6)).s().p("AoIJHIAAyNIQRAAIAASNg") + }.bind(this); + this.shape_82.setTransform(765,183.575); + + this.shape_83 = new cjs.Shape(); + var sprImg_shape_83 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_83.onload = function(){ + this.shape_83.graphics.bf(sprImg_shape_83, null, new cjs.Matrix2D(0.369,0,0,0.369,-52.8,-59)).s().p("AoMJLIAAyVIQZAAIAASVg") + }.bind(this); + this.shape_83.setTransform(765,183.175); + + this.shape_84 = new cjs.Shape(); + var sprImg_shape_84 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_84.onload = function(){ + this.shape_84.graphics.bf(sprImg_shape_84, null, new cjs.Matrix2D(0.372,0,0,0.372,-53.2,-59.4)).s().p("AoPJPIAAydIQfAAIAASdg") + }.bind(this); + this.shape_84.setTransform(765,182.75); + + this.shape_85 = new cjs.Shape(); + var sprImg_shape_85 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_85.onload = function(){ + this.shape_85.graphics.bf(sprImg_shape_85, null, new cjs.Matrix2D(0.374,0,0,0.374,-53.6,-59.8)).s().p("AoTJTIAAylIQnAAIAASlg") + }.bind(this); + this.shape_85.setTransform(765,182.35); + + this.shape_86 = new cjs.Shape(); + var sprImg_shape_86 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_86.onload = function(){ + this.shape_86.graphics.bf(sprImg_shape_86, null, new cjs.Matrix2D(0.377,0,0,0.377,-53.9,-60.2)).s().p("AoWJXIAAytIQtAAIAAStg") + }.bind(this); + this.shape_86.setTransform(765,181.95); + + this.shape_87 = new cjs.Shape(); + var sprImg_shape_87 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_87.onload = function(){ + this.shape_87.graphics.bf(sprImg_shape_87, null, new cjs.Matrix2D(0.379,0,0,0.379,-54.3,-60.6)).s().p("AoaJbIAAy1IQ1AAIAAS1g") + }.bind(this); + this.shape_87.setTransform(764.975,181.55); + + this.shape_88 = new cjs.Shape(); + var sprImg_shape_88 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_88.onload = function(){ + this.shape_88.graphics.bf(sprImg_shape_88, null, new cjs.Matrix2D(0.382,0,0,0.382,-54.6,-61)).s().p("AoeJfIAAy9IQ9AAIAAS9g") + }.bind(this); + this.shape_88.setTransform(764.975,181.125); + + this.shape_89 = new cjs.Shape(); + var sprImg_shape_89 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_89.onload = function(){ + this.shape_89.graphics.bf(sprImg_shape_89, null, new cjs.Matrix2D(0.384,0,0,0.384,-55,-61.4)).s().p("AohJjIAAzFIRDAAIAATFg") + }.bind(this); + this.shape_89.setTransform(764.975,180.725); + + this.shape_90 = new cjs.Shape(); + var sprImg_shape_90 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_90.onload = function(){ + this.shape_90.graphics.bf(sprImg_shape_90, null, new cjs.Matrix2D(0.387,0,0,0.387,-55.3,-61.8)).s().p("AolJnIAAzNIRLAAIAATNg") + }.bind(this); + this.shape_90.setTransform(764.95,180.325); + + this.shape_91 = new cjs.Shape(); + var sprImg_shape_91 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_91.onload = function(){ + this.shape_91.graphics.bf(sprImg_shape_91, null, new cjs.Matrix2D(0.389,0,0,0.389,-55.7,-62.2)).s().p("AopJrIAAzVIRSAAIAATVg") + }.bind(this); + this.shape_91.setTransform(764.95,179.925); + + this.shape_92 = new cjs.Shape(); + var sprImg_shape_92 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_92.onload = function(){ + this.shape_92.graphics.bf(sprImg_shape_92, null, new cjs.Matrix2D(0.391,0,0,0.391,-55.9,-62.5)).s().p("AorJuIAAzbIRXAAIAATbg") + }.bind(this); + this.shape_92.setTransform(764.95,179.625); + + this.shape_93 = new cjs.Shape(); + var sprImg_shape_93 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_93.onload = function(){ + this.shape_93.graphics.bf(sprImg_shape_93, null, new cjs.Matrix2D(0.393,0,0,0.393,-56.2,-62.8)).s().p("AotJxIAAzgIRbAAIAATgg") + }.bind(this); + this.shape_93.setTransform(764.95,179.35); + + this.shape_94 = new cjs.Shape(); + var sprImg_shape_94 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_94.onload = function(){ + this.shape_94.graphics.bf(sprImg_shape_94, null, new cjs.Matrix2D(0.395,0,0,0.395,-56.5,-63.1)).s().p("AowJ0IAAznIRhAAIAATng") + }.bind(this); + this.shape_94.setTransform(764.975,179.05); + + this.shape_95 = new cjs.Shape(); + var sprImg_shape_95 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_95.onload = function(){ + this.shape_95.graphics.bf(sprImg_shape_95, null, new cjs.Matrix2D(0.397,0,0,0.397,-56.7,-63.4)).s().p("AozJ2IAAzrIRnAAIAATrg") + }.bind(this); + this.shape_95.setTransform(764.95,178.775); + + this.shape_96 = new cjs.Shape(); + var sprImg_shape_96 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_96.onload = function(){ + this.shape_96.graphics.bf(sprImg_shape_96, null, new cjs.Matrix2D(0.399,0,0,0.399,-57,-63.7)).s().p("Ao2J5IAAzxIRtAAIAATxg") + }.bind(this); + this.shape_96.setTransform(764.95,178.475); + + this.shape_97 = new cjs.Shape(); + var sprImg_shape_97 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_97.onload = function(){ + this.shape_97.graphics.bf(sprImg_shape_97, null, new cjs.Matrix2D(0.4,0,0,0.4,-57.2,-64)).s().p("Ao4J8IAAz3IRxAAIAAT3g") + }.bind(this); + this.shape_97.setTransform(764.95,178.2); + + this.shape_98 = new cjs.Shape(); + var sprImg_shape_98 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_98.onload = function(){ + this.shape_98.graphics.bf(sprImg_shape_98, null, new cjs.Matrix2D(0.402,0,0,0.402,-57.5,-64.2)).s().p("Ao7J/IAAz9IR2AAIAAT9g") + }.bind(this); + this.shape_98.setTransform(764.95,177.9); + + this.shape_99 = new cjs.Shape(); + var sprImg_shape_99 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_99.onload = function(){ + this.shape_99.graphics.bf(sprImg_shape_99, null, new cjs.Matrix2D(0.404,0,0,0.404,-57.8,-64.6)).s().p("Ao9KCIAA0DIR7AAIAAUDg") + }.bind(this); + this.shape_99.setTransform(764.975,177.65); + + this.shape_100 = new cjs.Shape(); + var sprImg_shape_100 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_100.onload = function(){ + this.shape_100.graphics.bf(sprImg_shape_100, null, new cjs.Matrix2D(0.406,0,0,0.406,-58.1,-64.8)).s().p("ApAKFIAA0JISBAAIAAUJg") + }.bind(this); + this.shape_100.setTransform(764.975,177.35); + + this.shape_101 = new cjs.Shape(); + var sprImg_shape_101 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_101.onload = function(){ + this.shape_101.graphics.bf(sprImg_shape_101, null, new cjs.Matrix2D(0.408,0,0,0.408,-58.3,-65.2)).s().p("ApCKIIAA0PISFAAIAAUPg") + }.bind(this); + this.shape_101.setTransform(764.975,177.075); + + this.shape_102 = new cjs.Shape(); + var sprImg_shape_102 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_102.onload = function(){ + this.shape_102.graphics.bf(sprImg_shape_102, null, new cjs.Matrix2D(0.409,0,0,0.409,-58.6,-65.5)).s().p("ApFKLIAA0VISLAAIAAUVg") + }.bind(this); + this.shape_102.setTransform(764.975,176.775); + + this.shape_103 = new cjs.Shape(); + var sprImg_shape_103 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_103.onload = function(){ + this.shape_103.graphics.bf(sprImg_shape_103, null, new cjs.Matrix2D(0.411,0,0,0.411,-58.8,-65.7)).s().p("ApIKNIAA0ZISRAAIAAUZg") + }.bind(this); + this.shape_103.setTransform(764.95,176.5); + + this.shape_104 = new cjs.Shape(); + var sprImg_shape_104 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_104.onload = function(){ + this.shape_104.graphics.bf(sprImg_shape_104, null, new cjs.Matrix2D(0.413,0,0,0.413,-59.1,-66)).s().p("ApKKQIAA0gISVAAIAAUgg") + }.bind(this); + this.shape_104.setTransform(764.975,176.2); + + this.shape_105 = new cjs.Shape(); + var sprImg_shape_105 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_105.onload = function(){ + this.shape_105.graphics.bf(sprImg_shape_105, null, new cjs.Matrix2D(0.415,0,0,0.415,-59.4,-66.3)).s().p("ApNKTIAA0lISbAAIAAUlg") + }.bind(this); + this.shape_105.setTransform(764.975,175.925); + + this.shape_106 = new cjs.Shape(); + var sprImg_shape_106 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_106.onload = function(){ + this.shape_106.graphics.bf(sprImg_shape_106, null, new cjs.Matrix2D(0.417,0,0,0.417,-59.6,-66.6)).s().p("ApPKWIAA0rISfAAIAAUrg") + }.bind(this); + this.shape_106.setTransform(764.975,175.625); + + this.shape_107 = new cjs.Shape(); + var sprImg_shape_107 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_107.onload = function(){ + this.shape_107.graphics.bf(sprImg_shape_107, null, new cjs.Matrix2D(0.419,0,0,0.419,-59.9,-66.9)).s().p("ApSKZIAA0yISlAAIAAUyg") + }.bind(this); + this.shape_107.setTransform(764.975,175.3); + + this.shape_108 = new cjs.Shape(); + var sprImg_shape_108 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_108.onload = function(){ + this.shape_108.graphics.bf(sprImg_shape_108, null, new cjs.Matrix2D(0.421,0,0,0.421,-60.2,-67.2)).s().p("ApVKcIAA03ISrAAIAAU3g") + }.bind(this); + this.shape_108.setTransform(764.975,175); + + this.shape_109 = new cjs.Shape(); + var sprImg_shape_109 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_109.onload = function(){ + this.shape_109.graphics.bf(sprImg_shape_109, null, new cjs.Matrix2D(0.423,0,0,0.423,-60.5,-67.6)).s().p("ApYKgIAA0/ISxAAIAAU/g") + }.bind(this); + this.shape_109.setTransform(764.975,174.675); + + this.shape_110 = new cjs.Shape(); + var sprImg_shape_110 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_110.onload = function(){ + this.shape_110.graphics.bf(sprImg_shape_110, null, new cjs.Matrix2D(0.425,0,0,0.425,-60.8,-67.9)).s().p("ApbKjIAA1FIS3AAIAAVFg") + }.bind(this); + this.shape_110.setTransform(764.975,174.375); + + this.shape_111 = new cjs.Shape(); + var sprImg_shape_111 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_111.onload = function(){ + this.shape_111.graphics.bf(sprImg_shape_111, null, new cjs.Matrix2D(0.427,0,0,0.427,-61.1,-68.2)).s().p("ApdKmIAA1LIS7AAIAAVLg") + }.bind(this); + this.shape_111.setTransform(764.975,174.05); + + this.shape_112 = new cjs.Shape(); + var sprImg_shape_112 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_112.onload = function(){ + this.shape_112.graphics.bf(sprImg_shape_112, null, new cjs.Matrix2D(0.429,0,0,0.429,-61.3,-68.5)).s().p("ApgKpIAA1RITBAAIAAVRg") + }.bind(this); + this.shape_112.setTransform(764.975,173.725); + + this.shape_113 = new cjs.Shape(); + var sprImg_shape_113 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_113.onload = function(){ + this.shape_113.graphics.bf(sprImg_shape_113, null, new cjs.Matrix2D(0.431,0,0,0.431,-61.6,-68.9)).s().p("ApjKsIAA1XITHAAIAAVXg") + }.bind(this); + this.shape_113.setTransform(764.975,173.425); + + this.shape_114 = new cjs.Shape(); + var sprImg_shape_114 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_114.onload = function(){ + this.shape_114.graphics.bf(sprImg_shape_114, null, new cjs.Matrix2D(0.433,0,0,0.433,-61.9,-69.2)).s().p("ApmKwIAA1fITNAAIAAVfg") + }.bind(this); + this.shape_114.setTransform(764.975,173.125); + + this.shape_115 = new cjs.Shape(); + var sprImg_shape_115 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_115.onload = function(){ + this.shape_115.graphics.bf(sprImg_shape_115, null, new cjs.Matrix2D(0.435,0,0,0.435,-62.2,-69.5)).s().p("AppKzIAA1lITTAAIAAVlg") + }.bind(this); + this.shape_115.setTransform(764.975,172.825); + + this.shape_116 = new cjs.Shape(); + var sprImg_shape_116 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_116.onload = function(){ + this.shape_116.graphics.bf(sprImg_shape_116, null, new cjs.Matrix2D(0.437,0,0,0.437,-62.5,-69.8)).s().p("ApsK2IAA1rITZAAIAAVrg") + }.bind(this); + this.shape_116.setTransform(764.975,172.5); + + this.shape_117 = new cjs.Shape(); + var sprImg_shape_117 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_117.onload = function(){ + this.shape_117.graphics.bf(sprImg_shape_117, null, new cjs.Matrix2D(0.439,0,0,0.439,-62.8,-70.1)).s().p("ApuK5IAA1xITdAAIAAVxg") + }.bind(this); + this.shape_117.setTransform(764.975,172.175); + + this.shape_118 = new cjs.Shape(); + var sprImg_shape_118 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_118.onload = function(){ + this.shape_118.graphics.bf(sprImg_shape_118, null, new cjs.Matrix2D(0.441,0,0,0.441,-63.1,-70.5)).s().p("ApxK8IAA13ITjAAIAAV3g") + }.bind(this); + this.shape_118.setTransform(764.975,171.875); + + this.shape_119 = new cjs.Shape(); + var sprImg_shape_119 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_119.onload = function(){ + this.shape_119.graphics.bf(sprImg_shape_119, null, new cjs.Matrix2D(0.443,0,0,0.443,-63.4,-70.8)).s().p("Ap0LAIAA1/ITpAAIAAV/g") + }.bind(this); + this.shape_119.setTransform(764.975,171.55); + + this.shape_120 = new cjs.Shape(); + var sprImg_shape_120 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_120.onload = function(){ + this.shape_120.graphics.bf(sprImg_shape_120, null, new cjs.Matrix2D(0.445,0,0,0.445,-63.6,-71.1)).s().p("Ap3LDIAA2EITvAAIAAWEg") + }.bind(this); + this.shape_120.setTransform(764.975,171.25); + + this.shape_121 = new cjs.Shape(); + var sprImg_shape_121 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_121.onload = function(){ + this.shape_121.graphics.bf(sprImg_shape_121, null, new cjs.Matrix2D(0.447,0,0,0.447,-63.9,-71.4)).s().p("Ap6LGIAA2LIT1AAIAAWLg") + }.bind(this); + this.shape_121.setTransform(764.975,170.925); + + this.shape_122 = new cjs.Shape(); + var sprImg_shape_122 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_122.onload = function(){ + this.shape_122.graphics.bf(sprImg_shape_122, null, new cjs.Matrix2D(0.45,0,0,0.45,-64.4,-72)).s().p("Ap/LLIAA2VIT/AAIAAWVg") + }.bind(this); + this.shape_122.setTransform(764.975,170.4); + + this.shape_123 = new cjs.Shape(); + var sprImg_shape_123 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_123.onload = function(){ + this.shape_123.graphics.bf(sprImg_shape_123, null, new cjs.Matrix2D(0.453,0,0,0.453,-64.9,-72.5)).s().p("AqDLRIAA2gIUHAAIAAWgg") + }.bind(this); + this.shape_123.setTransform(764.975,169.85); + + this.shape_124 = new cjs.Shape(); + var sprImg_shape_124 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_124.onload = function(){ + this.shape_124.graphics.bf(sprImg_shape_124, null, new cjs.Matrix2D(0.457,0,0,0.457,-65.4,-73.1)).s().p("AqILWIAA2rIURAAIAAWrg") + }.bind(this); + this.shape_124.setTransform(764.975,169.325); + + this.shape_125 = new cjs.Shape(); + var sprImg_shape_125 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_125.onload = function(){ + this.shape_125.graphics.bf(sprImg_shape_125, null, new cjs.Matrix2D(0.46,0,0,0.46,-65.9,-73.6)).s().p("AqNLbIAA21IUbAAIAAW1g") + }.bind(this); + this.shape_125.setTransform(765,168.775); + + this.shape_126 = new cjs.Shape(); + var sprImg_shape_126 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_126.onload = function(){ + this.shape_126.graphics.bf(sprImg_shape_126, null, new cjs.Matrix2D(0.464,0,0,0.464,-66.3,-74.1)).s().p("AqSLhIAA3BIUlAAIAAXBg") + }.bind(this); + this.shape_126.setTransform(765,168.25); + + this.shape_127 = new cjs.Shape(); + var sprImg_shape_127 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_127.onload = function(){ + this.shape_127.graphics.bf(sprImg_shape_127, null, new cjs.Matrix2D(0.467,0,0,0.467,-66.8,-74.7)).s().p("AqWLmIAA3LIUtAAIAAXLg") + }.bind(this); + this.shape_127.setTransform(765,167.7); + + this.shape_128 = new cjs.Shape(); + var sprImg_shape_128 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_128.onload = function(){ + this.shape_128.graphics.bf(sprImg_shape_128, null, new cjs.Matrix2D(0.47,0,0,0.47,-67.3,-75.2)).s().p("AqcLrIAA3VIU5AAIAAXVg") + }.bind(this); + this.shape_128.setTransform(765,167.175); + + this.shape_129 = new cjs.Shape(); + var sprImg_shape_129 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_129.onload = function(){ + this.shape_129.graphics.bf(sprImg_shape_129, null, new cjs.Matrix2D(0.474,0,0,0.474,-67.8,-75.8)).s().p("AqgLxIAA3hIVBAAIAAXhg") + }.bind(this); + this.shape_129.setTransform(765.025,166.65); + + this.shape_130 = new cjs.Shape(); + var sprImg_shape_130 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_130.onload = function(){ + this.shape_130.graphics.bf(sprImg_shape_130, null, new cjs.Matrix2D(0.477,0,0,0.477,-68.3,-76.3)).s().p("AqlL2IAA3rIVLAAIAAXrg") + }.bind(this); + this.shape_130.setTransform(765.025,166.125); + + this.shape_131 = new cjs.Shape(); + var sprImg_shape_131 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_131.onload = function(){ + this.shape_131.graphics.bf(sprImg_shape_131, null, new cjs.Matrix2D(0.481,0,0,0.481,-68.8,-76.9)).s().p("AqqL8IAA33IVVAAIAAX3g") + }.bind(this); + this.shape_131.setTransform(765.025,165.575); + + this.shape_132 = new cjs.Shape(); + var sprImg_shape_132 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_132.onload = function(){ + this.shape_132.graphics.bf(sprImg_shape_132, null, new cjs.Matrix2D(0.484,0,0,0.484,-69.3,-77.4)).s().p("AqvMBIAA4BIVfAAIAAYBg") + }.bind(this); + this.shape_132.setTransform(765.025,165.05); + + this.shape_133 = new cjs.Shape(); + var sprImg_shape_133 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_133.onload = function(){ + this.shape_133.graphics.bf(sprImg_shape_133, null, new cjs.Matrix2D(0.487,0,0,0.487,-69.8,-77.9)).s().p("Aq0MGIAA4MIVoAAIAAYMg") + }.bind(this); + this.shape_133.setTransform(765.05,164.5); + + this.shape_134 = new cjs.Shape(); + var sprImg_shape_134 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_134.onload = function(){ + this.shape_134.graphics.bf(sprImg_shape_134, null, new cjs.Matrix2D(0.491,0,0,0.491,-70.3,-78.5)).s().p("Aq4MMIAA4XIVyAAIAAYXg") + }.bind(this); + this.shape_134.setTransform(765.05,163.975); + + this.shape_135 = new cjs.Shape(); + var sprImg_shape_135 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_135.onload = function(){ + this.shape_135.graphics.bf(sprImg_shape_135, null, new cjs.Matrix2D(0.494,0,0,0.494,-70.7,-79)).s().p("Aq9MRIAA4hIV7AAIAAYhg") + }.bind(this); + this.shape_135.setTransform(765.05,163.425); + + this.shape_136 = new cjs.Shape(); + var sprImg_shape_136 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_136.onload = function(){ + this.shape_136.graphics.bf(sprImg_shape_136, null, new cjs.Matrix2D(0.497,0,0,0.497,-71.2,-79.6)).s().p("ArCMWIAA4rIWFAAIAAYrg") + }.bind(this); + this.shape_136.setTransform(765.05,162.9); + + this.shape_137 = new cjs.Shape(); + var sprImg_shape_137 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_137.onload = function(){ + this.shape_137.graphics.bf(sprImg_shape_137, null, new cjs.Matrix2D(0.499,0,0,0.499,-71.4,-79.8)).s().p("ArEMZIAA4xIWJAAIAAYxg") + }.bind(this); + this.shape_137.setTransform(765.05,162.675); + + this.shape_138 = new cjs.Shape(); + var sprImg_shape_138 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_138.onload = function(){ + this.shape_138.graphics.bf(sprImg_shape_138, null, new cjs.Matrix2D(0.5,0,0,0.5,-71.7,-80.1)).s().p("ArGMbIAA41IWNAAIAAY1g") + }.bind(this); + this.shape_138.setTransform(765.05,162.425); + + this.shape_139 = new cjs.Shape(); + var sprImg_shape_139 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_139.onload = function(){ + this.shape_139.graphics.bf(sprImg_shape_139, null, new cjs.Matrix2D(0.502,0,0,0.502,-71.9,-80.3)).s().p("ArIMdIAA46IWRAAIAAY6g") + }.bind(this); + this.shape_139.setTransform(765.05,162.2); + + this.shape_140 = new cjs.Shape(); + var sprImg_shape_140 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_140.onload = function(){ + this.shape_140.graphics.bf(sprImg_shape_140, null, new cjs.Matrix2D(0.503,0,0,0.503,-72.1,-80.6)).s().p("ArKMgIAA4/IWWAAIAAY/g") + }.bind(this); + this.shape_140.setTransform(765.05,161.975); + + this.shape_141 = new cjs.Shape(); + var sprImg_shape_141 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_141.onload = function(){ + this.shape_141.graphics.bf(sprImg_shape_141, null, new cjs.Matrix2D(0.505,0,0,0.505,-72.3,-80.8)).s().p("ArNMiIAA5DIWbAAIAAZDg") + }.bind(this); + this.shape_141.setTransform(765.05,161.725); + + this.shape_142 = new cjs.Shape(); + var sprImg_shape_142 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_142.onload = function(){ + this.shape_142.graphics.bf(sprImg_shape_142, null, new cjs.Matrix2D(0.506,0,0,0.506,-72.5,-81)).s().p("ArPMkIAA5HIWfAAIAAZHg") + }.bind(this); + this.shape_142.setTransform(765.05,161.5); + + this.shape_143 = new cjs.Shape(); + var sprImg_shape_143 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_143.onload = function(){ + this.shape_143.graphics.bf(sprImg_shape_143, null, new cjs.Matrix2D(0.508,0,0,0.508,-72.7,-81.3)).s().p("ArQMnIAA5NIWhAAIAAZNg") + }.bind(this); + this.shape_143.setTransform(765.05,161.275); + + this.shape_144 = new cjs.Shape(); + var sprImg_shape_144 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_144.onload = function(){ + this.shape_144.graphics.bf(sprImg_shape_144, null, new cjs.Matrix2D(0.509,0,0,0.509,-72.9,-81.5)).s().p("ArTMqIAA5TIWnAAIAAZTg") + }.bind(this); + this.shape_144.setTransform(765.05,161.05); + + this.shape_145 = new cjs.Shape(); + var sprImg_shape_145 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_145.onload = function(){ + this.shape_145.graphics.bf(sprImg_shape_145, null, new cjs.Matrix2D(0.511,0,0,0.511,-73.1,-81.8)).s().p("ArVMsIAA5XIWrAAIAAZXg") + }.bind(this); + this.shape_145.setTransform(765.05,160.825); + + this.shape_146 = new cjs.Shape(); + var sprImg_shape_146 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_146.onload = function(){ + this.shape_146.graphics.bf(sprImg_shape_146, null, new cjs.Matrix2D(0.512,0,0,0.512,-73.4,-82)).s().p("ArXMuIAA5bIWvAAIAAZbg") + }.bind(this); + this.shape_146.setTransform(765.05,160.6); + + this.shape_147 = new cjs.Shape(); + var sprImg_shape_147 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_147.onload = function(){ + this.shape_147.graphics.bf(sprImg_shape_147, null, new cjs.Matrix2D(0.514,0,0,0.514,-73.6,-82.2)).s().p("ArZMxIAA5hIWzAAIAAZhg") + }.bind(this); + this.shape_147.setTransform(765.05,160.35); + + this.shape_148 = new cjs.Shape(); + var sprImg_shape_148 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_148.onload = function(){ + this.shape_148.graphics.bf(sprImg_shape_148, null, new cjs.Matrix2D(0.515,0,0,0.515,-73.8,-82.5)).s().p("ArbMzIAA5lIW3AAIAAZlg") + }.bind(this); + this.shape_148.setTransform(765.05,160.125); + + this.shape_149 = new cjs.Shape(); + var sprImg_shape_149 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_149.onload = function(){ + this.shape_149.graphics.bf(sprImg_shape_149, null, new cjs.Matrix2D(0.517,0,0,0.517,-74,-82.7)).s().p("AreM1IAA5pIW9AAIAAZpg") + }.bind(this); + this.shape_149.setTransform(765.05,159.9); + + this.shape_150 = new cjs.Shape(); + var sprImg_shape_150 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_150.onload = function(){ + this.shape_150.graphics.bf(sprImg_shape_150, null, new cjs.Matrix2D(0.518,0,0,0.518,-74.2,-82.9)).s().p("ArgM4IAA5uIXBAAIAAZug") + }.bind(this); + this.shape_150.setTransform(765.05,159.65); + + this.shape_151 = new cjs.Shape(); + var sprImg_shape_151 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_151.onload = function(){ + this.shape_151.graphics.bf(sprImg_shape_151, null, new cjs.Matrix2D(0.52,0,0,0.52,-74.4,-83.2)).s().p("ArhM6IAA5zIXDAAIAAZzg") + }.bind(this); + this.shape_151.setTransform(765.05,159.425); + + this.shape_152 = new cjs.Shape(); + var sprImg_shape_152 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_152.onload = function(){ + this.shape_152.graphics.bf(sprImg_shape_152, null, new cjs.Matrix2D(0.522,0,0,0.522,-74.8,-83.5)).s().p("ArkM9IAA55IXJAAIAAZ5g") + }.bind(this); + this.shape_152.setTransform(765.05,159.075); + + this.shape_153 = new cjs.Shape(); + var sprImg_shape_153 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_153.onload = function(){ + this.shape_153.graphics.bf(sprImg_shape_153, null, new cjs.Matrix2D(0.524,0,0,0.524,-75.1,-83.9)).s().p("AroNBIAA6BIXRAAIAAaBg") + }.bind(this); + this.shape_153.setTransform(765.05,158.7); + + this.shape_154 = new cjs.Shape(); + var sprImg_shape_154 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_154.onload = function(){ + this.shape_154.graphics.bf(sprImg_shape_154, null, new cjs.Matrix2D(0.526,0,0,0.526,-75.4,-84.2)).s().p("ArrNFIAA6JIXXAAIAAaJg") + }.bind(this); + this.shape_154.setTransform(765.05,158.35); + + this.shape_155 = new cjs.Shape(); + var sprImg_shape_155 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_155.onload = function(){ + this.shape_155.graphics.bf(sprImg_shape_155, null, new cjs.Matrix2D(0.529,0,0,0.529,-75.7,-84.6)).s().p("AruNIIAA6PIXeAAIAAaPg") + }.bind(this); + this.shape_155.setTransform(765.05,158.025); + + this.shape_156 = new cjs.Shape(); + var sprImg_shape_156 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_156.onload = function(){ + this.shape_156.graphics.bf(sprImg_shape_156, null, new cjs.Matrix2D(0.531,0,0,0.531,-76.1,-85)).s().p("AryNMIAA6XIXlAAIAAaXg") + }.bind(this); + this.shape_156.setTransform(765.05,157.675); + + this.shape_157 = new cjs.Shape(); + var sprImg_shape_157 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_157.onload = function(){ + this.shape_157.graphics.bf(sprImg_shape_157, null, new cjs.Matrix2D(0.533,0,0,0.533,-76.4,-85.3)).s().p("Ar1NPIAA6eIXrAAIAAaeg") + }.bind(this); + this.shape_157.setTransform(765.075,157.3); + + this.shape_158 = new cjs.Shape(); + var sprImg_shape_158 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_158.onload = function(){ + this.shape_158.graphics.bf(sprImg_shape_158, null, new cjs.Matrix2D(0.535,0,0,0.535,-76.7,-85.7)).s().p("Ar4NTIAA6lIXxAAIAAalg") + }.bind(this); + this.shape_158.setTransform(765.05,156.95); + + this.shape_159 = new cjs.Shape(); + var sprImg_shape_159 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_159.onload = function(){ + this.shape_159.graphics.bf(sprImg_shape_159, null, new cjs.Matrix2D(0.538,0,0,0.538,-77.1,-86.1)).s().p("Ar7NWIAA6rIX3AAIAAarg") + }.bind(this); + this.shape_159.setTransform(765.075,156.6); + + this.shape_160 = new cjs.Shape(); + var sprImg_shape_160 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_160.onload = function(){ + this.shape_160.graphics.bf(sprImg_shape_160, null, new cjs.Matrix2D(0.54,0,0,0.54,-77.4,-86.4)).s().p("Ar+NaIAA6zIX9AAIAAazg") + }.bind(this); + this.shape_160.setTransform(765.05,156.25); + + this.shape_161 = new cjs.Shape(); + var sprImg_shape_161 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_161.onload = function(){ + this.shape_161.graphics.bf(sprImg_shape_161, null, new cjs.Matrix2D(0.542,0,0,0.542,-77.7,-86.8)).s().p("AsCNeIAA67IYFAAIAAa7g") + }.bind(this); + this.shape_161.setTransform(765.075,155.875); + + this.shape_162 = new cjs.Shape(); + var sprImg_shape_162 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_162.onload = function(){ + this.shape_162.graphics.bf(sprImg_shape_162, null, new cjs.Matrix2D(0.545,0,0,0.545,-78.1,-87.2)).s().p("AsFNhIAA7BIYLAAIAAbBg") + }.bind(this); + this.shape_162.setTransform(765.075,155.525); + + this.shape_163 = new cjs.Shape(); + var sprImg_shape_163 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_163.onload = function(){ + this.shape_163.graphics.bf(sprImg_shape_163, null, new cjs.Matrix2D(0.547,0,0,0.547,-78.4,-87.5)).s().p("AsINlIAA7JIYRAAIAAbJg") + }.bind(this); + this.shape_163.setTransform(765.075,155.2); + + this.shape_164 = new cjs.Shape(); + var sprImg_shape_164 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_164.onload = function(){ + this.shape_164.graphics.bf(sprImg_shape_164, null, new cjs.Matrix2D(0.549,0,0,0.549,-78.7,-87.9)).s().p("AsLNoIAA7QIYXAAIAAbQg") + }.bind(this); + this.shape_164.setTransform(765.075,154.85); + + this.shape_165 = new cjs.Shape(); + var sprImg_shape_165 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_165.onload = function(){ + this.shape_165.graphics.bf(sprImg_shape_165, null, new cjs.Matrix2D(0.551,0,0,0.551,-79,-88.3)).s().p("AsPNsIAA7XIYfAAIAAbXg") + }.bind(this); + this.shape_165.setTransform(765.075,154.475); + + this.shape_166 = new cjs.Shape(); + var sprImg_shape_166 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_166.onload = function(){ + this.shape_166.graphics.bf(sprImg_shape_166, null, new cjs.Matrix2D(0.554,0,0,0.554,-79.4,-88.6)).s().p("AsSNwIAA7fIYlAAIAAbfg") + }.bind(this); + this.shape_166.setTransform(765.075,154.125); + + this.shape_167 = new cjs.Shape(); + var sprImg_shape_167 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_167.onload = function(){ + this.shape_167.graphics.bf(sprImg_shape_167, null, new cjs.Matrix2D(0.556,0,0,0.556,-79.7,-88.9)).s().p("AsVNzIAA7lIYrAAIAAblg") + }.bind(this); + this.shape_167.setTransform(765.075,153.8); + + this.shape_168 = new cjs.Shape(); + var sprImg_shape_168 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_168.onload = function(){ + this.shape_168.graphics.bf(sprImg_shape_168, null, new cjs.Matrix2D(0.558,0,0,0.558,-79.9,-89.2)).s().p("AsXN2IAA7rIYvAAIAAbrg") + }.bind(this); + this.shape_168.setTransform(765.075,153.5); + + this.shape_169 = new cjs.Shape(); + var sprImg_shape_169 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_169.onload = function(){ + this.shape_169.graphics.bf(sprImg_shape_169, null, new cjs.Matrix2D(0.56,0,0,0.56,-80.2,-89.6)).s().p("AsaN5IAA7xIY1AAIAAbxg") + }.bind(this); + this.shape_169.setTransform(765.075,153.175); + + this.shape_170 = new cjs.Shape(); + var sprImg_shape_170 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_170.onload = function(){ + this.shape_170.graphics.bf(sprImg_shape_170, null, new cjs.Matrix2D(0.562,0,0,0.562,-80.5,-89.9)).s().p("AsdN8IAA73IY7AAIAAb3g") + }.bind(this); + this.shape_170.setTransform(765.075,152.85); + + this.shape_171 = new cjs.Shape(); + var sprImg_shape_171 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_171.onload = function(){ + this.shape_171.graphics.bf(sprImg_shape_171, null, new cjs.Matrix2D(0.564,0,0,0.564,-80.8,-90.2)).s().p("AsgN/IAA7+IZBAAIAAb+g") + }.bind(this); + this.shape_171.setTransform(765.075,152.55); + + this.shape_172 = new cjs.Shape(); + var sprImg_shape_172 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_172.onload = function(){ + this.shape_172.graphics.bf(sprImg_shape_172, null, new cjs.Matrix2D(0.566,0,0,0.566,-81.1,-90.5)).s().p("AsjODIAA8FIZHAAIAAcFg") + }.bind(this); + this.shape_172.setTransform(765.075,152.225); + + this.shape_173 = new cjs.Shape(); + var sprImg_shape_173 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_173.onload = function(){ + this.shape_173.graphics.bf(sprImg_shape_173, null, new cjs.Matrix2D(0.568,0,0,0.568,-81.4,-90.8)).s().p("AsmOGIAA8LIZNAAIAAcLg") + }.bind(this); + this.shape_173.setTransform(765.075,151.9); + + this.shape_174 = new cjs.Shape(); + var sprImg_shape_174 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_174.onload = function(){ + this.shape_174.graphics.bf(sprImg_shape_174, null, new cjs.Matrix2D(0.57,0,0,0.57,-81.7,-91.2)).s().p("AsoOJIAA8RIZRAAIAAcRg") + }.bind(this); + this.shape_174.setTransform(765.075,151.6); + + this.shape_175 = new cjs.Shape(); + var sprImg_shape_175 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_175.onload = function(){ + this.shape_175.graphics.bf(sprImg_shape_175, null, new cjs.Matrix2D(0.572,0,0,0.572,-82,-91.5)).s().p("AsrOMIAA8XIZXAAIAAcXg") + }.bind(this); + this.shape_175.setTransform(765.075,151.275); + + this.shape_176 = new cjs.Shape(); + var sprImg_shape_176 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_176.onload = function(){ + this.shape_176.graphics.bf(sprImg_shape_176, null, new cjs.Matrix2D(0.574,0,0,0.574,-82.2,-91.8)).s().p("AsuOPIAA8eIZdAAIAAceg") + }.bind(this); + this.shape_176.setTransform(765.075,150.95); + + this.shape_177 = new cjs.Shape(); + var sprImg_shape_177 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_177.onload = function(){ + this.shape_177.graphics.bf(sprImg_shape_177, null, new cjs.Matrix2D(0.576,0,0,0.576,-82.5,-92.1)).s().p("AsxOSIAA8jIZjAAIAAcjg") + }.bind(this); + this.shape_177.setTransform(765.075,150.65); + + this.shape_178 = new cjs.Shape(); + var sprImg_shape_178 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_178.onload = function(){ + this.shape_178.graphics.bf(sprImg_shape_178, null, new cjs.Matrix2D(0.578,0,0,0.578,-82.8,-92.5)).s().p("As0OWIAA8rIZpAAIAAcrg") + }.bind(this); + this.shape_178.setTransform(765.075,150.325); + + this.shape_179 = new cjs.Shape(); + var sprImg_shape_179 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_179.onload = function(){ + this.shape_179.graphics.bf(sprImg_shape_179, null, new cjs.Matrix2D(0.58,0,0,0.58,-83.1,-92.8)).s().p("As3OZIAA8xIZvAAIAAcxg") + }.bind(this); + this.shape_179.setTransform(765.075,150); + + this.shape_180 = new cjs.Shape(); + var sprImg_shape_180 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_180.onload = function(){ + this.shape_180.graphics.bf(sprImg_shape_180, null, new cjs.Matrix2D(0.582,0,0,0.582,-83.4,-93.1)).s().p("As5OcIAA83IZzAAIAAc3g") + }.bind(this); + this.shape_180.setTransform(765.075,149.7); + + this.shape_181 = new cjs.Shape(); + var sprImg_shape_181 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_181.onload = function(){ + this.shape_181.graphics.bf(sprImg_shape_181, null, new cjs.Matrix2D(0.584,0,0,0.584,-83.7,-93.4)).s().p("As8OfIAA89IZ5AAIAAc9g") + }.bind(this); + this.shape_181.setTransform(765.075,149.375); + + this.shape_182 = new cjs.Shape(); + var sprImg_shape_182 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_182.onload = function(){ + this.shape_182.graphics.bf(sprImg_shape_182, null, new cjs.Matrix2D(0.586,0,0,0.586,-84,-93.7)).s().p("As/OiIAA9EIZ/AAIAAdEg") + }.bind(this); + this.shape_182.setTransform(765.075,149.05); + + this.shape_183 = new cjs.Shape(); + var sprImg_shape_183 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_183.onload = function(){ + this.shape_183.graphics.bf(sprImg_shape_183, null, new cjs.Matrix2D(0.588,0,0,0.588,-84.3,-94.1)).s().p("AtCOmIAA9LIaFAAIAAdLg") + }.bind(this); + this.shape_183.setTransform(765.075,148.725); + + this.shape_184 = new cjs.Shape(); + var sprImg_shape_184 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_184.onload = function(){ + this.shape_184.graphics.bf(sprImg_shape_184, null, new cjs.Matrix2D(0.59,0,0,0.59,-84.6,-94.4)).s().p("AtFOpIAA9RIaLAAIAAdRg") + }.bind(this); + this.shape_184.setTransform(765.075,148.375); + + this.shape_185 = new cjs.Shape(); + var sprImg_shape_185 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_185.onload = function(){ + this.shape_185.graphics.bf(sprImg_shape_185, null, new cjs.Matrix2D(0.592,0,0,0.592,-84.9,-94.7)).s().p("AtIOsIAA9YIaRAAIAAdYg") + }.bind(this); + this.shape_185.setTransform(765.1,148.05); + + this.shape_186 = new cjs.Shape(); + var sprImg_shape_186 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_186.onload = function(){ + this.shape_186.graphics.bf(sprImg_shape_186, null, new cjs.Matrix2D(0.594,0,0,0.594,-85.2,-95.1)).s().p("AtLOwIAA9fIaXAAIAAdfg") + }.bind(this); + this.shape_186.setTransform(765.1,147.725); + + this.shape_187 = new cjs.Shape(); + var sprImg_shape_187 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_187.onload = function(){ + this.shape_187.graphics.bf(sprImg_shape_187, null, new cjs.Matrix2D(0.596,0,0,0.596,-85.5,-95.4)).s().p("AtOOzIAA9lIadAAIAAdlg") + }.bind(this); + this.shape_187.setTransform(765.1,147.4); + + this.shape_188 = new cjs.Shape(); + var sprImg_shape_188 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_188.onload = function(){ + this.shape_188.graphics.bf(sprImg_shape_188, null, new cjs.Matrix2D(0.598,0,0,0.598,-85.8,-95.8)).s().p("AtRO2IAA9rIajAAIAAdrg") + }.bind(this); + this.shape_188.setTransform(765.1,147.075); + + this.shape_189 = new cjs.Shape(); + var sprImg_shape_189 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_189.onload = function(){ + this.shape_189.graphics.bf(sprImg_shape_189, null, new cjs.Matrix2D(0.6,0,0,0.6,-86,-96.1)).s().p("AtUO6IAA9zIapAAIAAdzg") + }.bind(this); + this.shape_189.setTransform(765.1,146.75); + + this.shape_190 = new cjs.Shape(); + var sprImg_shape_190 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_190.onload = function(){ + this.shape_190.graphics.bf(sprImg_shape_190, null, new cjs.Matrix2D(0.602,0,0,0.602,-86.3,-96.4)).s().p("AtXO9IAA95IavAAIAAd5g") + }.bind(this); + this.shape_190.setTransform(765.1,146.425); + + this.shape_191 = new cjs.Shape(); + var sprImg_shape_191 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_191.onload = function(){ + this.shape_191.graphics.bf(sprImg_shape_191, null, new cjs.Matrix2D(0.604,0,0,0.604,-86.6,-96.8)).s().p("AtaPBIAA+BIa1AAIAAeBg") + }.bind(this); + this.shape_191.setTransform(765.1,146.1); + + this.shape_192 = new cjs.Shape(); + var sprImg_shape_192 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_192.onload = function(){ + this.shape_192.graphics.bf(sprImg_shape_192, null, new cjs.Matrix2D(0.606,0,0,0.606,-86.9,-97.1)).s().p("AtdPEIAA+HIa7AAIAAeHg") + }.bind(this); + this.shape_192.setTransform(765.1,145.775); + + this.shape_193 = new cjs.Shape(); + var sprImg_shape_193 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_193.onload = function(){ + this.shape_193.graphics.bf(sprImg_shape_193, null, new cjs.Matrix2D(0.609,0,0,0.609,-87.3,-97.4)).s().p("AtgPHIAA+NIbBAAIAAeNg") + }.bind(this); + this.shape_193.setTransform(765.125,145.45); + + this.shape_194 = new cjs.Shape(); + var sprImg_shape_194 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_194.onload = function(){ + this.shape_194.graphics.bf(sprImg_shape_194, null, new cjs.Matrix2D(0.611,0,0,0.611,-87.6,-97.7)).s().p("AtjPLIAA+UIbHAAIAAeUg") + }.bind(this); + this.shape_194.setTransform(765.125,145.1); + + this.shape_195 = new cjs.Shape(); + var sprImg_shape_195 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_195.onload = function(){ + this.shape_195.graphics.bf(sprImg_shape_195, null, new cjs.Matrix2D(0.613,0,0,0.613,-87.9,-98.1)).s().p("AtmPOIAA+bIbNAAIAAebg") + }.bind(this); + this.shape_195.setTransform(765.125,144.775); + + this.shape_196 = new cjs.Shape(); + var sprImg_shape_196 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_196.onload = function(){ + this.shape_196.graphics.bf(sprImg_shape_196, null, new cjs.Matrix2D(0.615,0,0,0.615,-88.2,-98.4)).s().p("AtpPRIAA+hIbTAAIAAehg") + }.bind(this); + this.shape_196.setTransform(765.125,144.45); + + this.shape_197 = new cjs.Shape(); + var sprImg_shape_197 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_197.onload = function(){ + this.shape_197.graphics.bf(sprImg_shape_197, null, new cjs.Matrix2D(0.618,0,0,0.618,-88.6,-98.9)).s().p("AttPVIAA+pIbbAAIAAepg") + }.bind(this); + this.shape_197.setTransform(765.125,144.025); + + this.shape_198 = new cjs.Shape(); + var sprImg_shape_198 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_198.onload = function(){ + this.shape_198.graphics.bf(sprImg_shape_198, null, new cjs.Matrix2D(0.62,0,0,0.62,-89,-99.3)).s().p("AtwPaIAA+yIbhAAIAAeyg") + }.bind(this); + this.shape_198.setTransform(765.125,143.6); + + this.shape_199 = new cjs.Shape(); + var sprImg_shape_199 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_199.onload = function(){ + this.shape_199.graphics.bf(sprImg_shape_199, null, new cjs.Matrix2D(0.623,0,0,0.623,-89.3,-99.8)).s().p("At0PeIAA+7IbpAAIAAe7g") + }.bind(this); + this.shape_199.setTransform(765.125,143.175); + + this.shape_200 = new cjs.Shape(); + var sprImg_shape_200 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_200.onload = function(){ + this.shape_200.graphics.bf(sprImg_shape_200, null, new cjs.Matrix2D(0.626,0,0,0.626,-89.7,-100.2)).s().p("At4PiIAA/DIbxAAIAAfDg") + }.bind(this); + this.shape_200.setTransform(765.125,142.725); + + this.shape_201 = new cjs.Shape(); + var sprImg_shape_201 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_201.onload = function(){ + this.shape_201.graphics.bf(sprImg_shape_201, null, new cjs.Matrix2D(0.628,0,0,0.628,-90.1,-100.6)).s().p("At8PnIAA/MIb5AAIAAfMg") + }.bind(this); + this.shape_201.setTransform(765.15,142.3); + + this.shape_202 = new cjs.Shape(); + var sprImg_shape_202 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_202.onload = function(){ + this.shape_202.graphics.bf(sprImg_shape_202, null, new cjs.Matrix2D(0.631,0,0,0.631,-90.5,-101.1)).s().p("AuAPrIAA/VIcBAAIAAfVg") + }.bind(this); + this.shape_202.setTransform(765.125,141.875); + + this.shape_203 = new cjs.Shape(); + var sprImg_shape_203 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_203.onload = function(){ + this.shape_203.graphics.bf(sprImg_shape_203, null, new cjs.Matrix2D(0.634,0,0,0.634,-90.9,-101.5)).s().p("AuEPvIAA/dIcJAAIAAfdg") + }.bind(this); + this.shape_203.setTransform(765.125,141.45); + + this.shape_204 = new cjs.Shape(); + var sprImg_shape_204 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_204.onload = function(){ + this.shape_204.graphics.bf(sprImg_shape_204, null, new cjs.Matrix2D(0.636,0,0,0.636,-91.3,-101.9)).s().p("AuHPzIAA/mIcQAAIAAfmg") + }.bind(this); + this.shape_204.setTransform(765.15,141.05); + + this.shape_205 = new cjs.Shape(); + var sprImg_shape_205 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_205.onload = function(){ + this.shape_205.graphics.bf(sprImg_shape_205, null, new cjs.Matrix2D(0.639,0,0,0.639,-91.7,-102.4)).s().p("AuMP4IAA/vIcYAAIAAfvg") + }.bind(this); + this.shape_205.setTransform(765.15,140.625); + + this.shape_206 = new cjs.Shape(); + var sprImg_shape_206 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_206.onload = function(){ + this.shape_206.graphics.bf(sprImg_shape_206, null, new cjs.Matrix2D(0.642,0,0,0.642,-92.1,-102.8)).s().p("AuPP8IAA/3IcfAAIAAf3g") + }.bind(this); + this.shape_206.setTransform(765.125,140.2); + + this.shape_207 = new cjs.Shape(); + var sprImg_shape_207 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_207.onload = function(){ + this.shape_207.graphics.bf(sprImg_shape_207, null, new cjs.Matrix2D(0.645,0,0,0.645,-92.5,-103.3)).s().p("AuTQAIAA//IcnAAIAAf/g") + }.bind(this); + this.shape_207.setTransform(765.15,139.775); + + this.shape_208 = new cjs.Shape(); + var sprImg_shape_208 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_208.onload = function(){ + this.shape_208.graphics.bf(sprImg_shape_208, null, new cjs.Matrix2D(0.647,0,0,0.647,-92.9,-103.7)).s().p("AuXQFMAAAggJIcvAAMAAAAgJg") + }.bind(this); + this.shape_208.setTransform(765.15,139.325); + + this.shape_209 = new cjs.Shape(); + var sprImg_shape_209 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_209.onload = function(){ + this.shape_209.graphics.bf(sprImg_shape_209, null, new cjs.Matrix2D(0.65,0,0,0.65,-93.2,-104.1)).s().p("AubQJMAAAggRIc3AAMAAAAgRg") + }.bind(this); + this.shape_209.setTransform(765.15,138.9); + + this.shape_210 = new cjs.Shape(); + var sprImg_shape_210 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_210.onload = function(){ + this.shape_210.graphics.bf(sprImg_shape_210, null, new cjs.Matrix2D(0.653,0,0,0.653,-93.6,-104.6)).s().p("AufQNMAAAggZIc+AAMAAAAgZg") + }.bind(this); + this.shape_210.setTransform(765.15,138.475); + + this.shape_211 = new cjs.Shape(); + var sprImg_shape_211 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_211.onload = function(){ + this.shape_211.graphics.bf(sprImg_shape_211, null, new cjs.Matrix2D(0.655,0,0,0.655,-94,-105)).s().p("AuiQRMAAAgghIdGAAMAAAAghg") + }.bind(this); + this.shape_211.setTransform(765.15,138.05); + + this.shape_212 = new cjs.Shape(); + var sprImg_shape_212 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_212.onload = function(){ + this.shape_212.graphics.bf(sprImg_shape_212, null, new cjs.Matrix2D(0.657,0,0,0.657,-94.3,-105.3)).s().p("AulQUMAAAggoIdLAAMAAAAgog") + }.bind(this); + this.shape_212.setTransform(765.15,137.75); + + this.shape_213 = new cjs.Shape(); + var sprImg_shape_213 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_213.onload = function(){ + this.shape_213.graphics.bf(sprImg_shape_213, null, new cjs.Matrix2D(0.659,0,0,0.659,-94.6,-105.6)).s().p("AuoQXMAAAgguIdRAAMAAAAgug") + }.bind(this); + this.shape_213.setTransform(765.15,137.45); + + this.shape_214 = new cjs.Shape(); + var sprImg_shape_214 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_214.onload = function(){ + this.shape_214.graphics.bf(sprImg_shape_214, null, new cjs.Matrix2D(0.661,0,0,0.661,-94.8,-105.9)).s().p("AuqQaMAAAggzIdWAAMAAAAgzg") + }.bind(this); + this.shape_214.setTransform(765.15,137.15); + + this.shape_215 = new cjs.Shape(); + var sprImg_shape_215 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_215.onload = function(){ + this.shape_215.graphics.bf(sprImg_shape_215, null, new cjs.Matrix2D(0.663,0,0,0.663,-95.2,-106.2)).s().p("AutQdMAAAgg6IdbAAMAAAAg6g") + }.bind(this); + this.shape_215.setTransform(765.175,136.85); + + this.shape_216 = new cjs.Shape(); + var sprImg_shape_216 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_216.onload = function(){ + this.shape_216.graphics.bf(sprImg_shape_216, null, new cjs.Matrix2D(0.665,0,0,0.665,-95.4,-106.5)).s().p("AuwQgMAAAghAIdhAAMAAAAhAg") + }.bind(this); + this.shape_216.setTransform(765.175,136.55); + + this.shape_217 = new cjs.Shape(); + var sprImg_shape_217 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_217.onload = function(){ + this.shape_217.graphics.bf(sprImg_shape_217, null, new cjs.Matrix2D(0.667,0,0,0.667,-95.6,-106.8)).s().p("AuyQjMAAAghFIdlAAMAAAAhFg") + }.bind(this); + this.shape_217.setTransform(765.15,136.25); + + this.shape_218 = new cjs.Shape(); + var sprImg_shape_218 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_218.onload = function(){ + this.shape_218.graphics.bf(sprImg_shape_218, null, new cjs.Matrix2D(0.669,0,0,0.669,-96,-107.1)).s().p("Au1QmMAAAghMIdrAAMAAAAhMg") + }.bind(this); + this.shape_218.setTransform(765.175,135.95); + + this.shape_219 = new cjs.Shape(); + var sprImg_shape_219 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_219.onload = function(){ + this.shape_219.graphics.bf(sprImg_shape_219, null, new cjs.Matrix2D(0.67,0,0,0.67,-96.2,-107.4)).s().p("Au4QpMAAAghRIdxAAMAAAAhRg") + }.bind(this); + this.shape_219.setTransform(765.175,135.675); + + this.shape_220 = new cjs.Shape(); + var sprImg_shape_220 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_220.onload = function(){ + this.shape_220.graphics.bf(sprImg_shape_220, null, new cjs.Matrix2D(0.672,0,0,0.672,-96.5,-107.7)).s().p("Au6QsMAAAghXId2AAMAAAAhXg") + }.bind(this); + this.shape_220.setTransform(765.2,135.375); + + this.shape_221 = new cjs.Shape(); + var sprImg_shape_221 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_221.onload = function(){ + this.shape_221.graphics.bf(sprImg_shape_221, null, new cjs.Matrix2D(0.674,0,0,0.674,-96.8,-108)).s().p("Au9QvMAAAghdId7AAMAAAAhdg") + }.bind(this); + this.shape_221.setTransform(765.175,135.075); + + this.shape_222 = new cjs.Shape(); + var sprImg_shape_222 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_222.onload = function(){ + this.shape_222.graphics.bf(sprImg_shape_222, null, new cjs.Matrix2D(0.676,0,0,0.676,-97,-108.3)).s().p("AvAQyMAAAghjIeBAAMAAAAhjg") + }.bind(this); + this.shape_222.setTransform(765.175,134.775); + + this.shape_223 = new cjs.Shape(); + var sprImg_shape_223 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_223.onload = function(){ + this.shape_223.graphics.bf(sprImg_shape_223, null, new cjs.Matrix2D(0.678,0,0,0.678,-97.3,-108.6)).s().p("AvCQ1MAAAghpIeGAAMAAAAhpg") + }.bind(this); + this.shape_223.setTransform(765.2,134.475); + + this.shape_224 = new cjs.Shape(); + var sprImg_shape_224 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_224.onload = function(){ + this.shape_224.graphics.bf(sprImg_shape_224, null, new cjs.Matrix2D(0.68,0,0,0.68,-97.6,-108.9)).s().p("AvFQ4MAAAghvIeLAAMAAAAhvg") + }.bind(this); + this.shape_224.setTransform(765.2,134.175); + + this.shape_225 = new cjs.Shape(); + var sprImg_shape_225 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_225.onload = function(){ + this.shape_225.graphics.bf(sprImg_shape_225, null, new cjs.Matrix2D(0.682,0,0,0.682,-97.9,-109.2)).s().p("AvIQ7MAAAgh1IeRAAMAAAAh1g") + }.bind(this); + this.shape_225.setTransform(765.2,133.875); + + this.shape_226 = new cjs.Shape(); + var sprImg_shape_226 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_226.onload = function(){ + this.shape_226.graphics.bf(sprImg_shape_226, null, new cjs.Matrix2D(0.684,0,0,0.684,-98.1,-109.5)).s().p("AvKQ+MAAAgh7IeWAAMAAAAh7g") + }.bind(this); + this.shape_226.setTransform(765.2,133.575); + + this.shape_227 = new cjs.Shape(); + var sprImg_shape_227 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_227.onload = function(){ + this.shape_227.graphics.bf(sprImg_shape_227, null, new cjs.Matrix2D(0.686,0,0,0.686,-98.5,-109.9)).s().p("AvORCMAAAgiDIedAAMAAAAiDg") + }.bind(this); + this.shape_227.setTransform(765.2,133.2); + + this.shape_228 = new cjs.Shape(); + var sprImg_shape_228 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_228.onload = function(){ + this.shape_228.graphics.bf(sprImg_shape_228, null, new cjs.Matrix2D(0.688,0,0,0.688,-98.8,-110.3)).s().p("AvSRGMAAAgiLIekAAMAAAAiLg") + }.bind(this); + this.shape_228.setTransform(765.2,132.825); + + this.shape_229 = new cjs.Shape(); + var sprImg_shape_229 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_229.onload = function(){ + this.shape_229.graphics.bf(sprImg_shape_229, null, new cjs.Matrix2D(0.691,0,0,0.691,-99.2,-110.7)).s().p("AvURKMAAAgiTIeqAAMAAAAiTg") + }.bind(this); + this.shape_229.setTransform(765.2,132.425); + + this.shape_230 = new cjs.Shape(); + var sprImg_shape_230 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_230.onload = function(){ + this.shape_230.graphics.bf(sprImg_shape_230, null, new cjs.Matrix2D(0.693,0,0,0.693,-99.5,-111)).s().p("AvYRNMAAAgiaIexAAMAAAAiag") + }.bind(this); + this.shape_230.setTransform(765.2,132.05); + + this.shape_231 = new cjs.Shape(); + var sprImg_shape_231 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_231.onload = function(){ + this.shape_231.graphics.bf(sprImg_shape_231, null, new cjs.Matrix2D(0.696,0,0,0.696,-99.8,-111.4)).s().p("AvbRRMAAAgihIe4AAMAAAAihg") + }.bind(this); + this.shape_231.setTransform(765.2,131.675); + + this.shape_232 = new cjs.Shape(); + var sprImg_shape_232 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_232.onload = function(){ + this.shape_232.graphics.bf(sprImg_shape_232, null, new cjs.Matrix2D(0.698,0,0,0.698,-100.2,-111.8)).s().p("AvfRVMAAAgipIe/AAMAAAAipg") + }.bind(this); + this.shape_232.setTransform(765.2,131.3); + + this.shape_233 = new cjs.Shape(); + var sprImg_shape_233 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_233.onload = function(){ + this.shape_233.graphics.bf(sprImg_shape_233, null, new cjs.Matrix2D(0.7,0,0,0.7,-100.5,-112.2)).s().p("AvjRZMAAAgixIfGAAMAAAAixg") + }.bind(this); + this.shape_233.setTransform(765.2,130.925); + + this.shape_234 = new cjs.Shape(); + var sprImg_shape_234 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_234.onload = function(){ + this.shape_234.graphics.bf(sprImg_shape_234, null, new cjs.Matrix2D(0.703,0,0,0.703,-100.9,-112.6)).s().p("AvlRdMAAAgi5IfMAAMAAAAi5g") + }.bind(this); + this.shape_234.setTransform(765.2,130.525); + + this.shape_235 = new cjs.Shape(); + var sprImg_shape_235 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_235.onload = function(){ + this.shape_235.graphics.bf(sprImg_shape_235, null, new cjs.Matrix2D(0.705,0,0,0.705,-101.2,-112.9)).s().p("AvpRgMAAAgjAIfTAAMAAAAjAg") + }.bind(this); + this.shape_235.setTransform(765.2,130.15); + + this.shape_236 = new cjs.Shape(); + var sprImg_shape_236 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_236.onload = function(){ + this.shape_236.graphics.bf(sprImg_shape_236, null, new cjs.Matrix2D(0.707,0,0,0.707,-101.6,-113.4)).s().p("AvtRkMAAAgjHIfaAAMAAAAjHg") + }.bind(this); + this.shape_236.setTransform(765.2,129.775); + + this.shape_237 = new cjs.Shape(); + var sprImg_shape_237 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_237.onload = function(){ + this.shape_237.graphics.bf(sprImg_shape_237, null, new cjs.Matrix2D(0.71,0,0,0.71,-101.9,-113.7)).s().p("AvwRoMAAAgjPIfhAAMAAAAjPg") + }.bind(this); + this.shape_237.setTransform(765.2,129.4); + + this.shape_238 = new cjs.Shape(); + var sprImg_shape_238 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_238.onload = function(){ + this.shape_238.graphics.bf(sprImg_shape_238, null, new cjs.Matrix2D(0.712,0,0,0.712,-102.2,-114.1)).s().p("Av0RsMAAAgjXIfoAAMAAAAjXg") + }.bind(this); + this.shape_238.setTransform(765.2,129.025); + + this.shape_239 = new cjs.Shape(); + var sprImg_shape_239 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_239.onload = function(){ + this.shape_239.graphics.bf(sprImg_shape_239, null, new cjs.Matrix2D(0.715,0,0,0.715,-102.6,-114.5)).s().p("Av2RwMAAAgjfIfuAAMAAAAjfg") + }.bind(this); + this.shape_239.setTransform(765.2,128.625); + + this.shape_240 = new cjs.Shape(); + var sprImg_shape_240 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_240.onload = function(){ + this.shape_240.graphics.bf(sprImg_shape_240, null, new cjs.Matrix2D(0.717,0,0,0.717,-102.9,-114.9)).s().p("Av6RzMAAAgjlIf1AAMAAAAjlg") + }.bind(this); + this.shape_240.setTransform(765.2,128.25); + + this.shape_241 = new cjs.Shape(); + var sprImg_shape_241 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_241.onload = function(){ + this.shape_241.graphics.bf(sprImg_shape_241, null, new cjs.Matrix2D(0.719,0,0,0.719,-103.3,-115.3)).s().p("Av+R3MAAAgjtIf8AAMAAAAjtg") + }.bind(this); + this.shape_241.setTransform(765.2,127.875); + + this.shape_242 = new cjs.Shape(); + var sprImg_shape_242 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_242.onload = function(){ + this.shape_242.graphics.bf(sprImg_shape_242, null, new cjs.Matrix2D(0.721,0,0,0.721,-103.5,-115.6)).s().p("AwAR6MAAAgjzMAgBAAAMAAAAjzg") + }.bind(this); + this.shape_242.setTransform(765.2,127.575); + + this.shape_243 = new cjs.Shape(); + var sprImg_shape_243 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_243.onload = function(){ + this.shape_243.graphics.bf(sprImg_shape_243, null, new cjs.Matrix2D(0.723,0,0,0.723,-103.8,-115.9)).s().p("AwDR9MAAAgj5MAgHAAAMAAAAj5g") + }.bind(this); + this.shape_243.setTransform(765.2,127.275); + + this.shape_244 = new cjs.Shape(); + var sprImg_shape_244 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_244.onload = function(){ + this.shape_244.graphics.bf(sprImg_shape_244, null, new cjs.Matrix2D(0.725,0,0,0.725,-104.1,-116.2)).s().p("AwGSAMAAAgj/MAgMAAAMAAAAj/g") + }.bind(this); + this.shape_244.setTransform(765.2,126.975); + + this.shape_245 = new cjs.Shape(); + var sprImg_shape_245 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_245.onload = function(){ + this.shape_245.graphics.bf(sprImg_shape_245, null, new cjs.Matrix2D(0.727,0,0,0.727,-104.4,-116.5)).s().p("AwISDMAAAgkFMAgRAAAMAAAAkFg") + }.bind(this); + this.shape_245.setTransform(765.225,126.675); + + this.shape_246 = new cjs.Shape(); + var sprImg_shape_246 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_246.onload = function(){ + this.shape_246.graphics.bf(sprImg_shape_246, null, new cjs.Matrix2D(0.729,0,0,0.729,-104.6,-116.8)).s().p("AwLSGMAAAgkLMAgXAAAMAAAAkLg") + }.bind(this); + this.shape_246.setTransform(765.2,126.375); + + this.shape_247 = new cjs.Shape(); + var sprImg_shape_247 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_247.onload = function(){ + this.shape_247.graphics.bf(sprImg_shape_247, null, new cjs.Matrix2D(0.731,0,0,0.731,-104.9,-117.1)).s().p("AwOSJMAAAgkRMAgcAAAMAAAAkRg") + }.bind(this); + this.shape_247.setTransform(765.2,126.075); + + this.shape_248 = new cjs.Shape(); + var sprImg_shape_248 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_248.onload = function(){ + this.shape_248.graphics.bf(sprImg_shape_248, null, new cjs.Matrix2D(0.733,0,0,0.733,-105.2,-117.4)).s().p("AwQSMMAAAgkXMAghAAAMAAAAkXg") + }.bind(this); + this.shape_248.setTransform(765.225,125.775); + + this.shape_249 = new cjs.Shape(); + var sprImg_shape_249 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_249.onload = function(){ + this.shape_249.graphics.bf(sprImg_shape_249, null, new cjs.Matrix2D(0.735,0,0,0.735,-105.4,-117.8)).s().p("AwTSPMAAAgkdMAgnAAAMAAAAkdg") + }.bind(this); + this.shape_249.setTransform(765.2,125.525); + + this.shape_250 = new cjs.Shape(); + var sprImg_shape_250 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_250.onload = function(){ + this.shape_250.graphics.bf(sprImg_shape_250, null, new cjs.Matrix2D(0.736,0,0,0.736,-105.8,-118.1)).s().p("AwWSSMAAAgkjMAgtAAAMAAAAkjg") + }.bind(this); + this.shape_250.setTransform(765.225,125.225); + + this.shape_251 = new cjs.Shape(); + var sprImg_shape_251 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_251.onload = function(){ + this.shape_251.graphics.bf(sprImg_shape_251, null, new cjs.Matrix2D(0.738,0,0,0.738,-106,-118.4)).s().p("AwYSVMAAAgkpMAgxAAAMAAAAkpg") + }.bind(this); + this.shape_251.setTransform(765.225,124.925); + + this.shape_252 = new cjs.Shape(); + var sprImg_shape_252 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_252.onload = function(){ + this.shape_252.graphics.bf(sprImg_shape_252, null, new cjs.Matrix2D(0.74,0,0,0.74,-106.2,-118.7)).s().p("AwbSYMAAAgkvMAg3AAAMAAAAkvg") + }.bind(this); + this.shape_252.setTransform(765.2,124.625); + + this.shape_253 = new cjs.Shape(); + var sprImg_shape_253 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_253.onload = function(){ + this.shape_253.graphics.bf(sprImg_shape_253, null, new cjs.Matrix2D(0.742,0,0,0.742,-106.6,-119)).s().p("AweSbMAAAgk1MAg9AAAMAAAAk1g") + }.bind(this); + this.shape_253.setTransform(765.225,124.325); + + this.shape_254 = new cjs.Shape(); + var sprImg_shape_254 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_254.onload = function(){ + this.shape_254.graphics.bf(sprImg_shape_254, null, new cjs.Matrix2D(0.744,0,0,0.744,-106.8,-119.3)).s().p("AwgSeMAAAgk7MAhBAAAMAAAAk7g") + }.bind(this); + this.shape_254.setTransform(765.225,124.025); + + this.shape_255 = new cjs.Shape(); + var sprImg_shape_255 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_255.onload = function(){ + this.shape_255.graphics.bf(sprImg_shape_255, null, new cjs.Matrix2D(0.746,0,0,0.746,-107.1,-119.6)).s().p("AwjShMAAAglBMAhHAAAMAAAAlBg") + }.bind(this); + this.shape_255.setTransform(765.225,123.725); + + this.shape_256 = new cjs.Shape(); + var sprImg_shape_256 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_256.onload = function(){ + this.shape_256.graphics.bf(sprImg_shape_256, null, new cjs.Matrix2D(0.748,0,0,0.748,-107.4,-119.9)).s().p("AwmSkMAAAglHMAhNAAAMAAAAlHg") + }.bind(this); + this.shape_256.setTransform(765.225,123.425); + + this.shape_257 = new cjs.Shape(); + var sprImg_shape_257 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_257.onload = function(){ + this.shape_257.graphics.bf(sprImg_shape_257, null, new cjs.Matrix2D(0.751,0,0,0.751,-107.9,-120.4)).s().p("AwrSqMAAAglTMAhXAAAMAAAAlTg") + }.bind(this); + this.shape_257.setTransform(765.225,122.875); + + this.shape_258 = new cjs.Shape(); + var sprImg_shape_258 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_258.onload = function(){ + this.shape_258.graphics.bf(sprImg_shape_258, null, new cjs.Matrix2D(0.755,0,0,0.755,-108.4,-121)).s().p("AwwSvMAAAgldMAhhAAAMAAAAldg") + }.bind(this); + this.shape_258.setTransform(765.225,122.325); + + this.shape_259 = new cjs.Shape(); + var sprImg_shape_259 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_259.onload = function(){ + this.shape_259.graphics.bf(sprImg_shape_259, null, new cjs.Matrix2D(0.758,0,0,0.758,-108.9,-121.5)).s().p("Aw0S1MAAAglpMAhqAAAMAAAAlpg") + }.bind(this); + this.shape_259.setTransform(765.25,121.775); + + this.shape_260 = new cjs.Shape(); + var sprImg_shape_260 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_260.onload = function(){ + this.shape_260.graphics.bf(sprImg_shape_260, null, new cjs.Matrix2D(0.762,0,0,0.762,-109.3,-122.1)).s().p("Aw5S6MAAAglzMAhzAAAMAAAAlzg") + }.bind(this); + this.shape_260.setTransform(765.225,121.25); + + this.shape_261 = new cjs.Shape(); + var sprImg_shape_261 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_261.onload = function(){ + this.shape_261.graphics.bf(sprImg_shape_261, null, new cjs.Matrix2D(0.765,0,0,0.765,-109.8,-122.6)).s().p("Aw+TAMAAAgl+MAh9AAAMAAAAl+g") + }.bind(this); + this.shape_261.setTransform(765.225,120.7); + + this.shape_262 = new cjs.Shape(); + var sprImg_shape_262 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_262.onload = function(){ + this.shape_262.graphics.bf(sprImg_shape_262, null, new cjs.Matrix2D(0.768,0,0,0.768,-110.3,-123.2)).s().p("AxDTFMAAAgmJMAiHAAAMAAAAmJg") + }.bind(this); + this.shape_262.setTransform(765.225,120.15); + + this.shape_263 = new cjs.Shape(); + var sprImg_shape_263 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_263.onload = function(){ + this.shape_263.graphics.bf(sprImg_shape_263, null, new cjs.Matrix2D(0.772,0,0,0.772,-110.8,-123.7)).s().p("AxITLMAAAgmVMAiRAAAMAAAAmVg") + }.bind(this); + this.shape_263.setTransform(765.225,119.6); + + this.shape_264 = new cjs.Shape(); + var sprImg_shape_264 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_264.onload = function(){ + this.shape_264.graphics.bf(sprImg_shape_264, null, new cjs.Matrix2D(0.775,0,0,0.775,-111.3,-124.3)).s().p("AxNTQMAAAgmfMAibAAAMAAAAmfg") + }.bind(this); + this.shape_264.setTransform(765.25,119.075); + + this.shape_265 = new cjs.Shape(); + var sprImg_shape_265 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_265.onload = function(){ + this.shape_265.graphics.bf(sprImg_shape_265, null, new cjs.Matrix2D(0.779,0,0,0.779,-111.8,-124.8)).s().p("AxSTWMAAAgmrMAilAAAMAAAAmrg") + }.bind(this); + this.shape_265.setTransform(765.25,118.525); + + this.shape_266 = new cjs.Shape(); + var sprImg_shape_266 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_266.onload = function(){ + this.shape_266.graphics.bf(sprImg_shape_266, null, new cjs.Matrix2D(0.782,0,0,0.782,-112.3,-125.4)).s().p("AxXTbMAAAgm1MAivAAAMAAAAm1g") + }.bind(this); + this.shape_266.setTransform(765.25,117.975); + + this.shape_267 = new cjs.Shape(); + var sprImg_shape_267 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_267.onload = function(){ + this.shape_267.graphics.bf(sprImg_shape_267, null, new cjs.Matrix2D(0.786,0,0,0.786,-112.8,-125.9)).s().p("AxcThMAAAgnBMAi5AAAMAAAAnBg") + }.bind(this); + this.shape_267.setTransform(765.25,117.425); + + this.shape_268 = new cjs.Shape(); + var sprImg_shape_268 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_268.onload = function(){ + this.shape_268.graphics.bf(sprImg_shape_268, null, new cjs.Matrix2D(0.789,0,0,0.789,-113.3,-126.5)).s().p("AxhTmMAAAgnLMAjDAAAMAAAAnLg") + }.bind(this); + this.shape_268.setTransform(765.225,116.9); + + this.shape_269 = new cjs.Shape(); + var sprImg_shape_269 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_269.onload = function(){ + this.shape_269.graphics.bf(sprImg_shape_269, null, new cjs.Matrix2D(0.793,0,0,0.793,-113.8,-127)).s().p("AxmTrMAAAgnWMAjMAAAMAAAAnWg") + }.bind(this); + this.shape_269.setTransform(765.25,116.35); + + this.shape_270 = new cjs.Shape(); + var sprImg_shape_270 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_270.onload = function(){ + this.shape_270.graphics.bf(sprImg_shape_270, null, new cjs.Matrix2D(0.796,0,0,0.796,-114.3,-127.6)).s().p("AxqTxMAAAgnhMAjVAAAMAAAAnhg") + }.bind(this); + this.shape_270.setTransform(765.25,115.8); + + this.shape_271 = new cjs.Shape(); + var sprImg_shape_271 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_271.onload = function(){ + this.shape_271.graphics.bf(sprImg_shape_271, null, new cjs.Matrix2D(0.8,0,0,0.8,-114.8,-128.1)).s().p("AxwT2MAAAgnrMAjhAAAMAAAAnrg") + }.bind(this); + this.shape_271.setTransform(765.25,115.25); + + this.shape_272 = new cjs.Shape(); + var sprImg_shape_272 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_272.onload = function(){ + this.shape_272.graphics.bf(sprImg_shape_272, null, new cjs.Matrix2D(0.801,0,0,0.801,-115,-128.4)).s().p("AxyT5MAAAgnyMAjlAAAMAAAAnyg") + }.bind(this); + this.shape_272.setTransform(765.25,114.95); + + this.shape_273 = new cjs.Shape(); + var sprImg_shape_273 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_273.onload = function(){ + this.shape_273.graphics.bf(sprImg_shape_273, null, new cjs.Matrix2D(0.803,0,0,0.803,-115.3,-128.7)).s().p("Ax1T8MAAAgn3MAjrAAAMAAAAn3g") + }.bind(this); + this.shape_273.setTransform(765.25,114.65); + + this.shape_274 = new cjs.Shape(); + var sprImg_shape_274 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_274.onload = function(){ + this.shape_274.graphics.bf(sprImg_shape_274, null, new cjs.Matrix2D(0.805,0,0,0.805,-115.6,-129)).s().p("Ax4T/MAAAgn9MAjwAAAMAAAAn9g") + }.bind(this); + this.shape_274.setTransform(765.25,114.35); + + this.shape_275 = new cjs.Shape(); + var sprImg_shape_275 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_275.onload = function(){ + this.shape_275.graphics.bf(sprImg_shape_275, null, new cjs.Matrix2D(0.807,0,0,0.807,-115.9,-129.4)).s().p("Ax6UDMAAAgoFMAj1AAAMAAAAoFg") + }.bind(this); + this.shape_275.setTransform(765.275,114.025); + + this.shape_276 = new cjs.Shape(); + var sprImg_shape_276 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_276.onload = function(){ + this.shape_276.graphics.bf(sprImg_shape_276, null, new cjs.Matrix2D(0.809,0,0,0.809,-116.1,-129.7)).s().p("Ax9UGMAAAgoLMAj7AAAMAAAAoLg") + }.bind(this); + this.shape_276.setTransform(765.25,113.725); + + this.shape_277 = new cjs.Shape(); + var sprImg_shape_277 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_277.onload = function(){ + this.shape_277.graphics.bf(sprImg_shape_277, null, new cjs.Matrix2D(0.811,0,0,0.811,-116.5,-130)).s().p("AyAUJMAAAgoRMAkBAAAMAAAAoRg") + }.bind(this); + this.shape_277.setTransform(765.275,113.425); + + this.shape_278 = new cjs.Shape(); + var sprImg_shape_278 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_278.onload = function(){ + this.shape_278.graphics.bf(sprImg_shape_278, null, new cjs.Matrix2D(0.813,0,0,0.813,-116.7,-130.3)).s().p("AyCUMMAAAgoXMAkFAAAMAAAAoXg") + }.bind(this); + this.shape_278.setTransform(765.275,113.125); + + this.shape_279 = new cjs.Shape(); + var sprImg_shape_279 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_279.onload = function(){ + this.shape_279.graphics.bf(sprImg_shape_279, null, new cjs.Matrix2D(0.815,0,0,0.815,-117,-130.6)).s().p("AyFUPMAAAgodMAkLAAAMAAAAodg") + }.bind(this); + this.shape_279.setTransform(765.275,112.825); + + this.shape_280 = new cjs.Shape(); + var sprImg_shape_280 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_280.onload = function(){ + this.shape_280.graphics.bf(sprImg_shape_280, null, new cjs.Matrix2D(0.817,0,0,0.817,-117.3,-130.9)).s().p("AyIUSMAAAgojMAkRAAAMAAAAojg") + }.bind(this); + this.shape_280.setTransform(765.275,112.525); + + this.shape_281 = new cjs.Shape(); + var sprImg_shape_281 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_281.onload = function(){ + this.shape_281.graphics.bf(sprImg_shape_281, null, new cjs.Matrix2D(0.819,0,0,0.819,-117.6,-131.2)).s().p("AyKUVMAAAgopMAkVAAAMAAAAopg") + }.bind(this); + this.shape_281.setTransform(765.3,112.225); + + this.shape_282 = new cjs.Shape(); + var sprImg_shape_282 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_282.onload = function(){ + this.shape_282.graphics.bf(sprImg_shape_282, null, new cjs.Matrix2D(0.821,0,0,0.821,-117.8,-131.5)).s().p("AyNUYMAAAgovMAkbAAAMAAAAovg") + }.bind(this); + this.shape_282.setTransform(765.275,111.925); + + this.shape_283 = new cjs.Shape(); + var sprImg_shape_283 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_283.onload = function(){ + this.shape_283.graphics.bf(sprImg_shape_283, null, new cjs.Matrix2D(0.822,0,0,0.822,-118.1,-131.8)).s().p("AyQUbMAAAgo1MAkhAAAMAAAAo1g") + }.bind(this); + this.shape_283.setTransform(765.3,111.6); + + this.shape_284 = new cjs.Shape(); + var sprImg_shape_284 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_284.onload = function(){ + this.shape_284.graphics.bf(sprImg_shape_284, null, new cjs.Matrix2D(0.824,0,0,0.824,-118.4,-132.1)).s().p("AySUeMAAAgo7MAkmAAAMAAAAo7g") + }.bind(this); + this.shape_284.setTransform(765.3,111.3); + + this.shape_285 = new cjs.Shape(); + var sprImg_shape_285 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_285.onload = function(){ + this.shape_285.graphics.bf(sprImg_shape_285, null, new cjs.Matrix2D(0.826,0,0,0.826,-118.7,-132.4)).s().p("AyWUhMAAAgpBMAksAAAMAAAApBg") + }.bind(this); + this.shape_285.setTransform(765.3,111); + + this.shape_286 = new cjs.Shape(); + var sprImg_shape_286 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_286.onload = function(){ + this.shape_286.graphics.bf(sprImg_shape_286, null, new cjs.Matrix2D(0.828,0,0,0.828,-118.9,-132.7)).s().p("AyYUkMAAAgpHMAkxAAAMAAAApHg") + }.bind(this); + this.shape_286.setTransform(765.3,110.7); + + this.shape_287 = new cjs.Shape(); + var sprImg_shape_287 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_287.onload = function(){ + this.shape_287.graphics.bf(sprImg_shape_287, null, new cjs.Matrix2D(0.829,0,0,0.829,-119,-132.8)).s().p("AyZUlMAAAgpJMAkzAAAMAAAApJg") + }.bind(this); + this.shape_287.setTransform(765.3,110.55); + + this.shape_288 = new cjs.Shape(); + var sprImg_shape_288 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_288.onload = function(){ + this.shape_288.graphics.bf(sprImg_shape_288, null, new cjs.Matrix2D(0.83,0,0,0.83,-119.1,-132.9)).s().p("AyaUnMAAAgpMMAk1AAAMAAAApMg") + }.bind(this); + this.shape_288.setTransform(765.25,110.4); + + this.shape_289 = new cjs.Shape(); + var sprImg_shape_289 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_289.onload = function(){ + this.shape_289.graphics.bf(sprImg_shape_289, null, new cjs.Matrix2D(0.83,0,0,0.83,-119.2,-133)).s().p("AybUnMAAAgpNMAk3AAAMAAAApNg") + }.bind(this); + this.shape_289.setTransform(765.25,110.25); + + this.shape_290 = new cjs.Shape(); + var sprImg_shape_290 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_290.onload = function(){ + this.shape_290.graphics.bf(sprImg_shape_290, null, new cjs.Matrix2D(0.831,0,0,0.831,-119.3,-133.1)).s().p("AycUpMAAAgpRMAk5AAAMAAAApRg") + }.bind(this); + this.shape_290.setTransform(765.225,110.1); + + this.shape_291 = new cjs.Shape(); + var sprImg_shape_291 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_291.onload = function(){ + this.shape_291.graphics.bf(sprImg_shape_291, null, new cjs.Matrix2D(0.832,0,0,0.832,-119.4,-133.2)).s().p("AydUqMAAAgpTMAk7AAAMAAAApTg") + }.bind(this); + this.shape_291.setTransform(765.225,109.95); + + this.shape_292 = new cjs.Shape(); + var sprImg_shape_292 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_292.onload = function(){ + this.shape_292.graphics.bf(sprImg_shape_292, null, new cjs.Matrix2D(0.833,0,0,0.833,-119.5,-133.3)).s().p("AyeUsMAAAgpXMAk9AAAMAAAApXg") + }.bind(this); + this.shape_292.setTransform(765.175,109.8); + + this.shape_293 = new cjs.Shape(); + var sprImg_shape_293 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_293.onload = function(){ + this.shape_293.graphics.bf(sprImg_shape_293, null, new cjs.Matrix2D(0.834,0,0,0.834,-119.6,-133.4)).s().p("AyfUsMAAAgpXMAk/AAAMAAAApXg") + }.bind(this); + this.shape_293.setTransform(765.175,109.65); + + this.shape_294 = new cjs.Shape(); + var sprImg_shape_294 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_294.onload = function(){ + this.shape_294.graphics.bf(sprImg_shape_294, null, new cjs.Matrix2D(0.834,0,0,0.834,-119.7,-133.5)).s().p("AyhUuMAAAgpbMAlDAAAMAAAApbg") + }.bind(this); + this.shape_294.setTransform(765.15,109.5); + + this.shape_295 = new cjs.Shape(); + var sprImg_shape_295 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_295.onload = function(){ + this.shape_295.graphics.bf(sprImg_shape_295, null, new cjs.Matrix2D(0.835,0,0,0.835,-119.8,-133.6)).s().p("AyiUvMAAAgpdMAlEAAAMAAAApdg") + }.bind(this); + this.shape_295.setTransform(765.15,109.35); + + this.shape_296 = new cjs.Shape(); + var sprImg_shape_296 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_296.onload = function(){ + this.shape_296.graphics.bf(sprImg_shape_296, null, new cjs.Matrix2D(0.836,0,0,0.836,-119.8,-133.7)).s().p("AyiUwMAAAgpgMAlGAAAMAAAApgg") + }.bind(this); + this.shape_296.setTransform(765.1,109.2); + + this.shape_297 = new cjs.Shape(); + var sprImg_shape_297 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_297.onload = function(){ + this.shape_297.graphics.bf(sprImg_shape_297, null, new cjs.Matrix2D(0.837,0,0,0.837,-119.9,-133.8)).s().p("AyjUyMAAAgpjMAlIAAAMAAAApjg") + }.bind(this); + this.shape_297.setTransform(765.1,109.05); + + this.shape_298 = new cjs.Shape(); + var sprImg_shape_298 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_298.onload = function(){ + this.shape_298.graphics.bf(sprImg_shape_298, null, new cjs.Matrix2D(0.837,0,0,0.837,-120,-134)).s().p("AylUzMAAAgplMAlLAAAMAAAAplg") + }.bind(this); + this.shape_298.setTransform(765.075,108.9); + + this.shape_299 = new cjs.Shape(); + var sprImg_shape_299 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_299.onload = function(){ + this.shape_299.graphics.bf(sprImg_shape_299, null, new cjs.Matrix2D(0.838,0,0,0.838,-120.2,-134.1)).s().p("AymU0MAAAgpnMAlNAAAMAAAApng") + }.bind(this); + this.shape_299.setTransform(765.075,108.75); + + this.shape_300 = new cjs.Shape(); + var sprImg_shape_300 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_300.onload = function(){ + this.shape_300.graphics.bf(sprImg_shape_300, null, new cjs.Matrix2D(0.839,0,0,0.839,-120.2,-134.2)).s().p("AynU1MAAAgpqMAlPAAAMAAAApqg") + }.bind(this); + this.shape_300.setTransform(765.025,108.6); + + this.shape_301 = new cjs.Shape(); + var sprImg_shape_301 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_301.onload = function(){ + this.shape_301.graphics.bf(sprImg_shape_301, null, new cjs.Matrix2D(0.84,0,0,0.84,-120.3,-134.3)).s().p("AyoU3MAAAgptMAlRAAAMAAAAptg") + }.bind(this); + this.shape_301.setTransform(765.025,108.45); + this.shape_301._off = true; + + this.shape_302 = new cjs.Shape(); + var sprImg_shape_302 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_302.onload = function(){ + this.shape_302.graphics.bf(sprImg_shape_302, null, new cjs.Matrix2D(0.84,0,0,0.84,-120.3,-134.3)).s().p("AyoU2MAAAgpsMAlRAAAMAAAApsg") + }.bind(this); + this.shape_302.setTransform(765.375,107.75); + + this.shape_303 = new cjs.Shape(); + var sprImg_shape_303 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],54); + sprImg_shape_303.onload = function(){ + this.shape_303.graphics.bf(sprImg_shape_303, null, new cjs.Matrix2D(0.84,0,0,0.84,-120.3,-134.3)).s().p("AyoU2MAAAgprMAlRAAAMAAAAprg") + }.bind(this); + this.shape_303.setTransform(766.725,104.8); + this.shape_303._off = true; + + this.instance_91 = new lib.补间102("synched",0); + this.instance_91.setTransform(773.75,89.85); + this.instance_91._off = true; + + this.instance_92 = new lib.补间103("synched",0); + this.instance_92.setTransform(1018.6,497.45); + + this.timeline.addTween(cjs.Tween.get({}).to({state:[{t:this.shape_2}]}).to({state:[{t:this.shape_3}]},1).to({state:[{t:this.shape_4}]},1).to({state:[{t:this.shape_5}]},1).to({state:[{t:this.shape_6}]},1).to({state:[{t:this.shape_7}]},1).to({state:[{t:this.shape_8}]},1).to({state:[{t:this.shape_9}]},1).to({state:[{t:this.shape_10}]},1).to({state:[{t:this.shape_11}]},1).to({state:[{t:this.shape_12}]},1).to({state:[{t:this.shape_13}]},1).to({state:[{t:this.shape_14}]},1).to({state:[{t:this.shape_15}]},1).to({state:[{t:this.shape_16}]},1).to({state:[{t:this.shape_16}]},15).to({state:[{t:this.shape_17}]},1).to({state:[{t:this.shape_18}]},1).to({state:[{t:this.shape_19}]},1).to({state:[{t:this.shape_20}]},1).to({state:[{t:this.shape_21}]},1).to({state:[{t:this.shape_22}]},1).to({state:[{t:this.shape_23}]},1).to({state:[{t:this.shape_24}]},1).to({state:[{t:this.shape_25}]},1).to({state:[{t:this.shape_26}]},1).to({state:[{t:this.shape_27}]},1).to({state:[{t:this.shape_28}]},1).to({state:[{t:this.shape_29}]},1).to({state:[{t:this.shape_30}]},1).to({state:[{t:this.shape_31}]},1).to({state:[{t:this.shape_31}]},15).to({state:[{t:this.shape_32}]},1).to({state:[{t:this.shape_33}]},1).to({state:[{t:this.shape_34}]},1).to({state:[{t:this.shape_35}]},1).to({state:[{t:this.shape_36}]},1).to({state:[{t:this.shape_37}]},1).to({state:[{t:this.shape_38}]},1).to({state:[{t:this.shape_39}]},1).to({state:[{t:this.shape_40}]},1).to({state:[{t:this.shape_41}]},1).to({state:[{t:this.shape_42}]},1).to({state:[{t:this.shape_43}]},1).to({state:[{t:this.shape_44}]},1).to({state:[{t:this.shape_45}]},1).to({state:[{t:this.shape_46}]},1).to({state:[{t:this.shape_46}]},15).to({state:[{t:this.shape_47}]},1).to({state:[{t:this.shape_48}]},1).to({state:[{t:this.shape_49}]},1).to({state:[{t:this.shape_50}]},1).to({state:[{t:this.shape_51}]},1).to({state:[{t:this.shape_52}]},1).to({state:[{t:this.shape_53}]},1).to({state:[{t:this.shape_54}]},1).to({state:[{t:this.shape_55}]},1).to({state:[{t:this.shape_56}]},1).to({state:[{t:this.shape_57}]},1).to({state:[{t:this.shape_58}]},1).to({state:[{t:this.shape_59}]},1).to({state:[{t:this.shape_60}]},1).to({state:[{t:this.shape_61}]},1).to({state:[{t:this.shape_61}]},15).to({state:[{t:this.shape_62}]},1).to({state:[{t:this.shape_63}]},1).to({state:[{t:this.shape_64}]},1).to({state:[{t:this.shape_65}]},1).to({state:[{t:this.shape_66}]},1).to({state:[{t:this.shape_67}]},1).to({state:[{t:this.shape_68}]},1).to({state:[{t:this.shape_69}]},1).to({state:[{t:this.shape_70}]},1).to({state:[{t:this.shape_71}]},1).to({state:[{t:this.shape_72}]},1).to({state:[{t:this.shape_73}]},1).to({state:[{t:this.shape_74}]},1).to({state:[{t:this.shape_75}]},1).to({state:[{t:this.shape_76}]},1).to({state:[{t:this.shape_76}]},15).to({state:[{t:this.shape_77}]},1).to({state:[{t:this.shape_78}]},1).to({state:[{t:this.shape_79}]},1).to({state:[{t:this.shape_80}]},1).to({state:[{t:this.shape_81}]},1).to({state:[{t:this.shape_82}]},1).to({state:[{t:this.shape_83}]},1).to({state:[{t:this.shape_84}]},1).to({state:[{t:this.shape_85}]},1).to({state:[{t:this.shape_86}]},1).to({state:[{t:this.shape_87}]},1).to({state:[{t:this.shape_88}]},1).to({state:[{t:this.shape_89}]},1).to({state:[{t:this.shape_90}]},1).to({state:[{t:this.shape_91}]},1).to({state:[{t:this.shape_91}]},15).to({state:[{t:this.shape_92}]},1).to({state:[{t:this.shape_93}]},1).to({state:[{t:this.shape_94}]},1).to({state:[{t:this.shape_95}]},1).to({state:[{t:this.shape_96}]},1).to({state:[{t:this.shape_97}]},1).to({state:[{t:this.shape_98}]},1).to({state:[{t:this.shape_99}]},1).to({state:[{t:this.shape_100}]},1).to({state:[{t:this.shape_101}]},1).to({state:[{t:this.shape_102}]},1).to({state:[{t:this.shape_103}]},1).to({state:[{t:this.shape_104}]},1).to({state:[{t:this.shape_105}]},1).to({state:[{t:this.shape_106}]},1).to({state:[{t:this.shape_106}]},15).to({state:[{t:this.shape_107}]},1).to({state:[{t:this.shape_108}]},1).to({state:[{t:this.shape_109}]},1).to({state:[{t:this.shape_110}]},1).to({state:[{t:this.shape_111}]},1).to({state:[{t:this.shape_112}]},1).to({state:[{t:this.shape_113}]},1).to({state:[{t:this.shape_114}]},1).to({state:[{t:this.shape_115}]},1).to({state:[{t:this.shape_116}]},1).to({state:[{t:this.shape_117}]},1).to({state:[{t:this.shape_118}]},1).to({state:[{t:this.shape_119}]},1).to({state:[{t:this.shape_120}]},1).to({state:[{t:this.shape_121}]},1).to({state:[{t:this.shape_121}]},15).to({state:[{t:this.shape_122}]},1).to({state:[{t:this.shape_123}]},1).to({state:[{t:this.shape_124}]},1).to({state:[{t:this.shape_125}]},1).to({state:[{t:this.shape_126}]},1).to({state:[{t:this.shape_127}]},1).to({state:[{t:this.shape_128}]},1).to({state:[{t:this.shape_129}]},1).to({state:[{t:this.shape_130}]},1).to({state:[{t:this.shape_131}]},1).to({state:[{t:this.shape_132}]},1).to({state:[{t:this.shape_133}]},1).to({state:[{t:this.shape_134}]},1).to({state:[{t:this.shape_135}]},1).to({state:[{t:this.shape_136}]},1).to({state:[{t:this.shape_136}]},15).to({state:[{t:this.shape_137}]},1).to({state:[{t:this.shape_138}]},1).to({state:[{t:this.shape_139}]},1).to({state:[{t:this.shape_140}]},1).to({state:[{t:this.shape_141}]},1).to({state:[{t:this.shape_142}]},1).to({state:[{t:this.shape_143}]},1).to({state:[{t:this.shape_144}]},1).to({state:[{t:this.shape_145}]},1).to({state:[{t:this.shape_146}]},1).to({state:[{t:this.shape_147}]},1).to({state:[{t:this.shape_148}]},1).to({state:[{t:this.shape_149}]},1).to({state:[{t:this.shape_150}]},1).to({state:[{t:this.shape_151}]},1).to({state:[{t:this.shape_151}]},15).to({state:[{t:this.shape_152}]},1).to({state:[{t:this.shape_153}]},1).to({state:[{t:this.shape_154}]},1).to({state:[{t:this.shape_155}]},1).to({state:[{t:this.shape_156}]},1).to({state:[{t:this.shape_157}]},1).to({state:[{t:this.shape_158}]},1).to({state:[{t:this.shape_159}]},1).to({state:[{t:this.shape_160}]},1).to({state:[{t:this.shape_161}]},1).to({state:[{t:this.shape_162}]},1).to({state:[{t:this.shape_163}]},1).to({state:[{t:this.shape_164}]},1).to({state:[{t:this.shape_165}]},1).to({state:[{t:this.shape_166}]},1).to({state:[{t:this.shape_166}]},15).to({state:[{t:this.shape_167}]},1).to({state:[{t:this.shape_168}]},1).to({state:[{t:this.shape_169}]},1).to({state:[{t:this.shape_170}]},1).to({state:[{t:this.shape_171}]},1).to({state:[{t:this.shape_172}]},1).to({state:[{t:this.shape_173}]},1).to({state:[{t:this.shape_174}]},1).to({state:[{t:this.shape_175}]},1).to({state:[{t:this.shape_176}]},1).to({state:[{t:this.shape_177}]},1).to({state:[{t:this.shape_178}]},1).to({state:[{t:this.shape_179}]},1).to({state:[{t:this.shape_180}]},1).to({state:[{t:this.shape_181}]},1).to({state:[{t:this.shape_181}]},15).to({state:[{t:this.shape_182}]},1).to({state:[{t:this.shape_183}]},1).to({state:[{t:this.shape_184}]},1).to({state:[{t:this.shape_185}]},1).to({state:[{t:this.shape_186}]},1).to({state:[{t:this.shape_187}]},1).to({state:[{t:this.shape_188}]},1).to({state:[{t:this.shape_189}]},1).to({state:[{t:this.shape_190}]},1).to({state:[{t:this.shape_191}]},1).to({state:[{t:this.shape_192}]},1).to({state:[{t:this.shape_193}]},1).to({state:[{t:this.shape_194}]},1).to({state:[{t:this.shape_195}]},1).to({state:[{t:this.shape_196}]},1).to({state:[{t:this.shape_196}]},15).to({state:[{t:this.shape_197}]},1).to({state:[{t:this.shape_198}]},1).to({state:[{t:this.shape_199}]},1).to({state:[{t:this.shape_200}]},1).to({state:[{t:this.shape_201}]},1).to({state:[{t:this.shape_202}]},1).to({state:[{t:this.shape_203}]},1).to({state:[{t:this.shape_204}]},1).to({state:[{t:this.shape_205}]},1).to({state:[{t:this.shape_206}]},1).to({state:[{t:this.shape_207}]},1).to({state:[{t:this.shape_208}]},1).to({state:[{t:this.shape_209}]},1).to({state:[{t:this.shape_210}]},1).to({state:[{t:this.shape_211}]},1).to({state:[{t:this.shape_211}]},15).to({state:[{t:this.shape_212}]},1).to({state:[{t:this.shape_213}]},1).to({state:[{t:this.shape_214}]},1).to({state:[{t:this.shape_215}]},1).to({state:[{t:this.shape_216}]},1).to({state:[{t:this.shape_217}]},1).to({state:[{t:this.shape_218}]},1).to({state:[{t:this.shape_219}]},1).to({state:[{t:this.shape_220}]},1).to({state:[{t:this.shape_221}]},1).to({state:[{t:this.shape_222}]},1).to({state:[{t:this.shape_223}]},1).to({state:[{t:this.shape_224}]},1).to({state:[{t:this.shape_225}]},1).to({state:[{t:this.shape_226}]},1).to({state:[{t:this.shape_226}]},15).to({state:[{t:this.shape_227}]},1).to({state:[{t:this.shape_228}]},1).to({state:[{t:this.shape_229}]},1).to({state:[{t:this.shape_230}]},1).to({state:[{t:this.shape_231}]},1).to({state:[{t:this.shape_232}]},1).to({state:[{t:this.shape_233}]},1).to({state:[{t:this.shape_234}]},1).to({state:[{t:this.shape_235}]},1).to({state:[{t:this.shape_236}]},1).to({state:[{t:this.shape_237}]},1).to({state:[{t:this.shape_238}]},1).to({state:[{t:this.shape_239}]},1).to({state:[{t:this.shape_240}]},1).to({state:[{t:this.shape_241}]},1).to({state:[{t:this.shape_241}]},15).to({state:[{t:this.shape_242}]},1).to({state:[{t:this.shape_243}]},1).to({state:[{t:this.shape_244}]},1).to({state:[{t:this.shape_245}]},1).to({state:[{t:this.shape_246}]},1).to({state:[{t:this.shape_247}]},1).to({state:[{t:this.shape_248}]},1).to({state:[{t:this.shape_249}]},1).to({state:[{t:this.shape_250}]},1).to({state:[{t:this.shape_251}]},1).to({state:[{t:this.shape_252}]},1).to({state:[{t:this.shape_253}]},1).to({state:[{t:this.shape_254}]},1).to({state:[{t:this.shape_255}]},1).to({state:[{t:this.shape_256}]},1).to({state:[{t:this.shape_256}]},15).to({state:[{t:this.shape_257}]},1).to({state:[{t:this.shape_258}]},1).to({state:[{t:this.shape_259}]},1).to({state:[{t:this.shape_260}]},1).to({state:[{t:this.shape_261}]},1).to({state:[{t:this.shape_262}]},1).to({state:[{t:this.shape_263}]},1).to({state:[{t:this.shape_264}]},1).to({state:[{t:this.shape_265}]},1).to({state:[{t:this.shape_266}]},1).to({state:[{t:this.shape_267}]},1).to({state:[{t:this.shape_268}]},1).to({state:[{t:this.shape_269}]},1).to({state:[{t:this.shape_270}]},1).to({state:[{t:this.shape_271}]},1).to({state:[{t:this.shape_271}]},15).to({state:[{t:this.shape_272}]},1).to({state:[{t:this.shape_273}]},1).to({state:[{t:this.shape_274}]},1).to({state:[{t:this.shape_275}]},1).to({state:[{t:this.shape_276}]},1).to({state:[{t:this.shape_277}]},1).to({state:[{t:this.shape_278}]},1).to({state:[{t:this.shape_279}]},1).to({state:[{t:this.shape_280}]},1).to({state:[{t:this.shape_281}]},1).to({state:[{t:this.shape_282}]},1).to({state:[{t:this.shape_283}]},1).to({state:[{t:this.shape_284}]},1).to({state:[{t:this.shape_285}]},1).to({state:[{t:this.shape_286}]},1).to({state:[{t:this.shape_286}]},15).to({state:[{t:this.shape_287}]},1).to({state:[{t:this.shape_288}]},1).to({state:[{t:this.shape_289}]},1).to({state:[{t:this.shape_290}]},1).to({state:[{t:this.shape_291}]},1).to({state:[{t:this.shape_292}]},1).to({state:[{t:this.shape_293}]},1).to({state:[{t:this.shape_294}]},1).to({state:[{t:this.shape_295}]},1).to({state:[{t:this.shape_296}]},1).to({state:[{t:this.shape_297}]},1).to({state:[{t:this.shape_298}]},1).to({state:[{t:this.shape_299}]},1).to({state:[{t:this.shape_300}]},1).to({state:[{t:this.shape_301}]},1).to({state:[{t:this.shape_302}]},1).to({state:[{t:this.shape_301}]},1).to({state:[{t:this.shape_301}]},1).to({state:[{t:this.shape_301}]},1).to({state:[{t:this.shape_303}]},1).to({state:[{t:this.shape_303}]},1).to({state:[{t:this.shape_301}]},1).to({state:[{t:this.shape_303}]},1).to({state:[{t:this.shape_301}]},1).to({state:[{t:this.shape_303}]},1).to({state:[{t:this.shape_301}]},1).to({state:[{t:this.shape_303}]},1).to({state:[{t:this.instance_91}]},3).to({state:[{t:this.instance_92}]},30).wait(1)); + this.timeline.addTween(cjs.Tween.get(this.shape_301).wait(584).to({_off:false},0).to({_off:true},1).wait(1).to({_off:false,x:765.725,y:107},0).wait(1).to({x:766.075,y:106.3},0).wait(1).to({x:766.375,y:105.55},0).to({_off:true},1).wait(2).to({_off:false,x:767.425,y:103.4},0).to({_off:true},1).wait(1).to({_off:false,x:768.125,y:101.95},0).to({_off:true},1).wait(1).to({_off:false,x:768.775,y:100.45},0).to({_off:true},1).wait(34)); + this.timeline.addTween(cjs.Tween.get(this.shape_303).wait(589).to({_off:false},0).wait(1).to({x:767.075,y:104.1},0).to({_off:true},1).wait(1).to({_off:false,x:767.775,y:102.65},0).to({_off:true},1).wait(1).to({_off:false,x:768.425,y:101.2},0).to({_off:true},1).wait(1).to({_off:false,x:769.125,y:99.75},0).to({_off:true},3).wait(31)); + this.timeline.addTween(cjs.Tween.get(this.instance_91).wait(599).to({_off:false},0).to({_off:true,x:1018.6,y:497.45},30).wait(1)); + + // 图层_3 + this.instance_93 = new lib.元件7("synched",0); + this.instance_93.setTransform(1038.05,627.05,1,1,0,0,0,123.7,27.4); + this.instance_93.alpha = 0.7188; + this.instance_93._off = true; + + this.timeline.addTween(cjs.Tween.get(this.instance_93).wait(629).to({_off:false},0).wait(1)); + + // 微笑 + this.instance_94 = new lib.补间85("synched",0); + this.instance_94.setTransform(639,198.5); + this.instance_94._off = true; + + this.timeline.addTween(cjs.Tween.get(this.instance_94).wait(570).to({_off:false},0).to({rotation:-14.9983,x:641.95,y:197.45},14).to({rotation:0,x:639,y:198.5},15).to({startPosition:0},30).wait(1)); + + // 惊讶 + this.instance_95 = new lib.元件6("synched",0); + this.instance_95.setTransform(639.4,202.65,1,1,0,0,0,5.4,4.4); + this.instance_95._off = true; + + this.timeline.addTween(cjs.Tween.get(this.instance_95).wait(405).to({_off:false},0).to({rotation:-5.2118,x:639.7,y:203.7},14).to({rotation:0,x:639.4,y:202.65},15).to({rotation:-5.2118,x:639.7,y:203.7},15).to({rotation:0,x:639.4,y:202.65},15).to({rotation:-5.2118,x:639.7,y:203.7},15).to({rotation:0,x:639.4,y:202.65},15).to({rotation:-5.2118,x:639.7,y:203.7},15).to({rotation:0,x:639.4,y:202.65},15).to({rotation:-5.2118,x:639.7,y:203.7},15).to({rotation:0,x:639.4,y:202.65},15).to({startPosition:0},15).to({_off:true},1).wait(60)); + + // 嘴 + this.instance_96 = new lib.补间58("synched",0); + this.instance_96.setTransform(629.5,202.5); + + this.instance_97 = new lib.补间59("synched",0); + this.instance_97.setTransform(637.5,202.5); + this.instance_97._off = true; + + this.timeline.addTween(cjs.Tween.get(this.instance_96).to({_off:true,x:637.5},14).to({_off:false,x:629.5},15).to({_off:true,x:637.5},15).to({_off:false,x:629.5},15).to({_off:true,x:637.5},15).to({_off:false,x:629.5},15).to({_off:true,x:637.5},15).to({_off:false,x:629.5},15).to({_off:true,x:637.5},15).to({_off:false,x:629.5},15).to({_off:true,x:637.5},15).to({_off:false,x:629.5},15).to({_off:true,x:637.5},15).to({_off:false,x:629.5},15).to({_off:true,x:637.5},15).to({_off:false,x:629.5},15).to({_off:true,x:637.5},15).to({_off:false,x:629.5},15).to({_off:true,x:637.5},15).to({_off:false,x:629.5},15).to({_off:true,x:637.5},15).to({_off:false,x:629.5},15).to({_off:true,x:637.5},15).to({_off:false,x:629.5},15).to({_off:true,x:637.5},15).to({_off:false,x:629.5},15).to({rotation:-7.7195,x:634.9,y:201.15},15).to({_off:true},1).wait(225)); + this.timeline.addTween(cjs.Tween.get(this.instance_97).to({_off:false},14).to({_off:true,x:629.5},15).to({_off:false,x:637.5},15).to({_off:true,x:629.5},15).to({_off:false,x:637.5},15).to({_off:true,x:629.5},15).to({_off:false,x:637.5},15).to({_off:true,x:629.5},15).to({_off:false,x:637.5},15).to({_off:true,x:629.5},15).to({_off:false,x:637.5},15).to({_off:true,x:629.5},15).to({_off:false,x:637.5},15).to({_off:true,x:629.5},15).to({_off:false,x:637.5},15).to({_off:true,x:629.5},15).to({_off:false,x:637.5},15).to({_off:true,x:629.5},15).to({_off:false,x:637.5},15).to({_off:true,x:629.5},15).to({_off:false,x:637.5},15).to({_off:true,x:629.5},15).to({_off:false,x:637.5},15).to({_off:true,x:629.5},15).to({_off:false,x:637.5},15).to({_off:true,x:629.5},15).wait(241)); + + // 形状_2 + this.instance_98 = new lib.补间60("synched",0); + this.instance_98.setTransform(639.5,178); + + this.instance_99 = new lib.补间61("synched",0); + this.instance_99.setTransform(647.5,178); + this.instance_99._off = true; + + this.timeline.addTween(cjs.Tween.get(this.instance_98).to({_off:true,x:647.5},14).to({_off:false,x:639.5},15).to({_off:true,x:647.5},15).to({_off:false,x:639.5},15).to({_off:true,x:647.5},15).to({_off:false,x:639.5},15).to({_off:true,x:647.5},15).to({_off:false,x:639.5},15).to({_off:true,x:647.5},15).to({_off:false,x:639.5},15).to({_off:true,x:647.5},15).to({_off:false,x:639.5},15).to({_off:true,x:647.5},15).to({_off:false,x:639.5},15).to({_off:true,x:647.5},15).to({_off:false,x:639.5},15).to({_off:true,x:647.5},15).to({_off:false,x:639.5},15).to({_off:true,x:647.5},15).to({_off:false,x:639.5},15).to({_off:true,x:647.5},15).to({_off:false,x:639.5},15).to({_off:true,x:647.5},15).to({_off:false,x:639.5},15).to({_off:true,x:647.5},15).to({_off:false,x:639.5},15).to({rotation:-7.7195,x:641.55,y:175.5},15).to({rotation:-12.9301,x:639.35,y:176.45},15).to({rotation:-7.7195,x:641.55,y:175.5},15).to({rotation:-12.9301,x:639.35,y:176.45},15).to({rotation:-7.7195,x:641.55,y:175.5},15).to({rotation:-12.9301,x:639.35,y:176.45},15).to({rotation:-7.7195,x:641.55,y:175.5},15).to({rotation:-12.9301,x:639.35,y:176.45},15).to({rotation:-7.7195,x:641.55,y:175.5},15).to({rotation:-12.9301,x:639.35,y:176.45},15).to({rotation:-7.7195,x:641.55,y:175.5},15).to({rotation:-12.9301,x:639.35,y:176.45},15).to({rotation:-18.871,x:640.15,y:174.25},15).to({rotation:-12.9301,x:639.35,y:176.45},15).to({startPosition:0},30).wait(1)); + this.timeline.addTween(cjs.Tween.get(this.instance_99).to({_off:false},14).to({_off:true,x:639.5},15).to({_off:false,x:647.5},15).to({_off:true,x:639.5},15).to({_off:false,x:647.5},15).to({_off:true,x:639.5},15).to({_off:false,x:647.5},15).to({_off:true,x:639.5},15).to({_off:false,x:647.5},15).to({_off:true,x:639.5},15).to({_off:false,x:647.5},15).to({_off:true,x:639.5},15).to({_off:false,x:647.5},15).to({_off:true,x:639.5},15).to({_off:false,x:647.5},15).to({_off:true,x:639.5},15).to({_off:false,x:647.5},15).to({_off:true,x:639.5},15).to({_off:false,x:647.5},15).to({_off:true,x:639.5},15).to({_off:false,x:647.5},15).to({_off:true,x:639.5},15).to({_off:false,x:647.5},15).to({_off:true,x:639.5},15).to({_off:false,x:647.5},15).to({_off:true,x:639.5},15).wait(241)); + + // 右眼 + this.instance_100 = new lib.补间62("synched",0); + this.instance_100.setTransform(648,172); + + this.instance_101 = new lib.补间63("synched",0); + this.instance_101.setTransform(656,172); + this.instance_101._off = true; + + this.timeline.addTween(cjs.Tween.get(this.instance_100).to({_off:true,x:656},14).to({_off:false,x:648},15).to({_off:true,x:656},15).to({_off:false,x:648},15).to({_off:true,x:656},15).to({_off:false,x:648},15).to({_off:true,x:656},15).to({_off:false,x:648},15).to({_off:true,x:656},15).to({_off:false,x:648},15).to({_off:true,x:656},15).to({_off:false,x:648},15).to({_off:true,x:656},15).to({_off:false,x:648},15).to({_off:true,x:656},15).to({_off:false,x:648},15).to({_off:true,x:656},15).to({_off:false,x:648},15).to({_off:true,x:656},15).to({_off:false,x:648},15).to({_off:true,x:656},15).to({_off:false,x:648},15).to({_off:true,x:656},15).to({_off:false,x:648},15).to({_off:true,x:656},15).to({_off:false,x:648},15).to({rotation:-7.7195,x:649.15,y:168.4},15).to({regX:0.1,regY:0.1,rotation:-12.9301,x:646.4,y:168.8},15).to({regX:0,regY:0,rotation:-7.7195,x:649.15,y:168.4},15).to({regX:0.1,regY:0.1,rotation:-12.9301,x:646.4,y:168.8},15).to({regX:0,regY:0,rotation:-7.7195,x:649.15,y:168.4},15).to({regX:0.1,regY:0.1,rotation:-12.9301,x:646.4,y:168.8},15).to({regX:0,regY:0,rotation:-7.7195,x:649.15,y:168.4},15).to({regX:0.1,regY:0.1,rotation:-12.9301,x:646.4,y:168.8},15).to({regX:0,regY:0,rotation:-7.7195,x:649.15,y:168.4},15).to({regX:0.1,regY:0.1,rotation:-12.9301,x:646.4,y:168.8},15).to({regX:0,regY:0,rotation:-7.7195,x:649.15,y:168.4},15).to({regX:0.1,regY:0.1,rotation:-12.9301,x:646.4,y:168.8},15).to({rotation:-18.871,y:165.9},15).to({rotation:-12.9301,y:168.8},15).to({startPosition:0},30).wait(1)); + this.timeline.addTween(cjs.Tween.get(this.instance_101).to({_off:false},14).to({_off:true,x:648},15).to({_off:false,x:656},15).to({_off:true,x:648},15).to({_off:false,x:656},15).to({_off:true,x:648},15).to({_off:false,x:656},15).to({_off:true,x:648},15).to({_off:false,x:656},15).to({_off:true,x:648},15).to({_off:false,x:656},15).to({_off:true,x:648},15).to({_off:false,x:656},15).to({_off:true,x:648},15).to({_off:false,x:656},15).to({_off:true,x:648},15).to({_off:false,x:656},15).to({_off:true,x:648},15).to({_off:false,x:656},15).to({_off:true,x:648},15).to({_off:false,x:656},15).to({_off:true,x:648},15).to({_off:false,x:656},15).to({_off:true,x:648},15).to({_off:false,x:656},15).to({_off:true,x:648},15).wait(241)); + + // 左眼 + this.instance_102 = new lib.补间64("synched",0); + this.instance_102.setTransform(621,170.5); + + this.instance_103 = new lib.补间65("synched",0); + this.instance_103.setTransform(629,170.5); + this.instance_103._off = true; + + this.timeline.addTween(cjs.Tween.get(this.instance_102).to({_off:true,x:629},14).to({_off:false,x:621},15).to({_off:true,x:629},15).to({_off:false,x:621},15).to({_off:true,x:629},15).to({_off:false,x:621},15).to({_off:true,x:629},15).to({_off:false,x:621},15).to({_off:true,x:629},15).to({_off:false,x:621},15).to({_off:true,x:629},15).to({_off:false,x:621},15).to({_off:true,x:629},15).to({_off:false,x:621},15).to({_off:true,x:629},15).to({_off:false,x:621},15).to({_off:true,x:629},15).to({_off:false,x:621},15).to({_off:true,x:629},15).to({_off:false,x:621},15).to({_off:true,x:629},15).to({_off:false,x:621},15).to({_off:true,x:629},15).to({_off:false,x:621},15).to({_off:true,x:629},15).to({_off:false,x:621},15).to({rotation:-7.7195,x:622.2,y:170.55},15).to({regX:0.1,regY:0.1,rotation:-12.9301,x:619.75,y:173.4},15).to({regX:0,regY:0,rotation:-7.7195,x:622.2,y:170.55},15).to({regX:0.1,regY:0.1,rotation:-12.9301,x:619.75,y:173.4},15).to({regX:0,regY:0,rotation:-7.7195,x:622.2,y:170.55},15).to({regX:0.1,regY:0.1,rotation:-12.9301,x:619.75,y:173.4},15).to({regX:0,regY:0,rotation:-7.7195,x:622.2,y:170.55},15).to({regX:0.1,regY:0.1,rotation:-12.9301,x:619.75,y:173.4},15).to({regX:0,regY:0,rotation:-7.7195,x:622.2,y:170.55},15).to({regX:0.1,regY:0.1,rotation:-12.9301,x:619.75,y:173.4},15).to({regX:0,regY:0,rotation:-7.7195,x:622.2,y:170.55},15).to({regX:0.1,regY:0.1,rotation:-12.9301,x:619.75,y:173.4},15).to({regX:0,rotation:-18.871,x:620.3,y:173.25},15).to({regX:0.1,rotation:-12.9301,x:619.75,y:173.4},15).to({startPosition:0},30).wait(1)); + this.timeline.addTween(cjs.Tween.get(this.instance_103).to({_off:false},14).to({_off:true,x:621},15).to({_off:false,x:629},15).to({_off:true,x:621},15).to({_off:false,x:629},15).to({_off:true,x:621},15).to({_off:false,x:629},15).to({_off:true,x:621},15).to({_off:false,x:629},15).to({_off:true,x:621},15).to({_off:false,x:629},15).to({_off:true,x:621},15).to({_off:false,x:629},15).to({_off:true,x:621},15).to({_off:false,x:629},15).to({_off:true,x:621},15).to({_off:false,x:629},15).to({_off:true,x:621},15).to({_off:false,x:629},15).to({_off:true,x:621},15).to({_off:false,x:629},15).to({_off:true,x:621},15).to({_off:false,x:629},15).to({_off:true,x:621},15).to({_off:false,x:629},15).to({_off:true,x:621},15).wait(241)); + + // 右眉毛 + this.instance_104 = new lib.补间66("synched",0); + this.instance_104.setTransform(651.35,158.55,1,1,-7.7195); + this.instance_104._off = true; + + this.timeline.addTween(cjs.Tween.get(this.instance_104).wait(405).to({_off:false},0).to({regX:0.1,regY:0.1,rotation:-12.9301,x:647.7,y:158.8},14).to({regX:0,regY:0,rotation:-7.7195,x:651.35,y:158.55},15).to({regX:0.1,regY:0.1,rotation:-12.9301,x:647.7,y:158.8},15).to({regX:0,regY:0,rotation:-7.7195,x:651.35,y:158.55},15).to({regX:0.1,regY:0.1,rotation:-12.9301,x:647.7,y:158.8},15).to({regX:0,regY:0,rotation:-7.7195,x:651.35,y:158.55},15).to({regX:0.1,regY:0.1,rotation:-12.9301,x:647.7,y:158.8},15).to({regX:0,regY:0,rotation:-7.7195,x:651.35,y:158.55},15).to({regX:0.1,regY:0.1,rotation:-12.9301,x:647.7,y:158.8},15).to({regX:0,regY:0,rotation:-7.7195,x:651.35,y:158.55},15).to({regX:0.1,regY:0.1,rotation:-12.9301,x:647.7,y:158.8},15).to({regX:0,rotation:-20.6567,x:646.95,y:156.3},15).to({regX:0.1,rotation:-12.9301,x:647.7,y:158.8},15).to({startPosition:0},30).wait(1)); + + // 左眉毛 + this.instance_105 = new lib.补间68("synched",0); + this.instance_105.setTransform(617.1,162.7,1,1,-7.7195); + this.instance_105._off = true; + + this.timeline.addTween(cjs.Tween.get(this.instance_105).wait(405).to({_off:false},0).to({rotation:-12.9301,x:613.85,y:165.95},14).to({rotation:-7.7195,x:617.1,y:162.7},15).to({rotation:-12.9301,x:613.85,y:165.95},15).to({rotation:-7.7195,x:617.1,y:162.7},15).to({rotation:-12.9301,x:613.85,y:165.95},15).to({rotation:-7.7195,x:617.1,y:162.7},15).to({rotation:-12.9301,x:613.85,y:165.95},15).to({rotation:-7.7195,x:617.1,y:162.7},15).to({rotation:-12.9301,x:613.85,y:165.95},15).to({rotation:-7.7195,x:617.1,y:162.7},15).to({rotation:-12.9301,x:613.85,y:165.95},15).to({regX:0.1,regY:0.1,rotation:-20.6567,x:614.55,y:168},15).to({rotation:-18.871,x:613.85,y:166.5},15).to({startPosition:0},30).wait(1)); + + // 右眉毛 + this.instance_106 = new lib.补间66("synched",0); + this.instance_106.setTransform(651.45,162.45,1,1,172.043); + + this.timeline.addTween(cjs.Tween.get(this.instance_106).to({x:659.8},14).to({x:651.45},15).to({x:659.8},15).to({x:651.45},15).to({x:659.8},15).to({x:651.45},15).to({x:659.8},15).to({x:651.45},15).to({x:659.8},15).to({x:651.45},15).to({x:659.8},15).to({x:651.45},15).to({x:659.8},15).to({x:651.45},15).to({x:659.8},15).to({x:651.45},15).to({x:659.8},15).to({x:651.45},15).to({x:659.8},15).to({x:651.45},15).to({x:659.8},15).to({x:651.45},15).to({x:659.8},15).to({x:651.45},15).to({x:660.85},15).to({x:651.45},15).to({rotation:163.3215,x:650.5,y:158.75},15).to({_off:true},1).wait(225)); + + // 左眉毛 + this.instance_107 = new lib.补间68("synched",0); + this.instance_107.setTransform(619.9,161.5,1,1,-165.0017); + + this.timeline.addTween(cjs.Tween.get(this.instance_107).to({x:628.25},14).to({x:619.9},15).to({x:628.25},15).to({x:619.9},15).to({x:628.25},15).to({x:619.9},15).to({x:628.25},15).to({x:619.9},15).to({x:628.25},15).to({x:619.9},15).to({x:628.25},15).to({x:619.9},15).to({x:628.25},15).to({x:619.9},15).to({x:628.25},15).to({x:619.9},15).to({x:628.25},15).to({x:619.9},15).to({x:628.25},15).to({x:619.9},15).to({x:628.25},15).to({x:619.9},15).to({x:628.25},15).to({x:619.9},15).to({x:629.3},15).to({x:619.9},15).to({rotation:-173.7241,x:619.2,y:162.6},15).to({_off:true},1).wait(225)); + + // 头 + this.instance_108 = new lib.补间70("synched",0); + this.instance_108.setTransform(622,161.5); + + this.instance_109 = new lib.补间71("synched",0); + this.instance_109.setTransform(630,161.5); + this.instance_109._off = true; + + this.timeline.addTween(cjs.Tween.get(this.instance_108).to({_off:true,x:630},14).to({_off:false,x:622},15).to({_off:true,x:630},15).to({_off:false,x:622},15).to({_off:true,x:630},15).to({_off:false,x:622},15).to({_off:true,x:630},15).to({_off:false,x:622},15).to({_off:true,x:630},15).to({_off:false,x:622},15).to({_off:true,x:630},15).to({_off:false,x:622},15).to({_off:true,x:630},15).to({_off:false,x:622},15).to({_off:true,x:630},15).to({_off:false,x:622},15).to({_off:true,x:630},15).to({_off:false,x:622},15).to({_off:true,x:630},15).to({_off:false,x:622},15).to({_off:true,x:630},15).to({_off:false,x:622},15).to({_off:true,x:630},15).to({_off:false,x:622},15).to({_off:true,x:630},15).to({_off:false,x:622},15).to({rotation:-7.7195},15).to({regX:0.1,regY:0.1,rotation:-12.9301,x:618.7,y:164.4},15).to({regX:0,regY:0,rotation:-7.7195,x:622,y:161.5},15).to({regX:0.1,regY:0.1,rotation:-12.9301,x:618.7,y:164.4},15).to({regX:0,regY:0,rotation:-7.7195,x:622,y:161.5},15).to({regX:0.1,regY:0.1,rotation:-12.9301,x:618.7,y:164.4},15).to({regX:0,regY:0,rotation:-7.7195,x:622,y:161.5},15).to({regX:0.1,regY:0.1,rotation:-12.9301,x:618.7,y:164.4},15).to({regX:0,regY:0,rotation:-7.7195,x:622,y:161.5},15).to({regX:0.1,regY:0.1,rotation:-12.9301,x:618.7,y:164.4},15).to({regX:0,regY:0,rotation:-7.7195,x:622,y:161.5},15).to({regX:0.1,regY:0.1,rotation:-12.9301,x:618.7,y:164.4},15).to({rotation:-18.871,x:618.4,y:164.35},15).to({rotation:-12.9301,x:618.7,y:164.4},15).to({startPosition:0},30).wait(1)); + this.timeline.addTween(cjs.Tween.get(this.instance_109).to({_off:false},14).to({_off:true,x:622},15).to({_off:false,x:630},15).to({_off:true,x:622},15).to({_off:false,x:630},15).to({_off:true,x:622},15).to({_off:false,x:630},15).to({_off:true,x:622},15).to({_off:false,x:630},15).to({_off:true,x:622},15).to({_off:false,x:630},15).to({_off:true,x:622},15).to({_off:false,x:630},15).to({_off:true,x:622},15).to({_off:false,x:630},15).to({_off:true,x:622},15).to({_off:false,x:630},15).to({_off:true,x:622},15).to({_off:false,x:630},15).to({_off:true,x:622},15).to({_off:false,x:630},15).to({_off:true,x:622},15).to({_off:false,x:630},15).to({_off:true,x:622},15).to({_off:false,x:630},15).to({_off:true,x:622},15).wait(241)); + + // 拳头 + this.instance_110 = new lib.拳头(); + this.instance_110.setTransform(744,240); + + this.timeline.addTween(cjs.Tween.get(this.instance_110).wait(630)); + + // 骨架_15 + this.ikNode_10 = new lib.元件109(); + this.ikNode_10.name = "ikNode_10"; + this.ikNode_10.setTransform(524.6,175.2,0.9998,0.9998,0,0,0,92.9,28.5); + + this.ikNode_9 = new lib.元件107(); + this.ikNode_9.name = "ikNode_9"; + this.ikNode_9.setTransform(762.8,258.75,0.9996,0.9996,0,0,0,76.3,6.2); + + this.ikNode_8 = new lib.元件106(); + this.ikNode_8.name = "ikNode_8"; + this.ikNode_8.setTransform(689.1,306.75,0.9997,0.9997,0,0,0,254.2,98.2); + + this.timeline.addTween(cjs.Tween.get({}).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:0,x:689.1,y:306.75,regX:254.2}},{t:this.ikNode_9,p:{rotation:0,x:762.8,y:258.75,regX:76.3}},{t:this.ikNode_10,p:{regY:28.5,scaleX:0.9998,scaleY:0.9998,rotation:0,x:524.6,y:175.2,regX:92.9}}]}).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.209,x:689.3,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.1915,x:763.15,y:259.1,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.1915,x:525.3,y:174.7,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:0.4207,x:689.2,y:306.85,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.3866,x:763.3,y:259.3,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9998,scaleY:0.9998,rotation:0.3857,x:526,y:174.05,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:0.6332,x:689.15,y:306.8,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.5816,x:763.65,y:259.45,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.5798,x:526.65,y:173.3,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.8449,x:689.15,y:306.8,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.7767,x:763.75,y:259.65,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.774,x:527.35,y:172.55,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.0574,x:689.1,y:306.75,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.9717,x:764.15,y:259.85,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.9681,x:528,y:171.8,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.2691,x:689.15,y:306.75,regX:254.3}},{t:this.ikNode_9,p:{rotation:1.1668,x:764.25,y:260,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9998,scaleY:0.9998,rotation:1.1623,x:528.7,y:171.1,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.4808,x:688.9,y:306.65,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.3619,x:764.6,y:260.1,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.3565,x:529.5,y:170.35,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.6934,x:688.95,y:306.65,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.5561,x:764.95,y:260.25,regX:76.4}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.5507,x:530.25,y:169.6,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.9052,x:688.9,y:306.55,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.7513,x:765.1,y:260.5,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.7449,x:530.95,y:168.95,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.1169,x:688.85,y:306.55,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.9464,x:765.45,y:260.65,regX:76.4}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.9391,x:531.6,y:168.2,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.3288,x:688.75,y:306.5,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.1416,x:765.4,y:260.85,regX:76.2}},{t:this.ikNode_10,p:{regY:28.5,scaleX:0.9997,scaleY:0.9997,rotation:2.1334,x:532.3,y:167.35,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:2.5415,x:688.75,y:306.4,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.3359,x:765.8,y:261,regX:76.3}},{t:this.ikNode_10,p:{regY:28.5,scaleX:0.9997,scaleY:0.9997,rotation:2.3277,x:533,y:166.65,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:2.7525,x:688.7,y:306.4,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.5302,x:766.1,y:261.15,regX:76.4}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:2.5212,x:533.7,y:166,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.9644,x:688.6,y:306.4,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.7255,x:766.3,y:261.4,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:2.7155,x:534.4,y:165.3,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.7665,x:688.7,y:306.35,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.5433,x:766.05,y:261.2,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:2.5343,x:533.75,y:165.9,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:2.5695,x:688.7,y:306.4,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.3621,x:765.85,y:261.05,regX:76.3}},{t:this.ikNode_10,p:{regY:28.5,scaleX:0.9997,scaleY:0.9997,rotation:2.3531,x:533.1,y:166.45,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.3716,x:688.8,y:306.5,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.1801,x:765.5,y:260.85,regX:76.2}},{t:this.ikNode_10,p:{regY:28.5,scaleX:0.9997,scaleY:0.9997,rotation:2.1719,x:532.3,y:167.2,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.1739,x:688.85,y:306.55,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.998,x:765.4,y:260.7,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.9908,x:531.65,y:167.95,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.9761,x:688.85,y:306.55,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.816,x:765.2,y:260.5,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.8097,x:531.15,y:168.7,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.7774,x:688.95,y:306.6,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.634,x:764.9,y:260.35,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.6286,x:530.5,y:169.35,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.5797,x:688.95,y:306.7,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.4529,x:764.7,y:260.25,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.4466,x:529.85,y:170,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.382,x:689.15,y:306.7,regX:254.3}},{t:this.ikNode_9,p:{rotation:1.2709,x:764.45,y:260.1,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.2655,x:529.15,y:170.65,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.1843,x:689.05,y:306.7,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.089,x:764.3,y:259.85,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.0845,x:528.55,y:171.3,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:0.9866,x:689.1,y:306.8,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.907,x:764.05,y:259.75,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.9034,x:527.9,y:172,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.788,x:689.15,y:306.85,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.7251,x:763.7,y:259.6,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.7224,x:527.3,y:172.75,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:0.5904,x:689.2,y:306.8,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.5431,x:763.6,y:259.4,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.5405,x:526.65,y:173.45,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:0.3927,x:689.2,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.3612,x:763.25,y:259.35,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9998,scaleY:0.9998,rotation:0.3594,x:525.9,y:174.15,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.195,x:689.25,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.1793,x:763.15,y:259.15,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.1784,x:525.25,y:174.8,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0,x:689.25,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0,x:762.9,y:258.95,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0,x:524.75,y:175.45,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.188,x:689.25,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.188,x:763.15,y:259.15,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.188,x:525.3,y:174.8,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:0.3787,x:689.2,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.3787,x:763.25,y:259.3,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9998,scaleY:0.9998,rotation:0.3787,x:525.9,y:173.95,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:0.5702,x:689.15,y:306.85,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.5703,x:763.6,y:259.45,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.5702,x:526.55,y:173.2,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.7609,x:689.15,y:306.8,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.7609,x:763.65,y:259.5,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.7608,x:527.2,y:172.6,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.9525,x:689.1,y:306.75,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.9525,x:764,y:259.7,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.9524,x:527.95,y:171.85,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.1432,x:689.05,y:306.7,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.1432,x:764.25,y:259.8,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.1431,x:528.6,y:171.1,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.3347,x:689,y:306.65,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.3348,x:764.45,y:260.05,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.3346,x:529.25,y:170.35,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.5255,x:688.95,y:306.65,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.5255,x:764.7,y:260.2,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.5253,x:529.9,y:169.6,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.7162,x:688.85,y:306.55,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.7162,x:764.9,y:260.25,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.716,x:530.6,y:168.95,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.9078,x:688.85,y:306.6,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.9079,x:765.25,y:260.45,regX:76.4}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.9077,x:531.2,y:168.15,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.0986,x:688.8,y:306.5,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.0987,x:765.2,y:260.6,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:2.0984,x:531.85,y:167.45,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.2894,x:688.8,y:306.55,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.2895,x:765.55,y:260.75,regX:76.3}},{t:this.ikNode_10,p:{regY:28.5,scaleX:0.9997,scaleY:0.9997,rotation:2.2892,x:532.55,y:166.65,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:2.4802,x:688.65,y:306.4,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.4794,x:765.75,y:260.9,regX:76.3}},{t:this.ikNode_10,p:{regY:28.5,scaleX:0.9997,scaleY:0.9997,rotation:2.48,x:533.2,y:165.85,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:2.6719,x:688.75,y:306.4,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.6712,x:765.95,y:261.05,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:2.6717,x:533.75,y:165.35,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.8619,x:688.65,y:306.4,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.8621,x:766.15,y:261.2,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9998,scaleY:0.9998,rotation:2.8625,x:534.4,y:164.65,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:2.6719,x:688.75,y:306.4,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.6712,x:765.95,y:261.05,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:2.6717,x:533.75,y:165.35,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:2.4802,x:688.65,y:306.4,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.4794,x:765.75,y:260.9,regX:76.3}},{t:this.ikNode_10,p:{regY:28.5,scaleX:0.9997,scaleY:0.9997,rotation:2.48,x:533.2,y:165.85,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.2894,x:688.8,y:306.55,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.2895,x:765.55,y:260.75,regX:76.3}},{t:this.ikNode_10,p:{regY:28.5,scaleX:0.9997,scaleY:0.9997,rotation:2.2892,x:532.55,y:166.65,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.0986,x:688.8,y:306.5,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.0987,x:765.2,y:260.6,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:2.0984,x:531.85,y:167.45,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.9078,x:688.85,y:306.6,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.9079,x:765.25,y:260.45,regX:76.4}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.9077,x:531.2,y:168.15,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.7162,x:688.85,y:306.55,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.7162,x:764.9,y:260.25,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.716,x:530.6,y:168.95,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.5255,x:688.95,y:306.65,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.5255,x:764.7,y:260.2,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.5253,x:529.9,y:169.6,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.3347,x:689,y:306.65,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.3348,x:764.45,y:260.05,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.3346,x:529.25,y:170.35,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.1432,x:689.05,y:306.7,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.1432,x:764.25,y:259.8,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.1431,x:528.6,y:171.1,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.9525,x:689.1,y:306.75,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.9525,x:764,y:259.7,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.9524,x:527.95,y:171.85,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.7609,x:689.15,y:306.8,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.7609,x:763.65,y:259.5,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.7608,x:527.2,y:172.6,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:0.5702,x:689.15,y:306.85,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.5703,x:763.6,y:259.45,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.5702,x:526.55,y:173.2,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:0.3787,x:689.2,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.3787,x:763.25,y:259.3,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9998,scaleY:0.9998,rotation:0.3787,x:525.9,y:173.95,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.188,x:689.25,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.188,x:763.15,y:259.15,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.188,x:525.3,y:174.8,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0,x:689.25,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0,x:762.9,y:258.95,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0,x:524.75,y:175.45,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.188,x:689.25,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.188,x:763.1,y:259.15,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.188,x:525.25,y:174.8,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:0.3787,x:689.15,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.3787,x:763.2,y:259.3,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9998,scaleY:0.9998,rotation:0.3787,x:525.9,y:174,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:0.5702,x:689.15,y:306.85,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.5703,x:763.5,y:259.45,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.5702,x:526.5,y:173.25,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.7609,x:689.15,y:306.8,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.7609,x:763.6,y:259.55,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.7608,x:527.1,y:172.6,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.9525,x:689.1,y:306.75,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.9525,x:763.9,y:259.75,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.9524,x:527.9,y:171.85,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.1432,x:689.05,y:306.7,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.1432,x:764.1,y:259.85,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.1431,x:528.55,y:171.1,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.3347,x:688.95,y:306.7,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.3348,x:764.3,y:260.1,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.3346,x:529.15,y:170.35,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.5255,x:688.9,y:306.65,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.5255,x:764.5,y:260.25,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.5253,x:529.8,y:169.6,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.7162,x:688.8,y:306.6,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.7162,x:764.7,y:260.35,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.716,x:530.45,y:168.95,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.9078,x:688.8,y:306.6,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.9079,x:765,y:260.55,regX:76.4}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.9077,x:531.05,y:168.2,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.0986,x:688.75,y:306.55,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.0987,x:764.95,y:260.7,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:2.0984,x:531.7,y:167.45,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.2894,x:688.75,y:306.55,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.2895,x:765.25,y:260.85,regX:76.3}},{t:this.ikNode_10,p:{regY:28.5,scaleX:0.9997,scaleY:0.9997,rotation:2.2892,x:532.35,y:166.65,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:2.4802,x:688.6,y:306.45,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.4794,x:765.45,y:261,regX:76.3}},{t:this.ikNode_10,p:{regY:28.5,scaleX:0.9997,scaleY:0.9997,rotation:2.48,x:533,y:165.9,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:2.6719,x:688.65,y:306.4,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.6712,x:765.65,y:261.15,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:2.6717,x:533.5,y:165.4,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.8619,x:688.6,y:306.45,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.8621,x:765.8,y:261.3,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9998,scaleY:0.9998,rotation:2.8625,x:534.2,y:164.65,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:2.6719,x:688.65,y:306.4,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.6712,x:765.65,y:261.15,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:2.6717,x:533.5,y:165.4,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:2.4802,x:688.6,y:306.45,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.4794,x:765.45,y:261,regX:76.3}},{t:this.ikNode_10,p:{regY:28.5,scaleX:0.9997,scaleY:0.9997,rotation:2.48,x:533,y:165.9,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.2894,x:688.75,y:306.55,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.2895,x:765.25,y:260.85,regX:76.3}},{t:this.ikNode_10,p:{regY:28.5,scaleX:0.9997,scaleY:0.9997,rotation:2.2892,x:532.35,y:166.65,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.0986,x:688.75,y:306.55,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.0987,x:764.95,y:260.7,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:2.0984,x:531.7,y:167.45,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.9078,x:688.8,y:306.6,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.9079,x:765,y:260.55,regX:76.4}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.9077,x:531.05,y:168.2,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.7162,x:688.8,y:306.6,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.7162,x:764.7,y:260.35,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.716,x:530.45,y:168.95,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.5255,x:688.9,y:306.65,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.5255,x:764.5,y:260.25,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.5253,x:529.8,y:169.6,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.3347,x:688.95,y:306.7,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.3348,x:764.3,y:260.1,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.3346,x:529.15,y:170.35,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.1432,x:689.05,y:306.7,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.1432,x:764.1,y:259.85,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.1431,x:528.55,y:171.1,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.9525,x:689.1,y:306.75,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.9525,x:763.9,y:259.75,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.9524,x:527.9,y:171.85,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.7609,x:689.15,y:306.8,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.7609,x:763.6,y:259.55,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.7608,x:527.1,y:172.6,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:0.5702,x:689.15,y:306.85,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.5703,x:763.5,y:259.45,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.5702,x:526.5,y:173.25,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:0.3787,x:689.15,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.3787,x:763.2,y:259.3,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9998,scaleY:0.9998,rotation:0.3787,x:525.9,y:174,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.188,x:689.25,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.188,x:763.1,y:259.15,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.188,x:525.25,y:174.8,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0,x:689.25,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0,x:762.9,y:258.95,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0,x:524.75,y:175.45,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.188,x:689.25,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.188,x:763.1,y:259.15,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.188,x:525.25,y:174.8,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:0.3787,x:689.15,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.3787,x:763.2,y:259.3,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9998,scaleY:0.9998,rotation:0.3787,x:525.9,y:174,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:0.5702,x:689.15,y:306.85,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.5703,x:763.5,y:259.45,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.5702,x:526.5,y:173.25,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.7609,x:689.15,y:306.8,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.7609,x:763.6,y:259.55,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.7608,x:527.1,y:172.6,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.9525,x:689.1,y:306.75,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.9525,x:763.9,y:259.75,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.9524,x:527.9,y:171.85,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.1432,x:689.05,y:306.7,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.1432,x:764.1,y:259.85,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.1431,x:528.55,y:171.1,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.3347,x:688.95,y:306.7,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.3348,x:764.3,y:260.1,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.3346,x:529.15,y:170.35,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.5255,x:688.9,y:306.65,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.5255,x:764.5,y:260.25,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.5253,x:529.8,y:169.6,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.7162,x:688.8,y:306.6,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.7162,x:764.7,y:260.35,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.716,x:530.45,y:168.95,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.9078,x:688.8,y:306.6,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.9079,x:765,y:260.55,regX:76.4}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.9077,x:531.05,y:168.2,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.0986,x:688.75,y:306.55,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.0987,x:764.95,y:260.7,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:2.0984,x:531.7,y:167.45,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.2894,x:688.75,y:306.55,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.2895,x:765.25,y:260.85,regX:76.3}},{t:this.ikNode_10,p:{regY:28.5,scaleX:0.9997,scaleY:0.9997,rotation:2.2892,x:532.35,y:166.65,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:2.4802,x:688.6,y:306.45,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.4794,x:765.45,y:261,regX:76.3}},{t:this.ikNode_10,p:{regY:28.5,scaleX:0.9997,scaleY:0.9997,rotation:2.48,x:533,y:165.9,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:2.6719,x:688.65,y:306.4,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.6712,x:765.65,y:261.15,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:2.6717,x:533.5,y:165.4,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.8619,x:688.6,y:306.45,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.8621,x:765.8,y:261.3,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9998,scaleY:0.9998,rotation:2.8625,x:534.2,y:164.65,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:2.6719,x:688.65,y:306.4,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.6712,x:765.65,y:261.15,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:2.6717,x:533.5,y:165.4,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:2.4802,x:688.6,y:306.45,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.4794,x:765.45,y:261,regX:76.3}},{t:this.ikNode_10,p:{regY:28.5,scaleX:0.9997,scaleY:0.9997,rotation:2.48,x:533,y:165.9,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.2894,x:688.75,y:306.55,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.2895,x:765.25,y:260.85,regX:76.3}},{t:this.ikNode_10,p:{regY:28.5,scaleX:0.9997,scaleY:0.9997,rotation:2.2892,x:532.35,y:166.65,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.0986,x:688.75,y:306.55,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.0987,x:764.95,y:260.7,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:2.0984,x:531.7,y:167.45,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.9078,x:688.8,y:306.6,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.9079,x:765,y:260.55,regX:76.4}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.9077,x:531.05,y:168.2,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.7162,x:688.8,y:306.6,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.7162,x:764.7,y:260.35,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.716,x:530.45,y:168.95,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.5255,x:688.9,y:306.65,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.5255,x:764.5,y:260.25,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.5253,x:529.8,y:169.6,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.3347,x:688.95,y:306.7,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.3348,x:764.3,y:260.1,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.3346,x:529.15,y:170.35,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.1432,x:689.05,y:306.7,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.1432,x:764.1,y:259.85,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.1431,x:528.55,y:171.1,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.9525,x:689.1,y:306.75,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.9525,x:763.9,y:259.75,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.9524,x:527.9,y:171.85,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.7609,x:689.15,y:306.8,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.7609,x:763.6,y:259.55,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.7608,x:527.1,y:172.6,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:0.5702,x:689.15,y:306.85,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.5703,x:763.5,y:259.45,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.5702,x:526.5,y:173.25,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:0.3787,x:689.15,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.3787,x:763.2,y:259.3,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9998,scaleY:0.9998,rotation:0.3787,x:525.9,y:174,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.188,x:689.25,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.188,x:763.1,y:259.15,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.188,x:525.25,y:174.8,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0,x:689.25,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0,x:762.9,y:258.95,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0,x:524.75,y:175.45,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.188,x:689.25,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.188,x:763.1,y:259.15,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.188,x:525.25,y:174.8,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:0.3787,x:689.15,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.3787,x:763.2,y:259.3,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9998,scaleY:0.9998,rotation:0.3787,x:525.9,y:174,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:0.5702,x:689.15,y:306.85,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.5703,x:763.5,y:259.45,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.5702,x:526.5,y:173.25,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.7609,x:689.15,y:306.8,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.7609,x:763.6,y:259.55,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.7608,x:527.1,y:172.6,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.9525,x:689.1,y:306.75,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.9525,x:763.9,y:259.75,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.9524,x:527.9,y:171.85,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.1432,x:689.05,y:306.7,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.1432,x:764.1,y:259.85,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.1431,x:528.55,y:171.1,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.3347,x:688.95,y:306.7,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.3348,x:764.3,y:260.1,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.3346,x:529.15,y:170.35,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.5255,x:688.9,y:306.65,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.5255,x:764.5,y:260.25,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.5253,x:529.8,y:169.6,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.7162,x:688.8,y:306.6,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.7162,x:764.7,y:260.35,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.716,x:530.45,y:168.95,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.9078,x:688.8,y:306.6,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.9079,x:765,y:260.55,regX:76.4}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.9077,x:531.05,y:168.2,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.0986,x:688.75,y:306.55,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.0987,x:764.95,y:260.7,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:2.0984,x:531.7,y:167.45,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.2894,x:688.75,y:306.55,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.2895,x:765.25,y:260.85,regX:76.3}},{t:this.ikNode_10,p:{regY:28.5,scaleX:0.9997,scaleY:0.9997,rotation:2.2892,x:532.35,y:166.65,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:2.4802,x:688.6,y:306.45,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.4794,x:765.45,y:261,regX:76.3}},{t:this.ikNode_10,p:{regY:28.5,scaleX:0.9997,scaleY:0.9997,rotation:2.48,x:533,y:165.9,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:2.6719,x:688.65,y:306.4,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.6712,x:765.65,y:261.15,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:2.6717,x:533.5,y:165.4,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.8619,x:688.6,y:306.45,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.8621,x:765.8,y:261.3,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9998,scaleY:0.9998,rotation:2.8625,x:534.2,y:164.65,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:2.6719,x:688.65,y:306.4,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.6712,x:765.65,y:261.15,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:2.6717,x:533.5,y:165.4,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:2.4802,x:688.6,y:306.45,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.4794,x:765.45,y:261,regX:76.3}},{t:this.ikNode_10,p:{regY:28.5,scaleX:0.9997,scaleY:0.9997,rotation:2.48,x:533,y:165.9,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.2894,x:688.75,y:306.55,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.2895,x:765.25,y:260.85,regX:76.3}},{t:this.ikNode_10,p:{regY:28.5,scaleX:0.9997,scaleY:0.9997,rotation:2.2892,x:532.35,y:166.65,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.0986,x:688.75,y:306.55,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.0987,x:764.95,y:260.7,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:2.0984,x:531.7,y:167.45,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.9078,x:688.8,y:306.6,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.9079,x:765,y:260.55,regX:76.4}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.9077,x:531.05,y:168.2,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.7162,x:688.8,y:306.6,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.7162,x:764.7,y:260.35,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.716,x:530.45,y:168.95,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.5255,x:688.9,y:306.65,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.5255,x:764.5,y:260.25,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.5253,x:529.8,y:169.6,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.3347,x:688.95,y:306.7,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.3348,x:764.3,y:260.1,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.3346,x:529.15,y:170.35,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.1432,x:689.05,y:306.7,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.1432,x:764.1,y:259.85,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.1431,x:528.55,y:171.1,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.9525,x:689.1,y:306.75,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.9525,x:763.9,y:259.75,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.9524,x:527.9,y:171.85,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.7609,x:689.15,y:306.8,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.7609,x:763.6,y:259.55,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.7608,x:527.1,y:172.6,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:0.5702,x:689.15,y:306.85,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.5703,x:763.5,y:259.45,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.5702,x:526.5,y:173.25,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:0.3787,x:689.15,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.3787,x:763.2,y:259.3,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9998,scaleY:0.9998,rotation:0.3787,x:525.9,y:174,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.188,x:689.25,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.188,x:763.1,y:259.15,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.188,x:525.25,y:174.8,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0,x:689.25,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0,x:762.9,y:258.95,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0,x:524.75,y:175.45,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.188,x:689.25,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.188,x:763.1,y:259.15,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.188,x:525.25,y:174.8,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:0.3787,x:689.15,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.3787,x:763.2,y:259.3,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9998,scaleY:0.9998,rotation:0.3787,x:525.9,y:174,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:0.5702,x:689.15,y:306.85,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.5703,x:763.5,y:259.45,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.5702,x:526.5,y:173.25,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.7609,x:689.15,y:306.8,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.7609,x:763.6,y:259.55,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.7608,x:527.1,y:172.6,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.9525,x:689.1,y:306.75,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.9525,x:763.9,y:259.75,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.9524,x:527.9,y:171.85,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.1432,x:689.05,y:306.7,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.1432,x:764.1,y:259.85,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.1431,x:528.55,y:171.1,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.3347,x:688.95,y:306.7,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.3348,x:764.3,y:260.1,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.3346,x:529.15,y:170.35,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.5255,x:688.9,y:306.65,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.5255,x:764.5,y:260.25,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.5253,x:529.8,y:169.6,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.7162,x:688.8,y:306.6,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.7162,x:764.7,y:260.35,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.716,x:530.45,y:168.95,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.9078,x:688.8,y:306.6,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.9079,x:765,y:260.55,regX:76.4}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.9077,x:531.05,y:168.2,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.0986,x:688.75,y:306.55,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.0987,x:764.95,y:260.7,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:2.0984,x:531.7,y:167.45,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.2894,x:688.75,y:306.55,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.2895,x:765.25,y:260.85,regX:76.3}},{t:this.ikNode_10,p:{regY:28.5,scaleX:0.9997,scaleY:0.9997,rotation:2.2892,x:532.35,y:166.65,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:2.4802,x:688.6,y:306.45,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.4794,x:765.45,y:261,regX:76.3}},{t:this.ikNode_10,p:{regY:28.5,scaleX:0.9997,scaleY:0.9997,rotation:2.48,x:533,y:165.9,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:2.6719,x:688.65,y:306.4,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.6712,x:765.65,y:261.15,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:2.6717,x:533.5,y:165.4,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.8619,x:688.6,y:306.45,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.8621,x:765.8,y:261.3,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9998,scaleY:0.9998,rotation:2.8625,x:534.2,y:164.65,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:2.6719,x:688.65,y:306.4,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.6712,x:765.65,y:261.15,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:2.6717,x:533.5,y:165.4,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:2.4802,x:688.6,y:306.45,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.4794,x:765.45,y:261,regX:76.3}},{t:this.ikNode_10,p:{regY:28.5,scaleX:0.9997,scaleY:0.9997,rotation:2.48,x:533,y:165.9,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.2894,x:688.75,y:306.55,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.2895,x:765.25,y:260.85,regX:76.3}},{t:this.ikNode_10,p:{regY:28.5,scaleX:0.9997,scaleY:0.9997,rotation:2.2892,x:532.35,y:166.65,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.0986,x:688.75,y:306.55,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.0987,x:764.95,y:260.7,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:2.0984,x:531.7,y:167.45,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.9078,x:688.8,y:306.6,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.9079,x:765,y:260.55,regX:76.4}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.9077,x:531.05,y:168.2,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.7162,x:688.8,y:306.6,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.7162,x:764.7,y:260.35,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.716,x:530.45,y:168.95,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.5255,x:688.9,y:306.65,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.5255,x:764.5,y:260.25,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.5253,x:529.8,y:169.6,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.3347,x:688.95,y:306.7,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.3348,x:764.3,y:260.1,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.3346,x:529.15,y:170.35,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.1432,x:689.05,y:306.7,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.1432,x:764.1,y:259.85,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.1431,x:528.55,y:171.1,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.9525,x:689.1,y:306.75,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.9525,x:763.9,y:259.75,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.9524,x:527.9,y:171.85,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.7609,x:689.15,y:306.8,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.7609,x:763.6,y:259.55,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.7608,x:527.1,y:172.6,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:0.5702,x:689.15,y:306.85,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.5703,x:763.5,y:259.45,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.5702,x:526.5,y:173.25,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:0.3787,x:689.15,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.3787,x:763.2,y:259.3,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9998,scaleY:0.9998,rotation:0.3787,x:525.9,y:174,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.188,x:689.25,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.188,x:763.1,y:259.15,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.188,x:525.25,y:174.8,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0,x:689.25,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0,x:762.9,y:258.95,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0,x:524.75,y:175.45,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.188,x:689.25,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.188,x:763.1,y:259.15,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.188,x:525.25,y:174.8,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:0.3787,x:689.15,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.3787,x:763.2,y:259.3,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9998,scaleY:0.9998,rotation:0.3787,x:525.9,y:174,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:0.5702,x:689.15,y:306.85,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.5703,x:763.5,y:259.45,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.5702,x:526.5,y:173.25,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.7609,x:689.15,y:306.8,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.7609,x:763.6,y:259.55,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.7608,x:527.1,y:172.6,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.9525,x:689.1,y:306.75,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.9525,x:763.9,y:259.75,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.9524,x:527.9,y:171.85,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.1432,x:689.05,y:306.7,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.1432,x:764.1,y:259.85,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.1431,x:528.55,y:171.1,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.3347,x:688.95,y:306.7,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.3348,x:764.3,y:260.1,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.3346,x:529.15,y:170.35,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.5255,x:688.9,y:306.65,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.5255,x:764.5,y:260.25,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.5253,x:529.8,y:169.6,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.7162,x:688.8,y:306.6,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.7162,x:764.7,y:260.35,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.716,x:530.45,y:168.95,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.9078,x:688.8,y:306.6,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.9079,x:765,y:260.55,regX:76.4}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.9077,x:531.05,y:168.2,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.0986,x:688.75,y:306.55,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.0987,x:764.95,y:260.7,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:2.0984,x:531.7,y:167.45,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.2894,x:688.75,y:306.55,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.2895,x:765.25,y:260.85,regX:76.3}},{t:this.ikNode_10,p:{regY:28.5,scaleX:0.9997,scaleY:0.9997,rotation:2.2892,x:532.35,y:166.65,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:2.4802,x:688.6,y:306.45,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.4794,x:765.45,y:261,regX:76.3}},{t:this.ikNode_10,p:{regY:28.5,scaleX:0.9997,scaleY:0.9997,rotation:2.48,x:533,y:165.9,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:2.6719,x:688.65,y:306.4,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.6712,x:765.65,y:261.15,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:2.6717,x:533.5,y:165.4,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.8619,x:688.6,y:306.45,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.8621,x:765.8,y:261.3,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9998,scaleY:0.9998,rotation:2.8625,x:534.2,y:164.65,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:2.6719,x:688.65,y:306.4,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.6712,x:765.65,y:261.15,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:2.6717,x:533.5,y:165.4,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:2.4802,x:688.6,y:306.45,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.4794,x:765.45,y:261,regX:76.3}},{t:this.ikNode_10,p:{regY:28.5,scaleX:0.9997,scaleY:0.9997,rotation:2.48,x:533,y:165.9,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.2894,x:688.75,y:306.55,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.2895,x:765.25,y:260.85,regX:76.3}},{t:this.ikNode_10,p:{regY:28.5,scaleX:0.9997,scaleY:0.9997,rotation:2.2892,x:532.35,y:166.65,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.0986,x:688.75,y:306.55,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.0987,x:764.95,y:260.7,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:2.0984,x:531.7,y:167.45,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.9078,x:688.8,y:306.6,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.9079,x:765,y:260.55,regX:76.4}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.9077,x:531.05,y:168.2,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.7162,x:688.8,y:306.6,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.7162,x:764.7,y:260.35,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.716,x:530.45,y:168.95,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.5255,x:688.9,y:306.65,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.5255,x:764.5,y:260.25,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.5253,x:529.8,y:169.6,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.3347,x:688.95,y:306.7,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.3348,x:764.3,y:260.1,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.3346,x:529.15,y:170.35,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.1432,x:689.05,y:306.7,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.1432,x:764.1,y:259.85,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.1431,x:528.55,y:171.1,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.9525,x:689.1,y:306.75,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.9525,x:763.9,y:259.75,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.9524,x:527.9,y:171.85,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.7609,x:689.15,y:306.8,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.7609,x:763.6,y:259.55,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.7608,x:527.1,y:172.6,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:0.5702,x:689.15,y:306.85,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.5703,x:763.5,y:259.45,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.5702,x:526.5,y:173.25,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:0.3787,x:689.15,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.3787,x:763.2,y:259.3,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9998,scaleY:0.9998,rotation:0.3787,x:525.9,y:174,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.188,x:689.25,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.188,x:763.1,y:259.15,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.188,x:525.25,y:174.8,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0,x:689.25,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0,x:762.9,y:258.95,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0,x:524.75,y:175.45,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.188,x:689.25,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.188,x:763.1,y:259.15,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.188,x:525.25,y:174.8,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:0.3787,x:689.15,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.3787,x:763.2,y:259.3,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9998,scaleY:0.9998,rotation:0.3787,x:525.9,y:174,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:0.5702,x:689.15,y:306.85,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.5703,x:763.5,y:259.45,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.5702,x:526.5,y:173.25,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.7609,x:689.15,y:306.8,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.7609,x:763.6,y:259.55,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.7608,x:527.1,y:172.6,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.9525,x:689.1,y:306.75,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.9525,x:763.9,y:259.75,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.9524,x:527.9,y:171.85,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.1432,x:689.05,y:306.7,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.1432,x:764.1,y:259.85,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.1431,x:528.55,y:171.1,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.3347,x:688.95,y:306.7,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.3348,x:764.3,y:260.1,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.3346,x:529.15,y:170.35,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.5255,x:688.9,y:306.65,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.5255,x:764.5,y:260.25,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.5253,x:529.8,y:169.6,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.7162,x:688.8,y:306.6,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.7162,x:764.7,y:260.35,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.716,x:530.45,y:168.95,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.9078,x:688.8,y:306.6,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.9079,x:765,y:260.55,regX:76.4}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.9077,x:531.05,y:168.2,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.0986,x:688.75,y:306.55,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.0987,x:764.95,y:260.7,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:2.0984,x:531.7,y:167.45,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.2894,x:688.75,y:306.55,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.2895,x:765.25,y:260.85,regX:76.3}},{t:this.ikNode_10,p:{regY:28.5,scaleX:0.9997,scaleY:0.9997,rotation:2.2892,x:532.35,y:166.65,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:2.4802,x:688.6,y:306.45,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.4794,x:765.45,y:261,regX:76.3}},{t:this.ikNode_10,p:{regY:28.5,scaleX:0.9997,scaleY:0.9997,rotation:2.48,x:533,y:165.9,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:2.6719,x:688.65,y:306.4,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.6712,x:765.65,y:261.15,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:2.6717,x:533.5,y:165.4,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.8619,x:688.6,y:306.45,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.8621,x:765.8,y:261.3,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9998,scaleY:0.9998,rotation:2.8625,x:534.2,y:164.65,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:2.6719,x:688.65,y:306.4,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.6712,x:765.65,y:261.15,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:2.6717,x:533.5,y:165.4,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:2.4802,x:688.6,y:306.45,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.4794,x:765.45,y:261,regX:76.3}},{t:this.ikNode_10,p:{regY:28.5,scaleX:0.9997,scaleY:0.9997,rotation:2.48,x:533,y:165.9,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.2894,x:688.75,y:306.55,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.2895,x:765.25,y:260.85,regX:76.3}},{t:this.ikNode_10,p:{regY:28.5,scaleX:0.9997,scaleY:0.9997,rotation:2.2892,x:532.35,y:166.65,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.0986,x:688.75,y:306.55,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.0987,x:764.95,y:260.7,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:2.0984,x:531.7,y:167.45,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.9078,x:688.8,y:306.6,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.9079,x:765,y:260.55,regX:76.4}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.9077,x:531.05,y:168.2,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.7162,x:688.8,y:306.6,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.7162,x:764.7,y:260.35,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.716,x:530.45,y:168.95,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.5255,x:688.9,y:306.65,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.5255,x:764.5,y:260.25,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.5253,x:529.8,y:169.6,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.3347,x:688.95,y:306.7,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.3348,x:764.3,y:260.1,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.3346,x:529.15,y:170.35,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.1432,x:689.05,y:306.7,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.1432,x:764.1,y:259.85,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.1431,x:528.55,y:171.1,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.9525,x:689.1,y:306.75,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.9525,x:763.9,y:259.75,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.9524,x:527.9,y:171.85,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.7609,x:689.15,y:306.8,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.7609,x:763.6,y:259.55,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.7608,x:527.1,y:172.6,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:0.5702,x:689.15,y:306.85,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.5703,x:763.5,y:259.45,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.5702,x:526.5,y:173.25,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:0.3787,x:689.15,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.3787,x:763.2,y:259.3,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9998,scaleY:0.9998,rotation:0.3787,x:525.9,y:174,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.188,x:689.25,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.188,x:763.1,y:259.15,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.188,x:525.25,y:174.8,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0,x:689.25,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0,x:762.9,y:258.95,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0,x:524.75,y:175.45,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.188,x:689.25,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.188,x:763.1,y:259.15,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.188,x:525.25,y:174.8,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:0.3787,x:689.15,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.3787,x:763.2,y:259.3,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9998,scaleY:0.9998,rotation:0.3787,x:525.9,y:174,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:0.5702,x:689.15,y:306.85,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.5703,x:763.5,y:259.45,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.5702,x:526.5,y:173.25,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.7609,x:689.15,y:306.8,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.7609,x:763.6,y:259.55,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.7608,x:527.1,y:172.6,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.9525,x:689.1,y:306.75,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.9525,x:763.9,y:259.75,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.9524,x:527.9,y:171.85,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.1432,x:689.05,y:306.7,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.1432,x:764.1,y:259.85,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.1431,x:528.55,y:171.1,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.3347,x:688.95,y:306.7,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.3348,x:764.3,y:260.1,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.3346,x:529.15,y:170.35,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.5255,x:688.9,y:306.65,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.5255,x:764.5,y:260.25,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.5253,x:529.8,y:169.6,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.7162,x:688.8,y:306.6,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.7162,x:764.7,y:260.35,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.716,x:530.45,y:168.95,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.9078,x:688.8,y:306.6,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.9079,x:765,y:260.55,regX:76.4}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.9077,x:531.05,y:168.2,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.0986,x:688.75,y:306.55,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.0987,x:764.95,y:260.7,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:2.0984,x:531.7,y:167.45,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.2894,x:688.75,y:306.55,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.2895,x:765.25,y:260.85,regX:76.3}},{t:this.ikNode_10,p:{regY:28.5,scaleX:0.9997,scaleY:0.9997,rotation:2.2892,x:532.35,y:166.65,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:2.4802,x:688.6,y:306.45,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.4794,x:765.45,y:261,regX:76.3}},{t:this.ikNode_10,p:{regY:28.5,scaleX:0.9997,scaleY:0.9997,rotation:2.48,x:533,y:165.9,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:2.6719,x:688.65,y:306.4,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.6712,x:765.65,y:261.15,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:2.6717,x:533.5,y:165.4,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.8619,x:688.6,y:306.45,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.8621,x:765.8,y:261.3,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9998,scaleY:0.9998,rotation:2.8625,x:534.2,y:164.65,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:2.6719,x:688.65,y:306.4,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.6712,x:765.65,y:261.15,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:2.6717,x:533.5,y:165.4,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:2.4802,x:688.6,y:306.45,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.4794,x:765.45,y:261,regX:76.3}},{t:this.ikNode_10,p:{regY:28.5,scaleX:0.9997,scaleY:0.9997,rotation:2.48,x:533,y:165.9,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.2894,x:688.75,y:306.55,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.2895,x:765.25,y:260.85,regX:76.3}},{t:this.ikNode_10,p:{regY:28.5,scaleX:0.9997,scaleY:0.9997,rotation:2.2892,x:532.35,y:166.65,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.0986,x:688.75,y:306.55,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.0987,x:764.95,y:260.7,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:2.0984,x:531.7,y:167.45,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.9078,x:688.8,y:306.6,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.9079,x:765,y:260.55,regX:76.4}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.9077,x:531.05,y:168.2,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.7162,x:688.8,y:306.6,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.7162,x:764.7,y:260.35,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.716,x:530.45,y:168.95,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.5255,x:688.9,y:306.65,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.5255,x:764.5,y:260.25,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.5253,x:529.8,y:169.6,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.3347,x:688.95,y:306.7,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.3348,x:764.3,y:260.1,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.3346,x:529.15,y:170.35,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.1432,x:689.05,y:306.7,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.1432,x:764.1,y:259.85,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.1431,x:528.55,y:171.1,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.9525,x:689.1,y:306.75,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.9525,x:763.9,y:259.75,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.9524,x:527.9,y:171.85,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.7609,x:689.15,y:306.8,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.7609,x:763.6,y:259.55,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.7608,x:527.1,y:172.6,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:0.5702,x:689.15,y:306.85,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.5703,x:763.5,y:259.45,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.5702,x:526.5,y:173.25,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:0.3787,x:689.15,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.3787,x:763.2,y:259.3,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9998,scaleY:0.9998,rotation:0.3787,x:525.9,y:174,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.188,x:689.25,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.188,x:763.1,y:259.15,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.188,x:525.25,y:174.8,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0,x:689.25,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0,x:762.9,y:258.95,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0,x:524.75,y:175.45,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.188,x:689.25,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.188,x:763.1,y:259.15,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.188,x:525.25,y:174.8,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:0.3787,x:689.15,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.3787,x:763.2,y:259.3,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9998,scaleY:0.9998,rotation:0.3787,x:525.9,y:174,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:0.5702,x:689.15,y:306.85,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.5703,x:763.5,y:259.45,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.5702,x:526.5,y:173.25,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.7609,x:689.15,y:306.8,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.7609,x:763.6,y:259.55,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.7608,x:527.1,y:172.6,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.9525,x:689.1,y:306.75,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.9525,x:763.9,y:259.75,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.9524,x:527.9,y:171.85,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.1432,x:689.05,y:306.7,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.1432,x:764.1,y:259.85,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.1431,x:528.55,y:171.1,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.3347,x:688.95,y:306.7,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.3348,x:764.3,y:260.1,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.3346,x:529.15,y:170.35,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.5255,x:688.9,y:306.65,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.5255,x:764.5,y:260.25,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.5253,x:529.8,y:169.6,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.7162,x:688.8,y:306.6,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.7162,x:764.7,y:260.35,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.716,x:530.45,y:168.95,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.9078,x:688.8,y:306.6,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.9079,x:765,y:260.55,regX:76.4}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.9077,x:531.05,y:168.2,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.0986,x:688.75,y:306.55,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.0987,x:764.95,y:260.7,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:2.0984,x:531.7,y:167.45,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.2894,x:688.75,y:306.55,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.2895,x:765.25,y:260.85,regX:76.3}},{t:this.ikNode_10,p:{regY:28.5,scaleX:0.9997,scaleY:0.9997,rotation:2.2892,x:532.35,y:166.65,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:2.4802,x:688.6,y:306.45,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.4794,x:765.45,y:261,regX:76.3}},{t:this.ikNode_10,p:{regY:28.5,scaleX:0.9997,scaleY:0.9997,rotation:2.48,x:533,y:165.9,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:2.6719,x:688.65,y:306.4,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.6712,x:765.65,y:261.15,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:2.6717,x:533.5,y:165.4,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.8619,x:688.6,y:306.45,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.8621,x:765.8,y:261.3,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9998,scaleY:0.9998,rotation:2.8625,x:534.2,y:164.65,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:2.6719,x:688.65,y:306.4,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.6712,x:765.65,y:261.15,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:2.6717,x:533.5,y:165.4,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:2.4802,x:688.6,y:306.45,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.4794,x:765.45,y:261,regX:76.3}},{t:this.ikNode_10,p:{regY:28.5,scaleX:0.9997,scaleY:0.9997,rotation:2.48,x:533,y:165.9,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.2894,x:688.75,y:306.55,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.2895,x:765.25,y:260.85,regX:76.3}},{t:this.ikNode_10,p:{regY:28.5,scaleX:0.9997,scaleY:0.9997,rotation:2.2892,x:532.35,y:166.65,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.0986,x:688.75,y:306.55,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.0987,x:764.95,y:260.7,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:2.0984,x:531.7,y:167.45,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.9078,x:688.8,y:306.6,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.9079,x:765,y:260.55,regX:76.4}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.9077,x:531.05,y:168.2,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.7162,x:688.8,y:306.6,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.7162,x:764.7,y:260.35,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.716,x:530.45,y:168.95,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.5255,x:688.9,y:306.65,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.5255,x:764.5,y:260.25,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.5253,x:529.8,y:169.6,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.3347,x:688.95,y:306.7,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.3348,x:764.3,y:260.1,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.3346,x:529.15,y:170.35,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.1432,x:689.05,y:306.7,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.1432,x:764.1,y:259.85,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.1431,x:528.55,y:171.1,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.9525,x:689.1,y:306.75,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.9525,x:763.9,y:259.75,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.9524,x:527.9,y:171.85,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.7609,x:689.15,y:306.8,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.7609,x:763.6,y:259.55,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.7608,x:527.1,y:172.6,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:0.5702,x:689.15,y:306.85,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.5703,x:763.5,y:259.45,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.5702,x:526.5,y:173.25,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:0.3787,x:689.15,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.3787,x:763.2,y:259.3,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9998,scaleY:0.9998,rotation:0.3787,x:525.9,y:174,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.188,x:689.25,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.188,x:763.1,y:259.15,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.188,x:525.25,y:174.8,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0,x:689.25,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0,x:762.9,y:258.95,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0,x:524.75,y:175.45,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.188,x:689.25,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.188,x:763.1,y:259.15,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.188,x:525.25,y:174.8,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:0.3787,x:689.15,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.3787,x:763.2,y:259.3,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9998,scaleY:0.9998,rotation:0.3787,x:525.9,y:174,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:0.5702,x:689.15,y:306.85,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.5703,x:763.5,y:259.45,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.5702,x:526.5,y:173.25,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.7609,x:689.15,y:306.8,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.7609,x:763.6,y:259.55,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.7608,x:527.1,y:172.6,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.9525,x:689.1,y:306.75,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.9525,x:763.9,y:259.75,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.9524,x:527.9,y:171.85,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.1432,x:689.05,y:306.7,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.1432,x:764.1,y:259.85,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.1431,x:528.55,y:171.1,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.3347,x:688.95,y:306.7,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.3348,x:764.3,y:260.1,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.3346,x:529.15,y:170.35,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.5255,x:688.9,y:306.65,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.5255,x:764.5,y:260.25,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.5253,x:529.8,y:169.6,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.7162,x:688.8,y:306.6,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.7162,x:764.7,y:260.35,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.716,x:530.45,y:168.95,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.9078,x:688.8,y:306.6,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.9079,x:765,y:260.55,regX:76.4}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.9077,x:531.05,y:168.2,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.0986,x:688.75,y:306.55,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.0987,x:764.95,y:260.7,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:2.0984,x:531.7,y:167.45,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.2894,x:688.75,y:306.55,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.2895,x:765.25,y:260.85,regX:76.3}},{t:this.ikNode_10,p:{regY:28.5,scaleX:0.9997,scaleY:0.9997,rotation:2.2892,x:532.35,y:166.65,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:2.4802,x:688.6,y:306.45,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.4794,x:765.45,y:261,regX:76.3}},{t:this.ikNode_10,p:{regY:28.5,scaleX:0.9997,scaleY:0.9997,rotation:2.48,x:533,y:165.9,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:2.6719,x:688.65,y:306.4,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.6712,x:765.65,y:261.15,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:2.6717,x:533.5,y:165.4,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.8619,x:688.6,y:306.45,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.8621,x:765.8,y:261.3,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9998,scaleY:0.9998,rotation:2.8625,x:534.2,y:164.65,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:2.6719,x:688.65,y:306.4,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.6712,x:765.65,y:261.15,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:2.6717,x:533.5,y:165.4,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:2.4802,x:688.6,y:306.45,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.4794,x:765.45,y:261,regX:76.3}},{t:this.ikNode_10,p:{regY:28.5,scaleX:0.9997,scaleY:0.9997,rotation:2.48,x:533,y:165.9,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.2894,x:688.75,y:306.55,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.2895,x:765.25,y:260.85,regX:76.3}},{t:this.ikNode_10,p:{regY:28.5,scaleX:0.9997,scaleY:0.9997,rotation:2.2892,x:532.35,y:166.65,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.0986,x:688.75,y:306.55,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.0987,x:764.95,y:260.7,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:2.0984,x:531.7,y:167.45,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.9078,x:688.8,y:306.6,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.9079,x:765,y:260.55,regX:76.4}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.9077,x:531.05,y:168.2,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.7162,x:688.8,y:306.6,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.7162,x:764.7,y:260.35,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.716,x:530.45,y:168.95,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.5255,x:688.9,y:306.65,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.5255,x:764.5,y:260.25,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.5253,x:529.8,y:169.6,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.3347,x:688.95,y:306.7,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.3348,x:764.3,y:260.1,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.3346,x:529.15,y:170.35,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.1432,x:689.05,y:306.7,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.1432,x:764.1,y:259.85,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.1431,x:528.55,y:171.1,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.9525,x:689.1,y:306.75,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.9525,x:763.9,y:259.75,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.9524,x:527.9,y:171.85,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.7609,x:689.15,y:306.8,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.7609,x:763.6,y:259.55,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.7608,x:527.1,y:172.6,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:0.5702,x:689.15,y:306.85,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.5703,x:763.5,y:259.45,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.5702,x:526.5,y:173.25,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:0.3787,x:689.15,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.3787,x:763.2,y:259.3,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9998,scaleY:0.9998,rotation:0.3787,x:525.9,y:174,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.188,x:689.25,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.188,x:763.1,y:259.15,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.188,x:525.25,y:174.8,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0,x:689.25,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0,x:762.9,y:258.95,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0,x:524.75,y:175.45,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.188,x:689.25,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.188,x:763.1,y:259.15,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.188,x:525.25,y:174.8,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:0.3787,x:689.15,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.3787,x:763.2,y:259.3,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9998,scaleY:0.9998,rotation:0.3787,x:525.9,y:174,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:0.5702,x:689.15,y:306.85,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.5703,x:763.5,y:259.45,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.5702,x:526.5,y:173.25,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.7609,x:689.15,y:306.8,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.7609,x:763.6,y:259.55,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.7608,x:527.1,y:172.6,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.9525,x:689.1,y:306.75,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.9525,x:763.9,y:259.75,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.9524,x:527.9,y:171.85,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.1432,x:689.05,y:306.7,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.1432,x:764.1,y:259.85,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.1431,x:528.55,y:171.1,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.3347,x:688.95,y:306.7,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.3348,x:764.3,y:260.1,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.3346,x:529.15,y:170.35,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.5255,x:688.9,y:306.65,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.5255,x:764.5,y:260.25,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.5253,x:529.8,y:169.6,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.7162,x:688.8,y:306.6,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.7162,x:764.7,y:260.35,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.716,x:530.45,y:168.95,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.9078,x:688.8,y:306.6,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.9079,x:765,y:260.55,regX:76.4}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.9077,x:531.05,y:168.2,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.0986,x:688.75,y:306.55,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.0987,x:764.95,y:260.7,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:2.0984,x:531.7,y:167.45,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.2894,x:688.75,y:306.55,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.2895,x:765.25,y:260.85,regX:76.3}},{t:this.ikNode_10,p:{regY:28.5,scaleX:0.9997,scaleY:0.9997,rotation:2.2892,x:532.35,y:166.65,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:2.4802,x:688.6,y:306.45,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.4794,x:765.45,y:261,regX:76.3}},{t:this.ikNode_10,p:{regY:28.5,scaleX:0.9997,scaleY:0.9997,rotation:2.48,x:533,y:165.9,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:2.6719,x:688.65,y:306.4,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.6712,x:765.65,y:261.15,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:2.6717,x:533.5,y:165.4,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.8619,x:688.6,y:306.45,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.8621,x:765.8,y:261.3,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9998,scaleY:0.9998,rotation:2.8625,x:534.2,y:164.65,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:2.6719,x:688.65,y:306.4,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.6712,x:765.65,y:261.15,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:2.6717,x:533.5,y:165.4,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:2.4802,x:688.6,y:306.45,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.4794,x:765.45,y:261,regX:76.3}},{t:this.ikNode_10,p:{regY:28.5,scaleX:0.9997,scaleY:0.9997,rotation:2.48,x:533,y:165.9,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.2894,x:688.75,y:306.55,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.2895,x:765.25,y:260.85,regX:76.3}},{t:this.ikNode_10,p:{regY:28.5,scaleX:0.9997,scaleY:0.9997,rotation:2.2892,x:532.35,y:166.65,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.0986,x:688.75,y:306.55,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.0987,x:764.95,y:260.7,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:2.0984,x:531.7,y:167.45,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.9078,x:688.8,y:306.6,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.9079,x:765,y:260.55,regX:76.4}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.9077,x:531.05,y:168.2,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.7162,x:688.8,y:306.6,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.7162,x:764.7,y:260.35,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.716,x:530.45,y:168.95,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.5255,x:688.9,y:306.65,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.5255,x:764.5,y:260.25,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.5253,x:529.8,y:169.6,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.3347,x:688.95,y:306.7,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.3348,x:764.3,y:260.1,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.3346,x:529.15,y:170.35,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.1432,x:689.05,y:306.7,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.1432,x:764.1,y:259.85,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.1431,x:528.55,y:171.1,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.9525,x:689.1,y:306.75,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.9525,x:763.9,y:259.75,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.9524,x:527.9,y:171.85,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.7609,x:689.15,y:306.8,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.7609,x:763.6,y:259.55,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.7608,x:527.1,y:172.6,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:0.5702,x:689.15,y:306.85,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.5703,x:763.5,y:259.45,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.5702,x:526.5,y:173.25,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:0.3787,x:689.15,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.3787,x:763.2,y:259.3,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9998,scaleY:0.9998,rotation:0.3787,x:525.9,y:174,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.188,x:689.25,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.188,x:763.1,y:259.15,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.188,x:525.25,y:174.8,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0,x:689.25,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0,x:762.9,y:258.95,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0,x:524.75,y:175.45,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.188,x:689.25,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.188,x:763.1,y:259.15,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.188,x:525.25,y:174.8,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:0.3787,x:689.15,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.3787,x:763.2,y:259.3,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9998,scaleY:0.9998,rotation:0.3787,x:525.9,y:174,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:0.5702,x:689.15,y:306.85,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.5703,x:763.5,y:259.45,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.5702,x:526.5,y:173.25,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.7609,x:689.15,y:306.8,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.7609,x:763.6,y:259.55,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.7608,x:527.1,y:172.6,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.9525,x:689.1,y:306.75,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.9525,x:763.9,y:259.75,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.9524,x:527.9,y:171.85,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.1432,x:689.05,y:306.7,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.1432,x:764.1,y:259.85,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.1431,x:528.55,y:171.1,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.3347,x:688.95,y:306.7,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.3348,x:764.3,y:260.1,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.3346,x:529.15,y:170.35,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.5255,x:688.9,y:306.65,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.5255,x:764.5,y:260.25,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.5253,x:529.8,y:169.6,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.7162,x:688.8,y:306.6,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.7162,x:764.7,y:260.35,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.716,x:530.45,y:168.95,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.9078,x:688.8,y:306.6,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.9079,x:765,y:260.55,regX:76.4}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.9077,x:531.05,y:168.2,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.0986,x:688.75,y:306.55,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.0987,x:764.95,y:260.7,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:2.0984,x:531.7,y:167.45,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.2894,x:688.75,y:306.55,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.2895,x:765.25,y:260.85,regX:76.3}},{t:this.ikNode_10,p:{regY:28.5,scaleX:0.9997,scaleY:0.9997,rotation:2.2892,x:532.35,y:166.65,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:2.4802,x:688.6,y:306.45,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.4794,x:765.45,y:261,regX:76.3}},{t:this.ikNode_10,p:{regY:28.5,scaleX:0.9997,scaleY:0.9997,rotation:2.48,x:533,y:165.9,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:2.6719,x:688.65,y:306.4,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.6712,x:765.65,y:261.15,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:2.6717,x:533.5,y:165.4,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.8619,x:688.6,y:306.45,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.8621,x:765.8,y:261.3,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9998,scaleY:0.9998,rotation:2.8625,x:534.2,y:164.65,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:2.6719,x:688.65,y:306.4,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.6712,x:765.65,y:261.15,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:2.6717,x:533.5,y:165.4,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:2.4802,x:688.6,y:306.45,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.4794,x:765.45,y:261,regX:76.3}},{t:this.ikNode_10,p:{regY:28.5,scaleX:0.9997,scaleY:0.9997,rotation:2.48,x:533,y:165.9,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.2894,x:688.75,y:306.55,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.2895,x:765.25,y:260.85,regX:76.3}},{t:this.ikNode_10,p:{regY:28.5,scaleX:0.9997,scaleY:0.9997,rotation:2.2892,x:532.35,y:166.65,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.0986,x:688.75,y:306.55,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.0987,x:764.95,y:260.7,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:2.0984,x:531.7,y:167.45,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.9078,x:688.8,y:306.6,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.9079,x:765,y:260.55,regX:76.4}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.9077,x:531.05,y:168.2,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.7162,x:688.8,y:306.6,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.7162,x:764.7,y:260.35,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.716,x:530.45,y:168.95,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.5255,x:688.9,y:306.65,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.5255,x:764.5,y:260.25,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.5253,x:529.8,y:169.6,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.3347,x:688.95,y:306.7,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.3348,x:764.3,y:260.1,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.3346,x:529.15,y:170.35,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.1432,x:689.05,y:306.7,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.1432,x:764.1,y:259.85,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.1431,x:528.55,y:171.1,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.9525,x:689.1,y:306.75,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.9525,x:763.9,y:259.75,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.9524,x:527.9,y:171.85,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.7609,x:689.15,y:306.8,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.7609,x:763.6,y:259.55,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.7608,x:527.1,y:172.6,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:0.5702,x:689.15,y:306.85,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.5703,x:763.5,y:259.45,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.5702,x:526.5,y:173.25,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:0.3787,x:689.15,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.3787,x:763.2,y:259.3,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9998,scaleY:0.9998,rotation:0.3787,x:525.9,y:174,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.188,x:689.25,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.188,x:763.1,y:259.15,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.188,x:525.25,y:174.8,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0,x:689.25,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0,x:762.9,y:258.95,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0,x:524.75,y:175.45,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.188,x:689.25,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.188,x:763.1,y:259.15,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.188,x:525.25,y:174.8,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:0.3787,x:689.15,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.3787,x:763.2,y:259.3,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9998,scaleY:0.9998,rotation:0.3787,x:525.9,y:174,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:0.5702,x:689.15,y:306.85,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.5703,x:763.5,y:259.45,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.5702,x:526.5,y:173.25,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.7609,x:689.15,y:306.8,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.7609,x:763.6,y:259.55,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.7608,x:527.1,y:172.6,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.9525,x:689.1,y:306.75,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.9525,x:763.9,y:259.75,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.9524,x:527.9,y:171.85,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.1432,x:689.05,y:306.7,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.1432,x:764.1,y:259.85,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.1431,x:528.55,y:171.1,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.3347,x:688.95,y:306.7,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.3348,x:764.3,y:260.1,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.3346,x:529.15,y:170.35,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.5255,x:688.9,y:306.65,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.5255,x:764.5,y:260.25,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.5253,x:529.8,y:169.6,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.7162,x:688.8,y:306.6,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.7162,x:764.7,y:260.35,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.716,x:530.45,y:168.95,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.9078,x:688.8,y:306.6,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.9079,x:765,y:260.55,regX:76.4}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.9077,x:531.05,y:168.2,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.0986,x:688.75,y:306.55,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.0987,x:764.95,y:260.7,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:2.0984,x:531.7,y:167.45,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.2894,x:688.75,y:306.55,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.2895,x:765.25,y:260.85,regX:76.3}},{t:this.ikNode_10,p:{regY:28.5,scaleX:0.9997,scaleY:0.9997,rotation:2.2892,x:532.35,y:166.65,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:2.4802,x:688.6,y:306.45,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.4794,x:765.45,y:261,regX:76.3}},{t:this.ikNode_10,p:{regY:28.5,scaleX:0.9997,scaleY:0.9997,rotation:2.48,x:533,y:165.9,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:2.6719,x:688.65,y:306.4,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.6712,x:765.65,y:261.15,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:2.6717,x:533.5,y:165.4,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.8619,x:688.6,y:306.45,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.8621,x:765.8,y:261.3,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9998,scaleY:0.9998,rotation:2.8625,x:534.2,y:164.65,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:2.6719,x:688.65,y:306.4,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.6712,x:765.65,y:261.15,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:2.6717,x:533.5,y:165.4,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:2.4802,x:688.6,y:306.45,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.4794,x:765.45,y:261,regX:76.3}},{t:this.ikNode_10,p:{regY:28.5,scaleX:0.9997,scaleY:0.9997,rotation:2.48,x:533,y:165.9,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.2894,x:688.75,y:306.55,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.2895,x:765.25,y:260.85,regX:76.3}},{t:this.ikNode_10,p:{regY:28.5,scaleX:0.9997,scaleY:0.9997,rotation:2.2892,x:532.35,y:166.65,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.0986,x:688.75,y:306.55,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.0987,x:764.95,y:260.7,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:2.0984,x:531.7,y:167.45,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.9078,x:688.8,y:306.6,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.9079,x:765,y:260.55,regX:76.4}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.9077,x:531.05,y:168.2,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.7162,x:688.8,y:306.6,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.7162,x:764.7,y:260.35,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.716,x:530.45,y:168.95,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.5255,x:688.9,y:306.65,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.5255,x:764.5,y:260.25,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.5253,x:529.8,y:169.6,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.3347,x:688.95,y:306.7,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.3348,x:764.3,y:260.1,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.3346,x:529.15,y:170.35,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.1432,x:689.05,y:306.7,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.1432,x:764.1,y:259.85,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.1431,x:528.55,y:171.1,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.9525,x:689.1,y:306.75,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.9525,x:763.9,y:259.75,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.9524,x:527.9,y:171.85,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.7609,x:689.15,y:306.8,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.7609,x:763.6,y:259.55,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.7608,x:527.1,y:172.6,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:0.5702,x:689.15,y:306.85,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.5703,x:763.5,y:259.45,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.5702,x:526.5,y:173.25,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:0.3787,x:689.15,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.3787,x:763.2,y:259.3,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9998,scaleY:0.9998,rotation:0.3787,x:525.9,y:174,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.188,x:689.25,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.188,x:763.1,y:259.15,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.188,x:525.25,y:174.8,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0,x:689.25,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0,x:762.9,y:258.95,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0,x:524.75,y:175.45,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.188,x:689.25,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.188,x:763.1,y:259.15,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.188,x:525.25,y:174.8,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:0.3787,x:689.15,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.3787,x:763.2,y:259.3,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9998,scaleY:0.9998,rotation:0.3787,x:525.9,y:174,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:0.5702,x:689.15,y:306.85,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.5703,x:763.5,y:259.45,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.5702,x:526.5,y:173.25,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.7609,x:689.15,y:306.8,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.7609,x:763.6,y:259.55,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.7608,x:527.1,y:172.6,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.9525,x:689.1,y:306.75,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.9525,x:763.9,y:259.75,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.9524,x:527.9,y:171.85,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.1432,x:689.05,y:306.7,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.1432,x:764.1,y:259.85,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.1431,x:528.55,y:171.1,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.3347,x:688.95,y:306.7,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.3348,x:764.3,y:260.1,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.3346,x:529.15,y:170.35,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.5255,x:688.9,y:306.65,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.5255,x:764.5,y:260.25,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.5253,x:529.8,y:169.6,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.7162,x:688.8,y:306.6,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.7162,x:764.7,y:260.35,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.716,x:530.45,y:168.95,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.9078,x:688.8,y:306.6,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.9079,x:765,y:260.55,regX:76.4}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.9077,x:531.05,y:168.2,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.0986,x:688.75,y:306.55,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.0987,x:764.95,y:260.7,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:2.0984,x:531.7,y:167.45,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.2894,x:688.75,y:306.55,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.2895,x:765.25,y:260.85,regX:76.3}},{t:this.ikNode_10,p:{regY:28.5,scaleX:0.9997,scaleY:0.9997,rotation:2.2892,x:532.35,y:166.65,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:2.4802,x:688.6,y:306.45,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.4794,x:765.45,y:261,regX:76.3}},{t:this.ikNode_10,p:{regY:28.5,scaleX:0.9997,scaleY:0.9997,rotation:2.48,x:533,y:165.9,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:2.6719,x:688.65,y:306.4,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.6712,x:765.65,y:261.15,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:2.6717,x:533.5,y:165.4,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.8619,x:688.6,y:306.45,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.8621,x:765.8,y:261.3,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9998,scaleY:0.9998,rotation:2.8625,x:534.2,y:164.65,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:2.6719,x:688.65,y:306.4,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.6712,x:765.65,y:261.15,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:2.6717,x:533.5,y:165.4,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:2.4802,x:688.6,y:306.45,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.4794,x:765.45,y:261,regX:76.3}},{t:this.ikNode_10,p:{regY:28.5,scaleX:0.9997,scaleY:0.9997,rotation:2.48,x:533,y:165.9,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.2894,x:688.75,y:306.55,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.2895,x:765.25,y:260.85,regX:76.3}},{t:this.ikNode_10,p:{regY:28.5,scaleX:0.9997,scaleY:0.9997,rotation:2.2892,x:532.35,y:166.65,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.0986,x:688.75,y:306.55,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.0987,x:764.95,y:260.7,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:2.0984,x:531.7,y:167.45,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.9078,x:688.8,y:306.6,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.9079,x:765,y:260.55,regX:76.4}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.9077,x:531.05,y:168.2,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.7162,x:688.8,y:306.6,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.7162,x:764.7,y:260.35,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.716,x:530.45,y:168.95,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.5255,x:688.9,y:306.65,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.5255,x:764.5,y:260.25,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.5253,x:529.8,y:169.6,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.3347,x:688.95,y:306.7,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.3348,x:764.3,y:260.1,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.3346,x:529.15,y:170.35,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.1432,x:689.05,y:306.7,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.1432,x:764.1,y:259.85,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.1431,x:528.55,y:171.1,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.9525,x:689.1,y:306.75,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.9525,x:763.9,y:259.75,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.9524,x:527.9,y:171.85,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.7609,x:689.15,y:306.8,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.7609,x:763.6,y:259.55,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.7608,x:527.1,y:172.6,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:0.5702,x:689.15,y:306.85,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.5703,x:763.5,y:259.45,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.5702,x:526.5,y:173.25,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:0.3787,x:689.15,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.3787,x:763.2,y:259.3,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9998,scaleY:0.9998,rotation:0.3787,x:525.9,y:174,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.188,x:689.25,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.188,x:763.1,y:259.15,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.188,x:525.25,y:174.8,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0,x:689.25,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0,x:762.9,y:258.95,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0,x:524.75,y:175.45,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.188,x:689.25,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.188,x:763.1,y:259.15,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.188,x:525.25,y:174.8,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:0.3787,x:689.15,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.3787,x:763.2,y:259.3,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9998,scaleY:0.9998,rotation:0.3787,x:525.9,y:174,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:0.5702,x:689.15,y:306.85,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.5703,x:763.5,y:259.45,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.5702,x:526.5,y:173.25,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.7609,x:689.15,y:306.8,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.7609,x:763.6,y:259.55,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.7608,x:527.1,y:172.6,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.9525,x:689.1,y:306.75,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.9525,x:763.9,y:259.75,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.9524,x:527.9,y:171.85,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.1432,x:689.05,y:306.7,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.1432,x:764.1,y:259.85,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.1431,x:528.55,y:171.1,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.3347,x:688.95,y:306.7,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.3348,x:764.3,y:260.1,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.3346,x:529.15,y:170.35,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.5255,x:688.9,y:306.65,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.5255,x:764.5,y:260.25,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.5253,x:529.8,y:169.6,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.7162,x:688.8,y:306.6,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.7162,x:764.7,y:260.35,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.716,x:530.45,y:168.95,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.9078,x:688.8,y:306.6,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.9079,x:765,y:260.55,regX:76.4}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.9077,x:531.05,y:168.2,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.0986,x:688.75,y:306.55,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.0987,x:764.95,y:260.7,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:2.0984,x:531.7,y:167.45,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.2894,x:688.75,y:306.55,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.2895,x:765.25,y:260.85,regX:76.3}},{t:this.ikNode_10,p:{regY:28.5,scaleX:0.9997,scaleY:0.9997,rotation:2.2892,x:532.35,y:166.65,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:2.4802,x:688.6,y:306.45,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.4794,x:765.45,y:261,regX:76.3}},{t:this.ikNode_10,p:{regY:28.5,scaleX:0.9997,scaleY:0.9997,rotation:2.48,x:533,y:165.9,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:2.6719,x:688.65,y:306.4,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.6712,x:765.65,y:261.15,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:2.6717,x:533.5,y:165.4,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.8619,x:688.6,y:306.45,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.8621,x:765.8,y:261.3,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9998,scaleY:0.9998,rotation:2.8625,x:534.2,y:164.65,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:2.6719,x:688.65,y:306.4,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.6712,x:765.65,y:261.15,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:2.6717,x:533.5,y:165.4,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:2.4802,x:688.6,y:306.45,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.4794,x:765.45,y:261,regX:76.3}},{t:this.ikNode_10,p:{regY:28.5,scaleX:0.9997,scaleY:0.9997,rotation:2.48,x:533,y:165.9,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.2894,x:688.75,y:306.55,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.2895,x:765.25,y:260.85,regX:76.3}},{t:this.ikNode_10,p:{regY:28.5,scaleX:0.9997,scaleY:0.9997,rotation:2.2892,x:532.35,y:166.65,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.0986,x:688.75,y:306.55,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.0987,x:764.95,y:260.7,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:2.0984,x:531.7,y:167.45,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.9078,x:688.8,y:306.6,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.9079,x:765,y:260.55,regX:76.4}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.9077,x:531.05,y:168.2,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.7162,x:688.8,y:306.6,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.7162,x:764.7,y:260.35,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.716,x:530.45,y:168.95,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.5255,x:688.9,y:306.65,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.5255,x:764.5,y:260.25,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.5253,x:529.8,y:169.6,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.3347,x:688.95,y:306.7,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.3348,x:764.3,y:260.1,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.3346,x:529.15,y:170.35,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.1432,x:689.05,y:306.7,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.1432,x:764.1,y:259.85,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.1431,x:528.55,y:171.1,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.9525,x:689.1,y:306.75,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.9525,x:763.9,y:259.75,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.9524,x:527.9,y:171.85,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.7609,x:689.15,y:306.8,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.7609,x:763.6,y:259.55,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.7608,x:527.1,y:172.6,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:0.5702,x:689.15,y:306.85,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.5703,x:763.5,y:259.45,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.5702,x:526.5,y:173.25,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:0.3787,x:689.15,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.3787,x:763.2,y:259.3,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9998,scaleY:0.9998,rotation:0.3787,x:525.9,y:174,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.188,x:689.25,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.188,x:763.1,y:259.15,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.188,x:525.25,y:174.8,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0,x:689.25,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0,x:762.9,y:258.95,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0,x:524.75,y:175.45,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.188,x:689.25,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.188,x:763.1,y:259.15,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.188,x:525.25,y:174.8,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:0.3787,x:689.15,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.3787,x:763.2,y:259.3,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9998,scaleY:0.9998,rotation:0.3787,x:525.9,y:174,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:0.5702,x:689.15,y:306.85,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.5703,x:763.5,y:259.45,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.5702,x:526.5,y:173.25,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.7609,x:689.15,y:306.8,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.7609,x:763.6,y:259.55,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.7608,x:527.1,y:172.6,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.9525,x:689.1,y:306.75,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.9525,x:763.9,y:259.75,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.9524,x:527.9,y:171.85,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.1432,x:689.05,y:306.7,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.1432,x:764.1,y:259.85,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.1431,x:528.55,y:171.1,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.3347,x:688.95,y:306.7,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.3348,x:764.3,y:260.1,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.3346,x:529.15,y:170.35,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.5255,x:688.9,y:306.65,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.5255,x:764.5,y:260.25,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.5253,x:529.8,y:169.6,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.7162,x:688.8,y:306.6,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.7162,x:764.7,y:260.35,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.716,x:530.45,y:168.95,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.9078,x:688.8,y:306.6,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.9079,x:765,y:260.55,regX:76.4}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.9077,x:531.05,y:168.2,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.0986,x:688.75,y:306.55,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.0987,x:764.95,y:260.7,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:2.0984,x:531.7,y:167.45,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.2894,x:688.75,y:306.55,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.2895,x:765.25,y:260.85,regX:76.3}},{t:this.ikNode_10,p:{regY:28.5,scaleX:0.9997,scaleY:0.9997,rotation:2.2892,x:532.35,y:166.65,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:2.4802,x:688.6,y:306.45,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.4794,x:765.45,y:261,regX:76.3}},{t:this.ikNode_10,p:{regY:28.5,scaleX:0.9997,scaleY:0.9997,rotation:2.48,x:533,y:165.9,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:2.6719,x:688.65,y:306.4,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.6712,x:765.65,y:261.15,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:2.6717,x:533.5,y:165.4,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.8619,x:688.6,y:306.45,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.8621,x:765.8,y:261.3,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9998,scaleY:0.9998,rotation:2.8625,x:534.2,y:164.65,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:2.6719,x:688.65,y:306.4,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.6712,x:765.65,y:261.15,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:2.6717,x:533.5,y:165.4,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:2.4802,x:688.6,y:306.45,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.4794,x:765.45,y:261,regX:76.3}},{t:this.ikNode_10,p:{regY:28.5,scaleX:0.9997,scaleY:0.9997,rotation:2.48,x:533,y:165.9,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.2894,x:688.75,y:306.55,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.2895,x:765.25,y:260.85,regX:76.3}},{t:this.ikNode_10,p:{regY:28.5,scaleX:0.9997,scaleY:0.9997,rotation:2.2892,x:532.35,y:166.65,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.0986,x:688.75,y:306.55,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.0987,x:764.95,y:260.7,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:2.0984,x:531.7,y:167.45,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.9078,x:688.8,y:306.6,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.9079,x:765,y:260.55,regX:76.4}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.9077,x:531.05,y:168.2,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.7162,x:688.8,y:306.6,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.7162,x:764.7,y:260.35,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.716,x:530.45,y:168.95,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.5255,x:688.9,y:306.65,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.5255,x:764.5,y:260.25,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.5253,x:529.8,y:169.6,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.3347,x:688.95,y:306.7,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.3348,x:764.3,y:260.1,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.3346,x:529.15,y:170.35,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.1432,x:689.05,y:306.7,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.1432,x:764.1,y:259.85,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.1431,x:528.55,y:171.1,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.9525,x:689.1,y:306.75,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.9525,x:763.9,y:259.75,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.9524,x:527.9,y:171.85,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.7609,x:689.15,y:306.8,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.7609,x:763.6,y:259.55,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.7608,x:527.1,y:172.6,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:0.5702,x:689.15,y:306.85,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.5703,x:763.5,y:259.45,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.5702,x:526.5,y:173.25,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:0.3787,x:689.15,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.3787,x:763.2,y:259.3,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9998,scaleY:0.9998,rotation:0.3787,x:525.9,y:174,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.188,x:689.25,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.188,x:763.1,y:259.15,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.188,x:525.25,y:174.8,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0,x:689.25,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0,x:762.9,y:258.95,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0,x:524.75,y:175.45,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.188,x:689.25,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.188,x:763.1,y:259.15,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.188,x:525.25,y:174.8,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:0.3787,x:689.15,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.3787,x:763.2,y:259.3,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9998,scaleY:0.9998,rotation:0.3787,x:525.9,y:174,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:0.5702,x:689.15,y:306.85,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.5703,x:763.5,y:259.45,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.5702,x:526.5,y:173.25,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.7609,x:689.15,y:306.8,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.7609,x:763.6,y:259.55,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.7608,x:527.1,y:172.6,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.9525,x:689.1,y:306.75,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.9525,x:763.9,y:259.75,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.9524,x:527.9,y:171.85,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.1432,x:689.05,y:306.7,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.1432,x:764.1,y:259.85,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.1431,x:528.55,y:171.1,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.3347,x:688.95,y:306.7,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.3348,x:764.3,y:260.1,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.3346,x:529.15,y:170.35,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.5255,x:688.9,y:306.65,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.5255,x:764.5,y:260.25,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.5253,x:529.8,y:169.6,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.7162,x:688.8,y:306.6,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.7162,x:764.7,y:260.35,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.716,x:530.45,y:168.95,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.9078,x:688.8,y:306.6,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.9079,x:765,y:260.55,regX:76.4}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.9077,x:531.05,y:168.2,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.0986,x:688.75,y:306.55,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.0987,x:764.95,y:260.7,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:2.0984,x:531.7,y:167.45,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.2894,x:688.75,y:306.55,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.2895,x:765.25,y:260.85,regX:76.3}},{t:this.ikNode_10,p:{regY:28.5,scaleX:0.9997,scaleY:0.9997,rotation:2.2892,x:532.35,y:166.65,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:2.4802,x:688.6,y:306.45,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.4794,x:765.45,y:261,regX:76.3}},{t:this.ikNode_10,p:{regY:28.5,scaleX:0.9997,scaleY:0.9997,rotation:2.48,x:533,y:165.9,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:2.6719,x:688.65,y:306.4,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.6712,x:765.65,y:261.15,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:2.6717,x:533.5,y:165.4,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.8619,x:688.6,y:306.45,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.8621,x:765.8,y:261.3,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9998,scaleY:0.9998,rotation:2.8625,x:534.2,y:164.65,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:2.6719,x:688.65,y:306.4,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.6712,x:765.65,y:261.15,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:2.6717,x:533.5,y:165.4,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:2.4802,x:688.6,y:306.45,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.4794,x:765.45,y:261,regX:76.3}},{t:this.ikNode_10,p:{regY:28.5,scaleX:0.9997,scaleY:0.9997,rotation:2.48,x:533,y:165.9,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.2894,x:688.75,y:306.55,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.2895,x:765.25,y:260.85,regX:76.3}},{t:this.ikNode_10,p:{regY:28.5,scaleX:0.9997,scaleY:0.9997,rotation:2.2892,x:532.35,y:166.65,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.0986,x:688.75,y:306.55,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.0987,x:764.95,y:260.7,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:2.0984,x:531.7,y:167.45,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.9078,x:688.8,y:306.6,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.9079,x:765,y:260.55,regX:76.4}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.9077,x:531.05,y:168.2,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.7162,x:688.8,y:306.6,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.7162,x:764.7,y:260.35,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.716,x:530.45,y:168.95,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.5255,x:688.9,y:306.65,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.5255,x:764.5,y:260.25,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.5253,x:529.8,y:169.6,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.3347,x:688.95,y:306.7,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.3348,x:764.3,y:260.1,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.3346,x:529.15,y:170.35,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.1432,x:689.05,y:306.7,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.1432,x:764.1,y:259.85,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.1431,x:528.55,y:171.1,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.9525,x:689.1,y:306.75,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.9525,x:763.9,y:259.75,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.9524,x:527.9,y:171.85,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.7609,x:689.15,y:306.8,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.7609,x:763.6,y:259.55,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.7608,x:527.1,y:172.6,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:0.5702,x:689.15,y:306.85,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.5703,x:763.5,y:259.45,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.5702,x:526.5,y:173.25,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:0.3787,x:689.15,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.3787,x:763.2,y:259.3,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9998,scaleY:0.9998,rotation:0.3787,x:525.9,y:174,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.188,x:689.25,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.188,x:763.1,y:259.15,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.188,x:525.25,y:174.8,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0,x:689.25,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0,x:762.9,y:258.95,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0,x:524.75,y:175.45,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.188,x:689.25,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.188,x:763.1,y:259.15,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.188,x:525.25,y:174.8,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:0.3787,x:689.15,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.3787,x:763.2,y:259.3,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9998,scaleY:0.9998,rotation:0.3787,x:525.9,y:174,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:0.5702,x:689.15,y:306.85,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.5703,x:763.5,y:259.45,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.5702,x:526.5,y:173.25,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.7609,x:689.15,y:306.8,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.7609,x:763.6,y:259.55,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.7608,x:527.1,y:172.6,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.9525,x:689.1,y:306.75,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.9525,x:763.9,y:259.75,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.9524,x:527.9,y:171.85,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.1432,x:689.05,y:306.7,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.1432,x:764.1,y:259.85,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.1431,x:528.55,y:171.1,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.3347,x:688.95,y:306.7,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.3348,x:764.3,y:260.1,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.3346,x:529.15,y:170.35,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.5255,x:688.9,y:306.65,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.5255,x:764.5,y:260.25,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.5253,x:529.8,y:169.6,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.7162,x:688.8,y:306.6,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.7162,x:764.7,y:260.35,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.716,x:530.45,y:168.95,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.9078,x:688.8,y:306.6,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.9079,x:765,y:260.55,regX:76.4}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.9077,x:531.05,y:168.2,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.0986,x:688.75,y:306.55,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.0987,x:764.95,y:260.7,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:2.0984,x:531.7,y:167.45,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.2894,x:688.75,y:306.55,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.2895,x:765.25,y:260.85,regX:76.3}},{t:this.ikNode_10,p:{regY:28.5,scaleX:0.9997,scaleY:0.9997,rotation:2.2892,x:532.35,y:166.65,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:2.4802,x:688.6,y:306.45,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.4794,x:765.45,y:261,regX:76.3}},{t:this.ikNode_10,p:{regY:28.5,scaleX:0.9997,scaleY:0.9997,rotation:2.48,x:533,y:165.9,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:2.6719,x:688.65,y:306.4,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.6712,x:765.65,y:261.15,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:2.6717,x:533.5,y:165.4,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.8619,x:688.6,y:306.45,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.8621,x:765.8,y:261.3,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9998,scaleY:0.9998,rotation:2.8625,x:534.2,y:164.65,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:2.6719,x:688.65,y:306.4,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.6712,x:765.65,y:261.15,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:2.6717,x:533.5,y:165.4,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:2.4802,x:688.6,y:306.45,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.4794,x:765.45,y:261,regX:76.3}},{t:this.ikNode_10,p:{regY:28.5,scaleX:0.9997,scaleY:0.9997,rotation:2.48,x:533,y:165.9,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.2894,x:688.75,y:306.55,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.2895,x:765.25,y:260.85,regX:76.3}},{t:this.ikNode_10,p:{regY:28.5,scaleX:0.9997,scaleY:0.9997,rotation:2.2892,x:532.35,y:166.65,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.0986,x:688.75,y:306.55,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.0987,x:764.95,y:260.7,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:2.0984,x:531.7,y:167.45,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.9078,x:688.8,y:306.6,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.9079,x:765,y:260.55,regX:76.4}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.9077,x:531.05,y:168.2,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.7162,x:688.8,y:306.6,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.7162,x:764.7,y:260.35,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.716,x:530.45,y:168.95,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.5255,x:688.9,y:306.65,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.5255,x:764.5,y:260.25,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.5253,x:529.8,y:169.6,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.3347,x:688.95,y:306.7,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.3348,x:764.3,y:260.1,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.3346,x:529.15,y:170.35,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.1432,x:689.05,y:306.7,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.1432,x:764.1,y:259.85,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.1431,x:528.55,y:171.1,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.9525,x:689.1,y:306.75,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.9525,x:763.9,y:259.75,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.9524,x:527.9,y:171.85,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.7609,x:689.15,y:306.8,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.7609,x:763.6,y:259.55,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.7608,x:527.1,y:172.6,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:0.5702,x:689.15,y:306.85,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.5703,x:763.5,y:259.45,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.5702,x:526.5,y:173.25,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:0.3787,x:689.15,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.3787,x:763.2,y:259.3,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9998,scaleY:0.9998,rotation:0.3787,x:525.9,y:174,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.188,x:689.25,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.188,x:763.1,y:259.15,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.188,x:525.25,y:174.8,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0,x:689.25,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0,x:762.9,y:258.95,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0,x:524.75,y:175.45,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.188,x:689.25,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.188,x:763.1,y:259.15,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.188,x:525.25,y:174.8,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:0.3787,x:689.15,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.3787,x:763.2,y:259.3,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9998,scaleY:0.9998,rotation:0.3787,x:525.9,y:174,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:0.5702,x:689.15,y:306.85,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.5703,x:763.5,y:259.45,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.5702,x:526.5,y:173.25,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.7609,x:689.15,y:306.8,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.7609,x:763.6,y:259.55,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.7608,x:527.1,y:172.6,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.9525,x:689.1,y:306.75,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.9525,x:763.9,y:259.75,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.9524,x:527.9,y:171.85,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.1432,x:689.05,y:306.7,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.1432,x:764.1,y:259.85,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.1431,x:528.55,y:171.1,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.3347,x:688.95,y:306.7,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.3348,x:764.3,y:260.1,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.3346,x:529.15,y:170.35,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.5255,x:688.9,y:306.65,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.5255,x:764.5,y:260.25,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.5253,x:529.8,y:169.6,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.7162,x:688.8,y:306.6,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.7162,x:764.7,y:260.35,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.716,x:530.45,y:168.95,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.9078,x:688.8,y:306.6,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.9079,x:765,y:260.55,regX:76.4}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.9077,x:531.05,y:168.2,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.0986,x:688.75,y:306.55,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.0987,x:764.95,y:260.7,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:2.0984,x:531.7,y:167.45,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.2894,x:688.75,y:306.55,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.2895,x:765.25,y:260.85,regX:76.3}},{t:this.ikNode_10,p:{regY:28.5,scaleX:0.9997,scaleY:0.9997,rotation:2.2892,x:532.35,y:166.65,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:2.4802,x:688.6,y:306.45,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.4794,x:765.45,y:261,regX:76.3}},{t:this.ikNode_10,p:{regY:28.5,scaleX:0.9997,scaleY:0.9997,rotation:2.48,x:533,y:165.9,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:2.6719,x:688.65,y:306.4,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.6712,x:765.65,y:261.15,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:2.6717,x:533.5,y:165.4,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.8619,x:688.6,y:306.45,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.8621,x:765.8,y:261.3,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9998,scaleY:0.9998,rotation:2.8625,x:534.2,y:164.65,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:2.6719,x:688.65,y:306.4,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.6712,x:765.65,y:261.15,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:2.6717,x:533.5,y:165.4,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:2.4802,x:688.6,y:306.45,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.4794,x:765.45,y:261,regX:76.3}},{t:this.ikNode_10,p:{regY:28.5,scaleX:0.9997,scaleY:0.9997,rotation:2.48,x:533,y:165.9,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.2894,x:688.75,y:306.55,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.2895,x:765.25,y:260.85,regX:76.3}},{t:this.ikNode_10,p:{regY:28.5,scaleX:0.9997,scaleY:0.9997,rotation:2.2892,x:532.35,y:166.65,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:2.0986,x:688.75,y:306.55,regX:254.2}},{t:this.ikNode_9,p:{rotation:2.0987,x:764.95,y:260.7,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:2.0984,x:531.7,y:167.45,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.9078,x:688.8,y:306.6,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.9079,x:765,y:260.55,regX:76.4}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.9077,x:531.05,y:168.2,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.7162,x:688.8,y:306.6,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.7162,x:764.7,y:260.35,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.716,x:530.45,y:168.95,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.5255,x:688.9,y:306.65,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.5255,x:764.5,y:260.25,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.5253,x:529.8,y:169.6,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:1.3347,x:688.95,y:306.7,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.3348,x:764.3,y:260.1,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.3346,x:529.15,y:170.35,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:1.1432,x:689.05,y:306.7,regX:254.2}},{t:this.ikNode_9,p:{rotation:1.1432,x:764.1,y:259.85,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:1.1431,x:528.55,y:171.1,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.9525,x:689.1,y:306.75,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.9525,x:763.9,y:259.75,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.9524,x:527.9,y:171.85,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.7609,x:689.15,y:306.8,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.7609,x:763.6,y:259.55,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.7608,x:527.1,y:172.6,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:0.5702,x:689.15,y:306.85,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.5703,x:763.5,y:259.45,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.5702,x:526.5,y:173.25,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9997,scaleY:0.9997,rotation:0.3787,x:689.15,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.3787,x:763.2,y:259.3,regX:76.2}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9998,scaleY:0.9998,rotation:0.3787,x:525.9,y:174,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0.188,x:689.25,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0.188,x:763.1,y:259.15,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0.188,x:525.25,y:174.8,regX:92.9}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0,x:689.25,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0,x:762.9,y:258.95,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0,x:524.75,y:175.45,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0,x:689.25,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0,x:762.9,y:258.95,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0,x:524.75,y:175.45,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0,x:689.25,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0,x:762.9,y:258.9,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0,x:524.75,y:175.45,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0,x:689.25,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0,x:762.9,y:258.9,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0,x:524.75,y:175.45,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0,x:689.25,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0,x:762.9,y:258.9,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0,x:524.75,y:175.45,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0,x:689.25,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0,x:762.9,y:258.9,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0,x:524.75,y:175.4,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0,x:689.25,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0,x:762.9,y:258.9,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0,x:524.75,y:175.4,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0,x:689.25,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0,x:762.9,y:258.9,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0,x:524.75,y:175.4,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0,x:689.25,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0,x:762.9,y:258.9,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0,x:524.75,y:175.4,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0,x:689.25,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0,x:762.9,y:258.9,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0,x:524.75,y:175.4,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0,x:689.25,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0,x:762.9,y:258.9,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0,x:524.75,y:175.4,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0,x:689.25,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0,x:762.9,y:258.9,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0,x:524.7,y:175.4,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0,x:689.25,y:306.9,regX:254.2}},{t:this.ikNode_9,p:{rotation:0,x:762.85,y:258.9,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0,x:524.7,y:175.4,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0,x:689.25,y:306.85,regX:254.2}},{t:this.ikNode_9,p:{rotation:0,x:762.85,y:258.9,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0,x:524.7,y:175.4,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0,x:689.2,y:306.85,regX:254.2}},{t:this.ikNode_9,p:{rotation:0,x:762.85,y:258.9,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0,x:524.7,y:175.4,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0,x:689.2,y:306.85,regX:254.2}},{t:this.ikNode_9,p:{rotation:0,x:762.85,y:258.9,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0,x:524.7,y:175.4,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0,x:689.2,y:306.85,regX:254.2}},{t:this.ikNode_9,p:{rotation:0,x:762.85,y:258.9,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0,x:524.7,y:175.4,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0,x:689.2,y:306.85,regX:254.2}},{t:this.ikNode_9,p:{rotation:0,x:762.85,y:258.9,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0,x:524.7,y:175.4,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0,x:689.2,y:306.85,regX:254.2}},{t:this.ikNode_9,p:{rotation:0,x:762.85,y:258.9,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0,x:524.7,y:175.4,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0,x:689.2,y:306.85,regX:254.2}},{t:this.ikNode_9,p:{rotation:0,x:762.85,y:258.9,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0,x:524.7,y:175.4,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0,x:689.2,y:306.85,regX:254.2}},{t:this.ikNode_9,p:{rotation:0,x:762.85,y:258.9,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0,x:524.7,y:175.4,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0,x:689.2,y:306.85,regX:254.2}},{t:this.ikNode_9,p:{rotation:0,x:762.85,y:258.9,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0,x:524.7,y:175.4,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0,x:689.2,y:306.85,regX:254.2}},{t:this.ikNode_9,p:{rotation:0,x:762.85,y:258.9,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0,x:524.7,y:175.4,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0,x:689.2,y:306.85,regX:254.2}},{t:this.ikNode_9,p:{rotation:0,x:762.85,y:258.9,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0,x:524.7,y:175.4,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0,x:689.2,y:306.85,regX:254.2}},{t:this.ikNode_9,p:{rotation:0,x:762.85,y:258.9,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0,x:524.7,y:175.4,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0,x:689.2,y:306.85,regX:254.2}},{t:this.ikNode_9,p:{rotation:0,x:762.85,y:258.9,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0,x:524.7,y:175.4,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0,x:689.2,y:306.85,regX:254.2}},{t:this.ikNode_9,p:{rotation:0,x:762.85,y:258.9,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0,x:524.7,y:175.4,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0,x:689.2,y:306.85,regX:254.2}},{t:this.ikNode_9,p:{rotation:0,x:762.85,y:258.9,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0,x:524.7,y:175.4,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0,x:689.2,y:306.85,regX:254.2}},{t:this.ikNode_9,p:{rotation:0,x:762.85,y:258.9,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0,x:524.7,y:175.4,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0,x:689.2,y:306.85,regX:254.2}},{t:this.ikNode_9,p:{rotation:0,x:762.85,y:258.9,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0,x:524.7,y:175.4,regX:93}}]},1).to({state:[{t:this.ikNode_8,p:{scaleX:0.9996,scaleY:0.9996,rotation:0,x:689.2,y:306.85,regX:254.2}},{t:this.ikNode_9,p:{rotation:0,x:762.85,y:258.9,regX:76.3}},{t:this.ikNode_10,p:{regY:28.6,scaleX:0.9997,scaleY:0.9997,rotation:0,x:524.7,y:175.4,regX:93}}]},1).wait(1)); + + // 动腿_大腿 + this.instance_111 = new lib.动腿大腿(); + this.instance_111.setTransform(647,423); + + this.timeline.addTween(cjs.Tween.get(this.instance_111).wait(630)); + + // 不动 + this.instance_112 = new lib.不动(); + this.instance_112.setTransform(566,458); + + this.timeline.addTween(cjs.Tween.get(this.instance_112).wait(599).to({x:565},0).wait(31)); + + // 骨架_17 + this.ikNode_14 = new lib.元件259(); + this.ikNode_14.name = "ikNode_14"; + this.ikNode_14.setTransform(682.65,403.2,1,1,-0.4459,0,0,124,58.6); + + this.ikNode_13 = new lib.元件236(); + this.ikNode_13.name = "ikNode_13"; + this.ikNode_13.setTransform(776.45,632.75,1,1,0,0,0,72.5,0.8); + + this.ikNode_12 = new lib.元件235(); + this.ikNode_12.name = "ikNode_12"; + this.ikNode_12.setTransform(711.15,616.45,1,1,0,0,0,21.2,0.5); + + this.instance_113 = new lib.元件3("synched",0); + this.instance_113.setTransform(700.95,490.05,0.9993,0.9993,0,0,0,23.4,0.4); + + this.timeline.addTween(cjs.Tween.get({}).to({state:[{t:this.instance_113,p:{scaleX:0.9993,scaleY:0.9993,rotation:0,x:700.95,y:490.05,regX:23.4}},{t:this.ikNode_12,p:{rotation:0,x:711.15,y:616.45,regX:21.2,scaleX:1,scaleY:1,regY:0.5}},{t:this.ikNode_13,p:{rotation:0,x:776.45,y:632.75,scaleX:1,scaleY:1}},{t:this.ikNode_14,p:{rotation:-0.4459,x:682.65,y:403.2,regX:124,scaleX:1,scaleY:1,regY:58.6}}]}).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-0.3859,x:700.9,y:489.95,regX:23.4}},{t:this.ikNode_12,p:{rotation:1.2049,x:711.9,y:616.35,regX:21.2,scaleX:1,scaleY:1,regY:0.5}},{t:this.ikNode_13,p:{rotation:1.2049,x:776.85,y:634,scaleX:1,scaleY:1}},{t:this.ikNode_14,p:{rotation:-0.5561,x:682.45,y:403.05,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-0.7744,x:700.85,y:489.85,regX:23.4}},{t:this.ikNode_12,p:{rotation:2.4122,x:712.8,y:616.25,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:2.4122,x:777.25,y:635.35,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.6697,x:682.35,y:403,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-1.1629,x:700.8,y:489.75,regX:23.4}},{t:this.ikNode_12,p:{rotation:3.6187,x:713.5,y:616.25,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:3.6187,x:777.6,y:636.6,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.7834,x:681.95,y:403,regX:124,scaleX:0.9999,scaleY:0.9999,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-1.5506,x:700.7,y:489.7,regX:23.4}},{t:this.ikNode_12,p:{rotation:4.8259,x:714.3,y:616.15,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:4.8259,x:778,y:637.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.8971,x:681.8,y:403,regX:124,scaleX:0.9999,scaleY:0.9999,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-1.9393,x:700.65,y:489.6,regX:23.4}},{t:this.ikNode_12,p:{rotation:6.0328,x:715.15,y:616.05,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:6.0328,x:778.3,y:639.1,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.0108,x:681.55,y:402.95,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-2.328,x:700.55,y:489.55,regX:23.4}},{t:this.ikNode_12,p:{rotation:7.2395,x:716.1,y:616,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:7.2395,x:778.6,y:640.4,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.1244,x:681.3,y:402.85,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-2.716,x:700.55,y:489.45,regX:23.4}},{t:this.ikNode_12,p:{rotation:8.447,x:716.75,y:615.8,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:8.447,x:778.9,y:641.55,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.2373,x:681.1,y:402.8,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-3.1041,x:700.5,y:489.4,regX:23.4}},{t:this.ikNode_12,p:{rotation:9.6538,x:717.55,y:615.75,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:9.6538,x:779.05,y:642.75,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.3509,x:680.9,y:403,regX:124,scaleX:1,scaleY:1,regY:58.7}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-3.4932,x:700.45,y:489.3,regX:23.4}},{t:this.ikNode_12,p:{rotation:10.8622,x:718.35,y:615.65,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:10.8622,x:779.35,y:643.95,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.4646,x:680.65,y:402.95,regX:124,scaleX:1,scaleY:1,regY:58.7}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-3.8808,x:700.45,y:489.2,regX:23.4}},{t:this.ikNode_12,p:{rotation:12.0684,x:719.35,y:615.55,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:12.0684,x:779.6,y:645.05,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.5783,x:680.45,y:402.75,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-4.2694,x:700.35,y:489.15,regX:23.4}},{t:this.ikNode_12,p:{rotation:13.2747,x:720.1,y:615.5,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:13.2747,x:779.7,y:646.25,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.6911,x:680.35,y:402.7,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-4.6581,x:700.25,y:489.05,regX:23.4}},{t:this.ikNode_12,p:{rotation:14.4833,x:720.75,y:615.3,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:14.4833,x:779.85,y:647.3,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.8049,x:680.05,y:402.65,regX:124,scaleX:0.9999,scaleY:0.9999,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.0463,x:700.35,y:489,regX:23.5}},{t:this.ikNode_12,p:{rotation:15.6878,x:721.55,y:615.3,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:15.6878,x:780,y:648.4,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.9186,x:679.8,y:402.65,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.4346,x:700.3,y:489,regX:23.5}},{t:this.ikNode_12,p:{rotation:16.895,x:722.5,y:615.1,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:16.895,x:780,y:649.5,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-2.0323,x:679.55,y:402.55,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.3942,x:700.3,y:488.95,regX:23.5}},{t:this.ikNode_12,p:{rotation:16.937,x:722.45,y:615.1,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:16.937,x:779.9,y:649.55,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.7629,x:679.95,y:402.55,regX:124,scaleX:0.9999,scaleY:0.9999,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.3547,x:700.3,y:488.95,regX:23.5}},{t:this.ikNode_12,p:{rotation:16.9788,x:722.2,y:615.1,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:16.9788,x:779.9,y:649.65,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.4944,x:680.4,y:402.45,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.3142,x:700.3,y:488.95,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.02,x:722.15,y:615.1,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:17.02,x:779.7,y:649.7,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.225,x:680.75,y:402.3,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.2747,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.062,x:722,y:615.15,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.062,x:779.6,y:649.75,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.9565,x:681.3,y:402.35,regX:124.1,scaleX:0.9999,scaleY:0.9999,regY:58.7}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.2343,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1032,x:721.95,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1032,x:779.5,y:649.8,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.6881,x:681.55,y:402.15,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1939,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1453,x:721.9,y:615.15,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:17.1453,x:779.4,y:649.85,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.4197,x:682.1,y:402.1,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.1504,x:682.3,y:402.05,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-4.5098,x:700.3,y:489.05,regX:23.4}},{t:this.ikNode_12,p:{rotation:15.0385,x:720.4,y:615.35,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:15.0385,x:779.2,y:647.95,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.2028,x:682.35,y:402.15,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-3.865,x:700.4,y:489.15,regX:23.4}},{t:this.ikNode_12,p:{rotation:12.8904,x:719.1,y:615.55,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:12.8904,x:779.05,y:646,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.2562,x:682.4,y:402.3,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-3.2206,x:700.45,y:489.3,regX:23.4}},{t:this.ikNode_12,p:{rotation:10.742,x:717.75,y:615.7,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:10.742,x:778.8,y:643.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.3086,x:682.4,y:402.5,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-2.5759,x:700.5,y:489.45,regX:23.4}},{t:this.ikNode_12,p:{rotation:8.5928,x:716.45,y:615.9,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:8.5928,x:778.55,y:641.8,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.3611,x:682.45,y:402.6,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-1.9314,x:700.6,y:489.6,regX:23.4}},{t:this.ikNode_12,p:{rotation:6.4444,x:715.05,y:616.05,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:6.4444,x:778.1,y:639.6,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.4136,x:682.5,y:402.7,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9993,scaleY:0.9993,rotation:-1.2863,x:700.75,y:489.75,regX:23.4}},{t:this.ikNode_12,p:{rotation:4.2953,x:713.75,y:616.15,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:4.2953,x:777.65,y:637.3,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.4651,x:682.65,y:402.85,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-0.6422,x:700.85,y:489.85,regX:23.4}},{t:this.ikNode_12,p:{rotation:2.147,x:712.55,y:616.35,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:2.147,x:777.05,y:635.05,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.5176,x:682.75,y:403.1,regX:124.1,scaleX:1,scaleY:1,regY:58.7}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:0,x:700.9,y:490,regX:23.4}},{t:this.ikNode_12,p:{rotation:0,x:711.15,y:616.45,regX:21.2,scaleX:1,scaleY:1,regY:0.5}},{t:this.ikNode_13,p:{rotation:0,x:776.45,y:632.75,scaleX:1,scaleY:1}},{t:this.ikNode_14,p:{rotation:-0.5701,x:682.8,y:403.1,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-0.3412,x:700.9,y:489.9,regX:23.4}},{t:this.ikNode_12,p:{rotation:1.1437,x:711.75,y:616.3,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:1.1437,x:776.8,y:633.95,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.6461,x:682.5,y:403.1,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9993,scaleY:0.9993,rotation:-0.6851,x:700.85,y:489.8,regX:23.4}},{t:this.ikNode_12,p:{rotation:2.2896,x:712.65,y:616.3,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:2.2896,x:777.1,y:635.2,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.7231,x:682.4,y:403.05,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-1.029,x:700.8,y:489.8,regX:23.4}},{t:this.ikNode_12,p:{rotation:3.4356,x:713.2,y:616.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:3.4356,x:777.35,y:636.4,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.7991,x:682.15,y:403,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-1.372,x:700.7,y:489.7,regX:23.4}},{t:this.ikNode_12,p:{rotation:4.582,x:713.95,y:616.15,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:4.582,x:777.65,y:637.65,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.8752,x:681.95,y:402.9,regX:124,scaleX:0.9999,scaleY:0.9999,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-1.716,x:700.65,y:489.6,regX:23.4}},{t:this.ikNode_12,p:{rotation:5.7277,x:714.65,y:616.1,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:5.7277,x:777.9,y:638.8,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.9522,x:681.75,y:402.95,regX:124,scaleX:0.9999,scaleY:0.9999,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-2.0601,x:700.6,y:489.6,regX:23.4}},{t:this.ikNode_12,p:{rotation:6.874,x:715.35,y:616,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:6.874,x:778.2,y:640,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.0282,x:681.55,y:402.8,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-2.4033,x:700.55,y:489.45,regX:23.4}},{t:this.ikNode_12,p:{rotation:8.0203,x:716.15,y:615.95,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:8.0203,x:778.45,y:641.2,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.1043,x:681.4,y:402.8,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-2.7475,x:700.5,y:489.45,regX:23.4}},{t:this.ikNode_12,p:{rotation:9.1664,x:716.75,y:615.9,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:9.1664,x:778.6,y:642.35,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.1813,x:681.2,y:402.8,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-3.0918,x:700.4,y:489.35,regX:23.4}},{t:this.ikNode_12,p:{rotation:10.3116,x:717.45,y:615.75,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:10.3116,x:778.7,y:643.45,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.2574,x:681.05,y:402.85,regX:124,scaleX:1,scaleY:1,regY:58.7}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-3.4354,x:700.35,y:489.3,regX:23.4}},{t:this.ikNode_12,p:{rotation:11.4576,x:718.25,y:615.65,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:11.4576,x:778.95,y:644.6,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.3343,x:680.85,y:402.7,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-3.779,x:700.45,y:489.25,regX:23.4}},{t:this.ikNode_12,p:{rotation:12.6036,x:719.1,y:615.55,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:12.6036,x:779.1,y:645.7,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.4104,x:680.7,y:402.65,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-4.1228,x:700.35,y:489.1,regX:23.4}},{t:this.ikNode_12,p:{rotation:13.7512,x:719.8,y:615.5,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:13.7512,x:779.15,y:646.8,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.4865,x:680.5,y:402.8,regX:124,scaleX:1,scaleY:1,regY:58.7}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-4.4668,x:700.25,y:489.05,regX:23.4}},{t:this.ikNode_12,p:{rotation:14.8955,x:720.4,y:615.35,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:14.8955,x:779.2,y:647.85,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.5634,x:680.35,y:402.55,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-4.8101,x:700.25,y:489,regX:23.4}},{t:this.ikNode_12,p:{rotation:16.0415,x:721.1,y:615.25,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:16.0415,x:779.25,y:648.85,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.6395,x:680.3,y:402.55,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.7156,x:679.95,y:402.55,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.5014,x:680.3,y:402.45,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.2862,x:680.55,y:402.4,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.0711,x:680.85,y:402.45,regX:124,scaleX:1,scaleY:1,regY:58.7}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.8569,x:681.25,y:402.3,regX:124.1,scaleX:0.9999,scaleY:0.9999,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.6418,x:681.5,y:402.2,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.4275,x:681.8,y:402.15,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.2125,x:682,y:402.1,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:0,x:682.3,y:402.05,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-4.4176,x:700.3,y:489.05,regX:23.4}},{t:this.ikNode_12,p:{rotation:14.7318,x:720.3,y:615.35,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:14.7318,x:779.15,y:647.7,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.0796,x:682.5,y:402.3,regX:124.1,scaleX:1,scaleY:1,regY:58.7}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-3.6809,x:700.45,y:489.2,regX:23.4}},{t:this.ikNode_12,p:{rotation:12.2767,x:718.7,y:615.6,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:12.2767,x:779.05,y:645.4,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.1617,x:682.4,y:402.35,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-2.9438,x:700.5,y:489.35,regX:23.4}},{t:this.ikNode_12,p:{rotation:9.8205,x:717.2,y:615.75,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:9.8205,x:778.75,y:642.95,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.2431,x:682.45,y:402.55,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9993,scaleY:0.9993,rotation:-2.208,x:700.6,y:489.55,regX:23.4}},{t:this.ikNode_12,p:{rotation:7.3656,x:715.6,y:615.95,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:7.3656,x:778.3,y:640.55,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.3252,x:682.55,y:402.65,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-1.471,x:700.7,y:489.65,regX:23.4}},{t:this.ikNode_12,p:{rotation:4.9093,x:714.05,y:616.15,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:4.9093,x:777.8,y:638,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.4074,x:682.45,y:402.85,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-0.7341,x:700.8,y:489.85,regX:23.4}},{t:this.ikNode_12,p:{rotation:2.4533,x:712.75,y:616.3,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:2.4533,x:777.15,y:635.35,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.4879,x:682.65,y:403,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:0,x:700.9,y:490,regX:23.4}},{t:this.ikNode_12,p:{rotation:0,x:711.15,y:616.45,regX:21.2,scaleX:1,scaleY:1,regY:0.5}},{t:this.ikNode_13,p:{rotation:0,x:776.45,y:632.75,scaleX:1,scaleY:1}},{t:this.ikNode_14,p:{rotation:-0.5701,x:682.8,y:403.1,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-0.3412,x:700.9,y:489.9,regX:23.4}},{t:this.ikNode_12,p:{rotation:1.1437,x:711.75,y:616.3,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:1.1437,x:776.8,y:633.95,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.6461,x:682.5,y:403.1,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9993,scaleY:0.9993,rotation:-0.6851,x:700.85,y:489.8,regX:23.4}},{t:this.ikNode_12,p:{rotation:2.2896,x:712.65,y:616.3,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:2.2896,x:777.1,y:635.2,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.7231,x:682.4,y:403.05,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-1.029,x:700.8,y:489.8,regX:23.4}},{t:this.ikNode_12,p:{rotation:3.4356,x:713.2,y:616.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:3.4356,x:777.35,y:636.4,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.7991,x:682.15,y:403,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-1.372,x:700.7,y:489.7,regX:23.4}},{t:this.ikNode_12,p:{rotation:4.582,x:713.95,y:616.15,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:4.582,x:777.65,y:637.65,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.8752,x:681.95,y:402.9,regX:124,scaleX:0.9999,scaleY:0.9999,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-1.716,x:700.65,y:489.6,regX:23.4}},{t:this.ikNode_12,p:{rotation:5.7277,x:714.65,y:616.1,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:5.7277,x:777.9,y:638.8,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.9522,x:681.75,y:402.95,regX:124,scaleX:0.9999,scaleY:0.9999,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-2.0601,x:700.6,y:489.6,regX:23.4}},{t:this.ikNode_12,p:{rotation:6.874,x:715.35,y:616,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:6.874,x:778.2,y:640,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.0282,x:681.55,y:402.8,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-2.4033,x:700.55,y:489.45,regX:23.4}},{t:this.ikNode_12,p:{rotation:8.0203,x:716.15,y:615.95,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:8.0203,x:778.45,y:641.2,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.1043,x:681.4,y:402.8,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-2.7475,x:700.5,y:489.45,regX:23.4}},{t:this.ikNode_12,p:{rotation:9.1664,x:716.75,y:615.9,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:9.1664,x:778.6,y:642.35,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.1813,x:681.2,y:402.8,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-3.0918,x:700.4,y:489.35,regX:23.4}},{t:this.ikNode_12,p:{rotation:10.3116,x:717.45,y:615.75,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:10.3116,x:778.7,y:643.45,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.2574,x:681.05,y:402.85,regX:124,scaleX:1,scaleY:1,regY:58.7}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-3.4354,x:700.35,y:489.3,regX:23.4}},{t:this.ikNode_12,p:{rotation:11.4576,x:718.25,y:615.65,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:11.4576,x:778.95,y:644.6,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.3343,x:680.85,y:402.7,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-3.779,x:700.45,y:489.25,regX:23.4}},{t:this.ikNode_12,p:{rotation:12.6036,x:719.1,y:615.55,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:12.6036,x:779.1,y:645.7,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.4104,x:680.7,y:402.65,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-4.1228,x:700.35,y:489.1,regX:23.4}},{t:this.ikNode_12,p:{rotation:13.7512,x:719.8,y:615.5,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:13.7512,x:779.15,y:646.8,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.4865,x:680.5,y:402.8,regX:124,scaleX:1,scaleY:1,regY:58.7}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-4.4668,x:700.25,y:489.05,regX:23.4}},{t:this.ikNode_12,p:{rotation:14.8955,x:720.4,y:615.35,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:14.8955,x:779.2,y:647.85,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.5634,x:680.35,y:402.55,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-4.8101,x:700.25,y:489,regX:23.4}},{t:this.ikNode_12,p:{rotation:16.0415,x:721.1,y:615.25,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:16.0415,x:779.25,y:648.85,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.6395,x:680.3,y:402.55,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.7156,x:679.95,y:402.55,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.5014,x:680.3,y:402.45,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.2862,x:680.55,y:402.4,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.0711,x:680.85,y:402.45,regX:124,scaleX:1,scaleY:1,regY:58.7}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.8569,x:681.25,y:402.3,regX:124.1,scaleX:0.9999,scaleY:0.9999,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.6418,x:681.5,y:402.2,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.4275,x:681.8,y:402.15,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.2125,x:682,y:402.1,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:0,x:682.3,y:402.05,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-4.4176,x:700.3,y:489.05,regX:23.4}},{t:this.ikNode_12,p:{rotation:14.7318,x:720.3,y:615.35,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:14.7318,x:779.15,y:647.7,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.0796,x:682.5,y:402.3,regX:124.1,scaleX:1,scaleY:1,regY:58.7}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-3.6809,x:700.45,y:489.2,regX:23.4}},{t:this.ikNode_12,p:{rotation:12.2767,x:718.7,y:615.6,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:12.2767,x:779.05,y:645.4,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.1617,x:682.4,y:402.35,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-2.9438,x:700.5,y:489.35,regX:23.4}},{t:this.ikNode_12,p:{rotation:9.8205,x:717.2,y:615.75,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:9.8205,x:778.75,y:642.95,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.2431,x:682.45,y:402.55,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9993,scaleY:0.9993,rotation:-2.208,x:700.6,y:489.55,regX:23.4}},{t:this.ikNode_12,p:{rotation:7.3656,x:715.6,y:615.95,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:7.3656,x:778.3,y:640.55,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.3252,x:682.55,y:402.65,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-1.471,x:700.7,y:489.65,regX:23.4}},{t:this.ikNode_12,p:{rotation:4.9093,x:714.05,y:616.15,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:4.9093,x:777.8,y:638,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.4074,x:682.45,y:402.85,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-0.7341,x:700.8,y:489.85,regX:23.4}},{t:this.ikNode_12,p:{rotation:2.4533,x:712.75,y:616.3,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:2.4533,x:777.15,y:635.35,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.4879,x:682.65,y:403,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:0,x:700.9,y:490,regX:23.4}},{t:this.ikNode_12,p:{rotation:0,x:711.15,y:616.45,regX:21.2,scaleX:1,scaleY:1,regY:0.5}},{t:this.ikNode_13,p:{rotation:0,x:776.45,y:632.75,scaleX:1,scaleY:1}},{t:this.ikNode_14,p:{rotation:-0.5701,x:682.8,y:403.1,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-0.3412,x:700.9,y:489.9,regX:23.4}},{t:this.ikNode_12,p:{rotation:1.1437,x:711.75,y:616.3,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:1.1437,x:776.8,y:633.95,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.6461,x:682.5,y:403.1,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9993,scaleY:0.9993,rotation:-0.6851,x:700.85,y:489.8,regX:23.4}},{t:this.ikNode_12,p:{rotation:2.2896,x:712.65,y:616.3,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:2.2896,x:777.1,y:635.2,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.7231,x:682.4,y:403.05,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-1.029,x:700.8,y:489.8,regX:23.4}},{t:this.ikNode_12,p:{rotation:3.4356,x:713.2,y:616.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:3.4356,x:777.35,y:636.4,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.7991,x:682.15,y:403,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-1.372,x:700.7,y:489.7,regX:23.4}},{t:this.ikNode_12,p:{rotation:4.582,x:713.95,y:616.15,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:4.582,x:777.65,y:637.65,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.8752,x:681.95,y:402.9,regX:124,scaleX:0.9999,scaleY:0.9999,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-1.716,x:700.65,y:489.6,regX:23.4}},{t:this.ikNode_12,p:{rotation:5.7277,x:714.65,y:616.1,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:5.7277,x:777.9,y:638.8,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.9522,x:681.75,y:402.95,regX:124,scaleX:0.9999,scaleY:0.9999,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-2.0601,x:700.6,y:489.6,regX:23.4}},{t:this.ikNode_12,p:{rotation:6.874,x:715.35,y:616,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:6.874,x:778.2,y:640,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.0282,x:681.55,y:402.8,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-2.4033,x:700.55,y:489.45,regX:23.4}},{t:this.ikNode_12,p:{rotation:8.0203,x:716.15,y:615.95,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:8.0203,x:778.45,y:641.2,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.1043,x:681.4,y:402.8,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-2.7475,x:700.5,y:489.45,regX:23.4}},{t:this.ikNode_12,p:{rotation:9.1664,x:716.75,y:615.9,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:9.1664,x:778.6,y:642.35,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.1813,x:681.2,y:402.8,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-3.0918,x:700.4,y:489.35,regX:23.4}},{t:this.ikNode_12,p:{rotation:10.3116,x:717.45,y:615.75,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:10.3116,x:778.7,y:643.45,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.2574,x:681.05,y:402.85,regX:124,scaleX:1,scaleY:1,regY:58.7}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-3.4354,x:700.35,y:489.3,regX:23.4}},{t:this.ikNode_12,p:{rotation:11.4576,x:718.25,y:615.65,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:11.4576,x:778.95,y:644.6,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.3343,x:680.85,y:402.7,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-3.779,x:700.45,y:489.25,regX:23.4}},{t:this.ikNode_12,p:{rotation:12.6036,x:719.1,y:615.55,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:12.6036,x:779.1,y:645.7,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.4104,x:680.7,y:402.65,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-4.1228,x:700.35,y:489.1,regX:23.4}},{t:this.ikNode_12,p:{rotation:13.7512,x:719.8,y:615.5,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:13.7512,x:779.15,y:646.8,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.4865,x:680.5,y:402.8,regX:124,scaleX:1,scaleY:1,regY:58.7}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-4.4668,x:700.25,y:489.05,regX:23.4}},{t:this.ikNode_12,p:{rotation:14.8955,x:720.4,y:615.35,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:14.8955,x:779.2,y:647.85,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.5634,x:680.35,y:402.55,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-4.8101,x:700.25,y:489,regX:23.4}},{t:this.ikNode_12,p:{rotation:16.0415,x:721.1,y:615.25,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:16.0415,x:779.25,y:648.85,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.6395,x:680.3,y:402.55,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.7156,x:679.95,y:402.55,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.5014,x:680.3,y:402.45,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.2862,x:680.55,y:402.4,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.0711,x:680.85,y:402.45,regX:124,scaleX:1,scaleY:1,regY:58.7}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.8569,x:681.25,y:402.3,regX:124.1,scaleX:0.9999,scaleY:0.9999,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.6418,x:681.5,y:402.2,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.4275,x:681.8,y:402.15,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.2125,x:682,y:402.1,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:0,x:682.3,y:402.05,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-4.4176,x:700.3,y:489.05,regX:23.4}},{t:this.ikNode_12,p:{rotation:14.7318,x:720.3,y:615.35,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:14.7318,x:779.15,y:647.7,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.0796,x:682.5,y:402.3,regX:124.1,scaleX:1,scaleY:1,regY:58.7}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-3.6809,x:700.45,y:489.2,regX:23.4}},{t:this.ikNode_12,p:{rotation:12.2767,x:718.7,y:615.6,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:12.2767,x:779.05,y:645.4,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.1617,x:682.4,y:402.35,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-2.9438,x:700.5,y:489.35,regX:23.4}},{t:this.ikNode_12,p:{rotation:9.8205,x:717.2,y:615.75,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:9.8205,x:778.75,y:642.95,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.2431,x:682.45,y:402.55,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9993,scaleY:0.9993,rotation:-2.208,x:700.6,y:489.55,regX:23.4}},{t:this.ikNode_12,p:{rotation:7.3656,x:715.6,y:615.95,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:7.3656,x:778.3,y:640.55,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.3252,x:682.55,y:402.65,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-1.471,x:700.7,y:489.65,regX:23.4}},{t:this.ikNode_12,p:{rotation:4.9093,x:714.05,y:616.15,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:4.9093,x:777.8,y:638,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.4074,x:682.45,y:402.85,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-0.7341,x:700.8,y:489.85,regX:23.4}},{t:this.ikNode_12,p:{rotation:2.4533,x:712.75,y:616.3,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:2.4533,x:777.15,y:635.35,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.4879,x:682.65,y:403,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:0,x:700.9,y:490,regX:23.4}},{t:this.ikNode_12,p:{rotation:0,x:711.15,y:616.45,regX:21.2,scaleX:1,scaleY:1,regY:0.5}},{t:this.ikNode_13,p:{rotation:0,x:776.45,y:632.75,scaleX:1,scaleY:1}},{t:this.ikNode_14,p:{rotation:-0.5701,x:682.8,y:403.1,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-0.3412,x:700.9,y:489.9,regX:23.4}},{t:this.ikNode_12,p:{rotation:1.1437,x:711.75,y:616.3,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:1.1437,x:776.8,y:633.95,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.6461,x:682.5,y:403.1,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9993,scaleY:0.9993,rotation:-0.6851,x:700.85,y:489.8,regX:23.4}},{t:this.ikNode_12,p:{rotation:2.2896,x:712.65,y:616.3,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:2.2896,x:777.1,y:635.2,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.7231,x:682.4,y:403.05,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-1.029,x:700.8,y:489.8,regX:23.4}},{t:this.ikNode_12,p:{rotation:3.4356,x:713.2,y:616.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:3.4356,x:777.35,y:636.4,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.7991,x:682.15,y:403,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-1.372,x:700.7,y:489.7,regX:23.4}},{t:this.ikNode_12,p:{rotation:4.582,x:713.95,y:616.15,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:4.582,x:777.65,y:637.65,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.8752,x:681.95,y:402.9,regX:124,scaleX:0.9999,scaleY:0.9999,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-1.716,x:700.65,y:489.6,regX:23.4}},{t:this.ikNode_12,p:{rotation:5.7277,x:714.65,y:616.1,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:5.7277,x:777.9,y:638.8,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.9522,x:681.75,y:402.95,regX:124,scaleX:0.9999,scaleY:0.9999,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-2.0601,x:700.6,y:489.6,regX:23.4}},{t:this.ikNode_12,p:{rotation:6.874,x:715.35,y:616,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:6.874,x:778.2,y:640,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.0282,x:681.55,y:402.8,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-2.4033,x:700.55,y:489.45,regX:23.4}},{t:this.ikNode_12,p:{rotation:8.0203,x:716.15,y:615.95,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:8.0203,x:778.45,y:641.2,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.1043,x:681.4,y:402.8,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-2.7475,x:700.5,y:489.45,regX:23.4}},{t:this.ikNode_12,p:{rotation:9.1664,x:716.75,y:615.9,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:9.1664,x:778.6,y:642.35,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.1813,x:681.2,y:402.8,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-3.0918,x:700.4,y:489.35,regX:23.4}},{t:this.ikNode_12,p:{rotation:10.3116,x:717.45,y:615.75,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:10.3116,x:778.7,y:643.45,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.2574,x:681.05,y:402.85,regX:124,scaleX:1,scaleY:1,regY:58.7}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-3.4354,x:700.35,y:489.3,regX:23.4}},{t:this.ikNode_12,p:{rotation:11.4576,x:718.25,y:615.65,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:11.4576,x:778.95,y:644.6,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.3343,x:680.85,y:402.7,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-3.779,x:700.45,y:489.25,regX:23.4}},{t:this.ikNode_12,p:{rotation:12.6036,x:719.1,y:615.55,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:12.6036,x:779.1,y:645.7,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.4104,x:680.7,y:402.65,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-4.1228,x:700.35,y:489.1,regX:23.4}},{t:this.ikNode_12,p:{rotation:13.7512,x:719.8,y:615.5,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:13.7512,x:779.15,y:646.8,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.4865,x:680.5,y:402.8,regX:124,scaleX:1,scaleY:1,regY:58.7}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-4.4668,x:700.25,y:489.05,regX:23.4}},{t:this.ikNode_12,p:{rotation:14.8955,x:720.4,y:615.35,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:14.8955,x:779.2,y:647.85,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.5634,x:680.35,y:402.55,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-4.8101,x:700.25,y:489,regX:23.4}},{t:this.ikNode_12,p:{rotation:16.0415,x:721.1,y:615.25,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:16.0415,x:779.25,y:648.85,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.6395,x:680.3,y:402.55,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.7156,x:679.95,y:402.55,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.5014,x:680.3,y:402.45,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.2862,x:680.55,y:402.4,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.0711,x:680.85,y:402.45,regX:124,scaleX:1,scaleY:1,regY:58.7}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.8569,x:681.25,y:402.3,regX:124.1,scaleX:0.9999,scaleY:0.9999,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.6418,x:681.5,y:402.2,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.4275,x:681.8,y:402.15,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.2125,x:682,y:402.1,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:0,x:682.3,y:402.05,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-4.4176,x:700.3,y:489.05,regX:23.4}},{t:this.ikNode_12,p:{rotation:14.7318,x:720.3,y:615.35,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:14.7318,x:779.15,y:647.7,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.0796,x:682.5,y:402.3,regX:124.1,scaleX:1,scaleY:1,regY:58.7}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-3.6809,x:700.45,y:489.2,regX:23.4}},{t:this.ikNode_12,p:{rotation:12.2767,x:718.7,y:615.6,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:12.2767,x:779.05,y:645.4,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.1617,x:682.4,y:402.35,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-2.9438,x:700.5,y:489.35,regX:23.4}},{t:this.ikNode_12,p:{rotation:9.8205,x:717.2,y:615.75,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:9.8205,x:778.75,y:642.95,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.2431,x:682.45,y:402.55,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9993,scaleY:0.9993,rotation:-2.208,x:700.6,y:489.55,regX:23.4}},{t:this.ikNode_12,p:{rotation:7.3656,x:715.6,y:615.95,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:7.3656,x:778.3,y:640.55,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.3252,x:682.55,y:402.65,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-1.471,x:700.7,y:489.65,regX:23.4}},{t:this.ikNode_12,p:{rotation:4.9093,x:714.05,y:616.15,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:4.9093,x:777.8,y:638,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.4074,x:682.45,y:402.85,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-0.7341,x:700.8,y:489.85,regX:23.4}},{t:this.ikNode_12,p:{rotation:2.4533,x:712.75,y:616.3,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:2.4533,x:777.15,y:635.35,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.4879,x:682.65,y:403,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:0,x:700.9,y:490,regX:23.4}},{t:this.ikNode_12,p:{rotation:0,x:711.15,y:616.45,regX:21.2,scaleX:1,scaleY:1,regY:0.5}},{t:this.ikNode_13,p:{rotation:0,x:776.45,y:632.75,scaleX:1,scaleY:1}},{t:this.ikNode_14,p:{rotation:-0.5701,x:682.8,y:403.1,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-0.3412,x:700.9,y:489.9,regX:23.4}},{t:this.ikNode_12,p:{rotation:1.1437,x:711.75,y:616.3,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:1.1437,x:776.8,y:633.95,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.6461,x:682.5,y:403.1,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9993,scaleY:0.9993,rotation:-0.6851,x:700.85,y:489.8,regX:23.4}},{t:this.ikNode_12,p:{rotation:2.2896,x:712.65,y:616.3,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:2.2896,x:777.1,y:635.2,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.7231,x:682.4,y:403.05,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-1.029,x:700.8,y:489.8,regX:23.4}},{t:this.ikNode_12,p:{rotation:3.4356,x:713.2,y:616.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:3.4356,x:777.35,y:636.4,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.7991,x:682.15,y:403,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-1.372,x:700.7,y:489.7,regX:23.4}},{t:this.ikNode_12,p:{rotation:4.582,x:713.95,y:616.15,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:4.582,x:777.65,y:637.65,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.8752,x:681.95,y:402.9,regX:124,scaleX:0.9999,scaleY:0.9999,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-1.716,x:700.65,y:489.6,regX:23.4}},{t:this.ikNode_12,p:{rotation:5.7277,x:714.65,y:616.1,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:5.7277,x:777.9,y:638.8,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.9522,x:681.75,y:402.95,regX:124,scaleX:0.9999,scaleY:0.9999,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-2.0601,x:700.6,y:489.6,regX:23.4}},{t:this.ikNode_12,p:{rotation:6.874,x:715.35,y:616,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:6.874,x:778.2,y:640,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.0282,x:681.55,y:402.8,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-2.4033,x:700.55,y:489.45,regX:23.4}},{t:this.ikNode_12,p:{rotation:8.0203,x:716.15,y:615.95,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:8.0203,x:778.45,y:641.2,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.1043,x:681.4,y:402.8,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-2.7475,x:700.5,y:489.45,regX:23.4}},{t:this.ikNode_12,p:{rotation:9.1664,x:716.75,y:615.9,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:9.1664,x:778.6,y:642.35,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.1813,x:681.2,y:402.8,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-3.0918,x:700.4,y:489.35,regX:23.4}},{t:this.ikNode_12,p:{rotation:10.3116,x:717.45,y:615.75,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:10.3116,x:778.7,y:643.45,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.2574,x:681.05,y:402.85,regX:124,scaleX:1,scaleY:1,regY:58.7}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-3.4354,x:700.35,y:489.3,regX:23.4}},{t:this.ikNode_12,p:{rotation:11.4576,x:718.25,y:615.65,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:11.4576,x:778.95,y:644.6,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.3343,x:680.85,y:402.7,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-3.779,x:700.45,y:489.25,regX:23.4}},{t:this.ikNode_12,p:{rotation:12.6036,x:719.1,y:615.55,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:12.6036,x:779.1,y:645.7,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.4104,x:680.7,y:402.65,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-4.1228,x:700.35,y:489.1,regX:23.4}},{t:this.ikNode_12,p:{rotation:13.7512,x:719.8,y:615.5,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:13.7512,x:779.15,y:646.8,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.4865,x:680.5,y:402.8,regX:124,scaleX:1,scaleY:1,regY:58.7}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-4.4668,x:700.25,y:489.05,regX:23.4}},{t:this.ikNode_12,p:{rotation:14.8955,x:720.4,y:615.35,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:14.8955,x:779.2,y:647.85,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.5634,x:680.35,y:402.55,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-4.8101,x:700.25,y:489,regX:23.4}},{t:this.ikNode_12,p:{rotation:16.0415,x:721.1,y:615.25,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:16.0415,x:779.25,y:648.85,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.6395,x:680.3,y:402.55,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.7156,x:679.95,y:402.55,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.5014,x:680.3,y:402.45,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.2862,x:680.55,y:402.4,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.0711,x:680.85,y:402.45,regX:124,scaleX:1,scaleY:1,regY:58.7}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.8569,x:681.25,y:402.3,regX:124.1,scaleX:0.9999,scaleY:0.9999,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.6418,x:681.5,y:402.2,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.4275,x:681.8,y:402.15,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.2125,x:682,y:402.1,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:0,x:682.3,y:402.05,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-4.4176,x:700.3,y:489.05,regX:23.4}},{t:this.ikNode_12,p:{rotation:14.7318,x:720.3,y:615.35,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:14.7318,x:779.15,y:647.7,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.0796,x:682.5,y:402.3,regX:124.1,scaleX:1,scaleY:1,regY:58.7}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-3.6809,x:700.45,y:489.2,regX:23.4}},{t:this.ikNode_12,p:{rotation:12.2767,x:718.7,y:615.6,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:12.2767,x:779.05,y:645.4,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.1617,x:682.4,y:402.35,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-2.9438,x:700.5,y:489.35,regX:23.4}},{t:this.ikNode_12,p:{rotation:9.8205,x:717.2,y:615.75,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:9.8205,x:778.75,y:642.95,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.2431,x:682.45,y:402.55,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9993,scaleY:0.9993,rotation:-2.208,x:700.6,y:489.55,regX:23.4}},{t:this.ikNode_12,p:{rotation:7.3656,x:715.6,y:615.95,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:7.3656,x:778.3,y:640.55,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.3252,x:682.55,y:402.65,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-1.471,x:700.7,y:489.65,regX:23.4}},{t:this.ikNode_12,p:{rotation:4.9093,x:714.05,y:616.15,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:4.9093,x:777.8,y:638,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.4074,x:682.45,y:402.85,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-0.7341,x:700.8,y:489.85,regX:23.4}},{t:this.ikNode_12,p:{rotation:2.4533,x:712.75,y:616.3,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:2.4533,x:777.15,y:635.35,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.4879,x:682.65,y:403,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:0,x:700.9,y:490,regX:23.4}},{t:this.ikNode_12,p:{rotation:0,x:711.15,y:616.45,regX:21.2,scaleX:1,scaleY:1,regY:0.5}},{t:this.ikNode_13,p:{rotation:0,x:776.45,y:632.75,scaleX:1,scaleY:1}},{t:this.ikNode_14,p:{rotation:-0.5701,x:682.8,y:403.1,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-0.3412,x:700.9,y:489.9,regX:23.4}},{t:this.ikNode_12,p:{rotation:1.1437,x:711.75,y:616.3,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:1.1437,x:776.8,y:633.95,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.6461,x:682.5,y:403.1,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9993,scaleY:0.9993,rotation:-0.6851,x:700.85,y:489.8,regX:23.4}},{t:this.ikNode_12,p:{rotation:2.2896,x:712.65,y:616.3,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:2.2896,x:777.1,y:635.2,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.7231,x:682.4,y:403.05,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-1.029,x:700.8,y:489.8,regX:23.4}},{t:this.ikNode_12,p:{rotation:3.4356,x:713.2,y:616.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:3.4356,x:777.35,y:636.4,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.7991,x:682.15,y:403,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-1.372,x:700.7,y:489.7,regX:23.4}},{t:this.ikNode_12,p:{rotation:4.582,x:713.95,y:616.15,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:4.582,x:777.65,y:637.65,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.8752,x:681.95,y:402.9,regX:124,scaleX:0.9999,scaleY:0.9999,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-1.716,x:700.65,y:489.6,regX:23.4}},{t:this.ikNode_12,p:{rotation:5.7277,x:714.65,y:616.1,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:5.7277,x:777.9,y:638.8,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.9522,x:681.75,y:402.95,regX:124,scaleX:0.9999,scaleY:0.9999,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-2.0601,x:700.6,y:489.6,regX:23.4}},{t:this.ikNode_12,p:{rotation:6.874,x:715.35,y:616,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:6.874,x:778.2,y:640,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.0282,x:681.55,y:402.8,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-2.4033,x:700.55,y:489.45,regX:23.4}},{t:this.ikNode_12,p:{rotation:8.0203,x:716.15,y:615.95,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:8.0203,x:778.45,y:641.2,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.1043,x:681.4,y:402.8,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-2.7475,x:700.5,y:489.45,regX:23.4}},{t:this.ikNode_12,p:{rotation:9.1664,x:716.75,y:615.9,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:9.1664,x:778.6,y:642.35,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.1813,x:681.2,y:402.8,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-3.0918,x:700.4,y:489.35,regX:23.4}},{t:this.ikNode_12,p:{rotation:10.3116,x:717.45,y:615.75,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:10.3116,x:778.7,y:643.45,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.2574,x:681.05,y:402.85,regX:124,scaleX:1,scaleY:1,regY:58.7}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-3.4354,x:700.35,y:489.3,regX:23.4}},{t:this.ikNode_12,p:{rotation:11.4576,x:718.25,y:615.65,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:11.4576,x:778.95,y:644.6,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.3343,x:680.85,y:402.7,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-3.779,x:700.45,y:489.25,regX:23.4}},{t:this.ikNode_12,p:{rotation:12.6036,x:719.1,y:615.55,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:12.6036,x:779.1,y:645.7,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.4104,x:680.7,y:402.65,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-4.1228,x:700.35,y:489.1,regX:23.4}},{t:this.ikNode_12,p:{rotation:13.7512,x:719.8,y:615.5,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:13.7512,x:779.15,y:646.8,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.4865,x:680.5,y:402.8,regX:124,scaleX:1,scaleY:1,regY:58.7}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-4.4668,x:700.25,y:489.05,regX:23.4}},{t:this.ikNode_12,p:{rotation:14.8955,x:720.4,y:615.35,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:14.8955,x:779.2,y:647.85,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.5634,x:680.35,y:402.55,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-4.8101,x:700.25,y:489,regX:23.4}},{t:this.ikNode_12,p:{rotation:16.0415,x:721.1,y:615.25,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:16.0415,x:779.25,y:648.85,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.6395,x:680.3,y:402.55,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.7156,x:679.95,y:402.55,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.5014,x:680.3,y:402.45,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.2862,x:680.55,y:402.4,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.0711,x:680.85,y:402.45,regX:124,scaleX:1,scaleY:1,regY:58.7}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.8569,x:681.25,y:402.3,regX:124.1,scaleX:0.9999,scaleY:0.9999,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.6418,x:681.5,y:402.2,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.4275,x:681.8,y:402.15,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.2125,x:682,y:402.1,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:0,x:682.3,y:402.05,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-4.4176,x:700.3,y:489.05,regX:23.4}},{t:this.ikNode_12,p:{rotation:14.7318,x:720.3,y:615.35,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:14.7318,x:779.15,y:647.7,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.0796,x:682.5,y:402.3,regX:124.1,scaleX:1,scaleY:1,regY:58.7}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-3.6809,x:700.45,y:489.2,regX:23.4}},{t:this.ikNode_12,p:{rotation:12.2767,x:718.7,y:615.6,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:12.2767,x:779.05,y:645.4,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.1617,x:682.4,y:402.35,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-2.9438,x:700.5,y:489.35,regX:23.4}},{t:this.ikNode_12,p:{rotation:9.8205,x:717.2,y:615.75,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:9.8205,x:778.75,y:642.95,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.2431,x:682.45,y:402.55,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9993,scaleY:0.9993,rotation:-2.208,x:700.6,y:489.55,regX:23.4}},{t:this.ikNode_12,p:{rotation:7.3656,x:715.6,y:615.95,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:7.3656,x:778.3,y:640.55,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.3252,x:682.55,y:402.65,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-1.471,x:700.7,y:489.65,regX:23.4}},{t:this.ikNode_12,p:{rotation:4.9093,x:714.05,y:616.15,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:4.9093,x:777.8,y:638,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.4074,x:682.45,y:402.85,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-0.7341,x:700.8,y:489.85,regX:23.4}},{t:this.ikNode_12,p:{rotation:2.4533,x:712.75,y:616.3,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:2.4533,x:777.15,y:635.35,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.4879,x:682.65,y:403,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:0,x:700.9,y:490,regX:23.4}},{t:this.ikNode_12,p:{rotation:0,x:711.15,y:616.45,regX:21.2,scaleX:1,scaleY:1,regY:0.5}},{t:this.ikNode_13,p:{rotation:0,x:776.45,y:632.75,scaleX:1,scaleY:1}},{t:this.ikNode_14,p:{rotation:-0.5701,x:682.8,y:403.1,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-0.3412,x:700.9,y:489.9,regX:23.4}},{t:this.ikNode_12,p:{rotation:1.1437,x:711.75,y:616.3,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:1.1437,x:776.8,y:633.95,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.6461,x:682.5,y:403.1,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9993,scaleY:0.9993,rotation:-0.6851,x:700.85,y:489.8,regX:23.4}},{t:this.ikNode_12,p:{rotation:2.2896,x:712.65,y:616.3,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:2.2896,x:777.1,y:635.2,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.7231,x:682.4,y:403.05,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-1.029,x:700.8,y:489.8,regX:23.4}},{t:this.ikNode_12,p:{rotation:3.4356,x:713.2,y:616.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:3.4356,x:777.35,y:636.4,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.7991,x:682.15,y:403,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-1.372,x:700.7,y:489.7,regX:23.4}},{t:this.ikNode_12,p:{rotation:4.582,x:713.95,y:616.15,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:4.582,x:777.65,y:637.65,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.8752,x:681.95,y:402.9,regX:124,scaleX:0.9999,scaleY:0.9999,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-1.716,x:700.65,y:489.6,regX:23.4}},{t:this.ikNode_12,p:{rotation:5.7277,x:714.65,y:616.1,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:5.7277,x:777.9,y:638.8,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.9522,x:681.75,y:402.95,regX:124,scaleX:0.9999,scaleY:0.9999,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-2.0601,x:700.6,y:489.6,regX:23.4}},{t:this.ikNode_12,p:{rotation:6.874,x:715.35,y:616,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:6.874,x:778.2,y:640,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.0282,x:681.55,y:402.8,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-2.4033,x:700.55,y:489.45,regX:23.4}},{t:this.ikNode_12,p:{rotation:8.0203,x:716.15,y:615.95,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:8.0203,x:778.45,y:641.2,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.1043,x:681.4,y:402.8,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-2.7475,x:700.5,y:489.45,regX:23.4}},{t:this.ikNode_12,p:{rotation:9.1664,x:716.75,y:615.9,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:9.1664,x:778.6,y:642.35,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.1813,x:681.2,y:402.8,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-3.0918,x:700.4,y:489.35,regX:23.4}},{t:this.ikNode_12,p:{rotation:10.3116,x:717.45,y:615.75,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:10.3116,x:778.7,y:643.45,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.2574,x:681.05,y:402.85,regX:124,scaleX:1,scaleY:1,regY:58.7}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-3.4354,x:700.35,y:489.3,regX:23.4}},{t:this.ikNode_12,p:{rotation:11.4576,x:718.25,y:615.65,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:11.4576,x:778.95,y:644.6,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.3343,x:680.85,y:402.7,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-3.779,x:700.45,y:489.25,regX:23.4}},{t:this.ikNode_12,p:{rotation:12.6036,x:719.1,y:615.55,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:12.6036,x:779.1,y:645.7,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.4104,x:680.7,y:402.65,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-4.1228,x:700.35,y:489.1,regX:23.4}},{t:this.ikNode_12,p:{rotation:13.7512,x:719.8,y:615.5,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:13.7512,x:779.15,y:646.8,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.4865,x:680.5,y:402.8,regX:124,scaleX:1,scaleY:1,regY:58.7}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-4.4668,x:700.25,y:489.05,regX:23.4}},{t:this.ikNode_12,p:{rotation:14.8955,x:720.4,y:615.35,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:14.8955,x:779.2,y:647.85,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.5634,x:680.35,y:402.55,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-4.8101,x:700.25,y:489,regX:23.4}},{t:this.ikNode_12,p:{rotation:16.0415,x:721.1,y:615.25,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:16.0415,x:779.25,y:648.85,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.6395,x:680.3,y:402.55,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.7156,x:679.95,y:402.55,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.5014,x:680.3,y:402.45,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.2862,x:680.55,y:402.4,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.0711,x:680.85,y:402.45,regX:124,scaleX:1,scaleY:1,regY:58.7}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.8569,x:681.25,y:402.3,regX:124.1,scaleX:0.9999,scaleY:0.9999,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.6418,x:681.5,y:402.2,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.4275,x:681.8,y:402.15,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.2125,x:682,y:402.1,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:0,x:682.3,y:402.05,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-4.4176,x:700.3,y:489.05,regX:23.4}},{t:this.ikNode_12,p:{rotation:14.7318,x:720.3,y:615.35,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:14.7318,x:779.15,y:647.7,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.0796,x:682.5,y:402.3,regX:124.1,scaleX:1,scaleY:1,regY:58.7}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-3.6809,x:700.45,y:489.2,regX:23.4}},{t:this.ikNode_12,p:{rotation:12.2767,x:718.7,y:615.6,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:12.2767,x:779.05,y:645.4,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.1617,x:682.4,y:402.35,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-2.9438,x:700.5,y:489.35,regX:23.4}},{t:this.ikNode_12,p:{rotation:9.8205,x:717.2,y:615.75,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:9.8205,x:778.75,y:642.95,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.2431,x:682.45,y:402.55,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9993,scaleY:0.9993,rotation:-2.208,x:700.6,y:489.55,regX:23.4}},{t:this.ikNode_12,p:{rotation:7.3656,x:715.6,y:615.95,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:7.3656,x:778.3,y:640.55,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.3252,x:682.55,y:402.65,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-1.471,x:700.7,y:489.65,regX:23.4}},{t:this.ikNode_12,p:{rotation:4.9093,x:714.05,y:616.15,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:4.9093,x:777.8,y:638,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.4074,x:682.45,y:402.85,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-0.7341,x:700.8,y:489.85,regX:23.4}},{t:this.ikNode_12,p:{rotation:2.4533,x:712.75,y:616.3,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:2.4533,x:777.15,y:635.35,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.4879,x:682.65,y:403,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:0,x:700.9,y:490,regX:23.4}},{t:this.ikNode_12,p:{rotation:0,x:711.15,y:616.45,regX:21.2,scaleX:1,scaleY:1,regY:0.5}},{t:this.ikNode_13,p:{rotation:0,x:776.45,y:632.75,scaleX:1,scaleY:1}},{t:this.ikNode_14,p:{rotation:-0.5701,x:682.8,y:403.1,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-0.3412,x:700.9,y:489.9,regX:23.4}},{t:this.ikNode_12,p:{rotation:1.1437,x:711.75,y:616.3,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:1.1437,x:776.8,y:633.95,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.6461,x:682.5,y:403.1,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9993,scaleY:0.9993,rotation:-0.6851,x:700.85,y:489.8,regX:23.4}},{t:this.ikNode_12,p:{rotation:2.2896,x:712.65,y:616.3,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:2.2896,x:777.1,y:635.2,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.7231,x:682.4,y:403.05,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-1.029,x:700.8,y:489.8,regX:23.4}},{t:this.ikNode_12,p:{rotation:3.4356,x:713.2,y:616.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:3.4356,x:777.35,y:636.4,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.7991,x:682.15,y:403,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-1.372,x:700.7,y:489.7,regX:23.4}},{t:this.ikNode_12,p:{rotation:4.582,x:713.95,y:616.15,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:4.582,x:777.65,y:637.65,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.8752,x:681.95,y:402.9,regX:124,scaleX:0.9999,scaleY:0.9999,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-1.716,x:700.65,y:489.6,regX:23.4}},{t:this.ikNode_12,p:{rotation:5.7277,x:714.65,y:616.1,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:5.7277,x:777.9,y:638.8,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.9522,x:681.75,y:402.95,regX:124,scaleX:0.9999,scaleY:0.9999,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-2.0601,x:700.6,y:489.6,regX:23.4}},{t:this.ikNode_12,p:{rotation:6.874,x:715.35,y:616,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:6.874,x:778.2,y:640,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.0282,x:681.55,y:402.8,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-2.4033,x:700.55,y:489.45,regX:23.4}},{t:this.ikNode_12,p:{rotation:8.0203,x:716.15,y:615.95,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:8.0203,x:778.45,y:641.2,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.1043,x:681.4,y:402.8,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-2.7475,x:700.5,y:489.45,regX:23.4}},{t:this.ikNode_12,p:{rotation:9.1664,x:716.75,y:615.9,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:9.1664,x:778.6,y:642.35,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.1813,x:681.2,y:402.8,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-3.0918,x:700.4,y:489.35,regX:23.4}},{t:this.ikNode_12,p:{rotation:10.3116,x:717.45,y:615.75,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:10.3116,x:778.7,y:643.45,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.2574,x:681.05,y:402.85,regX:124,scaleX:1,scaleY:1,regY:58.7}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-3.4354,x:700.35,y:489.3,regX:23.4}},{t:this.ikNode_12,p:{rotation:11.4576,x:718.25,y:615.65,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:11.4576,x:778.95,y:644.6,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.3343,x:680.85,y:402.7,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-3.779,x:700.45,y:489.25,regX:23.4}},{t:this.ikNode_12,p:{rotation:12.6036,x:719.1,y:615.55,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:12.6036,x:779.1,y:645.7,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.4104,x:680.7,y:402.65,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-4.1228,x:700.35,y:489.1,regX:23.4}},{t:this.ikNode_12,p:{rotation:13.7512,x:719.8,y:615.5,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:13.7512,x:779.15,y:646.8,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.4865,x:680.5,y:402.8,regX:124,scaleX:1,scaleY:1,regY:58.7}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-4.4668,x:700.25,y:489.05,regX:23.4}},{t:this.ikNode_12,p:{rotation:14.8955,x:720.4,y:615.35,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:14.8955,x:779.2,y:647.85,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.5634,x:680.35,y:402.55,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-4.8101,x:700.25,y:489,regX:23.4}},{t:this.ikNode_12,p:{rotation:16.0415,x:721.1,y:615.25,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:16.0415,x:779.25,y:648.85,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.6395,x:680.3,y:402.55,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.7156,x:679.95,y:402.55,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.5014,x:680.3,y:402.45,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.2862,x:680.55,y:402.4,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.0711,x:680.85,y:402.45,regX:124,scaleX:1,scaleY:1,regY:58.7}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.8569,x:681.25,y:402.3,regX:124.1,scaleX:0.9999,scaleY:0.9999,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.6418,x:681.5,y:402.2,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.4275,x:681.8,y:402.15,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.2125,x:682,y:402.1,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:0,x:682.3,y:402.05,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-4.4176,x:700.3,y:489.05,regX:23.4}},{t:this.ikNode_12,p:{rotation:14.7318,x:720.3,y:615.35,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:14.7318,x:779.15,y:647.7,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.0796,x:682.5,y:402.3,regX:124.1,scaleX:1,scaleY:1,regY:58.7}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-3.6809,x:700.45,y:489.2,regX:23.4}},{t:this.ikNode_12,p:{rotation:12.2767,x:718.7,y:615.6,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:12.2767,x:779.05,y:645.4,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.1617,x:682.4,y:402.35,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-2.9438,x:700.5,y:489.35,regX:23.4}},{t:this.ikNode_12,p:{rotation:9.8205,x:717.2,y:615.75,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:9.8205,x:778.75,y:642.95,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.2431,x:682.45,y:402.55,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9993,scaleY:0.9993,rotation:-2.208,x:700.6,y:489.55,regX:23.4}},{t:this.ikNode_12,p:{rotation:7.3656,x:715.6,y:615.95,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:7.3656,x:778.3,y:640.55,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.3252,x:682.55,y:402.65,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-1.471,x:700.7,y:489.65,regX:23.4}},{t:this.ikNode_12,p:{rotation:4.9093,x:714.05,y:616.15,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:4.9093,x:777.8,y:638,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.4074,x:682.45,y:402.85,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-0.7341,x:700.8,y:489.85,regX:23.4}},{t:this.ikNode_12,p:{rotation:2.4533,x:712.75,y:616.3,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:2.4533,x:777.15,y:635.35,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.4879,x:682.65,y:403,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:0,x:700.9,y:490,regX:23.4}},{t:this.ikNode_12,p:{rotation:0,x:711.15,y:616.45,regX:21.2,scaleX:1,scaleY:1,regY:0.5}},{t:this.ikNode_13,p:{rotation:0,x:776.45,y:632.75,scaleX:1,scaleY:1}},{t:this.ikNode_14,p:{rotation:-0.5701,x:682.8,y:403.1,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-0.3412,x:700.9,y:489.9,regX:23.4}},{t:this.ikNode_12,p:{rotation:1.1437,x:711.75,y:616.3,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:1.1437,x:776.8,y:633.95,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.6461,x:682.5,y:403.1,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9993,scaleY:0.9993,rotation:-0.6851,x:700.85,y:489.8,regX:23.4}},{t:this.ikNode_12,p:{rotation:2.2896,x:712.65,y:616.3,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:2.2896,x:777.1,y:635.2,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.7231,x:682.4,y:403.05,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-1.029,x:700.8,y:489.8,regX:23.4}},{t:this.ikNode_12,p:{rotation:3.4356,x:713.2,y:616.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:3.4356,x:777.35,y:636.4,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.7991,x:682.15,y:403,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-1.372,x:700.7,y:489.7,regX:23.4}},{t:this.ikNode_12,p:{rotation:4.582,x:713.95,y:616.15,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:4.582,x:777.65,y:637.65,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.8752,x:681.95,y:402.9,regX:124,scaleX:0.9999,scaleY:0.9999,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-1.716,x:700.65,y:489.6,regX:23.4}},{t:this.ikNode_12,p:{rotation:5.7277,x:714.65,y:616.1,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:5.7277,x:777.9,y:638.8,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.9522,x:681.75,y:402.95,regX:124,scaleX:0.9999,scaleY:0.9999,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-2.0601,x:700.6,y:489.6,regX:23.4}},{t:this.ikNode_12,p:{rotation:6.874,x:715.35,y:616,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:6.874,x:778.2,y:640,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.0282,x:681.55,y:402.8,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-2.4033,x:700.55,y:489.45,regX:23.4}},{t:this.ikNode_12,p:{rotation:8.0203,x:716.15,y:615.95,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:8.0203,x:778.45,y:641.2,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.1043,x:681.4,y:402.8,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-2.7475,x:700.5,y:489.45,regX:23.4}},{t:this.ikNode_12,p:{rotation:9.1664,x:716.75,y:615.9,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:9.1664,x:778.6,y:642.35,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.1813,x:681.2,y:402.8,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-3.0918,x:700.4,y:489.35,regX:23.4}},{t:this.ikNode_12,p:{rotation:10.3116,x:717.45,y:615.75,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:10.3116,x:778.7,y:643.45,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.2574,x:681.05,y:402.85,regX:124,scaleX:1,scaleY:1,regY:58.7}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-3.4354,x:700.35,y:489.3,regX:23.4}},{t:this.ikNode_12,p:{rotation:11.4576,x:718.25,y:615.65,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:11.4576,x:778.95,y:644.6,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.3343,x:680.85,y:402.7,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-3.779,x:700.45,y:489.25,regX:23.4}},{t:this.ikNode_12,p:{rotation:12.6036,x:719.1,y:615.55,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:12.6036,x:779.1,y:645.7,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.4104,x:680.7,y:402.65,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-4.1228,x:700.35,y:489.1,regX:23.4}},{t:this.ikNode_12,p:{rotation:13.7512,x:719.8,y:615.5,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:13.7512,x:779.15,y:646.8,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.4865,x:680.5,y:402.8,regX:124,scaleX:1,scaleY:1,regY:58.7}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-4.4668,x:700.25,y:489.05,regX:23.4}},{t:this.ikNode_12,p:{rotation:14.8955,x:720.4,y:615.35,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:14.8955,x:779.2,y:647.85,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.5634,x:680.35,y:402.55,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-4.8101,x:700.25,y:489,regX:23.4}},{t:this.ikNode_12,p:{rotation:16.0415,x:721.1,y:615.25,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:16.0415,x:779.25,y:648.85,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.6395,x:680.3,y:402.55,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.7156,x:679.95,y:402.55,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.5014,x:680.3,y:402.45,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.2862,x:680.55,y:402.4,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.0711,x:680.85,y:402.45,regX:124,scaleX:1,scaleY:1,regY:58.7}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.8569,x:681.25,y:402.3,regX:124.1,scaleX:0.9999,scaleY:0.9999,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.6418,x:681.5,y:402.2,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.4275,x:681.8,y:402.15,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.2125,x:682,y:402.1,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:0,x:682.3,y:402.05,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-4.4176,x:700.3,y:489.05,regX:23.4}},{t:this.ikNode_12,p:{rotation:14.7318,x:720.3,y:615.35,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:14.7318,x:779.15,y:647.7,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.0796,x:682.5,y:402.3,regX:124.1,scaleX:1,scaleY:1,regY:58.7}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-3.6809,x:700.45,y:489.2,regX:23.4}},{t:this.ikNode_12,p:{rotation:12.2767,x:718.7,y:615.6,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:12.2767,x:779.05,y:645.4,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.1617,x:682.4,y:402.35,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-2.9438,x:700.5,y:489.35,regX:23.4}},{t:this.ikNode_12,p:{rotation:9.8205,x:717.2,y:615.75,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:9.8205,x:778.75,y:642.95,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.2431,x:682.45,y:402.55,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9993,scaleY:0.9993,rotation:-2.208,x:700.6,y:489.55,regX:23.4}},{t:this.ikNode_12,p:{rotation:7.3656,x:715.6,y:615.95,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:7.3656,x:778.3,y:640.55,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.3252,x:682.55,y:402.65,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-1.471,x:700.7,y:489.65,regX:23.4}},{t:this.ikNode_12,p:{rotation:4.9093,x:714.05,y:616.15,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:4.9093,x:777.8,y:638,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.4074,x:682.45,y:402.85,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-0.7341,x:700.8,y:489.85,regX:23.4}},{t:this.ikNode_12,p:{rotation:2.4533,x:712.75,y:616.3,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:2.4533,x:777.15,y:635.35,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.4879,x:682.65,y:403,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:0,x:700.9,y:490,regX:23.4}},{t:this.ikNode_12,p:{rotation:0,x:711.15,y:616.45,regX:21.2,scaleX:1,scaleY:1,regY:0.5}},{t:this.ikNode_13,p:{rotation:0,x:776.45,y:632.75,scaleX:1,scaleY:1}},{t:this.ikNode_14,p:{rotation:-0.5701,x:682.8,y:403.1,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-0.3412,x:700.9,y:489.9,regX:23.4}},{t:this.ikNode_12,p:{rotation:1.1437,x:711.75,y:616.3,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:1.1437,x:776.8,y:633.95,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.6461,x:682.5,y:403.1,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9993,scaleY:0.9993,rotation:-0.6851,x:700.85,y:489.8,regX:23.4}},{t:this.ikNode_12,p:{rotation:2.2896,x:712.65,y:616.3,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:2.2896,x:777.1,y:635.2,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.7231,x:682.4,y:403.05,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-1.029,x:700.8,y:489.8,regX:23.4}},{t:this.ikNode_12,p:{rotation:3.4356,x:713.2,y:616.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:3.4356,x:777.35,y:636.4,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.7991,x:682.15,y:403,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-1.372,x:700.7,y:489.7,regX:23.4}},{t:this.ikNode_12,p:{rotation:4.582,x:713.95,y:616.15,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:4.582,x:777.65,y:637.65,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.8752,x:681.95,y:402.9,regX:124,scaleX:0.9999,scaleY:0.9999,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-1.716,x:700.65,y:489.6,regX:23.4}},{t:this.ikNode_12,p:{rotation:5.7277,x:714.65,y:616.1,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:5.7277,x:777.9,y:638.8,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.9522,x:681.75,y:402.95,regX:124,scaleX:0.9999,scaleY:0.9999,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-2.0601,x:700.6,y:489.6,regX:23.4}},{t:this.ikNode_12,p:{rotation:6.874,x:715.35,y:616,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:6.874,x:778.2,y:640,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.0282,x:681.55,y:402.8,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-2.4033,x:700.55,y:489.45,regX:23.4}},{t:this.ikNode_12,p:{rotation:8.0203,x:716.15,y:615.95,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:8.0203,x:778.45,y:641.2,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.1043,x:681.4,y:402.8,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-2.7475,x:700.5,y:489.45,regX:23.4}},{t:this.ikNode_12,p:{rotation:9.1664,x:716.75,y:615.9,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:9.1664,x:778.6,y:642.35,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.1813,x:681.2,y:402.8,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-3.0918,x:700.4,y:489.35,regX:23.4}},{t:this.ikNode_12,p:{rotation:10.3116,x:717.45,y:615.75,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:10.3116,x:778.7,y:643.45,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.2574,x:681.05,y:402.85,regX:124,scaleX:1,scaleY:1,regY:58.7}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-3.4354,x:700.35,y:489.3,regX:23.4}},{t:this.ikNode_12,p:{rotation:11.4576,x:718.25,y:615.65,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:11.4576,x:778.95,y:644.6,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.3343,x:680.85,y:402.7,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-3.779,x:700.45,y:489.25,regX:23.4}},{t:this.ikNode_12,p:{rotation:12.6036,x:719.1,y:615.55,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:12.6036,x:779.1,y:645.7,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.4104,x:680.7,y:402.65,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-4.1228,x:700.35,y:489.1,regX:23.4}},{t:this.ikNode_12,p:{rotation:13.7512,x:719.8,y:615.5,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:13.7512,x:779.15,y:646.8,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.4865,x:680.5,y:402.8,regX:124,scaleX:1,scaleY:1,regY:58.7}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-4.4668,x:700.25,y:489.05,regX:23.4}},{t:this.ikNode_12,p:{rotation:14.8955,x:720.4,y:615.35,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:14.8955,x:779.2,y:647.85,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.5634,x:680.35,y:402.55,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-4.8101,x:700.25,y:489,regX:23.4}},{t:this.ikNode_12,p:{rotation:16.0415,x:721.1,y:615.25,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:16.0415,x:779.25,y:648.85,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.6395,x:680.3,y:402.55,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.7156,x:679.95,y:402.55,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.5014,x:680.3,y:402.45,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.2862,x:680.55,y:402.4,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.0711,x:680.85,y:402.45,regX:124,scaleX:1,scaleY:1,regY:58.7}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.8569,x:681.25,y:402.3,regX:124.1,scaleX:0.9999,scaleY:0.9999,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.6418,x:681.5,y:402.2,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.4275,x:681.8,y:402.15,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.2125,x:682,y:402.1,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:0,x:682.3,y:402.05,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-4.4176,x:700.3,y:489.05,regX:23.4}},{t:this.ikNode_12,p:{rotation:14.7318,x:720.3,y:615.35,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:14.7318,x:779.15,y:647.7,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.0796,x:682.5,y:402.3,regX:124.1,scaleX:1,scaleY:1,regY:58.7}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-3.6809,x:700.45,y:489.2,regX:23.4}},{t:this.ikNode_12,p:{rotation:12.2767,x:718.7,y:615.6,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:12.2767,x:779.05,y:645.4,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.1617,x:682.4,y:402.35,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-2.9438,x:700.5,y:489.35,regX:23.4}},{t:this.ikNode_12,p:{rotation:9.8205,x:717.2,y:615.75,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:9.8205,x:778.75,y:642.95,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.2431,x:682.45,y:402.55,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9993,scaleY:0.9993,rotation:-2.208,x:700.6,y:489.55,regX:23.4}},{t:this.ikNode_12,p:{rotation:7.3656,x:715.6,y:615.95,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:7.3656,x:778.3,y:640.55,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.3252,x:682.55,y:402.65,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-1.471,x:700.7,y:489.65,regX:23.4}},{t:this.ikNode_12,p:{rotation:4.9093,x:714.05,y:616.15,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:4.9093,x:777.8,y:638,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.4074,x:682.45,y:402.85,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-0.7341,x:700.8,y:489.85,regX:23.4}},{t:this.ikNode_12,p:{rotation:2.4533,x:712.75,y:616.3,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:2.4533,x:777.15,y:635.35,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.4879,x:682.65,y:403,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:0,x:700.9,y:490,regX:23.4}},{t:this.ikNode_12,p:{rotation:0,x:711.15,y:616.45,regX:21.2,scaleX:1,scaleY:1,regY:0.5}},{t:this.ikNode_13,p:{rotation:0,x:776.45,y:632.75,scaleX:1,scaleY:1}},{t:this.ikNode_14,p:{rotation:-0.5701,x:682.8,y:403.1,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-0.3412,x:700.9,y:489.9,regX:23.4}},{t:this.ikNode_12,p:{rotation:1.1437,x:711.75,y:616.3,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:1.1437,x:776.8,y:633.95,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.6461,x:682.5,y:403.1,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9993,scaleY:0.9993,rotation:-0.6851,x:700.85,y:489.8,regX:23.4}},{t:this.ikNode_12,p:{rotation:2.2896,x:712.65,y:616.3,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:2.2896,x:777.1,y:635.2,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.7231,x:682.4,y:403.05,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-1.029,x:700.8,y:489.8,regX:23.4}},{t:this.ikNode_12,p:{rotation:3.4356,x:713.2,y:616.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:3.4356,x:777.35,y:636.4,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.7991,x:682.15,y:403,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-1.372,x:700.7,y:489.7,regX:23.4}},{t:this.ikNode_12,p:{rotation:4.582,x:713.95,y:616.15,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:4.582,x:777.65,y:637.65,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.8752,x:681.95,y:402.9,regX:124,scaleX:0.9999,scaleY:0.9999,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-1.716,x:700.65,y:489.6,regX:23.4}},{t:this.ikNode_12,p:{rotation:5.7277,x:714.65,y:616.1,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:5.7277,x:777.9,y:638.8,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.9522,x:681.75,y:402.95,regX:124,scaleX:0.9999,scaleY:0.9999,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-2.0601,x:700.6,y:489.6,regX:23.4}},{t:this.ikNode_12,p:{rotation:6.874,x:715.35,y:616,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:6.874,x:778.2,y:640,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.0282,x:681.55,y:402.8,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-2.4033,x:700.55,y:489.45,regX:23.4}},{t:this.ikNode_12,p:{rotation:8.0203,x:716.15,y:615.95,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:8.0203,x:778.45,y:641.2,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.1043,x:681.4,y:402.8,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-2.7475,x:700.5,y:489.45,regX:23.4}},{t:this.ikNode_12,p:{rotation:9.1664,x:716.75,y:615.9,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:9.1664,x:778.6,y:642.35,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.1813,x:681.2,y:402.8,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-3.0918,x:700.4,y:489.35,regX:23.4}},{t:this.ikNode_12,p:{rotation:10.3116,x:717.45,y:615.75,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:10.3116,x:778.7,y:643.45,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.2574,x:681.05,y:402.85,regX:124,scaleX:1,scaleY:1,regY:58.7}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-3.4354,x:700.35,y:489.3,regX:23.4}},{t:this.ikNode_12,p:{rotation:11.4576,x:718.25,y:615.65,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:11.4576,x:778.95,y:644.6,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.3343,x:680.85,y:402.7,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-3.779,x:700.45,y:489.25,regX:23.4}},{t:this.ikNode_12,p:{rotation:12.6036,x:719.1,y:615.55,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:12.6036,x:779.1,y:645.7,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.4104,x:680.7,y:402.65,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-4.1228,x:700.35,y:489.1,regX:23.4}},{t:this.ikNode_12,p:{rotation:13.7512,x:719.8,y:615.5,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:13.7512,x:779.15,y:646.8,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.4865,x:680.5,y:402.8,regX:124,scaleX:1,scaleY:1,regY:58.7}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-4.4668,x:700.25,y:489.05,regX:23.4}},{t:this.ikNode_12,p:{rotation:14.8955,x:720.4,y:615.35,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:14.8955,x:779.2,y:647.85,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.5634,x:680.35,y:402.55,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-4.8101,x:700.25,y:489,regX:23.4}},{t:this.ikNode_12,p:{rotation:16.0415,x:721.1,y:615.25,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:16.0415,x:779.25,y:648.85,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.6395,x:680.3,y:402.55,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.7156,x:679.95,y:402.55,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.5014,x:680.3,y:402.45,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.2862,x:680.55,y:402.4,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.0711,x:680.85,y:402.45,regX:124,scaleX:1,scaleY:1,regY:58.7}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.8569,x:681.25,y:402.3,regX:124.1,scaleX:0.9999,scaleY:0.9999,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.6418,x:681.5,y:402.2,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.4275,x:681.8,y:402.15,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.2125,x:682,y:402.1,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:0,x:682.3,y:402.05,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-4.4176,x:700.3,y:489.05,regX:23.4}},{t:this.ikNode_12,p:{rotation:14.7318,x:720.3,y:615.35,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:14.7318,x:779.15,y:647.7,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.0796,x:682.5,y:402.3,regX:124.1,scaleX:1,scaleY:1,regY:58.7}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-3.6809,x:700.45,y:489.2,regX:23.4}},{t:this.ikNode_12,p:{rotation:12.2767,x:718.7,y:615.6,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:12.2767,x:779.05,y:645.4,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.1617,x:682.4,y:402.35,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-2.9438,x:700.5,y:489.35,regX:23.4}},{t:this.ikNode_12,p:{rotation:9.8205,x:717.2,y:615.75,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:9.8205,x:778.75,y:642.95,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.2431,x:682.45,y:402.55,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9993,scaleY:0.9993,rotation:-2.208,x:700.6,y:489.55,regX:23.4}},{t:this.ikNode_12,p:{rotation:7.3656,x:715.6,y:615.95,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:7.3656,x:778.3,y:640.55,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.3252,x:682.55,y:402.65,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-1.471,x:700.7,y:489.65,regX:23.4}},{t:this.ikNode_12,p:{rotation:4.9093,x:714.05,y:616.15,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:4.9093,x:777.8,y:638,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.4074,x:682.45,y:402.85,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-0.7341,x:700.8,y:489.85,regX:23.4}},{t:this.ikNode_12,p:{rotation:2.4533,x:712.75,y:616.3,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:2.4533,x:777.15,y:635.35,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.4879,x:682.65,y:403,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:0,x:700.9,y:490,regX:23.4}},{t:this.ikNode_12,p:{rotation:0,x:711.15,y:616.45,regX:21.2,scaleX:1,scaleY:1,regY:0.5}},{t:this.ikNode_13,p:{rotation:0,x:776.45,y:632.75,scaleX:1,scaleY:1}},{t:this.ikNode_14,p:{rotation:-0.5701,x:682.8,y:403.1,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-0.3412,x:700.9,y:489.9,regX:23.4}},{t:this.ikNode_12,p:{rotation:1.1437,x:711.75,y:616.3,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:1.1437,x:776.8,y:633.95,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.6461,x:682.5,y:403.1,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9993,scaleY:0.9993,rotation:-0.6851,x:700.85,y:489.8,regX:23.4}},{t:this.ikNode_12,p:{rotation:2.2896,x:712.65,y:616.3,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:2.2896,x:777.1,y:635.2,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.7231,x:682.4,y:403.05,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-1.029,x:700.8,y:489.8,regX:23.4}},{t:this.ikNode_12,p:{rotation:3.4356,x:713.2,y:616.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:3.4356,x:777.35,y:636.4,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.7991,x:682.15,y:403,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-1.372,x:700.7,y:489.7,regX:23.4}},{t:this.ikNode_12,p:{rotation:4.582,x:713.95,y:616.15,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:4.582,x:777.65,y:637.65,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.8752,x:681.95,y:402.9,regX:124,scaleX:0.9999,scaleY:0.9999,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-1.716,x:700.65,y:489.6,regX:23.4}},{t:this.ikNode_12,p:{rotation:5.7277,x:714.65,y:616.1,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:5.7277,x:777.9,y:638.8,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.9522,x:681.75,y:402.95,regX:124,scaleX:0.9999,scaleY:0.9999,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-2.0601,x:700.6,y:489.6,regX:23.4}},{t:this.ikNode_12,p:{rotation:6.874,x:715.35,y:616,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:6.874,x:778.2,y:640,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.0282,x:681.55,y:402.8,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-2.4033,x:700.55,y:489.45,regX:23.4}},{t:this.ikNode_12,p:{rotation:8.0203,x:716.15,y:615.95,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:8.0203,x:778.45,y:641.2,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.1043,x:681.4,y:402.8,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-2.7475,x:700.5,y:489.45,regX:23.4}},{t:this.ikNode_12,p:{rotation:9.1664,x:716.75,y:615.9,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:9.1664,x:778.6,y:642.35,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.1813,x:681.2,y:402.8,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-3.0918,x:700.4,y:489.35,regX:23.4}},{t:this.ikNode_12,p:{rotation:10.3116,x:717.45,y:615.75,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:10.3116,x:778.7,y:643.45,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.2574,x:681.05,y:402.85,regX:124,scaleX:1,scaleY:1,regY:58.7}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-3.4354,x:700.35,y:489.3,regX:23.4}},{t:this.ikNode_12,p:{rotation:11.4576,x:718.25,y:615.65,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:11.4576,x:778.95,y:644.6,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.3343,x:680.85,y:402.7,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-3.779,x:700.45,y:489.25,regX:23.4}},{t:this.ikNode_12,p:{rotation:12.6036,x:719.1,y:615.55,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:12.6036,x:779.1,y:645.7,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.4104,x:680.7,y:402.65,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-4.1228,x:700.35,y:489.1,regX:23.4}},{t:this.ikNode_12,p:{rotation:13.7512,x:719.8,y:615.5,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:13.7512,x:779.15,y:646.8,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.4865,x:680.5,y:402.8,regX:124,scaleX:1,scaleY:1,regY:58.7}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-4.4668,x:700.25,y:489.05,regX:23.4}},{t:this.ikNode_12,p:{rotation:14.8955,x:720.4,y:615.35,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:14.8955,x:779.2,y:647.85,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.5634,x:680.35,y:402.55,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-4.8101,x:700.25,y:489,regX:23.4}},{t:this.ikNode_12,p:{rotation:16.0415,x:721.1,y:615.25,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:16.0415,x:779.25,y:648.85,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.6395,x:680.3,y:402.55,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.7156,x:679.95,y:402.55,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.5014,x:680.3,y:402.45,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.2862,x:680.55,y:402.4,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.0711,x:680.85,y:402.45,regX:124,scaleX:1,scaleY:1,regY:58.7}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.8569,x:681.25,y:402.3,regX:124.1,scaleX:0.9999,scaleY:0.9999,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.6418,x:681.5,y:402.2,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.4275,x:681.8,y:402.15,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.2125,x:682,y:402.1,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:0,x:682.3,y:402.05,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-4.4176,x:700.3,y:489.05,regX:23.4}},{t:this.ikNode_12,p:{rotation:14.7318,x:720.3,y:615.35,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:14.7318,x:779.15,y:647.7,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.0796,x:682.5,y:402.3,regX:124.1,scaleX:1,scaleY:1,regY:58.7}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-3.6809,x:700.45,y:489.2,regX:23.4}},{t:this.ikNode_12,p:{rotation:12.2767,x:718.7,y:615.6,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:12.2767,x:779.05,y:645.4,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.1617,x:682.4,y:402.35,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-2.9438,x:700.5,y:489.35,regX:23.4}},{t:this.ikNode_12,p:{rotation:9.8205,x:717.2,y:615.75,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:9.8205,x:778.75,y:642.95,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.2431,x:682.45,y:402.55,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9993,scaleY:0.9993,rotation:-2.208,x:700.6,y:489.55,regX:23.4}},{t:this.ikNode_12,p:{rotation:7.3656,x:715.6,y:615.95,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:7.3656,x:778.3,y:640.55,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.3252,x:682.55,y:402.65,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-1.471,x:700.7,y:489.65,regX:23.4}},{t:this.ikNode_12,p:{rotation:4.9093,x:714.05,y:616.15,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:4.9093,x:777.8,y:638,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.4074,x:682.45,y:402.85,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-0.7341,x:700.8,y:489.85,regX:23.4}},{t:this.ikNode_12,p:{rotation:2.4533,x:712.75,y:616.3,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:2.4533,x:777.15,y:635.35,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.4879,x:682.65,y:403,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:0,x:700.9,y:490,regX:23.4}},{t:this.ikNode_12,p:{rotation:0,x:711.15,y:616.45,regX:21.2,scaleX:1,scaleY:1,regY:0.5}},{t:this.ikNode_13,p:{rotation:0,x:776.45,y:632.75,scaleX:1,scaleY:1}},{t:this.ikNode_14,p:{rotation:-0.5701,x:682.8,y:403.1,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-0.3412,x:700.9,y:489.9,regX:23.4}},{t:this.ikNode_12,p:{rotation:1.1437,x:711.75,y:616.3,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:1.1437,x:776.8,y:633.95,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.6461,x:682.5,y:403.1,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9993,scaleY:0.9993,rotation:-0.6851,x:700.85,y:489.8,regX:23.4}},{t:this.ikNode_12,p:{rotation:2.2896,x:712.65,y:616.3,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:2.2896,x:777.1,y:635.2,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.7231,x:682.4,y:403.05,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-1.029,x:700.8,y:489.8,regX:23.4}},{t:this.ikNode_12,p:{rotation:3.4356,x:713.2,y:616.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:3.4356,x:777.35,y:636.4,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.7991,x:682.15,y:403,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-1.372,x:700.7,y:489.7,regX:23.4}},{t:this.ikNode_12,p:{rotation:4.582,x:713.95,y:616.15,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:4.582,x:777.65,y:637.65,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.8752,x:681.95,y:402.9,regX:124,scaleX:0.9999,scaleY:0.9999,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-1.716,x:700.65,y:489.6,regX:23.4}},{t:this.ikNode_12,p:{rotation:5.7277,x:714.65,y:616.1,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:5.7277,x:777.9,y:638.8,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.9522,x:681.75,y:402.95,regX:124,scaleX:0.9999,scaleY:0.9999,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-2.0601,x:700.6,y:489.6,regX:23.4}},{t:this.ikNode_12,p:{rotation:6.874,x:715.35,y:616,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:6.874,x:778.2,y:640,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.0282,x:681.55,y:402.8,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-2.4033,x:700.55,y:489.45,regX:23.4}},{t:this.ikNode_12,p:{rotation:8.0203,x:716.15,y:615.95,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:8.0203,x:778.45,y:641.2,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.1043,x:681.4,y:402.8,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-2.7475,x:700.5,y:489.45,regX:23.4}},{t:this.ikNode_12,p:{rotation:9.1664,x:716.75,y:615.9,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:9.1664,x:778.6,y:642.35,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.1813,x:681.2,y:402.8,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-3.0918,x:700.4,y:489.35,regX:23.4}},{t:this.ikNode_12,p:{rotation:10.3116,x:717.45,y:615.75,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:10.3116,x:778.7,y:643.45,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.2574,x:681.05,y:402.85,regX:124,scaleX:1,scaleY:1,regY:58.7}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-3.4354,x:700.35,y:489.3,regX:23.4}},{t:this.ikNode_12,p:{rotation:11.4576,x:718.25,y:615.65,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:11.4576,x:778.95,y:644.6,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.3343,x:680.85,y:402.7,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-3.779,x:700.45,y:489.25,regX:23.4}},{t:this.ikNode_12,p:{rotation:12.6036,x:719.1,y:615.55,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:12.6036,x:779.1,y:645.7,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.4104,x:680.7,y:402.65,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-4.1228,x:700.35,y:489.1,regX:23.4}},{t:this.ikNode_12,p:{rotation:13.7512,x:719.8,y:615.5,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:13.7512,x:779.15,y:646.8,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.4865,x:680.5,y:402.8,regX:124,scaleX:1,scaleY:1,regY:58.7}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-4.4668,x:700.25,y:489.05,regX:23.4}},{t:this.ikNode_12,p:{rotation:14.8955,x:720.4,y:615.35,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:14.8955,x:779.2,y:647.85,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.5634,x:680.35,y:402.55,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-4.8101,x:700.25,y:489,regX:23.4}},{t:this.ikNode_12,p:{rotation:16.0415,x:721.1,y:615.25,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:16.0415,x:779.25,y:648.85,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.6395,x:680.3,y:402.55,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.7156,x:679.95,y:402.55,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.5014,x:680.3,y:402.45,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.2862,x:680.55,y:402.4,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.0711,x:680.85,y:402.45,regX:124,scaleX:1,scaleY:1,regY:58.7}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.8569,x:681.25,y:402.3,regX:124.1,scaleX:0.9999,scaleY:0.9999,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.6418,x:681.5,y:402.2,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.4275,x:681.8,y:402.15,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.2125,x:682,y:402.1,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:0,x:682.3,y:402.05,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-4.4176,x:700.3,y:489.05,regX:23.4}},{t:this.ikNode_12,p:{rotation:14.7318,x:720.3,y:615.35,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:14.7318,x:779.15,y:647.7,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.0796,x:682.5,y:402.3,regX:124.1,scaleX:1,scaleY:1,regY:58.7}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-3.6809,x:700.45,y:489.2,regX:23.4}},{t:this.ikNode_12,p:{rotation:12.2767,x:718.7,y:615.6,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:12.2767,x:779.05,y:645.4,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.1617,x:682.4,y:402.35,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-2.9438,x:700.5,y:489.35,regX:23.4}},{t:this.ikNode_12,p:{rotation:9.8205,x:717.2,y:615.75,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:9.8205,x:778.75,y:642.95,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.2431,x:682.45,y:402.55,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9993,scaleY:0.9993,rotation:-2.208,x:700.6,y:489.55,regX:23.4}},{t:this.ikNode_12,p:{rotation:7.3656,x:715.6,y:615.95,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:7.3656,x:778.3,y:640.55,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.3252,x:682.55,y:402.65,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-1.471,x:700.7,y:489.65,regX:23.4}},{t:this.ikNode_12,p:{rotation:4.9093,x:714.05,y:616.15,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:4.9093,x:777.8,y:638,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.4074,x:682.45,y:402.85,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-0.7341,x:700.8,y:489.85,regX:23.4}},{t:this.ikNode_12,p:{rotation:2.4533,x:712.75,y:616.3,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:2.4533,x:777.15,y:635.35,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.4879,x:682.65,y:403,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:0,x:700.9,y:490,regX:23.4}},{t:this.ikNode_12,p:{rotation:0,x:711.15,y:616.45,regX:21.2,scaleX:1,scaleY:1,regY:0.5}},{t:this.ikNode_13,p:{rotation:0,x:776.45,y:632.75,scaleX:1,scaleY:1}},{t:this.ikNode_14,p:{rotation:-0.5701,x:682.8,y:403.1,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-0.3412,x:700.9,y:489.9,regX:23.4}},{t:this.ikNode_12,p:{rotation:1.1437,x:711.75,y:616.3,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:1.1437,x:776.8,y:633.95,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.6461,x:682.5,y:403.1,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9993,scaleY:0.9993,rotation:-0.6851,x:700.85,y:489.8,regX:23.4}},{t:this.ikNode_12,p:{rotation:2.2896,x:712.65,y:616.3,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:2.2896,x:777.1,y:635.2,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.7231,x:682.4,y:403.05,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-1.029,x:700.8,y:489.8,regX:23.4}},{t:this.ikNode_12,p:{rotation:3.4356,x:713.2,y:616.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:3.4356,x:777.35,y:636.4,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.7991,x:682.15,y:403,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-1.372,x:700.7,y:489.7,regX:23.4}},{t:this.ikNode_12,p:{rotation:4.582,x:713.95,y:616.15,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:4.582,x:777.65,y:637.65,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.8752,x:681.95,y:402.9,regX:124,scaleX:0.9999,scaleY:0.9999,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-1.716,x:700.65,y:489.6,regX:23.4}},{t:this.ikNode_12,p:{rotation:5.7277,x:714.65,y:616.1,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:5.7277,x:777.9,y:638.8,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.9522,x:681.75,y:402.95,regX:124,scaleX:0.9999,scaleY:0.9999,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-2.0601,x:700.6,y:489.6,regX:23.4}},{t:this.ikNode_12,p:{rotation:6.874,x:715.35,y:616,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:6.874,x:778.2,y:640,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.0282,x:681.55,y:402.8,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-2.4033,x:700.55,y:489.45,regX:23.4}},{t:this.ikNode_12,p:{rotation:8.0203,x:716.15,y:615.95,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:8.0203,x:778.45,y:641.2,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.1043,x:681.4,y:402.8,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-2.7475,x:700.5,y:489.45,regX:23.4}},{t:this.ikNode_12,p:{rotation:9.1664,x:716.75,y:615.9,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:9.1664,x:778.6,y:642.35,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.1813,x:681.2,y:402.8,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-3.0918,x:700.4,y:489.35,regX:23.4}},{t:this.ikNode_12,p:{rotation:10.3116,x:717.45,y:615.75,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:10.3116,x:778.7,y:643.45,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.2574,x:681.05,y:402.85,regX:124,scaleX:1,scaleY:1,regY:58.7}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-3.4354,x:700.35,y:489.3,regX:23.4}},{t:this.ikNode_12,p:{rotation:11.4576,x:718.25,y:615.65,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:11.4576,x:778.95,y:644.6,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.3343,x:680.85,y:402.7,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-3.779,x:700.45,y:489.25,regX:23.4}},{t:this.ikNode_12,p:{rotation:12.6036,x:719.1,y:615.55,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:12.6036,x:779.1,y:645.7,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.4104,x:680.7,y:402.65,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-4.1228,x:700.35,y:489.1,regX:23.4}},{t:this.ikNode_12,p:{rotation:13.7512,x:719.8,y:615.5,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:13.7512,x:779.15,y:646.8,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.4865,x:680.5,y:402.8,regX:124,scaleX:1,scaleY:1,regY:58.7}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-4.4668,x:700.25,y:489.05,regX:23.4}},{t:this.ikNode_12,p:{rotation:14.8955,x:720.4,y:615.35,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:14.8955,x:779.2,y:647.85,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.5634,x:680.35,y:402.55,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-4.8101,x:700.25,y:489,regX:23.4}},{t:this.ikNode_12,p:{rotation:16.0415,x:721.1,y:615.25,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:16.0415,x:779.25,y:648.85,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.6395,x:680.3,y:402.55,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.7156,x:679.95,y:402.55,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.5014,x:680.3,y:402.45,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.2862,x:680.55,y:402.4,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.0711,x:680.85,y:402.45,regX:124,scaleX:1,scaleY:1,regY:58.7}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.8569,x:681.25,y:402.3,regX:124.1,scaleX:0.9999,scaleY:0.9999,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.6418,x:681.5,y:402.2,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.4275,x:681.8,y:402.15,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.2125,x:682,y:402.1,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:0,x:682.3,y:402.05,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-4.4176,x:700.3,y:489.05,regX:23.4}},{t:this.ikNode_12,p:{rotation:14.7318,x:720.3,y:615.35,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:14.7318,x:779.15,y:647.7,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.0796,x:682.5,y:402.3,regX:124.1,scaleX:1,scaleY:1,regY:58.7}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-3.6809,x:700.45,y:489.2,regX:23.4}},{t:this.ikNode_12,p:{rotation:12.2767,x:718.7,y:615.6,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:12.2767,x:779.05,y:645.4,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.1617,x:682.4,y:402.35,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-2.9438,x:700.5,y:489.35,regX:23.4}},{t:this.ikNode_12,p:{rotation:9.8205,x:717.2,y:615.75,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:9.8205,x:778.75,y:642.95,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.2431,x:682.45,y:402.55,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9993,scaleY:0.9993,rotation:-2.208,x:700.6,y:489.55,regX:23.4}},{t:this.ikNode_12,p:{rotation:7.3656,x:715.6,y:615.95,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:7.3656,x:778.3,y:640.55,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.3252,x:682.55,y:402.65,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-1.471,x:700.7,y:489.65,regX:23.4}},{t:this.ikNode_12,p:{rotation:4.9093,x:714.05,y:616.15,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:4.9093,x:777.8,y:638,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.4074,x:682.45,y:402.85,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-0.7341,x:700.8,y:489.85,regX:23.4}},{t:this.ikNode_12,p:{rotation:2.4533,x:712.75,y:616.3,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:2.4533,x:777.15,y:635.35,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.4879,x:682.65,y:403,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:0,x:700.9,y:490,regX:23.4}},{t:this.ikNode_12,p:{rotation:0,x:711.15,y:616.45,regX:21.2,scaleX:1,scaleY:1,regY:0.5}},{t:this.ikNode_13,p:{rotation:0,x:776.45,y:632.75,scaleX:1,scaleY:1}},{t:this.ikNode_14,p:{rotation:-0.5701,x:682.8,y:403.1,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-0.3412,x:700.9,y:489.9,regX:23.4}},{t:this.ikNode_12,p:{rotation:1.1437,x:711.75,y:616.3,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:1.1437,x:776.8,y:633.95,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.6461,x:682.5,y:403.1,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9993,scaleY:0.9993,rotation:-0.6851,x:700.85,y:489.8,regX:23.4}},{t:this.ikNode_12,p:{rotation:2.2896,x:712.65,y:616.3,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:2.2896,x:777.1,y:635.2,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.7231,x:682.4,y:403.05,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-1.029,x:700.8,y:489.8,regX:23.4}},{t:this.ikNode_12,p:{rotation:3.4356,x:713.2,y:616.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:3.4356,x:777.35,y:636.4,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.7991,x:682.15,y:403,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-1.372,x:700.7,y:489.7,regX:23.4}},{t:this.ikNode_12,p:{rotation:4.582,x:713.95,y:616.15,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:4.582,x:777.65,y:637.65,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.8752,x:681.95,y:402.9,regX:124,scaleX:0.9999,scaleY:0.9999,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-1.716,x:700.65,y:489.6,regX:23.4}},{t:this.ikNode_12,p:{rotation:5.7277,x:714.65,y:616.1,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:5.7277,x:777.9,y:638.8,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.9522,x:681.75,y:402.95,regX:124,scaleX:0.9999,scaleY:0.9999,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-2.0601,x:700.6,y:489.6,regX:23.4}},{t:this.ikNode_12,p:{rotation:6.874,x:715.35,y:616,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:6.874,x:778.2,y:640,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.0282,x:681.55,y:402.8,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-2.4033,x:700.55,y:489.45,regX:23.4}},{t:this.ikNode_12,p:{rotation:8.0203,x:716.15,y:615.95,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:8.0203,x:778.45,y:641.2,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.1043,x:681.4,y:402.8,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-2.7475,x:700.5,y:489.45,regX:23.4}},{t:this.ikNode_12,p:{rotation:9.1664,x:716.75,y:615.9,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:9.1664,x:778.6,y:642.35,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.1813,x:681.2,y:402.8,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-3.0918,x:700.4,y:489.35,regX:23.4}},{t:this.ikNode_12,p:{rotation:10.3116,x:717.45,y:615.75,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:10.3116,x:778.7,y:643.45,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.2574,x:681.05,y:402.85,regX:124,scaleX:1,scaleY:1,regY:58.7}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-3.4354,x:700.35,y:489.3,regX:23.4}},{t:this.ikNode_12,p:{rotation:11.4576,x:718.25,y:615.65,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:11.4576,x:778.95,y:644.6,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.3343,x:680.85,y:402.7,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-3.779,x:700.45,y:489.25,regX:23.4}},{t:this.ikNode_12,p:{rotation:12.6036,x:719.1,y:615.55,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:12.6036,x:779.1,y:645.7,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.4104,x:680.7,y:402.65,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-4.1228,x:700.35,y:489.1,regX:23.4}},{t:this.ikNode_12,p:{rotation:13.7512,x:719.8,y:615.5,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:13.7512,x:779.15,y:646.8,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.4865,x:680.5,y:402.8,regX:124,scaleX:1,scaleY:1,regY:58.7}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-4.4668,x:700.25,y:489.05,regX:23.4}},{t:this.ikNode_12,p:{rotation:14.8955,x:720.4,y:615.35,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:14.8955,x:779.2,y:647.85,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.5634,x:680.35,y:402.55,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-4.8101,x:700.25,y:489,regX:23.4}},{t:this.ikNode_12,p:{rotation:16.0415,x:721.1,y:615.25,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:16.0415,x:779.25,y:648.85,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.6395,x:680.3,y:402.55,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.7156,x:679.95,y:402.55,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.5014,x:680.3,y:402.45,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.2862,x:680.55,y:402.4,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.0711,x:680.85,y:402.45,regX:124,scaleX:1,scaleY:1,regY:58.7}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.8569,x:681.25,y:402.3,regX:124.1,scaleX:0.9999,scaleY:0.9999,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.6418,x:681.5,y:402.2,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.4275,x:681.8,y:402.15,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.2125,x:682,y:402.1,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:0,x:682.3,y:402.05,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-4.4176,x:700.3,y:489.05,regX:23.4}},{t:this.ikNode_12,p:{rotation:14.7318,x:720.3,y:615.35,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:14.7318,x:779.15,y:647.7,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.0796,x:682.5,y:402.3,regX:124.1,scaleX:1,scaleY:1,regY:58.7}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-3.6809,x:700.45,y:489.2,regX:23.4}},{t:this.ikNode_12,p:{rotation:12.2767,x:718.7,y:615.6,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:12.2767,x:779.05,y:645.4,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.1617,x:682.4,y:402.35,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-2.9438,x:700.5,y:489.35,regX:23.4}},{t:this.ikNode_12,p:{rotation:9.8205,x:717.2,y:615.75,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:9.8205,x:778.75,y:642.95,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.2431,x:682.45,y:402.55,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9993,scaleY:0.9993,rotation:-2.208,x:700.6,y:489.55,regX:23.4}},{t:this.ikNode_12,p:{rotation:7.3656,x:715.6,y:615.95,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:7.3656,x:778.3,y:640.55,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.3252,x:682.55,y:402.65,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-1.471,x:700.7,y:489.65,regX:23.4}},{t:this.ikNode_12,p:{rotation:4.9093,x:714.05,y:616.15,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:4.9093,x:777.8,y:638,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.4074,x:682.45,y:402.85,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-0.7341,x:700.8,y:489.85,regX:23.4}},{t:this.ikNode_12,p:{rotation:2.4533,x:712.75,y:616.3,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:2.4533,x:777.15,y:635.35,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.4879,x:682.65,y:403,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:0,x:700.9,y:490,regX:23.4}},{t:this.ikNode_12,p:{rotation:0,x:711.15,y:616.45,regX:21.2,scaleX:1,scaleY:1,regY:0.5}},{t:this.ikNode_13,p:{rotation:0,x:776.45,y:632.75,scaleX:1,scaleY:1}},{t:this.ikNode_14,p:{rotation:-0.5701,x:682.8,y:403.1,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-0.3412,x:700.9,y:489.9,regX:23.4}},{t:this.ikNode_12,p:{rotation:1.1437,x:711.75,y:616.3,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:1.1437,x:776.8,y:633.95,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.6461,x:682.5,y:403.1,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9993,scaleY:0.9993,rotation:-0.6851,x:700.85,y:489.8,regX:23.4}},{t:this.ikNode_12,p:{rotation:2.2896,x:712.65,y:616.3,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:2.2896,x:777.1,y:635.2,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.7231,x:682.4,y:403.05,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-1.029,x:700.8,y:489.8,regX:23.4}},{t:this.ikNode_12,p:{rotation:3.4356,x:713.2,y:616.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:3.4356,x:777.35,y:636.4,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.7991,x:682.15,y:403,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-1.372,x:700.7,y:489.7,regX:23.4}},{t:this.ikNode_12,p:{rotation:4.582,x:713.95,y:616.15,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:4.582,x:777.65,y:637.65,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.8752,x:681.95,y:402.9,regX:124,scaleX:0.9999,scaleY:0.9999,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-1.716,x:700.65,y:489.6,regX:23.4}},{t:this.ikNode_12,p:{rotation:5.7277,x:714.65,y:616.1,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:5.7277,x:777.9,y:638.8,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.9522,x:681.75,y:402.95,regX:124,scaleX:0.9999,scaleY:0.9999,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-2.0601,x:700.6,y:489.6,regX:23.4}},{t:this.ikNode_12,p:{rotation:6.874,x:715.35,y:616,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:6.874,x:778.2,y:640,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.0282,x:681.55,y:402.8,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-2.4033,x:700.55,y:489.45,regX:23.4}},{t:this.ikNode_12,p:{rotation:8.0203,x:716.15,y:615.95,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:8.0203,x:778.45,y:641.2,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.1043,x:681.4,y:402.8,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-2.7475,x:700.5,y:489.45,regX:23.4}},{t:this.ikNode_12,p:{rotation:9.1664,x:716.75,y:615.9,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:9.1664,x:778.6,y:642.35,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.1813,x:681.2,y:402.8,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-3.0918,x:700.4,y:489.35,regX:23.4}},{t:this.ikNode_12,p:{rotation:10.3116,x:717.45,y:615.75,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:10.3116,x:778.7,y:643.45,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.2574,x:681.05,y:402.85,regX:124,scaleX:1,scaleY:1,regY:58.7}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-3.4354,x:700.35,y:489.3,regX:23.4}},{t:this.ikNode_12,p:{rotation:11.4576,x:718.25,y:615.65,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:11.4576,x:778.95,y:644.6,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.3343,x:680.85,y:402.7,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-3.779,x:700.45,y:489.25,regX:23.4}},{t:this.ikNode_12,p:{rotation:12.6036,x:719.1,y:615.55,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:12.6036,x:779.1,y:645.7,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.4104,x:680.7,y:402.65,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-4.1228,x:700.35,y:489.1,regX:23.4}},{t:this.ikNode_12,p:{rotation:13.7512,x:719.8,y:615.5,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:13.7512,x:779.15,y:646.8,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.4865,x:680.5,y:402.8,regX:124,scaleX:1,scaleY:1,regY:58.7}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-4.4668,x:700.25,y:489.05,regX:23.4}},{t:this.ikNode_12,p:{rotation:14.8955,x:720.4,y:615.35,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:14.8955,x:779.2,y:647.85,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.5634,x:680.35,y:402.55,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-4.8101,x:700.25,y:489,regX:23.4}},{t:this.ikNode_12,p:{rotation:16.0415,x:721.1,y:615.25,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:16.0415,x:779.25,y:648.85,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.6395,x:680.3,y:402.55,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.7156,x:679.95,y:402.55,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.5014,x:680.3,y:402.45,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.2862,x:680.55,y:402.4,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.0711,x:680.85,y:402.45,regX:124,scaleX:1,scaleY:1,regY:58.7}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.8569,x:681.25,y:402.3,regX:124.1,scaleX:0.9999,scaleY:0.9999,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.6418,x:681.5,y:402.2,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.4275,x:681.8,y:402.15,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.2125,x:682,y:402.1,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:0,x:682.3,y:402.05,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-4.4176,x:700.3,y:489.05,regX:23.4}},{t:this.ikNode_12,p:{rotation:14.7318,x:720.3,y:615.35,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:14.7318,x:779.15,y:647.7,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.0796,x:682.5,y:402.3,regX:124.1,scaleX:1,scaleY:1,regY:58.7}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-3.6809,x:700.45,y:489.2,regX:23.4}},{t:this.ikNode_12,p:{rotation:12.2767,x:718.7,y:615.6,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:12.2767,x:779.05,y:645.4,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.1617,x:682.4,y:402.35,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-2.9438,x:700.5,y:489.35,regX:23.4}},{t:this.ikNode_12,p:{rotation:9.8205,x:717.2,y:615.75,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:9.8205,x:778.75,y:642.95,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.2431,x:682.45,y:402.55,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9993,scaleY:0.9993,rotation:-2.208,x:700.6,y:489.55,regX:23.4}},{t:this.ikNode_12,p:{rotation:7.3656,x:715.6,y:615.95,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:7.3656,x:778.3,y:640.55,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.3252,x:682.55,y:402.65,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-1.471,x:700.7,y:489.65,regX:23.4}},{t:this.ikNode_12,p:{rotation:4.9093,x:714.05,y:616.15,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:4.9093,x:777.8,y:638,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.4074,x:682.45,y:402.85,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-0.7341,x:700.8,y:489.85,regX:23.4}},{t:this.ikNode_12,p:{rotation:2.4533,x:712.75,y:616.3,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:2.4533,x:777.15,y:635.35,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.4879,x:682.65,y:403,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:0,x:700.9,y:490,regX:23.4}},{t:this.ikNode_12,p:{rotation:0,x:711.15,y:616.45,regX:21.2,scaleX:1,scaleY:1,regY:0.5}},{t:this.ikNode_13,p:{rotation:0,x:776.45,y:632.75,scaleX:1,scaleY:1}},{t:this.ikNode_14,p:{rotation:-0.5701,x:682.8,y:403.1,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-0.3412,x:700.9,y:489.9,regX:23.4}},{t:this.ikNode_12,p:{rotation:1.1437,x:711.75,y:616.3,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:1.1437,x:776.8,y:633.95,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.6461,x:682.5,y:403.1,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9993,scaleY:0.9993,rotation:-0.6851,x:700.85,y:489.8,regX:23.4}},{t:this.ikNode_12,p:{rotation:2.2896,x:712.65,y:616.3,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:2.2896,x:777.1,y:635.2,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.7231,x:682.4,y:403.05,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-1.029,x:700.8,y:489.8,regX:23.4}},{t:this.ikNode_12,p:{rotation:3.4356,x:713.2,y:616.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:3.4356,x:777.35,y:636.4,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.7991,x:682.15,y:403,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-1.372,x:700.7,y:489.7,regX:23.4}},{t:this.ikNode_12,p:{rotation:4.582,x:713.95,y:616.15,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:4.582,x:777.65,y:637.65,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.8752,x:681.95,y:402.9,regX:124,scaleX:0.9999,scaleY:0.9999,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-1.716,x:700.65,y:489.6,regX:23.4}},{t:this.ikNode_12,p:{rotation:5.7277,x:714.65,y:616.1,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:5.7277,x:777.9,y:638.8,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.9522,x:681.75,y:402.95,regX:124,scaleX:0.9999,scaleY:0.9999,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-2.0601,x:700.6,y:489.6,regX:23.4}},{t:this.ikNode_12,p:{rotation:6.874,x:715.35,y:616,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:6.874,x:778.2,y:640,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.0282,x:681.55,y:402.8,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-2.4033,x:700.55,y:489.45,regX:23.4}},{t:this.ikNode_12,p:{rotation:8.0203,x:716.15,y:615.95,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:8.0203,x:778.45,y:641.2,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.1043,x:681.4,y:402.8,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-2.7475,x:700.5,y:489.45,regX:23.4}},{t:this.ikNode_12,p:{rotation:9.1664,x:716.75,y:615.9,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:9.1664,x:778.6,y:642.35,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.1813,x:681.2,y:402.8,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-3.0918,x:700.4,y:489.35,regX:23.4}},{t:this.ikNode_12,p:{rotation:10.3116,x:717.45,y:615.75,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:10.3116,x:778.7,y:643.45,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.2574,x:681.05,y:402.85,regX:124,scaleX:1,scaleY:1,regY:58.7}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-3.4354,x:700.35,y:489.3,regX:23.4}},{t:this.ikNode_12,p:{rotation:11.4576,x:718.25,y:615.65,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:11.4576,x:778.95,y:644.6,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.3343,x:680.85,y:402.7,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-3.779,x:700.45,y:489.25,regX:23.4}},{t:this.ikNode_12,p:{rotation:12.6036,x:719.1,y:615.55,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:12.6036,x:779.1,y:645.7,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.4104,x:680.7,y:402.65,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-4.1228,x:700.35,y:489.1,regX:23.4}},{t:this.ikNode_12,p:{rotation:13.7512,x:719.8,y:615.5,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:13.7512,x:779.15,y:646.8,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.4865,x:680.5,y:402.8,regX:124,scaleX:1,scaleY:1,regY:58.7}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-4.4668,x:700.25,y:489.05,regX:23.4}},{t:this.ikNode_12,p:{rotation:14.8955,x:720.4,y:615.35,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:14.8955,x:779.2,y:647.85,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.5634,x:680.35,y:402.55,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-4.8101,x:700.25,y:489,regX:23.4}},{t:this.ikNode_12,p:{rotation:16.0415,x:721.1,y:615.25,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:16.0415,x:779.25,y:648.85,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.6395,x:680.3,y:402.55,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.7156,x:679.95,y:402.55,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.4708,x:680.3,y:402.4,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.225,x:680.65,y:402.35,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.9793,x:681.05,y:402.45,regX:124,scaleX:1,scaleY:1,regY:58.7}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.7336,x:681.35,y:402.2,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.4879,x:681.7,y:402.2,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.2431,x:682,y:402.15,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:0,x:682.3,y:402.05,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-4.5098,x:700.3,y:489.05,regX:23.4}},{t:this.ikNode_12,p:{rotation:15.0385,x:720.4,y:615.35,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:15.0385,x:779.2,y:647.95,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.0691,x:682.35,y:402.15,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-3.865,x:700.4,y:489.15,regX:23.4}},{t:this.ikNode_12,p:{rotation:12.8904,x:719.1,y:615.55,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:12.8904,x:779.05,y:646,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.1408,x:682.4,y:402.3,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-3.2206,x:700.45,y:489.3,regX:23.4}},{t:this.ikNode_12,p:{rotation:10.742,x:717.75,y:615.7,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:10.742,x:778.85,y:643.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.2125,x:682.4,y:402.45,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-2.5759,x:700.5,y:489.45,regX:23.4}},{t:this.ikNode_12,p:{rotation:8.5928,x:716.45,y:615.9,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:8.5928,x:778.55,y:641.8,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.2841,x:682.5,y:402.65,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-1.9314,x:700.6,y:489.6,regX:23.4}},{t:this.ikNode_12,p:{rotation:6.4444,x:715.05,y:616.05,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:6.4444,x:778.1,y:639.6,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.3558,x:682.5,y:402.8,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9993,scaleY:0.9993,rotation:-1.2863,x:700.75,y:489.75,regX:23.4}},{t:this.ikNode_12,p:{rotation:4.2953,x:713.75,y:616.15,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:4.2953,x:777.65,y:637.3,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.4275,x:682.55,y:402.85,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-0.6422,x:700.85,y:489.85,regX:23.4}},{t:this.ikNode_12,p:{rotation:2.147,x:712.55,y:616.35,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:2.147,x:777.05,y:635.05,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.4984,x:682.6,y:402.95,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:0,x:700.9,y:490,regX:23.4}},{t:this.ikNode_12,p:{rotation:0,x:711.15,y:616.45,regX:21.2,scaleX:1,scaleY:1,regY:0.5}},{t:this.ikNode_13,p:{rotation:0,x:776.45,y:632.75,scaleX:1,scaleY:1}},{t:this.ikNode_14,p:{rotation:-0.5701,x:682.8,y:403.1,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-0.3412,x:700.9,y:489.9,regX:23.4}},{t:this.ikNode_12,p:{rotation:1.1437,x:711.75,y:616.3,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:1.1437,x:776.8,y:633.95,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.6461,x:682.5,y:403.1,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9993,scaleY:0.9993,rotation:-0.6851,x:700.85,y:489.8,regX:23.4}},{t:this.ikNode_12,p:{rotation:2.2896,x:712.65,y:616.3,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:2.2896,x:777.1,y:635.2,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.7231,x:682.4,y:403.05,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-1.029,x:700.8,y:489.8,regX:23.4}},{t:this.ikNode_12,p:{rotation:3.4356,x:713.2,y:616.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:3.4356,x:777.35,y:636.4,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.7991,x:682.15,y:403,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-1.372,x:700.7,y:489.7,regX:23.4}},{t:this.ikNode_12,p:{rotation:4.582,x:713.95,y:616.15,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:4.582,x:777.65,y:637.65,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.8752,x:681.95,y:402.9,regX:124,scaleX:0.9999,scaleY:0.9999,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-1.716,x:700.65,y:489.6,regX:23.4}},{t:this.ikNode_12,p:{rotation:5.7277,x:714.65,y:616.1,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:5.7277,x:777.9,y:638.8,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.9522,x:681.75,y:402.95,regX:124,scaleX:0.9999,scaleY:0.9999,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-2.0601,x:700.6,y:489.6,regX:23.4}},{t:this.ikNode_12,p:{rotation:6.874,x:715.35,y:616,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:6.874,x:778.2,y:640,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.0282,x:681.55,y:402.8,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-2.4033,x:700.55,y:489.45,regX:23.4}},{t:this.ikNode_12,p:{rotation:8.0203,x:716.15,y:615.95,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:8.0203,x:778.45,y:641.2,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.1043,x:681.4,y:402.8,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-2.7475,x:700.5,y:489.45,regX:23.4}},{t:this.ikNode_12,p:{rotation:9.1664,x:716.75,y:615.9,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:9.1664,x:778.6,y:642.35,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.1813,x:681.2,y:402.8,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-3.0918,x:700.4,y:489.35,regX:23.4}},{t:this.ikNode_12,p:{rotation:10.3116,x:717.45,y:615.75,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:10.3116,x:778.7,y:643.45,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.2574,x:681.05,y:402.85,regX:124,scaleX:1,scaleY:1,regY:58.7}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-3.4354,x:700.35,y:489.3,regX:23.4}},{t:this.ikNode_12,p:{rotation:11.4576,x:718.25,y:615.65,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:11.4576,x:778.95,y:644.6,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.3343,x:680.85,y:402.7,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-3.779,x:700.45,y:489.25,regX:23.4}},{t:this.ikNode_12,p:{rotation:12.6036,x:719.1,y:615.55,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:12.6036,x:779.1,y:645.7,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.4104,x:680.7,y:402.65,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-4.1228,x:700.35,y:489.1,regX:23.4}},{t:this.ikNode_12,p:{rotation:13.7512,x:719.8,y:615.5,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:13.7512,x:779.15,y:646.8,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.4865,x:680.5,y:402.8,regX:124,scaleX:1,scaleY:1,regY:58.7}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-4.4668,x:700.25,y:489.05,regX:23.4}},{t:this.ikNode_12,p:{rotation:14.8955,x:720.4,y:615.35,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:14.8955,x:779.2,y:647.85,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.5634,x:680.35,y:402.55,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-4.8101,x:700.25,y:489,regX:23.4}},{t:this.ikNode_12,p:{rotation:16.0415,x:721.1,y:615.25,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:16.0415,x:779.25,y:648.85,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.6395,x:680.3,y:402.55,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.7156,x:679.95,y:402.55,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.5014,x:680.3,y:402.45,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.2862,x:680.55,y:402.4,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.0711,x:680.85,y:402.45,regX:124,scaleX:1,scaleY:1,regY:58.7}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.8569,x:681.25,y:402.3,regX:124.1,scaleX:0.9999,scaleY:0.9999,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.6418,x:681.5,y:402.2,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.4275,x:681.8,y:402.15,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.2125,x:682,y:402.1,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:0,x:682.3,y:402.05,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-4.4176,x:700.3,y:489.05,regX:23.4}},{t:this.ikNode_12,p:{rotation:14.7318,x:720.3,y:615.35,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:14.7318,x:779.15,y:647.7,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.0796,x:682.5,y:402.3,regX:124.1,scaleX:1,scaleY:1,regY:58.7}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-3.6809,x:700.45,y:489.2,regX:23.4}},{t:this.ikNode_12,p:{rotation:12.2767,x:718.7,y:615.6,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:12.2767,x:779.05,y:645.4,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.1617,x:682.4,y:402.35,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-2.9438,x:700.5,y:489.35,regX:23.4}},{t:this.ikNode_12,p:{rotation:9.8205,x:717.2,y:615.75,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:9.8205,x:778.75,y:642.95,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.2431,x:682.45,y:402.55,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9993,scaleY:0.9993,rotation:-2.208,x:700.6,y:489.55,regX:23.4}},{t:this.ikNode_12,p:{rotation:7.3656,x:715.6,y:615.95,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:7.3656,x:778.3,y:640.55,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.3252,x:682.55,y:402.65,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-1.471,x:700.7,y:489.65,regX:23.4}},{t:this.ikNode_12,p:{rotation:4.9093,x:714.05,y:616.15,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:4.9093,x:777.8,y:638,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.4074,x:682.45,y:402.85,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-0.7341,x:700.8,y:489.85,regX:23.4}},{t:this.ikNode_12,p:{rotation:2.4533,x:712.75,y:616.3,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:2.4533,x:777.15,y:635.35,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.4879,x:682.65,y:403,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:0,x:700.9,y:490,regX:23.4}},{t:this.ikNode_12,p:{rotation:0,x:711.15,y:616.45,regX:21.2,scaleX:1,scaleY:1,regY:0.5}},{t:this.ikNode_13,p:{rotation:0,x:776.45,y:632.75,scaleX:1,scaleY:1}},{t:this.ikNode_14,p:{rotation:-0.5701,x:682.8,y:403.1,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-0.3412,x:700.9,y:489.9,regX:23.4}},{t:this.ikNode_12,p:{rotation:1.1437,x:711.75,y:616.3,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:1.1437,x:776.8,y:633.95,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.6461,x:682.5,y:403.1,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9993,scaleY:0.9993,rotation:-0.6851,x:700.85,y:489.8,regX:23.4}},{t:this.ikNode_12,p:{rotation:2.2896,x:712.65,y:616.3,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:2.2896,x:777.1,y:635.2,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.7231,x:682.4,y:403.05,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-1.029,x:700.8,y:489.8,regX:23.4}},{t:this.ikNode_12,p:{rotation:3.4356,x:713.2,y:616.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:3.4356,x:777.35,y:636.4,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.7991,x:682.15,y:403,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-1.372,x:700.7,y:489.7,regX:23.4}},{t:this.ikNode_12,p:{rotation:4.582,x:713.95,y:616.15,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:4.582,x:777.65,y:637.65,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.8752,x:681.95,y:402.9,regX:124,scaleX:0.9999,scaleY:0.9999,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-1.716,x:700.65,y:489.6,regX:23.4}},{t:this.ikNode_12,p:{rotation:5.7277,x:714.65,y:616.1,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:5.7277,x:777.9,y:638.8,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.9522,x:681.75,y:402.95,regX:124,scaleX:0.9999,scaleY:0.9999,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-2.0601,x:700.6,y:489.6,regX:23.4}},{t:this.ikNode_12,p:{rotation:6.874,x:715.35,y:616,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:6.874,x:778.2,y:640,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.0282,x:681.55,y:402.8,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-2.4033,x:700.55,y:489.45,regX:23.4}},{t:this.ikNode_12,p:{rotation:8.0203,x:716.15,y:615.95,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:8.0203,x:778.45,y:641.2,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.1043,x:681.4,y:402.8,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-2.7475,x:700.5,y:489.45,regX:23.4}},{t:this.ikNode_12,p:{rotation:9.1664,x:716.75,y:615.9,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:9.1664,x:778.6,y:642.35,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.1813,x:681.2,y:402.8,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-3.0918,x:700.4,y:489.35,regX:23.4}},{t:this.ikNode_12,p:{rotation:10.3116,x:717.45,y:615.75,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:10.3116,x:778.7,y:643.45,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.2574,x:681.05,y:402.85,regX:124,scaleX:1,scaleY:1,regY:58.7}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-3.4354,x:700.35,y:489.3,regX:23.4}},{t:this.ikNode_12,p:{rotation:11.4576,x:718.25,y:615.65,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:11.4576,x:778.95,y:644.6,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.3343,x:680.85,y:402.7,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-3.779,x:700.45,y:489.25,regX:23.4}},{t:this.ikNode_12,p:{rotation:12.6036,x:719.1,y:615.55,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:12.6036,x:779.1,y:645.7,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.4104,x:680.7,y:402.65,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-4.1228,x:700.35,y:489.1,regX:23.4}},{t:this.ikNode_12,p:{rotation:13.7512,x:719.8,y:615.5,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:13.7512,x:779.15,y:646.8,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.4865,x:680.5,y:402.8,regX:124,scaleX:1,scaleY:1,regY:58.7}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-4.4668,x:700.25,y:489.05,regX:23.4}},{t:this.ikNode_12,p:{rotation:14.8955,x:720.4,y:615.35,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:14.8955,x:779.2,y:647.85,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.5634,x:680.35,y:402.55,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-4.8101,x:700.25,y:489,regX:23.4}},{t:this.ikNode_12,p:{rotation:16.0415,x:721.1,y:615.25,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:16.0415,x:779.25,y:648.85,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.6395,x:680.3,y:402.55,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.7156,x:679.95,y:402.55,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.5014,x:680.3,y:402.45,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.2862,x:680.55,y:402.4,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-1.0711,x:680.85,y:402.45,regX:124,scaleX:1,scaleY:1,regY:58.7}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.8569,x:681.25,y:402.3,regX:124.1,scaleX:0.9999,scaleY:0.9999,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.6418,x:681.5,y:402.2,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.4275,x:681.8,y:402.15,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.2125,x:682,y:402.1,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-5.1543,x:700.3,y:488.9,regX:23.5}},{t:this.ikNode_12,p:{rotation:17.1876,x:721.75,y:615.2,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.6}},{t:this.ikNode_13,p:{rotation:17.1876,x:779.25,y:649.9,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:0,x:682.3,y:402.05,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-4.4176,x:700.3,y:489.05,regX:23.4}},{t:this.ikNode_12,p:{rotation:14.7318,x:720.3,y:615.35,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:14.7318,x:779.15,y:647.7,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.0796,x:682.5,y:402.3,regX:124.1,scaleX:1,scaleY:1,regY:58.7}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-3.6809,x:700.45,y:489.2,regX:23.4}},{t:this.ikNode_12,p:{rotation:12.2767,x:718.7,y:615.6,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:12.2767,x:779.05,y:645.4,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.1617,x:682.4,y:402.35,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-2.9438,x:700.5,y:489.35,regX:23.4}},{t:this.ikNode_12,p:{rotation:9.8205,x:717.2,y:615.75,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:9.8205,x:778.75,y:642.95,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.2431,x:682.45,y:402.55,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9993,scaleY:0.9993,rotation:-2.208,x:700.6,y:489.55,regX:23.4}},{t:this.ikNode_12,p:{rotation:7.3656,x:715.6,y:615.95,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:7.3656,x:778.3,y:640.55,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.3252,x:682.55,y:402.65,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-1.471,x:700.7,y:489.65,regX:23.4}},{t:this.ikNode_12,p:{rotation:4.9093,x:714.05,y:616.15,regX:21.2,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:4.9093,x:777.8,y:638,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.4074,x:682.45,y:402.85,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:-0.7341,x:700.8,y:489.85,regX:23.4}},{t:this.ikNode_12,p:{rotation:2.4533,x:712.75,y:616.3,regX:21.3,scaleX:0.9999,scaleY:0.9999,regY:0.5}},{t:this.ikNode_13,p:{rotation:2.4533,x:777.15,y:635.35,scaleX:0.9999,scaleY:0.9999}},{t:this.ikNode_14,p:{rotation:-0.4879,x:682.65,y:403,regX:124,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:0,x:700.9,y:490,regX:23.4}},{t:this.ikNode_12,p:{rotation:0,x:711.15,y:616.45,regX:21.2,scaleX:1,scaleY:1,regY:0.5}},{t:this.ikNode_13,p:{rotation:0,x:776.45,y:632.75,scaleX:1,scaleY:1}},{t:this.ikNode_14,p:{rotation:-0.5701,x:682.8,y:403.1,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:0,x:700.9,y:490,regX:23.4}},{t:this.ikNode_12,p:{rotation:0,x:711.15,y:616.45,regX:21.2,scaleX:1,scaleY:1,regY:0.5}},{t:this.ikNode_13,p:{rotation:0,x:776.45,y:632.75,scaleX:1,scaleY:1}},{t:this.ikNode_14,p:{rotation:-0.5701,x:682.8,y:403.1,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:0,x:700.9,y:490,regX:23.4}},{t:this.ikNode_12,p:{rotation:0,x:711.15,y:616.45,regX:21.2,scaleX:1,scaleY:1,regY:0.5}},{t:this.ikNode_13,p:{rotation:0,x:776.45,y:632.75,scaleX:1,scaleY:1}},{t:this.ikNode_14,p:{rotation:-0.5701,x:682.8,y:403.1,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:0,x:700.9,y:490,regX:23.4}},{t:this.ikNode_12,p:{rotation:0,x:711.15,y:616.45,regX:21.2,scaleX:1,scaleY:1,regY:0.5}},{t:this.ikNode_13,p:{rotation:0,x:776.45,y:632.75,scaleX:1,scaleY:1}},{t:this.ikNode_14,p:{rotation:-0.5701,x:682.8,y:403.1,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:0,x:700.9,y:490,regX:23.4}},{t:this.ikNode_12,p:{rotation:0,x:711.15,y:616.45,regX:21.2,scaleX:1,scaleY:1,regY:0.5}},{t:this.ikNode_13,p:{rotation:0,x:776.45,y:632.75,scaleX:1,scaleY:1}},{t:this.ikNode_14,p:{rotation:-0.5692,x:682.8,y:403.1,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:0,x:700.9,y:490,regX:23.4}},{t:this.ikNode_12,p:{rotation:0,x:711.15,y:616.45,regX:21.2,scaleX:1,scaleY:1,regY:0.5}},{t:this.ikNode_13,p:{rotation:0,x:776.45,y:632.75,scaleX:1,scaleY:1}},{t:this.ikNode_14,p:{rotation:-0.5692,x:682.8,y:403.1,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:0,x:700.9,y:490,regX:23.4}},{t:this.ikNode_12,p:{rotation:0,x:711.15,y:616.45,regX:21.2,scaleX:1,scaleY:1,regY:0.5}},{t:this.ikNode_13,p:{rotation:0,x:776.45,y:632.75,scaleX:1,scaleY:1}},{t:this.ikNode_14,p:{rotation:-0.5692,x:682.8,y:403.1,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:0,x:700.9,y:490,regX:23.4}},{t:this.ikNode_12,p:{rotation:0,x:711.15,y:616.45,regX:21.2,scaleX:1,scaleY:1,regY:0.5}},{t:this.ikNode_13,p:{rotation:0,x:776.45,y:632.75,scaleX:1,scaleY:1}},{t:this.ikNode_14,p:{rotation:-0.5692,x:682.8,y:403.1,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:0,x:700.9,y:490,regX:23.4}},{t:this.ikNode_12,p:{rotation:0,x:711.15,y:616.45,regX:21.2,scaleX:1,scaleY:1,regY:0.5}},{t:this.ikNode_13,p:{rotation:0,x:776.45,y:632.75,scaleX:1,scaleY:1}},{t:this.ikNode_14,p:{rotation:-0.5692,x:682.8,y:403.1,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:0,x:700.9,y:490,regX:23.4}},{t:this.ikNode_12,p:{rotation:0,x:711.15,y:616.45,regX:21.2,scaleX:1,scaleY:1,regY:0.5}},{t:this.ikNode_13,p:{rotation:0,x:776.45,y:632.75,scaleX:1,scaleY:1}},{t:this.ikNode_14,p:{rotation:-0.5692,x:682.8,y:403.1,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:0,x:700.9,y:490,regX:23.4}},{t:this.ikNode_12,p:{rotation:0,x:711.15,y:616.45,regX:21.2,scaleX:1,scaleY:1,regY:0.5}},{t:this.ikNode_13,p:{rotation:0,x:776.45,y:632.75,scaleX:1,scaleY:1}},{t:this.ikNode_14,p:{rotation:-0.5692,x:682.8,y:403.1,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:0,x:700.9,y:490,regX:23.4}},{t:this.ikNode_12,p:{rotation:0,x:711.15,y:616.45,regX:21.2,scaleX:1,scaleY:1,regY:0.5}},{t:this.ikNode_13,p:{rotation:0,x:776.45,y:632.75,scaleX:1,scaleY:1}},{t:this.ikNode_14,p:{rotation:-0.5692,x:682.8,y:403.1,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:0,x:700.9,y:490,regX:23.4}},{t:this.ikNode_12,p:{rotation:0,x:711.15,y:616.45,regX:21.2,scaleX:1,scaleY:1,regY:0.5}},{t:this.ikNode_13,p:{rotation:0,x:776.45,y:632.75,scaleX:1,scaleY:1}},{t:this.ikNode_14,p:{rotation:-0.5692,x:682.8,y:403.1,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:0,x:700.9,y:490,regX:23.4}},{t:this.ikNode_12,p:{rotation:0,x:711.15,y:616.45,regX:21.2,scaleX:1,scaleY:1,regY:0.5}},{t:this.ikNode_13,p:{rotation:0,x:776.45,y:632.75,scaleX:1,scaleY:1}},{t:this.ikNode_14,p:{rotation:-0.5683,x:682.8,y:403.05,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:0,x:700.9,y:490,regX:23.4}},{t:this.ikNode_12,p:{rotation:0,x:711.15,y:616.45,regX:21.2,scaleX:1,scaleY:1,regY:0.5}},{t:this.ikNode_13,p:{rotation:0,x:776.45,y:632.75,scaleX:1,scaleY:1}},{t:this.ikNode_14,p:{rotation:-0.5683,x:682.8,y:403.05,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:0,x:700.9,y:490,regX:23.4}},{t:this.ikNode_12,p:{rotation:0,x:711.15,y:616.45,regX:21.2,scaleX:1,scaleY:1,regY:0.5}},{t:this.ikNode_13,p:{rotation:0,x:776.45,y:632.75,scaleX:1,scaleY:1}},{t:this.ikNode_14,p:{rotation:-0.5683,x:682.8,y:403.05,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:0,x:700.9,y:490,regX:23.4}},{t:this.ikNode_12,p:{rotation:0,x:711.15,y:616.45,regX:21.2,scaleX:1,scaleY:1,regY:0.5}},{t:this.ikNode_13,p:{rotation:0,x:776.45,y:632.75,scaleX:1,scaleY:1}},{t:this.ikNode_14,p:{rotation:-0.5683,x:682.8,y:403.05,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:0,x:700.9,y:490,regX:23.4}},{t:this.ikNode_12,p:{rotation:0,x:711.15,y:616.45,regX:21.2,scaleX:1,scaleY:1,regY:0.5}},{t:this.ikNode_13,p:{rotation:0,x:776.45,y:632.75,scaleX:1,scaleY:1}},{t:this.ikNode_14,p:{rotation:-0.5683,x:682.8,y:403.05,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:0,x:700.9,y:490,regX:23.4}},{t:this.ikNode_12,p:{rotation:0,x:711.15,y:616.45,regX:21.2,scaleX:1,scaleY:1,regY:0.5}},{t:this.ikNode_13,p:{rotation:0,x:776.45,y:632.75,scaleX:1,scaleY:1}},{t:this.ikNode_14,p:{rotation:-0.5683,x:682.8,y:403.05,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:0,x:700.9,y:490,regX:23.4}},{t:this.ikNode_12,p:{rotation:0,x:711.15,y:616.45,regX:21.2,scaleX:1,scaleY:1,regY:0.5}},{t:this.ikNode_13,p:{rotation:0,x:776.45,y:632.75,scaleX:1,scaleY:1}},{t:this.ikNode_14,p:{rotation:-0.5683,x:682.8,y:403.05,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:0,x:700.9,y:490,regX:23.4}},{t:this.ikNode_12,p:{rotation:0,x:711.15,y:616.45,regX:21.2,scaleX:1,scaleY:1,regY:0.5}},{t:this.ikNode_13,p:{rotation:0,x:776.45,y:632.75,scaleX:1,scaleY:1}},{t:this.ikNode_14,p:{rotation:-0.5683,x:682.8,y:403.05,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:0,x:700.9,y:490,regX:23.4}},{t:this.ikNode_12,p:{rotation:0,x:711.15,y:616.45,regX:21.2,scaleX:1,scaleY:1,regY:0.5}},{t:this.ikNode_13,p:{rotation:0,x:776.45,y:632.75,scaleX:1,scaleY:1}},{t:this.ikNode_14,p:{rotation:-0.5683,x:682.8,y:403.05,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:0,x:700.9,y:490,regX:23.4}},{t:this.ikNode_12,p:{rotation:0,x:711.15,y:616.45,regX:21.2,scaleX:1,scaleY:1,regY:0.5}},{t:this.ikNode_13,p:{rotation:0,x:776.45,y:632.75,scaleX:1,scaleY:1}},{t:this.ikNode_14,p:{rotation:-0.5674,x:682.8,y:403.05,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:0,x:700.9,y:490,regX:23.4}},{t:this.ikNode_12,p:{rotation:0,x:711.15,y:616.45,regX:21.2,scaleX:1,scaleY:1,regY:0.5}},{t:this.ikNode_13,p:{rotation:0,x:776.45,y:632.75,scaleX:1,scaleY:1}},{t:this.ikNode_14,p:{rotation:-0.5674,x:682.8,y:403.05,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:0,x:700.9,y:490,regX:23.4}},{t:this.ikNode_12,p:{rotation:0,x:711.15,y:616.45,regX:21.2,scaleX:1,scaleY:1,regY:0.5}},{t:this.ikNode_13,p:{rotation:0,x:776.45,y:632.75,scaleX:1,scaleY:1}},{t:this.ikNode_14,p:{rotation:-0.5674,x:682.8,y:403.05,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:0,x:700.9,y:490,regX:23.4}},{t:this.ikNode_12,p:{rotation:0,x:711.15,y:616.45,regX:21.2,scaleX:1,scaleY:1,regY:0.5}},{t:this.ikNode_13,p:{rotation:0,x:776.45,y:632.75,scaleX:1,scaleY:1}},{t:this.ikNode_14,p:{rotation:-0.5674,x:682.8,y:403.05,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:0,x:700.9,y:490,regX:23.4}},{t:this.ikNode_12,p:{rotation:0,x:711.15,y:616.45,regX:21.2,scaleX:1,scaleY:1,regY:0.5}},{t:this.ikNode_13,p:{rotation:0,x:776.45,y:632.75,scaleX:1,scaleY:1}},{t:this.ikNode_14,p:{rotation:-0.5674,x:682.8,y:403.05,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:0,x:700.9,y:490,regX:23.4}},{t:this.ikNode_12,p:{rotation:0,x:711.15,y:616.45,regX:21.2,scaleX:1,scaleY:1,regY:0.5}},{t:this.ikNode_13,p:{rotation:0,x:776.45,y:632.75,scaleX:1,scaleY:1}},{t:this.ikNode_14,p:{rotation:-0.5674,x:682.8,y:403.05,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:0,x:700.9,y:490,regX:23.4}},{t:this.ikNode_12,p:{rotation:0,x:711.15,y:616.45,regX:21.2,scaleX:1,scaleY:1,regY:0.5}},{t:this.ikNode_13,p:{rotation:0,x:776.45,y:632.75,scaleX:1,scaleY:1}},{t:this.ikNode_14,p:{rotation:-0.5674,x:682.8,y:403.05,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:0,x:700.9,y:490,regX:23.4}},{t:this.ikNode_12,p:{rotation:0,x:711.15,y:616.45,regX:21.2,scaleX:1,scaleY:1,regY:0.5}},{t:this.ikNode_13,p:{rotation:0,x:776.45,y:632.75,scaleX:1,scaleY:1}},{t:this.ikNode_14,p:{rotation:-0.5674,x:682.85,y:403.05,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).to({state:[{t:this.instance_113,p:{scaleX:0.9992,scaleY:0.9992,rotation:0,x:700.9,y:490,regX:23.4}},{t:this.ikNode_12,p:{rotation:0,x:711.15,y:616.45,regX:21.2,scaleX:1,scaleY:1,regY:0.5}},{t:this.ikNode_13,p:{rotation:0,x:776.45,y:632.75,scaleX:1,scaleY:1}},{t:this.ikNode_14,p:{rotation:-0.5674,x:682.85,y:403.05,regX:124.1,scaleX:1,scaleY:1,regY:58.6}}]},1).wait(1)); + + // 椭圆_3 + this.instance_114 = new lib.椭圆3(); + this.instance_114.setTransform(697,655,1.4286,1.4286); + + this.timeline.addTween(cjs.Tween.get(this.instance_114).wait(630)); + + // 矩形_2 + this.instance_115 = new lib.矩形2(); + this.instance_115.setTransform(704,663); + + this.timeline.addTween(cjs.Tween.get(this.instance_115).wait(630)); + + // 组_16 + this.shape_304 = new cjs.Shape(); + var sprImg_shape_304 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],57); + sprImg_shape_304.onload = function(){ + this.shape_304.graphics.bf(sprImg_shape_304, null, new cjs.Matrix2D(1,0,0,1,-42,-14.5)).s().p("AmjCRIAAkhINHAAIAAEhg") + }.bind(this); + this.shape_304.setTransform(750,651.5); + + this.shape_305 = new cjs.Shape(); + var sprImg_shape_305 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],57); + sprImg_shape_305.onload = function(){ + this.shape_305.graphics.bf(sprImg_shape_305, null, new cjs.Matrix2D(1,0,0,0.957,-42,-13.9)).s().p("AmjCLIAAkVINHAAIAAEVg") + }.bind(this); + this.shape_305.setTransform(750,652.175); + + this.shape_306 = new cjs.Shape(); + var sprImg_shape_306 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],57); + sprImg_shape_306.onload = function(){ + this.shape_306.graphics.bf(sprImg_shape_306, null, new cjs.Matrix2D(1,0,0,0.914,-42,-13.2)).s().p("AmjCFIAAkJINHAAIAAEJg") + }.bind(this); + this.shape_306.setTransform(750,652.8); + + this.shape_307 = new cjs.Shape(); + var sprImg_shape_307 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],57); + sprImg_shape_307.onload = function(){ + this.shape_307.graphics.bf(sprImg_shape_307, null, new cjs.Matrix2D(1,0,0,0.871,-42,-12.7)).s().p("AmjB+IAAj7INHAAIAAD7g") + }.bind(this); + this.shape_307.setTransform(750,653.475); + + this.shape_308 = new cjs.Shape(); + var sprImg_shape_308 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],57); + sprImg_shape_308.onload = function(){ + this.shape_308.graphics.bf(sprImg_shape_308, null, new cjs.Matrix2D(1,0,0,0.828,-42,-12)).s().p("AmjB4IAAjvINHAAIAADvg") + }.bind(this); + this.shape_308.setTransform(750,654.125); + + this.shape_309 = new cjs.Shape(); + var sprImg_shape_309 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],57); + sprImg_shape_309.onload = function(){ + this.shape_309.graphics.bf(sprImg_shape_309, null, new cjs.Matrix2D(1,0,0,0.785,-42,-11.4)).s().p("AmjByIAAjjINHAAIAADjg") + }.bind(this); + this.shape_309.setTransform(750,654.775); + + this.shape_310 = new cjs.Shape(); + var sprImg_shape_310 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],57); + sprImg_shape_310.onload = function(){ + this.shape_310.graphics.bf(sprImg_shape_310, null, new cjs.Matrix2D(1,0,0,0.742,-42,-10.8)).s().p("AmjBsIAAjXINHAAIAADXg") + }.bind(this); + this.shape_310.setTransform(750,655.425); + + this.shape_311 = new cjs.Shape(); + var sprImg_shape_311 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],57); + sprImg_shape_311.onload = function(){ + this.shape_311.graphics.bf(sprImg_shape_311, null, new cjs.Matrix2D(1,0,0,0.699,-42,-10.1)).s().p("AmjBmIAAjLINHAAIAADLg") + }.bind(this); + this.shape_311.setTransform(750,656.1); + + this.shape_312 = new cjs.Shape(); + var sprImg_shape_312 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],57); + sprImg_shape_312.onload = function(){ + this.shape_312.graphics.bf(sprImg_shape_312, null, new cjs.Matrix2D(1,0,0,0.656,-42,-9.5)).s().p("AmjBfIAAi9INHAAIAAC9g") + }.bind(this); + this.shape_312.setTransform(750,656.75); + + this.shape_313 = new cjs.Shape(); + var sprImg_shape_313 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],57); + sprImg_shape_313.onload = function(){ + this.shape_313.graphics.bf(sprImg_shape_313, null, new cjs.Matrix2D(1,0,0,0.613,-42,-8.9)).s().p("AmjBZIAAixINHAAIAACxg") + }.bind(this); + this.shape_313.setTransform(750,657.4); + + this.shape_314 = new cjs.Shape(); + var sprImg_shape_314 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],57); + sprImg_shape_314.onload = function(){ + this.shape_314.graphics.bf(sprImg_shape_314, null, new cjs.Matrix2D(1,0,0,0.571,-42,-8.3)).s().p("AmjBSIAAikINHAAIAACkg") + }.bind(this); + this.shape_314.setTransform(750,658.05); + + this.shape_315 = new cjs.Shape(); + var sprImg_shape_315 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],57); + sprImg_shape_315.onload = function(){ + this.shape_315.graphics.bf(sprImg_shape_315, null, new cjs.Matrix2D(1,0,0,0.528,-42,-7.6)).s().p("AmjBNIAAiYINHAAIAACYg") + }.bind(this); + this.shape_315.setTransform(750,658.7); + + this.shape_316 = new cjs.Shape(); + var sprImg_shape_316 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],57); + sprImg_shape_316.onload = function(){ + this.shape_316.graphics.bf(sprImg_shape_316, null, new cjs.Matrix2D(1,0,0,0.485,-42,-7.1)).s().p("AmjBGIAAiLINHAAIAACLg") + }.bind(this); + this.shape_316.setTransform(750,659.375); + + this.shape_317 = new cjs.Shape(); + var sprImg_shape_317 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],57); + sprImg_shape_317.onload = function(){ + this.shape_317.graphics.bf(sprImg_shape_317, null, new cjs.Matrix2D(1,0,0,0.442,-42,-6.4)).s().p("AmjBAIAAh/INHAAIAAB/g") + }.bind(this); + this.shape_317.setTransform(750,660); + + this.shape_318 = new cjs.Shape(); + var sprImg_shape_318 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],57); + sprImg_shape_318.onload = function(){ + this.shape_318.graphics.bf(sprImg_shape_318, null, new cjs.Matrix2D(1,0,0,0.399,-42,-5.8)).s().p("AmjA6IAAhzINHAAIAABzg") + }.bind(this); + this.shape_318.setTransform(750,660.675); + this.shape_318._off = true; + + this.shape_319 = new cjs.Shape(); + var sprImg_shape_319 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],57); + sprImg_shape_319.onload = function(){ + this.shape_319.graphics.bf(sprImg_shape_319, null, new cjs.Matrix2D(1,0,0,0.439,-42,-6.4)).s().p("AmjA/IAAh+INHAAIAAB+g") + }.bind(this); + this.shape_319.setTransform(750,660.05); + this.shape_319._off = true; + + this.shape_320 = new cjs.Shape(); + var sprImg_shape_320 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],57); + sprImg_shape_320.onload = function(){ + this.shape_320.graphics.bf(sprImg_shape_320, null, new cjs.Matrix2D(1,0,0,0.479,-42,-7)).s().p("AmjBFIAAiKINHAAIAACKg") + }.bind(this); + this.shape_320.setTransform(750,659.45); + this.shape_320._off = true; + + this.shape_321 = new cjs.Shape(); + var sprImg_shape_321 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],57); + sprImg_shape_321.onload = function(){ + this.shape_321.graphics.bf(sprImg_shape_321, null, new cjs.Matrix2D(1,0,0,0.519,-42,-7.5)).s().p("AmjBLIAAiVINHAAIAACVg") + }.bind(this); + this.shape_321.setTransform(750,658.825); + this.shape_321._off = true; + + this.shape_322 = new cjs.Shape(); + var sprImg_shape_322 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],57); + sprImg_shape_322.onload = function(){ + this.shape_322.graphics.bf(sprImg_shape_322, null, new cjs.Matrix2D(1,0,0,0.559,-42,-8.1)).s().p("AmjBRIAAihINHAAIAAChg") + }.bind(this); + this.shape_322.setTransform(750,658.25); + this.shape_322._off = true; + + this.shape_323 = new cjs.Shape(); + var sprImg_shape_323 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],57); + sprImg_shape_323.onload = function(){ + this.shape_323.graphics.bf(sprImg_shape_323, null, new cjs.Matrix2D(1,0,0,0.599,-42,-8.7)).s().p("AmjBXIAAitINHAAIAACtg") + }.bind(this); + this.shape_323.setTransform(750,657.625); + this.shape_323._off = true; + + this.shape_324 = new cjs.Shape(); + var sprImg_shape_324 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],57); + sprImg_shape_324.onload = function(){ + this.shape_324.graphics.bf(sprImg_shape_324, null, new cjs.Matrix2D(1,0,0,0.639,-42,-9.3)).s().p("AmjBdIAAi5INHAAIAAC5g") + }.bind(this); + this.shape_324.setTransform(750,657); + this.shape_324._off = true; + + this.shape_325 = new cjs.Shape(); + var sprImg_shape_325 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],57); + sprImg_shape_325.onload = function(){ + this.shape_325.graphics.bf(sprImg_shape_325, null, new cjs.Matrix2D(1,0,0,0.679,-42,-9.9)).s().p("AmjBjIAAjEINHAAIAADEg") + }.bind(this); + this.shape_325.setTransform(750,656.4); + this.shape_325._off = true; + + this.shape_326 = new cjs.Shape(); + var sprImg_shape_326 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],57); + sprImg_shape_326.onload = function(){ + this.shape_326.graphics.bf(sprImg_shape_326, null, new cjs.Matrix2D(1,0,0,0.719,-42,-10.4)).s().p("AmjBoIAAjPINHAAIAADPg") + }.bind(this); + this.shape_326.setTransform(750,655.775); + this.shape_326._off = true; + + this.shape_327 = new cjs.Shape(); + var sprImg_shape_327 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],57); + sprImg_shape_327.onload = function(){ + this.shape_327.graphics.bf(sprImg_shape_327, null, new cjs.Matrix2D(1,0,0,0.76,-42,-11)).s().p("AmjBuIAAjbINHAAIAADbg") + }.bind(this); + this.shape_327.setTransform(750,655.175); + this.shape_327._off = true; + + this.shape_328 = new cjs.Shape(); + var sprImg_shape_328 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],57); + sprImg_shape_328.onload = function(){ + this.shape_328.graphics.bf(sprImg_shape_328, null, new cjs.Matrix2D(1,0,0,0.8,-42,-11.6)).s().p("AmjB0IAAjnINHAAIAADng") + }.bind(this); + this.shape_328.setTransform(750,654.55); + this.shape_328._off = true; + + this.shape_329 = new cjs.Shape(); + var sprImg_shape_329 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],57); + sprImg_shape_329.onload = function(){ + this.shape_329.graphics.bf(sprImg_shape_329, null, new cjs.Matrix2D(1,0,0,0.84,-42,-12.2)).s().p("AmjB6IAAjzINHAAIAADzg") + }.bind(this); + this.shape_329.setTransform(750,653.925); + this.shape_329._off = true; + + this.shape_330 = new cjs.Shape(); + var sprImg_shape_330 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],57); + sprImg_shape_330.onload = function(){ + this.shape_330.graphics.bf(sprImg_shape_330, null, new cjs.Matrix2D(1,0,0,0.88,-42,-12.8)).s().p("AmjB/IAAj9INHAAIAAD9g") + }.bind(this); + this.shape_330.setTransform(750,653.35); + this.shape_330._off = true; + + this.shape_331 = new cjs.Shape(); + var sprImg_shape_331 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],57); + sprImg_shape_331.onload = function(){ + this.shape_331.graphics.bf(sprImg_shape_331, null, new cjs.Matrix2D(1,0,0,0.92,-42,-13.3)).s().p("AmjCFIAAkJINHAAIAAEJg") + }.bind(this); + this.shape_331.setTransform(750,652.725); + this.shape_331._off = true; + + this.shape_332 = new cjs.Shape(); + var sprImg_shape_332 = cjs.SpriteSheetUtils.extractFrame(ss["source_code_atlas_1"],57); + sprImg_shape_332.onload = function(){ + this.shape_332.graphics.bf(sprImg_shape_332, null, new cjs.Matrix2D(1,0,0,0.96,-42,-13.9)).s().p("AmjCLIAAkVINHAAIAAEVg") + }.bind(this); + this.shape_332.setTransform(750,652.125); + this.shape_332._off = true; + + this.timeline.addTween(cjs.Tween.get({}).to({state:[{t:this.shape_304}]}).to({state:[{t:this.shape_305}]},1).to({state:[{t:this.shape_306}]},1).to({state:[{t:this.shape_307}]},1).to({state:[{t:this.shape_308}]},1).to({state:[{t:this.shape_309}]},1).to({state:[{t:this.shape_310}]},1).to({state:[{t:this.shape_311}]},1).to({state:[{t:this.shape_312}]},1).to({state:[{t:this.shape_313}]},1).to({state:[{t:this.shape_314}]},1).to({state:[{t:this.shape_315}]},1).to({state:[{t:this.shape_316}]},1).to({state:[{t:this.shape_317}]},1).to({state:[{t:this.shape_318}]},1).to({state:[{t:this.shape_319}]},1).to({state:[{t:this.shape_320}]},1).to({state:[{t:this.shape_321}]},1).to({state:[{t:this.shape_322}]},1).to({state:[{t:this.shape_323}]},1).to({state:[{t:this.shape_324}]},1).to({state:[{t:this.shape_325}]},1).to({state:[{t:this.shape_326}]},1).to({state:[{t:this.shape_327}]},1).to({state:[{t:this.shape_328}]},1).to({state:[{t:this.shape_329}]},1).to({state:[{t:this.shape_330}]},1).to({state:[{t:this.shape_331}]},1).to({state:[{t:this.shape_332}]},1).to({state:[{t:this.shape_304}]},1).to({state:[{t:this.shape_332}]},1).to({state:[{t:this.shape_331}]},1).to({state:[{t:this.shape_330}]},1).to({state:[{t:this.shape_329}]},1).to({state:[{t:this.shape_328}]},1).to({state:[{t:this.shape_327}]},1).to({state:[{t:this.shape_326}]},1).to({state:[{t:this.shape_325}]},1).to({state:[{t:this.shape_324}]},1).to({state:[{t:this.shape_323}]},1).to({state:[{t:this.shape_322}]},1).to({state:[{t:this.shape_321}]},1).to({state:[{t:this.shape_320}]},1).to({state:[{t:this.shape_319}]},1).to({state:[{t:this.shape_318}]},1).to({state:[{t:this.shape_319}]},1).to({state:[{t:this.shape_320}]},1).to({state:[{t:this.shape_321}]},1).to({state:[{t:this.shape_322}]},1).to({state:[{t:this.shape_323}]},1).to({state:[{t:this.shape_324}]},1).to({state:[{t:this.shape_325}]},1).to({state:[{t:this.shape_326}]},1).to({state:[{t:this.shape_327}]},1).to({state:[{t:this.shape_328}]},1).to({state:[{t:this.shape_329}]},1).to({state:[{t:this.shape_330}]},1).to({state:[{t:this.shape_331}]},1).to({state:[{t:this.shape_332}]},1).to({state:[{t:this.shape_304}]},1).to({state:[{t:this.shape_332}]},1).to({state:[{t:this.shape_331}]},1).to({state:[{t:this.shape_330}]},1).to({state:[{t:this.shape_329}]},1).to({state:[{t:this.shape_328}]},1).to({state:[{t:this.shape_327}]},1).to({state:[{t:this.shape_326}]},1).to({state:[{t:this.shape_325}]},1).to({state:[{t:this.shape_324}]},1).to({state:[{t:this.shape_323}]},1).to({state:[{t:this.shape_322}]},1).to({state:[{t:this.shape_321}]},1).to({state:[{t:this.shape_320}]},1).to({state:[{t:this.shape_319}]},1).to({state:[{t:this.shape_318}]},1).to({state:[{t:this.shape_319}]},1).to({state:[{t:this.shape_320}]},1).to({state:[{t:this.shape_321}]},1).to({state:[{t:this.shape_322}]},1).to({state:[{t:this.shape_323}]},1).to({state:[{t:this.shape_324}]},1).to({state:[{t:this.shape_325}]},1).to({state:[{t:this.shape_326}]},1).to({state:[{t:this.shape_327}]},1).to({state:[{t:this.shape_328}]},1).to({state:[{t:this.shape_329}]},1).to({state:[{t:this.shape_330}]},1).to({state:[{t:this.shape_331}]},1).to({state:[{t:this.shape_332}]},1).to({state:[{t:this.shape_304}]},1).to({state:[{t:this.shape_332}]},1).to({state:[{t:this.shape_331}]},1).to({state:[{t:this.shape_330}]},1).to({state:[{t:this.shape_329}]},1).to({state:[{t:this.shape_328}]},1).to({state:[{t:this.shape_327}]},1).to({state:[{t:this.shape_326}]},1).to({state:[{t:this.shape_325}]},1).to({state:[{t:this.shape_324}]},1).to({state:[{t:this.shape_323}]},1).to({state:[{t:this.shape_322}]},1).to({state:[{t:this.shape_321}]},1).to({state:[{t:this.shape_320}]},1).to({state:[{t:this.shape_319}]},1).to({state:[{t:this.shape_318}]},1).to({state:[{t:this.shape_319}]},1).to({state:[{t:this.shape_320}]},1).to({state:[{t:this.shape_321}]},1).to({state:[{t:this.shape_322}]},1).to({state:[{t:this.shape_323}]},1).to({state:[{t:this.shape_324}]},1).to({state:[{t:this.shape_325}]},1).to({state:[{t:this.shape_326}]},1).to({state:[{t:this.shape_327}]},1).to({state:[{t:this.shape_328}]},1).to({state:[{t:this.shape_329}]},1).to({state:[{t:this.shape_330}]},1).to({state:[{t:this.shape_331}]},1).to({state:[{t:this.shape_332}]},1).to({state:[{t:this.shape_304}]},1).to({state:[{t:this.shape_332}]},1).to({state:[{t:this.shape_331}]},1).to({state:[{t:this.shape_330}]},1).to({state:[{t:this.shape_329}]},1).to({state:[{t:this.shape_328}]},1).to({state:[{t:this.shape_327}]},1).to({state:[{t:this.shape_326}]},1).to({state:[{t:this.shape_325}]},1).to({state:[{t:this.shape_324}]},1).to({state:[{t:this.shape_323}]},1).to({state:[{t:this.shape_322}]},1).to({state:[{t:this.shape_321}]},1).to({state:[{t:this.shape_320}]},1).to({state:[{t:this.shape_319}]},1).to({state:[{t:this.shape_318}]},1).to({state:[{t:this.shape_319}]},1).to({state:[{t:this.shape_320}]},1).to({state:[{t:this.shape_321}]},1).to({state:[{t:this.shape_322}]},1).to({state:[{t:this.shape_323}]},1).to({state:[{t:this.shape_324}]},1).to({state:[{t:this.shape_325}]},1).to({state:[{t:this.shape_326}]},1).to({state:[{t:this.shape_327}]},1).to({state:[{t:this.shape_328}]},1).to({state:[{t:this.shape_329}]},1).to({state:[{t:this.shape_330}]},1).to({state:[{t:this.shape_331}]},1).to({state:[{t:this.shape_332}]},1).to({state:[{t:this.shape_304}]},1).to({state:[{t:this.shape_332}]},1).to({state:[{t:this.shape_331}]},1).to({state:[{t:this.shape_330}]},1).to({state:[{t:this.shape_329}]},1).to({state:[{t:this.shape_328}]},1).to({state:[{t:this.shape_327}]},1).to({state:[{t:this.shape_326}]},1).to({state:[{t:this.shape_325}]},1).to({state:[{t:this.shape_324}]},1).to({state:[{t:this.shape_323}]},1).to({state:[{t:this.shape_322}]},1).to({state:[{t:this.shape_321}]},1).to({state:[{t:this.shape_320}]},1).to({state:[{t:this.shape_319}]},1).to({state:[{t:this.shape_318}]},1).to({state:[{t:this.shape_319}]},1).to({state:[{t:this.shape_320}]},1).to({state:[{t:this.shape_321}]},1).to({state:[{t:this.shape_322}]},1).to({state:[{t:this.shape_323}]},1).to({state:[{t:this.shape_324}]},1).to({state:[{t:this.shape_325}]},1).to({state:[{t:this.shape_326}]},1).to({state:[{t:this.shape_327}]},1).to({state:[{t:this.shape_328}]},1).to({state:[{t:this.shape_329}]},1).to({state:[{t:this.shape_330}]},1).to({state:[{t:this.shape_331}]},1).to({state:[{t:this.shape_332}]},1).to({state:[{t:this.shape_304}]},1).to({state:[{t:this.shape_332}]},1).to({state:[{t:this.shape_331}]},1).to({state:[{t:this.shape_330}]},1).to({state:[{t:this.shape_329}]},1).to({state:[{t:this.shape_328}]},1).to({state:[{t:this.shape_327}]},1).to({state:[{t:this.shape_326}]},1).to({state:[{t:this.shape_325}]},1).to({state:[{t:this.shape_324}]},1).to({state:[{t:this.shape_323}]},1).to({state:[{t:this.shape_322}]},1).to({state:[{t:this.shape_321}]},1).to({state:[{t:this.shape_320}]},1).to({state:[{t:this.shape_319}]},1).to({state:[{t:this.shape_318}]},1).to({state:[{t:this.shape_319}]},1).to({state:[{t:this.shape_320}]},1).to({state:[{t:this.shape_321}]},1).to({state:[{t:this.shape_322}]},1).to({state:[{t:this.shape_323}]},1).to({state:[{t:this.shape_324}]},1).to({state:[{t:this.shape_325}]},1).to({state:[{t:this.shape_326}]},1).to({state:[{t:this.shape_327}]},1).to({state:[{t:this.shape_328}]},1).to({state:[{t:this.shape_329}]},1).to({state:[{t:this.shape_330}]},1).to({state:[{t:this.shape_331}]},1).to({state:[{t:this.shape_332}]},1).to({state:[{t:this.shape_304}]},1).to({state:[{t:this.shape_332}]},1).to({state:[{t:this.shape_331}]},1).to({state:[{t:this.shape_330}]},1).to({state:[{t:this.shape_329}]},1).to({state:[{t:this.shape_328}]},1).to({state:[{t:this.shape_327}]},1).to({state:[{t:this.shape_326}]},1).to({state:[{t:this.shape_325}]},1).to({state:[{t:this.shape_324}]},1).to({state:[{t:this.shape_323}]},1).to({state:[{t:this.shape_322}]},1).to({state:[{t:this.shape_321}]},1).to({state:[{t:this.shape_320}]},1).to({state:[{t:this.shape_319}]},1).to({state:[{t:this.shape_318}]},1).to({state:[{t:this.shape_319}]},1).to({state:[{t:this.shape_320}]},1).to({state:[{t:this.shape_321}]},1).to({state:[{t:this.shape_322}]},1).to({state:[{t:this.shape_323}]},1).to({state:[{t:this.shape_324}]},1).to({state:[{t:this.shape_325}]},1).to({state:[{t:this.shape_326}]},1).to({state:[{t:this.shape_327}]},1).to({state:[{t:this.shape_328}]},1).to({state:[{t:this.shape_329}]},1).to({state:[{t:this.shape_330}]},1).to({state:[{t:this.shape_331}]},1).to({state:[{t:this.shape_332}]},1).to({state:[{t:this.shape_304}]},1).to({state:[{t:this.shape_332}]},1).to({state:[{t:this.shape_331}]},1).to({state:[{t:this.shape_330}]},1).to({state:[{t:this.shape_329}]},1).to({state:[{t:this.shape_328}]},1).to({state:[{t:this.shape_327}]},1).to({state:[{t:this.shape_326}]},1).to({state:[{t:this.shape_325}]},1).to({state:[{t:this.shape_324}]},1).to({state:[{t:this.shape_323}]},1).to({state:[{t:this.shape_322}]},1).to({state:[{t:this.shape_321}]},1).to({state:[{t:this.shape_320}]},1).to({state:[{t:this.shape_319}]},1).to({state:[{t:this.shape_318}]},1).to({state:[{t:this.shape_319}]},1).to({state:[{t:this.shape_320}]},1).to({state:[{t:this.shape_321}]},1).to({state:[{t:this.shape_322}]},1).to({state:[{t:this.shape_323}]},1).to({state:[{t:this.shape_324}]},1).to({state:[{t:this.shape_325}]},1).to({state:[{t:this.shape_326}]},1).to({state:[{t:this.shape_327}]},1).to({state:[{t:this.shape_328}]},1).to({state:[{t:this.shape_329}]},1).to({state:[{t:this.shape_330}]},1).to({state:[{t:this.shape_331}]},1).to({state:[{t:this.shape_332}]},1).to({state:[{t:this.shape_304}]},1).to({state:[{t:this.shape_332}]},1).to({state:[{t:this.shape_331}]},1).to({state:[{t:this.shape_330}]},1).to({state:[{t:this.shape_329}]},1).to({state:[{t:this.shape_328}]},1).to({state:[{t:this.shape_327}]},1).to({state:[{t:this.shape_326}]},1).to({state:[{t:this.shape_325}]},1).to({state:[{t:this.shape_324}]},1).to({state:[{t:this.shape_323}]},1).to({state:[{t:this.shape_322}]},1).to({state:[{t:this.shape_321}]},1).to({state:[{t:this.shape_320}]},1).to({state:[{t:this.shape_319}]},1).to({state:[{t:this.shape_318}]},1).to({state:[{t:this.shape_319}]},1).to({state:[{t:this.shape_320}]},1).to({state:[{t:this.shape_321}]},1).to({state:[{t:this.shape_322}]},1).to({state:[{t:this.shape_323}]},1).to({state:[{t:this.shape_324}]},1).to({state:[{t:this.shape_325}]},1).to({state:[{t:this.shape_326}]},1).to({state:[{t:this.shape_327}]},1).to({state:[{t:this.shape_328}]},1).to({state:[{t:this.shape_329}]},1).to({state:[{t:this.shape_330}]},1).to({state:[{t:this.shape_331}]},1).to({state:[{t:this.shape_332}]},1).to({state:[{t:this.shape_304}]},1).to({state:[{t:this.shape_332}]},1).to({state:[{t:this.shape_331}]},1).to({state:[{t:this.shape_330}]},1).to({state:[{t:this.shape_329}]},1).to({state:[{t:this.shape_328}]},1).to({state:[{t:this.shape_327}]},1).to({state:[{t:this.shape_326}]},1).to({state:[{t:this.shape_325}]},1).to({state:[{t:this.shape_324}]},1).to({state:[{t:this.shape_323}]},1).to({state:[{t:this.shape_322}]},1).to({state:[{t:this.shape_321}]},1).to({state:[{t:this.shape_320}]},1).to({state:[{t:this.shape_319}]},1).to({state:[{t:this.shape_318}]},1).to({state:[{t:this.shape_319}]},1).to({state:[{t:this.shape_320}]},1).to({state:[{t:this.shape_321}]},1).to({state:[{t:this.shape_322}]},1).to({state:[{t:this.shape_323}]},1).to({state:[{t:this.shape_324}]},1).to({state:[{t:this.shape_325}]},1).to({state:[{t:this.shape_326}]},1).to({state:[{t:this.shape_327}]},1).to({state:[{t:this.shape_328}]},1).to({state:[{t:this.shape_329}]},1).to({state:[{t:this.shape_330}]},1).to({state:[{t:this.shape_331}]},1).to({state:[{t:this.shape_332}]},1).to({state:[{t:this.shape_304}]},1).to({state:[{t:this.shape_332}]},1).to({state:[{t:this.shape_331}]},1).to({state:[{t:this.shape_330}]},1).to({state:[{t:this.shape_329}]},1).to({state:[{t:this.shape_328}]},1).to({state:[{t:this.shape_327}]},1).to({state:[{t:this.shape_326}]},1).to({state:[{t:this.shape_325}]},1).to({state:[{t:this.shape_324}]},1).to({state:[{t:this.shape_323}]},1).to({state:[{t:this.shape_322}]},1).to({state:[{t:this.shape_321}]},1).to({state:[{t:this.shape_320}]},1).to({state:[{t:this.shape_319}]},1).to({state:[{t:this.shape_318}]},1).to({state:[{t:this.shape_319}]},1).to({state:[{t:this.shape_320}]},1).to({state:[{t:this.shape_321}]},1).to({state:[{t:this.shape_322}]},1).to({state:[{t:this.shape_323}]},1).to({state:[{t:this.shape_324}]},1).to({state:[{t:this.shape_325}]},1).to({state:[{t:this.shape_326}]},1).to({state:[{t:this.shape_327}]},1).to({state:[{t:this.shape_328}]},1).to({state:[{t:this.shape_329}]},1).to({state:[{t:this.shape_330}]},1).to({state:[{t:this.shape_331}]},1).to({state:[{t:this.shape_332}]},1).to({state:[{t:this.shape_304}]},1).to({state:[{t:this.shape_332}]},1).to({state:[{t:this.shape_331}]},1).to({state:[{t:this.shape_330}]},1).to({state:[{t:this.shape_329}]},1).to({state:[{t:this.shape_328}]},1).to({state:[{t:this.shape_327}]},1).to({state:[{t:this.shape_326}]},1).to({state:[{t:this.shape_325}]},1).to({state:[{t:this.shape_324}]},1).to({state:[{t:this.shape_323}]},1).to({state:[{t:this.shape_322}]},1).to({state:[{t:this.shape_321}]},1).to({state:[{t:this.shape_320}]},1).to({state:[{t:this.shape_319}]},1).to({state:[{t:this.shape_318}]},1).to({state:[{t:this.shape_319}]},1).to({state:[{t:this.shape_320}]},1).to({state:[{t:this.shape_321}]},1).to({state:[{t:this.shape_322}]},1).to({state:[{t:this.shape_323}]},1).to({state:[{t:this.shape_324}]},1).to({state:[{t:this.shape_325}]},1).to({state:[{t:this.shape_326}]},1).to({state:[{t:this.shape_327}]},1).to({state:[{t:this.shape_328}]},1).to({state:[{t:this.shape_329}]},1).to({state:[{t:this.shape_330}]},1).to({state:[{t:this.shape_331}]},1).to({state:[{t:this.shape_332}]},1).to({state:[{t:this.shape_304}]},1).to({state:[{t:this.shape_332}]},1).to({state:[{t:this.shape_331}]},1).to({state:[{t:this.shape_330}]},1).to({state:[{t:this.shape_329}]},1).to({state:[{t:this.shape_328}]},1).to({state:[{t:this.shape_327}]},1).to({state:[{t:this.shape_326}]},1).to({state:[{t:this.shape_325}]},1).to({state:[{t:this.shape_324}]},1).to({state:[{t:this.shape_323}]},1).to({state:[{t:this.shape_322}]},1).to({state:[{t:this.shape_321}]},1).to({state:[{t:this.shape_320}]},1).to({state:[{t:this.shape_319}]},1).to({state:[{t:this.shape_318}]},1).to({state:[{t:this.shape_319}]},1).to({state:[{t:this.shape_320}]},1).to({state:[{t:this.shape_321}]},1).to({state:[{t:this.shape_322}]},1).to({state:[{t:this.shape_323}]},1).to({state:[{t:this.shape_324}]},1).to({state:[{t:this.shape_325}]},1).to({state:[{t:this.shape_326}]},1).to({state:[{t:this.shape_327}]},1).to({state:[{t:this.shape_328}]},1).to({state:[{t:this.shape_329}]},1).to({state:[{t:this.shape_330}]},1).to({state:[{t:this.shape_331}]},1).to({state:[{t:this.shape_332}]},1).to({state:[{t:this.shape_304}]},1).to({state:[{t:this.shape_332}]},1).to({state:[{t:this.shape_331}]},1).to({state:[{t:this.shape_330}]},1).to({state:[{t:this.shape_329}]},1).to({state:[{t:this.shape_328}]},1).to({state:[{t:this.shape_327}]},1).to({state:[{t:this.shape_326}]},1).to({state:[{t:this.shape_325}]},1).to({state:[{t:this.shape_324}]},1).to({state:[{t:this.shape_323}]},1).to({state:[{t:this.shape_322}]},1).to({state:[{t:this.shape_321}]},1).to({state:[{t:this.shape_320}]},1).to({state:[{t:this.shape_319}]},1).to({state:[{t:this.shape_318}]},1).to({state:[{t:this.shape_319}]},1).to({state:[{t:this.shape_320}]},1).to({state:[{t:this.shape_321}]},1).to({state:[{t:this.shape_322}]},1).to({state:[{t:this.shape_323}]},1).to({state:[{t:this.shape_324}]},1).to({state:[{t:this.shape_325}]},1).to({state:[{t:this.shape_326}]},1).to({state:[{t:this.shape_327}]},1).to({state:[{t:this.shape_328}]},1).to({state:[{t:this.shape_329}]},1).to({state:[{t:this.shape_330}]},1).to({state:[{t:this.shape_331}]},1).to({state:[{t:this.shape_332}]},1).to({state:[{t:this.shape_304}]},1).to({state:[{t:this.shape_332}]},1).to({state:[{t:this.shape_331}]},1).to({state:[{t:this.shape_330}]},1).to({state:[{t:this.shape_329}]},1).to({state:[{t:this.shape_328}]},1).to({state:[{t:this.shape_327}]},1).to({state:[{t:this.shape_326}]},1).to({state:[{t:this.shape_325}]},1).to({state:[{t:this.shape_324}]},1).to({state:[{t:this.shape_323}]},1).to({state:[{t:this.shape_322}]},1).to({state:[{t:this.shape_321}]},1).to({state:[{t:this.shape_320}]},1).to({state:[{t:this.shape_319}]},1).to({state:[{t:this.shape_318}]},1).to({state:[{t:this.shape_319}]},1).to({state:[{t:this.shape_320}]},1).to({state:[{t:this.shape_321}]},1).to({state:[{t:this.shape_322}]},1).to({state:[{t:this.shape_323}]},1).to({state:[{t:this.shape_324}]},1).to({state:[{t:this.shape_325}]},1).to({state:[{t:this.shape_326}]},1).to({state:[{t:this.shape_327}]},1).to({state:[{t:this.shape_328}]},1).to({state:[{t:this.shape_329}]},1).to({state:[{t:this.shape_330}]},1).to({state:[{t:this.shape_331}]},1).to({state:[{t:this.shape_332}]},1).to({state:[{t:this.shape_304}]},1).to({state:[{t:this.shape_332}]},1).to({state:[{t:this.shape_331}]},1).to({state:[{t:this.shape_330}]},1).to({state:[{t:this.shape_329}]},1).to({state:[{t:this.shape_328}]},1).to({state:[{t:this.shape_327}]},1).to({state:[{t:this.shape_326}]},1).to({state:[{t:this.shape_325}]},1).to({state:[{t:this.shape_324}]},1).to({state:[{t:this.shape_323}]},1).to({state:[{t:this.shape_322}]},1).to({state:[{t:this.shape_321}]},1).to({state:[{t:this.shape_320}]},1).to({state:[{t:this.shape_319}]},1).to({state:[{t:this.shape_318}]},1).to({state:[{t:this.shape_319}]},1).to({state:[{t:this.shape_320}]},1).to({state:[{t:this.shape_321}]},1).to({state:[{t:this.shape_322}]},1).to({state:[{t:this.shape_323}]},1).to({state:[{t:this.shape_324}]},1).to({state:[{t:this.shape_325}]},1).to({state:[{t:this.shape_326}]},1).to({state:[{t:this.shape_327}]},1).to({state:[{t:this.shape_328}]},1).to({state:[{t:this.shape_329}]},1).to({state:[{t:this.shape_330}]},1).to({state:[{t:this.shape_331}]},1).to({state:[{t:this.shape_332}]},1).to({state:[{t:this.shape_304}]},1).to({state:[{t:this.shape_332}]},1).to({state:[{t:this.shape_331}]},1).to({state:[{t:this.shape_330}]},1).to({state:[{t:this.shape_329}]},1).to({state:[{t:this.shape_328}]},1).to({state:[{t:this.shape_327}]},1).to({state:[{t:this.shape_326}]},1).to({state:[{t:this.shape_325}]},1).to({state:[{t:this.shape_324}]},1).to({state:[{t:this.shape_323}]},1).to({state:[{t:this.shape_322}]},1).to({state:[{t:this.shape_321}]},1).to({state:[{t:this.shape_320}]},1).to({state:[{t:this.shape_319}]},1).to({state:[{t:this.shape_318}]},1).to({state:[{t:this.shape_319}]},1).to({state:[{t:this.shape_320}]},1).to({state:[{t:this.shape_321}]},1).to({state:[{t:this.shape_322}]},1).to({state:[{t:this.shape_323}]},1).to({state:[{t:this.shape_324}]},1).to({state:[{t:this.shape_325}]},1).to({state:[{t:this.shape_326}]},1).to({state:[{t:this.shape_327}]},1).to({state:[{t:this.shape_328}]},1).to({state:[{t:this.shape_329}]},1).to({state:[{t:this.shape_330}]},1).to({state:[{t:this.shape_331}]},1).to({state:[{t:this.shape_332}]},1).to({state:[{t:this.shape_304}]},1).to({state:[{t:this.shape_332}]},1).to({state:[{t:this.shape_331}]},1).to({state:[{t:this.shape_330}]},1).to({state:[{t:this.shape_329}]},1).to({state:[{t:this.shape_328}]},1).to({state:[{t:this.shape_327}]},1).to({state:[{t:this.shape_326}]},1).to({state:[{t:this.shape_325}]},1).to({state:[{t:this.shape_324}]},1).to({state:[{t:this.shape_323}]},1).to({state:[{t:this.shape_322}]},1).to({state:[{t:this.shape_321}]},1).to({state:[{t:this.shape_320}]},1).to({state:[{t:this.shape_319}]},1).to({state:[{t:this.shape_318}]},1).to({state:[{t:this.shape_319}]},1).to({state:[{t:this.shape_320}]},1).to({state:[{t:this.shape_321}]},1).to({state:[{t:this.shape_322}]},1).to({state:[{t:this.shape_323}]},1).to({state:[{t:this.shape_324}]},1).to({state:[{t:this.shape_325}]},1).to({state:[{t:this.shape_326}]},1).to({state:[{t:this.shape_327}]},1).to({state:[{t:this.shape_328}]},1).to({state:[{t:this.shape_329}]},1).to({state:[{t:this.shape_330}]},1).to({state:[{t:this.shape_331}]},1).to({state:[{t:this.shape_332}]},1).to({state:[{t:this.shape_304}]},1).to({state:[{t:this.shape_332}]},1).to({state:[{t:this.shape_331}]},1).to({state:[{t:this.shape_330}]},1).to({state:[{t:this.shape_329}]},1).to({state:[{t:this.shape_328}]},1).to({state:[{t:this.shape_327}]},1).to({state:[{t:this.shape_326}]},1).to({state:[{t:this.shape_325}]},1).to({state:[{t:this.shape_324}]},1).to({state:[{t:this.shape_323}]},1).to({state:[{t:this.shape_322}]},1).to({state:[{t:this.shape_321}]},1).to({state:[{t:this.shape_320}]},1).to({state:[{t:this.shape_319}]},1).to({state:[{t:this.shape_318}]},1).to({state:[{t:this.shape_319}]},1).to({state:[{t:this.shape_320}]},1).to({state:[{t:this.shape_321}]},1).to({state:[{t:this.shape_322}]},1).to({state:[{t:this.shape_323}]},1).to({state:[{t:this.shape_324}]},1).to({state:[{t:this.shape_325}]},1).to({state:[{t:this.shape_326}]},1).to({state:[{t:this.shape_327}]},1).to({state:[{t:this.shape_328}]},1).to({state:[{t:this.shape_329}]},1).to({state:[{t:this.shape_330}]},1).to({state:[{t:this.shape_331}]},1).to({state:[{t:this.shape_332}]},1).to({state:[{t:this.shape_304}]},1).to({state:[{t:this.shape_304}]},1).to({state:[{t:this.shape_304}]},1).to({state:[{t:this.shape_304}]},1).to({state:[{t:this.shape_304}]},1).to({state:[{t:this.shape_304}]},1).to({state:[{t:this.shape_304}]},1).to({state:[{t:this.shape_304}]},1).to({state:[{t:this.shape_304}]},1).to({state:[{t:this.shape_304}]},1).to({state:[{t:this.shape_304}]},1).to({state:[{t:this.shape_304}]},1).to({state:[{t:this.shape_304}]},1).to({state:[{t:this.shape_304}]},1).to({state:[{t:this.shape_304}]},1).to({state:[{t:this.shape_304}]},1).to({state:[{t:this.shape_304}]},1).to({state:[{t:this.shape_304}]},1).to({state:[{t:this.shape_304}]},1).to({state:[{t:this.shape_304}]},1).to({state:[{t:this.shape_304}]},1).to({state:[{t:this.shape_304}]},1).to({state:[{t:this.shape_304}]},1).to({state:[{t:this.shape_304}]},1).to({state:[{t:this.shape_304}]},1).to({state:[{t:this.shape_304}]},1).to({state:[{t:this.shape_304}]},1).to({state:[{t:this.shape_304}]},1).to({state:[{t:this.shape_304}]},1).to({state:[{t:this.shape_304}]},1).to({state:[{t:this.shape_304}]},1).wait(1)); + this.timeline.addTween(cjs.Tween.get(this.shape_304).to({_off:true},1).wait(28).to({_off:false},0).to({_off:true},1).wait(29).to({_off:false},0).to({_off:true},1).wait(29).to({_off:false},0).to({_off:true},1).wait(29).to({_off:false},0).to({_off:true},1).wait(29).to({_off:false},0).to({_off:true},1).wait(29).to({_off:false},0).to({_off:true},1).wait(29).to({_off:false},0).to({_off:true},1).wait(29).to({_off:false},0).to({_off:true},1).wait(29).to({_off:false},0).to({_off:true},1).wait(29).to({_off:false},0).to({_off:true},1).wait(29).to({_off:false},0).to({_off:true},1).wait(29).to({_off:false},0).to({_off:true},1).wait(29).to({_off:false},0).to({_off:true},1).wait(29).to({_off:false},0).to({_off:true},1).wait(29).to({_off:false},0).to({_off:true},1).wait(29).to({_off:false},0).to({_off:true},1).wait(29).to({_off:false},0).to({_off:true},1).wait(29).to({_off:false},0).to({_off:true},1).wait(29).to({_off:false},0).to({_off:true},1).wait(29).to({_off:false},0).wait(31)); + this.timeline.addTween(cjs.Tween.get(this.shape_318).wait(14).to({_off:false},0).to({_off:true},1).wait(29).to({_off:false},0).to({_off:true},1).wait(29).to({_off:false},0).to({_off:true},1).wait(29).to({_off:false},0).to({_off:true},1).wait(29).to({_off:false},0).to({_off:true},1).wait(29).to({_off:false},0).to({_off:true},1).wait(29).to({_off:false},0).to({_off:true},1).wait(29).to({_off:false},0).to({_off:true},1).wait(29).to({_off:false},0).to({_off:true},1).wait(29).to({_off:false},0).to({_off:true},1).wait(29).to({_off:false},0).to({_off:true},1).wait(29).to({_off:false},0).to({_off:true},1).wait(29).to({_off:false},0).to({_off:true},1).wait(29).to({_off:false},0).to({_off:true},1).wait(29).to({_off:false},0).to({_off:true},1).wait(29).to({_off:false},0).to({_off:true},1).wait(29).to({_off:false},0).to({_off:true},1).wait(29).to({_off:false},0).to({_off:true},1).wait(29).to({_off:false},0).to({_off:true},1).wait(29).to({_off:false},0).to({_off:true},1).wait(45)); + this.timeline.addTween(cjs.Tween.get(this.shape_319).wait(15).to({_off:false},0).to({_off:true},1).wait(27).to({_off:false},0).to({_off:true},1).wait(1).to({_off:false},0).to({_off:true},1).wait(27).to({_off:false},0).to({_off:true},1).wait(1).to({_off:false},0).to({_off:true},1).wait(27).to({_off:false},0).to({_off:true},1).wait(1).to({_off:false},0).to({_off:true},1).wait(27).to({_off:false},0).to({_off:true},1).wait(1).to({_off:false},0).to({_off:true},1).wait(27).to({_off:false},0).to({_off:true},1).wait(1).to({_off:false},0).to({_off:true},1).wait(27).to({_off:false},0).to({_off:true},1).wait(1).to({_off:false},0).to({_off:true},1).wait(27).to({_off:false},0).to({_off:true},1).wait(1).to({_off:false},0).to({_off:true},1).wait(27).to({_off:false},0).to({_off:true},1).wait(1).to({_off:false},0).to({_off:true},1).wait(27).to({_off:false},0).to({_off:true},1).wait(1).to({_off:false},0).to({_off:true},1).wait(27).to({_off:false},0).to({_off:true},1).wait(1).to({_off:false},0).to({_off:true},1).wait(27).to({_off:false},0).to({_off:true},1).wait(1).to({_off:false},0).to({_off:true},1).wait(27).to({_off:false},0).to({_off:true},1).wait(1).to({_off:false},0).to({_off:true},1).wait(27).to({_off:false},0).to({_off:true},1).wait(1).to({_off:false},0).to({_off:true},1).wait(27).to({_off:false},0).to({_off:true},1).wait(1).to({_off:false},0).to({_off:true},1).wait(27).to({_off:false},0).to({_off:true},1).wait(1).to({_off:false},0).to({_off:true},1).wait(27).to({_off:false},0).to({_off:true},1).wait(1).to({_off:false},0).to({_off:true},1).wait(27).to({_off:false},0).to({_off:true},1).wait(1).to({_off:false},0).to({_off:true},1).wait(27).to({_off:false},0).to({_off:true},1).wait(1).to({_off:false},0).to({_off:true},1).wait(27).to({_off:false},0).to({_off:true},1).wait(1).to({_off:false},0).to({_off:true},1).wait(44)); + this.timeline.addTween(cjs.Tween.get(this.shape_320).wait(16).to({_off:false},0).to({_off:true},1).wait(25).to({_off:false},0).to({_off:true},1).wait(3).to({_off:false},0).to({_off:true},1).wait(25).to({_off:false},0).to({_off:true},1).wait(3).to({_off:false},0).to({_off:true},1).wait(25).to({_off:false},0).to({_off:true},1).wait(3).to({_off:false},0).to({_off:true},1).wait(25).to({_off:false},0).to({_off:true},1).wait(3).to({_off:false},0).to({_off:true},1).wait(25).to({_off:false},0).to({_off:true},1).wait(3).to({_off:false},0).to({_off:true},1).wait(25).to({_off:false},0).to({_off:true},1).wait(3).to({_off:false},0).to({_off:true},1).wait(25).to({_off:false},0).to({_off:true},1).wait(3).to({_off:false},0).to({_off:true},1).wait(25).to({_off:false},0).to({_off:true},1).wait(3).to({_off:false},0).to({_off:true},1).wait(25).to({_off:false},0).to({_off:true},1).wait(3).to({_off:false},0).to({_off:true},1).wait(25).to({_off:false},0).to({_off:true},1).wait(3).to({_off:false},0).to({_off:true},1).wait(25).to({_off:false},0).to({_off:true},1).wait(3).to({_off:false},0).to({_off:true},1).wait(25).to({_off:false},0).to({_off:true},1).wait(3).to({_off:false},0).to({_off:true},1).wait(25).to({_off:false},0).to({_off:true},1).wait(3).to({_off:false},0).to({_off:true},1).wait(25).to({_off:false},0).to({_off:true},1).wait(3).to({_off:false},0).to({_off:true},1).wait(25).to({_off:false},0).to({_off:true},1).wait(3).to({_off:false},0).to({_off:true},1).wait(25).to({_off:false},0).to({_off:true},1).wait(3).to({_off:false},0).to({_off:true},1).wait(25).to({_off:false},0).to({_off:true},1).wait(3).to({_off:false},0).to({_off:true},1).wait(25).to({_off:false},0).to({_off:true},1).wait(3).to({_off:false},0).to({_off:true},1).wait(25).to({_off:false},0).to({_off:true},1).wait(3).to({_off:false},0).to({_off:true},1).wait(43)); + this.timeline.addTween(cjs.Tween.get(this.shape_321).wait(17).to({_off:false},0).to({_off:true},1).wait(23).to({_off:false},0).to({_off:true},1).wait(5).to({_off:false},0).to({_off:true},1).wait(23).to({_off:false},0).to({_off:true},1).wait(5).to({_off:false},0).to({_off:true},1).wait(23).to({_off:false},0).to({_off:true},1).wait(5).to({_off:false},0).to({_off:true},1).wait(23).to({_off:false},0).to({_off:true},1).wait(5).to({_off:false},0).to({_off:true},1).wait(23).to({_off:false},0).to({_off:true},1).wait(5).to({_off:false},0).to({_off:true},1).wait(23).to({_off:false},0).to({_off:true},1).wait(5).to({_off:false},0).to({_off:true},1).wait(23).to({_off:false},0).to({_off:true},1).wait(5).to({_off:false},0).to({_off:true},1).wait(23).to({_off:false},0).to({_off:true},1).wait(5).to({_off:false},0).to({_off:true},1).wait(23).to({_off:false},0).to({_off:true},1).wait(5).to({_off:false},0).to({_off:true},1).wait(23).to({_off:false},0).to({_off:true},1).wait(5).to({_off:false},0).to({_off:true},1).wait(23).to({_off:false},0).to({_off:true},1).wait(5).to({_off:false},0).to({_off:true},1).wait(23).to({_off:false},0).to({_off:true},1).wait(5).to({_off:false},0).to({_off:true},1).wait(23).to({_off:false},0).to({_off:true},1).wait(5).to({_off:false},0).to({_off:true},1).wait(23).to({_off:false},0).to({_off:true},1).wait(5).to({_off:false},0).to({_off:true},1).wait(23).to({_off:false},0).to({_off:true},1).wait(5).to({_off:false},0).to({_off:true},1).wait(23).to({_off:false},0).to({_off:true},1).wait(5).to({_off:false},0).to({_off:true},1).wait(23).to({_off:false},0).to({_off:true},1).wait(5).to({_off:false},0).to({_off:true},1).wait(23).to({_off:false},0).to({_off:true},1).wait(5).to({_off:false},0).to({_off:true},1).wait(23).to({_off:false},0).to({_off:true},1).wait(5).to({_off:false},0).to({_off:true},1).wait(42)); + this.timeline.addTween(cjs.Tween.get(this.shape_322).wait(18).to({_off:false},0).to({_off:true},1).wait(21).to({_off:false},0).to({_off:true},1).wait(7).to({_off:false},0).to({_off:true},1).wait(21).to({_off:false},0).to({_off:true},1).wait(7).to({_off:false},0).to({_off:true},1).wait(21).to({_off:false},0).to({_off:true},1).wait(7).to({_off:false},0).to({_off:true},1).wait(21).to({_off:false},0).to({_off:true},1).wait(7).to({_off:false},0).to({_off:true},1).wait(21).to({_off:false},0).to({_off:true},1).wait(7).to({_off:false},0).to({_off:true},1).wait(21).to({_off:false},0).to({_off:true},1).wait(7).to({_off:false},0).to({_off:true},1).wait(21).to({_off:false},0).to({_off:true},1).wait(7).to({_off:false},0).to({_off:true},1).wait(21).to({_off:false},0).to({_off:true},1).wait(7).to({_off:false},0).to({_off:true},1).wait(21).to({_off:false},0).to({_off:true},1).wait(7).to({_off:false},0).to({_off:true},1).wait(21).to({_off:false},0).to({_off:true},1).wait(7).to({_off:false},0).to({_off:true},1).wait(21).to({_off:false},0).to({_off:true},1).wait(7).to({_off:false},0).to({_off:true},1).wait(21).to({_off:false},0).to({_off:true},1).wait(7).to({_off:false},0).to({_off:true},1).wait(21).to({_off:false},0).to({_off:true},1).wait(7).to({_off:false},0).to({_off:true},1).wait(21).to({_off:false},0).to({_off:true},1).wait(7).to({_off:false},0).to({_off:true},1).wait(21).to({_off:false},0).to({_off:true},1).wait(7).to({_off:false},0).to({_off:true},1).wait(21).to({_off:false},0).to({_off:true},1).wait(7).to({_off:false},0).to({_off:true},1).wait(21).to({_off:false},0).to({_off:true},1).wait(7).to({_off:false},0).to({_off:true},1).wait(21).to({_off:false},0).to({_off:true},1).wait(7).to({_off:false},0).to({_off:true},1).wait(21).to({_off:false},0).to({_off:true},1).wait(7).to({_off:false},0).to({_off:true},1).wait(41)); + this.timeline.addTween(cjs.Tween.get(this.shape_323).wait(19).to({_off:false},0).to({_off:true},1).wait(19).to({_off:false},0).to({_off:true},1).wait(9).to({_off:false},0).to({_off:true},1).wait(19).to({_off:false},0).to({_off:true},1).wait(9).to({_off:false},0).to({_off:true},1).wait(19).to({_off:false},0).to({_off:true},1).wait(9).to({_off:false},0).to({_off:true},1).wait(19).to({_off:false},0).to({_off:true},1).wait(9).to({_off:false},0).to({_off:true},1).wait(19).to({_off:false},0).to({_off:true},1).wait(9).to({_off:false},0).to({_off:true},1).wait(19).to({_off:false},0).to({_off:true},1).wait(9).to({_off:false},0).to({_off:true},1).wait(19).to({_off:false},0).to({_off:true},1).wait(9).to({_off:false},0).to({_off:true},1).wait(19).to({_off:false},0).to({_off:true},1).wait(9).to({_off:false},0).to({_off:true},1).wait(19).to({_off:false},0).to({_off:true},1).wait(9).to({_off:false},0).to({_off:true},1).wait(19).to({_off:false},0).to({_off:true},1).wait(9).to({_off:false},0).to({_off:true},1).wait(19).to({_off:false},0).to({_off:true},1).wait(9).to({_off:false},0).to({_off:true},1).wait(19).to({_off:false},0).to({_off:true},1).wait(9).to({_off:false},0).to({_off:true},1).wait(19).to({_off:false},0).to({_off:true},1).wait(9).to({_off:false},0).to({_off:true},1).wait(19).to({_off:false},0).to({_off:true},1).wait(9).to({_off:false},0).to({_off:true},1).wait(19).to({_off:false},0).to({_off:true},1).wait(9).to({_off:false},0).to({_off:true},1).wait(19).to({_off:false},0).to({_off:true},1).wait(9).to({_off:false},0).to({_off:true},1).wait(19).to({_off:false},0).to({_off:true},1).wait(9).to({_off:false},0).to({_off:true},1).wait(19).to({_off:false},0).to({_off:true},1).wait(9).to({_off:false},0).to({_off:true},1).wait(19).to({_off:false},0).to({_off:true},1).wait(9).to({_off:false},0).to({_off:true},1).wait(40)); + this.timeline.addTween(cjs.Tween.get(this.shape_324).wait(20).to({_off:false},0).to({_off:true},1).wait(17).to({_off:false},0).to({_off:true},1).wait(11).to({_off:false},0).to({_off:true},1).wait(17).to({_off:false},0).to({_off:true},1).wait(11).to({_off:false},0).to({_off:true},1).wait(17).to({_off:false},0).to({_off:true},1).wait(11).to({_off:false},0).to({_off:true},1).wait(17).to({_off:false},0).to({_off:true},1).wait(11).to({_off:false},0).to({_off:true},1).wait(17).to({_off:false},0).to({_off:true},1).wait(11).to({_off:false},0).to({_off:true},1).wait(17).to({_off:false},0).to({_off:true},1).wait(11).to({_off:false},0).to({_off:true},1).wait(17).to({_off:false},0).to({_off:true},1).wait(11).to({_off:false},0).to({_off:true},1).wait(17).to({_off:false},0).to({_off:true},1).wait(11).to({_off:false},0).to({_off:true},1).wait(17).to({_off:false},0).to({_off:true},1).wait(11).to({_off:false},0).to({_off:true},1).wait(17).to({_off:false},0).to({_off:true},1).wait(11).to({_off:false},0).to({_off:true},1).wait(17).to({_off:false},0).to({_off:true},1).wait(11).to({_off:false},0).to({_off:true},1).wait(17).to({_off:false},0).to({_off:true},1).wait(11).to({_off:false},0).to({_off:true},1).wait(17).to({_off:false},0).to({_off:true},1).wait(11).to({_off:false},0).to({_off:true},1).wait(17).to({_off:false},0).to({_off:true},1).wait(11).to({_off:false},0).to({_off:true},1).wait(17).to({_off:false},0).to({_off:true},1).wait(11).to({_off:false},0).to({_off:true},1).wait(17).to({_off:false},0).to({_off:true},1).wait(11).to({_off:false},0).to({_off:true},1).wait(17).to({_off:false},0).to({_off:true},1).wait(11).to({_off:false},0).to({_off:true},1).wait(17).to({_off:false},0).to({_off:true},1).wait(11).to({_off:false},0).to({_off:true},1).wait(17).to({_off:false},0).to({_off:true},1).wait(11).to({_off:false},0).to({_off:true},1).wait(39)); + this.timeline.addTween(cjs.Tween.get(this.shape_325).wait(21).to({_off:false},0).to({_off:true},1).wait(15).to({_off:false},0).to({_off:true},1).wait(13).to({_off:false},0).to({_off:true},1).wait(15).to({_off:false},0).to({_off:true},1).wait(13).to({_off:false},0).to({_off:true},1).wait(15).to({_off:false},0).to({_off:true},1).wait(13).to({_off:false},0).to({_off:true},1).wait(15).to({_off:false},0).to({_off:true},1).wait(13).to({_off:false},0).to({_off:true},1).wait(15).to({_off:false},0).to({_off:true},1).wait(13).to({_off:false},0).to({_off:true},1).wait(15).to({_off:false},0).to({_off:true},1).wait(13).to({_off:false},0).to({_off:true},1).wait(15).to({_off:false},0).to({_off:true},1).wait(13).to({_off:false},0).to({_off:true},1).wait(15).to({_off:false},0).to({_off:true},1).wait(13).to({_off:false},0).to({_off:true},1).wait(15).to({_off:false},0).to({_off:true},1).wait(13).to({_off:false},0).to({_off:true},1).wait(15).to({_off:false},0).to({_off:true},1).wait(13).to({_off:false},0).to({_off:true},1).wait(15).to({_off:false},0).to({_off:true},1).wait(13).to({_off:false},0).to({_off:true},1).wait(15).to({_off:false},0).to({_off:true},1).wait(13).to({_off:false},0).to({_off:true},1).wait(15).to({_off:false},0).to({_off:true},1).wait(13).to({_off:false},0).to({_off:true},1).wait(15).to({_off:false},0).to({_off:true},1).wait(13).to({_off:false},0).to({_off:true},1).wait(15).to({_off:false},0).to({_off:true},1).wait(13).to({_off:false},0).to({_off:true},1).wait(15).to({_off:false},0).to({_off:true},1).wait(13).to({_off:false},0).to({_off:true},1).wait(15).to({_off:false},0).to({_off:true},1).wait(13).to({_off:false},0).to({_off:true},1).wait(15).to({_off:false},0).to({_off:true},1).wait(13).to({_off:false},0).to({_off:true},1).wait(15).to({_off:false},0).to({_off:true},1).wait(13).to({_off:false},0).to({_off:true},1).wait(38)); + this.timeline.addTween(cjs.Tween.get(this.shape_326).wait(22).to({_off:false},0).to({_off:true},1).wait(13).to({_off:false},0).to({_off:true},1).wait(15).to({_off:false},0).to({_off:true},1).wait(13).to({_off:false},0).to({_off:true},1).wait(15).to({_off:false},0).to({_off:true},1).wait(13).to({_off:false},0).to({_off:true},1).wait(15).to({_off:false},0).to({_off:true},1).wait(13).to({_off:false},0).to({_off:true},1).wait(15).to({_off:false},0).to({_off:true},1).wait(13).to({_off:false},0).to({_off:true},1).wait(15).to({_off:false},0).to({_off:true},1).wait(13).to({_off:false},0).to({_off:true},1).wait(15).to({_off:false},0).to({_off:true},1).wait(13).to({_off:false},0).to({_off:true},1).wait(15).to({_off:false},0).to({_off:true},1).wait(13).to({_off:false},0).to({_off:true},1).wait(15).to({_off:false},0).to({_off:true},1).wait(13).to({_off:false},0).to({_off:true},1).wait(15).to({_off:false},0).to({_off:true},1).wait(13).to({_off:false},0).to({_off:true},1).wait(15).to({_off:false},0).to({_off:true},1).wait(13).to({_off:false},0).to({_off:true},1).wait(15).to({_off:false},0).to({_off:true},1).wait(13).to({_off:false},0).to({_off:true},1).wait(15).to({_off:false},0).to({_off:true},1).wait(13).to({_off:false},0).to({_off:true},1).wait(15).to({_off:false},0).to({_off:true},1).wait(13).to({_off:false},0).to({_off:true},1).wait(15).to({_off:false},0).to({_off:true},1).wait(13).to({_off:false},0).to({_off:true},1).wait(15).to({_off:false},0).to({_off:true},1).wait(13).to({_off:false},0).to({_off:true},1).wait(15).to({_off:false},0).to({_off:true},1).wait(13).to({_off:false},0).to({_off:true},1).wait(15).to({_off:false},0).to({_off:true},1).wait(13).to({_off:false},0).to({_off:true},1).wait(15).to({_off:false},0).to({_off:true},1).wait(13).to({_off:false},0).to({_off:true},1).wait(15).to({_off:false},0).to({_off:true},1).wait(37)); + this.timeline.addTween(cjs.Tween.get(this.shape_327).wait(23).to({_off:false},0).to({_off:true},1).wait(11).to({_off:false},0).to({_off:true},1).wait(17).to({_off:false},0).to({_off:true},1).wait(11).to({_off:false},0).to({_off:true},1).wait(17).to({_off:false},0).to({_off:true},1).wait(11).to({_off:false},0).to({_off:true},1).wait(17).to({_off:false},0).to({_off:true},1).wait(11).to({_off:false},0).to({_off:true},1).wait(17).to({_off:false},0).to({_off:true},1).wait(11).to({_off:false},0).to({_off:true},1).wait(17).to({_off:false},0).to({_off:true},1).wait(11).to({_off:false},0).to({_off:true},1).wait(17).to({_off:false},0).to({_off:true},1).wait(11).to({_off:false},0).to({_off:true},1).wait(17).to({_off:false},0).to({_off:true},1).wait(11).to({_off:false},0).to({_off:true},1).wait(17).to({_off:false},0).to({_off:true},1).wait(11).to({_off:false},0).to({_off:true},1).wait(17).to({_off:false},0).to({_off:true},1).wait(11).to({_off:false},0).to({_off:true},1).wait(17).to({_off:false},0).to({_off:true},1).wait(11).to({_off:false},0).to({_off:true},1).wait(17).to({_off:false},0).to({_off:true},1).wait(11).to({_off:false},0).to({_off:true},1).wait(17).to({_off:false},0).to({_off:true},1).wait(11).to({_off:false},0).to({_off:true},1).wait(17).to({_off:false},0).to({_off:true},1).wait(11).to({_off:false},0).to({_off:true},1).wait(17).to({_off:false},0).to({_off:true},1).wait(11).to({_off:false},0).to({_off:true},1).wait(17).to({_off:false},0).to({_off:true},1).wait(11).to({_off:false},0).to({_off:true},1).wait(17).to({_off:false},0).to({_off:true},1).wait(11).to({_off:false},0).to({_off:true},1).wait(17).to({_off:false},0).to({_off:true},1).wait(11).to({_off:false},0).to({_off:true},1).wait(17).to({_off:false},0).to({_off:true},1).wait(11).to({_off:false},0).to({_off:true},1).wait(17).to({_off:false},0).to({_off:true},1).wait(36)); + this.timeline.addTween(cjs.Tween.get(this.shape_328).wait(24).to({_off:false},0).to({_off:true},1).wait(9).to({_off:false},0).to({_off:true},1).wait(19).to({_off:false},0).to({_off:true},1).wait(9).to({_off:false},0).to({_off:true},1).wait(19).to({_off:false},0).to({_off:true},1).wait(9).to({_off:false},0).to({_off:true},1).wait(19).to({_off:false},0).to({_off:true},1).wait(9).to({_off:false},0).to({_off:true},1).wait(19).to({_off:false},0).to({_off:true},1).wait(9).to({_off:false},0).to({_off:true},1).wait(19).to({_off:false},0).to({_off:true},1).wait(9).to({_off:false},0).to({_off:true},1).wait(19).to({_off:false},0).to({_off:true},1).wait(9).to({_off:false},0).to({_off:true},1).wait(19).to({_off:false},0).to({_off:true},1).wait(9).to({_off:false},0).to({_off:true},1).wait(19).to({_off:false},0).to({_off:true},1).wait(9).to({_off:false},0).to({_off:true},1).wait(19).to({_off:false},0).to({_off:true},1).wait(9).to({_off:false},0).to({_off:true},1).wait(19).to({_off:false},0).to({_off:true},1).wait(9).to({_off:false},0).to({_off:true},1).wait(19).to({_off:false},0).to({_off:true},1).wait(9).to({_off:false},0).to({_off:true},1).wait(19).to({_off:false},0).to({_off:true},1).wait(9).to({_off:false},0).to({_off:true},1).wait(19).to({_off:false},0).to({_off:true},1).wait(9).to({_off:false},0).to({_off:true},1).wait(19).to({_off:false},0).to({_off:true},1).wait(9).to({_off:false},0).to({_off:true},1).wait(19).to({_off:false},0).to({_off:true},1).wait(9).to({_off:false},0).to({_off:true},1).wait(19).to({_off:false},0).to({_off:true},1).wait(9).to({_off:false},0).to({_off:true},1).wait(19).to({_off:false},0).to({_off:true},1).wait(9).to({_off:false},0).to({_off:true},1).wait(19).to({_off:false},0).to({_off:true},1).wait(9).to({_off:false},0).to({_off:true},1).wait(19).to({_off:false},0).to({_off:true},1).wait(35)); + this.timeline.addTween(cjs.Tween.get(this.shape_329).wait(25).to({_off:false},0).to({_off:true},1).wait(7).to({_off:false},0).to({_off:true},1).wait(21).to({_off:false},0).to({_off:true},1).wait(7).to({_off:false},0).to({_off:true},1).wait(21).to({_off:false},0).to({_off:true},1).wait(7).to({_off:false},0).to({_off:true},1).wait(21).to({_off:false},0).to({_off:true},1).wait(7).to({_off:false},0).to({_off:true},1).wait(21).to({_off:false},0).to({_off:true},1).wait(7).to({_off:false},0).to({_off:true},1).wait(21).to({_off:false},0).to({_off:true},1).wait(7).to({_off:false},0).to({_off:true},1).wait(21).to({_off:false},0).to({_off:true},1).wait(7).to({_off:false},0).to({_off:true},1).wait(21).to({_off:false},0).to({_off:true},1).wait(7).to({_off:false},0).to({_off:true},1).wait(21).to({_off:false},0).to({_off:true},1).wait(7).to({_off:false},0).to({_off:true},1).wait(21).to({_off:false},0).to({_off:true},1).wait(7).to({_off:false},0).to({_off:true},1).wait(21).to({_off:false},0).to({_off:true},1).wait(7).to({_off:false},0).to({_off:true},1).wait(21).to({_off:false},0).to({_off:true},1).wait(7).to({_off:false},0).to({_off:true},1).wait(21).to({_off:false},0).to({_off:true},1).wait(7).to({_off:false},0).to({_off:true},1).wait(21).to({_off:false},0).to({_off:true},1).wait(7).to({_off:false},0).to({_off:true},1).wait(21).to({_off:false},0).to({_off:true},1).wait(7).to({_off:false},0).to({_off:true},1).wait(21).to({_off:false},0).to({_off:true},1).wait(7).to({_off:false},0).to({_off:true},1).wait(21).to({_off:false},0).to({_off:true},1).wait(7).to({_off:false},0).to({_off:true},1).wait(21).to({_off:false},0).to({_off:true},1).wait(7).to({_off:false},0).to({_off:true},1).wait(21).to({_off:false},0).to({_off:true},1).wait(7).to({_off:false},0).to({_off:true},1).wait(21).to({_off:false},0).to({_off:true},1).wait(34)); + this.timeline.addTween(cjs.Tween.get(this.shape_330).wait(26).to({_off:false},0).to({_off:true},1).wait(5).to({_off:false},0).to({_off:true},1).wait(23).to({_off:false},0).to({_off:true},1).wait(5).to({_off:false},0).to({_off:true},1).wait(23).to({_off:false},0).to({_off:true},1).wait(5).to({_off:false},0).to({_off:true},1).wait(23).to({_off:false},0).to({_off:true},1).wait(5).to({_off:false},0).to({_off:true},1).wait(23).to({_off:false},0).to({_off:true},1).wait(5).to({_off:false},0).to({_off:true},1).wait(23).to({_off:false},0).to({_off:true},1).wait(5).to({_off:false},0).to({_off:true},1).wait(23).to({_off:false},0).to({_off:true},1).wait(5).to({_off:false},0).to({_off:true},1).wait(23).to({_off:false},0).to({_off:true},1).wait(5).to({_off:false},0).to({_off:true},1).wait(23).to({_off:false},0).to({_off:true},1).wait(5).to({_off:false},0).to({_off:true},1).wait(23).to({_off:false},0).to({_off:true},1).wait(5).to({_off:false},0).to({_off:true},1).wait(23).to({_off:false},0).to({_off:true},1).wait(5).to({_off:false},0).to({_off:true},1).wait(23).to({_off:false},0).to({_off:true},1).wait(5).to({_off:false},0).to({_off:true},1).wait(23).to({_off:false},0).to({_off:true},1).wait(5).to({_off:false},0).to({_off:true},1).wait(23).to({_off:false},0).to({_off:true},1).wait(5).to({_off:false},0).to({_off:true},1).wait(23).to({_off:false},0).to({_off:true},1).wait(5).to({_off:false},0).to({_off:true},1).wait(23).to({_off:false},0).to({_off:true},1).wait(5).to({_off:false},0).to({_off:true},1).wait(23).to({_off:false},0).to({_off:true},1).wait(5).to({_off:false},0).to({_off:true},1).wait(23).to({_off:false},0).to({_off:true},1).wait(5).to({_off:false},0).to({_off:true},1).wait(23).to({_off:false},0).to({_off:true},1).wait(5).to({_off:false},0).to({_off:true},1).wait(23).to({_off:false},0).to({_off:true},1).wait(33)); + this.timeline.addTween(cjs.Tween.get(this.shape_331).wait(27).to({_off:false},0).to({_off:true},1).wait(3).to({_off:false},0).to({_off:true},1).wait(25).to({_off:false},0).to({_off:true},1).wait(3).to({_off:false},0).to({_off:true},1).wait(25).to({_off:false},0).to({_off:true},1).wait(3).to({_off:false},0).to({_off:true},1).wait(25).to({_off:false},0).to({_off:true},1).wait(3).to({_off:false},0).to({_off:true},1).wait(25).to({_off:false},0).to({_off:true},1).wait(3).to({_off:false},0).to({_off:true},1).wait(25).to({_off:false},0).to({_off:true},1).wait(3).to({_off:false},0).to({_off:true},1).wait(25).to({_off:false},0).to({_off:true},1).wait(3).to({_off:false},0).to({_off:true},1).wait(25).to({_off:false},0).to({_off:true},1).wait(3).to({_off:false},0).to({_off:true},1).wait(25).to({_off:false},0).to({_off:true},1).wait(3).to({_off:false},0).to({_off:true},1).wait(25).to({_off:false},0).to({_off:true},1).wait(3).to({_off:false},0).to({_off:true},1).wait(25).to({_off:false},0).to({_off:true},1).wait(3).to({_off:false},0).to({_off:true},1).wait(25).to({_off:false},0).to({_off:true},1).wait(3).to({_off:false},0).to({_off:true},1).wait(25).to({_off:false},0).to({_off:true},1).wait(3).to({_off:false},0).to({_off:true},1).wait(25).to({_off:false},0).to({_off:true},1).wait(3).to({_off:false},0).to({_off:true},1).wait(25).to({_off:false},0).to({_off:true},1).wait(3).to({_off:false},0).to({_off:true},1).wait(25).to({_off:false},0).to({_off:true},1).wait(3).to({_off:false},0).to({_off:true},1).wait(25).to({_off:false},0).to({_off:true},1).wait(3).to({_off:false},0).to({_off:true},1).wait(25).to({_off:false},0).to({_off:true},1).wait(3).to({_off:false},0).to({_off:true},1).wait(25).to({_off:false},0).to({_off:true},1).wait(3).to({_off:false},0).to({_off:true},1).wait(25).to({_off:false},0).to({_off:true},1).wait(32)); + this.timeline.addTween(cjs.Tween.get(this.shape_332).wait(28).to({_off:false},0).to({_off:true},1).wait(1).to({_off:false},0).to({_off:true},1).wait(27).to({_off:false},0).to({_off:true},1).wait(1).to({_off:false},0).to({_off:true},1).wait(27).to({_off:false},0).to({_off:true},1).wait(1).to({_off:false},0).to({_off:true},1).wait(27).to({_off:false},0).to({_off:true},1).wait(1).to({_off:false},0).to({_off:true},1).wait(27).to({_off:false},0).to({_off:true},1).wait(1).to({_off:false},0).to({_off:true},1).wait(27).to({_off:false},0).to({_off:true},1).wait(1).to({_off:false},0).to({_off:true},1).wait(27).to({_off:false},0).to({_off:true},1).wait(1).to({_off:false},0).to({_off:true},1).wait(27).to({_off:false},0).to({_off:true},1).wait(1).to({_off:false},0).to({_off:true},1).wait(27).to({_off:false},0).to({_off:true},1).wait(1).to({_off:false},0).to({_off:true},1).wait(27).to({_off:false},0).to({_off:true},1).wait(1).to({_off:false},0).to({_off:true},1).wait(27).to({_off:false},0).to({_off:true},1).wait(1).to({_off:false},0).to({_off:true},1).wait(27).to({_off:false},0).to({_off:true},1).wait(1).to({_off:false},0).to({_off:true},1).wait(27).to({_off:false},0).to({_off:true},1).wait(1).to({_off:false},0).to({_off:true},1).wait(27).to({_off:false},0).to({_off:true},1).wait(1).to({_off:false},0).to({_off:true},1).wait(27).to({_off:false},0).to({_off:true},1).wait(1).to({_off:false},0).to({_off:true},1).wait(27).to({_off:false},0).to({_off:true},1).wait(1).to({_off:false},0).to({_off:true},1).wait(27).to({_off:false},0).to({_off:true},1).wait(1).to({_off:false},0).to({_off:true},1).wait(27).to({_off:false},0).to({_off:true},1).wait(1).to({_off:false},0).to({_off:true},1).wait(27).to({_off:false},0).to({_off:true},1).wait(1).to({_off:false},0).to({_off:true},1).wait(27).to({_off:false},0).to({_off:true},1).wait(31)); + + // 组_13 + this.instance_116 = new lib.组13(); + this.instance_116.setTransform(763,259); + + this.timeline.addTween(cjs.Tween.get(this.instance_116).wait(630)); + + // 图层_1 + this.instance_117 = new lib.背景(); + + this.timeline.addTween(cjs.Tween.get(this.instance_117).wait(630)); + + // 图层_1 + this.instance_118 = new lib.CachedBmp_56(); + this.instance_118.setTransform(425.55,227.9,0.5,0.5); + + this.instance_119 = new lib.CachedBmp_55(); + this.instance_119.setTransform(291.55,205.85,0.5,0.5); + + this.instance_120 = new lib.CachedBmp_54(); + this.instance_120.setTransform(317.05,227.9,0.5,0.5); + + this.timeline.addTween(cjs.Tween.get({}).to({state:[{t:this.instance_120},{t:this.instance_119},{t:this.instance_118}]}).to({state:[]},1).wait(629)); + + this._renderFirstFrame(); + +}).prototype = p = new cjs.MovieClip(); +p.nominalBounds = new cjs.Rectangle(0,-43.6,1280,763.6); + + +// stage content: +(lib.踩气球_HTML5Canvas = function(mode,startPosition,loop,reversed) { +if (loop == null) { loop = true; } +if (reversed == null) { reversed = false; } + var props = new Object(); + props.mode = mode; + props.startPosition = startPosition; + props.labels = {}; + props.loop = loop; + props.reversed = reversed; + cjs.MovieClip.apply(this,[props]); + + this._renderFirstFrame(); + +}).prototype = p = new lib.AnMovieClip(); +p.nominalBounds = new cjs.Rectangle(0,0,0,0); +// library properties: +lib.properties = { + id: '621EBFAF54FE46DEB30E61D572075CE2', + width: 1280, + height: 720, + fps: 20, + color: "#FFFFFF", + opacity: 1.00, + manifest: [ + {src:"images/source_code_atlas_1.png", id:"source_code_atlas_1"} + ], + preloads: [] +}; + + + +// bootstrap callback support: + +(lib.Stage = function(canvas) { + createjs.Stage.call(this, canvas); +}).prototype = p = new createjs.Stage(); + +p.setAutoPlay = function(autoPlay) { + this.tickEnabled = autoPlay; +} +p.play = function() { this.tickEnabled = true; this.getChildAt(0).gotoAndPlay(this.getTimelinePosition()) } +p.stop = function(ms) { if(ms) this.seek(ms); this.tickEnabled = false; } +p.seek = function(ms) { this.tickEnabled = true; this.getChildAt(0).gotoAndStop(lib.properties.fps * ms / 1000); } +p.getDuration = function() { return this.getChildAt(0).totalFrames / lib.properties.fps * 1000; } + +p.getTimelinePosition = function() { return this.getChildAt(0).currentFrame / lib.properties.fps * 1000; } + +an.bootcompsLoaded = an.bootcompsLoaded || []; +if(!an.bootstrapListeners) { + an.bootstrapListeners=[]; +} + +an.bootstrapCallback=function(fnCallback) { + an.bootstrapListeners.push(fnCallback); + if(an.bootcompsLoaded.length > 0) { + for(var i=0; i{ + leftCount = Math.round((endCountTime - Date.now()) / 1000); + stage.removeChild(this.text); + this.update(leftCount); + }, 1000); +}; + +// 更新倒计时文本 +Count.prototype.update = function (time) { + if (time <= 0) { + // 发送倒计时结束的消息 + clearInterval(this.timer); + stage.removeChild(this.text); + stage.removeChild(this.modal); + // sendEndCountRequest(); // 发送倒计时结束的消息 + this.countEnd(); + return; + } + + this.renderText(time); +}; + +// 渲染文本 +Count.prototype.renderText = function (time) { + const text = new createjs.Text(time, 'bold 100px Arial', '#87431c'); + text.x = this.lib.properties.width / 2; + text.y = this.lib.properties.height / 2 + 20; + text.textAlign = 'center'; + text.textBaseline = 'alphabetic'; + this.text = text; + stage.addChild(text); +}; + +// 结束倒计时 开始游戏 +Count.prototype.countEnd = function () { + // 执行结束后的回调 + this.countEndCallback(); +}; diff --git a/src/classes/demo.js b/src/classes/demo.js new file mode 100644 index 0000000..2798828 --- /dev/null +++ b/src/classes/demo.js @@ -0,0 +1,47 @@ +/** + * 演示模式类 + * @property {object} lib 库对象 + * @property {object} stopDemo 面板元素对象 + */ +function Demo() { + this.lib = library; + + this.stopDemo = null; +} + +Demo.of = (function () { + let instance = null; + return function () { + if (!instance) { + instance = new Demo(); + } + instance.init(); + return instance; + }; +})(); + +// 初始化 +Demo.prototype.init = function () { + this.showStopDemo(); +}; + +// 显示演示模式按钮 +Demo.prototype.showStopDemo = function () { + const lib = this.lib; + const stopDemo = new lib.stopDemo(); + stopDemo.x = 50; + stopDemo.y = lib.properties.height - 100; + this.stopDemo = stopDemo; + // 关闭演示模式 + this.stopDemo.addEventListener( + 'click', + function () { + stage.removeChild(stopDemo); + location.hash = ''; + location.reload(); + isDemo = false; + }, + false, + ); + stage.addChild(stopDemo); +}; diff --git a/src/classes/end.js b/src/classes/end.js new file mode 100644 index 0000000..1347e95 --- /dev/null +++ b/src/classes/end.js @@ -0,0 +1,65 @@ +/** + * 游戏结束 + * @param {number} score 最终得分 + * + * @property {object} lib 资源对象 + * @property {number} score 最终得分 + * @property {object} modal 面板元素对象 + * @property {object} text 文本元素对象 + */ +function End(score) { + this.lib = library; + + this.score = score; + + this.modal = null; + this.text = null; +} + +/** + * 静态方法 封装new init 返回实例 + * @param {number} score 最终得分 + * @returns + */ +End.of = (function () { + let instance = null; + return function (score) { + if (!instance) { + instance = new End(score); + } + instance.init(); + return instance; + }; +})(); + +// 初始化 +End.prototype.init = function () { + this.renderModal(); + this.renderText(this.score); + Again.of(); +}; + +// 渲染背景面板 +End.prototype.renderModal = function () { + const lib = this.lib; + const target = new lib.bgModalEnd(); + target.x = lib.properties.width / 2; + target.y = lib.properties.height / 2; + this.modal = target; + stage.addChild(target); +}; + +/** + * 渲染得分文本对象 + * @param {number} score 最终得分 + */ +End.prototype.renderText = function (score) { + const lib = this.lib; + const target = new createjs.Text(score, 'bold 100px Arial', '#793b18'); + target.x = lib.properties.width / 2; + target.y = lib.properties.height / 2 + 70; + target.textAlign = 'center'; + target.textBaseline = 'alphabetic'; + this.text = target; + stage.addChild(target); +}; diff --git a/src/classes/level.js b/src/classes/level.js new file mode 100644 index 0000000..8ea9a13 --- /dev/null +++ b/src/classes/level.js @@ -0,0 +1,34 @@ +/** + * 难度等级类 + * @param {number} level 等级数字代码 + */ +function Level(level) { + this.lib = library; + + this.level = level; +} + +/** + * 静态方法 封装new init 返回实例 + * @param {number} level 等级数值 + * @returns + */ +Level.of = function (level) { + const instance = new Level(level); + instance.init(); + return instance; +}; + +// 初始化 渲染 +// 更新config中的level属性 +Level.prototype.init = function () { + const initX = this.lib.properties.width / 2; + const initY = 80; + const target = new this.lib.Level(); + target.x = initX; + target.y = initY; + + target.gotoAndStop(`level-${this.level}`); + config.level = this.level; + stage.addChild(target); +}; diff --git a/src/classes/main.js b/src/classes/main.js new file mode 100644 index 0000000..1906b11 --- /dev/null +++ b/src/classes/main.js @@ -0,0 +1,79 @@ +/** + * 游戏主体 + * @param {function} endCallback 游戏结束的回调函数 + * @param {number} max 最多运动次数 + * + * @property {object} lib 资源对象 + * @property {object} element 主体元素对象 + * @property {number} prevTime 上次完成的时间ms + * @property {number} max 最多运动(play)次数 + * @property {number} times 当前运动次数 play依次+1 + * @property {function} endCallback 结束后 调用的回调函数 + */ +function Main(endCallback, max) { + this.lib = library; + + this.element = null; + this.prevTime = 0; + + this.max = 20; + this.times = 0; + this.endCallback = endCallback; +} + +/** + * 静态方法 封装new init 返回实例 + * @param {function} endCallback 游戏结束的回调函数 + * @param {number} max 最多运动次数 + */ +Main.of = (function () { + let instance = null; + return function (endCallback, max = config.times) { + if (!instance) { + instance = new Main(endCallback, max); + } + instance.init(); + return instance; + }; +})(); + +// 初始方法 +Main.prototype.init = function () { + const target = new this.lib.Main(); + this.element = target; + stage.addChild(target); +}; + +// play +// 限制了两次动作间隔时间不能少于2s +// 游戏状态在进行中才能触发 +// play次数 >= 最多完成次数 调用结束的callback +Main.prototype.play = function (direction) { + if (Date.now() - this.prevTime <= 1200 || state !== 1) return; + // if (state !== 1) return; + this.element.play(); + this.times += 1; + + this.computeScore(this.times, direction); + window.soundInstance.playcai(direction); + + this.prevTime = Date.now(); + if (this.times >= this.max) { + this.times = this.max; + this.endCallback(); + } +}; + +/** + * 计算当前的次数与分值 并发送给父窗口 + * @param {number} times 当前动作执行成功的次数 + * @param {number} direction play code + */ +Main.prototype.computeScore = function (times, direction = 0) { + const directionTarget = config.config.scores.find(item => item.direction === direction); + config.currentTimes = times; + config.currentScore += directionTarget.score; + if (config.mode === 0) { + sendMessage({ event: 'play', data: { currentTimes: times, currentScore: config.currentScore } }); + } +}; diff --git a/src/classes/sound.js b/src/classes/sound.js new file mode 100644 index 0000000..4b664b4 --- /dev/null +++ b/src/classes/sound.js @@ -0,0 +1,64 @@ +// 音频处理类; +function Sound() { + this.lib = library; + + this.music = {}; +} + +Sound.of = (function () { + let instance = null; + return function () { + if (!instance) { + instance = new Sound(); + } + instance.init(); + return instance; + }; +})(); + +Sound.prototype.init = function () { + createjs.Sound.alternateExtensions = ['mp3']; + const sounds = [ + { src: 'sounds/caibeijing.mp3', id: 'bgm' }, + { src: 'sounds/cai.mp3', id: 'cai' }, + ]; + const _this = this; + createjs.Sound.addEventListener('fileload', function (event) { + _this.music[event.id] = createjs.Sound.createInstance(event.id); + }); + createjs.Sound.registerSounds(sounds, './'); + this.playBgm(); +}; + +Sound.prototype.playBgm = function () { + this.music.bgm && this.music.bgm.play({ loop: -1, volume: 0.3 }); // 播放背景音乐 +}; + +Sound.prototype.playcai = function (direction) { + if (direction === 0) { + this.music.cai && this.music.cai.play(); + } +}; + +Sound.prototype.playjin = function () { + this.music.jinkuang && this.music.jinkuang.play(); +}; + +Sound.prototype.playluo = function () { + this.music.luodi && this.music.luodi.play(); +}; + +// let music = {}; +// function initSound() { +// createjs.Sound.alternateExtensions = ['mp3']; +// const sounds = [ +// { src: 'public/sounds/bgmMusic.mp3', id: 'bgm' }, +// { src: 'public/sounds/excitationMusic.mp3', id: 'excitation' }, +// { src: 'public/sounds/amazing.mp3', id: 'amazing' }, +// { src: 'public/sounds/unbelievable.mp3', id: 'unbelievable' }, +// ]; +// createjs.Sound.addEventListener('fileload', function (event) { +// music[event.id] = createjs.Sound.createInstance(event.id); +// }); +// createjs.Sound.registerSounds(sounds, '../../'); +// } diff --git a/src/classes/suspend.js b/src/classes/suspend.js new file mode 100644 index 0000000..c917edc --- /dev/null +++ b/src/classes/suspend.js @@ -0,0 +1,55 @@ +/** + * 暂停游戏类(暂停继续游戏) + * @property {object} lib 库对象 + * @property {object} suspend 面板元素对象 + */ +function Suspend() { + this.lib = library; + + this.suspend = null; +} + +Suspend.of = (function () { + let instance = null; + return function () { + if (!instance) { + instance = new Suspend(); + } + instance.init(); + return instance; + }; +})(); + +// 初始化 +Suspend.prototype.init = function () { + this.suspendGame(); +}; + +// 暂停游戏按钮 +Suspend.prototype.suspendGame = function () { + const lib = this.lib; + const suspend = new lib.suspend(); + suspend.x = 50; + suspend.y = lib.properties.height - 100; + this.suspend = suspend; + const _this = this; + // 继续游戏 + this.suspend.addEventListener( + 'click', + function () { + _this.hide(); + continueMessage(); + }, + false, + ); + // stage.addChild(this.suspend); + // stage.removeChild(this.suspend); +}; + +Suspend.prototype.hide = function () { + stage.removeChild(this.suspend); +}; + +Suspend.prototype.show = function () { + stage.addChild(this.suspend); +}; diff --git a/src/classes/time.js b/src/classes/time.js new file mode 100644 index 0000000..37dc7a1 --- /dev/null +++ b/src/classes/time.js @@ -0,0 +1,125 @@ +/** + * 游戏时长 计时 + * @param {function} endCallback 倒计时结束的回调函数 + * @param {number} duration 游戏时长 + * @param {number} count 游戏倒计时时长 + * + * @property {number} duration 游戏时长 + * @property {number} count 游戏倒计时时长 + * @property {number} startTime 游戏开始是ms + * @property {boolean} started 游戏是否开始 + * @property {object} lib 资源库 + * @property {object} bg 时间倒计时背景 + * @property {object} text 倒计时文本 + * @property {number} timerId 定时器id + * @property {function} endCallback 结束回调函数 + */ +function Time(endCallback, duration, count) { + this.duration = duration; + this.count = count; + this.startTime = Date.now(); + + this.started = false; // 是否开始游戏 + + this.lib = library; + this.bg = null; + this.text = null; + this.timerId = null; + this.endCallback = endCallback; +} + +/** + * 静态方法 封装new init 返回实例 + * @param {function} endCallback 倒计时结束的回调函数 + * @param {number} duration 游戏时长 + * @param {number} count 游戏倒计时时长 + * @returns + */ +Time.of = (function () { + let instance = null; + return function (endCallback, duration = config.duration || 60, count = config.count || 5) { + if (!instance) { + instance = new Time(endCallback, duration, count); + } + instance.init(); + return instance; + }; +})(); + +// 初始化 +Time.prototype.init = function () { + this.renderBg(); + this.renderText(this.duration); +}; + +// 设置时长 +Time.prototype.setDuration = function (duration) { + this.duration = duration; + this.renderText(this.duration); +}; + +// 开始游戏 开始倒计时 +Time.prototype.start = function (startTime = Date.now()) { + this.started = true; + state = 1; + this.startTime = startTime; + this.duration = leftDuration ? leftDuration : this.duration; + this.update(); +}; + +// 暂停游戏 暂停倒计时 +Time.prototype.pause = function () { + this.started = false; + state = 3; + clearTimeout(this.timerId); + this.timerId = null; +}; + +// 结束游戏 结束倒计时 +Time.prototype.end = function () { + this.started = false; + this.timerId && clearTimeout(this.timerId); + this.timerId = null; + // 执行结束后的回调 + this.endCallback(); +}; + +// 渲染背景 +Time.prototype.renderBg = function () { + const initX = this.lib.properties.width - 100; + const initY = 80; + const instance = new this.lib.timeBg(); + instance.x = initX; + instance.y = initY; + this.bg = instance; + stage.addChild(instance); +}; + +// 渲染文本 +Time.prototype.renderText = function (time) { + if (this.text) stage.removeChild(this.text); + const text = new createjs.Text(time, 'bold 40px Arial', '#823d16'); + text.x = this.lib.properties.width - 100; + text.y = 100; + text.textAlign = 'center'; + text.textBaseline = 'alphabetic'; + this.text = text; + stage.addChild(text); +}; + +// 更新文本 +Time.prototype.update = function () { + if (this.timerId || !this.started) return; + // const endTime = this.startTime + this.duration * 1000; + this.timerId = setInterval(() => { + // let leftTime = Math.round((endTime - Date.now()) / 1000); + this.duration--; + leftDuration = this.duration; + this.text && stage.removeChild(this.text); + if (this.duration <= 0) { + this.duration = 0; + this.end(); + } + this.renderText(this.duration); + }, 1000); +}; diff --git a/src/custom.js b/src/custom.js new file mode 100644 index 0000000..73996c9 --- /dev/null +++ b/src/custom.js @@ -0,0 +1,53 @@ +const config = { + count: 5, // 默认倒计时时长 + duration: 60, // 总时长 s + total: 100, // 总分 + times: 20, // 动作次数 + level: 1, // 游戏难度级别 + mode: 1, // 模式 0-> 正常模式 1-> 演示模式 + currentScore: 0, // 当前得分 + currentTimes: 0, // 当前次数 + config: { + scores: [{ direction: 0, score: 5 }], + directions: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + }, // 得分配置 +}; + +let library = null; +let state = 0; // 游戏状态 0->未开始 1->进行中 2->结束 3->暂停 +let isDemo = false; // 是不是演示模式 +let leftDuration = null; // 暂停时的时间 + +function initStage(lib) { + library = lib; + + window.main = Main.of(gameOver); // 初始化鸟等 + window.timeInstance = Time.of(gameOver); // 初始化游戏时间 + window.soundInstance = Sound.of(); // 初始化音频 + + Level.of(config.level); // 游戏难度级别 + Back.of(); // 返回按钮 + isHash(); + window.suspend = Suspend.of(); + + window.addEventListener( + 'click', + function () { + if (!window.soundInstance) return; + window.soundInstance.playBgm(); + }, + false, + ); +} + +// 游戏结束 显示结束得分面板 +function gameOver() { + state = 2; + const times = main.times; + setTimeout(() => { + End.of(config.currentScore || 0); + if (config.mode === 0) { + finishMessage(config.currentScore, times); + } + }, 2000); +} diff --git a/src/index.js b/src/index.js new file mode 100644 index 0000000..62a2642 --- /dev/null +++ b/src/index.js @@ -0,0 +1,50 @@ +var canvas, stage, exportRoot, anim_container, dom_overlay_container, fnStartAnimation; +function init() { + canvas = document.getElementById('canvas'); + anim_container = document.getElementById('animation_container'); + dom_overlay_container = document.getElementById('dom_overlay_container'); + var comp = AdobeAn.getComposition('621EBFAF54FE46DEB30E61D572075CE2'); + var lib = comp.getLibrary(); + var loader = new createjs.LoadQueue(false); + loader.addEventListener('fileload', function (evt) { + handleFileLoad(evt, comp); + }); + loader.addEventListener('complete', function (evt) { + handleComplete(evt, comp); + }); + var lib = comp.getLibrary(); + loader.loadManifest(lib.properties.manifest); +} +function handleFileLoad(evt, comp) { + var images = comp.getImages(); + if (evt && evt.item.type == 'image') { + images[evt.item.id] = evt.result; + } +} +function handleComplete(evt, comp) { + //This function is always called, irrespective of the content. You can use the variable "stage" after it is created in token create_stage. + var lib = comp.getLibrary(); + var ss = comp.getSpriteSheet(); + var queue = evt.target; + var ssMetadata = lib.ssMetadata; + for (let i = 0; i < ssMetadata.length; i++) { + ss[ssMetadata[i].name] = new createjs.SpriteSheet({ images: [queue.getResult(ssMetadata[i].name)], frames: ssMetadata[i].frames }); + } + var preloaderDiv = document.getElementById('_preload_div_'); + preloaderDiv.style.display = 'none'; + canvas.style.display = 'block'; + exportRoot = new lib.踩气球_HTML5Canvas(); + stage = new lib.Stage(canvas); + stage.enableMouseOver(); + //Registers the "tick" event listener. + fnStartAnimation = function () { + stage.addChild(exportRoot); + initStage(lib); + createjs.Ticker.framerate = lib.properties.fps; + createjs.Ticker.addEventListener('tick', stage); + }; + //Code to support hidpi screens and responsive scaling. + AdobeAn.makeResponsive(true, 'both', true, 1, [canvas, preloaderDiv, anim_container, dom_overlay_container]); + AdobeAn.compositionLoaded(lib.properties.id); + fnStartAnimation(); +} diff --git a/src/message.js b/src/message.js new file mode 100644 index 0000000..2a2d4de --- /dev/null +++ b/src/message.js @@ -0,0 +1,132 @@ +window.addEventListener( + 'message', + function (e) { + const res = e.data; + console.log('子->接受: ', res); + switch (res.event) { + case 'start': + startGame(res.data); + return; + case 'play': + playGame(res.data); + return; + case 'pause': + pauseGame(res.data); + return; + case 'continue': + continueGame(res.data); + return; + default: + finishGame(res.data); + return; + } + + function startGame(data) { + if (state === 2) { + location.reload(); + return; + } + const { count, game, status, param } = data; + config.count = count.duration; + config.duration = game.duration; + config.total = game.totalScore; + config.times = game.totalTimes; + config.level = game.level; + config.config = game.config; + config.mode = game.mode; + + window.timeInstance.setDuration(game.duration); + Level.of(config.level); + if (config.mode === 0) { + // 开始倒计时 + Count.of(countOver); + } else { + sevenClick(); + } + if (!window.soundInstance) return; + window.soundInstance.playBgm(); + } + + function playGame(data) { + if (state !== 1) return; + const { status, param } = data; + // config.currentScore = score; + // config.currentTimes = times; + state = status; + if (config.config.directions[config.currentTimes] === param.direction) { + main.play(param.direction); + } else { + alert('动作不匹配'); + } + } + + function pauseGame(data) { + if (state !== 1) return; + state = data.status; + window.suspend.show(); + window.timeInstance.pause(); + } + + function continueGame(data) { + if (state !== 3) return; + state = data.status; + window.suspend.hide(); + window.timeInstance.start(); + } + + function finishGame(data) { + const { score, times, status, param } = data; + state = status; + // config.total = score; + // config.times = times; + End.of(score || 0); + window.timeInstance.setDuration(0); + } + }, + false, +); + +// 发消息 +function sendMessage(data) { + if (!data) { + return alert('错误: 发送消息数据为空'); + } + console.log('子->发送: ', data); + top.postMessage(data, document.referrer); +} + +// 发送继续游戏消息 +function continueMessage() { + const data = { + event: 'continue', + data: { + status: 1, // 1 -> 进行中 + }, + }; + sendMessage(data); +} + +// 发送游戏结束消息 +function finishMessage(score, times) { + const data = { + event: 'finish', + data: { + score: score, // 得分 + times: times, // 次数 + status: 2, // 游戏状态 0 1 2 + param: {}, // 额外个性化参数 + }, + }; + sendMessage(data); +} + +// 发送再来一次消息 +function againMessage() { + const data = { + event: 'again', + data: { + param: {}, // 额外个性化参数 + }, + }; + sendMessage(data); +} diff --git a/src/test.js b/src/test.js new file mode 100644 index 0000000..0292923 --- /dev/null +++ b/src/test.js @@ -0,0 +1,57 @@ +// 判断是否在演示模式 能否直接开始游戏 +function isHash() { + if (location.hash && location.hash === '#p') { + isDemo = true; + Demo.of(); + Count.of(countOver); + } else { + // 连点7次触发倒计时 + startGame(); + } +} + +function startGame() { + var count = 0, + timer; + document.onclick = function () { + if (isDemo || config.mode !== 1) return; + if (count < 6) { + if (timer) { + clearTimeout(timer); + } + count++; + timer = setTimeout(function () { + count = 0; + }, 300); + } else if (count === 6) { + count = 0; + clearTimeout(timer); + sevenClick(); + } + }; +} + +function sevenClick() { + isDemo = true; + Count.of(countOver); + addHash(); +} + +// 倒计时结束 开始游戏 +function countOver() { + timeInstance.start(); +} + +// 添加hash值 +function addHash() { + location.hash = '#p'; + Demo.of(); +} + +function test() { + document.addEventListener('click', () => { + if (!isDemo) return; + main.play(config.config.directions[config.currentTimes]); + }); +} +test();