STORY   LOOP   FURRY   PORN   GAMES
• C •   SERVICES [?] [R] RND   POPULAR
Archived flashes:
228023
/disc/ · /res/     /show/ · /fap/ · /gg/ · /swf/P0001 · P2560 · P5119

<div style="position:absolute;top:-99px;left:-99px;"><img src="http://swfchan.com:57475/15566307?noj=FRM15566307-18DC" width="1" height="1"></div>

tatum.swf

This is the info page for
Flash #112288

(Click the ID number above for more basic data on this flash file.)


Text
GIRL'S BEST HANGOUT

1

2

3

P

E

Y

L

o

a

d

i

n

g

.

g

a

b

y

p

e

r

e

m

u

s

TATUM

DRESS UP GAME

Nederlands

Nederlands

Русский

Itali
ano

Deutsch

Français

Türkçe

Svenska

Español

Polski

Português

English

PLAY

123PEPPY

Ilerle

Bastan

HAIR

SHOES

Ayakkabı

CHAIN

Kolye

BAGS

STUDS

BOTTOM

Alt

TOP

üst

DRESS

<p align="center"></p>

Spela Me

DESIGNED BY

<p align="center"></p>

YOUR FRIEND'S EMAIL :

<p align="left"></p>

SEND

SEND

ADD MORE

ADD MORE

YOUR NAME :

YOUR EMAIL ADDRESS :

MESSAGE :

YOUR FRIEND'S NAME :

<p align="left"></p>

<p align="left"></p>

<p align="left"></p>

<p align="left"></p>

<p align="left"></p>

ActionScript [AS3]

