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/36069065?noj=FRM36069065-19DC" width="1" height="1"></div>

Chicks`N`Dicks Chicks`N`Dicks PUZZLED! (by HALC) CG,puzzle,Jigsaw.swf

This is the info page for
Flash #231290

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


Text
PLEASE WAIT

EASY

IF YOU LIKE FINISH FAST

NORMAL

RIGHT CHOICE !

ACHIEVEMENTS

BACK

START GAME

MORE GIRLS

BEST of HENTAI

NEED ANY PILLS ?

COMPLETE GAME FIRST

DONE!

CLICK HERE TO CONTINUE !

THANK YOU FOR PLAYING OUR GAME !

Please support us if you enjoed this game!
Please vote for this game to add it to
the "Adult Games" Collection at NG.

CLICK HERE TO VOTE!

Please support us if you enjoed this
game by paying attention to our
sponsor deal !

CLICK HERE TO PROCEED

ActionScript [AS3]

Section 1
//Back (gs.easing.Back) package gs.easing { public class Back { public static function easeOut(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Number=1.70158):Number{ _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=1.70158):Number{ _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=1.70158):Number{ _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 gs.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 _target:Object; protected var _visible:Boolean; protected var _tween:TweenLite; 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 killProps(_arg1:Object):void{ super.killProps(_arg1); _tweenVisible = !(Boolean(("visible" in _arg1))); } 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 set changeFactor(_arg1:Number):void{ updateTweens(_arg1); if (((!((_target.visible == true))) && (_tweenVisible))){ _target.visible = true; }; } } }//package gs.plugins
Section 3
//EndArrayPlugin (gs.plugins.EndArrayPlugin) package gs.plugins { import gs.*; import flash.display.*; import gs.utils.tween.*; public class EndArrayPlugin extends TweenPlugin { protected var _a:Array; protected var _info: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"]; } public function init(_arg1:Array, _arg2:Array):void{ _a = _arg1; var _local3:int = (_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); } 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--; }; }; } } }//package gs.plugins
Section 4
//FramePlugin (gs.plugins.FramePlugin) package gs.plugins { import gs.*; import flash.display.*; public class FramePlugin extends TweenPlugin { protected var _target:MovieClip; public var frame:int; 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 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); } override public function set changeFactor(_arg1:Number):void{ updateTweens(_arg1); _target.gotoAndStop(this.frame); } } }//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 _target:DisplayObject; protected var _ct:ColorTransform; protected var _ignoreAlpha:Boolean; 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"]; } 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{ if (!(_arg1 is DisplayObject)){ return (false); }; var _local4:ColorTransform = new ColorTransform(); if (((!((_arg2 == null))) && (!((_arg3.exposedVars.removeTint == true))))){ _local4.color = uint(_arg2); }; _ignoreAlpha = true; init((_arg1 as DisplayObject), _local4); return (true); } 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; } } }//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 propName:String; public var onComplete:Function; public var round:Boolean; protected var _changeFactor:Number;// = 0 public static const VERSION:Number = 1.03; public static const API:Number = 1; public function TweenPlugin(){ _tweens = []; 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 _target:Object; protected var _visible:Boolean; protected var _tween:TweenLite; public static const VERSION:Number = 1; public static const API:Number = 1; public function VisiblePlugin(){ this.propName = "visible"; this.overwriteProps = ["visible"]; this.onComplete = onCompleteTween; } 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); } override public function set changeFactor(_arg1:Number):void{ if (_target.visible != true){ _target.visible = 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 _target:Object; protected var _st:SoundTransform; 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 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); } override public function set changeFactor(_arg1:Number):void{ updateTweens(_arg1); _target.soundTransform = _st; } } }//package gs.plugins
Section 10
//ArrayTweenInfo (gs.utils.tween.ArrayTweenInfo) package gs.utils.tween { public class ArrayTweenInfo { public var change:Number; public var start:Number; public var index:uint; 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 started:Boolean; public var delay:Number; protected var _hasUpdate:Boolean; protected var _hasPlugins: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 tweens:Array; public var vars:Object; public var ease:Function; public var exposedVars:Object; public var initTime:Number; public var combinedTimeScale:Number; public static const version:Number = 10.091; 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){ 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)); var _local4:int = ((((_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 get enabled():Boolean{ return ((this.gc) ? false : true); } 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 _local3:Number; var _local4:TweenInfo; var _local5:int; var _local2:Number = ((_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 initTweenVals():void{ var _local1:String; var _local2:int; var _local3:*; var _local4:TweenInfo; if (((!((this.exposedVars.timeScale == undefined))) && (this.target.hasOwnProperty("timeScale")))){ 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 _local4:Array; var _local5:int; var _local6:TweenLite; var _local2:uint = (currentTime = getTimer()); var _local3:Dictionary = 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 _local3:Object; var _local2:Dictionary = 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
//Splash_NON_NG2_30 (puzzle_fla.Splash_NON_NG2_30) package puzzle_fla { import flash.display.*; public dynamic class Splash_NON_NG2_30 extends MovieClip { public function Splash_NON_NG2_30(){ addFrameScript(64, frame65); } function frame65(){ stop(); } } }//package puzzle_fla
Section 14
//title_m_5 (puzzle_fla.title_m_5) package puzzle_fla { import flash.display.*; public dynamic class title_m_5 extends MovieClip { public var loops:MovieClip; public function title_m_5(){ addFrameScript(0, frame1); } function frame1(){ stop(); loops.gotoAndStop((1 + int((Math.random() * 5)))); } } }//package puzzle_fla
Section 15
//click_snd (click_snd) package { import flash.media.*; public dynamic class click_snd extends Sound { } }//package
Section 16
//configManager (configManager) package { import flash.events.*; import flash.display.*; import flash.utils.*; import flash.net.*; import flash.system.*; public class configManager extends MovieClip { var showonload:String;// = null var popupurl:String;// = "" var areas:Dictionary; public var values:Array; var gid:String; var ver:uint; var areacontent:Dictionary; var configXML:XML; public function configManager(_arg1:String, _arg2:uint, _arg3:Stage):void{ var ioErrorHandler:Function; var loadXML:Function; var gameid = _arg1; var version = _arg2; var st = _arg3; configXML = <config></config> ; areas = new Dictionary(true); areacontent = new Dictionary(true); values = []; super(); ioErrorHandler = function (_arg1:Event):void{ trace("config fail"); }; loadXML = function (_arg1:Event):void{ var k:uint; var tmpfn:Function; var e = _arg1; configXML = new XML(e.target.data); var i:uint; while (i < configXML.stages.stage.length()) { k = 0; while (k < configXML.stages.stage[i].banners.banner.length()) { if (configXML.stages.stage[i].banners.banner[k].@autoload == "true"){ trace(((("get content " + configXML.stages.stage[i].@name) + " loc:") + configXML.stages.stage[i].banners.banner[k].@location)); getContent(configXML.stages.stage[i].@name, k, configXML.stages.stage[i].banners.banner[k].@location, configXML.stages.stage[i].banners.banner[k].@x, configXML.stages.stage[i].banners.banner[k].@y, configXML.stages.stage[i].banners.banner[k].@href); }; if (configXML.stages.stage[i].@name == "popup"){ tmpfn = function (_arg1:Event):void{ if (popupurl != ""){ navigateToURL(new URLRequest(popupurl), "_blank"); }; st.removeEventListener(MouseEvent.CLICK, tmpfn); }; st.addEventListener(MouseEvent.CLICK, tmpfn); popupurl = configXML.stages.stage[i].banners.banner[k].@href; }; k = (k + 1); }; i = (i + 1); }; i = 0; while (i < configXML.values.value.length()) { if (String(configXML.values.value[i].@stagename).length > 0){ values[configXML.values.value[i].@name] = [configXML.values.value[i].@stagename, configXML.values.value[i].@text]; } else { values[String(configXML.values.value[i].@name)] = String(configXML.values.value[i].@value); }; i = (i + 1); }; dispatchEvent(new Event("CONFIGLOADED")); trace("config loaded\n\n"); }; gid = gameid; ver = version; var loader:URLLoader = new URLLoader(); loader.addEventListener(SecurityErrorEvent.SECURITY_ERROR, ioErrorHandler); loader.addEventListener(IOErrorEvent.IO_ERROR, ioErrorHandler); loader.addEventListener(Event.COMPLETE, loadXML); loader.load(new URLRequest(((((("http://config.mutanky.com/?gameid=" + gameid) + "&version=") + version) + "&player=") + Capabilities.version))); } public function addArea(_arg1:String, _arg2:MovieClip):void{ var bannerid:uint; var i:uint; var k:uint; var id = _arg1; var area = _arg2; if (areas[id] == undefined){ areas[id] = area; if (areacontent[id] == undefined){ areacontent[id] = []; i = 0; while (i < configXML.stages.stage.length()) { if (String(configXML.stages.stage[i].@name) == id){ k = 0; while (k < configXML.stages.stage[i].banners.banner.length()) { getContent(configXML.stages.stage[i].@name, k, configXML.stages.stage[i].banners.banner[k].@location, configXML.stages.stage[i].banners.banner[k].@x, configXML.stages.stage[i].banners.banner[k].@y, configXML.stages.stage[i].banners.banner[k].@href); k = (k + 1); }; }; i = (i + 1); }; }; }; bannerid = int((Math.random() * areacontent[id].length)); if (((((!((areacontent[id][bannerid] == null))) && (!((areacontent[id][bannerid] == undefined))))) && (!(area.contains(areacontent[id][bannerid]))))){ area.addChild(areacontent[id][bannerid]); dispatchEvent(new Event(("LOADED_" + id))); if (areacontent[id][bannerid].href != ""){ areacontent[id][bannerid].addEventListener(MouseEvent.CLICK, function (_arg1:Event):void{ navigateToURL(new URLRequest(areacontent[id][bannerid].href), "_blank"); }); }; } else { showonload = id; }; trace((("start " + id) + " area")); } function getContent(_arg1:String, _arg2:uint, _arg3:String, _arg4:Number, _arg5:Number, _arg6:String):void{ var loadcontent:Function; var id = _arg1; var arrid = _arg2; var loc = _arg3; var x = _arg4; var y = _arg5; var href = _arg6; loadcontent = function (_arg1:Event):void{ var bannerid:uint; var e = _arg1; if (areacontent[id] == undefined){ areacontent[id] = []; }; e.target.content.x = x; e.target.content.y = y; e.target.content.href = href; e.target.content.gameid = gid; e.target.content.version = ver; areacontent[id][arrid] = e.target.content; if (showonload == id){ bannerid = int((Math.random() * areacontent[id].length)); areas[id].addChild(areacontent[id][bannerid]); if (areacontent[id][bannerid].href != ""){ areacontent[id][bannerid].addEventListener(MouseEvent.CLICK, function (_arg1:Event):void{ navigateToURL(new URLRequest(areacontent[id][bannerid].href), "_blank"); }); }; }; trace("content loaded"); trace(("LOADED_" + id)); dispatchEvent(new Event(("LOADED_" + id))); }; var loader:Loader = new Loader(); loader.contentLoaderInfo.addEventListener(Event.COMPLETE, loadcontent); loader.load(new URLRequest(loc)); } } }//package
Section 17
//FX1 (FX1) package { import flash.events.*; import flash.display.*; public dynamic class FX1 extends MovieClip { public var b:MovieClip; public var t:MovieClip; public var r:MovieClip; public var l:MovieClip; public function FX1(){ addFrameScript(14, frame15); } function frame15(){ dispatchEvent(new Event("DONE")); } } }//package
Section 18
//game_snd (game_snd) package { import flash.media.*; public dynamic class game_snd extends Sound { } }//package
Section 19
//grid_easy (grid_easy) package { import flash.display.*; public dynamic class grid_easy extends MovieClip { } }//package
Section 20
//grid_normal (grid_normal) package { import flash.display.*; public dynamic class grid_normal extends MovieClip { } }//package
Section 21
//item (item) package { import flash.display.*; public class item extends MovieClip { public var goodPlace:Boolean;// = false public var pmask:MovieClip; public var bg:MovieClip; public var goodi; public var goodk:uint; } }//package
Section 22
//menu_snd (menu_snd) package { import flash.media.*; public dynamic class menu_snd extends Sound { } }//package
Section 23
//puzzleGame (puzzleGame) package { import gs.*; import flash.events.*; import flash.display.*; import flash.geom.*; import gs.easing.*; import flash.media.*; import flash.filters.*; import flash.net.*; public class puzzleGame extends MovieClip { public var easyBtn:MovieClip; public var easy:Boolean; public var achBtn2:MovieClip; var activePeace:MovieClip; public var backBtn:MovieClip; var rotatingMc:MovieClip; var bgid:uint;// = 1 var rotateCounter:uint;// = 0 public var movie:MovieClip; var puzzle:Array; public var zz:uint; public var config:configManager; var grid:MovieClip; var clickCounter:uint;// = 0 public var btn1:MovieClip; public var btn2:MovieClip; public var btn3:MovieClip; public var btn4:MovieClip; public var btn5:MovieClip; public var spl1:MovieClip; public var spl2:MovieClip; public var preloader:MovieClip; public var done:MovieClip; var cellSize:uint;// = 110 public var gameid:String; var mcs:Array; public var spl:MovieClip; public var bonusAvalible; public var adv:MovieClip; public var ng:Boolean; public var defaultValues:Array; public var bgSound:SoundChannel; public var btn2d:MovieClip; var gridSizeX; var gridSizeY:uint; public var defaultKeys:Array; public var nglist:Array; public var version:uint; public var normalBtn:MovieClip; public var achBtn1:MovieClip; public var select:MovieClip; public var achBtn3:MovieClip; public var achBtn4:MovieClip; public var achBtn5:MovieClip; public function puzzleGame():void{ puzzle = []; mcs = []; super(); addFrameScript(0, frame1, 1, frame2, 2, frame3, 3, frame4, 4, frame5, 5, frame6, 6, frame7, 7, frame8, 8, frame9); addEventListener(MouseEvent.CLICK, function (_arg1:Event){ new click_snd().play(); }); } public function btnMO(_arg1:Event):void{ select.visible = true; select.y = (_arg1.target.y + 7); if (btn2d){ btn2d.visible = false; }; } public function comp(_arg1:Event):void{ gotoAndStop(1, "Menu"); } public function btnMOU(_arg1:Event):void{ if (select){ select.visible = false; }; } public function makebtn1(_arg1:MovieClip):void{ _arg1.useHandCursor = true; _arg1.buttonMode = true; _arg1.addEventListener(MouseEvent.CLICK, achBtnCL); } function chkDone():void{ var _local2:*; var _local3:uint; var _local1:Boolean; _local2 = 0; while (_local2 < mcs.length) { _local3 = 0; while (_local3 < mcs[_local2].length) { if ((((((mcs[_local2][_local3].rotation == 0)) && ((Math.floor((mcs[_local2][_local3].x / cellSize)) == mcs[_local2][_local3].goodk)))) && ((Math.floor((mcs[_local2][_local3].y / cellSize)) == mcs[_local2][_local3].goodi)))){ } else { _local1 = false; }; _local3++; }; _local2++; }; if (_local1){ trace("done!!!"); done.alpha = 0; done.visible = true; TweenLite.to(done, 1, {alpha:1, ease:Back.easeInOut}); }; } function Play():void{ bgid = 1; done.visible = false; done.useHandCursor = true; done.buttonMode = true; done.addEventListener(MouseEvent.CLICK, doneFNC); if (easy){ grid = new grid_easy(); grid.x = 27.5; gridSizeX = 3; gridSizeY = 2; cellSize = 165; } else { grid = new grid_normal(); gridSizeX = 5; gridSizeY = 3; cellSize = 110; }; addChild(grid); makePuzzle(gridSizeX, gridSizeY); stage.addEventListener(Event.ENTER_FRAME, EF); stage.addEventListener(MouseEvent.MOUSE_MOVE, MM); stage.addEventListener(KeyboardEvent.KEY_DOWN, keyDownHandler); } function frame1(){ gameid = "cndp-1"; version = 1; bonusAvalible = false; easy = false; config = new configManager(gameid, version, stage); config.addEventListener("CONFIGLOADED", cfgLoaded); defaultKeys = ["vote", "pills"]; defaultValues = []; defaultValues["vote"] = 0; defaultValues["pills"] = 0; ng = false; nglist = ["ungrounded.net", "newgrounds.com"]; zz = 0; while (zz < nglist.length) { if (loaderInfo.loaderURL.indexOf(nglist[zz]) > 0){ ng = true; }; zz++; }; stage.showDefaultContextMenu = false; loaderInfo.addEventListener(Event.COMPLETE, comp); } function frame2(){ preloader.stop(); stop(); loaderInfo.addEventListener(ProgressEvent.PROGRESS, update); config.addArea("preloader", adv); } function frame4(){ config.addArea("ach", adv); makebtn1(achBtn1); makebtn1(achBtn2); makebtn1(achBtn3); makebtn1(achBtn4); makebtn1(achBtn5); movie.gotoAndStop(6); movie.visible = false; backBtn.useHandCursor = true; backBtn.buttonMode = true; backBtn.addEventListener(MouseEvent.CLICK, bBtnCL); } function frame5(){ stop(); if (bgSound){ bgSound.stop(); }; bgSound = new menu_snd().play(0, int.MAX_VALUE); config.addArea("menu", adv); if (defaultValues["pills"] == 0){ btn5.visible = false; }; select.visible = false; btn2d.visible = false; makebtn(btn1); makebtn(btn2); makebtn(btn3); makebtn(btn4); makebtn(btn5); } function magnet(_arg1:MovieClip):void{ var fx:MovieClip; var m = _arg1; var deltaPix:uint = 15; var deltaPix21:uint = 55; var deltaPix22:uint = 55; var deltaPix3:uint = 5; if (easy){ deltaPix = 80; deltaPix21 = (82.5 + 27.5); deltaPix22 = 82.5; deltaPix3 = 12; }; var nx:uint = ((Math.floor((m.x / cellSize)) * cellSize) + deltaPix21); var ny:uint = ((Math.floor((m.y / cellSize)) * cellSize) + deltaPix22); if ((((Math.floor((m.x / cellSize)) == m.goodk)) && ((Math.floor((m.y / cellSize)) == m.goodi)))){ if ((((m.rotation == 0)) && ((((Math.abs((nx - m.x)) < deltaPix)) || ((Math.abs((ny - m.y)) < deltaPix)))))){ var re:Function = function (_arg1:Event):void{ if (((fx) && (contains(fx)))){ removeChild(fx); }; if (fx){ fx = null; }; }; m.x = nx; m.y = ny; new set_snd().play(); fx = new FX1(); fx.x = (nx - (cellSize / 2)); fx.y = (ny - (cellSize / 2)); fx.width = cellSize; fx.height = cellSize; addChild(fx); fx.addEventListener("DONE", re); chkDone(); }; } else { if ((((Math.abs((nx - m.x)) < deltaPix3)) || ((Math.abs((ny - m.y)) < deltaPix3)))){ m.x = nx; m.y = ny; }; }; } function frame8(){ stop(); spl1.useHandCursor = true; spl1.buttonMode = true; spl1.addEventListener(MouseEvent.CLICK, voteCL1); } function frame9(){ stop(); spl2.useHandCursor = true; spl2.buttonMode = true; spl2.addEventListener(MouseEvent.CLICK, voteCL2); } function frame3(){ easyBtn.alpha = 0; normalBtn.alpha = 0; TweenLite.to(easyBtn, 0.35, {alpha:1, ease:Back.easeInOut}); TweenLite.to(normalBtn, 0.35, {alpha:1, ease:Back.easeInOut}); easyBtn.useHandCursor = true; easyBtn.buttonMode = true; easyBtn.addEventListener(MouseEvent.CLICK, function (_arg1:Event){ easy = true; gotoAndStop(1, "Game"); }); normalBtn.useHandCursor = true; normalBtn.buttonMode = true; normalBtn.addEventListener(MouseEvent.CLICK, function (_arg1:Event){ easy = false; gotoAndStop(1, "Game"); }); } private function keyDownHandler(_arg1:KeyboardEvent):void{ if ((((_arg1.keyCode == 32)) && (done.visible))){ doneFNC(null); }; } function frame7(){ stop(); spl.useHandCursor = true; spl.buttonMode = true; spl.addEventListener(MouseEvent.CLICK, voteCL); } function frame6(){ config.addArea("game", adv); if (bgSound){ bgSound.stop(); }; bgSound = new game_snd().play(0, int.MAX_VALUE); Play(); } public function bBtnCL(_arg1:Event):void{ if (movie.visible){ movie.gotoAndStop(6); movie.visible = false; } else { gotoAndStop(1, "Menu"); }; } public function cfgLoaded(_arg1:Event):void{ var _local2:uint; while (_local2 < defaultKeys.length) { if (config.values[defaultKeys[_local2]]){ defaultValues[defaultKeys[_local2]] = config.values[defaultKeys[_local2]]; }; _local2++; }; } function MD(_arg1:Event):void{ var i:*; var k:uint; var e = _arg1; if (((rotatingMc) || (done.visible))){ return; }; clickCounter = 0; i = 0; while (i < mcs.length) { k = 0; while (k < mcs[i].length) { mcs[i][k].filters = []; k = (k + 1); }; i = (i + 1); }; var m:MovieClip = (e.target.parent.parent as MovieClip); if (!(((m is puzzleItem)) || ((m is puzzleItem2)))){ return; }; if (m == null){ return; }; if (!contains(m)){ return; }; try { setChildIndex(m, (numChildren - 1)); setChildIndex(adv, (numChildren - 1)); } catch(e:Error) { }; activePeace = m; m.startDrag(false, new Rectangle(0, 0, 550, 400)); m.filters = [new GlowFilter(0, 1, 5, 5, 1, BitmapFilterQuality.LOW, false, false)]; } function MM(_arg1:Event){ var onFinishTween:Function; var e = _arg1; onFinishTween = function ():void{ if (activePeace){ activePeace.filters = []; }; }; if (activePeace == null){ return; }; if ((((activePeace.y > 330)) && ((activePeace.scaleX == 1)))){ activePeace.filters = [new BlurFilter(1.25, 1.25, BitmapFilterQuality.HIGH)]; TweenLite.to(activePeace, 0.35, {scaleX:0.5, scaleY:0.5, ease:Back.easeInOut, onComplete:onFinishTween}); }; if ((((activePeace.y < 330)) && ((activePeace.scaleX == 0.5)))){ activePeace.filters = [new BlurFilter(1.25, 1.25, BitmapFilterQuality.HIGH)]; TweenLite.to(activePeace, 0.35, {scaleX:1, scaleY:1, ease:Back.easeInOut, onComplete:onFinishTween}); }; } function EF(_arg1:Event){ clickCounter++; if (rotatingMc){ rotatingMc.filters = [new BlurFilter(((2 * Math.abs((3 - rotateCounter))) + 1), ((2 * Math.abs((3 - rotateCounter))) + 1), BitmapFilterQuality.LOW)]; rotateCounter++; rotatingMc.rotation = (rotatingMc.rotation + 18); if (rotateCounter == 5){ rotatingMc.filters = []; magnet(rotatingMc); chkDone(); rotatingMc = null; }; }; } public function makebtn(_arg1:MovieClip):void{ _arg1.useHandCursor = true; _arg1.buttonMode = true; _arg1.addEventListener(MouseEvent.MOUSE_OVER, btnMO); _arg1.addEventListener(MouseEvent.MOUSE_OUT, btnMOU); _arg1.addEventListener(MouseEvent.CLICK, btnCL); } public function voteCL1(_arg1:Event):void{ spl1.removeEventListener(MouseEvent.CLICK, voteCL1); navigateToURL(new URLRequest((((("http://tds.mutanky.com/?gameid=" + gameid) + "&version=") + version) + "&action=splash")), "_blank"); gotoAndStop(1, "PROCEED"); } public function voteCL2(_arg1:Event):void{ spl2.removeEventListener(MouseEvent.CLICK, voteCL2); navigateToURL(new URLRequest((((("http://tds.mutanky.com/?gameid=" + gameid) + "&version=") + version) + "&action=proceed")), "_blank"); gotoAndStop(1, "Menu"); } public function btnCL(_arg1:Event):void{ switch (_arg1.target.name){ case "btn1": gotoAndStop(1, "Menu1"); break; case "btn2": if (bonusAvalible){ gotoAndStop(1, "Menu2"); } else { btn2d.visible = true; }; break; case "btn3": navigateToURL(new URLRequest((((("http://tds.mutanky.com/?gameid=" + gameid) + "&version=") + version) + "&action=more-girls")), "_blank"); break; case "btn4": navigateToURL(new URLRequest((((("http://tds.mutanky.com/?gameid=" + gameid) + "&version=") + version) + "&action=best-of-hentai")), "_blank"); break; case "btn5": navigateToURL(new URLRequest((((("http://tds.mutanky.com/?gameid=" + gameid) + "&version=") + version) + "&action=pills")), "_blank"); break; }; } function doneFNC(_arg1:Event):void{ var _local2:*; var _local3:uint; bgid++; _local2 = 0; while (_local2 < mcs.length) { _local3 = 0; while (_local3 < mcs[_local2].length) { removeChild(mcs[_local2][_local3]); mcs[_local2][_local3] = null; _local3++; }; _local2++; }; done.visible = false; if (bgid == 6){ bonusAvalible = true; removeChild(grid); if ((((defaultValues["vote"] == 1)) && ((ng == 1)))){ gotoAndStop(1, "NG"); } else { gotoAndStop(1, "NNG"); }; return; }; makePuzzle(gridSizeX, gridSizeY); } public function update(_arg1:ProgressEvent):void{ preloader.gotoAndStop((1 + int((Math.floor(((_arg1.bytesLoaded * 100) / _arg1.bytesTotal)) / 4)))); } function makePuzzle(_arg1, _arg2:uint):void{ var _local5:uint; var _local6:Object; var _local7:MovieClip; var _local3:Array = [0, 3, 4, 1, 2]; var _local4:uint; while (_local4 < _arg2) { _local5 = 0; while (_local5 < _arg1) { if (_local5 == 0){ puzzle[_local4] = []; }; _local6 = {}; _local6.top = null; _local6.bottom = null; _local6.left = null; _local6.right = null; if (_local5 == 0){ _local6.left = 0; }; if (_local5 == (_arg1 - 1)){ _local6.right = 0; }; if (_local4 == 0){ _local6.top = 0; }; if (_local4 == (_arg2 - 1)){ _local6.bottom = 0; }; puzzle[_local4][_local5] = _local6; _local5++; }; _local4++; }; if (!easy){ _local4 = 0; while (_local4 < _arg2) { _local5 = 0; while (_local5 < _arg1) { if (puzzle[_local4][_local5].right == null){ puzzle[_local4][_local5].right = (int((Math.random() * 4)) + 1); puzzle[_local4][(_local5 + 1)].left = _local3[puzzle[_local4][_local5].right]; }; if (puzzle[_local4][_local5].bottom == null){ puzzle[_local4][_local5].bottom = (int((Math.random() * 4)) + 1); puzzle[(_local4 + 1)][_local5].top = _local3[puzzle[_local4][_local5].bottom]; }; _local5++; }; _local4++; }; }; _local4 = 0; while (_local4 < _arg2) { _local5 = 0; while (_local5 < _arg1) { if (easy){ _local7 = new puzzleItem2(); } else { _local7 = new puzzleItem(); }; _local7.pmask.t.gotoAndStop((puzzle[_local4][_local5].top + 1)); _local7.pmask.r.gotoAndStop((puzzle[_local4][_local5].right + 1)); _local7.pmask.l.gotoAndStop((puzzle[_local4][_local5].left + 1)); _local7.pmask.bo.gotoAndStop((puzzle[_local4][_local5].bottom + 1)); _local7.pmask.cacheAsBitmap = true; _local7.pmask.l.cacheAsBitmap = true; _local7.pmask.r.cacheAsBitmap = true; _local7.pmask.t.cacheAsBitmap = true; _local7.pmask.bo.cacheAsBitmap = true; _local7.pmask.cacheAsBitmap = true; _local7.pmask.x = -((25 + (cellSize / 2))); _local7.pmask.y = -((25 + (cellSize / 2))); _local7.x = (((_local5 * cellSize) - 25) + (25 + (cellSize / 2))); _local7.y = (((_local4 * cellSize) - 25) + (25 + (cellSize / 2))); _local7.bg.gotoAndStop(bgid); _local7.bg.x = -((((_local5 * cellSize) - 25) + (25 + (cellSize / 2)))); _local7.bg.y = -((((_local4 * cellSize) - 25) + (25 + (cellSize / 2)))); addChild(_local7); if (_local5 == 0){ mcs[_local4] = []; }; mcs[_local4][_local5] = _local7; _local7.useHandCUrsor = true; _local7.buttonMode = true; _local7.addEventListener(MouseEvent.MOUSE_DOWN, MD); _local7.addEventListener(MouseEvent.MOUSE_UP, MU); _local7.x = (Math.random() * 500); _local7.y = ((Math.random() * 50) + 330); _local7.rotation = (int((Math.random() * 3)) * 90); _local7.goodk = _local5; _local7.goodi = _local4; _local7.scaleX = 0.5; _local7.scaleY = 0.5; _local5++; }; _local4++; }; } public function voteCL(_arg1:Event):void{ spl.removeEventListener(MouseEvent.CLICK, voteCL); navigateToURL(new URLRequest((((("http://tds.mutanky.com/?gameid=" + gameid) + "&version=") + version) + "&action=vote")), "_blank"); gotoAndStop(1, "PROCEED"); } public function achBtnCL(_arg1:Event):void{ movie.visible = true; movie.gotoAndStop(_arg1.target.name.substr(6, 1)); } function MU(_arg1:Event):void{ var _local2:*; var _local3:uint; if (activePeace == null){ return; }; _arg1.target.parent.parent.stopDrag(); _local2 = 0; while (_local2 < mcs.length) { _local3 = 0; while (_local3 < mcs[_local2].length) { mcs[_local2][_local3].filters = []; _local3++; }; _local2++; }; if (clickCounter < 6){ rotatingMc = _arg1.target.parent.parent; rotateCounter = 0; activePeace = null; return; }; if ((((activePeace.x < 550)) && ((activePeace.y < 330)))){ magnet(activePeace); }; activePeace = null; } } }//package
Section 24
//puzzleItem (puzzleItem) package { public dynamic class puzzleItem extends item { } }//package
Section 25
//puzzleItem2 (puzzleItem2) package { import flash.display.*; public dynamic class puzzleItem2 extends MovieClip { public var pmask:MovieClip; public var bg:MovieClip; } }//package
Section 26
//set_snd (set_snd) package { import flash.media.*; public dynamic class set_snd extends Sound { } }//package

