STORY LOOP FURRY PORN GAMES C SERVICES [?] [R] RND POPULAR | Archived flashes: 229494 |
/disc/ · /res/ — /show/ · /fap/ · /gg/ · /swf/ | P0001 · P2575 · P5149 |
This is the info page for Flash #45492 |
Episode Loading |
Episode 6 Back at the Great Hall of Albion, the coronation is not quite going as planned... |
I order you to stop! |
Can he do that? |
Guards I've been attacked! |
I am your king and you will obey! |
Are you OK sir? |
No right now, I am a long bloody way from OK. |
Wasn't quite the welcome I expected. |
Stop in the name of the Yeo Guard. |
But I am here by invitation of... |
Little girl |
you are starting to become a nuisance. |
Old man |
I haven't even started! |
Stop! Both of you. |
I'm saving your life and you're going to take his side? |
Smart boy. |
You must take after your mother. |
I'm not taking any sides! |
Well it certainly seems like you are! |
You've never been much of a- |
Vanessa will you be quiet! |
Are you ordering me? |
Yes I'm ordering you to shut up. |
Are you ordering me as a king or a boy? |
What difference does it make? |
Maybe he's not so bright after all. |
Because if you are ordering me as a boy, you can stick it up your... |
A king, a king OK! |
Fine. But I expect I will be through with this assignment before nightfall. |
YOU? |
Here? |
Impossible! |
Ah Malkolm, I thought I could smell something rotten. |
Enough! |
Everyone quiet! |
What are you doing here? |
I was ordered here to protect you from the likes of him. |
Ha! |
Vanessa Blanchflower, allow me to introduce you to Lion, my new Master of Arms. |
The man that your father banished.The man who killed your mother? |
The same. |
Unbelievable. Who does things like that? |
Your new king. |
THE NEW KING WANTS A FUTURE |
WITHOUT BRAND TECHNOLOGY. |
A FUTURE WITHOUT POTENTIAL. |
BECOME |
DON'T |
YESTERDAY'S |
NEWS! |
DO RIGHT! |
FOR YOU TO |
IT IS TIME |
LINK UP TO THE BRITOMART KNETWORK |
AND HELP US BUILD AN EXCITING NEW WORLD. |
BRITOMART CORPORATION. FOR MIND BODY AND SOUL. |
Well what do you think? |
I think you might as well have said that the new king is a fascist. |
So you like it? |
It's perfect. |
As the threat of civil war grows ever stronger, for King Jonathan, Lion, Unicorn and the K.I.D, their destiny remains uncertain. |
Their story will continue in further adventures from the City of Thamesis. |
This is not the End. |
ActionScript [AS1/AS2]
Frame 1function ParticleEngine(baseClip, rect) { this.baseClip = baseClip; this.point = point; this.rect = rect; this.baseClip.engine = this; this.frame = 0; this.generators = []; this.baseClip.onEnterFrame = this.evtEnterFrame; } function ParticleGenerator(x, y, gravityX, gravityY, dutyCycle, particlesPerCycle, startRunning, newParticleCallback, headLinkage, tailLinkage, engine) { this.engine = engine; this.newParticleCallback = newParticleCallback; this.x = x; this.y = y; this.gravityX = gravityX; this.gravityY = gravityY; this.running = startRunning; this.dutyCycle = dutyCycle; this.particlesPerCycle = particlesPerCycle; this.particles = []; this.frame = -1; this.stopAfterFrame = 0; this.garbageDutyCycle = 10; this.linkageHead = headLinkage; this.linkageTail = tailLinkage; this.tailEffect = fadeOut; this.paint = simplePaint; this.checkLifeOver = offEdgeTest; this.vxMin = -5; this.vxMax = 5; this.vyMin = -12; this.vyMax = -8; this.dxMin = 0; this.dxMax = 0; this.dyMin = 0; this.dyMax = 0; this.scaleMin = 100; this.scaleMax = 100; this.scaleMultMin = 1; this.scaleMultMax = 1; this.growFrames = 0; this.rMin = 0; this.rMax = 360; this.vrMin = 0; this.vrMax = 0; this.depth = this.engine.generators.length; this.clip = this.engine.baseClip.createEmptyMovieClip("gen" + this.depth, this.depth); this.workClip = this.clip.createEmptyMovieClip("work", 0); this.tailClip = this.clip.createEmptyMovieClip("tail", 1); this.headClip = this.clip.createEmptyMovieClip("head", 2); this.objBmp = new flash.display.BitmapData(this.engine.rect.width, this.engine.rect.height, true, 0); this.tailClip.attachBitmap(this.objBmp, 0, "never", false); this.workClip._visible = false; this.workClip.attachMovie(this.linkageTail, "tail", 0); this.colourMatrix = new Array(); this.colourMatrix = this.colourMatrix.concat([0.91, 0, 0, 0, 0]); this.colourMatrix = this.colourMatrix.concat([0, 0.85, 0, 0, 0]); this.colourMatrix = this.colourMatrix.concat([0, 0, 0.8, 0, 0]); this.colourMatrix = this.colourMatrix.concat([0, 0, 0, 0.9, 0]); this.filter = new flash.filters.ColorMatrixFilter(this.colourMatrix); this.engine.generators.push(this); } function makeSimpleGravityParticle(objGenerator, objEngine) { var _local2 = {}; _local2.frame = 0; _local2.engine = objEngine; _local2.generator = objGenerator; _local2.x = _local2.generator.x + Maths.randomNum(_local2.generator.dxMin, _local2.generator.dxMax); _local2.y = _local2.generator.y + Maths.randomNum(_local2.generator.dyMin, _local2.generator.dyMax); _local2.vx = Maths.randomNum(_local2.generator.vxMin, _local2.generator.vxMax); _local2.vy = Maths.randomNum(_local2.generator.vyMin, _local2.generator.vyMax); _local2.scale = Maths.randomNum(_local2.generator.scaleMin, _local2.generator.scaleMax); _local2.origScale = _local2.scale; _local2.rDeg = Maths.randomNum(_local2.generator.rMin, _local2.generator.rMax); _local2.vrDeg = Maths.randomNum(_local2.generator.vrMin, _local2.generator.vrMax); _local2.scaleMult = Maths.randomNum(_local2.generator.scaleMultMin, _local2.generator.scaleMultMax); _local2.deathFrame = 10000000 /* 0x989680 */; _local2.growFrames = _local2.generator.growFrames; var _local3 = _local2.generator.headClip.getNextHighestDepth(); _local2.generator.headClip.attachMovie(_local2.generator.linkageHead, "head" + _local3, _local3); _local2.headClip = _local2.generator.headClip["head" + _local3]; _local2.evtEnterFrame = function () { this.frame++; this.lifePct = this.frame / this.deathFrame; this.vx = this.vx + this.generator.gravityX; this.vy = this.vy + this.generator.gravityY; this.rDeg = this.rDeg + this.vrDeg; if ((this.growFrames > 0) && (this.frame <= this.growFrames)) { this.scale = (this.origScale * this.frame) / this.growFrames; } else { this.scale = this.scale * this.scaleMult; } this.x = this.x + this.vx; this.y = this.y + this.vy; this.rHeadingRad = Math.atan2(this.vy, this.vx); this.rHeadingDeg = Maths.radToDeg(this.rHeadingRad); this.paint(); }; _local2.paint = _local2.generator.paint; _local2.checkLifeOver = _local2.generator.checkLifeOver; _local2.evtEnterFrame(); return(_local2); } function makeLifespanGravityParticle(objGenerator, objEngine) { var _local1 = makeSimpleGravityParticle(objGenerator, objEngine); _local1.deathFrame = _local1.generator.particleLifespan; _local1.evtEnterFrame(); return(_local1); } function simplePaint() { this.headClip._x = this.x; this.headClip._y = this.y; this.headClip._xscale = (this.headClip._yscale = this.scale); this.headClip._rotation = this.rDeg; this.generator.workClip.tail._x = this.x; this.generator.workClip.tail._y = this.y; this.generator.workClip.tail._xscale = (this.generator.workClip.tail._yscale = this.scale); this.generator.workClip.tail._rotation = this.rDeg; this.generator.objBmp.draw(this.generator.workClip); } function tailRotationPaint() { this.headClip._x = this.x; this.headClip._y = this.y; this.headClip._xscale = (this.headClip._yscale = this.scale); this.generator.workClip.tail._x = this.x; this.generator.workClip.tail._y = this.y; this.generator.workClip.tail._rotation = this.rHeadingDeg; this.generator.workClip.tail._xscale = (this.generator.workClip.tail._yscale = this.scale); this.generator.objBmp.draw(this.generator.workClip); } function simpleFadePaint() { this.headClip._x = this.x; this.headClip._y = this.y; this.headClip._alpha = 100 - (this.lifePct * 100); this.headClip._xscale = (this.headClip._yscale = this.scale); this.headClip._rotation = this.rDeg; this.generator.workClip.tail._x = this.x; this.generator.workClip.tail._y = this.y; this.generator.workClip.tail._xscale = (this.generator.workClip.tail._yscale = this.scale); this.generator.workClip.tail._alpha = 100 - (this.lifePct * 100); this.generator.workClip.tail._rotation = this.rDeg; this.generator.objBmp.draw(this.generator.workClip); } function tailRotationFadePaint() { this.headClip._x = this.x; this.headClip._y = this.y; this.headClip._alpha = 100 - (this.lifePct * 100); this.headClip._xscale = (this.headClip._yscale = this.scale); this.generator.workClip.tail._x = this.x; this.generator.workClip.tail._y = this.y; this.generator.workClip.tail._rotation = this.rHeadingDeg; this.generator.workClip.tail._alpha = 100 - (this.lifePct * 100); this.generator.workClip.tail._xscale = (this.generator.workClip.tail._yscale = this.scale); this.generator.objBmp.draw(this.generator.workClip); } function headRotationPaint() { this.headClip._x = this.x; this.headClip._y = this.y; this.headClip._rotation = this.rHeadingDeg; this.headClip._xscale = (this.headClip._yscale = this.scale); this.generator.workClip.tail._x = this.x; this.generator.workClip.tail._y = this.y; this.generator.workClip.tail._xscale = (this.generator.workClip.tail._yscale = this.scale); this.generator.objBmp.draw(this.generator.workClip); } function tailLinePaint() { this.headClip._x = this.x; this.headClip._y = this.y; this.headClip._xscale = (this.headClip._yscale = this.scale); this.headClip._rotation = this.rDeg; this.generator.workClip.clear(); this.generator.workClip.lineStyle(this.generator.lineThickness, this.generator.lineColour, this.generator.lineAlpha); this.generator.workClip.moveTo(this.x, this.y); this.generator.workClip.lineTo(this.x - this.vx, this.y - this.vy); this.generator.objBmp.draw(this.generator.workClip); } function tailLineFadePaint() { this.headClip._x = this.x; this.headClip._y = this.y; this.headClip._xscale = (this.headClip._yscale = this.scale); this.headClip._rotation = this.rDeg; this.headClip._alpha = 100 - (this.lifePct * 100); this.generator.workClip.clear(); this.generator.workClip.lineStyle((1 - this.lifePct) * this.generator.lineThickness, this.generator.lineColour, 100 - (this.lifePct * this.generator.lineAlpha)); this.generator.workClip.moveTo(this.x, this.y); this.generator.workClip.lineTo(this.x - this.vx, this.y - this.vy); this.generator.objBmp.draw(this.generator.workClip); } function offEdgeTest() { if ((((this.x < this.engine.rect.left) || (this.x > this.engine.rect.right)) || (this.y < this.engine.rect.top)) || (this.y > this.engine.rect.bottom)) { return(true); } return(false); } function offBottomTest() { if (this.y > this.engine.rect.bottom) { return(true); } return(false); } function lifespanTest() { if (this.frame > this.deathFrame) { return(true); } return(false); } function fadeOut() { this.objBmp.applyFilter(this.objBmp, this.engine.rect, this.engine.rect.topLeft, this.filter); } function explosionFade() { this.objBmp.applyFilter(this.objBmp, this.engine.rect, this.engine.rect.topLeft, this.glowFilter); this.objBmp.applyFilter(this.objBmp, this.engine.rect, this.engine.rect.topLeft, this.filter); } var Maths = new Object(); Maths.randomNum = function (minNum, maxNum) { return((Math.random() * (maxNum - minNum)) + minNum); }; Maths.randomInt = function (minNum, maxNum) { return(Math.round((Math.random() * (maxNum - minNum)) + minNum)); }; Maths.vectorLength = function (dx, dy) { return(Math.sqrt((dx * dx) + (dy * dy))); }; Maths.distance = function (x1, y1, x2, y2) { var _local2 = x1 - x2; var _local1 = y1 - y2; return(Maths.vectorLength(_local2, _local1)); }; Maths.vectorLengthSquared = function (dx, dy) { return((dx * dx) + (dy * dy)); }; Maths.distanceSquared = function (x1, y1, x2, y2) { var _local2 = x1 - x2; var _local1 = y1 - y2; return(Maths.vectorLengthSquared(_local2, _local1)); }; Maths.angleBetween = function (x1, y1, x2, y2) { var _local2 = (x1 * x2) + (y1 * y2); var _local1 = Maths.vectorLength(x1, y1) * Maths.vectorLength(x2, y2); return(Math.acos(_local2 / _local1)); }; Maths.dotProduct = function (ax, ay, bx, by) { return((ax * bx) + (ay * by)); }; Maths.formatNum = function (num, leadingDigits, decimalDigits) { var _local2 = "" + Math.floor(num); while (_local2.length < leadingDigits) { _local2 = "0" + _local2; } if (decimalDigits != undefined) { var _local1 = Math.abs(num) - Math.floor(Math.abs(num)); _local1 = _local1 * (10 ^ decimalDigits); _local1 = Math.floor(_local1); _local1 = "" + _local1; while (_local1.length < decimalDigits) { _local1 = _local1 + "0"; } _local2 = (_local2 + ".") + _local1; } return(_local2); }; Maths.degToRad = function (degs) { return(degs * (Math.PI/180)); }; Maths.radToDeg = function (rads) { return(rads * 57.2957795130823); }; ParticleEngine.prototype.evtEnterFrame = function () { var _local3 = this.engine; _local3.frame++; var _local2 = 0; while (_local2 < _local3.generators.length) { _local3.generators[_local2].evtEnterFrame(); _local2++; } }; ParticleGenerator.prototype.evtEnterFrame = function () { if ((this.prevRunning == false) && (this.running == true)) { this.frame = -1; } this.frame++; if ((this.stopAfterFrame > 0) && (this.frame > this.stopAfterFrame)) { this.running = false; } if ((this.engine.frame % this.garbageDutyCycle) == 0) { var _local2 = 0; while (_local2 < this.particles.length) { if (this.particles[_local2].checkLifeOver()) { this.particles[_local2].headClip.removeMovieClip(); this.particles[_local2] = undefined; } _local2++; } this.garbageCollect(); } this.updateParticles(); if (this.running && ((this.frame % this.dutyCycle) == 0)) { this.generateParticles(); } this.tailEffect(); this.prevRunning = this.running; }; ParticleGenerator.prototype.updateParticles = function () { var _local2 = 0; while (_local2 < this.particles.length) { this.particles[_local2].evtEnterFrame(); _local2++; } }; ParticleGenerator.prototype.generateParticles = function () { var _local2 = 0; while (_local2 < this.particlesPerCycle) { var _local3 = this.newParticleCallback(this, this.engine); this.particles.push(_local3); _local2++; } }; ParticleGenerator.prototype.garbageCollect = function () { var _local2 = 0; while (_local2 < this.particles.length) { if (this.particles[_local2] == undefined) { this.particles.splice(_local2, 1); _local2--; } _local2++; } }; var objPE = (new _root.ParticleEngine(_root.loaderAnim.effectsClip, new flash.geom.Rectangle(0, 0, 680, 250))); var objMist = new ParticleGenerator(60, 125, 0, 0, 6, 1, true, makeLifespanGravityParticle, undefined, "particleSmokeTail", objPE); objMist.vxMin = 1; objMist.vxMax = 4; objMist.vyMin = 0; objMist.vyMax = 0; objMist.dxMin = 0; objMist.dxMax = 0; objMist.dyMin = -50; objMist.dyMax = 50; objMist.scaleMin = 40; objMist.scaleMax = 100; objMist.vrMin = 3; objMist.vrMax = 5; objMist.scaleMultMin = 1; objMist.scaleMultMax = 1; objMist.growFrames = 15; objMist.colourMatrix = new Array(); objMist.colourMatrix = objMist.colourMatrix.concat([0.95, 0, 0, 0, 0]); objMist.colourMatrix = objMist.colourMatrix.concat([0, 0.95, 0, 0, 0]); objMist.colourMatrix = objMist.colourMatrix.concat([0, 0, 0.95, 0, 0]); objMist.colourMatrix = objMist.colourMatrix.concat([0, 0, 0, 0.97, 0]); objMist.filter = new flash.filters.ColorMatrixFilter(objMist.colourMatrix); objMist.paint = simpleFadePaint; objMist.tailEffect = explosionFade; objMist.glowFilter = new flash.filters.GlowFilter(16711680, 100, 16, 16, 1, 1, false, true); stop(); _level0.hyperlaunchSWF_ID = "CityOfThamesisVideo"; if (_global.System) { System.security.allowDomain("www.hyperlaunch.com"); } loadMovieNum ("http://www.hyperlaunch.com/tracking/tracker.swf?r=" + (Math.floor(Math.random() * 10000) + 10000), 19467);Frame 2_level0.trackPoint("episode_6_start"); var arrChapters = new Array(1332, 2559, 3964);Frame 6765_level0.trackPoint("episode_5_end"); stop();Symbol 3 MovieClip Frame 1_root.stop(); PercentLoaded = (_root.getBytesLoaded() / _root.getBytesTotal()) * 100; if ((PercentLoaded == 100) && (_root.loaderAnimComplete == true)) { _root.loaderAnim.gotoAndPlay("out"); gotoAndPlay ("loaded"); } else { _root.loaderAnim.bar._xscale = PercentLoaded; }Symbol 3 MovieClip Frame 2gotoAndPlay (1);Symbol 3 MovieClip Frame 15stop();Symbol 16 MovieClip Frame 1_root.loaderAnimComplete = false;Symbol 16 MovieClip Frame 156stop(); _root.loaderAnimComplete = true;Symbol 16 MovieClip Frame 207_root.objMist = undefined; _root.objPE = undefined; _root.gotoAndPlay(2);Symbol 147 MovieClip Frame 39stop();Symbol 265 MovieClip Frame 52stop();Symbol 426 MovieClip Frame 26stop();Symbol 449 Buttonon (release) { getURL ("http://www.cityofthamesis.com", "_blank"); }
Library Items
Symbol 1 Graphic | Used by:2 | |
Symbol 2 MovieClip [particleSmokeTail] | Uses:1 | |
Symbol 3 MovieClip | Used by:Timeline | |
Symbol 4 Font | Used by:5 32 40 48 62 84 92 98 103 108 129 134 148 177 182 187 189 200 202 204 209 214 228 230 235 240 251 259 279 289 291 302 316 318 323 328 333 344 349 354 356 367 432 434 436 438 | |
Symbol 5 Text | Uses:4 | Used by:6 |
Symbol 6 MovieClip | Uses:5 | Used by:7 |
Symbol 7 MovieClip | Uses:6 | Used by:16 |
Symbol 8 Graphic | Used by:9 | |
Symbol 9 MovieClip | Uses:8 | Used by:16 |
Symbol 10 Graphic | Used by:16 | |
Symbol 11 Graphic | Used by:12 17 | |
Symbol 12 MovieClip | Uses:11 | Used by:16 |
Symbol 13 MovieClip | Used by:16 | |
Symbol 14 Graphic | Used by:15 28 | |
Symbol 15 MovieClip | Uses:14 | Used by:16 |
Symbol 16 MovieClip | Uses:7 9 10 12 13 15 | Used by:Timeline |
Symbol 17 MovieClip | Uses:11 | Used by:Timeline |
Symbol 18 Font | Used by:19 32 48 62 92 103 134 148 177 182 189 204 209 228 230 251 259 287 302 318 328 333 344 434 438 440 442 444 | |
Symbol 19 Text | Uses:18 | Used by:20 |
Symbol 20 MovieClip | Uses:19 | Used by:Timeline |
Symbol 21 Graphic | Used by:Timeline | |
Symbol 22 Bitmap | Used by:23 | |
Symbol 23 Graphic | Uses:22 | Used by:24 |
Symbol 24 MovieClip | Uses:23 | Used by:Timeline |
Symbol 25 Bitmap | Used by:26 | |
Symbol 26 Graphic | Uses:25 | Used by:27 |
Symbol 27 MovieClip | Uses:26 | Used by:Timeline |
Symbol 28 MovieClip | Uses:14 | Used by:Timeline |
Symbol 29 Bitmap | Used by:30 | |
Symbol 30 Graphic | Uses:29 | Used by:31 |
Symbol 31 MovieClip | Uses:30 | Used by:Timeline |
Symbol 32 Text | Uses:4 18 | Used by:33 |
Symbol 33 MovieClip | Uses:32 | Used by:Timeline |
Symbol 34 Bitmap | Used by:35 | |
Symbol 35 Graphic | Uses:34 | Used by:36 |
Symbol 36 MovieClip | Uses:35 | Used by:Timeline |
Symbol 37 Bitmap | Used by:38 | |
Symbol 38 Graphic | Uses:37 | Used by:39 |
Symbol 39 MovieClip | Uses:38 | Used by:Timeline |
Symbol 40 Text | Uses:4 | Used by:41 |
Symbol 41 MovieClip | Uses:40 | Used by:Timeline |
Symbol 42 Bitmap | Used by:43 | |
Symbol 43 Graphic | Uses:42 | Used by:44 |
Symbol 44 MovieClip | Uses:43 | Used by:Timeline |
Symbol 45 Bitmap | Used by:46 | |
Symbol 46 Graphic | Uses:45 | Used by:47 |
Symbol 47 MovieClip | Uses:46 | Used by:Timeline |
Symbol 48 Text | Uses:18 4 | Used by:49 |
Symbol 49 MovieClip | Uses:48 | Used by:Timeline |
Symbol 50 Bitmap | Used by:51 | |
Symbol 51 Graphic | Uses:50 | Used by:52 |
Symbol 52 MovieClip | Uses:51 | Used by:Timeline |
Symbol 53 Bitmap | Used by:54 | |
Symbol 54 Graphic | Uses:53 | Used by:55 |
Symbol 55 MovieClip | Uses:54 | Used by:Timeline |
Symbol 56 Bitmap | Used by:57 | |
Symbol 57 Graphic | Uses:56 | Used by:58 |
Symbol 58 MovieClip | Uses:57 | Used by:Timeline |
Symbol 59 Bitmap | Used by:60 | |
Symbol 60 Graphic | Uses:59 | Used by:61 |
Symbol 61 MovieClip | Uses:60 | Used by:Timeline |
Symbol 62 Text | Uses:4 18 | Used by:63 |
Symbol 63 MovieClip | Uses:62 | Used by:Timeline |
Symbol 64 Bitmap | Used by:65 | |
Symbol 65 Graphic | Uses:64 | Used by:66 |
Symbol 66 MovieClip | Uses:65 | Used by:Timeline |
Symbol 67 Bitmap | Used by:68 | |
Symbol 68 Graphic | Uses:67 | Used by:69 |
Symbol 69 MovieClip | Uses:68 | Used by:Timeline |
Symbol 70 Bitmap | Used by:71 | |
Symbol 71 Graphic | Uses:70 | Used by:72 |
Symbol 72 MovieClip | Uses:71 | Used by:Timeline |
Symbol 73 Bitmap | Used by:74 | |
Symbol 74 Graphic | Uses:73 | Used by:75 |
Symbol 75 MovieClip | Uses:74 | Used by:Timeline |
Symbol 76 Graphic | Used by:77 | |
Symbol 77 MovieClip | Uses:76 | Used by:Timeline |
Symbol 78 Bitmap | Used by:79 | |
Symbol 79 Graphic | Uses:78 | Used by:80 |
Symbol 80 MovieClip | Uses:79 | Used by:Timeline |
Symbol 81 Bitmap | Used by:82 | |
Symbol 82 Graphic | Uses:81 | Used by:83 |
Symbol 83 MovieClip | Uses:82 | Used by:Timeline |
Symbol 84 Text | Uses:4 | Used by:85 |
Symbol 85 MovieClip | Uses:84 | Used by:Timeline |
Symbol 86 Bitmap | Used by:87 | |
Symbol 87 Graphic | Uses:86 | Used by:88 |
Symbol 88 MovieClip | Uses:87 | Used by:Timeline |
Symbol 89 Bitmap | Used by:90 | |
Symbol 90 Graphic | Uses:89 | Used by:91 |
Symbol 91 MovieClip | Uses:90 | Used by:Timeline |
Symbol 92 Text | Uses:4 18 | Used by:93 |
Symbol 93 MovieClip | Uses:92 | Used by:Timeline |
Symbol 94 Bitmap | Used by:95 | |
Symbol 95 Graphic | Uses:94 | Used by:96 |
Symbol 96 MovieClip | Uses:95 | Used by:Timeline |
Symbol 97 Font | Used by:98 142 182 200 214 235 291 432 | |
Symbol 98 Text | Uses:4 97 | Used by:99 |
Symbol 99 MovieClip | Uses:98 | Used by:Timeline |
Symbol 100 Bitmap | Used by:101 | |
Symbol 101 Graphic | Uses:100 | Used by:102 |
Symbol 102 MovieClip | Uses:101 | Used by:Timeline |
Symbol 103 Text | Uses:4 18 | Used by:104 |
Symbol 104 MovieClip | Uses:103 | Used by:Timeline |
Symbol 105 Bitmap | Used by:106 | |
Symbol 106 Graphic | Uses:105 | Used by:107 |
Symbol 107 MovieClip | Uses:106 | Used by:Timeline |
Symbol 108 Text | Uses:4 | Used by:109 |
Symbol 109 MovieClip | Uses:108 | Used by:Timeline |
Symbol 110 ShapeTweening | Used by:Timeline | |
Symbol 111 Bitmap | Used by:112 | |
Symbol 112 Graphic | Uses:111 | Used by:113 |
Symbol 113 MovieClip | Uses:112 | Used by:Timeline |
Symbol 114 Bitmap | Used by:115 | |
Symbol 115 Graphic | Uses:114 | Used by:116 |
Symbol 116 MovieClip | Uses:115 | Used by:Timeline |
Symbol 117 Bitmap | Used by:118 | |
Symbol 118 Graphic | Uses:117 | Used by:119 |
Symbol 119 MovieClip | Uses:118 | Used by:Timeline |
Symbol 120 Bitmap | Used by:121 | |
Symbol 121 Graphic | Uses:120 | Used by:122 |
Symbol 122 MovieClip | Uses:121 | Used by:Timeline |
Symbol 123 Bitmap | Used by:124 | |
Symbol 124 Graphic | Uses:123 | Used by:125 |
Symbol 125 MovieClip | Uses:124 | Used by:Timeline |
Symbol 126 Bitmap | Used by:127 | |
Symbol 127 Graphic | Uses:126 | Used by:128 |
Symbol 128 MovieClip | Uses:127 | Used by:Timeline |
Symbol 129 Text | Uses:4 | Used by:130 |
Symbol 130 MovieClip | Uses:129 | Used by:Timeline |
Symbol 131 Bitmap | Used by:132 | |
Symbol 132 Graphic | Uses:131 | Used by:133 |
Symbol 133 MovieClip | Uses:132 | Used by:Timeline |
Symbol 134 Text | Uses:4 18 | Used by:135 |
Symbol 135 MovieClip | Uses:134 | Used by:Timeline |
Symbol 136 Bitmap | Used by:137 | |
Symbol 137 Graphic | Uses:136 | Used by:138 |
Symbol 138 MovieClip | Uses:137 | Used by:Timeline |
Symbol 139 Bitmap | Used by:140 | |
Symbol 140 Graphic | Uses:139 | Used by:141 |
Symbol 141 MovieClip | Uses:140 | Used by:Timeline |
Symbol 142 Text | Uses:97 | Used by:143 |
Symbol 143 MovieClip | Uses:142 | Used by:Timeline |
Symbol 144 Bitmap | Used by:145 | |
Symbol 145 Graphic | Uses:144 | Used by:146 |
Symbol 146 MovieClip | Uses:145 | Used by:147 |
Symbol 147 MovieClip | Uses:146 | Used by:Timeline |
Symbol 148 Text | Uses:18 4 | Used by:149 |
Symbol 149 MovieClip | Uses:148 | Used by:Timeline |
Symbol 150 Bitmap | Used by:151 | |
Symbol 151 Graphic | Uses:150 | Used by:152 |
Symbol 152 MovieClip | Uses:151 | Used by:153 |
Symbol 153 MovieClip | Uses:152 | Used by:Timeline |
Symbol 154 Bitmap | Used by:155 | |
Symbol 155 Graphic | Uses:154 | Used by:156 |
Symbol 156 MovieClip | Uses:155 | Used by:157 |
Symbol 157 MovieClip | Uses:156 | Used by:Timeline |
Symbol 158 Bitmap | Used by:159 | |
Symbol 159 Graphic | Uses:158 | Used by:160 |
Symbol 160 MovieClip | Uses:159 | Used by:161 |
Symbol 161 MovieClip | Uses:160 | Used by:Timeline |
Symbol 162 Bitmap | Used by:163 | |
Symbol 163 Graphic | Uses:162 | Used by:164 |
Symbol 164 MovieClip | Uses:163 | Used by:Timeline |
Symbol 165 Bitmap | Used by:166 | |
Symbol 166 Graphic | Uses:165 | Used by:167 |
Symbol 167 MovieClip | Uses:166 | Used by:Timeline |
Symbol 168 Bitmap | Used by:169 | |
Symbol 169 Graphic | Uses:168 | Used by:170 |
Symbol 170 MovieClip | Uses:169 | Used by:Timeline |
Symbol 171 Bitmap | Used by:172 | |
Symbol 172 Graphic | Uses:171 | Used by:173 |
Symbol 173 MovieClip | Uses:172 | Used by:Timeline |
Symbol 174 Bitmap | Used by:175 | |
Symbol 175 Graphic | Uses:174 | Used by:176 |
Symbol 176 MovieClip | Uses:175 | Used by:Timeline |
Symbol 177 Text | Uses:18 4 | Used by:178 |
Symbol 178 MovieClip | Uses:177 | Used by:Timeline |
Symbol 179 Bitmap | Used by:180 | |
Symbol 180 Graphic | Uses:179 | Used by:181 |
Symbol 181 MovieClip | Uses:180 | Used by:Timeline |
Symbol 182 Text | Uses:4 18 97 | Used by:183 |
Symbol 183 MovieClip | Uses:182 | Used by:Timeline |
Symbol 184 Bitmap | Used by:185 | |
Symbol 185 Graphic | Uses:184 | Used by:186 |
Symbol 186 MovieClip | Uses:185 | Used by:Timeline |
Symbol 187 Text | Uses:4 | Used by:188 |
Symbol 188 MovieClip | Uses:187 | Used by:Timeline |
Symbol 189 Text | Uses:4 18 | Used by:190 |
Symbol 190 MovieClip | Uses:189 | Used by:Timeline |
Symbol 191 Bitmap | Used by:192 | |
Symbol 192 Graphic | Uses:191 | Used by:193 |
Symbol 193 MovieClip | Uses:192 | Used by:Timeline |
Symbol 194 Bitmap | Used by:195 | |
Symbol 195 Graphic | Uses:194 | Used by:196 |
Symbol 196 MovieClip | Uses:195 | Used by:Timeline |
Symbol 197 Bitmap | Used by:198 | |
Symbol 198 Graphic | Uses:197 | Used by:199 |
Symbol 199 MovieClip | Uses:198 | Used by:Timeline |
Symbol 200 Text | Uses:4 97 | Used by:201 |
Symbol 201 MovieClip | Uses:200 | Used by:Timeline |
Symbol 202 Text | Uses:4 | Used by:203 |
Symbol 203 MovieClip | Uses:202 | Used by:Timeline |
Symbol 204 Text | Uses:4 18 | Used by:205 |
Symbol 205 MovieClip | Uses:204 | Used by:Timeline |
Symbol 206 Bitmap | Used by:207 | |
Symbol 207 Graphic | Uses:206 | Used by:208 |
Symbol 208 MovieClip | Uses:207 | Used by:Timeline |
Symbol 209 Text | Uses:4 18 | Used by:210 |
Symbol 210 MovieClip | Uses:209 | Used by:Timeline |
Symbol 211 Bitmap | Used by:212 | |
Symbol 212 Graphic | Uses:211 | Used by:213 |
Symbol 213 MovieClip | Uses:212 | Used by:Timeline |
Symbol 214 Text | Uses:4 97 | Used by:215 |
Symbol 215 MovieClip | Uses:214 | Used by:Timeline |
Symbol 216 Bitmap | Used by:217 | |
Symbol 217 Graphic | Uses:216 | Used by:218 |
Symbol 218 MovieClip | Uses:217 | Used by:Timeline |
Symbol 219 Bitmap | Used by:220 | |
Symbol 220 Graphic | Uses:219 | Used by:221 |
Symbol 221 MovieClip | Uses:220 | Used by:Timeline |
Symbol 222 Bitmap | Used by:223 | |
Symbol 223 Graphic | Uses:222 | Used by:224 |
Symbol 224 MovieClip | Uses:223 | Used by:Timeline |
Symbol 225 Bitmap | Used by:226 | |
Symbol 226 Graphic | Uses:225 | Used by:227 |
Symbol 227 MovieClip | Uses:226 | Used by:Timeline |
Symbol 228 Text | Uses:4 18 | Used by:229 |
Symbol 229 MovieClip | Uses:228 | Used by:Timeline |
Symbol 230 Text | Uses:4 18 | Used by:231 |
Symbol 231 MovieClip | Uses:230 | Used by:Timeline |
Symbol 232 Bitmap | Used by:233 | |
Symbol 233 Graphic | Uses:232 | Used by:234 |
Symbol 234 MovieClip | Uses:233 | Used by:Timeline |
Symbol 235 Text | Uses:4 97 | Used by:236 |
Symbol 236 MovieClip | Uses:235 | Used by:Timeline |
Symbol 237 Bitmap | Used by:238 | |
Symbol 238 Graphic | Uses:237 | Used by:239 |
Symbol 239 MovieClip | Uses:238 | Used by:Timeline |
Symbol 240 Text | Uses:4 | Used by:241 |
Symbol 241 MovieClip | Uses:240 | Used by:Timeline |
Symbol 242 Bitmap | Used by:243 | |
Symbol 243 Graphic | Uses:242 | Used by:244 |
Symbol 244 MovieClip | Uses:243 | Used by:Timeline |
Symbol 245 Bitmap | Used by:246 | |
Symbol 246 Graphic | Uses:245 | Used by:247 |
Symbol 247 MovieClip | Uses:246 | Used by:Timeline |
Symbol 248 Bitmap | Used by:249 | |
Symbol 249 Graphic | Uses:248 | Used by:250 |
Symbol 250 MovieClip | Uses:249 | Used by:Timeline |
Symbol 251 Text | Uses:4 18 | Used by:252 |
Symbol 252 MovieClip | Uses:251 | Used by:Timeline |
Symbol 253 Bitmap | Used by:254 | |
Symbol 254 Graphic | Uses:253 | Used by:255 |
Symbol 255 MovieClip | Uses:254 | Used by:Timeline |
Symbol 256 Bitmap | Used by:257 | |
Symbol 257 Graphic | Uses:256 | Used by:258 |
Symbol 258 MovieClip | Uses:257 | Used by:Timeline |
Symbol 259 Text | Uses:18 4 | Used by:260 |
Symbol 260 MovieClip | Uses:259 | Used by:Timeline |
Symbol 261 Graphic | Used by:262 | |
Symbol 262 MovieClip | Uses:261 | Used by:265 |
Symbol 263 Graphic | Used by:264 | |
Symbol 264 MovieClip | Uses:263 | Used by:265 |
Symbol 265 MovieClip | Uses:262 264 | Used by:Timeline |
Symbol 266 Bitmap | Used by:267 | |
Symbol 267 Graphic | Uses:266 | Used by:268 |
Symbol 268 MovieClip | Uses:267 | Used by:Timeline |
Symbol 269 Bitmap | Used by:270 | |
Symbol 270 Graphic | Uses:269 | Used by:271 |
Symbol 271 MovieClip | Uses:270 | Used by:Timeline |
Symbol 272 Bitmap | Used by:273 | |
Symbol 273 Graphic | Uses:272 | Used by:274 |
Symbol 274 MovieClip | Uses:273 | Used by:Timeline |
Symbol 275 Bitmap | Used by:276 | |
Symbol 276 Graphic | Uses:275 | Used by:277 |
Symbol 277 MovieClip | Uses:276 | Used by:Timeline |
Symbol 278 Font | Used by:279 349 | |
Symbol 279 Text | Uses:278 4 | Used by:280 |
Symbol 280 MovieClip | Uses:279 | Used by:Timeline |
Symbol 281 Bitmap | Used by:282 | |
Symbol 282 Graphic | Uses:281 | Used by:283 |
Symbol 283 MovieClip | Uses:282 | Used by:Timeline |
Symbol 284 Bitmap | Used by:285 | |
Symbol 285 Graphic | Uses:284 | Used by:286 |
Symbol 286 MovieClip | Uses:285 | Used by:Timeline |
Symbol 287 Text | Uses:18 | Used by:288 |
Symbol 288 MovieClip | Uses:287 | Used by:Timeline |
Symbol 289 Text | Uses:4 | Used by:290 |
Symbol 290 MovieClip | Uses:289 | Used by:Timeline |
Symbol 291 Text | Uses:97 4 | Used by:292 |
Symbol 292 MovieClip | Uses:291 | Used by:Timeline |
Symbol 293 Bitmap | Used by:294 | |
Symbol 294 Graphic | Uses:293 | Used by:295 |
Symbol 295 MovieClip | Uses:294 | Used by:Timeline |
Symbol 296 Bitmap | Used by:297 | |
Symbol 297 Graphic | Uses:296 | Used by:298 |
Symbol 298 MovieClip | Uses:297 | Used by:Timeline |
Symbol 299 Bitmap | Used by:300 | |
Symbol 300 Graphic | Uses:299 | Used by:301 |
Symbol 301 MovieClip | Uses:300 | Used by:Timeline |
Symbol 302 Text | Uses:4 18 | Used by:303 |
Symbol 303 MovieClip | Uses:302 | Used by:Timeline |
Symbol 304 Bitmap | Used by:305 | |
Symbol 305 Graphic | Uses:304 | Used by:306 |
Symbol 306 MovieClip | Uses:305 | Used by:Timeline |
Symbol 307 Bitmap | Used by:308 | |
Symbol 308 Graphic | Uses:307 | Used by:309 |
Symbol 309 MovieClip | Uses:308 | Used by:Timeline |
Symbol 310 Bitmap | Used by:311 | |
Symbol 311 Graphic | Uses:310 | Used by:312 |
Symbol 312 MovieClip | Uses:311 | Used by:Timeline |
Symbol 313 Bitmap | Used by:314 | |
Symbol 314 Graphic | Uses:313 | Used by:315 |
Symbol 315 MovieClip | Uses:314 | Used by:Timeline |
Symbol 316 Text | Uses:4 | Used by:317 |
Symbol 317 MovieClip | Uses:316 | Used by:Timeline |
Symbol 318 Text | Uses:18 4 | Used by:319 |
Symbol 319 MovieClip | Uses:318 | Used by:Timeline |
Symbol 320 Bitmap | Used by:321 | |
Symbol 321 Graphic | Uses:320 | Used by:322 |
Symbol 322 MovieClip | Uses:321 | Used by:Timeline |
Symbol 323 Text | Uses:4 | Used by:324 |
Symbol 324 MovieClip | Uses:323 | Used by:Timeline |
Symbol 325 Bitmap | Used by:326 | |
Symbol 326 Graphic | Uses:325 | Used by:327 |
Symbol 327 MovieClip | Uses:326 | Used by:Timeline |
Symbol 328 Text | Uses:4 18 | Used by:329 |
Symbol 329 MovieClip | Uses:328 | Used by:Timeline |
Symbol 330 Bitmap | Used by:331 | |
Symbol 331 Graphic | Uses:330 | Used by:332 |
Symbol 332 MovieClip | Uses:331 | Used by:Timeline |
Symbol 333 Text | Uses:18 4 | Used by:334 |
Symbol 334 MovieClip | Uses:333 | Used by:Timeline |
Symbol 335 Bitmap | Used by:336 | |
Symbol 336 Graphic | Uses:335 | Used by:337 |
Symbol 337 MovieClip | Uses:336 | Used by:Timeline |
Symbol 338 Bitmap | Used by:339 | |
Symbol 339 Graphic | Uses:338 | Used by:340 |
Symbol 340 MovieClip | Uses:339 | Used by:Timeline |
Symbol 341 Bitmap | Used by:342 | |
Symbol 342 Graphic | Uses:341 | Used by:343 |
Symbol 343 MovieClip | Uses:342 | Used by:Timeline |
Symbol 344 Text | Uses:4 18 | Used by:345 |
Symbol 345 MovieClip | Uses:344 | Used by:Timeline |
Symbol 346 Bitmap | Used by:347 | |
Symbol 347 Graphic | Uses:346 | Used by:348 |
Symbol 348 MovieClip | Uses:347 | Used by:Timeline |
Symbol 349 Text | Uses:4 278 | Used by:350 |
Symbol 350 MovieClip | Uses:349 | Used by:Timeline |
Symbol 351 Bitmap | Used by:352 | |
Symbol 352 Graphic | Uses:351 | Used by:353 |
Symbol 353 MovieClip | Uses:352 | Used by:Timeline |
Symbol 354 Text | Uses:4 | Used by:355 |
Symbol 355 MovieClip | Uses:354 | Used by:Timeline |
Symbol 356 Text | Uses:4 | Used by:357 |
Symbol 357 MovieClip | Uses:356 | Used by:Timeline |
Symbol 358 Bitmap | Used by:359 | |
Symbol 359 Graphic | Uses:358 | Used by:360 |
Symbol 360 MovieClip | Uses:359 | Used by:Timeline |
Symbol 361 Bitmap | Used by:362 | |
Symbol 362 Graphic | Uses:361 | Used by:363 |
Symbol 363 MovieClip | Uses:362 | Used by:Timeline |
Symbol 364 Bitmap | Used by:365 | |
Symbol 365 Graphic | Uses:364 | Used by:366 |
Symbol 366 MovieClip | Uses:365 | Used by:Timeline |
Symbol 367 Text | Uses:4 | Used by:368 |
Symbol 368 MovieClip | Uses:367 | Used by:Timeline |
Symbol 369 ShapeTweening | Used by:Timeline | |
Symbol 370 ShapeTweening | Used by:Timeline | |
Symbol 371 ShapeTweening | Used by:Timeline | |
Symbol 372 ShapeTweening | Used by:Timeline | |
Symbol 373 ShapeTweening | Used by:Timeline | |
Symbol 374 ShapeTweening | Used by:Timeline | |
Symbol 375 Graphic | Used by:376 | |
Symbol 376 MovieClip | Uses:375 | Used by:Timeline |
Symbol 377 Bitmap | Used by:378 | |
Symbol 378 Graphic | Uses:377 | Used by:379 |
Symbol 379 MovieClip | Uses:378 | Used by:399 403 Timeline |
Symbol 380 Bitmap | Used by:381 | |
Symbol 381 Graphic | Uses:380 | Used by:382 |
Symbol 382 MovieClip | Uses:381 | Used by:Timeline |
Symbol 383 Bitmap | Used by:384 | |
Symbol 384 Graphic | Uses:383 | Used by:385 |
Symbol 385 MovieClip | Uses:384 | Used by:399 Timeline |
Symbol 386 Graphic | Used by:387 | |
Symbol 387 MovieClip | Uses:386 | Used by:403 Timeline |
Symbol 388 Graphic | Used by:389 | |
Symbol 389 MovieClip | Uses:388 | Used by:403 Timeline |
Symbol 390 Bitmap | Used by:391 | |
Symbol 391 Graphic | Uses:390 | Used by:392 |
Symbol 392 MovieClip | Uses:391 | Used by:393 |
Symbol 393 MovieClip | Uses:392 | Used by:Timeline |
Symbol 394 Font | Used by:395 396 397 405 406 407 408 410 411 412 414 415 | |
Symbol 395 Text | Uses:394 | Used by:398 |
Symbol 396 Text | Uses:394 | Used by:398 |
Symbol 397 Text | Uses:394 | Used by:398 |
Symbol 398 MovieClip | Uses:395 396 397 | Used by:Timeline |
Symbol 399 MovieClip | Uses:379 385 | Used by:400 |
Symbol 400 MovieClip | Uses:399 | Used by:404 |
Symbol 401 Graphic | Used by:402 | |
Symbol 402 MovieClip | Uses:401 | Used by:404 |
Symbol 403 MovieClip | Uses:379 387 389 | Used by:404 |
Symbol 404 MovieClip | Uses:400 402 403 | Used by:Timeline |
Symbol 405 Text | Uses:394 | Used by:409 |
Symbol 406 Text | Uses:394 | Used by:409 |
Symbol 407 Text | Uses:394 | Used by:409 |
Symbol 408 Text | Uses:394 | Used by:409 |
Symbol 409 MovieClip | Uses:405 406 407 408 | Used by:Timeline |
Symbol 410 Text | Uses:394 | Used by:413 |
Symbol 411 Text | Uses:394 | Used by:413 |
Symbol 412 Text | Uses:394 | Used by:413 |
Symbol 413 MovieClip | Uses:410 411 412 | Used by:Timeline |
Symbol 414 Text | Uses:394 | Used by:416 |
Symbol 415 Text | Uses:394 | Used by:416 |
Symbol 416 MovieClip | Uses:414 415 | Used by:Timeline |
Symbol 417 Font | Used by:418 | |
Symbol 418 Text | Uses:417 | Used by:419 |
Symbol 419 MovieClip | Uses:418 | Used by:Timeline |
Symbol 420 Bitmap | Used by:421 | |
Symbol 421 Graphic | Uses:420 | Used by:422 |
Symbol 422 MovieClip | Uses:421 | Used by:427 |
Symbol 423 ShapeTweening | Used by:426 | |
Symbol 424 ShapeTweening | Used by:426 | |
Symbol 425 Graphic | Used by:426 | |
Symbol 426 MovieClip | Uses:423 424 425 | Used by:427 431 |
Symbol 427 MovieClip | Uses:422 426 | Used by:Timeline |
Symbol 428 Bitmap | Used by:429 | |
Symbol 429 Graphic | Uses:428 | Used by:430 |
Symbol 430 MovieClip | Uses:429 | Used by:431 |
Symbol 431 MovieClip | Uses:430 426 | Used by:Timeline |
Symbol 432 Text | Uses:97 4 | Used by:433 |
Symbol 433 MovieClip | Uses:432 | Used by:Timeline |
Symbol 434 Text | Uses:4 18 | Used by:435 |
Symbol 435 MovieClip | Uses:434 | Used by:Timeline |
Symbol 436 Text | Uses:4 | Used by:437 |
Symbol 437 MovieClip | Uses:436 | Used by:Timeline |
Symbol 438 Text | Uses:4 18 | Used by:439 |
Symbol 439 MovieClip | Uses:438 | Used by:Timeline |
Symbol 440 Text | Uses:18 | Used by:441 |
Symbol 441 MovieClip | Uses:440 | Used by:Timeline |
Symbol 442 Text | Uses:18 | Used by:443 |
Symbol 443 MovieClip | Uses:442 | Used by:Timeline |
Symbol 444 Text | Uses:18 | Used by:445 |
Symbol 445 MovieClip | Uses:444 | Used by:Timeline |
Symbol 446 Graphic | Used by:Timeline | |
Symbol 447 Graphic | Used by:449 | |
Symbol 448 Graphic | Used by:449 | |
Symbol 449 Button | Uses:447 448 | Used by:450 |
Symbol 450 MovieClip | Uses:449 | Used by:Timeline |
Symbol 451 Graphic | Used by:Timeline | |
Streaming Sound 1 | Used by:Timeline |
Instance Names
"loaderAnim" | Frame 1 | Symbol 16 MovieClip |
"bar" | Symbol 16 MovieClip Frame 1 | Symbol 9 MovieClip |
"effectsClip" | Symbol 16 MovieClip Frame 1 | Symbol 13 MovieClip |
Special Tags
FileAttributes (69) | Timeline Frame 1 | Access local files only, Metadata not present, AS1/AS2. |
ExportAssets (56) | Timeline Frame 1 | Symbol 2 as "particleSmokeTail" |
Labels
"loaded" | Symbol 3 MovieClip Frame 3 |
"out" | Symbol 16 MovieClip Frame 157 |
|