Section 1
//Back (fl.transitions.easing.Back) package fl.transitions.easing { public class Back { public static function easeOut(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Number=0):Number{ if (!_arg5){ _arg5 = 1.70158; }; _arg1 = ((_arg1 / _arg4) - 1); return (((_arg3 * (((_arg1 * _arg1) * (((_arg5 + 1) * _arg1) + _arg5)) + 1)) + _arg2)); } public static function easeIn(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Number=0):Number{ if (!_arg5){ _arg5 = 1.70158; }; _arg1 = (_arg1 / _arg4); return (((((_arg3 * _arg1) * _arg1) * (((_arg5 + 1) * _arg1) - _arg5)) + _arg2)); } public static function easeInOut(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Number=0):Number{ if (!_arg5){ _arg5 = 1.70158; }; _arg1 = (_arg1 / (_arg4 / 2)); if (_arg1 < 1){ _arg5 = (_arg5 * 1.525); return ((((_arg3 / 2) * ((_arg1 * _arg1) * (((_arg5 + 1) * _arg1) - _arg5))) + _arg2)); }; _arg1 = (_arg1 - 2); _arg5 = (_arg5 * 1.525); return ((((_arg3 / 2) * (((_arg1 * _arg1) * (((_arg5 + 1) * _arg1) + _arg5)) + 2)) + _arg2)); } } }//package fl.transitions.easing
Section 2
//AutoAlphaPlugin (gs.plugins.AutoAlphaPlugin) package gs.plugins { import gs.*; import flash.display.*; public class AutoAlphaPlugin extends TweenPlugin { protected var _tweenVisible:Boolean; protected var _tween:TweenLite; protected var _visible:Boolean; protected var _target:Object; public static const VERSION:Number = 1; public static const API:Number = 1; public function AutoAlphaPlugin(){ this.propName = "autoAlpha"; this.overwriteProps = ["alpha", "visible"]; this.onComplete = onCompleteTween; } override public function set changeFactor(_arg1:Number):void{ updateTweens(_arg1); if (((!((_target.visible == true))) && (_tweenVisible))){ _target.visible = true; }; } public function onCompleteTween():void{ if (((((_tweenVisible) && (!((_tween.vars.runBackwards == true))))) && ((_tween.ease == _tween.vars.ease)))){ _target.visible = _visible; }; } override public function onInitTween(_arg1:Object, _arg2, _arg3:TweenLite):Boolean{ _target = _arg1; _tween = _arg3; _visible = Boolean(!((_arg2 == 0))); _tweenVisible = true; addTween(_arg1, "alpha", _arg1.alpha, _arg2, "alpha"); return (true); } override public function killProps(_arg1:Object):void{ super.killProps(_arg1); _tweenVisible = !(Boolean(("visible" in _arg1))); } } }//package gs.plugins
Section 3
//EndArrayPlugin (gs.plugins.EndArrayPlugin) package gs.plugins { import gs.*; import gs.utils.tween.*; public class EndArrayPlugin extends TweenPlugin { protected var _info:Array; protected var _a:Array; public static const VERSION:Number = 1.01; public static const API:Number = 1; public function EndArrayPlugin(){ _info = []; super(); this.propName = "endArray"; this.overwriteProps = ["endArray"]; } override public function set changeFactor(_arg1:Number):void{ var _local2:int; var _local3:ArrayTweenInfo; var _local4:Number; var _local5:int; if (this.round){ _local2 = (_info.length - 1); while (_local2 > -1) { _local3 = _info[_local2]; _local4 = (_local3.start + (_local3.change * _arg1)); _local5 = ((_local4)<0) ? -1 : 1; _a[_local3.index] = ((((_local4 % 1) * _local5))>0.5) ? (int(_local4) + _local5) : int(_local4); _local2--; }; } else { _local2 = (_info.length - 1); while (_local2 > -1) { _local3 = _info[_local2]; _a[_local3.index] = (_local3.start + (_local3.change * _arg1)); _local2--; }; }; } public function init(_arg1:Array, _arg2:Array):void{ var _local3:int; _a = _arg1; _local3 = (_arg2.length - 1); while (_local3 > -1) { if (((!((_arg1[_local3] == _arg2[_local3]))) && (!((_arg1[_local3] == null))))){ _info[_info.length] = new ArrayTweenInfo(_local3, _a[_local3], (_arg2[_local3] - _a[_local3])); }; _local3--; }; } override public function onInitTween(_arg1:Object, _arg2, _arg3:TweenLite):Boolean{ if (((!((_arg1 is Array))) || (!((_arg2 is Array))))){ return (false); }; init((_arg1 as Array), _arg2); return (true); } } }//package gs.plugins
Section 4
//FramePlugin (gs.plugins.FramePlugin) package gs.plugins { import gs.*; import flash.display.*; public class FramePlugin extends TweenPlugin { public var frame:int; protected var _target:MovieClip; public static const VERSION:Number = 1.01; public static const API:Number = 1; public function FramePlugin(){ this.propName = "frame"; this.overwriteProps = ["frame"]; this.round = true; } override public function set changeFactor(_arg1:Number):void{ updateTweens(_arg1); _target.gotoAndStop(this.frame); } override public function onInitTween(_arg1:Object, _arg2, _arg3:TweenLite):Boolean{ if (((!((_arg1 is MovieClip))) || (isNaN(_arg2)))){ return (false); }; _target = (_arg1 as MovieClip); this.frame = _target.currentFrame; addTween(this, "frame", this.frame, _arg2, "frame"); return (true); } } }//package gs.plugins
Section 5
//RemoveTintPlugin (gs.plugins.RemoveTintPlugin) package gs.plugins { public class RemoveTintPlugin extends TintPlugin { public static const VERSION:Number = 1.01; public static const API:Number = 1; public function RemoveTintPlugin(){ this.propName = "removeTint"; } } }//package gs.plugins
Section 6
//TintPlugin (gs.plugins.TintPlugin) package gs.plugins { import gs.*; import flash.display.*; import flash.geom.*; import gs.utils.tween.*; public class TintPlugin extends TweenPlugin { protected var _ct:ColorTransform; protected var _ignoreAlpha:Boolean; protected var _target:DisplayObject; public static const VERSION:Number = 1.1; public static const API:Number = 1; protected static var _props:Array = ["redMultiplier", "greenMultiplier", "blueMultiplier", "alphaMultiplier", "redOffset", "greenOffset", "blueOffset", "alphaOffset"]; public function TintPlugin(){ this.propName = "tint"; this.overwriteProps = ["tint"]; } override public function set changeFactor(_arg1:Number):void{ var _local2:ColorTransform; updateTweens(_arg1); if (_ignoreAlpha){ _local2 = _target.transform.colorTransform; _ct.alphaMultiplier = _local2.alphaMultiplier; _ct.alphaOffset = _local2.alphaOffset; }; _target.transform.colorTransform = _ct; } public function init(_arg1:DisplayObject, _arg2:ColorTransform):void{ var _local3:int; var _local4:String; _target = _arg1; _ct = _target.transform.colorTransform; _local3 = (_props.length - 1); while (_local3 > -1) { _local4 = _props[_local3]; if (_ct[_local4] != _arg2[_local4]){ _tweens[_tweens.length] = new TweenInfo(_ct, _local4, _ct[_local4], (_arg2[_local4] - _ct[_local4]), "tint", false); }; _local3--; }; } override public function onInitTween(_arg1:Object, _arg2, _arg3:TweenLite):Boolean{ var _local4:ColorTransform; if (!(_arg1 is DisplayObject)){ return (false); }; _local4 = new ColorTransform(); if (((!((_arg2 == null))) && (!((_arg3.exposedVars.removeTint == true))))){ _local4.color = uint(_arg2); }; _ignoreAlpha = true; init((_arg1 as DisplayObject), _local4); return (true); } } }//package gs.plugins
Section 7
//TweenPlugin (gs.plugins.TweenPlugin) package gs.plugins { import gs.*; import gs.utils.tween.*; public class TweenPlugin { public var overwriteProps:Array; protected var _tweens:Array; public var round:Boolean; public var onComplete:Function; public var propName:String; protected var _changeFactor:Number;// = 0 public static const VERSION:Number = 1.03; public static const API:Number = 1; public function TweenPlugin(){ _tweens = []; _changeFactor = 0; super(); } protected function updateTweens(_arg1:Number):void{ var _local2:int; var _local3:TweenInfo; var _local4:Number; var _local5:int; if (this.round){ _local2 = (_tweens.length - 1); while (_local2 > -1) { _local3 = _tweens[_local2]; _local4 = (_local3.start + (_local3.change * _arg1)); _local5 = ((_local4)<0) ? -1 : 1; _local3.target[_local3.property] = ((((_local4 % 1) * _local5))>0.5) ? (int(_local4) + _local5) : int(_local4); _local2--; }; } else { _local2 = (_tweens.length - 1); while (_local2 > -1) { _local3 = _tweens[_local2]; _local3.target[_local3.property] = (_local3.start + (_local3.change * _arg1)); _local2--; }; }; } public function set changeFactor(_arg1:Number):void{ updateTweens(_arg1); _changeFactor = _arg1; } protected function addTween(_arg1:Object, _arg2:String, _arg3:Number, _arg4, _arg5:String=null):void{ var _local6:Number; if (_arg4 != null){ _local6 = ((typeof(_arg4))=="number") ? (_arg4 - _arg3) : Number(_arg4); if (_local6 != 0){ _tweens[_tweens.length] = new TweenInfo(_arg1, _arg2, _arg3, _local6, ((_arg5) || (_arg2)), false); }; }; } public function killProps(_arg1:Object):void{ var _local2:int; _local2 = (this.overwriteProps.length - 1); while (_local2 > -1) { if ((this.overwriteProps[_local2] in _arg1)){ this.overwriteProps.splice(_local2, 1); }; _local2--; }; _local2 = (_tweens.length - 1); while (_local2 > -1) { if ((_tweens[_local2].name in _arg1)){ _tweens.splice(_local2, 1); }; _local2--; }; } public function onInitTween(_arg1:Object, _arg2, _arg3:TweenLite):Boolean{ addTween(_arg1, this.propName, _arg1[this.propName], _arg2, this.propName); return (true); } public function get changeFactor():Number{ return (_changeFactor); } public static function activate(_arg1:Array):Boolean{ var _local2:int; var _local3:Object; _local2 = (_arg1.length - 1); while (_local2 > -1) { _local3 = new (_arg1[_local2]); TweenLite.plugins[_local3.propName] = _arg1[_local2]; _local2--; }; return (true); } } }//package gs.plugins
Section 8
//VisiblePlugin (gs.plugins.VisiblePlugin) package gs.plugins { import gs.*; import flash.display.*; public class VisiblePlugin extends TweenPlugin { protected var _tween:TweenLite; protected var _visible:Boolean; protected var _target:Object; public static const VERSION:Number = 1; public static const API:Number = 1; public function VisiblePlugin(){ this.propName = "visible"; this.overwriteProps = ["visible"]; this.onComplete = onCompleteTween; } override public function set changeFactor(_arg1:Number):void{ if (_target.visible != true){ _target.visible = true; }; } public function onCompleteTween():void{ if (((!((_tween.vars.runBackwards == true))) && ((_tween.ease == _tween.vars.ease)))){ _target.visible = _visible; }; } override public function onInitTween(_arg1:Object, _arg2, _arg3:TweenLite):Boolean{ _target = _arg1; _tween = _arg3; _visible = Boolean(_arg2); return (true); } } }//package gs.plugins
Section 9
//VolumePlugin (gs.plugins.VolumePlugin) package gs.plugins { import gs.*; import flash.display.*; import flash.media.*; public class VolumePlugin extends TweenPlugin { protected var _st:SoundTransform; protected var _target:Object; public static const VERSION:Number = 1.01; public static const API:Number = 1; public function VolumePlugin(){ this.propName = "volume"; this.overwriteProps = ["volume"]; } override public function set changeFactor(_arg1:Number):void{ updateTweens(_arg1); _target.soundTransform = _st; } override public function onInitTween(_arg1:Object, _arg2, _arg3:TweenLite):Boolean{ if (((isNaN(_arg2)) || (!(_arg1.hasOwnProperty("soundTransform"))))){ return (false); }; _target = _arg1; _st = _target.soundTransform; addTween(_st, "volume", _st.volume, _arg2, "volume"); return (true); } } }//package gs.plugins
Section 10
//ArrayTweenInfo (gs.utils.tween.ArrayTweenInfo) package gs.utils.tween { public class ArrayTweenInfo { public var change:Number; public var index:uint; public var start:Number; public function ArrayTweenInfo(_arg1:uint, _arg2:Number, _arg3:Number){ this.index = _arg1; this.start = _arg2; this.change = _arg3; } } }//package gs.utils.tween
Section 11
//TweenInfo (gs.utils.tween.TweenInfo) package gs.utils.tween { public class TweenInfo { public var start:Number; public var name:String; public var change:Number; public var target:Object; public var property:String; public var isPlugin:Boolean; public function TweenInfo(_arg1:Object, _arg2:String, _arg3:Number, _arg4:Number, _arg5:String, _arg6:Boolean){ this.target = _arg1; this.property = _arg2; this.start = _arg3; this.change = _arg4; this.name = _arg5; this.isPlugin = _arg6; } } }//package gs.utils.tween
Section 12
//TweenLite (gs.TweenLite) package gs { import flash.events.*; import flash.display.*; import gs.utils.tween.*; import gs.plugins.*; import flash.utils.*; public class TweenLite { public var delay:Number; protected var _hasUpdate:Boolean; protected var _hasPlugins:Boolean; public var started:Boolean; public var initted:Boolean; public var active:Boolean; public var startTime:Number; public var target:Object; public var duration:Number; public var gc:Boolean; public var vars:Object; public var ease:Function; public var tweens:Array; public var exposedVars:Object; public var combinedTimeScale:Number; public var initTime:Number; public static const version:Number = 10.09; private static var _timer:Timer = new Timer(2000); public static var defaultEase:Function = TweenLite.easeOut; public static var plugins:Object = {}; public static var currentTime:uint; public static var masterList:Dictionary = new Dictionary(false); protected static var _reservedProps:Object = {ease:1, delay:1, overwrite:1, onComplete:1, onCompleteParams:1, runBackwards:1, startAt:1, onUpdate:1, onUpdateParams:1, roundProps:1, onStart:1, onStartParams:1, persist:1, renderOnStart:1, proxiedEase:1, easeParams:1, yoyo:1, loop:1, onCompleteListener:1, onUpdateListener:1, onStartListener:1, orientToBezier:1, timeScale:1}; public static var killDelayedCallsTo:Function = TweenLite.killTweensOf; public static var timingSprite:Sprite = new Sprite(); public static var overwriteManager:Object; private static var _tlInitted:Boolean; public function TweenLite(_arg1:Object, _arg2:Number, _arg3:Object){ var _local4:int; super(); if (_arg1 == null){ return; }; if (!_tlInitted){ TweenPlugin.activate([TintPlugin, RemoveTintPlugin, FramePlugin, AutoAlphaPlugin, VisiblePlugin, VolumePlugin, EndArrayPlugin]); currentTime = getTimer(); timingSprite.addEventListener(Event.ENTER_FRAME, updateAll, false, 0, true); if (overwriteManager == null){ overwriteManager = {mode:1, enabled:false}; }; _timer.addEventListener("timer", killGarbage, false, 0, true); _timer.start(); _tlInitted = true; }; this.vars = _arg3; this.duration = ((_arg2) || (0.001)); this.delay = ((_arg3.delay) || (0)); this.combinedTimeScale = ((_arg3.timeScale) || (1)); this.active = Boolean((((_arg2 == 0)) && ((this.delay == 0)))); this.target = _arg1; if (typeof(this.vars.ease) != "function"){ this.vars.ease = defaultEase; }; if (this.vars.easeParams != null){ this.vars.proxiedEase = this.vars.ease; this.vars.ease = easeProxy; }; this.ease = this.vars.ease; this.exposedVars = ((this.vars.isTV)==true) ? this.vars.exposedVars : this.vars; this.tweens = []; this.initTime = currentTime; this.startTime = (this.initTime + (this.delay * 1000)); _local4 = ((((_arg3.overwrite == undefined)) || (((!(overwriteManager.enabled)) && ((_arg3.overwrite > 1)))))) ? overwriteManager.mode : int(_arg3.overwrite); if (((!((_arg1 in masterList))) || ((_local4 == 1)))){ masterList[_arg1] = [this]; } else { masterList[_arg1].push(this); }; if ((((((this.vars.runBackwards == true)) && (!((this.vars.renderOnStart == true))))) || (this.active))){ initTweenVals(); if (this.active){ render((this.startTime + 1)); } else { render(this.startTime); }; if (((((!((this.exposedVars.visible == null))) && ((this.vars.runBackwards == true)))) && ((this.target is DisplayObject)))){ this.target.visible = this.exposedVars.visible; }; }; } public function set enabled(_arg1:Boolean):void{ var _local2:Array; var _local3:Boolean; var _local4:int; if (_arg1){ if (!(this.target in masterList)){ masterList[this.target] = [this]; } else { _local2 = masterList[this.target]; _local4 = (_local2.length - 1); while (_local4 > -1) { if (_local2[_local4] == this){ _local3 = true; break; }; _local4--; }; if (!_local3){ _local2[_local2.length] = this; }; }; }; this.gc = (_arg1) ? false : true; if (this.gc){ this.active = false; } else { this.active = this.started; }; } public function clear():void{ this.tweens = []; this.vars = (this.exposedVars = {ease:this.vars.ease}); _hasUpdate = false; } public function render(_arg1:uint):void{ var _local2:Number; var _local3:Number; var _local4:TweenInfo; var _local5:int; _local2 = ((_arg1 - this.startTime) * 0.001); if (_local2 >= this.duration){ _local2 = this.duration; _local3 = ((((this.ease == this.vars.ease)) || ((this.duration == 0.001)))) ? 1 : 0; } else { _local3 = this.ease(_local2, 0, 1, this.duration); }; _local5 = (this.tweens.length - 1); while (_local5 > -1) { _local4 = this.tweens[_local5]; _local4.target[_local4.property] = (_local4.start + (_local3 * _local4.change)); _local5--; }; if (_hasUpdate){ this.vars.onUpdate.apply(null, this.vars.onUpdateParams); }; if (_local2 == this.duration){ complete(true); }; } public function activate():void{ this.started = (this.active = true); if (!this.initted){ initTweenVals(); }; if (this.vars.onStart != null){ this.vars.onStart.apply(null, this.vars.onStartParams); }; if (this.duration == 0.001){ this.startTime = (this.startTime - 1); }; } public function get enabled():Boolean{ return ((this.gc) ? false : true); } public function initTweenVals():void{ var _local1:String; var _local2:int; var _local3:*; var _local4:TweenInfo; if (((!((this.exposedVars.timeScale == undefined))) && ((this.target is TweenLite)))){ this.tweens[this.tweens.length] = new TweenInfo(this.target, "timeScale", this.target.timeScale, (this.exposedVars.timeScale - this.target.timeScale), "timeScale", false); }; for (_local1 in this.exposedVars) { if ((_local1 in _reservedProps)){ } else { if ((_local1 in plugins)){ _local3 = new (plugins[_local1]); if (_local3.onInitTween(this.target, this.exposedVars[_local1], this) == false){ this.tweens[this.tweens.length] = new TweenInfo(this.target, _local1, this.target[_local1], ((typeof(this.exposedVars[_local1]))=="number") ? (this.exposedVars[_local1] - this.target[_local1]) : Number(this.exposedVars[_local1]), _local1, false); } else { this.tweens[this.tweens.length] = new TweenInfo(_local3, "changeFactor", 0, 1, ((_local3.overwriteProps.length)==1) ? _local3.overwriteProps[0] : "_MULTIPLE_", true); _hasPlugins = true; }; } else { this.tweens[this.tweens.length] = new TweenInfo(this.target, _local1, this.target[_local1], ((typeof(this.exposedVars[_local1]))=="number") ? (this.exposedVars[_local1] - this.target[_local1]) : Number(this.exposedVars[_local1]), _local1, false); }; }; }; if (this.vars.runBackwards == true){ _local2 = (this.tweens.length - 1); while (_local2 > -1) { _local4 = this.tweens[_local2]; this.tweens[_local2].start = (_local4.start + _local4.change); _local4.change = -(_local4.change); _local2--; }; }; if (this.vars.onUpdate != null){ _hasUpdate = true; }; if (((TweenLite.overwriteManager.enabled) && ((this.target in masterList)))){ overwriteManager.manageOverwrites(this, masterList[this.target]); }; this.initted = true; } protected function easeProxy(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):Number{ return (this.vars.proxiedEase.apply(null, arguments.concat(this.vars.easeParams))); } public function killVars(_arg1:Object):void{ if (overwriteManager.enabled){ overwriteManager.killVars(_arg1, this.exposedVars, this.tweens); }; } public function complete(_arg1:Boolean=false):void{ var _local2:int; if (!_arg1){ if (!this.initted){ initTweenVals(); }; this.startTime = (currentTime - ((this.duration * 1000) / this.combinedTimeScale)); render(currentTime); return; }; if (_hasPlugins){ _local2 = (this.tweens.length - 1); while (_local2 > -1) { if (((this.tweens[_local2].isPlugin) && (!((this.tweens[_local2].target.onComplete == null))))){ this.tweens[_local2].target.onComplete(); }; _local2--; }; }; if (this.vars.persist != true){ this.enabled = false; }; if (this.vars.onComplete != null){ this.vars.onComplete.apply(null, this.vars.onCompleteParams); }; } public static function updateAll(_arg1:Event=null):void{ var _local2:uint; var _local3:Dictionary; var _local4:Array; var _local5:int; var _local6:TweenLite; _local2 = (currentTime = getTimer()); _local3 = masterList; for each (_local4 in _local3) { _local5 = (_local4.length - 1); while (_local5 > -1) { _local6 = _local4[_local5]; if (_local6.active){ _local6.render(_local2); } else { if (_local6.gc){ _local4.splice(_local5, 1); } else { if (_local2 >= _local6.startTime){ _local6.activate(); _local6.render(_local2); }; }; }; _local5--; }; }; } public static function removeTween(_arg1:TweenLite, _arg2:Boolean=true):void{ if (_arg1 != null){ if (_arg2){ _arg1.clear(); }; _arg1.enabled = false; }; } public static function killTweensOf(_arg1:Object=null, _arg2:Boolean=false):void{ var _local3:Array; var _local4:int; var _local5:TweenLite; if (((!((_arg1 == null))) && ((_arg1 in masterList)))){ _local3 = masterList[_arg1]; _local4 = (_local3.length - 1); while (_local4 > -1) { _local5 = _local3[_local4]; if (((_arg2) && (!(_local5.gc)))){ _local5.complete(false); }; _local5.clear(); _local4--; }; delete masterList[_arg1]; }; } public static function from(_arg1:Object, _arg2:Number, _arg3:Object):TweenLite{ _arg3.runBackwards = true; return (new TweenLite(_arg1, _arg2, _arg3)); } public static function easeOut(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):Number{ _arg1 = (_arg1 / _arg4); return ((((-(_arg3) * _arg1) * (_arg1 - 2)) + _arg2)); } protected static function killGarbage(_arg1:TimerEvent):void{ var _local2:Dictionary; var _local3:Object; _local2 = masterList; for (_local3 in _local2) { if (_local2[_local3].length == 0){ delete _local2[_local3]; }; }; } public static function delayedCall(_arg1:Number, _arg2:Function, _arg3:Array=null):TweenLite{ return (new TweenLite(_arg2, 0, {delay:_arg1, onComplete:_arg2, onCompleteParams:_arg3, overwrite:0})); } public static function to(_arg1:Object, _arg2:Number, _arg3:Object):TweenLite{ return (new TweenLite(_arg1, _arg2, _arg3)); } } }//package gs
Section 13
//bags_385 (tatum_fla.bags_385) package tatum_fla { import flash.display.*; public dynamic class bags_385 extends MovieClip { public function bags_385(){ addFrameScript(0, frame1, 6, frame7); } function frame7(){ gotoAndStop(2); } function frame1(){ stop(); } } }//package tatum_fla
Section 14
//bu1copy_318 (tatum_fla.bu1copy_318) package tatum_fla { import flash.display.*; public dynamic class bu1copy_318 extends MovieClip { public var d5:MovieClip; public function bu1copy_318(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package tatum_fla
Section 15
//ButtonHolder_295 (tatum_fla.ButtonHolder_295) package tatum_fla { import flash.display.*; public dynamic class ButtonHolder_295 extends MovieClip { public var b10:SimpleButton; public var b2:SimpleButton; public var b4:SimpleButton; public var b9:SimpleButton; public var b5:SimpleButton; public var b6:SimpleButton; public var b7:SimpleButton; public var b1:SimpleButton; public var b3:SimpleButton; public var b8:SimpleButton; public var b11:SimpleButton; } }//package tatum_fla
Section 16
//buttons_404 (tatum_fla.buttons_404) package tatum_fla { import flash.display.*; public dynamic class buttons_404 extends MovieClip { public var glass_btn:MovieClip; public var bottoms_btn:MovieClip; public var dress_btn:MovieClip; public var tops_btn:MovieClip; public var hair_btn:MovieClip; public var bags_btn:MovieClip; public var shoes_btn:MovieClip; public var chain_btn:MovieClip; public var studs_btn:MovieClip; } }//package tatum_fla
Section 17
//buttons2_399 (tatum_fla.buttons2_399) package tatum_fla { import flash.display.*; public dynamic class buttons2_399 extends MovieClip { public var resetbtn:MovieClip; public var nextbtn1:MovieClip; } }//package tatum_fla
Section 18
//cbvdsfdsf_loader_7 (tatum_fla.cbvdsfdsf_loader_7) package tatum_fla { import flash.display.*; public dynamic class cbvdsfdsf_loader_7 extends MovieClip { public var masker:MovieClip; } }//package tatum_fla
Section 19
//chians_386 (tatum_fla.chians_386) package tatum_fla { import flash.display.*; public dynamic class chians_386 extends MovieClip { public function chians_386(){ addFrameScript(0, frame1, 6, frame7); } function frame7(){ gotoAndStop(2); } function frame1(){ stop(); } } }//package tatum_fla
Section 20
//doll_380 (tatum_fla.doll_380) package tatum_fla { import flash.display.*; public dynamic class doll_380 extends MovieClip { public var dress:MovieClip; public var bags:MovieClip; public var glass:MovieClip; public var earring:MovieClip; public var bottoms:MovieClip; public var tops:MovieClip; public var chain:MovieClip; public var shoes:MovieClip; public var hair:MovieClip; } }//package tatum_fla
Section 21
//dollcopy_277 (tatum_fla.dollcopy_277) package tatum_fla { import flash.display.*; public dynamic class dollcopy_277 extends MovieClip { public var hair:MovieClip; } }//package tatum_fla
Section 22
//dress_382 (tatum_fla.dress_382) package tatum_fla { import flash.display.*; public dynamic class dress_382 extends MovieClip { public function dress_382(){ addFrameScript(0, frame1, 13, frame14); } function frame14(){ gotoAndStop(2); } function frame1(){ stop(); } } }//package tatum_fla
Section 23
//earrings_387 (tatum_fla.earrings_387) package tatum_fla { import flash.display.*; public dynamic class earrings_387 extends MovieClip { public function earrings_387(){ addFrameScript(0, frame1, 6, frame7); } function frame7(){ gotoAndStop(2); } function frame1(){ stop(); } } }//package tatum_fla
Section 24
//f_287 (tatum_fla.f_287) package tatum_fla { import flash.display.*; public dynamic class f_287 extends MovieClip { public function f_287(){ addFrameScript(0, frame1, 13, frame14); } function frame14(){ gotoAndStop(2); } function frame1(){ stop(); } } }//package tatum_fla
Section 25
//f_383 (tatum_fla.f_383) package tatum_fla { import flash.display.*; public dynamic class f_383 extends MovieClip { public function f_383(){ addFrameScript(0, frame1, 13, frame14); } function frame14(){ gotoAndStop(2); } function frame1(){ stop(); } } }//package tatum_fla
Section 26
//hairs_292 (tatum_fla.hairs_292) package tatum_fla { import flash.display.*; public dynamic class hairs_292 extends MovieClip { public function hairs_292(){ addFrameScript(0, frame1, 4, frame5); } function frame1(){ stop(); } function frame5(){ gotoAndStop(1); } } }//package tatum_fla
Section 27
//hdhdfhf_emaiklY_421 (tatum_fla.hdhdfhf_emaiklY_421) package tatum_fla { import flash.events.*; import flash.display.*; import flash.text.*; public dynamic class hdhdfhf_emaiklY_421 extends MovieClip { public var friendMail:TextField; public var close:SimpleButton; public function hdhdfhf_emaiklY_421(){ addFrameScript(0, frame1); } public function hideAdd(_arg1:MouseEvent):void{ this.visible = false; } function frame1(){ this.visible = false; close.addEventListener(MouseEvent.CLICK, hideAdd); } } }//package tatum_fla
Section 28
//jgjyiy9_emaiklY_420 (tatum_fla.jgjyiy9_emaiklY_420) package tatum_fla { import flash.display.*; import flash.text.*; public dynamic class jgjyiy9_emaiklY_420 extends MovieClip { public var addition:SimpleButton; public var close:SimpleButton; public var submit:SimpleButton; public var messageDetail:TextField; public var friendName:TextField; public var friend2:MovieClip; public var friend4:MovieClip; public var friend1:MovieClip; public var friend3:MovieClip; public var friendMail:TextField; public var nameDetail:TextField; public var mailDetail:TextField; } }//package tatum_fla
Section 29
//MainTimeline (tatum_fla.MainTimeline) package tatum_fla { import gs.*; import flash.events.*; import flash.display.*; import flash.geom.*; import fl.transitions.easing.*; import flash.media.*; import flash.text.*; import flash.ui.*; import flash.utils.*; import flash.net.*; import flash.system.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.external.*; import flash.filters.*; import flash.printing.*; import flash.xml.*; import gs.easing.*; public dynamic class MainTimeline extends MovieClip { public var gamesbtn:MovieClip; public var t2:TextField; public var t1:TextField; public var preloader:MovieClip; public var dolls:MovieClip; public var nextbtn:MovieClip; public var contestMenu:ContextMenu; public var percentage:Number; public var playagain:MovieClip; public var logo_mc:SimpleButton; public var popup:MovieClip; public var BitsLoaded:TextField; public var queCount:uint; public var que:Array; public var buttons2:MovieClip; public var girldollArray:Array; public var dress1; public var mailArray:Array; public var ent:MovieClip; public var sndon:SimpleButton; public var bullet:backscore; public var doll:MovieClip; public var top; public var bg_btn:MovieClip; public var bgss:MovieClip; public var sndoff:SimpleButton; public var buttons:MovieClip; public var buttonHolder:MovieClip; public var play_more:MovieClip; public var email:MovieClip; public var bulletChannel:SoundChannel; public var contextmenuItem:ContextMenuItem; public var bot; public var pl:MovieClip; public var ball:MovieClip; public function MainTimeline(){ addFrameScript(0, frame1, 1, frame2, 2, frame3, 3, frame4, 4, frame5); } public function hideAdd1(_arg1:MouseEvent):void{ popup.friend1.visible = false; que.push("0"); que.sort(); trace(("close1:" + que)); popup.addition.mouseEnabled = true; } public function hideAdd2(_arg1:MouseEvent):void{ popup.friend2.visible = false; que.push("1"); que.sort(); trace(("close2:" + que)); popup.addition.mouseEnabled = true; } public function hideAdd3(_arg1:MouseEvent):void{ popup.friend3.visible = false; que.push("2"); que.sort(); trace(("close3:" + que)); popup.addition.mouseEnabled = true; } public function hideAdd4(_arg1:MouseEvent):void{ popup.friend4.visible = false; que.push("3"); que.sort(); trace(("close4:" + que)); popup.addition.mouseEnabled = true; } public function result(_arg1:Event):void{ if (t1.text == ""){ nextbtn.visible = false; } else { nextbtn.visible = true; }; } public function dress(_arg1:MouseEvent):void{ doll.dress.nextFrame(); Globe.dress = doll.dress.currentFrame; Globe.tops = 0; Globe.bottoms = 0; doll.tops.gotoAndStop(1); doll.bottoms.gotoAndStop(1); dress1 = 1; top = 0; bot = 0; } public function ser(_arg1:Event){ if (dress1 == 1){ buttons2.nextbtn1.visible = true; } else { if ((((top == 1)) && ((bot == 1)))){ buttons2.nextbtn1.visible = true; } else { buttons2.nextbtn1.visible = false; }; }; } function frame2(){ stop(); Globe.playback = true; if (bulletChannel){ bulletChannel.stop(); }; pl.buttonMode = true; pl.addEventListener(MouseEvent.CLICK, plays); switch (this.loaderInfo.parameters.lang){ case "fr": Globe.temp = 6; pl.gotoAndStop(Globe.temp); break; case "de": Globe.temp = 5; pl.gotoAndStop(Globe.temp); break; case "it": Globe.temp = 4; pl.gotoAndStop(Globe.temp); break; case "pl": Globe.temp = 10; pl.gotoAndStop(Globe.temp); break; case "ru": Globe.temp = 3; pl.gotoAndStop(Globe.temp); break; case "tr": Globe.temp = 7; pl.gotoAndStop(Globe.temp); break; case "sv": Globe.temp = 8; pl.gotoAndStop(Globe.temp); break; case "pt-br": Globe.temp = 11; pl.gotoAndStop(Globe.temp); break; case "es": Globe.temp = 9; pl.gotoAndStop(Globe.temp); break; case "nl": Globe.temp = 2; pl.gotoAndStop(Globe.temp); break; default: Globe.temp = 1; pl.gotoAndStop(Globe.temp); break; }; pl.addEventListener(MouseEvent.ROLL_OVER, rollover); pl.addEventListener(MouseEvent.ROLL_OUT, rollout); } function frame3(){ MochiBot.track(this, "d3c0f842"); stop(); dress1 = 0; top = 0; bot = 0; doll.hair.gotoAndStop(1); doll.glass.gotoAndStop(1); doll.dress.gotoAndStop(1); doll.tops.gotoAndStop(1); doll.bottoms.gotoAndStop(1); doll.shoes.gotoAndStop(1); doll.chain.gotoAndStop(1); doll.earring.gotoAndStop(1); doll.bags.gotoAndStop(1); doll.glass.gotoAndStop(1); Globe.dress = 0; Globe.tops = 0; Globe.bottoms = 0; Globe.chain = 0; Globe.earring = 0; Globe.shoes = 0; Globe.bags = 0; Globe.hair = 0; Globe.glass = 0; Globe.bgss = 0; stage.addEventListener(Event.ENTER_FRAME, ser); bullet = new backscore(); bulletChannel = bullet.play(0, int.MAX_VALUE); sndoff.addEventListener(MouseEvent.CLICK, sndop); sndon.addEventListener(MouseEvent.CLICK, sndst); buttons.dress_btn.addEventListener(MouseEvent.CLICK, dress); buttons.hair_btn.addEventListener(MouseEvent.CLICK, hair); buttons.tops_btn.addEventListener(MouseEvent.CLICK, tops); buttons.bottoms_btn.addEventListener(MouseEvent.CLICK, bottoms); buttons.shoes_btn.addEventListener(MouseEvent.CLICK, shoe); buttons.chain_btn.addEventListener(MouseEvent.CLICK, chain); buttons.studs_btn.addEventListener(MouseEvent.CLICK, earring); buttons.bags_btn.addEventListener(MouseEvent.CLICK, bags); buttons.glass_btn.addEventListener(MouseEvent.CLICK, glass); buttons2.resetbtn.addEventListener(MouseEvent.CLICK, rese); buttons2.nextbtn1.addEventListener(MouseEvent.CLICK, nx); buttons.dress_btn.addEventListener(MouseEvent.ROLL_OVER, rollover122); buttons.dress_btn.addEventListener(MouseEvent.ROLL_OUT, rollout122); buttons.hair_btn.addEventListener(MouseEvent.ROLL_OVER, rollover122); buttons.hair_btn.addEventListener(MouseEvent.ROLL_OUT, rollout122); buttons.tops_btn.addEventListener(MouseEvent.ROLL_OVER, rollover122); buttons.tops_btn.addEventListener(MouseEvent.ROLL_OUT, rollout122); buttons.bottoms_btn.addEventListener(MouseEvent.ROLL_OVER, rollover122); buttons.bottoms_btn.addEventListener(MouseEvent.ROLL_OUT, rollout122); buttons.shoes_btn.addEventListener(MouseEvent.ROLL_OVER, rollover122); buttons.shoes_btn.addEventListener(MouseEvent.ROLL_OUT, rollout122); buttons.chain_btn.addEventListener(MouseEvent.ROLL_OVER, rollover122); buttons.chain_btn.addEventListener(MouseEvent.ROLL_OUT, rollout122); buttons.studs_btn.addEventListener(MouseEvent.ROLL_OVER, rollover122); buttons.studs_btn.addEventListener(MouseEvent.ROLL_OUT, rollout122); buttons.bags_btn.addEventListener(MouseEvent.ROLL_OVER, rollover122); buttons.bags_btn.addEventListener(MouseEvent.ROLL_OUT, rollout122); buttons.glass_btn.addEventListener(MouseEvent.ROLL_OVER, rollover122); buttons.glass_btn.addEventListener(MouseEvent.ROLL_OUT, rollout122); buttons.dress_btn.buttonMode = true; buttons.hair_btn.buttonMode = true; buttons.tops_btn.buttonMode = true; buttons.bottoms_btn.buttonMode = true; buttons.shoes_btn.buttonMode = true; buttons.chain_btn.buttonMode = true; buttons.studs_btn.buttonMode = true; buttons.bags_btn.buttonMode = true; buttons.glass_btn.buttonMode = true; buttons.dress_btn.gotoAndStop(Globe.temp); buttons.hair_btn.gotoAndStop(Globe.temp); buttons.tops_btn.gotoAndStop(Globe.temp); buttons.bottoms_btn.gotoAndStop(Globe.temp); buttons.shoes_btn.gotoAndStop(Globe.temp); buttons.chain_btn.gotoAndStop(Globe.temp); buttons.studs_btn.gotoAndStop(Globe.temp); buttons.bags_btn.gotoAndStop(Globe.temp); buttons.glass_btn.gotoAndStop(Globe.temp); buttons2.resetbtn.addEventListener(MouseEvent.ROLL_OVER, rollover); buttons2.nextbtn1.addEventListener(MouseEvent.ROLL_OVER, rollover); buttons2.resetbtn.addEventListener(MouseEvent.ROLL_OUT, rollout123); buttons2.nextbtn1.addEventListener(MouseEvent.ROLL_OUT, rollout123); buttons2.resetbtn.buttonMode = true; buttons2.nextbtn1.buttonMode = true; buttons2.resetbtn.gotoAndStop(Globe.temp); buttons2.nextbtn1.gotoAndStop(Globe.temp); if (loaderInfo.url.match("123peppy")){ logo_mc.visible = false; sndoff.x = 27.9; sndoff.y = 571.6; sndon.x = 24.6; sndon.y = 570.3; } else { logo_mc.addEventListener(MouseEvent.CLICK, link); }; } function frame4(){ stop(); t1.text = ""; t1.restrict = "A-Z0-9"; ent.gotoAndStop(Globe.temp); nextbtn.gotoAndStop(Globe.temp); nextbtn.buttonMode = true; stage.addEventListener(Event.ENTER_FRAME, result); nextbtn.addEventListener(MouseEvent.CLICK, nextbtns); nextbtn.addEventListener(MouseEvent.ROLL_OVER, rollover2); nextbtn.addEventListener(MouseEvent.ROLL_OUT, rollout2); if (loaderInfo.url.match("123peppy")){ logo_mc.visible = false; sndoff.x = 27.9; sndoff.y = 571.6; sndon.x = 24.6; sndon.y = 570.3; } else { logo_mc.addEventListener(MouseEvent.CLICK, link2); }; } function frame5(){ stop(); dolls.dress.gotoAndStop(Globe.dress); dolls.tops.gotoAndStop(Globe.tops); dolls.bottoms.gotoAndStop(Globe.bottoms); dolls.chain.gotoAndStop(Globe.chain); dolls.shoes.gotoAndStop(Globe.shoes); dolls.earring.gotoAndStop(Globe.earring); dolls.hair.gotoAndStop(Globe.hair); dolls.bags.gotoAndStop(Globe.bags); dolls.glass.gotoAndStop(Globe.glass); switch (this.loaderInfo.parameters.lang){ case "fr": Globe.temp = 6; break; case "de": Globe.temp = 5; break; case "it": Globe.temp = 4; break; case "pl": Globe.temp = 10; break; case "ru": Globe.temp = 3; break; case "tr": Globe.temp = 7; break; case "sv": Globe.temp = 8; break; case "pt-br": Globe.temp = 11; break; case "es": Globe.temp = 9; break; case "nl": Globe.temp = 2; break; default: Globe.temp = 1; break; }; bg_btn.addEventListener(MouseEvent.CLICK, bgss1); bg_btn.buttonMode = true; bg_btn.gotoAndStop(Globe.temp); email.gotoAndStop(Globe.temp); play_more.gotoAndStop(Globe.temp); play_more.buttonMode = true; if (loaderInfo.url.match("123peppy")){ logo_mc.visible = false; sndoff.x = 27.9; sndoff.y = 571.6; sndon.x = 24.6; sndon.y = 570.3; play_more.visible = false; } else { logo_mc.addEventListener(MouseEvent.CLICK, link1); }; play_more.addEventListener(MouseEvent.CLICK, link7); gamesbtn.addEventListener(MouseEvent.CLICK, link11); if (((this.loaderInfo.parameters.bg) && ((Globe.playback == false)))){ email.visible = true; playagain.tabEnabled = false; email.buttonMode = true; email.tabEnabled = false; email.addEventListener(MouseEvent.CLICK, showMailBox); popup.close.addEventListener(MouseEvent.CLICK, hideMailBox); popup.addition.addEventListener(MouseEvent.CLICK, showExtra); popup.submit.addEventListener(MouseEvent.CLICK, callMail); t2.text = this.loaderInfo.parameters.name; girldollArray = this.loaderInfo.parameters.girldoll.split(""); if (this.loaderInfo.parameters.bg == 1){ dolls.dress.gotoAndStop(Number(girldollArray[0]).toString()); dolls.tops.gotoAndStop(Number(girldollArray[1])); dolls.bottoms.gotoAndStop(Number(girldollArray[2])); dolls.chain.gotoAndStop(Number(girldollArray[3])); dolls.shoes.gotoAndStop(Number(girldollArray[4])); dolls.earring.gotoAndStop(Number(girldollArray[5])); dolls.hair.gotoAndStop(Number(girldollArray[6])); dolls.bags.gotoAndStop(Number(girldollArray[7])); dolls.glass.gotoAndStop(Number(girldollArray[8])); bgss.gotoAndStop(Number(girldollArray[9])); } else { if (this.loaderInfo.parameters.bg == 2){ dolls.dress.gotoAndStop(Number(girldollArray[0]).toString()); dolls.tops.gotoAndStop((Number(girldollArray[1]).toString() + Number(girldollArray[2]).toString())); dolls.bottoms.gotoAndStop((Number(girldollArray[3]).toString() + Number(girldollArray[4]).toString())); dolls.chain.gotoAndStop(Number(girldollArray[5])); dolls.shoes.gotoAndStop(Number(girldollArray[6])); dolls.earring.gotoAndStop(Number(girldollArray[7])); dolls.hair.gotoAndStop(Number(girldollArray[8])); dolls.bags.gotoAndStop(Number(girldollArray[9])); dolls.glass.gotoAndStop(Number(girldollArray[10])); bgss.gotoAndStop(Number(girldollArray[11])); } else { if (this.loaderInfo.parameters.bg == 3){ dolls.dress.gotoAndStop(Number(girldollArray[0]).toString()); dolls.tops.gotoAndStop(Number(girldollArray[1])); dolls.bottoms.gotoAndStop((Number(girldollArray[2]).toString() + Number(girldollArray[3]).toString())); dolls.chain.gotoAndStop(Number(girldollArray[4])); dolls.shoes.gotoAndStop(Number(girldollArray[5])); dolls.earring.gotoAndStop(Number(girldollArray[6])); dolls.hair.gotoAndStop(Number(girldollArray[7])); dolls.bags.gotoAndStop(Number(girldollArray[8])); dolls.glass.gotoAndStop(Number(girldollArray[9])); bgss.gotoAndStop(Number(girldollArray[10])); } else { if (this.loaderInfo.parameters.bg == 4){ dolls.dress.gotoAndStop(Number(girldollArray[0]).toString()); dolls.tops.gotoAndStop((Number(girldollArray[1]).toString() + Number(girldollArray[2]).toString())); dolls.bottoms.gotoAndStop(Number(girldollArray[3])); dolls.chain.gotoAndStop(Number(girldollArray[4])); dolls.shoes.gotoAndStop(Number(girldollArray[5])); dolls.earring.gotoAndStop(Number(girldollArray[6])); dolls.hair.gotoAndStop(Number(girldollArray[7])); dolls.bags.gotoAndStop(Number(girldollArray[8])); dolls.glass.gotoAndStop(Number(girldollArray[9])); bgss.gotoAndStop(Number(girldollArray[10])); } else { if (this.loaderInfo.parameters.bg == 5){ dolls.dress.gotoAndStop((Number(girldollArray[0]).toString() + Number(girldollArray[1]).toString())); dolls.tops.gotoAndStop(Number(girldollArray[2]).toString()); dolls.bottoms.gotoAndStop(Number(girldollArray[3])); dolls.chain.gotoAndStop(Number(girldollArray[4])); dolls.shoes.gotoAndStop(Number(girldollArray[5])); dolls.earring.gotoAndStop(Number(girldollArray[6])); dolls.hair.gotoAndStop(Number(girldollArray[7])); dolls.bags.gotoAndStop(Number(girldollArray[8])); dolls.glass.gotoAndStop(Number(girldollArray[9])); bgss.gotoAndStop(Number(girldollArray[10])); }; }; }; }; }; playagain.addEventListener(MouseEvent.CLICK, plas1); playagain.tabEnabled = false; playagain.buttonMode = true; playagain.gotoAndStop(Globe.temp); } else { if (Globe.playback == true){ t2.text = Globe.tex; playagain.tabEnabled = false; email.visible = true; email.buttonMode = true; email.tabEnabled = false; dolls.dress.gotoAndStop(Globe.dress); dolls.tops.gotoAndStop(Globe.tops); dolls.bottoms.gotoAndStop(Globe.bottoms); dolls.glass.gotoAndStop(Globe.glass); dolls.chain.gotoAndStop(Globe.chain); dolls.shoes.gotoAndStop(Globe.shoes); dolls.earring.gotoAndStop(Globe.earring); dolls.hair.gotoAndStop(Globe.hair); bgss.gotoAndStop(Globe.bgss); playagain.addEventListener(MouseEvent.CLICK, plas); playagain.buttonMode = true; playagain.gotoAndStop(Globe.temp); email.addEventListener(MouseEvent.CLICK, showMailBox); popup.close.addEventListener(MouseEvent.CLICK, hideMailBox); popup.addition.addEventListener(MouseEvent.CLICK, showExtra); popup.submit.addEventListener(MouseEvent.CLICK, callMail); }; }; que = new Array("0", "1", "2", "3"); queCount = 0; mailArray = new Array(popup.friend1, popup.friend2, popup.friend3, popup.friend4); Globe.bgss = bgss.currentFrame; popup.friend1.close.addEventListener(MouseEvent.CLICK, hideAdd1); popup.friend2.close.addEventListener(MouseEvent.CLICK, hideAdd2); popup.friend3.close.addEventListener(MouseEvent.CLICK, hideAdd3); popup.friend4.close.addEventListener(MouseEvent.CLICK, hideAdd4); email.addEventListener(MouseEvent.ROLL_OVER, rollover1); email.addEventListener(MouseEvent.ROLL_OUT, rollout1); playagain.addEventListener(MouseEvent.ROLL_OVER, rollover1); playagain.addEventListener(MouseEvent.ROLL_OUT, rollout1); play_more.addEventListener(MouseEvent.ROLL_OVER, rollover1); play_more.addEventListener(MouseEvent.ROLL_OUT, rollout1); bg_btn.addEventListener(MouseEvent.ROLL_OVER, rollover3); bg_btn.addEventListener(MouseEvent.ROLL_OUT, rollout3); email.addEventListener(MouseEvent.ROLL_OVER, rollover4); email.addEventListener(MouseEvent.ROLL_OUT, rollout4); } function frame1(){ stop(); contestMenu = new ContextMenu(); contestMenu.hideBuiltInItems(); contextmenuItem = new ContextMenuItem("www.123peppy.com"); contextmenuItem.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT, Site); contestMenu.customItems.push(contextmenuItem); this.contextMenu = contestMenu; percentage = 0; stage.addEventListener(Event.ENTER_FRAME, BeeMoving); } public function earring(_arg1:MouseEvent):void{ doll.earring.nextFrame(); Globe.earring = doll.earring.currentFrame; } public function rollout4(_arg1:MouseEvent):void{ _arg1.currentTarget.scaleX = 1; _arg1.currentTarget.scaleY = 1; } public function rollout2(_arg1:MouseEvent):void{ _arg1.currentTarget.scaleX = 1; _arg1.currentTarget.scaleY = 1; } public function rollout3(_arg1:MouseEvent):void{ _arg1.currentTarget.scaleX = 1.3; _arg1.currentTarget.scaleY = 1.3; } public function rollout1(_arg1:MouseEvent):void{ _arg1.currentTarget.scaleX = 0.6; _arg1.currentTarget.scaleY = 0.6; } public function chain(_arg1:MouseEvent):void{ doll.chain.nextFrame(); Globe.chain = doll.chain.currentFrame; } public function plas1(_arg1:MouseEvent){ gotoAndStop(2); } public function showMailBox(_arg1:MouseEvent):void{ email.mouseEnabled = true; que[0] = "0"; que[1] = "1"; que[2] = "2"; que[3] = "3"; popup.addition.mouseEnabled = true; TweenLite.to(popup, 0.5, {y:(600 - popup.height), ease:Back.easeOut}); popup.nameDetail.text = ""; popup.mailDetail.text = ""; popup.messageDetail.text = ""; popup.friendName.text = ""; popup.friendMail.text = ""; popup.friend1.friendMail.text = ""; popup.friend2.friendMail.text = ""; popup.friend3.friendMail.text = ""; popup.friend4.friendMail.text = ""; } public function rollover(_arg1:MouseEvent):void{ _arg1.currentTarget.scaleX = 1.1; _arg1.currentTarget.scaleY = 1.1; } public function rollout123(_arg1:MouseEvent):void{ _arg1.currentTarget.scaleX = 1; _arg1.currentTarget.scaleY = 1; } public function rollout122(_arg1:MouseEvent):void{ _arg1.currentTarget.scaleX = 1; _arg1.currentTarget.scaleY = 1; } public function shoe(_arg1:MouseEvent):void{ doll.shoes.nextFrame(); Globe.shoes = doll.shoes.currentFrame; } public function hideMailBox(_arg1:MouseEvent):void{ var event = _arg1; email.mouseEnabled = true; TweenLite.to(popup, 0.5, {y:(600 + popup.height), ease:Back.easeIn}); var _local3 = popup; with (_local3) { friend1.visible = (friend2.visible = (friend3.visible = (friend4.visible = false))); }; queCount = 0; popup.nameDetail.text = ""; popup.mailDetail.text = ""; popup.messageDetail.text = ""; popup.friendName.text = ""; popup.friendMail.text = ""; popup.friend1.friendMail.text = ""; popup.friend2.friendMail.text = ""; popup.friend3.friendMail.text = ""; popup.friend4.friendMail.text = ""; } public function sndop(_arg1:MouseEvent):void{ bulletChannel.stop(); sndon.visible = true; sndoff.visible = false; } public function showExtra(_arg1:MouseEvent):void{ if (queCount < 4){ queCount++; trace(queCount); }; trace(("que[0]:" + que[0])); switch (que[0]){ case que[0]: mailArray[que[0]].visible = true; que.splice(0, 1); que.sort(); trace(("after switch:" + que)); if (que.length == 0){ popup.addition.mouseEnabled = false; }; break; }; } public function nextbtns(_arg1:MouseEvent):void{ Globe.tex = t1.text; trace(Globe.tex); nextFrame(); stage.removeEventListener(Event.ENTER_FRAME, result); } public function plas(_arg1:MouseEvent){ gotoAndStop(2); } public function callMail(_arg1:MouseEvent):void{ var girlDoll:String; var countRequest:URLRequest; var countVariables:URLVariables; var loadG:URLLoader; var ups:Function; var request:URLRequest; var variables:URLVariables; var event = _arg1; ups = function (_arg1:Event):void{ }; Globe.bgss = bgss.currentFrame; girlDoll = (((((((((dolls.dress.currentFrame.toString() + dolls.tops.currentFrame.toString()) + dolls.bottoms.currentFrame.toString()) + dolls.chain.currentFrame.toString()) + dolls.shoes.currentFrame.toString()) + dolls.earring.currentFrame.toString()) + dolls.hair.currentFrame.toString()) + dolls.bags.currentFrame.toString()) + dolls.glass.currentFrame.toString()) + bgss.currentFrame.toString()); trace((girlDoll + "Final")); countRequest = new URLRequest("http://www.123peppy.com/gamecount"); countVariables = new URLVariables(); countVariables.gameid = this.loaderInfo.parameters.gameid; countRequest.data = countVariables; loadG = new URLLoader(); loadG.load(countRequest); loadG.addEventListener(Event.COMPLETE, ups); email.mouseEnabled = true; request = new URLRequest("http://facefun.123peppy.com/gamemail.php"); request.method = URLRequestMethod.POST; variables = new URLVariables(); variables.nameDetail = popup.nameDetail.text; variables.mailDetail = popup.mailDetail.text; variables.messageDetail = popup.messageDetail.text; variables.friendName = popup.friendName.text; variables.friendMail = popup.friendMail.text; variables.gamename = "Tatum"; variables.friendMail1 = popup.friend1.friendMail.text; variables.friendMail2 = popup.friend2.friendMail.text; variables.friendMail3 = popup.friend3.friendMail.text; variables.friendMail4 = popup.friend4.friendMail.text; variables.girldoll = girlDoll; switch (this.loaderInfo.parameters.lang){ case "fr": variables.path = "http://www.123peppy.com/fr/play/tatum"; break; case "de": variables.path = "http://www.123peppy.com/de/play/tatum"; break; case "it": variables.path = "http://www.123peppy.com/it/play/tatum"; break; case "pl": variables.path = "http://www.123peppy.com/pl/play/tatum"; break; case "ru": variables.path = "http://www.123peppy.com/ru/play/tatum"; break; case "tr": variables.path = "http://www.123peppy.com/tr/play/tatum"; break; case "sv": variables.path = "http://www.123peppy.com/sv/play/tatum"; break; case "pt-br": variables.path = "http://www.123peppy.com/pt-br/play/tatum"; break; case "es": variables.path = "http://www.123peppy.com/es/play/tatum"; break; case "nl": variables.path = "http://www.123peppy.com/nl/play/tatum"; break; default: variables.path = "http://www.123peppy.com/play/tatum"; break; }; variables.name = t2.text; if (dolls.dress.currentFrame > 9){ variables.bg = 5; } else { if ((((dolls.tops.currentFrame > 9)) && ((dolls.bottoms.currentFrame <= 9)))){ variables.bg = 4; } else { if ((((dolls.bottoms.currentFrame > 9)) && ((dolls.tops.currentFrame <= 9)))){ variables.bg = 3; } else { if ((((dolls.tops.currentFrame > 9)) && ((dolls.bottoms.currentFrame > 9)))){ variables.bg = 2; } else { variables.bg = 1; }; }; }; }; trace(variables.bg); request.data = variables; sendToURL(request); TweenLite.to(popup, 0.5, {y:(600 + popup.height), ease:Back.easeIn}); var _local3 = popup; with (_local3) { friend1.visible = (friend2.visible = (friend3.visible = (friend4.visible = false))); }; queCount = 0; } public function BeeMoving(_arg1:Event):void{ var _local2:Number; var _local3:Number; var _local4:Number; var _local5:Number; _local2 = (mouseX - ball.x); _local3 = (mouseY - ball.y); ball.x = (ball.x + (_local2 * 0.2)); ball.y = (ball.y + (_local3 * 0.2)); _local4 = loaderInfo.bytesLoaded; _local5 = loaderInfo.bytesTotal; percentage = Math.round(((_local4 / _local5) * 100)); BitsLoaded.text = (((Math.round((_local4 / 0x0400)) + "kBs /") + Math.round((_local5 / 0x0400))) + "kBs"); if (_local4 == _local5){ stage.removeEventListener(Event.ENTER_FRAME, BeeMoving); if (this.loaderInfo.parameters.bg){ gotoAndStop(5); } else { gotoAndStop(2); }; }; } public function bags(_arg1:MouseEvent):void{ doll.bags.nextFrame(); Globe.bags = doll.bags.currentFrame; } public function Site(_arg1:Event):void{ var _local2:URLRequest; _local2 = new URLRequest("http://www.123peppy.com"); navigateToURL(_local2, "_blank"); } public function bgss1(_arg1:MouseEvent):void{ bgss.nextFrame(); Globe.bgss = bgss.currentFrame; } public function link1(_arg1:MouseEvent){ var _local2:URLRequest; _local2 = new URLRequest("http://www.123peppy.com"); navigateToURL(_local2, "_blank"); } public function link2(_arg1:MouseEvent){ var _local2:URLRequest; _local2 = new URLRequest("http://www.123peppy.com"); navigateToURL(_local2, "_blank"); } public function glass(_arg1:MouseEvent):void{ doll.glass.nextFrame(); Globe.glass = doll.glass.currentFrame; } public function link7(_arg1:MouseEvent){ var _local2:URLRequest; _local2 = new URLRequest("http://www.123peppy.com"); navigateToURL(_local2, "_blank"); } public function rollover4(_arg1:MouseEvent):void{ _arg1.currentTarget.scaleX = 0.9; _arg1.currentTarget.scaleY = 0.9; } public function sndst(_arg1:MouseEvent):void{ bulletChannel = bullet.play(0, int.MAX_VALUE); sndoff.visible = true; sndon.visible = false; } public function rollover1(_arg1:MouseEvent):void{ _arg1.currentTarget.scaleX = 0.5; _arg1.currentTarget.scaleY = 0.5; } public function rollover2(_arg1:MouseEvent):void{ _arg1.currentTarget.scaleX = 1.1; _arg1.currentTarget.scaleY = 1.1; } public function rollover3(_arg1:MouseEvent):void{ _arg1.currentTarget.scaleX = 1.2; _arg1.currentTarget.scaleY = 1.2; } public function link11(_arg1:MouseEvent){ var _local2:URLRequest; _local2 = new URLRequest("http://www.didigames.com"); navigateToURL(_local2, "_blank"); } public function bottoms(_arg1:MouseEvent):void{ doll.bottoms.nextFrame(); Globe.bottoms = doll.bottoms.currentFrame; Globe.dress = 0; doll.dress.gotoAndStop(1); dress1 = 0; bot = 1; } public function rollout(_arg1:MouseEvent):void{ _arg1.currentTarget.scaleX = 1; _arg1.currentTarget.scaleY = 1; } public function tops(_arg1:MouseEvent):void{ doll.tops.nextFrame(); Globe.tops = doll.tops.currentFrame; Globe.dress = 0; doll.dress.gotoAndStop(1); dress1 = 0; top = 1; } public function rollover122(_arg1:MouseEvent):void{ _arg1.currentTarget.scaleX = 1.1; _arg1.currentTarget.scaleY = 1.1; } public function rese(_arg1:MouseEvent):void{ doll.hair.gotoAndStop(1); doll.glass.gotoAndStop(1); doll.dress.gotoAndStop(1); doll.tops.gotoAndStop(1); doll.bottoms.gotoAndStop(1); doll.shoes.gotoAndStop(1); doll.chain.gotoAndStop(1); doll.earring.gotoAndStop(1); doll.bags.gotoAndStop(1); dress1 = 0; top = 0; bot = 0; Globe.dress = 0; Globe.tops = 0; Globe.bottoms = 0; Globe.chain = 0; Globe.earring = 0; Globe.shoes = 0; Globe.bags = 0; Globe.hair = 0; Globe.glass = 0; } public function rollover123(_arg1:MouseEvent):void{ _arg1.currentTarget.scaleX = 1.1; _arg1.currentTarget.scaleY = 1.1; } public function nx(_arg1:MouseEvent):void{ stage.removeEventListener(Event.ENTER_FRAME, ser); nextFrame(); } public function plays(_arg1:MouseEvent):void{ nextFrame(); } public function hair(_arg1:MouseEvent):void{ doll.hair.nextFrame(); Globe.hair = doll.hair.currentFrame; } public function link(_arg1:MouseEvent){ var _local2:URLRequest; _local2 = new URLRequest("http://www.123peppy.com"); navigateToURL(_local2, "_blank"); } } }//package tatum_fla
Section 30
//peppydfgfsds_loader_19 (tatum_fla.peppydfgfsds_loader_19) package tatum_fla { import flash.display.*; public dynamic class peppydfgfsds_loader_19 extends MovieClip { public function peppydfgfsds_loader_19(){ addFrameScript(46, frame47); } function frame47(){ stop(); } } }//package tatum_fla
Section 31
//shoes_205 (tatum_fla.shoes_205) package tatum_fla { import flash.display.*; public dynamic class shoes_205 extends MovieClip { public function shoes_205(){ addFrameScript(0, frame1, 5, frame6); } function frame6(){ gotoAndStop(1); } function frame1(){ stop(); } } }//package tatum_fla
Section 32
//shoess_381 (tatum_fla.shoess_381) package tatum_fla { import flash.display.*; public dynamic class shoess_381 extends MovieClip { public function shoess_381(){ addFrameScript(0, frame1, 6, frame7); } function frame7(){ gotoAndStop(2); } function frame1(){ stop(); } } }//package tatum_fla
Section 33
//tops_384 (tatum_fla.tops_384) package tatum_fla { import flash.display.*; public dynamic class tops_384 extends MovieClip { public function tops_384(){ addFrameScript(0, frame1, 13, frame14); } function frame14(){ gotoAndStop(2); } function frame1(){ stop(); } } }//package tatum_fla
Section 34
//topscopy_289 (tatum_fla.topscopy_289) package tatum_fla { import flash.display.*; public dynamic class topscopy_289 extends MovieClip { public function topscopy_289(){ addFrameScript(0, frame1, 13, frame14); } function frame14(){ gotoAndStop(2); } function frame1(){ stop(); } } }//package tatum_fla
Section 35
//vgjct_400 (tatum_fla.vgjct_400) package tatum_fla { import flash.display.*; public dynamic class vgjct_400 extends MovieClip { public function vgjct_400(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package tatum_fla
Section 36
//vgjctcopy_402 (tatum_fla.vgjctcopy_402) package tatum_fla { import flash.display.*; public dynamic class vgjctcopy_402 extends MovieClip { public function vgjctcopy_402(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package tatum_fla
Section 37
//vgjctcopy10_418 (tatum_fla.vgjctcopy10_418) package tatum_fla { import flash.display.*; public dynamic class vgjctcopy10_418 extends MovieClip { public function vgjctcopy10_418(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package tatum_fla
Section 38
//vgjctcopy11_419 (tatum_fla.vgjctcopy11_419) package tatum_fla { import flash.display.*; public dynamic class vgjctcopy11_419 extends MovieClip { public function vgjctcopy11_419(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package tatum_fla
Section 39
//vgjctcopy12_416 (tatum_fla.vgjctcopy12_416) package tatum_fla { import flash.display.*; public dynamic class vgjctcopy12_416 extends MovieClip { public function vgjctcopy12_416(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package tatum_fla
Section 40
//vgjctcopy2_405 (tatum_fla.vgjctcopy2_405) package tatum_fla { import flash.display.*; public dynamic class vgjctcopy2_405 extends MovieClip { public function vgjctcopy2_405(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package tatum_fla
Section 41
//vgjctcopy3_406 (tatum_fla.vgjctcopy3_406) package tatum_fla { import flash.display.*; public dynamic class vgjctcopy3_406 extends MovieClip { public function vgjctcopy3_406(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package tatum_fla
Section 42
//vgjctcopy4_408 (tatum_fla.vgjctcopy4_408) package tatum_fla { import flash.display.*; public dynamic class vgjctcopy4_408 extends MovieClip { public function vgjctcopy4_408(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package tatum_fla
Section 43
//vgjctcopy5_407 (tatum_fla.vgjctcopy5_407) package tatum_fla { import flash.display.*; public dynamic class vgjctcopy5_407 extends MovieClip { public function vgjctcopy5_407(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package tatum_fla
Section 44
//vgjctcopy6_409 (tatum_fla.vgjctcopy6_409) package tatum_fla { import flash.display.*; public dynamic class vgjctcopy6_409 extends MovieClip { public function vgjctcopy6_409(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package tatum_fla
Section 45
//vgjctcopy7_410 (tatum_fla.vgjctcopy7_410) package tatum_fla { import flash.display.*; public dynamic class vgjctcopy7_410 extends MovieClip { public function vgjctcopy7_410(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package tatum_fla
Section 46
//vgjctcopy8_411 (tatum_fla.vgjctcopy8_411) package tatum_fla { import flash.display.*; public dynamic class vgjctcopy8_411 extends MovieClip { public function vgjctcopy8_411(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package tatum_fla
Section 47
//vgjctcopy9_412 (tatum_fla.vgjctcopy9_412) package tatum_fla { import flash.display.*; public dynamic class vgjctcopy9_412 extends MovieClip { public function vgjctcopy9_412(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package tatum_fla
Section 48
//backscore (backscore) package { import flash.media.*; public dynamic class backscore extends Sound { } }//package
Section 49
//Globe (Globe) package { public class Globe { public static var chain:Number = 0; public static var tops:Number = 0; public static var earring:Number = 0; public static var temp:Number = 0; public static var playback:Boolean = false; public static var hair:Number = 0; public static var bgss:Number = 0; public static var tex:String = ""; public static var shoes:Number = 0; public static var bags:Number = 0; public static var bottoms:Number = 0; public static var glass:Number = 0; public static var dress:Number = 0; } }//package
Section 50
//MochiBot (MochiBot) package { import flash.display.*; import flash.net.*; import flash.system.*; public dynamic class MochiBot extends Sprite { public static function track(_arg1:Sprite, _arg2:String):MochiBot{ var _local3:MochiBot; var _local4:String; var _local5:URLVariables; var _local6:String; var _local7:URLRequest; var _local8:Loader; if (Security.sandboxType == "localWithFile"){ return (null); }; _local3 = new (MochiBot); _arg1.addChild(_local3); Security.allowDomain("*"); Security.allowInsecureDomain("*"); _local4 = "http://core.mochibot.com/my/core.swf"; _local5 = new URLVariables(); _local5["sb"] = Security.sandboxType; _local5["v"] = Capabilities.version; _local5["swfid"] = _arg2; _local5["mv"] = "8"; _local5["fv"] = "9"; _local6 = _local3.root.loaderInfo.loaderURL; if (_local6.indexOf("http") == 0){ _local5["url"] = _local6; } else { _local5["url"] = "local"; }; _local7 = new URLRequest(_local4); _local7.contentType = "application/x-www-form-urlencoded"; _local7.method = URLRequestMethod.POST; _local7.data = _local5; _local8 = new Loader(); _local3.addChild(_local8); _local8.load(_local7); return (_local3); } } }//package