Library Items

Symbol 1 GraphicUsed by:9 20 542  Timeline
Symbol 2 FontUsed by:3
Symbol 3 TextUses:2Used by:Timeline
Symbol 4 BitmapUsed by:5
Symbol 5 GraphicUses:4Used by:6
Symbol 6 MovieClipUses:5Used by:509 515  Timeline
Symbol 7 BitmapUsed by:8
Symbol 8 GraphicUses:7Used by:9
Symbol 9 MovieClipUses:1 8Used by:Timeline
Symbol 10 BitmapUsed by:11
Symbol 11 GraphicUses:10Used by:14 449
Symbol 12 GraphicUsed by:14
Symbol 13 GraphicUsed by:14 449
Symbol 14 MovieClipUses:11 12 13Used by:Timeline
Symbol 15 MovieClipUsed by:Timeline
Symbol 16 Sound {set_snd}
Symbol 17 Sound {menu_snd}
Symbol 18 Sound {game_snd}
Symbol 19 Sound {click_snd}
Symbol 20 MovieClipUses:1Used by:21
Symbol 21 MovieClipUses:20Used by:23
Symbol 22 GraphicUsed by:23
Symbol 23 MovieClip {FX1}Uses:21 22
Symbol 24 GraphicUsed by:29 440
Symbol 25 GraphicUsed by:29
Symbol 26 GraphicUsed by:29
Symbol 27 GraphicUsed by:29
Symbol 28 GraphicUsed by:29
Symbol 29 MovieClipUses:24 25 26 27 28Used by:32 442
Symbol 30 GraphicUsed by:31
Symbol 31 MovieClipUses:30Used by:32 442
Symbol 32 MovieClipUses:29 31Used by:441
Symbol 33 BitmapUsed by:34
Symbol 34 GraphicUses:33Used by:105
Symbol 35 BitmapUsed by:36
Symbol 36 GraphicUses:35Used by:105
Symbol 37 BitmapUsed by:38
Symbol 38 GraphicUses:37Used by:105
Symbol 39 BitmapUsed by:40
Symbol 40 GraphicUses:39Used by:105
Symbol 41 BitmapUsed by:42
Symbol 42 GraphicUses:41Used by:105
Symbol 43 BitmapUsed by:44
Symbol 44 GraphicUses:43Used by:105
Symbol 45 BitmapUsed by:46
Symbol 46 GraphicUses:45Used by:105
Symbol 47 BitmapUsed by:48
Symbol 48 GraphicUses:47Used by:105
Symbol 49 BitmapUsed by:50
Symbol 50 GraphicUses:49Used by:105
Symbol 51 BitmapUsed by:52
Symbol 52 GraphicUses:51Used by:105
Symbol 53 BitmapUsed by:54
Symbol 54 GraphicUses:53Used by:105
Symbol 55 BitmapUsed by:56
Symbol 56 GraphicUses:55Used by:105
Symbol 57 BitmapUsed by:58
Symbol 58 GraphicUses:57Used by:105
Symbol 59 BitmapUsed by:60
Symbol 60 GraphicUses:59Used by:105
Symbol 61 BitmapUsed by:62
Symbol 62 GraphicUses:61Used by:105
Symbol 63 BitmapUsed by:64
Symbol 64 GraphicUses:63Used by:105
Symbol 65 BitmapUsed by:66
Symbol 66 GraphicUses:65Used by:105
Symbol 67 BitmapUsed by:68
Symbol 68 GraphicUses:67Used by:105
Symbol 69 BitmapUsed by:70
Symbol 70 GraphicUses:69Used by:105
Symbol 71 BitmapUsed by:72
Symbol 72 GraphicUses:71Used by:105
Symbol 73 BitmapUsed by:74
Symbol 74 GraphicUses:73Used by:105
Symbol 75 BitmapUsed by:76
Symbol 76 GraphicUses:75Used by:105
Symbol 77 BitmapUsed by:78
Symbol 78 GraphicUses:77Used by:105
Symbol 79 BitmapUsed by:80
Symbol 80 GraphicUses:79Used by:105
Symbol 81 BitmapUsed by:82
Symbol 82 GraphicUses:81Used by:105
Symbol 83 BitmapUsed by:84
Symbol 84 GraphicUses:83Used by:105
Symbol 85 BitmapUsed by:86
Symbol 86 GraphicUses:85Used by:105
Symbol 87 BitmapUsed by:88
Symbol 88 GraphicUses:87Used by:105
Symbol 89 BitmapUsed by:90
Symbol 90 GraphicUses:89Used by:105
Symbol 91 BitmapUsed by:92
Symbol 92 GraphicUses:91Used by:105
Symbol 93 BitmapUsed by:94
Symbol 94 GraphicUses:93Used by:105
Symbol 95 BitmapUsed by:96
Symbol 96 GraphicUses:95Used by:105
Symbol 97 BitmapUsed by:98
Symbol 98 GraphicUses:97Used by:105
Symbol 99 BitmapUsed by:100
Symbol 100 GraphicUses:99Used by:105
Symbol 101 BitmapUsed by:102
Symbol 102 GraphicUses:101Used by:105
Symbol 103 BitmapUsed by:104
Symbol 104 GraphicUses:103Used by:105
Symbol 105 MovieClipUses:34 36 38 40 42 44 46 48 50 52 54 56 58 60 62 64 66 68 70 72 74 76 78 80 82 84 86 88 90 92 94 96 98 100 102 104Used by:440
Symbol 106 BitmapUsed by:107
Symbol 107 GraphicUses:106Used by:176
Symbol 108 BitmapUsed by:109
Symbol 109 GraphicUses:108Used by:176
Symbol 110 BitmapUsed by:111
Symbol 111 GraphicUses:110Used by:176
Symbol 112 BitmapUsed by:113
Symbol 113 GraphicUses:112Used by:176
Symbol 114 BitmapUsed by:115
Symbol 115 GraphicUses:114Used by:176
Symbol 116 BitmapUsed by:117
Symbol 117 GraphicUses:116Used by:176
Symbol 118 BitmapUsed by:119
Symbol 119 GraphicUses:118Used by:176
Symbol 120 BitmapUsed by:121
Symbol 121 GraphicUses:120Used by:176
Symbol 122 BitmapUsed by:123
Symbol 123 GraphicUses:122Used by:176
Symbol 124 BitmapUsed by:125
Symbol 125 GraphicUses:124Used by:176
Symbol 126 BitmapUsed by:127
Symbol 127 GraphicUses:126Used by:176
Symbol 128 BitmapUsed by:129
Symbol 129 GraphicUses:128Used by:176
Symbol 130 BitmapUsed by:131
Symbol 131 GraphicUses:130Used by:176
Symbol 132 BitmapUsed by:133
Symbol 133 GraphicUses:132Used by:176
Symbol 134 BitmapUsed by:135
Symbol 135 GraphicUses:134Used by:176
Symbol 136 BitmapUsed by:137
Symbol 137 GraphicUses:136Used by:176
Symbol 138 BitmapUsed by:139
Symbol 139 GraphicUses:138Used by:176
Symbol 140 BitmapUsed by:141
Symbol 141 GraphicUses:140Used by:176
Symbol 142 BitmapUsed by:143
Symbol 143 GraphicUses:142Used by:176
Symbol 144 BitmapUsed by:145
Symbol 145 GraphicUses:144Used by:176
Symbol 146 BitmapUsed by:147
Symbol 147 GraphicUses:146Used by:176
Symbol 148 BitmapUsed by:149
Symbol 149 GraphicUses:148Used by:176
Symbol 150 BitmapUsed by:151
Symbol 151 GraphicUses:150Used by:176
Symbol 152 BitmapUsed by:153
Symbol 153 GraphicUses:152Used by:176
Symbol 154 BitmapUsed by:155
Symbol 155 GraphicUses:154Used by:176
Symbol 156 BitmapUsed by:157
Symbol 157 GraphicUses:156Used by:176
Symbol 158 BitmapUsed by:159
Symbol 159 GraphicUses:158Used by:176
Symbol 160 BitmapUsed by:161
Symbol 161 GraphicUses:160Used by:176
Symbol 162 BitmapUsed by:163
Symbol 163 GraphicUses:162Used by:176
Symbol 164 BitmapUsed by:165
Symbol 165 GraphicUses:164Used by:176
Symbol 166 BitmapUsed by:167
Symbol 167 GraphicUses:166Used by:176
Symbol 168 BitmapUsed by:169
Symbol 169 GraphicUses:168Used by:176
Symbol 170 BitmapUsed by:171
Symbol 171 GraphicUses:170Used by:176
Symbol 172 BitmapUsed by:173
Symbol 173 GraphicUses:172Used by:176
Symbol 174 BitmapUsed by:175
Symbol 175 GraphicUses:174Used by:176
Symbol 176 MovieClipUses:107 109 111 113 115 117 119 121 123 125 127 129 131 133 135 137 139 141 143 145 147 149 151 153 155 157 159 161 163 165 167 169 171 173 175Used by:440
Symbol 177 BitmapUsed by:178
Symbol 178 GraphicUses:177Used by:241
Symbol 179 BitmapUsed by:180
Symbol 180 GraphicUses:179Used by:241
Symbol 181 BitmapUsed by:182
Symbol 182 GraphicUses:181Used by:241
Symbol 183 BitmapUsed by:184
Symbol 184 GraphicUses:183Used by:241
Symbol 185 BitmapUsed by:186
Symbol 186 GraphicUses:185Used by:241
Symbol 187 BitmapUsed by:188
Symbol 188 GraphicUses:187Used by:241
Symbol 189 BitmapUsed by:190
Symbol 190 GraphicUses:189Used by:241
Symbol 191 BitmapUsed by:192
Symbol 192 GraphicUses:191Used by:241
Symbol 193 BitmapUsed by:194
Symbol 194 GraphicUses:193Used by:241
Symbol 195 BitmapUsed by:196
Symbol 196 GraphicUses:195Used by:241
Symbol 197 BitmapUsed by:198
Symbol 198 GraphicUses:197Used by:241
Symbol 199 BitmapUsed by:200
Symbol 200 GraphicUses:199Used by:241
Symbol 201 BitmapUsed by:202
Symbol 202 GraphicUses:201Used by:241
Symbol 203 BitmapUsed by:204
Symbol 204 GraphicUses:203Used by:241
Symbol 205 BitmapUsed by:206
Symbol 206 GraphicUses:205Used by:241
Symbol 207 BitmapUsed by:208
Symbol 208 GraphicUses:207Used by:241
Symbol 209 BitmapUsed by:210
Symbol 210 GraphicUses:209Used by:241
Symbol 211 BitmapUsed by:212
Symbol 212 GraphicUses:211Used by:241
Symbol 213 BitmapUsed by:214
Symbol 214 GraphicUses:213Used by:241
Symbol 215 BitmapUsed by:216
Symbol 216 GraphicUses:215Used by:241
Symbol 217 BitmapUsed by:218
Symbol 218 GraphicUses:217Used by:241
Symbol 219 BitmapUsed by:220
Symbol 220 GraphicUses:219Used by:241
Symbol 221 BitmapUsed by:222
Symbol 222 GraphicUses:221Used by:241
Symbol 223 BitmapUsed by:224
Symbol 224 GraphicUses:223Used by:241
Symbol 225 BitmapUsed by:226
Symbol 226 GraphicUses:225Used by:241
Symbol 227 BitmapUsed by:228
Symbol 228 GraphicUses:227Used by:241
Symbol 229 BitmapUsed by:230
Symbol 230 GraphicUses:229Used by:241
Symbol 231 BitmapUsed by:232
Symbol 232 GraphicUses:231Used by:241
Symbol 233 BitmapUsed by:234
Symbol 234 GraphicUses:233Used by:241
Symbol 235 BitmapUsed by:236
Symbol 236 GraphicUses:235Used by:241
Symbol 237 BitmapUsed by:238
Symbol 238 GraphicUses:237Used by:241
Symbol 239 BitmapUsed by:240
Symbol 240 GraphicUses:239Used by:241
Symbol 241 MovieClipUses:178 180 182 184 186 188 190 192 194 196 198 200 202 204 206 208 210 212 214 216 218 220 222 224 226 228 230 232 234 236 238 240Used by:440
Symbol 242 BitmapUsed by:243
Symbol 243 GraphicUses:242Used by:314
Symbol 244 BitmapUsed by:245
Symbol 245 GraphicUses:244Used by:314
Symbol 246 BitmapUsed by:247
Symbol 247 GraphicUses:246Used by:314
Symbol 248 BitmapUsed by:249
Symbol 249 GraphicUses:248Used by:314
Symbol 250 BitmapUsed by:251
Symbol 251 GraphicUses:250Used by:314
Symbol 252 BitmapUsed by:253
Symbol 253 GraphicUses:252Used by:314
Symbol 254 BitmapUsed by:255
Symbol 255 GraphicUses:254Used by:314
Symbol 256 BitmapUsed by:257
Symbol 257 GraphicUses:256Used by:314
Symbol 258 BitmapUsed by:259
Symbol 259 GraphicUses:258Used by:314
Symbol 260 BitmapUsed by:261
Symbol 261 GraphicUses:260Used by:314
Symbol 262 BitmapUsed by:263
Symbol 263 GraphicUses:262Used by:314
Symbol 264 BitmapUsed by:265
Symbol 265 GraphicUses:264Used by:314
Symbol 266 BitmapUsed by:267
Symbol 267 GraphicUses:266Used by:314
Symbol 268 BitmapUsed by:269
Symbol 269 GraphicUses:268Used by:314
Symbol 270 BitmapUsed by:271
Symbol 271 GraphicUses:270Used by:314
Symbol 272 BitmapUsed by:273
Symbol 273 GraphicUses:272Used by:314
Symbol 274 BitmapUsed by:275
Symbol 275 GraphicUses:274Used by:314
Symbol 276 BitmapUsed by:277
Symbol 277 GraphicUses:276Used by:314
Symbol 278 BitmapUsed by:279
Symbol 279 GraphicUses:278Used by:314
Symbol 280 BitmapUsed by:281
Symbol 281 GraphicUses:280Used by:314
Symbol 282 BitmapUsed by:283
Symbol 283 GraphicUses:282Used by:314
Symbol 284 BitmapUsed by:285
Symbol 285 GraphicUses:284Used by:314
Symbol 286 BitmapUsed by:287
Symbol 287 GraphicUses:286Used by:314
Symbol 288 BitmapUsed by:289
Symbol 289 GraphicUses:288Used by:314
Symbol 290 BitmapUsed by:291
Symbol 291 GraphicUses:290Used by:314
Symbol 292 BitmapUsed by:293
Symbol 293 GraphicUses:292Used by:314
Symbol 294 BitmapUsed by:295
Symbol 295 GraphicUses:294Used by:314
Symbol 296 BitmapUsed by:297
Symbol 297 GraphicUses:296Used by:314
Symbol 298 BitmapUsed by:299
Symbol 299 GraphicUses:298Used by:314
Symbol 300 BitmapUsed by:301
Symbol 301 GraphicUses:300Used by:314
Symbol 302 BitmapUsed by:303
Symbol 303 GraphicUses:302Used by:314
Symbol 304 BitmapUsed by:305
Symbol 305 GraphicUses:304Used by:314
Symbol 306 BitmapUsed by:307
Symbol 307 GraphicUses:306Used by:314
Symbol 308 BitmapUsed by:309
Symbol 309 GraphicUses:308Used by:314
Symbol 310 BitmapUsed by:311
Symbol 311 GraphicUses:310Used by:314
Symbol 312 BitmapUsed by:313
Symbol 313 GraphicUses:312Used by:314
Symbol 314 MovieClipUses:243 245 247 249 251 253 255 257 259 261 263 265 267 269 271 273 275 277 279 281 283 285 287 289 291 293 295 297 299 301 303 305 307 309 311 313Used by:440
Symbol 315 BitmapUsed by:316
Symbol 316 GraphicUses:315Used by:439
Symbol 317 BitmapUsed by:318
Symbol 318 GraphicUses:317Used by:439
Symbol 319 BitmapUsed by:320
Symbol 320 GraphicUses:319Used by:439
Symbol 321 BitmapUsed by:322
Symbol 322 GraphicUses:321Used by:439
Symbol 323 BitmapUsed by:324
Symbol 324 GraphicUses:323Used by:439
Symbol 325 BitmapUsed by:326
Symbol 326 GraphicUses:325Used by:439
Symbol 327 BitmapUsed by:328
Symbol 328 GraphicUses:327Used by:439
Symbol 329 BitmapUsed by:330
Symbol 330 GraphicUses:329Used by:439
Symbol 331 BitmapUsed by:332
Symbol 332 GraphicUses:331Used by:439
Symbol 333 BitmapUsed by:334
Symbol 334 GraphicUses:333Used by:439
Symbol 335 BitmapUsed by:336
Symbol 336 GraphicUses:335Used by:439
Symbol 337 BitmapUsed by:338
Symbol 338 GraphicUses:337Used by:439
Symbol 339 BitmapUsed by:340
Symbol 340 GraphicUses:339Used by:439
Symbol 341 BitmapUsed by:342
Symbol 342 GraphicUses:341Used by:439
Symbol 343 BitmapUsed by:344
Symbol 344 GraphicUses:343Used by:439
Symbol 345 BitmapUsed by:346
Symbol 346 GraphicUses:345Used by:439
Symbol 347 BitmapUsed by:348
Symbol 348 GraphicUses:347Used by:439
Symbol 349 BitmapUsed by:350
Symbol 350 GraphicUses:349Used by:439
Symbol 351 BitmapUsed by:352
Symbol 352 GraphicUses:351Used by:439
Symbol 353 BitmapUsed by:354
Symbol 354 GraphicUses:353Used by:439
Symbol 355 BitmapUsed by:356
Symbol 356 GraphicUses:355Used by:439
Symbol 357 BitmapUsed by:358
Symbol 358 GraphicUses:357Used by:439
Symbol 359 BitmapUsed by:360
Symbol 360 GraphicUses:359Used by:439
Symbol 361 BitmapUsed by:362
Symbol 362 GraphicUses:361Used by:439
Symbol 363 BitmapUsed by:364
Symbol 364 GraphicUses:363Used by:439
Symbol 365 BitmapUsed by:366
Symbol 366 GraphicUses:365Used by:439
Symbol 367 BitmapUsed by:368
Symbol 368 GraphicUses:367Used by:439
Symbol 369 BitmapUsed by:370
Symbol 370 GraphicUses:369Used by:439
Symbol 371 BitmapUsed by:372
Symbol 372 GraphicUses:371Used by:439
Symbol 373 BitmapUsed by:374
Symbol 374 GraphicUses:373Used by:439
Symbol 375 BitmapUsed by:376
Symbol 376 GraphicUses:375Used by:439
Symbol 377 BitmapUsed by:378
Symbol 378 GraphicUses:377Used by:439
Symbol 379 BitmapUsed by:380
Symbol 380 GraphicUses:379Used by:439
Symbol 381 BitmapUsed by:382
Symbol 382 GraphicUses:381Used by:439
Symbol 383 BitmapUsed by:384
Symbol 384 GraphicUses:383Used by:439
Symbol 385 BitmapUsed by:386
Symbol 386 GraphicUses:385Used by:439
Symbol 387 BitmapUsed by:388
Symbol 388 GraphicUses:387Used by:439
Symbol 389 BitmapUsed by:390
Symbol 390 GraphicUses:389Used by:439
Symbol 391 BitmapUsed by:392
Symbol 392 GraphicUses:391Used by:439
Symbol 393 BitmapUsed by:394
Symbol 394 GraphicUses:393Used by:439
Symbol 395 BitmapUsed by:396
Symbol 396 GraphicUses:395Used by:439
Symbol 397 BitmapUsed by:398
Symbol 398 GraphicUses:397Used by:439
Symbol 399 BitmapUsed by:400
Symbol 400 GraphicUses:399Used by:439
Symbol 401 BitmapUsed by:402
Symbol 402 GraphicUses:401Used by:439
Symbol 403 BitmapUsed by:404
Symbol 404 GraphicUses:403Used by:439
Symbol 405 BitmapUsed by:406
Symbol 406 GraphicUses:405Used by:439
Symbol 407 BitmapUsed by:408
Symbol 408 GraphicUses:407Used by:439
Symbol 409 BitmapUsed by:410
Symbol 410 GraphicUses:409Used by:439
Symbol 411 BitmapUsed by:412
Symbol 412 GraphicUses:411Used by:439
Symbol 413 BitmapUsed by:414
Symbol 414 GraphicUses:413Used by:439
Symbol 415 BitmapUsed by:416
Symbol 416 GraphicUses:415Used by:439
Symbol 417 BitmapUsed by:418
Symbol 418 GraphicUses:417Used by:439
Symbol 419 BitmapUsed by:420
Symbol 420 GraphicUses:419Used by:439
Symbol 421 BitmapUsed by:422
Symbol 422 GraphicUses:421Used by:439
Symbol 423 BitmapUsed by:424
Symbol 424 GraphicUses:423Used by:439
Symbol 425 BitmapUsed by:426
Symbol 426 GraphicUses:425Used by:439
Symbol 427 BitmapUsed by:428
Symbol 428 GraphicUses:427Used by:439
Symbol 429 BitmapUsed by:430
Symbol 430 GraphicUses:429Used by:439
Symbol 431 BitmapUsed by:432
Symbol 432 GraphicUses:431Used by:439
Symbol 433 BitmapUsed by:434
Symbol 434 GraphicUses:433Used by:439
Symbol 435 BitmapUsed by:436
Symbol 436 GraphicUses:435Used by:439
Symbol 437 BitmapUsed by:438
Symbol 438 GraphicUses:437Used by:439
Symbol 439 MovieClipUses:316 318 320 322 324 326 328 330 332 334 336 338 340 342 344 346 348 350 352 354 356 358 360 362 364 366 368 370 372 374 376 378 380 382 384 386 388 390 392 394 396 398 400 402 404 406 408 410 412 414 416 418 420 422 424 426 428 430 432 434 436 438Used by:440
Symbol 440 MovieClipUses:24 105 176 241 314 439Used by:441 443 449  Timeline
Symbol 441 MovieClip {puzzleItem2}Uses:32 440
Symbol 442 MovieClipUses:29 31Used by:443
Symbol 443 MovieClip {puzzleItem}Uses:442 440
Symbol 444 GraphicUsed by:445
Symbol 445 MovieClip {grid_easy}Uses:444
Symbol 446 GraphicUsed by:447
Symbol 447 MovieClip {grid_normal}Uses:446
Symbol 448 GraphicUsed by:449
Symbol 449 MovieClip {puzzle_fla.title_m_5}Uses:11 448 440 13Used by:Timeline
Symbol 450 GraphicUsed by:454
Symbol 451 FontUsed by:452 453 456 457 464 467 471 476 479 482 485 490 491 494 502 511 513
Symbol 452 TextUses:451Used by:454
Symbol 453 TextUses:451Used by:454
Symbol 454 MovieClipUses:450 452 453Used by:Timeline
Symbol 455 GraphicUsed by:458
Symbol 456 TextUses:451Used by:458
Symbol 457 TextUses:451Used by:458
Symbol 458 MovieClipUses:455 456 457Used by:Timeline
Symbol 459 BitmapUsed by:460
Symbol 460 GraphicUses:459Used by:Timeline
Symbol 461 GraphicUsed by:462
Symbol 462 MovieClipUses:461Used by:509  Timeline
Symbol 463 GraphicUsed by:465
Symbol 464 TextUses:451Used by:465 474
Symbol 465 MovieClipUses:463 464Used by:Timeline
Symbol 466 GraphicUsed by:468
Symbol 467 TextUses:451Used by:468
Symbol 468 MovieClipUses:466 467Used by:Timeline
Symbol 469 GraphicUsed by:Timeline
Symbol 470 GraphicUsed by:472
Symbol 471 TextUses:451Used by:472
Symbol 472 MovieClipUses:470 471Used by:Timeline
Symbol 473 GraphicUsed by:474
Symbol 474 MovieClipUses:473 464Used by:Timeline
Symbol 475 GraphicUsed by:477
Symbol 476 TextUses:451Used by:477
Symbol 477 MovieClipUses:475 476Used by:Timeline
Symbol 478 GraphicUsed by:480
Symbol 479 TextUses:451Used by:480
Symbol 480 MovieClipUses:478 479Used by:Timeline
Symbol 481 GraphicUsed by:483
Symbol 482 TextUses:451Used by:483
Symbol 483 MovieClipUses:481 482Used by:Timeline
Symbol 484 GraphicUsed by:486
Symbol 485 TextUses:451Used by:486
Symbol 486 MovieClipUses:484 485Used by:Timeline
Symbol 487 GraphicUsed by:488
Symbol 488 MovieClipUses:487Used by:Timeline
Symbol 489 GraphicUsed by:492
Symbol 490 TextUses:451Used by:492
Symbol 491 TextUses:451Used by:492
Symbol 492 MovieClipUses:489 490 491Used by:Timeline
Symbol 493 GraphicUsed by:509
Symbol 494 TextUses:451Used by:509 515
Symbol 495 BitmapUsed by:496
Symbol 496 GraphicUses:495Used by:501
Symbol 497 BitmapUsed by:498
Symbol 498 GraphicUses:497Used by:501
Symbol 499 BitmapUsed by:500
Symbol 500 GraphicUses:499Used by:501
Symbol 501 MovieClipUses:496 498 500Used by:509
Symbol 502 TextUses:451Used by:509
Symbol 503 GraphicUsed by:506
Symbol 504 FontUsed by:505
Symbol 505 TextUses:504Used by:506
Symbol 506 MovieClipUses:503 505Used by:509
Symbol 507 BitmapUsed by:508
Symbol 508 GraphicUses:507Used by:509 515
Symbol 509 MovieClipUses:6 493 494 501 502 506 508 462Used by:Timeline
Symbol 510 GraphicUsed by:515
Symbol 511 TextUses:451Used by:515
Symbol 512 GraphicUsed by:514
Symbol 513 TextUses:451Used by:514
Symbol 514 MovieClipUses:512 513Used by:515
Symbol 515 MovieClipUses:6 510 494 511 508 514Used by:Timeline
Symbol 516 GraphicUsed by:556
Symbol 517 BitmapUsed by:518
Symbol 518 GraphicUses:517Used by:542
Symbol 519 BitmapUsed by:520
Symbol 520 GraphicUses:519Used by:542
Symbol 521 BitmapUsed by:522
Symbol 522 GraphicUses:521Used by:523
Symbol 523 MovieClipUses:522Used by:542
Symbol 524 BitmapUsed by:525
Symbol 525 GraphicUses:524Used by:542
Symbol 526 BitmapUsed by:527
Symbol 527 GraphicUses:526Used by:542
Symbol 528 BitmapUsed by:529
Symbol 529 GraphicUses:528Used by:542
Symbol 530 BitmapUsed by:531
Symbol 531 GraphicUses:530Used by:542
Symbol 532 BitmapUsed by:533
Symbol 533 GraphicUses:532Used by:542
Symbol 534 BitmapUsed by:535
Symbol 535 GraphicUses:534Used by:542
Symbol 536 BitmapUsed by:537
Symbol 537 GraphicUses:536Used by:542
Symbol 538 BitmapUsed by:539
Symbol 539 GraphicUses:538Used by:542
Symbol 540 BitmapUsed by:541
Symbol 541 GraphicUses:540Used by:542
Symbol 542 MovieClipUses:518 1 520 523 525 527 529 531 533 535 537 539 541Used by:556
Symbol 543 BitmapUsed by:545
Symbol 544 BitmapUsed by:545
Symbol 545 GraphicUses:543 544Used by:556
Symbol 546 BitmapUsed by:547
Symbol 547 GraphicUses:546Used by:556
Symbol 548 BitmapUsed by:549
Symbol 549 GraphicUses:548Used by:550
Symbol 550 MovieClipUses:549Used by:551
Symbol 551 MovieClipUses:550Used by:556
Symbol 552 BitmapUsed by:553
Symbol 553 GraphicUses:552Used by:556
Symbol 554 BitmapUsed by:555
Symbol 555 GraphicUses:554Used by:556
Symbol 556 MovieClip {puzzle_fla.Splash_NON_NG2_30}Uses:516 542 545 547 551 553 555Used by:Timeline

