STORY LOOP FURRY PORN GAMES C SERVICES [?] [R] RND POPULAR | Archived flashes: 229595 |
/disc/ · /res/ — /show/ · /fap/ · /gg/ · /swf/ | P0001 · P2595 · P5190 |
This is the info page for Flash #27385 |
0 |
CREDITS |
local high scores |
1 |
10 |
9 |
8 |
7 |
6 |
5 |
4 |
3 |
2 |
Name1 |
Name10 |
Name9 |
Name8 |
Name7 |
Name6 |
Name5 |
Name4 |
Name3 |
Name2 |
Arrow keys left and right Move bat around central drain |
Try to stop balls falling down central drain |
Press "P" at any time to pause the game |
Powerup meter, shows how long your current powerup will last |
Reverse gravity |
Next level |
Speed up bat |
Slow down bat |
Small bat |
Fireball |
Drain cover |
Double bat |
Laser |
Rockets |
Large bat |
Multi ball |
Bomb |
No gravity |
fps |
level |
ActionScript [AS1/AS2]
Frame 1if (_root._framesloaded == _root._totalframes) { gotoAndPlay (4); } function startStarBurst(x, y) { startCountedStarBurst(x, y, 5, ("QuickStar" + random(2)) + 1); } function printFps() { if (_root.DEBUG) { myDate = new Date(); start_time = myDate.getTime(); iFpsFrameCount++; time = start_time - iFpsFrameTime; if (time > 1000) { iFpsFrames = (iFpsFrameCount * 1000) / time; iFpsFrameTime = start_time; iFpsTotalFrames = iFpsTotalFrames + iFpsFrameCount; printable_fps = iFpsFrameCount; iFpsNumCalls++; iFpsFrameCount = 0; } fps = printable_fps; fpsdebug = int(iFpsTotalFrames / iFpsNumCalls); } else { fpsdebug = ""; } } function timerStart(timerID, timerIterations) { _root.timerMaxIterations[timerID] = timerIterations; myTime = new Date(); _root.timerStartTime[timerID] = myTime.getTime(); _root.timerTotalTime[timerID] = 0; } function timerEnd(timerID) { _root.timerIterations[timerID]++; myTime = new Date(); timerEndTime = myTime.getTime(); _root.timerTotalTime[timerID] = _root.timerTotalTime[timerID] + (timerEndTime - _root.timerStartTime[timerID]); if (_root.timerIterations[timerID] == _root.timerMaxIterations[timerID]) { _root.timerIterations[timerID] = 0; _root.timerTotalTime[timerID] = 0; } } function timerPrint(timerID, obj) { obj = _root.timerTotalTime[timerID]; } function startParticleExplosion(x, y) { var objD; var rnd; var thisStar; var iAngle; var i = 0; while (i < 20) { objD = depth[STAR_OBJ]; attachMovie("ExplodeParticle", "Star" + objD[CURRENT_DEPTH], objD[CURRENT_DEPTH]); thisStar = _root["Star" + objD[CURRENT_DEPTH]]; updateDepth(objD); thisStar._x = x; thisStar._y = y; iAngle = random(360); thisStar.vx = Math.sin(iAngle); thisStar.vy = Math.cos(iAngle); rnd = Math.random() * 3; thisStar.vx = thisStar.vx * rnd; thisStar.vy = thisStar.vy * (1 + rnd); i++; } } function updateDepth(obj) { if (obj[CURRENT_DEPTH] > (obj[MIN_DEPTH] + obj[NUM_OBJECTS])) { obj[CURRENT_DEPTH] = obj[MIN_DEPTH]; } else { obj[CURRENT_DEPTH]++; } } function drawLine(xStart, yStart, xStop, yStop, col) { _root.attachMovie("baseLine", "Line" + _root.iDepth, _root.iDepth); _root["Line" + _root.iDepth]._x = xStart; _root["Line" + _root.iDepth]._y = yStart; _root["Line" + _root.iDepth]._xscale = xStop - xStart; _root["Line" + _root.iDepth]._yscale = yStop - yStart; c = new Color(_root["Line" + _root.iDepth]); c.setRGB(col); _root.iDepth++; } function drawLineAtDepth(xStart, yStart, xStop, yStop, aDepth, col) { _root.attachMovie("baseLine", "Line" + aDepth, aDepth); _root["Line" + aDepth]._x = xStart; _root["Line" + aDepth]._y = yStart; _root["Line" + aDepth]._xscale = xStop - xStart; _root["Line" + aDepth]._yscale = yStop - yStart; c = new Color(_root["Line" + aDepth]); c.setRGB(col); } function locToGlob(object, valx, valy) { po = new object(); po.x = valx; po.y = valy; object.localToGlobal(po); return(po); } DEBUG = false; VERSION_FULL = 1; VERSION_DEMO = 0; VERSION = VERSION_DEMO; DESIGN = false; ROOT_URL = "http://www.arcadetown.com/xbound"; HI_SCORE_SCRIPT = ROOT_URL + "/hiscore.asp"; MAX_DEMO_LEVELS = 4; _root.ringWidth = 450; _root.txtRingWidth = 495; _root.drainCoverRadius = 19; _root.ballRadius = 8; DEFAULT_BALL_MAX_MOVE = 20; DEFAULT_BALL_MOVE_STEP = 5; currentPickups = new Array(); currentPickupsCount = new Array(); extraLifeScore = 5000; LEVELS_SCORE_MULTIPLIER = 50; BALLS_SCORE_MULTIPLIER = 30; RUN = 1; TEST = 2; mode = RUN; BRICK_OBJ = 0; TEMP_OBJ = 1; STAR_OBJ = 2; PICKUP_OBJ = 3; BALL_OBJ = 4; SECTOR_OBJ = 5; LAUNCHER_OBJ = 6; POINTS_OBJ = 7; BULLET_OBJ = 8; EXPLODE_OBJ = 9; MISC_OBJ = 10; SPECIAL_BRICK_OBJ = 11; PICKUP_BRICK_OBJ = 12; CURRENT_DEPTH = 0; MIN_DEPTH = 1; NUM_OBJECTS = 2; sin = Math.sin; cos = Math.cos; atan2 = Math.atan2; ht = hitTest; minDist = new Array(); maxDist = new Array(); ballIndex = new Array(); var depth = new Array(); starDepth = 100; numStars = 20; pausedDepth = 81000 /* 0x013C68 */; depth[PICKUP_OBJ] = [4000, 4000, 30]; depth[STAR_OBJ] = [2000, 2000, 400]; depth[BRICK_OBJ] = [500, 500, 300]; depth[TEMP_OBJ] = [1000, 1000, 400]; depth[BALL_OBJ] = [6000, 6000, 50]; depth[SECTOR_OBJ] = [950, 950, 80]; depth[LAUNCHER_OBJ] = [900, 900, 10]; depth[POINTS_OBJ] = [9000, 9000, 40]; depth[BULLET_OBJ] = [10000, 10000, 2]; depth[EXPLODE_OBJ] = [11000, 11000, 20]; depth[MISC_OBJ] = [51000, 51000, 100]; depth[SPECIAL_BRICK_OBJ] = [850, 850, 40]; depth[PICKUP_BRICK_OBJ] = [500000, 500000, 500]; INVULN_DEPTH = 690000 /* 0x0A8750 */; BAT_DEPTH = 700000 /* 0x0AAE60 */; BEAM_DEPTH = 900000 /* 0x0DBBA0 */; BULLET_LAUNCHER_DEPTH = 800000 /* 0x0C3500 */; EXTRA_LIFE_DEPTH = 901000 /* 0x0DBF88 */; LEVEL_COMPLETE_DEPTH = 901001 /* 0x0DBF89 */; NAG_SCREEN_DEPTH = 901002 /* 0x0DBF8A */; LEVEL_PANEL_DEPTH = 901004 /* 0x0DBF8C */; QUIT_DEPTH = 910192 /* 0x0DE370 */; launcherDepth = 5900; scoreDepth = 9000; pickupDepth = 9100; iDepth = 19000; ballNum = 0; maxBalls = 10; bounce = 0.8; contact = new array(); contactcnt = 0; width = 550; halfWidth = 320; halfHeight = 240; brick_middle_x = halfWidth; brick_middle_y = halfHeight; rad = (Math.PI/180); ang2rad = rad; rad2ang = 57.2957795130823; __45__ = 45 * rad; __90__ = 90 * rad; __180__ = 180 * rad; __360__ = 360 * rad; brickSizeAngle = 11.25; brickSizeAngleRad = brickSizeAngle * rad; numBrickSectors = 32; numBrickLayers = 7; distanceBrickLayers = [213, 196, 179, 163, 125, 83, 25]; specialBricks = numBrickSectors * numBrickLayers; numSpecialBricks = 0; iFpsTotalFrames = 0; iFpsNumCalls = 0; iFpsFrameCount = 0; iFpsFrames = 0; iFpsFrameTime = 0; printable_fps = 0; timerIterations = new Array(10); timerTotalTime = new Array(10); timerStartTime = new Array(10); timerMaxIterations = new Array(10); timerIterations[0] = 0; BR_NORMAL = 1; BR_GLASS = 2; BR_INDESTRUCTABLE = 4; BR_BOUNCY = 8; BR_S_BARRIER = 16; BR_D_BARRIER = 32; BR_I_BARRIER = 64; BR_C_BARRIER = 128; var levelData = new Array(new Array(0, 0, 0, 1179649, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1179649, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1179649, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1179649, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, "#", "@"), new Array(0, 0, 983041, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 655361, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 983041, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 655361, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, "#", "@"), new Array(1179649, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 655361, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1114113, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 458753, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, "#", "@"), new Array(0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 458753, 1, 1, 983041, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 458753, 1, 1, 983041, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 458753, 1, 1, 983041, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 655361, 1, 1, 983041, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 655361, 1, 1, 983041, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 655361, 1, 1, 983041, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, "#", "@"), new Array(0, 4, 0, 0, 0, 0, 0, 1, 1, 1, 589825, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 1, 1, 1, 655361, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 1, 1, 1, 196609, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 1, 1, 1, 655361, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, "#", "@"), new Array(0, 1, 1, 0, 0, 0, 0, 0, 1179649, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1179649, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1114113, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1179649, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1114113, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1179649, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1179649, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1179649, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1114113, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1179649, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1179649, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1114113, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1179649, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1179649, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1114113, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1179649, 1, 0, 0, 0, 0, "#", "@"), new Array(1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 32, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 32, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 32, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 32, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, "#", "@"), new Array(131073, 0, 4, 4, 0, 0, 0, 0, 0, 4, 4, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 655361, 4, 1, 524289, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 655361, 4, 1, 458753, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 4, 4, 0, 0, 0, "#", 128, 300.95, 62, 128, 338.95, 62, 128, 372.95, 69, "@"), new Array(1, 0, 0, 4, 32, 0, 0, 1376257, 0, 0, 4, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 4, 32, 0, 0, 1376257, 0, 0, 4, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, "#", "@"), new Array(0, 1, 4, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, "#", "@"), new Array(0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "#", 128, 489.95, 291.95, 128, 458.95, 352.95, 128, 403.95, 395.95, 128, 337.95, 417.95, 128, 268.95, 410.95, 128, 476.95, 156, 128, 497.95, 222, 128, 432.95, 102, 128, 371.95, 69, 128, 301.95, 62, 128, 235.95, 81, 128, 142.95, 257, 128, 162.95, 323.95, 128, 207.95, 376.95, 128, 181.95, 125, 128, 147.95, 187, "@"), new Array(0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 196609, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 4, 1, 0, 0, 0, 0, 1, 4, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 655361, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 4, 1, 0, 0, 0, 0, 1, 4, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 655361, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 655361, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 4, 1, 0, 0, 0, 0, 1441793, 4, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 655361, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1376257, 4, 1, 0, 0, 0, 0, 1376257, 4, 1, 0, 0, 0, 0, "#", "@"), new Array(4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 1, 1, 1, 131073, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 655361, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1441793, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 131073, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1441793, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 131073, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1441793, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 720897, 0, 0, 0, "#", 128, 408.95, 132, 128, 457.95, 226, 128, 427.95, 328.95, 128, 333.95, 376.95, 128, 304.95, 100, 128, 212.95, 154, 128, 183.95, 253, 128, 231.95, 346.95, "@"), new Array(1, 786433, 4, 4, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 4, 4, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1441793, 4, 4, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 655361, 0, 32, 0, 0, 1, 0, 655361, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1441793, 4, 4, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 196609, 4, 4, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 196609, 4, 4, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1179649, 4, 4, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1179649, 4, 4, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 131073, 4, 4, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 131073, 4, 4, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, "#", 128, 491.95, 189, 128, 433.95, 102, 128, 336.95, 61, 128, 235.95, 83, 128, 162.95, 156, 128, 141.95, 259, 128, 180.95, 352.95, 128, 267.95, 409.95, 128, 370.95, 409.95, 128, 457.95, 350.95, 128, 408.95, 258, "@"), new Array(1, 1, 655361, 0, 0, 64, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 64, 0, 1, 1, 1, 262145, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 64, 0, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 262145, 0, 64, 0, 1, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 655361, 0, 0, 64, 0, 1, 1, 655361, 655361, 0, 0, 0, "#", "@"), new Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1114113, 0, 0, 0, 32, 64, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 32, 64, 0, 917505, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 32, 64, 0, 589825, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "#", "@"), new Array(0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 32, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1441793, 1, 1, 1, 0, 0, 0, 131073, 1, 1, 1, 0, 0, 0, 720897, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 32, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1376257, 1, 1, 1, 32, 0, 0, 1376257, 1, 1, 1, 0, 0, 0, "#", "@"), new Array(1, 1, 1, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 32, 64, 0, 4, 4, 4, 4, 0, 0, 0, 4, 4, 4, 4, 32, 0, 0, 4, 4, 720900, 4, 0, 0, 0, 4, 4, 720900, 4, 32, 0, 0, 4, 4, 4, 4, 0, 0, 0, 4, 4, 4, 4, 32, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "#", "@"), new Array(1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 131073, 0, 0, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 262145, 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 655361, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 393217, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 65537, 1, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 851969, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 655361, 1, 1, 1, 0, 0, 0, "#", "@"), new Array(1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 32, 0, 0, 1, 0, 1, 1, 0, 0, 0, 1, 0, 1, 1, 32, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, "#", 128, 297.95, -2, 128, 393.95, 8, 128, 515.95, 238, 128, 127.95, 237, "@"), new Array(0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 32, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 32, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 32, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, "#", "@"), new Array(0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 32, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 32, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 32, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, "#", "@"), new Array(0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, "#", "@"), new Array(1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 917505, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "#", "@"), new Array(0, 1, 4, 1, 0, 0, 0, 0, 1, 4, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 4, 1, 0, 0, 0, 0, 1, 4, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 4, 1, 0, 0, 0, 0, 1, 4, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 4, 1, 1, 0, 0, 0, 917505, 4, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 4, 1, 0, 0, 0, 0, 1, 4, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 4, 1, 0, 0, 0, 0, 1, 4, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 4, 1, 0, 0, 0, 0, 1, 4, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 4, 1, 0, 0, 0, 0, 1, 4, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, "#", "@"), new Array(1, 1, 1, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "#", "@"), new Array(0, 4, 1, 1, 0, 0, 0, 131073, 1, 0, 0, 0, 0, 0, 131073, 1, 0, 0, 0, 0, 0, 0, 4, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 4, 1, 1, 0, 0, 0, 851969, 1, 0, 0, 0, 0, 0, 851969, 1, 0, 0, 0, 0, 0, 0, 4, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 4, 1, 1, 0, 0, 0, 655361, 1, 0, 0, 0, 0, 0, 655361, 1, 0, 0, 0, 0, 0, 0, 4, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, "#", 128, 387.95, 76, 128, 419.95, 387.95, 128, 144.95, 273.95, "@"), new Array(1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 655361, 4, 1, 1, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1376257, 4, 1, 1, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 1376257, 4, 1, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 851969, 4, 1, 1, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 917505, 4, 1, 1, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1376257, 4, 1, 1, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 1376257, 4, 1, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 1, 4, 1, 1, 0, 0, 0, 1179649, 0, 1, 655361, 0, 0, 0, 1, 4, 1, 1, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, "#", "@"), new Array(0, 4, 1, 1, 0, 0, 0, 0, 131073, 4, 1, 0, 0, 0, 0, 1, 1, 4, 16, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 1, 4, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 4, 1, 0, 0, 0, 0, 4, 1, 1, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 4, 1, 1, 0, 0, 0, 0, 1, 4, 1, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 1, 4, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 1, 4, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 1, 4, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 4, 1, 0, 0, 0, 0, 4, 1, 1, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 4, 1, 1, 0, 0, 0, 0, 720897, 4, 1, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 1, 4, 16, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 1, 4, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 1, 4, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 4, 1, 0, 0, 0, 0, 4, 1, 1, 0, 0, 0, "#", "@"), new Array(1, 4, 4, 1, 0, 0, 0, 1, 4, 4, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 4, 4, 1, 0, 0, 0, 1, 4, 4, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 4, 4, 1, 0, 0, 0, 1, 4, 4, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 4, 4, 1, 0, 0, 0, 1, 4, 4, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 4, 4, 1, 0, 0, 0, 1, 4, 4, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 4, 4, 1, 0, 0, 0, 1, 4, 4, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 4, 4, 1, 0, 0, 0, 1, 4, 4, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 4, 4, 1, 0, 0, 0, 1, 4, 4, 1, 32, 64, 0, 1, 1, 1, 1, 0, 0, 0, 655361, 655361, 655361, 655361, 32, 64, 0, 1, 1, 1, 1, 0, 0, 0, 1, 4, 4, 1, 0, 0, 0, 1, 4, 4, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 4, 4, 1, 0, 0, 0, 1, 4, 4, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, "#", "@"), new Array(4, 1, 1, 1, 32, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 64, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 4, 655361, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 64, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 4, 32, 0, 0, 1, 1, 1048577, 4, 0, 0, 0, 1, 1, 1, 4, 0, 64, 0, 1, 1, 1, 1, 0, 0, 0, 1, 851969, 4, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 64, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 32, 0, 0, 1, 1, 1, 1, 0, 0, 0, 4, 1, 1, 1, 0, 64, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1441793, 4, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 64, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 32, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 64, 0, 1, 1, 4, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 4, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 64, 0, 131073, 4, 1, 1, 0, 0, 0, "#", "@"), new Array(1, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, "#", "@"), new Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 655361, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 196609, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 589825, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 655361, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "#", 128, 364.95, 115, 128, 376.95, 369.95, 128, 244.95, 328.95, 128, 207.95, 101, 128, 446.95, 294.95, 128, 180.95, 217, 128, 466.95, 155, 128, 300.95, 46, "@"), new Array(1, 1, 1, 4, 0, 0, 0, 1, 1, 1, 4, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 4, 0, 0, 0, 1, 1, 1, 4, 0, 0, 0, 1, 1, 1, 4, 0, 0, 0, 1, 1, 655361, 4, 0, 0, 0, 1, 1, 655361, 4, 0, 0, 0, 1, 1, 1, 4, 0, 0, 0, 1, 1, 1, 4, 0, 0, 0, 1, 1, 1, 4, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 4, 0, 0, 0, 1, 1, 1, 4, 0, 0, 0, 1, 1, 1, 4, 0, 0, 0, 1, 1, 655361, 4, 0, 0, 0, 1, 1, 1, 4, 0, 0, 0, 1, 1, 1, 4, 0, 0, 0, 1, 1, 655361, 4, 0, 0, 0, 1, 1, 1, 4, 0, 0, 0, 1, 1, 1, 4, 0, 0, 0, 1, 1, 1, 4, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 4, 0, 0, 0, 1, 1, 1, 4, 0, 0, 0, 1, 1, 1, 4, 0, 0, 0, 1, 1, 655361, 4, 0, 0, 0, 1, 1, 655361, 4, 0, 0, 0, 1, 1, 1, 4, 0, 0, 0, "#", "@"), new Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 32, 64, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 32, 64, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 917505, 4, 1, 1, 32, 64, 0, 1, 4, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 32, 64, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "#", "@"), new Array(0, 4, 1, 1, 32, 64, 0, 0, 4, 1, 1, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 1, 65537, 32, 64, 0, 0, 4, 1, 1, 0, 0, 0, 0, 4, 1, 1, 32, 64, 0, 0, 4, 1, 1, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 1, 262145, 32, 64, 0, 0, 4, 1, 1, 0, 0, 0, 0, 4, 1, 1, 32, 64, 0, 0, 4, 1, 1, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 1, 131073, 32, 64, 0, 0, 4, 1, 1, 0, 0, 0, "#", "@"), new Array(0, 0, 0, 655361, 0, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1376257, 0, 1, 32, 0, 0, 0, 1376257, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 0, 0, 0, 0, 655361, 0, 0, 0, 0, 0, 0, 0, 32, 64, 0, 0, 0, 0, 0, 0, 0, 0, "#", 128, 255.95, 112, 128, 336.95, 97, 128, 308.95, 347.95, 128, 369.95, 337.95, 128, 423.95, 192, 128, 471.95, 186, 128, 188.95, 228, "@"), new Array(1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 851969, 16, 64, 0, 1, 0, 0, 720897, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1441793, 16, 64, 0, 1, 0, 0, 1441793, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 655361, 16, 64, 0, 1, 0, 0, 655361, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1179649, 16, 64, 0, 1, 0, 0, 1245185, 0, 0, 0, "#", "@"), new Array(1, 0, 1, 4, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 4, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 4, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 4, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 4, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 4, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 4, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 4, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 4, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 4, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 4, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 4, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 4, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 4, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 4, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 4, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, "#", "@"), new Array(0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 917505, 0, 0, 0, 0, 0, 0, 0, 32, 64, 0, 1, 1, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 32, 64, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 0, 0, 917505, 32, 64, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 1, 0, 1, 32, 64, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 131073, 1, 1, 1, 32, 64, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 32, 64, 0, 0, 458753, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 655361, 1, 0, 0, 0, 0, 0, 0, 0, 0, 32, 64, 0, 1, 1, 1, 1, 0, 0, 0, 720897, 0, 1, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 32, 64, 0, 1, 1, 1, 1, 0, 0, 0, "#", "@"), new Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1376257, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1376257, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 32, 64, 0, 1, 4, 4, 4, 0, 0, 0, 1, 4, 4, 4, 32, 64, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "#", 128, 163.95, 156, 128, 161.95, 323.95, "@")); level = 0; MAX_LEVEL = levelData.length - 1; function startCountedStarBurst(x, y, numStars, obj) { var objD; var rnd; var thisStar; var iAngle; var i = 0; while (i < numStars) { objD = depth[STAR_OBJ]; attachMovie(obj, "Star" + objD[CURRENT_DEPTH], objD[CURRENT_DEPTH]); thisStar = _root["Star" + objD[CURRENT_DEPTH]]; updateDepth(objD); thisStar._x = x; thisStar._y = y; iAngle = random(360); thisStar.vx = Math.sin(iAngle); thisStar.vy = Math.cos(iAngle); i++; } } PUVAR_RANDOM = 0; PUVAR_CLIP_NAME = 1; PUVAR_DURATION = 2; PUVAR_LEVEL = 3; PUVAR_SCORE = 4; PUVAR_VERSION = 5; PU_SHIFT = 16; PU_MASK = 255; PU_DRAIN_COVER = 22; PU_NO_GRAVITY = 1; PU_FIREBALL = 2; PU_DOUBLE_BAT = 3; PU_REVERSE_GRAVITY = 4; PU_SPEED_UP = 5; PU_SPEED_DOWN = 6; PU_LARGE_BAT = 7; PU_SMALL_BAT = 8; PU_MULTI_BALL = 9; PU_BOMB = 10; PU_NEXT_LEVEL = 11; PU_REVERSE_BAT = 12; PU_MULTI_LASER = 13; PU_SINGLE_LASER = 14; PU_CHERRY = 15; PU_RASPBERRY = 16; PU_BANANA = 17; PU_BANANA_BUNCH = 18; PU_MELON = 19; PU_EATEN_MELON = 20; PU_DIAMOND = 21; PU_NUM = 23; PU_NONE = 16777215 /* 0xFFFFFF */; pickupObject = new Array(); pickupObject[PU_DRAIN_COVER] = [50, "DrainCoverPickup", 700, 1, 0, _root.VERSION_DEMO]; pickupObject[PU_NO_GRAVITY] = [40, "NoGravityPickup", 300, 0, 0, _root.VERSION_DEMO]; pickupObject[PU_FIREBALL] = [40, "FireballPickup", 900, 4, 0, _root.VERSION_DEMO]; pickupObject[PU_DOUBLE_BAT] = [85, "DoubleBatPickup", 900, 0, 0, _root.VERSION_DEMO]; pickupObject[PU_REVERSE_GRAVITY] = [50, "ReverseGravityPickup", 300, 0, 0, _root.VERSION_DEMO]; pickupObject[PU_SPEED_UP] = [90, "SpeedUpPickup", -1, 0, 0, _root.VERSION_DEMO]; pickupObject[PU_SPEED_DOWN] = [90, "SpeedDownPickup", -1, 0, 0, _root.VERSION_DEMO]; pickupObject[PU_LARGE_BAT] = [90, "BigBatPickup", 800, 0, 0, _root.VERSION_DEMO]; pickupObject[PU_SMALL_BAT] = [70, "LittleBatPickup", 600, 0, 0, _root.VERSION_DEMO]; pickupObject[PU_MULTI_BALL] = [10, "MultiBallPickup", -1, 0, 0, _root.VERSION_FULL]; pickupObject[PU_BOMB] = [95, "BombPickup", -1, 2, 0, _root.VERSION_DEMO]; pickupObject[PU_NEXT_LEVEL] = [5, "NextLevelPickup", -1, 3, 0, _root.VERSION_DEMO]; pickupObject[PU_REVERSE_BAT] = [5, "ReverseBatPickup", 600, 15, 0, _root.VERSION_FULL]; pickupObject[PU_MULTI_LASER] = [15, "MultiLaserPickup", 300, 6, 0, _root.VERSION_FULL]; pickupObject[PU_SINGLE_LASER] = [10, "SingleLaserPickup", 100, 8, 0, _root.VERSION_FULL]; pickupObject[PU_CHERRY] = [95, "CherryPickup", -1, 5, 150, _root.VERSION_DEMO]; pickupObject[PU_RASPBERRY] = [95, "RaspberryPickup", -1, 0, 10, _root.VERSION_DEMO]; pickupObject[PU_BANANA] = [95, "BananaPickup", -1, 0, 5, _root.VERSION_DEMO]; pickupObject[PU_BANANA_BUNCH] = [80, "BananaBunchPickup", -1, 4, 100, _root.VERSION_FULL]; pickupObject[PU_MELON] = [95, "MelonPickup", -1, 0, 20, _root.VERSION_DEMO]; pickupObject[PU_EATEN_MELON] = [95, "EatenMelonPickup", -1, 0, 5, _root.VERSION_DEMO]; pickupObject[PU_DIAMOND] = [5, "DiamondPickup", -1, 9, 1000, _root.VERSION_FULL]; function drawNum(aNum, aX, aY, aObj, aCircle, aDeg, aDepth, showZeros, aScale) { drawNum(aNum, aX, aY, aObj, aCircle, aDeg, aDepth, showZeros, aScale, false); } function drawSingleNum(aNum, aX, aY, aObj, showZeros, centred, aScale) { if (!aScale) { aScale = 100; } var addName = "_gfx"; var aDepth = 10101010110; var hundreds_thousands = int(aNum / 100000); aNum = aNum - (hundreds_thousands * 100000); var tens_thousands = int(aNum / 10000); aNum = aNum - (tens_thousands * 10000); var thousands = int(aNum / 1000); aNum = aNum - (thousands * 1000); var hundreds = int(aNum / 100); aNum = aNum - (hundreds * 100); var tens = int(aNum / 10); aNum = aNum - (tens * 10); var ones = int(aNum); ht = "hundreds_thousands" + addName; th = "tens_thousands" + addName; t = "thousands" + addName; h = "hundreds" + addName; ts = "tens" + addName; o = "ones" + addName; var len = 1; if ((hundreds_thousands != 0) || (showZeros)) { len++; showZeros = true; aObj.attachMovie(hundreds_thousands + addName, ht, aDepth++); } if ((tens_thousands != 0) || (showZeros)) { len++; showZeros = true; aObj.attachMovie(tens_thousands + addName, th, aDepth++); } if ((thousands != 0) || (showZeros)) { len++; showZeros = true; aObj.attachMovie(thousands + addName, t, aDepth++); } if ((hundreds != 0) || (showZeros)) { len++; showZeros = true; aObj.attachMovie(hundreds + addName, h, aDepth++); } if ((tens != 0) || (showZeros)) { len++; showZeros = true; aObj.attachMovie(tens + addName, ts, aDepth++); } aObj.attachMovie(ones + addName, o, aDepth++); aObj[ht]._xscale = (aObj[ht]._yscale = aScale); aObj[th]._xscale = (aObj[th]._yscale = aScale); aObj[t]._xscale = (aObj[t]._yscale = aScale); aObj[h]._xscale = (aObj[h]._yscale = aScale); aObj[ts]._xscale = (aObj[ts]._yscale = aScale); aObj[o]._xscale = (aObj[o]._yscale = aScale); var charWidth = (20 * (aScale / 100)); var charSpacing = (charWidth - (10 * (aScale / 100))); aObj[ht]._y = (aObj[th]._y = (aObj[t]._y = (aObj[h]._y = (aObj[ts]._y = (aObj[o]._y = aY))))); if (centred) { var leftmost = (0.5 * ((charWidth * len) - charSpacing)); aObj[ht]._x = (aObj[th]._x = (aObj[t]._x = (aObj[h]._x = (aObj[ts]._x = (aObj[o]._x = aX - leftmost))))); } else { aObj[ht]._x = (aObj[th]._x = (aObj[t]._x = (aObj[h]._x = (aObj[ts]._x = (aObj[o]._x = aX))))); } len--; aObj[ht]._x = aObj[ht]._x + (charWidth * (len - 5)); aObj[th]._x = aObj[th]._x + (charWidth * (len - 4)); aObj[t]._x = aObj[t]._x + (charWidth * (len - 3)); aObj[h]._x = aObj[h]._x + (charWidth * (len - 2)); aObj[ts]._x = aObj[ts]._x + (charWidth * (len - 1)); aObj[o]._x = aObj[o]._x + (charWidth * len); } function drawNum(aNum, aX, aY, aObj, aCircle, aDeg, aDepth, showZeros, aScale, aUseGfx) { if (aUseGfx) { addName = "_gfx"; } else { addName = ""; } if (aNum < 0) { aNum = 0; } aObj._x = aX; aObj._y = aY; var hundreds_hundreds_thousands = int(aNum / 10000000); aNum = aNum - (hundreds_hundreds_thousands * 10000000); var tens_hundreds_thousands = int(aNum / 1000000); aNum = aNum - (tens_hundreds_thousands * 1000000); var hundreds_thousands = int(aNum / 100000); aNum = aNum - (hundreds_thousands * 100000); var tens_thousands = int(aNum / 10000); aNum = aNum - (tens_thousands * 10000); var thousands = int(aNum / 1000); aNum = aNum - (thousands * 1000); var hundreds = int(aNum / 100); aNum = aNum - (hundreds * 100); var tens = int(aNum / 10); aNum = aNum - (tens * 10); var ones = int(aNum); hht = "hundreds_hundreds_thousands" + addName; tht = "tens_hundreds_thousands" + addName; ht = "hundreds_thousands" + addName; th = "tens_thousands" + addName; t = "thousands" + addName; h = "hundreds" + addName; ts = "tens" + addName; o = "ones" + addName; if ((hundreds_hundreds_thousands != 0) || (showZeros)) { showZeros = true; aObj.attachMovie(hundreds_hundreds_thousands + addName, hht, aDepth++); } if ((tens_hundreds_thousands != 0) || (showZeros)) { showZeros = true; aObj.attachMovie(tens_hundreds_thousands + addName, tht, aDepth++); } if ((hundreds_thousands != 0) || (showZeros)) { showZeros = true; aObj.attachMovie(hundreds_thousands + addName, ht, aDepth++); } if ((tens_thousands != 0) || (showZeros)) { showZeros = true; aObj.attachMovie(tens_thousands + addName, th, aDepth++); } if ((thousands != 0) || (showZeros)) { showZeros = true; aObj.attachMovie(thousands + addName, t, aDepth++); } if ((hundreds != 0) || (showZeros)) { showZeros = true; aObj.attachMovie(hundreds + addName, h, aDepth++); } if ((tens != 0) || (showZeros)) { showZeros = true; aObj.attachMovie(tens + addName, ts, aDepth++); } aObj.attachMovie(ones + addName, o, aDepth++); if (aUseGfx) { aObj[hht]._xscale = (aObj[hht]._yscale = aScale); aObj[tht]._xscale = (aObj[tht]._yscale = aScale); aObj[ht]._xscale = (aObj[ht]._yscale = aScale); aObj[th]._xscale = (aObj[th]._yscale = aScale); aObj[t]._xscale = (aObj[t]._yscale = aScale); aObj[h]._xscale = (aObj[h]._yscale = aScale); aObj[ts]._xscale = (aObj[ts]._yscale = aScale); aObj[o]._xscale = (aObj[o]._yscale = aScale); } else { aObj[hht].num._xscale = (aObj[hht].num._yscale = aScale); } aObj[tht].num._xscale = (aObj[tht].num._yscale = aScale); aObj[ht].num._xscale = (aObj[ht].num._yscale = aScale); aObj[th].num._xscale = (aObj[th].num._yscale = aScale); aObj[t].num._xscale = (aObj[t].num._yscale = aScale); aObj[h].num._xscale = (aObj[h].num._yscale = aScale); aObj[ts].num._xscale = (aObj[ts].num._yscale = aScale); aObj[o].num._xscale = (aObj[o].num._yscale = aScale); if (!aCircle) { var charWidth = (20 / (100 / aScale)); aObj[hht]._x = aObj[hht]._x + charWidth; aObj[tht]._x = aObj[tht]._x + (charWidth * 2); aObj[ht]._x = aObj[ht]._x + (charWidth * 3); aObj[th]._x = aObj[th]._x + (charWidth * 4); aObj[t]._x = aObj[t]._x + (charWidth * 5); aObj[h]._x = aObj[h]._x + (charWidth * 6); aObj[ts]._x = aObj[ts]._x + (charWidth * 7); aObj[o]._x = aObj[o]._x + (charWidth * 8); } else { var r = (_root.txtRingWidth / 2); aObj[hht].num._y = -r; aObj[tht].num._y = -r; aObj[ht].num._y = -r; aObj[th].num._y = -r; aObj[t].num._y = -r; aObj[h].num._y = -r; aObj[ts].num._y = -r; aObj[o].num._y = -r; var charDeg = (5 / (100 / aScale)); aObj.pickupGfx._rotation = aDeg + (charDeg * 5); aObj[hht]._rotation = aDeg; aObj[tht]._rotation = aDeg + charDeg; aObj[ht]._rotation = aDeg + (charDeg * 2); aObj[th]._rotation = aDeg + (charDeg * 3); aObj[t]._rotation = aDeg + (charDeg * 4); aObj[h]._rotation = aDeg + (charDeg * 5); aObj[ts]._rotation = aDeg + (charDeg * 6); aObj[o]._rotation = aDeg + (charDeg * 7); } }Instance of Symbol 224 MovieClip "timerObj" in Frame 1onClipEvent (load) { value = 0; maxValue = 100; valueStep = 100 / maxValue; dp = 1000; totalFileSize = _root.getBytesTotal(); bytesLoaded = _root.getBytesLoaded(); amountLoaded = bytesLoaded / totalFileSize; _root.createEmptyMovieClip("num", 1919); } onClipEvent (enterFrame) { bytesLoaded = _root.getBytesLoaded(); amountLoaded = bytesLoaded / totalFileSize; percentLoaded = int(amountLoaded * 100); j = 0; while (j < 1) { j++; } _root.drawSingleNum(amountLoaded, 320, 260, _root.num, false, true, 100); if (amountLoaded >= 1) { _root.num.removeMovieClip(); _root.gotoAndPlay("Intro"); } }Frame 2stop();Frame 3gotoAndPlay (4);Frame 4_root.hiScoreCall = 0; _root.hiScoresChanged = false; _root.page = "MAINMENU"; _root.gameInPlay = false; Key.removeListener(_root.menuListener); _root.menuListener = new Object(); _root.menuListener.onKeyDown = function () { if (!_root.gameInPlay) { if (_root.page == "MAINMENU") { _root.gotoAndPlay(50); } if (Key.isDown(38)) { if (_root.page == "MAINMENU") { _root.selectedItem--; if ((_root.selectedItem == 1) && (_root.VERSION == _root.VERSION_FULL)) { _root.selectedItem--; } if (_root.selectedItem < 0) { _root.selectedItem = 6; } } } if (Key.isDown(40)) { if (_root.page == "MAINMENU") { _root.selectedItem++; if ((_root.selectedItem == 1) && (_root.VERSION == _root.VERSION_FULL)) { _root.selectedItem++; } if (_root.selectedItem > 6) { _root.selectedItem = 0; } } } if (Key.isDown(37) && ((_root.page == "INSTRUCTIONS") || (_root.page == "HISCORE"))) { _root.selectedItem--; if (_root.selectedItem < 0) { _root.selectedItem = 2; } } if (Key.isDown(39) && ((_root.page == "INSTRUCTIONS") || (_root.page == "HISCORE"))) { _root.selectedItem++; if (_root.selectedItem > 2) { _root.selectedItem = 0; } } if (Key.isDown(32) || (Key.isDown(13))) { switch (_root.page) { case "MAINMENU" : switch (_root.selectedItem) { case 0 : Key.removeListener(_root.someListener); _root.gotoAndPlay("PlayGame"); break; case 1 : _root.gotoAndPlay("Nag"); break; case 2 : _root.gotoAndPlay("Instructions"); break; case 3 : _root.gotoAndPlay("HiScore"); break; case 4 : _root.gotoAndPlay("Credits"); } break; case "INSTRUCTIONS" : switch (_root.selectedItem) { case 0 : _root.gotoAndPlay("Intro", "StaticMainMenu"); break; case 1 : Key.removeListener(_root.someListener); _root.gotoAndPlay("playGame"); break; case 2 : _root.gotoAndPlay("gotoHiScore"); } break; case "HISCORE" : switch (_root.selectedItem) { case 0 : _root.gotoAndPlay("Intro", "StaticMainMenu"); break; case 1 : Key.removeListener(_root.someListener); _root.gotoAndPlay("playGame"); break; case 2 : _root.gotoAndPlay("gotoInstructions"); } break; case "CREDITS" : case "NAG" : case "ATTRACT_INSTRUCTIONS" : case "ATTRACT_HISCORE" : _root.gotoAndPlay("Intro", "StaticMainMenu"); } } if (_root.page == "MAINMENU") { _root["button" + selectedItem].gotoAndStop(3); } } }; Key.addListener(_root.menuListener); var name = _root._url; name = name.substr(name.lastIndexOf("/") + 1, name.length); name = name.substr(8, name.length); name = name.substr(0, name.lastIndexOf(".")); _root.game_version = "v." + (int(name) / 100); _root.selectedItem = 0;Instance of Symbol 310 MovieClip "hiScoreController" in Frame 4onClipEvent (load) { this.showPanels = false; this.refreshEnabled = false; } onClipEvent (enterFrame) { if (_root.hiScoresChanged && (_root._currentframe >= 24)) { _root.gotoAndPlay("playButShow"); } }Frame 27stop();Instance of Symbol 318 MovieClip "button0" in Frame 36on (rollOver) { _root.selectedItem = 0; this.gotoAndPlay(2); _root.gotoAndPlay(50); } on (press) { Key.removeListener(_root.someListener); _root.gotoAndPlay("PlayGame"); }Frame 38Instance of Symbol 321 MovieClip "button1" in Frame 38on (rollOver) { if (_root.VERSION == _root.VERSION_DEMO) { _root.selectedItem = 1; _root.gotoAndPlay(50); } } on (press) { if (_root.VERSION == _root.VERSION_DEMO) { _root.gotoAndPlay("Nag"); } }Instance of Symbol 324 MovieClip "button2" in Frame 40on (rollOver) { _root.selectedItem = 2; _root.gotoAndPlay(50); } on (press) { _root.gotoAndPlay("Instructions"); }Instance of Symbol 327 MovieClip "button3" in Frame 42on (rollOver) { _root.selectedItem = 3; _root.gotoAndPlay(50); } on (press) { _root.gotoAndPlay("HiScore"); }Instance of Symbol 331 MovieClip "button4" in Frame 44on (rollOver) { _root.selectedItem = 4; _root.gotoAndPlay(50); } on (press) { _root.gotoAndPlay("Credits"); }Instance of Symbol 334 MovieClip "button5" in Frame 46on (rollOver) { _root.selectedItem = 5; _root.gotoAndPlay(50); } on (press) { getURL ("http://www.arcadetown.com/index.asp?gameid=xbound", "blank"); }Instance of Symbol 337 MovieClip "button6" in Frame 48on (rollOver) { _root.selectedItem = 6; _root.gotoAndPlay(50); } on (press) { fscommand ("quit"); fscommand ("close"); }Instance of Symbol 313 MovieClip "StaticMainMenu" in Frame 48onClipEvent (enterFrame) { var i = 0; while (i <= 6) { if (i == _root.selectedItem) { if (_root["button" + i]._currentframe != 2) { _root["button" + i].gotoAndPlay(2); } } else if (_root["button" + i]._currentframe != 1) { _root["button" + i].gotoAndPlay(1); } i++; } }Frame 302gotoAndPlay (1003);Frame 303gotoAndPlay (1288);Frame 304gotoAndPlay (581);Frame 305gotoAndPlay (1224);Frame 306gotoAndPlay (1001);Frame 307gotoAndPlay (543);Frame 543_root.gameInPlay = false; _root.page = "CREDITS";Frame 580stop();Frame 581_root.gameInPlay = false; _root.page = "NAG";Frame 698stop();Frame 699_root.gameInPlay = false; _root.page = "HISCORE";Instance of Symbol 367 MovieClip in Frame 699onClipEvent (enterFrame) { var i = 0; while (i <= 2) { if (i == _root.selectedItem) { if (_root["but" + i]._currentframe != 2) { _root["but" + i].gotoAndPlay(2); } } else if (_root["but" + i]._currentframe != 1) { _root["but" + i].gotoAndPlay(1); } i++; } }Instance of Symbol 369 MovieClip in Frame 699onClipEvent (load) { i = 0; while (i < 10) { _root["name" + i] = ""; i++; } _root.hiScoresChanged = true; if (_root.hiScoresChanged) { var i = 0; while (i < _root.localHiScores.length) { _root["name" + i] = _root.localHiNames[i]; var so = _root["score" + i]; _root.drawNum(int(_root.localHiScores[i]), so._x - 20, so._y, so, false, 0, 99999 + (100 * i), false, 70, false); i++; } _root.localGlobalScore = (_root.hiScoreError ? "local high score" : "global high score"); _root.hiScoresChanged = false; } }Instance of Symbol 318 MovieClip "but1" in Frame 699on (rollOver) { _root.selectedItem = 1; } on (press) { _root.gotoAndPlay("playGame"); }Instance of Symbol 324 MovieClip "but2" in Frame 699on (rollOver) { _root.selectedItem = 2; } on (press) { _root.gotoAndPlay("gotoInstructions"); }Instance of Symbol 392 MovieClip "but0" in Frame 699onClipEvent (load) { _root.selectedItem = 0; this.gotoAndStop(2); } on (rollOver) { _root.selectedItem = 0; } on (press) { _root.gotoAndPlay("Intro", "StaticMainMenu"); }Frame 999gotoAndPlay (4);Frame 1000gotoAndPlay (1288);Frame 1001_root.gameInPlay = false; _root.page = "HISCORE"; stop();Frame 1002gotoAndPlay (1224);Frame 1003_root.gameInPlay = false; _root.page = "INSTRUCTIONS";Instance of Symbol 395 MovieClip in Frame 1003onClipEvent (enterFrame) { var i = 0; while (i <= 2) { if (i == _root.selectedItem) { if (_root["but" + i]._currentframe != 2) { _root["but" + i].gotoAndPlay(2); } } else if (_root["but" + i]._currentframe != 1) { _root["but" + i].gotoAndPlay(1); } i++; } }Instance of Symbol 327 MovieClip "but2" in Frame 1003on (rollOver) { _root.selectedItem = 2; } on (press) { _root.gotoAndPlay("gotoHiScore"); }Instance of Symbol 318 MovieClip "but1" in Frame 1003on (rollOver) { _root.selectedItem = 1; } on (press) { _root.gotoAndPlay("playGame"); }Instance of Symbol 392 MovieClip "but0" in Frame 1003onClipEvent (load) { _root.selectedItem = 0; this.gotoAndStop(2); } on (rollOver) { _root.selectedItem = 0; } on (press) { _root.gotoAndPlay("Intro", "StaticMainMenu"); }Frame 1222gotoAndPlay (699);Frame 1223gotoAndPlay (1288);Frame 1224stop(); _root.gameInPlay = false; _root.page = "INSTRUCTIONS";Frame 1225gotoAndPlay (1001);Frame 1242stop();Frame 1288batHit = new Sound(); batHit.attachSound("brickHit2"); electric = new Sound(); electric.attachSound("electric"); laserShoot = new Sound(); laserShoot.attachSound("LaserShoot"); brickHit = new Sound(); brickHit.attachSound("brickHit1"); clankHit = new Sound(); clankHit.attachSound("clankHit"); powerUp = new Sound(); powerUp.attachSound("powerUp"); powerUpHitBat = new Sound(); powerUpHitBat.attachSound("powerUpHitBat"); nextLevelSnd = new Sound(); nextLevelSnd.attachSound("nextLevel"); drainHit = new Sound(); drainHit.attachSound("ballDrop"); newBall = new Sound(); newBall.attachSound("newBall"); explode = new Sound(); explode.attachSound("explode"); function MAKEVECTOR(vx, vy, vz) { this.x = vx; this.y = vy; this.z = vz; } function tVector(x, y, z) { this.x = x; this.y = y; this.z = z; this.MAKEVECTOR = _root.MAKEVECTOR; } function f_contact() { this.ball = ball; this.ball1 = ball1; this.normal = new tVector(); this.type = "none"; this.Kr = 0; } function tBall() { this.pos = new tVector(); this.v = new tVector(); this.f = new tVector(); this.angmom = new tVector(); this.torque = new tVector(); this.oneOverM = 0; this.flags = 0; this.radius = 0; this.hits = 2; } function t_CollisionPlane() { this.normal = new tVector(); this.d = 0; } function VectorSquaredLength(v) { return(((v.x * v.x) + (v.y * v.y)) + (v.z * v.z)); } function VectorLength(v) { return(Math.sqrt(VectorSquaredLength(v))); } function NormalizeVector(v) { var len = VectorLength(v); if (len != 0) { v.x = v.x / len; v.y = v.y / len; v.z = v.z / len; } return(v); } function DotProduct(v1, v2) { return(((v1.x * v2.x) + (v1.y * v2.y)) + (v1.z * v2.z)); } function CrossProduct(v1, v2) { var result = new tVector(); result.x = (v1.y * v2.z) - (v1.z * v2.y); result.y = (v1.z * v2.x) - (v1.x * v2.z); result.z = (v1.x * v2.y) - (v1.y * v2.x); return(result); } function VectorSquaredDistance(v1, v2) { return((((v1.x - v2.x) * (v1.x - v2.x)) + ((v1.y - v2.y) * (v1.y - v2.y))) + ((v1.z - v2.z) * (v1.z - v2.z))); } function ScaleVector(v, scale) { var result = new tVector(); result.x = v.x * scale; result.y = v.y * scale; result.z = v.z * scale; return(result); } function VectorSum(v1, v2) { var result = new tVector(); result.x = v1.x + v2.x; result.y = v1.y + v2.y; result.z = v1.z + v2.z; return(result); } function VectorDifference(v1, v2) { var result = new tVector(); result.x = v1.x - v2.x; result.y = v1.y - v2.y; result.z = v1.z - v2.z; return(result); } Math.sinD = function (angle) { return(Math.sin(angle * (Math.PI/180))); }; Math.cosD = function (angle) { return(Math.cos(angle * (Math.PI/180))); }; Math.acosD = function (ratio) { return(Math.acos(ratio) * 57.2957795130823); }; _global.Vector = function (x, y) { this.x = x; this.y = y; }; Vector.prototype.toString = function () { var rx = (Math.round(this.x * 1000) / 1000); var ry = (Math.round(this.y * 1000) / 1000); return(((("[" + rx) + ", ") + ry) + "]"); }; Vector.prototype.reset = function (x, y) { this.constructor(x, y); }; Vector.prototype.getClone = function () { return(new this.constructor(this.x, this.y)); }; Vector.prototype.plus = function (v) { with (this) { x = x + v.x; y = y + v.y; } }; Vector.prototype.plusNew = function (v) { with (this) { return(new constructor(x + v.x, y + v.y)); } }; Vector.prototype.minus = function (v) { with (this) { x = x - v.x; y = y - v.y; } }; Vector.prototype.minusNew = function (v) { with (this) { return(new constructor(x - v.x, y - v.y)); } }; Vector.prototype.negate = function () { with (this) { x = -x; y = -y; } }; Vector.prototype.negateNew = function (v) { with (this) { return(new constructor(-x, -y)); } }; Vector.prototype.scale = function (s) { with (this) { x = x * s; y = y * s; } }; Vector.prototype.scaleNew = function (s) { with (this) { return(new constructor(x * s, y * s)); } }; Vector.prototype.getLength = function () { with (this) { return(Math.sqrt((x * x) + (y * y))); } }; Vector.prototype.setLength = function (len) { var r = this.getLength(); if (r) { this.scale(len / r); } else { this.x = len; } }; Vector.prototype.getAngle = function () { return(_root.atan2(this.y, this.x)); }; Vector.prototype.setAngle = function (ang) { with (this) { var r = getLength(); x = r * _root.cos(ang); y = r * _root.sin(ang); } }; Vector.prototype.rotate = function (ang) { with (Math) { var ca = _root.cos(ang); var sa = _root.sin(ang); } with (this) { var rx = ((x * ca) - (y * sa)); var ry = ((x * sa) + (y * ca)); x = rx; y = ry; } }; Vector.prototype.rotateNew = function (ang) { with (this) { var v = new constructor(x, y, z); } v.rotate(ang); return(v); }; Vector.prototype.dot = function (v) { with (this) { return((x * v.x) + (y * v.y)); } }; Vector.prototype.getNormal = function () { with (this) { new constructor(-y, x); } }; Vector.prototype.isNormalTo = function (v) { return(this.dot(v) == 0); }; Vector.prototype.angleBetween = function (v) { var dp = this.dot(v); var cosAngle = (dp / (this.getLength() * v.getLength())); return(Math.acos(cosAngle)); }; with (Vector.prototype) { addProperty("length", getLength, setLength); addProperty("angle", getAngle, setAngle); } n_walls = 5; n_maxballs = 3; CollisionObject = function (aObject, aType, aSubType, aDepth) { this.object = aObject; this.objectType = aType; this.objectSubType = aSubType; this.objectDepth = aDepth; }; CollisionList = function () { this.objectList = new Array(); this.size = 0; }; CollisionList.prototype.addObject = function (aObject, aType, aSubType, aDepth) { thisObject = new CollisionObject(aObject, aType, aSubType, aDepth); this.size = this.objectList.push(thisObject); this.objectList.sort(order); }; CollisionList.prototype.removeObject = function (aObject) { var i; i = 0; while (i < this.objectList.length) { var thisObject = this.objectList[i]; if (thisObject.object == aObject) { this.objectList.splice(i, 1); return(undefined); } i++; } }; CollisionList.prototype.destroyAllObjects = function () { i = 0; while (i < this.objectList.length) { var thisObject = this.objectList[i]; thisObject.object.removeMovieClip(); i++; } this.objectList.splice(0, 0); }; CollisionList.prototype.getObject = function (aObject) { var i; i = 0; while (i < this.objectList.length) { var thisObject = this.objectList[i]; if (thisObject.object == aObject) { return(thisObject.object); } i++; } return("Unknown object: " + aObject); }; CollisionList.prototype.getAllObjectOfType = function (aObjectType) { var i; returnVal = new Array(); i = 0; while (i < this.objectList.length) { if (aObjectType == objectList[i].objectType) { retVal.push(objectList[i]); } i++; } return(retVal); }; CollisionList.prototype.order = function (a, b) { var at = a.objectType; var bt = b.objectType; if (at < bt) { return(-1); } if (at > bt) { return(1); } return(0); }; function spawnRandomPickup(x, y) { _root.timeSinceLastRandom++; _root.timeSinceLastRandom = 0; var levelRnd = false; if (_root.DEBUG) { if (random(100) < 65) { levelRnd = true; } } else if (random(100) < (35 + (_root.level / 2))) { levelRnd = true; } if (levelRnd) { var pickupChooser = random(100); var pickupsChosen = 0; var pickupChooserArray = new Array(); var i = 0; while (i < _root.PU_NUM) { if ((pickupObject[i][PUVAR_LEVEL] <= _root.level) && (pickupObject[i][PUVAR_VERSION] <= _root.VERSION)) { if (pickupObject[i][PUVAR_RANDOM] >= pickupChooser) { pickupChooserArray[pickupsChosen] = i; pickupsChosen++; } } i++; } if (pickupsChosen > 0) { var rnd = pickupChooserArray[random(pickupsChosen)]; spawnPickup(rnd, x, y); } } } function spawnPickup(pickupType, x, y) { powerUp.start(); var txt = ""; var objD = depth[PICKUP_OBJ][CURRENT_DEPTH]; updateDepth(depth[PICKUP_OBJ]); _root.attachMovie(pickupObject[pickupType][PUVAR_CLIP_NAME], "Pickup" + objD, objD); thisPickup = _root["Pickup" + objD]; thisPickup._x = x; thisPickup._y = y; _root.colList.addObject(thisPickup, PICKUP_OBJ, pickupType, objD); } function updatePickup(aPickup) { var obj = aPickup.object; if (random(100) > 90) { var i = depth[STAR_OBJ][CURRENT_DEPTH]; updateDepth(depth[STAR_OBJ]); _root.attachMovie("Star", "Star" + i, i); var thisStar = _root["Star" + i]; thisStar._x = (obj._x + random(obj._width)) - (obj._width / 2); thisStar._y = (obj._y + random(obj._height)) - (obj._height / 2); } obj._x = obj._x - ((obj._x - _root.halfWidth) / 40); obj._y = obj._y - ((obj._y - _root.halfHeight) / 40); if ((((obj._x > (_root.drain._x - 10)) && (obj._x < (_root.drain._x + 10))) && (obj._y > (_root.drain._y - 10))) && (obj._y < (_root.drain._y + 10))) { colList.removeObject(obj); obj.removeMovieClip(); return(undefined); } b = 0; while (b <= 1) { if (b == 0) { thisBat = _root.bat; } else { thisBat = _root.bat1; } if (thisBat) { if (thisBat.hitTest(obj)) { obj.pos = new Vector(obj._x, obj._y); obj.vel = new Vector(-101010, -101010); wallNum = 0; while (wallNum < thisBat.walls) { wall = thisBat["wall" + wallNum]; if (testHit(obj, wall, false, true)) { powerUpHitBat.start(); bat.addPickup(aPickup.objectSubType, obj._x, obj._y); obj._visible = false; colList.removeObject(obj); obj.removeMovieClip(); break; } wallNum++; } } } b++; } } function drawPickupVals() { if (_root.bat.pickupCount > -1) { _root.pickupCounter.gotoAndPlay((31 - int((_root.bat.cpc / _root.bat.pickupCount) * 31)) + 1); } else if (_root.pickupCounter._currentframe != 1) { _root.pickupCounter.gotoAndPlay(1); } } _root.timeSinceLastRandom = 0; function testHit(thisBall, wall, adjustAngle, collisionOnly) { if (thisBall.hitTest(wall)) { var px = thisBall.pos.x; var py = thisBall.pos.y; var br = (thisBall._width / 2); var wallWidth = (wall._width / 2); tp.x = wall._x; tp.y = wall._y; wall._parent.localToGlobal(tp); var x = (px - tp.x); var y = (py - tp.y); var angle = ((wall._parent._rotation + wall._rotation) * _root.rad); var cosa = cos(angle); var sina = sin(angle); var xpos = ((cosa * x) + (sina * y)); if (!((xpos >= (-(wallWidth + br))) && (xpos <= (wallWidth + br)))) { return(false); } var ypos = ((cosa * y) - (sina * x)); var vy1 = ((cosa * thisBall.vel.y) - (sina * thisBall.vel.x)); if ((Math.abs(ypos) < br) && (vy1 < 0)) { if (!collisionOnly) { Set("thisBall/pos/:x", ((cosa * xpos) - (sina * ypos)) + tp.x); Set("thisBall/pos/:y", ((cosa * ypos) + (sina * xpos)) + tp.y); if (adjustAngle) { var reflectAng = (angle - ((xpos / 20) - __90__)); thisBall.vel.setAngle(reflectAng); thisBall.vel.scale(1.5); } else { thisBall.vel.setAngle((2 * angle) - thisBall.vel.getAngle()); } } return(true); } } return(false); } function circleHitTest(b1, b2, bUpdate, bInner, b1radius, b2radius) { var tx = (b1.pos.x - b2._x); var ty = (b1.pos.y - b2._y); var d = Math.sqrt((tx * tx) + (ty * ty)); var bTest = false; if (bInner) { if (d > (b2radius - b1radius)) { bTest = true; } } else if (d < (b1radius + b2radius)) { bTest = true; } if (bTest) { if (bUpdate) { var current_angle = Math.atan2(b1.pos.x - b2._x, b1.pos.y - b2._y); if (bInner) { b1.pos.x = b2._x + ((b2radius - b1radius) * sin(current_angle)); b1.pos.y = b2._y + ((b2radius - b1radius) * cos(current_angle)); } else { b1.pos.x = b2._x + ((b2radius + b1radius) * sin(current_angle)); b1.pos.y = b2._y + ((b2radius + b1radius) * cos(current_angle)); } var vx = b1.vel.x; var vy = b1.vel.y; var x = (b2radius * sin(current_angle)); var y = (b2radius * cos(current_angle)); var x2 = (x * x); var y2 = (y * y); var x2y2 = (x2 + y2); var nvx = (((vx * (y2 - x2)) - (((2 * vy) * x) * y)) / x2y2); var nvy = (((vy * (x2 - y2)) - (((2 * vx) * x) * y)) / x2y2); b1.vel.x = nvx; b1.vel.y = nvy; b1.vel.scale(1.3); } return(true); } return(false); } var batAngleStep = (__180__ / 60); var tp = new Object(); function calcDistanceFromCentre(thisBall) { var x; var y; x = thisBall.pos.x - _root.halfWidth; y = thisBall.pos.y - _root.halfHeight; distanceFromCentre = Math.sqrt((x * x) + (y * y)); } function checkBeamCollisions() { if (_root.bat.hasPickup(_root.PU_SINGLE_LASER) != -1) { var sector = getSectorFromAngle((_root.bat._rotation - 90) * _root.ang2rad); p = 0; while (p < numBrickLayers) { brick = bricks["brick_" + ((sector * numBrickLayers) + p)]; if (brick) { brick.hitAction.hitAction(1, ballVY); } p++; } } } function checkBulletCollisions() { if (_root.bat.activeBullets > 0) { var min = _root.depth[_root.BULLET_OBJ][_root.MIN_DEPTH]; var max = ((min + _root.depth[_root.BULLET_OBJ][_root.NUM_OBJECTS]) + 1); var p; var thisObj; var d = min; while (d <= max) { thisObj = _root["sb" + d]; if (thisObj) { var bv = new object(); bv.x = thisObj.bulletGfx._x; bv.y = thisObj.bulletGfx._y; thisObj.localToGlobal(bv); if (_root.bricks.hitTest(bv.x, bv.y, true) || (_root.bricks.hitTest(bv.x + (thisObj.vx / 2), bv.y + (thisObj.vy / 2), true))) { var sector = getSector(bv.x, bv.y); _root.bat.activeBullets--; _root.startParticleExplosion(bv.x, bv.y); _root.explode.start(); p = 0; while (p < numBrickLayers) { brick = bricks["brick_" + ((sector * numBrickLayers) + p)]; if (brick) { if (brick.hitTest(thisObj)) { brick.hitAction.hitAction(99999, ballVY); break; } } p++; } thisObj.removeMovieClip(); return; } } d++; } } } function getSectorFromAngle(angle) { var rb = bricks; angle = angle + __90__; if (angle > __360__) { angle = angle - __360__; } else if (angle < 0) { angle = angle + __360__; } return(int(angle / brickSizeAngleRad)); } function getSector(x, y) { var angle = atan2(y - halfHeight, x - halfWidth); return(getSectorFromAngle(angle)); } function CheckCollisions(thisBall) { var i; var j; var k; var brick; var wallNum; calcDistanceFromCentre(thisBall); checkBulletCollisions(); checkBeamCollisions(); checkSpecials(thisBall); checkHitOuterRing(thisBall); _root.bounce = 0.9; var sector = getSector(thisBall/pos/:x, thisBall/pos/:y); j = sector - 1; while (j <= (sector + 1)) { checkSector(j, thisBall); if (thisBall.bounced) { break; } j++; } if (!thisBall.bounced) { checkBatCollision(bat, thisBall); if (bat1) { checkBatCollision(bat1, thisBall); } } checkDrainCollision(thisBall); } function checkHitOuterRing(thisBall) { if (thisBall._visible) { if (circleHitTest(thisBall, _root.boundingRing, true, true, thisBall._width / 2, _root.ringWidth / 2)) { clankHit.start(); _root.startCountedStarBurst(thisBall/pos/:x, thisBall/pos/:y, 4, "QuickStar" + (random(2) + 1)); } } } function checkBatCollision(thisBat, thisBall) { if (distanceFromCentre < distanceBrickLayers[numBrickLayers - 2]) { _root.bounce = 1.2; var wall; var wallNum; wallNum = 0; while (wallNum < thisBat.walls) { wall = thisBat["wall" + wallNum]; adjustAngle = true; if (testHit(thisBall, wall, adjustAngle, false)) { if (thisBall.vel.getLength() < 8) { thisBall.vel.setLength(8); } batHit.start(); startCountedStarBurst(thisBall/pos/:x, thisBall/pos/:y, 4, "QuickStar" + (random(2) + 1)); Set("thisBall/:bounced", true); return(undefined); } wallNum++; } } } function checkDrainCollision(thisBall) { if (distanceFromCentre < distanceBrickLayers[numBrickLayers - 1]) { if (_root.invulnerability > 0) { if (circleHitTest(thisBall, _root.invuln, true, false, thisBall._width / 2, _root.drainCoverRadius)) { thisBall.vel.scale(1.35); clankHit.start(); thisBall.bounced = true; _root.startCountedStarBurst(thisBall/pos/:x, thisBall/pos/:y, 4, "QuickStar" + (random(2) + 1)); } } else if (bat.hasPickup(PU_DRAIN_COVER) != -1) { if (circleHitTest(thisBall, /:DrainCover, true, false, thisBall._width / 2, _root.drainCoverRadius)) { thisBall.vel.scale(1.35); clankHit.start(); thisBall.bounced = true; _root.startCountedStarBurst(thisBall/pos/:x, thisBall/pos/:y, 4, "QuickStar" + (random(2) + 1)); } } else if ((((((thisBall/pos/:x + thisBall.radius) < (drain._x + drain.drainRadius)) && ((thisBall/pos/:x - thisBall.radius) > (drain._x - drain.drainRadius))) && ((thisBall/pos/:y + thisBall.radius) < (drain._y + drain.drainRadius))) && ((thisBall/pos/:y - thisBall.radius) > (drain._y - drain.drainRadius))) && (thisBall._currentframe < 5)) { drainHit.start(); thisBall.gotoAndPlay(5); } } } function checkBallCollision(thisBall) { } function checkSpecials(thisBall) { var brick; var k = _root.specialBricks; while (k < (_root.specialBricks + _root.numSpecialBricks)) { brick = _root.bricks["brick_" + k]; if (brick) { if (circleHitTest(thisBall, brick, true, false, thisBall._width / 2, _root.drainCoverRadius)) { _root.clankHit.start(); thisBall.bounced = true; _root.startCountedStarBurst(thisBall/pos/:x, thisBall/pos/:y, 4, "QuickStar" + (random(2) + 1)); } } k++; } } function calcZones() { var diameter = 15.4; p = 0; while (p < numBrickLayers) { minDist[p] = distanceBrickLayers[p] - diameter; if (minDist[p] < 0) { minDist[p] = 0; } if (p == 0) { maxDist[p] = 1000; } else { maxDist[p] = distanceBrickLayers[p - 1] + diameter; } p++; } } function checkSector(j, thisBall) { var p; var brick; var wall; p = 0; while (p < numBrickLayers) { if ((distanceFromCentre >= minDist[p]) && (distanceFromCentre <= maxDist[p])) { brick = bricks["brick_" + ((j * numBrickLayers) + p)]; if (brick) { var wall; var wallNum = 0; while (wallNum < brick/:walls) { wall = brick["wall" + wallNum]; ballVY = thisBall.pos; if (!(brick.type & BR_NORMAL)) { reboundThis = false; } else if ((bat.hasPickup(PU_FIREBALL) == -1) || (bat.hasBomb)) { reboundThis = false; } else { reboundThis = true; } if (testHit(thisBall, wall, false, reboundThis)) { if (brick.brickType != BR_NORMAL) { thisBall.vel.scale(1.1); } else { thisBall.vel.scale(0.9); } _root.startCountedStarBurst(thisBall/pos/:x, thisBall/pos/:y, 4, "QuickStar" + (random(2) + 1)); thisBall.bounced = true; if (bat.hasBomb) { bat.hasBomb = false; var frame = 2; if (bat.hasPickup(PU_FIREBALL) != -1) { frame = 3; } var g = 0; while (g < _root.ballIndex.length) { thisBall = _root["ball" + _root.ballIndex[g]]; if (thisBall._currentframe != frame) { thisBall.gotoAndStop(frame); } g++; } brick.hitAction.hitAction(99999, ballVY); _root.explode.start(); _root.createExplosion(thisBall.pos.x, thisBall.pos.y, "Multi"); k_plus = ((j + 1) % numBrickSectors) * numBrickLayers; k_minus = ((j - 1) % numBrickSectors) * numBrickLayers; if (p < (numBrickLayers - 1)) { bricks["brick_" + (((j * numBrickLayers) + p) + 1)].hitAction.hitAction(1000, ballVY); bricks["brick_" + ((k_plus + p) + 1)].hitAction.hitAction(1000, ballVY); bricks["brick_" + ((k_minus + p) + 1)].hitAction.hitAction(1000, ballVY); } if (p > 0) { bricks["brick_" + (((j * numBrickLayers) + p) - 1)].hitAction.hitAction(1000, ballVY); bricks["brick_" + ((k_plus + p) - 1)].hitAction.hitAction(1000, ballVY); bricks["brick_" + ((k_minus + p) - 1)].hitAction.hitAction(1000, ballVY); } k = j; bricks["brick_" + (k_plus + p)].hitAction.hitAction(1000, ballVY); bricks["brick_" + (k_minus + p)].hitAction.hitAction(1000, ballVY); } else if (reboundThis) { brick.hitAction.hitAction(1000, ballVY); } else { brick.hitAction.hitAction(1, ballVY); } if (!brick) { spawnRandomPickup(thisBall.pos.x, thisBall.pos.y); } return(undefined); } wallNum++; } } } p++; } } function changeSkin() { if ((_root.level > 8) && (_root.level < 18)) { _root.skin = 2; } else if ((_root.level >= 18) && (_root.level < 30)) { _root.skin = 1; } else { _root.skin = 0; } _root.drain.gotoAndStop(_root.skin + 1); _root.Ring.gotoAndStop(_root.skin + 1); _root.bg.gotoAndStop(_root.skin + 1); } function popupScore(anum, x, y) { var d = depth[POINTS_OBJ][CURRENT_DEPTH]; updateDepth(depth[POINTS_OBJ]); _root.attachMovie("PointsScoreNotify", "points" + d, d); _root["points" + d]._x = x; _root["points" + d]._y = y; _root["points" + d].num = anum; } function createExplosion(x, y, type) { var d = depth[EXPLODE_OBJ][CURRENT_DEPTH]; updateDepth(depth[EXPLODE_OBJ]); _root.attachMovie("ExplodeAnim" + type, "eam" + d, d); _root["eam" + d]._x = x; _root["eam" + d]._y = y; } function fireBullet() { var d = _root.depth[_root.BULLET_OBJ][_root.CURRENT_DEPTH]; _root.updateDepth(_root.depth[_root.BULLET_OBJ]); _root.attachMovie("SmallBullet", "sb" + d, d); var thisBullet = _root["sb" + d]; thisBullet._rotation = _root.bat._rotation; thisBullet._x = _root.bat._x; thisBullet._y = _root.bat._y; var v = new Vector(0, -2); v.rotate(_root.bat._rotation / _root.rad2ang); thisBullet.vx = v.x; thisBullet.vy = v.y; } function addScore(aAdd) { if (((_root.totalScore + aAdd) % _root.extraLifeScore) < (_root.totalScore % _root.extraLifeScore)) { _root.attachMovie("ExtraLife", "extralife", _root.EXTRA_LIFE_DEPTH); _root.extralife._x = halfWidth; _root.extralife._y = halfHeight; _root.extralife._alpha = 70; addLife(1); } _root.totalScore = _root.totalScore + aAdd; updateScore(); } function resetInvuln() { _root.invuln._visible = true; _root.invulnerability = 200; _root.invuln._alpha = 50; } function updateScore() { drawNum(_root.totalScore, halfWidth, halfHeight, _root.oScore, true, 40, _root.scoreDepth, true, 80); } function addLife(num) { _root.lives = _root.lives + num; drawNum(lives, halfWidth, halfHeight, _root.oLife, true, 2, 10000, false, 80); } function removeLife() { _root.lives--; drawNum(_root.lives, halfWidth, halfHeight, _root.oLife, true, 2, 10000, false, 80); if (lives <= 0) { gotoAndPlay (1300); } } function destroyCurrentArena() { var j; var p; var brickNum; _root.bricks.removeMovieClip(); var j = 0; while (j < (numSpecialBricks + 1)) { var brick = _root["brick_" + (brickNum + j)]; if (brick) { brick._visible = false; brick.removeMovieClip(); brick = null; } j++; } depth[BRICK_OBJ][CURRENT_DEPTH] = depth[BRICK_OBJ][MIN_DEPTH]; numSpecialBricks = 0; } function updateObjects() { var o; k = 0; while (k < colList.objectList.length) { o = colList.objectList[k]; if (o.objectType == PICKUP_OBJ) { updatePickup(o); } k++; } } function removeAllBalls() { var g = 0; while (g < _root.ballIndex.length) { removeBall(_root["ball" + _root.ballIndex[g]]); g++; } } function removeBall(thisBall) { thisBall._visible = false; var g = 0; while (g < _root.ballIndex.length) { if (_root["ball" + _root.ballIndex[g]] == thisBall) { _root.ballIndex.splice(g, 1); } g++; } _root.ballNum--; thisBall.removeMovieClip(); } function launchBall() { _root.bat.hasBomb = false; var ballDepth = depth[BALL_OBJ][CURRENT_DEPTH]; _root.updateDepth(depth[BALL_OBJ]); var i = (ballNum++); _root.attachMovie("ball", "ball" + i, ballDepth); var thisBall = _root["ball" + i]; thisBall._x = -2000; thisBall._y = -2000; thisBall.pos.x = -2000; thisBall.pos.y = -2000; ballIndex.push(i); thisBall._visible = false; var launcherDepth = depth[LAUNCHER_OBJ][CURRENT_DEPTH]; _root.updateDepth(depth[LAUNCHER_OBJ]); _root.attachMovie("ballLauncher", "bl" + launcherDepth, launcherDepth); angle = random(360); bl = _root["bl" + launcherDepth]; bl._x = (120 * Math.cos(angle / _root.rad)) + halfWidth; bl._y = (120 * Math.sin(angle / _root.rad)) + halfHeight; bl.thisBall = thisBall; } function resetBall(thisBall, x, y) { thisBall._x = (thisBall.pos.x = x); thisBall._y = (thisBall.pos.y = y); thisBall.radius = thisBall._width / 2; thisBall.m = 10; var angle = Math.round(random(360)); var speed = 7; thisBall.vel.x = speed * Math.cos(angle * _root.rad); thisBall.vel.y = speed * Math.sin(angle * _root.rad); thisBall._visible = true; } function upgradeLevel(upDown) { _root.level = _root.level + upDown; if (_root.level > _root.MAX_LEVEL) { _root.level = 0; } if (_root.level < 0) { _root.level = _root.MAX_LEVEL; } colList.destroyAllObjects(); removeAllBalls(); var i = depth[LAUNCHER_OBJ][MIN_DEPTH]; while (i < (depth[LAUNCHER_OBJ][MIN_DEPTH] + depth[LAUNCHER_OBJ][NUM_OBJECTS])) { _root["bl" + i].removeMovieClip(); i++; } destroyCurrentArena(); gotoAndPlay (1290); } function BallsMove() { var i; if (_root.bricksToDestroy <= 0) { _root.bat.removeCurrentPickup(); _root.gotoAndPlay("NextLevel"); } else if (_root.ballNum <= 0) { removeLife(); _root.bat.removeCurrentPickup(); if (lives > 0) { _root.resetInvuln(); LaunchBall(); } } bat.update(); j = 0; while (j < _root.ballNum) { thisBall = _root["ball" + ballIndex[j]]; if ((!thisBall.bounced) && (thisBall.applyGravity)) { thisBall.doForce(); } else { thisBall.bounced = false; } CheckCollisions(thisBall); thisBall.move(); j++; } if (_root.invulnerability > 0) { _root.invulnerability--; _root.invuln._alpha = 50; if ((_root.invulnerability < 100) && (_root.invulnerability % 2)) { _root.invuln._visible = !_root.invuln._visible; } } else { _root.invuln._visible = false; } _root.drawPickupVals(); updateObjects(); printFps(); } if (!_root.DESIGN) { designBut._visible = false; dumpBut._visible = false; } Key.removeListener(_root.someListener); _root.createEmptyMovieClip("oScore", 60000); _root.createEmptyMovieClip("oLife", 60001); _root.gameInPlay = true; oLife.createEmptyMovieClip("ballGfx", 989282); oLife.BallGfx.attachMovie("ballGfx", "Norbit", 10292); oLife.BallGfx.Norbit._xscale = (oLife.BallGfx.Norbit._yscale = 40); oLife.BallGfx.Norbit._y = -(_root.txtRingWidth / 2); oLife.BallGfx._rotation = 33; _root.lives = 6; _root.addLife(0); _root.paused = false; someListener = new Object(); someListener.onKeyDown = function () { if (Key.isDown(81)) { _root.paused = true; _root.attachMovie("quit", "quitObj", _root.QUIT_DEPTH); _root.quitObj._alpha = 70; _root.quitObj._x = halfWidth; _root.quitObj._y = halfHeight; } if (Key.isDown(80)) { _root.paused = !_root.paused; if (_root.paused) { _root.attachMovie("paused", "pausedObj", _root.pausedDepth); _root.pausedObj._alpha = 40; _root.pausedObj._x = halfWidth; _root.pausedObj._y = halfHeight; } else { _root.pausedObj.removeMovieClip(); } } }; Key.addListener(someListener); _root.level = 0; totalScore = 0; updateScore(); _root.changeSkin(); _root.attachMovie("DrainCover_skin" + _root.skin, "invuln", _root.INVULN_DEPTH); _root.invuln._x = _root.halfWidth; _root.invuln._y = _root.halfHeight;Instance of Symbol 409 MovieClip "drain" in Frame 1289onClipEvent (load) { this._x = _root.halfWidth; this._y = _root.halfHeight; }Instance of Symbol 284 MovieClip "bat" in Frame 1289onClipEvent (load) { this.initWidth = this._width; this.initHeight = this._height; this.move = 0; this.maxMove = _root.DEFAULT_BALL_MAX_MOVE; this.moveStep = _root.DEFAULT_BALL_MOVE_STEP; this.moveDir = 0; this._x = /:halfWidth; this._y = /:halfHeight; this.width = 90; this.cp = -1; this.cpc = -1; this.hasBomb = false; this.pickupCount = -1; this.activeBullets = 0; this.fireDelay = 0; this.oldMouseX = 0; this.oldMouseY = 0; } onClipEvent (enterFrame) { if ((_root._xmouse != this.oldMouseX) || (_root._ymouse != this.oldMouseY)) { this.oldMouseX = _root._xmouse; this.oldMouseY = _root._ymouse; var ang; if (this.hasPickup(_root.PU_REVERSE_BAT) != -1) { ang = (_root.atan2(_root._ymouse - _root.halfHeight, _root._xmouse - _root.halfWidth) / _root.rad) + 270; } else { ang = (_root.atan2(_root._ymouse - _root.halfHeight, _root._xmouse - _root.halfWidth) / _root.rad) + 90; } _root.bat._rotation = ang; if (_root.bat1) { _root.bat1._rotation = _root.bat._rotation + 180; } } if (this.hasPickup(_root.PU_SINGLE_LASER) != -1) { var rx = (random(6) - 3); var ry = (random(6) - 3); this._x = _root.halfWidth + rx; this._y = _root.halfHeight + ry; _root.bm._x = _root.halfWidth + rx; _root.bm._y = _root.halfHeight + ry; _root.bm._rotation = this._rotation + 180; } else { this._x = _root.halfWidth; this._y = _root.halfHeight; } if (!_root.paused) { var left; var right; if (this.hasPickup(_root.PU_REVERSE_BAT) != -1) { left = 39; right = 37; } else { left = 37; right = 39; } if (Key.isDown(right)) { this.moveDir = this.moveStep; } else if (Key.isDown(left)) { this.moveDir = -this.moveStep; } else { this.moveDir = 0; } if (this.hasPickup(_root.PU_MULTI_LASER) != -1) { if (Key.isDown(32)) { if ((this.activeBullets == 0) && (this.fireDelay > 10)) { _root.sbl.removeMovieClip(); _root.laserShoot.start(); fireDelay = 0; _root.fireBullet(); this.activeBullets++; } } this.fireDelay++; if ((this.activeBullets == 0) && (!_root.sbl)) { _root.attachMovie("SmallBulletLaunch", "sbl", _root.BULLET_LAUNCHER_DEPTH); _root.sbl._x = _root.halfWidth; _root.sbl._y = _root.halfHeight; } } if (_root.sbl) { _root.sbl._rotation = this._rotation; } this.move = this.move + this.moveDir; if (this.moveDir == 0) { if (this.move > 0) { this.move = this.move - moveStep; } if (this.move < 0) { this.move = this.move + moveStep; } } if (this.move > this.maxMove) { this.move = this.maxMove; } if (this.move < (-this.maxMove)) { this.move = -this.maxMove; } if (Key.isDown(33) && (/:DEBUG)) { _root.bat.removeCurrentPickup(); _root.gotoAndPlay("NextLevel"); } else if (Key.isDown(34) && (/:DEBUG)) { _root.bat.removeCurrentPickup(); _root.upgradeLevel(-1); } } }Frame 1290_root.attachMovie("LevelPanel", "levelPanelText", _root.LEVEL_PANEL_DEPTH); levelPanelText._x = _root.halfWidth; levelPanelText._y = _root.halfHeight; _root.drawSingleNum(_root.level + 1, 15, 10, _root.levelPanelText, false, true, 400); nextLevelSnd.start(); var circleRadius = new Array(177, 154, 129); var arenaData = levelData[level]; var i; var j; i = 0; j = 0; var brick; var brickType; var brickNum; var bricksToDestroy = 0; _root.createEmptyMovieClip("bricks", 1); _root.changeSkin(); _root.resetInvuln();Frame 1291j = 0; while (j < numBrickLayers) { brickNum = (i * numBrickLayers) + j; brickType = arenaData[brickNum] & PU_MASK; pickupType = arenaData[brickNum] >> PU_SHIFT; if (brickType != 0) { var d = depth[BRICK_OBJ][CURRENT_DEPTH]; updateDepth(depth[BRICK_OBJ]); brickName = "BR_"; if (brickType & BR_NORMAL) { brickName = brickName + ("normal_" + j); brickHits = 4 - j; _root.bricksToDestroy++; } else if (brickType & BR_S_BARRIER) { brickName = brickName + "s_barrier"; brickHits = 9999; } else if (brickType & BR_I_BARRIER) { brickName = brickName + "i_barrier"; brickHits = 9999; } else if (brickType & BR_D_BARRIER) { brickName = brickName + "d_barrier"; brickHits = 9999; } else if (brickType & BR_INDESTRUCTABLE) { brickName = brickName + ("unbreakable_" + j); brickHits = 9999; } brickname = brickname + ("_skin" + _root.skin); var brick = _root.bricks.attachMovie(brickName, "brick_" + brickNum, d); brick.hits = brickHits; brick.maxHits = brickHits; brick.type = brickType; brick.x = (brick._x = brick_middle_x); brick.y = (brick._y = brick_middle_y); brick.pickup = pickupType; if (brick.pickup != 0) { var pickupStr = (_root.pickupObject[brick.pickup][_root.PUVAR_CLIP_NAME] + "Gfx"); var objD = _root.depth[_root.PICKUP_BRICK_OBJ][_root.CURRENT_DEPTH]; _root.updateDepth(_root.depth[_root.PICKUP_BRICK_OBJ]); var thispickup = brick.attachMovie(pickupStr, "brick_pickup_" + brickNum, objD); thispickup._rotation = 5; switch (brick.pickup) { case PU_BOMB : thispickup._xscale = (thispickup._yscale = 60); thispickup._y = (-brick._height) + 25; break; case PU_NEXT_LEVEL : thispickup._xscale = (thispickup._yscale = 60); thispickup._y = (-brick._height) + 35; break; default : thispickup._xscale = (thispickup._yscale = 70); thispickup._y = (-brick._height) + 25; } thispickup._x = 20; } brick._xscale = (brick._yscale = 83); brick._rotation = i * _root.brickSizeAngle; } j++; } i++;Frame 1292if (i < numBrickSectors) { gotoAndPlay (1291); } else { brickNum++; _root.specialBricks = brickNum; currentPos = numBrickSectors * numBrickLayers; currentPos++; while (arenaData[currentPos] != "@") { panicVar++; if (panicVar > 100) { break; } _root.numSpecialBricks++; var d = depth[SPECIAL_BRICK_OBJ][CURRENT_DEPTH]; updateDepth(depth[SPECIAL_BRICK_OBJ]); brickName = "BR_"; brickName = brickName + ("c_barrier_skin" + _root.skin); brickHits = 9999; brick = _root.bricks.attachMovie(brickName, "brick_" + (brickNum++), d); brick.hits = brickHits; brick.type = brickType; brick.radius = brick.thisBrick._width / 2; brick.m = 10000000000000; brick.vx = 0; brick.vy = 0; currentPos++; brick._x = arenaData[currentPos++]; brick._y = arenaData[currentPos++]; } gotoAndPlay (1293); }Frame 1293_root.levelPanelText._visible = false; _root.levelPanelText.gotoAndPlay("KILLME"); _root.levelPanelText.removeMovieClip(); colList = new CollisionList(); calcZones(); LaunchBall(); newVect = new Vector(); stop();Instance of Symbol 471 MovieClip "Runner" in Frame 1293onClipEvent (enterFrame) { if (!_root.paused) { _root.BallsMove(); } }Frame 1300oScore.removeMovieClip(); oLife.removeMovieClip(); _root.bat.resetBat(); Key.removeListener(_root.someListener); Key.addListener(_root.menuListener); colList.destroyAllObjects(); removeAllBalls(); _root.sbl.removeMovieClip(); var i = depth[LAUNCHER_OBJ][MIN_DEPTH]; while (i < (depth[LAUNCHER_OBJ][MIN_DEPTH] + depth[LAUNCHER_OBJ][NUM_OBJECTS])) { _root["bl" + i].removeMovieClip(); i++; } hiStatus = false; gotHighScore = false; gotGlobalHighScore = false; loadVariables ((((_root.HI_SCORE_SCRIPT + "?view=query_pos&gameID=5&lowOrHigh=h&view_type=FLASH&playerScore=") + _root.totalScore) + "&dummy=") + getTimer(), this);Instance of Symbol 474 MovieClip "gameOverTxt" in Frame 1307onClipEvent (load) { this.swapDepths(1010029); }Frame 1370_root.gameOverTxt.removeMovieClip(); var i = 0; if (VERSION == VERSION_DEMO) { _root.sbl.removeMovieClip(); oScore.removeMovieClip(); oLife.removeMovieClip(); destroyCurrentArena(); colList.destroyAllObjects(); _root.DrainCover.removeMovieClip(); _root.bat.resetBat(); removeAllBalls(); var i = depth[LAUNCHER_OBJ][MIN_DEPTH]; while (i < (depth[LAUNCHER_OBJ][MIN_DEPTH] + depth[LAUNCHER_OBJ][NUM_OBJECTS])) { _root["bl" + i].removeMovieClip(); i++; } Key.removeListener(_root.someListener); Key.addListener(_root.menuListener); gotoAndPlay (1703); } else { if (_root.histatus == "DONE") { _root.gotGlobalHighScore = true; _root.gotHighScore = true; _root.hiScorePosition = int(_root.himessage); } if (!_root.gotGlobalHighScore) { i = 0; while (i < _root.localHiScores.length) { if (_root.totalScore > _root.localHiScores[i]) { gotHighScore = true; _root.hiScorePosition = i; break; } i++; } } if (gotHighScore) { _root.attachMovie("scoreInput", "scoreInput", 9000); _root.scoreInput._x = halfWidth; _root.scoreInput._y = halfHeight; stop(); } }Frame 1371destroyCurrentArena(); _root.sbl.removeMovieClip(); gotoAndPlay (699);Frame 1372_root.DrainCover.removeMovieClip(); _root.ball.gotoAndStop(1); _root.addScore(_root.LEVELS_SCORE_MULTIPLIER * (_root.level + 1)); _root.addScore(_root.BALLS_SCORE_MULTIPLIER * _root.lives); colList.destroyAllObjects(); _root.bat.resetBat(); removeAllBalls(); _root.sbl.removeMovieClip(); var i = depth[LAUNCHER_OBJ][MIN_DEPTH]; while (i < (depth[LAUNCHER_OBJ][MIN_DEPTH] + depth[LAUNCHER_OBJ][NUM_OBJECTS])) { _root["bl" + i].removeMovieClip(); i++; }Instance of Symbol 479 MovieClip "nextLevelFlasher" in Frame 1372onClipEvent (load) { this.swapDepths(_root.LEVEL_COMPLETE_DEPTH); } on (press) { _root.gotoAndPlay("gotoNextLevel"); }Frame 1527_root.nextLevelFlasher.removeMovieClip(); if ((_root.VERSION == _root.VERSION_DEMO) && (_root.level >= _root.MAX_DEMO_LEVELS)) { _root.sbl.removeMovieClip(); oScore.removeMovieClip(); oLife.removeMovieClip(); destroyCurrentArena(); colList.destroyAllObjects(); _root.DrainCover.removeMovieClip(); _root.bat.hasBomb = false; colList.destroyAllObjects(); _root.bat.removeCurrentPickup(); removeAllBalls(); Key.removeListener(_root.someListener); Key.addListener(_root.menuListener); var i = depth[LAUNCHER_OBJ][MIN_DEPTH]; while (i < (depth[LAUNCHER_OBJ][MIN_DEPTH] + depth[LAUNCHER_OBJ][NUM_OBJECTS])) { _root["bl" + i].removeMovieClip(); i++; } gotoAndPlay (1528); } else { _root.upgradeLevel(1); }Frame 1957stop();Frame 1963function updateDepth(obj) { if (obj[_root.CURRENT_DEPTH] > (obj[_root.MIN_DEPTH] + obj[_root.NUM_OBJECTS])) { obj[_root.CURRENT_DEPTH] = obj[_root.MIN_DEPTH]; } else { obj[_root.CURRENT_DEPTH]++; } } function clearLevel() { i = 0; while (i < numBrickSectors) { j = 0; while (j < numBrickLayers) { brickNum = (i * numBrickLayers) + j; brick = _root.bricks["brick_" + brickNum]; if (brick) { brick.gotoAndStop(1); brick.thisBrick.pickup = -1; } j++; } i++; } k = _root.specialBricks; while (k < (_root.specialBricks + _root.numSpecialBricks)) { brick = _root.bricks["brick_" + k]; brick.removeMovieClip(); k++; } _root.numSpecialBricks = 0; ldata.clear(); clearGeneratedObjects(); } function buildBlankArena() { var i; var j; var brick; var brickType; var brickNum; _root.createEmptyMovieClip("bricks", 1); i = 0; while (i < numBrickSectors) { j = 0; while (j < numBrickLayers) { brickNum = (i * numBrickLayers) + j; brickType = BR_DEV; var d = depth[BRICK_OBJ][CURRENT_DEPTH]; updateDepth(depth[BRICK_OBJ]); var brickName = ""; if (j <= 3) { brickName = "DEVBR_normal_" + j; } else if ((j == 4) && ((i % 2) == 0)) { brickName = "DEVBR_d_barrier"; } else if ((j == 5) && ((i % 2) == 0)) { brickName = "DEVBR_i_barrier"; } if (brickName != "") { brick = _root.bricks.attachMovie(brickName, "brick_" + brickNum, d); brick.hits = brickHits; brick.type = brickType; brick.x = (brick._x = brick_middle_x); brick.y = (brick._y = brick_middle_y); brick.thisBrick.pickup = -1; var maskedBrick = (ldata[brickNum] & _root.PU_MASK); switch (maskedBrick) { case BR_INDESTRUCTABLE : brick.gotoAndPlay(3); break; case BR_NORMAL : brick.gotoAndPlay(2); break; case BR_D_BARRIER : brick.gotoAndPlay(2); break; case BR_S_BARRIER : brick.gotoAndPlay(3); break; case BR_I_BARRIER : brick.gotoAndPlay(2); } pickupType = ldata[brickNum] >> PU_SHIFT; if (pickupType != 0) { brick.thisBrick.pickup = pickupType; brick.pickup = pickupType; var pickupStr = (_root.pickupObject[pickupType][_root.PUVAR_CLIP_NAME] + "Gfx"); var objD = _root.depth[_root.PICKUP_BRICK_OBJ][_root.CURRENT_DEPTH]; _root.updateDepth(_root.depth[_root.PICKUP_BRICK_OBJ]); var thispickup = brick.attachMovie(pickupStr, "brick_pickup_" + brickNum, objD); thispickup._xscale = (thispickup._yscale = 40); thispickup._rotation = 5; thispickup._y = (-brick._height) + 14; thispickup._x = 20; } brick._rotation = i * _root.brickSizeAngle; brick._xscale = (brick._yscale = 83); } j++; } i++; } _root.specialBricks = brickNum; if (ldata) { brickNum++; _root.specialBricks = brickNum; currentPos = numBrickSectors * numBrickLayers; currentPos++; while (arenaData[currentPos] != "@") { panicVar++; if (panicVar > 100) { return; } _root.numSpecialBricks++; var d = depth[BRICK_OBJ][CURRENT_DEPTH]; updateDepth(depth[BRICK_OBJ]); brickName = "DEVBR_c_barrier"; brick = _root.bricks.attachMovie(brickName, "brick_" + (brickNum++), d); currentPos++; brick._x = arenaData[currentPos++]; brick._y = arenaData[currentPos++]; } } } function buildLevel() { var i; var j; ldata = new Array(); var d = depth[BRICK_OBJ][MIN_DEPTH]; i = 0; while (i < numBrickSectors) { j = 0; while (j < numBrickLayers) { brickNum = (i * numBrickLayers) + j; brick = _root.bricks["brick_" + brickNum]; var pickupVar = 0; if (brick.thisBrick.pickup > 0) { pickupVar = brick.thisBrick.pickup << _root.PU_SHIFT; } if (brick) { if (j < 4) { switch (brick._currentframe) { case 3 : ldata.push(BR_INDESTRUCTABLE + pickupVar); break; case 2 : ldata.push(BR_NORMAL + pickupVar); break; default : ldata.push(0); } } else if (j == 4) { switch (brick._currentframe) { case 2 : ldata.push(BR_D_BARRIER + pickupVar); break; case 3 : ldata.push(BR_S_BARRIER + pickupVar); break; default : ldata.push(0); } } else if (j == 5) { switch (brick._currentframe) { case 2 : ldata.push(BR_I_BARRIER + pickupVar); break; default : ldata.push(0); } } else { ldata.push(0); } } else { ldata.push(0); } j++; } i++; } ldata.push("#"); k = _root.specialBricks; while (k < (_root.specialBricks + _root.numSpecialBricks)) { brickNum = k; brick = _root.bricks["brick_" + k]; ldata.push(BR_C_BARRIER); ldata.push(brick._x); ldata.push(brick._y); k++; } ldata.push("@"); } function testLevel() { _root.levelData[level] = ldata; destroyCurrentArena(); gotoAndPlay (1288); } function clearGeneratedObjects() { i = 0; while (i < numBrickSectors) { j = 0; while (j < numBrickLayers) { brickNum = (i * numBrickLayers) + j; _root["pb" + brickNum].removeMovieClip(); j++; } i++; } var k = _root.depth[_root.PICKUP_BRICK_OBJ][_root.MIN_DEPTH]; while (k < (_root.depth[_root.PICKUP_BRICK_OBJ][_root.MIN_DEPTH] + _root.depth[_root.PICKUP_BRICK_OBJ][_root.NUM_OBJECTS])) { if (_root["pickup" + k]) { _root["pickup" + k].removeMovieClip(); } k++; } } function destroyCurrentArena() { _root.bricks.removeMovieClip(); clearGeneratedObjects(); depth[BRICK_OBJ][CURRENT_DEPTH] = depth[BRICK_OBJ][MIN_DEPTH]; numSpecialBricks = 0; } _root.gameInPlay = false; _root.numSpecialBricks = 0; _root.specialBricks = 0; _root.levelTxt = _root.level + 1; buildBlankArena(); stop(); var ldata;Instance of Symbol 292 MovieClip [OuterRing_skin0] "ring" in Frame 1963onClipEvent (load) { _root.pressedObject = ""; this.activePickups = new Array(); this.currentPickup = 0; } onClipEvent (enterFrame) { if ((_root.pressedObject != "") && (_root.pressedObject != "HOLD")) { var objD = _root.depth[_root.PICKUP_BRICK_OBJ][_root.CURRENT_DEPTH]; _root.updateDepth(_root.depth[_root.PICKUP_BRICK_OBJ]); var p = _root.attachMovie(_root.pressedObject, "pickup" + objD, objD); p.pickupType = _root.pressedObject.substr(0, _root.pressedObject.length() - 3); _root.pressedObject = "HOLD"; p.draggable = true; p.mousePressed = true; p._alpha = 100; p._x = _root._xmouse; p._y = _root._ymouse; this.activePickups.push(p); } } onClipEvent (mouseDown) { var i = 0; while (i < this.activePickups.length) { if (this.activePickups[i].hitTest(_root._xmouse, _root._ymouse, true)) { this.currentPickup = this.activePickups[i]; _root.carryingPickup = true; } i++; } } onClipEvent (mouseMove) { if (this.currentPickup != 0) { this.currentPickup._x = _root._xmouse; this.currentPickup._y = _root._ymouse; } } onClipEvent (mouseUp) { if (currentPickup != 0) { var i = 0; while (i < _root.numBrickSectors) { var j = 0; while (j < _root.numBrickLayers) { brickNum = (i * _root.numBrickLayers) + j; var thisBrick = _root.bricks["brick_" + brickNum].thisBrick; p = new object(); p.x = _root._xmouse; p.y = _root._ymouse; if (thisBrick.hitTest(p.x, p.y, true)) { var objD = _root.depth[_root.PICKUP_BRICK_OBJ][_root.CURRENT_DEPTH]; _root.updateDepth(_root.depth[_root.PICKUP_BRICK_OBJ]); var t = _root.attachMovie(currentPickup.pickupType + "Gfx", "pb" + brickNum, (thisBrick.getDepth() + 900000) + brickNum); t._x = p.x; t._y = p.y; t._xscale = (t._yscale = 40); var pickupNum = -1; var pt = 0; while (pt < _root.pickupObject.length) { if (_root.pickupObject[pt][_root.PUVAR_CLIP_NAME] == currentPickup.pickupType) { thisBrick.pickup = pt; break; } pt++; } } j++; } i++; } var p = 0; while (p < this.activePickups.length) { if (this.activePickups[p] == this.currentPickup) { this.activePickups.slice(p, p); } p++; } _root.ring.currentPickup.removeMovieClip(); _root.ring.currentPickup = 0; _root.carryingPickup = false; _root.pressedObject = ""; } }Instance of Symbol 260 MovieClip [BR_c_barrier_skin0] in Frame 1963onClipEvent (load) { _root.moved = true; } on (press) { if (_root.moved) { _root.moved = false; var ball = _root.bricks.attachMovie("DEVBR_c_barrier", "brick_" + (_root.specialBricks + _root.numSpecialBricks), _root.depth[_root.BRICK_OBJ][_root.CURRENT_DEPTH] + (_root.specialBricks + _root.numSpecialBricks)); _root.numSpecialBricks++; ball.brickType = "CIRCLE"; ball._alpha = 100; ball._x = this._x; ball._y = this._y + this._height; } }Instance of Symbol 97 MovieClip [BananaBunchPickupGfx] in Frame 1963on (press) { _root.pressedObject = "BananaBunchPickupGfx"; }Instance of Symbol 95 MovieClip [BananaPickupGfx] in Frame 1963on (press) { _root.pressedObject = "BananaPickupGfx"; }Instance of Symbol 127 MovieClip [BigBatPickupGfx] in Frame 1963on (press) { _root.pressedObject = "BigBatPickupGfx"; }Instance of Symbol 50 MovieClip [BombPickupGfx] in Frame 1963on (press) { _root.pressedObject = "BombPickupGfx"; }Instance of Symbol 112 MovieClip [CherryPickupGfx] in Frame 1963on (press) { _root.pressedObject = "CherryPickupGfx"; }Instance of Symbol 109 MovieClip [DiamondPickupGfx] in Frame 1963on (press) { _root.pressedObject = "DiamondPickupGfx"; }Instance of Symbol 115 MovieClip [DoubleBatPickupGfx] in Frame 1963on (press) { _root.pressedObject = "DoubleBatPickupGfx"; }Instance of Symbol 265 MovieClip [DrainCoverPickup] in Frame 1963on (press) { _root.pressedObject = "DrainCoverPickupGfx"; }Instance of Symbol 102 MovieClip [EatenMelonPickupGfx] in Frame 1963on (press) { _root.pressedObject = "EatenMelonPickupGfx"; }Instance of Symbol 70 MovieClip [FireballPickupGfx] in Frame 1963on (press) { _root.pressedObject = "FireballPickupGfx"; }Instance of Symbol 75 MovieClip [LittleBatPickupGfx] in Frame 1963on (press) { _root.pressedObject = "LittleBatPickupGfx"; }Instance of Symbol 105 MovieClip [MelonPickupGfx] in Frame 1963on (press) { _root.pressedObject = "MelonPickupGfx"; }Instance of Symbol 65 MovieClip [MultiBallPickupGfx] in Frame 1963on (press) { _root.pressedObject = "MultiBallPickupGfx"; }Instance of Symbol 80 MovieClip [MultiLaserPickupGfx] in Frame 1963on (press) { _root.pressedObject = "MultiLaserPickupGfx"; }Instance of Symbol 62 MovieClip [NextLevelPickupGfx] in Frame 1963on (press) { _root.pressedObject = "NextLevelPickupGfx"; }Instance of Symbol 59 MovieClip [NoGravityPickupGfx] in Frame 1963on (press) { _root.pressedObject = "NoGravityPickupGfx"; }Instance of Symbol 91 MovieClip [RaspberryPickupGfx] in Frame 1963on (press) { _root.pressedObject = "RaspberryPickupGfx"; }Instance of Symbol 125 MovieClip in Frame 1963on (press) { _root.pressedObject = "ReverseBatPickupGfx"; }Instance of Symbol 119 MovieClip [ReverseGravityPickupGfx] in Frame 1963on (press) { _root.pressedObject = "ReverseGravityPickupGfx"; }Instance of Symbol 87 MovieClip [SingleLaserPickupGfx] in Frame 1963on (press) { _root.pressedObject = "SingleLaserPickupGfx"; }Instance of Symbol 130 MovieClip [SpeedDownPickupGfx] in Frame 1963on (press) { _root.pressedObject = "SpeedDownPickupGfx"; }Instance of Symbol 133 MovieClip [SpeedPickupGfx] in Frame 1963on (press) { _root.pressedObject = "SpeedPickupGfx"; }Symbol 17 MovieClip [DrainCover_skin0] Frame 1this.radius = _width / 2; this.pos = new Vector(0, 0); this.vel = new Vector(0, 0); this.m = 9999; stop();Instance of Symbol 14 MovieClip in Symbol 17 MovieClip [DrainCover_skin0] Frame 1onClipEvent (load) { _parent.pos.x = _parent._x; _parent.pos.y = _parent._y; }Symbol 17 MovieClip [DrainCover_skin0] Frame 10stop();Instance of Symbol 14 MovieClip in Symbol 17 MovieClip [DrainCover_skin0] Frame 10onClipEvent (load) { _parent.pos.x = _parent._x; _parent.pos.y = _parent._y; }Instance of Symbol 16 MovieClip in Symbol 17 MovieClip [DrainCover_skin0] Frame 10onClipEvent (enterFrame) { _parent._rotation = _parent._rotation + 2; }Symbol 17 MovieClip [DrainCover_skin0] Frame 20this.removeMovieClip();Instance of Symbol 14 MovieClip in Symbol 17 MovieClip [DrainCover_skin0] Frame 20onClipEvent (enterFrame) { _parent.removeMovieClip(); }Symbol 22 MovieClip Frame 1_visible = false; stop();Symbol 22 MovieClip Frame 2_visible = true;Symbol 26 MovieClip Frame 1function hitAction(aDamage, aPos) { _parent.hits = _parent.hits - aDamage; if (_parent.hits <= 0) { _parent.normalHitSound.start(); _root.addScore(_parent.score); _root.updateScore(); if (_parent.pickup > 0) { _root.spawnPickup(_parent.pickup, aPos.x, aPos.y); } else { _root.spawnRandomPickup(aPos.x, aPos.y); } _parent.gotoAndPlay("destroy"); } else { if (_parent.hits < 10) { myColor = new Color(_parent); myColorTransform = new Object(); var offset = (-((_parent.maxHits - _parent.hits) * 40)); myColorTransform.rb = offset; myColorTransform.gb = offset; myColorTransform.bb = offset; myColor.setTransform(myColorTransform); } _parent.hardHitSound.start(); _root.clankHit.start(); } }Symbol 27 MovieClip [BR_unbreakable_0_skin0] Frame 1walls = 6; normalHitSound = _root.brickHit; clankHitSound = _root.clankHit; score = 20; stop();Symbol 30 MovieClip [BR_normal_0_skin0] Frame 1walls = 3; normalHitSound = _root.brickHit; clankHitSound = _root.clankHit; score = 20; stop();Instance of Symbol 29 MovieClip "thisBrick" in Symbol 30 MovieClip [BR_normal_0_skin0] Frame 1/* no clip actions */Symbol 30 MovieClip [BR_normal_0_skin0] Frame 9_root.bricksToDestroy--; this.removeMovieClip();Symbol 32 MovieClip [BR_unbreakable_1_skin0] Frame 1walls = 6; normalHitSound = _root.brickHit; clankHitSound = _root.clankHit; score = 20; stop();Symbol 35 MovieClip [BR_normal_1_skin0] Frame 1walls = 4; normalHitSound = _root.brickHit; clankHitSound = _root.clankHit; score = 15; stop();Symbol 35 MovieClip [BR_normal_1_skin0] Frame 9_root.bricksToDestroy--; this.removeMovieClip();Symbol 37 MovieClip [BR_unbreakable_3_skin0] Frame 1walls = 6; normalHitSound = _root.brickHit; clankHitSound = _root.clankHit; score = 20; stop();Symbol 40 MovieClip [BR_normal_3_skin0] Frame 1walls = 4; normalHitSound = _root.brickHit; clankHitSound = _root.clankHit; score = 5; stop();Instance of Symbol 39 MovieClip "thisBrick" in Symbol 40 MovieClip [BR_normal_3_skin0] Frame 1/* no clip actions */Symbol 40 MovieClip [BR_normal_3_skin0] Frame 9_root.bricksToDestroy--; this.removeMovieClip();Symbol 42 MovieClip [BR_unbreakable_2_skin0] Frame 1walls = 6; normalHitSound = _root.brickHit; clankHitSound = _root.clankHit; score = 20; stop();Symbol 45 MovieClip [BR_normal_2_skin0] Frame 1walls = 4; normalHitSound = _root.brickHit; clankHitSound = _root.clankHit; score = 10; stop();Instance of Symbol 44 MovieClip "thisBrick" in Symbol 45 MovieClip [BR_normal_2_skin0] Frame 1/* no clip actions */Instance of Symbol 44 MovieClip "thisBrick" in Symbol 45 MovieClip [BR_normal_2_skin0] Frame 2onClipEvent (load) { initPosition = _y; } onClipEvent (enterFrame) { if (_y != initPosition) { var ydiff = (initPosition - _y); _y = (_y + (ydiff / 2)); } }Symbol 45 MovieClip [BR_normal_2_skin0] Frame 9_root.bricksToDestroy--; this.removeMovieClip();Symbol 55 MovieClip [Ball] Frame 1this.thisShadow = "ballShadow"; this.pos = new Vector(-50, -50); this.vel = new Vector(5, 0); this.friction = 0.01; this.anchor = new Vector(_root.halfWidth, _root.halfHeight); this.strength = 10000; this.applyGravity = true; this.doForce = function () { if (!this._visible) { return(undefined); } this.netForce = this.pos.minusNew(this.anchor); var r = this.netForce.getLength(); if (r < 50) { r = 50; } if (_root.bat.hasPickup(_root.PU_REVERSE_GRAVITY) != -1) { this.netForce.setLength((strength * 2) / (r * (r * 2))); } else { this.netForce.setLength((-(this.strength * 2)) / (r * (r * 4))); } }; this.move = function () { if (!this._visible) { return(undefined); } if (this.applyGravity) { this.vel.plus(this.netForce); this.vel.scale(1 - this.friction); } var len = this.vel.getLength(); if (len > 13.7) { this.vel.scale(13.7 / len); } this.pos.plus(this.vel); this._x = this.pos.x; this._y = this.pos.y; }; this.createParticle = function () { var i = _root.depth[_root.STAR_OBJ][_root.CURRENT_DEPTH]; _root.updateDepth(_root.depth[_root.STAR_OBJ]); _root.attachMovie(thisShadow, "Star" + i, i); var thisStar = _root["Star" + i]; thisStar._x = _x; thisStar._y = _y; };Instance of Symbol 47 MovieClip [ballGfx] "ballGfx" in Symbol 55 MovieClip [Ball] Frame 1onClipEvent (enterFrame) { _parent.createParticle(); }Symbol 55 MovieClip [Ball] Frame 2this.thisShadow = "ballShadow"; stop();Symbol 55 MovieClip [Ball] Frame 3thisShadow = "fireShadow"; stop();Instance of Symbol 47 MovieClip [ballGfx] "ballGfx" in Symbol 55 MovieClip [Ball] Frame 3onClipEvent (enterFrame) { _parent.createParticle(); }Symbol 55 MovieClip [Ball] Frame 4thisShadow = "fireShadow"; stop();Instance of Symbol 54 MovieClip [BombPickup] "ballGfx" in Symbol 55 MovieClip [Ball] Frame 4onClipEvent (enterFrame) { _parent.createParticle(); }Symbol 55 MovieClip [Ball] Frame 5this._x = _root.halfWidth; this._y = _root.halfHeight; this.applyGravity = false; this.vel = new Vector(0, 0); this.pos = new Vector(_root.halfWidth, _root.halfHeight);Symbol 55 MovieClip [Ball] Frame 20_root.removeBall(this); stop();Instance of Symbol 47 MovieClip [ballGfx] "ballGfx" in Symbol 55 MovieClip [Ball] Frame 20onClipEvent (enterFrame) { _root.removeBall(_parent); stop(); }Symbol 57 MovieClip [dot] Frame 1_visible = false;Instance of Symbol 136 MovieClip in Symbol 137 MovieClip [QuickStar2] Frame 1onClipEvent (enterFrame) { this._rotation = this._rotation + 30; this._xscale = this._xscale - 2; this._yscale = this._yscale - 2; _parent._x = _parent._x + _parent.vx; _parent._y = _parent._y + _parent.vy; }Symbol 137 MovieClip [QuickStar2] Frame 17this.removeMovieClip();Symbol 140 MovieClip [QuickStar1] Frame 1Instance of Symbol 139 MovieClip in Symbol 140 MovieClip [QuickStar1] Frame 1onClipEvent (enterFrame) { this._rotation = this._rotation + 30; this._xscale = this._xscale - 2; this._yscale = this._yscale - 2; _parent._x = _parent._x + _parent.vx; _parent._y = _parent._y + _parent.vy; }Symbol 140 MovieClip [QuickStar1] Frame 17this.removeMovieClip();Instance of Symbol 142 MovieClip in Symbol 143 MovieClip [Star] Frame 1onClipEvent (enterFrame) { _parent._rotation = _parent._rotation + 8; _parent._xscale = _parent._xscale - 3; _parent._yscale = _parent._yscale - 3; if (_parent._xscale < 30) { _parent.removeMovieClip(); } }Symbol 148 MovieClip [BR_d_barrier_skin0] Frame 1walls = 4; normalHitSound = _root.brickHit; clankHitSound = _root.clankHit; score = 0; stop();Instance of Symbol 147 MovieClip "thisBrick" in Symbol 148 MovieClip [BR_d_barrier_skin0] Frame 1onClipEvent (load) { initPosition = _y; } onClipEvent (enterFrame) { if (_y != initPosition) { var ydiff = (initPosition - _y); _y = (_y + (ydiff / 2)); } }Symbol 153 MovieClip [BR_s_barrier_skin0] Frame 1walls = 4; normalHitSound = _root.brickHit; clankHitSound = _root.clankHit; score = 0; stop();Instance of Symbol 152 MovieClip "thisBrick" in Symbol 153 MovieClip [BR_s_barrier_skin0] Frame 1onClipEvent (load) { initPosition = _y; } onClipEvent (enterFrame) { if (_y != initPosition) { var ydiff = (initPosition - _y); _y = (_y + (ydiff / 2)); } }Symbol 156 MovieClip [BR_i_barrier_skin0] Frame 1walls = 4; normalHitSound = _root.brickHit; clankHitSound = _root.clankHit; score = 0; stop();Instance of Symbol 155 MovieClip "thisBrick" in Symbol 156 MovieClip [BR_i_barrier_skin0] Frame 1onClipEvent (load) { initPosition = _y; } onClipEvent (enterFrame) { if (_y != initPosition) { var ydiff = (initPosition - _y); _y = (_y + (ydiff / 2)); } }Instance of Symbol 158 MovieClip in Symbol 159 MovieClip [fireShadow] Frame 1onClipEvent (enterFrame) { this._alpha = this._alpha - 5; }Symbol 159 MovieClip [fireShadow] Frame 6this.removeMovieClip();Instance of Symbol 161 MovieClip in Symbol 162 MovieClip [ballShadow] Frame 1onClipEvent (enterFrame) { this._alpha = this._alpha - 5; }Symbol 162 MovieClip [ballShadow] Frame 10this.removeMovieClip();Symbol 164 MovieClip [StarFire] Frame 1this.onEnterFrame = function () { this._y++; this._alpha = this._alpha - 5; if (this._alpha <= 0) { this.removeMovieClip(); } };Symbol 166 MovieClip [StarfieldStar] Frame 1this.pos = new Vector(0, 0); this.vel = new Vector(5, 0);Symbol 171 MovieClip [ballLauncher] Frame 36_root.newBall.start();Symbol 171 MovieClip [ballLauncher] Frame 84_root.resetBall(this.thisBall, this._x, this._y);Symbol 171 MovieClip [ballLauncher] Frame 135this.removeMovieClip();Symbol 172 MovieClip [block] Frame 1stop();Instance of Symbol 68 MovieClip in Symbol 172 MovieClip [block] Frame 2onClipEvent (load) { vx = ((random(50) > 25) ? ((-random(8)) - 1) : (random(8) + 1)); vy = ((random(50) > 25) ? ((-random(8)) - 1) : (random(8) + 1)); } onClipEvent (enterFrame) { _x = (_x + vx); vx = vx * 1.1; _y = (_y + vy); vy = vy * 1.1; }Symbol 172 MovieClip [block] Frame 19_parent.removeMovieClip();Symbol 206 MovieClip [LevelPanel] Frame 19gotoAndPlay (1);Symbol 206 MovieClip [LevelPanel] Frame 20_parent.removeMovieClip();Symbol 209 MovieClip [ExplodeParticle] Frame 1this.onEnterFrame = function () { this._x = this._x + this.vx; this._y = this._y + this.vy; this.vx = this.vx * 0.99; this.vy = this.vy * 0.99; this._alpha = this._alpha - 7; this._rotation = this._rotation + (this.vx * 10); if (this._alpha <= 0) { this.removeMovieClip(); } }; stop();Symbol 212 MovieClip [ExplodeAnim] Frame 11this.removeMovieClip();Symbol 213 MovieClip [ExplodeAnimSmall] Frame 1function newExploder() { this.attachMovie("ExplodeAnim", "ExplodeAnim" + explodeDepth, explodeDepth); this["ExplodeAnim" + explodeDepth]._x = ((random(10) > 5) ? (random(40)) : (-random(40))); this["ExplodeAnim" + explodeDepth]._y = ((random(10) > 5) ? (random(40)) : (-random(40))); this["ExplodeAnim" + explodeDepth]._xscale = (this["ExplodeAnim" + explodeDepth]._yscale = random(60) + 60); explodeDepth++; } explodeDepth = 7000; newExploder(); newExploder();Symbol 213 MovieClip [ExplodeAnimSmall] Frame 3newExploder(); newExploder();Symbol 213 MovieClip [ExplodeAnimSmall] Frame 5newExploder(); newExploder();Symbol 213 MovieClip [ExplodeAnimSmall] Frame 7newExploder();Symbol 213 MovieClip [ExplodeAnimSmall] Frame 8newExploder(); newExploder();Symbol 213 MovieClip [ExplodeAnimSmall] Frame 177this.removeMovieClip();Symbol 214 MovieClip [ExplodeAnimMulti] Frame 1function newExploder() { this.attachMovie("ExplodeAnim", "ExplodeAnim" + explodeDepth, explodeDepth); this["ExplodeAnim" + explodeDepth]._x = ((random(10) > 5) ? (random(40)) : (-random(40))); this["ExplodeAnim" + explodeDepth]._y = ((random(10) > 5) ? (random(40)) : (-random(40))); this["ExplodeAnim" + explodeDepth]._xscale = (this["ExplodeAnim" + explodeDepth]._yscale = random(60) + 60); explodeDepth++; } explodeDepth = 7000; newExploder(); newExploder(); newExploder();Symbol 214 MovieClip [ExplodeAnimMulti] Frame 3newExploder(); newExploder(); newExploder();Symbol 214 MovieClip [ExplodeAnimMulti] Frame 5newExploder(); newExploder(); newExploder();Symbol 214 MovieClip [ExplodeAnimMulti] Frame 7newExploder(); newExploder(); newExploder();Symbol 214 MovieClip [ExplodeAnimMulti] Frame 8newExploder(); newExploder(); newExploder(); newExploder(); newExploder();Symbol 214 MovieClip [ExplodeAnimMulti] Frame 11newExploder(); newExploder(); newExploder(); newExploder(); newExploder();Symbol 214 MovieClip [ExplodeAnimMulti] Frame 15newExploder(); newExploder(); newExploder(); newExploder(); newExploder();Symbol 214 MovieClip [ExplodeAnimMulti] Frame 18newExploder(); newExploder(); newExploder(); newExploder(); newExploder();Symbol 214 MovieClip [ExplodeAnimMulti] Frame 177this.removeMovieClip();Symbol 225 MovieClip [scoreInput] Frame 1_root.drawSingleNum(_root.hiScorePosition + 1, this.num._x, this.num._y, this.num, false, false, 70); playerNameTxt = "";Instance of Symbol 222 MovieClip in Symbol 225 MovieClip [scoreInput] Frame 1onClipEvent (load) { this.ticks = 0; this.pressedButton = false; _root.histatus = ""; _root.himessage = ""; } on (press) { if (!this.pressedButton) { _parent.attachMovie("submit", "submit", 10102); _parent.submit._x = 0; _parent.submit._y = 0; _parent.submit._alpha = 80; _root.localHiScores.splice(_root.hiScorePosition, 0, _root.totalScore); _root.localHiNames.splice(_root.hiScorePosition, 0, _parent.playerNameTxt); loadVariables ((((((_root.HI_SCORE_SCRIPT + "?view=add&gameID=5&playerName=") + _parent.playerNameTxt) + "&playerScore=") + _root.totalScore) + "&view_type=FLASH&dummy=") + getTimer(), this); this.pressedButton = true; } } onClipEvent (enterFrame) { if (Key.isDown(13) && (!this.pressedButton)) { _parent.attachMovie("submit", "submit", 10102); _parent.submit._x = 0; _parent.submit._y = 0; _parent.submit._alpha = 80; _root.localHiScores.splice(_root.hiScorePosition, 0, _root.totalScore); _root.localHiNames.splice(_root.hiScorePosition, 0, _parent.playerNameTxt); loadVariables ((((((_root.HI_SCORE_SCRIPT + "?view=add&gameID=5&playerName=") + _parent.playerNameTxt) + "&playerScore=") + _root.totalScore) + "&view_type=FLASH&dummy=") + getTimer(), this); this.pressedButton = true; } if (((_root.histatus = this.ticks > 50)) && (this.pressedButton)) { _root.gotoAndPlay("Finish"); _parent.removeMovieClip(); } if (this.pressedButton) { this.ticks++; } }Symbol 228 MovieClip [ballGfxBounce] Frame 10stop();Symbol 233 MovieClip [ExtraLife] Frame 33this.removeMovieClip();Instance of Symbol 234 MovieClip "numObj" in Symbol 235 MovieClip [PointsScoreNotify] Frame 2onClipEvent (load) { _root.drawSingleNum(_parent.num, 0, 0, this, false, true); }Symbol 235 MovieClip [PointsScoreNotify] Frame 22this.removeMovieClip();Symbol 238 MovieClip [SmallBulletLaunch] Frame 15stop();Symbol 241 MovieClip Frame 1this.onEnterFrame = function () { };Instance of Symbol 240 MovieClip in Symbol 241 MovieClip Frame 1onClipEvent (enterFrame) { this._alpha = random(60) + 20; }Instance of Symbol 241 MovieClip "bulletGfx" in Symbol 242 MovieClip [SmallBullet] Frame 1onClipEvent (enterFrame) { _parent._x = _parent._x + _parent.vx; _parent._y = _parent._y + _parent.vy; _parent.vx = _parent.vx * 1.05; _parent.vy = _parent.vy * 1.05; var x = (_parent._x - _root.halfWidth); var y = (_parent._y - _root.halfHeight); var len = Math.sqrt((x * x) + (y * y)); if (len > ((_root.Ring._width / 2) - Math.abs(_parent.bulletGfx._y))) { bv = new object(); bv.x = _parent.bulletGfx._x; bv.y = _parent.bulletGfx._y; _parent.localToGlobal(bv); _root.startParticleExplosion(bv.x, bv.y); _root.explode.start(); _root.bat.activeBullets--; _parent.removeMovieClip(); } }Symbol 250 Buttonon (press) { _root.gotoAndPlay("GameOver"); gotoAndPlay (2); }Symbol 254 Buttonon (press) { _root.paused = false; gotoAndPlay (2); }Symbol 255 MovieClip [quit] Frame 1stop();Symbol 255 MovieClip [quit] Frame 2this.removeMovieClip();Symbol 260 MovieClip [BR_c_barrier_skin0] Frame 1this.radius = _width / 2; this.pos = new Vector(0, 0); this.vel = new Vector(0, 0); this.m = 99; normalHitSound = _root.brickHit; clankHitSound = _root.clankHit; score = 0; stop();Instance of Symbol 259 MovieClip "thisBrick" in Symbol 260 MovieClip [BR_c_barrier_skin0] Frame 1onClipEvent (load) { _parent.pos.x = _parent._x; _parent.pos.y = _parent._y; initPosition = _y; radius = _width / 2; } onClipEvent (enterFrame) { if (_y != initPosition) { var ydiff = (initPosition - _y); _y = (_y + (ydiff / 2)); } }Symbol 262 MovieClip [AreaOfInfluence] Frame 1Symbol 264 MovieClip [DrainCoverPickupGfx] Frame 1stop();Symbol 265 MovieClip [DrainCoverPickup] Frame 1stop();Instance of Symbol 272 MovieClip in Symbol 273 MovieClip Frame 1onClipEvent (enterFrame) { this._alpha = random(20) + 80; }Symbol 274 MovieClip [BeamLaser] Frame 12function lightningStrike(fromx, fromy, col, depth, xbias) { var origX = fromx; var origY = fromy; var tox; var toy; this.lineStyle(1, col, 100); var bolt = 0; while (bolt < depth) { tox = (origX + (random(20) - 10)) + xbias; toy = fromy + 10; this.moveTo(fromx, fromy); this.lineTo(tox, toy); fromx = tox; fromy = toy; bolt++; } }Instance of Symbol 270 MovieClip in Symbol 274 MovieClip [BeamLaser] Frame 12onClipEvent (enterFrame) { this._alpha = random(30) + 50; }Symbol 274 MovieClip [BeamLaser] Frame 13this.clear(); lightningStrike(0, 45, 16777215, 15, 0); lightningStrike(0, 45, 14540270, 10, 0); lightningStrike(0, 45, 15658751, 15, 0); gotoAndPlay (12);Symbol 274 MovieClip [BeamLaser] Frame 15this.clear();Symbol 274 MovieClip [BeamLaser] Frame 23this.removeMovieClip();Symbol 282 Buttonon (press) { getURL ("http://www.arcadetown.com/order/choosemethod.asp?gameid=xbound", "blank"); _root.gotoAndPlay("Intro", 1); }Symbol 284 MovieClip Frame 1function addPickup(aPickup, px, py) { var newPickupCount = -1; switch (aPickup) { case _root.PU_BOMB : removeCurrentPickup(); this.hasBomb = true; var g = 0; while (g < _root.ballIndex.length) { thisBall = _root["ball" + _root.ballIndex[g]]; if (thisBall._currentframe != 4) { thisBall.gotoAndStop(4); } g++; } break; case _root.PU_MULTI_LASER : removeCurrentPickup(); break; case _root.PU_SINGLE_LASER : removeCurrentPickup(); if (!_root.bm) { _root.attachMovie("BeamLaser", "bm", _root.BEAM_DEPTH); _root.bm._x = _x; _root.bm._y = _y; } _root.electric.start(0, 15); this.maxMove = 6; this.moveStep = 1; break; case _root.PU_BANANA : case _root.PU_BANANA_BUNCH : case _root.PU_MELON : case _root.PU_EATEN_MELON : case _root.PU_RASPBERRY : case _root.PU_DIAMOND : case _root.PU_CHERRY : var sc = _root.pickupObject[aPickup][_root.PUVAR_SCORE]; _root.addScore(sc); _root.popupScore(sc, px, py); break; case _root.PU_REVERSE_BAT : removeCurrentPickup(); break; case _root.PU_NEXT_LEVEL : removeCurrentPickup(); cpc = 0; update(); _root.gotoAndPlay("NextLevel"); break; case _root.PU_LARGE_BAT : removeCurrentPickup(); var oldRot = _rotation; _rotation = 0; _width = (initWidth + 20); _rotation = oldRot; break; case _root.PU_SMALL_BAT : removeCurrentPickup(); var oldRot = _rotation; _rotation = 0; _width = (initWidth - 15); _rotation = oldRot; break; case _root.PU_SPEED_UP : this.maxMove = 24; this.moveStep = 8; break; case _root.PU_SPEED_DOWN : this.maxMove = 10; this.moveStep = 2; break; case _root.PU_NO_GRAVITY : removeCurrentPickup(); var g = 0; while (g < _root.ballIndex.length) { thisBall = _root["ball" + _root.ballIndex[g]]; thisBall.applyGravity = false; g++; } break; case _root.PU_REVERSE_GRAVITY : removeCurrentPickup(); break; case _root.PU_FIREBALL : removeCurrentPickup(); if (!hasBomb) { var g = 0; while (g < _root.ballIndex.length) { thisBall = _root["ball" + _root.ballIndex[g]]; if (thisBall._currentframe != 3) { thisBall.gotoAndStop(3); } g++; } } break; case _root.PU_MULTI_BALL : _root.LaunchBall(); break; case _root.PU_DOUBLE_BAT : removeCurrentPickup(); if (!_root.bat1) { _root.bat.duplicateMovieClip("bat1", 30); _root.bat1.gotoAndStop(1); _root.bat1._rotation = _root.bat1._rotation + 180; } break; case _root.PU_DRAIN_COVER : removeCurrentPickup(); if (_root.DrainCover) { break; } _root.attachMovie("DrainCover_skin" + _root.skin, "DrainCover", 10); dc = _root.DrainCover; dc.radius = dc._width / 2; dc.m = 1; dc.vx = 0; dc.vy = 0; dc._x = _root.halfWidth; dc._y = _root.halfHeight; } newPickupCount = _root.pickupObject[aPickup][_root.PUVAR_DURATION]; if (newPickupCount != -1) { var pickupNum = hasPickup(aPickup); cpc = 0; pickupCount = newPickupCount; cp = aPickup; cpc = pickupCount; } gotoAndPlay (2); } function resetBat() { this.maxMove = _root.DEFAULT_BALL_MAX_MOVE; this.moveStep = _root.DEFAULT_BALL_MOVE_STEP; this.hasBomb = false; this.removeCurrentPickup(); } function removeCurrentPickup() { switch (cp) { case _root.PU_LARGE_BAT : case _root.PU_SMALL_BAT : var oldRot = _rotation; _rotation = 0; _width = initWidth; _height = initHeight; _rotation = oldRot; gotoAndPlay (2); break; case _root.PU_SPEED_UP : case _root.PU_SPEED_DOWN : this.maxMove = _root.DEFAULT_BALL_MAX_MOVE; this.moveStep = _root.DEFAULT_BALL_MOVE_STEP; break; case _root.PU_DRAIN_COVER : _root.DrainCover.gotoAndPlay(11); break; case _root.PU_FIREBALL : if (!hasBomb) { var g = 0; while (g < _root.ballIndex.length) { thisBall = _root["ball" + _root.ballIndex[g]]; thisBall.gotoAndStop(2); g++; } } break; case _root.PU_DOUBLE_BAT : _root.bat1.removeMovieClip(); break; case _root.PU_NO_GRAVITY : var g = 0; while (g < _root.ballIndex.length) { thisBall = _root["ball" + _root.ballIndex[g]]; thisBall.applyGravity = true; g++; } break; case _root.PU_MULTI_LASER : _root.sbl.removeMovieClip(); break; case _root.PU_SINGLE_LASER : _root.bm.gotoAndPlay(15); this.maxMove = _root.DEFAULT_BALL_MAX_MOVE; this.moveStep = _root.DEFAULT_BALL_MOVE_STEP; _root.electric.stop("electric"); case _root.PU_REVERSE_GRAVITY : case _root.PU_MULTI_BALL : } pickupCount = -1; cpc = -1; cp = -1; } function moveBat() { this._rotation = this._rotation + this.move; if (_root.bat1) { _root.bat1._rotation = _root.bat1._rotation + this.move; } } function update() { moveBat(); if (cpc > 0) { cpc--; } if (cpc == 0) { removeCurrentPickup(); } } function hasPickup(aPickup) { if (cp == aPickup) { return(cp); } return(-1); } walls = 4; numDots = 10; stop();Symbol 284 MovieClip Frame 10if (this.hasPickup(PU_SINGLE_LASER)) { gotoAndPlay (11); } else { gotoAndPlay (1); }Instance of Symbol 47 MovieClip [ballGfx] in Symbol 286 MovieClip [frontEndBall] Frame 1onClipEvent (load) { this.vx = ((random(100) > 50) ? (-(random(4) + 2)) : (random(4) + 2)); vy = -random(10); bounce = 1; gravity = 0.4; } onClipEvent (enterFrame) { if (!dragging) { this.vy = this.vy + this.gravity; if (_parent._y > 460) { this.bounce = this.bounce - 0.1; this.vy = this.vy * (-bounce); this.vx = ((random(100) > 50) ? (-(random(4) + 2)) : (random(4) + 2)); if (this.bounce < 0.8) { this.bounce = 1; this.vy = -(random(10) + 10); } _parent._y = 460; } if (_parent._x > 640) { this.vx = -this.vx; _parent._x = 640; } else if (_parent._x < 0) { this.vx = -this.vx; _parent._x = 0; } _parent._x = _parent._x + this.vx; _parent._y = _parent._y + this.vy; } }Symbol 288 MovieClip [ScoresNotAvailable] Frame 1stop();Symbol 288 MovieClip [ScoresNotAvailable] Frame 81this.removeMovieClip();Symbol 292 MovieClip [OuterRing_skin0] Frame 1stop();Symbol 299 MovieClip [Saucer] Frame 1function createParticle() { i = _root.SAUCER_DEPTH++; if (_root.SAUCER_DEPTH > _root.SAUCER_DEPTH_MAX) { _root.SAUCER_DEPTH = _root.SAUCER_DEPTH_MIN; } _root.attachMovie(thisShadow, "Star" + i, i); var thisStar = _root["Star" + i]; thisStar._alpha = 70; thisStar._rotation = sauce._rotation; thisStar._xscale = this._xscale * 3; thisStar._yscale = this._yscale * 3; thisStar._x = _x; thisStar._y = _y; } thisShadow = "saucerShadow";Instance of Symbol 298 MovieClip "blob" in Symbol 299 MovieClip [Saucer] Frame 1onClipEvent (enterFrame) { _parent.createParticle(); if (Math.random() > 0.05) { if (Math.random() > 0.5) { vx = vx + (Math.random() / 2); } else { vx = vx - (Math.random() / 2); } if (Math.random() > 0.5) { vy = vy + (Math.random() / 2); } else { vy = vy - (Math.random() / 2); } } else { if (vx > 0) { vx = vx - 1.6; } if (vx < 0) { vx = vx + 1.6; } if (vy > 0) { vy = vy - 1.6; } if (vy < 0) { vy = vy + 1.6; } } if (vx > 10) { vx = 10; } if (vx < -10) { vx = -10; } if (vy > 10) { vy = 10; } if (vy < -10) { vy = -10; } _parent._x = _parent._x + vx; _parent._y = _parent._y + vy; x = _parent._x; y = _parent._y; h = _parent._height; w = _parent._width; if (x < 0) { if (vx < 0) { vx = -vx; } _parent._x = 1; } else if ((x + w) > 640) { if (vx > 0) { vx = -vx; } _parent._x = (640 - w) - 1; } if (y < 0) { if (vy < 0) { vy = -vy; } _parent._y = 1; } else if ((y + h) > 480) { if (vy > 0) { vy = -vy; } _parent._y = (480 - h) - 1; } } onClipEvent (load) { landingSaucer = false; this.d = 15; this.vy = -(random(5) + 3); this.vx = 0; if (random(10) > 5) { this.vx = random(5); } else { this.vx = -random(5); } this.oldX = this._x; this.oldY = this._y; }Symbol 299 MovieClip [Saucer] Frame 17gotoAndPlay (1);Symbol 302 MovieClip Frame 1stop();Symbol 307 MovieClip Frame 20this.gotoAndPlay(2);Symbol 310 MovieClip Frame 1_root.localHiScores = new Array("", "", "", "", "", "", "", "", "", ""); _root.localHiNames = new Array("", "", "", "", "", "", "", "", "", ""); _root.hiScoresChanged = false; this.scores = new Array("9000", "6500", "6498", "2400", "1000", "480", "305", "150", "80", "40"); this.names = new Array("wideeye", "Mr Biggins", "caul-ee-flower", "Jesus", "Winker", "Ginger", "Ale", "Piddle", "Lardy", "Parp"); this.firstRun = true; this.refreshOK = false; this.ticks = 0; if (this.showPanels) { this.hiScorePanel._visible = true; this.hiScoreErrorPanel._visible = false; } else { this.hiScorePanel._visible = false; this.hiScoreErrorPanel._visible = false; }Instance of Symbol 309 MovieClip in Symbol 310 MovieClip Frame 1onClipEvent (enterFrame) { this._visible = false; }Symbol 310 MovieClip Frame 2function copyHiScores() { var i = 0; while (this["hiname" + i] != undefined) { if ((this["hiname" + i] != _root.localHiNames[i]) || (this["hiscores" + i] != _root.localHiScores[i])) { _root.hiScoresChanged = true; } i++; } if (_root.hiScoresChanged) { i = 0; while (this["hiname" + i] != undefined) { _root.localHiNames[i] = this["hiname" + i]; _root.localHiScores[i] = this["hiscore" + i]; i++; } j = i; while (j < 10) { _root.localHiNames[j] = ""; _root.localHiScores[j] = "0"; j++; } } } loadVariables ((_root.HI_SCORE_SCRIPT + "?view=view&gameID=5&lowOrHigh=h&view_type=FLASH&dummy=") + getTimer(), this);Symbol 310 MovieClip Frame 4if (this.himessage != undefined) { this.hiScorePanel._visible = false; this.firstRun = false; this.copyHiScores(); this.himessage = undefined; this.refreshOK = true; } if ((this.ticks > 50) && (this.firstRun)) { _root.hiScoreError = true; _root.hiScoresChanged = true; i = 0; while (i < scores.length) { _root.localHiScores[i] = scores[i]; _root.localHiNames[i] = names[i]; i++; } var i; if (this.showPanels) { this.hiScorePanel._visible = false; this.hiScoreErrorPanel._visible = true; this.hiScoreErrorPanel.gotoAndPlay(2); this.sna._x = hiScorePanel._x; this.sna._y = hiScorePanel._y; } this.firstRun = false; this.ticks = 0; if (!this.refreshEnabled) { this.gotoAndStop(5); } else { this.gotoAndPlay(2); } } else if (this.refreshOK) { this.refreshOK = false; this.ticks = 0; this.hiScorePanel._visible = false; if (!this.refreshEnabled) { this.gotoAndStop(5); } else { this.gotoAndPlay(2); } } else if (!this.refreshOK) { this.ticks++; this.gotoAndPlay(3); }Symbol 310 MovieClip Frame 5stop();Symbol 318 MovieClip Frame 1stop();Symbol 321 MovieClip Frame 1if (_root.VERSION == _root.VERSION_FULL) { this._alpha = 20; } stop();Symbol 324 MovieClip Frame 1stop();Symbol 327 MovieClip Frame 1stop();Symbol 331 MovieClip Frame 1stop();Symbol 334 MovieClip Frame 1stop();Symbol 337 MovieClip Frame 1stop();Symbol 340 Buttonon (press) { gotoAndPlay (4); }Symbol 356 Buttonon (press) { getURL ("http://www.arcadetown.com?gameid=xbound", "blank"); }Symbol 365 Buttonon (press) { getURL ("http://www.plasticmartians.com", "blank"); }Symbol 392 MovieClip Frame 1stop();Symbol 407 Buttonon (press) { _root.gotoAndPlay("pickups"); }Symbol 409 MovieClip Frame 1stop(); drainSize = 40; drainRadius = drainSize / 2;Symbol 409 MovieClip Frame 2stop();Symbol 409 MovieClip Frame 3stop();Symbol 426 Buttonon (press) { _root.gotoAndPlay("startInstruct"); }Symbol 462 MovieClip Frame 1stop();Symbol 466 Buttonon (press) { if (this._visible) { ldata = levelData[level]; oScore.removeMovieClip(); oLife.removeMovieClip(); Key.removeListener(_root.someListener); colList.destroyAllObjects(); removeAllBalls(); var i = depth[LAUNCHER_OBJ][MIN_DEPTH]; while (i < (depth[LAUNCHER_OBJ][MIN_DEPTH] + depth[LAUNCHER_OBJ][NUM_OBJECTS])) { _root["bl" + i].removeMovieClip(); i++; } gotoAndPlay (1963); } }Symbol 468 Buttonon (press) { if (this._visible) { var i = 0; while (i < levelData.length) { txt = ("// level " + (i + 1)) + "\nnew Array("; var j = 0; while (j < levelData[i].length) { if ((levelData[i][j] == "@") || (levelData[i][j] == "#")) { txt = txt + (("\"" + levelData[i][j]) + "\""); } else { txt = txt + levelData[i][j]; } if (j != (levelData[i].length - 1)) { txt = txt + ","; } j++; } txt = txt + "),"; i++; } } }Symbol 474 MovieClip Frame 20stop();Symbol 479 MovieClip Frame 1function addBall() { this.currentX = (this.ballsHolder._x + 2) + ((this.currentBall % 4) * 18); if ((this.currentBall % 4) == 0) { this.currentY = this.currentY + 18; } this.attachMovie("ballGfxBounce", ball + this.currentBall, 92929 + this.currentBall); this[ball + this.currentBall]._xscale = (this[ball + this.currentBall]._yscale = 50); this[ball + this.currentBall]._x = currentX; this[ball + this.currentBall]._y = currentY; } this.currentY = this.ballsHolder._y; this.currentBall = 0;Symbol 479 MovieClip Frame 28_root.drawSingleNum(_root.LEVELS_SCORE_MULTIPLIER * (_root.level + 1), this.levelNum._x, this.levelNum._y, this.levelNum, true, false, 70);Symbol 479 MovieClip Frame 36if (this.currentBall < _root.lives) { this.addBall(); this.currentBall++; _root.drawSingleNum(this.currentBall * _root.BALLS_SCORE_MULTIPLIER, this.ballsNum._x, this.levelNum._y, this.ballsNum, true, false, 70); } else { gotoAndPlay (45); }Symbol 479 MovieClip Frame 44gotoAndPlay (36);Symbol 479 MovieClip Frame 55stop();Symbol 482 Buttonon (press) { _root.buildLevel(); }Symbol 484 Buttonon (press) { _root.testLevel(); }Symbol 486 Buttonon (press) { _root.clearLevel(); }
Library Items
Symbol 1 Sound [strikeDull] | ||
Symbol 2 Sound [electric] | ||
Symbol 3 Sound [powerUpHitBat] | ||
Symbol 4 Sound [powerUp] | ||
Symbol 5 Sound [nextLevel] | ||
Symbol 6 Sound [newBall] | ||
Symbol 7 Sound [LaserShoot] | ||
Symbol 8 Sound [explode] | ||
Symbol 9 Sound [clankHit] | ||
Symbol 10 Sound [brickHit2] | ||
Symbol 11 Sound [brickHit1] | ||
Symbol 12 Sound [ballDrop] | ||
Symbol 13 Graphic | Used by:14 | |
Symbol 14 MovieClip | Uses:13 | Used by:17 |
Symbol 15 Graphic | Used by:16 | |
Symbol 16 MovieClip | Uses:15 | Used by:17 |
Symbol 17 MovieClip [DrainCover_skin0] | Uses:14 16 | |
Symbol 18 Graphic | Used by:19 | |
Symbol 19 MovieClip [baseLine] | Uses:18 | |
Symbol 20 Graphic | Used by:22 | |
Symbol 21 Graphic | Used by:22 | |
Symbol 22 MovieClip | Uses:20 21 | Used by:27 30 32 35 37 40 42 45 148 153 156 284 |
Symbol 23 Bitmap | Used by:24 31 36 41 145 150 170 203 244 257 267 290 291 | |
Symbol 24 Graphic | Uses:23 | Used by:25 |
Symbol 25 MovieClip | Uses:24 | Used by:27 29 |
Symbol 26 MovieClip | Used by:27 30 32 35 37 40 42 45 148 153 156 260 | |
Symbol 27 MovieClip [BR_unbreakable_0_skin0] | Uses:22 25 26 | |
Symbol 28 Graphic | Used by:29 | |
Symbol 29 MovieClip | Uses:25 28 | Used by:30 |
Symbol 30 MovieClip [BR_normal_0_skin0] | Uses:29 22 26 | |
Symbol 31 Graphic | Uses:23 | Used by:32 34 |
Symbol 32 MovieClip [BR_unbreakable_1_skin0] | Uses:22 31 26 | |
Symbol 33 Graphic | Used by:34 | |
Symbol 34 MovieClip | Uses:31 33 | Used by:35 |
Symbol 35 MovieClip [BR_normal_1_skin0] | Uses:34 26 22 | |
Symbol 36 Graphic | Uses:23 | Used by:37 39 |
Symbol 37 MovieClip [BR_unbreakable_3_skin0] | Uses:22 36 26 | |
Symbol 38 Graphic | Used by:39 | |
Symbol 39 MovieClip | Uses:36 38 | Used by:40 |
Symbol 40 MovieClip [BR_normal_3_skin0] | Uses:39 26 22 | |
Symbol 41 Graphic | Uses:23 | Used by:42 44 |
Symbol 42 MovieClip [BR_unbreakable_2_skin0] | Uses:22 41 26 | |
Symbol 43 Graphic | Used by:44 | |
Symbol 44 MovieClip | Uses:41 43 | Used by:45 |
Symbol 45 MovieClip [BR_normal_2_skin0] | Uses:44 26 22 | |
Symbol 46 Graphic [ballGfx] | Used by:47 228 | |
Symbol 47 MovieClip [ballGfx] | Uses:46 | Used by:55 171 286 |
Symbol 48 Graphic | Used by:55 | |
Symbol 49 Graphic | Used by:50 | |
Symbol 50 MovieClip [BombPickupGfx] | Uses:49 | Used by:53 Timeline |
Symbol 51 Graphic | Used by:52 | |
Symbol 52 MovieClip | Uses:51 | Used by:53 |
Symbol 53 MovieClip | Uses:50 52 | Used by:54 285 |
Symbol 54 MovieClip [BombPickup] | Uses:53 | Used by:55 |
Symbol 55 MovieClip [Ball] | Uses:47 48 54 | |
Symbol 56 Graphic | Used by:57 | |
Symbol 57 MovieClip [dot] | Uses:56 | |
Symbol 58 Graphic | Used by:59 | |
Symbol 59 MovieClip [NoGravityPickupGfx] | Uses:58 | Used by:60 Timeline |
Symbol 60 MovieClip [NoGravityPickup] | Uses:59 | |
Symbol 61 Graphic | Used by:62 | |
Symbol 62 MovieClip [NextLevelPickupGfx] | Uses:61 | Used by:63 Timeline |
Symbol 63 MovieClip [NextLevelPickup] | Uses:62 | |
Symbol 64 Graphic | Used by:65 | |
Symbol 65 MovieClip [MultiBallPickupGfx] | Uses:64 | Used by:66 Timeline |
Symbol 66 MovieClip [MultiBallPickup] | Uses:65 | |
Symbol 67 Graphic | Used by:68 | |
Symbol 68 MovieClip | Uses:67 | Used by:70 172 |
Symbol 69 Graphic | Used by:70 | |
Symbol 70 MovieClip [FireballPickupGfx] | Uses:68 69 | Used by:71 285 Timeline |
Symbol 71 MovieClip [FireballPickup] | Uses:70 | |
Symbol 72 Graphic | Used by:75 80 87 119 124 127 | |
Symbol 73 Graphic | Used by:74 | |
Symbol 74 MovieClip | Uses:73 | Used by:75 127 398 405 424 |
Symbol 75 MovieClip [LittleBatPickupGfx] | Uses:72 74 | Used by:76 Timeline |
Symbol 76 MovieClip [LittleBatPickup] | Uses:75 | |
Symbol 77 Graphic | Used by:78 | |
Symbol 78 MovieClip | Uses:77 | Used by:80 |
Symbol 79 Graphic | Used by:80 87 | |
Symbol 80 MovieClip [MultiLaserPickupGfx] | Uses:72 78 79 | Used by:81 Timeline |
Symbol 81 MovieClip [MultiLaserPickup] | Uses:80 | |
Symbol 82 Graphic | Used by:87 | |
Symbol 83 Graphic | Used by:87 | |
Symbol 84 Graphic | Used by:87 | |
Symbol 85 Graphic | Used by:87 | |
Symbol 86 Graphic | Used by:87 | |
Symbol 87 MovieClip [SingleLaserPickupGfx] | Uses:72 82 79 83 84 85 86 | Used by:88 Timeline |
Symbol 88 MovieClip [SingleLaserPickup] | Uses:87 | |
Symbol 89 Graphic | Used by:91 | |
Symbol 90 Graphic | Used by:91 | |
Symbol 91 MovieClip [RaspberryPickupGfx] | Uses:89 90 | Used by:92 285 Timeline |
Symbol 92 MovieClip [RaspberryPickup] | Uses:91 | |
Symbol 93 Graphic | Used by:94 | |
Symbol 94 MovieClip | Uses:93 | Used by:95 97 |
Symbol 95 MovieClip [BananaPickupGfx] | Uses:94 | Used by:96 Timeline |
Symbol 96 MovieClip [BananaPickup] | Uses:95 | |
Symbol 97 MovieClip [BananaBunchPickupGfx] | Uses:94 | Used by:98 Timeline |
Symbol 98 MovieClip [BananaBunchPickup] | Uses:97 | |
Symbol 99 Graphic | Used by:102 | |
Symbol 100 Graphic | Used by:101 | |
Symbol 101 MovieClip | Uses:100 | Used by:102 105 |
Symbol 102 MovieClip [EatenMelonPickupGfx] | Uses:99 101 | Used by:103 Timeline |
Symbol 103 MovieClip [EatenMelonPickup] | Uses:102 | |
Symbol 104 Graphic | Used by:105 | |
Symbol 105 MovieClip [MelonPickupGfx] | Uses:104 101 | Used by:106 Timeline |
Symbol 106 MovieClip [MelonPickup] | Uses:105 | |
Symbol 107 Graphic | Used by:109 | |
Symbol 108 Graphic | Used by:109 282 | |
Symbol 109 MovieClip [DiamondPickupGfx] | Uses:107 108 | Used by:110 285 Timeline |
Symbol 110 MovieClip [DiamondPickup] | Uses:109 | |
Symbol 111 Graphic | Used by:112 | |
Symbol 112 MovieClip [CherryPickupGfx] | Uses:111 | Used by:113 285 Timeline |
Symbol 113 MovieClip [CherryPickup] | Uses:112 | |
Symbol 114 Graphic | Used by:115 | |
Symbol 115 MovieClip [DoubleBatPickupGfx] | Uses:114 | Used by:116 Timeline |
Symbol 116 MovieClip [DoubleBatPickup] | Uses:115 | |
Symbol 117 Graphic | Used by:118 | |
Symbol 118 MovieClip | Uses:117 | Used by:119 |
Symbol 119 MovieClip [ReverseGravityPickupGfx] | Uses:72 118 | Used by:120 Timeline |
Symbol 120 MovieClip [ReverseGravityPickup] | Uses:119 | |
Symbol 121 Graphic | Used by:122 | |
Symbol 122 MovieClip | Uses:121 | Used by:124 |
Symbol 123 Graphic | Used by:124 | |
Symbol 124 MovieClip [ReverseBatPickupGfx] | Uses:72 122 123 | Used by:125 |
Symbol 125 MovieClip | Uses:124 | Used by:126 Timeline |
Symbol 126 MovieClip [ReverseBatPickup] | Uses:125 | |
Symbol 127 MovieClip [BigBatPickupGfx] | Uses:72 74 | Used by:128 Timeline |
Symbol 128 MovieClip [BigBatPickup] | Uses:127 | |
Symbol 129 Graphic | Used by:130 | |
Symbol 130 MovieClip [SpeedDownPickupGfx] | Uses:129 | Used by:131 Timeline |
Symbol 131 MovieClip [SpeedDownPickup] | Uses:130 | |
Symbol 132 Graphic | Used by:133 | |
Symbol 133 MovieClip [SpeedPickupGfx] | Uses:132 | Used by:134 Timeline |
Symbol 134 MovieClip [SpeedUpPickup] | Uses:133 | |
Symbol 135 Graphic | Used by:136 | |
Symbol 136 MovieClip | Uses:135 | Used by:137 |
Symbol 137 MovieClip [QuickStar2] | Uses:136 | |
Symbol 138 Graphic | Used by:139 | |
Symbol 139 MovieClip | Uses:138 | Used by:140 |
Symbol 140 MovieClip [QuickStar1] | Uses:139 | |
Symbol 141 Graphic | Used by:142 | |
Symbol 142 MovieClip | Uses:141 | Used by:143 |
Symbol 143 MovieClip [Star] | Uses:142 | |
Symbol 144 Graphic | Used by:147 | |
Symbol 145 Graphic | Uses:23 | Used by:146 |
Symbol 146 MovieClip | Uses:145 | Used by:147 |
Symbol 147 MovieClip | Uses:144 146 | Used by:148 |
Symbol 148 MovieClip [BR_d_barrier_skin0] | Uses:147 22 26 | |
Symbol 149 Graphic | Used by:152 | |
Symbol 150 Graphic | Uses:23 | Used by:151 |
Symbol 151 MovieClip | Uses:150 | Used by:152 |
Symbol 152 MovieClip | Uses:149 151 | Used by:153 |
Symbol 153 MovieClip [BR_s_barrier_skin0] | Uses:152 26 22 | |
Symbol 154 Graphic | Used by:155 | |
Symbol 155 MovieClip | Uses:154 | Used by:156 |
Symbol 156 MovieClip [BR_i_barrier_skin0] | Uses:155 22 26 | |
Symbol 157 Graphic | Used by:158 | |
Symbol 158 MovieClip | Uses:157 | Used by:159 |
Symbol 159 MovieClip [fireShadow] | Uses:158 | |
Symbol 160 Graphic | Used by:161 | |
Symbol 161 MovieClip | Uses:160 | Used by:162 |
Symbol 162 MovieClip [ballShadow] | Uses:161 | |
Symbol 163 Graphic | Used by:164 | |
Symbol 164 MovieClip [StarFire] | Uses:163 | |
Symbol 165 Graphic | Used by:166 | |
Symbol 166 MovieClip [StarfieldStar] | Uses:165 | |
Symbol 167 Graphic | Used by:171 | |
Symbol 168 Graphic | Used by:171 | |
Symbol 169 Graphic | Used by:171 | |
Symbol 170 Graphic | Uses:23 | Used by:171 |
Symbol 171 MovieClip [ballLauncher] | Uses:167 168 169 170 47 | |
Symbol 172 MovieClip [block] | Uses:68 | |
Symbol 173 Graphic | Used by:174 | |
Symbol 174 MovieClip [0_gfx] | Uses:173 | Used by:175 |
Symbol 175 MovieClip [0] | Uses:174 | |
Symbol 176 Graphic | Used by:177 | |
Symbol 177 MovieClip [9_gfx] | Uses:176 | Used by:178 |
Symbol 178 MovieClip [9] | Uses:177 | |
Symbol 179 Graphic | Used by:180 | |
Symbol 180 MovieClip [8_gfx] | Uses:179 | Used by:181 |
Symbol 181 MovieClip [8] | Uses:180 | |
Symbol 182 Graphic | Used by:183 | |
Symbol 183 MovieClip [7_gfx] | Uses:182 | Used by:184 |
Symbol 184 MovieClip [7] | Uses:183 | |
Symbol 185 Graphic | Used by:186 | |
Symbol 186 MovieClip [6_gfx] | Uses:185 | Used by:187 |
Symbol 187 MovieClip [6] | Uses:186 | |
Symbol 188 Graphic | Used by:189 | |
Symbol 189 MovieClip [5_gfx] | Uses:188 | Used by:190 |
Symbol 190 MovieClip [5] | Uses:189 | |
Symbol 191 Graphic | Used by:192 | |
Symbol 192 MovieClip [4_gfx] | Uses:191 | Used by:193 |
Symbol 193 MovieClip [4] | Uses:192 | |
Symbol 194 Graphic | Used by:195 | |
Symbol 195 MovieClip [3_gfx] | Uses:194 | Used by:196 |
Symbol 196 MovieClip [3] | Uses:195 | |
Symbol 197 Graphic | Used by:198 | |
Symbol 198 MovieClip [2_gfx] | Uses:197 | Used by:199 |
Symbol 199 MovieClip [2] | Uses:198 | |
Symbol 200 Graphic | Used by:201 | |
Symbol 201 MovieClip [1_gfx] | Uses:200 | Used by:202 |
Symbol 202 MovieClip [1] | Uses:201 | |
Symbol 203 Graphic | Uses:23 | Used by:204 |
Symbol 204 MovieClip | Uses:203 | Used by:206 225 230 288 307 476 |
Symbol 205 Graphic | Used by:206 | |
Symbol 206 MovieClip [LevelPanel] | Uses:204 205 | |
Symbol 207 Graphic | Used by:208 | |
Symbol 208 MovieClip | Uses:207 | Used by:209 |
Symbol 209 MovieClip [ExplodeParticle] | Uses:208 | |
Symbol 210 Graphic | Used by:211 | |
Symbol 211 MovieClip | Uses:210 | Used by:212 |
Symbol 212 MovieClip [ExplodeAnim] | Uses:211 | |
Symbol 213 MovieClip [ExplodeAnimSmall] | ||
Symbol 214 MovieClip [ExplodeAnimMulti] | ||
Symbol 215 Graphic | Used by:216 | |
Symbol 216 MovieClip | Uses:215 | Used by:225 |
Symbol 217 Graphic | Used by:225 | |
Symbol 218 Font | Used by:219 370 382 399 400 401 402 410 411 412 413 414 415 416 417 418 419 420 421 422 423 | |
Symbol 219 EditableText | Uses:218 | Used by:225 |
Symbol 220 Graphic | Used by:222 | |
Symbol 221 Graphic | Used by:222 | |
Symbol 222 MovieClip | Uses:220 221 | Used by:225 |
Symbol 223 Graphic | Used by:225 | |
Symbol 224 MovieClip | Used by:225 479 Timeline | |
Symbol 225 MovieClip [scoreInput] | Uses:204 216 217 219 222 223 224 | |
Symbol 226 Graphic | Used by:227 | |
Symbol 227 MovieClip [paused] | Uses:226 | |
Symbol 228 MovieClip [ballGfxBounce] | Uses:46 | |
Symbol 229 Graphic | Used by:230 | |
Symbol 230 MovieClip [submit] | Uses:204 229 | |
Symbol 231 Graphic | Used by:232 | |
Symbol 232 MovieClip | Uses:231 | Used by:233 |
Symbol 233 MovieClip [ExtraLife] | Uses:232 | |
Symbol 234 MovieClip | Used by:235 | |
Symbol 235 MovieClip [PointsScoreNotify] | Uses:234 | |
Symbol 236 Graphic | Used by:237 | |
Symbol 237 MovieClip | Uses:236 | Used by:238 241 |
Symbol 238 MovieClip [SmallBulletLaunch] | Uses:237 | |
Symbol 239 Graphic | Used by:240 | |
Symbol 240 MovieClip | Uses:239 | Used by:241 |
Symbol 241 MovieClip | Uses:240 237 | Used by:242 285 |
Symbol 242 MovieClip [SmallBullet] | Uses:241 | |
Symbol 243 Graphic | Used by:255 285 Timeline | |
Symbol 244 Graphic | Uses:23 | Used by:245 |
Symbol 245 MovieClip | Uses:244 | Used by:255 285 Timeline |
Symbol 246 Graphic | Used by:255 | |
Symbol 247 Graphic | Used by:250 | |
Symbol 248 Graphic | Used by:250 | |
Symbol 249 Graphic | Used by:250 | |
Symbol 250 Button | Uses:247 248 249 | Used by:255 |
Symbol 251 Graphic | Used by:254 | |
Symbol 252 Graphic | Used by:254 | |
Symbol 253 Graphic | Used by:254 | |
Symbol 254 Button | Uses:251 252 253 | Used by:255 |
Symbol 255 MovieClip [quit] | Uses:243 245 246 250 254 | |
Symbol 256 Graphic | Used by:259 | |
Symbol 257 Graphic | Uses:23 | Used by:258 |
Symbol 258 MovieClip | Uses:257 | Used by:259 |
Symbol 259 MovieClip | Uses:256 258 | Used by:260 |
Symbol 260 MovieClip [BR_c_barrier_skin0] | Uses:259 26 | Used by:Timeline |
Symbol 261 Graphic | Used by:262 | |
Symbol 262 MovieClip [AreaOfInfluence] | Uses:261 | Used by:Timeline |
Symbol 263 Graphic | Used by:264 | |
Symbol 264 MovieClip [DrainCoverPickupGfx] | Uses:263 | Used by:265 |
Symbol 265 MovieClip [DrainCoverPickup] | Uses:264 | Used by:Timeline |
Symbol 266 Graphic | Used by:268 | |
Symbol 267 Graphic | Uses:23 | Used by:268 |
Symbol 268 MovieClip [bat] | Uses:266 267 | Used by:284 |
Symbol 269 Graphic | Used by:270 | |
Symbol 270 MovieClip | Uses:269 | Used by:274 |
Symbol 271 Graphic | Used by:272 | |
Symbol 272 MovieClip | Uses:271 | Used by:273 |
Symbol 273 MovieClip | Uses:272 | Used by:274 |
Symbol 274 MovieClip [BeamLaser] | Uses:270 273 | Used by:285 |
Symbol 275 Bitmap | Used by:276 | |
Symbol 276 Graphic | Uses:275 | Used by:285 |
Symbol 277 Bitmap | Used by:278 | |
Symbol 278 Graphic | Uses:277 | Used by:285 |
Symbol 279 Graphic | Used by:282 | |
Symbol 280 Graphic | Used by:282 | |
Symbol 281 Graphic | Used by:282 | |
Symbol 282 Button | Uses:279 280 108 281 | Used by:285 |
Symbol 283 Graphic | Used by:285 | |
Symbol 284 MovieClip | Uses:268 22 | Used by:285 Timeline |
Symbol 285 MovieClip [BuyMe] | Uses:243 245 276 91 241 109 112 278 282 283 53 70 274 284 | Used by:Timeline |
Symbol 286 MovieClip [frontEndBall] | Uses:47 | Used by:Timeline |
Symbol 287 Graphic | Used by:288 | |
Symbol 288 MovieClip [ScoresNotAvailable] | Uses:204 287 | Used by:310 |
Symbol 289 Graphic | Used by:292 | |
Symbol 290 Graphic | Uses:23 | Used by:292 |
Symbol 291 Graphic | Uses:23 | Used by:292 |
Symbol 292 MovieClip [OuterRing_skin0] | Uses:289 290 291 | Used by:Timeline |
Symbol 293 Graphic | Used by:297 | |
Symbol 294 Graphic | Used by:295 | |
Symbol 295 MovieClip | Uses:294 | Used by:296 |
Symbol 296 MovieClip | Uses:295 | Used by:297 |
Symbol 297 MovieClip | Uses:293 296 | Used by:299 |
Symbol 298 MovieClip | Used by:299 | |
Symbol 299 MovieClip [Saucer] | Uses:297 298 | Used by:Timeline |
Symbol 300 Bitmap | Used by:301 | |
Symbol 301 Graphic | Uses:300 | Used by:302 |
Symbol 302 MovieClip | Uses:301 | Used by:Timeline |
Symbol 303 Graphic | Used by:Timeline | |
Symbol 304 Graphic | Used by:305 | |
Symbol 305 MovieClip | Uses:304 | Used by:Timeline |
Symbol 306 Graphic | Used by:307 | |
Symbol 307 MovieClip | Uses:204 306 | Used by:310 |
Symbol 308 Graphic | Used by:309 | |
Symbol 309 MovieClip | Uses:308 | Used by:310 393 |
Symbol 310 MovieClip | Uses:288 307 309 | Used by:Timeline |
Symbol 311 Sound | Used by:Timeline | |
Symbol 312 Graphic | Used by:313 | |
Symbol 313 MovieClip | Uses:312 | Used by:Timeline |
Symbol 314 Graphic | Used by:315 340 | |
Symbol 315 MovieClip | Uses:314 | Used by:318 321 324 327 331 334 337 340 392 |
Symbol 316 Graphic | Used by:318 | |
Symbol 317 Graphic | Used by:318 | |
Symbol 318 MovieClip | Uses:315 316 317 | Used by:Timeline |
Symbol 319 Graphic | Used by:321 | |
Symbol 320 Graphic | Used by:321 | |
Symbol 321 MovieClip | Uses:315 319 320 | Used by:Timeline |
Symbol 322 Graphic | Used by:324 424 | |
Symbol 323 Graphic | Used by:324 | |
Symbol 324 MovieClip | Uses:315 322 323 | Used by:Timeline |
Symbol 325 Graphic | Used by:327 | |
Symbol 326 Graphic | Used by:327 | |
Symbol 327 MovieClip | Uses:315 325 326 | Used by:Timeline |
Symbol 328 Graphic | Used by:331 | |
Symbol 329 Font | Used by:330 469 | |
Symbol 330 Text | Uses:329 | Used by:331 |
Symbol 331 MovieClip | Uses:315 328 330 | Used by:Timeline |
Symbol 332 Graphic | Used by:334 | |
Symbol 333 Graphic | Used by:334 | |
Symbol 334 MovieClip | Uses:315 332 333 | Used by:Timeline |
Symbol 335 Graphic | Used by:337 | |
Symbol 336 Graphic | Used by:337 | |
Symbol 337 MovieClip | Uses:315 335 336 | Used by:Timeline |
Symbol 338 Graphic | Used by:340 392 | |
Symbol 339 Graphic | Used by:340 392 | |
Symbol 340 Button | Uses:315 338 339 314 | Used by:Timeline |
Symbol 341 Graphic | Used by:Timeline | |
Symbol 342 Graphic | Used by:343 | |
Symbol 343 MovieClip | Uses:342 | Used by:Timeline |
Symbol 344 Graphic | Used by:347 356 | |
Symbol 345 Graphic | Used by:347 356 | |
Symbol 346 Graphic | Used by:347 356 | |
Symbol 347 Button | Uses:344 345 346 | Used by:Timeline |
Symbol 348 Graphic | Used by:349 | |
Symbol 349 MovieClip | Uses:348 | Used by:Timeline |
Symbol 350 Graphic | Used by:351 | |
Symbol 351 MovieClip | Uses:350 | Used by:Timeline |
Symbol 352 Graphic | Used by:353 | |
Symbol 353 MovieClip | Uses:352 | Used by:Timeline |
Symbol 354 Graphic | Used by:355 | |
Symbol 355 MovieClip | Uses:354 | Used by:Timeline |
Symbol 356 Button | Uses:344 345 346 | Used by:Timeline |
Symbol 357 Graphic | Used by:358 | |
Symbol 358 MovieClip | Uses:357 | Used by:Timeline |
Symbol 359 Graphic | Used by:360 | |
Symbol 360 MovieClip | Uses:359 | Used by:Timeline |
Symbol 361 Graphic | Used by:364 365 | |
Symbol 362 Graphic | Used by:364 365 | |
Symbol 363 Graphic | Used by:364 365 | |
Symbol 364 Button | Uses:361 362 363 | Used by:Timeline |
Symbol 365 Button | Uses:361 362 363 | Used by:Timeline |
Symbol 366 Graphic | Used by:367 | |
Symbol 367 MovieClip | Uses:366 | Used by:Timeline |
Symbol 368 Graphic | Used by:369 | |
Symbol 369 MovieClip | Uses:368 | Used by:Timeline |
Symbol 370 EditableText | Uses:218 | Used by:Timeline |
Symbol 371 Font | Used by:372 373 374 375 376 377 378 379 380 381 383 384 385 386 387 388 389 390 391 | |
Symbol 372 EditableText | Uses:371 | Used by:Timeline |
Symbol 373 EditableText | Uses:371 | Used by:Timeline |
Symbol 374 EditableText | Uses:371 | Used by:Timeline |
Symbol 375 EditableText | Uses:371 | Used by:Timeline |
Symbol 376 EditableText | Uses:371 | Used by:Timeline |
Symbol 377 EditableText | Uses:371 | Used by:Timeline |
Symbol 378 EditableText | Uses:371 | Used by:Timeline |
Symbol 379 EditableText | Uses:371 | Used by:Timeline |
Symbol 380 EditableText | Uses:371 | Used by:Timeline |
Symbol 381 EditableText | Uses:371 | Used by:Timeline |
Symbol 382 EditableText | Uses:218 | Used by:Timeline |
Symbol 383 EditableText | Uses:371 | Used by:Timeline |
Symbol 384 EditableText | Uses:371 | Used by:Timeline |
Symbol 385 EditableText | Uses:371 | Used by:Timeline |
Symbol 386 EditableText | Uses:371 | Used by:Timeline |
Symbol 387 EditableText | Uses:371 | Used by:Timeline |
Symbol 388 EditableText | Uses:371 | Used by:Timeline |
Symbol 389 EditableText | Uses:371 | Used by:Timeline |
Symbol 390 EditableText | Uses:371 | Used by:Timeline |
Symbol 391 EditableText | Uses:371 | Used by:Timeline |
Symbol 392 MovieClip | Uses:315 338 339 | Used by:Timeline |
Symbol 393 MovieClip | Uses:309 | Used by:Timeline |
Symbol 394 Graphic | Used by:395 | |
Symbol 395 MovieClip | Uses:394 | Used by:Timeline |
Symbol 396 Graphic | Used by:397 | |
Symbol 397 MovieClip | Uses:396 | Used by:398 |
Symbol 398 MovieClip | Uses:397 74 | Used by:Timeline |
Symbol 399 Text | Uses:218 | Used by:Timeline |
Symbol 400 Text | Uses:218 | Used by:Timeline |
Symbol 401 Text | Uses:218 | Used by:Timeline |
Symbol 402 Text | Uses:218 | Used by:Timeline |
Symbol 403 Graphic | Used by:Timeline | |
Symbol 404 Graphic | Used by:405 | |
Symbol 405 MovieClip | Uses:404 74 | Used by:407 |
Symbol 406 Graphic | Used by:407 | |
Symbol 407 Button | Uses:405 406 | Used by:Timeline |
Symbol 408 Graphic | Used by:409 | |
Symbol 409 MovieClip | Uses:408 | Used by:Timeline |
Symbol 410 Text | Uses:218 | Used by:Timeline |
Symbol 411 Text | Uses:218 | Used by:Timeline |
Symbol 412 Text | Uses:218 | Used by:Timeline |
Symbol 413 Text | Uses:218 | Used by:Timeline |
Symbol 414 Text | Uses:218 | Used by:Timeline |
Symbol 415 Text | Uses:218 | Used by:Timeline |
Symbol 416 Text | Uses:218 | Used by:Timeline |
Symbol 417 Text | Uses:218 | Used by:Timeline |
Symbol 418 Text | Uses:218 | Used by:Timeline |
Symbol 419 Text | Uses:218 | Used by:Timeline |
Symbol 420 Text | Uses:218 | Used by:Timeline |
Symbol 421 Text | Uses:218 | Used by:Timeline |
Symbol 422 Text | Uses:218 | Used by:Timeline |
Symbol 423 Text | Uses:218 | Used by:Timeline |
Symbol 424 MovieClip | Uses:322 74 | Used by:426 |
Symbol 425 Graphic | Used by:426 | |
Symbol 426 Button | Uses:424 425 | Used by:Timeline |
Symbol 427 Graphic | Used by:462 | |
Symbol 428 Graphic | Used by:462 | |
Symbol 429 Graphic | Used by:462 | |
Symbol 430 Graphic | Used by:462 | |
Symbol 431 Graphic | Used by:462 | |
Symbol 432 Graphic | Used by:462 | |
Symbol 433 Graphic | Used by:462 | |
Symbol 434 Graphic | Used by:462 | |
Symbol 435 Graphic | Used by:462 | |
Symbol 436 Graphic | Used by:462 | |
Symbol 437 Graphic | Used by:462 | |
Symbol 438 Graphic | Used by:462 | |
Symbol 439 Graphic | Used by:462 | |
Symbol 440 Graphic | Used by:462 | |
Symbol 441 Graphic | Used by:462 | |
Symbol 442 Graphic | Used by:462 | |
Symbol 443 Graphic | Used by:462 | |
Symbol 444 Graphic | Used by:462 | |
Symbol 445 Graphic | Used by:462 | |
Symbol 446 Graphic | Used by:462 | |
Symbol 447 Graphic | Used by:462 | |
Symbol 448 Graphic | Used by:462 | |
Symbol 449 Graphic | Used by:462 | |
Symbol 450 Graphic | Used by:462 | |
Symbol 451 Graphic | Used by:462 | |
Symbol 452 Graphic | Used by:462 | |
Symbol 453 Graphic | Used by:462 | |
Symbol 454 Graphic | Used by:462 | |
Symbol 455 Graphic | Used by:462 | |
Symbol 456 Graphic | Used by:462 | |
Symbol 457 Graphic | Used by:462 | |
Symbol 458 Graphic | Used by:462 | |
Symbol 459 Graphic | Used by:462 | |
Symbol 460 Graphic | Used by:462 | |
Symbol 461 Graphic | Used by:462 | |
Symbol 462 MovieClip | Uses:427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 | Used by:Timeline |
Symbol 463 Graphic | Used by:466 468 482 484 486 | |
Symbol 464 Graphic | Used by:466 | |
Symbol 465 Graphic | Used by:466 468 482 484 486 | |
Symbol 466 Button | Uses:463 464 465 | Used by:Timeline |
Symbol 467 Graphic | Used by:468 | |
Symbol 468 Button | Uses:463 467 465 | Used by:Timeline |
Symbol 469 EditableText | Uses:329 | Used by:Timeline |
Symbol 470 Graphic | Used by:471 | |
Symbol 471 MovieClip | Uses:470 | Used by:Timeline |
Symbol 472 Graphic | Used by:473 | |
Symbol 473 MovieClip | Uses:472 | Used by:474 |
Symbol 474 MovieClip | Uses:473 | Used by:Timeline |
Symbol 475 Graphic | Used by:476 | |
Symbol 476 MovieClip | Uses:204 475 | Used by:479 |
Symbol 477 Graphic | Used by:478 479 | |
Symbol 478 MovieClip | Uses:477 | Used by:479 |
Symbol 479 MovieClip | Uses:476 224 478 477 | Used by:Timeline |
Symbol 480 Graphic | Used by:Timeline | |
Symbol 481 Graphic | Used by:482 | |
Symbol 482 Button | Uses:463 481 465 | Used by:Timeline |
Symbol 483 Graphic | Used by:484 | |
Symbol 484 Button | Uses:463 483 465 | Used by:Timeline |
Symbol 485 Graphic | Used by:486 | |
Symbol 486 Button | Uses:463 485 465 | Used by:Timeline |
Symbol 487 Font | Used by:488 | |
Symbol 488 EditableText | Uses:487 | Used by:Timeline |
Instance Names
"timerObj" | Frame 1 | Symbol 224 MovieClip |
"sauce" | Frame 2 | Symbol 299 MovieClip [Saucer] |
"hiScoreController" | Frame 4 | Symbol 310 MovieClip |
"buyBut" | Frame 29 | Symbol 321 MovieClip |
"button0" | Frame 36 | Symbol 318 MovieClip |
"button1" | Frame 38 | Symbol 321 MovieClip |
"button2" | Frame 40 | Symbol 324 MovieClip |
"button3" | Frame 42 | Symbol 327 MovieClip |
"button4" | Frame 44 | Symbol 331 MovieClip |
"button5" | Frame 46 | Symbol 334 MovieClip |
"button6" | Frame 48 | Symbol 337 MovieClip |
"StaticMainMenu" | Frame 48 | Symbol 313 MovieClip |
"but1" | Frame 699 | Symbol 318 MovieClip |
"but2" | Frame 699 | Symbol 324 MovieClip |
"but0" | Frame 699 | Symbol 392 MovieClip |
"score0" | Frame 699 | Symbol 393 MovieClip |
"score1" | Frame 699 | Symbol 393 MovieClip |
"score2" | Frame 699 | Symbol 393 MovieClip |
"score3" | Frame 699 | Symbol 393 MovieClip |
"score4" | Frame 699 | Symbol 393 MovieClip |
"score5" | Frame 699 | Symbol 393 MovieClip |
"score6" | Frame 699 | Symbol 393 MovieClip |
"score7" | Frame 699 | Symbol 393 MovieClip |
"score8" | Frame 699 | Symbol 393 MovieClip |
"score9" | Frame 699 | Symbol 393 MovieClip |
"but2" | Frame 1003 | Symbol 327 MovieClip |
"but1" | Frame 1003 | Symbol 318 MovieClip |
"but0" | Frame 1003 | Symbol 392 MovieClip |
"bg" | Frame 1288 | Symbol 302 MovieClip |
"boundingRing" | Frame 1288 | Symbol 262 MovieClip [AreaOfInfluence] |
"Ring" | Frame 1288 | Symbol 292 MovieClip [OuterRing_skin0] |
"pickupCounter" | Frame 1288 | Symbol 462 MovieClip |
"designBut" | Frame 1288 | Symbol 466 Button |
"dumpBut" | Frame 1288 | Symbol 468 Button |
"fpsdebug" | Frame 1288 | Symbol 469 EditableText |
"drain" | Frame 1289 | Symbol 409 MovieClip |
"bat" | Frame 1289 | Symbol 284 MovieClip |
"Runner" | Frame 1293 | Symbol 471 MovieClip |
"gameOverTxt" | Frame 1307 | Symbol 474 MovieClip |
"nextLevelFlasher" | Frame 1372 | Symbol 479 MovieClip |
"ring" | Frame 1963 | Symbol 292 MovieClip [OuterRing_skin0] |
"wall4" | Symbol 27 MovieClip [BR_unbreakable_0_skin0] Frame 1 | Symbol 22 MovieClip |
"wall3" | Symbol 27 MovieClip [BR_unbreakable_0_skin0] Frame 1 | Symbol 22 MovieClip |
"wall0" | Symbol 27 MovieClip [BR_unbreakable_0_skin0] Frame 1 | Symbol 22 MovieClip |
"wall1" | Symbol 27 MovieClip [BR_unbreakable_0_skin0] Frame 1 | Symbol 22 MovieClip |
"wall2" | Symbol 27 MovieClip [BR_unbreakable_0_skin0] Frame 1 | Symbol 22 MovieClip |
"wall5" | Symbol 27 MovieClip [BR_unbreakable_0_skin0] Frame 1 | Symbol 22 MovieClip |
"hitAction" | Symbol 27 MovieClip [BR_unbreakable_0_skin0] Frame 1 | Symbol 26 MovieClip |
"thisBrick" | Symbol 30 MovieClip [BR_normal_0_skin0] Frame 1 | Symbol 29 MovieClip |
"wall3" | Symbol 30 MovieClip [BR_normal_0_skin0] Frame 1 | Symbol 22 MovieClip |
"wall2" | Symbol 30 MovieClip [BR_normal_0_skin0] Frame 1 | Symbol 22 MovieClip |
"wall0" | Symbol 30 MovieClip [BR_normal_0_skin0] Frame 1 | Symbol 22 MovieClip |
"wall1" | Symbol 30 MovieClip [BR_normal_0_skin0] Frame 1 | Symbol 22 MovieClip |
"hitAction" | Symbol 30 MovieClip [BR_normal_0_skin0] Frame 1 | Symbol 26 MovieClip |
"thisBrick" | Symbol 30 MovieClip [BR_normal_0_skin0] Frame 2 | Symbol 29 MovieClip |
"wall4" | Symbol 32 MovieClip [BR_unbreakable_1_skin0] Frame 1 | Symbol 22 MovieClip |
"wall3" | Symbol 32 MovieClip [BR_unbreakable_1_skin0] Frame 1 | Symbol 22 MovieClip |
"wall0" | Symbol 32 MovieClip [BR_unbreakable_1_skin0] Frame 1 | Symbol 22 MovieClip |
"wall1" | Symbol 32 MovieClip [BR_unbreakable_1_skin0] Frame 1 | Symbol 22 MovieClip |
"wall2" | Symbol 32 MovieClip [BR_unbreakable_1_skin0] Frame 1 | Symbol 22 MovieClip |
"wall5" | Symbol 32 MovieClip [BR_unbreakable_1_skin0] Frame 1 | Symbol 22 MovieClip |
"hitAction" | Symbol 32 MovieClip [BR_unbreakable_1_skin0] Frame 1 | Symbol 26 MovieClip |
"thisBrick" | Symbol 35 MovieClip [BR_normal_1_skin0] Frame 1 | Symbol 34 MovieClip |
"hitAction" | Symbol 35 MovieClip [BR_normal_1_skin0] Frame 1 | Symbol 26 MovieClip |
"wall3" | Symbol 35 MovieClip [BR_normal_1_skin0] Frame 1 | Symbol 22 MovieClip |
"wall2" | Symbol 35 MovieClip [BR_normal_1_skin0] Frame 1 | Symbol 22 MovieClip |
"wall0" | Symbol 35 MovieClip [BR_normal_1_skin0] Frame 1 | Symbol 22 MovieClip |
"wall1" | Symbol 35 MovieClip [BR_normal_1_skin0] Frame 1 | Symbol 22 MovieClip |
"wall4" | Symbol 37 MovieClip [BR_unbreakable_3_skin0] Frame 1 | Symbol 22 MovieClip |
"wall3" | Symbol 37 MovieClip [BR_unbreakable_3_skin0] Frame 1 | Symbol 22 MovieClip |
"wall0" | Symbol 37 MovieClip [BR_unbreakable_3_skin0] Frame 1 | Symbol 22 MovieClip |
"wall1" | Symbol 37 MovieClip [BR_unbreakable_3_skin0] Frame 1 | Symbol 22 MovieClip |
"wall2" | Symbol 37 MovieClip [BR_unbreakable_3_skin0] Frame 1 | Symbol 22 MovieClip |
"wall5" | Symbol 37 MovieClip [BR_unbreakable_3_skin0] Frame 1 | Symbol 22 MovieClip |
"hitAction" | Symbol 37 MovieClip [BR_unbreakable_3_skin0] Frame 1 | Symbol 26 MovieClip |
"thisBrick" | Symbol 40 MovieClip [BR_normal_3_skin0] Frame 1 | Symbol 39 MovieClip |
"hitAction" | Symbol 40 MovieClip [BR_normal_3_skin0] Frame 1 | Symbol 26 MovieClip |
"wall2" | Symbol 40 MovieClip [BR_normal_3_skin0] Frame 1 | Symbol 22 MovieClip |
"wall1" | Symbol 40 MovieClip [BR_normal_3_skin0] Frame 1 | Symbol 22 MovieClip |
"wall0" | Symbol 40 MovieClip [BR_normal_3_skin0] Frame 1 | Symbol 22 MovieClip |
"wall3" | Symbol 40 MovieClip [BR_normal_3_skin0] Frame 1 | Symbol 22 MovieClip |
"thisBrick" | Symbol 40 MovieClip [BR_normal_3_skin0] Frame 2 | Symbol 39 MovieClip |
"wall4" | Symbol 42 MovieClip [BR_unbreakable_2_skin0] Frame 1 | Symbol 22 MovieClip |
"wall3" | Symbol 42 MovieClip [BR_unbreakable_2_skin0] Frame 1 | Symbol 22 MovieClip |
"wall0" | Symbol 42 MovieClip [BR_unbreakable_2_skin0] Frame 1 | Symbol 22 MovieClip |
"wall1" | Symbol 42 MovieClip [BR_unbreakable_2_skin0] Frame 1 | Symbol 22 MovieClip |
"wall2" | Symbol 42 MovieClip [BR_unbreakable_2_skin0] Frame 1 | Symbol 22 MovieClip |
"wall5" | Symbol 42 MovieClip [BR_unbreakable_2_skin0] Frame 1 | Symbol 22 MovieClip |
"hitAction" | Symbol 42 MovieClip [BR_unbreakable_2_skin0] Frame 1 | Symbol 26 MovieClip |
"thisBrick" | Symbol 45 MovieClip [BR_normal_2_skin0] Frame 1 | Symbol 44 MovieClip |
"hitAction" | Symbol 45 MovieClip [BR_normal_2_skin0] Frame 1 | Symbol 26 MovieClip |
"wall3" | Symbol 45 MovieClip [BR_normal_2_skin0] Frame 1 | Symbol 22 MovieClip |
"wall2" | Symbol 45 MovieClip [BR_normal_2_skin0] Frame 1 | Symbol 22 MovieClip |
"wall0" | Symbol 45 MovieClip [BR_normal_2_skin0] Frame 1 | Symbol 22 MovieClip |
"wall1" | Symbol 45 MovieClip [BR_normal_2_skin0] Frame 1 | Symbol 22 MovieClip |
"thisBrick" | Symbol 45 MovieClip [BR_normal_2_skin0] Frame 2 | Symbol 44 MovieClip |
"ballGfx" | Symbol 55 MovieClip [Ball] Frame 1 | Symbol 47 MovieClip [ballGfx] |
"ballGfx" | Symbol 55 MovieClip [Ball] Frame 3 | Symbol 47 MovieClip [ballGfx] |
"ballGfx" | Symbol 55 MovieClip [Ball] Frame 4 | Symbol 54 MovieClip [BombPickup] |
"ballGfx" | Symbol 55 MovieClip [Ball] Frame 5 | Symbol 47 MovieClip [ballGfx] |
"ballGfx" | Symbol 55 MovieClip [Ball] Frame 20 | Symbol 47 MovieClip [ballGfx] |
"thisBrick" | Symbol 148 MovieClip [BR_d_barrier_skin0] Frame 1 | Symbol 147 MovieClip |
"wall0" | Symbol 148 MovieClip [BR_d_barrier_skin0] Frame 1 | Symbol 22 MovieClip |
"wall1" | Symbol 148 MovieClip [BR_d_barrier_skin0] Frame 1 | Symbol 22 MovieClip |
"wall2" | Symbol 148 MovieClip [BR_d_barrier_skin0] Frame 1 | Symbol 22 MovieClip |
"wall3" | Symbol 148 MovieClip [BR_d_barrier_skin0] Frame 1 | Symbol 22 MovieClip |
"hitAction" | Symbol 148 MovieClip [BR_d_barrier_skin0] Frame 1 | Symbol 26 MovieClip |
"thisBrick" | Symbol 153 MovieClip [BR_s_barrier_skin0] Frame 1 | Symbol 152 MovieClip |
"hitAction" | Symbol 153 MovieClip [BR_s_barrier_skin0] Frame 1 | Symbol 26 MovieClip |
"wall0" | Symbol 153 MovieClip [BR_s_barrier_skin0] Frame 1 | Symbol 22 MovieClip |
"wall1" | Symbol 153 MovieClip [BR_s_barrier_skin0] Frame 1 | Symbol 22 MovieClip |
"wall2" | Symbol 153 MovieClip [BR_s_barrier_skin0] Frame 1 | Symbol 22 MovieClip |
"wall3" | Symbol 153 MovieClip [BR_s_barrier_skin0] Frame 1 | Symbol 22 MovieClip |
"wall4" | Symbol 153 MovieClip [BR_s_barrier_skin0] Frame 1 | Symbol 22 MovieClip |
"thisBrick" | Symbol 156 MovieClip [BR_i_barrier_skin0] Frame 1 | Symbol 155 MovieClip |
"wall0" | Symbol 156 MovieClip [BR_i_barrier_skin0] Frame 1 | Symbol 22 MovieClip |
"wall1" | Symbol 156 MovieClip [BR_i_barrier_skin0] Frame 1 | Symbol 22 MovieClip |
"wall2" | Symbol 156 MovieClip [BR_i_barrier_skin0] Frame 1 | Symbol 22 MovieClip |
"wall3" | Symbol 156 MovieClip [BR_i_barrier_skin0] Frame 1 | Symbol 22 MovieClip |
"wall4" | Symbol 156 MovieClip [BR_i_barrier_skin0] Frame 1 | Symbol 22 MovieClip |
"hitAction" | Symbol 156 MovieClip [BR_i_barrier_skin0] Frame 1 | Symbol 26 MovieClip |
"num" | Symbol 175 MovieClip [0] Frame 1 | Symbol 174 MovieClip [0_gfx] |
"num" | Symbol 178 MovieClip [9] Frame 1 | Symbol 177 MovieClip [9_gfx] |
"num" | Symbol 181 MovieClip [8] Frame 1 | Symbol 180 MovieClip [8_gfx] |
"num" | Symbol 184 MovieClip [7] Frame 1 | Symbol 183 MovieClip [7_gfx] |
"num" | Symbol 187 MovieClip [6] Frame 1 | Symbol 186 MovieClip [6_gfx] |
"num" | Symbol 190 MovieClip [5] Frame 1 | Symbol 189 MovieClip [5_gfx] |
"num" | Symbol 193 MovieClip [4] Frame 1 | Symbol 192 MovieClip [4_gfx] |
"num" | Symbol 196 MovieClip [3] Frame 1 | Symbol 195 MovieClip [3_gfx] |
"num" | Symbol 199 MovieClip [2] Frame 1 | Symbol 198 MovieClip [2_gfx] |
"num" | Symbol 202 MovieClip [1] Frame 1 | Symbol 201 MovieClip [1_gfx] |
"num" | Symbol 225 MovieClip [scoreInput] Frame 1 | Symbol 224 MovieClip |
"numObj" | Symbol 235 MovieClip [PointsScoreNotify] Frame 2 | Symbol 234 MovieClip |
"numObj" | Symbol 235 MovieClip [PointsScoreNotify] Frame 22 | Symbol 234 MovieClip |
"bulletGfx" | Symbol 242 MovieClip [SmallBullet] Frame 1 | Symbol 241 MovieClip |
"thisBrick" | Symbol 260 MovieClip [BR_c_barrier_skin0] Frame 1 | Symbol 259 MovieClip |
"hitAction" | Symbol 260 MovieClip [BR_c_barrier_skin0] Frame 1 | Symbol 26 MovieClip |
"bat0" | Symbol 284 MovieClip Frame 1 | Symbol 268 MovieClip [bat] |
"wall2" | Symbol 284 MovieClip Frame 1 | Symbol 22 MovieClip |
"wall1" | Symbol 284 MovieClip Frame 1 | Symbol 22 MovieClip |
"wall0" | Symbol 284 MovieClip Frame 1 | Symbol 22 MovieClip |
"wall2" | Symbol 284 MovieClip Frame 1 | Symbol 22 MovieClip |
"sauce" | Symbol 299 MovieClip [Saucer] Frame 1 | Symbol 297 MovieClip |
"blob" | Symbol 299 MovieClip [Saucer] Frame 1 | Symbol 298 MovieClip |
"hiScoreErrorPanel" | Symbol 310 MovieClip Frame 1 | Symbol 288 MovieClip [ScoresNotAvailable] |
"hiScorePanel" | Symbol 310 MovieClip Frame 1 | Symbol 307 MovieClip |
"ballsNum" | Symbol 479 MovieClip Frame 1 | Symbol 224 MovieClip |
"ballsHolder" | Symbol 479 MovieClip Frame 1 | Symbol 224 MovieClip |
"levelNum" | Symbol 479 MovieClip Frame 28 | Symbol 224 MovieClip |
Special Tags
Protect (24) | Timeline Frame 1 | 0 bytes "" |
ExportAssets (56) | Timeline Frame 1 | Symbol 1 as "strikeDull" |
ExportAssets (56) | Timeline Frame 1 | Symbol 2 as "electric" |
ExportAssets (56) | Timeline Frame 1 | Symbol 3 as "powerUpHitBat" |
ExportAssets (56) | Timeline Frame 1 | Symbol 4 as "powerUp" |
ExportAssets (56) | Timeline Frame 1 | Symbol 5 as "nextLevel" |
ExportAssets (56) | Timeline Frame 1 | Symbol 6 as "newBall" |
ExportAssets (56) | Timeline Frame 1 | Symbol 7 as "LaserShoot" |
ExportAssets (56) | Timeline Frame 1 | Symbol 8 as "explode" |
ExportAssets (56) | Timeline Frame 1 | Symbol 9 as "clankHit" |
ExportAssets (56) | Timeline Frame 1 | Symbol 10 as "brickHit2" |
ExportAssets (56) | Timeline Frame 1 | Symbol 11 as "brickHit1" |
ExportAssets (56) | Timeline Frame 1 | Symbol 12 as "ballDrop" |
ExportAssets (56) | Timeline Frame 1 | Symbol 17 as "DrainCover_skin0" |
ExportAssets (56) | Timeline Frame 1 | Symbol 19 as "baseLine" |
ExportAssets (56) | Timeline Frame 1 | Symbol 27 as "BR_unbreakable_0_skin0" |
ExportAssets (56) | Timeline Frame 1 | Symbol 30 as "BR_normal_0_skin0" |
ExportAssets (56) | Timeline Frame 1 | Symbol 32 as "BR_unbreakable_1_skin0" |
ExportAssets (56) | Timeline Frame 1 | Symbol 35 as "BR_normal_1_skin0" |
ExportAssets (56) | Timeline Frame 1 | Symbol 37 as "BR_unbreakable_3_skin0" |
ExportAssets (56) | Timeline Frame 1 | Symbol 40 as "BR_normal_3_skin0" |
ExportAssets (56) | Timeline Frame 1 | Symbol 42 as "BR_unbreakable_2_skin0" |
ExportAssets (56) | Timeline Frame 1 | Symbol 45 as "BR_normal_2_skin0" |
ExportAssets (56) | Timeline Frame 1 | Symbol 46 as "ballGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 47 as "ballGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 47 as "ballGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 47 as "ballGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 50 as "BombPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 50 as "BombPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 50 as "BombPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 50 as "BombPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 50 as "BombPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 50 as "BombPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 50 as "BombPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 50 as "BombPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 50 as "BombPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 50 as "BombPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 50 as "BombPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 50 as "BombPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 50 as "BombPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 50 as "BombPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 50 as "BombPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 50 as "BombPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 50 as "BombPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 50 as "BombPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 50 as "BombPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 50 as "BombPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 50 as "BombPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 50 as "BombPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 50 as "BombPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 50 as "BombPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 54 as "BombPickup" |
ExportAssets (56) | Timeline Frame 1 | Symbol 47 as "ballGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 47 as "ballGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 47 as "ballGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 47 as "ballGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 47 as "ballGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 47 as "ballGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 47 as "ballGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 47 as "ballGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 47 as "ballGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 47 as "ballGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 47 as "ballGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 47 as "ballGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 47 as "ballGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 47 as "ballGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 47 as "ballGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 47 as "ballGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 55 as "Ball" |
ExportAssets (56) | Timeline Frame 1 | Symbol 57 as "dot" |
ExportAssets (56) | Timeline Frame 1 | Symbol 59 as "NoGravityPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 59 as "NoGravityPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 59 as "NoGravityPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 59 as "NoGravityPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 59 as "NoGravityPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 59 as "NoGravityPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 59 as "NoGravityPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 59 as "NoGravityPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 59 as "NoGravityPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 59 as "NoGravityPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 60 as "NoGravityPickup" |
ExportAssets (56) | Timeline Frame 1 | Symbol 62 as "NextLevelPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 63 as "NextLevelPickup" |
ExportAssets (56) | Timeline Frame 1 | Symbol 65 as "MultiBallPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 66 as "MultiBallPickup" |
ExportAssets (56) | Timeline Frame 1 | Symbol 70 as "FireballPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 71 as "FireballPickup" |
ExportAssets (56) | Timeline Frame 1 | Symbol 75 as "LittleBatPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 76 as "LittleBatPickup" |
ExportAssets (56) | Timeline Frame 1 | Symbol 80 as "MultiLaserPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 80 as "MultiLaserPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 80 as "MultiLaserPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 80 as "MultiLaserPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 80 as "MultiLaserPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 80 as "MultiLaserPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 80 as "MultiLaserPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 80 as "MultiLaserPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 80 as "MultiLaserPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 80 as "MultiLaserPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 80 as "MultiLaserPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 80 as "MultiLaserPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 80 as "MultiLaserPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 80 as "MultiLaserPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 80 as "MultiLaserPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 80 as "MultiLaserPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 80 as "MultiLaserPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 80 as "MultiLaserPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 80 as "MultiLaserPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 80 as "MultiLaserPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 81 as "MultiLaserPickup" |
ExportAssets (56) | Timeline Frame 1 | Symbol 87 as "SingleLaserPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 87 as "SingleLaserPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 87 as "SingleLaserPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 87 as "SingleLaserPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 87 as "SingleLaserPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 87 as "SingleLaserPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 87 as "SingleLaserPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 87 as "SingleLaserPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 87 as "SingleLaserPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 87 as "SingleLaserPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 87 as "SingleLaserPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 87 as "SingleLaserPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 87 as "SingleLaserPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 87 as "SingleLaserPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 87 as "SingleLaserPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 87 as "SingleLaserPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 87 as "SingleLaserPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 87 as "SingleLaserPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 87 as "SingleLaserPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 87 as "SingleLaserPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 88 as "SingleLaserPickup" |
ExportAssets (56) | Timeline Frame 1 | Symbol 91 as "RaspberryPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 91 as "RaspberryPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 91 as "RaspberryPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 91 as "RaspberryPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 91 as "RaspberryPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 91 as "RaspberryPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 91 as "RaspberryPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 91 as "RaspberryPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 91 as "RaspberryPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 91 as "RaspberryPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 91 as "RaspberryPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 91 as "RaspberryPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 91 as "RaspberryPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 91 as "RaspberryPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 91 as "RaspberryPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 91 as "RaspberryPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 91 as "RaspberryPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 91 as "RaspberryPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 91 as "RaspberryPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 91 as "RaspberryPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 91 as "RaspberryPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 91 as "RaspberryPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 91 as "RaspberryPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 91 as "RaspberryPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 91 as "RaspberryPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 91 as "RaspberryPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 91 as "RaspberryPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 91 as "RaspberryPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 91 as "RaspberryPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 91 as "RaspberryPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 91 as "RaspberryPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 91 as "RaspberryPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 91 as "RaspberryPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 91 as "RaspberryPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 91 as "RaspberryPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 91 as "RaspberryPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 91 as "RaspberryPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 91 as "RaspberryPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 91 as "RaspberryPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 91 as "RaspberryPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 92 as "RaspberryPickup" |
ExportAssets (56) | Timeline Frame 1 | Symbol 95 as "BananaPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 95 as "BananaPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 95 as "BananaPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 95 as "BananaPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 95 as "BananaPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 95 as "BananaPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 95 as "BananaPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 95 as "BananaPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 95 as "BananaPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 95 as "BananaPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 95 as "BananaPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 95 as "BananaPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 95 as "BananaPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 95 as "BananaPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 95 as "BananaPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 95 as "BananaPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 95 as "BananaPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 95 as "BananaPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 95 as "BananaPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 95 as "BananaPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 95 as "BananaPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 95 as "BananaPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 95 as "BananaPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 95 as "BananaPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 95 as "BananaPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 95 as "BananaPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 95 as "BananaPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 95 as "BananaPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 95 as "BananaPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 95 as "BananaPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 95 as "BananaPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 95 as "BananaPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 95 as "BananaPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 95 as "BananaPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 95 as "BananaPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 95 as "BananaPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 95 as "BananaPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 95 as "BananaPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 95 as "BananaPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 95 as "BananaPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 96 as "BananaPickup" |
ExportAssets (56) | Timeline Frame 1 | Symbol 97 as "BananaBunchPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 97 as "BananaBunchPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 97 as "BananaBunchPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 97 as "BananaBunchPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 97 as "BananaBunchPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 97 as "BananaBunchPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 97 as "BananaBunchPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 97 as "BananaBunchPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 97 as "BananaBunchPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 97 as "BananaBunchPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 97 as "BananaBunchPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 97 as "BananaBunchPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 97 as "BananaBunchPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 97 as "BananaBunchPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 97 as "BananaBunchPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 97 as "BananaBunchPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 97 as "BananaBunchPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 97 as "BananaBunchPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 97 as "BananaBunchPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 97 as "BananaBunchPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 97 as "BananaBunchPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 97 as "BananaBunchPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 97 as "BananaBunchPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 97 as "BananaBunchPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 97 as "BananaBunchPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 97 as "BananaBunchPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 97 as "BananaBunchPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 97 as "BananaBunchPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 97 as "BananaBunchPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 97 as "BananaBunchPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 97 as "BananaBunchPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 97 as "BananaBunchPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 97 as "BananaBunchPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 97 as "BananaBunchPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 97 as "BananaBunchPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 97 as "BananaBunchPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 97 as "BananaBunchPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 97 as "BananaBunchPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 97 as "BananaBunchPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 97 as "BananaBunchPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 98 as "BananaBunchPickup" |
ExportAssets (56) | Timeline Frame 1 | Symbol 102 as "EatenMelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 102 as "EatenMelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 102 as "EatenMelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 102 as "EatenMelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 102 as "EatenMelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 102 as "EatenMelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 102 as "EatenMelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 102 as "EatenMelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 102 as "EatenMelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 102 as "EatenMelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 102 as "EatenMelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 102 as "EatenMelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 102 as "EatenMelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 102 as "EatenMelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 102 as "EatenMelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 102 as "EatenMelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 102 as "EatenMelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 102 as "EatenMelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 102 as "EatenMelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 102 as "EatenMelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 102 as "EatenMelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 102 as "EatenMelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 102 as "EatenMelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 102 as "EatenMelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 102 as "EatenMelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 102 as "EatenMelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 102 as "EatenMelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 102 as "EatenMelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 102 as "EatenMelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 102 as "EatenMelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 102 as "EatenMelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 102 as "EatenMelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 102 as "EatenMelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 102 as "EatenMelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 102 as "EatenMelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 102 as "EatenMelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 102 as "EatenMelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 102 as "EatenMelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 102 as "EatenMelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 102 as "EatenMelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "EatenMelonPickup" |
ExportAssets (56) | Timeline Frame 1 | Symbol 105 as "MelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 105 as "MelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 105 as "MelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 105 as "MelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 105 as "MelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 105 as "MelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 105 as "MelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 105 as "MelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 105 as "MelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 105 as "MelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 105 as "MelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 105 as "MelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 105 as "MelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 105 as "MelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 105 as "MelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 105 as "MelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 105 as "MelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 105 as "MelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 105 as "MelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 105 as "MelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 105 as "MelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 105 as "MelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 105 as "MelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 105 as "MelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 105 as "MelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 105 as "MelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 105 as "MelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 105 as "MelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 105 as "MelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 105 as "MelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 105 as "MelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 105 as "MelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 105 as "MelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 105 as "MelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 105 as "MelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 105 as "MelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 105 as "MelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 105 as "MelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 105 as "MelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 105 as "MelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 106 as "MelonPickup" |
ExportAssets (56) | Timeline Frame 1 | Symbol 109 as "DiamondPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 109 as "DiamondPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 109 as "DiamondPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 109 as "DiamondPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 109 as "DiamondPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 109 as "DiamondPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 109 as "DiamondPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 109 as "DiamondPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 109 as "DiamondPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 109 as "DiamondPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 109 as "DiamondPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 109 as "DiamondPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 109 as "DiamondPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 109 as "DiamondPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 109 as "DiamondPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 109 as "DiamondPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 109 as "DiamondPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 109 as "DiamondPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 109 as "DiamondPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 109 as "DiamondPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 109 as "DiamondPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 109 as "DiamondPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 109 as "DiamondPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 109 as "DiamondPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 109 as "DiamondPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 109 as "DiamondPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 109 as "DiamondPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 109 as "DiamondPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 109 as "DiamondPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 109 as "DiamondPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 109 as "DiamondPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 109 as "DiamondPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 109 as "DiamondPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 109 as "DiamondPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 109 as "DiamondPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 109 as "DiamondPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 109 as "DiamondPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 109 as "DiamondPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 109 as "DiamondPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 109 as "DiamondPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 110 as "DiamondPickup" |
ExportAssets (56) | Timeline Frame 1 | Symbol 112 as "CherryPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 112 as "CherryPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 112 as "CherryPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 112 as "CherryPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 112 as "CherryPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 112 as "CherryPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 112 as "CherryPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 112 as "CherryPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 112 as "CherryPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 112 as "CherryPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 112 as "CherryPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 112 as "CherryPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 112 as "CherryPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 112 as "CherryPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 112 as "CherryPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 112 as "CherryPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 112 as "CherryPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 112 as "CherryPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 112 as "CherryPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 112 as "CherryPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 112 as "CherryPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 112 as "CherryPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 112 as "CherryPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 112 as "CherryPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 112 as "CherryPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 112 as "CherryPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 112 as "CherryPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 112 as "CherryPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 112 as "CherryPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 112 as "CherryPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 112 as "CherryPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 112 as "CherryPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 112 as "CherryPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 112 as "CherryPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 112 as "CherryPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 112 as "CherryPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 112 as "CherryPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 112 as "CherryPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 112 as "CherryPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 112 as "CherryPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 113 as "CherryPickup" |
ExportAssets (56) | Timeline Frame 1 | Symbol 115 as "DoubleBatPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 116 as "DoubleBatPickup" |
ExportAssets (56) | Timeline Frame 1 | Symbol 119 as "ReverseGravityPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 120 as "ReverseGravityPickup" |
ExportAssets (56) | Timeline Frame 1 | Symbol 54 as "BombPickup" |
ExportAssets (56) | Timeline Frame 1 | Symbol 124 as "ReverseBatPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 124 as "ReverseBatPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 124 as "ReverseBatPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 124 as "ReverseBatPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 124 as "ReverseBatPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 124 as "ReverseBatPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 124 as "ReverseBatPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 124 as "ReverseBatPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 124 as "ReverseBatPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 124 as "ReverseBatPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 124 as "ReverseBatPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 124 as "ReverseBatPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 124 as "ReverseBatPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 124 as "ReverseBatPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 124 as "ReverseBatPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 124 as "ReverseBatPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 124 as "ReverseBatPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 124 as "ReverseBatPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 124 as "ReverseBatPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 124 as "ReverseBatPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 124 as "ReverseBatPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 124 as "ReverseBatPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 124 as "ReverseBatPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 124 as "ReverseBatPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 124 as "ReverseBatPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 124 as "ReverseBatPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 124 as "ReverseBatPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 124 as "ReverseBatPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 124 as "ReverseBatPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 124 as "ReverseBatPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 124 as "ReverseBatPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 124 as "ReverseBatPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 124 as "ReverseBatPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 124 as "ReverseBatPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 124 as "ReverseBatPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 124 as "ReverseBatPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 124 as "ReverseBatPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 124 as "ReverseBatPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 124 as "ReverseBatPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 124 as "ReverseBatPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 126 as "ReverseBatPickup" |
ExportAssets (56) | Timeline Frame 1 | Symbol 127 as "BigBatPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 128 as "BigBatPickup" |
ExportAssets (56) | Timeline Frame 1 | Symbol 130 as "SpeedDownPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 130 as "SpeedDownPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 130 as "SpeedDownPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 130 as "SpeedDownPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 130 as "SpeedDownPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 130 as "SpeedDownPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 130 as "SpeedDownPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 130 as "SpeedDownPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 130 as "SpeedDownPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 130 as "SpeedDownPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 130 as "SpeedDownPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 130 as "SpeedDownPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 130 as "SpeedDownPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 130 as "SpeedDownPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 130 as "SpeedDownPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 130 as "SpeedDownPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 130 as "SpeedDownPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 130 as "SpeedDownPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 130 as "SpeedDownPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 130 as "SpeedDownPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 130 as "SpeedDownPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 130 as "SpeedDownPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 130 as "SpeedDownPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 130 as "SpeedDownPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 130 as "SpeedDownPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 130 as "SpeedDownPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 130 as "SpeedDownPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 130 as "SpeedDownPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 130 as "SpeedDownPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 130 as "SpeedDownPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 131 as "SpeedDownPickup" |
ExportAssets (56) | Timeline Frame 1 | Symbol 133 as "SpeedPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 133 as "SpeedPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 133 as "SpeedPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 133 as "SpeedPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 133 as "SpeedPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 133 as "SpeedPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 133 as "SpeedPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 133 as "SpeedPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 133 as "SpeedPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 133 as "SpeedPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 133 as "SpeedPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 133 as "SpeedPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 133 as "SpeedPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 133 as "SpeedPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 133 as "SpeedPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 133 as "SpeedPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 133 as "SpeedPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 133 as "SpeedPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 133 as "SpeedPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 133 as "SpeedPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 134 as "SpeedUpPickup" |
ExportAssets (56) | Timeline Frame 1 | Symbol 137 as "QuickStar2" |
ExportAssets (56) | Timeline Frame 1 | Symbol 140 as "QuickStar1" |
ExportAssets (56) | Timeline Frame 1 | Symbol 143 as "Star" |
ExportAssets (56) | Timeline Frame 1 | Symbol 148 as "BR_d_barrier_skin0" |
ExportAssets (56) | Timeline Frame 1 | Symbol 153 as "BR_s_barrier_skin0" |
ExportAssets (56) | Timeline Frame 1 | Symbol 156 as "BR_i_barrier_skin0" |
ExportAssets (56) | Timeline Frame 1 | Symbol 159 as "fireShadow" |
ExportAssets (56) | Timeline Frame 1 | Symbol 162 as "ballShadow" |
ExportAssets (56) | Timeline Frame 1 | Symbol 164 as "StarFire" |
ExportAssets (56) | Timeline Frame 1 | Symbol 166 as "StarfieldStar" |
ExportAssets (56) | Timeline Frame 1 | Symbol 47 as "ballGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 47 as "ballGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 47 as "ballGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 47 as "ballGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 47 as "ballGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 47 as "ballGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 47 as "ballGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 47 as "ballGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 47 as "ballGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 47 as "ballGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 47 as "ballGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 47 as "ballGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 47 as "ballGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 47 as "ballGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 47 as "ballGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 47 as "ballGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 47 as "ballGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 47 as "ballGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 47 as "ballGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 47 as "ballGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 47 as "ballGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 47 as "ballGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 47 as "ballGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 47 as "ballGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 47 as "ballGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 47 as "ballGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 47 as "ballGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 47 as "ballGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 47 as "ballGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 47 as "ballGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 47 as "ballGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 47 as "ballGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 47 as "ballGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 47 as "ballGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 47 as "ballGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 47 as "ballGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 47 as "ballGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 47 as "ballGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 47 as "ballGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 47 as "ballGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 47 as "ballGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 47 as "ballGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 47 as "ballGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 47 as "ballGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 47 as "ballGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 47 as "ballGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 47 as "ballGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 47 as "ballGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 171 as "ballLauncher" |
ExportAssets (56) | Timeline Frame 1 | Symbol 172 as "block" |
ExportAssets (56) | Timeline Frame 1 | Symbol 174 as "0_gfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 175 as "0" |
ExportAssets (56) | Timeline Frame 1 | Symbol 177 as "9_gfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 178 as "9" |
ExportAssets (56) | Timeline Frame 1 | Symbol 180 as "8_gfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 181 as "8" |
ExportAssets (56) | Timeline Frame 1 | Symbol 183 as "7_gfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 184 as "7" |
ExportAssets (56) | Timeline Frame 1 | Symbol 186 as "6_gfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 187 as "6" |
ExportAssets (56) | Timeline Frame 1 | Symbol 189 as "5_gfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 190 as "5" |
ExportAssets (56) | Timeline Frame 1 | Symbol 192 as "4_gfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 193 as "4" |
ExportAssets (56) | Timeline Frame 1 | Symbol 195 as "3_gfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 196 as "3" |
ExportAssets (56) | Timeline Frame 1 | Symbol 198 as "2_gfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 199 as "2" |
ExportAssets (56) | Timeline Frame 1 | Symbol 201 as "1_gfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 202 as "1" |
ExportAssets (56) | Timeline Frame 1 | Symbol 174 as "0_gfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 201 as "1_gfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 198 as "2_gfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 195 as "3_gfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 192 as "4_gfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 189 as "5_gfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 186 as "6_gfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 183 as "7_gfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 180 as "8_gfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 177 as "9_gfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 206 as "LevelPanel" |
ExportAssets (56) | Timeline Frame 1 | Symbol 209 as "ExplodeParticle" |
ExportAssets (56) | Timeline Frame 1 | Symbol 212 as "ExplodeAnim" |
ExportAssets (56) | Timeline Frame 1 | Symbol 213 as "ExplodeAnimSmall" |
ExportAssets (56) | Timeline Frame 1 | Symbol 214 as "ExplodeAnimMulti" |
ExportAssets (56) | Timeline Frame 1 | Symbol 225 as "scoreInput" |
ExportAssets (56) | Timeline Frame 1 | Symbol 227 as "paused" |
ExportAssets (56) | Timeline Frame 1 | Symbol 46 as "ballGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 46 as "ballGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 46 as "ballGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 46 as "ballGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 46 as "ballGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 46 as "ballGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 46 as "ballGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 46 as "ballGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 46 as "ballGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 46 as "ballGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 228 as "ballGfxBounce" |
ExportAssets (56) | Timeline Frame 1 | Symbol 230 as "submit" |
ExportAssets (56) | Timeline Frame 1 | Symbol 233 as "ExtraLife" |
ExportAssets (56) | Timeline Frame 1 | Symbol 235 as "PointsScoreNotify" |
ExportAssets (56) | Timeline Frame 1 | Symbol 238 as "SmallBulletLaunch" |
ExportAssets (56) | Timeline Frame 1 | Symbol 242 as "SmallBullet" |
ExportAssets (56) | Timeline Frame 1 | Symbol 255 as "quit" |
ExportAssets (56) | Timeline Frame 1 | Symbol 124 as "ReverseBatPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 105 as "MelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 102 as "EatenMelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 95 as "BananaPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 97 as "BananaBunchPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 260 as "BR_c_barrier_skin0" |
ExportAssets (56) | Timeline Frame 1 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1 | Symbol 59 as "NoGravityPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 65 as "MultiBallPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 127 as "BigBatPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 80 as "MultiLaserPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 87 as "SingleLaserPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 133 as "SpeedPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 115 as "DoubleBatPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 264 as "DrainCoverPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 264 as "DrainCoverPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 265 as "DrainCoverPickup" |
ExportAssets (56) | Timeline Frame 1 | Symbol 75 as "LittleBatPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 119 as "ReverseGravityPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 62 as "NextLevelPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 130 as "SpeedDownPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 268 as "bat" |
ExportAssets (56) | Timeline Frame 1 | Symbol 274 as "BeamLaser" |
ExportAssets (56) | Timeline Frame 1 | Symbol 70 as "FireballPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 50 as "BombPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 112 as "CherryPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 109 as "DiamondPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 91 as "RaspberryPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 91 as "RaspberryPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 109 as "DiamondPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 112 as "CherryPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 70 as "FireballPickupGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 274 as "BeamLaser" |
ExportAssets (56) | Timeline Frame 1 | Symbol 268 as "bat" |
ExportAssets (56) | Timeline Frame 1 | Symbol 268 as "bat" |
ExportAssets (56) | Timeline Frame 1 | Symbol 268 as "bat" |
ExportAssets (56) | Timeline Frame 1 | Symbol 268 as "bat" |
ExportAssets (56) | Timeline Frame 1 | Symbol 268 as "bat" |
ExportAssets (56) | Timeline Frame 1 | Symbol 268 as "bat" |
ExportAssets (56) | Timeline Frame 1 | Symbol 268 as "bat" |
ExportAssets (56) | Timeline Frame 1 | Symbol 268 as "bat" |
ExportAssets (56) | Timeline Frame 1 | Symbol 268 as "bat" |
ExportAssets (56) | Timeline Frame 1 | Symbol 268 as "bat" |
ExportAssets (56) | Timeline Frame 1 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1 | Symbol 46 as "ballGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 47 as "ballGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 47 as "ballGfx" |
ExportAssets (56) | Timeline Frame 1 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 1 | Symbol 288 as "ScoresNotAvailable" |
ExportAssets (56) | Timeline Frame 1 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1 | Symbol 299 as "Saucer" |
ExportAssets (56) | Timeline Frame 2 | Symbol 299 as "Saucer" |
ExportAssets (56) | Timeline Frame 3 | Symbol 299 as "Saucer" |
ExportAssets (56) | Timeline Frame 4 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 4 | Symbol 288 as "ScoresNotAvailable" |
ExportAssets (56) | Timeline Frame 4 | Symbol 288 as "ScoresNotAvailable" |
ExportAssets (56) | Timeline Frame 4 | Symbol 288 as "ScoresNotAvailable" |
ExportAssets (56) | Timeline Frame 4 | Symbol 288 as "ScoresNotAvailable" |
ExportAssets (56) | Timeline Frame 4 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 4 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 4 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 4 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 4 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 5 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 5 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 5 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 5 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 5 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 5 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 6 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 6 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 6 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 6 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 6 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 6 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 7 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 7 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 7 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 7 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 7 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 7 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 8 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 8 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 8 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 8 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 8 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 8 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 9 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 9 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 9 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 9 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 9 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 9 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 10 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 10 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 10 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 10 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 10 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 10 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 11 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 11 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 11 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 11 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 11 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 11 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 12 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 12 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 12 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 12 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 12 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 12 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 13 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 13 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 13 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 13 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 13 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 13 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 14 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 14 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 14 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 14 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 14 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 14 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 15 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 15 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 15 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 15 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 15 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 15 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 16 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 16 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 16 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 16 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 16 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 16 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 17 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 17 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 17 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 17 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 17 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 17 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 18 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 18 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 18 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 18 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 18 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 18 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 19 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 19 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 19 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 19 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 19 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 19 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 20 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 20 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 20 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 20 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 20 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 20 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 21 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 21 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 21 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 21 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 21 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 21 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 22 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 22 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 22 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 22 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 22 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 22 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 23 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 23 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 23 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 23 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 23 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 23 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 24 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 24 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 24 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 24 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 24 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 24 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 25 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 25 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 25 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 25 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 25 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 25 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 26 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 26 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 26 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 26 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 26 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 26 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 27 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 27 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 27 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 27 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 27 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 27 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 28 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 28 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 28 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 28 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 28 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 28 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 29 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 29 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 29 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 29 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 29 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 29 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 30 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 30 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 30 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 30 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 30 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 30 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 31 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 31 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 31 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 31 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 31 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 31 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 32 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 32 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 32 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 32 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 32 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 32 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 33 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 33 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 33 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 33 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 33 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 33 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 34 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 34 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 34 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 34 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 34 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 34 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 35 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 35 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 35 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 35 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 35 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 35 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 36 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 36 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 36 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 36 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 36 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 36 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 37 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 37 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 37 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 37 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 37 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 37 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 38 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 38 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 38 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 38 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 38 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 38 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 39 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 39 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 39 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 39 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 39 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 39 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 40 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 40 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 40 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 40 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 40 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 40 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 41 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 41 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 41 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 41 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 41 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 41 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 42 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 42 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 42 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 42 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 42 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 42 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 43 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 43 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 43 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 43 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 43 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 43 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 44 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 44 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 44 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 44 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 44 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 44 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 45 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 45 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 45 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 45 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 45 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 45 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 46 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 46 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 46 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 46 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 46 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 46 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 47 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 47 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 47 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 47 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 47 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 47 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 48 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 48 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 48 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 48 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 48 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 48 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 49 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 49 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 49 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 49 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 49 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 49 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 50 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 50 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 50 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 50 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 50 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 50 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 51 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 51 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 51 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 51 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 51 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 51 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 52 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 52 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 52 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 52 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 52 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 52 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 53 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 53 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 53 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 53 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 53 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 53 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 54 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 54 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 54 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 54 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 54 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 54 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 55 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 55 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 55 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 55 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 55 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 55 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 56 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 56 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 56 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 56 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 56 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 56 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 57 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 57 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 57 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 57 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 57 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 57 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 58 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 58 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 58 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 58 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 58 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 58 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 59 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 59 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 59 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 59 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 59 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 59 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 60 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 60 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 60 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 60 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 60 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 60 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 61 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 61 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 61 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 61 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 61 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 61 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 62 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 62 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 62 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 62 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 62 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 62 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 63 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 63 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 63 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 63 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 63 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 63 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 64 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 64 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 64 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 64 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 64 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 64 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 65 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 65 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 65 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 65 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 65 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 65 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 66 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 66 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 66 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 66 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 66 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 66 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 67 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 67 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 67 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 67 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 67 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 67 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 68 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 68 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 68 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 68 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 68 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 68 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 69 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 69 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 69 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 69 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 69 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 69 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 70 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 70 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 70 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 70 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 70 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 70 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 71 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 71 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 71 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 71 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 71 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 71 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 72 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 72 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 72 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 72 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 72 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 72 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 73 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 73 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 73 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 73 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 73 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 73 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 74 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 74 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 74 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 74 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 74 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 74 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 75 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 75 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 75 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 75 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 75 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 75 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 76 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 76 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 76 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 76 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 76 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 76 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 77 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 77 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 77 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 77 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 77 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 77 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 78 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 78 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 78 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 78 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 78 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 78 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 79 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 79 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 79 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 79 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 79 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 79 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 80 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 80 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 80 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 80 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 80 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 80 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 81 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 81 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 81 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 81 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 81 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 81 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 82 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 82 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 82 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 82 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 82 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 82 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 83 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 83 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 83 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 83 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 83 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 83 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 84 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 84 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 84 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 84 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 84 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 84 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 85 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 85 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 85 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 85 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 85 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 85 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 86 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 86 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 86 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 86 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 86 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 86 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 87 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 87 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 87 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 87 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 87 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 87 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 88 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 88 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 88 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 88 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 88 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 88 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 89 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 89 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 89 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 89 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 89 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 89 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 90 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 90 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 90 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 90 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 90 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 90 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 91 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 91 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 91 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 91 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 91 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 91 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 92 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 92 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 92 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 92 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 92 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 92 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 93 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 93 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 93 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 93 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 93 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 93 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 94 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 94 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 94 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 94 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 94 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 94 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 95 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 95 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 95 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 95 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 95 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 95 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 96 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 96 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 96 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 96 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 96 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 96 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 97 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 97 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 97 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 97 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 97 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 97 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 98 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 98 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 98 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 98 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 98 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 98 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 99 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 99 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 99 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 99 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 99 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 99 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 100 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 100 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 100 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 100 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 100 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 100 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 101 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 101 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 101 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 101 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 101 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 101 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 102 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 102 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 102 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 102 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 102 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 102 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 103 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 103 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 103 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 103 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 103 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 103 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 104 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 104 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 104 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 104 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 104 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 104 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 105 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 105 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 105 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 105 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 105 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 105 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 106 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 106 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 106 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 106 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 106 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 106 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 107 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 107 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 107 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 107 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 107 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 107 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 108 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 108 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 108 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 108 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 108 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 108 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 109 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 109 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 109 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 109 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 109 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 109 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 110 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 110 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 110 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 110 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 110 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 110 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 111 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 111 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 111 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 111 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 111 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 111 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 112 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 112 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 112 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 112 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 112 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 112 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 113 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 113 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 113 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 113 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 113 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 113 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 114 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 114 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 114 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 114 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 114 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 114 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 115 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 115 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 115 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 115 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 115 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 115 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 116 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 116 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 116 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 116 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 116 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 116 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 117 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 117 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 117 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 117 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 117 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 117 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 118 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 118 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 118 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 118 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 118 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 118 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 119 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 119 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 119 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 119 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 119 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 119 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 120 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 120 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 120 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 120 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 120 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 120 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 121 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 121 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 121 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 121 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 121 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 121 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 122 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 122 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 122 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 122 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 122 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 122 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 123 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 123 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 123 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 123 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 123 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 123 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 124 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 124 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 124 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 124 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 124 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 124 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 125 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 125 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 125 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 125 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 125 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 125 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 126 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 126 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 126 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 126 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 126 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 126 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 127 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 127 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 127 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 127 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 127 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 127 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 128 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 128 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 128 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 128 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 128 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 128 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 129 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 129 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 129 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 129 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 129 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 129 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 130 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 130 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 130 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 130 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 130 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 130 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 131 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 131 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 131 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 131 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 131 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 131 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 132 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 132 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 132 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 132 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 132 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 132 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 133 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 133 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 133 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 133 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 133 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 133 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 134 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 134 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 134 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 134 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 134 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 134 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 135 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 135 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 135 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 135 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 135 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 135 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 136 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 136 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 136 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 136 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 136 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 136 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 137 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 137 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 137 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 137 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 137 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 137 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 138 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 138 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 138 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 138 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 138 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 138 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 139 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 139 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 139 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 139 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 139 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 139 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 140 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 140 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 140 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 140 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 140 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 140 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 141 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 141 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 141 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 141 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 141 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 141 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 142 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 142 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 142 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 142 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 142 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 142 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 143 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 143 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 143 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 143 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 143 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 143 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 144 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 144 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 144 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 144 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 144 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 144 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 145 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 145 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 145 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 145 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 145 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 145 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 146 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 146 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 146 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 146 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 146 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 146 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 147 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 147 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 147 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 147 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 147 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 147 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 148 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 148 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 148 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 148 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 148 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 148 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 149 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 149 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 149 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 149 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 149 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 149 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 150 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 150 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 150 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 150 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 150 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 150 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 151 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 151 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 151 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 151 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 151 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 151 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 152 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 152 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 152 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 152 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 152 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 152 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 153 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 153 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 153 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 153 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 153 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 153 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 154 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 154 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 154 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 154 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 154 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 154 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 155 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 155 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 155 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 155 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 155 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 155 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 156 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 156 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 156 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 156 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 156 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 156 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 157 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 157 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 157 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 157 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 157 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 157 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 158 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 158 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 158 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 158 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 158 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 158 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 159 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 159 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 159 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 159 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 159 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 159 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 160 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 160 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 160 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 160 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 160 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 160 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 161 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 161 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 161 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 161 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 161 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 161 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 162 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 162 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 162 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 162 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 162 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 162 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 163 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 163 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 163 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 163 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 163 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 163 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 164 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 164 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 164 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 164 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 164 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 164 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 165 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 165 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 165 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 165 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 165 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 165 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 166 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 166 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 166 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 166 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 166 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 166 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 167 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 167 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 167 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 167 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 167 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 167 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 168 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 168 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 168 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 168 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 168 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 168 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 169 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 169 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 169 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 169 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 169 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 169 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 170 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 170 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 170 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 170 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 170 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 170 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 171 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 171 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 171 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 171 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 171 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 171 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 172 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 172 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 172 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 172 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 172 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 172 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 173 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 173 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 173 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 173 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 173 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 173 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 174 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 174 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 174 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 174 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 174 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 174 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 175 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 175 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 175 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 175 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 175 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 175 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 176 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 176 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 176 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 176 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 176 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 176 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 177 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 177 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 177 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 177 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 177 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 177 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 178 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 178 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 178 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 178 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 178 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 178 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 179 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 179 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 179 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 179 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 179 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 179 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 180 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 180 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 180 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 180 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 180 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 180 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 181 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 181 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 181 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 181 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 181 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 181 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 182 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 182 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 182 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 182 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 182 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 182 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 183 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 183 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 183 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 183 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 183 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 183 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 184 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 184 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 184 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 184 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 184 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 184 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 185 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 185 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 185 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 185 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 185 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 185 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 186 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 186 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 186 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 186 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 186 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 186 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 187 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 187 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 187 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 187 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 187 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 187 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 188 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 188 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 188 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 188 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 188 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 188 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 189 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 189 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 189 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 189 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 189 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 189 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 190 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 190 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 190 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 190 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 190 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 190 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 191 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 191 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 191 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 191 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 191 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 191 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 192 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 192 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 192 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 192 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 192 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 192 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 193 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 193 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 193 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 193 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 193 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 193 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 194 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 194 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 194 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 194 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 194 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 194 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 195 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 195 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 195 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 195 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 195 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 195 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 196 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 196 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 196 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 196 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 196 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 196 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 197 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 197 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 197 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 197 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 197 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 197 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 198 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 198 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 198 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 198 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 198 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 198 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 199 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 199 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 199 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 199 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 199 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 199 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 200 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 200 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 200 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 200 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 200 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 200 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 201 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 201 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 201 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 201 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 201 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 201 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 202 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 202 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 202 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 202 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 202 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 202 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 203 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 203 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 203 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 203 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 203 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 203 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 204 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 204 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 204 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 204 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 204 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 204 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 205 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 205 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 205 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 205 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 205 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 205 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 206 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 206 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 206 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 206 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 206 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 206 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 207 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 207 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 207 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 207 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 207 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 207 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 208 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 208 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 208 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 208 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 208 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 208 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 209 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 209 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 209 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 209 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 209 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 209 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 210 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 210 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 210 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 210 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 210 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 210 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 211 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 211 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 211 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 211 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 211 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 211 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 212 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 212 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 212 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 212 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 212 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 212 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 213 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 213 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 213 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 213 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 213 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 213 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 214 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 214 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 214 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 214 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 214 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 214 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 215 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 215 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 215 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 215 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 215 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 215 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 216 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 216 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 216 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 216 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 216 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 216 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 217 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 217 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 217 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 217 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 217 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 217 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 218 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 218 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 218 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 218 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 218 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 218 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 219 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 219 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 219 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 219 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 219 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 219 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 220 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 220 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 220 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 220 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 220 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 220 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 221 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 221 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 221 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 221 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 221 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 221 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 222 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 222 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 222 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 222 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 222 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 222 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 223 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 223 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 223 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 223 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 223 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 223 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 224 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 224 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 224 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 224 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 224 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 224 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 225 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 225 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 225 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 225 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 225 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 225 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 226 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 226 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 226 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 226 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 226 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 226 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 227 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 227 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 227 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 227 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 227 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 227 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 228 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 228 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 228 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 228 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 228 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 228 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 229 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 229 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 229 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 229 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 229 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 229 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 230 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 230 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 230 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 230 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 230 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 230 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 231 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 231 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 231 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 231 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 231 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 231 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 232 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 232 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 232 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 232 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 232 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 232 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 233 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 233 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 233 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 233 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 233 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 233 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 234 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 234 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 234 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 234 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 234 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 234 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 235 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 235 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 235 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 235 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 235 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 235 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 236 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 236 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 236 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 236 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 236 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 236 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 237 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 237 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 237 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 237 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 237 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 237 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 238 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 238 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 238 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 238 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 238 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 238 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 239 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 239 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 239 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 239 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 239 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 239 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 240 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 240 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 240 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 240 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 240 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 240 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 241 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 241 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 241 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 241 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 241 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 241 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 242 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 242 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 242 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 242 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 242 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 242 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 243 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 243 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 243 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 243 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 243 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 243 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 244 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 244 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 244 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 244 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 244 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 244 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 245 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 245 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 245 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 245 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 245 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 245 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 246 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 246 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 246 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 246 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 246 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 246 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 247 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 247 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 247 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 247 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 247 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 247 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 248 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 248 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 248 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 248 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 248 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 248 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 249 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 249 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 249 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 249 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 249 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 249 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 250 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 250 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 250 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 250 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 250 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 250 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 251 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 251 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 251 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 251 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 251 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 251 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 252 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 252 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 252 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 252 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 252 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 252 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 253 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 253 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 253 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 253 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 253 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 253 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 254 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 254 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 254 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 254 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 254 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 254 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 255 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 255 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 255 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 255 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 255 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 255 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 256 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 256 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 256 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 256 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 256 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 256 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 257 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 257 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 257 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 257 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 257 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 257 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 258 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 258 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 258 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 258 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 258 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 258 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 259 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 259 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 259 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 259 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 259 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 259 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 260 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 260 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 260 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 260 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 260 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 260 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 261 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 261 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 261 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 261 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 261 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 261 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 262 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 262 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 262 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 262 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 262 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 262 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 263 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 263 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 263 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 263 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 263 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 263 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 264 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 264 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 264 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 264 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 264 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 264 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 265 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 265 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 265 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 265 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 265 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 265 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 266 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 266 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 266 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 266 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 266 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 266 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 267 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 267 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 267 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 267 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 267 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 267 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 268 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 268 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 268 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 268 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 268 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 268 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 269 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 269 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 269 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 269 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 269 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 269 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 270 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 270 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 270 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 270 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 270 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 270 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 271 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 271 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 271 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 271 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 271 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 271 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 272 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 272 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 272 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 272 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 272 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 272 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 273 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 273 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 273 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 273 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 273 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 273 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 274 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 274 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 274 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 274 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 274 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 274 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 275 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 275 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 275 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 275 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 275 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 275 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 276 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 276 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 276 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 276 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 276 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 276 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 277 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 277 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 277 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 277 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 277 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 277 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 278 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 278 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 278 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 278 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 278 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 278 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 279 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 279 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 279 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 279 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 279 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 279 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 280 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 280 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 280 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 280 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 280 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 280 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 281 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 281 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 281 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 281 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 281 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 281 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 282 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 282 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 282 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 282 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 282 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 282 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 283 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 283 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 283 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 283 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 283 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 283 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 284 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 284 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 284 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 284 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 284 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 284 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 285 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 285 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 285 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 285 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 285 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 285 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 286 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 286 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 286 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 286 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 286 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 286 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 287 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 287 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 287 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 287 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 287 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 287 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 288 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 288 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 288 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 288 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 288 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 288 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 289 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 289 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 289 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 289 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 289 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 289 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 290 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 290 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 290 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 290 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 290 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 290 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 291 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 291 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 291 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 291 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 291 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 291 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 292 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 292 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 292 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 292 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 292 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 292 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 293 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 293 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 293 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 293 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 293 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 293 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 294 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 294 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 294 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 294 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 294 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 294 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 295 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 295 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 295 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 295 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 295 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 295 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 296 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 296 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 296 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 296 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 296 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 296 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 297 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 297 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 297 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 297 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 297 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 297 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 298 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 298 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 298 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 298 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 298 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 298 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 299 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 299 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 299 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 299 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 299 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 299 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 300 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 300 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 300 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 300 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 300 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 300 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 301 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 301 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 301 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 301 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 301 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 301 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 302 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 302 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 302 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 302 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 302 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 302 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 303 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 303 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 303 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 303 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 303 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 303 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 581 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 582 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 583 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 584 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 585 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 586 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 587 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 588 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 589 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 590 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 591 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 592 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 593 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 594 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 595 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 596 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 597 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 598 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 599 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 600 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 601 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 602 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 603 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 604 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 605 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 606 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 607 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 608 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 609 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 610 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 611 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 612 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 613 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 614 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 615 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 616 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 617 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 618 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 619 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 620 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 621 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 622 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 623 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 624 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 625 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 626 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 627 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 628 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 629 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 630 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 631 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 632 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 633 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 634 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 635 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 636 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 637 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 638 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 639 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 640 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 641 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 642 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 643 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 644 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 645 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 646 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 647 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 648 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 649 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 650 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 651 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 652 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 653 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 654 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 655 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 656 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 657 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 658 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 659 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 660 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 661 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 662 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 663 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 664 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 665 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 666 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 667 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 668 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 669 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 670 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 671 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 672 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 673 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 674 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 675 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 676 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 677 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 678 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 679 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 680 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 681 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 682 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 683 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 684 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 685 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 686 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 687 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 688 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 689 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 690 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 691 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 692 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 693 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 694 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 695 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 696 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 697 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 698 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 699 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 699 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 699 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 699 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 699 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 700 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 700 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 700 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 700 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 700 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 701 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 701 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 701 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 701 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 701 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 702 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 702 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 702 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 702 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 702 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 703 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 703 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 703 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 703 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 703 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 704 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 704 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 704 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 704 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 704 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 705 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 705 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 705 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 705 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 705 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 706 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 706 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 706 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 706 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 706 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 707 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 707 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 707 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 707 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 707 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 708 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 708 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 708 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 708 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 708 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 709 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 709 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 709 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 709 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 709 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 710 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 710 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 710 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 710 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 710 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 711 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 711 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 711 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 711 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 711 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 712 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 712 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 712 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 712 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 712 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 713 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 713 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 713 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 713 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 713 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 714 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 714 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 714 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 714 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 714 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 715 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 715 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 715 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 715 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 715 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 716 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 716 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 716 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 716 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 716 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 717 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 717 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 717 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 717 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 717 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 718 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 718 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 718 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 718 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 718 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 719 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 719 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 719 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 719 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 719 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 720 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 720 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 720 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 720 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 720 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 721 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 721 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 721 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 721 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 721 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 722 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 722 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 722 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 722 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 722 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 723 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 723 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 723 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 723 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 723 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 724 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 724 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 724 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 724 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 724 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 725 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 725 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 725 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 725 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 725 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 726 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 726 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 726 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 726 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 726 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 727 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 727 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 727 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 727 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 727 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 728 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 728 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 728 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 728 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 728 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 729 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 729 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 729 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 729 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 729 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 730 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 730 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 730 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 730 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 730 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 731 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 731 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 731 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 731 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 731 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 732 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 732 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 732 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 732 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 732 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 733 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 733 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 733 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 733 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 733 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 734 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 734 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 734 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 734 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 734 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 735 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 735 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 735 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 735 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 735 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 736 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 736 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 736 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 736 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 736 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 737 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 737 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 737 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 737 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 737 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 738 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 738 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 738 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 738 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 738 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 739 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 739 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 739 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 739 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 739 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 740 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 740 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 740 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 740 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 740 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 741 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 741 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 741 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 741 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 741 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 742 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 742 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 742 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 742 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 742 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 743 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 743 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 743 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 743 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 743 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 744 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 744 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 744 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 744 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 744 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 745 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 745 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 745 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 745 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 745 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 746 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 746 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 746 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 746 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 746 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 747 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 747 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 747 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 747 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 747 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 748 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 748 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 748 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 748 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 748 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 749 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 749 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 749 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 749 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 749 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 750 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 750 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 750 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 750 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 750 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 751 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 751 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 751 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 751 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 751 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 752 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 752 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 752 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 752 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 752 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 753 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 753 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 753 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 753 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 753 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 754 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 754 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 754 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 754 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 754 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 755 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 755 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 755 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 755 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 755 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 756 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 756 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 756 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 756 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 756 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 757 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 757 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 757 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 757 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 757 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 758 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 758 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 758 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 758 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 758 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 759 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 759 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 759 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 759 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 759 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 760 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 760 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 760 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 760 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 760 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 761 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 761 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 761 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 761 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 761 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 762 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 762 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 762 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 762 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 762 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 763 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 763 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 763 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 763 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 763 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 764 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 764 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 764 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 764 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 764 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 765 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 765 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 765 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 765 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 765 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 766 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 766 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 766 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 766 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 766 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 767 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 767 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 767 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 767 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 767 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 768 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 768 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 768 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 768 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 768 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 769 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 769 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 769 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 769 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 769 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 770 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 770 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 770 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 770 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 770 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 771 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 771 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 771 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 771 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 771 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 772 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 772 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 772 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 772 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 772 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 773 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 773 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 773 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 773 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 773 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 774 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 774 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 774 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 774 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 774 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 775 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 775 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 775 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 775 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 775 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 776 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 776 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 776 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 776 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 776 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 777 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 777 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 777 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 777 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 777 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 778 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 778 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 778 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 778 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 778 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 779 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 779 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 779 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 779 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 779 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 780 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 780 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 780 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 780 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 780 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 781 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 781 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 781 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 781 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 781 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 782 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 782 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 782 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 782 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 782 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 783 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 783 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 783 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 783 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 783 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 784 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 784 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 784 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 784 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 784 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 785 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 785 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 785 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 785 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 785 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 786 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 786 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 786 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 786 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 786 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 787 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 787 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 787 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 787 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 787 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 788 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 788 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 788 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 788 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 788 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 789 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 789 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 789 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 789 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 789 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 790 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 790 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 790 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 790 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 790 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 791 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 791 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 791 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 791 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 791 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 792 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 792 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 792 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 792 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 792 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 793 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 793 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 793 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 793 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 793 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 794 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 794 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 794 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 794 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 794 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 795 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 795 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 795 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 795 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 795 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 796 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 796 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 796 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 796 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 796 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 797 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 797 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 797 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 797 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 797 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 798 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 798 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 798 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 798 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 798 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 799 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 799 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 799 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 799 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 799 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 800 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 800 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 800 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 800 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 800 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 801 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 801 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 801 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 801 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 801 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 802 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 802 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 802 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 802 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 802 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 803 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 803 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 803 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 803 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 803 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 804 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 804 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 804 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 804 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 804 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 805 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 805 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 805 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 805 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 805 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 806 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 806 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 806 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 806 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 806 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 807 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 807 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 807 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 807 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 807 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 808 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 808 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 808 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 808 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 808 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 809 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 809 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 809 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 809 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 809 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 810 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 810 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 810 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 810 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 810 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 811 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 811 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 811 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 811 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 811 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 812 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 812 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 812 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 812 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 812 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 813 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 813 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 813 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 813 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 813 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 814 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 814 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 814 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 814 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 814 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 815 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 815 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 815 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 815 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 815 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 816 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 816 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 816 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 816 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 816 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 817 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 817 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 817 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 817 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 817 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 818 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 818 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 818 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 818 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 818 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 819 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 819 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 819 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 819 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 819 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 820 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 820 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 820 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 820 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 820 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 821 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 821 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 821 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 821 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 821 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 822 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 822 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 822 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 822 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 822 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 823 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 823 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 823 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 823 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 823 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 824 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 824 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 824 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 824 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 824 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 825 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 825 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 825 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 825 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 825 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 826 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 826 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 826 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 826 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 826 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 827 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 827 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 827 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 827 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 827 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 828 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 828 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 828 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 828 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 828 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 829 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 829 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 829 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 829 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 829 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 830 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 830 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 830 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 830 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 830 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 831 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 831 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 831 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 831 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 831 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 832 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 832 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 832 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 832 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 832 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 833 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 833 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 833 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 833 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 833 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 834 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 834 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 834 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 834 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 834 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 835 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 835 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 835 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 835 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 835 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 836 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 836 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 836 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 836 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 836 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 837 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 837 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 837 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 837 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 837 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 838 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 838 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 838 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 838 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 838 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 839 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 839 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 839 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 839 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 839 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 840 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 840 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 840 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 840 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 840 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 841 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 841 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 841 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 841 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 841 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 842 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 842 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 842 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 842 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 842 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 843 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 843 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 843 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 843 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 843 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 844 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 844 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 844 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 844 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 844 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 845 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 845 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 845 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 845 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 845 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 846 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 846 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 846 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 846 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 846 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 847 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 847 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 847 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 847 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 847 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 848 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 848 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 848 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 848 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 848 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 849 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 849 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 849 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 849 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 849 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 850 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 850 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 850 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 850 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 850 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 851 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 851 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 851 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 851 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 851 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 852 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 852 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 852 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 852 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 852 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 853 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 853 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 853 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 853 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 853 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 854 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 854 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 854 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 854 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 854 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 855 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 855 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 855 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 855 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 855 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 856 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 856 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 856 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 856 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 856 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 857 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 857 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 857 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 857 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 857 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 858 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 858 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 858 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 858 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 858 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 859 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 859 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 859 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 859 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 859 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 860 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 860 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 860 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 860 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 860 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 861 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 861 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 861 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 861 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 861 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 862 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 862 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 862 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 862 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 862 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 863 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 863 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 863 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 863 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 863 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 864 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 864 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 864 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 864 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 864 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 865 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 865 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 865 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 865 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 865 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 866 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 866 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 866 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 866 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 866 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 867 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 867 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 867 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 867 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 867 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 868 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 868 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 868 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 868 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 868 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 869 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 869 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 869 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 869 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 869 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 870 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 870 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 870 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 870 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 870 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 871 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 871 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 871 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 871 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 871 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 872 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 872 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 872 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 872 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 872 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 873 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 873 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 873 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 873 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 873 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 874 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 874 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 874 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 874 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 874 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 875 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 875 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 875 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 875 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 875 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 876 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 876 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 876 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 876 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 876 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 877 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 877 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 877 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 877 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 877 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 878 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 878 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 878 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 878 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 878 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 879 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 879 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 879 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 879 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 879 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 880 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 880 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 880 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 880 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 880 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 881 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 881 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 881 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 881 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 881 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 882 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 882 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 882 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 882 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 882 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 883 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 883 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 883 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 883 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 883 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 884 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 884 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 884 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 884 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 884 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 885 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 885 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 885 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 885 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 885 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 886 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 886 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 886 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 886 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 886 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 887 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 887 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 887 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 887 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 887 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 888 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 888 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 888 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 888 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 888 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 889 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 889 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 889 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 889 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 889 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 890 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 890 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 890 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 890 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 890 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 891 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 891 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 891 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 891 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 891 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 892 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 892 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 892 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 892 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 892 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 893 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 893 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 893 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 893 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 893 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 894 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 894 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 894 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 894 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 894 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 895 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 895 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 895 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 895 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 895 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 896 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 896 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 896 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 896 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 896 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 897 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 897 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 897 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 897 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 897 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 898 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 898 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 898 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 898 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 898 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 899 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 899 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 899 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 899 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 899 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 900 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 900 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 900 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 900 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 900 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 901 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 901 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 901 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 901 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 901 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 902 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 902 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 902 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 902 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 902 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 903 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 903 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 903 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 903 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 903 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 904 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 904 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 904 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 904 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 904 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 905 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 905 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 905 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 905 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 905 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 906 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 906 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 906 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 906 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 906 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 907 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 907 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 907 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 907 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 907 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 908 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 908 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 908 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 908 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 908 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 909 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 909 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 909 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 909 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 909 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 910 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 910 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 910 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 910 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 910 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 911 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 911 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 911 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 911 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 911 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 912 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 912 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 912 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 912 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 912 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 913 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 913 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 913 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 913 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 913 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 914 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 914 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 914 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 914 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 914 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 915 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 915 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 915 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 915 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 915 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 916 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 916 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 916 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 916 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 916 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 917 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 917 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 917 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 917 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 917 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 918 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 918 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 918 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 918 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 918 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 919 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 919 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 919 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 919 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 919 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 920 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 920 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 920 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 920 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 920 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 921 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 921 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 921 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 921 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 921 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 922 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 922 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 922 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 922 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 922 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 923 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 923 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 923 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 923 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 923 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 924 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 924 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 924 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 924 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 924 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 925 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 925 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 925 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 925 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 925 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 926 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 926 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 926 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 926 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 926 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 927 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 927 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 927 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 927 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 927 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 928 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 928 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 928 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 928 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 928 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 929 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 929 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 929 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 929 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 929 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 930 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 930 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 930 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 930 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 930 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 931 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 931 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 931 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 931 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 931 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 932 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 932 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 932 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 932 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 932 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 933 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 933 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 933 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 933 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 933 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 934 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 934 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 934 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 934 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 934 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 935 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 935 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 935 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 935 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 935 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 936 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 936 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 936 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 936 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 936 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 937 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 937 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 937 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 937 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 937 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 938 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 938 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 938 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 938 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 938 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 939 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 939 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 939 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 939 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 939 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 940 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 940 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 940 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 940 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 940 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 941 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 941 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 941 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 941 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 941 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 942 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 942 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 942 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 942 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 942 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 943 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 943 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 943 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 943 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 943 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 944 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 944 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 944 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 944 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 944 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 945 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 945 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 945 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 945 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 945 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 946 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 946 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 946 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 946 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 946 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 947 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 947 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 947 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 947 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 947 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 948 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 948 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 948 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 948 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 948 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 949 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 949 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 949 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 949 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 949 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 950 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 950 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 950 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 950 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 950 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 951 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 951 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 951 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 951 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 951 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 952 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 952 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 952 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 952 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 952 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 953 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 953 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 953 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 953 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 953 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 954 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 954 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 954 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 954 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 954 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 955 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 955 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 955 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 955 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 955 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 956 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 956 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 956 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 956 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 956 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 957 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 957 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 957 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 957 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 957 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 958 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 958 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 958 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 958 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 958 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 959 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 959 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 959 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 959 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 959 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 960 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 960 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 960 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 960 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 960 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 961 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 961 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 961 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 961 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 961 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 962 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 962 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 962 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 962 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 962 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 963 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 963 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 963 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 963 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 963 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 964 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 964 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 964 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 964 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 964 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 965 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 965 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 965 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 965 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 965 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 966 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 966 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 966 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 966 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 966 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 967 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 967 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 967 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 967 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 967 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 968 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 968 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 968 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 968 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 968 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 969 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 969 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 969 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 969 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 969 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 970 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 970 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 970 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 970 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 970 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 971 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 971 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 971 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 971 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 971 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 972 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 972 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 972 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 972 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 972 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 973 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 973 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 973 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 973 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 973 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 974 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 974 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 974 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 974 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 974 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 975 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 975 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 975 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 975 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 975 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 976 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 976 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 976 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 976 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 976 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 977 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 977 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 977 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 977 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 977 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 978 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 978 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 978 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 978 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 978 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 979 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 979 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 979 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 979 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 979 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 980 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 980 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 980 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 980 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 980 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 981 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 981 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 981 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 981 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 981 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 982 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 982 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 982 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 982 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 982 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 983 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 983 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 983 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 983 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 983 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 984 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 984 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 984 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 984 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 984 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 985 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 985 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 985 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 985 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 985 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 986 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 986 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 986 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 986 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 986 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 987 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 987 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 987 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 987 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 987 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 988 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 988 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 988 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 988 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 988 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 989 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 989 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 989 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 989 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 989 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 990 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 990 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 990 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 990 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 990 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 991 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 991 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 991 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 991 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 991 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 992 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 992 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 992 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 992 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 992 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 993 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 993 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 993 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 993 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 993 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 994 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 994 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 994 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 994 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 994 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 995 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 995 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 995 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 995 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 995 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 996 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 996 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 996 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 996 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 996 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 997 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 997 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 997 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 997 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 997 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 998 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 998 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 998 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 998 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 998 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 999 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 999 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 999 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 999 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 999 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 1000 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 1000 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 1000 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 1000 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 1000 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 1001 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 1001 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 1001 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 1001 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 1001 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 1002 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 1002 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 1002 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 1002 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 1002 | Symbol 286 as "frontEndBall" |
ExportAssets (56) | Timeline Frame 1242 | Symbol 130 as "SpeedDownPickupGfx" |
ExportAssets (56) | Timeline Frame 1242 | Symbol 62 as "NextLevelPickupGfx" |
ExportAssets (56) | Timeline Frame 1242 | Symbol 119 as "ReverseGravityPickupGfx" |
ExportAssets (56) | Timeline Frame 1242 | Symbol 75 as "LittleBatPickupGfx" |
ExportAssets (56) | Timeline Frame 1242 | Symbol 70 as "FireballPickupGfx" |
ExportAssets (56) | Timeline Frame 1242 | Symbol 265 as "DrainCoverPickup" |
ExportAssets (56) | Timeline Frame 1242 | Symbol 115 as "DoubleBatPickupGfx" |
ExportAssets (56) | Timeline Frame 1242 | Symbol 133 as "SpeedPickupGfx" |
ExportAssets (56) | Timeline Frame 1242 | Symbol 87 as "SingleLaserPickupGfx" |
ExportAssets (56) | Timeline Frame 1242 | Symbol 80 as "MultiLaserPickupGfx" |
ExportAssets (56) | Timeline Frame 1242 | Symbol 127 as "BigBatPickupGfx" |
ExportAssets (56) | Timeline Frame 1242 | Symbol 65 as "MultiBallPickupGfx" |
ExportAssets (56) | Timeline Frame 1242 | Symbol 59 as "NoGravityPickupGfx" |
ExportAssets (56) | Timeline Frame 1242 | Symbol 50 as "BombPickupGfx" |
ExportAssets (56) | Timeline Frame 1288 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1288 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1289 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1289 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1290 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1290 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1291 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1291 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1292 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1292 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1293 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1293 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1294 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1294 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1295 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1295 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1296 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1296 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1297 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1297 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1298 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1298 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1299 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1299 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1300 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1300 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1301 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1301 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1302 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1302 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1303 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1303 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1304 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1304 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1305 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1305 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1306 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1306 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1307 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1307 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1308 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1308 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1309 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1309 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1310 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1310 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1311 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1311 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1312 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1312 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1313 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1313 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1314 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1314 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1315 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1315 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1316 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1316 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1317 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1317 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1318 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1318 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1319 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1319 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1320 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1320 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1321 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1321 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1322 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1322 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1323 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1323 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1324 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1324 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1325 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1325 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1326 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1326 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1327 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1327 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1328 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1328 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1329 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1329 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1330 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1330 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1331 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1331 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1332 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1332 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1333 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1333 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1334 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1334 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1335 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1335 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1336 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1336 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1337 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1337 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1338 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1338 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1339 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1339 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1340 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1340 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1341 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1341 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1342 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1342 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1343 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1343 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1344 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1344 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1345 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1345 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1346 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1346 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1347 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1347 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1348 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1348 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1349 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1349 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1350 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1350 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1351 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1351 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1352 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1352 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1353 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1353 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1354 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1354 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1355 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1355 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1356 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1356 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1357 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1357 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1358 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1358 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1359 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1359 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1360 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1360 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1361 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1361 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1362 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1362 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1363 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1363 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1364 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1364 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1365 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1365 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1366 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1366 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1367 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1367 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1368 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1368 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1369 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1369 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1370 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1370 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1371 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1371 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1372 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1372 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1373 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1373 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1374 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1374 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1375 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1375 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1376 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1376 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1377 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1377 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1378 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1378 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1379 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1379 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1380 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1380 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1381 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1381 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1382 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1382 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1383 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1383 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1384 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1384 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1385 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1385 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1386 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1386 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1387 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1387 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1388 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1388 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1389 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1389 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1390 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1390 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1391 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1391 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1392 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1392 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1393 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1393 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1394 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1394 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1395 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1395 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1396 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1396 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1397 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1397 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1398 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1398 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1399 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1399 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1400 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1400 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1401 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1401 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1402 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1402 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1403 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1403 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1404 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1404 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1405 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1405 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1406 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1406 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1407 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1407 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1408 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1408 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1409 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1409 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1410 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1410 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1411 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1411 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1412 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1412 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1413 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1413 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1414 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1414 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1415 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1415 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1416 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1416 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1417 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1417 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1418 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1418 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1419 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1419 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1420 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1420 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1421 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1421 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1422 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1422 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1423 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1423 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1424 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1424 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1425 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1425 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1426 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1426 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1427 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1427 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1428 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1428 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1429 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1429 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1430 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1430 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1431 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1431 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1432 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1432 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1433 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1433 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1434 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1434 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1435 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1435 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1436 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1436 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1437 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1437 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1438 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1438 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1439 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1439 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1440 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1440 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1441 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1441 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1442 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1442 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1443 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1443 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1444 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1444 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1445 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1445 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1446 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1446 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1447 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1447 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1448 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1448 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1449 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1449 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1450 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1450 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1451 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1451 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1452 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1452 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1453 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1453 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1454 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1454 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1455 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1455 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1456 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1456 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1457 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1457 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1458 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1458 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1459 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1459 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1460 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1460 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1461 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1461 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1462 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1462 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1463 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1463 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1464 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1464 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1465 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1465 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1466 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1466 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1467 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1467 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1468 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1468 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1469 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1469 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1470 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1470 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1471 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1471 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1472 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1472 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1473 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1473 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1474 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1474 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1475 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1475 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1476 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1476 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1477 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1477 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1478 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1478 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1479 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1479 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1480 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1480 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1481 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1481 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1482 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1482 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1483 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1483 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1484 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1484 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1485 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1485 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1486 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1486 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1487 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1487 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1488 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1488 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1489 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1489 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1490 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1490 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1491 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1491 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1492 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1492 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1493 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1493 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1494 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1494 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1495 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1495 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1496 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1496 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1497 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1497 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1498 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1498 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1499 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1499 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1500 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1500 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1501 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1501 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1502 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1502 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1503 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1503 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1504 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1504 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1505 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1505 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1506 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1506 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1507 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1507 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1508 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1508 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1509 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1509 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1510 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1510 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1511 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1511 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1512 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1512 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1513 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1513 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1514 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1514 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1515 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1515 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1516 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1516 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1517 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1517 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1518 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1518 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1519 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1519 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1520 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1520 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1521 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1521 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1522 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1522 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1523 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1523 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1524 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1524 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1525 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1525 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1526 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1526 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1527 | Symbol 262 as "AreaOfInfluence" |
ExportAssets (56) | Timeline Frame 1527 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1703 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1704 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1705 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1706 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1707 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1708 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1709 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1710 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1711 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1712 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1713 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1714 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1715 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1716 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1717 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1718 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1719 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1720 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1721 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1722 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1723 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1724 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1725 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1726 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1727 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1728 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1729 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1730 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1731 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1732 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1733 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1734 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1735 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1736 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1737 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1738 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1739 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1740 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1741 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1742 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1743 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1744 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1745 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1746 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1747 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1748 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1749 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1750 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1751 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1752 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1753 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1754 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1755 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1756 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1757 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1758 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1759 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1760 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1761 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1762 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1763 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1764 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1765 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1766 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1767 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1768 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1769 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1770 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1771 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1772 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1773 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1774 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1775 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1776 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1777 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1778 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1779 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1780 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1781 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1782 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1783 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1784 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1785 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1786 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1787 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1788 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1789 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1790 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1791 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1792 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1793 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1794 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1795 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1796 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1797 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1798 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1799 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1800 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1801 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1802 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1803 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1804 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1805 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1806 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1807 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1808 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1809 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1810 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1811 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1812 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1813 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1814 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1815 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1816 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1817 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1818 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1819 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1820 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1821 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1822 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1823 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1824 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1825 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1826 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1827 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1828 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1829 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1830 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1831 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1832 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1833 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1834 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1835 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1836 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1837 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1838 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1839 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1840 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1841 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1842 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1843 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1844 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1845 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1846 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1847 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1848 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1849 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1850 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1851 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1852 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1853 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1854 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1855 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1856 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1857 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1858 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1859 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1860 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1861 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1862 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1863 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1864 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1865 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1866 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1867 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1868 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1869 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1870 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1871 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1872 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1873 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1874 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1875 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1876 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1877 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1878 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1879 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1880 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1881 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1882 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1883 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1884 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1885 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1886 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1887 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1888 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1889 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1890 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1891 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1892 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1893 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1894 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1895 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1896 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1897 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1898 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1899 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1900 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1901 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1902 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1903 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1904 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1905 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1906 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1907 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1908 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1909 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1910 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1911 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1912 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1913 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1914 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1915 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1916 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1917 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1918 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1919 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1920 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1921 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1922 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1923 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1924 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1925 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1926 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1927 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1928 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1929 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1930 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1931 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1932 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1933 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1934 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1935 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1936 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1937 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1938 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1939 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1940 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1941 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1942 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1943 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1944 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1945 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1946 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1947 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1948 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1949 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1950 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1951 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1952 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1953 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1954 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1955 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1956 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1957 | Symbol 285 as "BuyMe" |
ExportAssets (56) | Timeline Frame 1963 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1963 | Symbol 260 as "BR_c_barrier_skin0" |
ExportAssets (56) | Timeline Frame 1963 | Symbol 97 as "BananaBunchPickupGfx" |
ExportAssets (56) | Timeline Frame 1963 | Symbol 95 as "BananaPickupGfx" |
ExportAssets (56) | Timeline Frame 1963 | Symbol 127 as "BigBatPickupGfx" |
ExportAssets (56) | Timeline Frame 1963 | Symbol 50 as "BombPickupGfx" |
ExportAssets (56) | Timeline Frame 1963 | Symbol 112 as "CherryPickupGfx" |
ExportAssets (56) | Timeline Frame 1963 | Symbol 109 as "DiamondPickupGfx" |
ExportAssets (56) | Timeline Frame 1963 | Symbol 115 as "DoubleBatPickupGfx" |
ExportAssets (56) | Timeline Frame 1963 | Symbol 265 as "DrainCoverPickup" |
ExportAssets (56) | Timeline Frame 1963 | Symbol 102 as "EatenMelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1963 | Symbol 70 as "FireballPickupGfx" |
ExportAssets (56) | Timeline Frame 1963 | Symbol 75 as "LittleBatPickupGfx" |
ExportAssets (56) | Timeline Frame 1963 | Symbol 105 as "MelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1963 | Symbol 65 as "MultiBallPickupGfx" |
ExportAssets (56) | Timeline Frame 1963 | Symbol 80 as "MultiLaserPickupGfx" |
ExportAssets (56) | Timeline Frame 1963 | Symbol 62 as "NextLevelPickupGfx" |
ExportAssets (56) | Timeline Frame 1963 | Symbol 59 as "NoGravityPickupGfx" |
ExportAssets (56) | Timeline Frame 1963 | Symbol 91 as "RaspberryPickupGfx" |
ExportAssets (56) | Timeline Frame 1963 | Symbol 119 as "ReverseGravityPickupGfx" |
ExportAssets (56) | Timeline Frame 1963 | Symbol 87 as "SingleLaserPickupGfx" |
ExportAssets (56) | Timeline Frame 1963 | Symbol 130 as "SpeedDownPickupGfx" |
ExportAssets (56) | Timeline Frame 1963 | Symbol 133 as "SpeedPickupGfx" |
ExportAssets (56) | Timeline Frame 1964 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1964 | Symbol 260 as "BR_c_barrier_skin0" |
ExportAssets (56) | Timeline Frame 1964 | Symbol 97 as "BananaBunchPickupGfx" |
ExportAssets (56) | Timeline Frame 1964 | Symbol 95 as "BananaPickupGfx" |
ExportAssets (56) | Timeline Frame 1964 | Symbol 127 as "BigBatPickupGfx" |
ExportAssets (56) | Timeline Frame 1964 | Symbol 50 as "BombPickupGfx" |
ExportAssets (56) | Timeline Frame 1964 | Symbol 112 as "CherryPickupGfx" |
ExportAssets (56) | Timeline Frame 1964 | Symbol 109 as "DiamondPickupGfx" |
ExportAssets (56) | Timeline Frame 1964 | Symbol 115 as "DoubleBatPickupGfx" |
ExportAssets (56) | Timeline Frame 1964 | Symbol 265 as "DrainCoverPickup" |
ExportAssets (56) | Timeline Frame 1964 | Symbol 102 as "EatenMelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1964 | Symbol 70 as "FireballPickupGfx" |
ExportAssets (56) | Timeline Frame 1964 | Symbol 75 as "LittleBatPickupGfx" |
ExportAssets (56) | Timeline Frame 1964 | Symbol 105 as "MelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1964 | Symbol 65 as "MultiBallPickupGfx" |
ExportAssets (56) | Timeline Frame 1964 | Symbol 80 as "MultiLaserPickupGfx" |
ExportAssets (56) | Timeline Frame 1964 | Symbol 62 as "NextLevelPickupGfx" |
ExportAssets (56) | Timeline Frame 1964 | Symbol 59 as "NoGravityPickupGfx" |
ExportAssets (56) | Timeline Frame 1964 | Symbol 91 as "RaspberryPickupGfx" |
ExportAssets (56) | Timeline Frame 1964 | Symbol 119 as "ReverseGravityPickupGfx" |
ExportAssets (56) | Timeline Frame 1964 | Symbol 87 as "SingleLaserPickupGfx" |
ExportAssets (56) | Timeline Frame 1964 | Symbol 130 as "SpeedDownPickupGfx" |
ExportAssets (56) | Timeline Frame 1964 | Symbol 133 as "SpeedPickupGfx" |
ExportAssets (56) | Timeline Frame 1965 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1965 | Symbol 260 as "BR_c_barrier_skin0" |
ExportAssets (56) | Timeline Frame 1965 | Symbol 97 as "BananaBunchPickupGfx" |
ExportAssets (56) | Timeline Frame 1965 | Symbol 95 as "BananaPickupGfx" |
ExportAssets (56) | Timeline Frame 1965 | Symbol 127 as "BigBatPickupGfx" |
ExportAssets (56) | Timeline Frame 1965 | Symbol 50 as "BombPickupGfx" |
ExportAssets (56) | Timeline Frame 1965 | Symbol 112 as "CherryPickupGfx" |
ExportAssets (56) | Timeline Frame 1965 | Symbol 109 as "DiamondPickupGfx" |
ExportAssets (56) | Timeline Frame 1965 | Symbol 115 as "DoubleBatPickupGfx" |
ExportAssets (56) | Timeline Frame 1965 | Symbol 265 as "DrainCoverPickup" |
ExportAssets (56) | Timeline Frame 1965 | Symbol 102 as "EatenMelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1965 | Symbol 70 as "FireballPickupGfx" |
ExportAssets (56) | Timeline Frame 1965 | Symbol 75 as "LittleBatPickupGfx" |
ExportAssets (56) | Timeline Frame 1965 | Symbol 105 as "MelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1965 | Symbol 65 as "MultiBallPickupGfx" |
ExportAssets (56) | Timeline Frame 1965 | Symbol 80 as "MultiLaserPickupGfx" |
ExportAssets (56) | Timeline Frame 1965 | Symbol 62 as "NextLevelPickupGfx" |
ExportAssets (56) | Timeline Frame 1965 | Symbol 59 as "NoGravityPickupGfx" |
ExportAssets (56) | Timeline Frame 1965 | Symbol 91 as "RaspberryPickupGfx" |
ExportAssets (56) | Timeline Frame 1965 | Symbol 119 as "ReverseGravityPickupGfx" |
ExportAssets (56) | Timeline Frame 1965 | Symbol 87 as "SingleLaserPickupGfx" |
ExportAssets (56) | Timeline Frame 1965 | Symbol 130 as "SpeedDownPickupGfx" |
ExportAssets (56) | Timeline Frame 1965 | Symbol 133 as "SpeedPickupGfx" |
ExportAssets (56) | Timeline Frame 1966 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1966 | Symbol 260 as "BR_c_barrier_skin0" |
ExportAssets (56) | Timeline Frame 1966 | Symbol 97 as "BananaBunchPickupGfx" |
ExportAssets (56) | Timeline Frame 1966 | Symbol 95 as "BananaPickupGfx" |
ExportAssets (56) | Timeline Frame 1966 | Symbol 127 as "BigBatPickupGfx" |
ExportAssets (56) | Timeline Frame 1966 | Symbol 50 as "BombPickupGfx" |
ExportAssets (56) | Timeline Frame 1966 | Symbol 112 as "CherryPickupGfx" |
ExportAssets (56) | Timeline Frame 1966 | Symbol 109 as "DiamondPickupGfx" |
ExportAssets (56) | Timeline Frame 1966 | Symbol 115 as "DoubleBatPickupGfx" |
ExportAssets (56) | Timeline Frame 1966 | Symbol 265 as "DrainCoverPickup" |
ExportAssets (56) | Timeline Frame 1966 | Symbol 102 as "EatenMelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1966 | Symbol 70 as "FireballPickupGfx" |
ExportAssets (56) | Timeline Frame 1966 | Symbol 75 as "LittleBatPickupGfx" |
ExportAssets (56) | Timeline Frame 1966 | Symbol 105 as "MelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1966 | Symbol 65 as "MultiBallPickupGfx" |
ExportAssets (56) | Timeline Frame 1966 | Symbol 80 as "MultiLaserPickupGfx" |
ExportAssets (56) | Timeline Frame 1966 | Symbol 62 as "NextLevelPickupGfx" |
ExportAssets (56) | Timeline Frame 1966 | Symbol 59 as "NoGravityPickupGfx" |
ExportAssets (56) | Timeline Frame 1966 | Symbol 91 as "RaspberryPickupGfx" |
ExportAssets (56) | Timeline Frame 1966 | Symbol 119 as "ReverseGravityPickupGfx" |
ExportAssets (56) | Timeline Frame 1966 | Symbol 87 as "SingleLaserPickupGfx" |
ExportAssets (56) | Timeline Frame 1966 | Symbol 130 as "SpeedDownPickupGfx" |
ExportAssets (56) | Timeline Frame 1966 | Symbol 133 as "SpeedPickupGfx" |
ExportAssets (56) | Timeline Frame 1967 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1967 | Symbol 260 as "BR_c_barrier_skin0" |
ExportAssets (56) | Timeline Frame 1967 | Symbol 97 as "BananaBunchPickupGfx" |
ExportAssets (56) | Timeline Frame 1967 | Symbol 95 as "BananaPickupGfx" |
ExportAssets (56) | Timeline Frame 1967 | Symbol 127 as "BigBatPickupGfx" |
ExportAssets (56) | Timeline Frame 1967 | Symbol 50 as "BombPickupGfx" |
ExportAssets (56) | Timeline Frame 1967 | Symbol 112 as "CherryPickupGfx" |
ExportAssets (56) | Timeline Frame 1967 | Symbol 109 as "DiamondPickupGfx" |
ExportAssets (56) | Timeline Frame 1967 | Symbol 115 as "DoubleBatPickupGfx" |
ExportAssets (56) | Timeline Frame 1967 | Symbol 265 as "DrainCoverPickup" |
ExportAssets (56) | Timeline Frame 1967 | Symbol 102 as "EatenMelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1967 | Symbol 70 as "FireballPickupGfx" |
ExportAssets (56) | Timeline Frame 1967 | Symbol 75 as "LittleBatPickupGfx" |
ExportAssets (56) | Timeline Frame 1967 | Symbol 105 as "MelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1967 | Symbol 65 as "MultiBallPickupGfx" |
ExportAssets (56) | Timeline Frame 1967 | Symbol 80 as "MultiLaserPickupGfx" |
ExportAssets (56) | Timeline Frame 1967 | Symbol 62 as "NextLevelPickupGfx" |
ExportAssets (56) | Timeline Frame 1967 | Symbol 59 as "NoGravityPickupGfx" |
ExportAssets (56) | Timeline Frame 1967 | Symbol 91 as "RaspberryPickupGfx" |
ExportAssets (56) | Timeline Frame 1967 | Symbol 119 as "ReverseGravityPickupGfx" |
ExportAssets (56) | Timeline Frame 1967 | Symbol 87 as "SingleLaserPickupGfx" |
ExportAssets (56) | Timeline Frame 1967 | Symbol 130 as "SpeedDownPickupGfx" |
ExportAssets (56) | Timeline Frame 1967 | Symbol 133 as "SpeedPickupGfx" |
ExportAssets (56) | Timeline Frame 1968 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1968 | Symbol 260 as "BR_c_barrier_skin0" |
ExportAssets (56) | Timeline Frame 1968 | Symbol 97 as "BananaBunchPickupGfx" |
ExportAssets (56) | Timeline Frame 1968 | Symbol 95 as "BananaPickupGfx" |
ExportAssets (56) | Timeline Frame 1968 | Symbol 127 as "BigBatPickupGfx" |
ExportAssets (56) | Timeline Frame 1968 | Symbol 50 as "BombPickupGfx" |
ExportAssets (56) | Timeline Frame 1968 | Symbol 112 as "CherryPickupGfx" |
ExportAssets (56) | Timeline Frame 1968 | Symbol 109 as "DiamondPickupGfx" |
ExportAssets (56) | Timeline Frame 1968 | Symbol 115 as "DoubleBatPickupGfx" |
ExportAssets (56) | Timeline Frame 1968 | Symbol 265 as "DrainCoverPickup" |
ExportAssets (56) | Timeline Frame 1968 | Symbol 102 as "EatenMelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1968 | Symbol 70 as "FireballPickupGfx" |
ExportAssets (56) | Timeline Frame 1968 | Symbol 75 as "LittleBatPickupGfx" |
ExportAssets (56) | Timeline Frame 1968 | Symbol 105 as "MelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1968 | Symbol 65 as "MultiBallPickupGfx" |
ExportAssets (56) | Timeline Frame 1968 | Symbol 80 as "MultiLaserPickupGfx" |
ExportAssets (56) | Timeline Frame 1968 | Symbol 62 as "NextLevelPickupGfx" |
ExportAssets (56) | Timeline Frame 1968 | Symbol 59 as "NoGravityPickupGfx" |
ExportAssets (56) | Timeline Frame 1968 | Symbol 91 as "RaspberryPickupGfx" |
ExportAssets (56) | Timeline Frame 1968 | Symbol 119 as "ReverseGravityPickupGfx" |
ExportAssets (56) | Timeline Frame 1968 | Symbol 87 as "SingleLaserPickupGfx" |
ExportAssets (56) | Timeline Frame 1968 | Symbol 130 as "SpeedDownPickupGfx" |
ExportAssets (56) | Timeline Frame 1968 | Symbol 133 as "SpeedPickupGfx" |
ExportAssets (56) | Timeline Frame 1969 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1969 | Symbol 260 as "BR_c_barrier_skin0" |
ExportAssets (56) | Timeline Frame 1969 | Symbol 97 as "BananaBunchPickupGfx" |
ExportAssets (56) | Timeline Frame 1969 | Symbol 95 as "BananaPickupGfx" |
ExportAssets (56) | Timeline Frame 1969 | Symbol 127 as "BigBatPickupGfx" |
ExportAssets (56) | Timeline Frame 1969 | Symbol 50 as "BombPickupGfx" |
ExportAssets (56) | Timeline Frame 1969 | Symbol 112 as "CherryPickupGfx" |
ExportAssets (56) | Timeline Frame 1969 | Symbol 109 as "DiamondPickupGfx" |
ExportAssets (56) | Timeline Frame 1969 | Symbol 115 as "DoubleBatPickupGfx" |
ExportAssets (56) | Timeline Frame 1969 | Symbol 265 as "DrainCoverPickup" |
ExportAssets (56) | Timeline Frame 1969 | Symbol 102 as "EatenMelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1969 | Symbol 70 as "FireballPickupGfx" |
ExportAssets (56) | Timeline Frame 1969 | Symbol 75 as "LittleBatPickupGfx" |
ExportAssets (56) | Timeline Frame 1969 | Symbol 105 as "MelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1969 | Symbol 65 as "MultiBallPickupGfx" |
ExportAssets (56) | Timeline Frame 1969 | Symbol 80 as "MultiLaserPickupGfx" |
ExportAssets (56) | Timeline Frame 1969 | Symbol 62 as "NextLevelPickupGfx" |
ExportAssets (56) | Timeline Frame 1969 | Symbol 59 as "NoGravityPickupGfx" |
ExportAssets (56) | Timeline Frame 1969 | Symbol 91 as "RaspberryPickupGfx" |
ExportAssets (56) | Timeline Frame 1969 | Symbol 119 as "ReverseGravityPickupGfx" |
ExportAssets (56) | Timeline Frame 1969 | Symbol 87 as "SingleLaserPickupGfx" |
ExportAssets (56) | Timeline Frame 1969 | Symbol 130 as "SpeedDownPickupGfx" |
ExportAssets (56) | Timeline Frame 1969 | Symbol 133 as "SpeedPickupGfx" |
ExportAssets (56) | Timeline Frame 1970 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1970 | Symbol 260 as "BR_c_barrier_skin0" |
ExportAssets (56) | Timeline Frame 1970 | Symbol 97 as "BananaBunchPickupGfx" |
ExportAssets (56) | Timeline Frame 1970 | Symbol 95 as "BananaPickupGfx" |
ExportAssets (56) | Timeline Frame 1970 | Symbol 127 as "BigBatPickupGfx" |
ExportAssets (56) | Timeline Frame 1970 | Symbol 50 as "BombPickupGfx" |
ExportAssets (56) | Timeline Frame 1970 | Symbol 112 as "CherryPickupGfx" |
ExportAssets (56) | Timeline Frame 1970 | Symbol 109 as "DiamondPickupGfx" |
ExportAssets (56) | Timeline Frame 1970 | Symbol 115 as "DoubleBatPickupGfx" |
ExportAssets (56) | Timeline Frame 1970 | Symbol 265 as "DrainCoverPickup" |
ExportAssets (56) | Timeline Frame 1970 | Symbol 102 as "EatenMelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1970 | Symbol 70 as "FireballPickupGfx" |
ExportAssets (56) | Timeline Frame 1970 | Symbol 75 as "LittleBatPickupGfx" |
ExportAssets (56) | Timeline Frame 1970 | Symbol 105 as "MelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1970 | Symbol 65 as "MultiBallPickupGfx" |
ExportAssets (56) | Timeline Frame 1970 | Symbol 80 as "MultiLaserPickupGfx" |
ExportAssets (56) | Timeline Frame 1970 | Symbol 62 as "NextLevelPickupGfx" |
ExportAssets (56) | Timeline Frame 1970 | Symbol 59 as "NoGravityPickupGfx" |
ExportAssets (56) | Timeline Frame 1970 | Symbol 91 as "RaspberryPickupGfx" |
ExportAssets (56) | Timeline Frame 1970 | Symbol 119 as "ReverseGravityPickupGfx" |
ExportAssets (56) | Timeline Frame 1970 | Symbol 87 as "SingleLaserPickupGfx" |
ExportAssets (56) | Timeline Frame 1970 | Symbol 130 as "SpeedDownPickupGfx" |
ExportAssets (56) | Timeline Frame 1970 | Symbol 133 as "SpeedPickupGfx" |
ExportAssets (56) | Timeline Frame 1971 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1971 | Symbol 260 as "BR_c_barrier_skin0" |
ExportAssets (56) | Timeline Frame 1971 | Symbol 97 as "BananaBunchPickupGfx" |
ExportAssets (56) | Timeline Frame 1971 | Symbol 95 as "BananaPickupGfx" |
ExportAssets (56) | Timeline Frame 1971 | Symbol 127 as "BigBatPickupGfx" |
ExportAssets (56) | Timeline Frame 1971 | Symbol 50 as "BombPickupGfx" |
ExportAssets (56) | Timeline Frame 1971 | Symbol 112 as "CherryPickupGfx" |
ExportAssets (56) | Timeline Frame 1971 | Symbol 109 as "DiamondPickupGfx" |
ExportAssets (56) | Timeline Frame 1971 | Symbol 115 as "DoubleBatPickupGfx" |
ExportAssets (56) | Timeline Frame 1971 | Symbol 265 as "DrainCoverPickup" |
ExportAssets (56) | Timeline Frame 1971 | Symbol 102 as "EatenMelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1971 | Symbol 70 as "FireballPickupGfx" |
ExportAssets (56) | Timeline Frame 1971 | Symbol 75 as "LittleBatPickupGfx" |
ExportAssets (56) | Timeline Frame 1971 | Symbol 105 as "MelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1971 | Symbol 65 as "MultiBallPickupGfx" |
ExportAssets (56) | Timeline Frame 1971 | Symbol 80 as "MultiLaserPickupGfx" |
ExportAssets (56) | Timeline Frame 1971 | Symbol 62 as "NextLevelPickupGfx" |
ExportAssets (56) | Timeline Frame 1971 | Symbol 59 as "NoGravityPickupGfx" |
ExportAssets (56) | Timeline Frame 1971 | Symbol 91 as "RaspberryPickupGfx" |
ExportAssets (56) | Timeline Frame 1971 | Symbol 119 as "ReverseGravityPickupGfx" |
ExportAssets (56) | Timeline Frame 1971 | Symbol 87 as "SingleLaserPickupGfx" |
ExportAssets (56) | Timeline Frame 1971 | Symbol 130 as "SpeedDownPickupGfx" |
ExportAssets (56) | Timeline Frame 1971 | Symbol 133 as "SpeedPickupGfx" |
ExportAssets (56) | Timeline Frame 1972 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1972 | Symbol 260 as "BR_c_barrier_skin0" |
ExportAssets (56) | Timeline Frame 1972 | Symbol 97 as "BananaBunchPickupGfx" |
ExportAssets (56) | Timeline Frame 1972 | Symbol 95 as "BananaPickupGfx" |
ExportAssets (56) | Timeline Frame 1972 | Symbol 127 as "BigBatPickupGfx" |
ExportAssets (56) | Timeline Frame 1972 | Symbol 50 as "BombPickupGfx" |
ExportAssets (56) | Timeline Frame 1972 | Symbol 112 as "CherryPickupGfx" |
ExportAssets (56) | Timeline Frame 1972 | Symbol 109 as "DiamondPickupGfx" |
ExportAssets (56) | Timeline Frame 1972 | Symbol 115 as "DoubleBatPickupGfx" |
ExportAssets (56) | Timeline Frame 1972 | Symbol 265 as "DrainCoverPickup" |
ExportAssets (56) | Timeline Frame 1972 | Symbol 102 as "EatenMelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1972 | Symbol 70 as "FireballPickupGfx" |
ExportAssets (56) | Timeline Frame 1972 | Symbol 75 as "LittleBatPickupGfx" |
ExportAssets (56) | Timeline Frame 1972 | Symbol 105 as "MelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1972 | Symbol 65 as "MultiBallPickupGfx" |
ExportAssets (56) | Timeline Frame 1972 | Symbol 80 as "MultiLaserPickupGfx" |
ExportAssets (56) | Timeline Frame 1972 | Symbol 62 as "NextLevelPickupGfx" |
ExportAssets (56) | Timeline Frame 1972 | Symbol 59 as "NoGravityPickupGfx" |
ExportAssets (56) | Timeline Frame 1972 | Symbol 91 as "RaspberryPickupGfx" |
ExportAssets (56) | Timeline Frame 1972 | Symbol 119 as "ReverseGravityPickupGfx" |
ExportAssets (56) | Timeline Frame 1972 | Symbol 87 as "SingleLaserPickupGfx" |
ExportAssets (56) | Timeline Frame 1972 | Symbol 130 as "SpeedDownPickupGfx" |
ExportAssets (56) | Timeline Frame 1972 | Symbol 133 as "SpeedPickupGfx" |
ExportAssets (56) | Timeline Frame 1973 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1973 | Symbol 260 as "BR_c_barrier_skin0" |
ExportAssets (56) | Timeline Frame 1973 | Symbol 97 as "BananaBunchPickupGfx" |
ExportAssets (56) | Timeline Frame 1973 | Symbol 95 as "BananaPickupGfx" |
ExportAssets (56) | Timeline Frame 1973 | Symbol 127 as "BigBatPickupGfx" |
ExportAssets (56) | Timeline Frame 1973 | Symbol 50 as "BombPickupGfx" |
ExportAssets (56) | Timeline Frame 1973 | Symbol 112 as "CherryPickupGfx" |
ExportAssets (56) | Timeline Frame 1973 | Symbol 109 as "DiamondPickupGfx" |
ExportAssets (56) | Timeline Frame 1973 | Symbol 115 as "DoubleBatPickupGfx" |
ExportAssets (56) | Timeline Frame 1973 | Symbol 265 as "DrainCoverPickup" |
ExportAssets (56) | Timeline Frame 1973 | Symbol 102 as "EatenMelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1973 | Symbol 70 as "FireballPickupGfx" |
ExportAssets (56) | Timeline Frame 1973 | Symbol 75 as "LittleBatPickupGfx" |
ExportAssets (56) | Timeline Frame 1973 | Symbol 105 as "MelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1973 | Symbol 65 as "MultiBallPickupGfx" |
ExportAssets (56) | Timeline Frame 1973 | Symbol 80 as "MultiLaserPickupGfx" |
ExportAssets (56) | Timeline Frame 1973 | Symbol 62 as "NextLevelPickupGfx" |
ExportAssets (56) | Timeline Frame 1973 | Symbol 59 as "NoGravityPickupGfx" |
ExportAssets (56) | Timeline Frame 1973 | Symbol 91 as "RaspberryPickupGfx" |
ExportAssets (56) | Timeline Frame 1973 | Symbol 119 as "ReverseGravityPickupGfx" |
ExportAssets (56) | Timeline Frame 1973 | Symbol 87 as "SingleLaserPickupGfx" |
ExportAssets (56) | Timeline Frame 1973 | Symbol 130 as "SpeedDownPickupGfx" |
ExportAssets (56) | Timeline Frame 1973 | Symbol 133 as "SpeedPickupGfx" |
ExportAssets (56) | Timeline Frame 1974 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1974 | Symbol 260 as "BR_c_barrier_skin0" |
ExportAssets (56) | Timeline Frame 1974 | Symbol 97 as "BananaBunchPickupGfx" |
ExportAssets (56) | Timeline Frame 1974 | Symbol 95 as "BananaPickupGfx" |
ExportAssets (56) | Timeline Frame 1974 | Symbol 127 as "BigBatPickupGfx" |
ExportAssets (56) | Timeline Frame 1974 | Symbol 50 as "BombPickupGfx" |
ExportAssets (56) | Timeline Frame 1974 | Symbol 112 as "CherryPickupGfx" |
ExportAssets (56) | Timeline Frame 1974 | Symbol 109 as "DiamondPickupGfx" |
ExportAssets (56) | Timeline Frame 1974 | Symbol 115 as "DoubleBatPickupGfx" |
ExportAssets (56) | Timeline Frame 1974 | Symbol 265 as "DrainCoverPickup" |
ExportAssets (56) | Timeline Frame 1974 | Symbol 102 as "EatenMelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1974 | Symbol 70 as "FireballPickupGfx" |
ExportAssets (56) | Timeline Frame 1974 | Symbol 75 as "LittleBatPickupGfx" |
ExportAssets (56) | Timeline Frame 1974 | Symbol 105 as "MelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1974 | Symbol 65 as "MultiBallPickupGfx" |
ExportAssets (56) | Timeline Frame 1974 | Symbol 80 as "MultiLaserPickupGfx" |
ExportAssets (56) | Timeline Frame 1974 | Symbol 62 as "NextLevelPickupGfx" |
ExportAssets (56) | Timeline Frame 1974 | Symbol 59 as "NoGravityPickupGfx" |
ExportAssets (56) | Timeline Frame 1974 | Symbol 91 as "RaspberryPickupGfx" |
ExportAssets (56) | Timeline Frame 1974 | Symbol 119 as "ReverseGravityPickupGfx" |
ExportAssets (56) | Timeline Frame 1974 | Symbol 87 as "SingleLaserPickupGfx" |
ExportAssets (56) | Timeline Frame 1974 | Symbol 130 as "SpeedDownPickupGfx" |
ExportAssets (56) | Timeline Frame 1974 | Symbol 133 as "SpeedPickupGfx" |
ExportAssets (56) | Timeline Frame 1975 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1975 | Symbol 260 as "BR_c_barrier_skin0" |
ExportAssets (56) | Timeline Frame 1975 | Symbol 97 as "BananaBunchPickupGfx" |
ExportAssets (56) | Timeline Frame 1975 | Symbol 95 as "BananaPickupGfx" |
ExportAssets (56) | Timeline Frame 1975 | Symbol 127 as "BigBatPickupGfx" |
ExportAssets (56) | Timeline Frame 1975 | Symbol 50 as "BombPickupGfx" |
ExportAssets (56) | Timeline Frame 1975 | Symbol 112 as "CherryPickupGfx" |
ExportAssets (56) | Timeline Frame 1975 | Symbol 109 as "DiamondPickupGfx" |
ExportAssets (56) | Timeline Frame 1975 | Symbol 115 as "DoubleBatPickupGfx" |
ExportAssets (56) | Timeline Frame 1975 | Symbol 265 as "DrainCoverPickup" |
ExportAssets (56) | Timeline Frame 1975 | Symbol 102 as "EatenMelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1975 | Symbol 70 as "FireballPickupGfx" |
ExportAssets (56) | Timeline Frame 1975 | Symbol 75 as "LittleBatPickupGfx" |
ExportAssets (56) | Timeline Frame 1975 | Symbol 105 as "MelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1975 | Symbol 65 as "MultiBallPickupGfx" |
ExportAssets (56) | Timeline Frame 1975 | Symbol 80 as "MultiLaserPickupGfx" |
ExportAssets (56) | Timeline Frame 1975 | Symbol 62 as "NextLevelPickupGfx" |
ExportAssets (56) | Timeline Frame 1975 | Symbol 59 as "NoGravityPickupGfx" |
ExportAssets (56) | Timeline Frame 1975 | Symbol 91 as "RaspberryPickupGfx" |
ExportAssets (56) | Timeline Frame 1975 | Symbol 119 as "ReverseGravityPickupGfx" |
ExportAssets (56) | Timeline Frame 1975 | Symbol 87 as "SingleLaserPickupGfx" |
ExportAssets (56) | Timeline Frame 1975 | Symbol 130 as "SpeedDownPickupGfx" |
ExportAssets (56) | Timeline Frame 1975 | Symbol 133 as "SpeedPickupGfx" |
ExportAssets (56) | Timeline Frame 1976 | Symbol 292 as "OuterRing_skin0" |
ExportAssets (56) | Timeline Frame 1976 | Symbol 260 as "BR_c_barrier_skin0" |
ExportAssets (56) | Timeline Frame 1976 | Symbol 97 as "BananaBunchPickupGfx" |
ExportAssets (56) | Timeline Frame 1976 | Symbol 95 as "BananaPickupGfx" |
ExportAssets (56) | Timeline Frame 1976 | Symbol 127 as "BigBatPickupGfx" |
ExportAssets (56) | Timeline Frame 1976 | Symbol 50 as "BombPickupGfx" |
ExportAssets (56) | Timeline Frame 1976 | Symbol 112 as "CherryPickupGfx" |
ExportAssets (56) | Timeline Frame 1976 | Symbol 109 as "DiamondPickupGfx" |
ExportAssets (56) | Timeline Frame 1976 | Symbol 115 as "DoubleBatPickupGfx" |
ExportAssets (56) | Timeline Frame 1976 | Symbol 265 as "DrainCoverPickup" |
ExportAssets (56) | Timeline Frame 1976 | Symbol 102 as "EatenMelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1976 | Symbol 70 as "FireballPickupGfx" |
ExportAssets (56) | Timeline Frame 1976 | Symbol 75 as "LittleBatPickupGfx" |
ExportAssets (56) | Timeline Frame 1976 | Symbol 105 as "MelonPickupGfx" |
ExportAssets (56) | Timeline Frame 1976 | Symbol 65 as "MultiBallPickupGfx" |
ExportAssets (56) | Timeline Frame 1976 | Symbol 80 as "MultiLaserPickupGfx" |
ExportAssets (56) | Timeline Frame 1976 | Symbol 62 as "NextLevelPickupGfx" |
ExportAssets (56) | Timeline Frame 1976 | Symbol 59 as "NoGravityPickupGfx" |
ExportAssets (56) | Timeline Frame 1976 | Symbol 91 as "RaspberryPickupGfx" |
ExportAssets (56) | Timeline Frame 1976 | Symbol 119 as "ReverseGravityPickupGfx" |
ExportAssets (56) | Timeline Frame 1976 | Symbol 87 as "SingleLaserPickupGfx" |
ExportAssets (56) | Timeline Frame 1976 | Symbol 130 as "SpeedDownPickupGfx" |
ExportAssets (56) | Timeline Frame 1976 | Symbol 133 as "SpeedPickupGfx" |
Labels
"Intro" | Frame 3 |
"playButShow" | Frame 29 |
"StaticMainMenu" | Frame 48 |
"PlayGame" | Frame 303 |
"Nag" | Frame 304 |
"Instructions" | Frame 305 |
"HiScore" | Frame 306 |
"Credits" | Frame 307 |
"playGame" | Frame 1000 |
"StaticHiscore" | Frame 1001 |
"gotoInstructions" | Frame 1002 |
"startInstruct" | Frame 1003 |
"playGame" | Frame 1223 |
"StaticInstructions" | Frame 1224 |
"gotoHiscore" | Frame 1225 |
"pickups" | Frame 1242 |
"Start" | Frame 1290 |
"BuildArena" | Frame 1291 |
"InitGame" | Frame 1293 |
"GameOver" | Frame 1300 |
"Finish" | Frame 1371 |
"NextLevel" | Frame 1372 |
"gotoNextLevel" | Frame 1527 |
"DemoOver" | Frame 1528 |
"NagDemoOver" | Frame 1703 |
"Quit" | Frame 1962 |
"DESIGN" | Frame 1963 |
"destroy" | Symbol 30 MovieClip [BR_normal_0_skin0] Frame 2 |
"destroy" | Symbol 35 MovieClip [BR_normal_1_skin0] Frame 2 |
"destroy" | Symbol 40 MovieClip [BR_normal_3_skin0] Frame 2 |
"destroy" | Symbol 45 MovieClip [BR_normal_2_skin0] Frame 2 |
"explode" | Symbol 172 MovieClip [block] Frame 2 |
"KILLME" | Symbol 206 MovieClip [LevelPanel] Frame 20 |
"startWobble" | Symbol 299 MovieClip [Saucer] Frame 1 |
"addBallMarker" | Symbol 479 MovieClip Frame 36 |
"ballsAdded" | Symbol 479 MovieClip Frame 45 |
Dynamic Text Variables
playerNameTxt | Symbol 219 EditableText | "0" |
localGlobalScore | Symbol 370 EditableText | "local high scores" |
name0 | Symbol 382 EditableText | "Name1" |
name9 | Symbol 383 EditableText | "Name10" |
name8 | Symbol 384 EditableText | "Name9" |
name7 | Symbol 385 EditableText | "Name8" |
name6 | Symbol 386 EditableText | "Name7" |
name5 | Symbol 387 EditableText | "Name6" |
name4 | Symbol 388 EditableText | "Name5" |
name3 | Symbol 389 EditableText | "Name4" |
name2 | Symbol 390 EditableText | "Name3" |
name1 | Symbol 391 EditableText | "Name2" |
fpsdebug | Symbol 469 EditableText | "fps" |
levelTxt | Symbol 488 EditableText | "level" |
|