Library Items

Symbol 1 Sound {backscore}
Symbol 2 GraphicUsed by:3
Symbol 3 MovieClipUses:2Used by:12
Symbol 4 GraphicUsed by:5
Symbol 5 MovieClipUses:4Used by:12
Symbol 6 GraphicUsed by:7
Symbol 7 MovieClipUses:6Used by:12
Symbol 8 GraphicUsed by:9
Symbol 9 MovieClipUses:8Used by:12
Symbol 10 GraphicUsed by:11
Symbol 11 MovieClipUses:10Used by:12
Symbol 12 MovieClipUses:3 5 7 9 11Used by:Timeline
Symbol 13 GraphicUsed by:14
Symbol 14 MovieClipUses:13Used by:26
Symbol 15 GraphicUsed by:16
Symbol 16 MovieClipUses:15Used by:26
Symbol 17 GraphicUsed by:26
Symbol 18 GraphicUsed by:26
Symbol 19 GraphicUsed by:26
Symbol 20 GraphicUsed by:26
Symbol 21 GraphicUsed by:26
Symbol 22 GraphicUsed by:26
Symbol 23 GraphicUsed by:26
Symbol 24 GraphicUsed by:26
Symbol 25 GraphicUsed by:26
Symbol 26 MovieClip {tatum_fla.cbvdsfdsf_loader_7}Uses:14 16 17 18 19 20 21 22 23 24 25Used by:Timeline
Symbol 27 FontUsed by:28
Symbol 28 EditableTextUses:27Used by:Timeline
Symbol 29 GraphicUsed by:Timeline
Symbol 30 GraphicUsed by:31
Symbol 31 MovieClipUses:30Used by:Timeline
Symbol 32 FontUsed by:33 1040 1050 1124
Symbol 33 TextUses:32Used by:Timeline
Symbol 34 GraphicUsed by:58
Symbol 35 GraphicUsed by:37
Symbol 36 MovieClipUsed by:37
Symbol 37 MovieClipUses:35 36Used by:58
Symbol 38 GraphicUsed by:48
Symbol 39 ShapeTweeningUsed by:47
Symbol 40 GraphicUsed by:47
Symbol 41 ShapeTweeningUsed by:47
Symbol 42 GraphicUsed by:47
Symbol 43 ShapeTweeningUsed by:47
Symbol 44 GraphicUsed by:47
Symbol 45 ShapeTweeningUsed by:47
Symbol 46 GraphicUsed by:47
Symbol 47 MovieClipUses:39 40 41 42 43 44 45 46Used by:48
Symbol 48 MovieClipUses:38 47Used by:56
Symbol 49 GraphicUsed by:54
Symbol 50 GraphicUsed by:54
Symbol 51 GraphicUsed by:52
Symbol 52 MovieClipUses:51Used by:54
Symbol 53 GraphicUsed by:54
Symbol 54 MovieClipUses:49 50 52 53Used by:56
Symbol 55 GraphicUsed by:56
Symbol 56 MovieClipUses:48 54 55Used by:58
Symbol 57 GraphicUsed by:58
Symbol 58 MovieClipUses:34 37 56 57Used by:Timeline
Symbol 59 FontUsed by:60 61 62 63 64 65 67 68 69 70 71 72 73 74 1017
Symbol 60 TextUses:59Used by:66
Symbol 61 TextUses:59Used by:66
Symbol 62 TextUses:59Used by:66
Symbol 63 TextUses:59Used by:66
Symbol 64 TextUses:59Used by:66
Symbol 65 TextUses:59Used by:66
Symbol 66 MovieClip {tatum_fla.peppydfgfsds_loader_19}Uses:60 61 62 63 64 65Used by:Timeline
Symbol 67 TextUses:59Used by:75
Symbol 68 TextUses:59Used by:75
Symbol 69 TextUses:59Used by:75
Symbol 70 TextUses:59Used by:75
Symbol 71 TextUses:59Used by:75
Symbol 72 TextUses:59Used by:75
Symbol 73 TextUses:59Used by:75
Symbol 74 TextUses:59Used by:75
Symbol 75 MovieClipUses:67 68 69 70 71 72 73 74Used by:Timeline
Symbol 76 BitmapUsed by:78
Symbol 77 BitmapUsed by:78
Symbol 78 GraphicUses:76 77Used by:Timeline
Symbol 79 GraphicUsed by:80
Symbol 80 MovieClipUses:79Used by:Timeline
Symbol 81 GraphicUsed by:82
Symbol 82 MovieClipUses:81Used by:Timeline
Symbol 83 GraphicUsed by:84
Symbol 84 MovieClipUses:83Used by:Timeline
Symbol 85 GraphicUsed by:Timeline
Symbol 86 GraphicUsed by:87
Symbol 87 MovieClipUses:86Used by:Timeline
Symbol 88 GraphicUsed by:Timeline
Symbol 89 GraphicUsed by:90
Symbol 90 MovieClipUses:89Used by:Timeline
Symbol 91 GraphicUsed by:Timeline
Symbol 92 GraphicUsed by:93
Symbol 93 MovieClipUses:92Used by:Timeline
Symbol 94 GraphicUsed by:Timeline
Symbol 95 GraphicUsed by:96
Symbol 96 MovieClipUses:95Used by:Timeline
Symbol 97 BitmapUsed by:99
Symbol 98 BitmapUsed by:99
Symbol 99 GraphicUses:97 98Used by:Timeline
Symbol 100 GraphicUsed by:101
Symbol 101 MovieClipUses:100Used by:Timeline
Symbol 102 GraphicUsed by:103
Symbol 103 MovieClipUses:102Used by:Timeline
Symbol 104 BitmapUsed by:105
Symbol 105 GraphicUses:104Used by:Timeline
Symbol 106 GraphicUsed by:107
Symbol 107 MovieClipUses:106Used by:Timeline
Symbol 108 GraphicUsed by:109
Symbol 109 MovieClipUses:108Used by:Timeline
Symbol 110 GraphicUsed by:111
Symbol 111 MovieClipUses:110Used by:Timeline
Symbol 112 BitmapUsed by:114
Symbol 113 BitmapUsed by:114
Symbol 114 GraphicUses:112 113Used by:Timeline
Symbol 115 GraphicUsed by:116
Symbol 116 MovieClipUses:115Used by:Timeline
Symbol 117 GraphicUsed by:118
Symbol 118 MovieClipUses:117Used by:Timeline
Symbol 119 GraphicUsed by:120
Symbol 120 MovieClipUses:119Used by:Timeline
Symbol 121 GraphicUsed by:122
Symbol 122 MovieClipUses:121Used by:Timeline
Symbol 123 BitmapUsed by:124
Symbol 124 GraphicUses:123Used by:Timeline
Symbol 125 GraphicUsed by:126
Symbol 126 MovieClipUses:125Used by:Timeline
Symbol 127 GraphicUsed by:128
Symbol 128 MovieClipUses:127Used by:Timeline
Symbol 129 BitmapUsed by:130
Symbol 130 GraphicUses:129Used by:Timeline
Symbol 131 GraphicUsed by:132
Symbol 132 MovieClipUses:131Used by:Timeline
Symbol 133 GraphicUsed by:134
Symbol 134 MovieClipUses:133Used by:Timeline
Symbol 135 GraphicUsed by:136
Symbol 136 MovieClipUses:135Used by:Timeline
Symbol 137 GraphicUsed by:Timeline
Symbol 138 GraphicUsed by:139
Symbol 139 MovieClipUses:138Used by:Timeline
Symbol 140 BitmapUsed by:141 824
Symbol 141 GraphicUses:140Used by:Timeline
Symbol 142 GraphicUsed by:143
Symbol 143 MovieClipUses:142Used by:Timeline
Symbol 144 GraphicUsed by:Timeline
Symbol 145 GraphicUsed by:146
Symbol 146 MovieClipUses:145Used by:Timeline
Symbol 147 BitmapUsed by:148 826
Symbol 148 GraphicUses:147Used by:Timeline
Symbol 149 GraphicUsed by:150
Symbol 150 MovieClipUses:149Used by:Timeline
Symbol 151 GraphicUsed by:152
Symbol 152 MovieClipUses:151Used by:Timeline
Symbol 153 GraphicUsed by:154
Symbol 154 MovieClipUses:153Used by:Timeline
Symbol 155 BitmapUsed by:156 827
Symbol 156 GraphicUses:155Used by:Timeline
Symbol 157 GraphicUsed by:158
Symbol 158 MovieClipUses:157Used by:Timeline
Symbol 159 GraphicUsed by:160
Symbol 160 MovieClipUses:159Used by:Timeline
Symbol 161 GraphicUsed by:162
Symbol 162 MovieClipUses:161Used by:Timeline
Symbol 163 GraphicUsed by:164
Symbol 164 MovieClipUses:163Used by:Timeline
Symbol 165 GraphicUsed by:166
Symbol 166 MovieClipUses:165Used by:Timeline
Symbol 167 GraphicUsed by:168
Symbol 168 MovieClipUses:167Used by:Timeline
Symbol 169 GraphicUsed by:Timeline
Symbol 170 GraphicUsed by:171
Symbol 171 MovieClipUses:170Used by:Timeline
Symbol 172 GraphicUsed by:Timeline
Symbol 173 GraphicUsed by:174
Symbol 174 MovieClipUses:173Used by:Timeline
Symbol 175 GraphicUsed by:176
Symbol 176 MovieClipUses:175Used by:Timeline
Symbol 177 BitmapUsed by:178 830
Symbol 178 GraphicUses:177Used by:Timeline
Symbol 179 GraphicUsed by:180
Symbol 180 MovieClipUses:179Used by:Timeline
Symbol 181 GraphicUsed by:Timeline
Symbol 182 GraphicUsed by:183 189
Symbol 183 MovieClipUses:182Used by:Timeline
Symbol 184 GraphicUsed by:185 190 199
Symbol 185 MovieClipUses:184Used by:Timeline
Symbol 186 GraphicUsed by:187
Symbol 187 MovieClipUses:186Used by:Timeline
Symbol 188 GraphicUsed by:Timeline
Symbol 189 MovieClipUses:182Used by:Timeline
Symbol 190 MovieClipUses:184Used by:Timeline
Symbol 191 GraphicUsed by:Timeline
Symbol 192 GraphicUsed by:193
Symbol 193 MovieClipUses:192Used by:Timeline
Symbol 194 GraphicUsed by:195
Symbol 195 MovieClipUses:194Used by:Timeline
Symbol 196 GraphicUsed by:Timeline
Symbol 197 GraphicUsed by:198
Symbol 198 MovieClipUses:197Used by:Timeline
Symbol 199 MovieClipUses:184Used by:Timeline
Symbol 200 GraphicUsed by:Timeline
Symbol 201 GraphicUsed by:202
Symbol 202 MovieClipUses:201Used by:Timeline
Symbol 203 BitmapUsed by:204 836
Symbol 204 GraphicUses:203Used by:Timeline
Symbol 205 GraphicUsed by:206
Symbol 206 MovieClipUses:205Used by:Timeline
Symbol 207 GraphicUsed by:Timeline
Symbol 208 GraphicUsed by:209
Symbol 209 MovieClipUses:208Used by:Timeline
Symbol 210 GraphicUsed by:Timeline
Symbol 211 GraphicUsed by:212
Symbol 212 MovieClipUses:211Used by:Timeline
Symbol 213 GraphicUsed by:Timeline
Symbol 214 GraphicUsed by:215
Symbol 215 MovieClipUses:214Used by:Timeline
Symbol 216 GraphicUsed by:217
Symbol 217 MovieClipUses:216Used by:Timeline
Symbol 218 GraphicUsed by:Timeline
Symbol 219 GraphicUsed by:220
Symbol 220 MovieClipUses:219Used by:Timeline
Symbol 221 GraphicUsed by:Timeline
Symbol 222 GraphicUsed by:223
Symbol 223 MovieClipUses:222Used by:Timeline
Symbol 224 GraphicUsed by:Timeline
Symbol 225 GraphicUsed by:226
Symbol 226 MovieClipUses:225Used by:Timeline
Symbol 227 GraphicUsed by:Timeline
Symbol 228 GraphicUsed by:229
Symbol 229 MovieClipUses:228Used by:Timeline
Symbol 230 GraphicUsed by:Timeline
Symbol 231 GraphicUsed by:232
Symbol 232 MovieClipUses:231Used by:Timeline
Symbol 233 GraphicUsed by:Timeline
Symbol 234 GraphicUsed by:235
Symbol 235 MovieClipUses:234Used by:Timeline
Symbol 236 BitmapUsed by:237 905
Symbol 237 GraphicUses:236Used by:Timeline
Symbol 238 GraphicUsed by:239
Symbol 239 MovieClipUses:238Used by:Timeline
Symbol 240 GraphicUsed by:241
Symbol 241 MovieClipUses:240Used by:Timeline
Symbol 242 BitmapUsed by:244 906
Symbol 243 BitmapUsed by:244 906
Symbol 244 GraphicUses:242 243Used by:Timeline
Symbol 245 GraphicUsed by:246
Symbol 246 MovieClipUses:245Used by:Timeline
Symbol 247 GraphicUsed by:248
Symbol 248 MovieClipUses:247Used by:Timeline
Symbol 249 GraphicUsed by:Timeline
Symbol 250 GraphicUsed by:251
Symbol 251 MovieClipUses:250Used by:Timeline
Symbol 252 GraphicUsed by:253
Symbol 253 MovieClipUses:252Used by:Timeline
Symbol 254 GraphicUsed by:255
Symbol 255 MovieClipUses:254Used by:Timeline
Symbol 256 GraphicUsed by:Timeline
Symbol 257 GraphicUsed by:258
Symbol 258 MovieClipUses:257Used by:Timeline
Symbol 259 GraphicUsed by:260
Symbol 260 MovieClipUses:259Used by:Timeline
Symbol 261 GraphicUsed by:262
Symbol 262 MovieClipUses:261Used by:Timeline
Symbol 263 GraphicUsed by:264
Symbol 264 MovieClipUses:263Used by:Timeline
Symbol 265 GraphicUsed by:266
Symbol 266 MovieClipUses:265Used by:Timeline
Symbol 267 GraphicUsed by:268
Symbol 268 MovieClipUses:267Used by:Timeline
Symbol 269 GraphicUsed by:270
Symbol 270 MovieClipUses:269Used by:Timeline
Symbol 271 GraphicUsed by:Timeline
Symbol 272 GraphicUsed by:273
Symbol 273 MovieClipUses:272Used by:731  Timeline
Symbol 274 GraphicUsed by:275
Symbol 275 MovieClipUses:274Used by:731  Timeline
Symbol 276 BitmapUsed by:278
Symbol 277 BitmapUsed by:278 326
Symbol 278 GraphicUses:276 277Used by:299
Symbol 279 GraphicUsed by:280
Symbol 280 MovieClipUses:279Used by:299 327
Symbol 281 GraphicUsed by:282
Symbol 282 MovieClipUses:281Used by:299 327
Symbol 283 GraphicUsed by:284
Symbol 284 MovieClipUses:283Used by:299 327
Symbol 285 GraphicUsed by:286
Symbol 286 MovieClipUses:285Used by:299 327
Symbol 287 GraphicUsed by:288
Symbol 288 MovieClipUses:287Used by:299 327
Symbol 289 GraphicUsed by:290
Symbol 290 MovieClipUses:289Used by:299 327
Symbol 291 GraphicUsed by:292
Symbol 292 MovieClipUses:291Used by:299 327
Symbol 293 GraphicUsed by:294
Symbol 294 MovieClipUses:293Used by:299 327
Symbol 295 GraphicUsed by:296
Symbol 296 MovieClipUses:295Used by:299 327
Symbol 297 GraphicUsed by:298
Symbol 298 MovieClipUses:297Used by:299
Symbol 299 MovieClipUses:278 280 282 284 286 288 290 292 294 296 298Used by:1001  Timeline
Symbol 300 BitmapUsed by:301
Symbol 301 GraphicUses:300Used by:313
Symbol 302 GraphicUsed by:303
Symbol 303 MovieClipUses:302Used by:313
Symbol 304 GraphicUsed by:305
Symbol 305 MovieClipUses:304Used by:313
Symbol 306 GraphicUsed by:307
Symbol 307 MovieClipUses:306Used by:313
Symbol 308 GraphicUsed by:309
Symbol 309 MovieClipUses:308Used by:313
Symbol 310 GraphicUsed by:311
Symbol 311 MovieClipUses:310Used by:313
Symbol 312 GraphicUsed by:313
Symbol 313 MovieClipUses:301 303 305 307 309 311 312Used by:727 1002  Timeline
Symbol 314 GraphicUsed by:323
Symbol 315 GraphicUsed by:316
Symbol 316 MovieClipUses:315Used by:323 325
Symbol 317 GraphicUsed by:318
Symbol 318 MovieClipUses:317Used by:323 325
Symbol 319 GraphicUsed by:320
Symbol 320 MovieClipUses:319Used by:323 325
Symbol 321 GraphicUsed by:322
Symbol 322 MovieClipUses:321Used by:323 325
Symbol 323 MovieClipUses:314 316 318 320 322Used by:727 1002  Timeline
Symbol 324 GraphicUsed by:325
Symbol 325 MovieClipUses:324 316 318 320 322Used by:727 1002  Timeline
Symbol 326 GraphicUses:277Used by:327
Symbol 327 MovieClipUses:326 280 282 284 286 288 290 292 294 296Used by:1001  Timeline
Symbol 328 GraphicUsed by:333
Symbol 329 GraphicUsed by:330
Symbol 330 MovieClipUses:329Used by:333
Symbol 331 GraphicUsed by:332
Symbol 332 MovieClipUses:331Used by:333
Symbol 333 MovieClipUses:328 330 332Used by:1001  Timeline
Symbol 334 GraphicUsed by:341
Symbol 335 GraphicUsed by:336
Symbol 336 MovieClipUses:335Used by:341
Symbol 337 GraphicUsed by:338
Symbol 338 MovieClipUses:337Used by:341
Symbol 339 GraphicUsed by:340
Symbol 340 MovieClipUses:339Used by:341
Symbol 341 MovieClipUses:334 336 338 340Used by:1001  Timeline
Symbol 342 BitmapUsed by:343
Symbol 343 GraphicUses:342Used by:352
Symbol 344 GraphicUsed by:345
Symbol 345 MovieClipUses:344Used by:352 658
Symbol 346 GraphicUsed by:347
Symbol 347 MovieClipUses:346Used by:352 658
Symbol 348 GraphicUsed by:349
Symbol 349 MovieClipUses:348Used by:352 658
Symbol 350 GraphicUsed by:351
Symbol 351 MovieClipUses:350Used by:352 658
Symbol 352 MovieClipUses:343 345 347 349 351Used by:1001  Timeline
Symbol 353 BitmapUsed by:355
Symbol 354 BitmapUsed by:355 524
Symbol 355 GraphicUses:353 354Used by:378
Symbol 356 GraphicUsed by:357
Symbol 357 MovieClipUses:356Used by:378 525
Symbol 358 GraphicUsed by:359
Symbol 359 MovieClipUses:358Used by:378 525
Symbol 360 GraphicUsed by:361
Symbol 361 MovieClipUses:360Used by:378 525
Symbol 362 GraphicUsed by:363
Symbol 363 MovieClipUses:362Used by:378 525
Symbol 364 GraphicUsed by:365
Symbol 365 MovieClipUses:364Used by:378 525
Symbol 366 GraphicUsed by:367
Symbol 367 MovieClipUses:366Used by:378 525
Symbol 368 GraphicUsed by:369
Symbol 369 MovieClipUses:368Used by:378 525
Symbol 370 GraphicUsed by:371
Symbol 371 MovieClipUses:370Used by:378 525
Symbol 372 GraphicUsed by:373
Symbol 373 MovieClipUses:372Used by:378 525
Symbol 374 GraphicUsed by:375
Symbol 375 MovieClipUses:374Used by:378 525
Symbol 376 GraphicUsed by:377
Symbol 377 MovieClipUses:376Used by:378 525
Symbol 378 MovieClipUses:355 357 359 361 363 365 367 369 371 373 375 377Used by:724 1001  Timeline
Symbol 379 BitmapUsed by:380
Symbol 380 GraphicUses:379Used by:391
Symbol 381 GraphicUsed by:382
Symbol 382 MovieClipUses:381Used by:391
Symbol 383 GraphicUsed by:384
Symbol 384 MovieClipUses:383Used by:391
Symbol 385 GraphicUsed by:386
Symbol 386 MovieClipUses:385Used by:391
Symbol 387 GraphicUsed by:388
Symbol 388 MovieClipUses:387Used by:391
Symbol 389 GraphicUsed by:390
Symbol 390 MovieClipUses:389Used by:391
Symbol 391 MovieClipUses:380 382 384 386 388 390Used by:1001  Timeline
Symbol 392 GraphicUsed by:393
Symbol 393 MovieClipUses:392Used by:728 1003  Timeline
Symbol 394 GraphicUsed by:395
Symbol 395 MovieClipUses:394Used by:728 1003  Timeline
Symbol 396 BitmapUsed by:397
Symbol 397 GraphicUses:396Used by:409
Symbol 398 GraphicUsed by:399
Symbol 399 MovieClipUses:398Used by:409 603 607
Symbol 400 GraphicUsed by:401
Symbol 401 MovieClipUses:400Used by:409 603 607
Symbol 402 GraphicUsed by:403
Symbol 403 MovieClipUses:402Used by:409 603 607
Symbol 404 GraphicUsed by:405
Symbol 405 MovieClipUses:404Used by:409 603 607
Symbol 406 BitmapUsed by:407 585 592
Symbol 407 GraphicUses:406Used by:408
Symbol 408 MovieClipUses:407Used by:409
Symbol 409 MovieClipUses:397 399 401 403 405 408Used by:728 1003  Timeline
Symbol 410 GraphicUsed by:414
Symbol 411 GraphicUsed by:412
Symbol 412 MovieClipUses:411Used by:414 428
Symbol 413 GraphicUsed by:414
Symbol 414 MovieClipUses:410 412 413Used by:728 1003  Timeline
Symbol 415 GraphicUsed by:418
Symbol 416 GraphicUsed by:417
Symbol 417 MovieClipUses:416Used by:418
Symbol 418 MovieClipUses:415 417Used by:728 1003  Timeline
Symbol 419 BitmapUsed by:420 426
Symbol 420 GraphicUses:419Used by:428
Symbol 421 GraphicUsed by:428
Symbol 422 GraphicUsed by:423
Symbol 423 MovieClipUses:422Used by:428
Symbol 424 GraphicUsed by:425
Symbol 425 MovieClipUses:424Used by:428
Symbol 426 GraphicUses:419Used by:427
Symbol 427 MovieClipUses:426Used by:428
Symbol 428 MovieClipUses:420 412 421 423 425 427Used by:728 1003  Timeline
Symbol 429 GraphicUsed by:437
Symbol 430 GraphicUsed by:436
Symbol 431 GraphicUsed by:432
Symbol 432 MovieClipUses:431Used by:436
Symbol 433 GraphicUsed by:436
Symbol 434 GraphicUsed by:435
Symbol 435 MovieClipUses:434Used by:436
Symbol 436 MovieClipUses:430 432 433 435Used by:437 504
Symbol 437 MovieClipUses:429 436Used by:1005  Timeline
Symbol 438 GraphicUsed by:446
Symbol 439 GraphicUsed by:445
Symbol 440 GraphicUsed by:441
Symbol 441 MovieClipUses:440Used by:445 446 509 1006
Symbol 442 GraphicUsed by:443
Symbol 443 MovieClipUses:442Used by:445
Symbol 444 GraphicUsed by:445
Symbol 445 MovieClipUses:439 441 443 444Used by:446 509 1006
Symbol 446 MovieClipUses:438 445 441Used by:1005  Timeline
Symbol 447 GraphicUsed by:464
Symbol 448 GraphicUsed by:449
Symbol 449 MovieClipUses:448Used by:464
Symbol 450 GraphicUsed by:451
Symbol 451 MovieClipUses:450Used by:464
Symbol 452 GraphicUsed by:453
Symbol 453 MovieClipUses:452Used by:464
Symbol 454 GraphicUsed by:455
Symbol 455 MovieClipUses:454Used by:464
Symbol 456 GraphicUsed by:457
Symbol 457 MovieClipUses:456Used by:464 508
Symbol 458 GraphicUsed by:459
Symbol 459 MovieClipUses:458Used by:464 508
Symbol 460 GraphicUsed by:461
Symbol 461 MovieClipUses:460Used by:464 508
Symbol 462 GraphicUsed by:463
Symbol 463 MovieClipUses:462Used by:464
Symbol 464 MovieClipUses:447 449 451 453 455 457 459 461 463Used by:730 1005  Timeline
Symbol 465 GraphicUsed by:485
Symbol 466 GraphicUsed by:467
Symbol 467 MovieClipUses:466Used by:485 498 503 507 703 1011 1012
Symbol 468 GraphicUsed by:485
Symbol 469 GraphicUsed by:485
Symbol 470 GraphicUsed by:485
Symbol 471 GraphicUsed by:485
Symbol 472 GraphicUsed by:485
Symbol 473 GraphicUsed by:485
Symbol 474 GraphicUsed by:485
Symbol 475 GraphicUsed by:485
Symbol 476 GraphicUsed by:485
Symbol 477 GraphicUsed by:485
Symbol 478 GraphicUsed by:485
Symbol 479 GraphicUsed by:485
Symbol 480 GraphicUsed by:485
Symbol 481 GraphicUsed by:485
Symbol 482 GraphicUsed by:485
Symbol 483 GraphicUsed by:485
Symbol 484 GraphicUsed by:485
Symbol 485 MovieClipUses:465 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484Used by:1005  Timeline
Symbol 486 GraphicUsed by:498
Symbol 487 GraphicUsed by:498
Symbol 488 GraphicUsed by:498
Symbol 489 GraphicUsed by:498
Symbol 490 GraphicUsed by:498
Symbol 491 GraphicUsed by:498
Symbol 492 GraphicUsed by:498
Symbol 493 GraphicUsed by:498
Symbol 494 GraphicUsed by:498
Symbol 495 GraphicUsed by:498
Symbol 496 GraphicUsed by:498
Symbol 497 GraphicUsed by:498
Symbol 498 MovieClipUses:486 467 487 488 489 490 491 492 493 494 495 496 497Used by:1005  Timeline
Symbol 499 GraphicUsed by:503
Symbol 500 GraphicUsed by:503
Symbol 501 GraphicUsed by:503
Symbol 502 GraphicUsed by:503
Symbol 503 MovieClipUses:499 467 500 501 502Used by:Timeline
Symbol 504 MovieClipUses:436Used by:732 1012  Timeline
Symbol 505 GraphicUsed by:507
Symbol 506 GraphicUsed by:507
Symbol 507 MovieClipUses:505 467 506Used by:Timeline
Symbol 508 MovieClipUses:459 457 461Used by:1012  Timeline
Symbol 509 MovieClipUses:441 445Used by:Timeline
Symbol 510 GraphicUsed by:513
Symbol 511 GraphicUsed by:512
Symbol 512 MovieClipUses:511Used by:513
Symbol 513 MovieClipUses:510 512Used by:1001  Timeline
Symbol 514 GraphicUsed by:523
Symbol 515 GraphicUsed by:516
Symbol 516 MovieClipUses:515Used by:523
Symbol 517 GraphicUsed by:518
Symbol 518 MovieClipUses:517Used by:523
Symbol 519 GraphicUsed by:523
Symbol 520 GraphicUsed by:521
Symbol 521 MovieClipUses:520Used by:523
Symbol 522 GraphicUsed by:523
Symbol 523 MovieClipUses:514 516 518 519 521 522Used by:1001  Timeline
Symbol 524 GraphicUses:354Used by:525
Symbol 525 MovieClipUses:524 357 359 361 363 365 367 369 371 373 375 377Used by:1001  Timeline
Symbol 526 GraphicUsed by:539
Symbol 527 GraphicUsed by:528
Symbol 528 MovieClipUses:527Used by:539
Symbol 529 GraphicUsed by:530
Symbol 530 MovieClipUses:529Used by:539
Symbol 531 GraphicUsed by:532
Symbol 532 MovieClipUses:531Used by:539
Symbol 533 GraphicUsed by:534
Symbol 534 MovieClipUses:533Used by:539
Symbol 535 GraphicUsed by:536
Symbol 536 MovieClipUses:535Used by:539
Symbol 537 GraphicUsed by:538
Symbol 538 MovieClipUses:537Used by:539
Symbol 539 MovieClipUses:526 528 530 532 534 536 538Used by:1001  Timeline
Symbol 540 GraphicUsed by:541
Symbol 541 MovieClipUses:540Used by:554
Symbol 542 GraphicUsed by:547
Symbol 543 GraphicUsed by:546
Symbol 544 GraphicUsed by:545
Symbol 545 MovieClipUses:544Used by:546
Symbol 546 MovieClipUses:543 545Used by:547 565
Symbol 547 MovieClipUses:542 546Used by:554
Symbol 548 GraphicUsed by:549
Symbol 549 MovieClipUses:548Used by:554
Symbol 550 GraphicUsed by:551
Symbol 551 MovieClipUses:550Used by:554
Symbol 552 GraphicUsed by:553
Symbol 553 MovieClipUses:552Used by:554 1000  Timeline
Symbol 554 MovieClip {tatum_fla.shoes_205}Uses:541 547 549 551 553Used by:555
Symbol 555 MovieClipUses:554Used by:1000  Timeline
Symbol 556 GraphicUsed by:561
Symbol 557 GraphicUsed by:558
Symbol 558 MovieClipUses:557Used by:561
Symbol 559 GraphicUsed by:560
Symbol 560 MovieClipUses:559Used by:561
Symbol 561 MovieClipUses:556 558 560Used by:723 1000  Timeline
Symbol 562 GraphicUsed by:563
Symbol 563 MovieClipUses:562Used by:1000  Timeline
Symbol 564 GraphicUsed by:565
Symbol 565 MovieClipUses:564 546Used by:1000  Timeline
Symbol 566 GraphicUsed by:571
Symbol 567 GraphicUsed by:568
Symbol 568 MovieClipUses:567Used by:571
Symbol 569 GraphicUsed by:570
Symbol 570 MovieClipUses:569Used by:571
Symbol 571 MovieClipUses:566 568 570Used by:1001  Timeline
Symbol 572 GraphicUsed by:577
Symbol 573 GraphicUsed by:574
Symbol 574 MovieClipUses:573Used by:577 726
Symbol 575 GraphicUsed by:576
Symbol 576 MovieClipUses:575Used by:577 726
Symbol 577 MovieClipUses:572 574 576Used by:727 1002  Timeline
Symbol 578 GraphicUsed by:581
Symbol 579 GraphicUsed by:580
Symbol 580 MovieClipUses:579Used by:581 583
Symbol 581 MovieClipUses:578 580Used by:727 1002  Timeline
Symbol 582 GraphicUsed by:583
Symbol 583 MovieClipUses:582 580Used by:727 1002  Timeline
Symbol 584 BitmapUsed by:585
Symbol 585 GraphicUses:406 584Used by:598
Symbol 586 GraphicUsed by:587
Symbol 587 MovieClipUses:586Used by:598
Symbol 588 GraphicUsed by:589
Symbol 589 MovieClipUses:588Used by:598
Symbol 590 GraphicUsed by:591
Symbol 591 MovieClipUses:590Used by:598
Symbol 592 GraphicUses:406Used by:593
Symbol 593 MovieClipUses:592Used by:598
Symbol 594 GraphicUsed by:595
Symbol 595 MovieClipUses:594Used by:598
Symbol 596 GraphicUsed by:597
Symbol 597 MovieClipUses:596Used by:598
Symbol 598 MovieClipUses:585 587 589 591 593 595 597Used by:727 1002  Timeline
Symbol 599 BitmapUsed by:602
Symbol 600 BitmapUsed by:602 604
Symbol 601 BitmapUsed by:602
Symbol 602 GraphicUses:599 600 601Used by:603
Symbol 603 MovieClipUses:602 399 401 403 405Used by:728 1003  Timeline
Symbol 604 GraphicUses:600Used by:607
Symbol 605 GraphicUsed by:606
Symbol 606 MovieClipUses:605Used by:607
Symbol 607 MovieClipUses:604 399 401 403 405 606Used by:728 1003  Timeline
Symbol 608 GraphicUsed by:613
Symbol 609 GraphicUsed by:610
Symbol 610 MovieClipUses:609Used by:613
Symbol 611 GraphicUsed by:612
Symbol 612 MovieClipUses:611Used by:613 634 660
Symbol 613 MovieClipUses:608 610 612Used by:727 1002  Timeline
Symbol 614 GraphicUsed by:617
Symbol 615 GraphicUsed by:616
Symbol 616 MovieClipUses:615Used by:617
Symbol 617 MovieClipUses:614 616Used by:727 1002  Timeline
Symbol 618 GraphicUsed by:626
Symbol 619 GraphicUsed by:620
Symbol 620 MovieClipUses:619Used by:626
Symbol 621 GraphicUsed by:622
Symbol 622 MovieClipUses:621Used by:626
Symbol 623 GraphicUsed by:624
Symbol 624 MovieClipUses:623Used by:626
Symbol 625 GraphicUsed by:626
Symbol 626 MovieClipUses:618 620 622 624 625Used by:727 1002  Timeline
Symbol 627 GraphicUsed by:634
Symbol 628 GraphicUsed by:629
Symbol 629 MovieClipUses:628Used by:634
Symbol 630 GraphicUsed by:631
Symbol 631 MovieClipUses:630Used by:634
Symbol 632 GraphicUsed by:633
Symbol 633 MovieClipUses:632Used by:634
Symbol 634 MovieClipUses:627 629 631 633 612Used by:727 1002  Timeline
Symbol 635 BitmapUsed by:637 652
Symbol 636 BitmapUsed by:637
Symbol 637 GraphicUses:635 636Used by:650
Symbol 638 GraphicUsed by:639
Symbol 639 MovieClipUses:638Used by:650 653 660
Symbol 640 GraphicUsed by:641
Symbol 641 MovieClipUses:640Used by:650 653 660
Symbol 642 GraphicUsed by:643
Symbol 643 MovieClipUses:642Used by:650 653 660
Symbol 644 GraphicUsed by:645
Symbol 645 MovieClipUses:644Used by:650 653 660
Symbol 646 GraphicUsed by:647
Symbol 647 MovieClipUses:646Used by:650 653 660
Symbol 648 GraphicUsed by:649
Symbol 649 MovieClipUses:648Used by:650 653 660
Symbol 650 MovieClipUses:637 639 641 643 645 647 649Used by:728 1003  Timeline
Symbol 651 BitmapUsed by:652
Symbol 652 GraphicUses:635 651Used by:653
Symbol 653 MovieClipUses:652 639 641 643 645 647 649Used by:728 1003  Timeline
Symbol 654 BitmapUsed by:655
Symbol 655 GraphicUses:654Used by:658
Symbol 656 GraphicUsed by:657
Symbol 657 MovieClipUses:656Used by:658
Symbol 658 MovieClipUses:655 345 347 349 351 657Used by:728 1003  Timeline
Symbol 659 GraphicUsed by:660
Symbol 660 MovieClipUses:659 639 641 643 645 647 649 612Used by:728 1003  Timeline
Symbol 661 GraphicUsed by:675
Symbol 662 GraphicUsed by:663
Symbol 663 MovieClipUses:662Used by:675
Symbol 664 GraphicUsed by:665
Symbol 665 MovieClipUses:664Used by:675
Symbol 666 FontUsed by:667 668 669 670 671 672 685 686 687 688 689
Symbol 667 TextUses:666Used by:673
Symbol 668 TextUses:666Used by:673
Symbol 669 TextUses:666Used by:673
Symbol 670 TextUses:666Used by:673
Symbol 671 TextUses:666Used by:673
Symbol 672 TextUses:666Used by:673
Symbol 673 MovieClipUses:667 668 669 670 671 672Used by:675
Symbol 674 GraphicUsed by:675
Symbol 675 MovieClipUses:661 663 665 673 674Used by:1004  Timeline
Symbol 676 GraphicUsed by:683
Symbol 677 GraphicUsed by:678
Symbol 678 MovieClipUses:677Used by:683
Symbol 679 GraphicUsed by:680
Symbol 680 MovieClipUses:679Used by:683
Symbol 681 GraphicUsed by:682
Symbol 682 MovieClipUses:681Used by:683
Symbol 683 MovieClipUses:676 678 680 682Used by:1004  Timeline
Symbol 684 GraphicUsed by:691
Symbol 685 TextUses:666Used by:690
Symbol 686 TextUses:666Used by:690
Symbol 687 TextUses:666Used by:690
Symbol 688 TextUses:666Used by:690
Symbol 689 TextUses:666Used by:690
Symbol 690 MovieClipUses:685 686 687 688 689Used by:691
Symbol 691 MovieClipUses:684 690Used by:Timeline
Symbol 692 BitmapUsed by:693
Symbol 693 GraphicUses:692Used by:700
Symbol 694 GraphicUsed by:695
Symbol 695 MovieClipUses:694Used by:700
Symbol 696 GraphicUsed by:697
Symbol 697 MovieClipUses:696Used by:700
Symbol 698 GraphicUsed by:699
Symbol 699 MovieClipUses:698Used by:700
Symbol 700 MovieClipUses:693 695 697 699Used by:1004  Timeline
Symbol 701 GraphicUsed by:703
Symbol 702 GraphicUsed by:703
Symbol 703 MovieClipUses:701 467 702Used by:729 1004  Timeline
Symbol 704 GraphicUsed by:705
Symbol 705 MovieClipUses:704Used by:1004  Timeline
Symbol 706 GraphicUsed by:714
Symbol 707 GraphicUsed by:708
Symbol 708 MovieClipUses:707Used by:714
Symbol 709 GraphicUsed by:714
Symbol 710 GraphicUsed by:713
Symbol 711 GraphicUsed by:712
Symbol 712 MovieClipUses:711Used by:713
Symbol 713 MovieClipUses:710 712Used by:714
Symbol 714 MovieClipUses:706 708 709 713Used by:733 1015
Symbol 715 GraphicUsed by:722
Symbol 716 GraphicUsed by:717
Symbol 717 MovieClipUses:716Used by:722
Symbol 718 GraphicUsed by:722
Symbol 719 GraphicUsed by:720
Symbol 720 MovieClipUses:719Used by:722
Symbol 721 GraphicUsed by:722
Symbol 722 MovieClipUses:715 717 718 720 721Used by:733 1015
Symbol 723 MovieClipUses:561Used by:733
Symbol 724 MovieClipUses:378Used by:733
Symbol 725 GraphicUsed by:726
Symbol 726 MovieClipUses:725 574 576Used by:727 1002
Symbol 727 MovieClip {tatum_fla.f_287}Uses:726 634 626 617 613 313 598 583 581 577 325 323Used by:733
Symbol 728 MovieClip {tatum_fla.topscopy_289}Uses:660 658 653 650 607 603 428 418 414 409 395 393Used by:733
Symbol 729 MovieClipUses:703Used by:733
Symbol 730 MovieClipUses:464Used by:733
Symbol 731 MovieClip {tatum_fla.hairs_292}Uses:275 273Used by:733 1015
Symbol 732 MovieClipUses:504Used by:733
Symbol 733 MovieClip {tatum_fla.dollcopy_277}Uses:714 722 723 724 727 728 729 730 731 732Used by:Timeline
Symbol 734 FontUsed by:735
Symbol 735 TextUses:734Used by:736
Symbol 736 MovieClipUses:735Used by:Timeline
Symbol 737 FontUsed by:738 1077 1089 1136 1199 1200
Symbol 738 TextUses:737Used by:Timeline
Symbol 739 GraphicUsed by:743 748 752 754 758 760 764 766 770 772 775 777 780 782 785 787 790 792 795 799 804 806
Symbol 740 BitmapUsed by:741
Symbol 741 GraphicUses:740Used by:743 748
Symbol 742 GraphicUsed by:743 748
Symbol 743 MovieClipUses:739 741 742Used by:748
Symbol 744 FontUsed by:745 753 765 771 776 781 786 791 796
Symbol 745 TextUses:744Used by:748
Symbol 746 FontUsed by:747 759 805
Symbol 747 TextUses:746Used by:748
Symbol 748 ButtonUses:743 745 747 739 741 742Used by:807
Symbol 749 BitmapUsed by:750
Symbol 750 GraphicUses:749Used by:752 754
Symbol 751 GraphicUsed by:752 754
Symbol 752 MovieClipUses:739 750 751Used by:754
Symbol 753 TextUses:744Used by:754
Symbol 754 ButtonUses:752 753 739 750 751Used by:807
Symbol 755 BitmapUsed by:756
Symbol 756 GraphicUses:755Used by:758 760
Symbol 757 GraphicUsed by:758 760
Symbol 758 MovieClipUses:739 756 757Used by:760
Symbol 759 TextUses:746Used by:760
Symbol 760 ButtonUses:758 759 739 756 757Used by:807
Symbol 761 BitmapUsed by:762
Symbol 762 GraphicUses:761Used by:764 766
Symbol 763 GraphicUsed by:764 766
Symbol 764 MovieClipUses:739 762 763Used by:766
Symbol 765 TextUses:744Used by:766
Symbol 766 ButtonUses:764 765 739 762 763Used by:807
Symbol 767 BitmapUsed by:768
Symbol 768 GraphicUses:767Used by:770 772
Symbol 769 GraphicUsed by:770 772 775 777 780 782 785 787 790 792 795 799
Symbol 770 MovieClipUses:739 768 769Used by:772
Symbol 771 TextUses:744Used by:772
Symbol 772 ButtonUses:770 771 739 768 769Used by:807
Symbol 773 BitmapUsed by:774
Symbol 774 GraphicUses:773Used by:775 777
Symbol 775 MovieClipUses:739 774 769Used by:777
Symbol 776 TextUses:744Used by:777
Symbol 777 ButtonUses:775 776 739 774 769Used by:807
Symbol 778 BitmapUsed by:779
Symbol 779 GraphicUses:778Used by:780 782
Symbol 780 MovieClipUses:739 779 769Used by:782
Symbol 781 TextUses:744Used by:782
Symbol 782 ButtonUses:780 781 739 779 769Used by:807
Symbol 783 BitmapUsed by:784
Symbol 784 GraphicUses:783Used by:785 787
Symbol 785 MovieClipUses:739 784 769Used by:787
Symbol 786 TextUses:744Used by:787
Symbol 787 ButtonUses:785 786 739 784 769Used by:807
Symbol 788 BitmapUsed by:789
Symbol 789 GraphicUses:788Used by:790 792
Symbol 790 MovieClipUses:739 789 769Used by:792
Symbol 791 TextUses:744Used by:792
Symbol 792 ButtonUses:790 791 739 789 769Used by:807
Symbol 793 BitmapUsed by:794
Symbol 794 GraphicUses:793Used by:795 799
Symbol 795 MovieClipUses:739 794 769Used by:799
Symbol 796 TextUses:744Used by:799
Symbol 797 FontUsed by:798
Symbol 798 TextUses:797Used by:799
Symbol 799 ButtonUses:795 796 798 739 794 769Used by:807
Symbol 800 BitmapUsed by:802
Symbol 801 BitmapUsed by:802
Symbol 802 GraphicUses:800 801Used by:804 806
Symbol 803 GraphicUsed by:804 806
Symbol 804 MovieClipUses:739 802 803Used by:806
Symbol 805 TextUses:746Used by:806
Symbol 806 ButtonUses:804 805 739 802 803Used by:807
Symbol 807 MovieClip {tatum_fla.ButtonHolder_295}Uses:748 754 760 766 772 777 782 787 792 799 806Used by:Timeline
Symbol 808 GraphicUsed by:809
Symbol 809 MovieClipUses:808Used by:810
Symbol 810 MovieClipUses:809Used by:822
Symbol 811 FontUsed by:812
Symbol 812 TextUses:811Used by:822
Symbol 813 GraphicUsed by:822
Symbol 814 GraphicUsed by:822
Symbol 815 GraphicUsed by:822
Symbol 816 GraphicUsed by:822
Symbol 817 GraphicUsed by:822
Symbol 818 GraphicUsed by:822
Symbol 819 GraphicUsed by:822
Symbol 820 GraphicUsed by:822
Symbol 821 GraphicUsed by:822
Symbol 822 MovieClip {tatum_fla.bu1copy_318}Uses:810 812 813 814 815 816 817 818 819 820 821Used by:Timeline
Symbol 823 GraphicUsed by:Timeline
Symbol 824 GraphicUses:140Used by:Timeline
Symbol 825 GraphicUsed by:Timeline
Symbol 826 GraphicUses:147Used by:Timeline
Symbol 827 GraphicUses:155Used by:Timeline
Symbol 828 GraphicUsed by:Timeline
Symbol 829 GraphicUsed by:Timeline
Symbol 830 GraphicUses:177Used by:Timeline
Symbol 831 GraphicUsed by:Timeline
Symbol 832 GraphicUsed by:Timeline
Symbol 833 GraphicUsed by:Timeline
Symbol 834 GraphicUsed by:Timeline
Symbol 835 GraphicUsed by:Timeline
Symbol 836 GraphicUses:203Used by:Timeline
Symbol 837 GraphicUsed by:Timeline
Symbol 838 GraphicUsed by:839 994
Symbol 839 MovieClipUses:838Used by:Timeline
Symbol 840 BitmapUsed by:842
Symbol 841 BitmapUsed by:842
Symbol 842 GraphicUses:840 841Used by:Timeline
Symbol 843 GraphicUsed by:844
Symbol 844 MovieClipUses:843Used by:Timeline
Symbol 845 GraphicUsed by:846
Symbol 846 MovieClipUses:845Used by:Timeline
Symbol 847 GraphicUsed by:848
Symbol 848 MovieClipUses:847Used by:Timeline
Symbol 849 GraphicUsed by:Timeline
Symbol 850 GraphicUsed by:851
Symbol 851 MovieClipUses:850Used by:Timeline
Symbol 852 GraphicUsed by:Timeline
Symbol 853 GraphicUsed by:854
Symbol 854 MovieClipUses:853Used by:Timeline
Symbol 855 GraphicUsed by:Timeline
Symbol 856 GraphicUsed by:857
Symbol 857 MovieClipUses:856Used by:Timeline
Symbol 858 GraphicUsed by:Timeline
Symbol 859 GraphicUsed by:860
Symbol 860 MovieClipUses:859Used by:Timeline
Symbol 861 BitmapUsed by:863
Symbol 862 BitmapUsed by:863
Symbol 863 GraphicUses:861 862Used by:Timeline
Symbol 864 GraphicUsed by:865
Symbol 865 MovieClipUses:864Used by:Timeline
Symbol 866 GraphicUsed by:867
Symbol 867 MovieClipUses:866Used by:Timeline
Symbol 868 BitmapUsed by:869
Symbol 869 GraphicUses:868Used by:Timeline
Symbol 870 GraphicUsed by:871
Symbol 871 MovieClipUses:870Used by:Timeline
Symbol 872 GraphicUsed by:873
Symbol 873 MovieClipUses:872Used by:Timeline
Symbol 874 GraphicUsed by:875
Symbol 875 MovieClipUses:874Used by:Timeline
Symbol 876 BitmapUsed by:878
Symbol 877 BitmapUsed by:878
Symbol 878 GraphicUses:876 877Used by:Timeline
Symbol 879 GraphicUsed by:880
Symbol 880 MovieClipUses:879Used by:Timeline
Symbol 881 GraphicUsed by:882
Symbol 882 MovieClipUses:881Used by:Timeline
Symbol 883 GraphicUsed by:884
Symbol 884 MovieClipUses:883Used by:Timeline
Symbol 885 GraphicUsed by:886
Symbol 886 MovieClipUses:885Used by:Timeline
Symbol 887 BitmapUsed by:888
Symbol 888 GraphicUses:887Used by:Timeline
Symbol 889 GraphicUsed by:890
Symbol 890 MovieClipUses:889Used by:Timeline
Symbol 891 GraphicUsed by:892
Symbol 892 MovieClipUses:891Used by:Timeline
Symbol 893 BitmapUsed by:894
Symbol 894 GraphicUses:893Used by:Timeline
Symbol 895 GraphicUsed by:896
Symbol 896 MovieClipUses:895Used by:Timeline
Symbol 897 GraphicUsed by:898
Symbol 898 MovieClipUses:897Used by:Timeline
Symbol 899 BitmapUsed by:900
Symbol 900 GraphicUses:899Used by:Timeline
Symbol 901 GraphicUsed by:902
Symbol 902 MovieClipUses:901Used by:Timeline
Symbol 903 GraphicUsed by:904
Symbol 904 MovieClipUses:903Used by:Timeline
Symbol 905 GraphicUses:236Used by:Timeline
Symbol 906 GraphicUses:242 243Used by:Timeline
Symbol 907 GraphicUsed by:Timeline
Symbol 908 GraphicUsed by:Timeline
Symbol 909 GraphicUsed by:Timeline
Symbol 910 GraphicUsed by:911
Symbol 911 MovieClipUses:910Used by:Timeline
Symbol 912 BitmapUsed by:913
Symbol 913 GraphicUses:912Used by:Timeline
Symbol 914 GraphicUsed by:915
Symbol 915 MovieClipUses:914Used by:Timeline
Symbol 916 GraphicUsed by:Timeline
Symbol 917 GraphicUsed by:918
Symbol 918 MovieClipUses:917Used by:Timeline
Symbol 919 BitmapUsed by:921
Symbol 920 BitmapUsed by:921
Symbol 921 GraphicUses:919 920Used by:Timeline
Symbol 922 GraphicUsed by:923
Symbol 923 MovieClipUses:922Used by:Timeline
Symbol 924 GraphicUsed by:925
Symbol 925 MovieClipUses:924Used by:Timeline
Symbol 926 GraphicUsed by:Timeline
Symbol 927 GraphicUsed by:928
Symbol 928 MovieClipUses:927Used by:Timeline
Symbol 929 GraphicUsed by:Timeline
Symbol 930 GraphicUsed by:931
Symbol 931 MovieClipUses:930Used by:Timeline
Symbol 932 BitmapUsed by:933
Symbol 933 GraphicUses:932Used by:Timeline
Symbol 934 GraphicUsed by:935
Symbol 935 MovieClipUses:934Used by:Timeline
Symbol 936 GraphicUsed by:937
Symbol 937 MovieClipUses:936Used by:Timeline
Symbol 938 GraphicUsed by:939
Symbol 939 MovieClipUses:938Used by:Timeline
Symbol 940 GraphicUsed by:941
Symbol 941 MovieClipUses:940Used by:Timeline
Symbol 942 GraphicUsed by:943
Symbol 943 MovieClipUses:942Used by:Timeline
Symbol 944 BitmapUsed by:945
Symbol 945 GraphicUses:944Used by:Timeline
Symbol 946 GraphicUsed by:947
Symbol 947 MovieClipUses:946Used by:Timeline
Symbol 948 GraphicUsed by:949
Symbol 949 MovieClipUses:948Used by:Timeline
Symbol 950 GraphicUsed by:951
Symbol 951 MovieClipUses:950Used by:Timeline
Symbol 952 GraphicUsed by:953
Symbol 953 MovieClipUses:952Used by:Timeline
Symbol 954 GraphicUsed by:955
Symbol 955 MovieClipUses:954Used by:Timeline
Symbol 956 GraphicUsed by:957
Symbol 957 MovieClipUses:956Used by:Timeline
Symbol 958 BitmapUsed by:959
Symbol 959 GraphicUses:958Used by:Timeline
Symbol 960 GraphicUsed by:961
Symbol 961 MovieClipUses:960Used by:Timeline
Symbol 962 GraphicUsed by:963
Symbol 963 MovieClipUses:962Used by:Timeline
Symbol 964 GraphicUsed by:965
Symbol 965 MovieClipUses:964Used by:Timeline
Symbol 966 GraphicUsed by:967
Symbol 967 MovieClipUses:966Used by:Timeline
Symbol 968 GraphicUsed by:969
Symbol 969 MovieClipUses:968Used by:Timeline
Symbol 970 GraphicUsed by:Timeline
Symbol 971 GraphicUsed by:972 974 976
Symbol 972 MovieClipUses:971Used by:Timeline
Symbol 973 GraphicUsed by:Timeline
Symbol 974 MovieClipUses:971Used by:Timeline
Symbol 975 GraphicUsed by:Timeline
Symbol 976 MovieClipUses:971Used by:Timeline
Symbol 977 GraphicUsed by:978
Symbol 978 MovieClipUses:977Used by:Timeline
Symbol 979 GraphicUsed by:980
Symbol 980 MovieClipUses:979Used by:Timeline
Symbol 981 GraphicUsed by:982
Symbol 982 MovieClipUses:981Used by:Timeline
Symbol 983 GraphicUsed by:984
Symbol 984 MovieClipUses:983Used by:Timeline
Symbol 985 GraphicUsed by:986
Symbol 986 MovieClipUses:985Used by:Timeline
Symbol 987 GraphicUsed by:988
Symbol 988 MovieClipUses:987Used by:Timeline
Symbol 989 GraphicUsed by:990
Symbol 990 MovieClipUses:989Used by:Timeline
Symbol 991 GraphicUsed by:992
Symbol 992 MovieClipUses:991Used by:Timeline
Symbol 993 GraphicUsed by:Timeline
Symbol 994 MovieClipUses:838Used by:Timeline
Symbol 995 BitmapUsed by:997
Symbol 996 BitmapUsed by:997
Symbol 997 GraphicUses:995 996Used by:Timeline
Symbol 998 GraphicUsed by:999
Symbol 999 MovieClipUses:998Used by:Timeline
Symbol 1000 MovieClip {tatum_fla.shoess_381}Uses:563 553 565 555 561Used by:1015
Symbol 1001 MovieClip {tatum_fla.dress_382}Uses:299 327 571 539 525 523 513 391 378 352 341 333Used by:1015
Symbol 1002 MovieClip {tatum_fla.f_383}Uses:726 634 626 617 613 313 598 583 581 577 325 323Used by:1015
Symbol 1003 MovieClip {tatum_fla.tops_384}Uses:660 658 653 650 607 603 428 418 414 409 395 393Used by:1015
Symbol 1004 MovieClip {tatum_fla.bags_385}Uses:705 700 703 683 675Used by:1015
Symbol 1005 MovieClip {tatum_fla.chians_386}Uses:498 485 464 446 437Used by:1015
Symbol 1006 MovieClipUses:441 445Used by:1012
Symbol 1007 GraphicUsed by:1008
Symbol 1008 MovieClipUses:1007Used by:1012
Symbol 1009 GraphicUsed by:1011
Symbol 1010 GraphicUsed by:1011
Symbol 1011 MovieClipUses:1009 467 1010Used by:1012
Symbol 1012 MovieClip {tatum_fla.earrings_387}Uses:504 508 1006 467 1008 1011Used by:1015
Symbol 1013 GraphicUsed by:1014 1153 1160
Symbol 1014 MovieClipUses:1013Used by:1015
Symbol 1015 MovieClip {tatum_fla.doll_380}Uses:714 722 1000 1001 1002 1003 1004 1005 731 1012 1014Used by:Timeline
Symbol 1016 GraphicUsed by:1020
Symbol 1017 TextUses:59Used by:1020
Symbol 1018 GraphicUsed by:1020
Symbol 1019 GraphicUsed by:1020
Symbol 1020 ButtonUses:1016 1017 1018 1019Used by:Timeline
Symbol 1021 GraphicUsed by:1023 1028 1029
Symbol 1022 GraphicUsed by:1023 1028 1029
Symbol 1023 MovieClipUses:1021 1022Used by:1028 1029
Symbol 1024 GraphicUsed by:1025 1028 1029
Symbol 1025 MovieClipUses:1024Used by:1028 1029
Symbol 1026 GraphicUsed by:1027 1028
Symbol 1027 MovieClipUses:1026Used by:1028
Symbol 1028 ButtonUses:1023 1025 1027 1021 1022 1024 1026Used by:Timeline
Symbol 1029 ButtonUses:1023 1025 1021 1022 1024Used by:Timeline
Symbol 1030 GraphicUsed by:1031
Symbol 1031 MovieClipUses:1030Used by:Timeline
Symbol 1032 GraphicUsed by:1045 1055 1186 1198
Symbol 1033 GraphicUsed by:1034
Symbol 1034 MovieClipUses:1033Used by:1045
Symbol 1035 GraphicUsed by:1045
Symbol 1036 GraphicUsed by:1045
Symbol 1037 GraphicUsed by:1045
Symbol 1038 GraphicUsed by:1045
Symbol 1039 GraphicUsed by:1045
Symbol 1040 TextUses:32Used by:1045
Symbol 1041 GraphicUsed by:1045
Symbol 1042 GraphicUsed by:1045
Symbol 1043 GraphicUsed by:1045
Symbol 1044 GraphicUsed by:1045
Symbol 1045 MovieClip {tatum_fla.vgjct_400}Uses:1032 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044Used by:1056  Timeline
Symbol 1046 GraphicUsed by:1047 1055
Symbol 1047 MovieClipUses:1046Used by:1055
Symbol 1048 GraphicUsed by:1055
Symbol 1049 GraphicUsed by:1055
Symbol 1050 TextUses:32Used by:1055
Symbol 1051 GraphicUsed by:1055
Symbol 1052 GraphicUsed by:1055
Symbol 1053 GraphicUsed by:1055
Symbol 1054 GraphicUsed by:1055
Symbol 1055 MovieClip {tatum_fla.vgjctcopy_402}Uses:1032 1047 1048 1049 1046 1050 1051 1052 1053 1054Used by:1056
Symbol 1056 MovieClip {tatum_fla.buttons2_399}Uses:1045 1055Used by:Timeline
Symbol 1057 GraphicUsed by:1070 1082 1094 1105 1117 1129 1140
Symbol 1058 FontUsed by:1059 1071 1083 1106 1118 1130 1142 1214 1230 1232 1235 1237 1239 1240 1241 1242
Symbol 1059 TextUses:1058Used by:1070
Symbol 1060 GraphicUsed by:1070
Symbol 1061 GraphicUsed by:1070
Symbol 1062 GraphicUsed by:1070
Symbol 1063 GraphicUsed by:1070
Symbol 1064 GraphicUsed by:1070
Symbol 1065 GraphicUsed by:1070
Symbol 1066 GraphicUsed by:1070
Symbol 1067 GraphicUsed by:1070
Symbol 1068 GraphicUsed by:1070
Symbol 1069 GraphicUsed by:1070
Symbol 1070 MovieClip {tatum_fla.vgjctcopy2_405}Uses:1057 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069Used by:1154
Symbol 1071 TextUses:1058Used by:1082
Symbol 1072 GraphicUsed by:1082
Symbol 1073 GraphicUsed by:1082
Symbol 1074 GraphicUsed by:1082
Symbol 1075 GraphicUsed by:1082
Symbol 1076 GraphicUsed by:1082
Symbol 1077 TextUses:737Used by:1082
Symbol 1078 GraphicUsed by:1082
Symbol 1079 GraphicUsed by:1082
Symbol 1080 GraphicUsed by:1082
Symbol 1081 GraphicUsed by:1082
Symbol 1082 MovieClip {tatum_fla.vgjctcopy3_406}Uses:1057 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081Used by:1154
Symbol 1083 TextUses:1058Used by:1094
Symbol 1084 GraphicUsed by:1094
Symbol 1085 GraphicUsed by:1094
Symbol 1086 GraphicUsed by:1094
Symbol 1087 GraphicUsed by:1094
Symbol 1088 GraphicUsed by:1094
Symbol 1089 TextUses:737Used by:1094
Symbol 1090 GraphicUsed by:1094
Symbol 1091 GraphicUsed by:1094
Symbol 1092 GraphicUsed by:1094
Symbol 1093 GraphicUsed by:1094 1152
Symbol 1094 MovieClip {tatum_fla.vgjctcopy5_407}Uses:1057 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093Used by:1154
Symbol 1095 FontUsed by:1096
Symbol 1096 TextUses:1095Used by:1105
Symbol 1097 GraphicUsed by:1105
Symbol 1098 GraphicUsed by:1105
Symbol 1099 GraphicUsed by:1105
Symbol 1100 GraphicUsed by:1105
Symbol 1101 GraphicUsed by:1105
Symbol 1102 GraphicUsed by:1105
Symbol 1103 GraphicUsed by:1105
Symbol 1104 GraphicUsed by:1105
Symbol 1105 MovieClip {tatum_fla.vgjctcopy4_408}Uses:1057 1096 1097 1098 1099 1100 1101 1102 1103 1104Used by:1154
Symbol 1106 TextUses:1058Used by:1117
Symbol 1107 GraphicUsed by:1117
Symbol 1108 GraphicUsed by:1117
Symbol 1109 GraphicUsed by:1117
Symbol 1110 GraphicUsed by:1117
Symbol 1111 GraphicUsed by:1117
Symbol 1112 GraphicUsed by:1117
Symbol 1113 GraphicUsed by:1117
Symbol 1114 GraphicUsed by:1117
Symbol 1115 GraphicUsed by:1117
Symbol 1116 GraphicUsed by:1117
Symbol 1117 MovieClip {tatum_fla.vgjctcopy6_409}Uses:1057 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116Used by:1154
Symbol 1118 TextUses:1058Used by:1129
Symbol 1119 GraphicUsed by:1129
Symbol 1120 GraphicUsed by:1129
Symbol 1121 GraphicUsed by:1129
Symbol 1122 GraphicUsed by:1129
Symbol 1123 GraphicUsed by:1129
Symbol 1124 TextUses:32Used by:1129
Symbol 1125 GraphicUsed by:1129
Symbol 1126 GraphicUsed by:1129
Symbol 1127 GraphicUsed by:1129
Symbol 1128 GraphicUsed by:1129
Symbol 1129 MovieClip {tatum_fla.vgjctcopy7_410}Uses:1057 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128Used by:1154
Symbol 1130 TextUses:1058Used by:1140
Symbol 1131 GraphicUsed by:1140
Symbol 1132 GraphicUsed by:1140
Symbol 1133 GraphicUsed by:1140
Symbol 1134 GraphicUsed by:1140
Symbol 1135 GraphicUsed by:1140
Symbol 1136 TextUses:737Used by:1140
Symbol 1137 GraphicUsed by:1140
Symbol 1138 GraphicUsed by:1140
Symbol 1139 GraphicUsed by:1140
Symbol 1140 MovieClip {tatum_fla.vgjctcopy8_411}Uses:1057 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139Used by:1154
Symbol 1141 GraphicUsed by:1152
Symbol 1142 TextUses:1058Used by:1152
Symbol 1143 GraphicUsed by:1152
Symbol 1144 GraphicUsed by:1152
Symbol 1145 GraphicUsed by:1152
Symbol 1146 GraphicUsed by:1152
Symbol 1147 GraphicUsed by:1152
Symbol 1148 GraphicUsed by:1152
Symbol 1149 GraphicUsed by:1152
Symbol 1150 GraphicUsed by:1152
Symbol 1151 GraphicUsed by:1152
Symbol 1152 MovieClip {tatum_fla.vgjctcopy9_412}Uses:1141 1142 1143 1144 1093 1145 1146 1147 1148 1149 1150 1151Used by:1154
Symbol 1153 MovieClipUses:1013Used by:1154
Symbol 1154 MovieClip {tatum_fla.buttons_404}Uses:1070 1082 1094 1105 1117 1129 1140 1152 1153Used by:Timeline
Symbol 1155 BitmapUsed by:1156
Symbol 1156 GraphicUses:1155Used by:1157
Symbol 1157 MovieClipUses:1156Used by:Timeline
Symbol 1158 FontUsed by:1159
Symbol 1159 EditableTextUses:1158Used by:Timeline
Symbol 1160 MovieClipUses:1013Used by:Timeline
Symbol 1161 GraphicUsed by:1174
Symbol 1162 GraphicUsed by:1163
Symbol 1163 MovieClipUses:1162Used by:1174
Symbol 1164 GraphicUsed by:1174
Symbol 1165 GraphicUsed by:1174
Symbol 1166 GraphicUsed by:1174
Symbol 1167 GraphicUsed by:1174
Symbol 1168 GraphicUsed by:1174
Symbol 1169 GraphicUsed by:1174
Symbol 1170 GraphicUsed by:1174
Symbol 1171 GraphicUsed by:1174
Symbol 1172 GraphicUsed by:1174
Symbol 1173 GraphicUsed by:1174
Symbol 1174 MovieClip {tatum_fla.vgjctcopy12_416}Uses:1161 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173Used by:Timeline
Symbol 1175 GraphicUsed by:1186
Symbol 1176 GraphicUsed by:1186
Symbol 1177 GraphicUsed by:1186
Symbol 1178 GraphicUsed by:1186
Symbol 1179 GraphicUsed by:1186
Symbol 1180 GraphicUsed by:1186
Symbol 1181 GraphicUsed by:1186
Symbol 1182 GraphicUsed by:1186
Symbol 1183 GraphicUsed by:1186
Symbol 1184 GraphicUsed by:1186
Symbol 1185 GraphicUsed by:1186
Symbol 1186 MovieClip {tatum_fla.vgjctcopy10_418}Uses:1032 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185Used by:Timeline
Symbol 1187 GraphicUsed by:1198
Symbol 1188 GraphicUsed by:1198
Symbol 1189 GraphicUsed by:1198
Symbol 1190 GraphicUsed by:1198
Symbol 1191 GraphicUsed by:1198
Symbol 1192 GraphicUsed by:1198
Symbol 1193 GraphicUsed by:1198
Symbol 1194 FontUsed by:1195
Symbol 1195 TextUses:1194Used by:1198
Symbol 1196 GraphicUsed by:1198
Symbol 1197 GraphicUsed by:1198
Symbol 1198 MovieClip {tatum_fla.vgjctcopy11_419}Uses:1032 1187 1188 1189 1190 1191 1192 1193 1195 1196 1197Used by:Timeline
Symbol 1199 TextUses:737Used by:Timeline
Symbol 1200 EditableTextUses:737Used by:Timeline
Symbol 1201 GraphicUsed by:1219
Symbol 1202 GraphicUsed by:1203 1226
Symbol 1203 MovieClipUses:1202Used by:1219 1248
Symbol 1204 GraphicUsed by:1205 1213 1234 1238
Symbol 1205 MovieClipUses:1204Used by:1213 1229
Symbol 1206 GraphicUsed by:1207 1213 1227 1234 1238
Symbol 1207 MovieClipUses:1206Used by:1210
Symbol 1208 GraphicUsed by:1209 1213 1234 1238
Symbol 1209 MovieClipUses:1208Used by:1210 1228
Symbol 1210 MovieClipUses:1207 1209Used by:1213
Symbol 1211 GraphicUsed by:1212
Symbol 1212 ButtonUses:1211Used by:1213
Symbol 1213 ButtonUses:1205 1210 1212 1204 1206 1208Used by:1219 1248
Symbol 1214 TextUses:1058Used by:1219 1248
Symbol 1215 FontUsed by:1216 1243 1244 1245 1246 1247
Symbol 1216 EditableTextUses:1215Used by:1219
Symbol 1217 MovieClipUsed by:1219 1225
Symbol 1218 MovieClipUsed by:1219 1225
Symbol 1219 MovieClip {tatum_fla.hdhdfhf_emaiklY_421}Uses:1201 1203 1213 1214 1216 1217 1218Used by:1248
Symbol 1220 GraphicUsed by:1225
Symbol 1221 MovieClipUsed by:1225
Symbol 1222 GraphicUsed by:1223
Symbol 1223 MovieClipUses:1222Used by:1224
Symbol 1224 MovieClipUses:1223Used by:1225
Symbol 1225 MovieClipUses:1220 1221 1224 1217 1218Used by:1248
Symbol 1226 MovieClipUses:1202Used by:1248
Symbol 1227 MovieClipUses:1206Used by:1228
Symbol 1228 MovieClipUses:1227 1209Used by:1229
Symbol 1229 MovieClipUses:1205 1228Used by:1231 1234 1236 1238
Symbol 1230 TextUses:1058Used by:1231
Symbol 1231 MovieClipUses:1229 1230Used by:1234
Symbol 1232 TextUses:1058Used by:1234
Symbol 1233 GraphicUsed by:1234 1238
Symbol 1234 ButtonUses:1231 1229 1232 1233 1204 1206 1208Used by:1248
Symbol 1235 TextUses:1058Used by:1236
Symbol 1236 MovieClipUses:1229 1235Used by:1238
Symbol 1237 TextUses:1058Used by:1238
Symbol 1238 ButtonUses:1236 1229 1237 1233 1204 1206 1208Used by:1248
Symbol 1239 TextUses:1058Used by:1248
Symbol 1240 TextUses:1058Used by:1248
Symbol 1241 TextUses:1058Used by:1248
Symbol 1242 TextUses:1058Used by:1248
Symbol 1243 EditableTextUses:1215Used by:1248
Symbol 1244 EditableTextUses:1215Used by:1248
Symbol 1245 EditableTextUses:1215Used by:1248
Symbol 1246 EditableTextUses:1215Used by:1248
Symbol 1247 EditableTextUses:1215Used by:1248
Symbol 1248 MovieClip {tatum_fla.jgjyiy9_emaiklY_420}Uses:1219 1225 1203 1226 1234 1238 1239 1240 1241 1242 1214 1213 1243 1244 1245 1246 1247Used by:Timeline
Symbol 1249 GraphicUsed by:1250
Symbol 1250 MovieClipUses:1249Used by:Timeline