Instance Names

"preloader"Frame 2Symbol 9 MovieClip
"adv"Frame 2Symbol 15 MovieClip
"easyBtn"Frame 3Symbol 454 MovieClip
"normalBtn"Frame 3Symbol 458 MovieClip
"achBtn1"Frame 4Symbol 462 MovieClip
"achBtn2"Frame 4Symbol 462 MovieClip
"achBtn3"Frame 4Symbol 462 MovieClip
"achBtn4"Frame 4Symbol 462 MovieClip
"achBtn5"Frame 4Symbol 462 MovieClip
"achBtn1"Frame 4Symbol 462 MovieClip
"backBtn"Frame 4Symbol 462 MovieClip
"movie"Frame 4Symbol 440 MovieClip
"adv"Frame 4Symbol 15 MovieClip
"btn1"Frame 5Symbol 472 MovieClip
"btn2"Frame 5Symbol 474 MovieClip
"btn3"Frame 5Symbol 477 MovieClip
"btn4"Frame 5Symbol 480 MovieClip
"btn5"Frame 5Symbol 483 MovieClip
"btn2d"Frame 5Symbol 486 MovieClip
"select"Frame 5Symbol 488 MovieClip
"adv"Frame 5Symbol 15 MovieClip
"done"Frame 6Symbol 492 MovieClip
"adv"Frame 6Symbol 15 MovieClip
"spl"Frame 7Symbol 509 MovieClip
"spl1"Frame 8Symbol 515 MovieClip
"spl2"Frame 9Symbol 556 MovieClip {puzzle_fla.Splash_NON_NG2_30}
"cubes"Symbol 21 MovieClip Frame 1Symbol 20 MovieClip
"t"Symbol 23 MovieClip {FX1} Frame 1Symbol 21 MovieClip
"b"Symbol 23 MovieClip {FX1} Frame 1Symbol 21 MovieClip
"l"Symbol 23 MovieClip {FX1} Frame 1Symbol 21 MovieClip
"r"Symbol 23 MovieClip {FX1} Frame 1Symbol 21 MovieClip
"t"Symbol 32 MovieClip Frame 1Symbol 29 MovieClip
"r"Symbol 32 MovieClip Frame 1Symbol 29 MovieClip
"bo"Symbol 32 MovieClip Frame 1Symbol 29 MovieClip
"l"Symbol 32 MovieClip Frame 1Symbol 29 MovieClip
"pmask"Symbol 441 MovieClip {puzzleItem2} Frame 1Symbol 32 MovieClip
"bg"Symbol 441 MovieClip {puzzleItem2} Frame 1Symbol 440 MovieClip
"t"Symbol 442 MovieClip Frame 1Symbol 29 MovieClip
"r"Symbol 442 MovieClip Frame 1Symbol 29 MovieClip
"bo"Symbol 442 MovieClip Frame 1Symbol 29 MovieClip
"l"Symbol 442 MovieClip Frame 1Symbol 29 MovieClip
"pmask"Symbol 443 MovieClip {puzzleItem} Frame 1Symbol 442 MovieClip
"bg"Symbol 443 MovieClip {puzzleItem} Frame 1Symbol 440 MovieClip
"loops"Symbol 449 MovieClip {puzzle_fla.title_m_5} Frame 1Symbol 440 MovieClip
"vb"Symbol 509 MovieClip Frame 1Symbol 462 MovieClip

Special Tags

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




http://swfchan.com/47/231290/info.shtml
Created: 28/1 -2020 01:08:49 Last modified: 28/1 -2020 01:08:49 Server time: 19/04 -2024 05:26:58