isaacscript 2.7.6 → 2.9.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (73) hide show
  1. package/custom-stage/floor-backdrop.anm2 +488 -0
  2. package/custom-stage/none.png +0 -0
  3. package/custom-stage/wall-backdrop.anm2 +2879 -0
  4. package/file-templates/dynamic/mod/content/rooms/00.special rooms.stb +0 -0
  5. package/file-templates/static/.eslintrc.js.template +5 -9
  6. package/file-templates/static/tsconfig.json +11 -1
  7. package/package.json +9 -10
  8. package/schemas/tsconfig-isaacscript-schema.json +20 -0
  9. package/schemas/tsconfig-isaacscript-section-schema.json +105 -0
  10. package/src/{types → classes}/Config.js +1 -0
  11. package/src/classes/Config.js.map +1 -0
  12. package/src/commands/copy/copy.js +7 -3
  13. package/src/commands/copy/copy.js.map +1 -1
  14. package/src/commands/init/createMod.js.map +1 -1
  15. package/src/commands/init/getModsDir.js +1 -1
  16. package/src/commands/init/getModsDir.js.map +1 -1
  17. package/src/commands/init/git.js +4 -0
  18. package/src/commands/init/git.js.map +1 -1
  19. package/src/commands/init/installVSCodeExtensions.js +6 -10
  20. package/src/commands/init/installVSCodeExtensions.js.map +1 -1
  21. package/src/commands/monitor/copyWatcherMod.js.map +1 -1
  22. package/src/commands/monitor/monitor.js +11 -38
  23. package/src/commands/monitor/monitor.js.map +1 -1
  24. package/src/commands/monitor/spawnSaveDatWriter.js.map +1 -1
  25. package/src/commands/monitor/touchWatcherSaveDatFiles.js.map +1 -1
  26. package/src/commands/publish/publish.js +6 -4
  27. package/src/commands/publish/publish.js.map +1 -1
  28. package/src/common.js +62 -0
  29. package/src/common.js.map +1 -0
  30. package/src/configFile.js +6 -16
  31. package/src/configFile.js.map +1 -1
  32. package/src/constants.js +8 -2
  33. package/src/constants.js.map +1 -1
  34. package/src/customStage.js +207 -0
  35. package/src/customStage.js.map +1 -0
  36. package/src/enums/DoorSlot.js +24 -0
  37. package/src/enums/DoorSlot.js.map +1 -0
  38. package/src/enums/DoorSlotFlag.js +37 -0
  39. package/src/enums/DoorSlotFlag.js.map +1 -0
  40. package/src/{types → enums}/PackageManager.js +0 -0
  41. package/src/{types → enums}/PackageManager.js.map +1 -1
  42. package/src/enums/RoomShape.js +47 -0
  43. package/src/enums/RoomShape.js.map +1 -0
  44. package/src/file.js +5 -1
  45. package/src/file.js.map +1 -1
  46. package/src/{types → interfaces}/GitHubCLIHostsYAML.js +0 -0
  47. package/src/interfaces/GitHubCLIHostsYAML.js.map +1 -0
  48. package/src/interfaces/IsaacScriptTSConfig.js +3 -0
  49. package/src/interfaces/IsaacScriptTSConfig.js.map +1 -0
  50. package/src/interfaces/copied/CustomStageLua.js +4 -0
  51. package/src/interfaces/copied/CustomStageLua.js.map +1 -0
  52. package/src/interfaces/copied/JSONRoomsFile.js +4 -0
  53. package/src/interfaces/copied/JSONRoomsFile.js.map +1 -0
  54. package/src/json.js +30 -0
  55. package/src/json.js.map +1 -0
  56. package/src/main.js +5 -5
  57. package/src/main.js.map +1 -1
  58. package/src/objects/doorSlotToDoorSlotFlag.js +17 -0
  59. package/src/objects/doorSlotToDoorSlotFlag.js.map +1 -0
  60. package/src/objects/roomShapeDoorSlotCoordinates.js +113 -0
  61. package/src/objects/roomShapeDoorSlotCoordinates.js.map +1 -0
  62. package/src/packageManager.js +1 -1
  63. package/src/packageManager.js.map +1 -1
  64. package/src/prompt.js +1 -1
  65. package/src/prompt.js.map +1 -1
  66. package/src/tsconfig.js +104 -0
  67. package/src/tsconfig.js.map +1 -0
  68. package/src/utils.js +5 -1
  69. package/src/utils.js.map +1 -1
  70. package/file-templates/dynamic/mod/metadata.vdf +0 -6
  71. package/file-templates/static/.env_template +0 -2
  72. package/src/types/Config.js.map +0 -1
  73. package/src/types/GitHubCLIHostsYAML.js.map +0 -1