Instance Names

"preloader"Frame 1Symbol 26 MovieClip {tatum_fla.cbvdsfdsf_loader_7}
"BitsLoaded"Frame 1Symbol 28 EditableText
"ball"Frame 1Symbol 75 MovieClip
"doll"Frame 2Symbol 733 MovieClip {tatum_fla.dollcopy_277}
"buttonHolder"Frame 2Symbol 807 MovieClip {tatum_fla.ButtonHolder_295}
"pl"Frame 2Symbol 822 MovieClip {tatum_fla.bu1copy_318}
"doll"Frame 3Symbol 1015 MovieClip {tatum_fla.doll_380}
"logo_mc"Frame 3Symbol 1020 Button
"sndon"Frame 3Symbol 1028 Button
"sndoff"Frame 3Symbol 1029 Button
"gamesbtn"Frame 3Symbol 1031 MovieClip
"buttons2"Frame 3Symbol 1056 MovieClip {tatum_fla.buttons2_399}
"buttons"Frame 3Symbol 1154 MovieClip {tatum_fla.buttons_404}
"t1"Frame 4Symbol 1159 EditableText
"ent"Frame 4Symbol 1160 MovieClip
"nextbtn"Frame 4Symbol 1045 MovieClip {tatum_fla.vgjct_400}
"dolls"Frame 5Symbol 1015 MovieClip {tatum_fla.doll_380}
"email"Frame 5Symbol 1174 MovieClip {tatum_fla.vgjctcopy12_416}
"playagain"Frame 5Symbol 1186 MovieClip {tatum_fla.vgjctcopy10_418}
"play_more"Frame 5Symbol 1198 MovieClip {tatum_fla.vgjctcopy11_419}
"t2"Frame 5Symbol 1200 EditableText
"popup"Frame 5Symbol 1248 MovieClip {tatum_fla.jgjyiy9_emaiklY_420}
"bg_btn"Frame 5Symbol 1250 MovieClip
"bgss"Frame 5Symbol 1250 MovieClip
"masker"Symbol 26 MovieClip {tatum_fla.cbvdsfdsf_loader_7} Frame 1Symbol 14 MovieClip
"hair"Symbol 733 MovieClip {tatum_fla.dollcopy_277} Frame 1Symbol 731 MovieClip {tatum_fla.hairs_292}
"b2"Symbol 807 MovieClip {tatum_fla.ButtonHolder_295} Frame 1Symbol 748 Button
"b3"Symbol 807 MovieClip {tatum_fla.ButtonHolder_295} Frame 1Symbol 754 Button
"b4"Symbol 807 MovieClip {tatum_fla.ButtonHolder_295} Frame 1Symbol 760 Button
"b5"Symbol 807 MovieClip {tatum_fla.ButtonHolder_295} Frame 1Symbol 766 Button
"b6"Symbol 807 MovieClip {tatum_fla.ButtonHolder_295} Frame 1Symbol 772 Button
"b7"Symbol 807 MovieClip {tatum_fla.ButtonHolder_295} Frame 1Symbol 777 Button
"b8"Symbol 807 MovieClip {tatum_fla.ButtonHolder_295} Frame 1Symbol 782 Button
"b9"Symbol 807 MovieClip {tatum_fla.ButtonHolder_295} Frame 1Symbol 787 Button
"b10"Symbol 807 MovieClip {tatum_fla.ButtonHolder_295} Frame 1Symbol 792 Button
"b11"Symbol 807 MovieClip {tatum_fla.ButtonHolder_295} Frame 1Symbol 799 Button
"b1"Symbol 807 MovieClip {tatum_fla.ButtonHolder_295} Frame 1Symbol 806 Button
"d5"Symbol 822 MovieClip {tatum_fla.bu1copy_318} Frame 1Symbol 810 MovieClip
"shoes"Symbol 1015 MovieClip {tatum_fla.doll_380} Frame 1Symbol 1000 MovieClip {tatum_fla.shoess_381}
"dress"Symbol 1015 MovieClip {tatum_fla.doll_380} Frame 1Symbol 1001 MovieClip {tatum_fla.dress_382}
"bottoms"Symbol 1015 MovieClip {tatum_fla.doll_380} Frame 1Symbol 1002 MovieClip {tatum_fla.f_383}
"tops"Symbol 1015 MovieClip {tatum_fla.doll_380} Frame 1Symbol 1003 MovieClip {tatum_fla.tops_384}
"bags"Symbol 1015 MovieClip {tatum_fla.doll_380} Frame 1Symbol 1004 MovieClip {tatum_fla.bags_385}
"chain"Symbol 1015 MovieClip {tatum_fla.doll_380} Frame 1Symbol 1005 MovieClip {tatum_fla.chians_386}
"hair"Symbol 1015 MovieClip {tatum_fla.doll_380} Frame 1Symbol 731 MovieClip {tatum_fla.hairs_292}
"earring"Symbol 1015 MovieClip {tatum_fla.doll_380} Frame 1Symbol 1012 MovieClip {tatum_fla.earrings_387}
"glass"Symbol 1015 MovieClip {tatum_fla.doll_380} Frame 1Symbol 1014 MovieClip
"nextbtn1"Symbol 1056 MovieClip {tatum_fla.buttons2_399} Frame 1Symbol 1045 MovieClip {tatum_fla.vgjct_400}
"resetbtn"Symbol 1056 MovieClip {tatum_fla.buttons2_399} Frame 1Symbol 1055 MovieClip {tatum_fla.vgjctcopy_402}
"hair_btn"Symbol 1154 MovieClip {tatum_fla.buttons_404} Frame 1Symbol 1070 MovieClip {tatum_fla.vgjctcopy2_405}
"shoes_btn"Symbol 1154 MovieClip {tatum_fla.buttons_404} Frame 1Symbol 1082 MovieClip {tatum_fla.vgjctcopy3_406}
"chain_btn"Symbol 1154 MovieClip {tatum_fla.buttons_404} Frame 1Symbol 1094 MovieClip {tatum_fla.vgjctcopy5_407}
"bags_btn"Symbol 1154 MovieClip {tatum_fla.buttons_404} Frame 1Symbol 1105 MovieClip {tatum_fla.vgjctcopy4_408}
"studs_btn"Symbol 1154 MovieClip {tatum_fla.buttons_404} Frame 1Symbol 1117 MovieClip {tatum_fla.vgjctcopy6_409}
"bottoms_btn"Symbol 1154 MovieClip {tatum_fla.buttons_404} Frame 1Symbol 1129 MovieClip {tatum_fla.vgjctcopy7_410}
"tops_btn"Symbol 1154 MovieClip {tatum_fla.buttons_404} Frame 1Symbol 1140 MovieClip {tatum_fla.vgjctcopy8_411}
"dress_btn"Symbol 1154 MovieClip {tatum_fla.buttons_404} Frame 1Symbol 1152 MovieClip {tatum_fla.vgjctcopy9_412}
"glass_btn"Symbol 1154 MovieClip {tatum_fla.buttons_404} Frame 1Symbol 1153 MovieClip
"close"Symbol 1219 MovieClip {tatum_fla.hdhdfhf_emaiklY_421} Frame 1Symbol 1213 Button
"friendMail"Symbol 1219 MovieClip {tatum_fla.hdhdfhf_emaiklY_421} Frame 1Symbol 1216 EditableText
"friend1"Symbol 1248 MovieClip {tatum_fla.jgjyiy9_emaiklY_420} Frame 1Symbol 1219 MovieClip {tatum_fla.hdhdfhf_emaiklY_421}
"submit"Symbol 1248 MovieClip {tatum_fla.jgjyiy9_emaiklY_420} Frame 1Symbol 1234 Button
"addition"Symbol 1248 MovieClip {tatum_fla.jgjyiy9_emaiklY_420} Frame 1Symbol 1238 Button
"close"Symbol 1248 MovieClip {tatum_fla.jgjyiy9_emaiklY_420} Frame 1Symbol 1213 Button
"friend2"Symbol 1248 MovieClip {tatum_fla.jgjyiy9_emaiklY_420} Frame 1Symbol 1219 MovieClip {tatum_fla.hdhdfhf_emaiklY_421}
"friend3"Symbol 1248 MovieClip {tatum_fla.jgjyiy9_emaiklY_420} Frame 1Symbol 1219 MovieClip {tatum_fla.hdhdfhf_emaiklY_421}
"friend4"Symbol 1248 MovieClip {tatum_fla.jgjyiy9_emaiklY_420} Frame 1Symbol 1219 MovieClip {tatum_fla.hdhdfhf_emaiklY_421}
"nameDetail"Symbol 1248 MovieClip {tatum_fla.jgjyiy9_emaiklY_420} Frame 1Symbol 1243 EditableText
"mailDetail"Symbol 1248 MovieClip {tatum_fla.jgjyiy9_emaiklY_420} Frame 1Symbol 1244 EditableText
"messageDetail"Symbol 1248 MovieClip {tatum_fla.jgjyiy9_emaiklY_420} Frame 1Symbol 1245 EditableText
"friendName"Symbol 1248 MovieClip {tatum_fla.jgjyiy9_emaiklY_420} Frame 1Symbol 1246 EditableText
"friendMail"Symbol 1248 MovieClip {tatum_fla.jgjyiy9_emaiklY_420} Frame 1Symbol 1247 EditableText

Special Tags

FileAttributes (69)Timeline Frame 1Access network only, Metadata not present, AS3.




http://swfchan.com/23/112288/info.shtml
Created: 12/3 -2019 10:59:47 Last modified: 12/3 -2019 10:59:47 Server time: 18/04 -2024 22:13:23