master 20ad98bed953 cached
99 files
1.6 MB
657.9k tokens
279 symbols
1 requests
Download .txt
Showing preview only (1,760K chars total). Download the full file or copy to clipboard to get everything.
Repository: hardman/FlashAnimationToMobile
Branch: master
Commit: 20ad98bed953
Files: 99
Total size: 1.6 MB

Directory structure:
gitextract_e7zhuvyd/

├── .gitignore
├── README.md
├── android/
│   └── FlashSupport/
│       ├── .gitignore
│       ├── .idea/
│       │   ├── .name
│       │   ├── compiler.xml
│       │   ├── copyright/
│       │   │   └── profiles_settings.xml
│       │   ├── gradle.xml
│       │   ├── misc.xml
│       │   ├── modules.xml
│       │   ├── runConfigurations.xml
│       │   └── vcs.xml
│       ├── app/
│       │   ├── .gitignore
│       │   ├── build.gradle
│       │   ├── proguard-rules.pro
│       │   └── src/
│       │       ├── main/
│       │       │   ├── AndroidManifest.xml
│       │       │   ├── assets/
│       │       │   │   └── flashAnims/
│       │       │   │       ├── bieshu.flajson
│       │       │   │       ├── callTextAnim.flajson
│       │       │   │       ├── heiniao.flabin
│       │       │   │       ├── heiniao.flajson1
│       │       │   │       ├── laba.flajson
│       │       │   │       ├── test.flajson
│       │       │   │       └── testDB.flajson
│       │       │   ├── java/
│       │       │   │   └── com/
│       │       │   │       └── flashanimation/
│       │       │   │           ├── MainActivity.java
│       │       │   │           └── view/
│       │       │   │               ├── FlashDataParser.java
│       │       │   │               ├── FlashSurfaceView.java
│       │       │   │               └── FlashView.java
│       │       │   └── res/
│       │       │       ├── layout/
│       │       │       │   └── activity_main.xml
│       │       │       ├── values/
│       │       │       │   ├── colors.xml
│       │       │       │   ├── dimens.xml
│       │       │       │   ├── flashview_attr.xml
│       │       │       │   ├── strings.xml
│       │       │       │   └── styles.xml
│       │       │       └── values-w820dp/
│       │       │           └── dimens.xml
│       │       └── test/
│       │           └── java/
│       │               └── com/
│       │                   └── xcyo/
│       │                       └── yoyo/
│       │                           └── flashsupport/
│       │                               └── ExampleUnitTest.java
│       ├── build.gradle
│       ├── gradle/
│       │   └── wrapper/
│       │       ├── gradle-wrapper.jar
│       │       └── gradle-wrapper.properties
│       ├── gradle.properties
│       ├── gradlew
│       ├── gradlew.bat
│       └── settings.gradle
├── cocos2dx/
│   └── animationPlayer/
│       ├── Anim.cpp
│       ├── Anim.h
│       ├── AnimKeyFrame.cpp
│       ├── AnimKeyFrame.h
│       ├── AnimLayer.cpp
│       ├── AnimLayer.h
│       ├── AnimNode.cpp
│       ├── AnimNode.h
│       └── windy.h
├── iOS/
│   └── FlashView/
│       ├── FlashView/
│       │   ├── AppDelegate.h
│       │   ├── AppDelegate.m
│       │   ├── Assets.xcassets/
│       │   │   └── AppIcon.appiconset/
│       │   │       └── Contents.json
│       │   ├── Base.lproj/
│       │   │   ├── LaunchScreen.storyboard
│       │   │   └── Main.storyboard
│       │   ├── FlashView.h
│       │   ├── FlashView.m
│       │   ├── FlashViewCommon.h
│       │   ├── FlashViewDataReader.h
│       │   ├── FlashViewDataReader.m
│       │   ├── FlashViewDownloader.h
│       │   ├── FlashViewDownloader.m
│       │   ├── FlashViewNew.h
│       │   ├── FlashViewNew.m
│       │   ├── FlashViewNode.h
│       │   ├── FlashViewNode.m
│       │   ├── FlashViewTool.h
│       │   ├── FlashViewTool.m
│       │   ├── Info.plist
│       │   ├── Resources/
│       │   │   └── flashAnims/
│       │   │       ├── bieshu.flajson
│       │   │       ├── laba.flajson
│       │   │       ├── mutiFlowerDrop.flajson
│       │   │       ├── mutiFlowerRandom.flajson
│       │   │       └── testFlash.flajson
│       │   ├── TestFlashViewController.h
│       │   ├── TestFlashViewController.m
│       │   ├── TestFlashViewDownloadViewController.h
│       │   ├── TestFlashViewDownloadViewController.m
│       │   ├── ViewController.h
│       │   ├── ViewController.m
│       │   ├── Zip/
│       │   │   ├── ZipArchive.h
│       │   │   ├── ZipArchive.m
│       │   │   └── minizip/
│       │   │       ├── crypt.h
│       │   │       ├── ioapi.c
│       │   │       ├── ioapi.h
│       │   │       ├── mztools.c
│       │   │       ├── mztools.h
│       │   │       ├── unzip.c
│       │   │       ├── unzip.h
│       │   │       ├── zip.c
│       │   │       └── zip.h
│       │   └── main.m
│       └── FlashView.xcodeproj/
│           ├── project.pbxproj
│           └── project.xcworkspace/
│               └── contents.xcworkspacedata
└── tools/
    ├── JsonToBin.py
    └── flashScript/
        ├── 1.根据png创建元件.jsfl
        ├── 2.修改fla中元素的名字.jsfl
        ├── 3.导出动画数据.jsfl
        └── libs/
            └── json2.jsfl

================================================
FILE CONTENTS
================================================

================================================
FILE: .gitignore
================================================
# common ignore files
.DS_Store

#######for android

# Built application files
*.apk
*.ap_
 
# Files for the Dalvik VM
*.dex
 
# Java class files
*.class
 
# Generated files
bin/
gen/
 
# Gradle files
.gradle/
build/
 
# Local configuration file (sdk path, etc)
local.properties
 
# Proguard folder generated by Eclipse
proguard/
 
# Log Files
*.log

#app/


#######for iOS
## Build generated
build/
DerivedData

## Various settings
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.mode2v3
!default.mode2v3
*.perspectivev3
!default.perspectivev3
xcuserdata

## Other
*.xccheckout
*.moved-aside
*.xcuserstate
*.xcscmblueprint
*.xcscheme

## Obj-C/Swift specific
*.hmap
*.ipa



================================================
FILE: README.md
================================================

在我的博客中,有详细的项目介绍和使用方法(这里的不完整),欢迎点击:

