| STORY LOOP FURRY PORN GAMES C SERVICES [?] [R] RND POPULAR | Archived flashes: 231347 |
| /disc/ · /res/ — /show/ · /fap/ · /gg/ · /swf/ | P0001 · P2623 · P5245 |
![]() | This is the info page for Flash #77014 |
| filename.swf |
| filename.swf |
| There's something wrong with the portal, and it's up to Kirby to fix it... Yeah, that's about it. Look, if I could write complicated backstories, I probably wouldn't be making games like this, right? Did anyone really care why they were in the Vic Viper? Of course not. |
| Use the arrow keys to move Kirby around, and the 'Z' key to fire. |
| Shoot the shitty Flashes to BLAM them, but don't hit the good stuff! The good Flashes are blue, and won't kill you if you fly into them. |
| <-- Shoot These! Not These --> |
| [ HOW TO PLAY ] |
| Hints >> |
| << Back to Title |
| Kirby can only have 5 bullets on the screen at once. Normally this won't be a problem, but you should keep it in mind. |
| Be careful about firing randomly, you might wind up BLAMming a good Flash! You lose points for every good Flash you BLAM. |
| Each wave is random, so it's never the same game twice. |
| There is a boss battle at the end; stick with it! |
| You can speed up the good Flashes by flying into them. |
| The game has three endings, can you get them all? |
| You can BLAM flashes by shooting their filenames, too! |
| HINTS!! |
| << How to Play |
| Score: |
| 00000 |
| OMFG! |
| Heh! Not as easy as it looks, is it? Face it, you got wasted by a Flash that needed to be blammed. Maybe you should give up the gaming and try something more your speed...like cribbage. |
| Hey, fuck you! Lemme try again. |
| Hrmmm...it would seem that damn stick is tougher than he looks! Remember, it's a known fact that all Portal stick figures have superpowers, so don't underestimate him! |
| He's a pussy. I'll get him this time! |
| The evil Sticka-Jin had been destroyed and the Portal saved. Thanks to Kirby's efforts, a new golden age began... |
| Calling upon the wisdom that comes from inhaling your enemies and stealing their powers, Kirby had made sure that all the bullshit Flashes were BLAMmed and all the good ones made it into the Portal. |
| The people rejoiced, safe at last from the onslaught of Matrix derivatives, broken games, and, of course, anything related to All Your Base. They hailed Kirby as their savior... |
| They threw a celebration to honor him, but at the grand affair, Kirby was nowhere to be found... |
| "Where is the champion?" The people asked. |
| "Where is Kirby...?" |
| Already seeking the next challenge. Ceremony means nothing to him... |
| The fight is all. |
| CONGRATULATIONS! |
| You found the PERFECT ending! I hope it was worth the effort... Thanks for playing! |
| PLAY AGAIN? |
| With the destruction of the evil Sticka- jin, life in the Portal began to return to normal... People outside noticed a marked increase in the quality of the Portal. It wasn't perfect, but they didn't have to BLAM near as much as they used to... Some people suspected that a hero needed to be thanked for this, but when they went looking for Kirby, he was nowhere to be found... |
| THANKS FOR PLAYING! You've found the NORMAL ending. Can you get the other two? |
| THANKS FOR PLAYING! You've found the GOOD ending. Can you get the other two? |
ActionScript [AS1/AS2]
Frame 1pBar._xScale = 0; fileRaw = getBytesTotal() / 1024; fileTotal = Math.round(fileRaw * 10) / 10; transSpeed = "--"; transLeft = "--"; frames = 0; lastLoad = 0; lastSpeed = 0;Frame 2frames++; pbar._xScale = (getBytesLoaded() / getBytesTotal()) * 100; raw = getBytesLoaded() / 1024; downKB = (Math.round(raw * 10) / 10) + " kB"; if (frames >= 18) { frames = 0; rate = (getBytesLoaded() - lastLoad) / 1024; transSpeed = (Math.round(rate * 10) / 10) + " kB/sec"; lastLoad = getBytesLoaded(); left = (getBytesTotal() - getBytesLoaded()) / 1024; left = Math.round(left * 10) / 10; left = Math.round(left / rate); mins = Math.floor(left / 60); secs = left - (mins * 60); if (secs < 10) { secs = "0" + secs; } transLeft = (mins + ":") + secs; }Frame 3if (getBytesLoaded() < getBytesTotal()) { frames++; gotoAndPlay (2); }Frame 56stop();Frame 57stop();Frame 66function Bullet() { this.speed = 25; } function Enemy() { this.status = "OK"; this.dx = 0; this.dy = 0; this.dieVel = 1.25; this.deltY = 0; } function GoodDoc() { this.status = "OK"; this.dx = 0; this.dy = 0; this.dieVel = 1.25; this.deltY = 0; } function EnemyWave() { this.speed = 25; this.duration = 22; this.dScale = 20; } function Boss() { this.health = 175; this.moveSpeed = 15; this.rushSpeed = 25; this.retreatSpeed = 20; this.firing = false; this.flurry = false; this.startFire = false; this.flurryBack = false; this.fireChance = 0; this.flurryChance = 0; this.coolDown = false; this.coolDelay = 9; this.status = "POSE"; } function spawn() { clearInterval(intID); if (waveCount == waves) { play(); return(undefined); } spawnEnem = Math.ceil(Math.random() * 10); i = 0; while (i < spawnEnem) { startY = Math.round(50 + (Math.random() * (Stage.height - 50))); startX = Stage.width + Math.round(Math.random() * 5); xSpeed = 4 + Math.round(Math.random() * 5); ySpeed = Math.round(Math.random() * 7); amaxY = 20 + Math.round(Math.random() * 35); chance = Math.random(); if (chance < 0.09) { xSpeed = xSpeed * 0.7; fname = goodFiles[Math.floor(Math.random() * goodFiles.length)]; attachMovie("spriteGoodDoc", "enemy" + eCount, 400 + eCount, {_x:startX, _y:startY, moveX:xSpeed, moveY:ySpeed, maxY:amaxY, file:fname}); } else { fname = fileNames[Math.floor(Math.random() * fileNames.length)]; attachMovie("enemyFD", "enemy" + eCount, 400 + eCount, {_x:startX, _y:startY, moveX:xSpeed, moveY:ySpeed, maxY:amaxY, file:fname}); } eCount++; i++; } waveCount++; nextWave = 3500 + (500 * Math.round(Math.random() * 5)); intID = setInterval(spawn, nextWave); } function spawnEffect(x, y) { attachMovie("fxHit", "hit" + eCount, 900 + eCount, {_x:x, _y:y}); } function spawnDamage(x, y) { attachMovie("fxDam", "dam" + player.fcs.bulIndex, 600 + player.fcs.bulIndex, {_x:x, _y:y}); } function respawnPlayer() { player.status = "OK"; player.gotoAndStop("neutral"); player._x = 15; player._y = Stage.height / 2; player.firing = false; } Bullet.prototype = new MovieClip(); Bullet.prototype.onEnterFrame = function () { this._x = this._x + this.speed; if ((this._x - (this._width / 2)) > Stage.width) { this.generator.notify(this); } }; Object.registerClass("kBullet", Bullet); Enemy.prototype = new MovieClip(); Enemy.prototype.collision = function () { if (this.status == "OK") { i = 0; while (i < _root.player.fcs.maxBullets) { if (this.hitTest(_root["bullet" + i])) { this.status = "DYING"; this.gotoAndStop("dying"); _root["bullet" + i].generator.notify(_root["bullet" + i]); _root.spawnEffect((this._x - (this._width / 2)) + 10, this._y); _root.playerScore = _root.playerScore + 25; break; } i++; } if (this.hitTest(_root.player) && (_root.player.status == "OK")) { _root.player.status = "DYING"; _root.player.gotoAndPlay("dying"); } } }; Enemy.prototype.move = function () { if (this.status == "OK") { this._x = this._x - this.moveX; this._y = this._y + this.moveY; this.deltY = this.deltY + Math.abs(this.moveY); if (this.deltY >= this.maxY) { this.deltY = 0; this.moveY = this.moveY * -1; } if ((this._x + (this._width / 2)) < 0) { _root.missed++; this.removeMovieClip(); } } else { this.dy = this.dy + this.dieVel; this.dx = this.dx + (this.dieVel / 2); this._x = this._x + this.dx; this._y = this._y + this.dy; this._alpha = ((this._alpha < 100) ? 100 : 50); if ((this._y - (this._height / 2)) > Stage.height) { this.removeMovieClip(); } } }; Enemy.prototype.onEnterFrame = function () { this.collision(); this.move(); }; GoodDoc.prototype = new MovieClip(); GoodDoc.prototype.collision = function () { if (this.status == "OK") { i = 0; while (i < _root.player.fcs.maxBullets) { if (this.hitTest(_root["bullet" + i])) { this.status = "DYING"; this.gotoAndStop("dying"); _root["bullet" + i].generator.notify(_root["bullet" + i]); _root.spawnEffect((this._x - (this._width / 2)) + 10, this._y); _root.playerScore = _root.playerScore - 125; _root.goodBlam = true; break; } i++; } if (this.hitTest(_root.player) && (_root.player.status == "OK")) { this.moveX = this.moveX + 1.75; } } }; GoodDoc.prototype.move = function () { if (this.status == "OK") { this._x = this._x - this.moveX; this._y = this._y + this.moveY; this.deltY = this.deltY + Math.abs(this.moveY); if (this.deltY >= this.maxY) { this.deltY = 0; this.moveY = this.moveY * -1; } if ((this._x + (this._width / 2)) < 0) { _root.playerScore = _root.playerScore + 75; this.removeMovieClip(); } } else { this.dy = this.dy + this.dieVel; this.dx = this.dx + (this.dieVel / 2); this._x = this._x + this.dx; this._y = this._y + this.dy; this._alpha = ((this._alpha < 100) ? 100 : 50); if ((this._y - (this._height / 2)) > Stage.height) { this.removeMovieClip(); } } }; GoodDoc.prototype.onEnterFrame = function () { this.collision(); this.move(); }; EnemyWave.prototype = new MovieClip(); EnemyWave.prototype.onEnterFrame = function () { if (this._xScale <= 100) { this._xScale = this._xScale + this.dScale; } this.duration--; if (this.duration <= 0) { this.generator.notify(this); } if (this.hitTest(_root.player) && (_root.player.status == "OK")) { _root.player.status = "DEAD"; _root.player.gotoAndPlay("dying"); } }; Boss.prototype = new MovieClip(); Boss.prototype.moveNormal = function () { if (Math.random() > 0.8) { this.moveSpeed = this.moveSpeed * -1; } this._y = this._y + this.moveSpeed; if ((((this._y - (this._height / 2)) <= 0) && (this.moveSpeed < 0)) || (((this._y + (this._height / 2)) > Stage.height) && (this.moveSpeed > 0))) { this.moveSpeed = this.moveSpeed * -1; } }; Boss.prototype.doFlurry = function () { if (this.flurry) { this._x = this._x - this.rushSpeed; if ((this._x - (this._width / 2)) <= 0) { this.flurry = false; this.flurryBack = true; this.gotoAndPlay("flurryretreat"); } } else if (this.flurryBack) { this._x = this._x + this.retreatSpeed; if ((this._x + (this._width / 2)) >= (Stage.width - 10)) { this.flurryBack = false; this.coolDown = true; this.play(); } } }; Boss.prototype.doWave = function () { this.gotoAndPlay("wave"); }; Boss.prototype.collision = function () { i = 0; while (i < _root.player.fcs.maxBullets) { if (this.hitTest(_root["bullet" + i])) { this.health--; if (this.health <= 0) { this.status = "DEAD"; this.startFire = false; this.flurry = false; this.firing = false; this.flurryBack = false; this.coolDown = false; this.gotoAndPlay("die"); } else { this.dFlasher.play(); } _root.spawnDamage(this._x, _root["bullet" + i]._y); _root["bullet" + i].generator.notify(_root["bullet" + i]); } i++; } if (this.hitTest(_root.player) && (_root.player.status == "OK")) { _root.player.status = "DEAD"; _root.player.gotoAndPlay("dying"); } }; Boss.prototype.onEnterFrame = function () { if (this.status == "OK") { this.collision(); if (((((!this.coolDown) && (!this.firing)) && (!this.startFire)) && (!this.flurry)) && (!this.flurryBack)) { chance = Math.random() + 0.1; if (chance < this.fireChance) { this.fireChance = 0; this.flurryChance = 0; this.flurry = false; this.flurryBack = false; this.startFire = true; this.doWave(); } else if (chance < this.flurryChance) { this.flurryChance = 0; this.fireChance = 0; this.firing = false; this.startFire = false; this.flurry = true; this.gotoAndPlay("flurryattack"); } else { this.firing = false; this.startFire = false; this.flurry = false; this.flurryBack = false; this.fireChance = this.fireChance + 0.05; this.flurryChance = this.flurryChance + 0.1; this.moveNormal(); } } else if (this.flurry || (this.flurryBack)) { this.doFlurry(); } else if (this.coolDown) { this.coolDelay--; if (this.coolDelay == 0) { this.coolDown = false; this.coolDelay = 9; } this.moveNormal(); } } }; Boss.prototype.startFight = function () { this.status = "OK"; this.gotoAndPlay("move"); }; Object.registerClass("spriteGoodDoc", GoodDoc); Object.registerClass("enemyFD", Enemy); Object.registerClass("ebWave", EnemyWave); Object.registerClass("enemyBoss", Boss); fileNames = new Array(); fileNames = ["ssj_sticks.swf", "more_matrix_crap.swf", "pointless_movie.swf", "sticks_w_guns.swf", "broken_game.swf", "retarded_spoof.swf", "vote_5_movie.swf", "ayb_anything.swf", "unoriginal_sprite_movie.swf"]; goodFiles = new Array(); goodFiles = ["adam_android.swf", "alien_hominid.swf", "there_she_is.swf", "foamy_movies.swf", "rab_movies.swf", "xin_movies.swf", "bitey.swf", "xiao_xiao.swf", "whiteboy_polka.swf", "8bit_theater.swf"]; intID = 0; playerScore = 0; waves = 30; waveCount = 0; eCount = 0; scrolling = false; atBoss = false; missed = 0; goodBlam = false; if (player.status != "OK") { respawnPlayer(); } _root.onEnterFrame = function () { if (scrolling) { part1._x = part1._x - 3; part2._x = part2._x - 3; part3._x = part3._x - 3; if (part1._x <= 0) { part1._x = Stage.width + part1._width; } if (part2._x <= 0) { part2._x = Stage.width + part2._width; } if (part3._x <= 0) { part3._x = Stage.width + part3._width; } } };Instance of Symbol 153 MovieClip "portal" in Frame 66onClipEvent (enterFrame) { _x = (_x - 1); if ((_x + (_width / 2)) < 0) { this.swapDepth(555); this.removeMovieClip(); } }Instance of Symbol 100 MovieClip [playerSprite] "player" in Frame 66onClipEvent (load) { moveSpeed = 18; status = "OK"; firing = false; fireDelay = 3; fireDelCount = 0; } onClipEvent (enterFrame) { if (status == "OK") { if (Key.isDown(37)) { this.gotoAndPlay("backward"); if ((_x - (_width / 2)) > 0) { _x = (_x - moveSpeed); } } else if (Key.isDown(39)) { this.gotoAndPlay("forward"); if ((_x + (_width / 2)) < Stage.width) { _x = (_x + moveSpeed); } } else { this.gotoAndStop("neutral"); } if (Key.isDown(38)) { if ((_y - (_height / 2)) > 0) { _y = (_y - moveSpeed); } } else if (Key.isDown(40)) { if ((_y + (_height / 2)) < Stage.height) { _y = (_y + moveSpeed); } } if (Key.isDown(90)) { this.fcs.fire(); } if (firing) { fireDelCount++; if (fireDelCount == fireDelay) { firing = false; fireDelCount = 0; } } } }Frame 67scrolling = true; if (player.status != "OK") { respawnPlayer(); } if (atBoss) { portal._x = -portal._width; }Frame 126if (!atBoss) { intID = setInterval(spawn, 2000); stop(); }Frame 259scrolling = false; atBoss = true;Frame 271bossIntro.play(); stop();Frame 310attachMovie("enemyBoss", "lastboss", 9999, {_x:bossIntro._x, _y:bossIntro._y});Frame 326lastboss.startFight(); stop();Frame 387if ((!goodBlam) && (missed == 0)) { gotoAndPlay (421); } else if (goodBlam && (missed > 0)) { gotoAndPlay (1301); } else { gotoAndPlay (1302); }Frame 415heh.file = "u_suck.swf"; stop();Frame 417stop();Frame 421_root.onEnterFrame = function () { i = 1; while (i < 4) { _root["bg" + i]._x = _root["bg" + i]._x - 1.5; if ((_root["bg" + i]._x + _root["bg" + i]._width) < 0) { _root["bg" + i]._x = Stage.width; } i++; } };Frame 853kirbyfighter.stop();Frame 868kirbyfighter.play();Frame 1297stop();Frame 1301ending = "normal"; gotoAndPlay (1303);Frame 1302ending = "good"; gotoAndPlay (1303);Frame 1951stop();Symbol 25 MovieClip Frame 1file = _parent.file;Symbol 28 MovieClip [spriteGoodDoc] Frame 1stop();Symbol 28 MovieClip [spriteGoodDoc] Frame 5stop();Symbol 31 MovieClip Frame 1file = _parent.file;Symbol 33 MovieClip [enemyFD] Frame 1stop();Symbol 33 MovieClip [enemyFD] Frame 5stop();Symbol 37 MovieClip [fxDam] Frame 3this.removeMovieClip();Symbol 41 MovieClip [fxHit] Frame 5this.removeMovieClip();Symbol 42 MovieClip Frame 1cTrans = new Color(_parent); hitTrans = new Object(); hitTrans = {ra:100, rb:0, ba:100, bb:0, ga:100, gb:0, aa:100, ab:0}; cTrans.setTransform(hitTrans); stop();Symbol 42 MovieClip Frame 2hitTrans.rb = 255; hitTrans.gb = -255; hitTrans.bb = -255; cTrans.setTransform(hitTrans);Symbol 48 MovieClip Frame 1function fire() { if (_parent.firing) { return(false); } _parent.firing = true; startX = _parent._x + _x; startY = _parent._y + _y; _root.attachMovie("ebWave", "eWave", 1500, {_x:startX, _y:startY, _xScale:1, generator:this}); } function notify(mc) { _parent.startFire = false; _parent.firing = false; _parent.coolDown = true; _parent.play(); mc.removeMovieClip(); }Symbol 71 MovieClip [enemyBoss] Frame 1stop();Symbol 71 MovieClip [enemyBoss] Frame 5stop();Symbol 71 MovieClip [enemyBoss] Frame 10stop();Symbol 71 MovieClip [enemyBoss] Frame 25fcs.fire(); stop();Symbol 71 MovieClip [enemyBoss] Frame 29gotoAndStop (5);Symbol 71 MovieClip [enemyBoss] Frame 32stop();Symbol 71 MovieClip [enemyBoss] Frame 34stop();Symbol 71 MovieClip [enemyBoss] Frame 36gotoAndPlay (5);Symbol 71 MovieClip [enemyBoss] Frame 45_root.nextFrame();Symbol 71 MovieClip [enemyBoss] Frame 60_root.eCount = _root.eCount - _root.missed;Symbol 71 MovieClip [enemyBoss] Frame 61_root.spawnEffect((this._x - this._width) + Math.round(Math.random() * (this._x + (this._width / 4))), (this._y - this._height) + Math.round(Math.random() * (this._y + (_this.height / 4)))); _root.eCount = _root.eCount - 2; _root.playerScore = _root.playerScore + 200;Symbol 71 MovieClip [enemyBoss] Frame 62_root.spawnEffect((this._x - this._width) + Math.round(Math.random() * (this._x + (this._width / 4))), (this._y - this._height) + Math.round(Math.random() * (this._y + (_this.height / 4)))); _root.eCount = _root.eCount - 2; _root.playerScore = _root.playerScore + 200;Symbol 71 MovieClip [enemyBoss] Frame 63if (_root.eCount > 0) { gotoAndPlay (61); }Symbol 71 MovieClip [enemyBoss] Frame 73if ((!_root.goodBlam) && (_root.missed == 0)) { _root.playerScore = _root.playerScore + 50000; } _root.play(); this.removeMovieClip();Symbol 85 MovieClip Frame 1function fire() { if ((bulCount == maxBullets) || (_parent.firing)) { return(false); } bulletName = "bullet" + bulIndex; bulletDepth = 100 + bulIndex; while (_root[bulletName]) { bulIndex++; if (bulIndex >= maxBullets) { bulIndex = 0; } bulletName = "bullet" + bulIndex; bulletDepth = 100 + bulIndex; } startX = _parent._x + _x; startY = _parent._y + _y; _root.attachMovie("kBullet", bulletName, bulletDepth, {_x:startX, _y:startY, generator:this}); bulCount++; bulIndex++; if (bulIndex >= maxBullets) { bulIndex = 0; } _parent.fire_delay.play(); _parent.firing = true; } function notify(bulletmc) { bulCount--; bulletmc.removeMovieClip(); } bulIndex = 0; bulCount = 0; maxBullets = 5;Symbol 87 MovieClip Frame 1stop();Symbol 87 MovieClip Frame 2Symbol 87 MovieClip Frame 5Symbol 100 MovieClip [playerSprite] Frame 1stop();Symbol 100 MovieClip [playerSprite] Frame 5stop();Symbol 100 MovieClip [playerSprite] Frame 10stop();Symbol 100 MovieClip [playerSprite] Frame 16clearInterval(_root.intID);Symbol 100 MovieClip [playerSprite] Frame 40i = 0; while (i <= _root.eCount) { _root["enemy" + i].removeMovieClip(); i++; } if (_root.atBoss) { _root.lastboss.removeMovieClip(); _root.gotoAndPlay("failBoss"); } else { _root.gotoAndPlay("failStage"); } stop();Symbol 124 Buttonon (release) { _root.gotoAndPlay("go"); }Symbol 126 Buttonon (release) { _root.nextFrame(); }Symbol 136 Buttonon (release) { _root.nextFrame(); }Symbol 138 Buttonon (release) { _root.gotoAndPlay("title"); }Symbol 148 Buttonon (release) { _root.prevFrame(); }Symbol 169 MovieClip Frame 1stop();Symbol 169 MovieClip Frame 13_root.play(); stop();Symbol 172 MovieClip Frame 3stop();Symbol 180 Buttonon (release) { _root.gotoAndPlay("gameInit"); }Symbol 184 Buttonon (release) { _root.gotoAndPlay("bossInit"); }Symbol 213 Buttonon (release) { gotoAndPlay (6); }Symbol 216 MovieClip Frame 1stop(); if (_root.ending == "good") { this.nextFrame(); }Symbol 219 MovieClip Frame 1stop(); if (_root.ending == "good") { this.nextFrame(); }
Library Items
| Symbol 1 Bitmap | Used by:2 | |
| Symbol 2 Graphic | Uses:1 | Used by:3 |
| Symbol 3 MovieClip | Uses:2 | Used by:7 Timeline |
| Symbol 4 Bitmap | Used by:5 | |
| Symbol 5 Graphic | Uses:4 | Used by:6 |
| Symbol 6 MovieClip | Uses:5 | Used by:7 |
| Symbol 7 MovieClip [kBullet] | Uses:3 6 | |
| Symbol 8 Font | Used by:9 29 155 156 188 189 191 192 193 194 206 207 211 215 217 218 | |
| Symbol 9 EditableText | Uses:8 | Used by:25 |
| Symbol 10 Graphic | Used by:25 31 | |
| Symbol 11 Bitmap | Used by:12 | |
| Symbol 12 Graphic | Uses:11 | Used by:13 |
| Symbol 13 MovieClip | Uses:12 | Used by:25 31 |
| Symbol 14 Graphic | Used by:25 31 | |
| Symbol 15 Graphic | Used by:25 | |
| Symbol 16 Bitmap | Used by:17 | |
| Symbol 17 Graphic | Uses:16 | Used by:18 |
| Symbol 18 MovieClip | Uses:17 | Used by:25 31 |
| Symbol 19 Graphic | Used by:25 31 | |
| Symbol 20 Graphic | Used by:25 31 | |
| Symbol 21 Bitmap | Used by:22 | |
| Symbol 22 Graphic | Uses:21 | Used by:23 |
| Symbol 23 MovieClip | Uses:22 | Used by:25 27 31 32 |
| Symbol 24 Graphic | Used by:25 31 | |
| Symbol 25 MovieClip | Uses:9 10 13 14 15 18 19 20 23 24 | Used by:28 Timeline |
| Symbol 26 Graphic | Used by:27 32 | |
| Symbol 27 MovieClip | Uses:23 26 | Used by:28 |
| Symbol 28 MovieClip [spriteGoodDoc] | Uses:25 27 | |
| Symbol 29 EditableText | Uses:8 | Used by:31 |
| Symbol 30 Graphic | Used by:31 | |
| Symbol 31 MovieClip | Uses:29 10 13 14 30 18 19 20 23 24 | Used by:33 Timeline |
| Symbol 32 MovieClip | Uses:23 26 | Used by:33 |
| Symbol 33 MovieClip [enemyFD] | Uses:31 32 | |
| Symbol 34 Graphic | Used by:37 41 | |
| Symbol 35 Sound | Used by:37 41 | |
| Symbol 36 Graphic | Used by:37 | |
| Symbol 37 MovieClip [fxDam] | Uses:34 35 36 | |
| Symbol 38 Graphic | Used by:41 | |
| Symbol 39 Graphic | Used by:41 | |
| Symbol 40 Graphic | Used by:41 | |
| Symbol 41 MovieClip [fxHit] | Uses:34 35 38 39 40 | |
| Symbol 42 MovieClip | Used by:71 | |
| Symbol 43 Graphic | Used by:71 | |
| Symbol 44 Graphic | Used by:71 | |
| Symbol 45 Graphic | Used by:71 | |
| Symbol 46 Sound | Used by:71 Timeline | |
| Symbol 47 Graphic | Used by:71 | |
| Symbol 48 MovieClip | Used by:71 | |
| Symbol 49 Graphic | Used by:71 | |
| Symbol 50 Graphic | Used by:71 | |
| Symbol 51 Sound | Used by:71 | |
| Symbol 52 Graphic | Used by:71 | |
| Symbol 53 Graphic | Used by:71 | |
| Symbol 54 Graphic | Used by:71 | |
| Symbol 55 Graphic | Used by:59 | |
| Symbol 56 Graphic | Used by:59 | |
| Symbol 57 Sound | Used by:59 | |
| Symbol 58 Graphic | Used by:59 | |
| Symbol 59 MovieClip | Uses:55 56 57 58 | Used by:71 |
| Symbol 60 Graphic | Used by:71 | |
| Symbol 61 Graphic | Used by:71 | |
| Symbol 62 Graphic | Used by:71 | |
| Symbol 63 Graphic | Used by:71 | |
| Symbol 64 Graphic | Used by:71 | |
| Symbol 65 Graphic | Used by:71 | |
| Symbol 66 Graphic | Used by:71 | |
| Symbol 67 Graphic | Used by:71 | |
| Symbol 68 Graphic | Used by:71 | |
| Symbol 69 Graphic | Used by:71 | |
| Symbol 70 Graphic | Used by:71 | |
| Symbol 71 MovieClip [enemyBoss] | Uses:42 43 44 45 46 47 48 49 50 51 52 53 54 59 60 61 62 63 64 65 66 67 68 69 70 | |
| Symbol 72 Graphic | Used by:74 | |
| Symbol 73 Graphic | Used by:74 | |
| Symbol 74 MovieClip [ebWave] | Uses:72 73 | |
| Symbol 75 Bitmap | Used by:76 | |
| Symbol 76 Graphic | Uses:75 | Used by:77 |
| Symbol 77 MovieClip | Uses:76 | Used by:84 92 Timeline |
| Symbol 78 Bitmap | Used by:79 | |
| Symbol 79 Graphic | Uses:78 | Used by:80 |
| Symbol 80 MovieClip | Uses:79 | Used by:84 92 |
| Symbol 81 Bitmap | Used by:82 | |
| Symbol 82 Graphic | Uses:81 | Used by:83 |
| Symbol 83 MovieClip | Uses:82 | Used by:84 91 |
| Symbol 84 MovieClip | Uses:77 80 83 | Used by:100 Timeline |
| Symbol 85 MovieClip | Used by:100 | |
| Symbol 86 Sound | Used by:87 | |
| Symbol 87 MovieClip | Uses:86 | Used by:100 |
| Symbol 88 Bitmap | Used by:89 | |
| Symbol 89 Graphic | Uses:88 | Used by:90 |
| Symbol 90 MovieClip | Uses:89 | Used by:91 |
| Symbol 91 MovieClip | Uses:83 90 | Used by:100 |
| Symbol 92 MovieClip | Uses:77 80 | Used by:100 |
| Symbol 93 Bitmap | Used by:94 | |
| Symbol 94 Graphic | Uses:93 | Used by:95 |
| Symbol 95 MovieClip | Uses:94 | Used by:100 |
| Symbol 96 Graphic | Used by:100 | |
| Symbol 97 Sound | Used by:100 | |
| Symbol 98 Graphic | Used by:100 | |
| Symbol 99 Graphic | Used by:100 | |
| Symbol 100 MovieClip [playerSprite] | Uses:84 85 87 91 92 95 96 97 98 99 | Used by:Timeline |
| Symbol 101 Bitmap | Used by:102 | |
| Symbol 102 Graphic | Uses:101 | Used by:103 |
| Symbol 103 MovieClip [bgPiece] | Uses:102 | Used by:Timeline |
| Symbol 104 Bitmap | Used by:105 | |
| Symbol 105 Graphic | Uses:104 | Used by:Timeline |
| Symbol 106 Graphic | Used by:Timeline | |
| Symbol 107 Font | Used by:108 109 110 111 | |
| Symbol 108 EditableText | Uses:107 | Used by:Timeline |
| Symbol 109 EditableText | Uses:107 | Used by:Timeline |
| Symbol 110 EditableText | Uses:107 | Used by:Timeline |
| Symbol 111 EditableText | Uses:107 | Used by:Timeline |
| Symbol 112 Graphic | Used by:113 | |
| Symbol 113 MovieClip | Uses:112 | Used by:Timeline |
| Symbol 114 Graphic | Used by:Timeline | |
| Symbol 115 Graphic | Used by:Timeline | |
| Symbol 116 Bitmap | Used by:117 | |
| Symbol 117 Graphic | Uses:116 | Used by:Timeline |
| Symbol 118 Sound | Used by:Timeline | |
| Symbol 119 Graphic | Used by:Timeline | |
| Symbol 120 Sound | Used by:Timeline | |
| Symbol 121 Sound | Used by:Timeline | |
| Symbol 122 Graphic | Used by:Timeline | |
| Symbol 123 Graphic | Used by:124 | |
| Symbol 124 Button | Uses:123 | Used by:Timeline |
| Symbol 125 Graphic | Used by:126 | |
| Symbol 126 Button | Uses:125 | Used by:Timeline |
| Symbol 127 Sound | Used by:Timeline | |
| Symbol 128 Font | Used by:129 130 131 132 133 134 137 139 140 141 142 143 144 145 146 147 177 179 182 183 210 211 212 217 | |
| Symbol 129 Text | Uses:128 | Used by:Timeline |
| Symbol 130 Text | Uses:128 | Used by:Timeline |
| Symbol 131 Text | Uses:128 | Used by:Timeline |
| Symbol 132 Text | Uses:128 | Used by:Timeline |
| Symbol 133 Text | Uses:128 | Used by:Timeline |
| Symbol 134 Text | Uses:128 | Used by:136 |
| Symbol 135 Graphic | Used by:136 138 148 213 Timeline | |
| Symbol 136 Button | Uses:134 135 | Used by:Timeline |
| Symbol 137 Text | Uses:128 | Used by:138 |
| Symbol 138 Button | Uses:137 135 | Used by:Timeline |
| Symbol 139 Text | Uses:128 | Used by:Timeline |
| Symbol 140 Text | Uses:128 | Used by:Timeline |
| Symbol 141 Text | Uses:128 | Used by:Timeline |
| Symbol 142 Text | Uses:128 | Used by:Timeline |
| Symbol 143 Text | Uses:128 | Used by:Timeline |
| Symbol 144 Text | Uses:128 | Used by:Timeline |
| Symbol 145 Text | Uses:128 | Used by:Timeline |
| Symbol 146 Text | Uses:128 | Used by:Timeline |
| Symbol 147 Text | Uses:128 | Used by:148 |
| Symbol 148 Button | Uses:147 135 | Used by:Timeline |
| Symbol 149 Graphic | Used by:Timeline | |
| Symbol 150 Graphic | Used by:153 | |
| Symbol 151 Graphic | Used by:153 | |
| Symbol 152 Graphic | Used by:153 | |
| Symbol 153 MovieClip | Uses:150 151 152 | Used by:Timeline |
| Symbol 154 Graphic | Used by:Timeline | |
| Symbol 155 Text | Uses:8 | Used by:Timeline |
| Symbol 156 EditableText | Uses:8 | Used by:Timeline |
| Symbol 157 Sound | Used by:Timeline | |
| Symbol 158 Graphic | Used by:Timeline | |
| Symbol 159 Sound | Used by:Timeline | |
| Symbol 160 Graphic | Used by:161 | |
| Symbol 161 MovieClip | Uses:160 | Used by:Timeline |
| Symbol 162 Graphic | Used by:Timeline | |
| Symbol 163 Sound | Used by:Timeline | |
| Symbol 164 Graphic | Used by:169 | |
| Symbol 165 Graphic | Used by:169 | |
| Symbol 166 Graphic | Used by:169 | |
| Symbol 167 Graphic | Used by:169 | |
| Symbol 168 Graphic | Used by:169 | |
| Symbol 169 MovieClip | Uses:164 165 166 167 168 | Used by:Timeline |
| Symbol 170 Graphic | Used by:172 | |
| Symbol 171 Graphic | Used by:172 | |
| Symbol 172 MovieClip | Uses:170 171 | Used by:Timeline |
| Symbol 173 Sound | Used by:Timeline | |
| Symbol 174 Sound | Used by:Timeline | |
| Symbol 175 Font | Used by:176 | |
| Symbol 176 Text | Uses:175 | Used by:Timeline |
| Symbol 177 Text | Uses:128 | Used by:Timeline |
| Symbol 178 Graphic | Used by:180 184 | |
| Symbol 179 Text | Uses:128 | Used by:180 |
| Symbol 180 Button | Uses:178 179 | Used by:Timeline |
| Symbol 181 Graphic | Used by:Timeline | |
| Symbol 182 Text | Uses:128 | Used by:Timeline |
| Symbol 183 Text | Uses:128 | Used by:184 |
| Symbol 184 Button | Uses:178 183 | Used by:Timeline |
| Symbol 185 Graphic | Used by:Timeline | |
| Symbol 186 Graphic | Used by:Timeline | |
| Symbol 187 Sound | Used by:Timeline | |
| Symbol 188 Text | Uses:8 | Used by:Timeline |
| Symbol 189 Text | Uses:8 | Used by:Timeline |
| Symbol 190 Text | Used by:Timeline | |
| Symbol 191 Text | Uses:8 | Used by:Timeline |
| Symbol 192 Text | Uses:8 | Used by:Timeline |
| Symbol 193 Text | Uses:8 | Used by:Timeline |
| Symbol 194 Text | Uses:8 | Used by:Timeline |
| Symbol 195 Bitmap | Used by:196 | |
| Symbol 196 Graphic | Uses:195 | Used by:205 |
| Symbol 197 Bitmap | Used by:198 | |
| Symbol 198 Graphic | Uses:197 | Used by:205 |
| Symbol 199 Bitmap | Used by:200 | |
| Symbol 200 Graphic | Uses:199 | Used by:205 |
| Symbol 201 Bitmap | Used by:202 | |
| Symbol 202 Graphic | Uses:201 | Used by:205 |
| Symbol 203 Bitmap | Used by:204 | |
| Symbol 204 Graphic | Uses:203 | Used by:205 |
| Symbol 205 MovieClip | Uses:196 198 200 202 204 | Used by:Timeline |
| Symbol 206 Text | Uses:8 | Used by:Timeline |
| Symbol 207 Text | Uses:8 | Used by:Timeline |
| Symbol 208 Graphic | Used by:Timeline | |
| Symbol 209 Graphic | Used by:Timeline | |
| Symbol 210 Text | Uses:128 | Used by:Timeline |
| Symbol 211 Text | Uses:8 128 | Used by:Timeline |
| Symbol 212 Text | Uses:128 | Used by:213 |
| Symbol 213 Button | Uses:212 135 | Used by:Timeline |
| Symbol 214 Graphic | Used by:216 | |
| Symbol 215 Text | Uses:8 | Used by:216 |
| Symbol 216 MovieClip | Uses:214 215 | Used by:Timeline |
| Symbol 217 Text | Uses:8 128 | Used by:219 |
| Symbol 218 Text | Uses:8 | Used by:219 |
| Symbol 219 MovieClip | Uses:217 218 | Used by:Timeline |
Instance Names
| "pBar" | Frame 1 | Symbol 113 MovieClip |
| "part1" | Frame 66 | Symbol 103 MovieClip [bgPiece] |
| "part2" | Frame 66 | Symbol 103 MovieClip [bgPiece] |
| "part3" | Frame 66 | Symbol 103 MovieClip [bgPiece] |
| "portal" | Frame 66 | Symbol 153 MovieClip |
| "player" | Frame 66 | Symbol 100 MovieClip [playerSprite] |
| "bossIntro" | Frame 226 | Symbol 169 MovieClip |
| "bossIntro" | Frame 281 | Symbol 172 MovieClip |
| "heh" | Frame 415 | Symbol 31 MovieClip |
| "bg1" | Frame 421 | Symbol 103 MovieClip [bgPiece] |
| "bg2" | Frame 421 | Symbol 103 MovieClip [bgPiece] |
| "bg3" | Frame 421 | Symbol 103 MovieClip [bgPiece] |
| "kirbyfighter" | Frame 853 | Symbol 205 MovieClip |
| "dFlasher" | Symbol 71 MovieClip [enemyBoss] Frame 1 | Symbol 42 MovieClip |
| "fcs" | Symbol 71 MovieClip [enemyBoss] Frame 24 | Symbol 48 MovieClip |
| "fcs" | Symbol 100 MovieClip [playerSprite] Frame 1 | Symbol 85 MovieClip |
| "fire_delay" | Symbol 100 MovieClip [playerSprite] Frame 1 | Symbol 87 MovieClip |
Special Tags
| Protect (24) | Timeline Frame 1 | 31 bytes "..$1$J2$FjZfNWLlmxrrt2SlLZTDm1." |
| ExportAssets (56) | Timeline Frame 1 | Symbol 7 as "kBullet" |
| ExportAssets (56) | Timeline Frame 1 | Symbol 28 as "spriteGoodDoc" |
| ExportAssets (56) | Timeline Frame 1 | Symbol 33 as "enemyFD" |
| ExportAssets (56) | Timeline Frame 1 | Symbol 37 as "fxDam" |
| ExportAssets (56) | Timeline Frame 1 | Symbol 41 as "fxHit" |
| ExportAssets (56) | Timeline Frame 1 | Symbol 71 as "enemyBoss" |
| ExportAssets (56) | Timeline Frame 1 | Symbol 74 as "ebWave" |
| ExportAssets (56) | Timeline Frame 1 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 66 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 66 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 66 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 66 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 67 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 67 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 67 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 67 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 68 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 68 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 68 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 68 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 69 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 69 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 69 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 69 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 70 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 70 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 70 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 70 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 71 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 71 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 71 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 71 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 72 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 72 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 72 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 72 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 73 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 73 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 73 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 73 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 74 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 74 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 74 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 74 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 75 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 75 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 75 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 75 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 76 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 76 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 76 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 76 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 77 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 77 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 77 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 77 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 78 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 78 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 78 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 78 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 79 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 79 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 79 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 79 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 80 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 80 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 80 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 80 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 81 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 81 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 81 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 81 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 82 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 82 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 82 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 82 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 83 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 83 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 83 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 83 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 84 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 84 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 84 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 84 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 85 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 85 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 85 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 85 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 86 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 86 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 86 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 86 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 87 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 87 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 87 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 87 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 88 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 88 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 88 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 88 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 89 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 89 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 89 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 89 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 90 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 90 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 90 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 90 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 91 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 91 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 91 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 91 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 92 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 92 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 92 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 92 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 93 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 93 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 93 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 93 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 94 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 94 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 94 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 94 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 95 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 95 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 95 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 95 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 96 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 96 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 96 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 96 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 97 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 97 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 97 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 97 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 98 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 98 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 98 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 98 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 99 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 99 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 99 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 99 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 100 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 100 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 100 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 100 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 101 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 101 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 101 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 101 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 102 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 102 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 102 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 102 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 103 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 103 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 103 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 103 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 104 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 104 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 104 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 104 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 105 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 105 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 105 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 105 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 106 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 106 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 106 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 106 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 107 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 107 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 107 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 107 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 108 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 108 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 108 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 108 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 109 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 109 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 109 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 109 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 110 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 110 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 110 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 110 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 111 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 111 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 111 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 111 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 112 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 112 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 112 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 112 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 113 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 113 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 113 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 113 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 114 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 114 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 114 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 114 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 115 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 115 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 115 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 115 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 116 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 116 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 116 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 116 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 117 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 117 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 117 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 117 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 118 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 118 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 118 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 118 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 119 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 119 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 119 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 119 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 120 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 120 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 120 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 120 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 121 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 121 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 121 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 121 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 122 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 122 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 122 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 122 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 123 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 123 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 123 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 123 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 124 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 124 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 124 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 124 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 125 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 125 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 125 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 125 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 126 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 126 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 126 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 126 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 127 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 127 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 127 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 127 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 128 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 128 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 128 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 128 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 129 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 129 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 129 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 129 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 130 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 130 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 130 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 130 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 131 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 131 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 131 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 131 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 132 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 132 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 132 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 132 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 133 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 133 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 133 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 133 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 134 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 134 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 134 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 134 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 135 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 135 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 135 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 135 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 136 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 136 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 136 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 136 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 137 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 137 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 137 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 137 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 138 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 138 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 138 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 138 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 139 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 139 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 139 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 139 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 140 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 140 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 140 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 140 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 141 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 141 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 141 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 141 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 142 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 142 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 142 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 142 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 143 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 143 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 143 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 143 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 144 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 144 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 144 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 144 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 145 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 145 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 145 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 145 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 146 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 146 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 146 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 146 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 147 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 147 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 147 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 147 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 148 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 148 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 148 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 148 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 149 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 149 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 149 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 149 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 150 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 150 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 150 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 150 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 151 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 151 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 151 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 151 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 152 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 152 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 152 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 152 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 153 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 153 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 153 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 153 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 154 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 154 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 154 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 154 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 155 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 155 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 155 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 155 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 156 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 156 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 156 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 156 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 157 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 157 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 157 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 157 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 158 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 158 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 158 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 158 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 159 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 159 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 159 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 159 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 160 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 160 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 160 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 160 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 161 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 161 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 161 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 161 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 162 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 162 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 162 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 162 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 163 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 163 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 163 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 163 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 164 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 164 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 164 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 164 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 165 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 165 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 165 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 165 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 166 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 166 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 166 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 166 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 167 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 167 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 167 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 167 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 168 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 168 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 168 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 168 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 169 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 169 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 169 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 169 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 170 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 170 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 170 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 170 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 171 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 171 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 171 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 171 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 172 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 172 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 172 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 172 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 173 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 173 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 173 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 173 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 174 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 174 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 174 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 174 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 175 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 175 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 175 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 175 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 176 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 176 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 176 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 176 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 177 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 177 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 177 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 177 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 178 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 178 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 178 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 178 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 179 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 179 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 179 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 179 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 180 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 180 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 180 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 180 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 181 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 181 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 181 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 181 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 182 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 182 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 182 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 182 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 183 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 183 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 183 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 183 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 184 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 184 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 184 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 184 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 185 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 185 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 185 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 185 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 186 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 186 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 186 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 186 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 187 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 187 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 187 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 187 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 188 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 188 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 188 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 188 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 189 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 189 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 189 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 189 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 190 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 190 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 190 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 190 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 191 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 191 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 191 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 191 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 192 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 192 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 192 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 192 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 193 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 193 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 193 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 193 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 194 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 194 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 194 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 194 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 195 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 195 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 195 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 195 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 196 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 196 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 196 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 196 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 197 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 197 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 197 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 197 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 198 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 198 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 198 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 198 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 199 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 199 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 199 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 199 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 200 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 200 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 200 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 200 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 201 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 201 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 201 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 201 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 202 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 202 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 202 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 202 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 203 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 203 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 203 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 203 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 204 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 204 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 204 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 204 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 205 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 205 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 205 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 205 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 206 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 206 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 206 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 206 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 207 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 207 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 207 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 207 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 208 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 208 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 208 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 208 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 209 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 209 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 209 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 209 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 210 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 210 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 210 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 210 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 211 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 211 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 211 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 211 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 212 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 212 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 212 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 212 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 213 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 213 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 213 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 213 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 214 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 214 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 214 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 214 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 215 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 215 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 215 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 215 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 216 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 216 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 216 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 216 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 217 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 217 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 217 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 217 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 218 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 218 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 218 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 218 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 219 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 219 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 219 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 219 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 220 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 220 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 220 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 220 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 221 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 221 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 221 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 221 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 222 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 222 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 222 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 222 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 223 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 223 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 223 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 223 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 224 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 224 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 224 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 224 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 225 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 225 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 225 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 225 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 226 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 226 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 226 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 226 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 227 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 227 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 227 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 227 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 228 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 228 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 228 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 228 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 229 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 229 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 229 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 229 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 230 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 230 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 230 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 230 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 231 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 231 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 231 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 231 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 232 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 232 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 232 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 232 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 233 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 233 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 233 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 233 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 234 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 234 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 234 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 234 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 235 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 235 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 235 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 235 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 236 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 236 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 236 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 236 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 237 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 237 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 237 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 237 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 238 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 238 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 238 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 238 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 239 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 239 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 239 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 239 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 240 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 240 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 240 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 240 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 241 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 241 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 241 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 241 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 242 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 242 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 242 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 242 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 243 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 243 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 243 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 243 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 244 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 244 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 244 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 244 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 245 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 245 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 245 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 245 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 246 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 246 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 246 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 246 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 247 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 247 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 247 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 247 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 248 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 248 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 248 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 248 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 249 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 249 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 249 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 249 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 250 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 250 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 250 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 250 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 251 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 251 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 251 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 251 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 252 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 252 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 252 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 252 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 253 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 253 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 253 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 253 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 254 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 254 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 254 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 254 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 255 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 255 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 255 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 255 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 256 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 256 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 256 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 256 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 257 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 257 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 257 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 257 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 258 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 258 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 258 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 258 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 259 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 259 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 259 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 259 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 260 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 260 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 260 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 260 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 261 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 261 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 261 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 261 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 262 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 262 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 262 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 262 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 263 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 263 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 263 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 263 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 264 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 264 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 264 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 264 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 265 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 265 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 265 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 265 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 266 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 266 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 266 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 266 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 267 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 267 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 267 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 267 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 268 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 268 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 268 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 268 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 269 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 269 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 269 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 269 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 270 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 270 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 270 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 270 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 271 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 271 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 271 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 271 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 272 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 272 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 272 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 272 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 273 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 273 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 273 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 273 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 274 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 274 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 274 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 274 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 275 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 275 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 275 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 275 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 276 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 276 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 276 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 276 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 277 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 277 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 277 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 277 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 278 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 278 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 278 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 278 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 279 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 279 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 279 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 279 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 280 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 280 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 280 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 280 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 281 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 281 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 281 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 281 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 282 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 282 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 282 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 282 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 283 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 283 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 283 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 283 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 284 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 284 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 284 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 284 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 285 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 285 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 285 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 285 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 286 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 286 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 286 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 286 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 287 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 287 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 287 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 287 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 288 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 288 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 288 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 288 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 289 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 289 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 289 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 289 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 290 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 290 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 290 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 290 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 291 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 291 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 291 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 291 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 292 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 292 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 292 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 292 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 293 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 293 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 293 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 293 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 294 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 294 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 294 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 294 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 295 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 295 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 295 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 295 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 296 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 296 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 296 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 296 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 297 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 297 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 297 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 297 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 298 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 298 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 298 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 298 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 299 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 299 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 299 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 299 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 300 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 300 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 300 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 300 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 301 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 301 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 301 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 301 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 302 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 302 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 302 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 302 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 303 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 303 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 303 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 303 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 304 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 304 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 304 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 304 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 305 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 305 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 305 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 305 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 306 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 306 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 306 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 306 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 307 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 307 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 307 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 307 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 308 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 308 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 308 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 308 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 309 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 309 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 309 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 309 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 310 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 310 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 310 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 310 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 311 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 311 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 311 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 311 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 312 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 312 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 312 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 312 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 313 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 313 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 313 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 313 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 314 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 314 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 314 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 314 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 315 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 315 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 315 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 315 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 316 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 316 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 316 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 316 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 317 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 317 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 317 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 317 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 318 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 318 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 318 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 318 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 319 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 319 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 319 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 319 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 320 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 320 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 320 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 320 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 321 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 321 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 321 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 321 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 322 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 322 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 322 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 322 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 323 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 323 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 323 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 323 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 324 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 324 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 324 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 324 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 325 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 325 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 325 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 325 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 326 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 326 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 326 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 326 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 327 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 327 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 327 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 327 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 328 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 328 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 328 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 328 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 329 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 329 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 329 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 329 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 330 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 330 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 330 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 330 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 331 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 331 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 331 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 331 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 332 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 332 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 332 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 332 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 333 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 333 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 333 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 333 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 334 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 334 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 334 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 334 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 335 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 335 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 335 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 335 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 336 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 336 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 336 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 336 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 337 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 337 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 337 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 337 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 338 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 338 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 338 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 338 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 339 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 339 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 339 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 339 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 340 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 340 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 340 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 340 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 341 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 341 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 341 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 341 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 342 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 342 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 342 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 342 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 343 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 343 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 343 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 343 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 344 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 344 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 344 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 344 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 345 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 345 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 345 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 345 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 346 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 346 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 346 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 346 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 347 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 347 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 347 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 347 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 348 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 348 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 348 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 348 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 349 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 349 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 349 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 349 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 350 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 350 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 350 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 350 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 351 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 351 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 351 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 351 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 352 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 352 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 352 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 352 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 353 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 353 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 353 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 353 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 354 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 354 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 354 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 354 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 355 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 355 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 355 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 355 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 356 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 356 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 356 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 356 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 357 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 357 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 357 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 357 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 358 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 358 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 358 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 358 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 359 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 359 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 359 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 359 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 360 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 360 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 360 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 360 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 361 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 361 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 361 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 361 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 362 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 362 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 362 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 362 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 363 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 363 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 363 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 363 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 364 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 364 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 364 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 364 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 365 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 365 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 365 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 365 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 366 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 366 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 366 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 366 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 367 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 367 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 367 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 367 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 368 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 368 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 368 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 368 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 369 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 369 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 369 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 369 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 370 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 370 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 370 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 370 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 371 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 371 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 371 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 371 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 372 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 372 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 372 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 372 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 373 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 373 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 373 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 373 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 374 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 374 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 374 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 374 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 375 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 375 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 375 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 375 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 376 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 376 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 376 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 376 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 377 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 377 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 377 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 377 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 378 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 378 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 378 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 378 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 379 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 379 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 379 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 379 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 380 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 380 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 380 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 380 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 381 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 381 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 381 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 381 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 382 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 382 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 382 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 382 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 383 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 383 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 383 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 383 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 384 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 384 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 384 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 384 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 385 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 385 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 385 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 385 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 386 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 386 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 386 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 386 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 387 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 387 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 387 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 387 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 388 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 388 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 388 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 388 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 389 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 389 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 389 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 389 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 390 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 390 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 390 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 390 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 391 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 391 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 391 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 391 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 392 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 392 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 392 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 392 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 393 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 393 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 393 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 393 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 394 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 394 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 394 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 394 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 395 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 395 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 395 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 395 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 396 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 396 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 396 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 396 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 397 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 397 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 397 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 397 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 398 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 398 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 398 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 398 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 399 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 399 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 399 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 399 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 400 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 400 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 400 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 400 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 401 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 401 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 401 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 401 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 402 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 402 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 402 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 402 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 403 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 403 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 403 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 403 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 404 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 404 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 404 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 404 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 405 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 405 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 405 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 405 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 406 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 406 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 406 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 406 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 407 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 407 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 407 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 407 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 408 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 408 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 408 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 408 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 409 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 409 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 409 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 409 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 410 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 410 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 410 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 410 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 411 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 411 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 411 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 411 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 412 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 412 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 412 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 412 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 413 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 413 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 413 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 413 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 414 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 414 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 414 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 414 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 415 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 416 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 417 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 418 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 419 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 420 | Symbol 100 as "playerSprite" |
| ExportAssets (56) | Timeline Frame 421 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 421 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 421 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 422 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 422 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 422 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 423 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 423 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 423 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 424 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 424 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 424 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 425 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 425 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 425 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 426 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 426 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 426 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 427 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 427 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 427 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 428 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 428 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 428 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 429 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 429 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 429 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 430 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 430 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 430 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 431 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 431 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 431 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 432 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 432 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 432 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 433 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 433 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 433 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 434 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 434 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 434 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 435 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 435 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 435 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 436 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 436 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 436 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 437 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 437 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 437 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 438 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 438 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 438 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 439 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 439 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 439 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 440 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 440 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 440 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 441 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 441 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 441 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 442 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 442 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 442 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 443 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 443 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 443 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 444 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 444 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 444 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 445 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 445 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 445 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 446 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 446 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 446 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 447 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 447 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 447 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 448 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 448 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 448 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 449 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 449 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 449 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 450 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 450 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 450 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 451 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 451 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 451 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 452 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 452 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 452 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 453 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 453 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 453 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 454 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 454 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 454 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 455 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 455 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 455 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 456 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 456 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 456 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 457 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 457 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 457 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 458 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 458 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 458 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 459 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 459 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 459 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 460 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 460 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 460 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 461 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 461 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 461 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 462 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 462 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 462 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 463 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 463 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 463 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 464 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 464 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 464 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 465 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 465 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 465 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 466 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 466 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 466 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 467 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 467 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 467 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 468 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 468 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 468 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 469 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 469 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 469 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 470 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 470 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 470 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 471 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 471 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 471 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 472 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 472 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 472 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 473 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 473 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 473 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 474 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 474 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 474 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 475 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 475 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 475 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 476 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 476 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 476 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 477 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 477 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 477 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 478 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 478 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 478 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 479 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 479 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 479 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 480 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 480 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 480 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 481 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 481 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 481 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 482 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 482 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 482 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 483 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 483 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 483 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 484 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 484 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 484 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 485 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 485 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 485 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 486 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 486 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 486 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 487 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 487 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 487 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 488 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 488 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 488 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 489 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 489 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 489 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 490 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 490 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 490 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 491 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 491 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 491 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 492 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 492 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 492 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 493 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 493 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 493 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 494 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 494 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 494 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 495 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 495 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 495 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 496 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 496 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 496 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 497 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 497 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 497 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 498 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 498 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 498 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 499 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 499 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 499 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 500 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 500 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 500 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 501 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 501 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 501 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 502 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 502 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 502 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 503 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 503 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 503 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 504 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 504 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 504 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 505 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 505 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 505 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 506 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 506 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 506 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 507 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 507 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 507 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 508 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 508 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 508 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 509 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 509 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 509 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 510 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 510 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 510 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 511 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 511 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 511 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 512 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 512 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 512 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 513 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 513 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 513 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 514 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 514 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 514 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 515 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 515 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 515 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 516 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 516 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 516 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 517 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 517 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 517 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 518 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 518 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 518 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 519 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 519 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 519 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 520 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 520 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 520 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 521 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 521 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 521 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 522 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 522 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 522 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 523 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 523 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 523 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 524 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 524 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 524 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 525 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 525 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 525 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 526 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 526 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 526 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 527 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 527 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 527 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 528 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 528 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 528 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 529 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 529 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 529 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 530 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 530 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 530 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 531 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 531 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 531 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 532 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 532 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 532 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 533 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 533 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 533 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 534 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 534 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 534 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 535 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 535 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 535 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 536 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 536 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 536 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 537 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 537 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 537 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 538 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 538 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 538 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 539 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 539 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 539 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 540 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 540 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 540 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 541 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 541 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 541 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 542 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 542 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 542 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 543 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 543 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 543 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 544 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 544 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 544 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 545 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 545 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 545 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 546 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 546 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 546 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 547 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 547 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 547 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 548 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 548 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 548 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 549 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 549 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 549 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 550 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 550 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 550 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 551 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 551 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 551 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 552 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 552 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 552 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 553 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 553 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 553 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 554 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 554 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 554 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 555 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 555 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 555 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 556 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 556 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 556 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 557 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 557 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 557 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 558 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 558 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 558 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 559 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 559 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 559 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 560 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 560 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 560 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 561 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 561 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 561 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 562 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 562 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 562 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 563 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 563 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 563 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 564 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 564 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 564 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 565 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 565 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 565 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 566 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 566 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 566 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 567 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 567 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 567 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 568 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 568 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 568 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 569 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 569 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 569 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 570 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 570 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 570 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 571 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 571 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 571 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 572 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 572 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 572 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 573 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 573 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 573 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 574 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 574 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 574 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 575 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 575 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 575 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 576 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 576 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 576 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 577 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 577 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 577 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 578 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 578 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 578 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 579 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 579 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 579 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 580 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 580 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 580 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 581 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 581 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 581 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 582 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 582 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 582 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 583 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 583 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 583 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 584 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 584 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 584 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 585 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 585 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 585 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 586 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 586 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 586 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 587 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 587 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 587 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 588 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 588 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 588 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 589 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 589 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 589 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 590 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 590 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 590 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 591 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 591 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 591 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 592 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 592 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 592 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 593 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 593 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 593 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 594 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 594 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 594 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 595 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 595 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 595 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 596 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 596 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 596 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 597 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 597 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 597 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 598 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 598 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 598 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 599 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 599 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 599 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 600 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 600 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 600 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 601 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 601 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 601 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 602 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 602 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 602 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 603 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 603 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 603 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 604 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 604 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 604 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 605 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 605 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 605 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 606 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 606 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 606 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 607 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 607 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 607 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 608 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 608 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 608 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 609 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 609 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 609 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 610 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 610 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 610 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 611 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 611 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 611 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 612 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 612 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 612 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 613 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 613 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 613 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 614 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 614 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 614 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 615 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 615 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 615 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 616 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 616 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 616 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 617 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 617 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 617 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 618 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 618 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 618 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 619 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 619 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 619 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 620 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 620 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 620 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 621 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 621 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 621 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 622 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 622 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 622 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 623 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 623 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 623 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 624 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 624 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 624 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 625 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 625 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 625 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 626 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 626 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 626 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 627 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 627 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 627 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 628 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 628 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 628 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 629 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 629 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 629 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 630 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 630 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 630 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 631 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 631 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 631 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 632 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 632 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 632 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 633 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 633 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 633 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 634 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 634 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 634 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 635 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 635 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 635 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 636 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 636 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 636 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 637 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 637 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 637 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 638 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 638 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 638 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 639 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 639 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 639 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 640 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 640 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 640 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 641 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 641 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 641 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 642 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 642 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 642 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 643 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 643 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 643 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 644 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 644 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 644 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 645 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 645 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 645 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 646 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 646 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 646 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 647 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 647 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 647 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 648 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 648 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 648 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 649 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 649 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 649 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 650 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 650 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 650 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 651 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 651 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 651 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 652 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 652 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 652 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 653 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 653 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 653 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 654 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 654 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 654 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 655 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 655 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 655 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 656 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 656 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 656 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 657 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 657 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 657 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 658 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 658 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 658 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 659 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 659 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 659 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 660 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 660 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 660 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 661 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 661 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 661 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 662 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 662 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 662 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 663 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 663 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 663 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 664 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 664 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 664 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 665 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 665 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 665 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 666 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 666 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 666 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 667 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 667 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 667 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 668 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 668 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 668 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 669 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 669 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 669 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 670 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 670 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 670 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 671 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 671 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 671 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 672 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 672 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 672 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 673 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 673 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 673 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 674 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 674 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 674 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 675 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 675 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 675 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 676 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 676 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 676 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 677 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 677 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 677 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 678 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 678 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 678 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 679 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 679 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 679 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 680 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 680 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 680 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 681 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 681 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 681 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 682 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 682 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 682 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 683 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 683 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 683 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 684 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 684 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 684 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 685 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 685 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 685 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 686 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 686 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 686 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 687 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 687 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 687 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 688 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 688 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 688 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 689 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 689 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 689 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 690 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 690 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 690 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 691 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 691 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 691 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 692 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 692 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 692 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 693 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 693 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 693 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 694 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 694 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 694 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 695 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 695 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 695 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 696 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 696 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 696 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 697 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 697 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 697 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 698 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 698 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 698 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 699 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 699 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 699 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 700 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 700 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 700 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 701 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 701 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 701 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 702 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 702 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 702 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 703 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 703 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 703 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 704 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 704 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 704 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 705 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 705 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 705 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 706 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 706 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 706 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 707 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 707 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 707 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 708 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 708 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 708 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 709 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 709 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 709 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 710 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 710 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 710 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 711 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 711 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 711 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 712 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 712 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 712 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 713 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 713 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 713 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 714 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 714 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 714 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 715 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 715 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 715 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 716 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 716 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 716 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 717 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 717 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 717 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 718 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 718 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 718 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 719 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 719 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 719 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 720 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 720 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 720 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 721 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 721 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 721 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 722 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 722 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 722 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 723 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 723 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 723 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 724 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 724 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 724 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 725 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 725 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 725 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 726 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 726 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 726 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 727 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 727 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 727 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 728 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 728 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 728 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 729 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 729 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 729 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 730 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 730 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 730 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 731 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 731 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 731 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 732 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 732 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 732 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 733 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 733 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 733 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 734 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 734 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 734 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 735 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 735 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 735 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 736 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 736 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 736 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 737 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 737 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 737 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 738 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 738 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 738 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 739 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 739 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 739 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 740 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 740 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 740 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 741 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 741 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 741 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 742 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 742 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 742 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 743 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 743 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 743 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 744 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 744 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 744 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 745 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 745 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 745 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 746 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 746 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 746 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 747 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 747 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 747 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 748 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 748 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 748 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 749 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 749 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 749 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 750 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 750 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 750 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 751 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 751 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 751 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 752 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 752 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 752 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 753 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 753 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 753 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 754 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 754 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 754 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 755 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 755 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 755 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 756 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 756 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 756 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 757 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 757 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 757 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 758 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 758 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 758 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 759 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 759 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 759 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 760 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 760 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 760 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 761 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 761 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 761 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 762 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 762 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 762 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 763 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 763 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 763 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 764 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 764 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 764 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 765 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 765 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 765 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 766 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 766 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 766 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 767 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 767 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 767 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 768 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 768 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 768 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 769 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 769 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 769 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 770 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 770 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 770 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 771 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 771 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 771 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 772 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 772 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 772 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 773 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 773 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 773 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 774 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 774 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 774 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 775 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 775 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 775 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 776 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 776 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 776 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 777 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 777 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 777 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 778 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 778 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 778 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 779 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 779 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 779 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 780 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 780 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 780 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 781 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 781 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 781 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 782 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 782 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 782 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 783 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 783 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 783 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 784 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 784 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 784 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 785 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 785 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 785 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 786 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 786 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 786 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 787 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 787 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 787 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 788 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 788 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 788 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 789 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 789 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 789 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 790 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 790 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 790 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 791 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 791 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 791 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 792 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 792 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 792 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 793 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 793 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 793 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 794 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 794 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 794 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 795 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 795 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 795 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 796 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 796 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 796 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 797 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 797 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 797 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 798 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 798 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 798 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 799 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 799 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 799 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 800 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 800 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 800 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 801 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 801 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 801 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 802 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 802 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 802 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 803 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 803 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 803 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 804 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 804 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 804 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 805 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 805 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 805 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 806 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 806 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 806 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 807 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 807 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 807 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 808 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 808 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 808 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 809 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 809 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 809 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 810 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 810 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 810 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 811 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 811 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 811 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 812 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 812 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 812 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 813 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 813 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 813 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 814 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 814 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 814 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 815 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 815 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 815 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 816 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 816 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 816 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 817 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 817 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 817 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 818 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 818 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 818 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 819 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 819 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 819 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 820 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 820 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 820 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 821 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 821 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 821 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 822 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 822 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 822 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 823 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 823 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 823 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 824 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 824 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 824 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 825 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 825 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 825 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 826 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 826 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 826 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 827 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 827 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 827 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 828 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 828 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 828 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 829 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 829 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 829 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 830 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 830 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 830 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 831 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 831 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 831 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 832 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 832 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 832 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 833 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 833 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 833 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 834 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 834 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 834 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 835 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 835 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 835 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 836 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 836 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 836 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 837 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 837 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 837 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 838 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 838 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 838 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 839 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 839 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 839 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 840 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 840 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 840 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 841 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 841 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 841 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 842 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 842 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 842 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 843 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 843 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 843 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 844 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 844 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 844 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 845 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 845 | Symbol 103 as "bgPiece" |
| ExportAssets (56) | Timeline Frame 845 | Symbol 103 as "bgPiece" |
Labels
| "title" | Frame 56 |
| "instructions" | Frame 57 |
| "go" | Frame 60 |
| "gameInit" | Frame 66 |
| "bossInit" | Frame 67 |
| "failStage" | Frame 415 |
| "failBoss" | Frame 417 |
| "normalEnding" | Frame 1301 |
| "goodEnding" | Frame 1302 |
| "dying" | Symbol 28 MovieClip [spriteGoodDoc] Frame 5 |
| "dying" | Symbol 33 MovieClip [enemyFD] Frame 5 |
| "pose" | Symbol 71 MovieClip [enemyBoss] Frame 1 |
| "move" | Symbol 71 MovieClip [enemyBoss] Frame 5 |
| "wave" | Symbol 71 MovieClip [enemyBoss] Frame 11 |
| "flurryattack" | Symbol 71 MovieClip [enemyBoss] Frame 30 |
| "flurryretreat" | Symbol 71 MovieClip [enemyBoss] Frame 33 |
| "die" | Symbol 71 MovieClip [enemyBoss] Frame 45 |
| "neutral" | Symbol 100 MovieClip [playerSprite] Frame 1 |
| "forward" | Symbol 100 MovieClip [playerSprite] Frame 5 |
| "backward" | Symbol 100 MovieClip [playerSprite] Frame 10 |
| "dying" | Symbol 100 MovieClip [playerSprite] Frame 16 |
Dynamic Text Variables
| file | Symbol 9 EditableText | "filename.swf" |
| file | Symbol 29 EditableText | "filename.swf" |
| fileTotal | Symbol 108 EditableText | "" |
| transSpeed | Symbol 109 EditableText | "" |
| transLeft | Symbol 110 EditableText | "" |
| downKB | Symbol 111 EditableText | "" |
| playerScore | Symbol 156 EditableText | "00000" |
|
|