@@ -0,0 +1,488 @@
1
+ <AnimatedActor>
2
+ <Info CreatedBy="Unknown" CreatedOn="9/3/2019 9:21:40 PM" Version="8" Fps="30"/>
3
+ <Content>
4
+ <Spritesheets>
5
+ <Spritesheet Path="none.png" Id="0"/>
6
+ <Spritesheet Path="none.png" Id="1"/>
7
+ <Spritesheet Path="none.png" Id="2"/>
8
+ </Spritesheets>
9
+ <Layers>
10
+ <Layer Name="floor1" Id="0" SpritesheetId="0"/>
11
+ <Layer Name="floor2" Id="1" SpritesheetId="0"/>
12
+ <Layer Name="floor3" Id="2" SpritesheetId="0"/>
13
+ <Layer Name="floor4" Id="3" SpritesheetId="0"/>
14
+ <Layer Name="floor5" Id="4" SpritesheetId="0"/>
15
+ <Layer Name="floor6" Id="5" SpritesheetId="0"/>
16
+ <Layer Name="floor7" Id="6" SpritesheetId="0"/>
17
+ <Layer Name="floor8" Id="7" SpritesheetId="0"/>
18
+ <Layer Name="floor9" Id="8" SpritesheetId="0"/>
19
+ <Layer Name="floor10" Id="9" SpritesheetId="0"/>
20
+ <Layer Name="floor11" Id="10" SpritesheetId="0"/>
21
+ <Layer Name="floor12" Id="11" SpritesheetId="0"/>
22
+ <Layer Name="floor13" Id="12" SpritesheetId="0"/>
23
+ <Layer Name="floor14" Id="13" SpritesheetId="0"/>
24
+ <Layer Name="floor15" Id="14" SpritesheetId="0"/>
25
+ <Layer Name="floor16" Id="15" SpritesheetId="0"/>
26
+ <Layer Name="lfloor1" Id="16" SpritesheetId="1"/>
27
+ <Layer Name="lfloor2" Id="17" SpritesheetId="1"/>
28
+ <Layer Name="nfloor1" Id="18" SpritesheetId="2"/>
29
+ <Layer Name="nfloor2" Id="19" SpritesheetId="2"/>
30
+ </Layers>
31
+ <Nulls/>
32
+ <Events/>
33
+ </Content>
34
+ <Animations DefaultAnimation="2x2">
35
+ <Animation Name="2x2" FrameNum="1" Loop="false">
36
+ <RootAnimation>
37
+ <Frame XPosition="0" YPosition="0" XScale="100" YScale="100" Delay="1" Visible="true" RedTint="255" GreenTint="255" BlueTint="255" AlphaTint="255" RedOffset="0" GreenOffset="0" BlueOffset="0" Rotation="0" Interpolated="false"/>
38
+ </RootAnimation>
39
+ <LayerAnimations>
40
+ <LayerAnimation LayerId="0" Visible="true">
41
+ <Frame XPosition="0" YPosition="0" XPivot="0" YPivot="0" XCrop="52" YCrop="52" Width="182" Height="104" XScale="100" YScale="100" Delay="1" Visible="true" RedTint="255" GreenTint="255" BlueTint="255" AlphaTint="255" RedOffset="0" GreenOffset="0" BlueOffset="0" Rotation="0" Interpolated="false"/>
42
+ </LayerAnimation>
43
+ <LayerAnimation LayerId="1" Visible="true">
44
+ <Frame XPosition="364" YPosition="0" XPivot="0" YPivot="0" XCrop="52" YCrop="52" Width="182" Height="104" XScale="-100" YScale="100" Delay="1" Visible="true" RedTint="255" GreenTint="255" BlueTint="255" AlphaTint="255" RedOffset="0" GreenOffset="0" BlueOffset="0" Rotation="0" Interpolated="false"/>
45
+ </LayerAnimation>
46
+ <LayerAnimation LayerId="2" Visible="true">
47
+ <Frame XPosition="520" YPosition="0" XPivot="0" YPivot="0" XCrop="52" YCrop="52" Width="182" Height="104" XScale="-100" YScale="100" Delay="1" Visible="true" RedTint="255" GreenTint="255" BlueTint="255" AlphaTint="255" RedOffset="0" GreenOffset="0" BlueOffset="0" Rotation="0" Interpolated="false"/>
48
+ </LayerAnimation>
49
+ <LayerAnimation LayerId="3" Visible="true">
50
+ <Frame XPosition="494" YPosition="0" XPivot="182" YPivot="0" XCrop="52" YCrop="52" Width="182" Height="104" XScale="-100" YScale="100" Delay="1" Visible="true" RedTint="255" GreenTint="255" BlueTint="255" AlphaTint="255" RedOffset="0" GreenOffset="0" BlueOffset="0" Rotation="0" Interpolated="false"/>
51
+ </LayerAnimation>
52
+ <LayerAnimation LayerId="4" Visible="true">
53
+ <Frame XPosition="0" YPosition="208" XPivot="0" YPivot="0" XCrop="52" YCrop="52" Width="182" Height="104" XScale="100" YScale="-100" Delay="1" Visible="true" RedTint="255" GreenTint="255" BlueTint="255" AlphaTint="255" RedOffset="0" GreenOffset="0" BlueOffset="0" Rotation="0" Interpolated="false"/>
54
+ </LayerAnimation>
55
+ <LayerAnimation LayerId="5" Visible="true">
56
+ <Frame XPosition="364" YPosition="208" XPivot="0" YPivot="0" XCrop="52" YCrop="52" Width="182" Height="104" XScale="-100" YScale="-100" Delay="1" Visible="true" RedTint="255" GreenTint="255" BlueTint="255" AlphaTint="255" RedOffset="0" GreenOffset="0" BlueOffset="0" Rotation="0" Interpolated="false"/>
57
+ </LayerAnimation>
58
+ <LayerAnimation LayerId="6" Visible="true">
59
+ <Frame XPosition="520" YPosition="208" XPivot="0" YPivot="0" XCrop="52" YCrop="52" Width="182" Height="104" XScale="-100" YScale="-100" Delay="1" Visible="true" RedTint="255" GreenTint="255" BlueTint="255" AlphaTint="255" RedOffset="0" GreenOffset="0" BlueOffset="0" Rotation="0" Interpolated="false"/>
60
+ </LayerAnimation>
61
+ <LayerAnimation LayerId="7" Visible="true">
62
+ <Frame XPosition="494" YPosition="208" XPivot="182" YPivot="0" XCrop="52" YCrop="52" Width="182" Height="104" XScale="-100" YScale="-100" Delay="1" Visible="true" RedTint="255" GreenTint="255" BlueTint="255" AlphaTint="255" RedOffset="0" GreenOffset="0" BlueOffset="0" Rotation="0" Interpolated="false"/>
63
+ </LayerAnimation>
64
+ <LayerAnimation LayerId="8" Visible="true">
65
+ <Frame XPosition="0" YPosition="286" XPivot="0" YPivot="0" XCrop="52" YCrop="52" Width="182" Height="104" XScale="100" YScale="-100" Delay="1" Visible="true" RedTint="255" GreenTint="255" BlueTint="255" AlphaTint="255" RedOffset="0" GreenOffset="0" BlueOffset="0" Rotation="0" Interpolated="false"/>
66
+ </LayerAnimation>
67
+ <LayerAnimation LayerId="9" Visible="true">
68
+ <Frame XPosition="364" YPosition="286" XPivot="0" YPivot="0" XCrop="52" YCrop="52" Width="182" Height="104" XScale="-100" YScale="-100" Delay="1" Visible="true" RedTint="255" GreenTint="255" BlueTint="255" AlphaTint="255" RedOffset="0" GreenOffset="0" BlueOffset="0" Rotation="0" Interpolated="false"/>
69
+ </LayerAnimation>
70
+ <LayerAnimation LayerId="10" Visible="true">
71
+ <Frame XPosition="520" YPosition="286" XPivot="0" YPivot="0" XCrop="52" YCrop="52" Width="182" Height="104" XScale="-100" YScale="-100" Delay="1" Visible="true" RedTint="255" GreenTint="255" BlueTint="255" AlphaTint="255" RedOffset="0" GreenOffset="0" BlueOffset="0" Rotation="0" Interpolated="false"/>
72
+ </LayerAnimation>
73
+ <LayerAnimation LayerId="11" Visible="true">
74
+ <Frame XPosition="494" YPosition="286" XPivot="182" YPivot="0" XCrop="52" YCrop="52" Width="182" Height="104" XScale="-100" YScale="-100" Delay="1" Visible="true" RedTint="255" GreenTint="255" BlueTint="255" AlphaTint="255" RedOffset="0" GreenOffset="0" BlueOffset="0" Rotation="0" Interpolated="false"/>
75
+ </LayerAnimation>
76
+ <LayerAnimation LayerId="12" Visible="true">
77
+ <Frame XPosition="0" YPosition="260" XPivot="0" YPivot="104" XCrop="52" YCrop="52" Width="182" Height="104" XScale="100" YScale="-100" Delay="1" Visible="true" RedTint="255" GreenTint="255" BlueTint="255" AlphaTint="255" RedOffset="0" GreenOffset="0" BlueOffset="0" Rotation="0" Interpolated="false"/>
78
+ </LayerAnimation>
79
+ <LayerAnimation LayerId="13" Visible="true">
80
+ <Frame XPosition="364" YPosition="260" XPivot="0" YPivot="104" XCrop="52" YCrop="52" Width="182" Height="104" XScale="-100" YScale="-100" Delay="1" Visible="true" RedTint="255" GreenTint="255" BlueTint="255" AlphaTint="255" RedOffset="0" GreenOffset="0" BlueOffset="0" Rotation="0" Interpolated="false"/>
81
+ </LayerAnimation>
82
+ <LayerAnimation LayerId="14" Visible="true">
83
+ <Frame XPosition="520" YPosition="260" XPivot="0" YPivot="104" XCrop="52" YCrop="52" Width="182" Height="104" XScale="-100" YScale="-100" Delay="1" Visible="true" RedTint="255" GreenTint="255" BlueTint="255" AlphaTint="255" RedOffset="0" GreenOffset="0" BlueOffset="0" Rotation="0" Interpolated="false"/>
84
+ </LayerAnimation>
85
+ <LayerAnimation LayerId="15" Visible="true">
86
+ <Frame XPosition="494" YPosition="260" XPivot="182" YPivot="104" XCrop="52" YCrop="52" Width="182" Height="104" XScale="-100" YScale="-100" Delay="1" Visible="true" RedTint="255" GreenTint="255" BlueTint="255" AlphaTint="255" RedOffset="0" GreenOffset="0" BlueOffset="0" Rotation="0" Interpolated="false"/>
87
+ </LayerAnimation>
88
+ <LayerAnimation LayerId="16" Visible="true"/>
89
+ <LayerAnimation LayerId="17" Visible="true"/>
90
+ <LayerAnimation LayerId="18" Visible="true"/>
91
+ <LayerAnimation LayerId="19" Visible="true"/>
92
+ </LayerAnimations>
93
+ <NullAnimations/>
94
+ <Triggers/>
95
+ </Animation>
96
+ <Animation Name="1x1" FrameNum="1" Loop="false">
97
+ <RootAnimation>
98
+ <Frame XPosition="0" YPosition="0" XScale="100" YScale="100" Delay="1" Visible="true" RedTint="255" GreenTint="255" BlueTint="255" AlphaTint="255" RedOffset="0" GreenOffset="0" BlueOffset="0" Rotation="0" Interpolated="false"/>
99
+ </RootAnimation>
100
+ <LayerAnimations>
101
+ <LayerAnimation LayerId="0" Visible="true">
102
+ <Frame XPosition="0" YPosition="0" XPivot="0" YPivot="0" XCrop="52" YCrop="52" Width="182" Height="104" XScale="100" YScale="100" Delay="1" Visible="true" RedTint="255" GreenTint="255" BlueTint="255" AlphaTint="255" RedOffset="0" GreenOffset="0" BlueOffset="0" Rotation="0" Interpolated="false"/>
103
+ </LayerAnimation>
104
+ <LayerAnimation LayerId="1" Visible="true">
105
+ <Frame XPosition="156" YPosition="0" XPivot="182" YPivot="0" XCrop="52" YCrop="52" Width="182" Height="104" XScale="-100" YScale="100" Delay="1" Visible="true" RedTint="255" GreenTint="255" BlueTint="255" AlphaTint="255" RedOffset="0" GreenOffset="0" BlueOffset="0" Rotation="0" Interpolated="false"/>
106
+ </LayerAnimation>
107
+ <LayerAnimation LayerId="2" Visible="true">
108
+ <Frame XPosition="0" YPosition="78" XPivot="0" YPivot="104" XCrop="52" YCrop="52" Width="182" Height="104" XScale="100" YScale="-100" Delay="1" Visible="true" RedTint="255" GreenTint="255" BlueTint="255" AlphaTint="255" RedOffset="0" GreenOffset="0" BlueOffset="0" Rotation="0" Interpolated="false"/>
109
+ </LayerAnimation>
110
+ <LayerAnimation LayerId="3" Visible="true">
111
+ <Frame XPosition="156" YPosition="78" XPivot="182" YPivot="104" XCrop="52" YCrop="52" Width="182" Height="104" XScale="-100" YScale="-100" Delay="1" Visible="true" RedTint="255" GreenTint="255" BlueTint="255" AlphaTint="255" RedOffset="0" GreenOffset="0" BlueOffset="0" Rotation="0" Interpolated="false"/>
112
+ </LayerAnimation>
113
+ <LayerAnimation LayerId="4" Visible="true"/>
114
+ <LayerAnimation LayerId="5" Visible="true"/>
115
+ <LayerAnimation LayerId="6" Visible="true"/>
116
+ <LayerAnimation LayerId="7" Visible="true"/>
117
+ <LayerAnimation LayerId="8" Visible="true"/>
118
+ <LayerAnimation LayerId="9" Visible="true"/>
119
+ <LayerAnimation LayerId="10" Visible="true"/>
120
+ <LayerAnimation LayerId="11" Visible="true"/>
121
+ <LayerAnimation LayerId="12" Visible="true"/>
122
+ <LayerAnimation LayerId="13" Visible="true"/>
123
+ <LayerAnimation LayerId="14" Visible="true"/>
124
+ <LayerAnimation LayerId="15" Visible="true"/>
125
+ <LayerAnimation LayerId="16" Visible="true"/>
126
+ <LayerAnimation LayerId="17" Visible="true"/>
127
+ <LayerAnimation LayerId="18" Visible="true"/>
128
+ <LayerAnimation LayerId="19" Visible="true"/>
129
+ </LayerAnimations>
130
+ <NullAnimations/>
131
+ <Triggers/>
132
+ </Animation>
133
+ <Animation Name="LBL" FrameNum="1" Loop="false">
134
+ <RootAnimation>
135
+ <Frame XPosition="0" YPosition="0" XScale="100" YScale="100" Delay="1" Visible="true" RedTint="255" GreenTint="255" BlueTint="255" AlphaTint="255" RedOffset="0" GreenOffset="0" BlueOffset="0" Rotation="0" Interpolated="false"/>
136
+ </RootAnimation>
137
+ <LayerAnimations>
138
+ <LayerAnimation LayerId="0" Visible="true"/>
139
+ <LayerAnimation LayerId="1" Visible="true"/>
140
+ <LayerAnimation LayerId="2" Visible="true"/>
141
+ <LayerAnimation LayerId="3" Visible="true"/>
142
+ <LayerAnimation LayerId="4" Visible="true"/>
143
+ <LayerAnimation LayerId="5" Visible="true"/>
144
+ <LayerAnimation LayerId="6" Visible="true"/>
145
+ <LayerAnimation LayerId="7" Visible="true"/>
146
+ <LayerAnimation LayerId="8" Visible="true"/>
147
+ <LayerAnimation LayerId="9" Visible="true"/>
148
+ <LayerAnimation LayerId="10" Visible="true"/>
149
+ <LayerAnimation LayerId="11" Visible="true"/>
150
+ <LayerAnimation LayerId="12" Visible="true"/>
151
+ <LayerAnimation LayerId="13" Visible="true"/>
152
+ <LayerAnimation LayerId="14" Visible="true"/>
153
+ <LayerAnimation LayerId="15" Visible="true"/>
154
+ <LayerAnimation LayerId="16" Visible="true">
155
+ <Frame XPosition="0" YPosition="0" XPivot="0" YPivot="0" XCrop="0" YCrop="0" Width="676" Height="182" XScale="100" YScale="100" Delay="1" Visible="true" RedTint="255" GreenTint="255" BlueTint="255" AlphaTint="255" RedOffset="0" GreenOffset="0" BlueOffset="0" Rotation="0" Interpolated="false"/>
156
+ </LayerAnimation>
157
+ <LayerAnimation LayerId="17" Visible="true">
158
+ <Frame XPosition="338" YPosition="182" XPivot="0" YPivot="0" XCrop="676" YCrop="0" Width="338" Height="182" XScale="100" YScale="100" Delay="1" Visible="true" RedTint="255" GreenTint="255" BlueTint="255" AlphaTint="255" RedOffset="0" GreenOffset="0" BlueOffset="0" Rotation="0" Interpolated="false"/>
159
+ </LayerAnimation>
160
+ <LayerAnimation LayerId="18" Visible="true"/>
161
+ <LayerAnimation LayerId="19" Visible="true"/>
162
+ </LayerAnimations>
163
+ <NullAnimations/>
164
+ <Triggers/>
165
+ </Animation>
166
+ <Animation Name="LBR" FrameNum="1" Loop="false">
167
+ <RootAnimation>
168
+ <Frame XPosition="0" YPosition="0" XScale="100" YScale="100" Delay="1" Visible="true" RedTint="255" GreenTint="255" BlueTint="255" AlphaTint="255" RedOffset="0" GreenOffset="0" BlueOffset="0" Rotation="0" Interpolated="false"/>
169
+ </RootAnimation>
170
+ <LayerAnimations>
171
+ <LayerAnimation LayerId="0" Visible="true"/>
172
+ <LayerAnimation LayerId="1" Visible="true"/>
173
+ <LayerAnimation LayerId="2" Visible="true"/>
174
+ <LayerAnimation LayerId="3" Visible="true"/>
175
+ <LayerAnimation LayerId="4" Visible="true"/>
176
+ <LayerAnimation LayerId="5" Visible="true"/>
177
+ <LayerAnimation LayerId="6" Visible="true"/>
178
+ <LayerAnimation LayerId="7" Visible="true"/>
179
+ <LayerAnimation LayerId="8" Visible="true"/>
180
+ <LayerAnimation LayerId="9" Visible="true"/>
181
+ <LayerAnimation LayerId="10" Visible="true"/>
182
+ <LayerAnimation LayerId="11" Visible="true"/>
183
+ <LayerAnimation LayerId="12" Visible="true"/>
184
+ <LayerAnimation LayerId="13" Visible="true"/>
185
+ <LayerAnimation LayerId="14" Visible="true"/>
186
+ <LayerAnimation LayerId="15" Visible="true"/>
187
+ <LayerAnimation LayerId="16" Visible="true">
188
+ <Frame XPosition="0" YPosition="0" XPivot="676" YPivot="0" XCrop="0" YCrop="0" Width="676" Height="182" XScale="-100" YScale="100" Delay="1" Visible="true" RedTint="255" GreenTint="255" BlueTint="255" AlphaTint="255" RedOffset="0" GreenOffset="0" BlueOffset="0" Rotation="0" Interpolated="false"/>
189
+ </LayerAnimation>
190
+ <LayerAnimation LayerId="17" Visible="true">
191
+ <Frame XPosition="338" YPosition="182" XPivot="0" YPivot="0" XCrop="676" YCrop="0" Width="338" Height="182" XScale="-100" YScale="100" Delay="1" Visible="true" RedTint="255" GreenTint="255" BlueTint="255" AlphaTint="255" RedOffset="0" GreenOffset="0" BlueOffset="0" Rotation="0" Interpolated="false"/>
192
+ </LayerAnimation>
193
+ <LayerAnimation LayerId="18" Visible="true"/>
194
+ <LayerAnimation LayerId="19" Visible="true"/>
195
+ </LayerAnimations>
196
+ <NullAnimations/>
197
+ <Triggers/>
198
+ </Animation>
199
+ <Animation Name="LTL" FrameNum="1" Loop="false">
200
+ <RootAnimation>
201
+ <Frame XPosition="0" YPosition="0" XScale="100" YScale="100" Delay="1" Visible="true" RedTint="255" GreenTint="255" BlueTint="255" AlphaTint="255" RedOffset="0" GreenOffset="0" BlueOffset="0" Rotation="0" Interpolated="false"/>
202
+ </RootAnimation>
203
+ <LayerAnimations>
204
+ <LayerAnimation LayerId="0" Visible="true"/>
205
+ <LayerAnimation LayerId="1" Visible="true"/>
206
+ <LayerAnimation LayerId="2" Visible="true"/>
207
+ <LayerAnimation LayerId="3" Visible="true"/>
208
+ <LayerAnimation LayerId="4" Visible="true"/>
209
+ <LayerAnimation LayerId="5" Visible="true"/>
210
+ <LayerAnimation LayerId="6" Visible="true"/>
211
+ <LayerAnimation LayerId="7" Visible="true"/>
212
+ <LayerAnimation LayerId="8" Visible="true"/>
213
+ <LayerAnimation LayerId="9" Visible="true"/>
214
+ <LayerAnimation LayerId="10" Visible="true"/>
215
+ <LayerAnimation LayerId="11" Visible="true"/>
216
+ <LayerAnimation LayerId="12" Visible="true"/>
217
+ <LayerAnimation LayerId="13" Visible="true"/>
218
+ <LayerAnimation LayerId="14" Visible="true"/>
219
+ <LayerAnimation LayerId="15" Visible="true"/>
220
+ <LayerAnimation LayerId="16" Visible="true">
221
+ <Frame XPosition="0" YPosition="182" XPivot="0" YPivot="182" XCrop="0" YCrop="0" Width="676" Height="182" XScale="100" YScale="-100" Delay="1" Visible="true" RedTint="255" GreenTint="255" BlueTint="255" AlphaTint="255" RedOffset="0" GreenOffset="0" BlueOffset="0" Rotation="0" Interpolated="false"/>
222
+ </LayerAnimation>
223
+ <LayerAnimation LayerId="17" Visible="true">
224
+ <Frame XPosition="338" YPosition="0" XPivot="0" YPivot="182" XCrop="676" YCrop="0" Width="338" Height="182" XScale="100" YScale="-100" Delay="1" Visible="true" RedTint="255" GreenTint="255" BlueTint="255" AlphaTint="255" RedOffset="0" GreenOffset="0" BlueOffset="0" Rotation="0" Interpolated="false"/>
225
+ </LayerAnimation>
226
+ <LayerAnimation LayerId="18" Visible="true"/>
227
+ <LayerAnimation LayerId="19" Visible="true"/>
228
+ </LayerAnimations>
229
+ <NullAnimations/>
230
+ <Triggers/>
231
+ </Animation>
232
+ <Animation Name="LTR" FrameNum="1" Loop="false">
233
+ <RootAnimation>
234
+ <Frame XPosition="0" YPosition="0" XScale="100" YScale="100" Delay="1" Visible="true" RedTint="255" GreenTint="255" BlueTint="255" AlphaTint="255" RedOffset="0" GreenOffset="0" BlueOffset="0" Rotation="0" Interpolated="false"/>
235
+ </RootAnimation>
236
+ <LayerAnimations>
237
+ <LayerAnimation LayerId="0" Visible="true"/>
238
+ <LayerAnimation LayerId="1" Visible="true"/>
239
+ <LayerAnimation LayerId="2" Visible="true"/>
240
+ <LayerAnimation LayerId="3" Visible="true"/>
241
+ <LayerAnimation LayerId="4" Visible="true"/>
242
+ <LayerAnimation LayerId="5" Visible="true"/>
243
+ <LayerAnimation LayerId="6" Visible="true"/>
244
+ <LayerAnimation LayerId="7" Visible="true"/>
245
+ <LayerAnimation LayerId="8" Visible="true"/>
246
+ <LayerAnimation LayerId="9" Visible="true"/>
247
+ <LayerAnimation LayerId="10" Visible="true"/>
248
+ <LayerAnimation LayerId="11" Visible="true"/>
249
+ <LayerAnimation LayerId="12" Visible="true"/>
250
+ <LayerAnimation LayerId="13" Visible="true"/>
251
+ <LayerAnimation LayerId="14" Visible="true"/>
252
+ <LayerAnimation LayerId="15" Visible="true"/>
253
+ <LayerAnimation LayerId="16" Visible="true">
254
+ <Frame XPosition="0" YPosition="182" XPivot="676" YPivot="182" XCrop="0" YCrop="0" Width="676" Height="182" XScale="-100" YScale="-100" Delay="1" Visible="true" RedTint="255" GreenTint="255" BlueTint="255" AlphaTint="255" RedOffset="0" GreenOffset="0" BlueOffset="0" Rotation="0" Interpolated="false"/>
255
+ </LayerAnimation>
256
+ <LayerAnimation LayerId="17" Visible="true">
257
+ <Frame XPosition="0" YPosition="0" XPivot="338" YPivot="182" XCrop="676" YCrop="0" Width="338" Height="182" XScale="-100" YScale="-100" Delay="1" Visible="true" RedTint="255" GreenTint="255" BlueTint="255" AlphaTint="255" RedOffset="0" GreenOffset="0" BlueOffset="0" Rotation="0" Interpolated="false"/>
258
+ </LayerAnimation>
259
+ <LayerAnimation LayerId="18" Visible="true"/>
260
+ <LayerAnimation LayerId="19" Visible="true"/>
261
+ </LayerAnimations>
262
+ <NullAnimations/>
263
+ <Triggers/>
264
+ </Animation>
265
+ <Animation Name="IH" FrameNum="1" Loop="false">
266
+ <RootAnimation>
267
+ <Frame XPosition="0" YPosition="0" XScale="100" YScale="100" Delay="1" Visible="true" RedTint="255" GreenTint="255" BlueTint="255" AlphaTint="255" RedOffset="0" GreenOffset="0" BlueOffset="0" Rotation="0" Interpolated="false"/>
268
+ </RootAnimation>
269
+ <LayerAnimations>
270
+ <LayerAnimation LayerId="0" Visible="true"/>
271
+ <LayerAnimation LayerId="1" Visible="true"/>
272
+ <LayerAnimation LayerId="2" Visible="true"/>
273
+ <LayerAnimation LayerId="3" Visible="true"/>
274
+ <LayerAnimation LayerId="4" Visible="true"/>
275
+ <LayerAnimation LayerId="5" Visible="true"/>
276
+ <LayerAnimation LayerId="6" Visible="true"/>
277
+ <LayerAnimation LayerId="7" Visible="true"/>
278
+ <LayerAnimation LayerId="8" Visible="true"/>
279
+ <LayerAnimation LayerId="9" Visible="true"/>
280
+ <LayerAnimation LayerId="10" Visible="true"/>
281
+ <LayerAnimation LayerId="11" Visible="true"/>
282
+ <LayerAnimation LayerId="12" Visible="true"/>
283
+ <LayerAnimation LayerId="13" Visible="true"/>
284
+ <LayerAnimation LayerId="14" Visible="true"/>
285
+ <LayerAnimation LayerId="15" Visible="true"/>
286
+ <LayerAnimation LayerId="16" Visible="true"/>
287
+ <LayerAnimation LayerId="17" Visible="true"/>
288
+ <LayerAnimation LayerId="18" Visible="true">
289
+ <Frame XPosition="156" YPosition="0" XPivot="182" YPivot="0" XCrop="0" YCrop="182" Width="312" Height="78" XScale="-100" YScale="100" Delay="1" Visible="true" RedTint="255" GreenTint="255" BlueTint="255" AlphaTint="255" RedOffset="0" GreenOffset="0" BlueOffset="0" Rotation="0" Interpolated="false"/>
290
+ </LayerAnimation>
291
+ <LayerAnimation LayerId="19" Visible="true">
292
+ <Frame XPosition="182" YPosition="0" XPivot="182" YPivot="0" XCrop="0" YCrop="182" Width="312" Height="78" XScale="100" YScale="100" Delay="1" Visible="true" RedTint="255" GreenTint="255" BlueTint="255" AlphaTint="255" RedOffset="0" GreenOffset="0" BlueOffset="0" Rotation="0" Interpolated="false"/>
293
+ </LayerAnimation>
294
+ </LayerAnimations>
295
+ <NullAnimations/>
296
+ <Triggers/>
297
+ </Animation>
298
+ <Animation Name="IIH" FrameNum="1" Loop="false">
299
+ <RootAnimation>
300
+ <Frame XPosition="0" YPosition="0" XScale="100" YScale="100" Delay="1" Visible="true" RedTint="255" GreenTint="255" BlueTint="255" AlphaTint="255" RedOffset="0" GreenOffset="0" BlueOffset="0" Rotation="0" Interpolated="false"/>
301
+ </RootAnimation>
302
+ <LayerAnimations>
303
+ <LayerAnimation LayerId="0" Visible="true"/>
304
+ <LayerAnimation LayerId="1" Visible="true"/>
305
+ <LayerAnimation LayerId="2" Visible="true"/>
306
+ <LayerAnimation LayerId="3" Visible="true"/>
307
+ <LayerAnimation LayerId="4" Visible="true"/>
308
+ <LayerAnimation LayerId="5" Visible="true"/>
309
+ <LayerAnimation LayerId="6" Visible="true"/>
310
+ <LayerAnimation LayerId="7" Visible="true"/>
311
+ <LayerAnimation LayerId="8" Visible="true"/>
312
+ <LayerAnimation LayerId="9" Visible="true"/>
313
+ <LayerAnimation LayerId="10" Visible="true"/>
314
+ <LayerAnimation LayerId="11" Visible="true"/>
315
+ <LayerAnimation LayerId="12" Visible="true"/>
316
+ <LayerAnimation LayerId="13" Visible="true"/>
317
+ <LayerAnimation LayerId="14" Visible="true"/>
318
+ <LayerAnimation LayerId="15" Visible="true"/>
319
+ <LayerAnimation LayerId="16" Visible="true"/>
320
+ <LayerAnimation LayerId="17" Visible="true"/>
321
+ <LayerAnimation LayerId="18" Visible="true">
322
+ <Frame XPosition="0" YPosition="0" XPivot="0" YPivot="0" XCrop="0" YCrop="182" Width="338" Height="78" XScale="100" YScale="100" Delay="1" Visible="true" RedTint="255" GreenTint="255" BlueTint="255" AlphaTint="255" RedOffset="0" GreenOffset="0" BlueOffset="0" Rotation="0" Interpolated="false"/>
323
+ </LayerAnimation>
324
+ <LayerAnimation LayerId="19" Visible="true">
325
+ <Frame XPosition="338" YPosition="0" XPivot="338" YPivot="0" XCrop="0" YCrop="182" Width="338" Height="78" XScale="-100" YScale="100" Delay="1" Visible="true" RedTint="255" GreenTint="255" BlueTint="255" AlphaTint="255" RedOffset="0" GreenOffset="0" BlueOffset="0" Rotation="0" Interpolated="false"/>
326
+ </LayerAnimation>
327
+ </LayerAnimations>
328
+ <NullAnimations/>
329
+ <Triggers/>
330
+ </Animation>
331
+ <Animation Name="IV" FrameNum="1" Loop="false">
332
+ <RootAnimation>
333
+ <Frame XPosition="0" YPosition="0" XScale="100" YScale="100" Delay="1" Visible="true" RedTint="255" GreenTint="255" BlueTint="255" AlphaTint="255" RedOffset="0" GreenOffset="0" BlueOffset="0" Rotation="0" Interpolated="false"/>
334
+ </RootAnimation>
335
+ <LayerAnimations>
336
+ <LayerAnimation LayerId="0" Visible="true"/>
337
+ <LayerAnimation LayerId="1" Visible="true"/>
338
+ <LayerAnimation LayerId="2" Visible="true"/>
339
+ <LayerAnimation LayerId="3" Visible="true"/>
340
+ <LayerAnimation LayerId="4" Visible="true"/>
341
+ <LayerAnimation LayerId="5" Visible="true"/>
342
+ <LayerAnimation LayerId="6" Visible="true"/>
343
+ <LayerAnimation LayerId="7" Visible="true"/>
344
+ <LayerAnimation LayerId="8" Visible="true"/>
345
+ <LayerAnimation LayerId="9" Visible="true"/>
346
+ <LayerAnimation LayerId="10" Visible="true"/>
347
+ <LayerAnimation LayerId="11" Visible="true"/>
348
+ <LayerAnimation LayerId="12" Visible="true"/>
349
+ <LayerAnimation LayerId="13" Visible="true"/>
350
+ <LayerAnimation LayerId="14" Visible="true"/>
351
+ <LayerAnimation LayerId="15" Visible="true"/>
352
+ <LayerAnimation LayerId="16" Visible="true"/>
353
+ <LayerAnimation LayerId="17" Visible="true"/>
354
+ <LayerAnimation LayerId="18" Visible="true">
355
+ <Frame XPosition="0" YPosition="78" XPivot="0" YPivot="104" XCrop="0" YCrop="0" Width="130" Height="156" XScale="100" YScale="-100" Delay="1" Visible="true" RedTint="255" GreenTint="255" BlueTint="255" AlphaTint="255" RedOffset="0" GreenOffset="0" BlueOffset="0" Rotation="0" Interpolated="false"/>
356
+ </LayerAnimation>
357
+ <LayerAnimation LayerId="19" Visible="true">
358
+ <Frame XPosition="0" YPosition="0" XPivot="0" YPivot="0" XCrop="0" YCrop="0" Width="130" Height="156" XScale="100" YScale="100" Delay="1" Visible="true" RedTint="255" GreenTint="255" BlueTint="255" AlphaTint="255" RedOffset="0" GreenOffset="0" BlueOffset="0" Rotation="0" Interpolated="false"/>
359
+ </LayerAnimation>
360
+ </LayerAnimations>
361
+ <NullAnimations/>
362
+ <Triggers/>
363
+ </Animation>
364
+ <Animation Name="IIV" FrameNum="1" Loop="false">
365
+ <RootAnimation>
366
+ <Frame XPosition="0" YPosition="0" XScale="100" YScale="100" Delay="1" Visible="true" RedTint="255" GreenTint="255" BlueTint="255" AlphaTint="255" RedOffset="0" GreenOffset="0" BlueOffset="0" Rotation="0" Interpolated="false"/>
367
+ </RootAnimation>
368
+ <LayerAnimations>
369
+ <LayerAnimation LayerId="0" Visible="true"/>
370
+ <LayerAnimation LayerId="1" Visible="true"/>
371
+ <LayerAnimation LayerId="2" Visible="true"/>
372
+ <LayerAnimation LayerId="3" Visible="true"/>
373
+ <LayerAnimation LayerId="4" Visible="true"/>
374
+ <LayerAnimation LayerId="5" Visible="true"/>
375
+ <LayerAnimation LayerId="6" Visible="true"/>
376
+ <LayerAnimation LayerId="7" Visible="true"/>
377
+ <LayerAnimation LayerId="8" Visible="true"/>
378
+ <LayerAnimation LayerId="9" Visible="true"/>
379
+ <LayerAnimation LayerId="10" Visible="true"/>
380
+ <LayerAnimation LayerId="11" Visible="true"/>
381
+ <LayerAnimation LayerId="12" Visible="true"/>
382
+ <LayerAnimation LayerId="13" Visible="true"/>
383
+ <LayerAnimation LayerId="14" Visible="true"/>
384
+ <LayerAnimation LayerId="15" Visible="true"/>
385
+ <LayerAnimation LayerId="16" Visible="true"/>
386
+ <LayerAnimation LayerId="17" Visible="true"/>
387
+ <LayerAnimation LayerId="18" Visible="true">
388
+ <Frame XPosition="0" YPosition="0" XPivot="0" YPivot="0" XCrop="0" YCrop="0" Width="130" Height="182" XScale="100" YScale="100" Delay="1" Visible="true" RedTint="255" GreenTint="255" BlueTint="255" AlphaTint="255" RedOffset="0" GreenOffset="0" BlueOffset="0" Rotation="0" Interpolated="false"/>
389
+ </LayerAnimation>
390
+ <LayerAnimation LayerId="19" Visible="true">
391
+ <Frame XPosition="0" YPosition="182" XPivot="0" YPivot="182" XCrop="0" YCrop="0" Width="130" Height="182" XScale="100" YScale="-100" Delay="1" Visible="true" RedTint="255" GreenTint="255" BlueTint="255" AlphaTint="255" RedOffset="0" GreenOffset="0" BlueOffset="0" Rotation="0" Interpolated="false"/>
392
+ </LayerAnimation>
393
+ </LayerAnimations>
394
+ <NullAnimations/>
395
+ <Triggers/>
396
+ </Animation>
397
+ <Animation Name="2x1" FrameNum="1" Loop="false">
398
+ <RootAnimation>
399
+ <Frame XPosition="0" YPosition="0" XScale="100" YScale="100" Delay="1" Visible="true" RedTint="255" GreenTint="255" BlueTint="255" AlphaTint="255" RedOffset="0" GreenOffset="0" BlueOffset="0" Rotation="0" Interpolated="false"/>
400
+ </RootAnimation>
401
+ <LayerAnimations>
402
+ <LayerAnimation LayerId="0" Visible="true">
403
+ <Frame XPosition="0" YPosition="0" XPivot="0" YPivot="0" XCrop="52" YCrop="52" Width="182" Height="104" XScale="100" YScale="100" Delay="1" Visible="true" RedTint="255" GreenTint="255" BlueTint="255" AlphaTint="255" RedOffset="0" GreenOffset="0" BlueOffset="0" Rotation="0" Interpolated="false"/>
404
+ </LayerAnimation>
405
+ <LayerAnimation LayerId="1" Visible="true">
406
+ <Frame XPosition="364" YPosition="0" XPivot="0" YPivot="0" XCrop="52" YCrop="52" Width="182" Height="104" XScale="-100" YScale="100" Delay="1" Visible="true" RedTint="255" GreenTint="255" BlueTint="255" AlphaTint="255" RedOffset="0" GreenOffset="0" BlueOffset="0" Rotation="0" Interpolated="false"/>
407
+ </LayerAnimation>
408
+ <LayerAnimation LayerId="2" Visible="true">
409
+ <Frame XPosition="520" YPosition="0" XPivot="0" YPivot="0" XCrop="52" YCrop="52" Width="182" Height="104" XScale="-100" YScale="100" Delay="1" Visible="true" RedTint="255" GreenTint="255" BlueTint="255" AlphaTint="255" RedOffset="0" GreenOffset="0" BlueOffset="0" Rotation="0" Interpolated="false"/>
410
+ </LayerAnimation>
411
+ <LayerAnimation LayerId="3" Visible="true">
412
+ <Frame XPosition="494" YPosition="0" XPivot="182" YPivot="0" XCrop="52" YCrop="52" Width="182" Height="104" XScale="-100" YScale="100" Delay="1" Visible="true" RedTint="255" GreenTint="255" BlueTint="255" AlphaTint="255" RedOffset="0" GreenOffset="0" BlueOffset="0" Rotation="0" Interpolated="false"/>
413
+ </LayerAnimation>
414
+ <LayerAnimation LayerId="4" Visible="true">
415
+ <Frame XPosition="0" YPosition="78" XPivot="0" YPivot="104" XCrop="52" YCrop="52" Width="182" Height="104" XScale="100" YScale="-100" Delay="1" Visible="true" RedTint="255" GreenTint="255" BlueTint="255" AlphaTint="255" RedOffset="0" GreenOffset="0" BlueOffset="0" Rotation="0" Interpolated="false"/>
416
+ </LayerAnimation>
417
+ <LayerAnimation LayerId="5" Visible="true">
418
+ <Frame XPosition="364" YPosition="78" XPivot="0" YPivot="104" XCrop="52" YCrop="52" Width="182" Height="104" XScale="-100" YScale="-100" Delay="1" Visible="true" RedTint="255" GreenTint="255" BlueTint="255" AlphaTint="255" RedOffset="0" GreenOffset="0" BlueOffset="0" Rotation="0" Interpolated="false"/>
419
+ </LayerAnimation>
420
+ <LayerAnimation LayerId="6" Visible="true">
421
+ <Frame XPosition="520" YPosition="78" XPivot="0" YPivot="104" XCrop="52" YCrop="52" Width="182" Height="104" XScale="-100" YScale="-100" Delay="1" Visible="true" RedTint="255" GreenTint="255" BlueTint="255" AlphaTint="255" RedOffset="0" GreenOffset="0" BlueOffset="0" Rotation="0" Interpolated="false"/>
422
+ </LayerAnimation>
423
+ <LayerAnimation LayerId="7" Visible="true">
424
+ <Frame XPosition="494" YPosition="78" XPivot="182" YPivot="104" XCrop="52" YCrop="52" Width="182" Height="104" XScale="-100" YScale="-100" Delay="1" Visible="true" RedTint="255" GreenTint="255" BlueTint="255" AlphaTint="255" RedOffset="0" GreenOffset="0" BlueOffset="0" Rotation="0" Interpolated="false"/>
425
+ </LayerAnimation>
426
+ <LayerAnimation LayerId="8" Visible="true"/>
427
+ <LayerAnimation LayerId="9" Visible="true"/>
428
+ <LayerAnimation LayerId="10" Visible="true"/>
429
+ <LayerAnimation LayerId="11" Visible="true"/>
430
+ <LayerAnimation LayerId="12" Visible="true"/>
431
+ <LayerAnimation LayerId="13" Visible="true"/>
432
+ <LayerAnimation LayerId="14" Visible="true"/>
433
+ <LayerAnimation LayerId="15" Visible="true"/>
434
+ <LayerAnimation LayerId="16" Visible="true"/>
435
+ <LayerAnimation LayerId="17" Visible="true"/>
436
+ <LayerAnimation LayerId="18" Visible="true"/>
437
+ <LayerAnimation LayerId="19" Visible="true"/>
438
+ </LayerAnimations>
439
+ <NullAnimations/>
440
+ <Triggers/>
441
+ </Animation>
442
+ <Animation Name="1x2" FrameNum="1" Loop="false">
443
+ <RootAnimation>
444
+ <Frame XPosition="0" YPosition="0" XScale="100" YScale="100" Delay="1" Visible="true" RedTint="255" GreenTint="255" BlueTint="255" AlphaTint="255" RedOffset="0" GreenOffset="0" BlueOffset="0" Rotation="0" Interpolated="false"/>
445
+ </RootAnimation>
446
+ <LayerAnimations>
447
+ <LayerAnimation LayerId="0" Visible="true">
448
+ <Frame XPosition="0" YPosition="0" XPivot="0" YPivot="0" XCrop="52" YCrop="52" Width="182" Height="104" XScale="100" YScale="100" Delay="1" Visible="true" RedTint="255" GreenTint="255" BlueTint="255" AlphaTint="255" RedOffset="0" GreenOffset="0" BlueOffset="0" Rotation="0" Interpolated="false"/>
449
+ </LayerAnimation>
450
+ <LayerAnimation LayerId="1" Visible="true">
451
+ <Frame XPosition="156" YPosition="0" XPivot="182" YPivot="0" XCrop="52" YCrop="52" Width="182" Height="104" XScale="-100" YScale="100" Delay="1" Visible="true" RedTint="255" GreenTint="255" BlueTint="255" AlphaTint="255" RedOffset="0" GreenOffset="0" BlueOffset="0" Rotation="0" Interpolated="false"/>
452
+ </LayerAnimation>
453
+ <LayerAnimation LayerId="2" Visible="true">
454
+ <Frame XPosition="0" YPosition="208" XPivot="0" YPivot="0" XCrop="52" YCrop="52" Width="182" Height="104" XScale="100" YScale="-100" Delay="1" Visible="true" RedTint="255" GreenTint="255" BlueTint="255" AlphaTint="255" RedOffset="0" GreenOffset="0" BlueOffset="0" Rotation="0" Interpolated="false"/>
455
+ </LayerAnimation>
456
+ <LayerAnimation LayerId="3" Visible="true">
457
+ <Frame XPosition="156" YPosition="208" XPivot="182" YPivot="0" XCrop="52" YCrop="52" Width="182" Height="104" XScale="-100" YScale="-100" Delay="1" Visible="true" RedTint="255" GreenTint="255" BlueTint="255" AlphaTint="255" RedOffset="0" GreenOffset="0" BlueOffset="0" Rotation="0" Interpolated="false"/>
458
+ </LayerAnimation>
459
+ <LayerAnimation LayerId="4" Visible="true">
460
+ <Frame XPosition="0" YPosition="286" XPivot="0" YPivot="0" XCrop="52" YCrop="52" Width="182" Height="104" XScale="100" YScale="-100" Delay="1" Visible="true" RedTint="255" GreenTint="255" BlueTint="255" AlphaTint="255" RedOffset="0" GreenOffset="0" BlueOffset="0" Rotation="0" Interpolated="false"/>
461
+ </LayerAnimation>
462
+ <LayerAnimation LayerId="5" Visible="true">
463
+ <Frame XPosition="156" YPosition="286" XPivot="182" YPivot="0" XCrop="52" YCrop="52" Width="182" Height="104" XScale="-100" YScale="-100" Delay="1" Visible="true" RedTint="255" GreenTint="255" BlueTint="255" AlphaTint="255" RedOffset="0" GreenOffset="0" BlueOffset="0" Rotation="0" Interpolated="false"/>
464
+ </LayerAnimation>
465
+ <LayerAnimation LayerId="6" Visible="true">
466
+ <Frame XPosition="0" YPosition="260" XPivot="0" YPivot="104" XCrop="52" YCrop="52" Width="182" Height="104" XScale="100" YScale="-100" Delay="1" Visible="true" RedTint="255" GreenTint="255" BlueTint="255" AlphaTint="255" RedOffset="0" GreenOffset="0" BlueOffset="0" Rotation="0" Interpolated="false"/>
467
+ </LayerAnimation>
468
+ <LayerAnimation LayerId="7" Visible="true">
469
+ <Frame XPosition="156" YPosition="260" XPivot="182" YPivot="104" XCrop="52" YCrop="52" Width="182" Height="104" XScale="-100" YScale="-100" Delay="1" Visible="true" RedTint="255" GreenTint="255" BlueTint="255" AlphaTint="255" RedOffset="0" GreenOffset="0" BlueOffset="0" Rotation="0" Interpolated="false"/>
470
+ </LayerAnimation>
471
+ <LayerAnimation LayerId="8" Visible="true"/>
472
+ <LayerAnimation LayerId="9" Visible="true"/>
473
+ <LayerAnimation LayerId="10" Visible="true"/>
474
+ <LayerAnimation LayerId="11" Visible="true"/>
475
+ <LayerAnimation LayerId="12" Visible="true"/>
476
+ <LayerAnimation LayerId="13" Visible="true"/>
477
+ <LayerAnimation LayerId="14" Visible="true"/>
478
+ <LayerAnimation LayerId="15" Visible="true"/>
479
+ <LayerAnimation LayerId="16" Visible="true"/>
480
+ <LayerAnimation LayerId="17" Visible="true"/>
481
+ <LayerAnimation LayerId="18" Visible="true"/>
482
+ <LayerAnimation LayerId="19" Visible="true"/>
483
+ </LayerAnimations>
484
+ <NullAnimations/>
485
+ <Triggers/>
486
+ </Animation>
487
+ </Animations>
488
+ </AnimatedActor>
Binary file