- [项目介绍](http://blog.csdn.net/hard_man/article/details/51222423)。

- [项目使用方法](http://blog.csdn.net/hard_man/article/details/51222696)。

使用本项目的准备工作
---
首先确保系统中安装了flash,并且flash版本应该在cs3或者以上。
然后把"源码根目录/tools/flashScript"目录内的所有文件和文件夹copy到如下目录:

- Mac:~/Library/Application Support/Adobe/[Flash CS+版本号]/[en_US或者zh_CN]/Configuration/Commands
- Windows:C:\Users\[用户名]\AppData\Local\Adobe\[Flash CS+版本号]\[en_US或者zh_CN]\Configuration\Commands

在文件管理器(或Finder)目录中看起来是这样的:

    --Commands
        -- 1.根据png创建元件.jsfl
        -- 2.修改fla中元素的名字.jsfl
        -- 3.导出动画数据.jsfl
        -- libs/
            --json2.jsfl
        -- ....其他文件
如图:
<img src="https://github.com/hardman/OutLinkImages/blob/master/FlashAnimationToMobile/images/1.png?raw=true" width="600">

这时候打开flash,点击菜单栏中的 Commands(中文的话应该是命令),在下拉菜单中就能看到我们加入的脚本啦。
<img src="https://github.com/hardman/OutLinkImages/blob/master/FlashAnimationToMobile/images/2.png?raw=true" width="600">

到此为止准备工作就绪。

美术人员制作flash动画的步骤
--
下面步骤看起来很长,其实内容很简单,都是大家各自平时使用的经验,在这里写这么多是为了让小白用户不出错而已。
美术人员使用步骤:

- 新建一个as3.0的Flash Document。
<img src="https://github.com/hardman/OutLinkImages/blob/master/FlashAnimationToMobile/images/3.png?raw=true" width="600">

- 保存文档,请务必保存文档,否则脚本不生效,并按照如下规则命名:
fla的命名应该以 "." 分为3部分:
    测试.test.fla
 第一部分:中文,对本文件的中文描述。(不重要,可以随意取。)
 第二部分:英文,表示本文件的英文标识符。(重要,在代码中会使用到这个关键字。)
 第三部分:后缀,默认即可不用管。(使用.fla即可。)
 其中第一部分中文可忽略。
<img src="https://github.com/hardman/OutLinkImages/blob/master/FlashAnimationToMobile/images/4.png?raw=true" width="600">

- 在新建的Flash文件窗口右侧的Library栏中,点击右键,新建一个文件夹名为“pics”(**注意,名字不能错,后面有类似的要求也要遵守**)。

- 把制作flash的图片(png格式)拖入pics文件夹中。[**!!!注意,所有的png图片必须带后缀.png否则会出错!**]
<img src="https://github.com/hardman/OutLinkImages/blob/master/FlashAnimationToMobile/images/5.png?raw=true" width="600">

- 点击commands中的脚本“1.根据png创建元件”。结果如图:
<img src="https://github.com/hardman/OutLinkImages/blob/master/FlashAnimationToMobile/images/6.png?raw=true" width="600">

- 如果是cocos2dx中使用,为了避免Sprite Frame Cache重名,或者想要为图片生成跟本动画相关的独一无二的前缀,可以点击commands中的脚本“2.修改fla中元素的名字”。结果如下:
<img src="https://github.com/hardman/OutLinkImages/blob/master/FlashAnimationToMobile/images/7.png?raw=true" width="600">

- iOS可能也有此问题。因为直接拖入xcode中的文件一般选择“create groups”,这个只是逻辑文件夹,如果其他文件夹内存在同名文件则会冲突。所以最好每次制作动画,添加png图片的时候,都执行一次脚本“2.修改fla中元素的名字“。

- 新建一个Movie clip(影片剪辑),取一个合适的名字。然后拖入anims文件夹中
<img src="https://github.com/hardman/OutLinkImages/blob/master/FlashAnimationToMobile/images/8.png?raw=true" width="600">
<img src="https://github.com/hardman/OutLinkImages/blob/master/FlashAnimationToMobile/images/9.png?raw=true" width="600">

- 双击该Movie clip,进入编辑模式,此时就可以使用eles文件夹中的Movie clip,制作动画了。制作动画的具体细节要求,见下面的要求。
<img src="https://github.com/hardman/OutLinkImages/blob/master/FlashAnimationToMobile/images/10.png?raw=true" width="600">

- 制作完成后,保存,美术人员的工作就完成了。
<img src="https://github.com/hardman/OutLinkImages/blob/master/FlashAnimationToMobile/images/11.png?raw=true" width="600">

美术人员制作flash动画完整要求
---

1. 下面涉及名字的地方可以使用 英文字母,数字和下划线,不要用中文。
2. 先制作动画所需要的图片,png/jpg格式的,所有的动画元素需要全部使用图片,不可以使用矢量图和文字等等。
3. 图片命名尽量简单,以减少程序处理的数据量。
4. 建立fla时,使用Action Script 3。
5. 在库中建立3个文件夹,名字为:pics(图片),anims(动画的动作,比如idle, move等),eles(图片对应的元件)。对应的资源请在不同的文件夹中建立。
6. 每张图片(pics)都需要生成一个元件(eles),不要把多张图片放在一个元件中。所以元件的数量应该同图片的数量是相同的。
7. 所有的元件请使用 "影片剪辑"(movie clip), 不要使用 "按钮" 和 "图片"。
8. 把制作好的png图片(只用png,不要用jpg或其它格式图片)导入到flash中,并拖进pics文件夹下面。
9. 依次生成png图片对应的元件(影片剪辑),把图片拖到元件中。使图片居中。元件名字应该同图片的名字完全相同。这一步可以使用脚本(“1.根据png创建元件“)代替这个操作。
10. 建立新的元件,还是使用"影片剪辑"(movie clip),然后拖进anims文件夹中。这就是需要制作的动作了。
11. 这时候,就可以使用eles(不要使用pics中的图片)中的元件在时间轴中制作动作了。
12. 制作动作,帧的普通操作(关键帧关键帧之间的传统补间,只能使用传统补间)都可以使用,但是对关键帧的处理只支持以下几种:移动,缩放,旋转,倾斜,颜色叠加,透明度的变化 这5种变换。
13. 不要使用除13条中描述的其他任何对关键帧的操作,比如滤镜,显示混合等。
14. 不要使用缓动,不要使用补间动画时元件旋转等高端操作。如果某一帧某个元件不可见,可以通过设置它的透明度为0,或者插入空白关键帧来实现。
15. 不要使用嵌套动画:就是说关键帧上最好只用eles中的元素来做,不要做好了一段动画,把这段动画作为关键帧使用。。
16. <font color=red>使用eles中的原件制作动画时,始终保持锚点的位置在原件的中央,否则会出现位置不对的问题。默认锚点是在中央的,不要手动去调整它。</font>
17. 最后,保存成fla就可以了。美术人员最终输出就是一个.fla文件。

程序人员使用美术制作好的动画
---
程序拿到美术人员制作好的fla文件后,首先要进行一番检查,看看是否合格。
所以需要确保程序员熟悉flash的页面和菜单,并了解一些简单的flash软件操作。

- 打开.fla文件。简单检查一下文件完成度。
    - 是否3个文件夹都在(anims,pics,eles)。
    - 是否动画文件都在anims文件夹内。
    - 是否pics与eles内文件数量相同,并且一一对应,相对应的2个组件名字也要完全一致。
    - 是否pics和eles内的组件名字都有.png后缀。
- 如果需要给关键帧添加事件,需要选中该关键帧(首先在timeline中选中关键帧,然后在主页面中选中该帧代表的图片,过程中最好隐藏timeline中的其它层),然后点击右侧与library同级的标签页properties。在第一行标有 < Instance Name > 的输入框,输入你的事件名,程序能够在播放到这一帧的时候,触发这个事件。
<img src="https://github.com/hardman/OutLinkImages/blob/master/FlashAnimationToMobile/images/12.png?raw=true" width="600">

- 事件添加完成后,选择菜单:Commands(命令)- “3.导出动画数据”。窗口底部同Timeline(时间轴)同级的Output(输出)栏中会显示脚本执行过程。
<img src="https://github.com/hardman/OutLinkImages/blob/master/FlashAnimationToMobile/images/13.png?raw=true" width="600">

- 成功后,打开.fla文件所在的目录,即可看到".flajson文件"和.fla同名"图片文件夹"(里面是图片)。
<img src="https://github.com/hardman/OutLinkImages/blob/master/FlashAnimationToMobile/images/14.png?raw=true" width="600">

- 如果需要使用二进制动画描述文件,则需要把".flajson文件"转为".flabin文件",这两个后缀也不能改。
转换需要使用脚本"源码根目录/tools/JsonToBin.py"文件。这是一个python脚本。如果系统内没有python,则需要安装一个。
然后打开命令行(mac中使用终端,Windows中可使用cmd)执行如下命令,执行后的.flabin就是转换成二进制后的文件。
```
    python 源码根目录/tools/JsonToBin.py [.flajson文件全路径] [.flabin文件全路径]
```

- 这时候可以把".flajson文件"(或者 ".flabin文件",二者使用其一即可,代码库内部处理,无需额外写代码判断)和"图片文件夹"放入程序指定目录就可以使用了。
    - cocos2dx可以放在资源目录中任意位置。代码初始化时需要指定目录。
    - Android需要将这2个文件放入 Assets文件夹的子文件夹flashAnims中。
    - iOS拖入xcode中,选择“copy if need”和“create groups”,点击确定。

程序员如何在代码中调用动画
---
```
//cocos2dx版本使用方法
//包含头文件
#include "AnimNode.h"
using namespace windy;

... ...

//使用代码
AnimNode *animNode = AnimNode::create();
animNode->load("xxxx/flashFileName.flajson");
animNode->play("animationName", WINDY_ANIMNODE_LOOP_FOREVER);//这里的animationName就是flash中anims文件夹内的动画名称
superNode->addChild(animNode);
```
```
<!--Android版本使用方法-->
<!--Android还需要在manifest文件中添加权限,与demo中相同添加即可。不要忘记res/values目录中的flashview_attr.xml文件。 -->
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    xmlns:FlashView="http://schemas.android.com/apk/res-auto" <!--!!!!!!注意这个要加-->
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="com.xcyo.yoyo.flashsupport.MainActivity">

    <com.flashanimation.view.FlashView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        FlashView:flashDir="flashAnims"
        FlashView:flashFileName="callTextAnim"
        FlashView:defaultAnim="arriving1" <!--这里的defaultAnim就是flash中anims文件夹内的动画名称-->
        FlashView:designDPI="326"
        FlashView:loopTimes="0"
        android:id="@+id/flashview"
        />

</RelativeLayout>
```
```
//iOS版本使用方法
#import "FlashView.h"

... ...

FlashView *flashView = [[FlashView alloc] initWithFlashName:@"flashFileName"];
flashView.frame = self.view.frame;// CGRectMake(100, 100, 200, 500);
flashView.backgroundColor = [UIColor clearColor];
[superView addSubview:flashView];
[flashView play:@"animationName" loopTimes:FOREVER];//这里的animationName就是flash中anims文件夹内的动画名称
```






================================================
FILE: android/FlashSupport/.gitignore
================================================
*.iml
.gradle
/local.properties
/.idea/workspace.xml
/.idea/libraries
.DS_Store
/build
/captures


================================================
FILE: android/FlashSupport/.idea/.name
================================================
FlashSupport

================================================
FILE: android/FlashSupport/.idea/compiler.xml
================================================
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
  <component name="CompilerConfiguration">
    <resourceExtensions />
    <wildcardResourcePatterns>
      <entry name="!?*.java" />
      <entry name="!?*.form" />
      <entry name="!?*.class" />
      <entry name="!?*.groovy" />
      <entry name="!?*.scala" />
      <entry name="!?*.flex" />
      <entry name="!?*.kt" />
      <entry name="!?*.clj" />
      <entry name="!?*.aj" />
    </wildcardResourcePatterns>
    <annotationProcessing>
      <profile default="true" name="Default" enabled="false">
        <processorPath useClasspath="true" />
      </profile>
    </annotationProcessing>
  </component>
</project>

================================================
FILE: android/FlashSupport/.idea/copyright/profiles_settings.xml
================================================
<component name="CopyrightManager">
  <settings default="" />
</component>

================================================
FILE: android/FlashSupport/.idea/gradle.xml
================================================
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
  <component name="GradleSettings">
    <option name="linkedExternalProjectsSettings">
      <GradleProjectSettings>
        <option name="distributionType" value="LOCAL" />
        <option name="externalProjectPath" value="$PROJECT_DIR$" />
        <option name="gradleHome" value="$APPLICATION_HOME_DIR$/gradle/gradle-2.8" />
        <option name="gradleJvm" value="1.8" />
        <option name="modules">
          <set>
            <option value="$PROJECT_DIR$" />
            <option value="$PROJECT_DIR$/app" />
          </set>
        </option>
      </GradleProjectSettings>
    </option>
  </component>
</project>

================================================
FILE: android/FlashSupport/.idea/misc.xml
================================================
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
  <component name="EntryPointsManager">
    <entry_points version="2.0" />
  </component>
  <component name="NullableNotNullManager">
    <option name="myDefaultNullable" value="android.support.annotation.Nullable" />
    <option name="myDefaultNotNull" value="android.support.annotation.NonNull" />
    <option name="myNullables">
      <value>
        <list size="4">
          <item index="0" class="java.lang.String" itemvalue="org.jetbrains.annotations.Nullable" />
          <item index="1" class="java.lang.String" itemvalue="javax.annotation.Nullable" />
          <item index="2" class="java.lang.String" itemvalue="edu.umd.cs.findbugs.annotations.Nullable" />
          <item index="3" class="java.lang.String" itemvalue="android.support.annotation.Nullable" />
        </list>
      </value>
    </option>
    <option name="myNotNulls">
      <value>
        <list size="4">
          <item index="0" class="java.lang.String" itemvalue="org.jetbrains.annotations.NotNull" />
          <item index="1" class="java.lang.String" itemvalue="javax.annotation.Nonnull" />
          <item index="2" class="java.lang.String" itemvalue="edu.umd.cs.findbugs.annotations.NonNull" />
          <item index="3" class="java.lang.String" itemvalue="android.support.annotation.NonNull" />
        </list>
      </value>
    </option>
  </component>
  <component name="ProjectLevelVcsManager" settingsEditedManually="false">
    <OptionsSetting value="true" id="Add" />
    <OptionsSetting value="true" id="Remove" />
    <OptionsSetting value="true" id="Checkout" />
    <OptionsSetting value="true" id="Update" />
    <OptionsSetting value="true" id="Status" />
    <OptionsSetting value="true" id="Edit" />
    <ConfirmationsSetting value="0" id="Add" />
    <ConfirmationsSetting value="0" id="Remove" />
  </component>
  <component name="ProjectRootManager" version="2" languageLevel="JDK_1_7" default="true" assert-keyword="true" jdk-15="true" project-jdk-name="1.8" project-jdk-type="JavaSDK">
    <output url="file://$PROJECT_DIR$/build/classes" />
  </component>
  <component name="ProjectType">
    <option name="id" value="Android" />
  </component>
</project>

================================================
FILE: android/FlashSupport/.idea/modules.xml
================================================
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
  <component name="ProjectModuleManager">
    <modules>
      <module fileurl="file://$PROJECT_DIR$/FlashSupport.iml" filepath="$PROJECT_DIR$/FlashSupport.iml" />
      <module fileurl="file://$PROJECT_DIR$/app/app.iml" filepath="$PROJECT_DIR$/app/app.iml" />
    </modules>
  </component>
</project>

================================================
FILE: android/FlashSupport/.idea/runConfigurations.xml
================================================
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
  <component name="RunConfigurationProducerService">
    <option name="ignoredProducers">
      <set>
        <option value="org.jetbrains.plugins.gradle.execution.test.runner.AllInPackageGradleConfigurationProducer" />
        <option value="org.jetbrains.plugins.gradle.execution.test.runner.TestClassGradleConfigurationProducer" />
        <option value="org.jetbrains.plugins.gradle.execution.test.runner.TestMethodGradleConfigurationProducer" />
      </set>
    </option>
  </component>
</project>

================================================
FILE: android/FlashSupport/.idea/vcs.xml
================================================
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
  <component name="VcsDirectoryMappings">
    <mapping directory="" vcs="" />
  </component>
</project>

================================================
FILE: android/FlashSupport/app/.gitignore
================================================
/build


================================================
FILE: android/FlashSupport/app/build.gradle
================================================
apply plugin: 'com.android.application'

android {
    compileSdkVersion 23
    buildToolsVersion "23.0.2"

    defaultConfig {
        applicationId "com.xcyo.yoyo.flashsupport"
        minSdkVersion 15
        targetSdkVersion 23
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    testCompile 'junit:junit:4.12'
    compile 'com.android.support:appcompat-v7:23.1.1'
}


================================================
FILE: android/FlashSupport/app/proguard-rules.pro
================================================
# Add project specific ProGuard rules here.
# By default, the flags in this file are appended to flags specified
# in /Users/wanghongyu/Library/Android/sdk/tools/proguard/proguard-android.txt
# You can edit the include path and order by changing the proguardFiles
# directive in build.gradle.
#
# For more details, see
#   http://developer.android.com/guide/developing/tools/proguard.html

# Add any project specific keep options here:

# If your project uses WebView with JS, uncomment the following
# and specify the fully qualified class name to the JavaScript interface
# class:
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
#   public *;
#}


================================================
FILE: android/FlashSupport/app/src/main/AndroidManifest.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.flashanimation">

    <!-- SDCard中创建与删除文件权限 -->
    <uses-permission android:name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS"/>
    <!-- 向SDCard写入数据权限 -->
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <activity android:name=".MainActivity">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest>


================================================
FILE: android/FlashSupport/app/src/main/assets/flashAnims/bieshu.flajson
================================================
{"name":"bieshu","frameRate":24,"anims":[{"animName":"bieshu","layerNum":8,"frameMaxNum":73,"layers":[{"frames":[{"isTween":false,"frameIndex":0,"isEmpty":true},{"isTween":true,"frameIndex":20,"isEmpty":false,"texName":"bieshu_xinxin.png","x":108,"y":80,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":6,"mark":"","alpha":0,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":26,"isEmpty":false,"texName":"bieshu_xinxin.png","x":108,"y":80,"scaleX":1,"scaleY":1,"skewX":89.9947509765625,"skewY":89.9947509765625,"duration":6,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":32,"isEmpty":false,"texName":"bieshu_xinxin.png","x":108,"y":80,"scaleX":1,"scaleY":1,"skewX":180,"skewY":180,"duration":6,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":38,"isEmpty":false,"texName":"bieshu_xinxin.png","x":108,"y":80,"scaleX":1,"scaleY":1,"skewX":-89.9947509765625,"skewY":-89.9947509765625,"duration":6,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":44,"isEmpty":false,"texName":"bieshu_xinxin.png","x":108,"y":80,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":29,"mark":"","alpha":0,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false}],"keyFrameNum":6},{"frames":[{"isTween":false,"frameIndex":0,"isEmpty":true},{"isTween":true,"frameIndex":24,"isEmpty":false,"texName":"bieshu_xinxin.png","x":-152,"y":81,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":5,"mark":"","alpha":0,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":29,"isEmpty":false,"texName":"bieshu_xinxin.png","x":-152,"y":81,"scaleX":1,"scaleY":1,"skewX":89.9947509765625,"skewY":89.9947509765625,"duration":5,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":34,"isEmpty":false,"texName":"bieshu_xinxin.png","x":-152,"y":81,"scaleX":1,"scaleY":1,"skewX":180,"skewY":180,"duration":5,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":39,"isEmpty":false,"texName":"bieshu_xinxin.png","x":-152,"y":81,"scaleX":1,"scaleY":1,"skewX":-89.9947509765625,"skewY":-89.9947509765625,"duration":7,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":46,"isEmpty":false,"texName":"bieshu_xinxin.png","x":-152,"y":81,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":27,"mark":"","alpha":0,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false}],"keyFrameNum":6},{"frames":[{"isTween":false,"frameIndex":0,"isEmpty":true},{"isTween":true,"frameIndex":20,"isEmpty":false,"texName":"bieshu_xinxin.png","x":48,"y":140,"scaleX":0.767120361328125,"scaleY":0.767120361328125,"skewX":0,"skewY":0,"duration":6,"mark":"","alpha":0,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":26,"isEmpty":false,"texName":"bieshu_xinxin.png","x":48,"y":140,"scaleX":0.767120361328125,"scaleY":0.767120361328125,"skewX":89.9947509765625,"skewY":89.9947509765625,"duration":6,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":32,"isEmpty":false,"texName":"bieshu_xinxin.png","x":48,"y":140,"scaleX":0.767120361328125,"scaleY":0.767120361328125,"skewX":180,"skewY":180,"duration":6,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":38,"isEmpty":false,"texName":"bieshu_xinxin.png","x":48,"y":140,"scaleX":0.767120361328125,"scaleY":0.767120361328125,"skewX":-89.9947509765625,"skewY":-89.9947509765625,"duration":6,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":44,"isEmpty":false,"texName":"bieshu_xinxin.png","x":48,"y":140,"scaleX":0.767120361328125,"scaleY":0.767120361328125,"skewX":0,"skewY":0,"duration":29,"mark":"","alpha":0,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false}],"keyFrameNum":6},{"frames":[{"isTween":false,"frameIndex":0,"isEmpty":true},{"isTween":true,"frameIndex":24,"isEmpty":false,"texName":"bieshu_xinxin.png","x":-32,"y":90,"scaleX":0.7123260498046875,"scaleY":0.7123260498046875,"skewX":0,"skewY":0,"duration":6,"mark":"","alpha":0,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":30,"isEmpty":false,"texName":"bieshu_xinxin.png","x":-32,"y":90,"scaleX":0.7123260498046875,"scaleY":0.7123260498046875,"skewX":89.99563598632812,"skewY":89.99563598632812,"duration":6,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":36,"isEmpty":false,"texName":"bieshu_xinxin.png","x":-32,"y":90,"scaleX":0.7123260498046875,"scaleY":0.7123260498046875,"skewX":180,"skewY":180,"duration":6,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":42,"isEmpty":false,"texName":"bieshu_xinxin.png","x":-32,"y":90,"scaleX":0.7123260498046875,"scaleY":0.7123260498046875,"skewX":-89.99563598632812,"skewY":-89.99563598632812,"duration":6,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":48,"isEmpty":false,"texName":"bieshu_xinxin.png","x":-32,"y":90,"scaleX":0.7123260498046875,"scaleY":0.7123260498046875,"skewX":0,"skewY":0,"duration":25,"mark":"","alpha":0,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false}],"keyFrameNum":6},{"frames":[{"isTween":false,"frameIndex":0,"isEmpty":true},{"isTween":true,"frameIndex":20,"isEmpty":false,"texName":"bieshu_xinxin.png","x":-102,"y":140,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":6,"mark":"","alpha":0,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":26,"isEmpty":false,"texName":"bieshu_xinxin.png","x":-102,"y":140,"scaleX":1,"scaleY":1,"skewX":89.9947509765625,"skewY":89.9947509765625,"duration":6,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":32,"isEmpty":false,"texName":"bieshu_xinxin.png","x":-102,"y":140,"scaleX":1,"scaleY":1,"skewX":180,"skewY":180,"duration":6,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":38,"isEmpty":false,"texName":"bieshu_xinxin.png","x":-102,"y":140,"scaleX":1,"scaleY":1,"skewX":-89.9947509765625,"skewY":-89.9947509765625,"duration":6,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":44,"isEmpty":false,"texName":"bieshu_xinxin.png","x":-102,"y":140,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":29,"mark":"","alpha":0,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false}],"keyFrameNum":6},{"frames":[{"isTween":true,"frameIndex":0,"isEmpty":false,"texName":"bieshu_40001.png","x":4.1,"y":24.85,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":12,"mark":"","alpha":0,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":12,"isEmpty":false,"texName":"bieshu_40001.png","x":4.1,"y":24.85,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":61,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false}],"keyFrameNum":2},{"frames":[{"isTween":false,"frameIndex":0,"isEmpty":true},{"isTween":true,"frameIndex":12,"isEmpty":false,"texName":"bieshu_400013.png","x":-6,"y":8.05,"scaleX":1,"scaleY":0.0370330810546875,"skewX":0,"skewY":0,"duration":6,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":18,"isEmpty":false,"texName":"bieshu_400013.png","x":-6,"y":119.5,"scaleX":1,"scaleY":1.0499725341796875,"skewX":0,"skewY":0,"duration":3,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":21,"isEmpty":false,"texName":"bieshu_400013.png","x":-6,"y":107.4,"scaleX":1,"scaleY":0.9399871826171875,"skewX":0,"skewY":0,"duration":3,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":24,"isEmpty":false,"texName":"bieshu_400013.png","x":-6,"y":114,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":49,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false}],"keyFrameNum":5},{"frames":[{"isTween":true,"frameIndex":0,"isEmpty":false,"texName":"bieshu_400012.png","x":-1.9,"y":121.9,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":12,"mark":"","alpha":0,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":12,"isEmpty":false,"texName":"bieshu_400012.png","x":-1.9,"y":121.9,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":61,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false}],"keyFrameNum":2}]}],"animNum":1,"texNum":4,"textures":["bieshu_xinxin.png","bieshu_40001.png","bieshu_400013.png","bieshu_400012.png"]}

================================================
FILE: android/FlashSupport/app/src/main/assets/flashAnims/callTextAnim.flajson
================================================
{"name":"callTextAnim","frameRate":30,"anims":[{"animName":"arriving1","layerNum":8,"frameMaxNum":17,"layers":[{"frames":[{"isTween":true,"frameIndex":0,"isEmpty":false,"texName":"callTextAnim_DAA.png","x":-340,"y":14.6,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":16,"mark":"","color":{"a":0,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":16,"isEmpty":false,"texName":"callTextAnim_DAA.png","x":-218,"y":14.6,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":true}],"keyFrameNum":2},{"frames":[{"isTween":true,"frameIndex":0,"isEmpty":false,"texName":"callTextAnim_r.png","x":-233,"y":0.6,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":15,"mark":"","color":{"a":0,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":15,"isEmpty":false,"texName":"callTextAnim_r.png","x":-134,"y":0.6,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":16,"isEmpty":false,"texName":"callTextAnim_r.png","x":-134,"y":0.6,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":true}],"keyFrameNum":3},{"frames":[{"isTween":true,"frameIndex":0,"isEmpty":false,"texName":"callTextAnim_r.png","x":-161.65,"y":-0.05,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":14,"mark":"","color":{"a":0,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":14,"isEmpty":false,"texName":"callTextAnim_r.png","x":-73.65,"y":-0.05,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":2,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":16,"isEmpty":false,"texName":"callTextAnim_r.png","x":-73.65,"y":-0.05,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":true}],"keyFrameNum":3},{"frames":[{"isTween":true,"frameIndex":0,"isEmpty":false,"texName":"callTextAnim_i.png","x":-101.65,"y":16.95,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":13,"mark":"","color":{"a":0,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":13,"isEmpty":false,"texName":"callTextAnim_i.png","x":-24.65,"y":16.95,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":3,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":16,"isEmpty":false,"texName":"callTextAnim_i.png","x":-24.65,"y":16.95,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":true}],"keyFrameNum":3},{"frames":[{"isTween":true,"frameIndex":0,"isEmpty":false,"texName":"callTextAnim_v.png","x":-24.65,"y":-0.05,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":12,"mark":"","color":{"a":0,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":12,"isEmpty":false,"texName":"callTextAnim_v.png","x":41.35,"y":-0.05,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":4,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":16,"isEmpty":false,"texName":"callTextAnim_v.png","x":41.35,"y":-0.05,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":true}],"keyFrameNum":3},{"frames":[{"isTween":true,"frameIndex":0,"isEmpty":false,"texName":"callTextAnim_i.png","x":57.35,"y":16.6,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":11,"mark":"","color":{"a":0,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":11,"isEmpty":false,"texName":"callTextAnim_i.png","x":112.35,"y":16.6,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":5,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":16,"isEmpty":false,"texName":"callTextAnim_i.png","x":112.35,"y":16.6,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":true}],"keyFrameNum":3},{"frames":[{"isTween":true,"frameIndex":0,"isEmpty":false,"texName":"callTextAnim_n.png","x":136,"y":2.95,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":10,"mark":"","color":{"a":0,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":10,"isEmpty":false,"texName":"callTextAnim_n.png","x":180,"y":2.95,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":6,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":16,"isEmpty":false,"texName":"callTextAnim_n.png","x":180,"y":2.95,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":true}],"keyFrameNum":3},{"frames":[{"isTween":true,"frameIndex":0,"isEmpty":false,"texName":"callTextAnim_g.png","x":238.35,"y":-17.05,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":9,"mark":"","color":{"a":0,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":9,"isEmpty":false,"texName":"callTextAnim_g.png","x":268.35,"y":-17.05,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":7,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":16,"isEmpty":false,"texName":"callTextAnim_g.png","x":268.35,"y":-17.05,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":true}],"keyFrameNum":3}]},{"animName":"arriving2","layerNum":8,"frameMaxNum":35,"layers":[{"frames":[{"isTween":false,"frameIndex":0,"isEmpty":false,"texName":"callTextAnim_g.png","x":269.35,"y":-18.05,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":20,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":true,"frameIndex":20,"isEmpty":false,"texName":"callTextAnim_g.png","x":269.35,"y":-18.05,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":7,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":true,"frameIndex":27,"isEmpty":false,"texName":"callTextAnim_g.png","x":269.35,"y":-18.05,"scaleX":1.4499969482421875,"scaleY":1.4499969482421875,"skewX":0,"skewY":0,"duration":7,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":34,"isEmpty":false,"texName":"callTextAnim_g.png","x":269.35,"y":-18.05,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":true}],"keyFrameNum":4},{"frames":[{"isTween":false,"frameIndex":0,"isEmpty":false,"texName":"callTextAnim_n.png","x":181,"y":1.95,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":18,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":true,"frameIndex":18,"isEmpty":false,"texName":"callTextAnim_n.png","x":181,"y":1.95,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":7,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":true,"frameIndex":25,"isEmpty":false,"texName":"callTextAnim_n.png","x":181,"y":1.95,"scaleX":1.4499969482421875,"scaleY":1.4499969482421875,"skewX":0,"skewY":0,"duration":7,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":32,"isEmpty":false,"texName":"callTextAnim_n.png","x":181,"y":1.95,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":3,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false}],"keyFrameNum":4},{"frames":[{"isTween":false,"frameIndex":0,"isEmpty":false,"texName":"callTextAnim_i.png","x":113.35,"y":15.6,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":15,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":true,"frameIndex":15,"isEmpty":false,"texName":"callTextAnim_i.png","x":113.35,"y":15.6,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":7,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":true,"frameIndex":22,"isEmpty":false,"texName":"callTextAnim_i.png","x":113.35,"y":15.6,"scaleX":1.4499969482421875,"scaleY":1.4499969482421875,"skewX":0,"skewY":0,"duration":7,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":29,"isEmpty":false,"texName":"callTextAnim_i.png","x":113.35,"y":15.6,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":6,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false}],"keyFrameNum":4},{"frames":[{"isTween":false,"frameIndex":0,"isEmpty":false,"texName":"callTextAnim_v.png","x":42.35,"y":-1.05,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":12,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":true,"frameIndex":12,"isEmpty":false,"texName":"callTextAnim_v.png","x":42.35,"y":-1.05,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":7,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":true,"frameIndex":19,"isEmpty":false,"texName":"callTextAnim_v.png","x":42.35,"y":-1.05,"scaleX":1.4499969482421875,"scaleY":1.4499969482421875,"skewX":0,"skewY":0,"duration":8,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":27,"isEmpty":false,"texName":"callTextAnim_v.png","x":42.35,"y":-1.05,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":8,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false}],"keyFrameNum":4},{"frames":[{"isTween":false,"frameIndex":0,"isEmpty":false,"texName":"callTextAnim_i.png","x":-23.65,"y":15.95,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":9,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":true,"frameIndex":9,"isEmpty":false,"texName":"callTextAnim_i.png","x":-23.65,"y":15.95,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":7,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":true,"frameIndex":16,"isEmpty":false,"texName":"callTextAnim_i.png","x":-23.65,"y":15.95,"scaleX":1.4499969482421875,"scaleY":1.4499969482421875,"skewX":0,"skewY":0,"duration":8,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":24,"isEmpty":false,"texName":"callTextAnim_i.png","x":-23.65,"y":15.95,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":11,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false}],"keyFrameNum":4},{"frames":[{"isTween":false,"frameIndex":0,"isEmpty":false,"texName":"callTextAnim_r.png","x":-72.65,"y":-1.05,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":6,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":true,"frameIndex":6,"isEmpty":false,"texName":"callTextAnim_r.png","x":-72.65,"y":-1.05,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":7,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":true,"frameIndex":13,"isEmpty":false,"texName":"callTextAnim_r.png","x":-72.65,"y":-1.05,"scaleX":1.4499969482421875,"scaleY":1.4499969482421875,"skewX":0,"skewY":0,"duration":8,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":21,"isEmpty":false,"texName":"callTextAnim_r.png","x":-72.65,"y":-1.05,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":14,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false}],"keyFrameNum":4},{"frames":[{"isTween":false,"frameIndex":0,"isEmpty":false,"texName":"callTextAnim_r.png","x":-133,"y":-0.4,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":3,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":true,"frameIndex":3,"isEmpty":false,"texName":"callTextAnim_r.png","x":-133,"y":-0.4,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":7,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":true,"frameIndex":10,"isEmpty":false,"texName":"callTextAnim_r.png","x":-133,"y":-0.4,"scaleX":1.4499969482421875,"scaleY":1.4499969482421875,"skewX":0,"skewY":0,"duration":8,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":18,"isEmpty":false,"texName":"callTextAnim_r.png","x":-133,"y":-0.4,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":17,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false}],"keyFrameNum":4},{"frames":[{"isTween":true,"frameIndex":0,"isEmpty":false,"texName":"callTextAnim_DAA.png","x":-217,"y":13.6,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":7,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":true,"frameIndex":7,"isEmpty":false,"texName":"callTextAnim_DAA.png","x":-217,"y":13.6,"scaleX":1.4499969482421875,"scaleY":1.4499969482421875,"skewX":0,"skewY":0,"duration":8,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":15,"isEmpty":false,"texName":"callTextAnim_DAA.png","x":-217,"y":13.6,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":20,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false}],"keyFrameNum":3}]},{"animName":"calling1","layerNum":7,"frameMaxNum":16,"layers":[{"frames":[{"isTween":true,"frameIndex":0,"isEmpty":false,"texName":"callTextAnim_c.png","x":-270,"y":-0.35,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":15,"mark":"","color":{"a":0,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":15,"isEmpty":false,"texName":"callTextAnim_c.png","x":-171,"y":-0.35,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":true}],"keyFrameNum":2},{"frames":[{"isTween":true,"frameIndex":0,"isEmpty":false,"texName":"callTextAnim_a.png","x":-172.65,"y":-17,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":14,"mark":"","color":{"a":0,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":14,"isEmpty":false,"texName":"callTextAnim_a.png","x":-84.65,"y":-17,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":15,"isEmpty":false,"texName":"callTextAnim_a.png","x":-84.65,"y":-17,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":true}],"keyFrameNum":3},{"frames":[{"isTween":true,"frameIndex":0,"isEmpty":false,"texName":"callTextAnim_l.png","x":-97.65,"y":0,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":13,"mark":"","color":{"a":0,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":13,"isEmpty":false,"texName":"callTextAnim_l.png","x":-20.65,"y":0,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":2,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":15,"isEmpty":false,"texName":"callTextAnim_l.png","x":-20.65,"y":0,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":true}],"keyFrameNum":3},{"frames":[{"isTween":true,"frameIndex":0,"isEmpty":false,"texName":"callTextAnim_l.png","x":-42.65,"y":0,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":12,"mark":"","color":{"a":0,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":12,"isEmpty":false,"texName":"callTextAnim_l.png","x":23.35,"y":0,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":3,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":15,"isEmpty":false,"texName":"callTextAnim_l.png","x":23.35,"y":0,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":true}],"keyFrameNum":3},{"frames":[{"isTween":true,"frameIndex":0,"isEmpty":false,"texName":"callTextAnim_i.png","x":11.35,"y":-0.35,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":11,"mark":"","color":{"a":0,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":11,"isEmpty":false,"texName":"callTextAnim_i.png","x":66.35,"y":-0.35,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":4,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":15,"isEmpty":false,"texName":"callTextAnim_i.png","x":66.35,"y":-0.35,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":true}],"keyFrameNum":3},{"frames":[{"isTween":true,"frameIndex":0,"isEmpty":false,"texName":"callTextAnim_n.png","x":90,"y":-14,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":10,"mark":"","color":{"a":0,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":10,"isEmpty":false,"texName":"callTextAnim_n.png","x":134,"y":-14,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":5,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":15,"isEmpty":false,"texName":"callTextAnim_n.png","x":134,"y":-14,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":true}],"keyFrameNum":3},{"frames":[{"isTween":true,"frameIndex":0,"isEmpty":false,"texName":"callTextAnim_g.png","x":192.35,"y":-34,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":9,"mark":"","color":{"a":0,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":9,"isEmpty":false,"texName":"callTextAnim_g.png","x":222.35,"y":-34,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":6,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":15,"isEmpty":false,"texName":"callTextAnim_g.png","x":222.35,"y":-34,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":true}],"keyFrameNum":3}]},{"animName":"calling2","layerNum":7,"frameMaxNum":35,"layers":[{"frames":[{"isTween":false,"frameIndex":0,"isEmpty":false,"texName":"callTextAnim_g.png","x":221.35,"y":-34,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":18,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":true,"frameIndex":18,"isEmpty":false,"texName":"callTextAnim_g.png","x":221.35,"y":-34,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":7,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":true,"frameIndex":25,"isEmpty":false,"texName":"callTextAnim_g.png","x":221.35,"y":-34,"scaleX":1.45001220703125,"scaleY":1.45001220703125,"skewX":0,"skewY":0,"duration":8,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":33,"isEmpty":false,"texName":"callTextAnim_g.png","x":221.35,"y":-34,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":2,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false}],"keyFrameNum":4},{"frames":[{"isTween":false,"frameIndex":0,"isEmpty":false,"texName":"callTextAnim_n.png","x":133,"y":-14,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":15,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":true,"frameIndex":15,"isEmpty":false,"texName":"callTextAnim_n.png","x":133,"y":-14,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":7,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":true,"frameIndex":22,"isEmpty":false,"texName":"callTextAnim_n.png","x":133,"y":-14,"scaleX":1.45001220703125,"scaleY":1.45001220703125,"skewX":0,"skewY":0,"duration":8,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":30,"isEmpty":false,"texName":"callTextAnim_n.png","x":133,"y":-14,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":5,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false}],"keyFrameNum":4},{"frames":[{"isTween":false,"frameIndex":0,"isEmpty":false,"texName":"callTextAnim_i.png","x":65.35,"y":-0.35,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":12,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":true,"frameIndex":12,"isEmpty":false,"texName":"callTextAnim_i.png","x":65.35,"y":-0.35,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":7,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":true,"frameIndex":19,"isEmpty":false,"texName":"callTextAnim_i.png","x":65.35,"y":-0.35,"scaleX":1.45001220703125,"scaleY":1.45001220703125,"skewX":0,"skewY":0,"duration":8,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":27,"isEmpty":false,"texName":"callTextAnim_i.png","x":65.35,"y":-0.35,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":8,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false}],"keyFrameNum":4},{"frames":[{"isTween":false,"frameIndex":0,"isEmpty":false,"texName":"callTextAnim_l.png","x":22.35,"y":0,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":9,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":true,"frameIndex":9,"isEmpty":false,"texName":"callTextAnim_l.png","x":22.35,"y":0,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":7,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":true,"frameIndex":16,"isEmpty":false,"texName":"callTextAnim_l.png","x":22.35,"y":0,"scaleX":1.45001220703125,"scaleY":1.45001220703125,"skewX":0,"skewY":0,"duration":8,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":24,"isEmpty":false,"texName":"callTextAnim_l.png","x":22.35,"y":0,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":11,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false}],"keyFrameNum":4},{"frames":[{"isTween":false,"frameIndex":0,"isEmpty":false,"texName":"callTextAnim_l.png","x":-21.65,"y":0,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":6,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":true,"frameIndex":6,"isEmpty":false,"texName":"callTextAnim_l.png","x":-21.65,"y":0,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":7,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":true,"frameIndex":13,"isEmpty":false,"texName":"callTextAnim_l.png","x":-21.65,"y":0,"scaleX":1.45001220703125,"scaleY":1.45001220703125,"skewX":0,"skewY":0,"duration":8,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":21,"isEmpty":false,"texName":"callTextAnim_l.png","x":-21.65,"y":0,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":14,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false}],"keyFrameNum":4},{"frames":[{"isTween":false,"frameIndex":0,"isEmpty":false,"texName":"callTextAnim_a.png","x":-85.65,"y":-17,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":3,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":true,"frameIndex":3,"isEmpty":false,"texName":"callTextAnim_a.png","x":-85.65,"y":-17,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":7,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":true,"frameIndex":10,"isEmpty":false,"texName":"callTextAnim_a.png","x":-85.65,"y":-17,"scaleX":1.45001220703125,"scaleY":1.45001220703125,"skewX":0,"skewY":0,"duration":8,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":18,"isEmpty":false,"texName":"callTextAnim_a.png","x":-85.65,"y":-17,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":17,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false}],"keyFrameNum":4},{"frames":[{"isTween":true,"frameIndex":0,"isEmpty":false,"texName":"callTextAnim_c.png","x":-172,"y":-0.35,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":7,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":true,"frameIndex":7,"isEmpty":false,"texName":"callTextAnim_c.png","x":-172,"y":-0.35,"scaleX":1.4499969482421875,"scaleY":1.4499969482421875,"skewX":0,"skewY":0,"duration":8,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":15,"isEmpty":false,"texName":"callTextAnim_c.png","x":-172,"y":-0.35,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":20,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false}],"keyFrameNum":3}]},{"animName":"listening1","layerNum":9,"frameMaxNum":18,"layers":[{"frames":[{"isTween":true,"frameIndex":0,"isEmpty":false,"texName":"callTextAnim_xdal.png","x":-235,"y":6.6,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":17,"mark":"","color":{"a":0,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":17,"isEmpty":false,"texName":"callTextAnim_xdal.png","x":-113,"y":6.6,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":true}],"keyFrameNum":2},{"frames":[{"isTween":true,"frameIndex":0,"isEmpty":false,"texName":"callTextAnim_xi.png","x":-181,"y":8.6,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":16,"mark":"","color":{"a":0,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":16,"isEmpty":false,"texName":"callTextAnim_xi.png","x":-87,"y":8.6,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":17,"isEmpty":false,"texName":"callTextAnim_xi.png","x":-87,"y":8.6,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":true}],"keyFrameNum":3},{"frames":[{"isTween":true,"frameIndex":0,"isEmpty":false,"texName":"callTextAnim_xs.png","x":-136,"y":-0.4,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":15,"mark":"","color":{"a":0,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":15,"isEmpty":false,"texName":"callTextAnim_xs.png","x":-61,"y":-0.4,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":2,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":17,"isEmpty":false,"texName":"callTextAnim_xs.png","x":-61,"y":-0.4,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":true}],"keyFrameNum":3},{"frames":[{"isTween":true,"frameIndex":0,"isEmpty":false,"texName":"callTextAnim_xt.png","x":-100.65,"y":3.95,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":14,"mark":"","color":{"a":0,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":14,"isEmpty":false,"texName":"callTextAnim_xt.png","x":-32.65,"y":3.95,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":3,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":17,"isEmpty":false,"texName":"callTextAnim_xt.png","x":-32.65,"y":3.95,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":true}],"keyFrameNum":3},{"frames":[{"isTween":true,"frameIndex":0,"isEmpty":false,"texName":"callTextAnim_xe.png","x":-60.65,"y":-0.05,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":13,"mark":"","color":{"a":0,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":13,"isEmpty":false,"texName":"callTextAnim_xe.png","x":0.35,"y":-0.05,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":4,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":17,"isEmpty":false,"texName":"callTextAnim_xe.png","x":0.35,"y":-0.05,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":true}],"keyFrameNum":3},{"frames":[{"isTween":true,"frameIndex":0,"isEmpty":false,"texName":"callTextAnim_xn.png","x":-11.65,"y":0.95,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":12,"mark":"","color":{"a":0,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":12,"isEmpty":false,"texName":"callTextAnim_xn.png","x":42.35,"y":0.95,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":5,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":17,"isEmpty":false,"texName":"callTextAnim_xn.png","x":42.35,"y":0.95,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":true}],"keyFrameNum":3},{"frames":[{"isTween":true,"frameIndex":0,"isEmpty":false,"texName":"callTextAnim_xi.png","x":26.35,"y":7.6,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":11,"mark":"","color":{"a":0,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":11,"isEmpty":false,"texName":"callTextAnim_xi.png","x":73.35,"y":7.6,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":6,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":17,"isEmpty":false,"texName":"callTextAnim_xi.png","x":73.35,"y":7.6,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":true}],"keyFrameNum":3},{"frames":[{"isTween":true,"frameIndex":0,"isEmpty":false,"texName":"callTextAnim_xn.png","x":65,"y":-0.05,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":10,"mark":"","color":{"a":0,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":10,"isEmpty":false,"texName":"callTextAnim_xn.png","x":105,"y":-0.05,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":7,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":17,"isEmpty":false,"texName":"callTextAnim_xn.png","x":105,"y":-0.05,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":true}],"keyFrameNum":3},{"frames":[{"isTween":true,"frameIndex":0,"isEmpty":false,"texName":"callTextAnim_xg.png","x":115.35,"y":-10.05,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":9,"mark":"","color":{"a":0,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":9,"isEmpty":false,"texName":"callTextAnim_xg.png","x":145.35,"y":-10.05,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":8,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":17,"isEmpty":false,"texName":"callTextAnim_xg.png","x":145.35,"y":-10.05,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":true}],"keyFrameNum":3}]},{"animName":"listening2","layerNum":9,"frameMaxNum":40,"layers":[{"frames":[{"isTween":true,"frameIndex":0,"isEmpty":false,"texName":"callTextAnim_xdal.png","x":-113,"y":6.65,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":7,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":true,"frameIndex":7,"isEmpty":false,"texName":"callTextAnim_xdal.png","x":-113,"y":6.65,"scaleX":1.3499755859375,"scaleY":1.3499755859375,"skewX":0,"skewY":0,"duration":8,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":15,"isEmpty":false,"texName":"callTextAnim_xdal.png","x":-113,"y":6.65,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":25,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false}],"keyFrameNum":3},{"frames":[{"isTween":false,"frameIndex":0,"isEmpty":false,"texName":"callTextAnim_xi.png","x":-87,"y":8.65,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":3,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":true,"frameIndex":3,"isEmpty":false,"texName":"callTextAnim_xi.png","x":-87,"y":8.65,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":7,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":true,"frameIndex":10,"isEmpty":false,"texName":"callTextAnim_xi.png","x":-87,"y":8.65,"scaleX":1.3499755859375,"scaleY":1.3499755859375,"skewX":0,"skewY":0,"duration":8,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":18,"isEmpty":false,"texName":"callTextAnim_xi.png","x":-87,"y":8.65,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":22,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false}],"keyFrameNum":4},{"frames":[{"isTween":false,"frameIndex":0,"isEmpty":false,"texName":"callTextAnim_xs.png","x":-61,"y":-0.35,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":6,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":true,"frameIndex":6,"isEmpty":false,"texName":"callTextAnim_xs.png","x":-61,"y":-0.35,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":7,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":true,"frameIndex":13,"isEmpty":false,"texName":"callTextAnim_xs.png","x":-61,"y":-0.35,"scaleX":1.3499755859375,"scaleY":1.3499755859375,"skewX":0,"skewY":0,"duration":8,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":21,"isEmpty":false,"texName":"callTextAnim_xs.png","x":-61,"y":-0.35,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":19,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false}],"keyFrameNum":4},{"frames":[{"isTween":false,"frameIndex":0,"isEmpty":false,"texName":"callTextAnim_xt.png","x":-32.65,"y":4,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":9,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":true,"frameIndex":9,"isEmpty":false,"texName":"callTextAnim_xt.png","x":-32.65,"y":4,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":7,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":true,"frameIndex":16,"isEmpty":false,"texName":"callTextAnim_xt.png","x":-32.65,"y":4,"scaleX":1.3499755859375,"scaleY":1.3499755859375,"skewX":0,"skewY":0,"duration":8,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":24,"isEmpty":false,"texName":"callTextAnim_xt.png","x":-32.65,"y":4,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":16,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false}],"keyFrameNum":4},{"frames":[{"isTween":false,"frameIndex":0,"isEmpty":false,"texName":"callTextAnim_xe.png","x":0.35,"y":0,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":12,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":true,"frameIndex":12,"isEmpty":false,"texName":"callTextAnim_xe.png","x":0.35,"y":0,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":7,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":true,"frameIndex":19,"isEmpty":false,"texName":"callTextAnim_xe.png","x":0.35,"y":0,"scaleX":1.3499755859375,"scaleY":1.3499755859375,"skewX":0,"skewY":0,"duration":8,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":27,"isEmpty":false,"texName":"callTextAnim_xe.png","x":0.35,"y":0,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":13,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false}],"keyFrameNum":4},{"frames":[{"isTween":false,"frameIndex":0,"isEmpty":false,"texName":"callTextAnim_xn.png","x":42.35,"y":1,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":15,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":true,"frameIndex":15,"isEmpty":false,"texName":"callTextAnim_xn.png","x":42.35,"y":1,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":7,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":true,"frameIndex":22,"isEmpty":false,"texName":"callTextAnim_xn.png","x":42.35,"y":1,"scaleX":1.3499755859375,"scaleY":1.3499755859375,"skewX":0,"skewY":0,"duration":8,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":30,"isEmpty":false,"texName":"callTextAnim_xn.png","x":42.35,"y":1,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":10,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false}],"keyFrameNum":4},{"frames":[{"isTween":false,"frameIndex":0,"isEmpty":false,"texName":"callTextAnim_xi.png","x":73.35,"y":7.65,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":18,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":true,"frameIndex":18,"isEmpty":false,"texName":"callTextAnim_xi.png","x":73.35,"y":7.65,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":7,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":true,"frameIndex":25,"isEmpty":false,"texName":"callTextAnim_xi.png","x":73.35,"y":7.65,"scaleX":1.3499755859375,"scaleY":1.3499755859375,"skewX":0,"skewY":0,"duration":8,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":33,"isEmpty":false,"texName":"callTextAnim_xi.png","x":73.35,"y":7.65,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":7,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false}],"keyFrameNum":4},{"frames":[{"isTween":false,"frameIndex":0,"isEmpty":false,"texName":"callTextAnim_xg.png","x":145.35,"y":-10,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":24,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":true,"frameIndex":24,"isEmpty":false,"texName":"callTextAnim_xg.png","x":145.35,"y":-10,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":7,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":true,"frameIndex":31,"isEmpty":false,"texName":"callTextAnim_xg.png","x":145.35,"y":-10,"scaleX":1.3499755859375,"scaleY":1.3499755859375,"skewX":0,"skewY":0,"duration":8,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":39,"isEmpty":false,"texName":"callTextAnim_xg.png","x":145.35,"y":-10,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":true}],"keyFrameNum":4},{"frames":[{"isTween":false,"frameIndex":0,"isEmpty":false,"texName":"callTextAnim_xn.png","x":105,"y":0,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":21,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":true,"frameIndex":21,"isEmpty":false,"texName":"callTextAnim_xn.png","x":105,"y":0,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":7,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":true,"frameIndex":28,"isEmpty":false,"texName":"callTextAnim_xn.png","x":105,"y":0,"scaleX":1.3499755859375,"scaleY":1.3499755859375,"skewX":0,"skewY":0,"duration":8,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":36,"isEmpty":false,"texName":"callTextAnim_xn.png","x":105,"y":0,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":4,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false}],"keyFrameNum":4}]},{"animName":"quan","layerNum":36,"frameMaxNum":47,"layers":[{"frames":[{"isTween":false,"frameIndex":0,"isEmpty":true},{"isTween":true,"frameIndex":17,"isEmpty":false,"texName":"callTextAnim_quan.png","x":534.35,"y":33.55,"scaleX":0.117645263671875,"scaleY":0.117645263671875,"skewX":0,"skewY":0,"duration":14,"mark":"","color":{"a":0,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":true,"frameIndex":31,"isEmpty":false,"texName":"callTextAnim_quan.png","x":534.35,"y":33.55,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":15,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":46,"isEmpty":false,"texName":"callTextAnim_quan.png","x":534.35,"y":33.55,"scaleX":0.117645263671875,"scaleY":0.117645263671875,"skewX":0,"skewY":0,"duration":1,"mark":"","color":{"a":0,"r":255,"g":255,"b":255},"isLastIndex":true}],"keyFrameNum":4},{"frames":[{"isTween":false,"frameIndex":0,"isEmpty":true},{"isTween":false,"frameIndex":9,"isEmpty":true},{"isTween":true,"frameIndex":16,"isEmpty":false,"texName":"callTextAnim_quan.png","x":471.35,"y":33.55,"scaleX":0.117645263671875,"scaleY":0.117645263671875,"skewX":0,"skewY":0,"duration":14,"mark":"","color":{"a":0,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":true,"frameIndex":30,"isEmpty":false,"texName":"callTextAnim_quan.png","x":471.35,"y":33.55,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":15,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":45,"isEmpty":false,"texName":"callTextAnim_quan.png","x":471.35,"y":33.55,"scaleX":0.117645263671875,"scaleY":0.117645263671875,"skewX":0,"skewY":0,"duration":1,"mark":"","color":{"a":0,"r":255,"g":255,"b":255},"isLastIndex":true}],"keyFrameNum":5},{"frames":[{"isTween":false,"frameIndex":0,"isEmpty":true},{"isTween":false,"frameIndex":9,"isEmpty":true},{"isTween":true,"frameIndex":15,"isEmpty":false,"texName":"callTextAnim_quan.png","x":409.35,"y":33.55,"scaleX":0.117645263671875,"scaleY":0.117645263671875,"skewX":0,"skewY":0,"duration":14,"mark":"","color":{"a":0,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":true,"frameIndex":29,"isEmpty":false,"texName":"callTextAnim_quan.png","x":409.35,"y":33.55,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":15,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":44,"isEmpty":false,"texName":"callTextAnim_quan.png","x":409.35,"y":33.55,"scaleX":0.117645263671875,"scaleY":0.117645263671875,"skewX":0,"skewY":0,"duration":1,"mark":"","color":{"a":0,"r":255,"g":255,"b":255},"isLastIndex":true}],"keyFrameNum":5},{"frames":[{"isTween":false,"frameIndex":0,"isEmpty":true},{"isTween":false,"frameIndex":9,"isEmpty":true},{"isTween":true,"frameIndex":14,"isEmpty":false,"texName":"callTextAnim_quan.png","x":346.35,"y":33.55,"scaleX":0.117645263671875,"scaleY":0.117645263671875,"skewX":0,"skewY":0,"duration":14,"mark":"","color":{"a":0,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":true,"frameIndex":28,"isEmpty":false,"texName":"callTextAnim_quan.png","x":346.35,"y":33.55,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":15,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":43,"isEmpty":false,"texName":"callTextAnim_quan.png","x":346.35,"y":33.55,"scaleX":0.117645263671875,"scaleY":0.117645263671875,"skewX":0,"skewY":0,"duration":1,"mark":"","color":{"a":0,"r":255,"g":255,"b":255},"isLastIndex":true}],"keyFrameNum":5},{"frames":[{"isTween":false,"frameIndex":0,"isEmpty":true},{"isTween":false,"frameIndex":9,"isEmpty":true},{"isTween":true,"frameIndex":13,"isEmpty":false,"texName":"callTextAnim_quan.png","x":283.35,"y":33.55,"scaleX":0.117645263671875,"scaleY":0.117645263671875,"skewX":0,"skewY":0,"duration":14,"mark":"","color":{"a":0,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":true,"frameIndex":27,"isEmpty":false,"texName":"callTextAnim_quan.png","x":283.35,"y":33.55,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":15,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":42,"isEmpty":false,"texName":"callTextAnim_quan.png","x":283.35,"y":33.55,"scaleX":0.117645263671875,"scaleY":0.117645263671875,"skewX":0,"skewY":0,"duration":1,"mark":"","color":{"a":0,"r":255,"g":255,"b":255},"isLastIndex":true}],"keyFrameNum":5},{"frames":[{"isTween":false,"frameIndex":0,"isEmpty":true},{"isTween":false,"frameIndex":9,"isEmpty":true},{"isTween":true,"frameIndex":12,"isEmpty":false,"texName":"callTextAnim_quan.png","x":219.35,"y":33.55,"scaleX":0.117645263671875,"scaleY":0.117645263671875,"skewX":0,"skewY":0,"duration":14,"mark":"","color":{"a":0,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":true,"frameIndex":26,"isEmpty":false,"texName":"callTextAnim_quan.png","x":219.35,"y":33.55,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":15,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":41,"isEmpty":false,"texName":"callTextAnim_quan.png","x":219.35,"y":33.55,"scaleX":0.117645263671875,"scaleY":0.117645263671875,"skewX":0,"skewY":0,"duration":1,"mark":"","color":{"a":0,"r":255,"g":255,"b":255},"isLastIndex":true}],"keyFrameNum":5},{"frames":[{"isTween":false,"frameIndex":0,"isEmpty":true},{"isTween":false,"frameIndex":9,"isEmpty":true},{"isTween":true,"frameIndex":11,"isEmpty":false,"texName":"callTextAnim_quan.png","x":157.35,"y":33.55,"scaleX":0.117645263671875,"scaleY":0.117645263671875,"skewX":0,"skewY":0,"duration":14,"mark":"","color":{"a":0,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":true,"frameIndex":25,"isEmpty":false,"texName":"callTextAnim_quan.png","x":157.35,"y":33.55,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":15,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":40,"isEmpty":false,"texName":"callTextAnim_quan.png","x":157.35,"y":33.55,"scaleX":0.117645263671875,"scaleY":0.117645263671875,"skewX":0,"skewY":0,"duration":1,"mark":"","color":{"a":0,"r":255,"g":255,"b":255},"isLastIndex":true}],"keyFrameNum":5},{"frames":[{"isTween":false,"frameIndex":0,"isEmpty":true},{"isTween":false,"frameIndex":9,"isEmpty":true},{"isTween":true,"frameIndex":10,"isEmpty":false,"texName":"callTextAnim_quan.png","x":94.35,"y":33.55,"scaleX":0.117645263671875,"scaleY":0.117645263671875,"skewX":0,"skewY":0,"duration":14,"mark":"","color":{"a":0,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":true,"frameIndex":24,"isEmpty":false,"texName":"callTextAnim_quan.png","x":94.35,"y":33.55,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":15,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":39,"isEmpty":false,"texName":"callTextAnim_quan.png","x":94.35,"y":33.55,"scaleX":0.117645263671875,"scaleY":0.117645263671875,"skewX":0,"skewY":0,"duration":1,"mark":"","color":{"a":0,"r":255,"g":255,"b":255},"isLastIndex":true}],"keyFrameNum":5},{"frames":[{"isTween":false,"frameIndex":0,"isEmpty":true},{"isTween":true,"frameIndex":9,"isEmpty":false,"texName":"callTextAnim_quan.png","x":32.35,"y":33.55,"scaleX":0.117645263671875,"scaleY":0.117645263671875,"skewX":0,"skewY":0,"duration":14,"mark":"","color":{"a":0,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":true,"frameIndex":23,"isEmpty":false,"texName":"callTextAnim_quan.png","x":32.35,"y":33.55,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":15,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":38,"isEmpty":false,"texName":"callTextAnim_quan.png","x":32.35,"y":33.55,"scaleX":0.117645263671875,"scaleY":0.117645263671875,"skewX":0,"skewY":0,"duration":1,"mark":"","color":{"a":0,"r":255,"g":255,"b":255},"isLastIndex":true}],"keyFrameNum":4},{"frames":[{"isTween":false,"frameIndex":0,"isEmpty":true},{"isTween":false,"frameIndex":5,"isEmpty":true},{"isTween":true,"frameIndex":8,"isEmpty":false,"texName":"callTextAnim_quan.png","x":-30.65,"y":33.55,"scaleX":0.117645263671875,"scaleY":0.117645263671875,"skewX":0,"skewY":0,"duration":14,"mark":"","color":{"a":0,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":true,"frameIndex":22,"isEmpty":false,"texName":"callTextAnim_quan.png","x":-30.65,"y":33.55,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":15,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":37,"isEmpty":false,"texName":"callTextAnim_quan.png","x":-30.65,"y":33.55,"scaleX":0.117645263671875,"scaleY":0.117645263671875,"skewX":0,"skewY":0,"duration":1,"mark":"","color":{"a":0,"r":255,"g":255,"b":255},"isLastIndex":true}],"keyFrameNum":5},{"frames":[{"isTween":false,"frameIndex":0,"isEmpty":true},{"isTween":false,"frameIndex":5,"isEmpty":true},{"isTween":true,"frameIndex":7,"isEmpty":false,"texName":"callTextAnim_quan.png","x":-93.65,"y":33.55,"scaleX":0.117645263671875,"scaleY":0.117645263671875,"skewX":0,"skewY":0,"duration":14,"mark":"","color":{"a":0,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":true,"frameIndex":21,"isEmpty":false,"texName":"callTextAnim_quan.png","x":-93.65,"y":33.55,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":15,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":36,"isEmpty":false,"texName":"callTextAnim_quan.png","x":-93.65,"y":33.55,"scaleX":0.117645263671875,"scaleY":0.117645263671875,"skewX":0,"skewY":0,"duration":1,"mark":"","color":{"a":0,"r":255,"g":255,"b":255},"isLastIndex":true}],"keyFrameNum":5},{"frames":[{"isTween":false,"frameIndex":0,"isEmpty":true},{"isTween":false,"frameIndex":5,"isEmpty":true},{"isTween":true,"frameIndex":6,"isEmpty":false,"texName":"callTextAnim_quan.png","x":-156.65,"y":33.55,"scaleX":0.117645263671875,"scaleY":0.117645263671875,"skewX":0,"skewY":0,"duration":14,"mark":"","color":{"a":0,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":true,"frameIndex":20,"isEmpty":false,"texName":"callTextAnim_quan.png","x":-156.65,"y":33.55,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":15,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":35,"isEmpty":false,"texName":"callTextAnim_quan.png","x":-156.65,"y":33.55,"scaleX":0.117645263671875,"scaleY":0.117645263671875,"skewX":0,"skewY":0,"duration":1,"mark":"","color":{"a":0,"r":255,"g":255,"b":255},"isLastIndex":true}],"keyFrameNum":5},{"frames":[{"isTween":false,"frameIndex":0,"isEmpty":true},{"isTween":true,"frameIndex":5,"isEmpty":false,"texName":"callTextAnim_quan.png","x":-216.65,"y":33.55,"scaleX":0.117645263671875,"scaleY":0.117645263671875,"skewX":0,"skewY":0,"duration":14,"mark":"","color":{"a":0,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":true,"frameIndex":19,"isEmpty":false,"texName":"callTextAnim_quan.png","x":-216.65,"y":33.55,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":15,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":34,"isEmpty":false,"texName":"callTextAnim_quan.png","x":-216.65,"y":33.55,"scaleX":0.117645263671875,"scaleY":0.117645263671875,"skewX":0,"skewY":0,"duration":1,"mark":"","color":{"a":0,"r":255,"g":255,"b":255},"isLastIndex":true}],"keyFrameNum":4},{"frames":[{"isTween":false,"frameIndex":0,"isEmpty":true},{"isTween":true,"frameIndex":4,"isEmpty":false,"texName":"callTextAnim_quan.png","x":-281.65,"y":33.55,"scaleX":0.117645263671875,"scaleY":0.117645263671875,"skewX":0,"skewY":0,"duration":14,"mark":"","color":{"a":0,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":true,"frameIndex":18,"isEmpty":false,"texName":"callTextAnim_quan.png","x":-281.65,"y":33.55,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":15,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":33,"isEmpty":false,"texName":"callTextAnim_quan.png","x":-281.65,"y":33.55,"scaleX":0.117645263671875,"scaleY":0.117645263671875,"skewX":0,"skewY":0,"duration":1,"mark":"","color":{"a":0,"r":255,"g":255,"b":255},"isLastIndex":true}],"keyFrameNum":4},{"frames":[{"isTween":false,"frameIndex":0,"isEmpty":true},{"isTween":true,"frameIndex":3,"isEmpty":false,"texName":"callTextAnim_quan.png","x":-343.6,"y":33.55,"scaleX":0.117645263671875,"scaleY":0.117645263671875,"skewX":0,"skewY":0,"duration":14,"mark":"","color":{"a":0,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":true,"frameIndex":17,"isEmpty":false,"texName":"callTextAnim_quan.png","x":-343.6,"y":33.55,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":15,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":32,"isEmpty":false,"texName":"callTextAnim_quan.png","x":-343.6,"y":33.55,"scaleX":0.117645263671875,"scaleY":0.117645263671875,"skewX":0,"skewY":0,"duration":1,"mark":"","color":{"a":0,"r":255,"g":255,"b":255},"isLastIndex":true}],"keyFrameNum":4},{"frames":[{"isTween":false,"frameIndex":0,"isEmpty":true},{"isTween":true,"frameIndex":2,"isEmpty":false,"texName":"callTextAnim_quan.png","x":-406.6,"y":33.55,"scaleX":0.117645263671875,"scaleY":0.117645263671875,"skewX":0,"skewY":0,"duration":14,"mark":"","color":{"a":0,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":true,"frameIndex":16,"isEmpty":false,"texName":"callTextAnim_quan.png","x":-406.6,"y":33.55,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":15,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":31,"isEmpty":false,"texName":"callTextAnim_quan.png","x":-406.6,"y":33.55,"scaleX":0.117645263671875,"scaleY":0.117645263671875,"skewX":0,"skewY":0,"duration":1,"mark":"","color":{"a":0,"r":255,"g":255,"b":255},"isLastIndex":true}],"keyFrameNum":4},{"frames":[{"isTween":false,"frameIndex":0,"isEmpty":true},{"isTween":true,"frameIndex":1,"isEmpty":false,"texName":"callTextAnim_quan.png","x":-469.6,"y":33.55,"scaleX":0.117645263671875,"scaleY":0.117645263671875,"skewX":0,"skewY":0,"duration":14,"mark":"","color":{"a":0,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":true,"frameIndex":15,"isEmpty":false,"texName":"callTextAnim_quan.png","x":-469.6,"y":33.55,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":15,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":30,"isEmpty":false,"texName":"callTextAnim_quan.png","x":-469.6,"y":33.55,"scaleX":0.117645263671875,"scaleY":0.117645263671875,"skewX":0,"skewY":0,"duration":1,"mark":"","color":{"a":0,"r":255,"g":255,"b":255},"isLastIndex":true}],"keyFrameNum":4},{"frames":[{"isTween":true,"frameIndex":0,"isEmpty":false,"texName":"callTextAnim_quan.png","x":-532.6,"y":33.55,"scaleX":0.117645263671875,"scaleY":0.117645263671875,"skewX":0,"skewY":0,"duration":14,"mark":"","color":{"a":0,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":true,"frameIndex":14,"isEmpty":false,"texName":"callTextAnim_quan.png","x":-532.6,"y":33.55,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":15,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":29,"isEmpty":false,"texName":"callTextAnim_quan.png","x":-532.6,"y":33.55,"scaleX":0.117645263671875,"scaleY":0.117645263671875,"skewX":0,"skewY":0,"duration":1,"mark":"","color":{"a":0,"r":255,"g":255,"b":255},"isLastIndex":true}],"keyFrameNum":3},{"frames":[{"isTween":false,"frameIndex":0,"isEmpty":true},{"isTween":false,"frameIndex":9,"isEmpty":true},{"isTween":true,"frameIndex":17,"isEmpty":false,"texName":"callTextAnim_quan.png","x":534.35,"y":-30.45,"scaleX":0.117645263671875,"scaleY":0.117645263671875,"skewX":0,"skewY":0,"duration":14,"mark":"","color":{"a":0,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":true,"frameIndex":31,"isEmpty":false,"texName":"callTextAnim_quan.png","x":534.35,"y":-30.45,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":15,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":46,"isEmpty":false,"texName":"callTextAnim_quan.png","x":534.35,"y":-30.45,"scaleX":0.117645263671875,"scaleY":0.117645263671875,"skewX":0,"skewY":0,"duration":1,"mark":"","color":{"a":0,"r":255,"g":255,"b":255},"isLastIndex":true}],"keyFrameNum":5},{"frames":[{"isTween":false,"frameIndex":0,"isEmpty":true},{"isTween":false,"frameIndex":9,"isEmpty":true},{"isTween":true,"frameIndex":16,"isEmpty":false,"texName":"callTextAnim_quan.png","x":471.35,"y":-30.45,"scaleX":0.117645263671875,"scaleY":0.117645263671875,"skewX":0,"skewY":0,"duration":14,"mark":"","color":{"a":0,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":true,"frameIndex":30,"isEmpty":false,"texName":"callTextAnim_quan.png","x":471.35,"y":-30.45,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":15,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":45,"isEmpty":false,"texName":"callTextAnim_quan.png","x":471.35,"y":-30.45,"scaleX":0.117645263671875,"scaleY":0.117645263671875,"skewX":0,"skewY":0,"duration":1,"mark":"","color":{"a":0,"r":255,"g":255,"b":255},"isLastIndex":true}],"keyFrameNum":5},{"frames":[{"isTween":false,"frameIndex":0,"isEmpty":true},{"isTween":false,"frameIndex":9,"isEmpty":true},{"isTween":true,"frameIndex":15,"isEmpty":false,"texName":"callTextAnim_quan.png","x":409.35,"y":-30.45,"scaleX":0.117645263671875,"scaleY":0.117645263671875,"skewX":0,"skewY":0,"duration":14,"mark":"","color":{"a":0,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":true,"frameIndex":29,"isEmpty":false,"texName":"callTextAnim_quan.png","x":409.35,"y":-30.45,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":15,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":44,"isEmpty":false,"texName":"callTextAnim_quan.png","x":409.35,"y":-30.45,"scaleX":0.117645263671875,"scaleY":0.117645263671875,"skewX":0,"skewY":0,"duration":1,"mark":"","color":{"a":0,"r":255,"g":255,"b":255},"isLastIndex":true}],"keyFrameNum":5},{"frames":[{"isTween":false,"frameIndex":0,"isEmpty":true},{"isTween":false,"frameIndex":9,"isEmpty":true},{"isTween":true,"frameIndex":14,"isEmpty":false,"texName":"callTextAnim_quan.png","x":346.35,"y":-30.45,"scaleX":0.117645263671875,"scaleY":0.117645263671875,"skewX":0,"skewY":0,"duration":14,"mark":"","color":{"a":0,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":true,"frameIndex":28,"isEmpty":false,"texName":"callTextAnim_quan.png","x":346.35,"y":-30.45,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":15,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":43,"isEmpty":false,"texName":"callTextAnim_quan.png","x":346.35,"y":-30.45,"scaleX":0.117645263671875,"scaleY":0.117645263671875,"skewX":0,"skewY":0,"duration":1,"mark":"","color":{"a":0,"r":255,"g":255,"b":255},"isLastIndex":true}],"keyFrameNum":5},{"frames":[{"isTween":false,"frameIndex":0,"isEmpty":true},{"isTween":false,"frameIndex":9,"isEmpty":true},{"isTween":true,"frameIndex":13,"isEmpty":false,"texName":"callTextAnim_quan.png","x":283.35,"y":-30.45,"scaleX":0.117645263671875,"scaleY":0.117645263671875,"skewX":0,"skewY":0,"duration":14,"mark":"","color":{"a":0,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":true,"frameIndex":27,"isEmpty":false,"texName":"callTextAnim_quan.png","x":283.35,"y":-30.45,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":15,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":42,"isEmpty":false,"texName":"callTextAnim_quan.png","x":283.35,"y":-30.45,"scaleX":0.117645263671875,"scaleY":0.117645263671875,"skewX":0,"skewY":0,"duration":1,"mark":"","color":{"a":0,"r":255,"g":255,"b":255},"isLastIndex":true}],"keyFrameNum":5},{"frames":[{"isTween":false,"frameIndex":0,"isEmpty":true},{"isTween":false,"frameIndex":9,"isEmpty":true},{"isTween":true,"frameIndex":12,"isEmpty":false,"texName":"callTextAnim_quan.png","x":219.35,"y":-30.45,"scaleX":0.117645263671875,"scaleY":0.117645263671875,"skewX":0,"skewY":0,"duration":14,"mark":"","color":{"a":0,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":true,"frameIndex":26,"isEmpty":false,"texName":"callTextAnim_quan.png","x":219.35,"y":-30.45,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":15,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":41,"isEmpty":false,"texName":"callTextAnim_quan.png","x":219.35,"y":-30.45,"scaleX":0.117645263671875,"scaleY":0.117645263671875,"skewX":0,"skewY":0,"duration":1,"mark":"","color":{"a":0,"r":255,"g":255,"b":255},"isLastIndex":true}],"keyFrameNum":5},{"frames":[{"isTween":false,"frameIndex":0,"isEmpty":true},{"isTween":false,"frameIndex":9,"isEmpty":true},{"isTween":true,"frameIndex":11,"isEmpty":false,"texName":"callTextAnim_quan.png","x":157.35,"y":-30.45,"scaleX":0.117645263671875,"scaleY":0.117645263671875,"skewX":0,"skewY":0,"duration":14,"mark":"","color":{"a":0,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":true,"frameIndex":25,"isEmpty":false,"texName":"callTextAnim_quan.png","x":157.35,"y":-30.45,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":15,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":40,"isEmpty":false,"texName":"callTextAnim_quan.png","x":157.35,"y":-30.45,"scaleX":0.117645263671875,"scaleY":0.117645263671875,"skewX":0,"skewY":0,"duration":1,"mark":"","color":{"a":0,"r":255,"g":255,"b":255},"isLastIndex":true}],"keyFrameNum":5},{"frames":[{"isTween":false,"frameIndex":0,"isEmpty":true},{"isTween":false,"frameIndex":9,"isEmpty":true},{"isTween":true,"frameIndex":10,"isEmpty":false,"texName":"callTextAnim_quan.png","x":94.35,"y":-30.45,"scaleX":0.117645263671875,"scaleY":0.117645263671875,"skewX":0,"skewY":0,"duration":14,"mark":"","color":{"a":0,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":true,"frameIndex":24,"isEmpty":false,"texName":"callTextAnim_quan.png","x":94.35,"y":-30.45,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":15,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":39,"isEmpty":false,"texName":"callTextAnim_quan.png","x":94.35,"y":-30.45,"scaleX":0.117645263671875,"scaleY":0.117645263671875,"skewX":0,"skewY":0,"duration":1,"mark":"","color":{"a":0,"r":255,"g":255,"b":255},"isLastIndex":true}],"keyFrameNum":5},{"frames":[{"isTween":false,"frameIndex":0,"isEmpty":true},{"isTween":true,"frameIndex":9,"isEmpty":false,"texName":"callTextAnim_quan.png","x":32.35,"y":-30.45,"scaleX":0.117645263671875,"scaleY":0.117645263671875,"skewX":0,"skewY":0,"duration":14,"mark":"","color":{"a":0,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":true,"frameIndex":23,"isEmpty":false,"texName":"callTextAnim_quan.png","x":32.35,"y":-30.45,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":15,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":38,"isEmpty":false,"texName":"callTextAnim_quan.png","x":32.35,"y":-30.45,"scaleX":0.117645263671875,"scaleY":0.117645263671875,"skewX":0,"skewY":0,"duration":1,"mark":"","color":{"a":0,"r":255,"g":255,"b":255},"isLastIndex":true}],"keyFrameNum":4},{"frames":[{"isTween":false,"frameIndex":0,"isEmpty":true},{"isTween":false,"frameIndex":5,"isEmpty":true},{"isTween":true,"frameIndex":8,"isEmpty":false,"texName":"callTextAnim_quan.png","x":-30.65,"y":-30.45,"scaleX":0.117645263671875,"scaleY":0.117645263671875,"skewX":0,"skewY":0,"duration":14,"mark":"","color":{"a":0,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":true,"frameIndex":22,"isEmpty":false,"texName":"callTextAnim_quan.png","x":-30.65,"y":-30.45,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":15,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":37,"isEmpty":false,"texName":"callTextAnim_quan.png","x":-30.65,"y":-30.45,"scaleX":0.117645263671875,"scaleY":0.117645263671875,"skewX":0,"skewY":0,"duration":1,"mark":"","color":{"a":0,"r":255,"g":255,"b":255},"isLastIndex":true}],"keyFrameNum":5},{"frames":[{"isTween":false,"frameIndex":0,"isEmpty":true},{"isTween":false,"frameIndex":5,"isEmpty":true},{"isTween":true,"frameIndex":7,"isEmpty":false,"texName":"callTextAnim_quan.png","x":-93.65,"y":-30.45,"scaleX":0.117645263671875,"scaleY":0.117645263671875,"skewX":0,"skewY":0,"duration":14,"mark":"","color":{"a":0,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":true,"frameIndex":21,"isEmpty":false,"texName":"callTextAnim_quan.png","x":-93.65,"y":-30.45,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":15,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":36,"isEmpty":false,"texName":"callTextAnim_quan.png","x":-93.65,"y":-30.45,"scaleX":0.117645263671875,"scaleY":0.117645263671875,"skewX":0,"skewY":0,"duration":1,"mark":"","color":{"a":0,"r":255,"g":255,"b":255},"isLastIndex":true}],"keyFrameNum":5},{"frames":[{"isTween":false,"frameIndex":0,"isEmpty":true},{"isTween":false,"frameIndex":5,"isEmpty":true},{"isTween":true,"frameIndex":6,"isEmpty":false,"texName":"callTextAnim_quan.png","x":-156.65,"y":-30.45,"scaleX":0.117645263671875,"scaleY":0.117645263671875,"skewX":0,"skewY":0,"duration":14,"mark":"","color":{"a":0,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":true,"frameIndex":20,"isEmpty":false,"texName":"callTextAnim_quan.png","x":-156.65,"y":-30.45,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":15,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":35,"isEmpty":false,"texName":"callTextAnim_quan.png","x":-156.65,"y":-30.45,"scaleX":0.117645263671875,"scaleY":0.117645263671875,"skewX":0,"skewY":0,"duration":1,"mark":"","color":{"a":0,"r":255,"g":255,"b":255},"isLastIndex":true}],"keyFrameNum":5},{"frames":[{"isTween":false,"frameIndex":0,"isEmpty":true},{"isTween":true,"frameIndex":5,"isEmpty":false,"texName":"callTextAnim_quan.png","x":-216.65,"y":-30.45,"scaleX":0.117645263671875,"scaleY":0.117645263671875,"skewX":0,"skewY":0,"duration":14,"mark":"","color":{"a":0,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":true,"frameIndex":19,"isEmpty":false,"texName":"callTextAnim_quan.png","x":-216.65,"y":-30.45,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":15,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":34,"isEmpty":false,"texName":"callTextAnim_quan.png","x":-216.65,"y":-30.45,"scaleX":0.117645263671875,"scaleY":0.117645263671875,"skewX":0,"skewY":0,"duration":1,"mark":"","color":{"a":0,"r":255,"g":255,"b":255},"isLastIndex":true}],"keyFrameNum":4},{"frames":[{"isTween":false,"frameIndex":0,"isEmpty":true},{"isTween":true,"frameIndex":4,"isEmpty":false,"texName":"callTextAnim_quan.png","x":-281.65,"y":-30.45,"scaleX":0.117645263671875,"scaleY":0.117645263671875,"skewX":0,"skewY":0,"duration":14,"mark":"","color":{"a":0,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":true,"frameIndex":18,"isEmpty":false,"texName":"callTextAnim_quan.png","x":-281.65,"y":-30.45,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":15,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":33,"isEmpty":false,"texName":"callTextAnim_quan.png","x":-281.65,"y":-30.45,"scaleX":0.117645263671875,"scaleY":0.117645263671875,"skewX":0,"skewY":0,"duration":1,"mark":"","color":{"a":0,"r":255,"g":255,"b":255},"isLastIndex":true}],"keyFrameNum":4},{"frames":[{"isTween":false,"frameIndex":0,"isEmpty":true},{"isTween":true,"frameIndex":3,"isEmpty":false,"texName":"callTextAnim_quan.png","x":-343.6,"y":-30.45,"scaleX":0.117645263671875,"scaleY":0.117645263671875,"skewX":0,"skewY":0,"duration":14,"mark":"","color":{"a":0,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":true,"frameIndex":17,"isEmpty":false,"texName":"callTextAnim_quan.png","x":-343.6,"y":-30.45,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":15,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":32,"isEmpty":false,"texName":"callTextAnim_quan.png","x":-343.6,"y":-30.45,"scaleX":0.117645263671875,"scaleY":0.117645263671875,"skewX":0,"skewY":0,"duration":1,"mark":"","color":{"a":0,"r":255,"g":255,"b":255},"isLastIndex":true}],"keyFrameNum":4},{"frames":[{"isTween":false,"frameIndex":0,"isEmpty":true},{"isTween":true,"frameIndex":2,"isEmpty":false,"texName":"callTextAnim_quan.png","x":-406.6,"y":-30.45,"scaleX":0.117645263671875,"scaleY":0.117645263671875,"skewX":0,"skewY":0,"duration":14,"mark":"","color":{"a":0,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":true,"frameIndex":16,"isEmpty":false,"texName":"callTextAnim_quan.png","x":-406.6,"y":-30.45,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":15,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":31,"isEmpty":false,"texName":"callTextAnim_quan.png","x":-406.6,"y":-30.45,"scaleX":0.117645263671875,"scaleY":0.117645263671875,"skewX":0,"skewY":0,"duration":1,"mark":"","color":{"a":0,"r":255,"g":255,"b":255},"isLastIndex":true}],"keyFrameNum":4},{"frames":[{"isTween":false,"frameIndex":0,"isEmpty":true},{"isTween":true,"frameIndex":1,"isEmpty":false,"texName":"callTextAnim_quan.png","x":-469.6,"y":-30.45,"scaleX":0.117645263671875,"scaleY":0.117645263671875,"skewX":0,"skewY":0,"duration":14,"mark":"","color":{"a":0,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":true,"frameIndex":15,"isEmpty":false,"texName":"callTextAnim_quan.png","x":-469.6,"y":-30.45,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":15,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":30,"isEmpty":false,"texName":"callTextAnim_quan.png","x":-469.6,"y":-30.45,"scaleX":0.117645263671875,"scaleY":0.117645263671875,"skewX":0,"skewY":0,"duration":1,"mark":"","color":{"a":0,"r":255,"g":255,"b":255},"isLastIndex":true}],"keyFrameNum":4},{"frames":[{"isTween":true,"frameIndex":0,"isEmpty":false,"texName":"callTextAnim_quan.png","x":-532.6,"y":-30.45,"scaleX":0.117645263671875,"scaleY":0.117645263671875,"skewX":0,"skewY":0,"duration":14,"mark":"","color":{"a":0,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":true,"frameIndex":14,"isEmpty":false,"texName":"callTextAnim_quan.png","x":-532.6,"y":-30.45,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":15,"mark":"","color":{"a":255,"r":255,"g":255,"b":255},"isLastIndex":false},{"isTween":false,"frameIndex":29,"isEmpty":false,"texName":"callTextAnim_quan.png","x":-532.6,"y":-30.45,"scaleX":0.117645263671875,"scaleY":0.117645263671875,"skewX":0,"skewY":0,"duration":1,"mark":"","color":{"a":0,"r":255,"g":255,"b":255},"isLastIndex":true}],"keyFrameNum":3}]}],"animNum":7,"texNum":17,"textures":["callTextAnim_DAA.png","callTextAnim_r.png","callTextAnim_i.png","callTextAnim_v.png","callTextAnim_n.png","callTextAnim_g.png","callTextAnim_c.png","callTextAnim_a.png","callTextAnim_l.png","callTextAnim_xdal.png","callTextAnim_xi.png","callTextAnim_xs.png","callTextAnim_xt.png","callTextAnim_xe.png","callTextAnim_xn.png","callTextAnim_xg.png","callTextAnim_quan.png"]}

================================================
FILE: android/FlashSupport/app/src/main/assets/flashAnims/heiniao.flajson1
================================================
{"name":"heiniao","frameRate":30,"anims":[{"animName":"atk","layerNum":20,"frameMaxNum":48,"layers":[{"frames":[{"isTween":false,"frameIndex":0,"isEmpty":false,"texName":"heiniao_fazhangtexiao_001.png","x":76.35,"y":94.65,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":1,"isEmpty":false,"texName":"heiniao_fazhangtexiao_002.png","x":77.65,"y":97.95,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":2,"isEmpty":false,"texName":"heiniao_fazhangtexiao_003.png","x":79,"y":101.25,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":3,"isEmpty":false,"texName":"heiniao_fazhangtexiao_004.png","x":80.3,"y":104.6,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":4,"isEmpty":false,"texName":"heiniao_fazhangtexiao_005.png","x":74.2,"y":129.25,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":5,"isEmpty":false,"texName":"heiniao_fazhangtexiao_006.png","x":61.85,"y":149.7,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":6,"isEmpty":false,"texName":"heiniao_fazhangtexiao_007.png","x":49.45,"y":170.2,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":7,"isEmpty":false,"texName":"heiniao_fazhangtexiao_008.png","x":30.85,"y":182.15,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":8,"isEmpty":false,"texName":"heiniao_fazhangtexiao_009.png","x":12.6,"y":177.65,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":9,"isEmpty":false,"texName":"heiniao_fazhangtexiao_010.png","x":-5.65,"y":173.15,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":10,"isEmpty":false,"texName":"heiniao_fazhangtexiao_001.png","x":-23.9,"y":168.65,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":11,"isEmpty":false,"texName":"heiniao_fazhangtexiao_002.png","x":-42.15,"y":164.15,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":12,"isEmpty":false,"texName":"heiniao_fazhangtexiao_003.png","x":-46.2,"y":161.95,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":13,"isEmpty":false,"texName":"heiniao_fazhangtexiao_004.png","x":-50.25,"y":159.75,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":14,"isEmpty":false,"texName":"heiniao_fazhangtexiao_005.png","x":-54.3,"y":157.55,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":15,"isEmpty":false,"texName":"heiniao_fazhangtexiao_006.png","x":-58.35,"y":155.35,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":16,"isEmpty":false,"texName":"heiniao_fazhangtexiao_007.png","x":-62.4,"y":153.15,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":17,"isEmpty":false,"texName":"heiniao_fazhangtexiao_008.png","x":-66.5,"y":151,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":18,"isEmpty":false,"texName":"heiniao_fazhangtexiao_009.png","x":-70.55,"y":148.8,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":19,"isEmpty":false,"texName":"heiniao_fazhangtexiao_010.png","x":-74.65,"y":146.65,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":20,"isEmpty":false,"texName":"heiniao_fazhangtexiao_001.png","x":-51.4,"y":153.4,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":21,"isEmpty":false,"texName":"heiniao_fazhangtexiao_002.png","x":-28.15,"y":160.15,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":22,"isEmpty":false,"texName":"heiniao_fazhangtexiao_003.png","x":-4.9,"y":166.9,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":23,"isEmpty":false,"texName":"heiniao_fazhangtexiao_004.png","x":18.35,"y":173.65,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":24,"isEmpty":false,"texName":"heiniao_fazhangtexiao_005.png","x":47.95,"y":159,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":25,"isEmpty":false,"texName":"heiniao_fazhangtexiao_006.png","x":77.55,"y":144.35,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":26,"isEmpty":false,"texName":"heiniao_fazhangtexiao_007.png","x":101.55,"y":117.85,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":27,"isEmpty":true},{"isTween":false,"frameIndex":28,"isEmpty":true},{"isTween":false,"frameIndex":29,"isEmpty":true},{"isTween":false,"frameIndex":30,"isEmpty":true},{"isTween":false,"frameIndex":31,"isEmpty":true},{"isTween":false,"frameIndex":32,"isEmpty":true},{"isTween":false,"frameIndex":33,"isEmpty":true}],"keyFrameNum":34},{"frames":[{"isTween":true,"frameIndex":0,"isEmpty":false,"texName":"heiniao_tou.png","x":17.2,"y":110.6,"scaleX":1,"scaleY":1,"skewX":0,"skewY":180,"duration":7,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":7,"isEmpty":false,"texName":"heiniao_tou.png","x":-10.15,"y":108.15,"scaleX":1,"scaleY":1,"skewX":-13.531570434570312,"skewY":166.4684295654297,"duration":4,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":11,"isEmpty":false,"texName":"heiniao_tou.png","x":-21.05,"y":106.55,"scaleX":0.9990081787109375,"scaleY":0.9990081787109375,"skewX":-18.064071655273438,"skewY":161.93592834472656,"duration":8,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":19,"isEmpty":false,"texName":"heiniao_tou.png","x":-26.5,"y":105.75,"scaleX":1.0000152587890625,"scaleY":1.0000152587890625,"skewX":-20.50543212890625,"skewY":159.49456787109375,"duration":4,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":23,"isEmpty":false,"texName":"heiniao_tou.png","x":11.8,"y":108.3,"scaleX":0.9992523193359375,"scaleY":0.9992523193359375,"skewX":-13.275115966796875,"skewY":166.72488403320312,"duration":5,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":28,"isEmpty":false,"texName":"heiniao_tou.png","x":59.65,"y":97.9,"scaleX":0.999969482421875,"scaleY":0.999969482421875,"skewX":-4.320281982421875,"skewY":175.67971801757812,"duration":10,"mark":"attacking1","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":38,"isEmpty":false,"texName":"heiniao_tou.png","x":47.9,"y":105.8,"scaleX":1.0000152587890625,"scaleY":1.0000152587890625,"skewX":6.7071533203125,"skewY":-173.2928466796875,"duration":9,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":47,"isEmpty":false,"texName":"heiniao_tou.png","x":20.25,"y":110.1,"scaleX":0.9999847412109375,"scaleY":0.9999847412109375,"skewX":0.54290771484375,"skewY":-179.45709228515625,"duration":1,"mark":"attackend1","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":true}],"keyFrameNum":8},{"frames":[{"isTween":true,"frameIndex":0,"isEmpty":false,"texName":"heiniao_shenti_shang.png","x":6.85,"y":72.5,"scaleX":1,"scaleY":1,"skewX":0,"skewY":180,"duration":7,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":7,"isEmpty":false,"texName":"heiniao_shenti_shang.png","x":-8.35,"y":68.8,"scaleX":1,"scaleY":1,"skewX":-25.22296142578125,"skewY":154.77703857421875,"duration":4,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":11,"isEmpty":false,"texName":"heiniao_shenti_shang.png","x":-13.15,"y":68.3,"scaleX":0.9984588623046875,"scaleY":0.9984588623046875,"skewX":-34.33363342285156,"skewY":145.66636657714844,"duration":8,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":19,"isEmpty":false,"texName":"heiniao_shenti_shang.png","x":-15.5,"y":67.95,"scaleX":1,"scaleY":1,"skewX":-38.90946960449219,"skewY":141.0905303955078,"duration":4,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":23,"isEmpty":false,"texName":"heiniao_shenti_shang.png","x":7.45,"y":74.4,"scaleX":0.9994354248046875,"scaleY":0.9994354248046875,"skewX":-10.031570434570312,"skewY":169.9684295654297,"duration":5,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":28,"isEmpty":false,"texName":"heiniao_shenti_shang.png","x":36.15,"y":68.9,"scaleX":0.999969482421875,"scaleY":0.999969482421875,"skewX":25.898178100585938,"skewY":-154.10182189941406,"duration":10,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":38,"isEmpty":false,"texName":"heiniao_shenti_shang.png","x":25.35,"y":73.4,"scaleX":1,"scaleY":1,"skewX":18.213302612304688,"skewY":-161.7866973876953,"duration":9,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":47,"isEmpty":false,"texName":"heiniao_shenti_shang.png","x":8.65,"y":72.7,"scaleX":0.9998931884765625,"scaleY":0.9998931884765625,"skewX":1.768951416015625,"skewY":-178.23104858398438,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":true}],"keyFrameNum":8},{"frames":[{"isTween":true,"frameIndex":0,"isEmpty":false,"texName":"heiniao_yougebo_2.png","x":1.65,"y":62.9,"scaleX":1,"scaleY":1,"skewX":0,"skewY":180,"duration":7,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":7,"isEmpty":false,"texName":"heiniao_yougebo_2.png","x":-17.2,"y":60.75,"scaleX":0.9999847412109375,"scaleY":0.9999847412109375,"skewX":15.003814697265625,"skewY":-164.99618530273438,"duration":4,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":11,"isEmpty":false,"texName":"heiniao_yougebo_2.png","x":-23.35,"y":59.65,"scaleX":0.999420166015625,"scaleY":0.999420166015625,"skewX":10.012924194335938,"skewY":-169.98707580566406,"duration":8,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":19,"isEmpty":false,"texName":"heiniao_yougebo_2.png","x":-26.4,"y":59.1,"scaleX":0.9999847412109375,"scaleY":0.9999847412109375,"skewX":7.547271728515625,"skewY":-172.45272827148438,"duration":4,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":23,"isEmpty":false,"texName":"heiniao_yougebo_2.png","x":-5.6,"y":69.65,"scaleX":0.9983978271484375,"scaleY":0.9983978271484375,"skewX":36.83009338378906,"skewY":-143.16990661621094,"duration":5,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":28,"isEmpty":false,"texName":"heiniao_yougebo_2.png","x":20.55,"y":69.25,"scaleX":0.9999847412109375,"scaleY":0.9999847412109375,"skewX":73.36238098144531,"skewY":-106.63761901855469,"duration":10,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":38,"isEmpty":false,"texName":"heiniao_yougebo_2.png","x":10.7,"y":69.65,"scaleX":1,"scaleY":1,"skewX":54.434234619140625,"skewY":-125.56576538085938,"duration":9,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":47,"isEmpty":false,"texName":"heiniao_yougebo_2.png","x":2.55,"y":63.6,"scaleX":0.99969482421875,"scaleY":0.99969482421875,"skewX":5.2994842529296875,"skewY":-174.7005157470703,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":true}],"keyFrameNum":8},{"frames":[{"isTween":true,"frameIndex":0,"isEmpty":false,"texName":"heiniao_yougebo_1.png","x":2.05,"y":72.45,"scaleX":1,"scaleY":1,"skewX":0,"skewY":180,"duration":7,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":7,"isEmpty":false,"texName":"heiniao_yougebo_1.png","x":-14.3,"y":69.9,"scaleX":0.9999847412109375,"scaleY":0.9999847412109375,"skewX":15.003814697265625,"skewY":-164.99618530273438,"duration":4,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":11,"isEmpty":false,"texName":"heiniao_yougebo_1.png","x":-18.85,"y":69.25,"scaleX":0.9987030029296875,"scaleY":0.9987030029296875,"skewX":25.537689208984375,"skewY":-154.46231079101562,"duration":8,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":19,"isEmpty":false,"texName":"heiniao_yougebo_1.png","x":-21.15,"y":68.9,"scaleX":0.999969482421875,"scaleY":0.999969482421875,"skewX":30.766921997070312,"skewY":-149.2330780029297,"duration":4,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":23,"isEmpty":false,"texName":"heiniao_yougebo_1.png","x":1.4,"y":76.15,"scaleX":0.9983673095703125,"scaleY":0.9983673095703125,"skewX":49.65924072265625,"skewY":-130.34075927734375,"duration":5,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":28,"isEmpty":false,"texName":"heiniao_yougebo_1.png","x":29.85,"y":71.55,"scaleX":0.9999847412109375,"scaleY":0.9999847412109375,"skewX":73.36238098144531,"skewY":-106.63761901855469,"duration":10,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":38,"isEmpty":false,"texName":"heiniao_yougebo_1.png","x":18.75,"y":74.85,"scaleX":1,"scaleY":1,"skewX":54.434234619140625,"skewY":-125.56576538085938,"duration":9,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":47,"isEmpty":false,"texName":"heiniao_yougebo_1.png","x":3.65,"y":72.7,"scaleX":0.99969482421875,"scaleY":0.99969482421875,"skewX":5.2994842529296875,"skewY":-174.7005157470703,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":true}],"keyFrameNum":8},{"frames":[{"isTween":true,"frameIndex":0,"isEmpty":false,"texName":"heiniao_zuogebo_2.png","x":33.65,"y":64.95,"scaleX":1,"scaleY":1,"skewX":0,"skewY":180,"duration":7,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":7,"isEmpty":false,"texName":"heiniao_zuogebo_2.png","x":18.95,"y":127.6,"scaleX":0.9999847412109375,"scaleY":0.9999847412109375,"skewX":-117.27055358886719,"skewY":62.72944641113281,"duration":4,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":11,"isEmpty":false,"texName":"heiniao_zuogebo_2.png","x":-4.05,"y":134.1,"scaleX":0.9984893798828125,"scaleY":0.9984893798828125,"skewX":-146.18280029296875,"skewY":33.81719970703125,"duration":8,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":19,"isEmpty":false,"texName":"heiniao_zuogebo_2.png","x":-15.5,"y":137.3,"scaleX":1.0000152587890625,"scaleY":1.0000152587890625,"skewX":-160.68238830566406,"skewY":19.317611694335938,"duration":4,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":23,"isEmpty":false,"texName":"heiniao_zuogebo_2.png","x":30.9,"y":116.1,"scaleX":0.9993896484375,"scaleY":0.9993896484375,"skewX":-100.80619812011719,"skewY":79.19380187988281,"duration":5,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":28,"isEmpty":false,"texName":"heiniao_zuogebo_2.png","x":74.05,"y":64.4,"scaleX":0.999969482421875,"scaleY":0.999969482421875,"skewX":-26.303573608398438,"skewY":153.69642639160156,"duration":10,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":38,"isEmpty":false,"texName":"heiniao_zuogebo_2.png","x":64.7,"y":72.05,"scaleX":0.9999847412109375,"scaleY":0.9999847412109375,"skewX":-38.48881530761719,"skewY":141.5111846923828,"duration":9,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":47,"isEmpty":false,"texName":"heiniao_zuogebo_2.png","x":36.7,"y":65.6,"scaleX":0.999786376953125,"scaleY":0.999786376953125,"skewX":-3.7757110595703125,"skewY":176.2242889404297,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":true}],"keyFrameNum":8},{"frames":[{"isTween":true,"frameIndex":0,"isEmpty":false,"texName":"heiniao_zuogebo_1.png","x":28.75,"y":74.15,"scaleX":1,"scaleY":1,"skewX":0,"skewY":180,"duration":7,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":7,"isEmpty":false,"texName":"heiniao_zuogebo_1.png","x":13.1,"y":119.05,"scaleX":0.9999847412109375,"scaleY":0.9999847412109375,"skewX":-117.27055358886719,"skewY":62.72944641113281,"duration":4,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":11,"isEmpty":false,"texName":"heiniao_zuogebo_1.png","x":-4.9,"y":124.4,"scaleX":0.9984893798828125,"scaleY":0.9984893798828125,"skewX":-146.18280029296875,"skewY":33.81719970703125,"duration":8,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":19,"isEmpty":false,"texName":"heiniao_zuogebo_1.png","x":-13.9,"y":127.1,"scaleX":1.0000152587890625,"scaleY":1.0000152587890625,"skewX":-160.68238830566406,"skewY":19.317611694335938,"duration":4,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":23,"isEmpty":false,"texName":"heiniao_zuogebo_1.png","x":27.45,"y":112.2,"scaleX":0.9988250732421875,"scaleY":0.9988250732421875,"skewX":-113.336669921875,"skewY":66.663330078125,"duration":5,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":28,"isEmpty":false,"texName":"heiniao_zuogebo_1.png","x":64.65,"y":68.5,"scaleX":0.9999847412109375,"scaleY":0.9999847412109375,"skewX":-54.47821044921875,"skewY":125.52178955078125,"duration":10,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":38,"isEmpty":false,"texName":"heiniao_zuogebo_1.png","x":54.65,"y":74.1,"scaleX":0.999969482421875,"scaleY":0.999969482421875,"skewX":-66.663330078125,"skewY":113.336669921875,"duration":9,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":47,"isEmpty":false,"texName":"heiniao_zuogebo_1.png","x":31.25,"y":74.2,"scaleX":0.9996185302734375,"scaleY":0.9996185302734375,"skewX":-6.543243408203125,"skewY":173.45675659179688,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":true}],"keyFrameNum":8},{"frames":[{"isTween":true,"frameIndex":0,"isEmpty":false,"texName":"heiniao_fazhang.png","x":55.6,"y":74.5,"scaleX":1.3701629638671875,"scaleY":1.3701629638671875,"skewX":48.665435791015625,"skewY":48.665435791015625,"duration":3,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":3,"isEmpty":false,"texName":"heiniao_fazhang.png","x":55.5,"y":96.5,"scaleX":1.3680877685546875,"scaleY":1.3680877685546875,"skewX":78.26718139648438,"skewY":78.26718139648438,"duration":4,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":7,"isEmpty":false,"texName":"heiniao_fazhang.png","x":25.6,"y":153.75,"scaleX":1.3701629638671875,"scaleY":1.3701629638671875,"skewX":14.116851806640625,"skewY":14.116851806640625,"duration":4,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":11,"isEmpty":false,"texName":"heiniao_fazhang.png","x":-20.9,"y":147,"scaleX":1.368072509765625,"scaleY":1.368072509765625,"skewX":-54.93305969238281,"skewY":-54.93305969238281,"duration":4,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":15,"isEmpty":false,"texName":"heiniao_fazhang.png","x":-32.45,"y":149.3,"scaleX":1.3678436279296875,"scaleY":1.3678436279296875,"skewX":-72.22956848144531,"skewY":-72.22956848144531,"duration":4,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":19,"isEmpty":false,"texName":"heiniao_fazhang.png","x":-44.05,"y":143.6,"scaleX":1.3701934814453125,"scaleY":1.3701934814453125,"skewX":-89.53315734863281,"skewY":-89.53315734863281,"duration":4,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":23,"isEmpty":false,"texName":"heiniao_fazhang.png","x":27.75,"y":146.05,"scaleX":1.3691558837890625,"scaleY":1.3691558837890625,"skewX":-16.169387817382812,"skewY":-16.169387817382812,"duration":2,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":25,"isEmpty":false,"texName":"heiniao_fazhang.png","x":65.1,"y":117.3,"scaleX":1.3676300048828125,"scaleY":1.3676300048828125,"skewX":29.31524658203125,"skewY":29.31524658203125,"duration":3,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":28,"isEmpty":false,"texName":"heiniao_fazhang.png","x":102.1,"y":59.7,"scaleX":1.37017822265625,"scaleY":1.37017822265625,"skewX":97.59710693359375,"skewY":97.59710693359375,"duration":10,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":38,"isEmpty":false,"texName":"heiniao_fazhang.png","x":93.4,"y":71.65,"scaleX":1.3701171875,"scaleY":1.3701171875,"skewX":85.41294860839844,"skewY":85.41294860839844,"duration":9,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":47,"isEmpty":false,"texName":"heiniao_fazhang.png","x":59.4,"y":74.15,"scaleX":1.3679962158203125,"scaleY":1.3679962158203125,"skewX":52.38883972167969,"skewY":52.38883972167969,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":true}],"keyFrameNum":11},{"frames":[{"isTween":false,"frameIndex":0,"isEmpty":false,"texName":"heiniao_chibang_05.png","x":-25.55,"y":88.1,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":1,"isEmpty":false,"texName":"heiniao_chibang_05.png","x":-27.65,"y":86.85,"scaleX":0.9997406005859375,"scaleY":0.9997406005859375,"skewX":-1.554931640625,"skewY":-1.554931640625,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":2,"isEmpty":false,"texName":"heiniao_chibang_06.png","x":-28.3,"y":78.2,"scaleX":0.99945068359375,"scaleY":0.99945068359375,"skewX":-3.2984466552734375,"skewY":-3.2984466552734375,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":3,"isEmpty":false,"texName":"heiniao_chibang_06.png","x":-30.2,"y":76.9,"scaleX":0.9991607666015625,"scaleY":0.9991607666015625,"skewX":-5.04107666015625,"skewY":-5.04107666015625,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":4,"isEmpty":false,"texName":"heiniao_chibang_07.png","x":-31.85,"y":66.35,"scaleX":0.9988861083984375,"scaleY":0.9988861083984375,"skewX":-6.7847442626953125,"skewY":-6.7847442626953125,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":5,"isEmpty":false,"texName":"heiniao_chibang_07.png","x":-33.45,"y":65,"scaleX":0.9986114501953125,"scaleY":0.9986114501953125,"skewX":-8.528717041015625,"skewY":-8.528717041015625,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":6,"isEmpty":false,"texName":"heiniao_chibang_08.png","x":-31.15,"y":36.05,"scaleX":0.9983062744140625,"scaleY":0.9983062744140625,"skewX":-10.272994995117188,"skewY":-10.272994995117188,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":7,"isEmpty":false,"texName":"heiniao_chibang_08.png","x":-31.75,"y":34.8,"scaleX":0.9986724853515625,"scaleY":0.9986724853515625,"skewX":-12.03839111328125,"skewY":-12.03839111328125,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":8,"isEmpty":false,"texName":"heiniao_chibang_05.png","x":-27.55,"y":26.55,"scaleX":0.997802734375,"scaleY":0.997802734375,"skewX":157.0025177001953,"skewY":-22.997482299804688,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":9,"isEmpty":false,"texName":"heiniao_chibang_05.png","x":-28.15,"y":26.45,"scaleX":0.9975738525390625,"scaleY":0.9975738525390625,"skewX":156.75405883789062,"skewY":-23.245941162109375,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":10,"isEmpty":false,"texName":"heiniao_chibang_08.png","x":-33.75,"y":34.35,"scaleX":0.99737548828125,"scaleY":0.99737548828125,"skewX":-12.766403198242188,"skewY":-12.766403198242188,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":11,"isEmpty":false,"texName":"heiniao_chibang_08.png","x":-34.45,"y":34.2,"scaleX":0.997833251953125,"scaleY":0.997833251953125,"skewX":-13.022262573242188,"skewY":-13.022262573242188,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":12,"isEmpty":false,"texName":"heiniao_chibang_07.png","x":-36.05,"y":46.2,"scaleX":0.9971466064453125,"scaleY":0.9971466064453125,"skewX":166.7323455810547,"skewY":-13.267654418945312,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":13,"isEmpty":false,"texName":"heiniao_chibang_07.png","x":-36.2,"y":46.05,"scaleX":0.9971923828125,"scaleY":0.9971923828125,"skewX":166.48248291015625,"skewY":-13.51751708984375,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":14,"isEmpty":false,"texName":"heiniao_chibang_06.png","x":-41.3,"y":70.2,"scaleX":0.9972381591796875,"scaleY":0.9972381591796875,"skewX":-13.769332885742188,"skewY":-13.769332885742188,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":15,"isEmpty":false,"texName":"heiniao_chibang_06.png","x":-41.5,"y":70.05,"scaleX":0.9972381591796875,"scaleY":0.9972381591796875,"skewX":-14.022262573242188,"skewY":-14.022262573242188,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":16,"isEmpty":false,"texName":"heiniao_chibang_05.png","x":-44.55,"y":76.7,"scaleX":0.9973297119140625,"scaleY":0.9973297119140625,"skewX":-14.2738037109375,"skewY":-14.2738037109375,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":17,"isEmpty":false,"texName":"heiniao_chibang_05.png","x":-44.65,"y":76.5,"scaleX":0.9973602294921875,"scaleY":0.9973602294921875,"skewX":-14.526412963867188,"skewY":-14.526412963867188,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":18,"isEmpty":false,"texName":"heiniao_chibang_06.png","x":-42.1,"y":69.7,"scaleX":0.997406005859375,"scaleY":0.997406005859375,"skewX":-14.776824951171875,"skewY":-14.776824951171875,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":19,"isEmpty":false,"texName":"heiniao_chibang_06.png","x":-42.35,"y":69.5,"scaleX":0.998260498046875,"scaleY":0.998260498046875,"skewX":-15.0682373046875,"skewY":-15.0682373046875,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":20,"isEmpty":false,"texName":"heiniao_chibang_07.png","x":-36.55,"y":62.6,"scaleX":0.99755859375,"scaleY":0.99755859375,"skewX":-13.554702758789062,"skewY":-13.554702758789062,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":21,"isEmpty":false,"texName":"heiniao_chibang_07.png","x":-32.15,"y":64.6,"scaleX":0.9976806640625,"scaleY":0.9976806640625,"skewX":-12.270660400390625,"skewY":-12.270660400390625,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":22,"isEmpty":false,"texName":"heiniao_chibang_08.png","x":-23.8,"y":39.3,"scaleX":0.997772216796875,"scaleY":0.997772216796875,"skewX":-10.798599243164062,"skewY":-10.798599243164062,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":23,"isEmpty":false,"texName":"heiniao_chibang_08.png","x":-20,"y":41.25,"scaleX":0.9984283447265625,"scaleY":0.9984283447265625,"skewX":-9.5323486328125,"skewY":-9.5323486328125,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":24,"isEmpty":false,"texName":"heiniao_chibang_05.png","x":-12.3,"y":32.95,"scaleX":0.9980926513671875,"scaleY":0.9980926513671875,"skewX":161.72125244140625,"skewY":-18.27874755859375,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":25,"isEmpty":false,"texName":"heiniao_chibang_05.png","x":-9,"y":32.95,"scaleX":0.998291015625,"scaleY":0.998291015625,"skewX":163.49810791015625,"skewY":-16.50189208984375,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":26,"isEmpty":false,"texName":"heiniao_chibang_08.png","x":-9.6,"y":41.75,"scaleX":0.9985198974609375,"scaleY":0.9985198974609375,"skewX":-3.8053131103515625,"skewY":-3.8053131103515625,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":27,"isEmpty":false,"texName":"heiniao_chibang_08.png","x":-6.1,"y":41.9,"scaleX":0.99871826171875,"scaleY":0.99871826171875,"skewX":-2.030059814453125,"skewY":-2.030059814453125,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":28,"isEmpty":false,"texName":"heiniao_chibang_07.png","x":-1.15,"y":54.15,"scaleX":0.998931884765625,"scaleY":0.998931884765625,"skewX":179.74122619628906,"skewY":-0.2587738037109375,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":29,"isEmpty":false,"texName":"heiniao_chibang_07.png","x":-1.95,"y":54.4,"scaleX":0.99896240234375,"scaleY":0.99896240234375,"skewX":179.94142150878906,"skewY":-0.0585784912109375,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":30,"isEmpty":false,"texName":"heiniao_chibang_06.png","x":-1.8,"y":79.4,"scaleX":0.9990234375,"scaleY":0.9990234375,"skewX":-0.0533294677734375,"skewY":-0.0533294677734375,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":31,"isEmpty":false,"texName":"heiniao_chibang_06.png","x":-2.45,"y":79.55,"scaleX":0.99908447265625,"scaleY":0.99908447265625,"skewX":-0.047210693359375,"skewY":-0.047210693359375,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":32,"isEmpty":false,"texName":"heiniao_chibang_05.png","x":-4.15,"y":86.95,"scaleX":0.9991455078125,"scaleY":0.9991455078125,"skewX":-0.0410919189453125,"skewY":-0.0410919189453125,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":33,"isEmpty":false,"texName":"heiniao_chibang_05.png","x":-4.85,"y":87.25,"scaleX":0.99920654296875,"scaleY":0.99920654296875,"skewX":-0.0358428955078125,"skewY":-0.0358428955078125,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":34,"isEmpty":false,"texName":"heiniao_chibang_06.png","x":-4.65,"y":80.15,"scaleX":0.999267578125,"scaleY":0.999267578125,"skewX":-0.02972412109375,"skewY":-0.02972412109375,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":35,"isEmpty":false,"texName":"heiniao_chibang_06.png","x":-5.4,"y":80.3,"scaleX":0.99932861328125,"scaleY":0.99932861328125,"skewX":-0.0236053466796875,"skewY":-0.0236053466796875,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":36,"isEmpty":false,"texName":"heiniao_chibang_07.png","x":-7.05,"y":71.35,"scaleX":0.9993896484375,"scaleY":0.9993896484375,"skewX":-0.0183563232421875,"skewY":-0.0183563232421875,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":37,"isEmpty":false,"texName":"heiniao_chibang_07.png","x":-7.8,"y":71.5,"scaleX":0.99945068359375,"scaleY":0.99945068359375,"skewX":-0.012237548828125,"skewY":-0.012237548828125,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":38,"isEmpty":false,"texName":"heiniao_chibang_08.png","x":-9.65,"y":43.75,"scaleX":0.999542236328125,"scaleY":0.999542236328125,"skewX":-0.0262298583984375,"skewY":-0.0262298583984375,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":39,"isEmpty":false,"texName":"heiniao_chibang_08.png","x":-11.35,"y":43.75,"scaleX":0.999542236328125,"scaleY":0.999542236328125,"skewX":-0.0061187744140625,"skewY":-0.0061187744140625,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":40,"isEmpty":false,"texName":"heiniao_chibang_05.png","x":-9.85,"y":34.75,"scaleX":0.9995574951171875,"scaleY":0.9995574951171875,"skewX":169.26551818847656,"skewY":-10.734481811523438,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":41,"isEmpty":false,"texName":"heiniao_chibang_05.png","x":-11.5,"y":34.75,"scaleX":0.9995574951171875,"scaleY":0.9995574951171875,"skewX":169.26551818847656,"skewY":-10.734481811523438,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":42,"isEmpty":false,"texName":"heiniao_chibang_08.png","x":-16.3,"y":43.75,"scaleX":0.999542236328125,"scaleY":0.999542236328125,"skewX":-0.004364013671875,"skewY":-0.004364013671875,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":43,"isEmpty":false,"texName":"heiniao_chibang_08.png","x":-18,"y":43.75,"scaleX":0.999542236328125,"scaleY":0.999542236328125,"skewX":-0.0034942626953125,"skewY":-0.0034942626953125,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":44,"isEmpty":false,"texName":"heiniao_chibang_07.png","x":-18.4,"y":55.85,"scaleX":0.999542236328125,"scaleY":0.999542236328125,"skewX":179.9965057373047,"skewY":-0.0034942626953125,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":45,"isEmpty":false,"texName":"heiniao_chibang_07.png","x":-20,"y":55.85,"scaleX":0.999542236328125,"scaleY":0.999542236328125,"skewX":179.99737548828125,"skewY":-0.00262451171875,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":46,"isEmpty":false,"texName":"heiniao_chibang_06.png","x":-20.75,"y":80.75,"scaleX":0.999542236328125,"scaleY":0.999542236328125,"skewX":-0.00262451171875,"skewY":-0.00262451171875,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":47,"isEmpty":false,"texName":"heiniao_chibang_06.png","x":-22.4,"y":80.75,"scaleX":0.999542236328125,"scaleY":0.999542236328125,"skewX":-0.006988525390625,"skewY":-0.006988525390625,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":true}],"keyFrameNum":48},{"frames":[{"isTween":true,"frameIndex":0,"isEmpty":false,"texName":"heiniao_jiao_4.png","x":-19.05,"y":26.75,"scaleX":1,"scaleY":1,"skewX":0,"skewY":180,"duration":7,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":7,"isEmpty":false,"texName":"heiniao_jiao_4.png","x":-19.7,"y":20,"scaleX":1.0000152587890625,"scaleY":1.0000152587890625,"skewX":-13.48858642578125,"skewY":166.51141357421875,"duration":4,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":11,"isEmpty":false,"texName":"heiniao_jiao_4.png","x":-21.95,"y":20.35,"scaleX":0.999542236328125,"scaleY":0.999542236328125,"skewX":-8.267745971679688,"skewY":171.7322540283203,"duration":8,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":19,"isEmpty":false,"texName":"heiniao_jiao_4.png","x":-23.05,"y":20.5,"scaleX":1,"scaleY":1,"skewX":-5.722198486328125,"skewY":174.27780151367188,"duration":4,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":23,"isEmpty":false,"texName":"heiniao_jiao_4.png","x":-15.45,"y":34.3,"scaleX":0.9996337890625,"scaleY":0.9996337890625,"skewX":6.549285888671875,"skewY":-173.45071411132812,"duration":5,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":28,"isEmpty":false,"texName":"heiniao_jiao_4.png","x":-6,"y":38.1,"scaleX":0.9999847412109375,"scaleY":0.9999847412109375,"skewX":22.194183349609375,"skewY":-157.80581665039062,"duration":10,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":38,"isEmpty":false,"texName":"heiniao_jiao_4.png","x":-9.2,"y":36.05,"scaleX":1,"scaleY":1,"skewX":-2.0021209716796875,"skewY":177.9978790283203,"duration":9,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":47,"isEmpty":false,"texName":"heiniao_jiao_4.png","x":-18,"y":27.7,"scaleX":0.999969482421875,"scaleY":0.999969482421875,"skewX":-0.049835205078125,"skewY":179.95016479492188,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":true}],"keyFrameNum":8},{"frames":[{"isTween":true,"frameIndex":0,"isEmpty":false,"texName":"heiniao_tui_4.png","x":-17.75,"y":33.35,"scaleX":1,"scaleY":1,"skewX":0,"skewY":180,"duration":7,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":7,"isEmpty":false,"texName":"heiniao_tui_4.png","x":-20,"y":26.75,"scaleX":1.0000152587890625,"scaleY":1.0000152587890625,"skewX":-13.48858642578125,"skewY":166.51141357421875,"duration":4,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":11,"isEmpty":false,"texName":"heiniao_tui_4.png","x":-21.65,"y":27.15,"scaleX":0.999542236328125,"scaleY":0.999542236328125,"skewX":-8.267745971679688,"skewY":171.7322540283203,"duration":8,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":19,"isEmpty":false,"texName":"heiniao_tui_4.png","x":-22.45,"y":27.25,"scaleX":1,"scaleY":1,"skewX":-5.722198486328125,"skewY":174.27780151367188,"duration":4,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":23,"isEmpty":false,"texName":"heiniao_tui_4.png","x":-13.5,"y":40.6,"scaleX":0.9996337890625,"scaleY":0.9996337890625,"skewX":6.549285888671875,"skewY":-173.45071411132812,"duration":5,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":28,"isEmpty":false,"texName":"heiniao_tui_4.png","x":-2.35,"y":43.75,"scaleX":0.9999847412109375,"scaleY":0.9999847412109375,"skewX":22.194183349609375,"skewY":-157.80581665039062,"duration":10,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":38,"isEmpty":false,"texName":"heiniao_tui_4.png","x":-8.15,"y":42.75,"scaleX":1,"scaleY":1,"skewX":-2.0021209716796875,"skewY":177.9978790283203,"duration":9,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":47,"isEmpty":false,"texName":"heiniao_tui_4.png","x":-16.8,"y":34.3,"scaleX":0.999969482421875,"scaleY":0.999969482421875,"skewX":-0.049835205078125,"skewY":179.95016479492188,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":true}],"keyFrameNum":8},{"frames":[{"isTween":true,"frameIndex":0,"isEmpty":false,"texName":"heiniao_jiao_3.png","x":-8.45,"y":27.35,"scaleX":1,"scaleY":1,"skewX":0,"skewY":180,"duration":7,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":7,"isEmpty":false,"texName":"heiniao_jiao_3.png","x":-9.55,"y":23.1,"scaleX":1.0000152587890625,"scaleY":1.0000152587890625,"skewX":-13.48858642578125,"skewY":166.51141357421875,"duration":4,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":11,"isEmpty":false,"texName":"heiniao_jiao_3.png","x":-11.5,"y":23.65,"scaleX":0.999542236328125,"scaleY":0.999542236328125,"skewX":-8.267745971679688,"skewY":171.7322540283203,"duration":8,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":19,"isEmpty":false,"texName":"heiniao_jiao_3.png","x":-12.5,"y":24,"scaleX":1,"scaleY":1,"skewX":-5.722198486328125,"skewY":174.27780151367188,"duration":4,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":23,"isEmpty":false,"texName":"heiniao_jiao_3.png","x":-5.1,"y":34.75,"scaleX":0.9996337890625,"scaleY":0.9996337890625,"skewX":6.549285888671875,"skewY":-173.45071411132812,"duration":5,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":28,"isEmpty":false,"texName":"heiniao_jiao_3.png","x":4,"y":34.7,"scaleX":0.9999847412109375,"scaleY":0.9999847412109375,"skewX":22.194183349609375,"skewY":-157.80581665039062,"duration":10,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":38,"isEmpty":false,"texName":"heiniao_jiao_3.png","x":1.35,"y":35.3,"scaleX":1,"scaleY":1,"skewX":-2.0021209716796875,"skewY":177.9978790283203,"duration":9,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":47,"isEmpty":false,"texName":"heiniao_jiao_3.png","x":-7.45,"y":28.15,"scaleX":0.999969482421875,"scaleY":0.999969482421875,"skewX":-0.049835205078125,"skewY":179.95016479492188,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":true}],"keyFrameNum":8},{"frames":[{"isTween":true,"frameIndex":0,"isEmpty":false,"texName":"heiniao_tui_3.png","x":-7.4,"y":33.15,"scaleX":1,"scaleY":1,"skewX":0,"skewY":180,"duration":7,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":7,"isEmpty":false,"texName":"heiniao_tui_3.png","x":-9.9,"y":28.95,"scaleX":1.0000152587890625,"scaleY":1.0000152587890625,"skewX":-13.48858642578125,"skewY":166.51141357421875,"duration":4,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":11,"isEmpty":false,"texName":"heiniao_tui_3.png","x":-11.3,"y":29.55,"scaleX":0.999542236328125,"scaleY":0.999542236328125,"skewX":-8.267745971679688,"skewY":171.7322540283203,"duration":8,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":19,"isEmpty":false,"texName":"heiniao_tui_3.png","x":-12.1,"y":29.85,"scaleX":1,"scaleY":1,"skewX":-5.722198486328125,"skewY":174.27780151367188,"duration":4,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":23,"isEmpty":false,"texName":"heiniao_tui_3.png","x":-3.5,"y":40.2,"scaleX":0.9996337890625,"scaleY":0.9996337890625,"skewX":6.549285888671875,"skewY":-173.45071411132812,"duration":5,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":28,"isEmpty":false,"texName":"heiniao_tui_3.png","x":7.15,"y":39.65,"scaleX":0.9999847412109375,"scaleY":0.9999847412109375,"skewX":22.194183349609375,"skewY":-157.80581665039062,"duration":10,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":38,"isEmpty":false,"texName":"heiniao_tui_3.png","x":2.2,"y":41.15,"scaleX":1,"scaleY":1,"skewX":-2.0021209716796875,"skewY":177.9978790283203,"duration":9,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":47,"isEmpty":false,"texName":"heiniao_tui_3.png","x":-6.45,"y":34.05,"scaleX":0.999969482421875,"scaleY":0.999969482421875,"skewX":-0.049835205078125,"skewY":179.95016479492188,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":true}],"keyFrameNum":8},{"frames":[{"isTween":true,"frameIndex":0,"isEmpty":false,"texName":"heiniao_jiao_2.png","x":9.2,"y":24.85,"scaleX":1,"scaleY":1,"skewX":0,"skewY":180,"duration":7,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":7,"isEmpty":false,"texName":"heiniao_jiao_2.png","x":8.2,"y":24.75,"scaleX":1.0000152587890625,"scaleY":1.0000152587890625,"skewX":-13.48858642578125,"skewY":166.51141357421875,"duration":4,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":11,"isEmpty":false,"texName":"heiniao_jiao_2.png","x":2.25,"y":26.2,"scaleX":0.99981689453125,"scaleY":0.99981689453125,"skewX":4.0411224365234375,"skewY":-175.95887756347656,"duration":8,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":19,"isEmpty":false,"texName":"heiniao_jiao_2.png","x":-0.8,"y":26.95,"scaleX":1.0000152587890625,"scaleY":1.0000152587890625,"skewX":12.994049072265625,"skewY":-167.00595092773438,"duration":4,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":23,"isEmpty":false,"texName":"heiniao_jiao_2.png","x":8.2,"y":32.4,"scaleX":0.9990692138671875,"scaleY":0.9990692138671875,"skewX":17.037277221679688,"skewY":-162.9627227783203,"duration":5,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":28,"isEmpty":false,"texName":"heiniao_jiao_2.png","x":19.4,"y":25.65,"scaleX":0.9999847412109375,"scaleY":0.9999847412109375,"skewX":22.194183349609375,"skewY":-157.80581665039062,"duration":10,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":38,"isEmpty":false,"texName":"heiniao_jiao_2.png","x":18.05,"y":28.3,"scaleX":1,"scaleY":1,"skewX":-1.52435302734375,"skewY":178.47564697265625,"duration":9,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":47,"isEmpty":false,"texName":"heiniao_jiao_2.png","x":10.1,"y":25.25,"scaleX":0.999969482421875,"scaleY":0.999969482421875,"skewX":-0.039337158203125,"skewY":179.96066284179688,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":true}],"keyFrameNum":8},{"frames":[{"isTween":true,"frameIndex":0,"isEmpty":false,"texName":"heiniao_tui_2.png","x":5.45,"y":31.6,"scaleX":1,"scaleY":1,"skewX":0,"skewY":180,"duration":7,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":7,"isEmpty":false,"texName":"heiniao_tui_2.png","x":3,"y":30.45,"scaleX":1.0000152587890625,"scaleY":1.0000152587890625,"skewX":-13.48858642578125,"skewY":166.51141357421875,"duration":4,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":11,"isEmpty":false,"texName":"heiniao_tui_2.png","x":-0.95,"y":33.15,"scaleX":0.99981689453125,"scaleY":0.99981689453125,"skewX":4.0411224365234375,"skewY":-175.95887756347656,"duration":8,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":19,"isEmpty":false,"texName":"heiniao_tui_2.png","x":-2.95,"y":34.4,"scaleX":1.0000152587890625,"scaleY":1.0000152587890625,"skewX":12.994049072265625,"skewY":-167.00595092773438,"duration":4,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":23,"isEmpty":false,"texName":"heiniao_tui_2.png","x":6.6,"y":39.95,"scaleX":0.9990692138671875,"scaleY":0.9990692138671875,"skewX":17.037277221679688,"skewY":-162.9627227783203,"duration":5,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":28,"isEmpty":false,"texName":"heiniao_tui_2.png","x":18.55,"y":33.3,"scaleX":0.9999847412109375,"scaleY":0.9999847412109375,"skewX":22.194183349609375,"skewY":-157.80581665039062,"duration":10,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":38,"isEmpty":false,"texName":"heiniao_tui_2.png","x":14.2,"y":34.95,"scaleX":1,"scaleY":1,"skewX":-1.52435302734375,"skewY":178.47564697265625,"duration":9,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":47,"isEmpty":false,"texName":"heiniao_tui_2.png","x":6.3,"y":32,"scaleX":0.999969482421875,"scaleY":0.999969482421875,"skewX":-0.039337158203125,"skewY":179.96066284179688,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":true}],"keyFrameNum":8},{"frames":[{"isTween":true,"frameIndex":0,"isEmpty":false,"texName":"heiniao_tui_1.png","x":19.8,"y":35.05,"scaleX":1,"scaleY":1,"skewX":0,"skewY":180,"duration":7,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":7,"isEmpty":false,"texName":"heiniao_tui_1.png","x":16.1,"y":37.15,"scaleX":1.0000152587890625,"scaleY":1.0000152587890625,"skewX":-13.48858642578125,"skewY":166.51141357421875,"duration":4,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":11,"isEmpty":false,"texName":"heiniao_tui_1.png","x":13.05,"y":38.65,"scaleX":0.99981689453125,"scaleY":0.99981689453125,"skewX":4.0411224365234375,"skewY":-175.95887756347656,"duration":8,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":19,"isEmpty":false,"texName":"heiniao_tui_1.png","x":11.55,"y":39.5,"scaleX":1.0000152587890625,"scaleY":1.0000152587890625,"skewX":12.994049072265625,"skewY":-167.00595092773438,"duration":4,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":23,"isEmpty":false,"texName":"heiniao_tui_1.png","x":21.15,"y":41.8,"scaleX":0.9990692138671875,"scaleY":0.9990692138671875,"skewX":17.037277221679688,"skewY":-162.9627227783203,"duration":5,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":28,"isEmpty":false,"texName":"heiniao_tui_1.png","x":33.1,"y":31.1,"scaleX":0.9999847412109375,"scaleY":0.9999847412109375,"skewX":22.194183349609375,"skewY":-157.80581665039062,"duration":10,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":38,"isEmpty":false,"texName":"heiniao_tui_1.png","x":26.9,"y":33.7,"scaleX":1,"scaleY":1,"skewX":0.4991912841796875,"skewY":-179.5008087158203,"duration":9,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":47,"isEmpty":false,"texName":"heiniao_tui_1.png","x":20.5,"y":34.9,"scaleX":1,"scaleY":1,"skewX":0.012237548828125,"skewY":-179.98776245117188,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":true}],"keyFrameNum":8},{"frames":[{"isTween":true,"frameIndex":0,"isEmpty":false,"texName":"heiniao_jiao_1.png","x":21.2,"y":27.4,"scaleX":1,"scaleY":1,"skewX":0,"skewY":180,"duration":7,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":7,"isEmpty":false,"texName":"heiniao_jiao_1.png","x":19.25,"y":30.05,"scaleX":1.0000152587890625,"scaleY":1.0000152587890625,"skewX":-13.48858642578125,"skewY":166.51141357421875,"duration":4,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":11,"isEmpty":false,"texName":"heiniao_jiao_1.png","x":13.9,"y":31.15,"scaleX":0.99981689453125,"scaleY":0.99981689453125,"skewX":4.0411224365234375,"skewY":-175.95887756347656,"duration":8,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":19,"isEmpty":false,"texName":"heiniao_jiao_1.png","x":11.25,"y":31.7,"scaleX":1.0000152587890625,"scaleY":1.0000152587890625,"skewX":12.994049072265625,"skewY":-167.00595092773438,"duration":4,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":23,"isEmpty":false,"texName":"heiniao_jiao_1.png","x":20.25,"y":34.05,"scaleX":0.9990692138671875,"scaleY":0.9990692138671875,"skewX":17.037277221679688,"skewY":-162.9627227783203,"duration":5,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":28,"isEmpty":false,"texName":"heiniao_jiao_1.png","x":31.5,"y":23.5,"scaleX":0.9999847412109375,"scaleY":0.9999847412109375,"skewX":22.194183349609375,"skewY":-157.80581665039062,"duration":10,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":38,"isEmpty":false,"texName":"heiniao_jiao_1.png","x":28.25,"y":26.05,"scaleX":1,"scaleY":1,"skewX":0.4991912841796875,"skewY":-179.5008087158203,"duration":9,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":47,"isEmpty":false,"texName":"heiniao_jiao_1.png","x":21.95,"y":27.25,"scaleX":1,"scaleY":1,"skewX":0.012237548828125,"skewY":-179.98776245117188,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":true}],"keyFrameNum":8},{"frames":[{"isTween":true,"frameIndex":0,"isEmpty":false,"texName":"heiniao_shenti_xia.png","x":-3.65,"y":47.7,"scaleX":1,"scaleY":1,"skewX":0,"skewY":180,"duration":7,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":7,"isEmpty":false,"texName":"heiniao_shenti_xia.png","x":-9.65,"y":44,"scaleX":1.0000152587890625,"scaleY":1.0000152587890625,"skewX":-13.48858642578125,"skewY":166.51141357421875,"duration":4,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":11,"isEmpty":false,"texName":"heiniao_shenti_xia.png","x":-11.6,"y":44.6,"scaleX":0.9989776611328125,"scaleY":0.9989776611328125,"skewX":-19.052459716796875,"skewY":160.94754028320312,"duration":8,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":19,"isEmpty":false,"texName":"heiniao_shenti_xia.png","x":-12.65,"y":44.95,"scaleX":1,"scaleY":1,"skewX":-21.952438354492188,"skewY":158.0475616455078,"duration":4,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":23,"isEmpty":false,"texName":"heiniao_shenti_xia.png","x":0.2,"y":53.95,"scaleX":0.9998626708984375,"scaleY":0.9998626708984375,"skewX":-2.2701568603515625,"skewY":177.72984313964844,"duration":5,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":28,"isEmpty":false,"texName":"heiniao_shenti_xia.png","x":16.2,"y":51.65,"scaleX":0.9999847412109375,"scaleY":0.9999847412109375,"skewX":22.194183349609375,"skewY":-157.80581665039062,"duration":10,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":38,"isEmpty":false,"texName":"heiniao_shenti_xia.png","x":7.65,"y":53.15,"scaleX":1,"scaleY":1,"skewX":18.213302612304688,"skewY":-161.7866973876953,"duration":9,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":47,"isEmpty":false,"texName":"heiniao_shenti_xia.png","x":-2.5,"y":48.2,"scaleX":0.9998931884765625,"scaleY":0.9998931884765625,"skewX":1.768951416015625,"skewY":-178.23104858398438,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":true}],"keyFrameNum":8},{"frames":[{"isTween":false,"frameIndex":0,"isEmpty":false,"texName":"heiniao_chibang_01.png","x":37.7,"y":82.1,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":1,"isEmpty":false,"texName":"heiniao_chibang_01.png","x":34.95,"y":82.85,"scaleX":0.9997406005859375,"scaleY":0.9997406005859375,"skewX":-1.554931640625,"skewY":-1.554931640625,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":2,"isEmpty":false,"texName":"heiniao_chibang_02.png","x":34.8,"y":78.25,"scaleX":0.99945068359375,"scaleY":0.99945068359375,"skewX":-3.2984466552734375,"skewY":-3.2984466552734375,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":3,"isEmpty":false,"texName":"heiniao_chibang_02.png","x":32.1,"y":79.15,"scaleX":0.9991607666015625,"scaleY":0.9991607666015625,"skewX":-5.04107666015625,"skewY":-5.04107666015625,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":4,"isEmpty":false,"texName":"heiniao_chibang_03.png","x":29.7,"y":71.2,"scaleX":0.9988861083984375,"scaleY":0.9988861083984375,"skewX":-6.7847442626953125,"skewY":-6.7847442626953125,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":5,"isEmpty":false,"texName":"heiniao_chibang_03.png","x":27.2,"y":72,"scaleX":0.9986114501953125,"scaleY":0.9986114501953125,"skewX":-8.528717041015625,"skewY":-8.528717041015625,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":6,"isEmpty":false,"texName":"heiniao_chibang_04.png","x":26.4,"y":55,"scaleX":0.9983062744140625,"scaleY":0.9983062744140625,"skewX":-10.272994995117188,"skewY":-10.272994995117188,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":7,"isEmpty":false,"texName":"heiniao_chibang_04.png","x":24.45,"y":55.95,"scaleX":0.9986724853515625,"scaleY":0.9986724853515625,"skewX":-12.03839111328125,"skewY":-12.03839111328125,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":8,"isEmpty":false,"texName":"heiniao_chibang_01.png","x":26.2,"y":51.7,"scaleX":0.9978790283203125,"scaleY":0.9978790283203125,"skewX":167.2161407470703,"skewY":-12.783859252929688,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":9,"isEmpty":false,"texName":"heiniao_chibang_01.png","x":24.8,"y":52.3,"scaleX":0.997772216796875,"scaleY":0.997772216796875,"skewX":166.4502410888672,"skewY":-13.549758911132812,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":10,"isEmpty":false,"texName":"heiniao_chibang_04.png","x":21.35,"y":57.35,"scaleX":0.99761962890625,"scaleY":0.99761962890625,"skewX":-14.317306518554688,"skewY":-14.317306518554688,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":11,"isEmpty":false,"texName":"heiniao_chibang_04.png","x":19.95,"y":58,"scaleX":0.9983062744140625,"scaleY":0.9983062744140625,"skewX":-15.28729248046875,"skewY":-15.28729248046875,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":12,"isEmpty":false,"texName":"heiniao_chibang_03.png","x":18.85,"y":66.85,"scaleX":0.9974365234375,"scaleY":0.9974365234375,"skewX":164.96029663085938,"skewY":-15.039703369140625,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":13,"isEmpty":false,"texName":"heiniao_chibang_03.png","x":18.95,"y":66.65,"scaleX":0.9974517822265625,"scaleY":0.9974517822265625,"skewX":165.197021484375,"skewY":-14.802978515625,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":14,"isEmpty":false,"texName":"heiniao_chibang_02.png","x":17.15,"y":83.15,"scaleX":0.997406005859375,"scaleY":0.997406005859375,"skewX":-14.56982421875,"skewY":-14.56982421875,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":15,"isEmpty":false,"texName":"heiniao_chibang_02.png","x":17.25,"y":83,"scaleX":0.997406005859375,"scaleY":0.997406005859375,"skewX":-14.52313232421875,"skewY":-14.52313232421875,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":16,"isEmpty":false,"texName":"heiniao_chibang_01.png","x":11.2,"y":88.45,"scaleX":0.99737548828125,"scaleY":0.99737548828125,"skewX":-14.291030883789062,"skewY":-14.291030883789062,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":17,"isEmpty":false,"texName":"heiniao_chibang_01.png","x":11.3,"y":88.35,"scaleX":0.9973297119140625,"scaleY":0.9973297119140625,"skewX":-14.055984497070312,"skewY":-14.055984497070312,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":18,"isEmpty":false,"texName":"heiniao_chibang_02.png","x":15.25,"y":83.35,"scaleX":0.9973297119140625,"scaleY":0.9973297119140625,"skewX":-13.822113037109375,"skewY":-13.822113037109375,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":19,"isEmpty":false,"texName":"heiniao_chibang_02.png","x":15.3,"y":83.35,"scaleX":0.9980926513671875,"scaleY":0.9980926513671875,"skewX":-13.814682006835938,"skewY":-13.814682006835938,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":20,"isEmpty":false,"texName":"heiniao_chibang_03.png","x":21.2,"y":74.75,"scaleX":0.997467041015625,"scaleY":0.997467041015625,"skewX":-12.522506713867188,"skewY":-12.522506713867188,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":21,"isEmpty":false,"texName":"heiniao_chibang_03.png","x":25.7,"y":74.85,"scaleX":0.997589111328125,"scaleY":0.997589111328125,"skewX":-11.271926879882812,"skewY":-11.271926879882812,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":22,"isEmpty":false,"texName":"heiniao_chibang_04.png","x":31.75,"y":57.2,"scaleX":0.99774169921875,"scaleY":0.99774169921875,"skewX":-10.01885986328125,"skewY":-10.01885986328125,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":23,"isEmpty":false,"texName":"heiniao_chibang_04.png","x":35.85,"y":57.3,"scaleX":0.9983673095703125,"scaleY":0.9983673095703125,"skewX":-8.796157836914062,"skewY":-8.796157836914062,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":24,"isEmpty":false,"texName":"heiniao_chibang_01.png","x":41.7,"y":49.65,"scaleX":0.9980621337890625,"scaleY":0.9980621337890625,"skewX":172.99122619628906,"skewY":-7.0087738037109375,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":25,"isEmpty":false,"texName":"heiniao_chibang_01.png","x":44.9,"y":47.2,"scaleX":0.9982757568359375,"scaleY":0.9982757568359375,"skewX":174.7464599609375,"skewY":-5.2535400390625,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":26,"isEmpty":false,"texName":"heiniao_chibang_04.png","x":46.9,"y":49.35,"scaleX":0.9985198974609375,"scaleY":0.9985198974609375,"skewX":-3.3106536865234375,"skewY":-3.3106536865234375,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":27,"isEmpty":false,"texName":"heiniao_chibang_04.png","x":50.1,"y":47,"scaleX":0.99871826171875,"scaleY":0.99871826171875,"skewX":-1.5558013916015625,"skewY":-1.5558013916015625,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":28,"isEmpty":false,"texName":"heiniao_chibang_03.png","x":54.7,"y":53.7,"scaleX":0.9989013671875,"scaleY":0.9989013671875,"skewX":-179.9492950439453,"skewY":0.0507049560546875,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":29,"isEmpty":false,"texName":"heiniao_chibang_03.png","x":53.85,"y":53.95,"scaleX":0.99896240234375,"scaleY":0.99896240234375,"skewX":-179.98863220214844,"skewY":0.0113677978515625,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":30,"isEmpty":false,"texName":"heiniao_chibang_02.png","x":55.3,"y":70.9,"scaleX":0.9990234375,"scaleY":0.9990234375,"skewX":0.010498046875,"skewY":0.010498046875,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":31,"isEmpty":false,"texName":"heiniao_chibang_02.png","x":54.45,"y":71.2,"scaleX":0.99908447265625,"scaleY":0.99908447265625,"skewX":0.009613037109375,"skewY":0.009613037109375,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":32,"isEmpty":false,"texName":"heiniao_chibang_01.png","x":48.85,"y":78.55,"scaleX":0.9991455078125,"scaleY":0.9991455078125,"skewX":0.00787353515625,"skewY":0.00787353515625,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":33,"isEmpty":false,"texName":"heiniao_chibang_01.png","x":48,"y":78.85,"scaleX":0.99920654296875,"scaleY":0.99920654296875,"skewX":0.006988525390625,"skewY":0.006988525390625,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":34,"isEmpty":false,"texName":"heiniao_chibang_02.png","x":49.5,"y":73.65,"scaleX":0.999267578125,"scaleY":0.999267578125,"skewX":0.0061187744140625,"skewY":0.0061187744140625,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":35,"isEmpty":false,"texName":"heiniao_chibang_02.png","x":48.6,"y":73.95,"scaleX":0.99932861328125,"scaleY":0.99932861328125,"skewX":0.004364013671875,"skewY":0.004364013671875,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":36,"isEmpty":false,"texName":"heiniao_chibang_03.png","x":47,"y":65.5,"scaleX":0.999420166015625,"scaleY":0.999420166015625,"skewX":0.0034942626953125,"skewY":0.0034942626953125,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":37,"isEmpty":false,"texName":"heiniao_chibang_03.png","x":46.1,"y":65.75,"scaleX":0.999481201171875,"scaleY":0.999481201171875,"skewX":0.00262451171875,"skewY":0.00262451171875,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":38,"isEmpty":false,"texName":"heiniao_chibang_04.png","x":43.7,"y":48.1,"scaleX":0.999542236328125,"scaleY":0.999542236328125,"skewX":0.0052490234375,"skewY":0.0052490234375,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":39,"isEmpty":false,"texName":"heiniao_chibang_04.png","x":43.15,"y":48.1,"scaleX":0.999542236328125,"scaleY":0.999542236328125,"skewX":0.0008697509765625,"skewY":0.0008697509765625,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":40,"isEmpty":false,"texName":"heiniao_chibang_01.png","x":44.6,"y":42.6,"scaleX":0.999542236328125,"scaleY":0.999542236328125,"skewX":-179.99913024902344,"skewY":0.0008697509765625,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":41,"isEmpty":false,"texName":"heiniao_chibang_01.png","x":44.05,"y":42.6,"scaleX":0.999542236328125,"scaleY":0.999542236328125,"skewX":-179.99913024902344,"skewY":0.0008697509765625,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":42,"isEmpty":false,"texName":"heiniao_chibang_04.png","x":42.65,"y":47.35,"scaleX":0.999542236328125,"scaleY":0.999542236328125,"skewX":0.0008697509765625,"skewY":0.0008697509765625,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":43,"isEmpty":false,"texName":"heiniao_chibang_04.png","x":42.1,"y":47.35,"scaleX":0.999542236328125,"scaleY":0.999542236328125,"skewX":0.0008697509765625,"skewY":0.0008697509765625,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":44,"isEmpty":false,"texName":"heiniao_chibang_03.png","x":42.75,"y":56.5,"scaleX":0.999542236328125,"scaleY":0.999542236328125,"skewX":-179.99913024902344,"skewY":0.0008697509765625,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":45,"isEmpty":false,"texName":"heiniao_chibang_03.png","x":42.2,"y":56.5,"scaleX":0.999542236328125,"scaleY":0.999542236328125,"skewX":-179.99913024902344,"skewY":0.0008697509765625,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":46,"isEmpty":false,"texName":"heiniao_chibang_02.png","x":44,"y":73.15,"scaleX":0.999542236328125,"scaleY":0.999542236328125,"skewX":0.0008697509765625,"skewY":0.0008697509765625,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":47,"isEmpty":false,"texName":"heiniao_chibang_02.png","x":43.45,"y":73.15,"scaleX":0.999542236328125,"scaleY":0.999542236328125,"skewX":0.0017547607421875,"skewY":0.0017547607421875,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":true}],"keyFrameNum":48},{"frames":[{"isTween":false,"frameIndex":0,"isEmpty":false,"texName":"heiniao_yinzi.png","x":0.8,"y":0,"scaleX":1.4248046875,"scaleY":1.42486572265625,"skewX":0,"skewY":0,"duration":48,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false}],"keyFrameNum":1}]},{"animName":"atk1","layerNum":20,"frameMaxNum":64,"layers":[{"frames":[{"isTween":false,"frameIndex":0,"isEmpty":false,"texName":"heiniao_fazhangtexiao_001.png","x":81.35,"y":99.65,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":1,"isEmpty":false,"texName":"heiniao_fazhangtexiao_002.png","x":86.5,"y":102.75,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":2,"isEmpty":false,"texName":"heiniao_fazhangtexiao_003.png","x":91.65,"y":105.85,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":3,"isEmpty":false,"texName":"heiniao_fazhangtexiao_001.png","x":96.8,"y":109,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":4,"isEmpty":false,"texName":"heiniao_fazhangtexiao_002.png","x":74.55,"y":130.05,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":5,"isEmpty":false,"texName":"heiniao_fazhangtexiao_003.png","x":52.3,"y":151.1,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":6,"isEmpty":false,"texName":"heiniao_fazhangtexiao_004.png","x":30.1,"y":172.1,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":7,"isEmpty":false,"texName":"heiniao_fazhangtexiao_001.png","x":7.85,"y":193.15,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":8,"isEmpty":false,"texName":"heiniao_fazhangtexiao_002.png","x":-7.25,"y":188.4,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":9,"isEmpty":false,"texName":"heiniao_fazhangtexiao_003.png","x":-22.4,"y":183.65,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":10,"isEmpty":false,"texName":"heiniao_fazhangtexiao_004.png","x":-37.5,"y":178.9,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":11,"isEmpty":false,"texName":"heiniao_fazhangtexiao_001.png","x":-52.65,"y":174.15,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":12,"isEmpty":false,"texName":"heiniao_fazhangtexiao_002.png","x":-42.4,"y":179.8,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":13,"isEmpty":false,"texName":"heiniao_fazhangtexiao_003.png","x":-32.15,"y":185.45,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":14,"isEmpty":false,"texName":"heiniao_fazhangtexiao_004.png","x":-21.95,"y":191.1,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":15,"isEmpty":false,"texName":"heiniao_fazhangtexiao_005.png","x":-10.1,"y":191.25,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":16,"isEmpty":false,"texName":"heiniao_fazhangtexiao_006.png","x":1.7,"y":191.4,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":17,"isEmpty":false,"texName":"heiniao_fazhangtexiao_007.png","x":13.55,"y":191.5,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":18,"isEmpty":false,"texName":"heiniao_fazhangtexiao_001.png","x":25.35,"y":191.65,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":19,"isEmpty":false,"texName":"heiniao_fazhangtexiao_002.png","x":13.55,"y":191.5,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":20,"isEmpty":false,"texName":"heiniao_fazhangtexiao_003.png","x":1.7,"y":191.4,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":21,"isEmpty":false,"texName":"heiniao_fazhangtexiao_004.png","x":-10.1,"y":191.25,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":22,"isEmpty":false,"texName":"heiniao_fazhangtexiao_005.png","x":-21.95,"y":191.15,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":23,"isEmpty":false,"texName":"heiniao_fazhangtexiao_006.png","x":-33.2,"y":187.8,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":24,"isEmpty":false,"texName":"heiniao_fazhangtexiao_007.png","x":-44.4,"y":184.45,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":25,"isEmpty":false,"texName":"heiniao_fazhangtexiao_001.png","x":-55.65,"y":181.15,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":26,"isEmpty":false,"texName":"heiniao_fazhangtexiao_002.png","x":-42,"y":184.8,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":27,"isEmpty":false,"texName":"heiniao_fazhangtexiao_003.png","x":-28.35,"y":188.45,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":28,"isEmpty":false,"texName":"heiniao_fazhangtexiao_004.png","x":-14.7,"y":192.1,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":29,"isEmpty":false,"texName":"heiniao_fazhangtexiao_005.png","x":-0.2,"y":190.5,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":30,"isEmpty":false,"texName":"heiniao_fazhangtexiao_006.png","x":14.3,"y":188.9,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":31,"isEmpty":false,"texName":"heiniao_fazhangtexiao_007.png","x":28.85,"y":187.25,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":32,"isEmpty":false,"texName":"heiniao_fazhangtexiao_001.png","x":43.35,"y":185.65,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":33,"isEmpty":false,"texName":"heiniao_fazhangtexiao_002.png","x":21.75,"y":186.45,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":34,"isEmpty":false,"texName":"heiniao_fazhangtexiao_003.png","x":0.15,"y":187.2,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":35,"isEmpty":false,"texName":"heiniao_fazhangtexiao_004.png","x":-21.5,"y":188,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":36,"isEmpty":false,"texName":"heiniao_fazhangtexiao_005.png","x":-35.55,"y":177.4,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":37,"isEmpty":false,"texName":"heiniao_fazhangtexiao_006.png","x":-49.6,"y":166.8,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":38,"isEmpty":false,"texName":"heiniao_fazhangtexiao_007.png","x":-63.6,"y":156.2,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":39,"isEmpty":false,"texName":"heiniao_fazhangtexiao_001.png","x":-77.65,"y":145.65,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":40,"isEmpty":false,"texName":"heiniao_fazhangtexiao_002.png","x":-56.4,"y":156.25,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":41,"isEmpty":false,"texName":"heiniao_fazhangtexiao_003.png","x":-35.15,"y":166.9,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":42,"isEmpty":false,"texName":"heiniao_fazhangtexiao_004.png","x":-8.9,"y":173,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":43,"isEmpty":false,"texName":"heiniao_fazhangtexiao_001.png","x":17.35,"y":179.15,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":44,"isEmpty":false,"texName":"heiniao_fazhangtexiao_002.png","x":49.5,"y":163.15,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":45,"isEmpty":false,"texName":"heiniao_fazhangtexiao_003.png","x":81.65,"y":147.15,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":46,"isEmpty":false,"texName":"heiniao_fazhangtexiao_004.png","x":97.55,"y":117.8,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":47,"isEmpty":false,"texName":"heiniao_fazhangtexiao_005.png","x":113.45,"y":88.5,"scaleX":1,"scaleY":1,"skewX":0,"skewY":0,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":false,"frameIndex":48,"isEmpty":true}],"keyFrameNum":49},{"frames":[{"isTween":true,"frameIndex":0,"isEmpty":false,"texName":"heiniao_tou.png","x":17.2,"y":110.6,"scaleX":1,"scaleY":1,"skewX":0,"skewY":180,"duration":7,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":7,"isEmpty":false,"texName":"heiniao_tou.png","x":-10.15,"y":108.15,"scaleX":1,"scaleY":1,"skewX":-13.531570434570312,"skewY":166.4684295654297,"duration":4,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":11,"isEmpty":false,"texName":"heiniao_tou.png","x":-21.05,"y":106.55,"scaleX":0.9990081787109375,"scaleY":0.9990081787109375,"skewX":-18.064071655273438,"skewY":161.93592834472656,"duration":28,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":39,"isEmpty":false,"texName":"heiniao_tou.png","x":-29.25,"y":104.1,"scaleX":1,"scaleY":1,"skewX":-39.73193359375,"skewY":140.26806640625,"duration":4,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":43,"isEmpty":false,"texName":"heiniao_tou.png","x":11.8,"y":111.6,"scaleX":0.999267578125,"scaleY":0.999267578125,"skewX":-26.241012573242188,"skewY":153.7589874267578,"duration":5,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":48,"isEmpty":false,"texName":"heiniao_tou.png","x":59.65,"y":97.9,"scaleX":0.999969482421875,"scaleY":0.999969482421875,"skewX":-4.320281982421875,"skewY":175.67971801757812,"duration":8,"mark":"attacking2","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":56,"isEmpty":false,"texName":"heiniao_tou.png","x":47.9,"y":105.8,"scaleX":1.0000152587890625,"scaleY":1.0000152587890625,"skewX":6.7071533203125,"skewY":-173.2928466796875,"duration":7,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":63,"isEmpty":false,"texName":"heiniao_tou.png","x":20.25,"y":110.1,"scaleX":0.9999847412109375,"scaleY":0.9999847412109375,"skewX":0.54290771484375,"skewY":-179.45709228515625,"duration":1,"mark":"attackend2","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":true}],"keyFrameNum":8},{"frames":[{"isTween":true,"frameIndex":0,"isEmpty":false,"texName":"heiniao_shenti_shang.png","x":6.85,"y":72.5,"scaleX":1,"scaleY":1,"skewX":0,"skewY":180,"duration":7,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":7,"isEmpty":false,"texName":"heiniao_shenti_shang.png","x":-8.35,"y":68.8,"scaleX":1,"scaleY":1,"skewX":-25.22296142578125,"skewY":154.77703857421875,"duration":4,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":11,"isEmpty":false,"texName":"heiniao_shenti_shang.png","x":-13.15,"y":68.3,"scaleX":0.9984588623046875,"scaleY":0.9984588623046875,"skewX":-34.33363342285156,"skewY":145.66636657714844,"duration":28,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":39,"isEmpty":false,"texName":"heiniao_shenti_shang.png","x":-15.5,"y":67.95,"scaleX":1,"scaleY":1,"skewX":-38.90946960449219,"skewY":141.0905303955078,"duration":4,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":43,"isEmpty":false,"texName":"heiniao_shenti_shang.png","x":7.45,"y":74.4,"scaleX":0.9994354248046875,"scaleY":0.9994354248046875,"skewX":-10.031570434570312,"skewY":169.9684295654297,"duration":5,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":48,"isEmpty":false,"texName":"heiniao_shenti_shang.png","x":36.15,"y":68.9,"scaleX":0.999969482421875,"scaleY":0.999969482421875,"skewX":25.898178100585938,"skewY":-154.10182189941406,"duration":8,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":56,"isEmpty":false,"texName":"heiniao_shenti_shang.png","x":25.35,"y":73.4,"scaleX":1,"scaleY":1,"skewX":18.213302612304688,"skewY":-161.7866973876953,"duration":7,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":63,"isEmpty":false,"texName":"heiniao_shenti_shang.png","x":8.65,"y":72.7,"scaleX":0.9998931884765625,"scaleY":0.9998931884765625,"skewX":1.768951416015625,"skewY":-178.23104858398438,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":true}],"keyFrameNum":8},{"frames":[{"isTween":true,"frameIndex":0,"isEmpty":false,"texName":"heiniao_yougebo_2.png","x":1.65,"y":62.9,"scaleX":1,"scaleY":1,"skewX":0,"skewY":180,"duration":7,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":7,"isEmpty":false,"texName":"heiniao_yougebo_2.png","x":-17.2,"y":60.75,"scaleX":0.9999847412109375,"scaleY":0.9999847412109375,"skewX":15.003814697265625,"skewY":-164.99618530273438,"duration":4,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":11,"isEmpty":false,"texName":"heiniao_yougebo_2.png","x":-23.35,"y":59.65,"scaleX":0.999420166015625,"scaleY":0.999420166015625,"skewX":10.012924194335938,"skewY":-169.98707580566406,"duration":28,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":39,"isEmpty":false,"texName":"heiniao_yougebo_2.png","x":-26.4,"y":59.1,"scaleX":0.9999847412109375,"scaleY":0.9999847412109375,"skewX":7.547271728515625,"skewY":-172.45272827148438,"duration":4,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":43,"isEmpty":false,"texName":"heiniao_yougebo_2.png","x":-5.6,"y":69.65,"scaleX":0.9983978271484375,"scaleY":0.9983978271484375,"skewX":36.83009338378906,"skewY":-143.16990661621094,"duration":5,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":48,"isEmpty":false,"texName":"heiniao_yougebo_2.png","x":20.55,"y":69.25,"scaleX":0.9999847412109375,"scaleY":0.9999847412109375,"skewX":73.36238098144531,"skewY":-106.63761901855469,"duration":8,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":56,"isEmpty":false,"texName":"heiniao_yougebo_2.png","x":10.7,"y":69.65,"scaleX":1,"scaleY":1,"skewX":54.434234619140625,"skewY":-125.56576538085938,"duration":7,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":63,"isEmpty":false,"texName":"heiniao_yougebo_2.png","x":2.55,"y":63.6,"scaleX":0.99969482421875,"scaleY":0.99969482421875,"skewX":5.2994842529296875,"skewY":-174.7005157470703,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":true}],"keyFrameNum":8},{"frames":[{"isTween":true,"frameIndex":0,"isEmpty":false,"texName":"heiniao_yougebo_1.png","x":2.05,"y":72.45,"scaleX":1,"scaleY":1,"skewX":0,"skewY":180,"duration":7,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":7,"isEmpty":false,"texName":"heiniao_yougebo_1.png","x":-14.3,"y":69.9,"scaleX":0.9999847412109375,"scaleY":0.9999847412109375,"skewX":15.003814697265625,"skewY":-164.99618530273438,"duration":4,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":11,"isEmpty":false,"texName":"heiniao_yougebo_1.png","x":-18.85,"y":69.25,"scaleX":0.9987030029296875,"scaleY":0.9987030029296875,"skewX":25.537689208984375,"skewY":-154.46231079101562,"duration":28,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":39,"isEmpty":false,"texName":"heiniao_yougebo_1.png","x":-21.15,"y":68.9,"scaleX":0.999969482421875,"scaleY":0.999969482421875,"skewX":30.766921997070312,"skewY":-149.2330780029297,"duration":4,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":43,"isEmpty":false,"texName":"heiniao_yougebo_1.png","x":1.4,"y":76.15,"scaleX":0.9983673095703125,"scaleY":0.9983673095703125,"skewX":49.65924072265625,"skewY":-130.34075927734375,"duration":5,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":48,"isEmpty":false,"texName":"heiniao_yougebo_1.png","x":29.85,"y":71.55,"scaleX":0.9999847412109375,"scaleY":0.9999847412109375,"skewX":73.36238098144531,"skewY":-106.63761901855469,"duration":8,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":56,"isEmpty":false,"texName":"heiniao_yougebo_1.png","x":18.75,"y":74.85,"scaleX":1,"scaleY":1,"skewX":54.434234619140625,"skewY":-125.56576538085938,"duration":7,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":63,"isEmpty":false,"texName":"heiniao_yougebo_1.png","x":3.65,"y":72.7,"scaleX":0.99969482421875,"scaleY":0.99969482421875,"skewX":5.2994842529296875,"skewY":-174.7005157470703,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":true}],"keyFrameNum":8},{"frames":[{"isTween":true,"frameIndex":0,"isEmpty":false,"texName":"heiniao_zuogebo_2.png","x":33.65,"y":64.95,"scaleX":1,"scaleY":1,"skewX":0,"skewY":180,"duration":7,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":7,"isEmpty":false,"texName":"heiniao_zuogebo_2.png","x":18.95,"y":127.6,"scaleX":0.9999847412109375,"scaleY":0.9999847412109375,"skewX":-117.27055358886719,"skewY":62.72944641113281,"duration":4,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":11,"isEmpty":false,"texName":"heiniao_zuogebo_2.png","x":-4.05,"y":134.1,"scaleX":0.9984893798828125,"scaleY":0.9984893798828125,"skewX":-146.18280029296875,"skewY":33.81719970703125,"duration":7,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":18,"isEmpty":false,"texName":"heiniao_zuogebo_2.png","x":6.9,"y":127.7,"scaleX":0.9974517822265625,"scaleY":0.9974517822265625,"skewX":-97.91641235351562,"skewY":82.08358764648438,"duration":7,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":25,"isEmpty":false,"texName":"heiniao_zuogebo_2.png","x":-10.2,"y":135.75,"scaleX":0.9971160888671875,"scaleY":0.9971160888671875,"skewX":-153.95909118652344,"skewY":26.040908813476562,"duration":7,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":32,"isEmpty":false,"texName":"heiniao_zuogebo_2.png","x":11.25,"y":122.9,"scaleX":0.997650146484375,"scaleY":0.997650146484375,"skewX":-82.1839599609375,"skewY":97.8160400390625,"duration":7,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":39,"isEmpty":false,"texName":"heiniao_zuogebo_2.png","x":-15.5,"y":137.3,"scaleX":1.0000152587890625,"scaleY":1.0000152587890625,"skewX":-160.68238830566406,"skewY":19.317611694335938,"duration":4,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":43,"isEmpty":false,"texName":"heiniao_zuogebo_2.png","x":30.9,"y":116.1,"scaleX":0.9993896484375,"scaleY":0.9993896484375,"skewX":-100.80619812011719,"skewY":79.19380187988281,"duration":5,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":48,"isEmpty":false,"texName":"heiniao_zuogebo_2.png","x":74.05,"y":64.4,"scaleX":0.999969482421875,"scaleY":0.999969482421875,"skewX":-26.303573608398438,"skewY":153.69642639160156,"duration":8,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":56,"isEmpty":false,"texName":"heiniao_zuogebo_2.png","x":64.7,"y":72.05,"scaleX":0.9999847412109375,"scaleY":0.9999847412109375,"skewX":-38.48881530761719,"skewY":141.5111846923828,"duration":7,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":63,"isEmpty":false,"texName":"heiniao_zuogebo_2.png","x":36.7,"y":65.6,"scaleX":0.999786376953125,"scaleY":0.999786376953125,"skewX":-3.7757110595703125,"skewY":176.2242889404297,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":true}],"keyFrameNum":11},{"frames":[{"isTween":true,"frameIndex":0,"isEmpty":false,"texName":"heiniao_zuogebo_1.png","x":28.75,"y":74.15,"scaleX":1,"scaleY":1,"skewX":0,"skewY":180,"duration":7,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":7,"isEmpty":false,"texName":"heiniao_zuogebo_1.png","x":13.1,"y":119.05,"scaleX":0.9999847412109375,"scaleY":0.9999847412109375,"skewX":-117.27055358886719,"skewY":62.72944641113281,"duration":4,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":11,"isEmpty":false,"texName":"heiniao_zuogebo_1.png","x":-4.9,"y":124.4,"scaleX":0.9984893798828125,"scaleY":0.9984893798828125,"skewX":-146.18280029296875,"skewY":33.81719970703125,"duration":7,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":18,"isEmpty":false,"texName":"heiniao_zuogebo_1.png","x":-0.9,"y":121.7,"scaleX":0.9974517822265625,"scaleY":0.9974517822265625,"skewX":-97.91641235351562,"skewY":82.08358764648438,"duration":7,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":25,"isEmpty":false,"texName":"heiniao_zuogebo_1.png","x":-9.7,"y":125.75,"scaleX":0.9971160888671875,"scaleY":0.9971160888671875,"skewX":-153.95909118652344,"skewY":26.040908813476562,"duration":7,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":32,"isEmpty":false,"texName":"heiniao_zuogebo_1.png","x":1.6,"y":119.35,"scaleX":0.997650146484375,"scaleY":0.997650146484375,"skewX":-82.1839599609375,"skewY":97.8160400390625,"duration":7,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":39,"isEmpty":false,"texName":"heiniao_zuogebo_1.png","x":-13.9,"y":127.1,"scaleX":1.0000152587890625,"scaleY":1.0000152587890625,"skewX":-160.68238830566406,"skewY":19.317611694335938,"duration":4,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":43,"isEmpty":false,"texName":"heiniao_zuogebo_1.png","x":27.45,"y":112.2,"scaleX":0.9988250732421875,"scaleY":0.9988250732421875,"skewX":-113.336669921875,"skewY":66.663330078125,"duration":5,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":48,"isEmpty":false,"texName":"heiniao_zuogebo_1.png","x":64.65,"y":68.5,"scaleX":0.9999847412109375,"scaleY":0.9999847412109375,"skewX":-54.47821044921875,"skewY":125.52178955078125,"duration":8,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":56,"isEmpty":false,"texName":"heiniao_zuogebo_1.png","x":54.65,"y":74.1,"scaleX":0.999969482421875,"scaleY":0.999969482421875,"skewX":-66.663330078125,"skewY":113.336669921875,"duration":7,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":63,"isEmpty":false,"texName":"heiniao_zuogebo_1.png","x":31.25,"y":74.2,"scaleX":0.9996185302734375,"scaleY":0.9996185302734375,"skewX":-6.543243408203125,"skewY":173.45675659179688,"duration":1,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":true}],"keyFrameNum":11},{"frames":[{"isTween":true,"frameIndex":0,"isEmpty":false,"texName":"heiniao_fazhang.png","x":55.6,"y":74.5,"scaleX":1.37017822265625,"scaleY":1.37017822265625,"skewX":48.665435791015625,"skewY":48.665435791015625,"duration":3,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":3,"isEmpty":false,"texName":"heiniao_fazhang.png","x":65.5,"y":100.5,"scaleX":1.36810302734375,"scaleY":1.36810302734375,"skewX":78.26718139648438,"skewY":78.26718139648438,"duration":4,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":7,"isEmpty":false,"texName":"heiniao_fazhang.png","x":15.45,"y":160.75,"scaleX":1.370147705078125,"scaleY":1.370147705078125,"skewX":-12.572494506835938,"skewY":-12.572494506835938,"duration":4,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":11,"isEmpty":false,"texName":"heiniao_fazhang.png","x":-24.9,"y":155.5,"scaleX":1.368072509765625,"scaleY":1.368072509765625,"skewX":-54.93305969238281,"skewY":-54.93305969238281,"duration":3,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":14,"isEmpty":false,"texName":"heiniao_fazhang.png","x":-8.9,"y":161.85,"scaleX":1.3658294677734375,"scaleY":1.3658294677734375,"skewX":-25.343048095703125,"skewY":-25.343048095703125,"duration":4,"mark":"","alpha":255,"color":{"r":0,"g":0,"b":0,"a":0},"isLastIndex":false},{"isTween":true,"frameIndex":18,"isEmpty":false,"texName":"heiniao_fazhang.png","x":18.25,"y":158.75,"scaleX":1.3668670654296875,"scale
Download .txt
gitextract_e7zhuvyd/

├── .gitignore
├── README.md
├── android/
│   └── FlashSupport/
│       ├── .gitignore
│       ├── .idea/
│       │   ├── .name
│       │   ├── compiler.xml
│       │   ├── copyright/
│       │   │   └── profiles_settings.xml
│       │   ├── gradle.xml
│       │   ├── misc.xml
│       │   ├── modules.xml
│       │   ├── runConfigurations.xml
│       │   └── vcs.xml
│       ├── app/
│       │   ├── .gitignore
│       │   ├── build.gradle
│       │   ├── proguard-rules.pro
│       │   └── src/
│       │       ├── main/
│       │       │   ├── AndroidManifest.xml
│       │       │   ├── assets/
│       │       │   │   └── flashAnims/
│       │       │   │       ├── bieshu.flajson
│       │       │   │       ├── callTextAnim.flajson
│       │       │   │       ├── heiniao.flabin
│       │       │   │       ├── heiniao.flajson1
│       │       │   │       ├── laba.flajson
│       │       │   │       ├── test.flajson
│       │       │   │       └── testDB.flajson
│       │       │   ├── java/
│       │       │   │   └── com/
│       │       │   │       └── flashanimation/
│       │       │   │           ├── MainActivity.java
│       │       │   │           └── view/
│       │       │   │               ├── FlashDataParser.java
│       │       │   │               ├── FlashSurfaceView.java
│       │       │   │               └── FlashView.java
│       │       │   └── res/
│       │       │       ├── layout/
│       │       │       │   └── activity_main.xml
│       │       │       ├── values/
│       │       │       │   ├── colors.xml
│       │       │       │   ├── dimens.xml
│       │       │       │   ├── flashview_attr.xml
│       │       │       │   ├── strings.xml
│       │       │       │   └── styles.xml
│       │       │       └── values-w820dp/
│       │       │           └── dimens.xml
│       │       └── test/
│       │           └── java/
│       │               └── com/
│       │                   └── xcyo/
│       │                       └── yoyo/
│       │                           └── flashsupport/
│       │                               └── ExampleUnitTest.java
│       ├── build.gradle
│       ├── gradle/
│       │   └── wrapper/
│       │       ├── gradle-wrapper.jar
│       │       └── gradle-wrapper.properties
│       ├── gradle.properties
│       ├── gradlew
│       ├── gradlew.bat
│       └── settings.gradle
├── cocos2dx/
│   └── animationPlayer/
│       ├── Anim.cpp
│       ├── Anim.h
│       ├── AnimKeyFrame.cpp
│       ├── AnimKeyFrame.h
│       ├── AnimLayer.cpp
│       ├── AnimLayer.h
│       ├── AnimNode.cpp
│       ├── AnimNode.h
│       └── windy.h
├── iOS/
│   └── FlashView/
│       ├── FlashView/
│       │   ├── AppDelegate.h
│       │   ├── AppDelegate.m
│       │   ├── Assets.xcassets/
│       │   │   └── AppIcon.appiconset/
│       │   │       └── Contents.json
│       │   ├── Base.lproj/
│       │   │   ├── LaunchScreen.storyboard
│       │   │   └── Main.storyboard
│       │   ├── FlashView.h
│       │   ├── FlashView.m
│       │   ├── FlashViewCommon.h
│       │   ├── FlashViewDataReader.h
│       │   ├── FlashViewDataReader.m
│       │   ├── FlashViewDownloader.h
│       │   ├── FlashViewDownloader.m
│       │   ├── FlashViewNew.h
│       │   ├── FlashViewNew.m
│       │   ├── FlashViewNode.h
│       │   ├── FlashViewNode.m
│       │   ├── FlashViewTool.h
│       │   ├── FlashViewTool.m
│       │   ├── Info.plist
│       │   ├── Resources/
│       │   │   └── flashAnims/
│       │   │       ├── bieshu.flajson
│       │   │       ├── laba.flajson
│       │   │       ├── mutiFlowerDrop.flajson
│       │   │       ├── mutiFlowerRandom.flajson
│       │   │       └── testFlash.flajson
│       │   ├── TestFlashViewController.h
│       │   ├── TestFlashViewController.m
│       │   ├── TestFlashViewDownloadViewController.h
│       │   ├── TestFlashViewDownloadViewController.m
│       │   ├── ViewController.h
│       │   ├── ViewController.m
│       │   ├── Zip/
│       │   │   ├── ZipArchive.h
│       │   │   ├── ZipArchive.m
│       │   │   └── minizip/
│       │   │       ├── crypt.h
│       │   │       ├── ioapi.c
│       │   │       ├── ioapi.h
│       │   │       ├── mztools.c
│       │   │       ├── mztools.h
│       │   │       ├── unzip.c
│       │   │       ├── unzip.h
│       │   │       ├── zip.c
│       │   │       └── zip.h
│       │   └── main.m
│       └── FlashView.xcodeproj/
│           ├── project.pbxproj
│           └── project.xcworkspace/
│               └── contents.xcworkspacedata
└── tools/
    ├── JsonToBin.py
    └── flashScript/
        ├── 1.根据png创建元件.jsfl
        ├── 2.修改fla中元素的名字.jsfl
        ├── 3.导出动画数据.jsfl
        └── libs/
            └── json2.jsfl
Download .txt
SYMBOL INDEX (279 symbols across 24 files)

FILE: android/FlashSupport/app/src/main/java/com/flashanimation/MainActivity.java
  class MainActivity (line 14) | public class MainActivity extends AppCompatActivity {
    method onCreate (line 17) | @Override

FILE: android/FlashSupport/app/src/main/java/com/flashanimation/view/FlashDataParser.java
  class FlashDataParser (line 44) | public class FlashDataParser{
    type FlashViewEvent (line 90) | public enum FlashViewEvent{//动画事件
    type FileType (line 98) | private enum FileType{//表示动画文件在sd卡还是assets
    type FileDataType (line 104) | private enum FileDataType{//描述文件是json还是二进制
    class FlashViewEventData (line 111) | public static class FlashViewEventData{
    type IFlashViewEventCallback (line 118) | public interface IFlashViewEventCallback{
      method onEvent (line 119) | void onEvent(FlashViewEvent e, FlashViewEventData data);
    class Data (line 138) | private static class Data{
    type DataType (line 144) | private enum DataType{
    method FlashDataParser (line 152) | public FlashDataParser(Context c, String flashName) {
    method FlashDataParser (line 156) | public FlashDataParser(Context c, String flashName, String flashDir) {
    method FlashDataParser (line 160) | public FlashDataParser(Context c, String flashName, String flashDir, i...
    method log (line 172) | public static void log(String msg){
    method log (line 180) | public static void log(Throwable tx){
    method readStringFromInStream (line 192) | private String readStringFromInStream(InputStream in){
    method readBytesFromInStream (line 213) | private byte[] readBytesFromInStream(InputStream in){
    method getData (line 231) | private Data getData(String path, DataType dataType){
    method readData (line 300) | private byte[] readData(){
    method readJson (line 308) | private JSONObject readJson(){
    method readImage (line 324) | private Bitmap readImage(String imageName){
    method guessFileType (line 336) | private boolean guessFileType(String assetFilePathPre, FileDataType fi...
    method initFileType (line 364) | private boolean initFileType(){
    class Downloader (line 372) | public static abstract class Downloader{
      method setDownloadFlashDir (line 382) | public void setDownloadFlashDir(String flashDir){
      method setDownloadFlashZipDir (line 390) | public void setDownloadFlashZipDir(String flashZipDir){
      method download (line 399) | public abstract void download(String url, String outFile, DownloadCa...
      type DownloadType (line 404) | public enum DownloadType{
      type DownloadCallback (line 413) | public interface DownloadCallback{
        method onComplete (line 414) | void onComplete(boolean succ);
        method onProgress (line 415) | void onProgress(float per);
      method removeAnimFiles (line 423) | public void removeAnimFiles(Context ctx, String animName){
      method downloadAnimFile (line 451) | public boolean downloadAnimFile(final Context ctx, String url, Strin...
      method isValidFile (line 519) | private static boolean isValidFile(File f){
      method upZipFile (line 530) | public static boolean upZipFile(File zipFile, String folderPath) {
    method deleteFile (line 608) | private static void deleteFile(File file){
    method getExternalStorageDirectory (line 633) | private static String getExternalStorageDirectory(Context ctx){
    method createDirInSdcard (line 649) | private static String createDirInSdcard(Context ctx, String flashDir){
    method createSDCardPath (line 679) | private boolean createSDCardPath(){
    method cleanData (line 692) | private void cleanData(){
    method init (line 725) | private boolean init(){
    method isInitOk (line 779) | public boolean isInitOk(){
    method setScale (line 789) | public void setScale(float x, float y, boolean isDpiEffect){
    method setScale (line 799) | public void setScale(float x, float y){
    method readKeyFrame (line 811) | private JSONObject readKeyFrame(FlaDataReader reader, ArrayList<String...
    method parseJson (line 846) | private void parseJson(){
    method parseData (line 928) | private void parseData(){
    method parseKeyFrame (line 972) | private void parseKeyFrame(JSONObject oneFrame, AnimData parsedAnim, b...
    method calcPercentValue (line 1058) | private float calcPercentValue(JSONObject lastFrame, JSONObject newFra...
    method createArrForIdx (line 1092) | private ArrayList<KeyFrameData> createArrForIdx(int idx, AnimData pars...
    method addOneFrameDataToIdx (line 1113) | private void addOneFrameDataToIdx(JSONObject oneFrame, int idx, AnimDa...
    method reload (line 1125) | public boolean reload(String flashName){
    method reload (line 1135) | public boolean reload(String flashName, String flashDir){
    method reload (line 1146) | public boolean reload(String flashName, String flashDir, int designDPI){
    method setEventCallback (line 1158) | public void setEventCallback(IFlashViewEventCallback callback){
    method replaceBitmap (line 1171) | public void replaceBitmap(String texName, Bitmap bitmap){
    method play (line 1197) | public void play(String animName, int loopTimes, int fromIndex, int to...
    method isPlaying (line 1224) | public boolean isPlaying(){
    method isPaused (line 1232) | public boolean isPaused(){
    method isStoped (line 1239) | public boolean isStoped(){
    method increaseTotalTime (line 1247) | public void increaseTotalTime(double increaseValue){
    method getDefaultAnimName (line 1255) | public String getDefaultAnimName(){
    method getDefaultTexTureName (line 1266) | public String getDefaultTexTureName(){
    method getTotalTime (line 1279) | public double getTotalTime(){
    method getOneFrameTime (line 1287) | public double getOneFrameTime(){
    method getParseFrameMaxIndex (line 1295) | public int getParseFrameMaxIndex(){
    method getAnimFrameMaxIndex (line 1304) | public int getAnimFrameMaxIndex(String animName){
    method getLength (line 1316) | public int getLength(){
    method stop (line 1323) | public void stop(){
    method pause (line 1335) | public void pause(){
    method resume (line 1346) | public void resume(){
    class FlaDataReader (line 1357) | private class FlaDataReader{
      method readBool (line 1360) | private boolean readBool(){
      method readUShort (line 1366) | private int readUShort(){
      method readInt (line 1372) | private int readInt(){
      method readFloat (line 1379) | private float readFloat(){
      method readUChar (line 1383) | private short readUChar(){
      method readString (line 1389) | private String readString(){
    class BlendColor (line 1400) | private static class BlendColor{
      method BlendColor (line 1405) | private BlendColor(int r, int g, int b, int a){
      method toString (line 1412) | @Override
    class KeyFrameData (line 1421) | public static class KeyFrameData{
      method KeyFrameData (line 1435) | private KeyFrameData(JSONObject oneFrame){
      method toString (line 1458) | @Override
    class AnimData (line 1482) | private static class AnimData{
    method drawImage (line 1532) | private void drawImage(Canvas c, String imagePath, Point anchorPositio...
    method checkMark (line 1615) | private void checkMark(String animName, int frameIndex){
    method cleanScreen (line 1645) | public void cleanScreen(Canvas c){
    method drawCanvas (line 1660) | public void drawCanvas(Canvas c, int frameIndex, String animName, bool...
    method drawCanvas (line 1724) | public boolean drawCanvas(Canvas c){
    method angleToRadius (line 1758) | private double angleToRadius(float angle){
    method clearBitmap (line 1763) | public void clearBitmap(){

FILE: android/FlashSupport/app/src/main/java/com/flashanimation/view/FlashSurfaceView.java
  class FlashSurfaceView (line 44) | public class FlashSurfaceView extends SurfaceView implements SurfaceHold...
    method FlashSurfaceView (line 72) | public FlashSurfaceView(Context c, String flashName){
    method FlashSurfaceView (line 76) | public FlashSurfaceView(Context c, String flashName, String flashDir){
    method FlashSurfaceView (line 80) | public FlashSurfaceView(Context c, String flashName, String flashDir, ...
    method FlashSurfaceView (line 91) | public FlashSurfaceView(Context context) {
    method FlashSurfaceView (line 96) | public FlashSurfaceView(Context context, AttributeSet attrs) {
    method FlashSurfaceView (line 102) | public FlashSurfaceView(Context context, AttributeSet attrs, int defSt...
    method initAttrs (line 112) | private void initAttrs(AttributeSet attrs){
    method init (line 132) | private boolean init(){
    method reload (line 174) | public boolean reload(String flashName){
    method reload (line 185) | public boolean reload(String flashName, String flashDir){
    method reload (line 197) | public boolean reload(String flashName, String flashDir, int designDPI){
    method setEventCallback (line 206) | public void setEventCallback(FlashDataParser.IFlashViewEventCallback c...
    method replaceBitmap (line 215) | public void replaceBitmap(String texName, Bitmap bitmap){
    method play (line 227) | public void play(String animName, int loopTimes, int fromIndex, int to...
    method play (line 235) | public void play(String animName, int loopTimes, int fromIndex){
    method play (line 239) | public void play(String animName, int loopTimes){
    method play (line 243) | public void play(){
    method isPlaying (line 250) | public boolean isPlaying(){
    method isStoped (line 257) | public boolean isStoped(){
    method isPaused (line 265) | public boolean isPaused(){
    method stopAt (line 274) | public void stopAt(String animName, int index){
    method setScale (line 290) | public void setScale(float x, float y, boolean isDpiEffect){
    method setScale (line 293) | public void setScale(float x, float y){
    method getLength (line 301) | public int getLength(){
    method stop (line 308) | public void stop(){
    method pause (line 325) | public void pause(){
    method resume (line 332) | public void resume(){
    method surfaceChanged (line 338) | @Override
    method surfaceCreated (line 343) | @Override
    method surfaceDestroyed (line 350) | @Override
    class FlashRunnable (line 360) | private class FlashRunnable implements Runnable{
      method getCurrTime (line 361) | private double getCurrTime(){
      method run (line 364) | @Override
      method update (line 406) | private boolean update(){

FILE: android/FlashSupport/app/src/main/java/com/flashanimation/view/FlashView.java
  class FlashView (line 48) | public class FlashView extends View {
    method FlashView (line 76) | public FlashView(Context c, String flashName){
    method FlashView (line 80) | public FlashView(Context c, String flashName, String flashDir){
    method FlashView (line 84) | public FlashView(Context c, String flashName, String flashDir, int des...
    method FlashView (line 95) | public FlashView(Context context) {
    method FlashView (line 100) | public FlashView(Context context, AttributeSet attrs) {
    method FlashView (line 106) | public FlashView(Context context, AttributeSet attrs, int defStyleAttr) {
    method initAttrs (line 116) | private void initAttrs(AttributeSet attrs){
    method init (line 136) | private boolean init(){
    method reload (line 167) | public boolean reload(String flashName){
    method reload (line 178) | public boolean reload(String flashName, String flashDir){
    method reload (line 190) | public boolean reload(String flashName, String flashDir, int designDPI){
    method setEventCallback (line 199) | public void setEventCallback(FlashDataParser.IFlashViewEventCallback c...
    method replaceBitmap (line 208) | public void replaceBitmap(String texName, Bitmap bitmap){
    method replaceBitmap (line 212) | public void replaceBitmap(Bitmap bitmap){
    method run (line 223) | @Override
    method run (line 234) | @Override
    method play (line 252) | public void play(String animName, int loopTimes, int fromIndex, int to...
    method play (line 262) | public void play(String animName, int loopTimes, int fromIndex) {
    method play (line 266) | public void play(String animName, int loopTimes){
    method play (line 270) | public void play(int loopTimes) {
    method play (line 277) | public void play(){
    method isPlaying (line 283) | public boolean isPlaying(){
    method isStoped (line 290) | public boolean isStoped() {
    method isPaused (line 298) | public boolean isPaused() {
    method stopAtLastIndex (line 302) | public void stopAtLastIndex(){
    method stopAt (line 311) | public void stopAt(String animName, int index){
    method setScale (line 324) | public void setScale(float x, float y, boolean isDpiEffect){
    method setScale (line 327) | public void setScale(float x, float y){
    method getLength (line 335) | public int getLength(){
    method stop (line 342) | public void stop(){
    method pause (line 354) | public void pause(){
    method resume (line 361) | public void resume(){
    method onDraw (line 369) | @Override
    method clearBitmap (line 377) | public void clearBitmap(){

FILE: android/FlashSupport/app/src/test/java/com/xcyo/yoyo/flashsupport/ExampleUnitTest.java
  class ExampleUnitTest (line 10) | public class ExampleUnitTest {
    method addition_isCorrect (line 11) | @Test

FILE: cocos2dx/animationPlayer/Anim.h
  function class (line 17) | class Anim{

FILE: cocos2dx/animationPlayer/AnimKeyFrame.cpp
  function getPerValue (line 29) | float getPerValue(float oldValue, float newValue, float per, bool isSpec...

FILE: cocos2dx/animationPlayer/AnimKeyFrame.h
  type TexInfo (line 16) | struct TexInfo{

FILE: cocos2dx/animationPlayer/AnimLayer.cpp
  function Node (line 150) | Node* windy::AnimLayer::getSpriteByName( const string &name )

FILE: cocos2dx/animationPlayer/AnimLayer.h
  function class (line 18) | class AnimLayer{

FILE: cocos2dx/animationPlayer/AnimNode.cpp
  function string (line 400) | string windy::AnimNode::readName()
  function string (line 578) | string & windy::AnimNode::getCurrAnimName()
  function string (line 583) | string & windy::AnimNode::getFileName()
  function ValueVector (line 629) | const ValueVector & windy::AnimNode::getMarks( string& animName )
  function ValueMap (line 637) | const ValueMap & windy::AnimNode::getFrameNums()

FILE: cocos2dx/animationPlayer/AnimNode.h
  function class (line 15) | class AnimNode: public Node{

FILE: iOS/FlashView/FlashView/FlashViewCommon.h
  type FlashViewFileType (line 28) | typedef enum : NSInteger {
  type FlashViewFileDataType (line 35) | typedef enum : NSInteger {
  type FlashViewUpdateMode (line 42) | typedef enum : NSUInteger {
  type FlashViewLoopTime (line 48) | typedef enum : NSUInteger {
  type FlashViewEvent (line 54) | typedef enum NSUInteger{
  type FlashViewScaleMode (line 63) | typedef enum : NSUInteger {
  type FlashViewRunMode (line 71) | typedef enum : NSUInteger {
  type FlashViewAnimPosMask (line 77) | typedef enum : NSUInteger {
  type FlashViewScreenOrientation (line 90) | typedef enum : NSUInteger {

FILE: iOS/FlashView/FlashView/FlashViewDownloader.h
  function end (line 23) | end

FILE: iOS/FlashView/FlashView/TestFlashViewController.h
  type TestType (line 11) | typedef enum : NSUInteger {

FILE: iOS/FlashView/FlashView/Zip/minizip/crypt.h
  function decrypt_byte (line 35) | static int decrypt_byte(unsigned long* pkeys, const unsigned long* pcrc_...
  function update_keys (line 48) | static int update_keys(unsigned long* pkeys,const unsigned long* pcrc_32...
  function init_keys (line 65) | static void init_keys(const char* passwd,unsigned long* pkeys,const unsi...
  function crypthead (line 90) | static int crypthead(passwd, buf, bufSize, pkeys, pcrc_32_tab, crcForCry...

FILE: iOS/FlashView/FlashView/Zip/minizip/ioapi.c
  function voidpf (line 68) | voidpf ZCALLBACK fopen_file_func (opaque, filename, mode)
  function uLong (line 90) | uLong ZCALLBACK fread_file_func (opaque, stream, buf, size)
  function uLong (line 102) | uLong ZCALLBACK fwrite_file_func (opaque, stream, buf, size)
  function ftell_file_func (line 113) | long ZCALLBACK ftell_file_func (opaque, stream)
  function fseek_file_func (line 122) | long ZCALLBACK fseek_file_func (opaque, stream, offset, origin)
  function fclose_file_func (line 148) | int ZCALLBACK fclose_file_func (opaque, stream)
  function ferror_file_func (line 157) | int ZCALLBACK ferror_file_func (opaque, stream)
  function fill_fopen_filefunc (line 166) | void fill_fopen_filefunc (pzlib_filefunc_def)

FILE: iOS/FlashView/FlashView/Zip/minizip/ioapi.h
  type zlib_filefunc_def (line 46) | typedef struct zlib_filefunc_def_s

FILE: iOS/FlashView/FlashView/Zip/minizip/mztools.c
  function unzRepair (line 30) | extern int ZEXPORT unzRepair(file, fileOut, fileOutTmp, nRecovered, byte...

FILE: iOS/FlashView/FlashView/Zip/minizip/unzip.c
  type unz_file_info_internal (line 94) | typedef struct unz_file_info_internal_s
  type file_in_zip_read_info_s (line 102) | typedef struct
  type unz_s (line 128) | typedef struct
  function local (line 171) | local int unzlocal_getByte(pzlib_filefunc_def,filestream,pi)
  function local (line 201) | local int unzlocal_getShort (pzlib_filefunc_def,filestream,pX)
  function local (line 229) | local int unzlocal_getLong (pzlib_filefunc_def,filestream,pX)
  function local (line 262) | local int strcmpcasenosensitive_internal (fileName1,fileName2)
  function unzStringFileNameCompare (line 305) | extern int ZEXPORT unzStringFileNameCompare (fileName1,fileName2,iCaseSe...
  function local (line 331) | local uLong unzlocal_SearchCentralDir(pzlib_filefunc_def,filestream)
  function unzFile (line 397) | extern unzFile ZEXPORT unzOpen2 (path, pzlib_filefunc_def)
  function unzFile (line 500) | extern unzFile ZEXPORT unzOpen (path)
  function unzClose (line 511) | extern int ZEXPORT unzClose (file)
  function unzGetGlobalInfo (line 532) | extern int ZEXPORT unzGetGlobalInfo (file,pglobal_info)
  function local (line 548) | local void unzlocal_DosDateToTmuDate (ulDosDate, ptm)
  function local (line 577) | local int unzlocal_GetCurrentFileInfoInternal (file,
  function unzGetCurrentFileInfo (line 744) | extern int ZEXPORT unzGetCurrentFileInfo (file,
  function unzGoToFirstFile (line 768) | extern int ZEXPORT unzGoToFirstFile (file)
  function unzGoToNextFile (line 790) | extern int ZEXPORT unzGoToNextFile (file)
  function unzLocateFile (line 824) | extern int ZEXPORT unzLocateFile (file, szFileName, iCaseSensitivity)
  function unzGetFilePos (line 903) | extern int ZEXPORT unzGetFilePos(file, file_pos)
  function unzGoToFilePos (line 921) | extern int ZEXPORT unzGoToFilePos(file, file_pos)
  function local (line 957) | local int unzlocal_CheckCurrentFileCoherencyHeader (s,piSizeVar,
  function unzOpenCurrentFile3 (line 1047) | extern int ZEXPORT unzOpenCurrentFile3 (file, method, level, raw, password)
  function unzOpenCurrentFile (line 1192) | extern int ZEXPORT unzOpenCurrentFile (file)
  function unzOpenCurrentFilePassword (line 1198) | extern int ZEXPORT unzOpenCurrentFilePassword (file, password)
  function unzOpenCurrentFile2 (line 1205) | extern int ZEXPORT unzOpenCurrentFile2 (file,method,level,raw)
  function unzReadCurrentFile (line 1224) | extern int ZEXPORT unzReadCurrentFile  (file, buf, len)
  function z_off_t (line 1385) | extern z_off_t ZEXPORT unztell (file)
  function ZEXPORT (line 1405) | extern int ZEXPORT unzeof (file)
  function unzGetLocalExtrafield (line 1438) | extern int ZEXPORT unzGetLocalExtrafield (file,buf,len)
  function unzCloseCurrentFile (line 1489) | extern int ZEXPORT unzCloseCurrentFile (file)
  function unzGetGlobalComment (line 1532) | extern int ZEXPORT unzGetGlobalComment (file, szComment, uSizeBuf)
  function uLong (line 1564) | extern uLong ZEXPORT unzGetOffset (file)
  function unzSetOffset (line 1580) | extern int ZEXPORT unzSetOffset (file, pos)

FILE: iOS/FlashView/FlashView/Zip/minizip/unzip.h
  type unzFile__ (line 63) | typedef struct TagunzFile__ { int unused; } unzFile__;
  type unzFile__ (line 64) | typedef unzFile__ *unzFile;
  type voidp (line 66) | typedef voidp unzFile;
  type tm_unz (line 80) | typedef struct tm_unz_s
  type unz_global_info (line 92) | typedef struct unz_global_info_s
  type unz_file_info (line 101) | typedef struct unz_file_info_s
  type unz_file_pos (line 210) | typedef struct unz_file_pos_s

FILE: iOS/FlashView/FlashView/Zip/minizip/zip.c
  type linkedlist_datablock_internal (line 97) | typedef struct linkedlist_datablock_internal_s
  type linkedlist_data (line 106) | typedef struct linkedlist_data_s
  type curfile_info (line 113) | typedef struct
  type zip_internal (line 138) | typedef struct
  function local (line 161) | local linkedlist_datablock_internal* allocate_new_datablock()
  function local (line 175) | local void free_datablock(ldi)
  function local (line 186) | local void init_linkedlist(ll)
  function local (line 192) | local void free_linkedlist(ll)
  function local (line 200) | local int add_data_in_datablock(ll,buf,len)
  function local (line 266) | local int ziplocal_putValue (pzlib_filefunc_def, filestream, x, nbByte)
  function local (line 294) | local void ziplocal_putValue_inmemory (dest, x, nbByte)
  function local (line 318) | local uLong ziplocal_TmzDateToDosDate(ptm,dosDate)
  function local (line 340) | local int ziplocal_getByte(pzlib_filefunc_def,filestream,pi)
  function local (line 370) | local int ziplocal_getShort (pzlib_filefunc_def,filestream,pX)
  function local (line 398) | local int ziplocal_getLong (pzlib_filefunc_def,filestream,pX)
  function local (line 440) | local uLong ziplocal_SearchCentralDir(pzlib_filefunc_def,filestream)
  function zipFile (line 499) | extern zipFile ZEXPORT zipOpen2 (pathname, append, globalcomment, pzlib_...
  function zipFile (line 683) | extern zipFile ZEXPORT zipOpen (pathname, append)
  function zipOpenNewFileInZip3 (line 690) | extern int ZEXPORT zipOpenNewFileInZip3 (file, filename, zipfi,
  function zipOpenNewFileInZip2 (line 899) | extern int ZEXPORT zipOpenNewFileInZip2(file, filename, zipfi,
  function zipOpenNewFileInZip (line 923) | extern int ZEXPORT zipOpenNewFileInZip (file, filename, zipfi,
  function local (line 944) | local int zipFlushWriteBuffer(zi)
  function zipWriteInFileInZip (line 966) | extern int ZEXPORT zipWriteInFileInZip (file, buf, len)
  function zipCloseFileInZipRaw (line 1031) | extern int ZEXPORT zipCloseFileInZipRaw (file, uncompressed_size, crc32)
  function zipCloseFileInZip (line 1127) | extern int ZEXPORT zipCloseFileInZip (file)
  function zipClose (line 1133) | extern int ZEXPORT zipClose (file, global_comment)

FILE: iOS/FlashView/FlashView/Zip/minizip/zip.h
  type zipFile__ (line 64) | typedef struct TagzipFile__ { int unused; } zipFile__;
  type zipFile__ (line 65) | typedef zipFile__ *zipFile;
  type voidp (line 67) | typedef voidp zipFile;
  type tm_zip (line 87) | typedef struct tm_zip_s
  type zip_fileinfo (line 97) | typedef struct

FILE: tools/JsonToBin.py
  function toBinBool (line 12) | def toBinBool(data):
  function toBinUShort (line 15) | def toBinUShort(data):
  function toBinStr (line 18) | def toBinStr(data):
  function toBinFloat (line 24) | def toBinFloat(data):
  function toBinUChar (line 27) | def toBinUChar(data):
  function flaJsonToBin (line 30) | def flaJsonToBin(filePath,outputFilePath):
Condensed preview — 99 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (1,951K chars).
[
  {
    "path": ".gitignore",
    "chars": 682,
    "preview": "# common ignore files\n.DS_Store\n\n#######for android\n\n# Built application files\n*.apk\n*.ap_\n \n# Files for the Dalvik VM\n*"
  },
  {
    "path": "README.md",
    "chars": 7081,
    "preview": "\n在我的博客中,有详细的项目介绍和使用方法(这里的不完整),欢迎点击:\n\n- [项目介绍](http://blog.csdn.net/hard_man/article/details/51222423)。\n\n- [项目使用方法](http:"
  },
  {
    "path": "android/FlashSupport/.gitignore",
    "chars": 97,
    "preview": "*.iml\n.gradle\n/local.properties\n/.idea/workspace.xml\n/.idea/libraries\n.DS_Store\n/build\n/captures\n"
  },
  {
    "path": "android/FlashSupport/.idea/.name",
    "chars": 12,
    "preview": "FlashSupport"
  },
  {
    "path": "android/FlashSupport/.idea/compiler.xml",
    "chars": 686,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project version=\"4\">\n  <component name=\"CompilerConfiguration\">\n    <resourceExt"
  },
  {
    "path": "android/FlashSupport/.idea/copyright/profiles_settings.xml",
    "chars": 74,
    "preview": "<component name=\"CopyrightManager\">\n  <settings default=\"\" />\n</component>"
  },
  {
    "path": "android/FlashSupport/.idea/gradle.xml",
    "chars": 684,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project version=\"4\">\n  <component name=\"GradleSettings\">\n    <option name=\"linke"
  },
  {
    "path": "android/FlashSupport/.idea/misc.xml",
    "chars": 2226,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project version=\"4\">\n  <component name=\"EntryPointsManager\">\n    <entry_points v"
  },
  {
    "path": "android/FlashSupport/.idea/modules.xml",
    "chars": 361,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project version=\"4\">\n  <component name=\"ProjectModuleManager\">\n    <modules>\n   "
  },
  {
    "path": "android/FlashSupport/.idea/runConfigurations.xml",
    "chars": 564,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project version=\"4\">\n  <component name=\"RunConfigurationProducerService\">\n    <o"
  },
  {
    "path": "android/FlashSupport/.idea/vcs.xml",
    "chars": 164,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project version=\"4\">\n  <component name=\"VcsDirectoryMappings\">\n    <mapping dire"
  },
  {
    "path": "android/FlashSupport/app/.gitignore",
    "chars": 7,
    "preview": "/build\n"
  },
  {
    "path": "android/FlashSupport/app/build.gradle",
    "chars": 627,
    "preview": "apply plugin: 'com.android.application'\n\nandroid {\n    compileSdkVersion 23\n    buildToolsVersion \"23.0.2\"\n\n    defaultC"
  },
  {
    "path": "android/FlashSupport/app/proguard-rules.pro",
    "chars": 668,
    "preview": "# Add project specific ProGuard rules here.\n# By default, the flags in this file are appended to flags specified\n# in /U"
  },
  {
    "path": "android/FlashSupport/app/src/main/AndroidManifest.xml",
    "chars": 880,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    package="
  },
  {
    "path": "android/FlashSupport/app/src/main/assets/flashAnims/bieshu.flajson",
    "chars": 8904,
    "preview": "{\"name\":\"bieshu\",\"frameRate\":24,\"anims\":[{\"animName\":\"bieshu\",\"layerNum\":8,\"frameMaxNum\":73,\"layers\":[{\"frames\":[{\"isTwe"
  },
  {
    "path": "android/FlashSupport/app/src/main/assets/flashAnims/callTextAnim.flajson",
    "chars": 70550,
    "preview": "{\"name\":\"callTextAnim\",\"frameRate\":30,\"anims\":[{\"animName\":\"arriving1\",\"layerNum\":8,\"frameMaxNum\":17,\"layers\":[{\"frames\""
  },
  {
    "path": "android/FlashSupport/app/src/main/assets/flashAnims/heiniao.flajson1",
    "chars": 593409,
    "preview": "{\"name\":\"heiniao\",\"frameRate\":30,\"anims\":[{\"animName\":\"atk\",\"layerNum\":20,\"frameMaxNum\":48,\"layers\":[{\"frames\":[{\"isTwee"
  },
  {
    "path": "android/FlashSupport/app/src/main/assets/flashAnims/laba.flajson",
    "chars": 7732,
    "preview": "{\"name\":\"laba\",\"frameRate\":30,\"anims\":[{\"animName\":\"laba\",\"layerNum\":4,\"frameMaxNum\":24,\"layers\":[{\"frames\":[{\"isTween\":"
  },
  {
    "path": "android/FlashSupport/app/src/main/assets/flashAnims/test.flajson",
    "chars": 6782,
    "preview": "{\"name\":\"test\",\"frameRate\":24,\"anims\":[{\"animName\":\"newAnim\",\"layerNum\":1,\"frameMaxNum\":10,\"layers\":[{\"frames\":[{\"isTwee"
  },
  {
    "path": "android/FlashSupport/app/src/main/assets/flashAnims/testDB.flajson",
    "chars": 6669,
    "preview": "{\"name\":\"testDB\",\"frameRate\":24,\"anims\":[{\"animName\":\"applanbo\",\"layerNum\":2,\"frameMaxNum\":30,\"layers\":[{\"frames\":[{\"isT"
  },
  {
    "path": "android/FlashSupport/app/src/main/java/com/flashanimation/MainActivity.java",
    "chars": 1481,
    "preview": "/*\ncopyright 2016 wanghongyu.\nThe project page:https://github.com/hardman/FlashAnimationToMobile\nMy blog page: http://bl"
  },
  {
    "path": "android/FlashSupport/app/src/main/java/com/flashanimation/view/FlashDataParser.java",
    "chars": 54831,
    "preview": "/*\ncopyright 2016 wanghongyu.\nThe project page:https://github.com/hardman/FlashAnimationToMobile\nMy blog page: http://bl"
  },
  {
    "path": "android/FlashSupport/app/src/main/java/com/flashanimation/view/FlashSurfaceView.java",
    "chars": 12923,
    "preview": "/*\ncopyright 2016 wanghongyu.\nThe project page:https://github.com/hardman/FlashAnimationToMobile\nMy blog page: http://bl"
  },
  {
    "path": "android/FlashSupport/app/src/main/java/com/flashanimation/view/FlashView.java",
    "chars": 10729,
    "preview": "/*\ncopyright 2016 wanghongyu.\nThe project page:https://github.com/hardman/FlashAnimationToMobile\nMy blog page: http://bl"
  },
  {
    "path": "android/FlashSupport/app/src/main/res/layout/activity_main.xml",
    "chars": 1009,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<RelativeLayout xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    xm"
  },
  {
    "path": "android/FlashSupport/app/src/main/res/values/colors.xml",
    "chars": 208,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <color name=\"colorPrimary\">#3F51B5</color>\n    <color name=\"color"
  },
  {
    "path": "android/FlashSupport/app/src/main/res/values/dimens.xml",
    "chars": 211,
    "preview": "<resources>\n    <!-- Default screen margins, per the Android Design guidelines. -->\n    <dimen name=\"activity_horizontal"
  },
  {
    "path": "android/FlashSupport/app/src/main/res/values/flashview_attr.xml",
    "chars": 1014,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!--\ncopyright 2016 wanghongyu.\nThe project page:https://github.com/hardman/Flash"
  },
  {
    "path": "android/FlashSupport/app/src/main/res/values/strings.xml",
    "chars": 75,
    "preview": "<resources>\n    <string name=\"app_name\">FlashSupport</string>\n</resources>\n"
  },
  {
    "path": "android/FlashSupport/app/src/main/res/values/styles.xml",
    "chars": 383,
    "preview": "<resources>\n\n    <!-- Base application theme. -->\n    <style name=\"AppTheme\" parent=\"Theme.AppCompat.Light.DarkActionBar"
  },
  {
    "path": "android/FlashSupport/app/src/main/res/values-w820dp/dimens.xml",
    "chars": 358,
    "preview": "<resources>\n    <!-- Example customization of dimensions originally defined in res/values/dimens.xml\n         (such as s"
  },
  {
    "path": "android/FlashSupport/app/src/test/java/com/xcyo/yoyo/flashsupport/ExampleUnitTest.java",
    "chars": 319,
    "preview": "package com.xcyo.yoyo.flashsupport;\n\nimport org.junit.Test;\n\nimport static org.junit.Assert.*;\n\n/**\n * To work on unit t"
  },
  {
    "path": "android/FlashSupport/build.gradle",
    "chars": 498,
    "preview": "// Top-level build file where you can add configuration options common to all sub-projects/modules.\n\nbuildscript {\n    r"
  },
  {
    "path": "android/FlashSupport/gradle/wrapper/gradle-wrapper.properties",
    "chars": 230,
    "preview": "#Wed Oct 21 11:34:03 PDT 2015\ndistributionBase=GRADLE_USER_HOME\ndistributionPath=wrapper/dists\nzipStoreBase=GRADLE_USER_"
  },
  {
    "path": "android/FlashSupport/gradle.properties",
    "chars": 855,
    "preview": "# Project-wide Gradle settings.\n\n# IDE (e.g. Android Studio) users:\n# Gradle settings configured through the IDE *will o"
  },
  {
    "path": "android/FlashSupport/gradlew",
    "chars": 4971,
    "preview": "#!/usr/bin/env bash\n\n##############################################################################\n##\n##  Gradle start "
  },
  {
    "path": "android/FlashSupport/gradlew.bat",
    "chars": 2404,
    "preview": "@if \"%DEBUG%\" == \"\" @echo off\r\n@rem ##########################################################################\r\n@rem\r\n@r"
  },
  {
    "path": "android/FlashSupport/settings.gradle",
    "chars": 15,
    "preview": "include ':app'\n"
  },
  {
    "path": "cocos2dx/animationPlayer/Anim.cpp",
    "chars": 1596,
    "preview": "/*\ncopyright 2016 wanghongyu. \nThe project page:https://github.com/hardman/FlashAnimationToMobile\nMy blog page: http://b"
  },
  {
    "path": "cocos2dx/animationPlayer/Anim.h",
    "chars": 865,
    "preview": "/*\ncopyright 2016 wanghongyu. \nThe project page:https://github.com/hardman/FlashAnimationToMobile\nMy blog page: http://b"
  },
  {
    "path": "cocos2dx/animationPlayer/AnimKeyFrame.cpp",
    "chars": 6996,
    "preview": "/*\ncopyright 2016 wanghongyu. \nThe project page:https://github.com/hardman/FlashAnimationToMobile\nMy blog page: http://b"
  },
  {
    "path": "cocos2dx/animationPlayer/AnimKeyFrame.h",
    "chars": 1520,
    "preview": "/*\ncopyright 2016 wanghongyu. \nThe project page:https://github.com/hardman/FlashAnimationToMobile\nMy blog page: http://b"
  },
  {
    "path": "cocos2dx/animationPlayer/AnimLayer.cpp",
    "chars": 4743,
    "preview": "/*\ncopyright 2016 wanghongyu. \nThe project page:https://github.com/hardman/FlashAnimationToMobile\nMy blog page: http://b"
  },
  {
    "path": "cocos2dx/animationPlayer/AnimLayer.h",
    "chars": 1408,
    "preview": "/*\ncopyright 2016 wanghongyu. \nThe project page:https://github.com/hardman/FlashAnimationToMobile\nMy blog page: http://b"
  },
  {
    "path": "cocos2dx/animationPlayer/AnimNode.cpp",
    "chars": 16407,
    "preview": "/*\ncopyright 2016 wanghongyu. \nThe project page:https://github.com/hardman/FlashAnimationToMobile\nMy blog page: http://b"
  },
  {
    "path": "cocos2dx/animationPlayer/AnimNode.h",
    "chars": 3449,
    "preview": "/*\ncopyright 2016 wanghongyu. \nThe project page:https://github.com/hardman/FlashAnimationToMobile\nMy blog page: http://b"
  },
  {
    "path": "cocos2dx/animationPlayer/windy.h",
    "chars": 407,
    "preview": "/*\ncopyright 2016 wanghongyu. \nThe project page:https://github.com/hardman/FlashAnimationToMobile\nMy blog page: http://b"
  },
  {
    "path": "iOS/FlashView/FlashView/AppDelegate.h",
    "chars": 267,
    "preview": "//\n//  AppDelegate.h\n//  FlashView\n//\n//  Created by kaso on 14/12/15.\n//  Copyright © 2015年 kaso. All rights reserved.\n"
  },
  {
    "path": "iOS/FlashView/FlashView/AppDelegate.m",
    "chars": 2021,
    "preview": "//\n//  AppDelegate.m\n//  FlashView\n//\n//  Created by kaso on 14/12/15.\n//  Copyright © 2015年 kaso. All rights reserved.\n"
  },
  {
    "path": "iOS/FlashView/FlashView/Assets.xcassets/AppIcon.appiconset/Contents.json",
    "chars": 1163,
    "preview": "{\n  \"images\" : [\n    {\n      \"idiom\" : \"iphone\",\n      \"size\" : \"29x29\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\""
  },
  {
    "path": "iOS/FlashView/FlashView/Base.lproj/LaunchScreen.storyboard",
    "chars": 2572,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>\n<document type=\"com.apple.InterfaceBuilder3.CocoaTouch.Storyboard"
  },
  {
    "path": "iOS/FlashView/FlashView/Base.lproj/Main.storyboard",
    "chars": 2676,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>\n<document type=\"com.apple.InterfaceBuilder3.CocoaTouch.Storyboard"
  },
  {
    "path": "iOS/FlashView/FlashView/FlashView.h",
    "chars": 2741,
    "preview": "/*\n copyright 2016 wanghongyu. \n The project page:https://github.com/hardman/FlashAnimationToMobile\n My blog page: http:"
  },
  {
    "path": "iOS/FlashView/FlashView/FlashView.m",
    "chars": 37838,
    "preview": "/*\n copyright 2016 wanghongyu. \n The project page:https://github.com/hardman/FlashAnimationToMobile\n My blog page: http:"
  },
  {
    "path": "iOS/FlashView/FlashView/FlashViewCommon.h",
    "chars": 3028,
    "preview": "/*\n copyright 2016 wanghongyu.\n The project page:https://github.com/hardman/FlashAnimationToMobile\n My blog page: http:/"
  },
  {
    "path": "iOS/FlashView/FlashView/FlashViewDataReader.h",
    "chars": 400,
    "preview": "/*\n copyright 2016 wanghongyu.\n The project page:https://github.com/hardman/FlashAnimationToMobile\n My blog page: http:/"
  },
  {
    "path": "iOS/FlashView/FlashView/FlashViewDataReader.m",
    "chars": 1062,
    "preview": "/*\n copyright 2016 wanghongyu.\n The project page:https://github.com/hardman/FlashAnimationToMobile\n My blog page: http:/"
  },
  {
    "path": "iOS/FlashView/FlashView/FlashViewDownloader.h",
    "chars": 2225,
    "preview": "/*\n copyright 2016 wanghongyu.\n The project page:https://github.com/hardman/FlashAnimationToMobile\n My blog page: http:/"
  },
  {
    "path": "iOS/FlashView/FlashView/FlashViewDownloader.m",
    "chars": 9222,
    "preview": "/*\n copyright 2016 wanghongyu.\n The project page:https://github.com/hardman/FlashAnimationToMobile\n My blog page: http:/"
  },
  {
    "path": "iOS/FlashView/FlashView/FlashViewNew.h",
    "chars": 3454,
    "preview": "/*\n copyright 2016 wanghongyu.\n The project page:https://github.com/hardman/FlashAnimationToMobile\n My blog page: http:/"
  },
  {
    "path": "iOS/FlashView/FlashView/FlashViewNew.m",
    "chars": 30031,
    "preview": "/*\n copyright 2016 wanghongyu.\n The project page:https://github.com/hardman/FlashAnimationToMobile\n My blog page: http:/"
  },
  {
    "path": "iOS/FlashView/FlashView/FlashViewNode.h",
    "chars": 3048,
    "preview": "/*\n copyright 2016 wanghongyu.\n The project page:https://github.com/hardman/FlashAnimationToMobile\n My blog page: http:/"
  },
  {
    "path": "iOS/FlashView/FlashView/FlashViewNode.m",
    "chars": 17040,
    "preview": "/*\n copyright 2016 wanghongyu.\n The project page:https://github.com/hardman/FlashAnimationToMobile\n My blog page: http:/"
  },
  {
    "path": "iOS/FlashView/FlashView/FlashViewTool.h",
    "chars": 988,
    "preview": "/*\n copyright 2016 wanghongyu.\n The project page:https://github.com/hardman/FlashAnimationToMobile\n My blog page: http:/"
  },
  {
    "path": "iOS/FlashView/FlashView/FlashViewTool.m",
    "chars": 1711,
    "preview": "/*\n copyright 2016 wanghongyu.\n The project page:https://github.com/hardman/FlashAnimationToMobile\n My blog page: http:/"
  },
  {
    "path": "iOS/FlashView/FlashView/Info.plist",
    "chars": 1593,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
  },
  {
    "path": "iOS/FlashView/FlashView/Resources/flashAnims/bieshu.flajson",
    "chars": 8904,
    "preview": "{\"name\":\"bieshu\",\"frameRate\":24,\"anims\":[{\"animName\":\"bieshu\",\"layerNum\":8,\"frameMaxNum\":73,\"layers\":[{\"frames\":[{\"isTwe"
  },
  {
    "path": "iOS/FlashView/FlashView/Resources/flashAnims/laba.flajson",
    "chars": 8662,
    "preview": "{\"name\":\"laba\",\"frameRate\":30,\"anims\":[{\"animName\":\"laba\",\"layerNum\":4,\"frameMaxNum\":24,\"layers\":[{\"frames\":[{\"isTween\":"
  },
  {
    "path": "iOS/FlashView/FlashView/Resources/flashAnims/mutiFlowerDrop.flajson",
    "chars": 254431,
    "preview": "{\"textures\": [\"mutiFlowerDrop_9999_9999.png\"], \"anims\": [{\"layers\": [{\"frames\": [{\"texName\": \"mutiFlowerDrop_9999_9999.p"
  },
  {
    "path": "iOS/FlashView/FlashView/Resources/flashAnims/mutiFlowerRandom.flajson",
    "chars": 254296,
    "preview": "{\"textures\": [\"mutiFlowerRandom_9999_9999.png\"], \"anims\": [{\"layers\": [{\"frames\": [{\"texName\": \"mutiFlowerRandom_9999_99"
  },
  {
    "path": "iOS/FlashView/FlashView/Resources/flashAnims/testFlash.flajson",
    "chars": 645,
    "preview": "{\"name\":\"testFlash\",\"frameRate\":24,\"anims\":[{\"animName\":\"test\",\"layerNum\":1,\"frameMaxNum\":17,\"layers\":[{\"frames\":[{\"isTw"
  },
  {
    "path": "iOS/FlashView/FlashView/TestFlashViewController.h",
    "chars": 363,
    "preview": "//\n//  TestFlashViewController.h\n//  FlashView\n//\n//  Created by kaso on 1/9/16.\n//  Copyright © 2016年 kaso. All rights "
  },
  {
    "path": "iOS/FlashView/FlashView/TestFlashViewController.m",
    "chars": 7960,
    "preview": "//\n//  TestFlashViewController.m\n//  FlashView\n//\n//  Created by kaso on 1/9/16.\n//  Copyright © 2016年 kaso. All rights "
  },
  {
    "path": "iOS/FlashView/FlashView/TestFlashViewDownloadViewController.h",
    "chars": 243,
    "preview": "//\n//  TestFlashViewDownloadViewController.h\n//  FlashView\n//\n//  Created by kaso on 1/9/16.\n//  Copyright © 2016年 kaso."
  },
  {
    "path": "iOS/FlashView/FlashView/TestFlashViewDownloadViewController.m",
    "chars": 5450,
    "preview": "//\n//  TestFlashViewDownloadViewController.m\n//  FlashView\n//\n//  Created by kaso on 1/9/16.\n//  Copyright © 2016年 kaso."
  },
  {
    "path": "iOS/FlashView/FlashView/ViewController.h",
    "chars": 203,
    "preview": "//\n//  ViewController.h\n//  FlashView\n//\n//  Created by kaso on 14/12/15.\n//  Copyright © 2015年 kaso. All rights reserve"
  },
  {
    "path": "iOS/FlashView/FlashView/ViewController.m",
    "chars": 2846,
    "preview": "//\n//  ViewController.m\n//  FlashView\n//\n//  Created by kaso on 14/12/15.\n//  Copyright © 2015年 kaso. All rights reserve"
  },
  {
    "path": "iOS/FlashView/FlashView/Zip/ZipArchive.h",
    "chars": 1111,
    "preview": "//\n//  ZipArchive.h\n//  \n//\n//  Created by aish on 08-9-11.\n//  acsolu@gmail.com\n//  Copyright 2008  Inc. All rights res"
  },
  {
    "path": "iOS/FlashView/FlashView/Zip/ZipArchive.m",
    "chars": 8455,
    "preview": "//\n//  ZipArchive.mm\n//  \n//\n//  Created by aish on 08-9-11.\n//  acsolu@gmail.com\n//  Copyright 2008  Inc. All rights re"
  },
  {
    "path": "iOS/FlashView/FlashView/Zip/minizip/crypt.h",
    "chars": 4844,
    "preview": "/* crypt.h -- base code for crypt/uncrypt ZIPfile\r\n\r\n\r\n   Version 1.01e, February 12th, 2005\r\n\r\n   Copyright (C) 1998-20"
  },
  {
    "path": "iOS/FlashView/FlashView/Zip/minizip/ioapi.c",
    "chars": 3871,
    "preview": "/* ioapi.c -- IO base function header for compress/uncompress .zip\r\n   files using zlib + zip or unzip API\r\n\r\n   Version"
  },
  {
    "path": "iOS/FlashView/FlashView/Zip/minizip/ioapi.h",
    "chars": 2610,
    "preview": "/* ioapi.h -- IO base function header for compress/uncompress .zip\r\n   files using zlib + zip or unzip API\r\n\r\n   Version"
  },
  {
    "path": "iOS/FlashView/FlashView/Zip/minizip/mztools.c",
    "chars": 8266,
    "preview": "/*\r\n  Additional tools for Minizip\r\n  Code: Xavier Roche '2004\r\n  License: Same as ZLIB (www.gzip.org)\r\n*/\r\n\r\n/* Code */"
  },
  {
    "path": "iOS/FlashView/FlashView/Zip/minizip/mztools.h",
    "chars": 712,
    "preview": "/*\r\n  Additional tools for Minizip\r\n  Code: Xavier Roche '2004\r\n  License: Same as ZLIB (www.gzip.org)\r\n*/\r\n\r\n#ifndef _z"
  },
  {
    "path": "iOS/FlashView/FlashView/Zip/minizip/unzip.c",
    "chars": 50890,
    "preview": "/* unzip.c -- IO for uncompress .zip files using zlib\r\n   Version 1.01e, February 12th, 2005\r\n\r\n   Copyright (C) 1998-20"
  },
  {
    "path": "iOS/FlashView/FlashView/Zip/minizip/unzip.h",
    "chars": 13322,
    "preview": "/* unzip.h -- IO for uncompress .zip files using zlib\r\n   Version 1.01e, February 12th, 2005\r\n\r\n   Copyright (C) 1998-20"
  },
  {
    "path": "iOS/FlashView/FlashView/Zip/minizip/zip.c",
    "chars": 38572,
    "preview": "/* zip.c -- IO on .zip files using zlib\r\n   Version 1.01e, February 12th, 2005\r\n\r\n   27 Dec 2004 Rolf Kalbermatter\r\n   M"
  },
  {
    "path": "iOS/FlashView/FlashView/Zip/minizip/zip.h",
    "chars": 9082,
    "preview": "/* zip.h -- IO for compress .zip files using zlib\r\n   Version 1.01e, February 12th, 2005\r\n\r\n   Copyright (C) 1998-2005 G"
  },
  {
    "path": "iOS/FlashView/FlashView/main.m",
    "chars": 324,
    "preview": "//\n//  main.m\n//  FlashView\n//\n//  Created by kaso on 14/12/15.\n//  Copyright © 2015年 kaso. All rights reserved.\n//\n\n#im"
  },
  {
    "path": "iOS/FlashView/FlashView.xcodeproj/project.pbxproj",
    "chars": 32715,
    "preview": "// !$*UTF8*$!\n{\n\tarchiveVersion = 1;\n\tclasses = {\n\t};\n\tobjectVersion = 46;\n\tobjects = {\n\n/* Begin PBXBuildFile section *"
  },
  {
    "path": "iOS/FlashView/FlashView.xcodeproj/project.xcworkspace/contents.xcworkspacedata",
    "chars": 154,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Workspace\n   version = \"1.0\">\n   <FileRef\n      location = \"self:FlashView.xcode"
  },
  {
    "path": "tools/JsonToBin.py",
    "chars": 2636,
    "preview": "#coding=utf-8\n'''\ncopyright 2016 wanghongyu. \nThe project page:https://github.com/hardman/FlashAnimationToMobile\nMy blog"
  },
  {
    "path": "tools/flashScript/1.根据png创建元件.jsfl",
    "chars": 2103,
    "preview": "/*\r\ncopyright 2016 wanghongyu. \r\nThe project page:https://github.com/hardman/FlashAnimationToMobile\r\nMy blog page: http"
  },
  {
    "path": "tools/flashScript/2.修改fla中元素的名字.jsfl",
    "chars": 1776,
    "preview": "/*\r\ncopyright 2016 wanghongyu. \r\nThe project page:https://github.com/hardman/FlashAnimationToMobile\r\nMy blog page: http"
  },
  {
    "path": "tools/flashScript/3.导出动画数据.jsfl",
    "chars": 9466,
    "preview": "/*\r\ncopyright 2016 wanghongyu. \r\nThe project page:https://github.com/hardman/FlashAnimationToMobile\r\nMy blog page: http"
  },
  {
    "path": "tools/flashScript/libs/json2.jsfl",
    "chars": 17569,
    "preview": "/*\n    json2.js\n    2014-02-04\n\n    Public Domain.\n\n    NO WARRANTY EXPRESSED OR IMPLIED. USE AT YOUR OWN RISK.\n\n    See"
  }
]

// ... and 2 more files (download for full content)

About this extraction

This page contains the full source code of the hardman/FlashAnimationToMobile GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 99 files (1.6 MB), approximately 657.9k tokens, and a symbol index with 279 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.

Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.

Copied to clipboard!